diff --git a/examples/blocks/src/gpu-multipass/.block b/examples/blocks/src/gpu-multipass/.block new file mode 100644 index 0000000000..ad08ee86b5 --- /dev/null +++ b/examples/blocks/src/gpu-multipass/.block @@ -0,0 +1 @@ +license: apache-2.0 \ No newline at end of file diff --git a/examples/blocks/src/gpu-multipass/index.html b/examples/blocks/src/gpu-multipass/index.html new file mode 100644 index 0000000000..3ad5283b31 --- /dev/null +++ b/examples/blocks/src/gpu-multipass/index.html @@ -0,0 +1,29 @@ + + + + + + + Document + + + +
+ +
+ + \ No newline at end of file diff --git a/examples/blocks/src/gpu-multipass/script.js b/examples/blocks/src/gpu-multipass/script.js new file mode 100644 index 0000000000..65df123d4a --- /dev/null +++ b/examples/blocks/src/gpu-multipass/script.js @@ -0,0 +1,212 @@ +function configCanvas() { + const { width, height } = canvas.getBoundingClientRect(); + + canvas.width = width; + canvas.height = height; +} + +function getPresentationFormat() { + return navigator.gpu.getPreferredCanvasFormat(); +} + +function getCanvasAndContext(device) { + const canvas = document.getElementById("canvas"); + + console.log(canvas.getBoundingClientRect()); + const { width, height } = canvas.getBoundingClientRect(); + console.log(width, height); + canvas.width = width * devicePixelRatio; + canvas.height = height * devicePixelRatio; + + const ctx = canvas.getContext("webgpu"); + + ctx.configure({ + device, + format: getPresentationFormat(), + alphaMode: "premultiplied", + }); + + return { canvas, ctx }; +} + +async function getAdapter() { + return await navigator.gpu.requestAdapter({ + powerPreference: "high-performance", + }); +} + +async function getDevice(adapter) { + return await adapter.requestDevice(); +} + +function createShaderSrc() { + const shaderSrc = ` + struct VertexInput { + @location(0) position: vec2, + @location(1) color: vec4, + } + + struct VertexOutput { + @builtin(position) position: vec4, + @location(0) color: vec4, + } + + @vertex + fn vert_main( + vsIn: VertexInput, + ) -> VertexOutput { + var output: VertexOutput; + + output.position = vec4(vsIn.position, 0., 1.); + output.color = vsIn.color; + + return output; + } + + @fragment + fn frag_main(vsOut: VertexOutput) -> @location(0) vec4 { + return vsOut.color; + } + `; + + return shaderSrc; +} + +async function createPipeline(device) { + const code = createShaderSrc(); + const module = device.createShaderModule({ code }); + const pipeline = device.createRenderPipeline({ + layout: "auto", + vertex: { + module, + entryPoint: "vert_main", + buffers: [ + { + arrayStride: 6 * 4, // 8 floats per vertex (x, y, r, g, b, a) + attributes: [ + { + // position + shaderLocation: 0, + offset: 0, + format: "float32x2", + }, + { + // color + shaderLocation: 1, + offset: 2 * 4, // 4 floats per vertex, position is 4 floats + format: "float32x4", + }, + ], + }, + ], + }, + fragment: { + module, + entryPoint: "frag_main", + targets: [ + { + format: getPresentationFormat(), + }, + ], + }, + primitive: { + topology: "triangle-list", + }, + }); + + return pipeline; +} + +// prettier-ignore +const vertices = [ + // triangle 1, red + [0.0 , 0.6, 1.0, 0.0, 0.0, 1.0, + 0.3, -0.3, 1.0, 0.0, 0.0, 1.0, + -0.3, -0.3, 1.0, 0.0, 0.0, 1.0, ], + + // triangle 2, green + [-0.3, 0.3, 0.0, 1.0, 0.0, 1.0, + 0.3, -0.4, 0.0, 1.0, 0.0, 1.0, + 0.7, 0.3, 0.0, 1.0, 0.0, 1.0, ], + + // triangle 3, blue + [-0.3, 0.7, 0.0, 0.0, 1.0, 1.0, + 0.3, -0.6, 0.0, 0.0, 1.0, 1.0, + -0.7, 0.7, 0.0, 0.0, 1.0, 1.0,] +]; + +const createVertexBuffer = (device) => (vertsArr) => { + const verts = new Float32Array(vertsArr); + const vertexBuffer = device.createBuffer({ + size: verts.byteLength, + usage: GPUBufferUsage.VERTEX, + mappedAtCreation: true, + }); + + new Float32Array(vertexBuffer.getMappedRange()).set(verts); + vertexBuffer.unmap(); + + return vertexBuffer; +}; + +function createVertexBuffers(device) { + return vertices.map(createVertexBuffer(device)); +} + +export async function init() { + const adapter = await getAdapter(); + const device = await getDevice(adapter); + + const { canvas, ctx } = getCanvasAndContext(device); + const pipeline = await createPipeline(device); + + const vertexBuffers = createVertexBuffers(device); + + return { + device, + canvas, + ctx, + pipeline, + vertexBuffers, + }; +} + +function renderPasses(scene) { + const { device, ctx, pipeline, vertexBuffers } = scene; + const commandEncoder = device.createCommandEncoder(); + + for (let i = 0; i < vertexBuffers.length; i++) { + const vertexBuffer = vertexBuffers[i]; + + const renderPassDescriptor = { + colorAttachments: [ + { + view: ctx.getCurrentTexture().createView(), + clearValue: { r: 0.7, g: 0.7, b: 0.7, a: 1.0 }, + loadOp: i === 0 ? "clear" : "load", + storeOp: "store", + }, + ], + }; + + const passEncoder = + commandEncoder.beginRenderPass(renderPassDescriptor); + + passEncoder.setPipeline(pipeline); + passEncoder.setVertexBuffer(0, vertexBuffer); + + passEncoder.draw(3, 1, 0, 0); + + passEncoder.end(); + } + + device.queue.submit([commandEncoder.finish()]); +} + +export async function main() { + const scene = await init(); + + renderPasses(scene); +} + +document.addEventListener("DOMContentLoaded", main); diff --git a/examples/blocks/src/gpu/.block b/examples/blocks/src/gpu/.block new file mode 100644 index 0000000000..ad08ee86b5 --- /dev/null +++ b/examples/blocks/src/gpu/.block @@ -0,0 +1 @@ +license: apache-2.0 \ No newline at end of file diff --git a/examples/blocks/src/gpu/index.html b/examples/blocks/src/gpu/index.html new file mode 100644 index 0000000000..a788f8cd6d --- /dev/null +++ b/examples/blocks/src/gpu/index.html @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/blocks/src/gpu/vehicleCollisions_tiny.csv b/examples/blocks/src/gpu/vehicleCollisions_tiny.csv new file mode 100644 index 0000000000..1b5d4c7a94 --- /dev/null +++ b/examples/blocks/src/gpu/vehicleCollisions_tiny.csv @@ -0,0 +1,100000 @@ +CRASH DATE,CRASH TIME,BOROUGH,ZIP CODE,LATITUDE,LONGITUDE,LOCATION,ON STREET NAME,CROSS STREET NAME,OFF STREET NAME,NUMBER OF PERSONS INJURED,NUMBER OF PERSONS KILLED,NUMBER OF PEDESTRIANS INJURED,NUMBER OF PEDESTRIANS KILLED,NUMBER OF CYCLIST INJURED,NUMBER OF CYCLIST KILLED,NUMBER OF MOTORIST INJURED,NUMBER OF MOTORIST KILLED,CONTRIBUTING FACTOR VEHICLE 1,CONTRIBUTING FACTOR VEHICLE 2,CONTRIBUTING FACTOR VEHICLE 3,CONTRIBUTING FACTOR VEHICLE 4,CONTRIBUTING FACTOR VEHICLE 5,COLLISION_ID,VEHICLE TYPE CODE 1,VEHICLE TYPE CODE 2,VEHICLE TYPE CODE 3,VEHICLE TYPE CODE 4,VEHICLE TYPE CODE 5 +09/11/2021,2:39,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4455765,Sedan,Sedan,,, +03/26/2022,11:45,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4513547,Sedan,,,, +06/29/2022,6:55,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4541903,Sedan,Pick-up Truck,,, +09/11/2021,9:35,BROOKLYN,11208,40.667202,-73.8665,"(40.667202, -73.8665)",,,1211 LORING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456314,Sedan,,,, +12/14/2021,8:13,BROOKLYN,11233,40.683304,-73.917274,"(40.683304, -73.917274)",SARATOGA AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,,,,,,4486609,,,,, +04/14/2021,12:47,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407458,Dump,Sedan,,, +12/14/2021,17:05,,,40.709183,-73.956825,"(40.709183, -73.956825)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486555,Sedan,Tractor Truck Diesel,,, +12/14/2021,8:17,BRONX,10475,40.86816,-73.83148,"(40.86816, -73.83148)",,,344 BAYCHESTER AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4486660,Sedan,Sedan,,, +12/14/2021,21:10,BROOKLYN,11207,40.67172,-73.8971,"(40.67172, -73.8971)",,,2047 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487074,Sedan,,,, +12/14/2021,14:58,MANHATTAN,10017,40.75144,-73.97397,"(40.75144, -73.97397)",3 AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486519,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,0:34,,,40.701275,-73.88887,"(40.701275, -73.88887)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486934,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,16:50,QUEENS,11413,40.675884,-73.75577,"(40.675884, -73.75577)",SPRINGFIELD BOULEVARD,EAST GATE PLAZA,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487127,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,8:30,,,,,,broadway,west 80 street -west 81 street,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486634,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,0:59,,,40.59662,-74.00231,"(40.59662, -74.00231)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4486564,Sedan,,,, +12/14/2021,23:10,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,150 STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4486635,Sedan,Sedan,,, +12/14/2021,17:58,BROOKLYN,11217,40.68158,-73.97463,"(40.68158, -73.97463)",,,480 DEAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486604,Tanker,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,20:03,BROOKLYN,11226,40.65068,-73.95881,"(40.65068, -73.95881)",,,878 FLATBUSH AVENUE,4,0,0,0,0,0,4,0,Steering Failure,,,,,4486991,Sedan,,,, +12/14/2021,1:28,,,,,,MEEKER AVENUE,LORIMER STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4486284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,19:43,BRONX,10463,40.87262,-73.904686,"(40.87262, -73.904686)",WEST KINGSBRIDGE ROAD,HEATH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487040,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,14:30,,,40.783268,-73.82485,"(40.783268, -73.82485)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4486537,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/11/2021,4:45,MANHATTAN,10001,40.748917,-73.993546,"(40.748917, -73.993546)",,,232 WEST 30 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486905,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,5:46,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4487122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,6:30,QUEENS,11372,40.75373,-73.88505,"(40.75373, -73.88505)",82 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486967,Sedan,,,, +12/14/2021,3:43,,,40.804375,-73.93742,"(40.804375, -73.93742)",LEXINGTON AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486304,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,17:40,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",VICTORY BOULEVARD,WOODSTOCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487001,Sedan,Sedan,,, +12/14/2021,17:31,BROOKLYN,11230,40.623104,-73.95809,"(40.623104, -73.95809)",EAST 18 STREET,AVENUE K,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486516,Sedan,,,, +12/14/2021,20:13,BROOKLYN,11215,40.66576,-73.9845,"(40.66576, -73.9845)",,,366 12 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486605,Sedan,,,, +12/14/2021,12:54,BROOKLYN,11217,40.687534,-73.9775,"(40.687534, -73.9775)",FULTON STREET,SAINT FELIX STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4487052,Sedan,Bike,,, +12/14/2021,17:15,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",GRAND STREET,UNION AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4486556,Bus,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,22:49,BRONX,10455,40.81813,-73.910126,"(40.81813, -73.910126)",,,713 EAGLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486875,Taxi,,,, +12/12/2021,9:00,QUEENS,11385,40.70447,-73.90148,"(40.70447, -73.90148)",,,59-14 67 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486933,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,16:25,,,40.784615,-73.953964,"(40.784615, -73.953964)",EAST 93 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486581,Van,Bike,,, +04/14/2021,14:30,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407520,Bus,,,, +12/16/2021,6:59,,,,,,KINGSLAND AVENUE,MEEKER AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4486960,,,,, +06/29/2022,16:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542336,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,16:15,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4407665,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,11:42,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4456591,Sedan,Sedan,,, +07/12/2022,17:50,BROOKLYN,11225,40.663303,-73.96049,"(40.663303, -73.96049)",,,44 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4545699,Sedan,,,, +03/23/2022,10:00,,,,,,,,71 EAST DRIVE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4512922,Bike,,,, +07/09/2021,0:43,,,40.720535,-73.88885,"(40.720535, -73.88885)",ELIOT AVENUE,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4456659,Bus,,,, +04/24/2022,16:45,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4521660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,4:49,,,40.855972,-73.869896,"(40.855972, -73.869896)",BOSTON ROAD,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521759,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2022,17:17,,,40.790276,-73.9396,"(40.790276, -73.9396)",EAST 107 STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4522226,E-Bike,,,, +04/24/2022,1:30,BROOKLYN,11220,40.642986,-74.01621,"(40.642986, -74.01621)",,,5610 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4522015,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,6:00,QUEENS,11411,0,0,"(0.0, 0.0)",,,116-44 234 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4521460,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,21:40,BRONX,10452,40.843906,-73.92413,"(40.843906, -73.92413)",BOSCOBEL PLACE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4522156,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,17:45,BRONX,10466,40.89481,-73.86183,"(40.89481, -73.86183)",BRONX RIVER PARKWAY,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521633,Sedan,,,, +04/15/2022,6:11,,,0,0,"(0.0, 0.0)",EAST 162 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522124,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/24/2022,9:51,,,40.85169,-73.95238,"(40.85169, -73.95238)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521937,Sedan,,,, +04/24/2022,0:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521801,Sedan,,,, +03/08/2022,20:00,BROOKLYN,11207,40.666256,-73.900215,"(40.666256, -73.900215)",,,360 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522285,Sedan,,,, +04/24/2022,15:35,MANHATTAN,10019,40.767242,-73.986206,"(40.767242, -73.986206)",WEST 56 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4521853,Station Wagon/Sport Utility Vehicle,Bike,,, +04/22/2022,12:00,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",AVENUE J,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4522228,Sedan,Pick-up Truck,,, +04/24/2022,13:10,,,40.679955,-73.97491,"(40.679955, -73.97491)",SAINT MARKS AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4521702,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,4:20,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",THROOP AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4522167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2022,19:37,,,40.78291,-73.98578,"(40.78291, -73.98578)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4522196,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,16:14,,,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521758,Sedan,Sedan,,, +04/12/2022,19:56,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,SNYDER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4522136,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,0:30,,,40.638382,-74.03668,"(40.638382, -74.03668)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4521469,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/24/2022,20:13,QUEENS,11419,40.69261,-73.81143,"(40.69261, -73.81143)",,,102-24 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4521859,Sedan,,,, +04/24/2022,15:21,QUEENS,11101,40.745235,-73.937706,"(40.745235, -73.937706)",THOMSON AVENUE,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4521590,Sedan,Sedan,,, +04/24/2022,10:27,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4521902,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,21:00,QUEENS,11106,40.758705,-73.93793,"(40.758705, -73.93793)",21 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4521684,Sedan,Sedan,,, +04/24/2022,21:40,QUEENS,11418,40.695156,-73.845406,"(40.695156, -73.845406)",JAMAICA AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4521858,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,14:14,MANHATTAN,10017,40.748158,-73.97033,"(40.748158, -73.97033)",1 AVENUE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4522242,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,17:35,,,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456672,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/09/2021,20:20,BROOKLYN,11223,40.59207,-73.96299,"(40.59207, -73.96299)",EAST 7 STREET,CRAWFORD AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485150,Bike,,,, +12/09/2021,14:50,,,40.850018,-73.9107,"(40.850018, -73.9107)",WEST 177 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485116,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,2:45,QUEENS,11422,40.653023,-73.73895,"(40.653023, -73.73895)",149 AVENUE,HUXLEY STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4485026,Sedan,,,, +12/06/2021,22:16,,,40.62573,-73.9564,"(40.62573, -73.9564)",AVENUE J,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485528,Sedan,,,, +12/04/2021,12:00,BROOKLYN,11213,40.665375,-73.934235,"(40.665375, -73.934235)",CROWN STREET,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485333,Sedan,Ambulance,,, +12/08/2021,16:20,MANHATTAN,10128,40.776237,-73.943825,"(40.776237, -73.943825)",EAST END AVENUE,EAST 88 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485234,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,23:15,BROOKLYN,11218,40.640835,-73.98967,"(40.640835, -73.98967)",12 AVENUE,41 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485355,Sedan,Bike,,, +12/01/2021,14:34,QUEENS,11692,40.593636,-73.797264,"(40.593636, -73.797264)",,,437 BEACH 68 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485581,Sedan,Pick-up Truck,,, +12/10/2021,7:00,QUEENS,11420,40.674263,-73.80453,"(40.674263, -73.80453)",,,122-42 134 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485866,Sedan,,,, +12/07/2021,9:20,,,40.70476,-73.96491,"(40.70476, -73.96491)",TAYLOR STREET,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4485192,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,8:00,,,40.569626,-74.190735,"(40.569626, -74.190735)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485214,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,17:08,BROOKLYN,11205,40.698463,-73.960205,"(40.698463, -73.960205)",FLUSHING AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485437,,,,, +12/05/2021,8:20,BROOKLYN,11212,40.658413,-73.9171,"(40.658413, -73.9171)",,,393 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4485408,Sedan,,,, +12/08/2021,19:30,MANHATTAN,10022,40.76175,-73.96899,"(40.76175, -73.96899)",,,127 EAST 58 STREET,1,0,0,0,1,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4484852,Station Wagon/Sport Utility Vehicle,Bike,,, +12/08/2021,12:00,MANHATTAN,10011,40.736614,-73.9951,"(40.736614, -73.9951)",,,44 WEST 14 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485542,Box Truck,Bike,,, +12/10/2021,8:06,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485170,Garbage or Refuse,Sedan,,, +12/08/2021,19:30,,,,,,OCEAN PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4485523,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,22:37,STATEN ISLAND,10314,40.62121,-74.12385,"(40.62121, -74.12385)",,,288 MANOR ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4484906,Sedan,,,, +12/08/2021,17:56,,,40.873737,-73.90593,"(40.873737, -73.90593)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485036,Sedan,,,, +12/07/2021,7:50,,,40.66718,-73.95076,"(40.66718, -73.95076)",CARROLL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485772,Sedan,Sedan,,, +12/08/2021,0:44,QUEENS,11101,40.754295,-73.93946,"(40.754295, -73.93946)",23 STREET,40 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4485565,Sedan,,,, +12/08/2021,15:00,,,40.588116,-73.97261,"(40.588116, -73.97261)",AVENUE Y,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4484836,Sedan,,,, +12/10/2021,11:00,BRONX,10461,40.854935,-73.85822,"(40.854935, -73.85822)",,,2123 LURTING AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4485340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,1:10,,,40.662575,-73.93448,"(40.662575, -73.93448)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485706,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,0:00,,,40.7448,-73.953415,"(40.7448, -73.953415)",47 ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485384,Sedan,,,, +12/08/2021,18:36,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4484799,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,20:30,QUEENS,11004,40.752777,-73.70743,"(40.752777, -73.70743)",,,269-01 76 AVENUE,0,0,0,0,0,0,0,0,Illnes,,,,,4485077,Sedan,,,, +12/09/2021,10:13,BROOKLYN,11203,40.638523,-73.92607,"(40.638523, -73.92607)",KINGS HIGHWAY,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4485090,Sedan,Sedan,,, +03/26/2022,14:00,STATEN ISLAND,10301,40.637833,-74.08193,"(40.637833, -74.08193)",CORSON AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513697,Sedan,Sedan,,, +03/26/2022,1:02,MANHATTAN,10025,40.797836,-73.96946,"(40.797836, -73.96946)",WEST 101 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4513935,Sedan,Moped,,, +03/26/2022,16:02,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",QUEENS BOULEVARD,57 AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4513794,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,16:05,QUEENS,11411,40.699947,-73.736626,"(40.699947, -73.736626)",115 AVENUE,221 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514267,Station Wagon/Sport Utility Vehicle,Bus,,, +03/21/2022,12:05,MANHATTAN,10018,40.75632,-73.999275,"(40.75632, -73.999275)",,,515 WEST 36 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514237,Motorcycle,Sedan,,, +03/26/2022,5:13,QUEENS,11418,40.69614,-73.81789,"(40.69614, -73.81789)",131 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,17:42,BROOKLYN,11234,40.631687,-73.9205,"(40.631687, -73.9205)",,,935 EAST 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513751,Sedan,,,, +03/26/2022,12:18,BRONX,10466,40.88839,-73.84666,"(40.88839, -73.84666)",LACONIA AVENUE,EAST 231 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4514075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,20:10,BRONX,10462,40.844425,-73.8639,"(40.844425, -73.8639)",,,1706 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513857,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,15:45,BRONX,10472,40.833965,-73.8629,"(40.833965, -73.8629)",WHITE PLAINS ROAD,CROSS BRONX EXPRESSWAY,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4514202,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,17:55,BROOKLYN,11206,40.705738,-73.944695,"(40.705738, -73.944695)",MANHATTAN AVENUE,BOERUM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514347,Sedan,,,, +03/26/2022,0:50,BROOKLYN,11236,40.637905,-73.8878,"(40.637905, -73.8878)",AVENUE N,EAST 102 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513495,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,14:05,BROOKLYN,11210,40.635063,-73.94788,"(40.635063, -73.94788)",,,2067 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4513874,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/26/2022,9:30,,,40.804153,-73.91304,"(40.804153, -73.91304)",BRUCKNER BOULEVARD,EAST 137 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514263,Sedan,,,, +03/10/2022,8:30,BROOKLYN,11238,40.676403,-73.96287,"(40.676403, -73.96287)",PROSPECT PLACE,GRAND AVENUE,,4,0,0,0,0,0,4,0,Other Vehicular,Following Too Closely,Unspecified,,,4514323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +03/24/2022,23:00,BRONX,10472,40.829777,-73.85055,"(40.829777, -73.85055)",WATSON AVENUE,CASTLE HILL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514182,Sedan,,,, +03/26/2022,7:36,BROOKLYN,11209,40.613926,-74.030174,"(40.613926, -74.030174)",FORT HAMILTON PARKWAY,97 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4513515,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +03/26/2022,11:50,BROOKLYN,11236,40.635563,-73.89577,"(40.635563, -73.89577)",EAST 94 STREET,AVENUE M,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4513663,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,17:42,QUEENS,11420,40.675167,-73.825264,"(40.675167, -73.825264)",114 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4513953,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,1:45,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4513985,Sedan,Sedan,,, +03/26/2022,17:00,BROOKLYN,11249,40.712284,-73.964005,"(40.712284, -73.964005)",,,98 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514084,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/25/2022,11:48,QUEENS,11432,40.70546,-73.7949,"(40.70546, -73.7949)",JAMAICA AVENUE,165 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4514144,E-Scooter,Sedan,,, +03/26/2022,22:51,,,40.74967,-73.99531,"(40.74967, -73.99531)",WEST 30 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4513606,Sedan,,,, +03/26/2022,8:21,MANHATTAN,10032,40.833786,-73.94037,"(40.833786, -73.94037)",SAINT NICHOLAS AVENUE,WEST 159 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513564,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/17/2022,8:00,,,40.67794,-73.8023,"(40.67794, -73.8023)",139 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4514412,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,10:30,BROOKLYN,11220,40.637985,-74.0076,"(40.637985, -74.0076)",,,736 56 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,9:23,,,,,,JACKIE ROBINSON EXPY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487185,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,13:48,MANHATTAN,10032,40.835037,-73.93979,"(40.835037, -73.93979)",,,1016 SAINT NICHOLAS AVENUE,1,0,1,0,0,0,0,0,,,,,,4513565,,,,, +03/25/2022,9:56,,,40.9046,-73.852936,"(40.9046, -73.852936)",EAST 241 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514286,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/26/2022,23:45,QUEENS,11104,40.742508,-73.91788,"(40.742508, -73.91788)",47 STREET,GREENPOINT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513637,Sedan,Sedan,,, +03/26/2022,1:26,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513528,UTILITY,Station Wagon/Sport Utility Vehicle,,, +03/22/2022,9:07,BROOKLYN,11238,,,,GRAND AVENUE,GREENE AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4514139,Sedan,,,, +03/26/2022,16:00,BROOKLYN,11207,40.67046,-73.88788,"(40.67046, -73.88788)",SUTTER AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513833,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/26/2022,23:17,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",ESSEX STREET,EAST HOUSTON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4513887,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/23/2022,9:00,,,40.67639,-73.97189,"(40.67639, -73.97189)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4514160,Sedan,Motorcycle,,, +03/26/2022,5:00,,,40.88893,-73.86579,"(40.88893, -73.86579)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514002,Sedan,Sedan,,, +03/25/2022,6:15,,,40.80118,-73.93975,"(40.80118, -73.93975)",EAST 120 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4514152,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2022,21:50,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4513626,Taxi,Sedan,,, +03/26/2022,21:25,BROOKLYN,11225,40.668896,-73.95339,"(40.668896, -73.95339)",,,200 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,18:13,BROOKLYN,11218,40.63654,-73.97707,"(40.63654, -73.97707)",,,604 EAST 2 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4514376,Sedan,Sedan,Sedan,Sedan, +03/26/2022,20:10,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",EAST 168 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4513982,Sedan,,,, +03/25/2022,12:55,,,40.85868,-73.89922,"(40.85868, -73.89922)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514220,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/23/2022,11:00,,,40.62466,-74.17856,"(40.62466, -74.17856)",GULF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514413,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,3:05,BROOKLYN,11236,40.63947,-73.902756,"(40.63947, -73.902756)",AVENUE J,EAST 92 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4513664,Sedan,,,, +03/26/2022,4:34,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4513725,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,19:56,BROOKLYN,11201,40.69538,-73.985115,"(40.69538, -73.985115)",,,11 METROTECH CENTER,0,0,0,0,0,0,0,0,Unspecified,,,,,4514298,Sedan,,,, +03/26/2022,12:40,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513573,Sedan,Sedan,,, +03/26/2022,1:58,BRONX,10472,40.82707,-73.87075,"(40.82707, -73.87075)",,,1670 WATSON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514201,Sedan,Sedan,,, +03/26/2022,19:56,,,40.60548,-73.93922,"(40.60548, -73.93922)",GERRITSEN AVENUE,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514030,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,0:30,BROOKLYN,11221,40.692593,-73.91551,"(40.692593, -73.91551)",MADISON STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/16/2022,15:44,MANHATTAN,10017,,,,49 street,5 avenue,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514194,Bike,,,, +03/26/2022,20:05,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514278,Sedan,Sedan,,, +03/26/2022,17:54,BROOKLYN,11226,40.645718,-73.95002,"(40.645718, -73.95002)",,,168 EAST 29 STREET,4,0,0,0,0,0,4,0,Passing Too Closely,Unspecified,,,,4513803,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,17:55,,,40.68327,-73.95016,"(40.68327, -73.95016)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514241,Sedan,Motorcycle,,, +12/12/2021,9:09,,,40.84036,-73.91807,"(40.84036, -73.91807)",JEROME AVENUE,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4487210,Taxi,,,, +04/13/2021,16:00,BROOKLYN,11222,,,,VANDERVORT AVENUE,ANTHONY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407811,Sedan,,,, +08/05/2021,18:17,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4456746,Sedan,Sedan,,, +03/26/2022,16:35,BROOKLYN,11235,40.577652,-73.96344,"(40.577652, -73.96344)",,,3071 BRIGHTON 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513878,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/26/2022,19:50,MANHATTAN,10012,40.730145,-73.99781,"(40.730145, -73.99781)",,,60 WASHINGTON SQUARE SOUTH,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4513735,E-Bike,BOX VAN,,, +03/26/2022,13:19,QUEENS,11420,40.67478,-73.806206,"(40.67478, -73.806206)",ROCKAWAY BOULEVARD,132 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513958,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,8:45,BROOKLYN,11230,40.624622,-73.97598,"(40.624622, -73.97598)",,,1175 MC DONALD AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4514367,Sedan,Sedan,,, +03/26/2022,10:10,BROOKLYN,11217,40.67271,-73.97089,"(40.67271, -73.97089)",UNION STREET,PLAZA STREET WEST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,11:45,,,40.7314,-73.926094,"(40.7314, -73.926094)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4514212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,14:35,,,40.632786,-74.13712,"(40.632786, -74.13712)",PORT RICHMOND AVENUE,HATFIELD PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514420,Sedan,,,, +03/26/2022,14:30,STATEN ISLAND,10305,40.596733,-74.07045,"(40.596733, -74.07045)",MCCLEAN AVENUE,SAND LANE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513923,Sedan,Sedan,,, +03/26/2022,19:00,BROOKLYN,11234,40.617645,-73.92092,"(40.617645, -73.92092)",,,1549 EAST 56 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513752,Sedan,,,, +03/26/2022,2:05,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513924,Taxi,Pick-up Truck,,, +03/26/2022,16:40,BROOKLYN,11217,40.68651,-73.98378,"(40.68651, -73.98378)",,,436 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4513860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,18:05,BROOKLYN,11206,40.69831,-73.9498,"(40.69831, -73.9498)",MARCY AVENUE,ELLERY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514251,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,3:35,,,40.692455,-73.76814,"(40.692455, -73.76814)",179 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4513478,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/20/2022,10:34,MANHATTAN,10024,40.778805,-73.974075,"(40.778805, -73.974075)",WEST 76 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4514302,Sedan,,,, +03/26/2022,14:54,MANHATTAN,10001,40.747894,-73.989174,"(40.747894, -73.989174)",AVENUE OF THE AMERICAS,WEST 31 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513708,Sedan,Taxi,,, +03/25/2022,6:35,BRONX,10472,40.83578,-73.871445,"(40.83578, -73.871445)",,,1700 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514189,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,14:00,,,40.61763,-74.133575,"(40.61763, -74.133575)",LEONARD AVENUE,FISKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514419,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/21/2022,19:13,,,40.731407,-73.99698,"(40.731407, -73.99698)",WASHINGTON SQUARE NORTH,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514234,Sedan,Bike,,, +03/26/2022,5:02,BROOKLYN,11223,40.60784,-73.961975,"(40.60784, -73.961975)",CONEY ISLAND AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4513496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,9:45,,,40.752563,-73.74328,"(40.752563, -73.74328)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4514266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/26/2022,22:54,BROOKLYN,11217,40.67848,-73.98232,"(40.67848, -73.98232)",,,177 4 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513680,Taxi,Sedan,,, +03/26/2022,21:00,BROOKLYN,11219,40.629475,-74.004166,"(40.629475, -74.004166)",,,1115 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513861,Sedan,,,, +03/26/2022,17:29,BROOKLYN,11213,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514326,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,2:10,MANHATTAN,10018,40.754707,-73.99164,"(40.754707, -73.99164)",WEST 38 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513739,Bike,,,, +03/25/2022,0:00,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514180,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,4:00,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514209,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,4:34,QUEENS,11385,40.702972,-73.888054,"(40.702972, -73.888054)",CENTRAL AVENUE,66 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4513795,Sedan,,,, +03/09/2022,11:56,,,40.786366,-73.97598,"(40.786366, -73.97598)",WEST 84 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514297,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,14:41,BROOKLYN,11228,40.624474,-74.00668,"(40.624474, -74.00668)",70 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513572,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,18:00,QUEENS,11361,40.76532,-73.771904,"(40.76532, -73.771904)",39 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513591,Sedan,Sedan,,, +03/26/2022,13:30,,,40.597683,-73.96686,"(40.597683, -73.96686)",AVENUE U,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514011,Sedan,,,, +03/26/2022,13:20,STATEN ISLAND,10305,40.609768,-74.06969,"(40.609768, -74.06969)",SAINT JOHNS AVENUE,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4513701,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +03/25/2022,21:35,MANHATTAN,10035,40.798286,-73.938705,"(40.798286, -73.938705)",,,231 EAST 117 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514155,Taxi,Sedan,,, +03/23/2022,21:00,QUEENS,11354,40.776764,-73.848015,"(40.776764, -73.848015)",,,25-03 120 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514334,Sedan,,,, +03/26/2022,12:00,QUEENS,11377,40.747498,-73.91309,"(40.747498, -73.91309)",,,39-34 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4513548,Sedan,,,, +03/26/2022,13:28,BROOKLYN,11206,40.701637,-73.942276,"(40.701637, -73.942276)",GRAHAM AVENUE,DEBEVOISE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,19:12,QUEENS,11419,40.69349,-73.826546,"(40.69349, -73.826546)",,,94-39 120 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513581,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,21:29,QUEENS,11374,40.726463,-73.85943,"(40.726463, -73.85943)",WETHEROLE STREET,65 ROAD,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4513772,Bike,,,, +03/25/2022,13:21,BRONX,10458,40.856434,-73.886826,"(40.856434, -73.886826)",EAST 188 STREET,ARTHUR AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514221,Sedan,Sedan,,, +03/22/2022,8:20,BRONX,10467,40.87151,-73.87057,"(40.87151, -73.87057)",BURKE AVENUE,BRONX PARK EAST,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4514277,Sedan,Bike,,, +03/26/2022,22:30,BROOKLYN,11238,40.68686,-73.96758,"(40.68686, -73.96758)",,,386 CLINTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514166,Sedan,,,, +03/26/2022,11:20,,,40.624763,-73.96518,"(40.624763, -73.96518)",CONEY ISLAND AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4513691,Sedan,,,, +03/26/2022,18:17,QUEENS,11422,40.678417,-73.729225,"(40.678417, -73.729225)",130 AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513782,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/14/2022,10:30,QUEENS,11433,40.692596,-73.79078,"(40.692596, -73.79078)",,,160-18 110 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514390,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,1:30,,,40.734486,-73.891754,"(40.734486, -73.891754)",CALAMUS AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514215,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +03/26/2022,3:23,BRONX,10475,40.88399,-73.82641,"(40.88399, -73.82641)",,,2291 NEW ENGLAND THRUWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4513994,Box Truck,Sedan,,, +03/26/2022,1:45,BROOKLYN,11238,40.683872,-73.95998,"(40.683872, -73.95998)",,,41 IRVING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513503,Taxi,Station Wagon/Sport Utility Vehicle,,, +03/05/2022,14:52,MANHATTAN,10035,40.799484,-73.92929,"(40.799484, -73.92929)",,,30 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514151,Sedan,,,, +03/26/2022,20:27,,,40.70839,-74.00482,"(40.70839, -74.00482)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513655,Sedan,E-Bike,,, +03/26/2022,18:19,MANHATTAN,10019,40.766502,-73.99418,"(40.766502, -73.99418)",WEST 51 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514070,Sedan,,,, +03/26/2022,23:00,QUEENS,11420,40.676304,-73.816284,"(40.676304, -73.816284)",,,115-36 122 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4513952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2022,18:00,BROOKLYN,11207,40.66447,-73.89593,"(40.66447, -73.89593)",GEORGIA AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513827,Sedan,Sedan,,, +03/23/2022,20:40,,,40.709835,-74.014885,"(40.709835, -74.014885)",WEST STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4514285,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,11:45,,,40.585342,-73.94157,"(40.585342, -73.94157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521782,Sedan,,,, +09/11/2021,12:01,MANHATTAN,10016,40.746395,-73.9856,"(40.746395, -73.9856)",,,3 EAST 31 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457012,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,11:00,BROOKLYN,11230,40.617004,-73.96912,"(40.617004, -73.96912)",OCEAN PARKWAY,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,20:15,MANHATTAN,10013,40.718662,-74.00615,"(40.718662, -74.00615)",,,116 FRANKLIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456987,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,8:15,BROOKLYN,11238,40.680664,-73.97028,"(40.680664, -73.97028)",,,590 DEAN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4456970,,,,, +12/10/2021,23:07,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",BERGEN STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485574,Sedan,,,, +12/10/2021,21:50,,,40.806835,-73.924355,"(40.806835, -73.924355)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4485894,Station Wagon/Sport Utility Vehicle,,,, +11/27/2021,5:40,BROOKLYN,11234,40.627735,-73.920105,"(40.627735, -73.920105)",,,1100 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4485637,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,5:15,,,0,0,"(0.0, 0.0)",ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4484930,Sedan,Sedan,,, +12/08/2021,12:58,BROOKLYN,11225,40.661263,-73.955765,"(40.661263, -73.955765)",,,203 LINCOLN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4484996,Convertible,,,, +12/08/2021,17:50,,,40.844883,-73.907295,"(40.844883, -73.907295)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4484861,Tractor Truck Diesel,Sedan,Pick-up Truck,, +12/10/2021,4:30,QUEENS,11369,40.76104,-73.88162,"(40.76104, -73.88162)",,,30-27 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485177,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,21:22,,,40.669777,-73.9583,"(40.669777, -73.9583)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485316,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,8:30,BRONX,10457,40.839443,-73.90436,"(40.839443, -73.90436)",,,425 CLAREMONT PARKWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485668,Ambulance,Sedan,,, +12/10/2021,12:15,QUEENS,11101,40.75245,-73.94507,"(40.75245, -73.94507)",13 STREET,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485385,Station Wagon/Sport Utility Vehicle,Tanker,,, +12/08/2021,14:38,BROOKLYN,11217,40.687748,-73.980125,"(40.687748, -73.980125)",,,25 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4484892,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/03/2021,13:40,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4485246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/10/2021,8:50,BRONX,10455,40.8176,-73.90373,"(40.8176, -73.90373)",,,800 EAST 156 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4485893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,19:45,BROOKLYN,11236,40.638428,-73.91275,"(40.638428, -73.91275)",GLENWOOD ROAD,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485586,Sedan,,,, +12/10/2021,16:07,MANHATTAN,10027,40.813885,-73.95211,"(40.813885, -73.95211)",,,416 WEST 129 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485696,Sedan,AMBULANCE,,, +12/08/2021,6:37,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4485123,Sedan,Sedan,Sedan,Sedan, +12/10/2021,21:20,MANHATTAN,10028,40.77733,-73.95456,"(40.77733, -73.95456)",,,204 EAST 84 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485914,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/10/2021,23:16,,,40.713135,-74.00407,"(40.713135, -74.00407)",CHAMBERS STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485304,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,17:21,,,40.775486,-73.98217,"(40.775486, -73.98217)",BROADWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485055,Taxi,Sedan,,, +12/09/2021,7:30,BROOKLYN,11223,40.591137,-73.97752,"(40.591137, -73.97752)",BOYNTON PLACE,WEST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485539,Sedan,,,, +11/24/2021,23:58,,,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4485241,,,,, +12/09/2021,17:00,MANHATTAN,10019,40.76551,-73.97795,"(40.76551, -73.97795)",,,140 WEST 58 STREET,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4485153,Taxi,Bike,,, +12/08/2021,8:15,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4484897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/11/2021,2:20,,,40.823772,-73.87245,"(40.823772, -73.87245)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4456035,Pick-up Truck,Convertible,,, +07/09/2021,12:00,,,40.84497,-73.90247,"(40.84497, -73.90247)",ITTNER PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456704,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/11/2021,15:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456122,Sedan,Sedan,,, +09/10/2021,14:50,,,40.675507,-74.00075,"(40.675507, -74.00075)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456919,Box Truck,,,, +07/01/2021,17:45,QUEENS,11691,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,HORTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,13:45,MANHATTAN,10014,40.730446,-74.00431,"(40.730446, -74.00431)",LEROY STREET,BEDFORD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456588,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,12:00,QUEENS,11432,40.721645,-73.8026,"(40.721645, -73.8026)",,,80-25 165 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456879,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,17:30,,,40.853477,-73.82622,"(40.853477, -73.82622)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,2:55,QUEENS,11420,40.66901,-73.80265,"(40.66901, -73.80265)",135 PLACE,133 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455749,Sedan,Sedan,,, +09/11/2021,17:15,STATEN ISLAND,10310,40.629475,-74.1123,"(40.629475, -74.1123)",,,694 FOREST AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4456087,Sedan,,,, +09/03/2021,17:14,BROOKLYN,11231,40.6843,-73.99724,"(40.6843, -73.99724)",CLINTON STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456941,Station Wagon/Sport Utility Vehicle,DL,,, +07/08/2021,12:30,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456691,Taxi,Pick-up Truck,,, +08/23/2021,11:50,,,40.80066,-73.9544,"(40.80066, -73.9544)",7 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456765,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,21:34,BRONX,10469,40.87645,-73.848175,"(40.87645, -73.848175)",BOSTON ROAD,FENTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456435,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,11:30,QUEENS,11373,40.737865,-73.876144,"(40.737865, -73.876144)",,,87-46 52 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456181,Sedan,Sedan,,, +09/06/2021,10:34,,,40.764103,-73.93277,"(40.764103, -73.93277)",21 STREET,33 ROAD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4456550,Sedan,Sedan,,, +07/08/2021,15:56,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4456615,Sedan,Sedan,,, +07/07/2021,23:06,,,40.824265,-73.95642,"(40.824265, -73.95642)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456647,Sedan,,,, +09/11/2021,6:51,,,40.702045,-73.9156,"(40.702045, -73.9156)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455820,Sedan,Sedan,,, +09/07/2021,12:30,,,40.85306,-73.931,"(40.85306, -73.931)",SAINT NICHOLAS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456845,Sedan,,,, +09/11/2021,4:10,MANHATTAN,10033,0,0,"(0.0, 0.0)",WEST 181 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456191,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,9:25,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456586,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,6:40,,,40.679344,-73.859535,"(40.679344, -73.859535)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4456718,Sedan,Sedan,,, +09/11/2021,17:35,QUEENS,11435,40.708923,-73.81877,"(40.708923, -73.81877)",,,137-65 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456821,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,17:17,STATEN ISLAND,10304,40.60203,-74.09572,"(40.60203, -74.09572)",ROME AVENUE,UPTON STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4456608,Sedan,Sedan,,, +09/10/2021,3:00,,,40.693787,-73.81173,"(40.693787, -73.81173)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4456531,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,5:59,BRONX,10459,40.826767,-73.888855,"(40.826767, -73.888855)",EAST 167 STREET,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4455832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,11:39,STATEN ISLAND,10306,40.56692,-74.116234,"(40.56692, -74.116234)",CLAWSON STREET,PRINCETON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4456735,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,17:30,QUEENS,11106,,,,33 st,31ave,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408019,Sedan,Sedan,,, +09/11/2021,17:40,BROOKLYN,11228,40.623913,-74.00726,"(40.623913, -74.00726)",12 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456734,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,22:15,,,40.592422,-73.99508,"(40.592422, -73.99508)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455983,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,7:15,BROOKLYN,11207,40.6783,-73.88988,"(40.6783, -73.88988)",FULTON STREET,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456323,Sedan,,,, +09/10/2021,17:00,QUEENS,11372,40.748962,-73.89176,"(40.748962, -73.89176)",74 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456889,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,11:33,BROOKLYN,11236,40.631508,-73.90506,"(40.631508, -73.90506)",,,1222 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456679,Sedan,Sedan,,, +09/11/2021,21:48,,,40.677322,-73.790955,"(40.677322, -73.790955)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456373,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,10:30,,,40.57666,-73.965836,"(40.57666, -73.965836)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,19:00,,,40.804585,-73.94782,"(40.804585, -73.94782)",WEST 120 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456758,Taxi,Bike,,, +09/11/2021,22:23,BRONX,10452,40.832916,-73.92939,"(40.832916, -73.92939)",OGDEN AVENUE,WEST 164 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456498,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,15:00,QUEENS,11428,40.722515,-73.73332,"(40.722515, -73.73332)",222 STREET,93 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455941,Sedan,,,, +09/10/2021,10:20,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,111 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4456778,Sedan,Sedan,,, +09/11/2021,0:00,BRONX,10474,40.807537,-73.8798,"(40.807537, -73.8798)",HALLECK STREET,VIELE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,15:01,BRONX,10467,40.878128,-73.86944,"(40.878128, -73.86944)",BRONX BOULEVARD,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4456627,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,4:00,,,40.75777,-73.854164,"(40.75777, -73.854164)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456640,Sedan,Sedan,,, +09/10/2021,8:45,BROOKLYN,11212,40.6569,-73.907486,"(40.6569, -73.907486)",,,940 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456812,Sedan,Bus,,, +09/11/2021,11:51,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455924,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,18:50,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455894,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +07/02/2021,7:10,,,40.81915,-73.93062,"(40.81915, -73.93062)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4456596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,13:26,STATEN ISLAND,10314,40.591778,-74.12734,"(40.591778, -74.12734)",,,1466 MANOR ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456742,Sedan,,,, +09/11/2021,5:30,QUEENS,11101,40.753994,-73.94244,"(40.753994, -73.94244)",21 STREET,41 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455969,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,12:55,MANHATTAN,10012,40.724846,-73.999,"(40.724846, -73.999)",,,101 PRINCE STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4455841,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,14:00,,,,,,CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4456497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,12:30,,,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4456711,Box Truck,Sedan,,, +09/11/2021,13:00,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456154,Sedan,E-Scooter,,, +09/11/2021,15:00,BROOKLYN,11203,40.648243,-73.929,"(40.648243, -73.929)",TILDEN AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456204,Sedan,Sedan,,, +07/08/2021,15:30,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456683,Sedan,,,, +07/09/2021,11:15,,,40.6843,-73.94121,"(40.6843, -73.94121)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,10:45,,,40.602425,-74.091354,"(40.602425, -74.091354)",TARGEE STREET,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4456521,Sedan,Sedan,,, +09/07/2021,17:35,BROOKLYN,11225,40.662037,-73.95077,"(40.662037, -73.95077)",,,1065 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4456865,Flat Bed,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/11/2021,19:08,BROOKLYN,11217,40.68164,-73.98568,"(40.68164, -73.98568)",NEVINS STREET,BUTLER STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456389,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,10:25,MANHATTAN,10128,40.781315,-73.94614,"(40.781315, -73.94614)",1 AVENUE,EAST 93 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4456512,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,14:00,,,40.74498,-73.89325,"(40.74498, -73.89325)",72 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455860,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,0:12,,,40.6117,-74.13918,"(40.6117, -74.13918)",VICTORY BOULEVARD,HARVEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456782,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,23:48,BROOKLYN,11234,40.616295,-73.92991,"(40.616295, -73.92991)",FLATBUSH AVENUE,AVENUE O,,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4455949,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,1:45,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",18 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,17:13,BRONX,10469,40.87122,-73.83709,"(40.87122, -73.83709)",,,1851 ADEE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456623,Sedan,,,, +09/09/2021,11:39,QUEENS,11416,40.680077,-73.852684,"(40.680077, -73.852684)",86 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456775,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,19:00,BRONX,10457,40.843384,-73.88987,"(40.843384, -73.88987)",,,1908 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456664,Sedan,,,, +09/11/2021,17:19,,,40.680023,-73.794624,"(40.680023, -73.794624)",146 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4456370,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/06/2021,18:00,BROOKLYN,11222,40.72937,-73.955444,"(40.72937, -73.955444)",,,133 MILTON STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4456567,Sedan,,,, +07/05/2021,17:20,BROOKLYN,11208,40.683754,-73.88565,"(40.683754, -73.88565)",ELTON STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456628,E-Bike,,,, +09/11/2021,9:10,,,40.70413,-73.76984,"(40.70413, -73.76984)",DUNLOP AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4456844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/11/2021,21:45,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",AVENUE P,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455985,Sedan,,,, +07/09/2021,6:51,BROOKLYN,11208,40.673676,-73.86576,"(40.673676, -73.86576)",SUTTER AVENUE,SHERIDAN AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4456655,Sedan,,,, +09/11/2021,21:00,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",LEXINGTON AVENUE,EAST 42 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456058,Station Wagon/Sport Utility Vehicle,Bus,,, +07/08/2021,14:30,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456600,Sedan,Sedan,,, +09/11/2021,18:38,QUEENS,11375,40.72218,-73.84406,"(40.72218, -73.84406)",,,70-31 108 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455907,Sedan,Sedan,,, +09/11/2021,15:28,MANHATTAN,10035,40.797924,-73.9296,"(40.797924, -73.9296)",,,90 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456549,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,16:40,,,40.626373,-73.99754,"(40.626373, -73.99754)",62 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4456897,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/11/2021,5:26,,,40.883133,-73.882095,"(40.883133, -73.882095)",WEST GUN HILL ROAD,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4456407,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/11/2021,12:30,BRONX,10470,40.90222,-73.85589,"(40.90222, -73.85589)",,,4526 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4456480,Sedan,,,, +09/10/2021,12:10,QUEENS,11366,40.72717,-73.78739,"(40.72717, -73.78739)",UNION TURNPIKE,181 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456829,Motorcycle,Sedan,,, +06/26/2021,10:30,QUEENS,11691,40.600792,-73.76711,"(40.600792, -73.76711)",,,31-29 DWIGHT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456660,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,21:00,,,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456715,Sedan,Sedan,,, +04/16/2021,17:55,BROOKLYN,11233,40.67922,-73.90405,"(40.67922, -73.90405)",BROADWAY,CONWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408080,Sedan,,,, +09/11/2021,13:10,MANHATTAN,10035,40.802982,-73.93815,"(40.802982, -73.93815)",,,129 EAST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456543,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,0:58,BROOKLYN,11222,40.731544,-73.955315,"(40.731544, -73.955315)",,,145 JAVA STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456592,Sedan,,,, +09/11/2021,2:38,QUEENS,11420,40.683323,-73.80648,"(40.683323, -73.80648)",,,111-48 VANWYCK EXPRESSWAY,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4456140,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,21:00,BROOKLYN,11222,40.732006,-73.95795,"(40.732006, -73.95795)",FRANKLIN STREET,INDIA STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4456577,Sedan,E-Bike,,, +09/11/2021,18:00,BROOKLYN,11212,40.6544,-73.92044,"(40.6544, -73.92044)",LINDEN BOULEVARD,EAST 91 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456200,Sedan,Sedan,,, +07/02/2021,16:45,QUEENS,11692,40.589592,-73.786385,"(40.589592, -73.786385)",,,57-07 SHORE FRONT PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456687,Sedan,Sedan,,, +09/11/2021,15:10,,,40.736164,-73.97891,"(40.736164, -73.97891)",EAST 22 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4456076,Bike,Sedan,,, +07/03/2021,10:18,QUEENS,11691,40.59723,-73.76237,"(40.59723, -73.76237)",DEERFIELD ROAD,BEACH 29 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456692,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,14:40,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",HAMILTON AVENUE,COURT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456921,Sedan,Sedan,,, +09/11/2021,2:00,,,40.840153,-73.88572,"(40.840153, -73.88572)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456350,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +09/11/2021,23:00,,,40.599503,-74.067116,"(40.599503, -74.067116)",HASTINGS STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456751,Sedan,,,, +07/04/2021,8:00,BRONX,10473,40.822456,-73.868065,"(40.822456, -73.868065)",,,851 NOBLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456619,Sedan,,,, +09/11/2021,15:30,BROOKLYN,11223,40.59841,-73.97592,"(40.59841, -73.97592)",,,2014 WEST 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456001,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,14:30,QUEENS,11421,40.697083,-73.85476,"(40.697083, -73.85476)",,,84-22 91 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,6:00,BRONX,10470,40.896385,-73.87246,"(40.896385, -73.87246)",,,4203 ONEIDA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4456632,Sedan,Sedan,,, +08/11/2021,0:01,,,40.695637,-73.80372,"(40.695637, -73.80372)",105 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4456853,Sedan,,,, +09/11/2021,9:30,,,40.69982,-73.996254,"(40.69982, -73.996254)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456250,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,16:40,,,40.590313,-74.09794,"(40.590313, -74.09794)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,18:05,,,40.787544,-73.82394,"(40.787544, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456089,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,2:00,BROOKLYN,11208,40.67539,-73.88113,"(40.67539, -73.88113)",SHEPHERD AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4456279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/07/2021,8:03,STATEN ISLAND,10301,40.634007,-74.07516,"(40.634007, -74.07516)",,,331 BAY STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456768,E-Bike,Sedan,,, +09/11/2021,13:53,QUEENS,11373,40.73844,-73.88628,"(40.73844, -73.88628)",,,77-00 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456183,Sedan,Sedan,,, +07/08/2021,11:50,,,40.60855,-74.13216,"(40.60855, -74.13216)",BRADLEY AVENUE,NORTH GANNON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,14:00,,,40.58573,-74.16865,"(40.58573, -74.16865)",,,2505 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,7:09,BROOKLYN,11229,40.599907,-73.94664,"(40.599907, -73.94664)",BEDFORD AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455757,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,15:40,MANHATTAN,10035,40.806713,-73.93782,"(40.806713, -73.93782)",,,1871 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,3:00,QUEENS,11372,40.748318,-73.87742,"(40.748318, -73.87742)",ROOSEVELT AVENUE,89 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457032,Sedan,,,, +07/05/2021,6:00,QUEENS,11434,40.68651,-73.76815,"(40.68651, -73.76815)",BAISLEY BOULEVARD,119 ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4456651,Sedan,Sedan,,, +09/11/2021,10:48,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,19:15,,,40.624203,-74.177124,"(40.624203, -74.177124)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456537,Sedan,,,, +07/06/2021,9:37,,,40.744526,-73.77161,"(40.744526, -73.77161)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456646,Box Truck,Box Truck,,, +07/01/2021,15:30,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456631,Sedan,,,, +07/07/2021,18:04,BRONX,10461,40.8502,-73.8302,"(40.8502, -73.8302)",ARNOW PLACE,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456572,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:40,MANHATTAN,10013,40.715477,-73.998085,"(40.715477, -73.998085)",,,65 BAYARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456851,Box Truck,Sedan,Sedan,, +09/11/2021,7:33,BROOKLYN,11229,40.611477,-73.94883,"(40.611477, -73.94883)",BEDFORD AVENUE,AVENUE P,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455822,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/08/2021,11:50,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4456587,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,8:00,BROOKLYN,11204,40.61578,-73.99995,"(40.61578, -73.99995)",BAY RIDGE PARKWAY,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455993,Ambulance,Bike,,, +09/08/2021,8:43,MANHATTAN,10031,40.82207,-73.94993,"(40.82207, -73.94993)",WEST 140 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456721,Sedan,,,, +09/11/2021,23:00,QUEENS,11368,40.74606,-73.85583,"(40.74606, -73.85583)",,,108-10 48 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456186,Sedan,,,, +09/09/2021,12:00,QUEENS,,40.72013,-73.79038,"(40.72013, -73.79038)",GRAND CENTRAL PARKWAY,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456819,Motorcycle,,,, +07/07/2021,17:13,QUEENS,11433,40.688435,-73.78765,"(40.688435, -73.78765)",LINDEN BOULEVARD,BEDELL STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456609,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/11/2021,18:03,BRONX,10457,40.84964,-73.89661,"(40.84964, -73.89661)",EAST 179 STREET,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4456078,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,17:00,QUEENS,11416,40.68329,-73.85491,"(40.68329, -73.85491)",,,85-01 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456529,Sedan,,,, +09/08/2021,18:13,MANHATTAN,10027,40.812912,-73.95364,"(40.812912, -73.95364)",,,415 WEST 127 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456726,Taxi,,,, +09/11/2021,20:50,QUEENS,11434,40.6639,-73.7804,"(40.6639, -73.7804)",,,145-26 158 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456558,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:16,QUEENS,11691,40.59312,-73.772705,"(40.59312, -73.772705)",EDGEMERE AVENUE,BEACH 41 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456705,Sedan,,,, +09/11/2021,18:21,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456123,Sedan,Sedan,,, +06/29/2021,16:26,,,40.596687,-73.74422,"(40.596687, -73.74422)",BEACH 9 STREET,SEAGIRT BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456673,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,3:52,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4456641,Sedan,,,, +07/08/2021,8:50,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456599,Tow Truck / Wrecker,Sedan,,, +07/09/2021,10:38,BROOKLYN,11236,40.63874,-73.8952,"(40.63874, -73.8952)",ROCKAWAY PARKWAY,AVENUE L,,1,0,1,0,0,0,0,0,Tinted Windows,,,,,4456688,Sedan,,,, +09/11/2021,17:45,QUEENS,11422,40.675255,-73.73207,"(40.675255, -73.73207)",BROOKVILLE BOULEVARD,133 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455904,Sedan,Tow Truck / Wrecker,,, +09/11/2021,1:30,BRONX,10453,40.846313,-73.92385,"(40.846313, -73.92385)",,,1523 UNDERCLIFF AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455927,Dump,Sedan,,, +09/11/2021,2:00,BROOKLYN,11229,40.608364,-73.95727,"(40.608364, -73.95727)",EAST 16 STREET,QUENTIN ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456395,,,,, +09/11/2021,17:08,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456745,Sedan,Sedan,,, +07/08/2021,23:25,BROOKLYN,11208,40.682724,-73.88539,"(40.682724, -73.88539)",ELTON STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456636,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/11/2021,1:20,BRONX,10473,40.80789,-73.852844,"(40.80789, -73.852844)",SOUND VIEW AVENUE,STEPHENS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4456036,Sedan,Sedan,Sedan,, +09/10/2021,0:00,,,40.607754,-74.13205,"(40.607754, -74.13205)",BRADLEY AVENUE,SOUTH GANNON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,16:33,MANHATTAN,10001,,,,WEST 33 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456517,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,11:17,,,40.708324,-73.84314,"(40.708324, -73.84314)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456764,Taxi,,,, +09/10/2021,17:08,MANHATTAN,10029,40.79194,-73.95281,"(40.79194, -73.95281)",,,1212 5 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4456791,Taxi,Sedan,Sedan,Sedan, +07/08/2021,17:55,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456614,Motorcycle,,,, +09/11/2021,13:35,,,40.86463,-73.892136,"(40.86463, -73.892136)",EAST 194 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455863,Sedan,,,, +09/11/2021,0:50,BROOKLYN,11207,40.67856,-73.889015,"(40.67856, -73.889015)",FULTON STREET,BARBEY STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4456313,Sedan,Sedan,Sedan,, +09/11/2021,3:00,,,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456409,Tow Truck / Wrecker,Garbage or Refuse,,, +09/11/2021,4:41,MANHATTAN,10029,40.79184,-73.93556,"(40.79184, -73.93556)",EAST 111 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455916,Sedan,,,, +09/11/2021,21:05,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456096,Sedan,Sedan,,, +09/11/2021,20:59,,,40.7359,-73.91338,"(40.7359, -73.91338)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4456878,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/04/2021,22:22,,,,,,LAYTON AVENUE,THROGMORTAN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4456568,,,,, +09/10/2021,21:03,MANHATTAN,10002,40.710697,-73.984634,"(40.710697, -73.984634)",,,299 SOUTH STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456953,Sedan,E-Scooter,,, +09/10/2021,14:35,,,40.760777,-73.95702,"(40.760777, -73.95702)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456522,Sedan,Pick-up Truck,,, +06/26/2021,17:23,BRONX,10474,40.81358,-73.89385,"(40.81358, -73.89385)",,,770 BARRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456700,Sedan,,,, +09/11/2021,23:18,,,40.575302,-73.98453,"(40.575302, -73.98453)",SURF AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4456023,Sedan,Sedan,,, +09/10/2021,13:10,BROOKLYN,11212,40.66843,-73.91919,"(40.66843, -73.91919)",PITKIN AVENUE,GRAFTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456810,Sedan,E-Bike,,, +09/11/2021,15:45,,,40.81701,-73.9595,"(40.81701, -73.9595)",SAINT CLAIR PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456105,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,16:00,BRONX,10458,40.85755,-73.882835,"(40.85755, -73.882835)",,,2488 CAMBRELENG AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456668,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,19:56,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456867,Sedan,,,, +09/11/2021,15:45,,,40.685795,-73.911644,"(40.685795, -73.911644)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456988,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,22:30,,,40.69305,-73.799446,"(40.69305, -73.799446)",108 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,14:35,QUEENS,11691,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,HASSOCK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456663,Pick-up Truck,,,, +07/08/2021,18:40,,,40.720627,-74.00522,"(40.720627, -74.00522)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456624,Sedan,Sedan,,, +07/04/2021,4:00,QUEENS,11369,40.763496,-73.87814,"(40.763496, -73.87814)",,,91-07 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4456563,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,21:19,QUEENS,11416,40.686646,-73.849075,"(40.686646, -73.849075)",93 STREET,95 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4456656,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/11/2021,15:01,BROOKLYN,11235,40.579445,-73.9544,"(40.579445, -73.9544)",,,101 CORBIN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456388,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,19:00,MANHATTAN,10019,40.762966,-73.973976,"(40.762966, -73.973976)",5 AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456757,Sedan,Motorcycle,,, +09/11/2021,0:20,,,40.76555,-73.83911,"(40.76555, -73.83911)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4455827,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,10:55,MANHATTAN,10028,40.779602,-73.95553,"(40.779602, -73.95553)",,,1280 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4456511,Sedan,,,, +09/11/2021,1:39,STATEN ISLAND,10312,40.553192,-74.164345,"(40.553192, -74.164345)",RIDGEWOOD AVENUE,GENESEE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456741,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,18:16,BRONX,10460,40.836094,-73.883995,"(40.836094, -73.883995)",,,1005 EAST 174 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455973,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:58,BROOKLYN,11229,40.59692,-73.94122,"(40.59692, -73.94122)",,,3540 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456695,Sedan,,,, +09/11/2021,22:30,BROOKLYN,11204,40.62318,-73.98611,"(40.62318, -73.98611)",18 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456420,Sedan,Sedan,,, +09/11/2021,18:55,BROOKLYN,11207,40.67562,-73.88826,"(40.67562, -73.88826)",LIBERTY AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456317,Tow Truck / Wrecker,Sedan,,, +09/07/2021,12:42,MANHATTAN,10026,40.80609,-73.95414,"(40.80609, -73.95414)",,,2200 8 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4456781,Sedan,,,, +09/10/2021,17:39,BRONX,10467,40.87739,-73.8665,"(40.87739, -73.8665)",WHITE PLAINS ROAD,EAST GUN HILL ROAD,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4457006,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/11/2021,19:20,,,40.689133,-73.951324,"(40.689133, -73.951324)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4456149,Sedan,Sedan,,, +06/30/2021,19:20,BRONX,10452,40.83604,-73.92222,"(40.83604, -73.92222)",,,2 EAST 167 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456667,Sedan,,,, +09/10/2021,20:19,MANHATTAN,10021,40.76649,-73.95696,"(40.76649, -73.95696)",EAST 70 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456885,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,13:26,BROOKLYN,11222,40.731613,-73.9545,"(40.731613, -73.9545)",MANHATTAN AVENUE,JAVA STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4456595,Pick-up Truck,Bike,,, +09/11/2021,8:45,MANHATTAN,10038,40.708324,-74.00311,"(40.708324, -74.00311)",,,294 PEARL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456980,Sedan,Sedan,Sedan,, +09/11/2021,19:00,BROOKLYN,11203,40.65375,-73.931274,"(40.65375, -73.931274)",,,730 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4456203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2021,23:50,,,,,,BEACH 17 STREET,SEAGRIT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456564,Sedan,Sedan,,, +07/01/2021,8:10,QUEENS,11691,40.60675,-73.756645,"(40.60675, -73.756645)",,,22-59 DIX AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456678,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,3:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456052,Van,Sedan,Sedan,, +03/25/2022,9:55,QUEENS,11101,40.743534,-73.93951,"(40.743534, -73.93951)",28 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514217,Sedan,Sedan,,, +09/01/2021,19:30,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BREWER BOULEVARD,BAISLEY BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456903,Sedan,,,, +09/10/2021,15:20,MANHATTAN,10013,40.724274,-74.01136,"(40.724274, -74.01136)",WEST STREET,WATTS STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456982,Sedan,E-Bike,,, +09/11/2021,15:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4456544,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/11/2021,14:34,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",BROADWAY,WEST 133 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456104,Box Truck,,,, +09/10/2021,9:00,QUEENS,11433,40.69558,-73.788704,"(40.69558, -73.788704)",,,164-21 109 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456860,Pick-up Truck,,,, +09/11/2021,3:25,,,40.80484,-73.912796,"(40.80484, -73.912796)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456454,Pick-up Truck,Sedan,Sedan,, +09/11/2021,1:00,BROOKLYN,11225,40.658466,-73.96049,"(40.658466, -73.96049)",,,609 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455840,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +09/11/2021,11:25,BRONX,10468,40.868164,-73.90054,"(40.868164, -73.90054)",,,79 WEST KINGSBRIDGE ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456235,Sedan,Bike,,, +09/11/2021,21:30,BROOKLYN,11225,40.66169,-73.96143,"(40.66169, -73.96143)",FLATBUSH AVENUE,LEFFERTS AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4455935,Sedan,Chassis Cab,,, +07/09/2021,12:30,BRONX,10467,40.87037,-73.87052,"(40.87037, -73.87052)",,,2970 BRONX PARK EAST,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456710,E-Bike,E-Bike,,, +09/05/2021,21:18,QUEENS,11412,40.69674,-73.76292,"(40.69674, -73.76292)",114 DRIVE,MEXICO STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4457021,Sedan,Sedan,,, +09/11/2021,3:00,BROOKLYN,11207,40.65958,-73.89247,"(40.65958, -73.89247)",SHEFFIELD AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,11:30,,,40.83232,-73.87395,"(40.83232, -73.87395)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4456043,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/11/2021,21:35,QUEENS,11385,40.708534,-73.914925,"(40.708534, -73.914925)",DE KALB AVENUE,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456227,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,16:04,QUEENS,11105,40.777496,-73.90784,"(40.777496, -73.90784)",,,31-20 21 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456682,Sedan,,,, +07/02/2021,14:00,,,40.83406,-73.944885,"(40.83406, -73.944885)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456576,,,,, +09/11/2021,23:20,QUEENS,11430,40.66615,-73.80575,"(40.66615, -73.80575)",SOUTH CONDUIT AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456134,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:25,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456583,Sedan,,,, +07/08/2021,15:15,MANHATTAN,10039,40.82324,-73.938835,"(40.82324, -73.938835)",,,211 WEST 147 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456605,Sedan,,,, +07/09/2021,12:22,QUEENS,11435,40.6974,-73.80952,"(40.6974, -73.80952)",143 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456699,Bus,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,15:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456536,Pick-up Truck,Flat Rack,,, +07/09/2021,3:25,QUEENS,11434,40.67897,-73.75985,"(40.67897, -73.75985)",MERRICK BOULEVARD,BELKNAP STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456650,Sedan,,,, +09/11/2021,2:05,STATEN ISLAND,10304,40.590313,-74.09794,"(40.590313, -74.09794)",GARRETSON AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,Unspecified,Unspecified,4456752,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/09/2021,0:00,BROOKLYN,11239,40.654343,-73.864204,"(40.654343, -73.864204)",,,11629 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456637,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,15:30,STATEN ISLAND,10310,40.62782,-74.12126,"(40.62782, -74.12126)",FOREST AVENUE,CLOVE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456769,Sedan,Sedan,,, +09/10/2021,21:27,,,40.592037,-74.15436,"(40.592037, -74.15436)",,,1128 ROCKLAND AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456786,Sedan,,,, +09/08/2021,10:10,,,40.79293,-73.950005,"(40.79293, -73.950005)",EAST 105 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4456798,Sedan,Bike,,, +09/11/2021,10:00,,,40.8452,-73.916885,"(40.8452, -73.916885)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4456410,Motorcycle,,,, +09/11/2021,7:58,QUEENS,11367,40.72609,-73.830154,"(40.72609, -73.830154)",,,70-07 PARK DRIVE EAST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4455912,Sedan,Sedan,,, +09/11/2021,16:25,MANHATTAN,10022,40.76092,-73.96704,"(40.76092, -73.96704)",3 AVENUE,EAST 58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455917,Taxi,Box Truck,,, +05/21/2019,22:50,BROOKLYN,11201,40.69754,-73.98312,"(40.69754, -73.98312)",GOLD STREET,CONCORD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4136992,�MBU,Taxi,,, +01/21/2020,15:49,,,,,,BRUCKNER BLVD,�ST 138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4277087,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/26/2021,14:50,BRONX,10461,40.843464,-73.836,"(40.843464, -73.836)",,,2819 MIDDLETOWN ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4395664,Station Wagon/Sport Utility Vehicle,,,, +03/09/2021,11:00,,,40.692547,-73.990974,"(40.692547, -73.990974)",COURT STREET,JORALEMON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4397513,Pick-up Truck,Sedan,,, +03/31/2021,22:20,BROOKLYN,11234,40.626457,-73.918,"(40.626457, -73.918)",RALPH AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4403773,Sedan,Sedan,,, +04/06/2021,22:58,STATEN ISLAND,10312,40.526894,-74.16728,"(40.526894, -74.16728)",BARCLAY AVENUE,HYLAN BOULEVARD,,7,0,0,0,0,0,7,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4405244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2021,14:45,,,40.840775,-73.87246,"(40.840775, -73.87246)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4405914,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2021,13:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408191,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2021,11:00,,,40.694035,-73.72679,"(40.694035, -73.72679)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4407366,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,21:15,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408149,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,13:30,BRONX,10461,40.857365,-73.84657,"(40.857365, -73.84657)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407778,Sedan,Ambulance,,, +04/14/2021,14:40,,,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407461,Box Truck,Sedan,,, +04/14/2021,21:43,QUEENS,11429,40.71402,-73.74827,"(40.71402, -73.74827)",,,211-20 99 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407407,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,17:40,BRONX,10474,40.815,-73.89402,"(40.815, -73.89402)",GARRISON AVENUE,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407900,Sedan,Sedan,,, +04/16/2021,0:50,,,40.55079,-74.20098,"(40.55079, -74.20098)",HUGUENOT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4407760,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/15/2021,10:30,BROOKLYN,11207,40.655903,-73.89817,"(40.655903, -73.89817)",,,319 DE WITT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407746,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,16:35,BRONX,10475,40.890076,-73.819855,"(40.890076, -73.819855)",BOSTON ROAD,ROPES AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4408143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,17:20,BROOKLYN,11236,40.650402,-73.89422,"(40.650402, -73.89422)",GLENWOOD ROAD,EAST 108 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407638,Sedan,Van,,, +04/16/2021,21:20,MANHATTAN,10025,40.79335,-73.97275,"(40.79335, -73.97275)",WEST 94 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407958,Sedan,,,, +04/16/2021,17:20,MANHATTAN,10012,40.72538,-74.00011,"(40.72538, -74.00011)",PRINCE STREET,WOOSTER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407885,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,14:30,QUEENS,11377,40.75184,-73.90358,"(40.75184, -73.90358)",BROADWAY,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407616,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,22:57,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4456355,PK,Sedan,,, +04/16/2021,23:20,BROOKLYN,11226,40.649788,-73.9622,"(40.649788, -73.9622)",EAST 19 STREET,CHURCH AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4408038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2021,18:15,BROOKLYN,11221,40.686928,-73.920815,"(40.686928, -73.920815)",,,50 HOWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408224,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,13:00,BROOKLYN,11211,40.712963,-73.93647,"(40.712963, -73.93647)",,,950 GRAND STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407392,Pick-up Truck,,,, +06/30/2021,11:47,QUEENS,11412,40.694294,-73.74868,"(40.694294, -73.74868)",203 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4456603,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,20:14,,,40.801285,-73.95394,"(40.801285, -73.95394)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407765,Sedan,Sedan,,, +04/14/2021,15:16,BROOKLYN,11220,40.633976,-74.02211,"(40.633976, -74.02211)",,,459 BAY RIDGE AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4407821,Sedan,Sedan,,, +04/15/2021,19:30,,,40.670296,-73.997604,"(40.670296, -73.997604)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407971,Sedan,,,, +04/16/2021,13:15,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,,,,4408071,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,21:08,BRONX,10451,40.817696,-73.922615,"(40.817696, -73.922615)",,,558 MORRIS AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4407430,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2021,20:34,BROOKLYN,11213,40.668495,-73.925606,"(40.668495, -73.925606)",EASTERN PARKWAY,BUFFALO AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408259,Sedan,,,, +04/13/2021,14:10,QUEENS,11434,40.662476,-73.768326,"(40.662476, -73.768326)",,,146-22 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4407049,Sedan,,,, +04/14/2021,22:00,,,,,,ROCKAWAY BOULEVARD,225 STREET,,3,0,0,0,0,0,3,0,Unspecified,,,,,4408369,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,12:16,BRONX,10460,40.841087,-73.86447,"(40.841087, -73.86447)",EAST TREMONT AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,18:15,BROOKLYN,11211,40.70955,-73.95887,"(40.70955, -73.95887)",HAVEMEYER STREET,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407674,Sedan,,,, +04/15/2021,19:30,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4407708,Sedan,Sedan,,, +04/14/2021,21:04,BROOKLYN,11206,40.700356,-73.95732,"(40.700356, -73.95732)",,,693 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4408396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,1:40,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4407152,Sedan,Sedan,,, +04/16/2021,18:00,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4407862,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,8:30,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407435,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,12:05,,,40.761436,-73.76995,"(40.761436, -73.76995)",BELL BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407636,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,11:00,QUEENS,11368,40.74958,-73.86541,"(40.74958, -73.86541)",,,100-10 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4407792,Station Wagon/Sport Utility Vehicle,Bike,,, +04/16/2021,17:00,QUEENS,11366,40.73197,-73.78651,"(40.73197, -73.78651)",73 AVENUE,184 STREET,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4407853,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,12:00,,,40.76249,-73.839584,"(40.76249, -73.839584)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408205,Box Truck,Dump,,, +04/16/2021,20:27,,,40.668507,-73.779625,"(40.668507, -73.779625)",140 AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407945,Sedan,,,, +04/15/2021,18:25,BROOKLYN,11203,40.638268,-73.93187,"(40.638268, -73.93187)",,,1411 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408118,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,16:08,BROOKLYN,11221,40.696735,-73.93481,"(40.696735, -73.93481)",BROADWAY,STUYVESANT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,11:55,,,40.870823,-73.8721,"(40.870823, -73.8721)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4407563,Sedan,,,, +04/14/2021,1:30,,,40.574867,-74.00069,"(40.574867, -74.00069)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408098,Sedan,Sedan,,, +04/14/2021,3:25,,,40.866577,-73.8722,"(40.866577, -73.8722)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4407169,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,8:05,QUEENS,11102,40.775414,-73.91984,"(40.775414, -73.91984)",24 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407798,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,20:13,BRONX,10457,40.84744,-73.89968,"(40.84744, -73.89968)",EAST TREMONT AVENUE,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407797,,,,, +04/14/2021,16:30,STATEN ISLAND,10308,40.542908,-74.15579,"(40.542908, -74.15579)",ARMSTRONG AVENUE,SYCAMORE STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4407349,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/14/2021,20:15,,,40.78468,-73.80911,"(40.78468, -73.80911)",CLINTONVILLE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4407994,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,16:37,BROOKLYN,11210,40.632416,-73.94724,"(40.632416, -73.94724)",,,1582 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408032,Sedan,,,, +04/15/2021,6:05,BROOKLYN,11237,40.714207,-73.92817,"(40.714207, -73.92817)",METROPOLITAN AVENUE,STEWART AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407478,Sedan,Sedan,,, +04/16/2021,8:40,QUEENS,11379,40.727913,-73.873245,"(40.727913, -73.873245)",ELIOT AVENUE,85 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407924,Sedan,,,, +04/15/2021,20:15,BRONX,10461,40.854485,-73.854645,"(40.854485, -73.854645)",,,2013 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4408315,Ambulance,,,, +04/13/2021,23:00,BROOKLYN,11237,40.698986,-73.91671,"(40.698986, -73.91671)",,,1479 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407892,Sedan,,,, +04/16/2021,20:55,MANHATTAN,10032,40.841717,-73.94435,"(40.841717, -73.94435)",,,1051 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408280,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,17:25,BRONX,10475,40.861687,-73.82435,"(40.861687, -73.82435)",,,2400 HUNTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408403,Sedan,,,, +04/16/2021,6:45,BROOKLYN,11221,40.691822,-73.92223,"(40.691822, -73.92223)",BUSHWICK AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4407753,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/10/2021,12:00,BRONX,10453,40.856014,-73.91213,"(40.856014, -73.91213)",WEST 180 STREET,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408003,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2021,15:53,,,40.83383,-73.921234,"(40.83383, -73.921234)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4407497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2021,17:00,,,40.68781,-73.9237,"(40.68781, -73.9237)",MADISON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408229,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,19:10,BROOKLYN,11218,40.642044,-73.98124,"(40.642044, -73.98124)",STORY STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407525,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,13:55,QUEENS,11385,40.69814,-73.89111,"(40.69814, -73.89111)",COOPER AVENUE,64 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4407817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,0:00,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4407539,Station Wagon/Sport Utility Vehicle,PK,,, +09/11/2021,20:00,QUEENS,11429,40.703217,-73.73427,"(40.703217, -73.73427)",MURDOCK AVENUE,223 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455944,Sedan,Sedan,,, +04/16/2021,16:00,,,40.680897,-73.95118,"(40.680897, -73.95118)",ARLINGTON PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408306,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,22:25,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",WEST 42 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407830,Sedan,,,, +04/14/2021,10:09,MANHATTAN,10016,40.74608,-73.974945,"(40.74608, -73.974945)",2 AVENUE,EAST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407282,Tow Truck / Wrecker,Dump,,, +04/16/2021,0:01,BROOKLYN,11228,40.626293,-74.01572,"(40.626293, -74.01572)",FORT HAMILTON PARKWAY,74 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4407688,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,20:45,MANHATTAN,10065,40.767967,-73.96822,"(40.767967, -73.96822)",EAST 66 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407701,Sedan,,,, +04/15/2021,7:00,BROOKLYN,11207,40.673634,-73.89294,"(40.673634, -73.89294)",,,472 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407728,Sedan,,,, +04/15/2021,10:45,BROOKLYN,11224,40.579212,-73.976265,"(40.579212, -73.976265)",WEST 8 STREET,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408052,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,12:00,STATEN ISLAND,10306,40.57365,-74.11252,"(40.57365, -74.11252)",EDISON STREET,BACHE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407849,Sedan,Sedan,,, +04/14/2021,6:50,,,40.73632,-73.85631,"(40.73632, -73.85631)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4407320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2021,3:39,BROOKLYN,11230,40.619396,-73.969574,"(40.619396, -73.969574)",OCEAN PARKWAY,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4407291,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/16/2021,22:00,,,40.820263,-73.92976,"(40.820263, -73.92976)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408200,Sedan,,,, +04/14/2021,0:00,,,40.601864,-74.00232,"(40.601864, -74.00232)",BATH AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407649,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2021,19:10,,,40.810318,-73.943634,"(40.810318, -73.943634)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407802,Sedan,,,, +04/14/2021,13:35,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407345,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/16/2021,15:05,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",STEWART AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4408356,Sedan,Sedan,E-Scooter,, +04/14/2021,9:33,BRONX,10472,40.826424,-73.85868,"(40.826424, -73.85868)",BRUCKNER BOULEVARD,VIRGINIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,16:05,,,40.63174,-73.96793,"(40.63174, -73.96793)",FOSTER AVENUE,EAST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/15/2021,9:27,,,0,0,"(0.0, 0.0)",NORWAY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407538,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,11:45,BROOKLYN,11222,40.727146,-73.954735,"(40.727146, -73.954735)",,,190 GUERNSEY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4408332,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck, +04/11/2021,8:56,,,40.67253,-73.798386,"(40.67253, -73.798386)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4407785,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/16/2021,13:02,QUEENS,11385,40.702335,-73.89073,"(40.702335, -73.89073)",CENTRAL AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407929,Sedan,Sedan,,, +04/14/2021,0:00,BROOKLYN,11235,40.587894,-73.95504,"(40.587894, -73.95504)",,,1415 AVENUE Z,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,5:30,BROOKLYN,11236,40.65047,-73.917366,"(40.65047, -73.917366)",,,679 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408123,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,20:26,MANHATTAN,10032,40.836555,-73.94306,"(40.836555, -73.94306)",BROADWAY,WEST 161 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408290,,,,, +04/13/2021,9:00,BRONX,10475,40.870056,-73.83222,"(40.870056, -73.83222)",,,100 ALDRICH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408412,Sedan,,,, +04/15/2021,11:45,,,40.579372,-74.16948,"(40.579372, -74.16948)",RICHMOND AVENUE,PLATINUM AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407757,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2021,0:10,MANHATTAN,10027,40.805138,-73.945244,"(40.805138, -73.945244)",WEST 122 STREET,MOUNT MORRIS PARK WEST,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4407770,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2021,11:41,BRONX,10468,40.85968,-73.90427,"(40.85968, -73.90427)",,,2324 DAVIDSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407554,Sedan,,,, +04/15/2021,2:00,,,40.605595,-73.98404,"(40.605595, -73.98404)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407873,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/15/2021,0:05,BRONX,10473,40.819214,-73.84662,"(40.819214, -73.84662)",,,2245 RANDALL AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4407502,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,11:30,BRONX,10459,40.827972,-73.88707,"(40.827972, -73.88707)",,,1074 HOME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408044,Sedan,,,, +04/16/2021,15:30,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4408165,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,15:00,,,40.719177,-73.79223,"(40.719177, -73.79223)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407544,Sedan,Taxi,,, +04/14/2021,8:03,MANHATTAN,10017,40.748825,-73.96984,"(40.748825, -73.96984)",EAST 42 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407277,Taxi,,,, +04/16/2021,7:45,QUEENS,11377,40.733597,-73.91062,"(40.733597, -73.91062)",,,53-15 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407834,Sedan,,,, +04/14/2021,6:45,STATEN ISLAND,10308,40.54048,-74.153404,"(40.54048, -74.153404)",ARMSTRONG AVENUE,HILLCREST STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4407338,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,22:43,,,40.738403,-73.93864,"(40.738403, -73.93864)",30 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407397,Pick-up Truck,Tow Truck / Wrecker,,, +04/15/2021,16:55,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408109,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,18:00,BRONX,10451,40.817627,-73.92366,"(40.817627, -73.92366)",,,249 EAST 149 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407683,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,12:26,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",WEST 29 STREET,10 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4407829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,22:15,BRONX,10468,40.86418,-73.90119,"(40.86418, -73.90119)",DAVIDSON AVENUE,WEST 190 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456397,Motorcycle,,,, +04/15/2021,8:10,MANHATTAN,10022,40.76161,-73.97076,"(40.76161, -73.97076)",EAST 57 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4407496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,16:00,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",MADISON STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407609,Sedan,,,, +04/14/2021,16:00,QUEENS,11373,40.741634,-73.88266,"(40.741634, -73.88266)",,,82-22 45 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407441,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/15/2021,18:30,BROOKLYN,11223,40.596977,-73.97324,"(40.596977, -73.97324)",MC DONALD AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407689,Sedan,Sedan,,, +04/16/2021,14:56,BROOKLYN,11220,40.63864,-74.02245,"(40.63864, -74.02245)",,,350 65 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407861,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,17:30,STATEN ISLAND,10306,40.565254,-74.1301,"(40.565254, -74.1301)",AMBOY ROAD,GUYON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407350,Sedan,,,, +04/14/2021,7:15,BROOKLYN,11207,40.655895,-73.898224,"(40.655895, -73.898224)",,,317 DE WITT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407721,Sedan,,,, +04/14/2021,20:10,BROOKLYN,11238,40.68821,-73.96583,"(40.68821, -73.96583)",WASHINGTON AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4407381,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2021,9:28,MANHATTAN,10002,40.71649,-73.98484,"(40.71649, -73.98484)",,,154 BROOME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4407653,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,9:05,QUEENS,11432,,,,PARSONS BLVD,90 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407299,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,10:49,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,14:30,BRONX,10467,40.876785,-73.87446,"(40.876785, -73.87446)",EAST 209 STREET,HULL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407896,Sedan,,,, +04/16/2021,18:05,BRONX,10467,40.86367,-73.86741,"(40.86367, -73.86741)",,,2516 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4407914,Sedan,Taxi,,, +04/14/2021,0:00,BRONX,10460,40.835827,-73.89068,"(40.835827, -73.89068)",,,1600 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4407512,Sedan,E-Bike,,, +04/15/2021,15:37,MANHATTAN,10029,40.793396,-73.94043,"(40.793396, -73.94043)",,,2145 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408427,Sedan,,,, +04/14/2021,17:20,BRONX,10472,40.84827,-73.88312,"(40.84827, -73.88312)",SOUTHERN BOULEVARD,EAST 182 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4407532,E-Bike,Sedan,,, +04/14/2021,23:17,,,40.656273,-73.90731,"(40.656273, -73.90731)",HEGEMAN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4408086,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,9:25,BROOKLYN,11205,40.693462,-73.965485,"(40.693462, -73.965485)",,,492 MYRTLE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407856,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,16:00,BROOKLYN,11207,40.66725,-73.88799,"(40.66725, -73.88799)",DUMONT AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4407729,Van,Sedan,Sedan,, +04/13/2021,17:55,BRONX,10452,40.844105,-73.923065,"(40.844105, -73.923065)",GRANT HIGHWAY,UNIVERSITY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4407789,Station Wagon/Sport Utility Vehicle,Bike,,, +04/16/2021,21:00,BROOKLYN,11203,40.651707,-73.93121,"(40.651707, -73.93121)",,,4905 CHURCH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408129,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,10:30,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",111 AVENUE,LEFFERTS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407576,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,23:36,BRONX,10452,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4408193,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,0:00,QUEENS,11377,40.7357,-73.90377,"(40.7357, -73.90377)",51 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407643,Sedan,,,, +04/15/2021,21:33,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,4407906,Sedan,Sedan,Sedan,, +04/14/2021,19:45,BROOKLYN,11201,40.69484,-73.98391,"(40.69484, -73.98391)",FLATBUSH AVENUE EXTENSION,JOHNSON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407414,Sedan,Bike,,, +04/14/2021,7:45,MANHATTAN,10024,40.785774,-73.97052,"(40.785774, -73.97052)",,,38 WEST 86 STREET,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4407623,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/14/2021,12:30,QUEENS,11373,40.733017,-73.8852,"(40.733017, -73.8852)",,,82-26 ANKENER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407436,Sedan,,,, +04/16/2021,8:30,,,40.709023,-73.757835,"(40.709023, -73.757835)",201 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4407952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,11:15,,,40.692886,-73.832184,"(40.692886, -73.832184)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4407761,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,15:18,BROOKLYN,11209,40.620487,-74.029305,"(40.620487, -74.029305)",4 AVENUE,FOREST PLACE,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4408063,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,17:50,BROOKLYN,11204,40.618595,-73.99847,"(40.618595, -73.99847)",16 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407388,Sedan,Sedan,,, +04/14/2021,10:29,MANHATTAN,10026,40.803787,-73.953896,"(40.803787, -73.953896)",,,246 WEST 116 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4407766,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,20:02,BRONX,10459,40.82319,-73.889496,"(40.82319, -73.889496)",ALDUS STREET,FAILE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407901,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,19:20,,,40.680088,-73.94398,"(40.680088, -73.94398)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408104,Sedan,Motorcycle,,, +04/14/2021,19:00,BRONX,10456,40.827927,-73.90094,"(40.827927, -73.90094)",TINTON AVENUE,HOME STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407486,Sedan,,,, +07/08/2021,19:55,,,40.65342,-73.88898,"(40.65342, -73.88898)",COZINE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4456618,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,22:21,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408264,Moped,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,15:25,,,40.879055,-73.87439,"(40.879055, -73.87439)",PERRY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4407678,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,11:30,,,40.67043,-73.928185,"(40.67043, -73.928185)",SAINT JOHNS PLACE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4407355,Moped,,,, +04/16/2021,23:14,BRONX,10469,40.875874,-73.84989,"(40.875874, -73.84989)",BOSTON ROAD,FISH AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4408155,Sedan,Sedan,,, +04/13/2021,9:30,,,40.675037,-73.930534,"(40.675037, -73.930534)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408271,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,13:59,,,40.767582,-73.9109,"(40.767582, -73.9109)",41 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408380,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,6:35,MANHATTAN,10014,40.734352,-74.00849,"(40.734352, -74.00849)",,,690 WASHINGTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,22:36,,,,,,Trans- Manhattan Expressway,Amsterdam Avenue,,4,1,0,0,0,0,4,1,Alcohol Involvement,,,,,4407693,Sedan,,,, +04/16/2021,14:50,BROOKLYN,11236,40.63083,-73.90736,"(40.63083, -73.90736)",EAST 80 STREET,PAERDEGAT 7 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4407866,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,18:35,BROOKLYN,11210,40.63532,-73.95033,"(40.63532, -73.95033)",,,1452 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407452,Sedan,Sedan,,, +04/13/2021,10:30,BROOKLYN,11211,40.714073,-73.95087,"(40.714073, -73.95087)",,,533 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407809,Tractor Truck Diesel,Sedan,,, +04/14/2021,6:55,BROOKLYN,11206,40.702194,-73.93587,"(40.702194, -73.93587)",,,923 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4407393,Sedan,Tractor Truck Gasoline,,, +04/14/2021,16:58,MANHATTAN,10065,40.764362,-73.96162,"(40.764362, -73.96162)",2 AVENUE,EAST 65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407453,Sedan,Sedan,,, +04/12/2021,18:30,,,40.69496,-73.946236,"(40.69496, -73.946236)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408214,Sedan,,,, +04/16/2021,12:10,,,40.79656,-73.97226,"(40.79656, -73.97226)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407824,Box Truck,,,, +04/14/2021,9:00,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",BROOK AVENUE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407431,Sedan,,,, +04/14/2021,17:00,QUEENS,11422,40.66406,-73.73846,"(40.66406, -73.73846)",241 STREET,141 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4407632,Sedan,Sedan,,, +04/13/2021,13:14,MANHATTAN,10029,40.7963,-73.93829,"(40.7963, -73.93829)",EAST 115 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4407841,Sedan,Sedan,,, +04/14/2021,2:25,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4407096,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,16:00,QUEENS,11436,40.680477,-73.7921,"(40.680477, -73.7921)",SUTPHIN BOULEVARD,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407658,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,11:35,,,40.737785,-73.93496,"(40.737785, -73.93496)",VANDAM STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407933,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,12:26,MANHATTAN,10023,40.778606,-73.98163,"(40.778606, -73.98163)",AMSTERDAM AVENUE,WEST 72 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4407976,Station Wagon/Sport Utility Vehicle,Bus,,, +04/16/2021,0:30,QUEENS,11369,40.75868,-73.87552,"(40.75868, -73.87552)",93 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4407714,Sedan,Bike,,, +04/14/2021,17:55,,,40.856045,-73.90079,"(40.856045, -73.90079)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407373,Sedan,Motorbike,,, +04/14/2021,23:36,BRONX,10466,40.880257,-73.843864,"(40.880257, -73.843864)",,,1309 EAST 223 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407568,Sedan,Sedan,,, +04/15/2021,20:00,QUEENS,11691,40.60677,-73.759575,"(40.60677, -73.759575)",,,13-32 EGGERT PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407707,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,6:00,,,40.695683,-73.741875,"(40.695683, -73.741875)",218 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407692,,,,, +04/15/2021,15:10,QUEENS,11101,,,,REVIEW AVENUE,RAILROAD AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407615,Bike,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,20:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407865,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,6:13,BRONX,10460,40.8351,-73.8825,"(40.8351, -73.8825)",,,1725 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4407154,Sedan,,,, +04/15/2021,14:41,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",AVENUE M,REMSEN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4407637,Sedan,,,, +04/14/2021,11:54,BROOKLYN,11201,40.698116,-73.977325,"(40.698116, -73.977325)",,,21 FLUSHING AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407354,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,11:50,,,40.84747,-73.89134,"(40.84747, -73.89134)",HUGHES AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4407793,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +04/14/2021,14:00,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407432,Station Wagon/Sport Utility Vehicle,Van,,, +04/16/2021,23:55,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407946,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,14:30,QUEENS,11367,40.7158,-73.824486,"(40.7158, -73.824486)",UNION TURNPIKE,134 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407852,Sedan,Box Truck,,, +04/15/2021,23:00,MANHATTAN,10018,40.75584,-73.99238,"(40.75584, -73.99238)",,,339 WEST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408249,Sedan,,,, +09/11/2021,11:30,BRONX,10475,40.875942,-73.83304,"(40.875942, -73.83304)",,,120 DONIZETTI PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456019,Sedan,,,, +04/15/2021,18:00,,,40.772102,-73.763954,"(40.772102, -73.763954)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407987,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,20:19,BROOKLYN,11238,40.681602,-73.95855,"(40.681602, -73.95855)",,,557 CLASSON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4408215,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,14:36,BROOKLYN,11210,40.62677,-73.946884,"(40.62677, -73.946884)",AVENUE J,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408027,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,11:16,,,40.707493,-73.94153,"(40.707493, -73.94153)",MONTROSE AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4407389,Station Wagon/Sport Utility Vehicle,Dump,,, +04/15/2021,10:00,,,40.8252,-73.867714,"(40.8252, -73.867714)",BRUCKNER BOULEVARD,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407562,Sedan,Sedan,,, +04/12/2021,21:30,BRONX,10457,40.854115,-73.89091,"(40.854115, -73.89091)",EAST 183 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407794,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2021,14:06,QUEENS,11433,,,,ARCHER AVENUE,GUY R BREWER BLVD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407596,Station Wagon/Sport Utility Vehicle,Bus,,, +04/16/2021,7:00,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4407779,Sedan,Sedan,Sedan,Sedan, +04/16/2021,15:21,BROOKLYN,11236,40.629707,-73.90486,"(40.629707, -73.90486)",EAST 80 STREET,PAERDEGAT 10 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407997,Taxi,,,, +04/15/2021,0:40,QUEENS,11426,40.72654,-73.71589,"(40.72654, -73.71589)",JAMAICA AVENUE,249 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4407408,Sedan,,,, +04/15/2021,18:00,STATEN ISLAND,10301,40.634415,-74.08535,"(40.634415, -74.08535)",,,323 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4408313,Sedan,,,, +09/11/2021,16:30,,,40.889362,-73.83446,"(40.889362, -73.83446)",EAST 233 STREET,PRATT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456486,Sedan,Sedan,,, +04/15/2021,8:40,,,40.66937,-73.89523,"(40.66937, -73.89523)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4407747,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,17:25,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4408402,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,6:40,BROOKLYN,11215,40.669067,-73.9878,"(40.669067, -73.9878)",,,341 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4407702,Sedan,,,, +04/15/2021,14:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4407652,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/15/2021,11:00,QUEENS,11416,40.681484,-73.85049,"(40.681484, -73.85049)",102 ROAD,89 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4407762,Sedan,Sedan,,, +04/14/2021,9:31,BRONX,10473,40.82433,-73.874374,"(40.82433, -73.874374)",BRUCKNER BOULEVARD,STRATFORD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407297,Station Wagon/Sport Utility Vehicle,Bus,,, +04/14/2021,12:40,,,40.856606,-73.92841,"(40.856606, -73.92841)",WADSWORTH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4407321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/08/2021,21:52,BROOKLYN,11212,40.65785,-73.91648,"(40.65785, -73.91648)",ROCKAWAY PARKWAY,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408100,Sedan,,,, +04/14/2021,8:58,,,40.62764,-73.89022,"(40.62764, -73.89022)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2021,1:15,,,40.58401,-73.98587,"(40.58401, -73.98587)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408047,Sedan,Sedan,,, +04/14/2021,17:30,BROOKLYN,11211,40.71791,-73.95341,"(40.71791, -73.95341)",ROEBLING STREET,NORTH 10 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4407805,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,0:00,,,40.780437,-73.94989,"(40.780437, -73.94989)",EAST 90 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407697,Sedan,,,, +04/14/2021,8:30,QUEENS,11004,40.73973,-73.70625,"(40.73973, -73.70625)",263 STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407367,Sedan,,,, +04/05/2021,16:21,MANHATTAN,10029,40.7952,-73.94623,"(40.7952, -73.94623)",,,1505 PARK AVENUE,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4407837,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,10:40,BROOKLYN,11201,40.694794,-73.98246,"(40.694794, -73.98246)",PRINCE STREET,JOHNSON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4407548,Taxi,Sedan,Sedan,, +04/16/2021,8:30,BROOKLYN,11228,40.614063,-74.01393,"(40.614063, -74.01393)",86 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407820,Trailer,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,16:45,BROOKLYN,11211,40.715702,-73.95579,"(40.715702, -73.95579)",ROEBLING STREET,NORTH 6 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4456635,Sedan,Bike,,, +04/16/2021,18:50,BROOKLYN,11218,40.633152,-73.97762,"(40.633152, -73.97762)",AVENUE F,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408150,Sedan,Bike,,, +04/16/2021,15:23,BROOKLYN,11228,40.612736,-74.01172,"(40.612736, -74.01172)",14 AVENUE,86 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407842,Sedan,Sedan,,, +04/15/2021,17:55,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4407673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,0:42,MANHATTAN,10035,40.80641,-73.94227,"(40.80641, -73.94227)",EAST 125 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407278,Taxi,Sedan,,, +04/14/2021,12:30,MANHATTAN,10019,40.762234,-73.98987,"(40.762234, -73.98987)",WEST 48 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407459,Van,,,, +04/15/2021,8:30,BRONX,10458,40.863647,-73.8918,"(40.863647, -73.8918)",EAST 193 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407514,Bus,,,, +04/15/2021,18:36,BROOKLYN,11224,40.576626,-73.98478,"(40.576626, -73.98478)",MERMAID AVENUE,WEST 17 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408367,Sedan,Sedan,,, +04/14/2021,13:45,BROOKLYN,11214,40.60118,-73.99098,"(40.60118, -73.99098)",85 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407313,Sedan,Sedan,,, +04/14/2021,19:46,BROOKLYN,11220,40.64721,-74.01531,"(40.64721, -74.01531)",51 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,17:11,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407883,Sedan,Box Truck,,, +04/15/2021,16:18,,,40.681145,-73.7923,"(40.681145, -73.7923)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407611,Sedan,Sedan,,, +04/15/2021,12:40,BROOKLYN,11224,40.57529,-73.97655,"(40.57529, -73.97655)",SURF AVENUE,WEST 8 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408053,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,17:45,,,40.786,-73.84574,"(40.786, -73.84574)",14 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407905,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,20:00,BROOKLYN,11214,40.601128,-73.997086,"(40.601128, -73.997086)",BENSON AVENUE,BAY 28 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4407642,Taxi,,,, +04/15/2021,11:45,,,40.827923,-73.93483,"(40.827923, -73.93483)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407556,Sedan,Sedan,,, +04/05/2021,16:27,MANHATTAN,10026,40.805824,-73.954636,"(40.805824, -73.954636)",,,301 WEST 118 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407774,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,13:30,,,40.642776,-74.02003,"(40.642776, -74.02003)",3 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407360,Sedan,Sedan,,, +04/14/2021,18:56,,,40.86674,-73.92873,"(40.86674, -73.92873)",PAYSON AVENUE,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4408139,Motorcycle,,,, +04/16/2021,9:10,,,,,,HYLAN BOULEVARD,STEUBEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407848,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/15/2021,1:30,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407401,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,12:15,,,40.571625,-74.11192,"(40.571625, -74.11192)",NEW DORP LANE,CLAWSON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485464,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,6:00,,,40.678375,-73.9265,"(40.678375, -73.9265)",SUYDAM PLACE,,,0,0,0,0,0,0,0,0,Other Lighting Defects,Unspecified,,,,4408223,Garbage or Refuse,Sedan,,, +04/14/2021,19:50,,,40.74209,-73.984985,"(40.74209, -73.984985)",EAST 26 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4408075,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,11:30,BRONX,10455,40.81228,-73.90941,"(40.81228, -73.90941)",,,508 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407967,Sedan,Taxi,,, +04/16/2021,23:45,,,40.604195,-73.97218,"(40.604195, -73.97218)",MC DONALD AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4407875,Pick-up Truck,,,, +04/11/2021,18:45,BRONX,10460,40.84383,-73.886375,"(40.84383, -73.886375)",,,1988 MARMION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,8:30,,,40.759163,-73.988396,"(40.759163, -73.988396)",8 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408258,Sedan,Bike,,, +04/15/2021,19:39,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",FLATBUSH AVENUE,CATON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408033,,,,, +04/14/2021,21:00,BROOKLYN,11216,40.69097,-73.94833,"(40.69097, -73.94833)",MARCY AVENUE,KOSCIUSZKO STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Turning Improperly,,,,4408308,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,19:00,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,23:30,BROOKLYN,11208,40.683174,-73.87389,"(40.683174, -73.87389)",,,3289 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407732,Van,Sedan,,, +04/15/2021,17:11,,,,,,BRUCKNER BOULEVARD,EAST 135 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407684,Sedan,,,, +04/15/2021,2:00,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",37 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4407602,Box Truck,,,, +04/16/2021,19:54,MANHATTAN,10010,40.738316,-73.98773,"(40.738316, -73.98773)",EAST 20 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407959,Taxi,,,, +04/08/2021,9:21,BRONX,10461,40.839382,-73.84531,"(40.839382, -73.84531)",,,2507 TRATMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408397,Sedan,Pick-up Truck,,, +04/16/2021,9:50,BROOKLYN,11212,40.66806,-73.90394,"(40.66806, -73.90394)",,,414 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408067,Sedan,,,, +04/16/2021,12:10,,,40.74715,-73.985504,"(40.74715, -73.985504)",WEST 32 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408279,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2021,8:40,,,40.663776,-73.889915,"(40.663776, -73.889915)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407723,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,23:25,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408198,Sedan,Sedan,,, +04/14/2021,20:25,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4407501,Sedan,,,, +04/15/2021,21:04,BROOKLYN,11203,40.655285,-73.93658,"(40.655285, -73.93658)",,,743 TROY AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4408119,Taxi,,,, +04/09/2021,12:00,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4408359,Sedan,Dump,,, +04/16/2021,10:05,BROOKLYN,11220,40.64606,-74.01648,"(40.64606, -74.01648)",3 AVENUE,53 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4407816,Pick-up Truck,Pick-up Truck,,, +04/14/2021,7:00,,,,,,G.C.P. / JEWEL (CDR),,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4407168,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,8:23,QUEENS,11423,40.72119,-73.761185,"(40.72119, -73.761185)",FOOTHILL AVENUE,204 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407543,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,12:00,QUEENS,11385,40.708363,-73.87203,"(40.708363, -73.87203)",,,79-40 COOPER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407801,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2021,14:10,,,40.674004,-73.81881,"(40.674004, -73.81881)",120 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4407346,SCHOOL BUS,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/14/2021,23:10,,,40.729176,-73.87898,"(40.729176, -73.87898)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4407769,Sedan,Sedan,,, +09/11/2021,10:59,QUEENS,11368,40.745766,-73.86421,"(40.745766, -73.86421)",45 AVENUE,NATIONAL STREET,,0,0,0,0,0,0,0,0,Obstruction/Debris,Driver Inexperience,,,,4455856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,12:30,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,EDSON AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4408093,Sedan,Tractor Truck Diesel,,, +04/14/2021,18:45,QUEENS,11691,40.598515,-73.766464,"(40.598515, -73.766464)",,,32-11 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Animals Action,,,,,4407475,Motorcycle,,,, +03/20/2021,15:58,BROOKLYN,11205,40.695004,-73.9525,"(40.695004, -73.9525)",NOSTRAND AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4408113,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,11:50,,,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407833,Sedan,Sedan,,, +04/16/2021,8:41,QUEENS,11385,40.704563,-73.91066,"(40.704563, -73.91066)",MENAHAN STREET,SENECA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407923,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/14/2021,13:30,,,40.66807,-73.80789,"(40.66807, -73.80789)",131 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4407424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,0:00,BROOKLYN,11207,40.66944,-73.883995,"(40.66944, -73.883995)",BLAKE AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4407741,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2021,10:15,,,40.684082,-73.90864,"(40.684082, -73.90864)",CHAUNCEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407891,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,15:05,BROOKLYN,11201,40.69349,-73.97917,"(40.69349, -73.97917)",MYRTLE AVENUE,ASHLAND PLACE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4407647,Station Wagon/Sport Utility Vehicle,Bike,,, +04/16/2021,0:00,QUEENS,11354,40.765266,-73.81517,"(40.765266, -73.81517)",NORTHERN BOULEVARD,150 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407909,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,18:00,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407439,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,12:17,MANHATTAN,10016,40.74708,-73.98135,"(40.74708, -73.98135)",PARK AVENUE,EAST 34 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407604,Sedan,Concrete Mixer,,, +04/15/2021,10:37,BRONX,10467,40.87482,-73.877,"(40.87482, -73.877)",EAST 206 STREET,PERRY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407752,Sedan,,,, +04/14/2021,19:15,QUEENS,11385,40.70399,-73.85589,"(40.70399, -73.85589)",WOODHAVEN BOULEVARD,82 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407380,Station Wagon/Sport Utility Vehicle,Multi-Wheeled Vehicle,,, +04/16/2021,21:30,BROOKLYN,11226,40.649788,-73.9622,"(40.649788, -73.9622)",CHURCH AVENUE,SAINT PAULS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408037,Sedan,Bike,,, +04/11/2021,11:50,QUEENS,11435,40.69507,-73.80114,"(40.69507, -73.80114)",,,106-44 150 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408416,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,9:57,MANHATTAN,10024,40.788673,-73.97136,"(40.788673, -73.97136)",,,109 WEST 89 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407549,Sedan,Box Truck,,, +04/15/2021,13:07,,,40.847897,-73.92499,"(40.847897, -73.92499)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408002,Sedan,Sedan,,, +04/14/2021,11:30,BROOKLYN,11221,40.68896,-73.93326,"(40.68896, -73.93326)",STUYVESANT AVENUE,QUINCY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408227,Taxi,Sedan,,, +04/13/2021,7:25,,,40.695377,-73.94921,"(40.695377, -73.94921)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408262,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,18:03,BRONX,10467,40.880657,-73.877625,"(40.880657, -73.877625)",EAST GUN HILL ROAD,WAYNE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407897,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,21:00,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4408187,Sedan,Tractor Truck Gasoline,,, +04/16/2021,10:40,,,40.781265,-73.97599,"(40.781265, -73.97599)",COLUMBUS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407975,Sedan,,,, +04/16/2021,20:07,MANHATTAN,10033,40.848736,-73.93234,"(40.848736, -73.93234)",WEST 181 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408164,Sedan,Sedan,,, +04/16/2021,12:42,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4407910,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,22:22,BROOKLYN,11212,40.65989,-73.90536,"(40.65989, -73.90536)",NEWPORT STREET,WATKINS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408085,Sedan,,,, +04/16/2021,18:40,,,40.748436,-73.984566,"(40.748436, -73.984566)",5 AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408250,Sedan,E-Bike,,, +04/15/2021,12:38,BROOKLYN,11229,40.61033,-73.95932,"(40.61033, -73.95932)",,,1411 AVENUE P,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4408028,Sedan,Sedan,Box Truck,, +04/14/2021,12:20,QUEENS,11101,40.752556,-73.92972,"(40.752556, -73.92972)",38 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4407580,Sedan,Sedan,Sedan,, +04/14/2021,20:50,,,40.829697,-73.91313,"(40.829697, -73.91313)",TELLER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408302,Sedan,,,, +04/14/2021,2:30,MANHATTAN,10002,40.718826,-73.98424,"(40.718826, -73.98424)",ATTORNEY STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407400,Sedan,,,, +04/16/2021,12:38,BROOKLYN,11203,40.65241,-73.9264,"(40.65241, -73.9264)",,,5403 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408128,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,13:31,,,,,,Beadle Street,Vandervoort avenue,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407806,Pick-up Truck,Box Truck,,, +04/15/2021,15:20,,,40.852673,-73.919106,"(40.852673, -73.919106)",UNDERCLIFF AVENUE,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408194,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,15:00,,,40.851555,-73.952446,"(40.851555, -73.952446)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408289,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,12:50,,,40.707928,-73.784294,"(40.707928, -73.784294)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407953,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2021,8:50,BRONX,10466,40.891876,-73.8616,"(40.891876, -73.8616)",,,4110 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Driver Inattention/Distraction,,,,4408391,Sedan,Taxi,,, +04/15/2021,0:00,QUEENS,11692,40.58947,-73.80105,"(40.58947, -73.80105)",,,207 BEACH 73 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408204,Sedan,,,, +04/01/2021,4:46,MANHATTAN,10016,40.74668,-73.9745,"(40.74668, -73.9745)",2 AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4407870,Sedan,Sedan,,, +04/14/2021,22:17,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",EAST 184 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407524,Sedan,,,, +04/16/2021,14:35,BROOKLYN,11206,40.708626,-73.94513,"(40.708626, -73.94513)",MANHATTAN AVENUE,SCHOLES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408353,Lift Boom,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,2:09,,,,,,EAST 128 STREET,3 AVENUE BRIDGE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4407243,Sedan,,,, +04/14/2021,15:25,QUEENS,11373,40.73464,-73.87421,"(40.73464, -73.87421)",,,89-21 QUEENS BOULEVARD,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4407445,Sedan,Motorcycle,,, +04/16/2021,10:00,BROOKLYN,11210,40.62855,-73.952835,"(40.62855, -73.952835)",,,2408 AVENUE I,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408056,Sedan,,,, +04/14/2021,13:40,BROOKLYN,11203,40.65563,-73.92596,"(40.65563, -73.92596)",LENOX ROAD,EAST 55 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4407327,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,10:10,QUEENS,11434,40.687046,-73.792114,"(40.687046, -73.792114)",155 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407784,Sedan,,,, +04/14/2021,11:46,QUEENS,11385,40.70326,-73.86474,"(40.70326, -73.86474)",MYRTLE AVENUE,84 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407928,Bike,,,, +04/06/2021,16:00,,,0,0,"(0.0, 0.0)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408107,Bus,,,, +09/10/2021,0:00,,,,,,FRANCIS LEWIS BOULEVARD,UNDERHILL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456830,Sedan,Sedan,,, +04/14/2021,13:00,BROOKLYN,11210,40.633114,-73.94928,"(40.633114, -73.94928)",,,120 KENILWORTH PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,13:30,STATEN ISLAND,10304,40.62046,-74.07641,"(40.62046, -74.07641)",,,135 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407372,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,21:24,MANHATTAN,10065,40.75964,-73.95817,"(40.75964, -73.95817)",FDR DRIVE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4407444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,20:15,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,Unspecified,4407756,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/15/2021,10:30,,,40.783146,-73.97833,"(40.783146, -73.97833)",WEST 79 STREET,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4407620,Sedan,,,, +04/14/2021,23:30,QUEENS,11433,40.705452,-73.78149,"(40.705452, -73.78149)",LIBERTY AVENUE,178 STREET,,6,0,0,0,0,0,6,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4407412,Taxi,Sedan,,, +04/15/2021,19:00,,,40.74425,-73.7334,"(40.74425, -73.7334)",CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407633,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,4:35,MANHATTAN,10017,40.75348,-73.980896,"(40.75348, -73.980896)",WEST 42 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,23:46,BRONX,10461,40.84307,-73.848076,"(40.84307, -73.848076)",SILVER STREET,EAST TREMONT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4407660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,12:30,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",MC DONALD AVENUE,BAY PARKWAY,,1,0,0,0,0,0,1,0,Illnes,,,,,4408154,Sedan,,,, +04/04/2021,21:43,MANHATTAN,10027,40.80889,-73.95581,"(40.80889, -73.95581)",,,71 MORNINGSIDE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4407773,Sedan,Sedan,Sedan,, +04/15/2021,13:18,MANHATTAN,10024,40.78847,-73.968895,"(40.78847, -73.968895)",,,51 WEST 90 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407567,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,13:36,QUEENS,11385,40.712776,-73.90601,"(40.712776, -73.90601)",,,62-41 FOREST AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407938,Pick-up Truck,Sedan,,, +04/16/2021,0:30,QUEENS,11369,40.75868,-73.87552,"(40.75868, -73.87552)",93 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407713,Sedan,,,, +04/11/2021,13:40,,,,,,GRAND CENTRAL PARKWAY,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408017,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,17:50,QUEENS,11368,40.74661,-73.86473,"(40.74661, -73.86473)",,,99-05 43 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4408208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,16:01,BRONX,10460,40.835705,-73.88875,"(40.835705, -73.88875)",SOUTHERN BOULEVARD,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408043,Sedan,,,, +03/28/2021,18:30,BROOKLYN,11221,40.688404,-73.93803,"(40.688404, -73.93803)",,,562 QUINCY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4408233,Station Wagon/Sport Utility Vehicle,,,, +04/12/2021,20:00,QUEENS,11357,40.781715,-73.823845,"(40.781715, -73.823845)",144 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407990,Sedan,,,, +04/02/2021,21:15,,,40.730644,-73.97329,"(40.730644, -73.97329)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408079,Sedan,,,, +04/16/2021,15:05,,,40.75218,-73.85201,"(40.75218, -73.85201)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408217,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,15:45,BROOKLYN,11222,40.731422,-73.94641,"(40.731422, -73.94641)",GREENPOINT AVENUE,HUMBOLDT STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408331,Sedan,Bike,,, +04/15/2021,8:20,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407698,Station Wagon/Sport Utility Vehicle,,,, +04/10/2021,19:09,BROOKLYN,11212,40.668976,-73.90668,"(40.668976, -73.90668)",STONE AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407825,Sedan,fire truck,,, +04/12/2021,6:55,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408411,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +04/15/2021,18:20,BROOKLYN,11203,40.637276,-73.93177,"(40.637276, -73.93177)",SCHENECTADY AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408122,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2021,1:36,,,40.788685,-73.94386,"(40.788685, -73.94386)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407838,Sedan,E-Scooter,,, +09/11/2021,4:27,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4456364,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/16/2021,22:42,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4407948,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,23:32,MANHATTAN,10029,40.795006,-73.9485,"(40.795006, -73.9485)",,,1618 MADISON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407843,Sedan,,,, +04/15/2021,8:30,,,40.820095,-73.955086,"(40.820095, -73.955086)",WEST 135 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4407515,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,11:26,,,40.594334,-73.990944,"(40.594334, -73.990944)",BATH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407312,Sedan,,,, +04/14/2021,11:00,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4407314,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,12:37,BROOKLYN,11215,40.673008,-73.97851,"(40.673008, -73.97851)",,,162 GARFIELD PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407489,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,0:25,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4407656,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,12:45,BRONX,10468,40.874474,-73.90031,"(40.874474, -73.90031)",WEBB AVENUE,RESERVOIR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407332,Sedan,Sedan,,, +04/14/2021,14:25,BROOKLYN,11204,40.633995,-73.98138,"(40.633995, -73.98138)",,,1616 43 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4407506,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,23:20,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408401,Sedan,Sedan,,, +04/15/2021,18:45,BROOKLYN,11206,40.704937,-73.94932,"(40.704937, -73.94932)",,,545 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4407677,Sedan,Box Truck,,, +04/14/2021,15:34,BROOKLYN,11232,40.653873,-74.008156,"(40.653873, -74.008156)",39 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4407359,Sedan,,,, +04/16/2021,23:30,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408060,Sedan,,,, +04/15/2021,3:46,,,,,,FDR DRIVE,EAST 117 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407533,Sedan,,,, +04/08/2021,0:00,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4408266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan, +04/14/2021,13:20,BROOKLYN,11223,40.59857,-73.9689,"(40.59857, -73.9689)",,,2115 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4407696,Sedan,Sedan,Sedan,, +04/14/2021,6:15,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407261,Tractor Truck Diesel,Sedan,,, +04/16/2021,15:12,BROOKLYN,11238,40.68836,-73.96444,"(40.68836, -73.96444)",,,284 LAFAYETTE AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4407857,Sedan,Bike,,, +04/14/2021,19:30,BROOKLYN,11212,40.666737,-73.90224,"(40.666737, -73.90224)",JUNIUS STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407490,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,10:30,QUEENS,11379,40.713173,-73.90076,"(40.713173, -73.90076)",FRESH POND ROAD,62 ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4407788,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,6:00,QUEENS,11001,40.73006,-73.710754,"(40.73006, -73.710754)",,,87-33 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4408379,Station Wagon/Sport Utility Vehicle,,,, +04/13/2021,16:20,BROOKLYN,11203,40.652317,-73.92752,"(40.652317, -73.92752)",EAST 53 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408103,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,1:20,,,40.76122,-73.93056,"(40.76122, -73.93056)",CRESCENT STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4408076,Bike,,,, +04/12/2021,18:00,,,40.588722,-73.960464,"(40.588722, -73.960464)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408049,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,17:25,,,40.643456,-73.972725,"(40.643456, -73.972725)",BEVERLEY ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407527,Sedan,Sedan,,, +04/12/2021,19:45,BRONX,10467,40.865532,-73.86238,"(40.865532, -73.86238)",ALLERTON AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4407836,Sedan,,,, +04/16/2021,16:46,,,40.67612,-73.936005,"(40.67612, -73.936005)",TROY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408274,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,9:20,,,40.620663,-74.1524,"(40.620663, -74.1524)",RICHMOND AVENUE,ANITA STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4407547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,13:30,QUEENS,11378,40.72166,-73.888664,"(40.72166, -73.888664)",,,60-74 70 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,17:45,QUEENS,11426,40.733723,-73.72516,"(40.733723, -73.72516)",,,241-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408375,Sedan,Sedan,,, +04/14/2021,9:30,,,40.745686,-73.97213,"(40.745686, -73.97213)",EAST 37 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407279,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,0:00,BRONX,10463,40.875294,-73.9088,"(40.875294, -73.9088)",,,5240 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4407331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,16:54,BRONX,10454,40.803555,-73.91184,"(40.803555, -73.91184)",WILLOW AVENUE,EAST 137 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4407686,Sedan,Sedan,,, +04/15/2021,19:20,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Following Too Closely,,,,4408398,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,0:17,,,40.661995,-73.91959,"(40.661995, -73.91959)",EAST 98 STREET,TAPSCOTT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408066,Sedan,,,, +04/16/2021,13:02,BROOKLYN,11205,40.69045,-73.959435,"(40.69045, -73.959435)",DE KALB AVENUE,TAAFFE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408309,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/16/2021,11:38,BROOKLYN,11212,40.658672,-73.90019,"(40.658672, -73.90019)",NEW LOTS AVENUE,JUNIUS STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408068,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,22:50,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407691,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,13:07,BROOKLYN,11206,40.700485,-73.93637,"(40.700485, -73.93637)",BUSHWICK AVENUE,GARDEN STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4407353,Bike,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,18:49,BRONX,10455,40.816555,-73.91755,"(40.816555, -73.91755)",,,560 MELROSE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407433,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,22:35,,,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4407679,Sedan,Sedan,,, +04/14/2021,22:20,BRONX,10469,40.875793,-73.85465,"(40.875793, -73.85465)",,,3574 LACONIA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4407566,Sedan,,,, +04/16/2021,6:30,QUEENS,11434,40.68657,-73.776146,"(40.68657, -73.776146)",171 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408026,Sedan,,,, +04/14/2021,17:30,BROOKLYN,11232,40.654705,-74.00731,"(40.654705, -74.00731)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407651,Sedan,,,, +04/14/2021,9:50,BROOKLYN,11219,40.637054,-73.98643,"(40.637054, -73.98643)",43 STREET,14 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4407296,Sedan,,,, +04/16/2021,12:00,,,40.6191,-74.159615,"(40.6191, -74.159615)",ARLENE COURT,JULES DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407826,Sedan,Sedan,,, +04/16/2021,11:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,8:00,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407368,Bus,Sedan,Pick-up Truck,, +04/13/2021,9:35,BROOKLYN,11211,40.714912,-73.94784,"(40.714912, -73.94784)",LEONARD STREET,CONSELYEA STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,6:10,QUEENS,11372,40.74734,-73.88673,"(40.74734, -73.88673)",ROOSEVELT AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4407242,Station Wagon/Sport Utility Vehicle,Bike,,, +04/16/2021,18:18,BROOKLYN,11205,40.6963,-73.97545,"(40.6963, -73.97545)",PARK AVENUE,NORTH OXFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407858,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,9:40,BROOKLYN,11236,40.63598,-73.915146,"(40.63598, -73.915146)",,,756 EAST 79 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4407795,Sedan,,,, +04/14/2021,12:00,QUEENS,11428,40.724358,-73.742516,"(40.724358, -73.742516)",91 AVENUE,218 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4407347,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2016,14:20,BROOKLYN,11214,40.586277,-73.9862,"(40.586277, -73.9862)",WEST 17 STREET,BAY 50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408059,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,1:30,,,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407715,Sedan,,,, +04/10/2021,23:05,BROOKLYN,11236,40.650703,-73.920586,"(40.650703, -73.920586)",RALPH AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408114,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,5:32,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407480,Sedan,Sedan,,, +04/16/2021,6:49,STATEN ISLAND,10305,40.61378,-74.07225,"(40.61378, -74.07225)",,,490 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4408312,Bus,Sedan,,, +04/15/2021,22:15,QUEENS,11378,40.727375,-73.90313,"(40.727375, -73.90313)",54 AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407922,Sedan,Sedan,,, +04/14/2021,15:10,STATEN ISLAND,10306,40.573204,-74.09711,"(40.573204, -74.09711)",LINCOLN AVENUE,KISWICK STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,17:04,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4407882,Sedan,Sedan,,, +04/15/2021,13:30,,,40.671604,-73.86907,"(40.671604, -73.86907)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407748,Sedan,Sedan,,, +04/15/2021,16:50,QUEENS,11101,40.740276,-73.92782,"(40.740276, -73.92782)",38 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407619,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,16:02,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4407534,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/06/2021,15:02,BROOKLYN,11216,40.684,-73.95031,"(40.684, -73.95031)",PUTNAM AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408297,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,15:00,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407763,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/16/2021,6:50,,,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408005,Sedan,Sedan,,, +04/14/2021,10:16,,,,,,Leonard street,Wallabout Street,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407390,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2021,5:36,,,40.82681,-73.85361,"(40.82681, -73.85361)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407504,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2021,21:30,BROOKLYN,11233,40.681168,-73.92941,"(40.681168, -73.92941)",,,203 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408231,Sedan,,,, +04/09/2021,20:00,BROOKLYN,11203,40.64739,-73.92314,"(40.64739, -73.92314)",,,348 EAST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408106,Sedan,,,, +04/15/2021,8:30,,,40.687138,-73.75136,"(40.687138, -73.75136)",122 AVENUE,197 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407542,Sedan,,,, +03/25/2021,9:52,,,,,,73 PLACE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4407819,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,9:09,,,40.865143,-73.87204,"(40.865143, -73.87204)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407523,Sedan,,,, +04/14/2021,22:50,,,40.866673,-73.90896,"(40.866673, -73.90896)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4407428,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +04/10/2021,18:50,QUEENS,11378,40.72313,-73.90614,"(40.72313, -73.90614)",,,60-15 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408257,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,14:46,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,11:10,BROOKLYN,11237,40.708363,-73.92401,"(40.708363, -73.92401)",INGRAHAM STREET,GARDNER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407672,Tractor Truck Diesel,Tractor Truck Diesel,,, +04/16/2021,11:20,QUEENS,11104,40.739525,-73.92512,"(40.739525, -73.92512)",GREENPOINT AVENUE,40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407832,Sedan,Chassis Cab,,, +04/14/2021,18:04,,,40.637997,-74.02136,"(40.637997, -74.02136)",65 STREET,4 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4407384,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,21:40,,,40.750965,-73.94027,"(40.750965, -73.94027)",QUEENS PLAZA NORTH,CRESCENT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408387,,,,, +04/15/2020,15:20,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407790,Sedan,Tractor Truck Diesel,,, +04/15/2021,16:10,QUEENS,11412,40.694294,-73.74868,"(40.694294, -73.74868)",118 AVENUE,203 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4407612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2021,17:25,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4407775,Bike,,,, +04/16/2021,9:29,QUEENS,11411,40.694748,-73.73427,"(40.694748, -73.73427)",,,116-18 226 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407864,Sedan,Sedan,,, +04/14/2021,19:30,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4407379,Sedan,,,, +04/14/2021,15:00,BROOKLYN,11235,0,0,"(0.0, 0.0)",GERALD COURT,EAST 7 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408054,Sedan,,,, +04/14/2021,3:04,,,40.861744,-73.911804,"(40.861744, -73.911804)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4407156,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,19:45,,,40.741074,-73.7258,"(40.741074, -73.7258)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407634,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2021,8:24,QUEENS,11436,40.67875,-73.794,"(40.67875, -73.794)",119 AVENUE,146 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4408389,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/14/2021,13:16,BROOKLYN,11207,40.666943,-73.890144,"(40.666943, -73.890144)",,,775 DUMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407724,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,8:30,BROOKLYN,11225,40.6635,-73.94276,"(40.6635, -73.94276)",,,451 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407942,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,14:19,BRONX,10461,40.850304,-73.85137,"(40.850304, -73.85137)",WILLIAMSBRIDGE ROAD,MORRIS PARK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4456714,Sedan,Sedan,,, +04/16/2021,20:17,BRONX,10451,40.827824,-73.91934,"(40.827824, -73.91934)",SHERMAN AVENUE,EAST 163 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408197,E-Bike,Sedan,,, +04/15/2021,16:08,STATEN ISLAND,10306,40.575832,-74.12409,"(40.575832, -74.12409)",RICHMOND ROAD,SUMMIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Turning Improperly,,,,4407847,Station Wagon/Sport Utility Vehicle,Van,,, +04/14/2021,10:00,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407403,Sedan,,,, +04/15/2021,17:47,BROOKLYN,11226,40.640945,-73.94852,"(40.640945, -73.94852)",AVENUE D,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408120,Sedan,Sedan,,, +04/15/2021,12:00,,,40.784237,-73.947075,"(40.784237, -73.947075)",EAST 96 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407703,Station Wagon/Sport Utility Vehicle,Bus,,, +04/15/2021,20:29,QUEENS,11369,40.76803,-73.87722,"(40.76803, -73.87722)",23 AVENUE,93 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4407668,Sedan,Sedan,,, +04/14/2021,13:06,BROOKLYN,11212,40.669823,-73.90981,"(40.669823, -73.90981)",PITKIN AVENUE,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407570,Sedan,,,, +04/10/2021,16:28,,,40.659336,-73.92726,"(40.659336, -73.92726)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408101,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,10:15,,,,,,SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407898,Sedan,Sedan,,, +04/16/2021,4:00,,,40.616093,-74.14523,"(40.616093, -74.14523)",,,323 STEWART AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,20:59,QUEENS,11369,40.763546,-73.88209,"(40.763546, -73.88209)",87 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407917,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,22:27,BROOKLYN,11218,40.637234,-73.97266,"(40.637234, -73.97266)",,,465 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408151,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,19:00,,,40.62614,-74.14276,"(40.62614, -74.14276)",,,702 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407758,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,6:30,,,,,,FDR DRIVE,,,4,0,0,0,0,0,4,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,,4407780,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/16/2021,7:30,BROOKLYN,11226,40.638313,-73.95751,"(40.638313, -73.95751)",,,2110 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4408034,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +04/16/2021,9:35,BROOKLYN,11207,40.651352,-73.89275,"(40.651352, -73.89275)",GLENWOOD ROAD,WILLIAMS AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Turning Improperly,,,,4407998,Sedan,Taxi,,, +04/15/2021,0:08,QUEENS,11433,40.696564,-73.79125,"(40.696564, -73.79125)",BREWER BOULEVARD,108 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4407410,scooter,,,, +04/15/2021,17:30,MANHATTAN,10009,40.72728,-73.97906,"(40.72728, -73.97906)",,,604 EAST 11 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408112,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,2:12,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407731,Sedan,Sedan,,, +04/13/2021,16:49,BRONX,10470,40.905174,-73.85417,"(40.905174, -73.85417)",EAST 241 STREET,BULLARD AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4408095,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,21:00,BRONX,10454,40.810387,-73.91521,"(40.810387, -73.91521)",SAINT ANNS AVENUE,SAINT MARYS STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456465,E-Bike,Sedan,,, +04/14/2021,15:00,MANHATTAN,10018,40.754044,-73.990074,"(40.754044, -73.990074)",,,242 WEST 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407470,CATER,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,20:25,,,40.755234,-73.941246,"(40.755234, -73.941246)",21 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4407582,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2021,13:45,BROOKLYN,11206,40.708675,-73.93699,"(40.708675, -73.93699)",WATERBURY STREET,MESEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,18:45,BROOKLYN,11203,40.65103,-73.93032,"(40.65103, -73.93032)",,,902 UTICA AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408126,Bus,Sedan,,, +04/14/2021,0:00,BROOKLYN,11220,40.645985,-74.00723,"(40.645985, -74.00723)",,,565 47 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407395,Sedan,Sedan,,, +04/15/2021,15:05,QUEENS,11357,40.794773,-73.816185,"(40.794773, -73.816185)",150 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4407904,Sedan,Sedan,,, +04/16/2021,21:04,MANHATTAN,10033,40.845467,-73.940475,"(40.845467, -73.940475)",,,306 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408288,Taxi,,,, +04/16/2021,0:00,,,40.643875,-74.01887,"(40.643875, -74.01887)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407961,PKUP,Hopper,,, +04/14/2021,8:20,QUEENS,11422,40.658947,-73.73472,"(40.658947, -73.73472)",,,144-26 WELLER LANE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407363,Sedan,Sedan,,, +04/15/2021,15:45,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407629,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,18:23,BROOKLYN,11214,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407641,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,21:20,BRONX,10469,40.878155,-73.84005,"(40.878155, -73.84005)",ELY AVENUE,TILLOTSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408140,Sedan,Sedan,,, +04/02/2021,22:20,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",MYRTLE AVENUE,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408226,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/14/2021,16:00,BRONX,10473,40.821075,-73.882126,"(40.821075, -73.882126)",,,1421 STORY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407500,Sedan,,,, +04/14/2021,11:00,BRONX,10466,40.88765,-73.84167,"(40.88765, -73.84167)",,,3865 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407558,Sedan,,,, +04/14/2021,8:45,QUEENS,11419,40.687843,-73.82005,"(40.687843, -73.82005)",,,124-09 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407421,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,22:32,BROOKLYN,11208,40.673252,-73.87773,"(40.673252, -73.87773)",BELMONT AVENUE,MONTAUK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4407743,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/09/2021,18:15,,,,,,HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407876,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,11:00,BROOKLYN,11216,40.6699,-73.95116,"(40.6699, -73.95116)",,,527 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408261,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,15:04,,,40.667683,-73.99608,"(40.667683, -73.99608)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4407965,Sedan,Sedan,,, +04/14/2021,18:10,BROOKLYN,11230,40.63529,-73.958206,"(40.63529, -73.958206)",FARRAGUT ROAD,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407450,Sedan,,,, +04/13/2021,13:00,BROOKLYN,11249,40.71772,-73.96202,"(40.71772, -73.96202)",,,76 NORTH 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4407812,Sedan,,,, +04/16/2021,15:20,,,40.857605,-73.93778,"(40.857605, -73.93778)",HENRY HUDSON PARKWAY,,,4,0,0,0,0,0,4,0,Other Vehicular,Unspecified,,,,4408163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,18:25,,,40.7491,-73.984085,"(40.7491, -73.984085)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408276,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,17:03,QUEENS,11432,40.71493,-73.79316,"(40.71493, -73.79316)",KINGSTON PLACE,HOME LAWN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4407676,Sedan,,,, +04/16/2021,8:40,,,40.721985,-73.98552,"(40.721985, -73.98552)",NORFOLK STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407868,Box Truck,Sedan,,, +09/08/2021,18:00,,,40.5843,-74.16492,"(40.5843, -74.16492)",,,112 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456784,Sedan,Sedan,,, +04/16/2021,15:00,,,40.67983,-73.9583,"(40.67983, -73.9583)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408111,Bus,Sedan,,, +04/15/2021,14:54,BROOKLYN,11222,40.730198,-73.954254,"(40.730198, -73.954254)",GREENPOINT AVENUE,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407807,Box Truck,Sedan,,, +04/15/2021,9:30,,,40.821117,-73.957466,"(40.821117, -73.957466)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407706,Sedan,,,, +04/14/2021,23:26,,,40.849167,-73.92393,"(40.849167, -73.92393)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Reaction to Uninvolved Vehicle,,,,4407456,Sedan,Sedan,,, +04/13/2021,17:20,,,40.579826,-73.97622,"(40.579826, -73.97622)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408050,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,16:20,BROOKLYN,11217,40.681335,-73.97667,"(40.681335, -73.97667)",,,440 BERGEN STREET,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4407699,Sedan,Sedan,,, +04/15/2021,7:34,,,40.756725,-73.96,"(40.756725, -73.96)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4407605,Sedan,Sedan,,, +04/14/2021,2:10,QUEENS,11372,40.756557,-73.87594,"(40.756557, -73.87594)",,,92-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4407135,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/15/2021,15:30,BROOKLYN,11233,40.67792,-73.9182,"(40.67792, -73.9182)",DEWEY PLACE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407661,Sedan,Sedan,,, +04/14/2021,7:44,BROOKLYN,11234,40.607876,-73.92554,"(40.607876, -73.92554)",AVENUE U,RYDER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407930,Sedan,FDNY TRUCK,,, +04/16/2021,15:16,,,40.607643,-74.03375,"(40.607643, -74.03375)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4407851,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2021,13:45,STATEN ISLAND,10308,40.540188,-74.149,"(40.540188, -74.149)",OSBORNE AVENUE,RUSSELL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407844,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,0:00,BROOKLYN,11209,40.616306,-74.03348,"(40.616306, -74.03348)",,,305 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407630,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,19:40,,,,,,FOREST PARK DRIVE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4407383,Carry All,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,14:44,,,40.583874,-73.823044,"(40.583874, -73.823044)",ROCKAWAY BEACH BOULEVARD,BEACH 102 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4408202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/14/2021,9:30,BRONX,10467,40.877827,-73.879585,"(40.877827, -73.879585)",BAINBRIDGE AVENUE,EAST 208 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407516,FDNY Ambul,Pick-up Truck,,, +04/14/2021,13:20,,,40.714554,-73.83147,"(40.714554, -73.83147)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407317,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,16:00,,,40.763668,-73.82303,"(40.763668, -73.82303)",37 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408210,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/16/2021,20:24,,,,,,PELHAM PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4407894,Sedan,Sedan,,, +04/16/2021,16:25,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408354,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,15:45,QUEENS,11354,40.77451,-73.838036,"(40.77451, -73.838036)",ULMER STREET,26 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inexperience,Unspecified,,,4407911,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/09/2021,16:45,MANHATTAN,10021,40.768482,-73.95255,"(40.768482, -73.95255)",,,1400 YORK AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456516,Sedan,,,, +04/08/2021,13:25,MANHATTAN,10029,40.797405,-73.942535,"(40.797405, -73.942535)",,,1844 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407839,Pick-up Truck,Sedan,,, +04/01/2021,15:10,MANHATTAN,10016,40.74058,-73.978935,"(40.74058, -73.978935)",,,484 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408084,Sedan,Bike,,, +04/14/2021,12:12,BRONX,10459,40.829723,-73.8981,"(40.829723, -73.8981)",,,823 EAST 169 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4407510,Sedan,Sedan,,, +04/05/2021,9:15,QUEENS,11365,40.7406,-73.81025,"(40.7406, -73.81025)",PARSONS BOULEVARD,59 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4407992,Sedan,,,, +04/16/2021,16:20,QUEENS,11385,40.71363,-73.917885,"(40.71363, -73.917885)",,,49-29 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408252,Sedan,,,, +04/15/2021,9:00,BROOKLYN,11218,40.647594,-73.97351,"(40.647594, -73.97351)",CATON AVENUE,EAST 7 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408221,Sedan,Sedan,,, +08/28/2021,18:00,,,40.760403,-73.98748,"(40.760403, -73.98748)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456756,Station Wagon/Sport Utility Vehicle,,,, +04/10/2021,11:15,MANHATTAN,10002,40.71975,-73.992165,"(40.71975, -73.992165)",FORSYTH STREET,DELANCEY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408030,Station Wagon/Sport Utility Vehicle,,,, +04/13/2021,13:40,,,40.834503,-73.93037,"(40.834503, -73.93037)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407787,Bus,Bus,,, +04/15/2021,15:34,STATEN ISLAND,10304,40.63115,-74.076454,"(40.63115, -74.076454)",,,450 BAY STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407646,Sedan,,,, +04/10/2021,8:50,,,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408195,Pick-up Truck,Sedan,,, +04/15/2021,12:15,STATEN ISLAND,10310,40.6354,-74.106674,"(40.6354, -74.106674)",,,355 BARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407571,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2021,14:30,QUEENS,11356,40.781647,-73.833664,"(40.781647, -73.833664)",,,135-02 20 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407908,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,5:39,BROOKLYN,11217,40.68837,-73.98056,"(40.68837, -73.98056)",,,9 FLATBUSH AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407427,Sedan,Sedan,Sedan,, +04/16/2021,22:00,MANHATTAN,10029,40.790417,-73.95184,"(40.790417, -73.95184)",MADISON AVENUE,EAST 101 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4408409,Station Wagon/Sport Utility Vehicle,Van,,, +04/15/2021,20:00,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408121,Sedan,Sedan,,, +04/16/2021,14:00,QUEENS,11423,40.71275,-73.7673,"(40.71275, -73.7673)",,,91-48 193 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407954,Sedan,Sedan,,, +04/14/2021,8:45,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4407755,Box Truck,,,, +04/14/2021,17:00,QUEENS,11368,40.738068,-73.861046,"(40.738068, -73.861046)",,,98-32 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407438,Sedan,,,, +04/15/2021,23:09,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",LEFFERTS BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408419,Sedan,Sedan,,, +04/16/2021,15:32,BROOKLYN,11210,40.61924,-73.954124,"(40.61924, -73.954124)",,,1406 EAST 21 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408036,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,22:45,BROOKLYN,11209,40.629105,-74.034645,"(40.629105, -74.034645)",80 STREET,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407871,Sedan,,,, +04/14/2021,11:40,BROOKLYN,11237,40.699818,-73.920135,"(40.699818, -73.920135)",KNICKERBOCKER AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407551,Sedan,,,, +04/14/2021,14:15,,,,,,CLEARVIEW EXPRESSWAY,26 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407481,Sedan,Sedan,,, +04/14/2021,10:10,QUEENS,11412,40.69802,-73.7623,"(40.69802, -73.7623)",MURDOCK AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407341,Sedan,Sedan,,, +04/10/2021,0:00,,,,,,WEST 64 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407974,Sedan,,,, +04/15/2021,20:00,STATEN ISLAND,10304,,,,GREENFIELD AVENUE,OSGOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408310,Sedan,,,, +04/16/2021,12:30,BROOKLYN,11230,40.62893,-73.971375,"(40.62893, -73.971375)",OCEAN PARKWAY,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408040,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,16:15,MANHATTAN,10032,40.831177,-73.942085,"(40.831177, -73.942085)",,,460 WEST 155 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408069,Taxi,Bus,,, +04/02/2021,18:00,BROOKLYN,11213,40.675037,-73.930534,"(40.675037, -73.930534)",BERGEN STREET,UTICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408267,Pick-up Truck,,,, +04/14/2021,19:01,BROOKLYN,11226,40.64884,-73.95102,"(40.64884, -73.95102)",,,2820 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,13:30,QUEENS,11361,40.757725,-73.779274,"(40.757725, -73.779274)",NORTHERN BOULEVARD,204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455876,Sedan,Sedan,,, +04/15/2021,10:13,MANHATTAN,10021,40.766586,-73.9531,"(40.766586, -73.9531)",,,525 EAST 72 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407695,3-Door,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,9:40,BRONX,10465,40.833126,-73.828285,"(40.833126, -73.828285)",BRUCKNER EXPRESSWAY,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407265,Station Wagon/Sport Utility Vehicle,,,, +04/10/2021,22:06,BRONX,10452,40.834675,-73.930275,"(40.834675, -73.930275)",,,1055 UNIVERSITY AVENUE,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4408300,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,8:04,BROOKLYN,11229,40.600883,-73.958694,"(40.600883, -73.958694)",EAST 13 STREET,AVENUE T,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407768,Sedan,E-Scooter,,, +04/15/2021,23:06,BRONX,10458,40.863647,-73.8918,"(40.863647, -73.8918)",MARION AVENUE,EAST 193 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4407680,Sedan,Sedan,,, +04/14/2021,12:00,,,40.593002,-74.159,"(40.593002, -74.159)",,,33 FERNDALE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407494,Sedan,Box Truck,,, +04/10/2021,4:45,BROOKLYN,11221,40.689426,-73.94223,"(40.689426, -73.94223)",THROOP AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408304,Sedan,,,, +04/14/2021,17:30,,,40.75458,-73.99915,"(40.75458, -73.99915)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407827,Box Truck,Pick-up Truck,,, +04/14/2021,22:40,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4407399,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2021,12:47,BROOKLYN,11207,40.676594,-73.89038,"(40.676594, -73.89038)",HENDRIX STREET,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,,,,,4407740,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,14:30,,,40.76468,-73.9643,"(40.76468, -73.9643)",EAST 64 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4408392,Sedan,,,, +04/15/2021,0:00,MANHATTAN,10032,40.832764,-73.94583,"(40.832764, -73.94583)",WEST 155 STREET,BROADWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4407822,Sedan,,,, +04/14/2021,6:55,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4407655,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,19:00,QUEENS,11372,40.747536,-73.89344,"(40.747536, -73.89344)",,,72-24 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4407712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,17:00,STATEN ISLAND,10312,40.540833,-74.159386,"(40.540833, -74.159386)",WINCHESTER AVENUE,SYCAMORE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407343,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,6:15,QUEENS,11413,40.670017,-73.746185,"(40.670017, -73.746185)",,,228-02 139 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407364,Sedan,,,, +04/15/2021,8:15,BROOKLYN,11205,40.694996,-73.97022,"(40.694996, -73.97022)",,,84 VANDERBILT AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4407560,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,13:45,BROOKLYN,11233,40.676758,-73.917404,"(40.676758, -73.917404)",ATLANTIC AVENUE,LOUIS PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408232,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,16:25,MANHATTAN,10035,40.80124,-73.94183,"(40.80124, -73.94183)",EAST 119 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407529,Sedan,Taxi,,, +04/15/2021,0:01,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407535,Taxi,,,, +04/15/2021,3:00,BROOKLYN,11208,40.667377,-73.880394,"(40.667377, -73.880394)",,,823 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4407744,Sedan,Sedan,Sedan,, +04/15/2021,9:00,,,40.734135,-73.9992,"(40.734135, -73.9992)",AVENUE OF THE AMERICAS,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407854,Beverage Truck,Bus,,, +04/14/2021,7:40,BROOKLYN,11233,40.679935,-73.91389,"(40.679935, -73.91389)",BOYLAND STREET,MACDOUGAL STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4407250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,20:15,QUEENS,11428,40.715252,-73.74891,"(40.715252, -73.74891)",,,211-15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455943,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,8:00,BROOKLYN,11217,40.684475,-73.97408,"(40.684475, -73.97408)",,,160 SOUTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,5:27,BROOKLYN,11231,40.67816,-74.01416,"(40.67816, -74.01416)",WOLCOTT STREET,CONOVER STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4408325,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/15/2021,18:10,QUEENS,11692,,,,CORAL REEF WAY,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407926,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,17:15,,,40.79099,-73.96518,"(40.79099, -73.96518)",WEST 95 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,16:42,,,40.780125,-73.95304,"(40.780125, -73.95304)",EAST 88 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407443,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,14:56,MANHATTAN,10029,40.800262,-73.94554,"(40.800262, -73.94554)",,,24 EAST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4407751,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/15/2021,20:50,BROOKLYN,11217,40.682842,-73.9766,"(40.682842, -73.9766)",,,166 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4407890,Pick-up Truck,,,, +04/15/2021,18:16,BROOKLYN,11212,40.660316,-73.913216,"(40.660316, -73.913216)",RIVERDALE AVENUE,HERZL STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4408065,Sedan,Sedan,,, +04/04/2021,4:00,MANHATTAN,10027,40.8053,-73.94728,"(40.8053, -73.94728)",,,220 LENOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407772,Sedan,,,, +04/15/2021,16:10,,,40.834507,-73.91772,"(40.834507, -73.91772)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4408189,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,21:20,QUEENS,11103,40.758224,-73.91741,"(40.758224, -73.91741)",BROADWAY,42 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4408021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,12:00,MANHATTAN,10031,40.824734,-73.94854,"(40.824734, -73.94854)",,,500 WEST 144 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407310,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,18:14,BRONX,10464,40.855873,-73.79149,"(40.855873, -73.79149)",,,636 CITY ISLAND AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408400,Sedan,Bike,,, +04/15/2021,21:42,BROOKLYN,11208,40.686115,-73.86992,"(40.686115, -73.86992)",LINCOLN AVENUE,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407749,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,12:00,BROOKLYN,11205,40.693176,-73.95214,"(40.693176, -73.95214)",,,204 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408294,Sedan,,,, +04/16/2021,12:07,QUEENS,11368,40.755337,-73.843254,"(40.755337, -73.843254)",ROOSEVELT AVENUE,126 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408206,Sedan,Sedan,,, +04/14/2021,18:55,BROOKLYN,11203,40.641895,-73.93324,"(40.641895, -73.93324)",EAST 46 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408117,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,18:38,BRONX,10452,40.83878,-73.918106,"(40.83878, -73.918106)",,,16 MARCY PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407498,Sedan,Box Truck,,, +04/11/2021,9:20,,,40.663227,-73.93159,"(40.663227, -73.93159)",EAST NEW YORK AVENUE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408102,Sedan,Sedan,,, +04/14/2021,1:00,QUEENS,11370,40.76151,-73.88361,"(40.76151, -73.88361)",30 AVENUE,85 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407241,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,14:00,BROOKLYN,11206,40.70042,-73.956566,"(40.70042, -73.956566)",,,18 LYNCH STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4408362,Sedan,Bus,,, +04/14/2021,2:10,STATEN ISLAND,10305,40.609436,-74.0694,"(40.609436, -74.0694)",,,691 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407371,Sedan,Sedan,,, +04/14/2021,12:30,BROOKLYN,11220,40.64393,-73.99933,"(40.64393, -73.99933)",,,836 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407526,Sedan,VAN/TRUCK,,, +04/16/2021,10:50,,,40.61636,-74.15677,"(40.61636, -74.15677)",RICHMOND AVENUE,GOETHALS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4407799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,17:30,QUEENS,11369,40.761303,-73.86043,"(40.761303, -73.86043)",,,110-12 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407716,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +04/16/2021,16:28,BROOKLYN,11205,40.694836,-73.96915,"(40.694836, -73.96915)",,,95 CLINTON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4407859,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +04/16/2021,11:30,BROOKLYN,11224,40.580658,-73.985664,"(40.580658, -73.985664)",HART PLACE,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408058,Sedan,Box Truck,,, +04/15/2021,17:45,BRONX,10469,40.872303,-73.84665,"(40.872303, -73.84665)",,,1411 BURKE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4408096,Sedan,Sedan,Sedan,, +04/10/2021,22:55,BROOKLYN,11226,40.639805,-73.95132,"(40.639805, -73.95132)",ROGERS AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408115,Sedan,Sedan,Sedan,, +04/14/2021,7:00,QUEENS,11691,40.60871,-73.74768,"(40.60871, -73.74768)",CENTRAL AVENUE,MINTON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4407479,Sedan,,,, +04/16/2021,16:55,QUEENS,11370,40.758156,-73.89627,"(40.758156, -73.89627)",31 AVENUE,71 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407920,Sedan,Bike,,, +04/14/2021,15:30,,,40.824932,-73.82431,"(40.824932, -73.82431)",RANDALL AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407330,Sedan,Tractor Truck Diesel,,, +04/15/2021,18:05,BROOKLYN,11204,40.61242,-73.991234,"(40.61242, -73.991234)",,,1977 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407640,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,21:08,,,40.696213,-73.97528,"(40.696213, -73.97528)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4407881,Sedan,Tractor Truck Diesel,,, +04/14/2021,18:47,,,40.783146,-73.97833,"(40.783146, -73.97833)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4407613,Taxi,Bus,,, +04/16/2021,13:25,BRONX,10466,40.897415,-73.85018,"(40.897415, -73.85018)",,,4373 WICKHAM AVENUE,3,0,0,0,0,0,3,0,Fell Asleep,Unspecified,Unspecified,,,4408141,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2021,8:00,QUEENS,11426,40.73444,-73.72179,"(40.73444, -73.72179)",COMMONWEALTH BOULEVARD,HILLSIDE AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407863,Pick-up Truck,E-Bike,,, +04/14/2021,18:55,BROOKLYN,11236,40.642002,-73.898834,"(40.642002, -73.898834)",ROCKAWAY PARKWAY,AVENUE J,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4407405,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/06/2021,0:30,MANHATTAN,10026,40.800663,-73.946465,"(40.800663, -73.946465)",5 AVENUE,WEST 116 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407776,Sedan,Sedan,,, +04/16/2021,22:55,BROOKLYN,11226,40.643517,-73.96098,"(40.643517, -73.96098)",,,269 EAST 19 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,10:00,BRONX,10453,40.84621,-73.91227,"(40.84621, -73.91227)",CLIFFORD PLACE,TOWNSEND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408004,Sedan,,,, +04/14/2021,18:35,BROOKLYN,11206,40.707493,-73.94153,"(40.707493, -73.94153)",MONTROSE AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407391,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,19:05,QUEENS,11357,40.786854,-73.82236,"(40.786854, -73.82236)",PARSONS BOULEVARD,14 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407903,Sedan,Pick-up Truck,,, +04/14/2021,15:45,BRONX,10466,40.88887,-73.864365,"(40.88887, -73.864365)",,,3964 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407565,Sedan,,,, +04/16/2021,20:00,BROOKLYN,11233,40.682156,-73.920616,"(40.682156, -73.920616)",,,412 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408230,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,11:20,,,40.677025,-73.95268,"(40.677025, -73.95268)",DEAN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4408265,Station Wagon/Sport Utility Vehicle,,,, +04/10/2021,19:45,,,40.84797,-73.924774,"(40.84797, -73.924774)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407972,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,17:16,BROOKLYN,11212,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408070,Pick-up Truck,Sedan,,, +02/26/2021,8:00,QUEENS,11372,40.752045,-73.879036,"(40.752045, -73.879036)",,,35-11 88 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4407918,Sedan,,,, +04/15/2021,13:36,QUEENS,11436,40.671448,-73.78943,"(40.671448, -73.78943)",149 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4407593,Sedan,Sedan,,, +04/15/2021,0:30,QUEENS,11434,40.666393,-73.764465,"(40.666393, -73.764465)",SOUTH CONDUIT AVENUE,180 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407411,Sedan,,,, +04/15/2021,14:11,,,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407781,Sedan,,,, +04/13/2021,17:15,MANHATTAN,10001,40.74652,-73.99388,"(40.74652, -73.99388)",,,299 7 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408083,Sedan,,,, +04/12/2021,5:00,,,40.694637,-73.949066,"(40.694637, -73.949066)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408282,Sedan,,,, +04/16/2021,21:35,QUEENS,11435,40.68561,-73.80654,"(40.68561, -73.80654)",,,109-73 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4407956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,9:08,,,40.678852,-73.88152,"(40.678852, -73.88152)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2021,9:45,MANHATTAN,10029,40.79157,-73.94469,"(40.79157, -73.94469)",EAST 106 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408408,Box Truck,Van,,, +04/14/2021,14:30,QUEENS,11413,40.66305,-73.74874,"(40.66305, -73.74874)",230 STREET,144 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4407323,Sedan,Sedan,Sedan,, +04/15/2021,12:30,,,40.758537,-73.97721,"(40.758537, -73.97721)",5 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407704,Sedan,Taxi,,, +04/14/2021,11:00,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,22:30,BROOKLYN,11214,40.605072,-73.997795,"(40.605072, -73.997795)",,,8512 20 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,1:45,,,40.827595,-73.85004,"(40.827595, -73.85004)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407503,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2021,14:35,BRONX,10456,40.835598,-73.9138,"(40.835598, -73.9138)",EAST 169 STREET,GRANT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Traffic Control Disregarded,,,,4408201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,6:45,QUEENS,11372,40.74832,-73.87729,"(40.74832, -73.87729)",,,89-22 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407764,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,10:32,,,40.81094,-73.94318,"(40.81094, -73.94318)",WEST 130 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407803,Sedan,Box Truck,,, +04/15/2021,6:15,BROOKLYN,11226,40.64884,-73.95102,"(40.64884, -73.95102)",,,2820 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407541,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,18:05,,,40.64124,-73.943726,"(40.64124, -73.943726)",EAST 35 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407348,Box Truck,Sedan,,, +04/14/2021,11:42,,,40.810486,-73.905075,"(40.810486, -73.905075)",EAST 147 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407429,Sedan,,,, +04/13/2021,18:53,BROOKLYN,11218,40.636612,-73.97708,"(40.636612, -73.97708)",,,600 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408152,Sedan,Sedan,,, +04/16/2021,9:40,,,40.72956,-73.87145,"(40.72956, -73.87145)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4407814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,13:55,BROOKLYN,11231,40.67474,-73.99777,"(40.67474, -73.99777)",SMITH STREET,WEST 9 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4407522,SEMI TRAIL,,,, +04/15/2021,5:56,MANHATTAN,10019,40.765152,-73.995155,"(40.765152, -73.995155)",,,682 11 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4407462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,15:40,BROOKLYN,11206,40.704483,-73.9488,"(40.704483, -73.9488)",MIDDLETON STREET,THROOP AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408370,Sedan,,,, +04/16/2021,0:01,QUEENS,11101,40.742523,-73.94924,"(40.742523, -73.94924)",49 AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407831,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,10:39,QUEENS,11365,40.74217,-73.804436,"(40.74217, -73.804436)",164 STREET,BOOTH MEMORIAL AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4407281,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,0:27,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407161,Bike,,,, +07/08/2021,20:38,BRONX,10469,40.88048,-73.83832,"(40.88048, -73.83832)",,,3455 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456625,Sedan,Sedan,,, +04/15/2021,18:35,BROOKLYN,11224,40.57699,-73.98153,"(40.57699, -73.98153)",STILLWELL AVENUE,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408055,Ambulance,,,, +04/15/2021,18:46,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4407690,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,4:13,BRONX,10456,40.818607,-73.904785,"(40.818607, -73.904785)",,,764 TINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407434,Sedan,Sedan,,, +04/14/2021,19:00,,,40.696445,-73.8131,"(40.696445, -73.8131)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4407351,Sedan,Tractor Truck Diesel,,, +04/16/2021,10:45,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,17:10,BROOKLYN,11207,40.677155,-73.88773,"(40.677155, -73.88773)",ATLANTIC AVENUE,JEROME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456630,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,21:48,,,40.679073,-73.92527,"(40.679073, -73.92527)",FULTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407635,Sedan,Sedan,,, +04/16/2021,17:58,QUEENS,11363,40.7722,-73.74176,"(40.7722, -73.74176)",249 STREET,41 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4407846,Sedan,Sedan,,, +04/15/2021,7:00,,,40.66597,-73.928604,"(40.66597, -73.928604)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407943,Sedan,,,, +04/14/2021,16:50,,,40.683342,-74.001976,"(40.683342, -74.001976)",HICKS STREET,PRESIDENT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4407569,Sedan,Sedan,Sedan,, +04/09/2021,0:00,,,,,,381A Marcus Garvey Blvd,STUYVESANT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408225,Motorcycle,Taxi,,, +04/16/2021,14:58,BROOKLYN,11223,40.59675,-73.97329,"(40.59675, -73.97329)",,,2280 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407899,Sedan,,,, +04/15/2021,16:00,BROOKLYN,11206,40.703,-73.94425,"(40.703, -73.94425)",,,21 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407669,Sedan,,,, +04/15/2021,18:47,,,40.825424,-73.923485,"(40.825424, -73.923485)",EAST 158 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407796,Sedan,Sedan,,, +04/14/2021,9:15,BROOKLYN,11233,40.676132,-73.921906,"(40.676132, -73.921906)",RALPH AVENUE,PACIFIC STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4408260,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2021,23:57,,,40.588078,-74.16127,"(40.588078, -74.16127)",NOME AVENUE,MERRYMOUNT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407759,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,20:00,BROOKLYN,11226,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,PARADE PLACE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408031,Bike,Sedan,,, +04/16/2021,17:20,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",WINTHROP STREET,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408000,Sedan,,,, +04/14/2021,21:38,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407386,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,17:50,BROOKLYN,11212,40.667156,-73.9101,"(40.667156, -73.9101)",ROCKAWAY AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455992,Pick-up Truck,Sedan,,, +04/15/2021,10:19,QUEENS,11105,40.769794,-73.90045,"(40.769794, -73.90045)",,,21-75 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4407583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/15/2021,19:15,BROOKLYN,11209,40.633514,-74.026955,"(40.633514, -74.026955)",72 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407687,Sedan,Bike,,, +04/14/2021,18:00,,,40.608433,-74.15544,"(40.608433, -74.15544)",CHRISTOPHER LANE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407495,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,17:00,BROOKLYN,11215,40.672638,-73.97678,"(40.672638, -73.97678)",,,149 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407700,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,23:20,BROOKLYN,11226,40.64588,-73.95195,"(40.64588, -73.95195)",,,995 ROGERS AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4408124,Sedan,Sedan,,, +04/07/2021,19:30,QUEENS,11423,40.711353,-73.77518,"(40.711353, -73.77518)",,,90-22 185 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408414,Sedan,Sedan,,, +04/16/2021,20:45,QUEENS,11101,40.74456,-73.95598,"(40.74456, -73.95598)",48 AVENUE,5 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407860,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,10:00,BROOKLYN,11207,40.657894,-73.88153,"(40.657894, -73.88153)",,,890 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407720,,,,, +04/14/2021,16:00,QUEENS,11360,40.778625,-73.77587,"(40.778625, -73.77587)",BELL BOULEVARD,26 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4407845,Bike,,,, +04/16/2021,13:40,,,40.60783,-74.1465,"(40.60783, -74.1465)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2021,11:10,,,0,0,"(0.0, 0.0)",90 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4407319,Box Truck,Sedan,Sedan,, +04/14/2021,14:50,MANHATTAN,10028,40.777504,-73.954956,"(40.777504, -73.954956)",EAST 84 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407517,Taxi,Pedicab,,, +04/15/2021,16:03,,,40.841084,-73.937935,"(40.841084, -73.937935)",WEST 169 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4407654,Sedan,Sedan,,, +04/15/2021,7:20,QUEENS,11432,40.7075,-73.800674,"(40.7075, -73.800674)",,,88-44 161 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407482,Sedan,,,, +04/14/2021,9:58,,,40.621357,-74.02198,"(40.621357, -74.02198)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4407300,Sedan,Sedan,Sedan,Van, +04/14/2021,14:20,,,40.666748,-73.764534,"(40.666748, -73.764534)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407344,Sedan,Pick-up Truck,,, +04/16/2021,14:35,QUEENS,11385,40.71178,-73.91737,"(40.71178, -73.91737)",,,175 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4407818,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,9:00,QUEENS,11417,40.677876,-73.85064,"(40.677876, -73.85064)",87 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4407545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,21:55,,,,,,MACOMBS ROAD,FEATHERBED LANE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4407536,Sedan,Sedan,,, +04/14/2021,9:49,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",COHANCY STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407267,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,14:30,MANHATTAN,10018,40.7514,-73.983765,"(40.7514, -73.983765)",,,25 WEST 38 STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4513714,Bike,,,, +04/14/2021,13:18,,,40.703915,-73.94817,"(40.703915, -73.94817)",LORIMER STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4407670,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,15:50,,,40.844563,-73.901276,"(40.844563, -73.901276)",ITTNER PLACE,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407786,Sedan,Sedan,,, +04/13/2021,17:15,BROOKLYN,11226,40.65505,-73.95631,"(40.65505, -73.95631)",BEDFORD AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4408105,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/07/2021,18:20,,,40.710476,-73.963844,"(40.710476, -73.963844)",BEDFORD AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408385,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,0:39,,,40.584343,-73.962,"(40.584343, -73.962)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408051,Sedan,Sedan,,, +04/16/2021,4:16,,,40.759205,-73.98464,"(40.759205, -73.98464)",WEST 47 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407705,Station Wagon/Sport Utility Vehicle,Dump,,, +04/14/2021,7:50,MANHATTAN,10031,40.8188,-73.95603,"(40.8188, -73.95603)",WEST 133 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,8:28,BROOKLYN,11234,,,,pennsylvania ave,belt parkway,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4407739,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/15/2021,4:25,QUEENS,11411,40.693882,-73.72966,"(40.693882, -73.72966)",231 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4407418,Sedan,Pick-up Truck,,, +04/15/2021,15:20,BROOKLYN,11228,40.622272,-74.00306,"(40.622272, -74.00306)",,,1370 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4407628,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/15/2021,14:30,QUEENS,11434,40.66377,-73.76881,"(40.66377, -73.76881)",,,145-80 FARMERS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4407631,Sedan,,,, +04/14/2021,2:02,BROOKLYN,11215,40.675106,-73.97714,"(40.675106, -73.97714)",,,768 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407151,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,12:12,MANHATTAN,10005,40.706142,-74.00603,"(40.706142, -74.00603)",WATER STREET,MAIDEN LANE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407694,Sedan,,,, +04/15/2021,1:17,BRONX,10474,40.821156,-73.88635,"(40.821156, -73.88635)",GARRISON AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407442,Sedan,Sedan,,, +04/16/2021,3:15,QUEENS,11434,40.685585,-73.78584,"(40.685585, -73.78584)",116 AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407754,Sedan,,,, +04/07/2021,13:25,BROOKLYN,11219,40.631573,-73.99547,"(40.631573, -73.99547)",55 STREET,NEW UTRECHT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4407932,,,,, +04/15/2021,7:35,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407664,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2021,19:42,MANHATTAN,10026,40.800972,-73.947174,"(40.800972, -73.947174)",,,11 WEST 116 STREET,2,0,1,0,0,0,1,0,Turning Improperly,Unspecified,,,,4407771,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/14/2021,15:00,QUEENS,11374,40.72304,-73.8563,"(40.72304, -73.8563)",67 AVENUE,BURNS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,10:20,MANHATTAN,10036,40.75734,-73.98602,"(40.75734, -73.98602)",WEST 44 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407553,Van,Sedan,,, +04/16/2021,18:25,STATEN ISLAND,10304,40.60109,-74.09284,"(40.60109, -74.09284)",RICHMOND ROAD,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,0:00,BRONX,10469,40.867554,-73.84065,"(40.867554, -73.84065)",EAST GUN HILL ROAD,MICKLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4407895,Dump,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,15:35,MANHATTAN,10034,40.8651,-73.92189,"(40.8651, -73.92189)",SHERMAN AVENUE,WEST 204 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408222,Sedan,Sedan,,, +04/13/2021,20:00,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407813,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,22:09,,,40.85687,-73.93477,"(40.85687, -73.93477)",OVERLOOK TERRACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408158,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2021,15:37,,,40.76051,-73.82914,"(40.76051, -73.82914)",39 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407993,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,21:00,,,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408278,Sedan,,,, +04/16/2021,10:46,BROOKLYN,11211,40.707523,-73.96115,"(40.707523, -73.96115)",ROEBLING STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4408351,Sedan,Bus,,, +04/14/2021,21:08,,,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407398,Pick-up Truck,Sedan,,, +04/15/2021,23:30,,,40.884014,-73.8791,"(40.884014, -73.8791)",DEKALB AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407681,Taxi,Taxi,,, +04/15/2021,12:35,,,40.63651,-74.133,"(40.63651, -74.133)",NEW STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407828,Sedan,Sedan,,, +04/15/2021,18:45,,,40.723347,-73.939316,"(40.723347, -73.939316)",MEEKER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407808,Sedan,Sedan,,, +04/14/2021,16:25,,,40.865067,-73.9281,"(40.865067, -73.9281)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408138,Sedan,Sedan,,, +04/09/2021,13:40,BRONX,10455,40.81945,-73.902054,"(40.81945, -73.902054)",,,832 WESTCHESTER AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4408365,Sedan,Sedan,,, +04/14/2021,9:30,BRONX,10467,40.876095,-73.868126,"(40.876095, -73.868126)",,,3421 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4408393,Sedan,Sedan,Sedan,Sedan, +04/16/2021,23:00,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407880,Sedan,Sedan,,, +04/15/2021,6:00,BROOKLYN,11207,40.673016,-73.89718,"(40.673016, -73.89718)",GLENMORE AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407745,Bus,Sedan,,, +04/16/2021,9:10,,,40.667908,-73.76281,"(40.667908, -73.76281)",181 PLACE,144 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408064,Sedan,,,, +04/15/2021,12:10,QUEENS,11418,40.697327,-73.82961,"(40.697327, -73.82961)",LEFFERTS BOULEVARD,89 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407840,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,21:55,BRONX,10470,40.898373,-73.87283,"(40.898373, -73.87283)",ONEIDA AVENUE,EAST 237 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4408097,Sedan,Sedan,,, +04/14/2021,22:30,,,40.741917,-73.823425,"(40.741917, -73.823425)",HORACE HARDING EXPRESSWAY,146 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4407980,Sedan,,,, +04/15/2021,23:00,,,40.825115,-73.92541,"(40.825115, -73.92541)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408190,Sedan,,,, +04/16/2021,23:55,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407872,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,16:11,BROOKLYN,11206,40.700813,-73.95447,"(40.700813, -73.95447)",LEE AVENUE,MIDDLETON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408355,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,18:00,,,40.744923,-73.83709,"(40.744923, -73.83709)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407451,Sedan,Sedan,,, +04/14/2021,15:13,STATEN ISLAND,10304,40.597706,-74.092575,"(40.597706, -74.092575)",,,1199 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407340,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,6:06,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4407249,Sedan,Sedan,,, +04/14/2021,15:48,BRONX,10457,40.842678,-73.899376,"(40.842678, -73.899376)",EAST 174 STREET,BATHGATE AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4407511,Sedan,Sedan,,, +04/15/2021,11:15,QUEENS,11412,40.70675,-73.76271,"(40.70675, -73.76271)",,,195-06 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407561,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/14/2021,10:20,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407365,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,18:10,BROOKLYN,11238,40.68018,-73.95994,"(40.68018, -73.95994)",,,975 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407357,Sedan,Sedan,,, +04/15/2021,3:30,MANHATTAN,10035,40.805058,-73.93904,"(40.805058, -73.93904)",EAST 125 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407530,Sedan,Sedan,,, +04/15/2021,13:15,QUEENS,11365,40.732857,-73.79857,"(40.732857, -73.79857)",69 AVENUE,171 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4407675,Sedan,Sedan,,, +04/11/2021,16:30,,,40.671032,-73.93927,"(40.671032, -73.93927)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4408269,Sedan,Sedan,,, +04/16/2021,0:46,MANHATTAN,10011,40.737568,-74.00149,"(40.737568, -74.00149)",,,225 WEST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407855,Sedan,,,, +04/15/2021,19:45,QUEENS,11692,40.594105,-73.79242,"(40.594105, -73.79242)",,,448 BEACH 63 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,11:35,BROOKLYN,11210,40.628258,-73.94135,"(40.628258, -73.94135)",,,1837 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407782,Station Wagon/Sport Utility Vehicle,,,, +04/07/2021,14:24,QUEENS,11379,40.71058,-73.87064,"(40.71058, -73.87064)",68 ROAD,80 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408110,Convertible,Pick-up Truck,,, +04/14/2021,0:00,BROOKLYN,11232,40.64994,-74.00172,"(40.64994, -74.00172)",39 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407394,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,21:00,BROOKLYN,11235,40.581745,-73.95384,"(40.581745, -73.95384)",SHORE BOULEVARD,WEST END AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4407426,Sedan,Bike,,, +04/14/2021,19:50,STATEN ISLAND,10304,40.62146,-74.071754,"(40.62146, -74.071754)",BAY STREET,TOWNSEND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4407644,Sedan,Sedan,,, +04/15/2021,12:25,BROOKLYN,11237,40.69627,-73.90956,"(40.69627, -73.90956)",CORNELIA STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407606,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/15/2021,18:10,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4407730,Sedan,Sedan,,, +04/14/2021,17:30,QUEENS,11354,40.766922,-73.83548,"(40.766922, -73.83548)",DOWNING STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407907,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,6:10,,,40.641205,-73.877205,"(40.641205, -73.877205)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4407750,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,17:00,QUEENS,11373,40.74156,-73.88065,"(40.74156, -73.88065)",,,82-66 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407437,Bus,Sedan,,, +04/15/2021,13:45,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407889,Sedan,Sedan,,, +04/08/2021,12:03,BROOKLYN,11201,40.70277,-73.990685,"(40.70277, -73.990685)",,,45 MAIN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407767,Box Truck,Box Truck,,, +04/14/2021,0:00,,,40.60365,-73.99204,"(40.60365, -73.99204)",83 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407387,Sedan,,,, +04/14/2021,7:55,BRONX,10474,40.811512,-73.89053,"(40.811512, -73.89053)",TIFFANY STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407710,Sedan,Garbage or Refuse,,, +04/16/2021,13:00,,,40.74947,-73.85056,"(40.74947, -73.85056)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408211,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,9:35,,,40.75597,-73.91262,"(40.75597, -73.91262)",BROADWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4408020,Moped,,,, +04/14/2021,12:35,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407588,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,17:25,BRONX,10451,40.825455,-73.91317,"(40.825455, -73.91317)",MELROSE AVENUE,EAST 163 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408045,Taxi,Sedan,Sedan,, +04/16/2021,16:12,QUEENS,11430,40.66615,-73.80575,"(40.66615, -73.80575)",SOUTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4408166,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,15:40,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408424,Sedan,Sedan,,, +04/15/2021,17:55,,,40.679276,-73.92906,"(40.679276, -73.92906)",UTICA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,16:39,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407913,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,15:50,QUEENS,11372,40.748024,-73.88021,"(40.748024, -73.88021)",ROOSEVELT AVENUE,86 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4407599,Sedan,,,, +04/15/2021,19:49,MANHATTAN,10010,40.741028,-73.99417,"(40.741028, -73.99417)",WEST 20 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408089,Sedan,,,, +04/16/2021,14:54,QUEENS,11370,40.757977,-73.88297,"(40.757977, -73.88297)",32 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407919,Sedan,E-Bike,,, +04/16/2021,22:15,,,40.752445,-73.96461,"(40.752445, -73.96461)",FDR DRIVE,EAST 49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2021,21:30,MANHATTAN,10026,40.802696,-73.949196,"(40.802696, -73.949196)",LENOX AVENUE,WEST 117 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4407777,Sedan,Sedan,,, +04/14/2021,13:15,,,40.690174,-73.95527,"(40.690174, -73.95527)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,11:48,QUEENS,11377,40.738354,-73.89591,"(40.738354, -73.89591)",48 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407614,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2021,20:00,,,40.673588,-73.73351,"(40.673588, -73.73351)",BROOKVILLE BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407406,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,18:30,QUEENS,11368,40.734863,-73.862656,"(40.734863, -73.862656)",,,96-05 HORACE HARDING EXPRESSWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456187,Bike,Sedan,,, +07/08/2021,20:25,BRONX,10462,40.84939,-73.85622,"(40.84939, -73.85622)",,,1847 PAULDING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4456620,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/06/2021,10:30,,,40.62103,-74.16894,"(40.62103, -74.16894)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456535,Box Truck,Box Truck,,, +07/08/2021,14:27,BROOKLYN,11222,40.730198,-73.954254,"(40.730198, -73.954254)",GREENPOINT AVENUE,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456598,Sedan,Sedan,,, +09/11/2021,5:00,QUEENS,11434,40.666454,-73.78413,"(40.666454, -73.78413)",153 COURT,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455902,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,11:00,STATEN ISLAND,10310,40.635998,-74.11747,"(40.635998, -74.11747)",,,221 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456770,Sedan,,,, +09/11/2021,6:34,BRONX,10462,40.838573,-73.86077,"(40.838573, -73.86077)",,,81 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Unspecified,,,,,4456038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,20:20,STATEN ISLAND,10304,40.59702,-74.09339,"(40.59702, -74.09339)",RICHMOND ROAD,OLD TOWN ROAD,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4456744,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,9:55,BROOKLYN,11226,40.652313,-73.95602,"(40.652313, -73.95602)",BEDFORD AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,,,,,4455839,E-Bike,,,, +09/11/2021,13:53,QUEENS,11427,40.732533,-73.76565,"(40.732533, -73.76565)",UNION TURNPIKE,CLEARVIEW EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4456831,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,15:00,QUEENS,11421,40.68866,-73.86588,"(40.68866, -73.86588)",88 ROAD,75 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456731,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,23:50,MANHATTAN,10003,40.734886,-73.98995,"(40.734886, -73.98995)",,,10 UNION SQUARE EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4455976,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,13:30,BROOKLYN,11215,40.67506,-73.98139,"(40.67506, -73.98139)",,,241 5 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4456652,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,16:30,QUEENS,11693,40.58489,-73.818954,"(40.58489, -73.818954)",,,97-04 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,3:10,QUEENS,11373,40.743614,-73.875275,"(40.743614, -73.875275)",,,42-89 HAMPTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456998,Sedan,Sedan,Sedan,, +09/11/2021,14:00,,,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4455957,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,16:36,,,,,,QUEENS PLAZA SOUTH,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456876,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,5:30,BRONX,10462,40.846138,-73.86172,"(40.846138, -73.86172)",MORRIS PARK AVENUE,MATTHEWS AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4456674,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,22:00,BROOKLYN,11249,40.720074,-73.96282,"(40.720074, -73.96282)",,,22 NORTH 6 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456575,Sedan,,,, +09/11/2021,0:45,BRONX,10452,40.827904,-73.9247,"(40.827904, -73.9247)",,,878 GERARD AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456494,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,10:20,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",EAST 120 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456689,Box Truck,Sedan,,, +09/11/2021,12:00,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Failure to Yield Right-of-Way,,,,4456079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,20:30,BRONX,10468,40.86135,-73.89774,"(40.86135, -73.89774)",GRAND CONCOURSE,EAST 188 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4456391,Sedan,Motorcycle,,, +04/25/2022,16:00,STATEN ISLAND,10308,40.54802,-74.1558,"(40.54802, -74.1558)",,,4163 AMBOY ROAD,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4522035,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,13:48,MANHATTAN,10022,40.764896,-73.97256,"(40.764896, -73.97256)",5 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,20:00,,,40.80964,-73.947845,"(40.80964, -73.947845)",7 AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456761,E-Bike,,,, +09/11/2021,8:57,,,40.808243,-73.92785,"(40.808243, -73.92785)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456451,Motorcycle,Sedan,,, +09/11/2021,8:00,QUEENS,11368,40.73994,-73.850266,"(40.73994, -73.850266)",VANCLEEF STREET,SAULTELL AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456170,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,11:40,QUEENS,11429,40.709435,-73.73208,"(40.709435, -73.73208)",,,223-12 106 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456557,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,17:42,,,40.83398,-73.82635,"(40.83398, -73.82635)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4456613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,21:15,,,40.631577,-74.185005,"(40.631577, -74.185005)",,,400 WESTERN AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4456780,Sedan,,,, +09/11/2021,13:37,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456073,Sedan,Bike,,, +06/22/2021,18:45,,,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,23:00,BROOKLYN,11222,40.733376,-73.95865,"(40.733376, -73.95865)",,,82 GREEN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456569,Sedan,Box Truck,,, +07/06/2021,15:15,BROOKLYN,11229,40.59714,-73.933495,"(40.59714, -73.933495)",KNAPP STREET,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456701,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,10:14,QUEENS,11435,40.697556,-73.80498,"(40.697556, -73.80498)",97 AVENUE,147 PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456849,Sedan,Sedan,,, +09/11/2021,18:42,BRONX,10472,40.82842,-73.86068,"(40.82842, -73.86068)",WATSON AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,2:15,,,40.732613,-73.925156,"(40.732613, -73.925156)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4455823,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,9:00,BRONX,10475,40.86094,-73.822586,"(40.86094, -73.822586)",EARHART LANE,ERSKINE PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456584,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,2:56,BROOKLYN,11217,40.68274,-73.97822,"(40.68274, -73.97822)",,,388 DEAN STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456657,Sedan,Sedan,,, +09/11/2021,16:00,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455928,Motorcycle,Sedan,,, +09/10/2021,22:18,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456807,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,17:23,,,40.79611,-73.96145,"(40.79611, -73.96145)",WEST 103 STREET,,,3,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456114,E-Scooter,Bike,,, +07/09/2021,1:45,QUEENS,11421,40.686928,-73.85314,"(40.686928, -73.85314)",ATLANTIC AVENUE,89 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4456642,,,,, +07/08/2021,17:30,,,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456610,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,7:20,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456540,Dump,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,17:00,,,40.743214,-73.95135,"(40.743214, -73.95135)",PULASKI BRIDGE,JACKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456915,Box Truck,Moped,,, +09/10/2021,21:50,STATEN ISLAND,10306,40.569706,-74.144394,"(40.569706, -74.144394)",SAINT PATRICK PLACE,CLARKE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456740,Sedan,Sedan,,, +09/11/2021,20:00,QUEENS,11691,40.601112,-73.76122,"(40.601112, -73.76122)",,,24-29 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456991,Sedan,Sedan,,, +07/09/2021,9:39,BRONX,10458,40.86404,-73.89245,"(40.86404, -73.89245)",EAST 193 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456684,Sedan,Sedan,,, +07/05/2021,5:06,QUEENS,11691,40.597824,-73.782524,"(40.597824, -73.782524)",,,51-15 ALMEDA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4456706,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/11/2021,0:00,BROOKLYN,11212,40.67106,-73.90336,"(40.67106, -73.90336)",,,166 JUNIUS STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4456128,Sedan,,,, +07/05/2021,12:58,,,40.626328,-74.13132,"(40.626328, -74.13132)",FOREST AVENUE,JEWETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,19:35,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456316,Sedan,Sedan,,, +09/05/2021,13:05,,,40.768166,-73.83749,"(40.768166, -73.83749)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456546,TOW TRUCK,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,13:40,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",UNION STREET,35 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4456095,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,22:23,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456950,Station Wagon/Sport Utility Vehicle,Bus,,, +09/11/2021,11:32,BROOKLYN,11214,40.605675,-73.98935,"(40.605675, -73.98935)",,,2203 79 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4456031,Sedan,Sedan,Sedan,Sedan, +07/07/2021,23:30,BROOKLYN,11211,40.71418,-73.95336,"(40.71418, -73.95336)",NORTH 6 STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:45,BRONX,10466,40.886806,-73.85216,"(40.886806, -73.85216)",,,966 EAST 227 STREET,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456590,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/11/2021,15:20,BROOKLYN,11211,40.71594,-73.92488,"(40.71594, -73.92488)",,,1313 GRAND STREET,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456377,E-Bike,,,, +09/05/2021,15:35,STATEN ISLAND,10305,40.58524,-74.093414,"(40.58524, -74.093414)",HYLAN BOULEVARD,BUEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456523,Pick-up Truck,Sedan,,, +09/11/2021,22:20,BROOKLYN,11214,40.605022,-74.00264,"(40.605022, -74.00264)",,,78 BAY 20 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4456144,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/04/2021,20:22,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456669,Sedan,Sedan,,, +09/11/2021,18:35,QUEENS,11421,40.696987,-73.85283,"(40.696987, -73.85283)",,,84-14 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,22:06,BRONX,10463,40.876743,-73.90664,"(40.876743, -73.90664)",BROADWAY,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456236,Sedan,,,, +09/11/2021,8:55,STATEN ISLAND,10308,40.543495,-74.14747,"(40.543495, -74.14747)",NELSON AVENUE,DRIGGS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456753,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,19:15,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4456617,Sedan,Sedan,,, +09/10/2021,10:45,QUEENS,11433,40.698055,-73.7877,"(40.698055, -73.7877)",,,167-04 108 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456857,Sedan,,,, +07/03/2021,15:25,QUEENS,11691,40.60303,-73.75316,"(40.60303, -73.75316)",,,10-36 BEACH 20 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4456562,Bus,Sedan,Sedan,, +09/10/2021,17:00,STATEN ISLAND,10312,40.56029,-74.165924,"(40.56029, -74.165924)",ARTHUR KILL ROAD,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456748,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,5:35,,,40.735283,-73.85984,"(40.735283, -73.85984)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456645,Tractor Truck Diesel,Sedan,,, +09/11/2021,14:55,BROOKLYN,11207,40.66361,-73.89858,"(40.66361, -73.89858)",,,458 HINSDALE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,2:20,,,40.805737,-73.94065,"(40.805737, -73.94065)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4456638,Sedan,Taxi,,, +07/06/2021,14:00,QUEENS,11691,40.59702,-73.749084,"(40.59702, -73.749084)",,,249 BEACH 15 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456565,Ambulance,Sedan,,, +09/11/2021,0:20,BROOKLYN,11210,40.63782,-73.952965,"(40.63782, -73.952965)",,,1361 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455781,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,17:43,MANHATTAN,10035,40.80153,-73.93669,"(40.80153, -73.93669)",,,212 EAST 122 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456606,Sedan,,,, +09/11/2021,11:19,,,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457026,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,23:01,BRONX,10463,40.887424,-73.90721,"(40.887424, -73.90721)",,,3713 RIVERDALE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4456816,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,13:10,BROOKLYN,11234,40.63512,-73.929634,"(40.63512, -73.929634)",GLENWOOD ROAD,EAST 49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456800,Sedan,Sedan,,, +07/06/2021,0:00,BROOKLYN,11237,40.693703,-73.90505,"(40.693703, -73.90505)",IRVING AVENUE,COVERT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456580,Sedan,Taxi,,, +09/11/2021,12:50,MANHATTAN,10002,40.719067,-73.99336,"(40.719067, -73.99336)",CHRYSTIE STREET,BROOME STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456071,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/11/2021,21:15,BRONX,10467,40.87306,-73.87864,"(40.87306, -73.87864)",PERRY AVENUE,EAST 204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456411,Sedan,Sedan,,, +09/11/2021,22:05,MANHATTAN,10022,40.76161,-73.97076,"(40.76161, -73.97076)",PARK AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455920,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,9:50,QUEENS,11377,40.757847,-73.89922,"(40.757847, -73.89922)",31 AVENUE,68 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456890,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/09/2021,16:49,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456983,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,13:55,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,15:00,BRONX,10457,40.843822,-73.892494,"(40.843822, -73.892494)",EAST 176 STREET,CROTONA AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456401,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,13:05,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456713,Van,Sedan,,, +07/01/2021,16:59,,,40.70455,-73.91662,"(40.70455, -73.91662)",STANHOPE STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456594,Sedan,,,, +09/10/2021,4:45,QUEENS,11421,40.688755,-73.86094,"(40.688755, -73.86094)",,,80-51 89 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456541,Pick-up Truck,Sedan,,, +09/11/2021,5:00,BROOKLYN,11207,40.68812,-73.9117,"(40.68812, -73.9117)",ELDERT STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/11/2021,4:30,,,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456164,Sedan,Sedan,,, +07/08/2021,12:17,,,40.59742,-74.06836,"(40.59742, -74.06836)",MCCLEAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456681,Sedan,,,, +09/11/2021,4:40,BROOKLYN,11203,40.64615,-73.93242,"(40.64615, -73.93242)",,,4722 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456202,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,12:25,QUEENS,11691,40.609913,-73.75364,"(40.609913, -73.75364)",,,14-79 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456694,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,21:37,QUEENS,11435,40.701385,-73.804115,"(40.701385, -73.804115)",,,93-04 150 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4456861,Sedan,,,, +09/01/2021,7:30,,,40.596004,-74.06788,"(40.596004, -74.06788)",CEDAR AVENUE,MILLS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,18:40,QUEENS,11368,40.756256,-73.85773,"(40.756256, -73.85773)",,,34-14 111 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456335,Sedan,,,, +09/11/2021,20:00,BROOKLYN,11211,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455956,Sedan,Sedan,,, +09/11/2021,19:52,,,,,,OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456017,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,23:45,BRONX,10466,40.892624,-73.859924,"(40.892624, -73.859924)",,,645 EAST 231 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456634,Sedan,Ambulance,,, +09/11/2021,7:00,BROOKLYN,11206,40.709164,-73.93708,"(40.709164, -73.93708)",,,55 WATERBURY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455858,Van,,,, +07/08/2021,20:15,BROOKLYN,11229,40.59634,-73.94308,"(40.59634, -73.94308)",,,2283 EAST 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456621,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/11/2021,15:43,BROOKLYN,11214,40.60442,-74.00084,"(40.60442, -74.00084)",,,56 BAY 22 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4456365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/25/2022,17:51,QUEENS,11368,,,,105 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522154,E-Scooter,,,, +04/17/2021,13:31,,,40.782463,-73.97883,"(40.782463, -73.97883)",AMSTERDAM AVENUE,,,0,1,0,1,0,0,0,0,Unsafe Speed,,,,,4408062,E-Bike,,,, +09/11/2021,15:40,STATEN ISLAND,10304,40.63157,-74.0775,"(40.63157, -74.0775)",VANDUZER STREET,BALTIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456771,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,10:10,BRONX,10458,40.85424,-73.887146,"(40.85424, -73.887146)",,,633 EAST 186 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,0:14,QUEENS,11691,40.592678,-73.78349,"(40.592678, -73.78349)",,,53-07 ROCKAWAY BEACH BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4456666,Sedan,,,, +09/08/2021,16:40,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456766,Bike,Sedan,,, +07/08/2021,15:03,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4456602,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/08/2021,12:20,QUEENS,11413,40.676117,-73.74046,"(40.676117, -73.74046)",MERRICK BOULEVARD,230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456649,Sedan,,,, +09/11/2021,17:33,QUEENS,11370,40.768917,-73.888756,"(40.768917, -73.888756)",81 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4455964,Pick-up Truck,,,, +09/11/2021,13:05,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,19:05,MANHATTAN,10065,40.764614,-73.95833,"(40.764614, -73.95833)",EAST 67 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456526,Sedan,Bus,,, +09/11/2021,14:00,BRONX,10460,40.841087,-73.86449,"(40.841087, -73.86449)",WHITE PLAINS ROAD,EAST TREMONT AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4456476,Sedan,Taxi,Sedan,Taxi, +09/11/2021,0:30,MANHATTAN,10001,40.747276,-73.989624,"(40.747276, -73.989624)",AVENUE OF THE AMERICAS,WEST 30 STREET,,2,0,1,0,0,0,1,0,Unspecified,,,,,4456495,Motorbike,,,, +06/28/2021,16:00,,,40.596325,-73.76673,"(40.596325, -73.76673)",ROCKAWAY FREEWAY,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456670,Sedan,,,, +09/10/2021,18:30,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456824,Sedan,,,, +09/11/2021,13:54,BROOKLYN,11249,40.713924,-73.96714,"(40.713924, -73.96714)",KENT AVENUE,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455850,Bike,Bike,,, +07/05/2021,12:14,QUEENS,11691,40.609592,-73.75854,"(40.609592, -73.75854)",,,14-32 EGGERT PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456709,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,15:00,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,BOSTON ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457018,,,,, +09/10/2021,12:10,BROOKLYN,11211,40.707474,-73.95704,"(40.707474, -73.95704)",,,280 RODNEY STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4456871,Box Truck,Sedan,Pick-up Truck,, +09/11/2021,13:20,QUEENS,11385,40.703205,-73.865456,"(40.703205, -73.865456)",,,83-09 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456226,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,10:45,QUEENS,11691,40.595158,-73.7543,"(40.595158, -73.7543)",,,20-10 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456677,Sedan,Sedan,,, +09/08/2021,10:50,MANHATTAN,10065,40.763477,-73.96144,"(40.763477, -73.96144)",,,317 EAST 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456884,Sedan,,,, +07/03/2021,9:43,QUEENS,11691,40.60531,-73.759056,"(40.60531, -73.759056)",,,1100 GIPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456698,Sedan,,,, +09/11/2021,18:30,BROOKLYN,11212,40.669403,-73.912605,"(40.669403, -73.912605)",PITKIN AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455909,Bus,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,19:10,BRONX,10462,40.852425,-73.86873,"(40.852425, -73.86873)",BRONX PARK EAST,BRADY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456675,Station Wagon/Sport Utility Vehicle,Moped,,, +09/11/2021,19:50,MANHATTAN,10025,40.792126,-73.97178,"(40.792126, -73.97178)",WEST 93 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4456374,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,10:50,,,40.634846,-74.15177,"(40.634846, -74.15177)",,,86 SIMONSON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4455834,Sedan,Sedan,,, +09/11/2021,11:43,,,40.8252,-73.867714,"(40.8252, -73.867714)",ROSEDALE AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456042,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,16:00,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",EAST 138 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4456464,Sedan,Sedan,,, +04/17/2021,12:29,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4408209,Sedan,,,, +09/02/2021,18:33,BROOKLYN,11219,40.62284,-74.00121,"(40.62284, -74.00121)",OVINGTON AVENUE,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456739,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,22:03,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,CLINTON STREET,,0,1,0,0,0,1,0,0,Traffic Control Disregarded,Unspecified,,,,4456653,Sedan,Bike,,, +03/26/2022,8:50,MANHATTAN,10035,40.80765,-73.939255,"(40.80765, -73.939255)",EAST 128 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4514157,Sedan,Taxi,,, +09/11/2021,15:20,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",NEW LOTS AVENUE,HINSDALE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456324,Bike,Sedan,,, +08/24/2021,15:20,BRONX,10455,40.808437,-73.904724,"(40.808437, -73.904724)",BRUCKNER BOULEVARD,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456996,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,23:50,QUEENS,11413,40.672714,-73.75393,"(40.672714, -73.75393)",219 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455942,Sedan,Sedan,,, +07/04/2021,18:55,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4456589,Sedan,Sedan,,, +09/09/2021,13:00,BROOKLYN,11225,40.662415,-73.94996,"(40.662415, -73.94996)",,,335 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456875,Sedan,,,, +07/07/2021,13:34,MANHATTAN,10032,40.83978,-73.94322,"(40.83978, -73.94322)",,,130 FORT WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456570,Sedan,Sedan,,, +08/23/2021,15:58,QUEENS,11429,,,,HEMPSTEAD AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456847,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,22:50,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2021,13:14,QUEENS,11691,40.595802,-73.764656,"(40.595802, -73.764656)",SEAGIRT BOULEVARD,BEACH 32 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4456702,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,1:15,MANHATTAN,10018,40.752464,-73.98955,"(40.752464, -73.98955)",,,485 7 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456080,,,,, +09/11/2021,20:33,BROOKLYN,11249,40.71082,-73.96853,"(40.71082, -73.96853)",BROADWAY,KENT AVENUE,,1,0,0,0,1,0,0,0,Tire Failure/Inadequate,,,,,4456942,Bike,,,, +09/04/2021,12:00,,,40.556618,-74.203995,"(40.556618, -74.203995)",VETERANS ROAD EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456534,UNKNOWN,Tractor Truck Diesel,,, +07/25/2021,0:00,BRONX,10454,40.807552,-73.91922,"(40.807552, -73.91922)",EAST 138 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4456992,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/11/2021,16:21,MANHATTAN,10035,40.80165,-73.93434,"(40.80165, -73.93434)",,,2403 2 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,12:45,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,Unspecified,,,4456131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2021,11:45,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,CREST ROAD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4456707,Sedan,Sedan,,, +07/08/2021,13:13,BRONX,10468,40.86177,-73.89868,"(40.86177, -73.89868)",EAST 188 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456658,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,0:12,,,40.664055,-73.9427,"(40.664055, -73.9427)",EMPIRE BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455930,,,,, +07/09/2021,5:25,,,40.828346,-73.94906,"(40.828346, -73.94906)",BROADWAY,,,1,0,0,0,1,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4456643,E-Bike,,,, +09/11/2021,18:20,BROOKLYN,11236,40.64789,-73.91072,"(40.64789, -73.91072)",AVENUE D,EAST 93 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455897,E-Bike,Sedan,,, +07/02/2021,7:08,BRONX,10451,40.81934,-73.93012,"(40.81934, -73.93012)",EAST 149 STREET,RIVER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4456597,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,20:17,BROOKLYN,11235,40.58776,-73.9562,"(40.58776, -73.9562)",AVENUE Z,EAST 13 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456390,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,12:00,QUEENS,11692,40.590885,-73.786125,"(40.590885, -73.786125)",,,141 BEACH 56 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456690,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,12:35,,,40.880466,-73.88384,"(40.880466, -73.88384)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408374,Sedan,,,, +09/07/2021,17:00,STATEN ISLAND,10308,40.551266,-74.14962,"(40.551266, -74.14962)",,,3937 AMBOY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456743,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,23:35,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456507,Sedan,Taxi,,, +09/11/2021,15:40,BROOKLYN,11217,40.68249,-73.97962,"(40.68249, -73.97962)",4 AVENUE,BERGEN STREET,,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455982,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,12:00,QUEENS,11373,40.736538,-73.865776,"(40.736538, -73.865776)",,,57-03 JUNCTION BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4456179,Bike,,,, +09/10/2021,7:30,STATEN ISLAND,10305,40.595104,-74.07541,"(40.595104, -74.07541)",MCCLEAN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456755,Sedan,Sedan,,, +09/11/2021,11:40,QUEENS,11105,40.771343,-73.905235,"(40.771343, -73.905235)",,,22-18 42 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4456441,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/11/2021,15:10,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456315,trailer,,,, +08/29/2021,14:00,MANHATTAN,10027,40.81084,-73.95068,"(40.81084, -73.95068)",WEST 126 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4456779,Sedan,,,, +09/11/2021,19:00,,,40.74273,-73.95412,"(40.74273, -73.95412)",50 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455878,Moped,Sedan,,, +09/11/2021,10:30,,,40.67897,-73.75985,"(40.67897, -73.75985)",BELKNAP STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4455824,Sedan,Pick-up Truck,,, +09/11/2021,17:19,BRONX,10472,40.834473,-73.87226,"(40.834473, -73.87226)",,,1691 EAST 174 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456046,Sedan,Sedan,,, +07/08/2021,21:37,BRONX,10466,40.892624,-73.859924,"(40.892624, -73.859924)",,,645 EAST 231 STREET,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4456629,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/11/2021,1:43,MANHATTAN,10034,40.860664,-73.92171,"(40.860664, -73.92171)",10 AVENUE,WEST 201 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4456190,Sedan,Sedan,,, +09/11/2021,18:15,BROOKLYN,11201,40.704456,-73.98752,"(40.704456, -73.98752)",PEARL STREET,JOHN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455991,Sedan,,,, +07/09/2021,14:25,,,,,,KNAPP STREET,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456717,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,19:20,BROOKLYN,11222,40.71982,-73.94863,"(40.71982, -73.94863)",,,424 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456574,Sedan,,,, +07/08/2021,11:55,BROOKLYN,11207,40.670856,-73.8852,"(40.670856, -73.8852)",WARWICK STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456585,Sedan,Flat Bed,,, +09/10/2021,18:45,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456805,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,10:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456538,Pick-up Truck,Sedan,,, +03/25/2022,14:30,BRONX,10473,40.82583,-73.85777,"(40.82583, -73.85777)",,,1994 BRUCKNER BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4514195,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,15:30,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",BAYCHESTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456611,Pick-up Truck,Sedan,,, +09/10/2021,22:00,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4456732,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,10:02,BRONX,10466,40.896656,-73.855576,"(40.896656, -73.855576)",,,4338 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456685,Ambulance,Sedan,,, +09/11/2021,18:00,MANHATTAN,10001,40.74668,-73.98586,"(40.74668, -73.98586)",,,302 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456074,Convertible,,,, +09/11/2021,14:00,,,,,,FDR DRIVE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456547,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,18:47,BROOKLYN,11207,40.67897,-73.895706,"(40.67897, -73.895706)",JAMAICA AVENUE,VERMONT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456626,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,2:13,MANHATTAN,10031,40.830845,-73.947235,"(40.830845, -73.947235)",BROADWAY,WEST 152 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4456368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck +07/08/2021,9:35,BROOKLYN,11222,40.732388,-73.943726,"(40.732388, -73.943726)",GREENPOINT AVENUE,MONITOR STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456639,Box Truck,Sedan,,, +09/11/2021,12:10,BROOKLYN,11225,40.66826,-73.95428,"(40.66826, -73.95428)",,,1110 PRESIDENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456839,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,14:30,,,,,,SOUTH CONDUIT AVENUE,177 PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456654,Sedan,Sedan,,, +09/10/2021,17:25,,,40.61855,-73.9395,"(40.61855, -73.9395)",EAST 36 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4456803,Sedan,Sedan,,, +09/07/2021,11:20,MANHATTAN,10026,,,,,,1917 7 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456767,Sedan,Sedan,,, +09/11/2021,15:10,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455921,Sedan,Tractor Truck Diesel,,, +09/11/2021,17:37,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,CEDAR AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456412,E-Scooter,Sedan,,, +07/08/2021,15:01,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4456601,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,17:29,,,40.759357,-73.9582,"(40.759357, -73.9582)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,20:14,BROOKLYN,11209,40.619274,-74.03203,"(40.619274, -74.03203)",,,315 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455908,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,12:14,BRONX,10460,40.835884,-73.88341,"(40.835884, -73.88341)",EAST 174 STREET,BOONE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455968,Sedan,Sedan,,, +09/10/2021,8:05,,,40.716476,-73.99283,"(40.716476, -73.99283)",HESTER STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456759,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,12:20,MANHATTAN,10065,40.761993,-73.961784,"(40.761993, -73.961784)",,,329 EAST 62 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456514,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,13:55,,,40.834187,-73.909584,"(40.834187, -73.909584)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4456496,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,8:30,MANHATTAN,10025,40.7982,-73.961815,"(40.7982, -73.961815)",,,122 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4455859,Sedan,Sedan,,, +09/10/2021,13:45,,,40.578556,-74.1696,"(40.578556, -74.1696)",,,2795 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456783,Sedan,,,, +07/08/2021,18:06,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4456612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,12:45,QUEENS,11691,40.602356,-73.75953,"(40.602356, -73.75953)",CORNAGA AVENUE,GIPSON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,17:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456644,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,0:35,MANHATTAN,10029,40.800262,-73.94554,"(40.800262, -73.94554)",,,24 EAST 116 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4456542,Sedan,E-Bike,,, +10/12/2022,14:00,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4574163,Sedan,Sedan,,, +07/08/2021,16:15,BRONX,10458,40.85853,-73.89084,"(40.85853, -73.89084)",,,465 EAST 188 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456665,Sedan,,,, +09/11/2021,21:00,QUEENS,11420,40.675766,-73.81685,"(40.675766, -73.81685)",116 AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456143,Sedan,,,, +07/07/2021,21:30,BROOKLYN,11211,40.716667,-73.95206,"(40.716667, -73.95206)",UNION AVENUE,WITHERS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456578,Sedan,Motorscooter,,, +07/08/2021,5:20,,,40.606335,-74.18019,"(40.606335, -74.18019)",,,1120 SOUTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456581,Sedan,,,, +09/11/2021,10:45,,,40.753304,-73.912575,"(40.753304, -73.912575)",NORTHERN BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,22:57,QUEENS,11436,40.680088,-73.80177,"(40.680088, -73.80177)",140 STREET,116 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456633,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,23:45,,,40.64531,-73.94608,"(40.64531, -73.94608)",BEVERLEY ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456205,Sedan,Sedan,,, +09/11/2021,19:59,BROOKLYN,11208,40.67086,-73.87424,"(40.67086, -73.87424)",FOUNTAIN AVENUE,BLAKE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456298,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,8:30,BRONX,10474,40.814438,-73.89308,"(40.814438, -73.89308)",LONGWOOD AVENUE,BARRY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456680,Box Truck,Sedan,,, +09/09/2021,9:40,,,40.703857,-73.91851,"(40.703857, -73.91851)",STOCKHOLM STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457030,,,,, +07/07/2021,16:18,STATEN ISLAND,10304,40.60172,-74.09143,"(40.60172, -74.09143)",TARGEE STREET,ROME AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456607,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/09/2021,11:00,MANHATTAN,10075,40.770065,-73.949394,"(40.770065, -73.949394)",,,535 EAST 78 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456697,Sedan,Sedan,,, +09/11/2021,5:28,MANHATTAN,10036,,,,42 street,Avenue of the Americas,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4456068,Sedan,,,, +08/30/2021,23:50,,,,,,VERRAZANO BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4456520,Sedan,Sedan,Sedan,, +09/11/2021,10:30,BROOKLYN,11212,40.669758,-73.91019,"(40.669758, -73.91019)",,,1708 PITKIN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4456815,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/10/2021,14:14,QUEENS,11367,40.727238,-73.810875,"(40.727238, -73.810875)",,,156-02 AGUILAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456895,Sedan,,,, +09/07/2021,11:03,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,4456754,Sedan,Sedan,Sedan,Sedan,Sedan +09/11/2021,21:30,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4456098,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,21:06,,,40.73273,-73.99382,"(40.73273, -73.99382)",EAST 10 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4456622,Taxi,Moped,,, +09/07/2021,16:25,MANHATTAN,10027,40.810375,-73.95168,"(40.810375, -73.95168)",,,272 WEST 125 STREET,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4456773,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,12:34,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456749,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/11/2021,8:09,,,40.774807,-73.98442,"(40.774807, -73.98442)",WEST 66 STREET,,,0,1,0,1,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4456872,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,1:15,,,40.847168,-73.93394,"(40.847168, -73.93394)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456671,Taxi,Sedan,,, +09/11/2021,15:38,,,40.627037,-74.16483,"(40.627037, -74.16483)",,,2239 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456788,Pick-up Truck,Sedan,,, +09/02/2021,20:30,BROOKLYN,11213,,,,SCHENECTADY AVENUE,CROWN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456864,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,15:40,,,40.700245,-73.92089,"(40.700245, -73.92089)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456249,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,20:21,BROOKLYN,11234,40.61475,-73.90055,"(40.61475, -73.90055)",,,2457 EAST 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455951,Sedan,Sedan,,, +09/11/2021,11:12,,,,,,east new york ave,lefferts ave,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4455844,Sedan,Sedan,,, +09/11/2021,21:49,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4456404,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,10:20,MANHATTAN,10075,40.77632,-73.96002,"(40.77632, -73.96002)",PARK AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456527,Sedan,Sedan,,, +09/11/2021,0:21,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456034,Sedan,,,, +09/11/2021,13:29,,,40.575573,-73.99432,"(40.575573, -73.99432)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456014,Sedan,,,, +09/11/2021,16:30,BRONX,10462,40.85159,-73.867805,"(40.85159, -73.867805)",WHITE PLAINS ROAD,BRONXDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456477,Sedan,,,, +07/08/2021,17:56,BRONX,10464,40.853683,-73.790276,"(40.853683, -73.790276)",,,555 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456616,Sedan,Sedan,,, +09/05/2021,10:30,QUEENS,11367,40.728558,-73.82853,"(40.728558, -73.82853)",JEWEL AVENUE,137 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4456827,Sedan,Sedan,,, +09/10/2021,7:04,BRONX,10469,40.867687,-73.83509,"(40.867687, -73.83509)",,,1880 BARTOW AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4457015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,10:06,BROOKLYN,11229,40.602886,-73.952095,"(40.602886, -73.952095)",,,2408 OCEAN AVENUE,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456708,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,11:15,QUEENS,11354,40.771572,-73.81323,"(40.771572, -73.81323)",MURRAY STREET,BAYSIDE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4456094,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,3:00,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456163,Sedan,,,, +06/29/2021,18:15,,,40.700245,-73.92089,"(40.700245, -73.92089)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456593,Sedan,,,, +07/07/2021,6:30,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4456566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,18:45,MANHATTAN,10032,40.841152,-73.942696,"(40.841152, -73.942696)",,,177 FORT WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4456661,Taxi,,,, +09/05/2021,5:11,BROOKLYN,11215,40.678566,-73.98778,"(40.678566, -73.98778)",,,318 NEVINS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4456971,Lunch Wagon,,,, +07/09/2021,9:26,MANHATTAN,10022,40.75545,-73.962105,"(40.75545, -73.962105)",EAST 54 STREET,SUTTON PLACE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456676,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +09/11/2021,15:06,BROOKLYN,11203,40.639675,-73.931046,"(40.639675, -73.931046)",EAST 48 STREET,FOSTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4456201,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/07/2021,13:00,MANHATTAN,10010,40.73555,-73.979355,"(40.73555, -73.979355)",1 AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4456880,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,11:45,QUEENS,11432,40.703487,-73.799736,"(40.703487, -73.799736)",,,155-25 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Turning Improperly,,,,4456693,E-Scooter,Sedan,,, +09/11/2021,2:00,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456075,Taxi,Sedan,,, +07/09/2021,1:04,BROOKLYN,11229,40.602684,-73.94232,"(40.602684, -73.94232)",NOSTRAND AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456648,Sedan,Sedan,,, +09/11/2021,12:41,MANHATTAN,10037,40.81329,-73.93517,"(40.81329, -73.93517)",,,2150 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456548,Sedan,,,, +09/11/2021,9:00,BRONX,10452,40.832314,-73.93161,"(40.832314, -73.93161)",UNIVERSITY AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4456984,Sedan,Sedan,Sedan,Sedan, +06/28/2021,9:20,QUEENS,11691,40.597435,-73.74713,"(40.597435, -73.74713)",NEW HAVEN AVENUE,BEACH 13 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456561,Station Wagon/Sport Utility Vehicle,Bus,,, +09/04/2021,20:48,BRONX,10451,40.81655,-73.91955,"(40.81655, -73.91955)",EAST 149 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456995,Station Wagon/Sport Utility Vehicle,Bike,,, +09/07/2021,11:00,QUEENS,11418,40.69962,-73.82122,"(40.69962, -73.82122)",,,89-02 130 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456856,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2021,18:15,QUEENS,11691,40.601437,-73.768196,"(40.601437, -73.768196)",,,1024 BAY 32 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456703,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,0:00,BRONX,10475,40.869358,-73.825325,"(40.869358, -73.825325)",,,2152 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,11:13,,,,,,CLINTON STREET,CLINTION ST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456118,Sedan,,,, +12/09/2021,15:17,BRONX,10467,40.880135,-73.873085,"(40.880135, -73.873085)",EAST 211 STREET,HULL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485146,Bus,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,11:45,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4485058,Sedan,Sedan,,, +12/08/2021,6:45,QUEENS,11103,40.766827,-73.909294,"(40.766827, -73.909294)",43 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484577,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/09/2021,17:00,MANHATTAN,10013,40.719055,-74.01245,"(40.719055, -74.01245)",WEST STREET,HARRISON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4485111,Sedan,Sedan,Sedan,, +12/09/2021,5:35,QUEENS,11102,40.766743,-73.92597,"(40.766743, -73.92597)",CRESCENT STREET,30 DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485366,Sedan,,,, +12/10/2021,10:00,,,40.66279,-73.99887,"(40.66279, -73.99887)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485285,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +12/10/2021,0:00,BROOKLYN,11220,40.644306,-74.01804,"(40.644306, -74.01804)",3 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485278,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,9:25,BROOKLYN,11249,40.700233,-73.95988,"(40.700233, -73.95988)",RUTLEDGE STREET,WYTHE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4484818,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,22:15,MANHATTAN,10018,40.752808,-73.99098,"(40.752808, -73.99098)",,,242 WEST 36 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4485613,Van,Sedan,,, +03/26/2022,2:01,MANHATTAN,10033,40.85019,-73.939644,"(40.85019, -73.939644)",WEST 180 STREET,PINEHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513779,Sedan,Sedan,,, +03/26/2022,3:40,BROOKLYN,11206,40.702938,-73.95026,"(40.702938, -73.95026)",UNION AVENUE,HARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514083,Sedan,Sedan,,, +03/26/2022,10:00,QUEENS,11369,40.75868,-73.87552,"(40.75868, -73.87552)",32 AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513519,Pick-up Truck,,,, +03/26/2022,23:23,,,40.793472,-73.93726,"(40.793472, -73.93726)",1 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4513898,E-Bike,,,, +03/26/2022,20:10,,,40.762974,-73.825325,"(40.762974, -73.825325)",BOWNE STREET,,,1,0,1,0,0,0,0,0,Headlights Defective,,,,,4513603,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,23:32,QUEENS,11367,40.739384,-73.82268,"(40.739384, -73.82268)",REEVES AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4513928,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/26/2022,14:05,STATEN ISLAND,10304,40.608727,-74.08839,"(40.608727, -74.08839)",NARROWS ROAD NORTH,TARGEE STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4513707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2021,17:00,BROOKLYN,11235,40.5837,-73.94259,"(40.5837, -73.94259)",EMMONS AVENUE,EAST 26 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4404427,Sedan,Sedan,,, +04/16/2021,23:30,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408179,Sedan,Sedan,Sedan,, +04/17/2021,4:07,,,40.702255,-73.92008,"(40.702255, -73.92008)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4408680,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,7:10,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4408765,Station Wagon/Sport Utility Vehicle,,,, +03/25/2021,20:00,QUEENS,11373,0,0,"(0.0, 0.0)",82 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,4408756,Sedan,Sedan,Sedan,bus, +04/12/2021,17:20,BRONX,10451,40.821667,-73.915184,"(40.821667, -73.915184)",MELROSE AVENUE,EAST 157 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408774,Sedan,,,, +03/26/2022,15:58,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4513891,Pick-up Truck,Sedan,,, +04/16/2021,20:30,,,40.704716,-73.92875,"(40.704716, -73.92875)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408677,Station Wagon/Sport Utility Vehicle,,,, +03/30/2021,18:20,,,40.763374,-73.99647,"(40.763374, -73.99647)",WEST 46 STREET,,,2,0,1,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4408761,Bike,,,, +04/12/2021,9:00,,,40.706062,-73.91626,"(40.706062, -73.91626)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408685,Sedan,Sedan,,, +04/01/2021,9:00,,,40.58096,-73.96466,"(40.58096, -73.96466)",BRIGHTON 4 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408738,Sedan,,,, +03/30/2021,11:42,BROOKLYN,11234,40.610443,-73.93462,"(40.610443, -73.93462)",FILLMORE AVENUE,EAST 34 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4403283,Sedan,Bike,,, +04/15/2021,8:40,MANHATTAN,10021,40.77291,-73.962524,"(40.77291, -73.962524)",,,812 PARK AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408736,Sedan,E-Scooter,,, +04/06/2021,15:59,MANHATTAN,10019,40.762234,-73.98987,"(40.762234, -73.98987)",WEST 48 STREET,9 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408762,Taxi,E-Scooter,,, +03/25/2022,18:57,,,,,,12 AVENUE,WEST 38 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514240,Motorcycle,Motorcycle,,, +03/26/2022,23:00,,,40.64993,-73.93312,"(40.64993, -73.93312)",SCHENECTADY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4513802,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,21:22,,,40.84932,-73.945145,"(40.84932, -73.945145)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514253,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,3:37,BRONX,10467,40.863194,-73.86642,"(40.863194, -73.86642)",MACE AVENUE,CRUGER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4513483,Sedan,,,, +03/24/2022,9:36,MANHATTAN,10069,40.7802,-73.98755,"(40.7802, -73.98755)",WEST 71 STREET,RIVERSIDE BOULEVARD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4514303,Sedan,Sedan,Sedan,, +03/25/2022,2:02,,,40.824562,-73.87259,"(40.824562, -73.87259)",BRUCKNER BOULEVARD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4514188,Taxi,Sedan,,, +12/17/2021,21:00,QUEENS,11101,40.73376,-73.93743,"(40.73376, -73.93743)",REVIEW AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487311,Sedan,,,, +09/12/2021,2:21,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455960,Sedan,Sedan,,, +04/17/2021,23:40,BROOKLYN,11226,40.648075,-73.95959,"(40.648075, -73.95959)",,,260 EAST 21 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4408048,Sedan,Sedan,Sedan,Sedan,Sedan +04/17/2021,23:35,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,17:45,QUEENS,11420,40.67901,-73.81259,"(40.67901, -73.81259)",115 AVENUE,127 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4408169,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2021,20:55,BROOKLYN,11208,40.671597,-73.88018,"(40.671597, -73.88018)",SUTTER AVENUE,SHEPHERD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4408579,Sedan,Sedan,,, +04/09/2021,10:36,BROOKLYN,11226,40.648823,-73.951775,"(40.648823, -73.951775)",,,2711 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408548,Sedan,,,, +04/17/2021,2:01,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:00,BROOKLYN,11210,40.638515,-73.94993,"(40.638515, -73.94993)",,,2817 FOSTER AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4408134,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/15/2021,15:15,BRONX,10472,40.828293,-73.861725,"(40.828293, -73.861725)",UNDERHILL AVENUE,WATSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408451,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,15:58,,,,,,BRONX WHITESTONE BRIDGE,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4408207,Sedan,Sedan,,, +04/17/2021,13:30,BROOKLYN,11210,40.62556,-73.94664,"(40.62556, -73.94664)",,,2425 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4408519,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,4:15,QUEENS,11413,40.666397,-73.755516,"(40.666397, -73.755516)",NORTH CONDUIT AVENUE,144 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407887,Sedan,,,, +04/17/2021,23:40,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4408228,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,0:00,BROOKLYN,11230,40.617588,-73.96382,"(40.617588, -73.96382)",CONEY ISLAND AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4408570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,18:39,BRONX,10463,40.870796,-73.9039,"(40.870796, -73.9039)",,,2704 KINGSBRIDGE TERRACE,1,0,1,0,0,0,0,0,Unspecified,,,,,4408664,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,11:09,,,40.62156,-74.16849,"(40.62156, -74.16849)",GOETHALS ROAD NORTH,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408498,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,1:50,QUEENS,11372,40.748985,-73.89162,"(40.748985, -73.89162)",,,74-05 37 AVENUE,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4407921,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,17:00,QUEENS,11101,40.74898,-73.93969,"(40.74898, -73.93969)",HUNTER STREET,42 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408010,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,11:50,BROOKLYN,11206,40.702408,-73.93502,"(40.702408, -73.93502)",,,937 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408357,Tractor Truck Diesel,Sedan,,, +04/17/2021,23:55,QUEENS,11435,40.68838,-73.80559,"(40.68838, -73.80559)",,,107-58 142 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408415,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,14:35,BRONX,10472,40.831856,-73.86826,"(40.831856, -73.86826)",,,1268 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408455,Sedan,,,, +04/17/2021,18:40,BRONX,10472,40.827423,-73.86823,"(40.827423, -73.86823)",WATSON AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408469,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,15:00,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407984,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,11:15,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4407951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/17/2021,15:30,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407978,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/17/2021,0:00,QUEENS,11435,40.70052,-73.811066,"(40.70052, -73.811066)",143 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407955,Sedan,,,, +04/17/2021,5:00,MANHATTAN,10018,40.757668,-73.99483,"(40.757668, -73.99483)",DYER AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408598,Sedan,Tractor Truck Diesel,,, +04/17/2021,21:00,,,40.787846,-73.840096,"(40.787846, -73.840096)",128 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4408006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,12:15,QUEENS,11355,40.74125,-73.81912,"(40.74125, -73.81912)",60 AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407935,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,0:00,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4408468,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,14:40,,,40.810093,-73.95309,"(40.810093, -73.95309)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408182,Sedan,Bike,,, +04/17/2021,11:00,MANHATTAN,10032,40.837803,-73.94215,"(40.837803, -73.94215)",WEST 163 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408277,Van,Sedan,,, +04/16/2021,11:20,MANHATTAN,10027,40.813385,-73.94511,"(40.813385, -73.94511)",7 AVENUE,WEST 132 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4408489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,11:38,BRONX,10467,40.87341,-73.87589,"(40.87341, -73.87589)",DECATUR AVENUE,EAST 205 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4408430,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2021,20:55,BROOKLYN,11226,40.652985,-73.95271,"(40.652985, -73.95271)",,,747 ROGERS AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4408475,Sedan,Sedan,Sedan,, +04/17/2021,12:50,MANHATTAN,10013,40.715355,-73.99773,"(40.715355, -73.99773)",ELIZABETH STREET,BAYARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407944,Sedan,Sedan,,, +04/17/2021,1:07,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407989,Sedan,Sedan,,, +04/17/2021,14:22,BRONX,10457,40.84715,-73.90125,"(40.84715, -73.90125)",,,1872 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4408148,Sedan,Sedan,,, +04/17/2021,17:55,,,40.70537,-73.775826,"(40.70537, -73.775826)",LIBERTY AVENUE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4408413,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,10:20,BROOKLYN,11234,40.619484,-73.918274,"(40.619484, -73.918274)",EAST 59 STREET,AVENUE N,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408533,Sedan,Sedan,,, +04/17/2021,22:40,QUEENS,11377,40.742065,-73.90036,"(40.742065, -73.90036)",65 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408011,Sedan,Sedan,,, +04/17/2021,22:14,QUEENS,11434,40.679012,-73.758675,"(40.679012, -73.758675)",MERRICK BOULEVARD,180 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4408088,Station Wagon/Sport Utility Vehicle,,,, +04/09/2021,2:15,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4408615,Sedan,Sedan,,, +04/17/2021,9:30,,,40.637012,-74.01515,"(40.637012, -74.01515)",62 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,21:25,,,40.822388,-73.934296,"(40.822388, -73.934296)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4408518,Sedan,,,, +04/17/2021,22:45,,,40.76286,-73.98941,"(40.76286, -73.98941)",WEST 49 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408442,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,15:00,,,40.58524,-74.093414,"(40.58524, -74.093414)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408460,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,15:59,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408510,Sedan,Sedan,,, +04/15/2021,19:34,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",MARION AVENUE,EAST 184 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4408589,Sedan,Sedan,,, +04/17/2021,19:42,BRONX,10466,40.885433,-73.82924,"(40.885433, -73.82924)",,,4063 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4408174,Sedan,,,, +04/07/2021,3:26,BROOKLYN,11203,40.65719,-73.927055,"(40.65719, -73.927055)",,,87 EAST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408554,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,23:38,QUEENS,11378,40.725994,-73.89843,"(40.725994, -73.89843)",BORDEN AVENUE,CLINTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4408251,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,0:05,BROOKLYN,11203,40.653202,-73.93056,"(40.653202, -73.93056)",,,812 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408127,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,14:30,QUEENS,11103,40.762012,-73.911,"(40.762012, -73.911)",30 AVENUE,45 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4408022,Moped,,,, +04/15/2021,8:00,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,21:00,BRONX,10459,40.82099,-73.89181,"(40.82099, -73.89181)",,,1029 EAST 163 STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4408319,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,17:25,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",LINDEN BOULEVARD,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408135,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,2:55,BRONX,10466,40.886936,-73.8499,"(40.886936, -73.8499)",,,1019 EAST 228 STREET,1,0,0,0,0,0,1,0,Animals Action,Unspecified,Unspecified,,,4514049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2021,15:57,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408564,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,3:05,QUEENS,11377,40.739094,-73.91762,"(40.739094, -73.91762)",48 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407878,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/15/2021,12:00,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408641,Sedan,Sedan,,, +04/17/2021,22:22,BROOKLYN,11212,40.6553,-73.90318,"(40.6553, -73.90318)",LINDEN BOULEVARD,STONE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408074,Sedan,Sedan,,, +04/16/2021,21:30,,,40.60307,-74.14047,"(40.60307, -74.14047)",FOREST HILL ROAD,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,11:40,,,40.669704,-73.94774,"(40.669704, -73.94774)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408546,Taxi,Sedan,,, +04/17/2021,4:54,BROOKLYN,11209,40.62126,-74.03143,"(40.62126, -74.03143)",,,305 89 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4407888,Station Wagon/Sport Utility Vehicle,,,, +04/17/2019,0:49,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4408571,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,21:25,QUEENS,11101,40.74525,-73.95575,"(40.74525, -73.95575)",47 ROAD,5 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408018,Sedan,Bike,,, +04/17/2021,11:39,QUEENS,11355,,,,,,100 MERIDIAN ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4408212,Sedan,,,, +04/17/2021,15:01,BRONX,10463,40.880493,-73.903694,"(40.880493, -73.903694)",,,5655 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4408665,Sedan,,,, +04/17/2021,3:00,BROOKLYN,11203,40.655754,-73.92403,"(40.655754, -73.92403)",EAST 57 STREET,LENOX ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4408130,Sedan,Sedan,Sedan,Sedan,Sedan +04/16/2021,16:48,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408497,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,2:18,BROOKLYN,11234,40.6238,-73.92351,"(40.6238, -73.92351)",EAST 54 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408523,Sedan,,,, +04/17/2021,20:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,18:30,BROOKLYN,11221,40.686825,-73.93881,"(40.686825, -73.93881)",MARCUS GARVEY BOULEVARD,MONROE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408614,Sedan,Sedan,,, +04/17/2021,1:45,,,40.653862,-74.008286,"(40.653862, -74.008286)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407962,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/17/2021,19:37,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",SOUTH CONDUIT AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407979,Sedan,Sedan,,, +04/17/2021,21:25,MANHATTAN,10022,40.75781,-73.97353,"(40.75781, -73.97353)",EAST 51 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408436,Sedan,Bike,,, +04/17/2021,18:20,BROOKLYN,11224,40.574123,-74.00408,"(40.574123, -74.00408)",SURF AVENUE,BEACH 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:30,QUEENS,11421,40.69069,-73.85816,"(40.69069, -73.85816)",,,85-08 88 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408480,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,2:30,,,,,,Belt parkway,John f kennedy expressway,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407947,Sedan,,,, +04/17/2021,20:20,BROOKLYN,11222,40.72272,-73.95397,"(40.72272, -73.95397)",,,17 NASSAU AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408333,Sedan,Bike,,, +04/16/2021,21:30,MANHATTAN,10011,40.744747,-73.99717,"(40.744747, -73.99717)",,,255 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:52,BRONX,10451,40.818012,-73.92519,"(40.818012, -73.92519)",PARK AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407969,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,13:33,,,,,,,,4424 45 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408147,Sedan,,,, +04/02/2021,12:09,BROOKLYN,11225,40.66064,-73.96068,"(40.66064, -73.96068)",,,550 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4408536,Taxi,Sedan,,, +04/15/2021,20:50,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408583,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/15/2021,20:18,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Other Vehicular,Fell Asleep,Other Vehicular,,,4408490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/17/2021,14:59,BRONX,10456,40.836697,-73.907104,"(40.836697, -73.907104)",,,1408 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,7:50,BRONX,10475,40.875965,-73.83581,"(40.875965, -73.83581)",BAYCHESTER AVENUE,EAST 222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408159,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,21:10,BROOKLYN,11203,40.662247,-73.93152,"(40.662247, -73.93152)",,,476 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4513580,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,12:37,,,40.787857,-73.951614,"(40.787857, -73.951614)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408429,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,21:04,QUEENS,11419,40.68804,-73.83275,"(40.68804, -73.83275)",111 STREET,101 AVENUE,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513582,Station Wagon/Sport Utility Vehicle,Bike,,, +03/24/2021,22:48,BROOKLYN,11212,40.661243,-73.923164,"(40.661243, -73.923164)",,,190 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408474,Sedan,Sedan,,, +04/17/2021,23:05,QUEENS,11354,40.75896,-73.82985,"(40.75896, -73.82985)",MAIN STREET,40 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408007,Sedan,,,, +04/17/2021,15:20,MANHATTAN,10017,40.75217,-73.97778,"(40.75217, -73.97778)",,,89 EAST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408449,Sedan,E-Scooter,,, +04/17/2021,23:50,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,19:37,MANHATTAN,10012,40.724968,-74.00158,"(40.724968, -74.00158)",,,415 WEST BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408181,Sedan,Bike,,, +04/10/2021,9:19,QUEENS,11103,40.757084,-73.91614,"(40.757084, -73.91614)",,,32-42 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408597,Sedan,,,, +04/17/2021,4:45,,,40.838425,-73.941696,"(40.838425, -73.941696)",BROADWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4408275,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,8:45,BROOKLYN,11234,40.624893,-73.934326,"(40.624893, -73.934326)",KINGS HIGHWAY,HUBBARD PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,9:30,BROOKLYN,11233,40.672432,-73.911316,"(40.672432, -73.911316)",,,320 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408087,Station Wagon/Sport Utility Vehicle,,,, +04/13/2021,14:50,BROOKLYN,11203,40.652107,-73.93913,"(40.652107, -73.93913)",,,891 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408483,Pick-up Truck,Pick-up Truck,,, +04/17/2021,19:30,MANHATTAN,10035,40.804054,-73.93664,"(40.804054, -73.93664)",,,169 EAST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408511,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,13:30,,,40.57944,-73.979614,"(40.57944, -73.979614)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408157,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,8:45,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408454,Dump,,,, +04/17/2021,11:28,,,40.74254,-73.82631,"(40.74254, -73.82631)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407934,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/17/2021,11:50,,,40.7591,-73.99215,"(40.7591, -73.99215)",WEST 43 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408307,Station Wagon/Sport Utility Vehicle,,,, +04/21/2022,11:18,QUEENS,11372,40.75169,-73.88562,"(40.75169, -73.88562)",81 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522587,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,16:50,,,40.80988,-73.90308,"(40.80988, -73.90308)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408321,Sedan,Sedan,,, +04/17/2021,15:42,BROOKLYN,11212,40.667156,-73.9101,"(40.667156, -73.9101)",ROCKAWAY AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408073,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,1:30,,,40.693497,-73.94594,"(40.693497, -73.94594)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408296,Sedan,,,, +04/16/2021,11:25,BROOKLYN,11212,40.66357,-73.92502,"(40.66357, -73.92502)",,,1049 RUTLAND ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408551,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,12:33,QUEENS,11417,40.67604,-73.84352,"(40.67604, -73.84352)",CROSS BAY BOULEVARD,PLATTWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408173,Station Wagon/Sport Utility Vehicle,,,, +02/03/2021,8:50,BRONX,10472,40.835835,-73.877365,"(40.835835, -73.877365)",,,1467 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408565,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,2:29,QUEENS,11375,40.72696,-73.846535,"(40.72696, -73.846535)",108 STREET,68 AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4407879,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2021,23:28,QUEENS,11432,40.71512,-73.77358,"(40.71512, -73.77358)",HILLSIDE AVENUE,188 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408652,Sedan,Sedan,,, +03/26/2022,5:04,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LEFFERTS BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513960,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2021,0:01,BRONX,10472,40.82989,-73.855194,"(40.82989, -73.855194)",,,2055 HAVILAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408445,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,12:35,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",MORRIS AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407968,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,18:20,,,40.794052,-73.970375,"(40.794052, -73.970375)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407970,Sedan,Motorcycle,,, +04/17/2021,13:50,,,40.665676,-73.7483,"(40.665676, -73.7483)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408376,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/11/2021,22:50,STATEN ISLAND,10307,40.509865,-74.24415,"(40.509865, -74.24415)",,,7430 AMBOY ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4408640,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/17/2021,16:20,,,,,,PELHAM PARKWAY SOUTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407988,Sedan,Sedan,,, +04/16/2021,10:00,MANHATTAN,10019,40.764626,-73.99555,"(40.764626, -73.99555)",11 AVENUE,WEST 48 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408438,Station Wagon/Sport Utility Vehicle,Bike,,, +04/17/2021,16:22,QUEENS,11101,40.753857,-73.91764,"(40.753857, -73.91764)",NORTHERN BOULEVARD,45 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408025,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,14:05,,,40.82949,-73.87326,"(40.82949, -73.87326)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4408461,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/22/2022,17:44,MANHATTAN,10024,40.783146,-73.97833,"(40.783146, -73.97833)",AMSTERDAM AVENUE,WEST 79 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4514301,Bike,Sedan,,, +04/17/2021,22:15,BROOKLYN,11249,40.699665,-73.95924,"(40.699665, -73.95924)",WYTHE AVENUE,HEYWARD STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4408388,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,17:50,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",STORY AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408457,Sedan,Bus,,, +04/16/2021,21:20,QUEENS,11416,40.685993,-73.83993,"(40.685993, -73.83993)",101 AVENUE,103 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4408479,Sedan,,,, +04/17/2021,1:50,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4407949,Tractor Truck Diesel,Tractor Truck Diesel,,, +04/17/2021,20:15,,,40.69019,-73.7771,"(40.69019, -73.7771)",115 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4407986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/17/2021,16:30,QUEENS,11004,40.736214,-73.713486,"(40.736214, -73.713486)",,,254-20 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,18:40,,,40.73594,-73.85887,"(40.73594, -73.85887)",HORACE HARDING EXPRESSWAY,99 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408213,Sedan,,,, +04/16/2021,10:00,MANHATTAN,10035,40.800507,-73.938156,"(40.800507, -73.938156)",EAST 120 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408502,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,9:00,QUEENS,11377,40.74624,-73.89723,"(40.74624, -73.89723)",68 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408613,Sedan,,,, +04/17/2021,11:01,QUEENS,11385,40.70739,-73.90895,"(40.70739, -73.90895)",,,19-26 BLEECKER STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4407960,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,0:48,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4407931,Sedan,Sedan,Sedan,, +04/17/2021,23:50,QUEENS,11358,40.7597,-73.80031,"(40.7597, -73.80031)",166 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408008,Sedan,,,, +04/17/2021,21:37,BRONX,10455,40.812664,-73.906334,"(40.812664, -73.906334)",EAST 149 STREET,TINTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408363,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,21:20,QUEENS,11375,40.72657,-73.85265,"(40.72657, -73.85265)",QUEENS BOULEVARD,67 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407996,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,16:40,BROOKLYN,11203,40.65471,-73.93072,"(40.65471, -73.93072)",,,756 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408550,Sedan,Motorcycle,,, +04/17/2021,4:00,,,40.831146,-73.85384,"(40.831146, -73.85384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408462,Sedan,Tractor Truck Diesel,,, +04/17/2021,4:10,,,40.657867,-73.920815,"(40.657867, -73.920815)",LENOX ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408131,Sedan,Sedan,,, +04/16/2021,12:25,MANHATTAN,10001,40.749638,-73.99905,"(40.749638, -73.99905)",WEST 28 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4408435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/16/2021,23:00,QUEENS,11419,40.69407,-73.82802,"(40.69407, -73.82802)",ATLANTIC AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4408473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,0:22,BRONX,10460,40.833755,-73.86175,"(40.833755, -73.86175)",VIRGINIA AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408453,Sedan,,,, +04/17/2021,3:31,BRONX,10456,40.838017,-73.914314,"(40.838017, -73.914314)",,,1398 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4408188,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/14/2021,8:00,BROOKLYN,11234,40.60741,-73.926254,"(40.60741, -73.926254)",AVENUE U,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408522,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,15:40,BROOKLYN,11221,40.697296,-73.92378,"(40.697296, -73.92378)",STANHOPE STREET,CENTRAL AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4408672,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,13:40,BROOKLYN,11235,40.57563,-73.96395,"(40.57563, -73.96395)",BRIGHTON 3 STREET,BRIGHTWATER COURT,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408099,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,18:20,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513625,Sedan,Sedan,,, +04/17/2021,9:00,MANHATTAN,10031,40.82831,-73.94315,"(40.82831, -73.94315)",WEST 151 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408082,Sedan,,,, +04/17/2021,0:37,,,,,,WILLIAMSBRIDGE ROAD,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407893,Station Wagon/Sport Utility Vehicle,,,, +04/10/2021,22:07,MANHATTAN,10022,40.759575,-73.96803,"(40.759575, -73.96803)",EAST 56 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408566,Sedan,Sedan,,, +04/17/2021,6:00,QUEENS,11366,40.72711,-73.80509,"(40.72711, -73.80509)",75 AVENUE,164 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407981,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,12:50,BRONX,10466,,,,,,4046 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408160,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,22:03,,,40.90021,-73.8865,"(40.90021, -73.8865)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408666,Sedan,,,, +03/26/2022,22:00,BROOKLYN,11223,40.59397,-73.97428,"(40.59397, -73.97428)",,,32 VILLAGE ROAD SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4514012,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,18:00,,,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,,,2,0,0,0,2,0,0,0,Pavement Defective,,,,,4408171,E-Bike,,,, +04/17/2021,12:10,BRONX,10465,40.87831,-73.870155,"(40.87831, -73.870155)",BRONX RIVER PARKWAY,EAST GUN HILL ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4408347,Sedan,Sedan,,, +04/17/2021,11:00,,,40.63363,-74.138985,"(40.63363, -74.138985)",TREADWELL AVENUE,HATFIELD PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408513,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,15:40,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4408144,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,18:00,BROOKLYN,11226,40.65361,-73.9651,"(40.65361, -73.9651)",,,123 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408041,Sedan,,,, +04/12/2021,18:30,MANHATTAN,10031,40.821583,-73.94849,"(40.821583, -73.94849)",,,260 CONVENT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408558,Sedan,,,, +04/17/2021,23:10,,,40.85876,-73.89736,"(40.85876, -73.89736)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408582,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,10:30,MANHATTAN,10029,40.793633,-73.94165,"(40.793633, -73.94165)",,,252 EAST 110 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408428,Box Truck,Sedan,,, +04/17/2021,2:48,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4408493,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,17:42,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408178,Sedan,Sedan,Sedan,, +04/17/2021,23:15,STATEN ISLAND,10310,40.639698,-74.11429,"(40.639698, -74.11429)",,,90 ELM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408314,Sedan,Sedan,,, +04/17/2021,17:35,BROOKLYN,11207,40.6877,-73.91095,"(40.6877, -73.91095)",COVERT STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408682,Sedan,,,, +04/16/2021,10:00,BROOKLYN,11234,40.61919,-73.92302,"(40.61919, -73.92302)",AVENUE N,EAST 54 STREET,,0,0,0,0,0,0,0,0,,,,,,4408526,Sedan,,,, +04/17/2021,23:25,BRONX,10459,40.820988,-73.89491,"(40.820988, -73.89491)",EAST 163 STREET,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408322,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2021,18:00,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408531,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,2:00,MANHATTAN,10011,40.74005,-73.99915,"(40.74005, -73.99915)",,,200 WEST 16 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407884,Sedan,Sedan,,, +04/13/2021,0:00,MANHATTAN,10013,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,MULBERRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408659,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2021,11:38,BROOKLYN,11225,40.65723,-73.96025,"(40.65723, -73.96025)",FLATBUSH AVENUE,HAWTHORNE STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4408559,Sedan,Motorcycle,,, +04/17/2021,11:15,BROOKLYN,11224,40.57594,-74.010155,"(40.57594, -74.010155)",ATLANTIC AVENUE,BEACH 45 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408094,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,13:45,MANHATTAN,10001,40.747044,-73.98713,"(40.747044, -73.98713)",,,25 WEST 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408446,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,17:00,BRONX,10453,40.849438,-73.91842,"(40.849438, -73.91842)",WEST 176 STREET,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407973,Sedan,,,, +04/16/2021,13:55,,,40.75927,-73.980896,"(40.75927, -73.980896)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4408439,Sedan,Sedan,,, +04/14/2021,20:00,STATEN ISLAND,10306,40.585426,-74.10152,"(40.585426, -74.10152)",JEFFERSON STREET,SEAVER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408594,Sedan,,,, +04/08/2021,14:47,QUEENS,11423,40.72597,-73.775566,"(40.72597, -73.775566)",193 STREET,RADNOR ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408508,Station Wagon/Sport Utility Vehicle,Moped,,, +04/17/2021,10:29,BROOKLYN,11231,40.68079,-73.99174,"(40.68079, -73.99174)",UNION STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408185,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,21:06,BROOKLYN,11213,40.6705,-73.94488,"(40.6705, -73.94488)",BROOKLYN AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408263,Sedan,,,, +04/17/2021,18:40,BROOKLYN,11212,40.661663,-73.923615,"(40.661663, -73.923615)",WINTHROP STREET,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,12:43,BROOKLYN,11211,40.712624,-73.95817,"(40.712624, -73.95817)",,,239 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408364,Sedan,,,, +04/17/2021,19:00,,,40.721985,-73.84523,"(40.721985, -73.84523)",QUEENS BOULEVARD,70 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407995,E-Bike,Bike,,, +04/17/2021,10:10,QUEENS,11102,40.76824,-73.92428,"(40.76824, -73.92428)",30 AVENUE,27 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4408024,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,11:40,QUEENS,11411,40.696373,-73.74525,"(40.696373, -73.74525)",207 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407940,Sedan,FDNY ENGIN,,, +04/17/2021,4:28,MANHATTAN,10065,40.760536,-73.95836,"(40.760536, -73.95836)",YORK AVENUE,EAST 62 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4408404,Taxi,Sedan,,, +04/17/2021,5:09,BRONX,10469,40.874714,-73.84512,"(40.874714, -73.84512)",GIVAN AVENUE,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4408156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/17/2021,13:00,,,40.656708,-74.00537,"(40.656708, -74.00537)",34 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408633,Tractor Truck Diesel,Tractor Truck Diesel,,, +03/27/2021,14:03,MANHATTAN,10019,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4408752,E-Scooter,,,, +04/17/2021,14:30,BROOKLYN,11209,40.632065,-74.038086,"(40.632065, -74.038086)",,,7709 SHORE ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4407999,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,22:21,BROOKLYN,11230,40.623,-73.95905,"(40.623, -73.95905)",EAST 17 STREET,AVENUE K,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4408042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/17/2021,17:29,BROOKLYN,11203,40.6568,-73.928,"(40.6568, -73.928)",EAST 53 STREET,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408495,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,20:55,STATEN ISLAND,10305,40.589417,-74.09458,"(40.589417, -74.09458)",HANCOCK STREET,CROMWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,22:06,,,40.831684,-73.85562,"(40.831684, -73.85562)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408465,Sedan,,,, +04/17/2021,7:25,QUEENS,11379,40.709152,-73.87173,"(40.709152, -73.87173)",,,79-49 69 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4407937,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,7:00,,,40.69309,-73.94296,"(40.69309, -73.94296)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408287,Sedan,,,, +04/17/2021,16:04,QUEENS,11435,40.686653,-73.80303,"(40.686653, -73.80303)",,,109-89 142 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4407966,Sedan,Sedan,Sedan,, +04/17/2021,20:23,BRONX,10459,40.817574,-73.89624,"(40.817574, -73.89624)",,,830 FOX STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4408426,Sedan,Sedan,,, +04/17/2021,3:20,,,40.72586,-73.90017,"(40.72586, -73.90017)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4407927,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/17/2021,14:11,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408072,Sedan,Taxi,,, +04/16/2021,11:40,BRONX,10472,40.829685,-73.8804,"(40.829685, -73.8804)",,,1245 WHEELER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408456,Sedan,,,, +04/17/2021,5:13,BROOKLYN,11211,40.703033,-73.9599,"(40.703033, -73.9599)",BEDFORD AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4408361,Sedan,Sedan,,, +04/17/2021,20:30,QUEENS,11413,40.685432,-73.75514,"(40.685432, -73.75514)",192 STREET,122 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407985,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,22:09,,,,,,HUDSON YARDS,WEST 33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408580,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/17/2021,14:18,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408539,Sedan,,,, +04/17/2021,12:30,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4408162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,18:00,MANHATTAN,10022,40.75613,-73.96761,"(40.75613, -73.96761)",2 AVENUE,EAST 52 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408132,Taxi,Sedan,,, +04/15/2021,14:00,,,40.627365,-74.166565,"(40.627365, -74.166565)",SOUTH AVENUE,FOREST AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408499,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,19:54,,,40.824757,-73.94052,"(40.824757, -73.94052)",WEST 148 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4408520,Sedan,Motorbike,,, +04/17/2021,18:59,BRONX,10466,40.880623,-73.84047,"(40.880623, -73.84047)",BOSTON ROAD,GRACE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408172,Taxi,,,, +04/17/2021,14:10,QUEENS,11432,40.71579,-73.79749,"(40.71579, -73.79749)",84 AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4407982,dump,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:55,BROOKLYN,11237,40.708084,-73.92341,"(40.708084, -73.92341)",,,1241 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4407957,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,19:00,STATEN ISLAND,10304,40.628723,-74.08304,"(40.628723, -74.08304)",OCCIDENT AVENUE,SAINT PAULS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408603,Sedan,Sedan,,, +04/16/2021,18:44,,,40.788055,-73.94433,"(40.788055, -73.94433)",2 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4408434,Dump,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,15:13,MANHATTAN,10035,40.798836,-73.93936,"(40.798836, -73.93936)",,,2149 3 AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4408472,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,7:57,QUEENS,11101,40.742123,-73.92745,"(40.742123, -73.92745)",47 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4408009,Station Wagon/Sport Utility Vehicle,Motorcycle,Sedan,, +04/17/2021,3:20,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4408199,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,18:30,BRONX,10473,40.816456,-73.86683,"(40.816456, -73.86683)",,,1710 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408452,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,8:15,BRONX,10468,40.86166,-73.910965,"(40.86166, -73.910965)",,,264 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408346,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,10:00,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4407950,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,1:05,QUEENS,11356,40.78935,-73.842804,"(40.78935, -73.842804)",9 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407912,Sedan,Sedan,,, +04/17/2021,21:45,QUEENS,11412,40.699547,-73.764366,"(40.699547, -73.764366)",HANNIBAL STREET,LEWISTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408077,Sedan,Sedan,,, +03/21/2021,10:52,,,40.766552,-73.89476,"(40.766552, -73.89476)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,Unspecified,,,4400556,Sedan,Sedan,Sedan,, +04/17/2021,13:30,,,,,,G.C.P. / L.I.E (CDR),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408216,Sedan,,,, +04/17/2021,21:26,,,40.74143,-73.94794,"(40.74143, -73.94794)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408012,Sedan,Sedan,Sedan,, +04/16/2021,9:55,BROOKLYN,11226,40.648182,-73.94739,"(40.648182, -73.94739)",,,106 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408549,Sedan,,,, +04/15/2021,16:26,,,40.847576,-73.90633,"(40.847576, -73.90633)",MONROE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4408568,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/16/2021,16:40,,,40.570877,-74.16984,"(40.570877, -74.16984)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408506,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,10:55,BRONX,10463,40.87484,-73.910835,"(40.87484, -73.910835)",,,2 MARBLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408667,Sedan,,,, +04/17/2021,8:05,BROOKLYN,11203,40.650375,-73.92607,"(40.650375, -73.92607)",,,5419 SNYDER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4408116,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2021,16:00,BROOKLYN,11210,40.62956,-73.94342,"(40.62956, -73.94342)",AVENUE I,EAST 34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,13:00,QUEENS,11691,40.601112,-73.75187,"(40.601112, -73.75187)",,,610 BEACH 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4408764,Sedan,,,, +04/17/2021,20:13,BRONX,10464,40.84969,-73.78744,"(40.84969, -73.78744)",DITMARS STREET,CITY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408405,Flat Rack,Sedan,,, +04/17/2021,17:57,QUEENS,11422,40.652554,-73.74656,"(40.652554, -73.74656)",BROOKVILLE BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4407977,Sedan,,,, +04/10/2021,14:00,,,40.81689,-73.86383,"(40.81689, -73.86383)",RANDALL AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4408448,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/12/2021,16:00,BROOKLYN,11208,40.67854,-73.88094,"(40.67854, -73.88094)",,,7 BERRIMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,Unspecified,,4408623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/17/2021,18:28,,,40.80582,-73.90926,"(40.80582, -73.90926)",BRUCKNER EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4408368,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,14:05,,,40.63948,-74.016174,"(40.63948, -74.016174)",60 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407964,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,6:30,QUEENS,11367,40.726135,-73.82638,"(40.726135, -73.82638)",,,136-45 71 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4408001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2021,21:30,QUEENS,11415,40.712738,-73.83173,"(40.712738, -73.83173)",,,119-24 80 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4408478,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,9:28,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408466,Sedan,Carry All,,, +04/17/2021,12:30,,,40.69764,-73.92932,"(40.69764, -73.92932)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4407941,Sedan,Box Truck,,, +04/13/2021,22:20,BROOKLYN,11225,40.66336,-73.95975,"(40.66336, -73.95975)",EMPIRE BOULEVARD,MC KEEVER PLACE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408668,Bus,Sedan,,, +04/17/2021,16:30,,,40.627052,-74.16485,"(40.627052, -74.16485)",,,2239 FOREST AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408509,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,22:40,BRONX,10466,40.89455,-73.850044,"(40.89455, -73.850044)",,,4235 GUNTHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408176,Station Wagon/Sport Utility Vehicle,,,, +03/29/2021,21:21,BROOKLYN,11203,40.64334,-73.92849,"(40.64334, -73.92849)",,,734 EAST 51 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408557,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,19:50,BROOKLYN,11225,40.66268,-73.95815,"(40.66268, -73.95815)",,,95 STERLING STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4408563,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:25,QUEENS,11413,40.67739,-73.7398,"(40.67739, -73.7398)",133 AVENUE,230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4407886,Sedan,,,, +04/17/2021,19:13,,,40.846764,-73.933784,"(40.846764, -73.933784)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408286,Taxi,,,, +04/17/2021,23:50,,,40.756725,-73.96,"(40.756725, -73.96)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4408328,Taxi,Sedan,,, +04/13/2021,15:00,BRONX,10463,40.887222,-73.90474,"(40.887222, -73.90474)",,,445 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408662,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,6:50,QUEENS,11372,40.754612,-73.87667,"(40.754612, -73.87667)",34 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4408090,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/15/2021,0:19,QUEENS,11418,40.707954,-73.83715,"(40.707954, -73.83715)",METROPOLITAN AVENUE,PARK LANE SOUTH,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408486,Sedan,,,, +04/17/2021,21:00,BRONX,10460,40.84736,-73.8822,"(40.84736, -73.8822)",,,854 BRONX PARK SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408153,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,17:45,,,40.76874,-73.90881,"(40.76874, -73.90881)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4408755,Sedan,Sedan,Sedan,, +04/17/2021,14:45,BRONX,10474,40.808853,-73.88405,"(40.808853, -73.88405)",EAST BAY AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408318,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,15:22,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",SOUTH CONDUIT AVENUE,HOOK CREEK BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4407991,Pick-up Truck,Sedan,,, +04/17/2021,11:40,QUEENS,11385,40.707268,-73.90267,"(40.707268, -73.90267)",,,59-18 PALMETTO STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4407936,Sedan,,,, +04/17/2020,1:50,MANHATTAN,10019,40.77161,-73.99046,"(40.77161, -73.99046)",11 AVENUE,WEST 59 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408441,Sedan,,,, +04/12/2021,11:30,QUEENS,11415,40.71338,-73.82874,"(40.71338, -73.82874)",,,120-55 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408496,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,10:57,BRONX,10460,40.83315,-73.8871,"(40.83315, -73.8871)",EAST 172 STREET,BRYANT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4408046,Sedan,Sedan,,, +04/17/2021,14:38,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4408023,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,16:30,STATEN ISLAND,10306,40.562828,-74.102615,"(40.562828, -74.102615)",ROMA AVENUE,GARIBALDI AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408459,Convertible,,,, +04/14/2021,15:27,BROOKLYN,11237,40.70377,-73.93116,"(40.70377, -73.93116)",FLUSHING AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,23:35,,,40.649395,-73.9417,"(40.649395, -73.9417)",SNYDER AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4408136,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/17/2021,21:32,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4408184,Sedan,,,, +04/17/2021,10:00,,,40.827198,-73.93668,"(40.827198, -73.93668)",MACOMBS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408593,Sedan,,,, +04/16/2021,10:40,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4408532,Sedan,Sedan,Sedan,, +04/17/2021,11:57,,,40.727192,-73.89328,"(40.727192, -73.89328)",69 LANE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4408255,Carry All,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,14:00,BROOKLYN,11203,40.648243,-73.929,"(40.648243, -73.929)",EAST 51 STREET,TILDEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4408125,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,20:54,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,17:40,,,40.62194,-73.91753,"(40.62194, -73.91753)",RALPH AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4408525,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,13:48,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408543,Sedan,,,, +04/17/2021,12:00,QUEENS,11417,40.678425,-73.851875,"(40.678425, -73.851875)",106 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408167,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,19:46,QUEENS,11365,40.737614,-73.79646,"(40.737614, -73.79646)",,,61-38 173 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514356,Sedan,Sedan,,, +03/26/2022,14:20,BROOKLYN,11238,40.675907,-73.969505,"(40.675907, -73.969505)",STERLING PLACE,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4513690,Taxi,,,, +03/26/2022,3:37,BROOKLYN,11237,40.70239,-73.924644,"(40.70239, -73.924644)",WILLOUGHBY AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514131,Sedan,,,, +07/12/2022,0:00,,,40.639996,-74.02442,"(40.639996, -74.02442)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4545645,Sedan,Sedan,,, +03/26/2022,6:40,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4513540,Sedan,Sedan,,, +03/26/2022,20:40,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4513961,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,15:03,BROOKLYN,11222,40.73207,-73.94462,"(40.73207, -73.94462)",NORTH HENRY STREET,GREENPOINT AVENUE,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4514110,Motorcycle,,,, +03/25/2022,16:49,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",3 AVENUE,EAST 125 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4514154,Station Wagon/Sport Utility Vehicle,Bus,,, +03/26/2022,1:15,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",QUEENS BOULEVARD,34 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4513550,Station Wagon/Sport Utility Vehicle,Bike,,, +03/26/2022,17:45,QUEENS,11421,40.69222,-73.847496,"(40.69222, -73.847496)",97 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513624,Station Wagon/Sport Utility Vehicle,,,, +03/20/2022,23:47,MANHATTAN,10031,40.818474,-73.95332,"(40.818474, -73.95332)",,,508 WEST 134 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4514398,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,10:00,,,40.60729,-74.14086,"(40.60729, -74.14086)",WOOLLEY AVENUE,SOUTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514415,Sedan,Sedan,,, +03/26/2022,12:25,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513675,Sedan,Sedan,,, +03/26/2022,14:00,BROOKLYN,11226,40.65206,-73.94973,"(40.65206, -73.94973)",,,1412 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513862,Van,Sedan,,, +03/25/2022,18:13,BROOKLYN,11232,40.645596,-73.999054,"(40.645596, -73.999054)",42 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514368,Carry All,Sedan,,, +03/09/2022,1:00,,,40.759163,-73.97675,"(40.759163, -73.97675)",5 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514187,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,19:00,BRONX,10467,40.88611,-73.86292,"(40.88611, -73.86292)",,,665 EAST 222 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4514290,UNK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2022,18:15,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4513570,Sedan,Sedan,,, +03/26/2022,7:30,STATEN ISLAND,10301,40.64005,-74.089355,"(40.64005, -74.089355)",PROSPECT AVENUE,HARVARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513703,Sedan,,,, +03/26/2022,3:30,QUEENS,11368,40.752068,-73.862854,"(40.752068, -73.862854)",,,37-54 104 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513518,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,20:37,,,40.704773,-74.00975,"(40.704773, -74.00975)",PEARL STREET,HANOVER SQUARE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4513659,Sedan,,,, +03/26/2022,21:45,,,40.67477,-73.860306,"(40.67477, -73.860306)",76 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,22:57,QUEENS,11369,40.764187,-73.86258,"(40.764187, -73.86258)",29 AVENUE,DITMARS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513630,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,12:35,,,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4514239,Taxi,,,, +03/26/2022,10:22,BROOKLYN,11237,40.700546,-73.917076,"(40.700546, -73.917076)",GREENE AVENUE,IRVING AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4514132,Sedan,Sedan,,, +03/26/2022,16:45,,,40.711685,-73.74672,"(40.711685, -73.74672)",104 AVENUE,211 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513741,Sedan,Sedan,,, +02/19/2022,16:32,,,40.62135,-74.15131,"(40.62135, -74.15131)",RICHMOND AVENUE,HOLIDAY WAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4503983,Sedan,Sedan,,, +09/12/2021,7:15,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456266,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,9:50,BRONX,10474,40.815754,-73.883934,"(40.815754, -73.883934)",,,730 WHITTIER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484945,Tractor Truck Diesel,Sedan,,, +12/08/2021,15:40,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4484741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,10:54,,,40.689194,-73.75365,"(40.689194, -73.75365)",196 STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485621,Sedan,Sedan,,, +12/10/2021,21:33,MANHATTAN,10019,40.76979,-73.988075,"(40.76979, -73.988075)",WEST 58 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485329,Bike,,,, +12/08/2021,8:30,MANHATTAN,10033,40.84812,-73.92971,"(40.84812, -73.92971)",LAUREL HILL TERRACE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485755,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,12:47,,,40.827774,-73.945755,"(40.827774, -73.945755)",WEST 149 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485349,Sedan,,,, +11/18/2021,22:10,STATEN ISLAND,10301,40.639984,-74.08663,"(40.639984, -74.08663)",,,151 HENDRICKS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485646,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +12/10/2021,20:15,,,40.74121,-73.84277,"(40.74121, -73.84277)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,17:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485514,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,22:52,,,40.735424,-73.974754,"(40.735424, -73.974754)",EAST 23 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4484939,Sedan,,,, +11/18/2021,17:56,QUEENS,11434,40.668606,-73.78168,"(40.668606, -73.78168)",ROCKAWAY BOULEVARD,137 AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4485400,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,12:21,BRONX,10462,40.84835,-73.85573,"(40.84835, -73.85573)",,,1015 MORRIS PARK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485951,Sedan,E-Scooter,,, +12/02/2021,9:00,,,40.693905,-73.94892,"(40.693905, -73.94892)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4485653,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/06/2021,2:00,,,40.68837,-73.944916,"(40.68837, -73.944916)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485631,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,16:47,QUEENS,11101,40.7495,-73.94667,"(40.7495, -73.94667)",21 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485430,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,18:12,STATEN ISLAND,10306,40.57089,-74.14791,"(40.57089, -74.14791)",ARTHUR KILL ROAD,CLARKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485221,Sedan,Sedan,,, +12/08/2021,9:39,BROOKLYN,11220,40.635494,-74.00957,"(40.635494, -74.00957)",60 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4485094,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/10/2021,19:30,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485603,Sedan,Sedan,,, +12/08/2021,12:27,MANHATTAN,10023,40.774227,-73.98112,"(40.774227, -73.98112)",WEST 67 STREET,COLUMBUS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485027,Bike,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,17:00,BROOKLYN,11226,40.65571,-73.95891,"(40.65571, -73.95891)",,,289 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485344,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,13:38,BROOKLYN,11204,40.622086,-73.984276,"(40.622086, -73.984276)",,,1877 58 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4484867,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,14:34,QUEENS,11420,40.680008,-73.82305,"(40.680008, -73.82305)",111 AVENUE,117 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485842,Station Wagon/Sport Utility Vehicle,,,, +12/06/2021,21:54,MANHATTAN,10032,40.83112,-73.9419,"(40.83112, -73.9419)",,,465 WEST 155 STREET,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4485557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,14:40,BROOKLYN,11215,40.673313,-73.97309,"(40.673313, -73.97309)",,,78 8 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4485380,Sedan,Carry All,,, +12/09/2021,11:25,BROOKLYN,11232,40.64861,-73.99952,"(40.64861, -73.99952)",39 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485189,Van,Box Truck,,, +03/26/2022,1:20,BRONX,10459,40.822815,-73.895485,"(40.822815, -73.895485)",,,966 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514006,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,13:00,BRONX,10455,40.812237,-73.909424,"(40.812237, -73.909424)",,,506 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514148,Sedan,,,, +03/26/2022,2:34,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,12:25,BROOKLYN,11207,40.65906,-73.88459,"(40.65906, -73.88459)",VAN SICLEN AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513849,Sedan,,,, +03/12/2022,16:00,,,40.67834,-73.95521,"(40.67834, -73.95521)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514331,Pick-up Truck,Garbage or Refuse,,, +03/26/2022,23:03,,,,,,BRONX RIVER PARKWAY,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513730,Sedan,Sedan,,, +03/26/2022,5:43,MANHATTAN,10002,,,,GRAND STREET,essex street,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4514227,Sedan,,,, +03/26/2022,16:38,MANHATTAN,10018,40.75265,-73.99056,"(40.75265, -73.99056)",,,223 WEST 36 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4513711,Sedan,,,, +03/26/2022,4:44,BROOKLYN,11223,40.596478,-73.96523,"(40.596478, -73.96523)",,,2168 OCEAN PARKWAY,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4513499,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/27/2022,18:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514261,Sedan,Sedan,,, +03/26/2022,7:48,QUEENS,11354,40.772495,-73.8303,"(40.772495, -73.8303)",,,138-12 28 ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513597,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,20:15,QUEENS,11413,40.67102,-73.74893,"(40.67102, -73.74893)",139 AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4513783,Pick-up Truck,Sedan,,, +03/20/2022,18:43,BROOKLYN,11238,40.678932,-73.96197,"(40.678932, -73.96197)",DEAN STREET,GRAND AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514327,Sedan,E-Bike,,, +03/25/2022,16:11,BRONX,10473,,,,Stickball Boulevard,Lafayette Avenue,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4514191,Sedan,Sedan,Van,, +03/26/2022,8:50,,,40.63926,-73.93777,"(40.63926, -73.93777)",ALBANY AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4513800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +03/26/2022,17:30,QUEENS,11414,40.655403,-73.85259,"(40.655403, -73.85259)",160 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513947,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/24/2022,12:15,BROOKLYN,11204,40.61578,-73.99995,"(40.61578, -73.99995)",NEW UTRECHT AVENUE,BAY RIDGE PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514196,Sedan,Bike,,, +03/26/2022,2:15,STATEN ISLAND,10312,40.536892,-74.15944,"(40.536892, -74.15944)",,,242 LYNDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513768,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,13:50,BROOKLYN,11210,40.634117,-73.94588,"(40.634117, -73.94588)",EAST 32 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4513692,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +03/21/2022,11:30,,,40.695377,-73.94921,"(40.695377, -73.94921)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514243,Pick-up Truck,Sedan,,, +03/14/2022,14:05,MANHATTAN,10036,40.756035,-73.98695,"(40.756035, -73.98695)",7 AVENUE,WEST 42 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4514276,Sedan,Bike,,, +03/26/2022,11:20,MANHATTAN,10075,40.771946,-73.952995,"(40.771946, -73.952995)",,,1501 1 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4513993,Sedan,,,, +03/25/2022,8:29,,,40.83997,-73.87792,"(40.83997, -73.87792)",EAST TREMONT AVENUE,EAST 177 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514168,Taxi,Flat Bed,,, +03/26/2022,19:26,QUEENS,11368,40.749866,-73.86273,"(40.749866, -73.86273)",NATIONAL STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513809,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,17:45,BROOKLYN,11217,40.687176,-73.9814,"(40.687176, -73.9814)",,,320 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513905,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,15:00,QUEENS,11414,40.666378,-73.847694,"(40.666378, -73.847694)",,,153-25 88 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514355,Sedan,,,, +03/23/2022,3:20,,,,,,QUEENSBORO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4514214,Tractor Truck Diesel,Sedan,Sedan,Sedan, +03/26/2022,14:00,QUEENS,11364,40.73769,-73.76846,"(40.73769, -73.76846)",73 AVENUE,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513931,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,13:11,QUEENS,11377,40.74152,-73.904594,"(40.74152, -73.904594)",QUEENS BOULEVARD,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514218,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,1:31,MANHATTAN,10019,40.764626,-73.99555,"(40.764626, -73.99555)",WEST 48 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513487,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,12:00,BRONX,10466,40.89306,-73.858734,"(40.89306, -73.858734)",,,676 EAST 232 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514304,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,12:20,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",FARMERS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,8:15,,,40.843678,-73.871956,"(40.843678, -73.871956)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513729,Sedan,,,, +03/26/2022,14:08,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4514050,Sedan,Sedan,,, +03/26/2022,17:46,QUEENS,11104,40.746353,-73.91617,"(40.746353, -73.91617)",48 STREET,SKILLMAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4513584,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,22:03,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",ANTHONY AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514022,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/23/2022,8:10,BRONX,10466,40.88971,-73.85603,"(40.88971, -73.85603)",BARNES AVENUE,EAST 229 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514284,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,17:06,MANHATTAN,10022,40.762287,-73.97027,"(40.762287, -73.97027)",EAST 58 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514192,Sedan,,,, +03/26/2022,11:20,BROOKLYN,11207,40.65937,-73.8826,"(40.65937, -73.8826)",,,817 SCHENCK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4513841,Sedan,Sedan,,, +03/26/2022,9:00,,,40.579052,-73.98415,"(40.579052, -73.98415)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513884,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,10:17,MANHATTAN,10035,40.80114,-73.93769,"(40.80114, -73.93769)",EAST 121 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4514158,Sedan,Sedan,,, +03/26/2022,5:28,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513956,Taxi,Sedan,,, +03/26/2022,21:58,QUEENS,11369,40.759285,-73.85809,"(40.759285, -73.85809)",,,32-09 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513629,Sedan,Sedan,,, +03/26/2022,11:15,,,40.60345,-74.009,"(40.60345, -74.009)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513684,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/25/2022,15:06,,,40.62026,-74.16774,"(40.62026, -74.16774)",FAHY AVENUE,FELTON STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4514422,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,0:09,QUEENS,11429,40.703434,-73.74051,"(40.703434, -73.74051)",MURDOCK AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4513542,Sedan,,,, +03/25/2022,17:44,BROOKLYN,11218,40.64235,-73.97937,"(40.64235, -73.97937)",,,476 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514370,Bus,Sedan,,, +03/26/2022,14:45,,,40.707928,-73.78383,"(40.707928, -73.78383)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4513970,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +03/26/2022,22:00,MANHATTAN,10002,40.718174,-73.98704,"(40.718174, -73.98704)",,,138 DELANCEY STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4513778,Sedan,Sedan,Taxi,, +03/17/2022,14:50,MANHATTAN,10023,40.76974,-73.982124,"(40.76974, -73.982124)",BROADWAY,WEST 61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514300,Bus,Sedan,,, +03/26/2022,23:15,QUEENS,11372,40.752663,-73.87633,"(40.752663, -73.87633)",35 AVENUE,91 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513633,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,22:30,BROOKLYN,11226,40.65331,-73.95942,"(40.65331, -73.95942)",,,800 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513695,Sedan,,,, +03/26/2022,0:55,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4514178,Tractor Truck Diesel,Sedan,,, +03/26/2022,3:26,MANHATTAN,10014,40.731125,-74.004234,"(40.731125, -74.004234)",7 AVENUE SOUTH,MORTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514117,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +03/26/2022,7:30,,,40.7014,-73.91858,"(40.7014, -73.91858)",HIMROD STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514133,MOPED,,,, +03/26/2022,13:00,QUEENS,11368,40.757725,-73.86372,"(40.757725, -73.86372)",NORTHERN BOULEVARD,105 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4513535,Sedan,Sedan,,, +03/26/2022,20:00,QUEENS,11385,40.703938,-73.87605,"(40.703938, -73.87605)",,,78-01 73 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513890,Sedan,,,, +03/26/2022,19:08,BROOKLYN,11207,40.663124,-73.8902,"(40.663124, -73.8902)",,,479 NEW LOTS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4513575,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,18:32,BRONX,10460,40.835648,-73.88862,"(40.835648, -73.88862)",,,920 EAST 173 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513989,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,0:05,,,40.76419,-73.861664,"(40.76419, -73.861664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513517,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,17:59,,,40.647243,-73.96048,"(40.647243, -73.96048)",ALBEMARLE ROAD,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4513704,Sedan,Bike,,, +03/26/2022,17:45,MANHATTAN,10030,40.815205,-73.947495,"(40.815205, -73.947495)",WEST 133 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514089,USPCS,Pick-up Truck,,, +03/26/2022,20:30,QUEENS,11417,40.681145,-73.84013,"(40.681145, -73.84013)",100 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513954,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,21:15,QUEENS,11421,40.696384,-73.86017,"(40.696384, -73.86017)",PARK LANE SOUTH,85 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513622,Sedan,,,, +03/25/2022,8:30,MANHATTAN,10002,40.709206,-73.99607,"(40.709206, -73.99607)",CATHERINE SLIP,SOUTH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514272,Sedan,,,, +03/26/2022,5:00,STATEN ISLAND,10309,40.53171,-74.202896,"(40.53171, -74.202896)",DRUMGOOLE ROAD EAST,FOSTER ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4514232,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,18:30,,,40.667576,-73.72951,"(40.667576, -73.72951)",HOOK CREEK BOULEVARD,137 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4513787,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,16:35,BROOKLYN,11234,40.608807,-73.924126,"(40.608807, -73.924126)",AVENUE U,COLEMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513747,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/11/2022,23:22,BRONX,10456,40.831635,-73.91894,"(40.831635, -73.91894)",EAST 166 STREET,CARROLL PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514186,Sedan,Sedan,,, +03/26/2022,19:11,BRONX,10462,40.832787,-73.850235,"(40.832787, -73.850235)",,,2225 ELLIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514203,Sedan,Bike,,, +03/26/2022,20:09,BROOKLYN,11236,40.649654,-73.92047,"(40.649654, -73.92047)",RALPH AVENUE,AVENUE A,,1,0,1,0,0,0,0,0,Unspecified,,,,,4513801,Sedan,,,, +03/26/2022,14:00,,,,,,HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513601,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,16:17,QUEENS,11422,40.672405,-73.730515,"(40.672405, -73.730515)",244 STREET,134 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4513569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/21/2022,12:02,BRONX,10467,40.879623,-73.86834,"(40.879623, -73.86834)",,,3554 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514289,Sedan,Sedan,,, +03/26/2022,5:01,BRONX,10474,40.814438,-73.89308,"(40.814438, -73.89308)",LONGWOOD AVENUE,BARRY STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4514004,Sedan,,,, +03/23/2022,12:30,QUEENS,11004,40.742104,-73.702194,"(40.742104, -73.702194)",,,82-24 268 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514147,Sedan,,,, +03/26/2022,0:10,MANHATTAN,10009,40.723507,-73.98541,"(40.723507, -73.98541)",,,37 AVENUE A,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513660,Sedan,Sedan,,, +03/26/2022,11:00,BROOKLYN,11207,40.66602,-73.896324,"(40.66602, -73.896324)",GEORGIA AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513850,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,23:20,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514077,Tractor Truck Gasoline,Sedan,,, +03/26/2022,0:12,BROOKLYN,11215,40.663948,-73.98073,"(40.663948, -73.98073)",8 AVENUE,12 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4513945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/26/2022,14:00,QUEENS,11418,40.696865,-73.81535,"(40.696865, -73.81535)",ATLANTIC AVENUE,134 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4513551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/29/2021,7:44,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487466,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,1:20,,,40.855972,-73.869896,"(40.855972, -73.869896)",BRONX PARK EAST,BOSTON ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4513500,Sedan,,,, +03/26/2022,12:30,STATEN ISLAND,10301,40.642563,-74.08653,"(40.642563, -74.08653)",JERSEY STREET,CRESCENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513709,Sedan,,,, +03/21/2022,17:18,,,40.616364,-74.15676,"(40.616364, -74.15676)",RICHMOND AVENUE,GOETHALS ROAD NORTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514414,Sedan,Bus,,, +03/26/2022,18:36,BROOKLYN,11203,40.64467,-73.9256,"(40.64467, -73.9256)",,,5402 CLARENDON ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4513873,Sedan,Sedan,,, +03/26/2022,0:00,,,40.843517,-73.83295,"(40.843517, -73.83295)",MIDDLETOWN ROAD,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4513674,Sedan,,,, +03/23/2022,14:30,,,40.57256,-74.1189,"(40.57256, -74.1189)",NEW DORP PLAZA NORTH,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4514238,Sedan,Sedan,,, +03/26/2022,11:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514262,Sedan,Sedan,,, +03/25/2022,9:15,,,40.829502,-73.87462,"(40.829502, -73.87462)",WESTCHESTER AVENUE,,,2,0,0,0,2,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514190,Sedan,Bike,,, +03/15/2022,17:00,,,40.676598,-73.93039,"(40.676598, -73.93039)",PACIFIC STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514328,Station Wagon/Sport Utility Vehicle,Bike,,, +03/26/2022,1:04,,,40.608826,-74.00983,"(40.608826, -74.00983)",BAY 11 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513731,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,10:57,MANHATTAN,10128,40.779495,-73.9535,"(40.779495, -73.9535)",EAST 87 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514197,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,1:05,BROOKLYN,11238,40.686066,-73.971436,"(40.686066, -73.971436)",CARLTON AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514404,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,1:15,QUEENS,11435,40.693295,-73.80802,"(40.693295, -73.80802)",LIBERTY AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4513975,Sedan,,,, +03/26/2022,20:59,QUEENS,11104,40.743156,-73.91871,"(40.743156, -73.91871)",46 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,18:10,,,,,,WESTMINISTER ROAD,CATON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514055,Sedan,,,, +03/19/2022,1:01,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514299,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,14:57,BROOKLYN,11211,40.711323,-73.95464,"(40.711323, -73.95464)",RODNEY STREET,SOUTH 1 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4513957,Sedan,,,, +03/26/2022,7:05,BROOKLYN,11209,40.620525,-74.03228,"(40.620525, -74.03228)",,,9006 3 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4513574,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/26/2022,23:45,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513635,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,8:21,MANHATTAN,10035,40.80142,-73.93446,"(40.80142, -73.93446)",2 AVENUE,EAST 123 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514153,Sedan,Bus,,, +03/26/2022,14:28,BROOKLYN,11237,40.701195,-73.91409,"(40.701195, -73.91409)",MENAHAN STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514134,Sedan,Box Truck,,, +10/17/2022,7:50,BROOKLYN,11208,40.672108,-73.87671,"(40.672108, -73.87671)",,,1127 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4573768,Sedan,,,, +03/26/2022,14:05,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4513546,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/22/2022,21:19,,,40.669735,-73.93104,"(40.669735, -73.93104)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514329,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,8:20,BRONX,10472,40.82628,-73.87673,"(40.82628, -73.87673)",WATSON AVENUE,WARD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514193,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,17:30,QUEENS,11373,40.74648,-73.8723,"(40.74648, -73.8723)",,,93-35 LAMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513805,Sedan,Sedan,,, +03/10/2022,20:27,QUEENS,11375,40.710907,-73.842575,"(40.710907, -73.842575)",75 ROAD,KESSEL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514242,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/18/2022,0:30,BROOKLYN,11206,40.696686,-73.9378,"(40.696686, -73.9378)",LEWIS AVENUE,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514248,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,1:39,MANHATTAN,10019,40.766144,-73.99724,"(40.766144, -73.99724)",WEST 49 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,11:30,,,,,,MARION AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408721,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,0:30,MANHATTAN,10001,40.745384,-73.99471,"(40.745384, -73.99471)",WEST 25 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487564,Taxi,,,, +02/19/2022,15:40,,,40.66053,-73.93234,"(40.66053, -73.93234)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504204,Sedan,,,, +02/19/2022,19:00,BROOKLYN,11212,40.669754,-73.904,"(40.669754, -73.904)",,,180 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504657,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,17:23,BROOKLYN,11207,0,0,"(0.0, 0.0)",JAMAICA AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4504560,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,10:09,STATEN ISLAND,10304,40.616684,-74.08688,"(40.616684, -74.08688)",,,927 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504102,Sedan,,,, +02/19/2022,19:45,,,40.789017,-73.81865,"(40.789017, -73.81865)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504242,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/16/2022,10:35,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504647,Sedan,Sedan,,, +02/17/2022,0:30,,,40.816765,-73.86475,"(40.816765, -73.86475)",RANDALL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504459,Sedan,,,, +02/19/2022,2:16,BROOKLYN,11229,40.601017,-73.95066,"(40.601017, -73.95066)",,,2109 EAST 21 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4503888,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/16/2022,18:33,,,40.76363,-73.9533,"(40.76363, -73.9533)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504529,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,7:03,,,40.687622,-73.77881,"(40.687622, -73.77881)",169 STREET,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4504048,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/18/2022,17:30,QUEENS,11416,40.68501,-73.842026,"(40.68501, -73.842026)",,,101-32 100 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504486,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,8:52,,,40.832954,-73.85444,"(40.832954, -73.85444)",NEWBOLD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504438,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,21:10,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504300,Taxi,,,, +02/19/2022,22:30,,,,,,MACOMBS DAM BRIDGE,,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4504393,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/14/2022,16:00,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4504653,,,,, +02/19/2022,17:30,QUEENS,11369,40.7639,-73.88064,"(40.7639, -73.88064)",,,88-20 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4504153,Sedan,,,, +02/17/2022,16:10,BROOKLYN,11208,40.670723,-73.87519,"(40.670723, -73.87519)",LOGAN STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504555,Station Wagon/Sport Utility Vehicle,,,, +02/16/2022,0:00,BROOKLYN,11207,40.679768,-73.894005,"(40.679768, -73.894005)",JAMAICA AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504585,,,,, +02/19/2022,21:35,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504230,Sedan,Taxi,,, +02/15/2022,17:55,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504493,Sedan,Sedan,,, +02/19/2022,4:00,BRONX,10462,40.842007,-73.85755,"(40.842007, -73.85755)",,,2155 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4503914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/19/2022,4:44,QUEENS,11691,40.59957,-73.76422,"(40.59957, -73.76422)",,,29-32 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504415,Sedan,,,, +02/19/2022,22:30,,,40.623444,-74.14917,"(40.623444, -74.14917)",,,970 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504001,Sedan,Sedan,,, +02/19/2022,6:15,,,40.85139,-73.941216,"(40.85139, -73.941216)",HAVEN AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4504426,Sedan,,,, +02/19/2022,14:00,BROOKLYN,11233,40.668278,-73.92005,"(40.668278, -73.92005)",HOWARD AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504135,Sedan,Sedan,,, +02/19/2022,1:20,,,,,,THROGS NECK EXPY,,,2,0,0,0,0,0,2,0,Steering Failure,Unspecified,,,,4504410,Sedan,Bus,,, +02/03/2022,16:15,QUEENS,11360,40.776665,-73.78281,"(40.776665, -73.78281)",KENNEDY STREET,26 AVENUE,,0,0,0,0,0,0,0,0,,,,,,4500092,,,,, +02/19/2022,14:15,QUEENS,11435,40.70212,-73.81066,"(40.70212, -73.81066)",,,144-23 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504273,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,10:43,,,40.60855,-74.13216,"(40.60855, -74.13216)",NORTH GANNON AVENUE,BRADLEY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514421,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,10:30,,,40.849285,-73.93894,"(40.849285, -73.93894)",FORT WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,0:09,QUEENS,11373,40.73274,-73.86836,"(40.73274, -73.86836)",QUEENS BOULEVARD,LONG ISLAND EXPRESSWAY,,3,0,0,0,0,0,3,0,Other Vehicular,Unsafe Lane Changing,,,,4513932,Sedan,Sedan,,, +03/23/2022,23:59,MANHATTAN,10024,,,,WEST 82 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514305,Taxi,,,, +03/26/2022,20:36,BRONX,10463,40.87446,-73.91002,"(40.87446, -73.91002)",,,5198 BROADWAY,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4513727,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +03/26/2022,20:15,MANHATTAN,10027,,,,,,32 MOUNT MORRIS PARK WEST,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4514159,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/26/2022,17:34,,,40.666924,-73.78447,"(40.666924, -73.78447)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513776,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,19:41,BROOKLYN,11230,40.62685,-73.97643,"(40.62685, -73.97643)",,,1080 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514373,Sedan,Sedan,,, +03/26/2022,3:00,,,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,,,2,0,1,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4513914,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2022,19:31,QUEENS,11368,40.751575,-73.85584,"(40.751575, -73.85584)",ROOSEVELT AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,6:30,,,40.659473,-74.00244,"(40.659473, -74.00244)",GOWANUS EXPY (BQE),,,1,0,1,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4513529,Sedan,Sedan,,, +03/26/2022,5:20,BRONX,10474,40.81813,-73.89101,"(40.81813, -73.89101)",GARRISON AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,17:41,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514179,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,12:50,STATEN ISLAND,10310,40.63054,-74.11365,"(40.63054, -74.11365)",,,438 NORTH BURGHER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Backing Unsafely,,,,4513696,Sedan,Sedan,,, +03/26/2022,17:29,,,40.69925,-73.973206,"(40.69925, -73.973206)",6 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4513683,Sedan,Bike,,, +03/26/2022,21:00,,,40.647766,-73.95816,"(40.647766, -73.95816)",ALBEMARLE ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514121,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,16:00,BROOKLYN,11211,40.710747,-73.9532,"(40.710747, -73.9532)",,,188 BORINQUEN PLACE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4514352,Sedan,Moped,,, +03/26/2022,23:40,,,40.753113,-73.93371,"(40.753113, -73.93371)",39 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513755,Sedan,Motorbike,,, +03/26/2022,11:00,,,40.674786,-73.8762,"(40.674786, -73.8762)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513840,Sedan,Sedan,Sedan,, +03/11/2022,21:30,BRONX,10466,40.881466,-73.838234,"(40.881466, -73.838234)",,,3813 BOSTON ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4514283,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,22:35,,,40.74128,-73.90257,"(40.74128, -73.90257)",61 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514219,Sedan,E-Scooter,,, +03/26/2022,7:30,BROOKLYN,11224,40.580814,-74.00179,"(40.580814, -74.00179)",,,2650 WEST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4513881,Sedan,Sedan,Sedan,, +03/26/2022,1:42,MANHATTAN,10011,40.73736,-73.99685,"(40.73736, -73.99685)",AVENUE OF THE AMERICAS,WEST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513734,Sedan,Pick-up Truck,,, +03/25/2022,19:46,BRONX,10472,40.8337,-73.879845,"(40.8337, -73.879845)",BRONX RIVER AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4514199,Motorcycle,Sedan,,, +03/19/2022,4:40,,,,,,LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514213,Tractor Truck Diesel,,,, +03/16/2022,18:30,QUEENS,11427,40.721592,-73.7576,"(40.721592, -73.7576)",,,88-25 208 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4514233,Sedan,Sedan,Sedan,, +03/26/2022,12:00,QUEENS,11373,40.74677,-73.88952,"(40.74677, -73.88952)",,,40-09 76 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4513793,Sedan,,,, +04/12/2022,19:15,BRONX,10463,40.88604,-73.90985,"(40.88604, -73.90985)",,,3258 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2021,19:00,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408977,Sedan,Sedan,,, +08/24/2021,21:24,BRONX,10472,40.828976,-73.87641,"(40.828976, -73.87641)",WESTCHESTER AVENUE,MANOR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457196,,,,, +12/11/2021,21:00,,,,,,73 PLACE,WOODHAVEN BLVD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486932,Sedan,,,, +09/03/2021,23:15,BRONX,10454,40.81194,-73.92556,"(40.81194, -73.92556)",3 AVENUE,EAST 140 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455515,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,4:14,,,40.835384,-73.93096,"(40.835384, -73.93096)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4457294,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,5:00,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4457258,Sedan,,,, +09/11/2021,22:30,,,40.840603,-73.91152,"(40.840603, -73.91152)",SHERIDAN AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4457293,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,9:00,,,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457259,Sedan,,,, +09/12/2021,9:45,BROOKLYN,11231,40.675835,-74.01073,"(40.675835, -74.01073)",,,25 WOLCOTT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457262,Sedan,,,, +09/10/2021,10:53,MANHATTAN,10017,40.75337,-73.974655,"(40.75337, -73.974655)",LEXINGTON AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457282,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,22:35,,,40.82,-73.95887,"(40.82, -73.95887)",12 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457272,Sedan,Sedan,,, +09/11/2021,12:43,MANHATTAN,10027,40.818733,-73.96109,"(40.818733, -73.96109)",MARGINAL STREET,WEST 125 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457256,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,7:50,BROOKLYN,11238,40.68265,-73.96211,"(40.68265, -73.96211)",,,1 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457277,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,20:50,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4457310,Sedan,Sedan,,, +12/08/2021,15:45,BRONX,10457,40.847816,-73.89663,"(40.847816, -73.89663)",,,1946 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4484879,Station Wagon/Sport Utility Vehicle,Bus,,, +12/09/2021,7:00,BROOKLYN,11206,40.709316,-73.94354,"(40.709316, -73.94354)",,,207 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4485202,Sedan,,,, +12/10/2021,13:20,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485854,,,,, +12/04/2021,13:44,,,40.74701,-73.977196,"(40.74701, -73.977196)",EAST 36 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485438,Sedan,Taxi,,, +12/06/2021,18:43,BROOKLYN,11207,40.68366,-73.90788,"(40.68366, -73.90788)",BUSHWICK AVENUE,PILLING STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4485310,Sedan,Bike,,, +12/08/2021,6:15,,,40.810997,-73.905846,"(40.810997, -73.905846)",EAST 147 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,8:37,BRONX,10474,40.81152,-73.89448,"(40.81152, -73.89448)",DUPONT STREET,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4484914,Tractor Truck Diesel,,,, +04/17/2021,14:57,,,40.62256,-74.163445,"(40.62256, -74.163445)",,,433 LISK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409000,Sedan,Box Truck,,, +12/10/2021,23:20,BRONX,10470,40.89687,-73.87645,"(40.89687, -73.87645)",EAST 235 STREET,VANCORTLANDT PARK EAST,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,4:03,BROOKLYN,11207,40.665993,-73.8858,"(40.665993, -73.8858)",LIVONIA AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4407738,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,0:15,,,40.74233,-73.83764,"(40.74233, -73.83764)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4407088,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/12/2021,22:20,BROOKLYN,11218,40.637215,-73.96555,"(40.637215, -73.96555)",,,495 ARGYLE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456457,Sedan,Sedan,,, +09/12/2021,16:08,MANHATTAN,10032,40.83794,-73.94052,"(40.83794, -73.94052)",,,545 WEST 164 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4456362,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +09/08/2021,1:19,BRONX,10468,40.868103,-73.89351,"(40.868103, -73.89351)",,,159 EAST 196 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457107,Sedan,Sedan,,, +09/07/2021,14:16,,,40.83517,-73.8668,"(40.83517, -73.8668)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457072,Sedan,Box Truck,,, +09/12/2021,1:50,QUEENS,11104,40.746353,-73.91617,"(40.746353, -73.91617)",48 STREET,SKILLMAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455936,Sedan,Bike,,, +09/12/2021,18:30,BROOKLYN,11203,40.64401,-73.944954,"(40.64401, -73.944954)",,,517 EAST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4456338,Sedan,Sedan,Sedan,Sedan,Sedan +09/12/2021,18:48,MANHATTAN,10027,40.814575,-73.95539,"(40.814575, -73.95539)",,,1381 AMSTERDAM AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456722,Sedan,E-Bike,,, +09/12/2021,17:00,QUEENS,11420,40.683857,-73.806755,"(40.683857, -73.806755)",,,111-26 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4456393,Sedan,,,, +09/12/2021,22:52,BROOKLYN,11235,40.580193,-73.944916,"(40.580193, -73.944916)",HAMPTON AVENUE,HASTINGS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456961,Sedan,Sedan,,, +09/11/2021,2:21,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457184,Sedan,Bike,,, +09/12/2021,0:45,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455953,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,11:00,BRONX,10463,,,,HEATH AVENUE,WEST 193 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456406,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,7:30,MANHATTAN,10002,40.72066,-73.983284,"(40.72066, -73.983284)",,,162 ATTORNEY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4457104,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/11/2021,22:00,BROOKLYN,11222,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,APOLLO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,0:10,MANHATTAN,10034,40.867107,-73.92283,"(40.867107, -73.92283)",,,4880 BROADWAY,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4456846,Sedan,,,, +09/12/2021,5:18,BROOKLYN,11233,40.669975,-73.91988,"(40.669975, -73.91988)",HOWARD AVENUE,SAINT JOHNS PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455970,Sedan,Sedan,,, +09/12/2021,11:00,QUEENS,11379,40.716793,-73.88876,"(40.716793, -73.88876)",,,62-31 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456234,Sedan,,,, +09/12/2021,9:40,,,,,,MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4456468,Sedan,,,, +09/12/2021,18:35,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,2,0,1,0,0,0,0,0,Unsafe Speed,,,,,4456503,E-Scooter,,,, +09/12/2021,15:20,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,11:26,,,40.63204,-74.154755,"(40.63204, -74.154755)",,,448 WALKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456795,Sedan,Pick-up Truck,,, +09/12/2021,0:00,QUEENS,11361,40.76675,-73.7826,"(40.76675, -73.7826)",,,205-07 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456184,Sedan,,,, +09/12/2021,3:41,QUEENS,11372,40.749176,-73.8897,"(40.749176, -73.8897)",,,76-10 37 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456091,Sedan,,,, +09/12/2021,19:47,QUEENS,11421,40.69756,-73.85275,"(40.69756, -73.85275)",PARK LANE SOUTH,WOODHAVEN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457214,Sedan,Bike,,, +09/12/2021,7:50,QUEENS,11414,40.669876,-73.84741,"(40.669876, -73.84741)",SOUTH CONDUIT AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4456136,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,2:15,QUEENS,11368,40.75763,-73.865685,"(40.75763, -73.865685)",NORTHERN BOULEVARD,103 STREET,,1,0,1,0,0,0,0,0,,,,,,4456092,,,,, +04/18/2021,14:40,BRONX,10457,40.838333,-73.89678,"(40.838333, -73.89678)",,,1700 CROTONA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4408345,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,16:11,MANHATTAN,10036,,,,12 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4408599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,0:43,,,40.828407,-73.84392,"(40.828407, -73.84392)",BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408470,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,17:00,BROOKLYN,11203,40.659206,-73.93702,"(40.659206, -73.93702)",,,584 TROY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409002,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,21:45,MANHATTAN,10000,40.78055,-73.96169,"(40.78055, -73.96169)",,,10 TRANSVERSE ROAD NUMBER THREE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4408943,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,1:00,,,,,,QUEENSBORO BRIDGE,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408014,Sedan,Sedan,,, +09/12/2021,1:49,,,40.822308,-73.93859,"(40.822308, -73.93859)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4457137,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/18/2021,0:30,QUEENS,11691,40.60657,-73.75575,"(40.60657, -73.75575)",DIX AVENUE,PINSON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4408778,Sedan,Sedan,,, +04/18/2021,9:50,,,40.628,-74.15178,"(40.628, -74.15178)",LAKE AVENUE,RONALD AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4408515,Sedan,Sedan,,, +04/16/2021,5:20,MANHATTAN,10033,40.85358,-73.932236,"(40.85358, -73.932236)",WADSWORTH AVENUE,WEST 187 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408889,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2021,2:20,,,40.827774,-73.945755,"(40.827774, -73.945755)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408091,Sedan,E-Scooter,,, +04/18/2021,0:16,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",2 AVENUE,EAST 125 STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408540,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,19:00,BROOKLYN,11217,40.67931,-73.9785,"(40.67931, -73.9785)",,,109 5 AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4409065,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2021,0:00,BROOKLYN,11207,40.675632,-73.89878,"(40.675632, -73.89878)",ATLANTIC AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,1:30,BRONX,10458,40.85885,-73.885956,"(40.85885, -73.885956)",HOFFMAN STREET,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408142,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,21:09,QUEENS,11355,40.74891,-73.814095,"(40.74891, -73.814095)",OAK AVENUE,ROBINSON STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4408316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2021,18:30,MANHATTAN,10033,40.84931,-73.93002,"(40.84931, -73.93002)",AMSTERDAM AVENUE,WEST 183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408626,Sedan,Sedan,,, +04/18/2021,23:00,BROOKLYN,11221,40.692783,-73.91181,"(40.692783, -73.91181)",WILSON AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408683,Sedan,,,, +03/30/2021,9:00,,,40.62505,-74.01913,"(40.62505, -74.01913)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408785,Sedan,Sedan,,, +04/18/2021,6:30,,,40.678596,-73.882416,"(40.678596, -73.882416)",ESSEX STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4408806,Sedan,Sedan,Sedan,, +04/18/2021,0:10,,,40.612488,-73.89707,"(40.612488, -73.89707)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408272,Sedan,Sedan,,, +04/18/2021,5:08,BROOKLYN,11205,40.694687,-73.95521,"(40.694687, -73.95521)",MYRTLE AVENUE,SPENCER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408220,Van,Sedan,,, +04/18/2021,0:56,QUEENS,11385,40.705738,-73.912636,"(40.705738, -73.912636)",,,481 SENECA AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4408253,Sedan,Sedan,,, +04/18/2021,12:00,BROOKLYN,11204,40.62702,-73.98795,"(40.62702, -73.98795)",,,1640 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408236,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2021,14:45,BRONX,10463,40.876503,-73.904564,"(40.876503, -73.904564)",MAJOR DEEGAN EXPRESSWAY,WEST 230 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4409021,Sedan,Sedan,,, +04/18/2021,18:46,,,40.831974,-73.9235,"(40.831974, -73.9235)",EAST 165 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4408299,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,0:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4408168,Sedan,Sedan,,, +04/18/2021,4:25,BROOKLYN,11239,40.65317,-73.866875,"(40.65317, -73.866875)",ERSKINE STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408805,Sedan,,,, +04/18/2021,22:06,BRONX,10473,40.82201,-73.85827,"(40.82201, -73.85827)",WHITE PLAINS ROAD,LAFAYETTE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408491,Sedan,Sedan,,, +04/18/2021,16:17,MANHATTAN,10035,40.806973,-73.937645,"(40.806973, -73.937645)",EAST 128 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408555,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,18:50,BROOKLYN,11208,40.67492,-73.87528,"(40.67492, -73.87528)",FOUNTAIN AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4408821,Sedan,Motorcycle,,, +04/18/2021,19:30,MANHATTAN,10031,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,WEST 135 STREET,,6,0,1,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4408696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,19:05,BROOKLYN,11207,40.67567,-73.89785,"(40.67567, -73.89785)",ATLANTIC AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,7:22,,,40.844833,-73.909386,"(40.844833, -73.909386)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,12:25,QUEENS,11364,40.746178,-73.77095,"(40.746178, -73.77095)",,,58-53 206 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4408285,Sedan,Sedan,Pick-up Truck,, +04/18/2021,20:27,QUEENS,11429,40.707306,-73.75122,"(40.707306, -73.75122)",FRANCIS LEWIS BOULEVARD,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4408422,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,21:34,BROOKLYN,11201,40.69119,-73.9978,"(40.69119, -73.9978)",ATLANTIC AVENUE,HICKS STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4408676,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2021,14:08,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4408927,Motorcycle,,,, +04/18/2021,13:52,BRONX,10459,40.81986,-73.891304,"(40.81986, -73.891304)",,,985 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4408323,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,15:40,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408378,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,1:30,BRONX,10451,40.820198,-73.921486,"(40.820198, -73.921486)",MORRIS AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409043,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,15:10,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4408240,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/15/2021,9:15,QUEENS,11372,40.750626,-73.87595,"(40.750626, -73.87595)",37 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,Other Vehicular,,,4408888,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/17/2021,16:09,BROOKLYN,11239,40.651676,-73.869225,"(40.651676, -73.869225)",,,455 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408798,Sedan,Sedan,,, +04/18/2021,15:00,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408873,Sedan,Sedan,,, +04/18/2021,12:40,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4408482,Box Truck,Sedan,,, +04/18/2021,15:52,MANHATTAN,10034,40.8651,-73.92189,"(40.8651, -73.92189)",SHERMAN AVENUE,WEST 204 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4408541,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/18/2021,0:05,QUEENS,11412,40.700687,-73.766815,"(40.700687, -73.766815)",JORDAN AVENUE,HANNIBAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408390,Sedan,,,, +04/18/2021,18:45,,,40.715958,-73.81275,"(40.715958, -73.81275)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4408642,Sedan,Taxi,Sedan,, +04/18/2021,12:30,BROOKLYN,11228,40.616753,-74.011116,"(40.616753, -74.011116)",,,8117 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408334,Station Wagon/Sport Utility Vehicle,,,, +04/07/2021,9:30,BROOKLYN,11238,40.675655,-73.96313,"(40.675655, -73.96313)",,,653 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408899,Sedan,,,, +04/18/2021,1:00,,,,,,SEDGWICK AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4408584,Taxi,,,, +04/18/2021,21:00,BROOKLYN,11238,40.67752,-73.972725,"(40.67752, -73.972725)",FLATBUSH AVENUE,PARK PLACE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4408407,Sedan,Sedan,,, +04/17/2021,14:30,,,40.66336,-73.95975,"(40.66336, -73.95975)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409007,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/12/2021,5:12,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456209,Sedan,Bike,,, +04/18/2021,1:12,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,EAST 181 STREET,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4408585,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,11:00,,,40.8166,-73.942764,"(40.8166, -73.942764)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408521,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,14:00,,,,,,BELT PARKWAY WESTBOUND,INWOOD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4408991,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2021,1:07,,,40.63932,-74.02356,"(40.63932, -74.02356)",3 AVENUE,65 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4408015,Sedan,Sedan,,, +04/17/2021,17:00,,,40.734688,-73.99998,"(40.734688, -73.99998)",GREENWICH AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4409059,Sedan,Bike,Bike,, +04/18/2021,12:30,BRONX,10455,40.819195,-73.912506,"(40.819195, -73.912506)",,,704 BROOK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408371,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,8:59,BRONX,10461,40.857014,-73.84307,"(40.857014, -73.84307)",,,1500 PELHAM PARKWAY SOUTH,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4408852,Sedan,Sedan,Sedan,Sedan,Sedan +04/16/2021,15:55,BRONX,10467,40.867928,-73.869255,"(40.867928, -73.869255)",ARNOW AVENUE,BARKER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408937,Sedan,Taxi,,, +04/18/2021,1:00,,,40.827206,-73.94246,"(40.827206, -73.94246)",SAINT NICHOLAS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408092,Sedan,Sedan,,, +09/12/2021,1:20,BROOKLYN,11210,40.632145,-73.952736,"(40.632145, -73.952736)",BEDFORD AVENUE,CAMPUS ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4455987,Sedan,Sedan,,, +04/18/2021,20:40,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408530,Ambulance,Station Wagon/Sport Utility Vehicle,,, +03/26/2021,17:15,MANHATTAN,10012,,,,,,253 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4409069,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +04/18/2021,16:32,QUEENS,11436,40.669823,-73.78883,"(40.669823, -73.78883)",150 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408394,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,6:16,BROOKLYN,11207,40.67148,-73.898674,"(40.67148, -73.898674)",ALABAMA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408833,Sedan,,,, +03/11/2021,14:13,,,40.723347,-73.939316,"(40.723347, -73.939316)",MORGAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Aggressive Driving/Road Rage,,,,4408896,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,22:00,QUEENS,11419,40.693817,-73.82212,"(40.693817, -73.82212)",95 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408471,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,3:10,,,40.80616,-73.927986,"(40.80616, -73.927986)",ALEXANDER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409042,Sedan,,,, +04/18/2021,15:15,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,0:40,QUEENS,11385,40.706497,-73.89695,"(40.706497, -73.89695)",FRESH POND ROAD,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408254,Taxi,,,, +04/18/2021,2:36,,,,,,THROGS NECK BRIDGE,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4408710,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,4:33,,,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408348,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,15:19,BROOKLYN,11207,40.67534,-73.89675,"(40.67534, -73.89675)",,,101 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408817,Bus,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,2:58,,,40.632664,-74.15353,"(40.632664, -74.15353)",,,154 VANNAME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,14:50,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4408595,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,21:00,,,40.57279,-73.99597,"(40.57279, -73.99597)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408726,Sedan,,,, +04/18/2021,15:25,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",SUNRISE HIGHWAY,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408245,Sedan,,,, +04/18/2021,22:05,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408418,Sedan,Tractor Truck Diesel,,, +04/18/2021,0:55,QUEENS,11375,40.7243,-73.84517,"(40.7243, -73.84517)",108 STREET,69 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408330,Sedan,E-Bike,,, +09/12/2021,18:35,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456383,Motorcycle,,,, +03/28/2021,14:21,,,40.8382,-73.92371,"(40.8382, -73.92371)",WEST 168 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4408928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,13:47,BROOKLYN,11213,40.663902,-73.93993,"(40.663902, -73.93993)",EMPIRE BOULEVARD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409006,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,23:14,,,40.662807,-73.89646,"(40.662807, -73.89646)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4408822,Sedan,,,, +04/18/2021,18:20,BROOKLYN,11229,40.60988,-73.95461,"(40.60988, -73.95461)",,,1635 EAST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408341,Sedan,,,, +04/18/2021,14:06,,,40.761093,-73.98327,"(40.761093, -73.98327)",WEST 50 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4408437,Sedan,Carry All,,, +04/18/2021,4:15,BROOKLYN,11226,40.643856,-73.95175,"(40.643856, -73.95175)",,,1070 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4408911,Sedan,Sedan,Sedan,, +04/18/2021,23:56,,,40.770527,-73.98012,"(40.770527, -73.98012)",CENTRAL PARK WEST,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4408695,Sedan,,,, +04/18/2021,2:40,BROOKLYN,11226,40.643005,-73.95263,"(40.643005, -73.95263)",CLARENDON ROAD,EAST 26 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4408137,Sedan,Sedan,,, +04/18/2021,23:30,BROOKLYN,11207,40.674118,-73.89839,"(40.674118, -73.89839)",GEORGIA AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408809,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,3:05,,,40.61501,-73.99102,"(40.61501, -73.99102)",70 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408301,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,20:00,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",PARK AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408766,Sedan,,,, +04/18/2021,12:45,QUEENS,11364,40.758427,-73.75626,"(40.758427, -73.75626)",CLOVERDALE BOULEVARD,BIRMINGTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408622,Sedan,Sedan,,, +04/18/2021,14:38,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408488,Sedan,Motorcycle,,, +04/18/2021,1:04,,,,,,MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409019,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,4:55,,,,,,FDR DRIVE,EAST 44 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408547,Sedan,,,, +04/15/2021,20:43,BROOKLYN,11217,40.675095,-73.97504,"(40.675095, -73.97504)",7 AVENUE,BERKELEY PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408922,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,11:40,QUEENS,11422,40.653313,-73.74646,"(40.653313, -73.74646)",148 DRIVE,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:01,,,40.675297,-73.87268,"(40.675297, -73.87268)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408818,Sedan,Sedan,,, +04/18/2021,12:10,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",EAST 34 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408875,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,23:24,QUEENS,11411,40.69454,-73.74047,"(40.69454, -73.74047)",,,117-32 220 STREET,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4408431,Sedan,Sedan,,, +04/18/2021,9:00,MANHATTAN,10038,40.713444,-73.99854,"(40.713444, -73.99854)",CHATHAM SQUARE,MOTT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408784,Station Wagon/Sport Utility Vehicle,Van,,, +04/18/2021,9:20,BROOKLYN,11212,40.668766,-73.908134,"(40.668766, -73.908134)",,,59 BELMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408161,Sedan,,,, +04/18/2021,16:30,BROOKLYN,11218,40.64098,-73.9731,"(40.64098, -73.9731)",,,615 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408574,Sedan,Sedan,,, +04/18/2021,18:35,,,40.62752,-74.04113,"(40.62752, -74.04113)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Driver Inexperience,Unspecified,,,,4408270,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,4:20,BRONX,10453,40.855785,-73.90558,"(40.855785, -73.90558)",EAST 181 STREET,JEROME AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4408586,Taxi,Sedan,,, +04/18/2021,14:20,,,40.8086,-73.909775,"(40.8086, -73.909775)",CONCORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408366,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,21:55,BROOKLYN,11218,40.647617,-73.971214,"(40.647617, -73.971214)",CONEY ISLAND AVENUE,FRIEL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408573,Sedan,Sedan,,, +03/22/2021,12:53,BRONX,10468,40.880478,-73.88594,"(40.880478, -73.88594)",PAUL AVENUE,WEST MOSHOLU PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408964,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,12:40,,,40.82677,-73.856155,"(40.82677, -73.856155)",BRUCKNER BOULEVARD,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408481,Sedan,,,, +04/18/2021,15:35,,,40.661743,-73.94784,"(40.661743, -73.94784)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408994,Sedan,,,, +04/18/2021,0:27,,,,,,CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4408016,Sedan,,,, +04/15/2021,11:45,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4409061,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +04/18/2021,23:55,,,40.603832,-74.06895,"(40.603832, -74.06895)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408848,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,20:52,QUEENS,11412,40.69612,-73.74619,"(40.69612, -73.74619)",LINDEN BOULEVARD,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408746,Sedan,,,, +04/18/2021,17:38,QUEENS,11422,40.674206,-73.72755,"(40.674206, -73.72755)",HOOK CREEK BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4408244,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,14:30,BROOKLYN,11233,40.681118,-73.90868,"(40.681118, -73.90868)",,,15 STONE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408246,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,14:00,BRONX,10468,40.87023,-73.90061,"(40.87023, -73.90061)",WEST 195 STREET,CLAFLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408660,Taxi,Sedan,,, +04/17/2021,11:35,,,40.732254,-73.99636,"(40.732254, -73.99636)",WEST 8 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409058,Bike,Bike,,, +04/18/2021,18:03,QUEENS,11379,40.721485,-73.86658,"(40.721485, -73.86658)",WOODHAVEN BOULEVARD,64 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408284,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,13:30,BROOKLYN,11236,40.643986,-73.887085,"(40.643986, -73.887085)",EAST 108 STREET,AVENUE L,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4408711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,22:34,BRONX,10460,40.83101,-73.88672,"(40.83101, -73.88672)",,,1012 JENNINGS STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4408338,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,8:00,BROOKLYN,11208,40.67986,-73.86926,"(40.67986, -73.86926)",,,415 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408801,Sedan,,,, +04/18/2021,1:15,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408180,Sedan,Sedan,,, +04/18/2021,12:10,BRONX,10463,40.88699,-73.90146,"(40.88699, -73.90146)",TIBBETT AVENUE,WEST 240 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4408663,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,19:38,QUEENS,11412,40.6934,-73.75602,"(40.6934, -73.75602)",196 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408792,Sedan,Sedan,,, +04/16/2021,10:53,BROOKLYN,11208,40.664894,-73.881325,"(40.664894, -73.881325)",,,811 CLEVELAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408816,Pick-up Truck,,,, +04/18/2021,6:51,QUEENS,11372,40.74656,-73.89413,"(40.74656, -73.89413)",,,71-24 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408218,Sedan,Sedan,,, +09/12/2021,20:55,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456417,Taxi,Sedan,,, +04/18/2021,20:15,QUEENS,11377,40.74668,-73.90072,"(40.74668, -73.90072)",39 AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408327,Sedan,Pick-up Truck,Sedan,, +04/18/2021,14:40,BROOKLYN,11234,40.61897,-73.92668,"(40.61897, -73.92668)",,,5009 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4408534,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,11:50,,,40.609505,-74.181885,"(40.609505, -74.181885)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408847,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2021,8:59,MANHATTAN,10029,40.791084,-73.953445,"(40.791084, -73.953445)",5 AVENUE,EAST 101 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4409033,Station Wagon/Sport Utility Vehicle,Bus,,, +04/18/2021,14:55,BROOKLYN,11229,40.59487,-73.95056,"(40.59487, -73.95056)",OCEAN AVENUE,AVENUE W,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4408238,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,22:38,BRONX,10458,40.864334,-73.89322,"(40.864334, -73.89322)",,,2615 BRIGGS AVENUE,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408349,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,5:00,,,40.858986,-73.89382,"(40.858986, -73.89382)",EAST 187 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408146,Sedan,,,, +04/18/2021,11:12,MANHATTAN,10018,40.75591,-73.99448,"(40.75591, -73.99448)",WEST 38 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408303,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,21:15,QUEENS,11101,40.75184,-73.94806,"(40.75184, -73.94806)",11 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4408629,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/18/2021,16:17,,,,,,Duane road,totten road,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408293,Station Wagon/Sport Utility Vehicle,PK,,, +04/12/2021,8:35,BROOKLYN,11223,40.600426,-73.984955,"(40.600426, -73.984955)",AVENUE S,WEST 13 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408957,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,12:06,BROOKLYN,11207,40.675457,-73.889465,"(40.675457, -73.889465)",,,551 LIBERTY AVENUE,1,0,1,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4408802,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/18/2021,18:40,QUEENS,11412,40.696186,-73.751976,"(40.696186, -73.751976)",201 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4408395,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/12/2021,20:08,QUEENS,11101,40.74046,-73.93727,"(40.74046, -73.93727)",HUNTERS POINT AVENUE,30 PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456834,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,16:45,BROOKLYN,11234,,,,,,4509 AVENUE M,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456508,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,16:00,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456817,Sedan,Sedan,,, +04/18/2021,14:30,,,40.62341,-74.16354,"(40.62341, -74.16354)",,,22 AMADOR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,20:45,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,CRESCENT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4408893,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/18/2021,13:15,,,40.77077,-73.91727,"(40.77077, -73.91727)",ASTORIA BOULEVARD,31 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408383,Sedan,Sedan,,, +04/06/2021,6:05,BRONX,10452,40.843204,-73.91196,"(40.843204, -73.91196)",MOUNT EDEN PARKWAY,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inexperience,Backing Unsafely,,,,4408929,Sedan,Sedan,,, +04/18/2021,2:15,BRONX,10467,40.878834,-73.87324,"(40.878834, -73.87324)",,,333B EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4408373,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,8:16,,,40.72948,-73.9721,"(40.72948, -73.9721)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4408108,Sedan,,,, +04/15/2021,20:40,BROOKLYN,11203,40.660072,-73.93974,"(40.660072, -73.93974)",ALBANY AVENUE,RUTLAND ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408998,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/18/2021,9:30,QUEENS,11379,40.720154,-73.87531,"(40.720154, -73.87531)",80 STREET,JUNIPER BOULEVARD SOUTH,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4408256,Sedan,Sedan,,, +04/18/2021,15:30,MANHATTAN,10019,40.76948,-73.98831,"(40.76948, -73.98831)",,,881 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,21:35,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",EAST 165 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409070,Sedan,Sedan,,, +04/18/2021,1:47,BRONX,10469,40.880768,-73.84954,"(40.880768, -73.84954)",,,1149 EAST 221 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4408858,Sedan,Sedan,Sedan,Sedan, +04/18/2021,0:08,BRONX,10473,40.82628,-73.843414,"(40.82628, -73.843414)",ZEREGA AVENUE,STORY AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4408476,GARBAGE TR,Sedan,,, +04/18/2021,0:00,BROOKLYN,11223,40.60275,-73.96392,"(40.60275, -73.96392)",AVENUE S,EAST 8 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408617,Sedan,,,, +04/18/2021,17:10,,,40.67079,-73.903275,"(40.67079, -73.903275)",PITKIN AVENUE,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4408877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,13:50,QUEENS,11433,40.700325,-73.78904,"(40.700325, -73.78904)",MERRICK BOULEVARD,106 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408417,Sedan,,,, +04/16/2021,12:30,BROOKLYN,11217,40.679615,-73.9737,"(40.679615, -73.9737)",,,79 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408986,Sedan,,,, +04/17/2021,3:10,BROOKLYN,11225,40.66339,-73.95092,"(40.66339, -73.95092)",,,1025 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409005,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,18:49,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,MENAHAN STREET,,0,1,0,0,0,0,0,1,Driver Inattention/Distraction,Unspecified,,,,4408694,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,17:55,BROOKLYN,11223,40.590195,-73.97435,"(40.590195, -73.97435)",,,2965 86 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408342,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/12/2021,6:00,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",REMSEN AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456048,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,23:35,BROOKLYN,11207,40.677395,-73.89897,"(40.677395, -73.89897)",,,15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408823,Sedan,,,, +04/18/2021,14:04,,,40.8252,-73.867714,"(40.8252, -73.867714)",BRUCKNER BOULEVARD,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408487,Sedan,Box Truck,,, +04/18/2021,14:10,BROOKLYN,11230,40.618443,-73.969406,"(40.618443, -73.969406)",,,1236 OCEAN PARKWAY,1,0,1,0,0,0,0,0,,,,,,4408576,,,,, +04/14/2021,12:40,,,40.790623,-73.942444,"(40.790623, -73.942444)",2 AVENUE,,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4408905,Bike,,,, +04/18/2021,0:20,,,40.849167,-73.92393,"(40.849167, -73.92393)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4408587,Sedan,Sedan,Sedan,, +04/18/2021,19:30,BROOKLYN,11217,40.68008,-73.971405,"(40.68008, -73.971405)",BERGEN STREET,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408923,Bike,Bike,,, +04/18/2021,0:48,BROOKLYN,11236,40.644863,-73.91113,"(40.644863, -73.91113)",FOSTER AVENUE,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408029,Sedan,Sedan,,, +04/18/2021,16:30,,,40.734577,-74.010025,"(40.734577, -74.010025)",PERRY STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409063,Sedan,Convertible,,, +04/17/2021,22:20,BROOKLYN,11236,40.64433,-73.919914,"(40.64433, -73.919914)",RALPH AVENUE,CANARSIE LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408987,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,14:00,,,40.779488,-73.920135,"(40.779488, -73.920135)",19 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,2:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4408751,Motorcycle,,,, +04/18/2021,17:19,QUEENS,11693,40.584454,-73.812965,"(40.584454, -73.812965)",SHORE FRONT PARKWAY,BEACH 91 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408247,Sedan,Sedan,,, +04/18/2021,6:26,QUEENS,11432,,,,,,8647 164 street,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4408715,Sedan,,,, +04/18/2021,18:02,,,40.65777,-73.93962,"(40.65777, -73.93962)",ALBANY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409009,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,22:00,,,40.780552,-73.94427,"(40.780552, -73.94427)",EAST 93 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408863,Sedan,,,, +04/18/2021,16:26,,,40.65768,-73.925415,"(40.65768, -73.925415)",REMSEN AVENUE,CLARKSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4408500,Sedan,,,, +09/12/2021,6:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456193,Sedan,Sedan,,, +04/17/2021,12:20,BROOKLYN,11207,40.66386,-73.885956,"(40.66386, -73.885956)",MC CLANCY PLACE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4408819,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,21:07,,,40.85154,-73.918335,"(40.85154, -73.918335)",POPHAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4408631,Sedan,Sedan,Sedan,Sedan,Sedan +04/18/2021,2:15,,,40.766617,-73.8389,"(40.766617, -73.8389)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4408292,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,23:37,,,40.643204,-73.90929,"(40.643204, -73.90929)",FARRAGUT ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4408336,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/18/2021,10:50,BROOKLYN,11214,40.59188,-73.99111,"(40.59188, -73.99111)",HARWAY AVENUE,BAY 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408183,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,14:52,BROOKLYN,11207,40.68979,-73.90655,"(40.68979, -73.90655)",WILSON AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408671,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,22:27,,,,,,NORTH CONDUIT AVENUE,135 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4408425,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,20:58,BRONX,10459,40.82099,-73.89589,"(40.82099, -73.89589)",EAST 163 STREET,KELLY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409055,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,7:40,QUEENS,11356,40.778603,-73.846115,"(40.778603, -73.846115)",23 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408295,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,18:06,BROOKLYN,11235,40.577908,-73.94354,"(40.577908, -73.94354)",IRWIN STREET,ORIENTAL BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4408343,Sedan,,,, +04/18/2021,17:45,BROOKLYN,11208,40.687214,-73.86715,"(40.687214, -73.86715)",,,164 ELDERTS LANE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408824,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/17/2021,23:35,,,40.668118,-73.89292,"(40.668118, -73.89292)",BLAKE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4408794,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,16:16,BROOKLYN,11207,40.67098,-73.884384,"(40.67098, -73.884384)",SUTTER AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408803,Sedan,Sedan,,, +04/18/2021,0:57,BROOKLYN,11219,40.626583,-74.0009,"(40.626583, -74.0009)",64 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408177,Sedan,Sedan,,, +04/18/2021,17:25,BROOKLYN,11230,40.630283,-73.9771,"(40.630283, -73.9771)",,,968 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408572,Sedan,Sedan,,, +04/18/2021,15:13,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408243,Sedan,Motorcycle,,, +04/18/2021,0:00,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408692,Sedan,Sedan,,, +04/18/2021,0:35,BRONX,10458,,,,CROTONA AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408145,Taxi,,,, +04/18/2021,21:30,BROOKLYN,11249,40.700233,-73.95988,"(40.700233, -73.95988)",WYTHE AVENUE,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408358,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,22:05,MANHATTAN,10032,40.83349,-73.94158,"(40.83349, -73.94158)",WEST 158 STREET,AMSTERDAM AVENUE,,3,0,1,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4408787,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,23:00,,,40.63574,-74.02605,"(40.63574, -74.02605)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408627,Sedan,,,, +04/18/2021,15:50,MANHATTAN,10010,40.74357,-73.992325,"(40.74357, -73.992325)",WEST 24 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,9:13,BROOKLYN,11225,40.65717,-73.94921,"(40.65717, -73.94921)",,,325 WINTHROP STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4409003,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/16/2021,13:17,,,,,,SEDGWICK AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4408930,Tractor Truck Diesel,Taxi,,, +04/18/2021,8:00,BROOKLYN,11211,40.712864,-73.94013,"(40.712864, -73.94013)",POWERS STREET,JUDGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408444,Sedan,,,, +04/18/2021,23:00,QUEENS,11434,40.68049,-73.774704,"(40.68049, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408399,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,4:00,BROOKLYN,11207,40.678715,-73.89281,"(40.678715, -73.89281)",,,110 MILLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408835,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,9:05,MANHATTAN,10065,40.76578,-73.96495,"(40.76578, -73.96495)",,,151 EAST 65 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,3:40,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408477,Sedan,Sedan,,, +04/18/2021,19:15,,,40.73448,-73.92243,"(40.73448, -73.92243)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408268,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,16:14,MANHATTAN,10019,40.76273,-73.97835,"(40.76273, -73.97835)",,,1350 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4408237,Van,,,, +03/28/2021,23:00,BROOKLYN,11236,40.65144,-73.89539,"(40.65144, -73.89539)",,,620 EAST 108 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409023,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,17:33,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408702,Pick-up Truck,Motorcycle,,, +04/18/2021,8:55,BROOKLYN,11207,40.675713,-73.897354,"(40.675713, -73.897354)",,,2629 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Accelerator Defective,,,,,4408807,Sedan,,,, +04/18/2021,20:20,QUEENS,11354,,,,NORTHERN BOULEVARD,PRINCE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408311,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,7:00,,,40.60266,-74.18408,"(40.60266, -74.18408)",SOUTH AVENUE,TRAVIS AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4408514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,16:21,,,,,,Cypress avenue,Cypress hill street,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4456348,Sedan,MOPED,,, +09/12/2021,18:14,BRONX,10457,40.84434,-73.90359,"(40.84434, -73.90359)",EAST 174 STREET,CARTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456502,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/18/2021,9:30,BROOKLYN,11226,40.647976,-73.959564,"(40.647976, -73.959564)",,,266 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408219,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,0:15,,,40.76874,-73.90881,"(40.76874, -73.90881)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,,4408133,Sedan,Sedan,Sedan,, +04/18/2021,16:30,BROOKLYN,11235,40.578625,-73.966675,"(40.578625, -73.966675)",BRIGHTON 1 STREET,OCEANVIEW AVENUE,,3,0,0,0,0,0,3,0,Steering Failure,Unspecified,,,,4408372,Sedan,Sedan,,, +04/18/2021,22:21,,,40.604095,-74.020355,"(40.604095, -74.020355)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4408535,Sedan,,,, +04/18/2021,18:30,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408326,Pick-up Truck,,,, +04/18/2021,15:30,BROOKLYN,11221,40.687332,-73.927795,"(40.687332, -73.927795)",,,758 MADISON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408946,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,8:50,,,40.663605,-73.934395,"(40.663605, -73.934395)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408999,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,19:30,,,,,,HARLEM RIVER DRIVE,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4408853,Taxi,,,, +04/16/2021,7:10,BRONX,10457,40.844883,-73.91028,"(40.844883, -73.91028)",SELWYN AVENUE,EAST 174 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409071,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,16:38,QUEENS,11106,40.76197,-73.92539,"(40.76197, -73.92539)",31 STREET,BROADWAY,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4408384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,21:55,QUEENS,11368,40.757793,-73.861916,"(40.757793, -73.861916)",107 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408884,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,0:53,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408674,Sedan,Sedan,,, +04/18/2021,12:38,,,40.652954,-74.00215,"(40.652954, -74.00215)",5 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408248,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2021,15:08,QUEENS,11436,40.67431,-73.800644,"(40.67431, -73.800644)",140 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4408757,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +04/18/2021,4:45,QUEENS,11368,40.747135,-73.85978,"(40.747135, -73.85978)",,,104-32 45 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409049,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,13:00,BROOKLYN,11215,40.659863,-73.97752,"(40.659863, -73.97752)",PROSPECT PARK SOUTHWEST,10 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4408634,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,16:24,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408241,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,18:19,,,40.784157,-73.98487,"(40.784157, -73.98487)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4457046,Sedan,,,, +04/16/2021,7:00,BROOKLYN,11208,,,,,,1258 BLAKE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408815,Sedan,Sedan,,, +04/18/2021,0:15,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,7:24,,,40.857166,-73.92824,"(40.857166, -73.92824)",FORT GEORGE HILL,,,1,0,0,0,0,0,1,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4408192,Sedan,Sedan,,, +09/06/2020,18:05,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unsafe Lane Changing,Following Too Closely,,,,4345591,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/18/2021,8:45,BROOKLYN,11211,40.71514,-73.94787,"(40.71514, -73.94787)",,,316 LEONARD STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4408869,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/18/2021,21:20,BROOKLYN,11212,40.654163,-73.91163,"(40.654163, -73.91163)",,,1 BROOKDALE PLAZA,1,0,1,0,0,0,0,0,,,,,,4408485,,,,, +04/16/2021,21:36,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408980,Sedan,,,, +04/11/2021,15:00,,,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4408989,Sedan,Bus,,, +04/18/2021,0:00,QUEENS,11429,40.7087,-73.74765,"(40.7087, -73.74765)",HOLLIS AVENUE,210 STREET,,2,0,0,0,0,0,2,0,Fell Asleep,,,,,4408081,Sedan,,,, +04/18/2021,15:40,,,40.8518,-73.909225,"(40.8518, -73.909225)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408567,Motorbike,Sedan,,, +04/18/2021,21:00,,,40.74094,-74.007484,"(40.74094, -74.007484)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409064,Sedan,Sedan,,, +04/18/2021,3:40,QUEENS,11105,40.77386,-73.90749,"(40.77386, -73.90749)",DITMARS BOULEVARD,37 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4408381,Sedan,Dump,,, +04/18/2021,4:15,BROOKLYN,11207,40.65993,-73.891655,"(40.65993, -73.891655)",PENNSYLVANIA AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408820,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/18/2021,16:30,QUEENS,11412,40.69238,-73.762436,"(40.69238, -73.762436)",DUNKIRK DRIVE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408423,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,2:50,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408581,Sedan,Sedan,,, +04/18/2021,10:08,MANHATTAN,10032,40.83907,-73.94353,"(40.83907, -73.94353)",,,115 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408291,Sedan,,,, +04/18/2021,0:30,,,40.879196,-73.86159,"(40.879196, -73.86159)",BARNES AVENUE,EAST 214 STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408175,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,20:30,QUEENS,11432,40.720623,-73.80433,"(40.720623, -73.80433)",,,80-64 164 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4408716,Sedan,Dirt Bike,,, +04/17/2021,3:05,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4408832,Sedan,,,, +04/18/2021,14:00,BRONX,10457,40.842678,-73.899376,"(40.842678, -73.899376)",EAST 174 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408344,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,18:59,BROOKLYN,11228,40.62677,-74.01501,"(40.62677, -74.01501)",FORT HAMILTON PARKWAY,73 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4408335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/16/2021,0:00,BROOKLYN,11208,40.68518,-73.873665,"(40.68518, -73.873665)",RIDGEWOOD AVENUE,PINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408797,Tractor Truck Diesel,Sedan,,, +04/18/2021,14:45,,,40.695312,-73.79911,"(40.695312, -73.79911)",154 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,18:25,,,40.641895,-73.93324,"(40.641895, -73.93324)",AVENUE D,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408494,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,21:40,BROOKLYN,11225,40.661915,-73.944916,"(40.661915, -73.944916)",,,532 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409008,Sedan,Sedan,,, +04/18/2021,22:44,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408924,Sedan,,,, +04/18/2021,0:33,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4408542,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,22:34,BROOKLYN,11233,40.676174,-73.91931,"(40.676174, -73.91931)",,,334 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408386,Sedan,Sedan,,, +04/15/2021,17:35,,,40.76981,-73.86773,"(40.76981, -73.86773)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408886,Sedan,Sedan,,, +04/18/2021,14:30,BROOKLYN,11218,40.64315,-73.97548,"(40.64315, -73.97548)",EAST 5 STREET,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408902,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,16:10,,,40.698963,-73.91864,"(40.698963, -73.91864)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4408932,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2021,16:05,MANHATTAN,10001,40.747276,-73.989624,"(40.747276, -73.989624)",AVENUE OF THE AMERICAS,WEST 30 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408447,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,14:50,,,40.78316,-73.98048,"(40.78316, -73.98048)",BROADWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4457215,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,11:28,BRONX,10463,40.88377,-73.89828,"(40.88377, -73.89828)",,,3650 BAILEY AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4456246,Sedan,Sedan,,, +09/12/2021,3:40,,,40.65355,-73.86232,"(40.65355, -73.86232)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456318,Sedan,Sedan,,, +08/27/2021,9:15,MANHATTAN,10035,40.80574,-73.942764,"(40.80574, -73.942764)",5 AVENUE,WEST 124 STREET,,1,1,1,1,0,0,0,0,Unspecified,,,,,4457151,Sedan,,,, +09/12/2021,9:25,BRONX,10458,40.856403,-73.89213,"(40.856403, -73.89213)",WASHINGTON AVENUE,EAST 185 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456103,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,16:45,QUEENS,11360,40.777596,-73.779724,"(40.777596, -73.779724)",,,210-31 26 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,0:40,MANHATTAN,10035,40.801918,-73.94344,"(40.801918, -73.94344)",EAST 119 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456552,Sedan,Sedan,,, +09/12/2021,22:20,,,40.56935,-74.11089,"(40.56935, -74.11089)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,15:50,QUEENS,11432,40.708645,-73.789406,"(40.708645, -73.789406)",,,90-16 171 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456896,Sedan,Sedan,,, +09/01/2021,13:47,,,40.609364,-74.12128,"(40.609364, -74.12128)",MANOR ROAD,SOUTH GANNON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457118,Sedan,Sedan,,, +09/12/2021,3:58,BROOKLYN,11237,0,0,"(0.0, 0.0)",STEWART AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4456379,Sedan,,,, +09/06/2021,18:25,STATEN ISLAND,10301,40.642242,-74.0752,"(40.642242, -74.0752)",RICHMOND TERRACE,BAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457079,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,14:50,,,40.586002,-73.97221,"(40.586002, -73.97221)",AVENUE Z,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456413,Sedan,,,, +09/12/2021,10:25,BROOKLYN,11208,0,0,"(0.0, 0.0)",FLATLANDS AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4456327,Taxi,Sedan,,, +09/12/2021,10:34,BRONX,10454,40.805088,-73.91561,"(40.805088, -73.91561)",,,600 EAST 137 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4456479,Sedan,,,, +09/11/2021,3:01,,,,,,LIE OUTER ROADWAY (CDR),,,2,1,0,0,0,0,1,1,Alcohol Involvement,Unspecified,Unspecified,,,4457192,Sedan,Motorcycle,E-Bike,, +09/12/2021,5:20,QUEENS,11356,40.790718,-73.84991,"(40.790718, -73.84991)",119 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4456256,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,22:25,BROOKLYN,11206,40.70219,-73.928345,"(40.70219, -73.928345)",WILSON AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4457023,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,20:49,,,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4457219,Sedan,Sedan,,, +09/12/2021,13:19,QUEENS,11103,40.758602,-73.91379,"(40.758602, -73.91379)",45 STREET,NEWTOWN ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456444,Sedan,Bike,,, +09/12/2021,14:00,,,40.641304,-73.94276,"(40.641304, -73.94276)",BROOKLYN AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456339,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/12/2021,14:11,QUEENS,11103,40.75982,-73.91456,"(40.75982, -73.91456)",,,43-12 NEWTOWN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4456445,Taxi,,,, +09/12/2021,22:12,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4456394,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,5:25,,,40.603493,-74.067345,"(40.603493, -74.067345)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457092,Station Wagon/Sport Utility Vehicle,Carry All,,, +09/12/2021,1:39,,,40.711876,-73.73029,"(40.711876, -73.73029)",HEMPSTEAD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455939,Sedan,,,, +09/10/2021,17:09,BROOKLYN,11211,40.71548,-73.94285,"(40.71548, -73.94285)",,,387 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457159,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/12/2021,0:00,BROOKLYN,11207,40.670856,-73.8852,"(40.670856, -73.8852)",SUTTER AVENUE,WARWICK STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4456299,Sedan,Sedan,,, +09/12/2021,22:05,,,40.736496,-73.909225,"(40.736496, -73.909225)",58 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456877,E-Bike,,,, +09/08/2021,1:30,MANHATTAN,10023,40.77077,-73.980675,"(40.77077, -73.980675)",,,15 WEST 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457218,Taxi,Sedan,,, +09/10/2021,20:45,QUEENS,11355,40.749825,-73.818275,"(40.749825, -73.818275)",KALMIA AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4457070,Sedan,,,, +09/12/2021,3:20,BROOKLYN,11211,40.703434,-73.96035,"(40.703434, -73.96035)",BEDFORD AVENUE,WILLIAMSBURG STREET WEST,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4455955,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/11/2021,4:56,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4457106,Sedan,PK,,, +09/12/2021,10:15,QUEENS,11358,40.765358,-73.80237,"(40.765358, -73.80237)",163 STREET,35 AVENUE,,2,0,0,0,0,0,2,0,Obstruction/Debris,Unspecified,,,,4456255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,7:55,BRONX,10458,40.856403,-73.89213,"(40.856403, -73.89213)",WASHINGTON AVENUE,EAST 185 STREET,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4456398,Sedan,Sedan,,, +09/11/2021,4:00,BROOKLYN,11222,40.735226,-73.958466,"(40.735226, -73.958466)",,,268 FRANKLIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457170,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/12/2021,9:50,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4456330,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,16:32,BROOKLYN,11219,40.626183,-73.994156,"(40.626183, -73.994156)",60 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456842,Sedan,Moped,,, +09/12/2021,17:00,,,40.882393,-73.83623,"(40.882393, -73.83623)",BOSTON ROAD,BOLLER AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4457008,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,2:52,MANHATTAN,10031,40.825138,-73.9514,"(40.825138, -73.9514)",BROADWAY,WEST 143 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456366,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,23:40,BROOKLYN,11220,40.637756,-74.00721,"(40.637756, -74.00721)",56 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457149,Station Wagon/Sport Utility Vehicle,Bike,,, +09/12/2021,9:13,,,40.84023,-73.880104,"(40.84023, -73.880104)",EAST TREMONT AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456101,Taxi,Box Truck,,, +09/12/2021,1:30,,,,,,BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4456139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,0:34,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,Driver Inattention/Distraction,,,4456524,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/12/2021,3:41,QUEENS,11378,40.728146,-73.9003,"(40.728146, -73.9003)",,,53-62 65 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4457240,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/12/2021,16:05,,,40.62707,-74.01865,"(40.62707, -74.01865)",BAY RIDGE PARKWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4456270,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,14:30,BROOKLYN,11235,40.5778,-73.96057,"(40.5778, -73.96057)",BRIGHTON BEACH AVENUE,BRIGHTON 7 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4456823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,21:49,,,40.638523,-73.97319,"(40.638523, -73.97319)",OCEAN PARKWAY,,,2,0,0,0,1,0,1,0,Unspecified,Unspecified,,,,4457183,Minicycle,Bike,,, +09/12/2021,1:54,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456082,Sedan,Sedan,,, +09/12/2021,18:21,BROOKLYN,11230,40.630512,-73.957306,"(40.630512, -73.957306)",OCEAN AVENUE,AVENUE H,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456452,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,1:41,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",EAST 125 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456553,Sedan,,,, +09/12/2021,7:44,BROOKLYN,11230,40.61185,-73.95981,"(40.61185, -73.95981)",,,1535 EAST 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456126,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,18:00,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456344,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,21:00,MANHATTAN,10036,40.757385,-73.98226,"(40.757385, -73.98226)",AVENUE OF THE AMERICAS,WEST 46 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457047,Sedan,Bike,,, +09/10/2021,10:46,BROOKLYN,11230,40.617004,-73.96912,"(40.617004, -73.96912)",AVENUE M,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,17:13,BROOKLYN,11212,40.66925,-73.91371,"(40.66925, -73.91371)",,,1619 PITKIN AVENUE,1,0,1,0,0,0,0,0,,,,,,4456837,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,14:20,,,,,,23 ROAD,213 PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456261,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,17:00,,,40.744194,-73.97133,"(40.744194, -73.97133)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456357,Sedan,Sedan,,, +09/11/2021,3:05,BROOKLYN,11216,40.68651,-73.954544,"(40.68651, -73.954544)",BEDFORD AVENUE,QUINCY STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Traffic Control Disregarded,Unspecified,,,4457197,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/28/2021,14:20,BROOKLYN,11237,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,MENAHAN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457038,Moped,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,0:53,BROOKLYN,11236,40.627857,-73.90075,"(40.627857, -73.90075)",EAST 80 STREET,PAERDEGAT 15 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4456506,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/12/2021,2:12,QUEENS,11374,40.734272,-73.8626,"(40.734272, -73.8626)",97 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455961,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,22:00,,,40.722088,-73.75798,"(40.722088, -73.75798)",HILLSIDE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456814,Sedan,,,, +09/12/2021,12:20,BROOKLYN,11226,40.655277,-73.95239,"(40.655277, -73.95239)",,,214 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456210,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/12/2021,15:50,MANHATTAN,10027,40.819374,-73.95933,"(40.819374, -73.95933)",WEST 132 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456720,Sedan,Motorbike,,, +09/12/2021,1:44,,,40.809044,-73.92856,"(40.809044, -73.92856)",EAST 135 STREET,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456467,Taxi,Sedan,,, +09/12/2021,4:40,,,40.684887,-74.00111,"(40.684887, -74.00111)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4456382,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/10/2021,12:00,BROOKLYN,11212,40.661087,-73.92296,"(40.661087, -73.92296)",,,201 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457131,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/12/2021,17:24,,,40.73226,-73.83522,"(40.73226, -73.83522)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456416,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,2:54,BROOKLYN,11221,40.69663,-73.91857,"(40.69663, -73.91857)",MENAHAN STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4457039,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,14:28,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456302,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,14:00,QUEENS,11367,40.717274,-73.825325,"(40.717274, -73.825325)",UNION TURNPIKE,PARK DRIVE EAST,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4456825,Sedan,,,, +09/12/2021,12:42,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456901,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,15:27,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456353,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,23:30,MANHATTAN,10006,40.709835,-74.014885,"(40.709835, -74.014885)",WEST STREET,ALBANY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456725,Sedan,Sedan,,, +09/12/2021,0:30,BROOKLYN,11210,40.633278,-73.94943,"(40.633278, -73.94943)",,,113 KENILWORTH PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455986,Sedan,,,, +09/12/2021,19:21,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,WEBSTER AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4456431,Sedan,Moped,,, +09/12/2021,10:25,,,40.683723,-73.96797,"(40.683723, -73.96797)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456175,Sedan,Bike,,, +09/12/2021,14:29,QUEENS,11106,40.763287,-73.92544,"(40.763287, -73.92544)",,,31-64 30 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456446,Pick-up Truck,,,, +09/12/2021,1:00,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,20:58,,,40.593002,-73.98874,"(40.593002, -73.98874)",26 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456422,Sedan,Sedan,,, +09/11/2021,12:50,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4457077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,18:40,BROOKLYN,11207,,,,VAN SINDEREN AVENUE,SUTTER AVENUE,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456378,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/25/2021,11:25,BROOKLYN,11212,40.67079,-73.903275,"(40.67079, -73.903275)",JUNIUS STREET,PITKIN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4457093,,,,, +09/12/2021,0:35,QUEENS,11422,40.662773,-73.74116,"(40.662773, -73.74116)",BROOKVILLE BOULEVARD,WELLER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455940,Sedan,,,, +09/11/2021,2:30,BROOKLYN,11249,40.71727,-73.96286,"(40.71727, -73.96286)",WYTHE AVENUE,NORTH 3 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457162,Sedan,,,, +09/12/2021,5:45,,,40.8827,-73.892845,"(40.8827, -73.892845)",SEDGWICK AVENUE,STEVENSON PLACE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Other Vehicular,,,,4456866,Sedan,Sedan,,, +09/12/2021,3:40,QUEENS,11378,40.72312,-73.90607,"(40.72312, -73.90607)",,,60-07 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457241,Sedan,Sedan,Sedan,, +09/12/2021,3:20,MANHATTAN,10035,40.800507,-73.938156,"(40.800507, -73.938156)",EAST 120 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456554,Taxi,Sedan,,, +09/12/2021,7:47,BROOKLYN,11209,40.62622,-74.02336,"(40.62622, -74.02336)",,,509 79 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456120,Sedan,,,, +09/12/2021,12:45,BROOKLYN,11226,,,,,,976 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456127,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,7:25,BRONX,10466,40.89024,-73.860306,"(40.89024, -73.860306)",EAST 228 STREET,LOWERRE PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4456487,Sedan,Sedan,,, +09/10/2021,17:07,BROOKLYN,11249,40.720524,-73.96206,"(40.720524, -73.96206)",,,34 NORTH 7 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457157,Sedan,Sedan,,, +09/12/2021,14:25,,,40.74622,-73.87755,"(40.74622, -73.87755)",FORLEY STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456189,Sedan,,,, +09/12/2021,13:02,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4456525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/11/2021,18:18,BROOKLYN,11238,40.684204,-73.96806,"(40.684204, -73.96806)",VANDERBILT AVENUE,GATES AVENUE,,3,1,1,1,0,0,2,0,Unsafe Speed,Unspecified,,,,4457191,Sedan,Sedan,,, +09/12/2021,10:00,,,40.757164,-73.82212,"(40.757164, -73.82212)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456260,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,13:00,MANHATTAN,10019,40.764652,-73.97798,"(40.764652, -73.97798)",,,119 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456760,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,2:03,QUEENS,11379,40.71474,-73.88698,"(40.71474, -73.88698)",JUNIPER VALLEY ROAD,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457239,Sedan,,,, +09/12/2021,1:14,BROOKLYN,11204,40.62051,-73.99248,"(40.62051, -73.99248)",65 STREET,17 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4456002,Sedan,Sedan,Sedan,, +09/12/2021,21:45,BRONX,10466,40.892433,-73.84584,"(40.892433, -73.84584)",,,1911 EDENWALD AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456492,Sedan,Motorcycle,,, +09/12/2021,8:35,QUEENS,11421,40.686447,-73.85485,"(40.686447, -73.85485)",87 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456733,Sedan,Motorcycle,,, +09/12/2021,17:00,,,40.589043,-73.98381,"(40.589043, -73.98381)",AVENUE X,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456822,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,1:50,,,40.657383,-73.911514,"(40.657383, -73.911514)",LOTT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4456083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,6:25,QUEENS,11373,40.745792,-73.876564,"(40.745792, -73.876564)",,,41-85 FORLEY STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4456188,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/27/2021,16:30,,,40.651352,-73.89275,"(40.651352, -73.89275)",GLENWOOD ROAD,,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4457207,Sedan,Bike,,, +09/10/2021,19:15,,,40.702747,-73.86242,"(40.702747, -73.86242)",FOREST PARK DRIVE,FOREST PARK DRIVE EAST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457217,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,16:30,,,,,,LINDEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456248,Sedan,Sedan,,, +09/12/2021,1:00,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4456400,Sedan,Convertible,,, +09/09/2021,16:55,BROOKLYN,11205,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,2:00,,,40.704582,-73.78486,"(40.704582, -73.78486)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456855,Sedan,,,, +09/09/2021,10:40,QUEENS,11411,40.701187,-73.74148,"(40.701187, -73.74148)",SPRINGFIELD BOULEVARD,115 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4457146,Bus,Sedan,,, +09/12/2021,9:17,QUEENS,11356,40.78452,-73.84397,"(40.78452, -73.84397)",124 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4456099,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,2:20,BROOKLYN,11207,40.67956,-73.8989,"(40.67956, -73.8989)",HIGHLAND BOULEVARD,FANCHON PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456281,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,0:40,BROOKLYN,11228,40.61894,-74.02201,"(40.61894, -74.02201)",86 STREET,BATTERY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455975,Sedan,Bike,,, +09/12/2021,15:00,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456211,Pick-up Truck,Sedan,,, +09/12/2021,11:33,BRONX,10465,,,,QUINCY AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456472,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/12/2021,11:29,BROOKLYN,11236,40.6411,-73.90463,"(40.6411, -73.90463)",FLATLANDS AVENUE,EAST 92 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4456199,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,9:09,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4457075,Station Wagon/Sport Utility Vehicle,Sedan,Van,, +09/12/2021,18:17,,,40.76161,-73.97076,"(40.76161, -73.97076)",EAST 57 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4456762,Taxi,Taxi,Sedan,, +09/12/2021,13:30,QUEENS,11372,40.74662,-73.89359,"(40.74662, -73.89359)",72 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4456334,E-Bike,Sedan,,, +09/12/2021,12:20,QUEENS,11385,40.70444,-73.89374,"(40.70444, -73.89374)",,,64-02 CATALPA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456515,Sedan,Sedan,,, +09/12/2021,14:00,QUEENS,11374,40.733433,-73.86418,"(40.733433, -73.86418)",,,61-35 JUNCTION BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456802,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,15:30,MANHATTAN,10012,40.72535,-73.99905,"(40.72535, -73.99905)",,,140 GREENE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456724,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,21:53,BROOKLYN,11223,40.591557,-73.97041,"(40.591557, -73.97041)",,,2353 WEST STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4456387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,18:40,BRONX,10467,40.876354,-73.8632,"(40.876354, -73.8632)",,,765 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457007,Sedan,Sedan,,, +09/12/2021,13:00,BROOKLYN,11234,40.61655,-73.9165,"(40.61655, -73.9165)",EAST 61 STREET,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457182,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +09/12/2021,20:16,BROOKLYN,11219,40.63011,-74.01001,"(40.63011, -74.01001)",66 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4456321,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,23:53,,,40.777905,-73.98209,"(40.777905, -73.98209)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4457048,,,,, +09/12/2021,11:00,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456301,Sedan,,,, +09/12/2021,4:45,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,17:00,BRONX,10467,40.877674,-73.87488,"(40.877674, -73.87488)",,,3321 PERRY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457098,Sedan,Sedan,,, +09/12/2021,3:33,BROOKLYN,11216,40.6802,-73.953285,"(40.6802, -73.953285)",BEDFORD AVENUE,BREVOORT PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4456161,Taxi,Sedan,,, +09/12/2021,18:35,BROOKLYN,11205,,,,VANDERBILT AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456358,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,9:35,BROOKLYN,11211,40.716175,-73.949715,"(40.716175, -73.949715)",LORIMER STREET,JACKSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457171,Station Wagon/Sport Utility Vehicle,Van,,, +09/12/2021,16:00,BROOKLYN,11210,40.626175,-73.94064,"(40.626175, -73.94064)",,,1798 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456887,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,0:00,,,,,,,,78 WEST DRIVE,2,0,0,0,2,0,0,0,Following Too Closely,Following Too Closely,,,,4456369,Bike,Bike,,, +09/12/2021,1:17,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456466,Sedan,,,, +09/12/2021,22:08,BROOKLYN,11234,40.621162,-73.939995,"(40.621162, -73.939995)",KINGS HIGHWAY,EAST 36 STREET,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4456931,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,18:43,QUEENS,11004,40.738365,-73.71261,"(40.738365, -73.71261)",256 STREET,83 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456342,Station Wagon/Sport Utility Vehicle,Bike,,, +09/12/2021,9:00,BROOKLYN,11218,40.647625,-73.97727,"(40.647625, -73.97727)",EAST 4 STREET,CATON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456263,Sedan,,,, +09/07/2021,16:00,,,40.86804,-73.879105,"(40.86804, -73.879105)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,9:23,BROOKLYN,11204,40.624313,-73.977745,"(40.624313, -73.977745)",,,5111 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457111,Station Wagon/Sport Utility Vehicle,PK,,, +09/12/2021,18:40,BRONX,10453,40.85809,-73.901924,"(40.85809, -73.901924)",EAST 183 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456505,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,18:10,BROOKLYN,11212,40.661427,-73.90575,"(40.661427, -73.90575)",RIVERDALE AVENUE,WATKINS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456838,Sedan,Sedan,Sedan,, +09/12/2021,14:54,BROOKLYN,11206,40.699863,-73.9559,"(40.699863, -73.9559)",WALLABOUT STREET,MIDDLETON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456381,Station Wagon/Sport Utility Vehicle,Bus,,, +09/12/2021,22:47,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",BOSTON ROAD,PROSPECT AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4456432,Sedan,Sedan,,, +08/21/2021,2:49,BROOKLYN,11206,40.698265,-73.93399,"(40.698265, -73.93399)",BUSHWICK AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457036,Pick-up Truck,FIRETRUCK,,, +09/12/2021,0:00,,,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4456448,Sedan,Bike,,, +09/12/2021,4:25,QUEENS,11385,40.6928,-73.895065,"(40.6928, -73.895065)",,,80-64 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4457245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/31/2021,15:15,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457041,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +09/12/2021,0:32,,,40.646255,-73.908905,"(40.646255, -73.908905)",EAST 93 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455946,Sedan,Motorcycle,,, +09/10/2021,20:00,BROOKLYN,11222,40.72731,-73.95719,"(40.72731, -73.95719)",,,53 FRANKLIN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457163,Sedan,Sedan,,, +09/08/2021,10:45,,,40.603645,-74.077324,"(40.603645, -74.077324)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4457087,Station Wagon/Sport Utility Vehicle,Dump,,, +09/12/2021,0:00,BROOKLYN,11208,40.668484,-73.86936,"(40.668484, -73.86936)",,,2568 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,2:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456555,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,8:25,BRONX,10469,40.864452,-73.83482,"(40.864452, -73.83482)",,,1750 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456129,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,23:34,,,40.829407,-73.88546,"(40.829407, -73.88546)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456532,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,14:06,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457129,Sedan,Sedan,,, +09/12/2021,4:25,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456893,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,19:24,BROOKLYN,11235,40.591927,-73.95768,"(40.591927, -73.95768)",AVENUE X,SHEEPSHEAD BAY ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456386,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,17:30,BRONX,10468,40.880688,-73.885704,"(40.880688, -73.885704)",MOSHOLU PARKWAY,PAUL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4456415,Sedan,,,, +09/12/2021,19:51,QUEENS,11367,40.728283,-73.82941,"(40.728283, -73.82941)",JEWEL AVENUE,136 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4456826,Sedan,Bike,,, +09/12/2021,7:20,BRONX,10466,40.89204,-73.85814,"(40.89204, -73.85814)",WHITE PLAINS ROAD,EAST 231 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456475,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,0:15,,,,,,Stadium place S,Roosevelt ave,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4456197,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/12/2021,18:30,QUEENS,11354,,,,,,40-24 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4456258,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,17:15,QUEENS,11385,40.700497,-73.90021,"(40.700497, -73.90021)",FOREST AVENUE,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457238,Sedan,Bike,,, +09/12/2021,0:25,,,,,,WEST 6 STREET,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456025,Sedan,Sedan,,, +08/30/2021,18:30,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",NORTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457194,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,1:45,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456499,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,17:30,BRONX,10459,40.817364,-73.895134,"(40.817364, -73.895134)",,,840 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4457155,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,4:00,BROOKLYN,11226,40.64601,-73.95408,"(40.64601, -73.95408)",,,157 LOTT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456207,Sedan,,,, +09/12/2021,3:49,BRONX,10455,,,,,,903 AVENUE SAINT JOHN,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4456264,Pick-up Truck,Taxi,,, +09/12/2021,8:20,BROOKLYN,11226,40.656296,-73.94945,"(40.656296, -73.94945)",,,712 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,3:12,QUEENS,11419,40.688244,-73.82399,"(40.688244, -73.82399)",120 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4456736,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,13:25,QUEENS,11415,40.706043,-73.82943,"(40.706043, -73.82943)",,,82-08 BREVOORT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456776,Sedan,,,, +09/12/2021,0:22,BROOKLYN,11226,40.656292,-73.94949,"(40.656292, -73.94949)",,,710 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455989,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/12/2021,10:37,BROOKLYN,11230,40.61958,-73.96801,"(40.61958, -73.96801)",,,705 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456421,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/12/2021,5:44,,,40.61019,-74.03534,"(40.61019, -74.03534)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4456119,Sedan,,,, +09/12/2021,14:30,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456504,Station Wagon/Sport Utility Vehicle,Bike,,, +09/12/2021,4:45,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455971,Van,Sedan,,, +09/12/2021,13:20,BROOKLYN,11207,40.6646,-73.89502,"(40.6646, -73.89502)",LIVONIA AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4456282,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,15:53,BROOKLYN,11215,40.66495,-73.993355,"(40.66495, -73.993355)",17 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456729,Sedan,,,, +09/12/2021,19:15,BRONX,10451,40.81693,-73.921036,"(40.81693, -73.921036)",,,300 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456469,Sedan,E-Bike,,, +09/12/2021,16:25,QUEENS,11362,40.76423,-73.74242,"(40.76423, -73.74242)",,,243-11 ALAMEDA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456185,Sedan,,,, +09/08/2021,5:20,,,40.86667,-73.90924,"(40.86667, -73.90924)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457108,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +09/12/2021,21:37,MANHATTAN,10019,40.76788,-73.9815,"(40.76788, -73.9815)",COLUMBUS CIRCLE,CENTRAL PARK SOUTH,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457049,Box Truck,Bike,,, +09/12/2021,16:13,BROOKLYN,11214,40.592403,-73.9954,"(40.592403, -73.9954)",,,1730 SHORE PARKWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456360,Station Wagon/Sport Utility Vehicle,Bike,,, +09/12/2021,17:30,BROOKLYN,11203,40.639793,-73.929115,"(40.639793, -73.929115)",UTICA AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,4456337,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +09/12/2021,21:28,BRONX,10468,40.85868,-73.89922,"(40.85868, -73.89922)",GRAND CONCOURSE,FIELD PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456850,Sedan,E-Bike,,, +09/12/2021,21:31,BRONX,10455,40.809364,-73.906555,"(40.809364, -73.906555)",,,431 TIMPSON PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456989,Sedan,,,, +09/12/2021,20:34,MANHATTAN,10025,40.79166,-73.96469,"(40.79166, -73.96469)",WEST 96 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456375,Sedan,Bike,,, +09/12/2021,6:07,STATEN ISLAND,10305,40.61659,-74.068,"(40.61659, -74.068)",,,1082 BAY STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4456166,Sedan,Sedan,Sedan,, +09/12/2021,3:50,QUEENS,11369,40.762657,-73.87326,"(40.762657, -73.87326)",ASTORIA BOULEVARD,96 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456093,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/24/2021,22:50,,,40.73518,-73.83629,"(40.73518, -73.83629)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Obstruction/Debris,Unspecified,Unspecified,,4457141,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/12/2021,16:40,MANHATTAN,10065,,,,,,854 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456513,Station Wagon/Sport Utility Vehicle,Bike,,, +09/12/2021,15:30,,,40.62307,-74.149315,"(40.62307, -74.149315)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456796,Sedan,,,, +09/12/2021,13:13,QUEENS,11429,40.71769,-73.73737,"(40.71769, -73.73737)",,,95-001 218 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,18:10,BRONX,10468,,,,WEST FORDHAM ROAD,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456392,Sedan,Sedan,,, +09/12/2021,18:45,MANHATTAN,10027,40.814186,-73.95087,"(40.814186, -73.95087)",SAINT NICHOLAS TERRACE,WEST 130 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4456723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/19/2021,8:47,BROOKLYN,11206,,,,,,9 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408944,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,15:38,BRONX,10455,40.81632,-73.903015,"(40.81632, -73.903015)",EAST 155 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456461,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,3:05,BROOKLYN,11212,40.67066,-73.904205,"(40.67066, -73.904205)",PITKIN AVENUE,POWELL STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4456084,Sedan,,,, +09/12/2021,8:50,BROOKLYN,11208,40.683838,-73.8715,"(40.683838, -73.8715)",,,3366 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456300,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/12/2021,4:00,BRONX,10458,40.855553,-73.88757,"(40.855553, -73.88757)",EAST 187 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4456405,Sedan,,,, +09/12/2021,15:15,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",WEST 230 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456247,Sedan,,,, +09/11/2021,15:25,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4457073,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/04/2021,4:10,MANHATTAN,10002,40.719337,-73.985916,"(40.719337, -73.985916)",SUFFOLK STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457103,Sedan,,,, +09/12/2021,12:27,MANHATTAN,10003,40.73329,-73.98719,"(40.73329, -73.98719)",EAST 14 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456881,Sedan,E-Bike,,, +09/11/2021,21:45,MANHATTAN,10013,40.719128,-74.00517,"(40.719128, -74.00517)",,,2 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4457175,Taxi,,,, +09/12/2021,6:00,BROOKLYN,11239,40.655758,-73.873505,"(40.655758, -73.873505)",,,1179 ELTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456325,Sedan,,,, +09/12/2021,15:00,BROOKLYN,11249,40.70739,-73.96523,"(40.70739, -73.96523)",,,89 DIVISION AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456937,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,16:15,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457212,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,12:43,,,40.834515,-73.91771,"(40.834515, -73.91771)",EAST 167 STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4456500,Sedan,Moped,,, +09/12/2021,0:40,QUEENS,11419,40.684383,-73.823265,"(40.684383, -73.823265)",107 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4456135,Sedan,Sedan,,, +09/12/2021,15:00,MANHATTAN,10013,40.72123,-74.00655,"(40.72123, -74.00655)",,,50 VARICK STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,17:13,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,4,0,0,0,0,0,4,0,View Obstructed/Limited,Driver Inexperience,Unspecified,Unspecified,Unspecified,4457154,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/12/2021,12:08,,,40.675446,-73.81354,"(40.675446, -73.81354)",124 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4456478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/12/2021,11:00,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",QUEENS BOULEVARD,70 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456111,Sedan,,,, +09/12/2021,5:50,BROOKLYN,11203,40.6568,-73.928,"(40.6568, -73.928)",CLARKSON AVENUE,EAST 53 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456208,Sedan,Sedan,,, +09/12/2021,0:00,QUEENS,11413,40.66985,-73.74325,"(40.66985, -73.74325)",,,138-56 230 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456818,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,0:16,,,40.587147,-74.15391,"(40.587147, -74.15391)",KELLY BOULEVARD,KLONDIKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456790,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,3:45,BROOKLYN,11216,40.688946,-73.947014,"(40.688946, -73.947014)",,,545 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456037,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,0:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457179,Sedan,,,, +09/12/2021,21:43,QUEENS,11368,40.756985,-73.86738,"(40.756985, -73.86738)",,,33-15 101 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456894,Sedan,,,, +09/12/2021,12:25,BROOKLYN,11206,40.708046,-73.94366,"(40.708046, -73.94366)",,,147 MESEROLE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456380,Station Wagon/Sport Utility Vehicle,MOPED,,, +09/12/2021,10:30,STATEN ISLAND,10305,40.61751,-74.07305,"(40.61751, -74.07305)",WILLOW AVENUE,DITSON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4457080,Sedan,,,, +09/07/2021,19:03,,,40.865406,-73.86838,"(40.865406, -73.86838)",OLINVILLE AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4457090,,,,, +09/12/2021,3:41,BROOKLYN,11212,40.66871,-73.91731,"(40.66871, -73.91731)",SARATOGA AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455948,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,22:30,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457225,E-Bike,,,, +09/12/2021,19:07,,,40.588886,-73.965645,"(40.588886, -73.965645)",AVENUE Y,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4456419,Sedan,Sedan,,, +09/12/2021,15:21,MANHATTAN,10027,40.810276,-73.94738,"(40.810276, -73.94738)",7 AVENUE,WEST 127 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4456450,Station Wagon/Sport Utility Vehicle,Moped,,, +09/11/2021,18:50,BROOKLYN,11211,40.718155,-73.94839,"(40.718155, -73.94839)",,,395 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457164,Sedan,,,, +09/12/2021,4:00,BROOKLYN,11207,40.666397,-73.886826,"(40.666397, -73.886826)",,,573 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456319,Sedan,Sedan,Sedan,, +09/12/2021,1:00,QUEENS,11435,40.70835,-73.81325,"(40.70835, -73.81325)",86 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456832,Sedan,,,, +09/12/2021,4:33,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4456351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,0:05,BROOKLYN,11216,40.685463,-73.9506,"(40.685463, -73.9506)",MONROE STREET,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457195,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,10:35,QUEENS,11102,40.769436,-73.91711,"(40.769436, -73.91711)",,,25-59 33 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456438,Sedan,,,, +09/12/2021,0:19,,,,,,W/B MARINA ROAD,BOAT BASIN PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,5:25,BROOKLYN,11213,40.66664,-73.93133,"(40.66664, -73.93133)",,,331 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455988,,,,, +09/12/2021,21:20,,,40.611095,-74.11467,"(40.611095, -74.11467)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4456539,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,21:45,BROOKLYN,11233,40.682446,-73.911674,"(40.682446, -73.911674)",CHAUNCEY STREET,ROCKAWAY AVENUE,,1,0,1,0,0,0,0,0,,,,,,4456841,,,,, +09/12/2021,15:00,BROOKLYN,11236,40.640373,-73.89702,"(40.640373, -73.89702)",ROCKAWAY PARKWAY,AVENUE K,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456265,Sedan,Sedan,,, +09/12/2021,16:00,QUEENS,11356,40.783226,-73.84313,"(40.783226, -73.84313)",125 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456257,Sedan,Sedan,,, +09/12/2021,18:00,QUEENS,11416,,,,101 AVENUE,99 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456737,Sedan,E-Scooter,,, +09/06/2021,0:35,MANHATTAN,10010,40.739166,-73.97997,"(40.739166, -73.97997)",EAST 25 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457186,Taxi,,,, +09/12/2021,1:15,BROOKLYN,11215,40.666775,-73.97836,"(40.666775, -73.97836)",,,723 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4456341,Sedan,Sedan,Sedan,Sedan, +09/12/2021,12:15,BROOKLYN,11235,,,,,,2814 AVENUE X,0,0,0,0,0,0,0,0,Unspecified,,,,,4456384,Sedan,,,, +09/12/2021,7:45,,,40.640553,-74.0043,"(40.640553, -74.0043)",8 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4457127,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/01/2021,16:26,BROOKLYN,11229,40.59631,-73.93732,"(40.59631, -73.93732)",,,2976 AVENUE W,0,0,0,0,0,0,0,0,Unspecified,,,,,4457042,Sedan,,,, +09/12/2021,14:41,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456414,Sedan,Sedan,,, +09/12/2021,9:10,,,40.67398,-73.899315,"(40.67398, -73.899315)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456326,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,16:50,BROOKLYN,11211,40.711296,-73.9613,"(40.711296, -73.9613)",,,166 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456940,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,13:30,,,,,,BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4457025,Sedan,,,, +09/05/2021,10:06,BROOKLYN,11230,40.618214,-73.95815,"(40.618214, -73.95815)",AVENUE M,EAST 17 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4457064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,19:11,,,40.849712,-73.94301,"(40.849712, -73.94301)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4456361,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,15:00,QUEENS,11358,40.76224,-73.80657,"(40.76224, -73.80657)",159 STREET,DEPOT ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4484770,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,7:36,,,,,,LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4513904,Box Truck,,,, +04/19/2021,17:30,BROOKLYN,11212,40.655853,-73.910126,"(40.655853, -73.910126)",BOYLAND STREET,HEGEMAN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4409250,,,,, +10/13/2021,13:52,BROOKLYN,11223,,,,WEST STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487744,Sedan,Sedan,,, +09/13/2021,8:42,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4456858,Sedan,Sedan,,, +03/27/2022,8:42,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4513936,Sedan,,,, +12/15/2021,8:51,,,,,,CARLTON AVENUE,PARK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487785,Pick-up Truck,Bike,,, +04/13/2021,10:00,MANHATTAN,10010,40.737804,-73.98276,"(40.737804, -73.98276)",,,235 EAST 22 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4408078,Station Wagon/Sport Utility Vehicle,,,, +04/12/2021,19:30,,,40.67642,-73.94154,"(40.67642, -73.94154)",KINGSTON AVENUE,,,6,0,0,0,0,0,6,0,Steering Failure,Passing or Lane Usage Improper,,,,4408273,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/08/2021,19:55,BRONX,10459,40.830307,-73.89873,"(40.830307, -73.89873)",,,1281 UNION AVENUE,0,1,0,0,0,0,0,0,Driver Inexperience,,,,,4407509,E-Bike,,,, +09/13/2021,21:03,,,,,,,,79 WEST DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456923,Bike,,,, +04/19/2021,13:20,QUEENS,11004,40.741234,-73.7068,"(40.741234, -73.7068)",,,82-29 263 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4408654,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,15:30,BRONX,10451,40.822304,-73.91485,"(40.822304, -73.91485)",MELROSE AVENUE,EAST 158 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408771,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/19/2021,21:59,QUEENS,11367,40.729607,-73.82489,"(40.729607, -73.82489)",141 STREET,JEWEL AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4408717,Sedan,,,, +04/19/2021,16:30,BROOKLYN,11206,40.703762,-73.94262,"(40.703762, -73.94262)",MOORE STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409401,Sedan,,,, +04/16/2021,7:30,MANHATTAN,10027,40.806778,-73.943115,"(40.806778, -73.943115)",,,17 WEST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409170,Sedan,,,, +04/14/2021,7:55,MANHATTAN,10037,40.819283,-73.937096,"(40.819283, -73.937096)",,,665 LENOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409122,Sedan,,,, +04/19/2021,0:04,,,40.77456,-73.76602,"(40.77456, -73.76602)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4408324,Sedan,,,, +04/19/2021,3:25,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4408693,Taxi,Taxi,,, +04/19/2021,10:45,,,40.637806,-74.128876,"(40.637806, -74.128876)",,,1920 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:45,BROOKLYN,11226,40.644405,-73.964096,"(40.644405, -73.964096)",BEVERLEY ROAD,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408735,Van,,,, +04/19/2021,22:40,BRONX,10456,40.82124,-73.90992,"(40.82124, -73.90992)",SAINT ANNS AVENUE,EAST 159 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409044,Station Wagon/Sport Utility Vehicle,MOPED,,, +04/19/2021,11:15,MANHATTAN,10011,40.743332,-73.99991,"(40.743332, -73.99991)",,,196 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409216,Box Truck,,,, +04/17/2021,16:22,MANHATTAN,10012,40.724236,-73.997795,"(40.724236, -73.997795)",PRINCE STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409308,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,2:15,QUEENS,11420,40.67306,-73.82593,"(40.67306, -73.82593)",,,133-14 114 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408420,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,15:39,BROOKLYN,11226,40.64333,-73.95973,"(40.64333, -73.95973)",CORTELYOU ROAD,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408742,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,19:08,QUEENS,11105,40.777153,-73.92087,"(40.777153, -73.92087)",21 STREET,23 TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409162,E-Bike,,,, +04/19/2021,9:00,BRONX,10457,40.853172,-73.88964,"(40.853172, -73.88964)",ARTHUR AVENUE,EAST 183 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409203,Sedan,Bike,,, +04/19/2021,9:30,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408914,Sedan,Taxi,,, +04/19/2021,6:40,MANHATTAN,10022,40.758633,-73.96579,"(40.758633, -73.96579)",2 AVENUE,EAST 56 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408463,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:00,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408637,Station Wagon/Sport Utility Vehicle,Bus,,, +04/19/2021,17:48,BRONX,10451,40.823658,-73.91206,"(40.823658, -73.91206)",EAST 161 STREET,ELTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408776,Bike,,,, +04/19/2021,11:21,BROOKLYN,11208,40.679707,-73.87979,"(40.679707, -73.87979)",,,227 HALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408800,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,0:00,,,40.817898,-73.938095,"(40.817898, -73.938095)",WEST 141 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408851,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,9:40,BRONX,10461,40.84134,-73.83169,"(40.84134, -73.83169)",,,2936 DUDLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408871,Sedan,Box Truck,,, +04/19/2021,11:10,QUEENS,11377,40.74074,-73.90779,"(40.74074, -73.90779)",47 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408611,Sedan,,,, +04/19/2021,10:18,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",2 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4408562,Sedan,util truck,,, +04/16/2021,19:20,QUEENS,11385,40.693844,-73.89692,"(40.693844, -73.89692)",CYPRESS AVENUE,CABOT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409259,Sedan,,,, +04/18/2021,18:48,QUEENS,11379,40.717335,-73.88741,"(40.717335, -73.88741)",,,62-41 69 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4409297,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2021,20:30,STATEN ISLAND,10301,40.64465,-74.085075,"(40.64465, -74.085075)",WESTERVELT AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409337,Sedan,,,, +04/19/2021,13:30,BRONX,10474,40.80578,-73.877304,"(40.80578, -73.877304)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408605,Sedan,Tractor Truck Diesel,,, +04/19/2021,1:55,BRONX,10458,40.858444,-73.89851,"(40.858444, -73.89851)",RYER AVENUE,FIELD PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408569,Sedan,Sedan,,, +04/19/2021,9:30,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4409181,Box Truck,,,, +04/19/2021,10:22,BRONX,10453,40.85573,-73.910416,"(40.85573, -73.910416)",WEST 180 STREET,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408630,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,6:00,,,40.64453,-73.94599,"(40.64453, -73.94599)",CORTELYOU ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,10:00,MANHATTAN,10028,40.77972,-73.94434,"(40.77972, -73.94434)",YORK AVENUE,EAST 92 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,6:55,,,40.5743,-73.98867,"(40.5743, -73.98867)",WEST 22 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4408729,Sedan,Sedan,,, +04/19/2021,16:10,QUEENS,11373,40.74459,-73.884674,"(40.74459, -73.884674)",BAXTER AVENUE,LAYTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408748,AMBULANCE,Van,,, +04/19/2021,11:30,BROOKLYN,11219,40.63897,-73.99447,"(40.63897, -73.99447)",,,4610 NEW UTRECHT AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4408903,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,1:30,BROOKLYN,11207,40.672333,-73.901764,"(40.672333, -73.901764)",SNEDIKER AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408825,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,15:14,BROOKLYN,11233,40.67447,-73.90583,"(40.67447, -73.90583)",DEAN STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4408882,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,9:22,MANHATTAN,10016,40.74768,-73.97498,"(40.74768, -73.97498)",,,240 EAST 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408553,Bus,Sedan,,, +04/19/2021,9:40,,,40.75826,-73.76829,"(40.75826, -73.76829)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408619,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,18:19,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408705,Sedan,Sedan,,, +04/18/2021,19:00,,,40.88974,-73.84591,"(40.88974, -73.84591)",LACONIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409248,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,10:04,,,40.72098,-73.98696,"(40.72098, -73.98696)",,,ESSEX STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4409360,Box Truck,Bus,,, +04/19/2021,10:41,BROOKLYN,11217,40.687702,-73.97572,"(40.687702, -73.97572)",,,76 SOUTH ELLIOTT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408795,Sedan,Concrete Mixer,,, +04/18/2021,19:38,BROOKLYN,11213,40.677624,-73.93308,"(40.677624, -73.93308)",SCHENECTADY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409111,Sedan,Box Truck,,, +04/11/2021,18:09,MANHATTAN,10024,40.787838,-73.97752,"(40.787838, -73.97752)",,,252 WEST 85 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4409272,Sedan,Sedan,,, +04/19/2021,12:30,MANHATTAN,10010,40.735435,-73.97956,"(40.735435, -73.97956)",,,357 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408638,Tanker,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,14:52,,,40.63443,-74.01606,"(40.63443, -74.01606)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409324,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,17:32,,,40.69666,-73.93109,"(40.69666, -73.93109)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4408675,Sedan,Bike,,, +04/17/2021,21:57,BROOKLYN,11211,40.714058,-73.95183,"(40.714058, -73.95183)",,,518 METROPOLITAN AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409192,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,10:00,,,40.8307,-73.88519,"(40.8307, -73.88519)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4408590,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,10:32,BROOKLYN,11222,40.726856,-73.9409,"(40.726856, -73.9409)",,,115 SUTTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409034,Sedan,Box Truck,,, +04/19/2021,19:42,BROOKLYN,11207,40.673878,-73.88596,"(40.673878, -73.88596)",,,401 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408837,Sedan,Bike,,, +04/19/2021,13:00,,,40.75979,-73.98793,"(40.75979, -73.98793)",8 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4408859,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,21:56,STATEN ISLAND,10305,40.605473,-74.064644,"(40.605473, -74.064644)",,,119 SCHOOL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409338,Sedan,,,, +04/19/2021,9:40,BROOKLYN,11226,40.642887,-73.95454,"(40.642887, -73.95454)",CLARENDON ROAD,BEDFORD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4408973,Sedan,Van,,, +04/07/2021,15:00,QUEENS,11105,40.77391,-73.91343,"(40.77391, -73.91343)",,,23-10 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409174,Carry All,Carry All,,, +04/19/2021,21:10,,,0,0,"(0.0, 0.0)",EAST MOSHOLU PARKWAY NORTH,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408723,Bus,Sedan,,, +04/11/2021,14:00,MANHATTAN,10019,40.76515,-73.985115,"(40.76515, -73.985115)",,,321 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409134,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,18:37,MANHATTAN,10021,40.771954,-73.958984,"(40.771954, -73.958984)",,,1317 3 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Alcohol Involvement,,,,4408743,Box Truck,Sedan,,, +04/19/2021,17:10,QUEENS,11355,40.753006,-73.8326,"(40.753006, -73.8326)",COLLEGE POINT BOULEVARD,POPLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4408688,Sedan,Sedan,,, +04/19/2021,14:00,QUEENS,11419,40.690334,-73.81217,"(40.690334, -73.81217)",,,104-41 134 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408788,Sedan,,,, +04/18/2021,0:00,BROOKLYN,11215,40.674603,-73.98178,"(40.674603, -73.98178)",5 AVENUE,GARFIELD PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409227,Sedan,,,, +04/19/2021,13:30,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4408645,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,1:51,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,6,0,0,0,0,0,6,0,Following Too Closely,Unspecified,,,,4409074,Taxi,Sedan,,, +04/17/2021,21:56,QUEENS,11434,40.681843,-73.783585,"(40.681843, -73.783585)",LONG STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4409283,Sedan,,,, +04/19/2021,22:30,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,BROWN PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4408760,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,7:30,MANHATTAN,10019,40.76542,-73.98383,"(40.76542, -73.98383)",WEST 55 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408763,Station Wagon/Sport Utility Vehicle,Van,,, +04/19/2021,23:06,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408737,Sedan,Sedan,,, +04/05/2021,14:35,QUEENS,11105,40.778576,-73.901726,"(40.778576, -73.901726)",,,19-37 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409156,Sedan,,,, +04/19/2021,0:16,,,40.745235,-73.937706,"(40.745235, -73.937706)",THOMSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408329,Sedan,Sedan,,, +04/14/2021,6:50,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409196,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,15:20,BROOKLYN,11218,40.647427,-73.979126,"(40.647427, -73.979126)",CATON AVENUE,EAST 2 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409318,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/19/2021,17:10,,,40.654434,-73.86084,"(40.654434, -73.86084)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408661,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,12:17,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",RALPH AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,19:22,MANHATTAN,10010,40.738247,-73.98066,"(40.738247, -73.98066)",,,411 2 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409307,Sedan,Sedan,,, +04/19/2021,18:52,,,40.78461,-73.96984,"(40.78461, -73.96984)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4409279,Taxi,Sedan,,, +04/16/2021,18:00,MANHATTAN,10030,40.815975,-73.94322,"(40.815975, -73.94322)",WEST 136 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4409121,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,0:17,BRONX,10466,40.890972,-73.849686,"(40.890972, -73.849686)",,,969 EAST 233 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4408421,Sedan,Sedan,,, +04/17/2021,13:18,QUEENS,11423,,,,,,196-03 GRAND CENTRAL PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409169,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,6:00,QUEENS,11423,40.71911,-73.76679,"(40.71911, -73.76679)",,,196-23 DUNTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408644,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:40,,,40.636326,-73.958405,"(40.636326, -73.958405)",OCEAN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408739,Station Wagon/Sport Utility Vehicle,,,, +04/06/2021,20:00,BRONX,10466,40.891735,-73.84895,"(40.891735, -73.84895)",EDENWALD AVENUE,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409206,Sedan,Sedan,,, +04/19/2021,2:15,,,40.75372,-73.83283,"(40.75372, -73.83283)",MAPLE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4408689,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,19:10,BRONX,10452,40.843822,-73.916565,"(40.843822, -73.916565)",GOBLE PLACE,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409073,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,22:54,BROOKLYN,11211,,,,GRAND STREET,VANDERVORT AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4408718,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,19:50,MANHATTAN,10065,40.760536,-73.95836,"(40.760536, -73.95836)",YORK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,23:28,QUEENS,11385,40.707275,-73.896484,"(40.707275, -73.896484)",,,61-32 MADISON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409298,Sedan,Sedan,,, +04/19/2021,15:15,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4409188,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/19/2021,11:00,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408578,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,12:20,BROOKLYN,11204,40.623966,-73.9905,"(40.623966, -73.9905)",,,1662 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408607,Sedan,Sedan,,, +04/19/2021,19:50,BROOKLYN,11208,40.67691,-73.87945,"(40.67691, -73.87945)",,,816 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4408828,Sedan,,,, +04/15/2021,6:40,,,40.730846,-73.89146,"(40.730846, -73.89146)",72 PLACE,53 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4409291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +04/19/2021,15:54,QUEENS,11411,40.692383,-73.73145,"(40.692383, -73.73145)",LINDEN BOULEVARD,230 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408655,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,20:30,BROOKLYN,11207,40.68293,-73.910515,"(40.68293, -73.910515)",,,1746 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408887,Sedan,,,, +04/19/2021,0:53,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Alcohol Involvement,,,,4408556,Sedan,Bike,,, +04/19/2021,8:55,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408770,Sedan,Sedan,Sedan,, +04/19/2021,22:40,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408838,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,13:30,QUEENS,11434,40.67997,-73.77624,"(40.67997, -73.77624)",,,167-02 BAISLEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408600,Armored Truck,Armored Truck,,, +04/19/2021,17:35,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4408704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,12:30,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409116,Sedan,,,, +04/17/2021,12:50,BROOKLYN,11212,40.654896,-73.9185,"(40.654896, -73.9185)",,,501 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409173,Sedan,Sedan,,, +04/19/2021,0:49,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408904,Sedan,Sedan,,, +04/19/2021,16:30,,,40.70118,-73.98778,"(40.70118, -73.98778)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408649,Sedan,,,, +04/19/2021,18:57,QUEENS,11355,40.75855,-73.82964,"(40.75855, -73.82964)",MAIN STREET,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408709,Sedan,Bus,Sedan,, +04/12/2021,16:54,,,40.784943,-73.946594,"(40.784943, -73.946594)",EAST 97 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409391,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2021,10:42,QUEENS,11692,40.592846,-73.79616,"(40.592846, -73.79616)",BEACH CHANNEL DRIVE,BEACH 67 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409354,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:12,MANHATTAN,10018,40.757065,-74.00106,"(40.757065, -74.00106)",11 AVENUE,WEST 36 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409215,Dump,E-Scooter,,, +04/15/2021,12:53,BRONX,10461,40.849712,-73.83038,"(40.849712, -73.83038)",,,3151 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4409089,Sedan,,,, +04/12/2021,16:20,QUEENS,11375,40.722973,-73.83933,"(40.722973, -73.83933)",112 STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409332,Sedan,Sedan,,, +04/19/2021,13:07,BROOKLYN,11207,40.667637,-73.8996,"(40.667637, -73.8996)",,,309 HINSDALE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4408812,Sedan,Sedan,,, +04/19/2021,2:10,MANHATTAN,10018,40.75398,-73.99373,"(40.75398, -73.99373)",,,338 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408450,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:33,BROOKLYN,11212,40.66659,-73.9032,"(40.66659, -73.9032)",POWELL STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408881,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/19/2021,8:00,,,40.650597,-73.97209,"(40.650597, -73.97209)",PARK CIRCLE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408632,Sedan,Pick-up Truck,,, +04/19/2021,22:15,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408844,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,17:27,BRONX,10451,40.824806,-73.91352,"(40.824806, -73.91352)",EAST 162 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408775,Sedan,Sedan,,, +04/19/2021,10:45,,,40.70166,-73.961464,"(40.70166, -73.961464)",WYTHE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4408728,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/16/2021,18:00,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409375,Sedan,,,, +04/16/2021,16:30,QUEENS,11105,40.777958,-73.90847,"(40.777958, -73.90847)",21 AVENUE,31 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409178,Sedan,,,, +04/19/2021,13:45,,,40.733536,-73.87035,"(40.733536, -73.87035)",WOODHAVEN BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408747,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,20:25,MANHATTAN,10032,40.83468,-73.944435,"(40.83468, -73.944435)",BROADWAY,WEST 158 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2021,16:20,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4402282,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/19/2021,17:55,QUEENS,11377,40.742485,-73.912834,"(40.742485, -73.912834)",QUEENS BOULEVARD,52 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408673,Sedan,Sedan,,, +04/19/2021,15:10,,,40.753693,-73.89831,"(40.753693, -73.89831)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4408891,Sedan,Sedan,,, +04/19/2021,23:17,BRONX,10461,40.843163,-73.82812,"(40.843163, -73.82812)",ZULETTE AVENUE,HOLLYWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408978,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,22:00,,,40.651676,-74.010635,"(40.651676, -74.010635)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408708,Taxi,,,, +04/19/2021,15:30,,,40.842197,-73.87215,"(40.842197, -73.87215)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:06,BRONX,10472,40.82989,-73.873276,"(40.82989, -73.873276)",BRONX RIVER PARKWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408492,Sedan,Sedan,,, +04/19/2021,17:44,QUEENS,11105,40.776287,-73.908516,"(40.776287, -73.908516)",,,21-52 33 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4408754,Van,,,, +04/19/2021,16:06,BRONX,10454,40.805367,-73.9219,"(40.805367, -73.9219)",EAST 134 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408767,Tractor Truck Diesel,Sedan,,, +04/19/2021,16:15,,,,,,84 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408658,Sedan,Sedan,,, +04/19/2021,13:50,QUEENS,11373,40.739395,-73.87792,"(40.739395, -73.87792)",BROADWAY,CORONA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408753,E-Bike,Sedan,,, +04/19/2021,8:25,,,40.827206,-73.94246,"(40.827206, -73.94246)",WEST 150 STREET,,,1,0,1,0,0,0,0,0,Glare,,,,,4409128,Sedan,,,, +04/19/2021,20:20,BRONX,10458,40.876163,-73.881516,"(40.876163, -73.881516)",VANCORTLANDT AVENUE EAST,EAST MOSHOLU PARKWAY NORTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408722,Station Wagon/Sport Utility Vehicle,Van,,, +04/14/2021,16:00,QUEENS,11105,40.78228,-73.914604,"(40.78228, -73.914604)",21 STREET,21 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4409158,Taxi,Bike,,, +04/19/2021,1:15,,,40.798576,-73.97316,"(40.798576, -73.97316)",RIVERSIDE DRIVE,WEST 100 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4408337,Sedan,Sedan,,, +04/16/2021,19:45,MANHATTAN,10029,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409197,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2021,22:30,,,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409313,Sedan,,,, +04/19/2021,19:00,,,40.692345,-73.88179,"(40.692345, -73.88179)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409292,Sedan,Sedan,,, +04/19/2021,23:40,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4408839,Sedan,Sedan,,, +04/19/2021,10:00,,,40.744576,-73.82581,"(40.744576, -73.82581)",MAIN STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4408596,Sedan,Motorcycle,,, +04/19/2021,14:30,BROOKLYN,11206,40.69963,-73.93276,"(40.69963, -73.93276)",,,138 MELROSE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408601,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:15,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4408789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:30,QUEENS,11385,40.703953,-73.89052,"(40.703953, -73.89052)",,,65-15 70 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409195,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,15:50,,,40.600426,-73.941895,"(40.600426, -73.941895)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408618,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,21:15,BROOKLYN,11208,40.66349,-73.87921,"(40.66349, -73.87921)",LINDEN BOULEVARD,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408829,Box Truck,Ambulance,,, +04/17/2021,14:40,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",SOUTHERN BOULEVARD,EAST 180 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409226,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,15:30,BROOKLYN,11201,40.692055,-73.982544,"(40.692055, -73.982544)",FLATBUSH AVENUE EXTENSION,WILLOUGHBY STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4408648,Sedan,Sedan,,, +04/19/2021,14:29,BRONX,10467,40.8753,-73.86813,"(40.8753, -73.86813)",OLINVILLE AVENUE,MAGENTA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408860,Sedan,,,, +04/19/2021,14:10,QUEENS,11378,40.718544,-73.91784,"(40.718544, -73.91784)",,,58-38 PAGE PLACE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4409289,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:00,,,40.60589,-73.98972,"(40.60589, -73.98972)",79 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408538,Ambulance,Pick-up Truck,,, +04/19/2021,17:00,QUEENS,11414,40.65686,-73.8393,"(40.65686, -73.8393)",,,160-40 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408790,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:50,BRONX,10466,40.887486,-73.86211,"(40.887486, -73.86211)",,,666 EAST 224 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408855,Sedan,Sedan,,, +04/19/2021,14:00,QUEENS,11369,40.762302,-73.87122,"(40.762302, -73.87122)",,,98-02 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408885,Bus,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,10:35,BRONX,10458,40.865562,-73.88965,"(40.865562, -73.88965)",,,2705 MARION AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408560,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:00,,,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4408616,Bus,Sedan,,, +04/15/2021,16:00,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",111 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4409251,Sedan,,,, +04/19/2021,14:30,MANHATTAN,10033,40.850166,-73.93576,"(40.850166, -73.93576)",BROADWAY,WEST 181 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409278,Sedan,Bike,,, +04/19/2021,8:44,BROOKLYN,11201,40.689804,-73.97794,"(40.689804, -73.97794)",DE KALB AVENUE,SAINT FELIX STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408643,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/19/2021,13:29,,,40.780693,-73.9466,"(40.780693, -73.9466)",EAST 92 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408740,Bus,Bike,,, +04/10/2021,2:00,BRONX,10460,40.844593,-73.88167,"(40.844593, -73.88167)",EAST 180 STREET,DALY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409229,Sedan,Sedan,,, +04/19/2021,18:00,BROOKLYN,11229,40.599907,-73.94664,"(40.599907, -73.94664)",BEDFORD AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408941,Sedan,Bike,,, +04/16/2021,21:28,STATEN ISLAND,10309,40.514412,-74.20625,"(40.514412, -74.20625)",HYLAN BOULEVARD,WOODVALE AVENUE,,6,0,0,0,0,0,6,0,Failure to Yield Right-of-Way,Unspecified,,,,4409183,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,11:10,,,,,,THROGS NECK EXPRESSWAY,LAWTON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4408577,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,18:08,QUEENS,11101,40.75024,-73.94208,"(40.75024, -73.94208)",42 ROAD,24 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408656,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,7:17,QUEENS,11415,40.702793,-73.83214,"(40.702793, -73.83214)",LEFFERTS BOULEVARD,85 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4408467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,13:00,,,40.66495,-73.993355,"(40.66495, -73.993355)",17 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408635,Station Wagon/Sport Utility Vehicle,Dump,,, +04/14/2021,11:10,BROOKLYN,11221,40.68662,-73.934166,"(40.68662, -73.934166)",,,583 MADISON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409319,Sedan,Sedan,Sedan,, +04/19/2021,13:00,BRONX,10459,40.824997,-73.89296,"(40.824997, -73.89296)",,,1059 SIMPSON STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408779,Sedan,,,, +04/19/2021,16:05,BROOKLYN,11204,40.61499,-73.994354,"(40.61499, -73.994354)",,,7213 18 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4408624,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,10:45,BROOKLYN,11231,40.676765,-73.999695,"(40.676765, -73.999695)",,,153 NELSON STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4409423,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,14:10,,,40.827343,-73.94279,"(40.827343, -73.94279)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4409126,Taxi,,,, +04/19/2021,16:10,BRONX,10466,,,,,,1920 SCHIEFELIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,17:11,,,40.77761,-73.74365,"(40.77761, -73.74365)",LITTLE NECK PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408690,Sedan,Sedan,Sedan,, +04/19/2021,10:40,BROOKLYN,11207,40.660217,-73.89675,"(40.660217, -73.89675)",NEW LOTS AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408827,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,15:40,BROOKLYN,11233,40.671898,-73.92231,"(40.671898, -73.92231)",RALPH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408880,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,7:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,0:00,MANHATTAN,10007,40.712063,-74.01016,"(40.712063, -74.01016)",CHURCH STREET,VESEY STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408733,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,15:55,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409072,Sedan,Sedan,,, +04/19/2021,7:30,BRONX,10466,40.893665,-73.86063,"(40.893665, -73.86063)",EAST 232 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409213,Sedan,,,, +04/19/2021,19:25,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",MYRTLE AVENUE,BROADWAY,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4408684,Sedan,Bike,,, +04/14/2021,19:56,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409117,,,,, +04/19/2021,20:30,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",34 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408670,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,2:30,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",133 AVENUE,LAURELTON PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408432,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,18:14,QUEENS,11106,40.766815,-73.9386,"(40.766815, -73.9386)",33 ROAD,VERNON BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409160,Sedan,Sedan,,, +04/17/2021,4:25,,,40.61242,-74.09936,"(40.61242, -74.09936)",CLOVE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409333,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,15:15,STATEN ISLAND,10306,40.56843,-74.14132,"(40.56843, -74.14132)",CLARKE AVENUE,MCKINLEY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4408608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,20:25,,,40.749607,-73.89687,"(40.749607, -73.89687)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408712,Sedan,Sedan,Sedan,, +04/05/2021,17:49,QUEENS,11385,40.702785,-73.85705,"(40.702785, -73.85705)",MYRTLE AVENUE,88 LANE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4409299,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,0:00,BROOKLYN,11212,40.657894,-73.92082,"(40.657894, -73.92082)",,,9327 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409207,Sedan,,,, +04/19/2021,22:10,BROOKLYN,11204,40.621838,-73.985374,"(40.621838, -73.985374)",,,1863 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408949,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,10:09,QUEENS,11432,40.709118,-73.79784,"(40.709118, -73.79784)",,,164-30 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409350,Sedan,Sedan,,, +04/19/2021,23:12,BRONX,10451,40.81738,-73.9257,"(40.81738, -73.9257)",,,2824 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408773,Sedan,,,, +04/19/2021,19:24,BROOKLYN,11236,40.63226,-73.90088,"(40.63226, -73.90088)",EAST 87 STREET,AVENUE M,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408981,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,18:20,BROOKLYN,11228,40.614666,-74.0133,"(40.614666, -74.0133)",85 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408700,Sedan,Sedan,,, +04/19/2021,0:00,,,40.697575,-73.984055,"(40.697575, -73.984055)",DUFFIELD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408650,Sedan,,,, +04/19/2021,17:15,,,,,,UNIVERSITY HEIGHTS BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409149,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,10:45,MANHATTAN,10027,40.80739,-73.9467,"(40.80739, -73.9467)",,,114 WEST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409172,Taxi,,,, +04/19/2021,11:00,BROOKLYN,11207,40.65333,-73.89001,"(40.65333, -73.89001)",,,960 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408811,Station Wagon/Sport Utility Vehicle,BOX,,, +04/19/2021,10:32,,,40.78775,-73.947464,"(40.78775, -73.947464)",3 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408906,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:44,BROOKLYN,11249,40.709053,-73.96711,"(40.709053, -73.96711)",WYTHE AVENUE,SOUTH 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408727,Sedan,,,, +04/17/2021,21:52,MANHATTAN,10029,40.788578,-73.939705,"(40.788578, -73.939705)",,,430 EAST 105 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409392,Sedan,Sedan,,, +04/19/2021,8:05,BRONX,10455,40.816433,-73.919106,"(40.816433, -73.919106)",,,358 EAST 149 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408758,Sedan,Sedan,,, +04/19/2021,22:40,BROOKLYN,11233,40.676094,-73.904366,"(40.676094, -73.904366)",ATLANTIC AVENUE,HAVENS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409220,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,17:00,BRONX,10457,40.8385,-73.90509,"(40.8385, -73.90509)",,,1504 BROOK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409087,Station Wagon/Sport Utility Vehicle,Bus,,, +04/14/2021,18:14,MANHATTAN,10003,40.73715,-73.98859,"(40.73715, -73.98859)",PARK AVENUE SOUTH,EAST 18 STREET,,1,0,0,0,1,0,0,0,Pavement Defective,Unspecified,,,,4409306,Sedan,Bike,,, +04/19/2021,15:20,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408768,Van,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,6:45,,,40.681656,-73.76238,"(40.681656, -73.76238)",SIDWAY PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409294,Sedan,,,, +04/16/2021,20:42,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4409101,Sedan,Sedan,,, +04/19/2021,1:51,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408339,Sedan,Sedan,,, +04/12/2021,15:00,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4409199,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/19/2021,11:06,QUEENS,11436,40.674225,-73.79986,"(40.674225, -73.79986)",141 STREET,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409151,Sedan,,,, +04/19/2021,20:50,BROOKLYN,11217,40.6865,-73.98787,"(40.6865, -73.98787)",DEAN STREET,HOYT STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4408679,Bike,,,, +04/19/2021,16:23,BRONX,10462,40.83483,-73.85946,"(40.83483, -73.85946)",,,1949 MCGRAW AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408842,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,10:30,,,40.610912,-74.16142,"(40.610912, -74.16142)",,,40 JARDINE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:57,,,40.679485,-73.897026,"(40.679485, -73.897026)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408830,Bus,PK,,, +04/15/2021,18:00,,,40.773365,-73.9068,"(40.773365, -73.9068)",DITMARS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409177,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,15:46,BROOKLYN,11204,40.624947,-73.97712,"(40.624947, -73.97712)",20 AVENUE,DAHILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408950,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,17:00,,,40.575336,-73.996445,"(40.575336, -73.996445)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408731,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:55,,,40.679737,-73.76162,"(40.679737, -73.76162)",FARMERS BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408745,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2021,0:01,,,40.689102,-73.94507,"(40.689102, -73.94507)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4408892,Sedan,Sedan,,, +04/19/2021,13:49,BRONX,10474,40.81843,-73.887535,"(40.81843, -73.887535)",,,861 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408780,Sedan,Sedan,,, +04/19/2021,5:57,,,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408621,Sedan,Carry All,,, +04/19/2021,9:00,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408647,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,10:53,QUEENS,11378,40.723835,-73.90634,"(40.723835, -73.90634)",56 DRIVE,60 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4409288,Flat Bed,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/19/2021,9:30,STATEN ISLAND,10306,40.5643,-74.103485,"(40.5643, -74.103485)",,,91 FINLEY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408545,Sedan,Sedan,,, +04/19/2021,8:00,BRONX,10460,40.845226,-73.88079,"(40.845226, -73.88079)",,,924 EAST 181 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409230,Sedan,,,, +04/19/2021,16:48,QUEENS,11420,40.669,-73.8048,"(40.669, -73.8048)",133 AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408791,Taxi,,,, +04/19/2021,1:35,BROOKLYN,11215,40.655834,-73.98123,"(40.655834, -73.98123)",19 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4408707,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,14:30,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,,,4409369,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/12/2021,15:32,,,40.700855,-73.86837,"(40.700855, -73.86837)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unsafe Lane Changing,,,4409194,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2021,18:15,MANHATTAN,10023,40.772865,-73.98955,"(40.772865, -73.98955)",WEST END AVENUE,WEST 61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,13:49,BROOKLYN,11214,40.59287,-73.99607,"(40.59287, -73.99607)",,,1752 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4408625,Sedan,,,, +04/19/2021,17:34,QUEENS,11413,40.676117,-73.74046,"(40.676117, -73.74046)",MERRICK BOULEVARD,230 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408651,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,2:16,QUEENS,11385,40.710777,-73.86502,"(40.710777, -73.86502)",COOPER AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408908,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,15:50,BRONX,10461,40.8464,-73.84341,"(40.8464, -73.84341)",,,1552 WATERS PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,,,,4408856,Sedan,Bike,,, +04/19/2021,16:51,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",BOSTON ROAD,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408864,Bus,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:39,,,40.79486,-73.94649,"(40.79486, -73.94649)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409393,Sedan,Sedan,,, +04/19/2021,8:40,,,40.58096,-73.96466,"(40.58096, -73.96466)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4408529,Sedan,Sedan,,, +04/19/2021,23:14,QUEENS,11373,40.739582,-73.87372,"(40.739582, -73.87372)",,,90-09 51 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408750,Sedan,,,, +04/19/2021,3:49,,,40.762802,-73.965675,"(40.762802, -73.965675)",3 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409434,Taxi,Sedan,,, +04/19/2021,0:00,MANHATTAN,10030,40.81637,-73.9403,"(40.81637, -73.9403)",,,120 WEST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408592,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,23:30,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4409429,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,0:25,BROOKLYN,11207,40.678677,-73.8928,"(40.678677, -73.8928)",,,112 MILLER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,8:40,BRONX,10459,40.828236,-73.88602,"(40.828236, -73.88602)",WHITLOCK AVENUE,FREEMAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4408464,Sedan,Tractor Truck Diesel,,, +04/19/2021,18:50,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4408657,Sedan,,,, +04/19/2021,19:30,BRONX,10467,40.865448,-73.86635,"(40.865448, -73.86635)",ALLERTON AVENUE,CRUGER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408854,Sedan,,,, +04/17/2021,15:00,,,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409321,Sedan,,,, +04/19/2021,7:45,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",BRUCKNER BOULEVARD,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408777,Bus,,,, +04/19/2021,13:30,QUEENS,11101,40.73687,-73.928505,"(40.73687, -73.928505)",HUNTERS POINT AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408612,Bus,Sedan,,, +04/17/2021,1:00,MANHATTAN,10027,40.809605,-73.94981,"(40.809605, -73.94981)",,,253 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4409171,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,13:55,BRONX,10460,40.840637,-73.86624,"(40.840637, -73.86624)",,,1841 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Other Vehicular,Following Too Closely,Following Too Closely,,,4409118,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +04/19/2021,21:05,,,40.697193,-73.72752,"(40.697193, -73.72752)",CROSS ISLAND PARKWAY,115 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4408713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,16:36,,,,,,DOUGLASTON PARKWAY,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408691,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/19/2021,10:20,BROOKLYN,11215,,,,6 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408926,Pick-up Truck,Tractor Truck Gasoline,,, +04/19/2021,7:50,MANHATTAN,10003,40.730457,-73.99366,"(40.730457, -73.99366)",,,300 MERCER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409066,Box Truck,Tanker,Station Wagon/Sport Utility Vehicle,, +04/19/2021,20:12,QUEENS,11414,40.65295,-73.84703,"(40.65295, -73.84703)",84 STREET,162 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4408720,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,19:31,STATEN ISLAND,10301,40.618332,-74.093956,"(40.618332, -74.093956)",,,580 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409334,Sedan,,,, +04/19/2021,6:52,QUEENS,11101,,,,32 PLACE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408609,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan,, +04/19/2021,0:00,QUEENS,11385,40.704845,-73.892136,"(40.704845, -73.892136)",65 STREET,CATALPA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409300,Sedan,,,, +04/19/2021,10:00,BROOKLYN,11218,40.638733,-73.98468,"(40.638733, -73.98468)",14 AVENUE,40 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408575,Sedan,Carry All,,, +04/15/2021,17:19,BROOKLYN,11219,40.637054,-73.98643,"(40.637054, -73.98643)",14 AVENUE,43 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409182,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,14:00,BROOKLYN,11207,40.653324,-73.8867,"(40.653324, -73.8867)",,,1115 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408826,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,18:56,BROOKLYN,11212,40.6557,-73.911095,"(40.6557, -73.911095)",HEGEMAN AVENUE,AMBOY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408878,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,0:00,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408636,Sedan,Sedan,,, +04/19/2021,18:30,MANHATTAN,10014,40.72766,-74.00316,"(40.72766, -74.00316)",AVENUE OF THE AMERICAS,KING STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408734,Bike,E-Scooter,,, +04/19/2021,0:00,BRONX,10473,40.823112,-73.8679,"(40.823112, -73.8679)",,,902 SOUND VIEW AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408846,SCHOOL BUS,,,, +04/19/2021,16:50,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408772,Sedan,Sedan,,, +04/19/2021,7:30,MANHATTAN,10005,40.706722,-74.00679,"(40.706722, -74.00679)",MAIDEN LANE,PEARL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408561,Sedan,Box Truck,,, +04/19/2021,0:00,QUEENS,11429,40.71307,-73.75362,"(40.71307, -73.75362)",FRANCIS LEWIS BOULEVARD,99 AVENUE,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4408433,Motorcycle,,,, +04/19/2021,19:00,QUEENS,11427,40.729748,-73.74162,"(40.729748, -73.74162)",,,221-09 BRADDOCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4408669,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/16/2021,11:50,,,40.784355,-73.98117,"(40.784355, -73.98117)",WEST 79 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409274,Sedan,Sedan,,, +04/19/2021,14:40,BROOKLYN,11230,40.6306,-73.97031,"(40.6306, -73.97031)",FOSTER AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408741,Station Wagon/Sport Utility Vehicle,PK,,, +04/19/2021,15:10,QUEENS,11377,40.741673,-73.895744,"(40.741673, -73.895744)",43 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408639,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,13:25,STATEN ISLAND,10301,40.61965,-74.09969,"(40.61965, -74.09969)",HIGHLAND AVENUE,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409124,Sedan,Sedan,,, +04/17/2021,17:20,QUEENS,11370,40.769184,-73.89639,"(40.769184, -73.89639)",,,21-54 73 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409161,Sedan,Sedan,,, +04/19/2021,18:35,BROOKLYN,11233,40.685158,-73.9273,"(40.685158, -73.9273)",,,699 HANCOCK STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4408947,Bike,Taxi,,, +04/19/2021,18:10,,,40.87029,-73.84318,"(40.87029, -73.84318)",EASTCHESTER ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409210,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,18:30,QUEENS,11357,40.78058,-73.81431,"(40.78058, -73.81431)",150 STREET,20 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408686,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,15:16,MANHATTAN,10025,40.79166,-73.96469,"(40.79166, -73.96469)",WEST 96 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408985,Carry All,Station Wagon/Sport Utility Vehicle,,, +04/10/2021,19:20,QUEENS,11385,40.709057,-73.86324,"(40.709057, -73.86324)",,,88-01 RUTLEDGE AVENUE,0,0,0,0,0,0,0,0,,,,,,4409256,Sedan,,,, +04/19/2021,9:10,QUEENS,11691,40.599754,-73.750084,"(40.599754, -73.750084)",,,17-20 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4408793,Dump,,,, +04/19/2021,14:50,,,40.725365,-73.89454,"(40.725365, -73.89454)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409295,Sedan,Bus,,, +04/19/2021,18:35,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FULTON STREET,FLATBUSH AVENUE EXTENSION,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4409323,Sedan,Taxi,,, +04/19/2021,6:00,,,40.825504,-73.886086,"(40.825504, -73.886086)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408604,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,21:25,MANHATTAN,10016,40.7415,-73.97781,"(40.7415, -73.97781)",,,301 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4408843,Station Wagon/Sport Utility Vehicle,,,, +04/04/2021,1:30,,,40.791405,-73.93569,"(40.791405, -73.93569)",FDR DRIVE,,,5,0,0,0,0,0,5,0,Other Vehicular,Unspecified,Unspecified,,,4409193,Sedan,Sedan,Sedan,, +04/19/2021,8:00,QUEENS,11691,40.593647,-73.78346,"(40.593647, -73.78346)",,,334 BEACH 53 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4408783,Sedan,,,, +04/19/2021,12:00,MANHATTAN,10030,40.81847,-73.9414,"(40.81847, -73.9414)",7 AVENUE,WEST 140 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408591,Sedan,Sedan,,, +04/19/2021,10:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408628,Sedan,Sedan,,, +04/19/2021,14:47,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",LIVONIA AVENUE,BRISTOL STREET,,5,0,0,0,0,0,5,0,Other Vehicular,Other Vehicular,,,,4408883,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:22,BRONX,10466,40.887413,-73.8607,"(40.887413, -73.8607)",,,3959 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408865,Sedan,,,, +02/19/2022,2:28,QUEENS,11429,40.711735,-73.73662,"(40.711735, -73.73662)",,,104-27 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4503863,Sedan,Sedan,Sedan,, +04/14/2021,0:00,BRONX,10466,40.88895,-73.82884,"(40.88895, -73.82884)",,,1614 EAST 233 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409212,Sedan,Sedan,,, +04/16/2021,14:10,,,40.68949,-73.92207,"(40.68949, -73.92207)",GATES AVENUE,,,2,0,0,0,0,0,2,0,Oversized Vehicle,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,4409301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/19/2021,19:13,MANHATTAN,10039,40.82289,-73.94208,"(40.82289, -73.94208)",,,300 WEST 145 STREET,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4408961,Tractor Truck Diesel,,,, +04/19/2021,14:30,MANHATTAN,10002,40.721344,-73.986755,"(40.721344, -73.986755)",,,166 ESSEX STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409361,Bus,,,, +04/19/2021,21:53,BRONX,10467,40.884182,-73.87899,"(40.884182, -73.87899)",,,3569 DEKALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408724,Sedan,,,, +04/15/2021,23:00,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409136,Taxi,,,, +04/18/2021,16:40,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,2:03,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408350,Tractor Truck Diesel,Sedan,,, +04/18/2021,23:30,QUEENS,11369,40.761425,-73.86053,"(40.761425, -73.86053)",DITMARS BOULEVARD,31 DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,15:29,QUEENS,11436,40.676598,-73.795944,"(40.676598, -73.795944)",120 AVENUE,144 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4408749,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,20:48,BRONX,10456,40.83394,-73.9087,"(40.83394, -73.9087)",WEBSTER AVENUE,EAST 169 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4408769,Sedan,,,, +04/17/2021,20:30,MANHATTAN,10001,40.752052,-74.000984,"(40.752052, -74.000984)",WEST 30 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409200,Sedan,,,, +04/19/2021,0:00,BROOKLYN,11237,40.694557,-73.906555,"(40.694557, -73.906555)",IRVING AVENUE,HALSEY STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4408678,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/19/2021,10:30,,,40.862392,-73.91802,"(40.862392, -73.91802)",9 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4408898,Sedan,Sedan,,, +04/19/2021,17:25,BROOKLYN,11220,40.64466,-74.00507,"(40.64466, -74.00507)",,,662 47 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408706,Sedan,Sedan,,, +04/18/2021,17:45,BRONX,10457,40.84597,-73.896545,"(40.84597, -73.896545)",,,4183 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,8:55,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4409396,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,17:03,BRONX,10454,40.807556,-73.919235,"(40.807556, -73.919235)",EAST 138 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4408759,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,11:26,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4408620,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/19/2021,3:35,BROOKLYN,11226,40.64495,-73.95186,"(40.64495, -73.95186)",ROGERS AVENUE,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4408504,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/19/2021,0:17,BROOKLYN,11207,40.66453,-73.89545,"(40.66453, -73.89545)",,,590 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408836,Sedan,Sedan,,, +04/19/2021,17:30,BROOKLYN,11203,40.652317,-73.92752,"(40.652317, -73.92752)",EAST 53 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:35,,,40.66696,-73.77078,"(40.66696, -73.77078)",SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408653,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,14:30,MANHATTAN,10018,40.752228,-73.98385,"(40.752228, -73.98385)",,,48 WEST 39 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408646,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,16:20,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,22:15,BRONX,10475,40.8685,-73.832596,"(40.8685, -73.832596)",NEW ENGLAND THRUWAY,BARTOW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409217,Sedan,,,, +04/19/2021,16:00,BROOKLYN,11220,40.63812,-74.02476,"(40.63812, -74.02476)",WAKEMAN PLACE,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408699,Sedan,Sedan,,, +04/19/2021,16:45,,,40.579803,-73.97184,"(40.579803, -73.97184)",WEST 5 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4408730,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2021,6:00,,,,,,VERNON BOULEVARD,welling ct,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409175,Bike,,,, +04/19/2021,14:25,,,,,,SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409108,Sedan,,,, +04/16/2021,21:17,,,,,,NICK LAPORTE PLACE,BAY STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4409349,Sedan,Bike,,, +04/12/2021,19:00,,,,,,FEATHERBED LANE,MACOMBS ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409432,Sedan,,,, +04/19/2021,15:00,BROOKLYN,11210,40.633457,-73.94773,"(40.633457, -73.94773)",,,2131 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408744,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,14:00,,,40.74807,-73.83075,"(40.74807, -73.83075)",BOOTH MEMORIAL AVENUE,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4408687,Station Wagon/Sport Utility Vehicle,,,, +04/11/2021,1:35,QUEENS,11429,40.71307,-73.75362,"(40.71307, -73.75362)",FRANCIS LEWIS BOULEVARD,99 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,21:10,QUEENS,11375,40.730946,-73.84859,"(40.730946, -73.84859)",108 STREET,65 ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4408996,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,13:23,BRONX,10453,40.854763,-73.90765,"(40.854763, -73.90765)",DAVIDSON AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409081,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,18:00,,,40.832027,-73.93528,"(40.832027, -73.93528)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4409119,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,23:45,,,40.74724,-73.73696,"(40.74724, -73.73696)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408714,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,17:16,,,,,,EAST 161 STREET,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487984,Sedan,Sedan,,, +11/05/2021,15:00,MANHATTAN,10035,40.808956,-73.94041,"(40.808956, -73.94041)",5 AVENUE,WEST 129 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Other Vehicular,,,4475081,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +12/15/2021,18:20,BROOKLYN,11230,40.623825,-73.9737,"(40.623825, -73.9737)",AVENUE J,EAST 3 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486856,Sedan,Sedan,,, +12/16/2021,13:09,MANHATTAN,10002,40.72261,-73.99242,"(40.72261, -73.99242)",,,9 STANTON STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4488018,Sedan,,,, +12/16/2021,19:30,,,40.60457,-73.75355,"(40.60457, -73.75355)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,0:00,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",NORTHERN BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485745,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,14:45,QUEENS,11373,40.72903,-73.881775,"(40.72903, -73.881775)",,,81-17 57 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488022,Sedan,Sedan,,, +12/17/2021,8:01,QUEENS,11691,40.59458,-73.7584,"(40.59458, -73.7584)",,,179 BEACH 25 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488023,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,22:20,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504569,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/16/2022,16:45,QUEENS,11101,40.751648,-73.95042,"(40.751648, -73.95042)",,,43-35 9 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504479,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,14:30,QUEENS,11355,40.7473,-73.828995,"(40.7473, -73.828995)",BOOTH MEMORIAL AVENUE,136 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4503979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,17:40,,,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4503986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,5:38,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4504447,Sedan,Pick-up Truck,,, +02/19/2022,8:45,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504016,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,14:30,,,40.71154,-73.83624,"(40.71154, -73.83624)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4504467,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,4:52,BRONX,10456,40.831184,-73.913284,"(40.831184, -73.913284)",EAST 167 STREET,FINDLAY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4504098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,18:30,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4504510,Sedan,Sedan,,, +02/19/2022,4:20,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",CEDAR AVENUE,WEST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4503930,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/17/2022,8:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/17/2022,14:03,STATEN ISLAND,10304,40.623524,-74.083015,"(40.623524, -74.083015)",,,217 BROAD STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504501,Sedan,,,, +02/19/2022,6:40,,,,,,HORACE HARDING EXPRESSWAY,RODMAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504543,Station Wagon/Sport Utility Vehicle,Dump,,, +02/19/2022,1:28,MANHATTAN,10013,40.720375,-74.003265,"(40.720375, -74.003265)",CANAL STREET,GREENE STREET,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4503942,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,18:02,BROOKLYN,11236,40.63465,-73.9146,"(40.63465, -73.9146)",,,7812 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504008,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,3:00,BRONX,10462,40.84274,-73.854485,"(40.84274, -73.854485)",,,1514 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4487625,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/15/2021,22:20,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4486817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,23:55,,,40.644073,-73.935394,"(40.644073, -73.935394)",CLARENDON ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4487596,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/17/2021,9:30,QUEENS,11421,40.69756,-73.85275,"(40.69756, -73.85275)",WOODHAVEN BOULEVARD,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487242,Sedan,,,, +12/15/2021,21:25,BROOKLYN,11221,40.69706,-73.91933,"(40.69706, -73.91933)",WILSON AVENUE,BLEECKER STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4486921,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,11:44,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",DE KALB AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,,,,,,4487831,,,,, +12/15/2021,2:39,MANHATTAN,10024,40.788357,-73.97453,"(40.788357, -73.97453)",WEST 87 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4486858,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/16/2021,17:15,MANHATTAN,10017,40.75524,-73.97328,"(40.75524, -73.97328)",EAST 48 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4487367,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,21:05,MANHATTAN,10022,40.760365,-73.97377,"(40.760365, -73.97377)",MADISON AVENUE,EAST 54 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4487224,Sedan,,,, +12/17/2021,1:25,BROOKLYN,11203,40.643894,-73.93826,"(40.643894, -73.93826)",CLARENDON ROAD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487595,Sedan,Sedan,,, +12/16/2021,13:00,BROOKLYN,11225,40.66336,-73.95975,"(40.66336, -73.95975)",MC KEEVER PLACE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487112,Sedan,Sedan,,, +12/14/2021,7:20,MANHATTAN,10024,40.78517,-73.973145,"(40.78517, -73.973145)",WEST 84 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4487420,USPS truck,Sedan,Sedan,, +12/12/2021,12:22,MANHATTAN,10022,,,,EAST 51 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487352,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,16:20,QUEENS,11364,40.74424,-73.77618,"(40.74424, -73.77618)",FRANCIS LEWIS BOULEVARD,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487093,Pick-up Truck,Sedan,,, +12/15/2021,1:22,QUEENS,11374,40.711777,-73.85928,"(40.711777, -73.85928)",,,90-13 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4486545,Sedan,Sedan,,, +12/04/2021,23:40,,,,,,VANWYCK EXPRESSWAY EXTENSION,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4487896,Sedan,,,, +12/12/2021,22:00,STATEN ISLAND,10306,40.560104,-74.124405,"(40.560104, -74.124405)",,,153 CHAMPLAIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487477,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,9:10,,,40.85711,-73.93561,"(40.85711, -73.93561)",FORT WASHINGTON AVENUE,,,3,0,0,0,0,0,3,0,Backing Unsafely,Unspecified,,,,4487661,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,16:55,BROOKLYN,11229,40.602303,-73.93566,"(40.602303, -73.93566)",,,2165 GERRITSEN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486842,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/16/2021,20:15,QUEENS,11101,40.753468,-73.91355,"(40.753468, -73.91355)",NORTHERN BOULEVARD,49 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,9:00,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4487229,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/17/2021,10:45,,,40.71373,-74.01385,"(40.71373, -74.01385)",WEST STREET,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4487285,Sedan,Taxi,,, +12/16/2021,0:40,MANHATTAN,10013,40.71824,-74.000725,"(40.71824, -74.000725)",,,114 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486977,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,16:50,,,40.753986,-73.80769,"(40.753986, -73.80769)",159 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487431,Station Wagon/Sport Utility Vehicle,Bike,,, +12/04/2021,18:04,BROOKLYN,11233,40.67495,-73.91475,"(40.67495, -73.91475)",,,2208 DEAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487532,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,17:48,BROOKLYN,11208,40.673943,-73.86393,"(40.673943, -73.86393)",SUTTER AVENUE,ELDERTS LANE,,1,0,1,0,0,0,0,0,Glare,,,,,4408969,Sedan,,,, +12/12/2021,3:50,BROOKLYN,11221,40.68917,-73.93628,"(40.68917, -73.93628)",,,211 LEWIS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4487834,Sedan,Sedan,Sedan,Sedan,Sedan +12/15/2021,12:30,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486884,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,0:00,MANHATTAN,10033,40.84706,-73.93818,"(40.84706, -73.93818)",,,4162 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487695,Sedan,,,, +12/12/2021,17:12,BROOKLYN,11233,40.67781,-73.93027,"(40.67781, -73.93027)",,,41 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487775,Bus,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,17:50,BROOKLYN,11234,40.621735,-73.92719,"(40.621735, -73.92719)",,,2040 UTICA AVENUE,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4487061,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,16:10,MANHATTAN,10013,40.722122,-74.00977,"(40.722122, -74.00977)",LAIGHT STREET,GREENWICH STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487142,Sedan,,,, +12/16/2021,18:15,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,EDSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487795,Sedan,,,, +12/15/2021,3:30,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4486583,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,19:45,QUEENS,11368,40.73939,-73.85478,"(40.73939, -73.85478)",,,105-39 OTIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487327,Taxi,,,, +12/16/2021,3:30,QUEENS,11373,40.743793,-73.88472,"(40.743793, -73.88472)",BROADWAY,80 STREET,,2,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486891,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/16/2021,9:00,MANHATTAN,10029,40.800617,-73.9465,"(40.800617, -73.9465)",,,1385 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487110,Sedan,NYC FIRE T,,, +12/16/2021,16:30,,,,,,,,71 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487256,Bike,Bike,,, +12/16/2021,11:45,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487317,Sedan,Sedan,Sedan,, +12/16/2021,10:13,,,,,,MANHATTAN BR LOWER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487642,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/08/2021,12:30,MANHATTAN,10033,40.84619,-73.93846,"(40.84619, -73.93846)",BROADWAY,WEST 175 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4487407,Bike,Sedan,,, +12/16/2021,23:11,BROOKLYN,11214,40.591045,-73.99207,"(40.591045, -73.99207)",CROPSEY AVENUE,BAY 41 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4487576,Sedan,Sedan,Sedan,, +12/16/2021,11:38,MANHATTAN,10128,40.78257,-73.94522,"(40.78257, -73.94522)",EAST 95 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487134,Sedan,Sedan,,, +12/17/2021,8:24,,,40.734795,-73.80115,"(40.734795, -73.80115)",67 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4487678,Sedan,Sedan,,, +12/16/2021,10:35,BRONX,10472,40.828686,-73.87799,"(40.828686, -73.87799)",,,1537 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487037,Sedan,E-Bike,,, +12/16/2021,1:42,MANHATTAN,10029,40.793816,-73.94012,"(40.793816, -73.94012)",EAST 111 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4487552,Bike,,,, +12/15/2021,4:00,QUEENS,11413,40.689735,-73.74729,"(40.689735, -73.74729)",121 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4486639,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/16/2021,15:30,,,40.76705,-73.887184,"(40.76705, -73.887184)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487262,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,17:55,QUEENS,11369,40.75866,-73.876465,"(40.75866, -73.876465)",92 STREET,32 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4487261,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,4:00,QUEENS,11365,40.73007,-73.80718,"(40.73007, -73.80718)",,,71-02 162 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486787,Sedan,,,, +12/16/2021,13:50,QUEENS,11357,40.786446,-73.81924,"(40.786446, -73.81924)",146 PLACE,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487445,Sedan,,,, +12/17/2021,10:30,STATEN ISLAND,10305,40.593987,-74.07684,"(40.593987, -74.07684)",,,130 LAMPORT BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4487469,Sedan,,,, +12/15/2021,11:03,BROOKLYN,11234,40.62444,-73.92748,"(40.62444, -73.92748)",,,1950 UTICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4486935,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,0:00,MANHATTAN,10036,40.758533,-73.98885,"(40.758533, -73.98885)",WEST 44 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487393,Ambulance,Sedan,,, +12/01/2021,3:35,,,40.838757,-73.882904,"(40.838757, -73.882904)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487951,Sedan,Sedan,,, +12/17/2021,8:50,,,40.58516,-73.9874,"(40.58516, -73.9874)",CROPSEY AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4487741,Sedan,Bike,,, +12/02/2021,17:15,MANHATTAN,10036,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487356,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,12:30,MANHATTAN,10030,40.821342,-73.94045,"(40.821342, -73.94045)",,,219 WEST 144 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487996,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,7:50,QUEENS,11385,40.702084,-73.88966,"(40.702084, -73.88966)",,,71-28 65 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487719,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,17:19,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4487802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,3:51,BRONX,10466,40.88955,-73.84524,"(40.88955, -73.84524)",ELY AVENUE,EAST 233 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487217,Sedan,,,, +12/16/2021,8:20,BRONX,10456,40.823334,-73.90574,"(40.823334, -73.90574)",EAST 163 STREET,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487452,Bus,,,, +12/15/2021,8:44,BROOKLYN,11226,40.650917,-73.947464,"(40.650917, -73.947464)",,,3209 CHURCH AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4486956,Box Truck,Bike,,, +12/07/2021,13:52,QUEENS,11101,40.749733,-73.936104,"(40.749733, -73.936104)",NORTHERN BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487668,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,8:15,QUEENS,11040,,,,271 STREET,79 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4467016,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,3:00,,,40.565235,-74.181404,"(40.565235, -74.181404)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4486986,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,22:15,QUEENS,11368,40.755203,-73.871,"(40.755203, -73.871)",97 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487281,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,5:00,,,40.73243,-73.83512,"(40.73243, -73.83512)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487005,Sedan,Sedan,,, +12/15/2021,5:44,MANHATTAN,10002,40.71987,-73.98371,"(40.71987, -73.98371)",,,141 ATTORNEY STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4486763,Sedan,Sedan,,, +12/09/2021,18:42,MANHATTAN,10128,40.783054,-73.944885,"(40.783054, -73.944885)",,,1855 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4487906,Sedan,Bike,,, +12/16/2021,20:00,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487734,COM,Motorcycle,,, +12/17/2021,3:26,,,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487294,Sedan,,,, +12/15/2021,10:35,MANHATTAN,10016,40.74639,-73.977646,"(40.74639, -73.977646)",EAST 35 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486715,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,20:25,,,40.753304,-73.912575,"(40.753304, -73.912575)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487163,Station Wagon/Sport Utility Vehicle,Bike,,, +12/17/2021,5:30,BROOKLYN,11232,40.656643,-74.00527,"(40.656643, -74.00527)",3 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4487178,Sedan,Sedan,,, +12/16/2021,21:17,,,40.85005,-73.91606,"(40.85005, -73.91606)",UNIVERSITY AVENUE,MACOMBS ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487197,Bus,E-Bike,,, +12/17/2021,23:50,STATEN ISLAND,10312,40.547924,-74.166954,"(40.547924, -74.166954)",,,3687 RICHMOND AVENUE,1,1,0,0,0,0,1,1,Unsafe Speed,,,,,4487497,Sedan,,,, +12/15/2021,10:10,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4487313,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/15/2021,11:06,BROOKLYN,11229,40.59449,-73.95728,"(40.59449, -73.95728)",,,1309 GRAVESEND NECK ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486749,Dump,,,, +12/15/2021,11:36,QUEENS,11361,40.75691,-73.76768,"(40.75691, -73.76768)",BELL BOULEVARD,47 AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4486716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,12:19,BROOKLYN,11226,40.64519,-73.948,"(40.64519, -73.948)",EAST 31 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487636,Sedan,,,, +12/16/2021,14:39,MANHATTAN,10016,40.74456,-73.971375,"(40.74456, -73.971375)",FDR DRIVE,EAST 36 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/05/2021,20:00,MANHATTAN,10006,40.70793,-74.015564,"(40.70793, -74.015564)",,,47 WEST STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487266,Sedan,,,, +12/15/2021,9:15,,,40.856625,-73.8319,"(40.856625, -73.8319)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4486776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,1:30,MANHATTAN,10029,40.79715,-73.94902,"(40.79715, -73.94902)",,,1295 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487753,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,10:52,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4486670,Sedan,,,, +12/17/2021,14:30,QUEENS,11373,40.743683,-73.886955,"(40.743683, -73.886955)",,,78-02 WOODSIDE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487514,Sedan,Sedan,,, +12/16/2021,9:08,BRONX,10461,40.852955,-73.84316,"(40.852955, -73.84316)",WILKINSON AVENUE,EASTCHESTER ROAD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487004,E-Scooter,Sedan,,, +12/17/2021,16:57,BROOKLYN,11224,40.574986,-73.99962,"(40.574986, -73.99962)",MERMAID AVENUE,WEST 33 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487746,Pick-up Truck,,,, +12/08/2021,15:00,BROOKLYN,11249,40.71081,-73.9684,"(40.71081, -73.9684)",,,11 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487920,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,0:00,MANHATTAN,10128,40.7805,-73.95196,"(40.7805, -73.95196)",,,219 EAST 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487249,Sedan,,,, +12/17/2021,7:50,MANHATTAN,10001,40.749596,-73.9873,"(40.749596, -73.9873)",,,33 WEST 34 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487398,Taxi,Sedan,,, +12/15/2021,16:44,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",WEST 46 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486878,Pick-up Truck,,,, +12/06/2021,9:10,BROOKLYN,11204,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,65 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4487540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,22:30,BROOKLYN,11234,40.61281,-73.92229,"(40.61281, -73.92229)",EAST 54 STREET,AVENUE T,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487582,Sedan,,,, +12/17/2021,8:58,QUEENS,11379,40.712296,-73.88953,"(40.712296, -73.88953)",,,67-36 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487726,Taxi,Sedan,,, +12/09/2021,10:00,BRONX,10466,40.883457,-73.84532,"(40.883457, -73.84532)",,,1870 SCHIEFELIN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4487809,Sedan,,,, +12/16/2021,7:00,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4487964,Bus,PK,,, +12/15/2021,13:50,QUEENS,11368,40.74508,-73.86438,"(40.74508, -73.86438)",NATIONAL STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4486899,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,22:30,BRONX,10466,40.88955,-73.84524,"(40.88955, -73.84524)",STRANG AVENUE,ELY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487221,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,0:04,,,40.85533,-73.93332,"(40.85533, -73.93332)",BROADWAY,,,0,0,0,0,0,0,0,0,Other Lighting Defects,Unspecified,,,,4487234,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,18:53,QUEENS,11415,40.70703,-73.831665,"(40.70703, -73.831665)",LEFFERTS BOULEVARD,ABINGDON ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487030,Box Truck,E-Bike,,, +12/15/2021,16:10,BRONX,10456,40.829456,-73.91121,"(40.829456, -73.91121)",,,1104 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487460,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,9:45,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4487343,Chassis Cab,,,, +12/17/2021,18:10,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488002,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,15:28,BROOKLYN,11229,40.615704,-73.944756,"(40.615704, -73.944756)",,,2801 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4487485,Bus,Bus,,, +12/14/2021,9:10,QUEENS,11377,40.73699,-73.89896,"(40.73699, -73.89896)",66 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487616,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,2:25,,,40.817596,-73.95319,"(40.817596, -73.95319)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4487012,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,2:26,BRONX,10473,40.821804,-73.87664,"(40.821804, -73.87664)",BOYNTON AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486704,Sedan,,,, +09/07/2021,22:30,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457394,Sedan,,,, +12/17/2021,18:00,,,,,,,,25 WILLIAMSBURG STREET WEST,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4487298,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,5:45,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486770,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,20:03,MANHATTAN,10282,40.71694,-74.016304,"(40.71694, -74.016304)",,,20 RIVER TERRACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486847,Sedan,Sedan,,, +12/16/2021,11:00,BROOKLYN,11229,40.60247,-73.94425,"(40.60247, -73.94425)",AVENUE T,EAST 28 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4487153,Taxi,,,, +12/16/2021,5:30,BROOKLYN,11233,40.67431,-73.91739,"(40.67431, -73.91739)",,,1932 BERGEN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4487857,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/16/2021,9:08,BROOKLYN,11213,40.664013,-73.931564,"(40.664013, -73.931564)",,,423 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487293,Station Wagon/Sport Utility Vehicle,Bus,,, +12/16/2021,17:22,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",MAJOR DEEGAN EXPRESSWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487202,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,8:15,BROOKLYN,11212,40.660828,-73.9227,"(40.660828, -73.9227)",,,220 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486954,Sedan,,,, +12/16/2021,17:34,,,,,,BRONX RIVER PARKWAY,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,23:40,BRONX,10465,40.81637,-73.83897,"(40.81637, -73.83897)",BRUSH AVENUE,SCHLEY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4487164,Sedan,,,, +12/17/2021,22:30,QUEENS,11372,40.75595,-73.88165,"(40.75595, -73.88165)",86 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487326,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,17:10,,,,,,KISSENA BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486788,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,20:15,BROOKLYN,11207,40.65993,-73.891655,"(40.65993, -73.891655)",PENNSYLVANIA AVENUE,HEGEMAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4487193,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,21:00,QUEENS,11436,40.6767,-73.795,"(40.6767, -73.795)",120 AVENUE,145 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486831,Sedan,Sedan,,, +12/16/2021,17:50,,,40.74233,-73.83764,"(40.74233, -73.83764)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487125,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/15/2021,12:00,MANHATTAN,10005,40.704937,-74.00707,"(40.704937, -74.00707)",,,101 WALL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486733,Sedan,,,, +12/15/2021,17:30,BROOKLYN,11234,40.639053,-73.9213,"(40.639053, -73.9213)",FOSTER AVENUE,EAST 58 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487060,Sedan,,,, +12/17/2021,12:15,QUEENS,11427,40.733734,-73.74068,"(40.733734, -73.74068)",,,224-36 MANOR ROAD,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4487359,PK,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,19:06,MANHATTAN,10024,40.78722,-73.96793,"(40.78722, -73.96793)",WEST 89 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487384,Sedan,,,, +12/15/2021,14:20,QUEENS,11368,40.7553,-73.87009,"(40.7553, -73.87009)",98 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486970,Sedan,Pick-up Truck,,, +12/14/2021,23:13,BRONX,10467,40.87615,-73.8681,"(40.87615, -73.8681)",,,3428 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487818,Sedan,,,, +12/14/2021,20:00,BROOKLYN,11230,40.619396,-73.969574,"(40.619396, -73.969574)",OCEAN PARKWAY,AVENUE L,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487935,Station Wagon/Sport Utility Vehicle,Bike,,, +12/15/2021,21:25,,,,,,CATON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486995,Sedan,Tractor Truck Diesel,,, +12/16/2021,17:00,BROOKLYN,11226,40.648403,-73.96288,"(40.648403, -73.96288)",EAST 18 STREET,TENNIS COURT,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4487545,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,23:34,BROOKLYN,11207,40.68917,-73.9095,"(40.68917, -73.9095)",CENTRAL AVENUE,COVERT STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4487321,Sedan,Van Camper,,, +12/15/2021,22:35,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4487198,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,22:05,QUEENS,11426,40.729553,-73.72607,"(40.729553, -73.72607)",,,88-01 241 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487253,Sedan,,,, +12/15/2021,17:00,BROOKLYN,11225,40.66309,-73.962395,"(40.66309, -73.962395)",FLATBUSH AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487589,Sedan,Ambulance,,, +12/16/2021,8:25,,,40.795326,-73.9713,"(40.795326, -73.9713)",WEST 97 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487053,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,17:39,BROOKLYN,11236,40.65329,-73.91919,"(40.65329, -73.91919)",EAST 91 STREET,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4487626,Sedan,Bus,,, +12/16/2021,22:43,BROOKLYN,11205,40.699177,-73.955376,"(40.699177, -73.955376)",,,495 FLUSHING AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487116,Sedan,,,, +12/16/2021,23:30,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487375,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,8:00,,,40.734978,-73.8614,"(40.734978, -73.8614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486867,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,15:25,,,40.690163,-73.98711,"(40.690163, -73.98711)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487100,Bus,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,3:10,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4486892,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,10:00,QUEENS,11427,40.7389,-73.73378,"(40.7389, -73.73378)",UNION TURNPIKE,WINCHESTER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487413,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,12:14,,,40.812572,-73.950935,"(40.812572, -73.950935)",WEST 128 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487225,Sedan,Box Truck,,, +12/17/2021,12:55,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487520,Sedan,Sedan,,, +12/01/2021,18:20,BRONX,10460,40.84193,-73.88582,"(40.84193, -73.88582)",SOUTHERN BOULEVARD,ELSMERE PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4487971,Sedan,Motorcycle,,, +12/15/2021,9:18,BROOKLYN,11249,40.706734,-73.963356,"(40.706734, -73.963356)",,,130 CLYMER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486838,Dump,Bus,,, +12/17/2021,5:26,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487230,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/16/2021,9:20,QUEENS,11691,40.601322,-73.75788,"(40.601322, -73.75788)",GRASSMERE TERRACE,NEW HAVEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488014,Tractor Truck Diesel,Sedan,,, +12/14/2021,9:37,MANHATTAN,10016,40.74854,-73.97315,"(40.74854, -73.97315)",EAST 40 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487368,Sedan,E-Scooter,,, +12/17/2021,22:30,,,40.59124,-73.99402,"(40.59124, -73.99402)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4487558,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/09/2021,16:03,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487842,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,8:00,,,,,,LINDEN BOULEVARD,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4486942,Sedan,Sedan,Sedan,, +12/17/2021,13:40,QUEENS,11433,40.701378,-73.790085,"(40.701378, -73.790085)",,,104-15 MERRICK BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/01/2021,23:07,BROOKLYN,11206,40.69529,-73.94339,"(40.69529, -73.94339)",VERNON AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4487702,Sedan,Sedan,Sedan,, +12/16/2021,11:59,MANHATTAN,10019,40.76814,-73.98622,"(40.76814, -73.98622)",,,405 WEST 57 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487148,Ambulance,E-Bike,,, +12/15/2021,9:20,QUEENS,11355,40.75814,-73.816536,"(40.75814, -73.816536)",147 STREET,BEECH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4486796,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,14:40,BROOKLYN,11203,40.653564,-73.934494,"(40.653564, -73.934494)",LINDEN BOULEVARD,EAST 46 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487605,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,3:00,BROOKLYN,11210,40.63186,-73.9444,"(40.63186, -73.9444)",,,3315 AVENUE H,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487710,Sedan,,,, +12/14/2021,22:28,BROOKLYN,11213,40.679646,-73.93606,"(40.679646, -73.93606)",,,1620 FULTON STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4487780,Sedan,Sedan,Sedan,, +12/16/2021,2:25,BROOKLYN,11236,40.641727,-73.90536,"(40.641727, -73.90536)",CONKLIN AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487067,Sedan,Sedan,,, +12/17/2021,0:00,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4487169,Sedan,Tractor Truck Diesel,,, +09/10/2021,18:30,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457592,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,9:15,MANHATTAN,10029,40.795956,-73.94522,"(40.795956, -73.94522)",,,100 EAST 111 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487335,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,22:49,QUEENS,11419,40.68804,-73.83275,"(40.68804, -73.83275)",111 STREET,101 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486914,Sedan,,,, +12/12/2021,18:11,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487889,Sedan,Lift Boom,,, +12/16/2021,16:53,QUEENS,11433,,,,TUSKEGEE AIRMEN WAY,160 STREET,,1,0,1,0,0,0,0,0,,,,,,4487273,,,,, +12/15/2021,17:30,BRONX,10474,40.816845,-73.88666,"(40.816845, -73.88666)",,,1308 LAFAYETTE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486843,Sedan,,,, +12/15/2021,20:30,QUEENS,11419,40.685898,-73.83069,"(40.685898, -73.83069)",,,103-25 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486915,Pick-up Truck,Sedan,,, +11/27/2021,11:30,BROOKLYN,11230,40.62994,-73.95841,"(40.62994, -73.95841)",,,855 EAST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487654,Sedan,,,, +12/17/2021,10:45,,,40.846466,-73.87123,"(40.846466, -73.87123)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487288,Taxi,Taxi,,, +12/15/2021,10:05,MANHATTAN,10000,40.781162,-73.96178,"(40.781162, -73.96178)",,,27 TRANSVERSE ROAD NUMBER THREE,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4486885,Sedan,Pick-up Truck,,, +12/16/2021,19:11,QUEENS,11423,40.71471,-73.75471,"(40.71471, -73.75471)",FRANCIS LEWIS BOULEVARD,94 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487105,Pick-up Truck,,,, +12/17/2021,12:38,QUEENS,11368,40.757034,-73.87133,"(40.757034, -73.87133)",97 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487305,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/15/2021,2:10,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4486557,Sedan,Sedan,,, +12/17/2021,18:40,MANHATTAN,10017,40.75478,-73.97994,"(40.75478, -73.97994)",EAST 44 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487402,Station Wagon/Sport Utility Vehicle,Pedicab,,, +12/17/2021,2:30,QUEENS,11375,40.72772,-73.84914,"(40.72772, -73.84914)",67 ROAD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487438,Sedan,,,, +12/16/2021,12:30,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4487189,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,21:30,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4486822,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,9:07,QUEENS,11378,40.73128,-73.92347,"(40.73128, -73.92347)",54 ROAD,44 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4487045,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,Sedan, +12/16/2021,6:30,BROOKLYN,11207,40.673706,-73.90118,"(40.673706, -73.90118)",LIBERTY AVENUE,HINSDALE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487184,Sedan,,,, +12/15/2021,14:46,QUEENS,11101,40.744453,-73.92983,"(40.744453, -73.92983)",35 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487168,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,14:30,BROOKLYN,11232,40.66778,-73.996185,"(40.66778, -73.996185)",,,550 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487090,Sedan,,,, +12/17/2021,6:09,MANHATTAN,10029,40.79097,-73.953156,"(40.79097, -73.953156)",,,3 EAST 101 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4487334,Tractor Truck Diesel,Tractor Truck Diesel,,, +12/15/2021,2:20,BROOKLYN,11206,40.70983,-73.94768,"(40.70983, -73.94768)",,,69 TEN EYCK STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4486592,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,14:38,,,40.684814,-73.98353,"(40.684814, -73.98353)",DEAN STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487111,Sedan,VAn,,, +12/15/2021,15:00,QUEENS,11354,40.763668,-73.82303,"(40.763668, -73.82303)",PARSONS BOULEVARD,37 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486795,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,17:04,BRONX,10460,40.839996,-73.86832,"(40.839996, -73.86832)",EAST TREMONT AVENUE,SAINT LAWRENCE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487257,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,15:36,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456925,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,10:30,BRONX,10460,40.853344,-73.881676,"(40.853344, -73.881676)",SOUTHERN BOULEVARD,EAST 187 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457037,Sedan,,,, +09/13/2021,23:00,,,,,,CROSS BAY BOULEVARD,SHORE PARKWAY,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,,4456968,Station Wagon/Sport Utility Vehicle,Sedan,Bike,, +09/13/2021,9:30,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457665,Tractor Truck Diesel,Sedan,,, +08/21/2021,10:21,BROOKLYN,11230,,,,OCEAN AVENUE,AVENUE H,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,Unspecified,Unspecified,4457601,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/13/2021,22:35,BROOKLYN,11207,40.65945,-73.89847,"(40.65945, -73.89847)",SNEDIKER AVENUE,NEW LOTS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4457391,Sedan,Sedan,Sedan,, +09/02/2021,17:10,MANHATTAN,10010,40.73883,-73.983154,"(40.73883, -73.983154)",EAST 23 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457360,Station Wagon/Sport Utility Vehicle,Bus,,, +08/29/2021,12:05,QUEENS,11106,40.76389,-73.93824,"(40.76389, -73.93824)",,,34-37 11 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451884,Sedan,,,, +09/13/2021,0:27,,,40.710815,-73.98326,"(40.710815, -73.98326)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456952,Sedan,Sedan,,, +09/05/2021,22:30,,,40.693523,-73.9522,"(40.693523, -73.9522)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457680,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,17:15,BROOKLYN,11214,40.597023,-73.98815,"(40.597023, -73.98815)",,,8646 25 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457100,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,7:06,QUEENS,11691,40.606018,-73.75124,"(40.606018, -73.75124)",,,13-11 BAYPORT PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456997,Sedan,Concrete Mixer,,, +09/13/2021,0:00,MANHATTAN,10022,40.75448,-73.96756,"(40.75448, -73.96756)",,,337 EAST 50 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457283,Sedan,,,, +09/12/2021,19:30,MANHATTAN,10001,40.748436,-73.9962,"(40.748436, -73.9962)",WEST 28 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4457439,Bike,Moped,,, +09/11/2021,3:50,,,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,6:43,,,40.863705,-73.87207,"(40.863705, -73.87207)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Following Too Closely,Unspecified,,4456530,Sedan,Sedan,,, +09/13/2021,21:53,,,40.68576,-73.915504,"(40.68576, -73.915504)",BROADWAY,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457005,Sedan,E-Scooter,,, +09/11/2021,6:46,,,40.691097,-73.92296,"(40.691097, -73.92296)",GROVE STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4457386,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,14:40,,,,,,WEST 39 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457422,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:38,BROOKLYN,11215,40.661972,-73.979065,"(40.661972, -73.979065)",,,182 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,7:25,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",CHAMBERS STREET,WEST BROADWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456727,Bike,Pick-up Truck,,, +09/13/2021,21:00,QUEENS,11362,40.76846,-73.737465,"(40.76846, -73.737465)",,,250-02 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456907,Sedan,Sedan,,, +12/15/2021,8:35,MANHATTAN,10000,40.780434,-73.9616,"(40.780434, -73.9616)",,,2 TRANSVERSE ROAD NUMBER THREE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4486886,Bus,Sedan,,, +09/13/2021,22:00,QUEENS,11432,40.717396,-73.79637,"(40.717396, -73.79637)",,,83-01 169 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4457637,Sedan,,,, +09/13/2021,8:44,BROOKLYN,11210,40.613594,-73.9532,"(40.613594, -73.9532)",,,2020 AVENUE O,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457063,Sedan,Box Truck,,, +09/13/2021,5:11,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457117,Sedan,,,, +09/13/2021,21:09,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457156,Sedan,Taxi,,, +09/13/2021,16:05,BROOKLYN,11225,40.663258,-73.94416,"(40.663258, -73.94416)",,,33 LAMONT COURT,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4456874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/13/2021,10:12,BRONX,10463,40.874615,-73.90472,"(40.874615, -73.90472)",BAILEY AVENUE,WEST 229 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456808,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,11:30,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409583,Sedan,,,, +09/13/2021,11:13,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",31 STREET,NEWTOWN AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4457457,Sedan,,,, +09/10/2021,12:20,BROOKLYN,11217,40.67495,-73.97515,"(40.67495, -73.97515)",,,80 7 AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4457504,Van,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,17:20,,,40.702564,-73.790565,"(40.702564, -73.790565)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457556,Sedan,Sedan,,, +09/13/2021,14:17,QUEENS,11416,40.68237,-73.864105,"(40.68237, -73.864105)",95 AVENUE,DREW STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456862,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,11:05,BROOKLYN,11236,40.638386,-73.887054,"(40.638386, -73.887054)",EAST 103 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4456809,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,15:55,MANHATTAN,10011,40.74321,-74.00862,"(40.74321, -74.00862)",WEST 15 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4457405,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +09/13/2021,10:15,,,40.689495,-73.75283,"(40.689495, -73.75283)",197 STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456902,Convertible,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,8:19,STATEN ISLAND,10310,,,,,,1153 FOREST AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4456772,Sedan,,,, +09/13/2021,8:50,QUEENS,11365,40.740562,-73.79728,"(40.740562, -73.79728)",FRESH MEADOW LANE,59 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4457152,Bus,Box Truck,,, +09/13/2021,14:57,BRONX,10456,40.8389,-73.912384,"(40.8389, -73.912384)",,,1420 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456985,Bus,Van,,, +09/13/2021,8:00,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4457014,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,18:20,,,40.666294,-73.80267,"(40.666294, -73.80267)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4457652,Motorcycle,,,, +09/13/2021,22:02,,,40.577244,-74.00004,"(40.577244, -74.00004)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4457707,Sedan,Moped,,, +09/13/2021,22:57,BROOKLYN,11234,40.62374,-73.92448,"(40.62374, -73.92448)",AVENUE L,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,5:50,,,40.73093,-73.864586,"(40.73093, -73.864586)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457068,Sedan,,,, +09/13/2021,10:55,BROOKLYN,11222,40.72516,-73.9466,"(40.72516, -73.9466)",DIAMOND STREET,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457165,Bus,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,4:12,,,40.60972,-74.1651,"(40.60972, -74.1651)",,,330 ARLENE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456799,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,6:40,QUEENS,11370,40.76485,-73.88612,"(40.76485, -73.88612)",ASTORIA BOULEVARD,83 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4456888,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/13/2021,19:45,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,15:05,BROOKLYN,11208,40.66647,-73.882515,"(40.66647, -73.882515)",LIVONIA AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4457450,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +09/11/2021,16:35,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457576,Bus,,,, +09/13/2021,10:19,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457062,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,13:15,MANHATTAN,10019,,,,,,109 WEST 56 STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4457350,Sedan,,,, +09/13/2021,9:30,QUEENS,11103,40.7614,-73.91149,"(40.7614, -73.91149)",45 STREET,30 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457460,Taxi,Sedan,,, +09/13/2021,15:00,,,40.76289,-73.73384,"(40.76289, -73.73384)",51 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,17:15,BROOKLYN,11213,40.665916,-73.92547,"(40.665916, -73.92547)",EAST NEW YORK AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457546,Sedan,Sedan,,, +12/17/2021,22:17,,,40.845566,-73.92849,"(40.845566, -73.92849)",ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487408,Tractor Truck Diesel,Sedan,,, +04/16/2021,21:45,,,,,,MAGUIRE AVENUE,KRAMER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409609,Sedan,Sedan,,, +04/17/2021,20:27,BRONX,10459,40.820972,-73.892845,"(40.820972, -73.892845)",EAST 163 STREET,SIMPSON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408317,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/13/2021,13:00,BROOKLYN,11206,40.700912,-73.94116,"(40.700912, -73.94116)",,,785 FLUSHING AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456938,Sedan,E-Bike,,, +04/20/2021,5:30,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,16:30,BROOKLYN,11222,40.73752,-73.95276,"(40.73752, -73.95276)",MC GUINNESS BOULEVARD,PAIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409682,Sedan,,,, +04/15/2021,16:10,,,,,,Utopia Parkway,82 avenue,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409690,Sedan,Sedan,,, +04/16/2021,16:00,,,40.72568,-73.85728,"(40.72568, -73.85728)",66 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409669,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,21:57,QUEENS,11367,40.72084,-73.8104,"(40.72084, -73.8104)",154 STREET,79 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409689,Sedan,E-Scooter,,, +09/10/2021,21:55,MANHATTAN,10001,40.75702,-74.00494,"(40.75702, -74.00494)",WEST 34 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457411,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,9:30,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",WEST 17 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:00,QUEENS,11377,40.73768,-73.897736,"(40.73768, -73.897736)",67 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457279,Sedan,Carry All,,, +09/13/2021,12:24,STATEN ISLAND,10310,40.640568,-74.118,"(40.640568, -74.118)",RICHMOND TERRACE,BROADWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4457091,Sedan,,,, +09/13/2021,9:10,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,View Obstructed/Limited,,,,4457134,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/09/2021,12:29,STATEN ISLAND,10306,40.58124,-74.09845,"(40.58124, -74.09845)",HYLAN BOULEVARD,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457558,Sedan,Bus,,, +09/13/2021,19:20,,,40.730194,-73.887566,"(40.730194, -73.887566)",74 STREET,GRAND AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457250,Sedan,Bike,,, +08/18/2021,0:20,,,,,,N conduit ave,160 steet,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4457397,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/13/2021,21:10,,,40.66706,-73.7392,"(40.66706, -73.7392)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4456975,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/09/2021,15:15,MANHATTAN,10003,40.72995,-73.98841,"(40.72995, -73.98841)",,,19 STUYVESANT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457364,Sedan,E-Bike,,, +09/13/2021,17:05,BROOKLYN,11206,40.697117,-73.93401,"(40.697117, -73.93401)",MYRTLE AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4457009,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:50,BROOKLYN,11216,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,NEW YORK AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457667,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/13/2021,15:00,,,40.646923,-73.92019,"(40.646923, -73.92019)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,2:10,QUEENS,11377,40.743484,-73.89908,"(40.743484, -73.89908)",65 PLACE,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457681,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/13/2021,21:20,QUEENS,11418,40.695282,-73.84114,"(40.695282, -73.84114)",106 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457054,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,19:30,,,40.677578,-73.88602,"(40.677578, -73.88602)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4457443,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,15:30,,,40.740467,-73.97295,"(40.740467, -73.97295)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456912,Sedan,Sedan,,, +09/13/2021,0:00,MANHATTAN,10000,40.77712,-73.96395,"(40.77712, -73.96395)",,,1 TRANSVERSE ROAD NUMBER TWO,0,0,0,0,0,0,0,0,Unspecified,,,,,4457323,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:27,BROOKLYN,11208,40.671597,-73.88018,"(40.671597, -73.88018)",SUTTER AVENUE,SHEPHERD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457472,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/13/2021,14:34,,,,,,3 AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457028,Taxi,Sedan,,, +04/20/2021,17:00,QUEENS,11101,40.74223,-73.928375,"(40.74223, -73.928375)",37 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408983,Sedan,Sedan,,, +04/20/2021,19:45,QUEENS,11434,40.683098,-73.78432,"(40.683098, -73.78432)",LONG STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409105,Sedan,,,, +04/20/2021,18:50,BRONX,10456,40.819683,-73.90436,"(40.819683, -73.90436)",,,814 TINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409041,Sedan,Bus,,, +04/15/2021,17:05,BROOKLYN,11215,40.655834,-73.98123,"(40.655834, -73.98123)",19 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409652,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,11:00,BROOKLYN,11219,40.631546,-73.995766,"(40.631546, -73.995766)",,,5510 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409482,Box Truck,Sedan,,, +03/25/2021,10:30,BRONX,10451,40.823383,-73.91834,"(40.823383, -73.91834)",EAST 158 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4409457,Sedan,Van,,, +04/20/2021,0:24,BROOKLYN,11238,40.688503,-73.96337,"(40.688503, -73.96337)",,,333 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408698,Taxi,,,, +04/20/2021,23:25,QUEENS,11354,40.760254,-73.83493,"(40.760254, -73.83493)",COLLEGE POINT BOULEVARD,37 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409022,MOPED,Sedan,,, +04/20/2021,9:00,,,,,,SHELL ROAD,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4409198,Sedan,Sedan,,, +04/20/2021,18:25,MANHATTAN,10016,40.748436,-73.984566,"(40.748436, -73.984566)",5 AVENUE,WEST 34 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4409075,Bike,Box Truck,,, +04/20/2021,18:25,BRONX,10454,40.80321,-73.91892,"(40.80321, -73.91892)",BRUCKNER BOULEVARD,SAINT ANNS PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4409390,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +04/19/2021,15:51,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4409547,Box Truck,Sedan,,, +04/13/2021,15:20,,,40.541298,-74.20424,"(40.541298, -74.20424)",RAMAPO AVENUE,,,4,0,0,0,0,0,4,0,Outside Car Distraction,Aggressive Driving/Road Rage,Unspecified,,,4409599,Sedan,Sedan,Sedan,, +04/20/2021,7:15,QUEENS,11691,40.595444,-73.779045,"(40.595444, -73.779045)",BEACH CHANNEL DRIVE,BEACH 48 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408796,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,11:25,BRONX,10456,40.832966,-73.90294,"(40.832966, -73.90294)",,,1320 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409080,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,18:00,BROOKLYN,11204,40.620964,-73.97767,"(40.620964, -73.97767)",,,5474 21 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409480,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,19:20,QUEENS,11385,40.69504,-73.90109,"(40.69504, -73.90109)",,,1635 DECATUR STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4409522,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/20/2021,22:20,QUEENS,11369,40.762524,-73.865555,"(40.762524, -73.865555)",GILLMORE STREET,29 AVENUE,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409282,Sedan,Bike,,, +04/20/2021,8:45,,,40.575024,-74.1183,"(40.575024, -74.1183)",NEW DORP LANE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4408841,Sedan,,,, +04/20/2021,13:15,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,18 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408965,Sedan,Sedan,,, +04/20/2021,17:47,,,40.824085,-73.874344,"(40.824085, -73.874344)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4409114,Sedan,Sedan,Sedan,Pick-up Truck, +09/13/2021,0:00,QUEENS,11358,,,,NORTHERN BOULEVARD,172 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4456955,Sedan,Sedan,Sedan,, +04/20/2021,16:24,BRONX,10466,40.89507,-73.85445,"(40.89507, -73.85445)",BYRON AVENUE,EAST 236 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4409221,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,14:00,BROOKLYN,11233,40.67612,-73.91651,"(40.67612, -73.91651)",,,283 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4409243,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,12:30,,,,,,SHORE PARKWAY,KNAPP STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408940,Sedan,Sedan,,, +04/20/2021,8:29,STATEN ISLAND,10305,40.592678,-74.07598,"(40.592678, -74.07598)",LAMPORT BOULEVARD,FOCH AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4408907,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,21:31,MANHATTAN,10026,40.80134,-73.94805,"(40.80134, -73.94805)",,,49 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409568,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/12/2021,14:52,,,40.679737,-73.76162,"(40.679737, -73.76162)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409581,Bus,Sedan,,, +03/27/2021,18:46,,,40.753937,-73.8603,"(40.753937, -73.8603)",108 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409621,Sedan,Sedan,,, +04/20/2021,10:26,,,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408934,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,12:30,STATEN ISLAND,10306,40.557266,-74.1258,"(40.557266, -74.1258)",,,280 CHESTERTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408909,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,16:30,,,40.625984,-74.14859,"(40.625984, -74.14859)",,,508 MORNINGSTAR ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409498,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,7:20,QUEENS,11374,40.725147,-73.86971,"(40.725147, -73.86971)",WOODHAVEN BOULEVARD,62 DRIVE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4408959,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,, +04/20/2021,2:55,,,40.81014,-73.93503,"(40.81014, -73.93503)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4408870,Sedan,,,, +04/20/2021,15:30,BROOKLYN,11212,40.65473,-73.90692,"(40.65473, -73.90692)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4409241,Sedan,,,, +04/20/2021,17:41,MANHATTAN,10065,40.763596,-73.95788,"(40.763596, -73.95788)",,,436 EAST 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409054,Sedan,Sedan,,, +04/20/2021,16:00,MANHATTAN,10016,40.74529,-73.97713,"(40.74529, -73.97713)",,,220 EAST 34 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409086,Sedan,Taxi,,, +04/20/2021,23:00,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409267,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,18:44,BROOKLYN,11210,40.630295,-73.94745,"(40.630295, -73.94745)",,,2236 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409143,Sedan,,,, +04/20/2021,13:20,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,BLAKE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4409249,Sedan,Sedan,,, +04/20/2021,9:15,QUEENS,11420,40.678032,-73.82302,"(40.678032, -73.82302)",LINDEN BOULEVARD,116 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4408895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,12:06,,,40.603832,-74.06895,"(40.603832, -74.06895)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4408952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/20/2021,17:30,BROOKLYN,11220,40.647587,-74.006905,"(40.647587, -74.006905)",,,512 45 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409030,Sedan,Bike,,, +04/14/2021,12:00,,,40.805836,-73.94691,"(40.805836, -73.94691)",WEST 122 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409564,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,10:26,MANHATTAN,10023,40.779922,-73.98068,"(40.779922, -73.98068)",AMSTERDAM AVENUE,WEST 74 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409629,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,9:15,,,40.865963,-73.92986,"(40.865963, -73.92986)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409138,Sedan,,,, +04/16/2021,13:38,BRONX,10452,40.834324,-73.919914,"(40.834324, -73.919914)",WALTON AVENUE,TUDOR PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409448,Sedan,Sedan,,, +04/20/2021,15:23,,,40.806335,-73.95588,"(40.806335, -73.95588)",WEST 118 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409569,Sedan,Box Truck,,, +04/20/2021,13:41,QUEENS,11356,40.78918,-73.83817,"(40.78918, -73.83817)",130 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408966,Garbage or Refuse,Sedan,,, +04/20/2021,21:50,BROOKLYN,11204,40.61483,-73.99838,"(40.61483, -73.99838)",BAY RIDGE PARKWAY,17 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409614,Sedan,4 dr sedan,,, +04/20/2021,8:00,MANHATTAN,10004,40.701576,-74.01215,"(40.701576, -74.01215)",,,5 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409010,Bus,PK,,, +04/19/2021,19:01,,,40.847614,-73.887794,"(40.847614, -73.887794)",EAST 180 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4409505,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,10:20,MANHATTAN,10033,40.844246,-73.93372,"(40.844246, -73.93372)",AMSTERDAM AVENUE,WEST 175 STREET,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4408917,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,10:28,MANHATTAN,10002,40.716442,-73.98837,"(40.716442, -73.98837)",GRAND STREET,NORFOLK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409362,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,19:00,STATEN ISLAND,10314,40.6101,-74.11668,"(40.6101, -74.11668)",SLOSSON AVENUE,LORTEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409184,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,18:25,BRONX,10457,40.855324,-73.89617,"(40.855324, -73.89617)",,,2248 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,,,4409231,Sedan,Sedan,Motorbike,, +04/11/2021,14:50,MANHATTAN,10023,40.778606,-73.98163,"(40.778606, -73.98163)",WEST 72 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409624,Station Wagon/Sport Utility Vehicle,Bike,,, +04/20/2021,0:45,STATEN ISLAND,10301,40.646362,-74.08644,"(40.646362, -74.08644)",,,52 WESTERVELT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4409339,Sedan,Sedan,Sedan,, +04/19/2021,11:36,BROOKLYN,11204,40.62521,-73.9804,"(40.62521, -73.9804)",52 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409493,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,0:00,QUEENS,11373,40.74571,-73.878204,"(40.74571, -73.878204)",,,41-46 GLEANE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409050,Sedan,,,, +04/10/2021,0:00,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409463,Sedan,,,, +04/20/2021,14:30,,,40.603783,-73.74558,"(40.603783, -73.74558)",BEACH 9 STREET,EMPIRE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4409082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,16:45,BROOKLYN,11201,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409016,Sedan,Sedan,,, +04/20/2021,21:00,,,,,,FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409130,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,11:21,MANHATTAN,10017,40.752598,-73.96702,"(40.752598, -73.96702)",EAST 48 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409558,Taxi,,,, +04/20/2021,17:20,BROOKLYN,11207,40.67198,-73.88641,"(40.67198, -73.88641)",BELMONT AVENUE,JEROME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408970,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,7:20,BROOKLYN,11201,40.68481,-73.99177,"(40.68481, -73.99177)",SMITH STREET,BALTIC STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4409428,Van,,,, +03/23/2021,8:20,MANHATTAN,10027,40.807842,-73.955574,"(40.807842, -73.955574)",,,370 WEST 120 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,3:45,,,40.828316,-73.93118,"(40.828316, -73.93118)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4409096,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/20/2021,22:00,BROOKLYN,11236,40.641407,-73.91229,"(40.641407, -73.91229)",FARRAGUT ROAD,EAST 86 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409024,Sedan,Sedan,,, +04/20/2021,0:27,,,40.835384,-73.93096,"(40.835384, -73.93096)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4409099,Sedan,Sedan,,, +04/20/2021,0:40,,,40.85288,-73.92025,"(40.85288, -73.92025)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4409076,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,21:35,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Following Too Closely,,,,4409474,Sedan,Sedan,,, +04/20/2021,0:45,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4408701,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,11:00,BRONX,10475,40.869335,-73.8255,"(40.869335, -73.8255)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409517,Sedan,,,, +04/16/2021,11:30,STATEN ISLAND,10312,40.532604,-74.19051,"(40.532604, -74.19051)",,,5411 AMBOY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409606,Ambulance,firetruck,,, +04/20/2021,15:30,,,40.848625,-73.92753,"(40.848625, -73.92753)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408993,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/20/2021,15:00,QUEENS,11412,40.692207,-73.75439,"(40.692207, -73.75439)",,,118-27 197 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409293,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,15:33,QUEENS,11433,40.69158,-73.79319,"(40.69158, -73.79319)",157 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409597,Sedan,Bus,,, +03/27/2021,16:29,MANHATTAN,10026,40.799713,-73.95595,"(40.799713, -73.95595)",,,217 WEST 110 STREET,0,0,0,0,0,0,0,0,Eating or Drinking,Unspecified,Unspecified,,,4409572,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/10/2021,14:55,,,40.83639,-73.91588,"(40.83639, -73.91588)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409456,Sedan,,,, +04/20/2021,1:50,BROOKLYN,11208,40.681175,-73.87363,"(40.681175, -73.87363)",ATLANTIC AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408799,Bus,Sedan,,, +03/31/2021,0:23,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409481,Sedan,Motorbike,,, +04/20/2021,18:47,BRONX,10456,40.826275,-73.907814,"(40.826275, -73.907814)",,,3326 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409077,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/16/2021,8:42,QUEENS,11385,40.700123,-73.90622,"(40.700123, -73.90622)",MYRTLE AVENUE,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409523,Sedan,,,, +04/20/2021,22:20,,,,,,23 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409017,Sedan,,,, +04/20/2021,1:30,MANHATTAN,10023,40.774807,-73.98442,"(40.774807, -73.98442)",AMSTERDAM AVENUE,WEST 66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409281,Van,Sedan,,, +04/20/2021,19:35,,,,,,COLUMBIA STREET,COLUMBIA STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4409427,Sedan,,,, +04/20/2021,10:00,BRONX,10454,40.804905,-73.91883,"(40.804905, -73.91883)",SAINT ANNS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4409045,Box Truck,Sedan,,, +04/09/2021,10:30,BROOKLYN,11214,40.614227,-73.99901,"(40.614227, -73.99901)",76 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409662,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,14:10,QUEENS,11432,40.703342,-73.80021,"(40.703342, -73.80021)",PARSONS BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409582,Sedan,Box Truck,,, +04/19/2021,18:00,BRONX,10460,40.84428,-73.88886,"(40.84428, -73.88886)",,,760 EAST TREMONT AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4409504,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/20/2021,0:00,BRONX,10468,40.86923,-73.89604,"(40.86923, -73.89604)",JEROME AVENUE,EAST 196 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4408916,Sedan,Motorcycle,,, +04/20/2021,11:00,BRONX,10457,40.847065,-73.8916,"(40.847065, -73.8916)",,,1997 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408935,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,23:48,MANHATTAN,10037,40.809525,-73.93789,"(40.809525, -73.93789)",EAST 131 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Following Too Closely,,,4409150,Sedan,Sedan,Sedan,, +03/24/2021,1:15,,,0,0,"(0.0, 0.0)",7 AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4409577,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,16:00,,,,,,FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4408984,SW/VAN,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,19:35,,,40.665154,-73.82774,"(40.665154, -73.82774)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409260,Sedan,Sedan,,, +04/19/2021,14:40,QUEENS,11416,40.683567,-73.864204,"(40.683567, -73.864204)",,,94-13 75 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409546,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,9:39,,,40.819244,-73.891365,"(40.819244, -73.891365)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408897,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,18:51,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409104,Sedan,Sedan,,, +04/20/2021,23:30,QUEENS,11367,40.728043,-73.8301,"(40.728043, -73.8301)",,,135-16 JEWEL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409185,E-Bike,Sedan,,, +04/20/2021,8:47,,,40.747974,-73.75999,"(40.747974, -73.75999)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4408921,Station Wagon/Sport Utility Vehicle,PRIVATE,,, +04/20/2021,11:15,BROOKLYN,11220,40.644337,-74.00754,"(40.644337, -74.00754)",49 STREET,6 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409029,Sedan,Sedan,,, +04/16/2021,8:40,BRONX,10452,40.833916,-73.92702,"(40.833916, -73.92702)",WEST 165 STREET,WOODYCREST AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409450,Sedan,,,, +04/20/2021,12:00,,,,,,,,85-53 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409490,Flat Bed,Sedan,,, +04/20/2021,16:00,,,40.86676,-73.920616,"(40.86676, -73.920616)",VERMILYEA AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4409268,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,15:00,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4408975,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/20/2021,17:36,QUEENS,11414,40.660374,-73.83152,"(40.660374, -73.83152)",102 STREET,159 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409037,Sedan,,,, +04/19/2021,8:03,MANHATTAN,10002,40.712994,-73.98853,"(40.712994, -73.98853)",,,38 JEFFERSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409641,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/20/2021,10:20,QUEENS,11413,40.680237,-73.75084,"(40.680237, -73.75084)",218 STREET,133 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409628,Sedan,,,, +04/20/2021,13:04,MANHATTAN,10027,40.808407,-73.95248,"(40.808407, -73.95248)",,,2271 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409565,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/19/2021,8:50,MANHATTAN,10033,40.84726,-73.935234,"(40.84726, -73.935234)",,,1358 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,16:00,BROOKLYN,11204,40.614326,-73.98987,"(40.614326, -73.98987)",,,1953 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409615,Pick-up Truck,E-Bike,,, +04/20/2021,16:19,BROOKLYN,11226,40.640823,-73.96531,"(40.640823, -73.96531)",RUGBY ROAD,CORTELYOU ROAD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4409142,Bike,,,, +04/20/2021,8:30,STATEN ISLAND,10306,40.563164,-74.115105,"(40.563164, -74.115105)",TYSENS LANE,PRIMROSE PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408840,Bus,Sedan,,, +04/20/2021,15:50,,,40.73639,-73.90972,"(40.73639, -73.90972)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409247,Flat Rack,Sedan,,, +09/13/2021,16:54,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457029,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,11:58,BROOKLYN,11211,40.706673,-73.95443,"(40.706673, -73.95443)",HARRISON AVENUE,HOOPER STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409191,Sedan,Pedicab,,, +04/20/2021,16:30,,,40.616783,-73.89716,"(40.616783, -73.89716)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,4409112,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/20/2021,13:52,MANHATTAN,10028,40.77592,-73.95317,"(40.77592, -73.95317)",2 AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409053,Taxi,Motorscooter,,, +04/20/2021,11:49,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4409637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2021,19:17,,,40.89316,-73.852425,"(40.89316, -73.852425)",BUSSING AVENUE,BRONXWOOD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409497,Sedan,,,, +04/20/2021,12:40,MANHATTAN,10016,40.74445,-73.97304,"(40.74445, -73.97304)",EAST 35 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4409085,Station Wagon/Sport Utility Vehicle,Bike,,, +04/20/2021,20:20,,,40.83516,-73.94561,"(40.83516, -73.94561)",WEST 158 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409445,Sedan,,,, +04/20/2021,16:39,,,40.669857,-73.95051,"(40.669857, -73.95051)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409004,Bus,Pick-up Truck,,, +04/20/2021,16:50,,,,,,FRANCIS LEWIS BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409261,Bus,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,13:00,STATEN ISLAND,10301,40.635933,-74.07585,"(40.635933, -74.07585)",BAY STREET,HANNAH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409344,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,15:15,BROOKLYN,11201,40.691,-73.989334,"(40.691, -73.989334)",LIVINGSTON STREET,BOERUM PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4409036,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,14:20,STATEN ISLAND,10306,40.577168,-74.11804,"(40.577168, -74.11804)",RICHMOND ROAD,BURBANK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409214,Pick-up Truck,,,, +04/20/2021,9:22,MANHATTAN,10021,40.768486,-73.96362,"(40.768486, -73.96362)",EAST 69 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4408868,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,19:25,,,40.603783,-73.74558,"(40.603783, -73.74558)",BEACH 9 STREET,EMPIRE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4409093,Sedan,Sedan,,, +04/20/2021,11:00,BROOKLYN,11229,40.604107,-73.942604,"(40.604107, -73.942604)",,,3280 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408939,Station Wagon/Sport Utility Vehicle,Bus,,, +04/20/2021,14:11,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409100,Sedan,Box Truck,,, +04/20/2021,8:30,QUEENS,11360,40.777023,-73.77554,"(40.777023, -73.77554)",BELL BOULEVARD,28 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408992,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,4:30,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409092,Bulk Agriculture,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,21:29,BRONX,10452,40.84065,-73.91902,"(40.84065, -73.91902)",WEST 170 STREET,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Outside Car Distraction,,,,4409462,Sedan,,,, +04/20/2021,7:35,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409048,Sedan,,,, +04/15/2021,19:51,BROOKLYN,11218,40.63867,-73.97182,"(40.63867, -73.97182)",CORTELYOU ROAD,EAST 7 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409477,Sedan,,,, +09/13/2021,17:45,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456999,Sedan,Sedan,,, +04/20/2021,0:10,,,40.682194,-74.00239,"(40.682194, -74.00239)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4408725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Sedan +04/18/2021,10:00,BRONX,10457,40.850193,-73.88624,"(40.850193, -73.88624)",,,715 EAST 182 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409518,Sedan,,,, +04/20/2021,20:10,,,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,12:45,STATEN ISLAND,10312,40.56186,-74.1766,"(40.56186, -74.1766)",,,86 TOKEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409605,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/21/2021,3:45,MANHATTAN,10027,40.808407,-73.95248,"(40.808407, -73.95248)",,,2271 8 AVENUE,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4409578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Taxi +04/20/2021,16:10,,,40.579174,-74.11483,"(40.579174, -74.11483)",RICHMOND ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,10:13,BRONX,10472,40.82843,-73.88105,"(40.82843, -73.88105)",WESTCHESTER AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4408920,Motorscooter,,,, +04/20/2021,11:40,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4408925,Van,,,, +04/20/2021,13:50,BROOKLYN,11236,40.64208,-73.91967,"(40.64208, -73.91967)",RALPH AVENUE,CHASE COURT,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4409131,Bus,PK,,, +04/20/2021,15:36,,,40.80777,-73.94549,"(40.80777, -73.94549)",LENOX AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4409515,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,8:38,,,40.62965,-73.990555,"(40.62965, -73.990555)",15 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408951,Station Wagon/Sport Utility Vehicle,Dump,,, +09/13/2021,19:15,BROOKLYN,11207,40.67826,-73.897934,"(40.67826, -73.897934)",MARGINAL ST WEST,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457379,Sedan,,,, +04/20/2021,23:10,BROOKLYN,11207,40.67567,-73.89785,"(40.67567, -73.89785)",ATLANTIC AVENUE,SHEFFIELD AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409550,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,13:55,BROOKLYN,11203,40.65277,-73.93051,"(40.65277, -73.93051)",,,836 UTICA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408974,Sedan,,,, +04/20/2021,11:00,BROOKLYN,11233,,,,,,510 chauncey street,0,0,0,0,0,0,0,0,Unspecified,,,,,4409234,Sedan,,,, +03/23/2021,17:15,,,0,0,"(0.0, 0.0)",7 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409576,Taxi,Sedan,,, +04/20/2021,7:20,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408876,Pick-up Truck,Bus,Station Wagon/Sport Utility Vehicle,, +04/20/2021,13:30,,,40.715473,-73.95185,"(40.715473, -73.95185)",MEEKER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409133,Sedan,Box Truck,,, +04/20/2021,13:00,BRONX,10469,40.871605,-73.84246,"(40.871605, -73.84246)",HAMMERSLEY AVENUE,MICKLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409223,Sedan,,,, +04/20/2021,14:25,QUEENS,11385,40.70379,-73.8846,"(40.70379, -73.8846)",CENTRAL AVENUE,68 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409258,Pick-up Truck,,,, +04/20/2021,9:15,QUEENS,11102,40.76706,-73.91906,"(40.76706, -73.91906)",,,28-32 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4408900,Sedan,Sedan,Sedan,Sedan, +04/20/2021,12:40,,,40.71652,-73.774254,"(40.71652, -73.774254)",188 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4408948,UTILITY,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/20/2021,16:04,MANHATTAN,10026,40.80119,-73.95569,"(40.80119, -73.95569)",,,242 WEST 112 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4409566,Bus,Sedan,,, +03/22/2021,9:00,,,40.806705,-73.952866,"(40.806705, -73.952866)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409571,Bike,,,, +04/20/2021,14:32,BROOKLYN,11208,40.663544,-73.86949,"(40.663544, -73.86949)",WORTMAN AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408968,Sedan,Sedan,,, +04/20/2021,10:30,,,40.69467,-73.93115,"(40.69467, -73.93115)",LAWTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409078,Sedan,Box Truck,,, +04/20/2021,18:40,,,40.804523,-73.95158,"(40.804523, -73.95158)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409559,Taxi,SCOOTER,,, +04/20/2021,13:01,MANHATTAN,10024,40.782463,-73.97883,"(40.782463, -73.97883)",WEST 78 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409287,Taxi,Bike,,, +04/14/2021,21:51,BRONX,10457,40.84653,-73.8913,"(40.84653, -73.8913)",,,1986 BELMONT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409502,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,11:00,,,40.795963,-73.97084,"(40.795963, -73.97084)",WEST 98 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4408915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,20:20,,,40.622635,-74.16081,"(40.622635, -74.16081)",,,105 LUDWIG LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408988,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,7:00,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408866,Pick-up Truck,Tractor Truck Diesel,,, +04/20/2021,15:07,,,40.68348,-73.966896,"(40.68348, -73.966896)",FULTON STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408962,Convertible,Moped,,, +04/20/2021,17:00,BRONX,10458,40.8556,-73.88515,"(40.8556, -73.88515)",,,660 EAST 188 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409125,Sedan,,,, +04/20/2021,16:45,BROOKLYN,11204,40.625828,-73.99095,"(40.625828, -73.99095)",,,5822 16 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4408955,Sedan,,,, +04/20/2021,18:35,BROOKLYN,11214,40.60548,-73.999725,"(40.60548, -73.999725)",86 STREET,BAY 22 STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4409665,Bike,,,, +04/16/2021,0:00,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",EAST 173 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4409461,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/20/2021,22:55,BRONX,10458,40.85588,-73.88428,"(40.85588, -73.88428)",,,2449 CAMBRELENG AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,17:50,QUEENS,11355,40.746143,-73.82718,"(40.746143, -73.82718)",138 STREET,57 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409018,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,1:10,,,40.7811,-73.77,"(40.7811, -73.77)",CROSS ISLAND PARKWAY,,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,,,,4456372,Sedan,Sedan,,, +04/20/2021,9:00,BROOKLYN,11224,40.582912,-73.97458,"(40.582912, -73.97458)",WEST 6 STREET,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409246,Sedan,Sedan,,, +04/20/2021,22:30,MANHATTAN,10001,40.755184,-74.0006,"(40.755184, -74.0006)",,,550 WEST 34 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4409204,Tanker,,,, +04/20/2021,8:15,BRONX,10468,40.86033,-73.898285,"(40.86033, -73.898285)",GRAND CONCOURSE,EAST 187 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4409067,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,7:29,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4409408,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/20/2021,18:20,QUEENS,11418,40.694916,-73.83221,"(40.694916, -73.83221)",115 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409542,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,16:55,,,40.71582,-73.81759,"(40.71582, -73.81759)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409013,Motorcycle,,,, +04/15/2021,19:00,BRONX,10452,40.84065,-73.91902,"(40.84065, -73.91902)",INWOOD AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409451,Pick-up Truck,,,, +04/20/2021,9:20,,,40.58624,-73.8132,"(40.58624, -73.8132)",BEACH 90 STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4408997,Box Truck,Sedan,,, +09/12/2021,16:55,MANHATTAN,10018,40.75834,-73.996414,"(40.75834, -73.996414)",10 AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457415,Sedan,Sedan,,, +04/20/2021,16:45,BROOKLYN,11219,40.637894,-73.99989,"(40.637894, -73.99989)",10 AVENUE,51 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409478,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,12:20,,,40.785095,-73.97691,"(40.785095, -73.97691)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Oversized Vehicle,,,,4409617,Sedan,Box Truck,,, +04/20/2021,9:40,,,40.84744,-73.89968,"(40.84744, -73.89968)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408936,Sedan,Sedan,,, +04/20/2021,15:29,BRONX,10451,40.80786,-73.93182,"(40.80786, -73.93182)",,,3 AVENUE BRIDGE,1,0,1,0,0,0,0,0,,,,,,4409038,,,,, +04/16/2021,9:00,QUEENS,11368,40.739834,-73.86715,"(40.739834, -73.86715)",CHRISTIE AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409524,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,20:10,,,40.70003,-73.78873,"(40.70003, -73.78873)",MERRICK BOULEVARD,107 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457537,Bus,,,, +04/20/2021,16:23,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",SAINT ANNS AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409046,Sedan,Bus,,, +04/13/2021,6:17,,,40.786484,-73.97218,"(40.786484, -73.97218)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409627,Taxi,Bus,,, +04/20/2021,23:25,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4409110,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/20/2021,21:40,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409355,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,8:48,,,40.642548,-74.016655,"(40.642548, -74.016655)",4 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409028,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/20/2021,17:10,,,40.86309,-73.88946,"(40.86309, -73.88946)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408976,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,7:50,MANHATTAN,10030,40.819454,-73.94069,"(40.819454, -73.94069)",,,2430 7 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4409469,Bus,Sedan,,, +04/12/2021,6:30,BROOKLYN,11204,40.623367,-73.989494,"(40.623367, -73.989494)",17 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409486,Bus,Sedan,,, +04/20/2021,17:02,,,40.63665,-73.96805,"(40.63665, -73.96805)",CONEY ISLAND AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409141,Bus,,,, +04/20/2021,16:00,QUEENS,11356,40.783226,-73.83952,"(40.783226, -73.83952)",18 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409271,Sedan,,,, +04/20/2021,7:02,,,40.828075,-73.88543,"(40.828075, -73.88543)",SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,16:08,STATEN ISLAND,10312,40.54653,-74.180435,"(40.54653, -74.180435)",ARDEN AVENUE,DRUMGOOLE ROAD EAST,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4409646,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,3:34,,,40.834095,-73.94983,"(40.834095, -73.94983)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4409094,Sedan,,,, +04/20/2021,21:25,BROOKLYN,11208,40.665474,-73.86752,"(40.665474, -73.86752)",STANLEY AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409549,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,8:15,MANHATTAN,10032,40.844673,-73.94245,"(40.844673, -73.94245)",,,104 HAVEN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4409443,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,0:42,,,40.694862,-73.81842,"(40.694862, -73.81842)",95 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409594,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,16:55,BRONX,10451,40.819202,-73.92597,"(40.819202, -73.92597)",EAST 150 STREET,GRIFFIN PLACE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4409102,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/14/2021,12:56,MANHATTAN,10027,40.80886,-73.95213,"(40.80886, -73.95213)",8 AVENUE,WEST 123 STREET,,0,0,0,0,0,0,0,0,Drugs (illegal),,,,,4409579,Sedan,,,, +04/20/2021,22:30,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409446,Sedan,Sedan,,, +04/20/2021,0:02,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",WEST 44 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4408732,Sedan,Sedan,,, +04/18/2021,16:00,BRONX,10460,40.845715,-73.88085,"(40.845715, -73.88085)",,,2155 DALY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409519,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,13:55,MANHATTAN,10027,40.81458,-73.94795,"(40.81458, -73.94795)",8 AVENUE,WEST 132 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4409470,Pick-up Truck,WHEELCHAIR,,, +04/20/2021,18:30,BROOKLYN,11217,40.682983,-73.97335,"(40.682983, -73.97335)",,,677 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409012,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,18:15,STATEN ISLAND,10312,40.5609,-74.16901,"(40.5609, -74.16901)",,,854 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409187,Sedan,,,, +04/20/2021,7:24,BROOKLYN,11221,40.6947,-73.927505,"(40.6947, -73.927505)",BUSHWICK AVENUE,STOCKHOLM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4408931,Bus,Sedan,,, +04/20/2021,19:05,BROOKLYN,11226,40.65177,-73.95597,"(40.65177, -73.95597)",,,2150 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409154,Sedan,,,, +04/20/2021,11:20,BROOKLYN,11218,40.64197,-73.99157,"(40.64197, -73.99157)",,,1102 41 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409496,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,17:43,BROOKLYN,11233,40.68561,-73.92326,"(40.68561, -73.92326)",RALPH AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4409320,Sedan,Bus,,, +04/20/2021,9:51,BRONX,10459,40.818893,-73.89229,"(40.818893, -73.89229)",BARRETTO STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409060,Sedan,Box Truck,,, +04/16/2021,14:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,17:19,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409084,Taxi,Sedan,,, +04/20/2021,15:07,QUEENS,11691,40.5967,-73.77488,"(40.5967, -73.77488)",,,416 BEACH 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409264,Sedan,Sedan,,, +04/20/2021,13:58,MANHATTAN,10035,40.802444,-73.938835,"(40.802444, -73.938835)",EAST 122 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409127,Concrete Mixer,Sedan,,, +04/20/2021,7:50,,,40.620438,-74.1672,"(40.620438, -74.1672)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4408954,Sedan,Box Truck,,, +04/20/2021,12:13,QUEENS,11040,0,0,"(0.0, 0.0)",,,78-40 271 STREET,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4408972,Open Body,,,, +03/24/2021,9:33,,,40.80641,-73.94227,"(40.80641, -73.94227)",5 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409575,3-Door,Sedan,,, +04/20/2021,10:00,,,40.857117,-73.89907,"(40.857117, -73.89907)",RYER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408879,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/27/2021,20:40,MANHATTAN,10026,40.80143,-73.95011,"(40.80143, -73.95011)",,,100 LENOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409562,Sedan,,,, +04/20/2021,15:30,MANHATTAN,10003,40.73599,-73.98946,"(40.73599, -73.98946)",EAST 16 STREET,UNION SQUARE EAST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409135,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,22:00,,,40.644455,-74.0183,"(40.644455, -74.0183)",3 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409032,Sedan,Sedan,,, +04/05/2021,9:05,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4409636,Sedan,,,, +09/13/2021,18:30,,,40.714066,-73.94938,"(40.714066, -73.94938)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456933,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,13:20,STATEN ISLAND,10312,40.55231,-74.19095,"(40.55231, -74.19095)",,,262 ARDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409601,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,17:16,BROOKLYN,11204,40.61824,-73.98408,"(40.61824, -73.98408)",20 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408956,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/20/2021,18:03,BROOKLYN,11207,40.690453,-73.91176,"(40.690453, -73.91176)",WEIRFIELD STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408979,Sedan,,,, +04/20/2021,16:20,,,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,NASSAU EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,22:30,BRONX,10469,40.880993,-73.839455,"(40.880993, -73.839455)",,,3762 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409224,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,13:55,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4409237,Sedan,Motorscooter,,, +04/18/2021,15:00,,,40.54833,-74.19398,"(40.54833, -74.19398)",ROSEDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409647,Sedan,,,, +04/20/2021,9:58,MANHATTAN,10035,40.79793,-73.934,"(40.79793, -73.934)",EAST 119 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408874,Motorcycle,Sedan,,, +04/20/2021,17:47,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4409090,Sedan,,,, +04/20/2021,9:00,BROOKLYN,11216,40.6862,-73.950745,"(40.6862, -73.950745)",GATES AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408919,Sedan,Sedan,,, +04/11/2021,0:00,BROOKLYN,11214,40.604435,-73.99485,"(40.604435, -73.99485)",21 AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4409666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/20/2021,14:56,,,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409140,Sedan,Sedan,,, +04/20/2021,7:36,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4408862,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,18:30,,,40.68372,-73.78468,"(40.68372, -73.78468)",FOCH BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408990,Sedan,Sedan,,, +04/20/2021,17:00,BRONX,10466,40.894207,-73.848946,"(40.894207, -73.848946)",BUSSING AVENUE,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409222,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,17:30,BROOKLYN,11213,40.67219,-73.92755,"(40.67219, -73.92755)",,,1493 PARK PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4409611,Sedan,Sedan,Sedan,Sedan, +04/20/2021,9:00,MANHATTAN,10039,40.831257,-73.93574,"(40.831257, -73.93574)",,,2999 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409120,Sedan,,,, +04/20/2021,15:40,BRONX,10467,40.878773,-73.87288,"(40.878773, -73.87288)",,,348 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Lost Consciousness,,,,,4408942,Sedan,,,, +04/20/2021,11:40,BROOKLYN,11218,40.635265,-73.97398,"(40.635265, -73.97398)",,,686 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409484,Sedan,Box Truck,,, +04/13/2021,15:05,,,40.83927,-73.92257,"(40.83927, -73.92257)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409452,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,17:04,BRONX,10454,40.802914,-73.92029,"(40.802914, -73.92029)",SAINT ANNS AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409039,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,20:23,,,40.880527,-73.901794,"(40.880527, -73.901794)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4409020,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/20/2021,19:07,MANHATTAN,10069,,,,RIVERSIDE BOULEVARD,WEST 62 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Other Vehicular,,,,4409284,Taxi,Motorcycle,,, +04/20/2021,18:15,,,40.613895,-73.99219,"(40.613895, -73.99219)",19 AVENUE,,,3,0,2,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409395,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,15:50,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409047,Station Wagon/Sport Utility Vehicle,Bus,,, +04/20/2021,2:45,QUEENS,11434,40.65843,-73.76743,"(40.65843, -73.76743)",,,179-30 149 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4409619,Box Truck,,,, +04/20/2021,15:00,STATEN ISLAND,10306,,,,Father capodanno blvd,Midland ave,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4408938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/19/2021,9:40,QUEENS,11418,40.692726,-73.81065,"(40.692726, -73.81065)",VANWYCK EXPRESSWAY,LLOYD ROAD,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4409586,Sedan,Dump,,, +04/20/2021,7:45,BROOKLYN,11225,40.661224,-73.95637,"(40.661224, -73.95637)",,,177 LINCOLN ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4408912,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/17/2021,15:43,QUEENS,11368,40.75714,-73.8656,"(40.75714, -73.8656)",,,33-12 103 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409501,Sedan,,,, +04/20/2021,22:00,BROOKLYN,11226,40.64704,-73.962425,"(40.64704, -73.962425)",,,1809 ALBEMARLE ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4409145,E-Bike,,,, +04/20/2021,13:27,BROOKLYN,11201,40.690468,-73.9879,"(40.690468, -73.9879)",LIVINGSTON STREET,SMITH STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409244,Sedan,,,, +04/20/2021,15:45,BROOKLYN,11236,40.63849,-73.90403,"(40.63849, -73.90403)",,,1293 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408963,Sedan,Bus,,, +04/20/2021,20:10,BRONX,10469,40.86798,-73.84321,"(40.86798, -73.84321)",,,2933 ONEIL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409068,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,19:25,,,40.747204,-73.99711,"(40.747204, -73.99711)",,,8 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409202,E-Scooter,E-Bike,,, +04/20/2021,13:40,,,40.617924,-74.155785,"(40.617924, -74.155785)",RICHMOND AVENUE,DEPPE PLACE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4409109,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,0:32,BROOKLYN,11219,40.630016,-73.9959,"(40.630016, -73.9959)",NEW UTRECHT AVENUE,57 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408901,Sedan,Sedan,,, +04/20/2021,1:30,BROOKLYN,11207,40.67258,-73.89122,"(40.67258, -73.89122)",PITKIN AVENUE,MILLER AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4408831,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,12:15,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4408995,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/25/2021,9:15,MANHATTAN,10026,40.802532,-73.95303,"(40.802532, -73.95303)",7 AVENUE,WEST 115 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4409570,Tow Truck / Wrecker,Sedan,,, +12/08/2021,9:00,MANHATTAN,10031,40.825108,-73.95133,"(40.825108, -73.95133)",,,561 WEST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485390,Sedan,,,, +04/20/2021,12:25,,,40.65945,-73.89847,"(40.65945, -73.89847)",SNEDIKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4408967,Station Wagon/Sport Utility Vehicle,Carry All,,, +04/18/2021,1:03,BRONX,10452,40.83174,-73.92144,"(40.83174, -73.92144)",,,1083 WALTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409460,Sedan,Motorcycle,,, +04/20/2021,20:08,BROOKLYN,11219,40.637894,-73.99838,"(40.637894, -73.99838)",50 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409479,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,21:00,QUEENS,11385,40.709633,-73.90223,"(40.709633, -73.90223)",60 PLACE,GROVE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4409303,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,8:55,BROOKLYN,11230,40.625187,-73.96125,"(40.625187, -73.96125)",,,1502 AVENUE J,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409526,Sedan,Sedan,,, +04/20/2021,14:50,QUEENS,11367,40.74318,-73.8355,"(40.74318, -73.8355)",,,130-04 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4409014,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,8:45,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409358,Sedan,Sedan,,, +04/12/2021,15:50,MANHATTAN,10027,40.806614,-73.94486,"(40.806614, -73.94486)",,,62 WEST 124 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4409567,Sedan,Pick-up Truck,,, +04/20/2021,6:55,,,40.628117,-73.956856,"(40.628117, -73.956856)",AVENUE I,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409137,Bike,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,15:10,,,40.70566,-73.81847,"(40.70566, -73.81847)",87 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409580,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,12:35,QUEENS,11379,40.72728,-73.87246,"(40.72728, -73.87246)",,,61-40 85 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457243,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,8:45,,,40.692482,-73.9203,"(40.692482, -73.9203)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408933,Pick-up Truck,,,, +04/20/2021,14:30,BROOKLYN,11237,40.71242,-73.92387,"(40.71242, -73.92387)",SCHOLES STREET,SCOTT AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4409189,Dump,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,17:28,BRONX,10460,40.839165,-73.88333,"(40.839165, -73.88333)",CROSS BRONX EXPRESSWAY,BRYANT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4409506,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,15:00,,,40.831566,-73.942986,"(40.831566, -73.942986)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409129,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,12:25,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",WESTCHESTER AVENUE,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408918,Pick-up Truck,Sedan,,, +04/20/2021,9:00,BROOKLYN,11214,40.597282,-73.99626,"(40.597282, -73.99626)",,,180 BAY 32 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Driver Inattention/Distraction,Unspecified,,,4408958,Sedan,Sedan,Sedan,, +04/20/2021,22:00,QUEENS,11385,40.71022,-73.89931,"(40.71022, -73.89931)",,,64-06 FRESH POND ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409255,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,12:29,,,,,,EAST 23 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409240,Sedan,,,, +04/20/2021,8:55,QUEENS,11420,40.67447,-73.8027,"(40.67447, -73.8027)",135 PLACE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408894,Sedan,,,, +04/19/2021,10:15,MANHATTAN,10011,40.744354,-73.99624,"(40.744354, -73.99624)",,,209 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409528,Sedan,Bike,,, +04/19/2021,2:00,,,40.81133,-73.96403,"(40.81133, -73.96403)",RIVERSIDE DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4409590,Sedan,Sedan,Sedan,Sedan, +04/20/2021,15:32,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4409335,Taxi,Sedan,,, +04/18/2021,20:05,,,40.69169,-73.90585,"(40.69169, -73.90585)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409633,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,13:13,,,,,,Boat basin,Shea road,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409051,Sedan,,,, +04/20/2021,17:20,BRONX,10472,40.82866,-73.87824,"(40.82866, -73.87824)",WESTCHESTER AVENUE,BOYNTON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4409466,Sedan,Sedan,Sedan,, +04/03/2021,15:10,,,40.817844,-73.94185,"(40.817844, -73.94185)",WEST 139 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4409471,Sedan,Sedan,Sedan,, +04/20/2021,8:10,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4408786,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2021,3:30,MANHATTAN,10027,40.80844,-73.9471,"(40.80844, -73.9471)",,,158 WEST 125 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409574,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,15:29,QUEENS,11691,40.605534,-73.748474,"(40.605534, -73.748474)",,,11-28 NEILSON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4409088,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,16:49,,,40.841877,-73.91796,"(40.841877, -73.91796)",INWOOD AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4409103,,,,, +04/18/2021,15:27,STATEN ISLAND,10307,40.505733,-74.24484,"(40.505733, -74.24484)",,,146 CHELSEA STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409521,Pick-up Truck,Sedan,,, +04/20/2021,19:45,,,40.71523,-74.01334,"(40.71523, -74.01334)",WEST STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409011,Sedan,Bike,,, +04/20/2021,18:40,,,40.737865,-73.90441,"(40.737865, -73.90441)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,18:11,,,40.657253,-74.00477,"(40.657253, -74.00477)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409031,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2021,8:36,MANHATTAN,10026,40.8035,-73.949165,"(40.8035, -73.949165)",,,100 WEST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,20:27,STATEN ISLAND,10312,40.561634,-74.178276,"(40.561634, -74.178276)",DIERAUF STREET,KENMORE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409650,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,5:30,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,7:40,,,40.620438,-74.1672,"(40.620438, -74.1672)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4408953,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,5:35,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Outside Car Distraction,Reaction to Uninvolved Vehicle,,4408872,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/20/2021,10:50,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409164,E-Bike,,,, +04/20/2021,19:45,QUEENS,11368,40.755222,-73.87076,"(40.755222, -73.87076)",,,97-10 34 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409277,Station Wagon/Sport Utility Vehicle,Bike,,, +04/20/2021,18:13,,,40.695995,-73.96742,"(40.695995, -73.96742)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408982,Sedan,,,, +04/20/2021,14:20,BRONX,10473,40.824207,-73.87529,"(40.824207, -73.87529)",MANOR AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408971,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/20/2021,18:05,MANHATTAN,10035,,,,EAST 119 STREET,PLEASANT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409228,Bike,,,, +04/20/2021,17:46,QUEENS,11434,40.68096,-73.773575,"(40.68096, -73.773575)",BAISLEY BOULEVARD,MARSDEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409548,Sedan,,,, +04/20/2021,0:00,BROOKLYN,11220,40.63834,-74.01736,"(40.63834, -74.01736)",5 AVENUE,62 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409027,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,23:31,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409056,Sedan,Sedan,,, +04/14/2021,16:20,BROOKLYN,11204,40.623367,-73.989494,"(40.623367, -73.989494)",17 AVENUE,60 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4409494,Bus,Bike,,, +04/20/2021,17:28,BRONX,10452,40.842335,-73.91619,"(40.842335, -73.91619)",EAST 172 STREET,JEROME AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Following Too Closely,,,,4409447,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,11:49,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4409626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/20/2021,17:06,,,40.850456,-73.899315,"(40.850456, -73.899315)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409083,Sedan,Sedan,,, +04/20/2021,18:15,,,40.738796,-73.80846,"(40.738796, -73.80846)",HORACE HARDING EXPRESSWAY,160 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4409015,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/14/2021,19:15,STATEN ISLAND,10309,40.523315,-74.23922,"(40.523315, -74.23922)",,,4888 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409600,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,8:20,,,40.70981,-73.99178,"(40.70981, -73.99178)",SOUTH STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Reaction to Uninvolved Vehicle,,,,4409359,Bus,Sedan,,, +04/19/2021,11:00,MANHATTAN,10033,40.848682,-73.939224,"(40.848682, -73.939224)",FORT WASHINGTON AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409442,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,21:00,BRONX,10451,40.823456,-73.92444,"(40.823456, -73.92444)",GRAND CONCOURSE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409455,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,17:06,BRONX,10454,0,0,"(0.0, 0.0)",SAINT ANNS AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409040,Sedan,,,, +09/12/2021,3:15,MANHATTAN,10036,40.75633,-73.98767,"(40.75633, -73.98767)",,,214 WEST 42 STREET,2,0,0,0,0,0,2,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4457523,Chassis Cab,Sedan,Sedan,Sedan, +09/13/2021,5:59,BROOKLYN,11208,40.681217,-73.88211,"(40.681217, -73.88211)",SHEPHERD AVENUE,ARLINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457471,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,13:46,,,40.605568,-74.00443,"(40.605568, -74.00443)",18 AVENUE,BENSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457358,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/13/2021,5:29,BRONX,10472,40.82605,-73.86162,"(40.82605, -73.86162)",,,1851 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456533,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,16:15,QUEENS,11416,40.680283,-73.85471,"(40.680283, -73.85471)",84 STREET,102 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457390,E-Bike,Sedan,,, +09/13/2021,17:50,MANHATTAN,10016,40.743225,-73.98414,"(40.743225, -73.98414)",,,401 PARK AVENUE SOUTH,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4456911,Bike,Sedan,,, +09/13/2021,8:05,QUEENS,11691,40.600502,-73.76222,"(40.600502, -73.76222)",,,24-45 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457001,Sedan,,,, +09/13/2021,22:22,MANHATTAN,10029,40.79293,-73.950005,"(40.79293, -73.950005)",EAST 105 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457424,Sedan,Sedan,,, +09/13/2021,9:10,MANHATTAN,10002,40.718704,-73.98526,"(40.718704, -73.98526)",,,80 CLINTON STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4456948,Station Wagon/Sport Utility Vehicle,Dump,,, +09/13/2021,18:57,,,40.67342,-73.95017,"(40.67342, -73.95017)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4457213,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/13/2021,23:30,QUEENS,11417,40.677986,-73.8409,"(40.677986, -73.8409)",,,109-06 97 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4457306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/13/2021,22:10,QUEENS,11420,40.68176,-73.823906,"(40.68176, -73.823906)",117 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4456969,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/13/2021,22:00,,,40.74091,-73.83727,"(40.74091, -73.83727)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457608,Dump,Sedan,,, +09/13/2021,2:00,,,40.625786,-73.89309,"(40.625786, -73.89309)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457510,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,8:20,MANHATTAN,10011,40.744205,-74.005325,"(40.744205, -74.005325)",,,425 WEST 18 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457410,Sedan,Sedan,,, +09/09/2021,20:30,,,40.68796,-73.94194,"(40.68796, -73.94194)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457668,Sedan,Sedan,,, +09/13/2021,11:15,QUEENS,11413,40.67102,-73.74893,"(40.67102, -73.74893)",139 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,12:20,BROOKLYN,11203,40.662544,-73.9351,"(40.662544, -73.9351)",,,843 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456863,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,8:00,BRONX,10462,40.85234,-73.863556,"(40.85234, -73.863556)",,,809 BRADY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457082,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,22:50,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457476,Sedan,Sedan,,, +09/13/2021,0:00,BROOKLYN,11236,40.63917,-73.91604,"(40.63917, -73.91604)",EAST 81 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4456926,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Tow Truck / Wrecker, +09/13/2021,7:50,QUEENS,11434,40.68096,-73.773575,"(40.68096, -73.773575)",BAISLEY BOULEVARD,MARSDEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457172,Bus,Motorcycle,,, +08/31/2021,19:00,QUEENS,11101,40.757706,-73.94127,"(40.757706, -73.94127)",,,38-78 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457438,Sedan,,,, +09/13/2021,9:20,STATEN ISLAND,10305,40.603645,-74.077324,"(40.603645, -74.077324)",STEUBEN STREET,OLGA PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456801,Sedan,Sedan,,, +09/13/2021,20:48,BRONX,10457,,,,ARTHUR AVENUE,EAST 183 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4457035,Sedan,Sedan,Sedan,, +09/13/2021,15:30,BRONX,10458,40.8667,-73.88775,"(40.8667, -73.88775)",,,2780 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457094,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,7:09,QUEENS,11435,40.69215,-73.80247,"(40.69215, -73.80247)",LIVERPOOL STREET,SHORE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4456848,Taxi,Sedan,Sedan,Box Truck, +09/13/2021,7:45,QUEENS,11417,40.681263,-73.83954,"(40.681263, -73.83954)",LIBERTY AVENUE,101 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4456958,Sedan,Bus,,, +09/04/2021,16:00,,,40.72202,-73.98345,"(40.72202, -73.98345)",AVENUE B,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4457352,Bike,Sedan,,, +09/13/2021,21:32,MANHATTAN,10001,40.748466,-73.99247,"(40.748466, -73.99247)",WEST 30 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457395,Sedan,,,, +09/13/2021,21:43,BROOKLYN,11234,40.615124,-73.936066,"(40.615124, -73.936066)",QUENTIN ROAD,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457181,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,22:07,QUEENS,11101,40.74779,-73.94985,"(40.74779, -73.94985)",11 STREET,45 AVENUE,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4456918,E-Scooter,,,, +09/13/2021,10:56,,,,,,FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4456964,Taxi,Sedan,,, +09/10/2021,11:10,STATEN ISLAND,10304,40.613308,-74.08722,"(40.613308, -74.08722)",RICHMOND ROAD,VANDUZER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457591,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,8:40,QUEENS,11693,40.586315,-73.80653,"(40.586315, -73.80653)",SHORE FRONT PARKWAY,BEACH 81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4457575,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/12/2021,2:45,QUEENS,11101,40.75203,-73.92915,"(40.75203, -73.92915)",35 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4457452,Taxi,Taxi,,, +09/11/2021,14:00,BROOKLYN,11237,40.700356,-73.912575,"(40.700356, -73.912575)",LINDEN STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457339,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,12:00,QUEENS,11432,40.711834,-73.78746,"(40.711834, -73.78746)",,,175-06 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457549,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,1:00,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4457067,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,5:35,BROOKLYN,11205,40.68881,-73.96595,"(40.68881, -73.96595)",,,333 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4456559,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan +09/13/2021,19:20,BROOKLYN,11211,40.71752,-73.95281,"(40.71752, -73.95281)",,,250 NORTH 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457161,Sedan,,,, +09/13/2021,13:12,MANHATTAN,10017,40.7488,-73.96986,"(40.7488, -73.96986)",EAST 42 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456904,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,7:15,BROOKLYN,11223,40.58406,-73.96901,"(40.58406, -73.96901)",SHORE PARKWAY,WEST STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457705,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,21:45,,,40.846527,-73.87146,"(40.846527, -73.87146)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4457099,Sedan,Sedan,,, +09/13/2021,13:07,,,40.855545,-73.90914,"(40.855545, -73.90914)",HARRISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4457044,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/13/2021,14:45,MANHATTAN,10005,40.708115,-74.00877,"(40.708115, -74.00877)",,,28 LIBERTY STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456981,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,11:00,QUEENS,11377,40.757847,-73.89922,"(40.757847, -73.89922)",31 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457584,Sedan,,,, +09/11/2021,15:25,MANHATTAN,10011,40.74406,-74.00682,"(40.74406, -74.00682)",WEST 17 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457404,Sedan,Bike,,, +09/13/2021,8:00,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",GRENADA PLACE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457013,Van,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,14:00,,,40.827557,-73.914764,"(40.827557, -73.914764)",EAST 164 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457341,Sedan,TOW TRUCK,,, +09/13/2021,15:05,,,40.587566,-73.811264,"(40.587566, -73.811264)",,,BEACH 86 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4457631,Sedan,,,, +09/13/2021,16:40,BROOKLYN,11211,40.71144,-73.945946,"(40.71144, -73.945946)",,,666 GRAND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456936,E-Scooter,,,, +04/21/2021,4:30,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409098,Sedan,Box Truck,,, +09/13/2021,19:05,MANHATTAN,10012,40.723564,-73.998375,"(40.723564, -73.998375)",,,545 BROADWAY,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4457174,,,,, +09/13/2021,19:37,QUEENS,11427,40.72257,-73.75729,"(40.72257, -73.75729)",209 STREET,HILLSIDE AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4457255,Sedan,,,, +09/13/2021,12:20,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4456963,Sedan,Bike,,, +09/13/2021,11:00,BRONX,10461,40.84636,-73.84463,"(40.84636, -73.84463)",WATERS PLACE,EASTCHESTER ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457115,Pick-up Truck,,,, +09/13/2021,8:00,MANHATTAN,10019,40.77161,-73.99046,"(40.77161, -73.99046)",11 AVENUE,WEST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456763,Tanker,PK,Station Wagon/Sport Utility Vehicle,, +09/13/2021,23:26,BRONX,10466,40.89084,-73.862175,"(40.89084, -73.862175)",EAST 228 STREET,CARPENTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4457020,Pick-up Truck,,,, +09/13/2021,13:42,,,40.73399,-73.78041,"(40.73399, -73.78041)",73 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456873,Sedan,Sedan,,, +09/13/2021,11:51,BRONX,10456,40.825314,-73.90822,"(40.825314, -73.90822)",3 AVENUE,EAST 164 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4457031,Station Wagon/Sport Utility Vehicle,Moped,,, +09/13/2021,15:50,BROOKLYN,11206,40.70839,-73.939964,"(40.70839, -73.939964)",BUSHWICK AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4456930,Sedan,E-Scooter,,, +09/13/2021,11:40,BRONX,10469,40.876183,-73.854454,"(40.876183, -73.854454)",LACONIA AVENUE,EAST 213 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4457019,Box Truck,,,, +09/13/2021,16:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457649,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,4:49,BROOKLYN,11214,40.6081,-73.99939,"(40.6081, -73.99939)",,,1869 83 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4457363,Sedan,Sedan,Pick-up Truck,Sedan, +09/13/2021,16:11,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456974,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,10:28,BRONX,10457,40.851467,-73.89557,"(40.851467, -73.89557)",WASHINGTON AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457380,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,3:10,BROOKLYN,11231,40.676155,-74.000175,"(40.676155, -74.000175)",,,148 HUNTINGTON STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4456462,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/13/2021,20:00,QUEENS,11691,40.60098,-73.75555,"(40.60098, -73.75555)",NEW HAVEN AVENUE,BEACH 22 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457722,Sedan,,,, +09/13/2021,11:09,QUEENS,11385,40.70086,-73.882454,"(40.70086, -73.882454)",69 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457242,Pick-up Truck,Sedan,,, +09/13/2021,15:00,,,40.59755,-74.14077,"(40.59755, -74.14077)",FOREST HILL ROAD,WALCOTT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457534,,,,, +09/12/2021,4:00,BROOKLYN,11207,40.679184,-73.89385,"(40.679184, -73.89385)",,,11 BRADFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457487,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,18:30,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457095,Sedan,,,, +12/17/2021,13:22,BRONX,10459,40.823936,-73.89488,"(40.823936, -73.89488)",EAST 165 STREET,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487316,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,6:55,QUEENS,11423,40.712494,-73.76869,"(40.712494, -73.76869)",JAMAICA AVENUE,191 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456852,Sedan,Sedan,,, +09/13/2021,9:00,QUEENS,11364,40.737526,-73.74185,"(40.737526, -73.74185)",,,229-11 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,16:45,MANHATTAN,10011,40.742615,-73.99792,"(40.742615, -73.99792)",,,215 WEST 20 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4457414,Taxi,,,, +09/13/2021,12:24,,,40.785973,-73.96886,"(40.785973, -73.96886)",WEST 87 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4456886,Sedan,,,, +09/13/2021,12:00,STATEN ISLAND,10301,40.64747,-74.08473,"(40.64747, -74.08473)",CARROLL PLACE,SAINT PETERS PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457085,Sedan,Sedan,,, +09/11/2021,22:05,QUEENS,11106,40.7611,-73.93999,"(40.7611, -73.93999)",36 AVENUE,11 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457442,Bike,,,, +09/13/2021,3:20,MANHATTAN,10001,40.7491,-73.99201,"(40.7491, -73.99201)",WEST 31 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4457416,Sedan,Dump,,, +09/13/2021,18:30,QUEENS,11377,40.73963,-73.92226,"(40.73963, -73.92226)",43 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456917,Sedan,Sedan,,, +09/13/2021,12:47,MANHATTAN,10030,40.815826,-73.947044,"(40.815826, -73.947044)",WEST 134 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457136,Bike,,,, +09/13/2021,19:30,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457475,Sedan,E-Bike,,, +09/13/2021,7:54,BRONX,10473,40.806168,-73.8497,"(40.806168, -73.8497)",SOUND VIEW AVENUE,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456792,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:00,QUEENS,11358,40.757874,-73.788506,"(40.757874, -73.788506)",193 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4457058,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,14:45,,,40.622356,-74.16798,"(40.622356, -74.16798)",,,700 SOUTH AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4457121,Sedan,,,, +09/13/2021,15:30,BROOKLYN,11222,40.722992,-73.9452,"(40.722992, -73.9452)",,,168 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4457168,Bus,,,, +09/13/2021,8:38,BRONX,10457,40.84621,-73.89277,"(40.84621, -73.89277)",,,615 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456804,Sedan,,,, +09/13/2021,12:50,QUEENS,11101,40.749832,-73.94842,"(40.749832, -73.94842)",,,12-04 44 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456883,,,,, +09/13/2021,8:40,QUEENS,11105,40.781254,-73.91797,"(40.781254, -73.91797)",19 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457453,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,0:00,QUEENS,11040,40.750023,-73.70631,"(40.750023, -73.70631)",267 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457465,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,15:30,MANHATTAN,10027,40.81493,-73.956406,"(40.81493, -73.956406)",,,526 WEST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456910,Sedan,,,, +09/13/2021,7:35,QUEENS,11691,40.60834,-73.75538,"(40.60834, -73.75538)",,,22-29 NAMEOKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457002,Sedan,,,, +09/12/2021,12:00,BROOKLYN,11208,40.68222,-73.87725,"(40.68222, -73.87725)",,,3187 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457445,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/13/2021,10:18,,,40.701134,-73.99306,"(40.701134, -73.99306)",HICKS STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4457237,Tractor Truck Diesel,,,, +09/07/2021,17:00,MANHATTAN,10018,40.75728,-73.99721,"(40.75728, -73.99721)",,,501 10 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,8:35,BROOKLYN,11212,40.65864,-73.91374,"(40.65864, -73.91374)",STRAUSS STREET,NEWPORT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456813,Sedan,,,, +09/13/2021,17:35,,,40.63237,-73.88319,"(40.63237, -73.88319)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456927,Bus,Sedan,,, +09/13/2021,8:20,,,40.58588,-73.912704,"(40.58588, -73.912704)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4456738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/13/2021,11:30,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",LINDEN BOULEVARD,NEWBURG STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456905,Station Wagon/Sport Utility Vehicle,Bus,,, +09/13/2021,21:20,QUEENS,11435,40.698692,-73.8057,"(40.698692, -73.8057)",95 AVENUE,147 PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457538,Sedan,E-Bike,,, +09/13/2021,1:50,,,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4457051,Sedan,Sedan,,, +09/13/2021,15:00,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456898,Pick-up Truck,Sedan,,, +09/13/2021,16:15,QUEENS,11365,40.72848,-73.80523,"(40.72848, -73.80523)",164 STREET,72 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457616,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,19:38,,,40.694305,-73.91852,"(40.694305, -73.91852)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457362,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,16:43,,,40.82538,-73.94006,"(40.82538, -73.94006)",WEST 149 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4457138,Bike,,,, +09/09/2021,2:18,,,40.712116,-73.73118,"(40.712116, -73.73118)",HEMPSTEAD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457672,Sedan,,,, +09/13/2021,22:56,BROOKLYN,11210,40.635994,-73.93932,"(40.635994, -73.93932)",,,855 EAST 39 STREET,3,0,0,0,0,0,3,0,Unspecified,,,,,4456949,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,8:05,BROOKLYN,11223,40.60118,-73.98319,"(40.60118, -73.98319)",,,1887 WEST 11 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457081,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,15:05,,,40.735867,-73.9552,"(40.735867, -73.9552)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,15:50,BROOKLYN,11218,40.645058,-73.97472,"(40.645058, -73.97472)",,,200 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457114,Sedan,Box Truck,,, +09/13/2021,10:45,,,40.809643,-73.91037,"(40.809643, -73.91037)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456993,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/13/2021,21:13,BROOKLYN,11211,40.708683,-73.95301,"(40.708683, -73.95301)",,,354 HOOPER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457288,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,17:20,QUEENS,11102,40.767727,-73.91982,"(40.767727, -73.91982)",,,31-34 28 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457434,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,16:04,BROOKLYN,11220,40.63201,-74.01318,"(40.63201, -74.01318)",66 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4456944,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/13/2021,7:48,,,40.701332,-73.92684,"(40.701332, -73.92684)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457353,Station Wagon/Sport Utility Vehicle,Dump,,, +09/13/2021,16:45,,,40.708305,-73.948425,"(40.708305, -73.948425)",SCHOLES STREET,,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4456935,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/13/2021,3:00,,,40.666157,-73.79904,"(40.666157, -73.79904)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4456545,Sedan,,,, +09/13/2021,7:30,BROOKLYN,11207,40.65759,-73.8835,"(40.65759, -73.8835)",VAN SICLEN AVENUE,WORTMAN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457382,Sedan,Bike,,, +09/12/2021,14:00,BROOKLYN,11236,40.648266,-73.90581,"(40.648266, -73.90581)",ROCKAWAY PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457551,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,14:33,,,40.874638,-73.909744,"(40.874638, -73.909744)",BROADWAY,WEST 225 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,15:30,BROOKLYN,11235,40.59262,-73.951355,"(40.59262, -73.951355)",AVENUE X,EAST 19 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456965,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,12:21,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",HUNTS POINT AVENUE,SOUTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457512,Sedan,E-Bike,,, +09/13/2021,18:10,MANHATTAN,10027,40.815155,-73.95784,"(40.815155, -73.95784)",WEST 125 STREET,OLD BROADWAY,,1,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4457428,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/13/2021,16:44,BROOKLYN,11234,40.61095,-73.9132,"(40.61095, -73.9132)",EAST 59 PLACE,STRICKLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457247,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,22:20,MANHATTAN,10002,40.720074,-73.988365,"(40.720074, -73.988365)",LUDLOW STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457659,Sedan,Sedan,,, +09/13/2021,18:10,BROOKLYN,11217,40.67665,-73.98029,"(40.67665, -73.98029)",,,199 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456972,Sedan,Box Truck,,, +09/11/2021,12:45,MANHATTAN,10010,40.741028,-73.99417,"(40.741028, -73.99417)",AVENUE OF THE AMERICAS,WEST 20 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457572,Bike,,,, +09/13/2021,22:42,BRONX,10457,40.8477,-73.90097,"(40.8477, -73.90097)",WEBSTER AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457043,Sedan,Bike,,, +09/13/2021,11:51,BROOKLYN,11231,40.67885,-74.00158,"(40.67885, -74.00158)",,,3 4 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457260,Sedan,Box Truck,,, +09/13/2021,15:10,,,40.766815,-73.83038,"(40.766815, -73.83038)",137 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456957,Sedan,Sedan,,, +09/13/2021,13:30,,,40.673965,-73.99998,"(40.673965, -73.99998)",HAMILTON AVENUE,CENTRE STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4456920,Sedan,pickup tru,,, +08/16/2021,7:15,MANHATTAN,10001,40.74714,-73.99342,"(40.74714, -73.99342)",,,317 7 AVENUE,0,0,0,0,0,0,0,0,,,,,,4457371,Taxi,,,, +09/13/2021,18:46,BROOKLYN,11226,,,,st pauls place,parkside avenue,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457066,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,13:10,,,40.833065,-73.85974,"(40.833065, -73.85974)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457190,Sedan,Tractor Truck Diesel,,, +09/13/2021,22:00,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",HOOK CREEK BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456977,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,20:20,BROOKLYN,11219,40.631927,-73.99175,"(40.631927, -73.99175)",,,5201 14 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4457024,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,13:25,BROOKLYN,11217,40.68787,-73.978355,"(40.68787, -73.978355)",FULTON STREET,ASHLAND PLACE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4457441,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,15:20,QUEENS,11419,40.690044,-73.81481,"(40.690044, -73.81481)",131 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457337,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/07/2021,17:20,,,40.825905,-73.94712,"(40.825905, -73.94712)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4457522,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,17:30,,,40.828278,-73.907036,"(40.828278, -73.907036)",3 AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457033,Station Wagon/Sport Utility Vehicle,Moped,,, +09/01/2021,13:55,BROOKLYN,11201,40.701656,-73.9913,"(40.701656, -73.9913)",,,BROOKLYN BRIDGE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457491,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,0:19,,,40.83283,-73.91129,"(40.83283, -73.91129)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,7:10,BROOKLYN,11226,40.64953,-73.96283,"(40.64953, -73.96283)",,,1818 CHURCH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456509,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,22:05,MANHATTAN,10018,40.75355,-73.98505,"(40.75355, -73.98505)",WEST 40 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4457417,Sedan,E-Bike,,, +09/13/2021,15:30,BRONX,10453,40.85315,-73.90561,"(40.85315, -73.90561)",EAST BURNSIDE AVENUE,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457374,Sedan,Box Truck,,, +09/13/2021,22:15,,,40.7024,-73.9605,"(40.7024, -73.9605)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4456943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,23:50,STATEN ISLAND,10306,40.564705,-74.12721,"(40.564705, -74.12721)",NORTH RAILROAD AVENUE,GUYON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457096,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,10:42,MANHATTAN,10002,40.71358,-73.99601,"(40.71358, -73.99601)",,,42 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456854,Station Wagon/Sport Utility Vehicle,Bike,,, +09/13/2021,15:55,,,40.553314,-74.1634,"(40.553314, -74.1634)",GENESEE AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4457088,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,1:00,QUEENS,11369,40.75945,-73.87269,"(40.75945, -73.87269)",,,31-40 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457400,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,13:30,QUEENS,11379,40.71943,-73.87917,"(40.71943, -73.87917)",JUNIPER BOULEVARD SOUTH,77 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,18:00,BRONX,10454,40.80878,-73.92314,"(40.80878, -73.92314)",,,225 WILLIS AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456990,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/13/2021,18:04,QUEENS,11379,40.720535,-73.88885,"(40.720535, -73.88885)",69 LANE,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457648,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,14:29,MANHATTAN,10017,40.751453,-73.97816,"(40.751453, -73.97816)",PARK AVENUE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457011,Taxi,Sedan,,, +09/08/2021,13:00,QUEENS,11106,40.76283,-73.92901,"(40.76283, -73.92901)",33 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457704,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,9:20,BRONX,10462,,,,,,2213 MANNING STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457176,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,16:12,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",GRAND CONCOURSE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457052,Van,,,, +09/13/2021,1:43,QUEENS,11368,40.757442,-73.86747,"(40.757442, -73.86747)",NORTHERN BOULEVARD,101 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,16:00,QUEENS,11435,40.710644,-73.810295,"(40.710644, -73.810295)",,,85-15 148 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456914,Sedan,,,, +09/13/2021,18:40,,,40.682186,-73.86982,"(40.682186, -73.86982)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457474,Sedan,Bike,,, +09/13/2021,7:20,,,,,,BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/13/2021,8:45,BROOKLYN,11208,40.681217,-73.88211,"(40.681217, -73.88211)",SHEPHERD AVENUE,ARLINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457447,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,10:20,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/13/2021,10:50,BROOKLYN,11215,40.67042,-73.98365,"(40.67042, -73.98365)",,,376 6 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456962,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,8:25,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457583,Sedan,,,, +09/11/2021,19:00,MANHATTAN,10001,40.746174,-73.9947,"(40.746174, -73.9947)",,,200 WEST 26 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457413,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:47,MANHATTAN,10010,40.73951,-73.98475,"(40.73951, -73.98475)",EAST 23 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457533,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,16:04,,,40.765823,-73.82373,"(40.765823, -73.82373)",35 AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456899,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/13/2021,18:30,BROOKLYN,11233,40.679604,-73.91026,"(40.679604, -73.91026)",,,138 HULL STREET,1,0,1,0,0,0,0,0,,,,,,4456922,,,,, +09/13/2021,19:39,BRONX,10460,40.840057,-73.870964,"(40.840057, -73.870964)",VANNEST AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457201,Taxi,,,, +09/13/2021,8:00,,,40.58205,-74.1578,"(40.58205, -74.1578)",,,47 ESSEX DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457122,Sedan,,,, +09/13/2021,14:41,QUEENS,11377,40.74614,-73.91431,"(40.74614, -73.91431)",50 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457145,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,12:00,BRONX,10458,40.866325,-73.88837,"(40.866325, -73.88837)",MARION AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457593,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,8:50,BROOKLYN,11231,40.67474,-73.99777,"(40.67474, -73.99777)",SMITH STREET,9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456777,Dump,Sedan,,, +09/13/2021,8:10,,,40.70091,-73.926094,"(40.70091, -73.926094)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457017,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,7:40,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4457627,Box Truck,,,, +09/13/2021,15:01,MANHATTAN,10003,40.724556,-73.99152,"(40.724556, -73.99152)",,,11 EAST 1 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457717,Sedan,Bike,,, +09/13/2021,12:40,BRONX,10458,40.858418,-73.88514,"(40.858418, -73.88514)",EAST FORDHAM ROAD,ARTHUR AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456836,Sedan,Sedan,,, +09/12/2021,13:41,STATEN ISLAND,10310,40.63367,-74.12848,"(40.63367, -74.12848)",CASTLETON AVENUE,RECTOR STREET,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457619,Sedan,Sedan,Bike,, +09/13/2021,17:19,BROOKLYN,11226,40.648376,-73.96579,"(40.648376, -73.96579)",MARLBOROUGH ROAD,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457065,Sedan,,,, +09/13/2021,4:06,QUEENS,11419,40.69405,-73.82802,"(40.69405, -73.82802)",ATLANTIC AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4456730,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/13/2021,21:09,BROOKLYN,11236,40.634434,-73.88871,"(40.634434, -73.88871)",,,9738 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456928,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,22:00,,,40.625103,-74.14877,"(40.625103, -74.14877)",FOREST AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,6:30,QUEENS,11432,40.708076,-73.79257,"(40.708076, -73.79257)",168 PLACE,90 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4457540,Sedan,,,, +09/13/2021,13:29,BRONX,10453,40.852146,-73.91741,"(40.852146, -73.91741)",WEST TREMONT AVENUE,PHELAN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457050,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,13:47,MANHATTAN,10003,40.73567,-73.98869,"(40.73567, -73.98869)",,,109 EAST 16 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456882,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,0:00,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457392,Sedan,Sedan,,, +09/11/2021,19:10,MANHATTAN,10027,40.806625,-73.94275,"(40.806625, -73.94275)",,,1 WEST 125 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457356,Sedan,,,, +09/13/2021,23:20,BROOKLYN,11235,40.593384,-73.94442,"(40.593384, -73.94442)",AVENUE X,EAST 26 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456966,Taxi,,,, +09/13/2021,22:45,MANHATTAN,10002,40.720192,-73.98737,"(40.720192, -73.98737)",,,137 ESSEX STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456951,Sedan,Bike,,, +09/13/2021,17:10,,,40.674145,-73.93062,"(40.674145, -73.93062)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457234,Tow Truck / Wrecker,Sedan,,, +09/13/2021,18:20,BROOKLYN,11212,40.665905,-73.91854,"(40.665905, -73.91854)",SUTTER AVENUE,GRAFTON STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457287,Sedan,Sedan,,, +09/13/2021,16:50,QUEENS,11040,40.740894,-73.70084,"(40.740894, -73.70084)",LANGDALE STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456973,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,18:40,BROOKLYN,11203,40.64993,-73.93312,"(40.64993, -73.93312)",SNYDER AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457555,Sedan,,,, +09/13/2021,9:52,BRONX,10463,0,0,"(0.0, 0.0)",WEST 238 STREET,BAILEY AVENUE,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456870,E-Bike,,,, +09/01/2021,22:30,QUEENS,11368,40.736847,-73.86507,"(40.736847, -73.86507)",,,96-02 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457513,Sedan,,,, +09/13/2021,8:40,BROOKLYN,11233,40.67781,-73.9079,"(40.67781, -73.9079)",,,1922 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456811,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,3:23,,,40.750305,-74.00837,"(40.750305, -74.00837)",12 AVENUE,,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,Unspecified,,,,4457408,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,10:55,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457074,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,22:34,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4457678,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/13/2021,18:50,BRONX,10455,0,0,"(0.0, 0.0)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457158,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,17:50,QUEENS,11367,40.73081,-73.823456,"(40.73081, -73.823456)",,,144-33 69 ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456906,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,13:00,BRONX,10455,40.81626,-73.91421,"(40.81626, -73.91421)",BROOK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4456994,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,23:21,,,40.66634,-73.80081,"(40.66634, -73.80081)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4457109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,7:40,,,40.576042,-73.99008,"(40.576042, -73.99008)",WEST 23 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,11:00,,,40.756104,-73.800804,"(40.756104, -73.800804)",45 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456806,Sedan,Sedan,,, +09/13/2021,9:00,MANHATTAN,10035,40.804028,-73.93873,"(40.804028, -73.93873)",,,116 EAST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456556,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,14:22,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456934,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,6:00,,,,,,BERGEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457464,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,22:00,BROOKLYN,11225,40.6633,-73.94415,"(40.6633, -73.94415)",,,31 LAMONT COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4457003,Sedan,,,, +09/13/2021,8:00,,,40.76038,-73.75801,"(40.76038, -73.75801)",46 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456909,Sedan,,,, +09/11/2021,18:05,,,40.604206,-73.99146,"(40.604206, -73.99146)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4457361,Sedan,,,, +09/12/2021,17:45,BROOKLYN,11207,40.665714,-73.8876,"(40.665714, -73.8876)",LIVONIA AVENUE,HENDRIX STREET,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4457383,Sedan,Sedan,,, +09/13/2021,8:50,QUEENS,11379,40.714703,-73.88658,"(40.714703, -73.88658)",,,69-08 JUNIPER VALLEY ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457244,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,18:40,MANHATTAN,10011,40.74649,-74.001335,"(40.74649, -74.001335)",WEST 23 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457432,E-Scooter,,,, +09/10/2021,17:35,MANHATTAN,10002,40.713253,-73.97759,"(40.713253, -73.97759)",FDR DRIVE,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457660,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,12:10,,,40.63698,-73.936554,"(40.63698, -73.936554)",FARRAGUT ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456945,Sedan,Sedan,,, +09/13/2021,8:00,,,40.719833,-73.82624,"(40.719833, -73.82624)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457269,Sedan,Chassis Cab,,, +09/01/2021,19:53,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4457455,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,2:30,,,40.76118,-73.95791,"(40.76118, -73.95791)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4457061,Taxi,Sedan,,, +09/13/2021,8:00,BROOKLYN,11207,40.676357,-73.891754,"(40.676357, -73.891754)",,,2777 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457493,Carry All,Sedan,,, +09/06/2021,9:47,BROOKLYN,11203,40.637096,-73.93465,"(40.637096, -73.93465)",FARRAGUT ROAD,TROY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457544,Sedan,Sedan,,, +09/13/2021,12:25,BRONX,10458,40.867153,-73.89354,"(40.867153, -73.89354)",,,2676 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457097,Sedan,,,, +09/11/2021,21:55,MANHATTAN,10001,40.747593,-73.994194,"(40.747593, -73.994194)",,,221 WEST 28 STREET,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4457412,Bike,,,, +09/13/2021,17:00,BRONX,10472,40.831642,-73.876076,"(40.831642, -73.876076)",STRATFORD AVENUE,EAST 172 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4457053,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:52,,,40.63667,-74.02567,"(40.63667, -74.02567)",3 AVENUE,68 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456835,Sedan,Bike,,, +09/13/2021,8:54,QUEENS,11434,40.67318,-73.78103,"(40.67318, -73.78103)",132 AVENUE,157 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4456900,Sedan,Sedan,,, +09/13/2021,13:35,BROOKLYN,11211,40.7149,-73.95748,"(40.7149, -73.95748)",,,212 NORTH 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4457167,Excavator,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/13/2021,7:40,QUEENS,11104,40.741364,-73.92096,"(40.741364, -73.92096)",47 AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4457147,Taxi,,,, +09/13/2021,0:35,,,40.784943,-73.946594,"(40.784943, -73.946594)",EAST 97 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4456797,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,Box Truck,, +09/13/2021,12:17,,,40.769604,-73.91139,"(40.769604, -73.91139)",38 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457433,Dump,Sedan,,, +09/12/2021,20:33,MANHATTAN,10031,40.825783,-73.943474,"(40.825783, -73.943474)",,,752 SAINT NICHOLAS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4457521,Taxi,,,, +09/13/2021,13:30,QUEENS,11378,40.72616,-73.90012,"(40.72616, -73.90012)",HAMILTON PLACE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457249,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,14:30,,,40.58864,-73.90874,"(40.58864, -73.90874)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,19:00,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456976,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,11:15,,,40.83489,-73.8663,"(40.83489, -73.8663)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4457367,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/10/2021,16:38,QUEENS,11416,40.684204,-73.85858,"(40.684204, -73.85858)",ROCKAWAY BOULEVARD,82 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457377,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,0:21,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",2 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4456528,Sedan,,,, +09/13/2021,16:20,BROOKLYN,11207,40.657814,-73.89613,"(40.657814, -73.89613)",WILLIAMS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4457473,Sedan,Sedan,Sedan,, +09/13/2021,8:00,,,40.695354,-73.93237,"(40.695354, -73.93237)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457016,Sedan,,,, +09/13/2021,17:24,,,40.78994,-73.98036,"(40.78994, -73.98036)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457034,Motorcycle,,,, +08/26/2021,18:30,BROOKLYN,11217,40.679733,-73.97432,"(40.679733, -73.97432)",FLATBUSH AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4457645,Station Wagon/Sport Utility Vehicle,Van,Sedan,School Bus, +09/08/2021,13:05,,,40.7963,-73.93829,"(40.7963, -73.93829)",2 AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4457419,Sedan,,,, +09/13/2021,21:45,,,40.858376,-73.89637,"(40.858376, -73.89637)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457715,Convertible,,,, +09/13/2021,19:35,BROOKLYN,11206,40.711693,-73.935814,"(40.711693, -73.935814)",BOGART STREET,TEN EYCK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456939,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,12:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457177,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,8:45,BROOKLYN,11229,,,,EAST 19 STREET,AVENUE U,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4456960,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/13/2021,7:34,QUEENS,11102,40.768436,-73.91996,"(40.768436, -73.91996)",31 STREET,28 AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4457449,Motorcycle,,,, +08/25/2021,18:51,BROOKLYN,11235,40.58514,-73.96651,"(40.58514, -73.96651)",OCEAN PARKWAY,NIXON COURT,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457597,Sedan,,,, +09/13/2021,10:41,BRONX,10456,40.82424,-73.90862,"(40.82424, -73.90862)",,,3250 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457027,Sedan,Sedan,,, +09/13/2021,13:50,QUEENS,11369,40.760307,-73.87582,"(40.760307, -73.87582)",31 AVENUE,93 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456891,Pick-up Truck,Sedan,,, +09/13/2021,9:47,BROOKLYN,11228,40.628204,-74.01286,"(40.628204, -74.01286)",FORT HAMILTON PARKWAY,70 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456774,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,8:45,,,40.616035,-74.073944,"(40.616035, -74.073944)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457089,Sedan,Sedan,,, +09/13/2021,20:25,MANHATTAN,10010,40.742233,-73.9933,"(40.742233, -73.9933)",WEST 22 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4456913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:15,,,40.63759,-73.927864,"(40.63759, -73.927864)",FARRAGUT ROAD,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457133,E-Bike,Sedan,,, +09/10/2021,15:00,QUEENS,11106,40.766373,-73.93358,"(40.766373, -73.93358)",,,31-62 14 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457440,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/13/2021,21:26,QUEENS,11358,40.756397,-73.804535,"(40.756397, -73.804535)",162 STREET,45 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4456956,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,12:00,,,40.82942,-73.91226,"(40.82942, -73.91226)",CLAY AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4456986,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/13/2021,16:08,QUEENS,11370,40.760044,-73.89756,"(40.760044, -73.89756)",30 AVENUE,70 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,7:46,MANHATTAN,10019,40.76367,-73.98881,"(40.76367, -73.98881)",,,746 9 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,9:30,QUEENS,11385,40.704018,-73.89795,"(40.704018, -73.89795)",60 LANE,68 ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457562,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,22:35,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,,,4457626,Taxi,Sedan,Sedan,, +09/13/2021,16:15,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,EAST 233 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4457010,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,23:00,BROOKLYN,11235,40.594025,-73.93872,"(40.594025, -73.93872)",BROWN STREET,AVENUE X,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457692,Sedan,,,, +09/13/2021,15:11,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",KINGS HIGHWAY,ROCKAWAY PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456946,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,4:20,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4457529,Station Wagon/Sport Utility Vehicle,Bike,,, +09/13/2021,22:14,,,40.71123,-73.85575,"(40.71123, -73.85575)",METROPOLITAN AVENUE,69 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4457271,Sedan,Tractor Truck Diesel,,, +09/13/2021,9:00,BRONX,10458,40.85659,-73.88365,"(40.85659, -73.88365)",,,2468 CAMBRELENG AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4457336,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/18/2021,21:00,MANHATTAN,10027,40.80576,-73.94868,"(40.80576, -73.94868)",,,140 WEST 121 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457357,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,8:30,QUEENS,11417,40.679962,-73.83953,"(40.679962, -73.83953)",100 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4456967,Dump,Sedan,,, +12/10/2021,21:00,MANHATTAN,10065,40.76048,-73.95825,"(40.76048, -73.95825)",,,500 EAST 62 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485731,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/06/2021,21:15,,,40.54161,-74.154526,"(40.54161, -74.154526)",ARMSTRONG AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485457,Sedan,,,, +12/11/2021,2:20,BROOKLYN,11233,40.671898,-73.92231,"(40.671898, -73.92231)",RALPH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,17:55,MANHATTAN,10128,40.779778,-73.94725,"(40.779778, -73.94725)",,,1748 1 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4487135,MOPED,,,, +12/17/2021,20:40,QUEENS,11356,40.787582,-73.849655,"(40.787582, -73.849655)",118 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487441,Sedan,Sedan,,, +12/11/2021,0:45,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4487656,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,12:16,STATEN ISLAND,10306,40.579174,-74.11483,"(40.579174, -74.11483)",BANCROFT AVENUE,RICHMOND ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4487465,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/17/2021,21:25,MANHATTAN,10038,40.712875,-73.9986,"(40.712875, -73.9986)",,,59 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487943,Sedan,Sedan,,, +12/15/2021,23:50,,,40.681473,-73.72776,"(40.681473, -73.72776)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4486839,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/16/2021,9:10,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487036,Sedan,,,, +12/10/2021,11:40,,,40.68963,-73.92741,"(40.68963, -73.92741)",PATCHEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4487832,Sedan,Sedan,,, +12/17/2021,19:01,,,40.81666,-73.938995,"(40.81666, -73.938995)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4487985,Sedan,AMBULANCE,,, +12/17/2021,10:45,BROOKLYN,11215,40.666134,-73.99224,"(40.666134, -73.99224)",4 AVENUE,16 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487258,Pick-up Truck,Bike,,, +12/16/2021,9:00,BROOKLYN,11220,40.64815,-74.010826,"(40.64815, -74.010826)",47 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487065,Sedan,,,, +12/17/2021,9:00,,,40.595318,-74.16151,"(40.595318, -74.16151)",,,1325 ROCKLAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487243,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,2:00,QUEENS,11360,40.78643,-73.793274,"(40.78643, -73.793274)",CROSS ISLAND PARKWAY,201 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4487447,Sedan,Sedan,,, +12/15/2021,7:26,QUEENS,11691,40.59389,-73.77368,"(40.59389, -73.77368)",ROCKAWAY BEACH BOULEVARD,BEACH 42 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486860,Ambulance,Sedan,,, +12/16/2021,7:15,BROOKLYN,11224,40.57968,-73.971176,"(40.57968, -73.971176)",,,444 NEPTUNE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487740,Taxi,,,, +11/03/2021,11:30,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",CROTONA AVENUE,EAST 187 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487952,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,14:20,BRONX,10469,40.872326,-73.83512,"(40.872326, -73.83512)",,,3011 EDSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487801,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,18:13,QUEENS,11434,40.68432,-73.769684,"(40.68432, -73.769684)",BAISLEY BOULEVARD,120 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4487897,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,17:37,,,40.88661,-73.90704,"(40.88661, -73.90704)",WEST 236 STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487179,Sedan,,,, +12/16/2021,19:30,,,40.718224,-73.79504,"(40.718224, -73.79504)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487124,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,11:58,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487226,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +12/15/2021,13:24,MANHATTAN,10065,40.76531,-73.96385,"(40.76531, -73.96385)",3 AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486727,Taxi,,,, +12/15/2021,6:27,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",EAST HOUSTON STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486751,Taxi,Sedan,,, +12/17/2021,20:02,BROOKLYN,11210,40.62147,-73.95072,"(40.62147, -73.95072)",BEDFORD AVENUE,AVENUE L,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487553,Sedan,,,, +04/23/2021,1:10,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409698,,,,, +12/15/2021,8:30,QUEENS,11422,40.65953,-73.73261,"(40.65953, -73.73261)",254 STREET,MEMPHIS AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4486963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,7:09,QUEENS,11691,40.59539,-73.769615,"(40.59539, -73.769615)",,,330 BEACH 37 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,15:30,QUEENS,11432,40.704327,-73.797714,"(40.704327, -73.797714)",162 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4487487,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle,, +12/16/2021,15:40,MANHATTAN,10013,40.71747,-74.0107,"(40.71747, -74.0107)",GREENWICH STREET,DUANE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487269,Bike,,,, +12/15/2021,23:30,QUEENS,11373,,,,,,46-02 74 street,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4487174,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,17:18,BROOKLYN,11220,40.641987,-74.01724,"(40.641987, -74.01724)",58 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4486818,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/17/2021,8:38,,,40.680923,-73.75065,"(40.680923, -73.75065)",133 AVENUE,218 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487301,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,10:30,QUEENS,11368,,,,NORTHERN BLVD,114 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487018,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,15:50,BRONX,10458,40.868015,-73.89129,"(40.868015, -73.89129)",MIRIAM STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487284,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/17/2021,4:10,MANHATTAN,10016,40.742645,-73.98246,"(40.742645, -73.98246)",LEXINGTON AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487711,Taxi,Taxi,,, +12/10/2021,17:35,,,40.6771,-73.92479,"(40.6771, -73.92479)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4487597,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,20:27,MANHATTAN,10036,40.761375,-73.98781,"(40.761375, -73.98781)",,,319 WEST 48 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487306,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/16/2021,22:40,BROOKLYN,11232,40.65276,-74.00235,"(40.65276, -74.00235)",,,847 5 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4487141,Sedan,Sedan,,, +12/17/2021,23:16,,,40.699177,-73.9605,"(40.699177, -73.9605)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487925,Sedan,Sedan,,, +12/15/2021,8:10,,,40.84023,-73.880104,"(40.84023, -73.880104)",EAST TREMONT AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486706,PK,Sedan,,, +12/15/2021,16:30,,,40.691265,-73.9051,"(40.691265, -73.9051)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486920,Sedan,,,, +12/15/2021,17:09,QUEENS,11368,40.75062,-73.870285,"(40.75062, -73.870285)",,,37-47 JUNCTION BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486971,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,10:15,QUEENS,11423,40.72921,-73.781166,"(40.72921, -73.781166)",UNION TURNPIKE,188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487999,Garbage or Refuse,,,, +12/15/2021,19:21,BROOKLYN,11237,40.69939,-73.91938,"(40.69939, -73.91938)",HARMAN STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4487772,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,8:39,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4486741,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,19:00,,,40.619507,-74.15036,"(40.619507, -74.15036)",MARTIN LUTHER KING JR,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4486846,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,15:50,QUEENS,11375,40.725636,-73.843254,"(40.725636, -73.843254)",110 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487351,Ambulance,Sedan,,, +12/15/2021,22:00,BRONX,10468,40.8606,-73.91102,"(40.8606, -73.91102)",SEDGWICK AVENUE,WEST 183 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487084,Station Wagon/Sport Utility Vehicle,,,, +12/04/2021,22:18,,,40.563145,-74.10787,"(40.563145, -74.10787)",EBBITTS STREET,,,1,1,0,0,0,0,1,1,Passing or Lane Usage Improper,Unspecified,,,,4487498,Sedan,Bus,,, +12/17/2021,12:40,QUEENS,11103,40.758224,-73.91741,"(40.758224, -73.91741)",42 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487373,Sedan,Sedan,,, +12/15/2021,9:00,BROOKLYN,11249,40.7068,-73.96325,"(40.7068, -73.96325)",,,133 CLYMER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487115,Station Wagon/Sport Utility Vehicle,,,, +04/12/2021,0:30,,,,,,,,163 VANPELT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4409731,Sedan,Sedan,Sedan,, +12/15/2021,11:00,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487031,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,8:50,BROOKLYN,11226,40.655422,-73.95007,"(40.655422, -73.95007)",NOSTRAND AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487238,Bus,Van,,, +12/15/2021,22:25,,,40.696556,-73.98091,"(40.696556, -73.98091)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4486801,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,8:00,,,40.652267,-73.92075,"(40.652267, -73.92075)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4487591,Sedan,Sedan,,, +12/17/2021,16:46,QUEENS,11415,0,0,"(0.0, 0.0)",,,80-30 PARK LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,12:40,BROOKLYN,11230,40.622963,-73.965866,"(40.622963, -73.965866)",,,1078 EAST 10 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4486853,Bike,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,12:59,MANHATTAN,10027,40.810184,-73.95118,"(40.810184, -73.95118)",,,249 WEST 125 STREET,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487206,E-Scooter,Sedan,,, +12/15/2021,14:40,MANHATTAN,10034,40.87188,-73.9111,"(40.87188, -73.9111)",,,4141 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487660,Bus,Sedan,,, +12/16/2021,22:45,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4487533,Pick-up Truck,,,, +12/17/2021,16:50,BROOKLYN,11207,40.684372,-73.90913,"(40.684372, -73.90913)",,,1419 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487426,Sedan,,,, +12/13/2021,1:12,,,40.682537,-73.95002,"(40.682537, -73.95002)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4487344,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,16:40,BROOKLYN,11223,40.593967,-73.97899,"(40.593967, -73.97899)",,,2201 WEST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487385,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,8:50,BRONX,10466,40.88905,-73.84221,"(40.88905, -73.84221)",,,3929 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487819,Sedan,Sedan,,, +12/16/2021,12:30,MANHATTAN,10038,40.7103,-74.00106,"(40.7103, -74.00106)",,,375 PEARL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,22:46,STATEN ISLAND,10306,40.55349,-74.13178,"(40.55349, -74.13178)",HYLAN BOULEVARD,JUSTIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487471,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/24/2021,11:30,BROOKLYN,11233,40.669273,-73.922554,"(40.669273, -73.922554)",RALPH AVENUE,LINCOLN PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487735,Sedan,,,, +12/17/2021,16:40,BRONX,10469,40.861164,-73.857574,"(40.861164, -73.857574)",WILLIAMSBRIDGE ROAD,WARING AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487338,Sedan,,,, +12/14/2021,18:47,BROOKLYN,11208,40.681675,-73.879135,"(40.681675, -73.879135)",FULTON STREET,NORWOOD AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4487201,E-Bike,E-Bike,,, +12/15/2021,7:11,MANHATTAN,10007,40.71495,-74.0097,"(40.71495, -74.0097)",WEST BROADWAY,WARREN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487154,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +12/15/2021,20:13,BROOKLYN,11236,40.64509,-73.90637,"(40.64509, -73.90637)",EAST 94 STREET,FARRAGUT ROAD,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487077,Sedan,,,, +12/16/2021,23:23,,,40.771088,-73.98343,"(40.771088, -73.98343)",WEST 62 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487421,Station Wagon/Sport Utility Vehicle,Stake or Rack,,, +12/17/2021,17:23,BRONX,10466,40.88899,-73.84361,"(40.88899, -73.84361)",,,1196 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487796,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,14:04,,,40.682446,-73.911674,"(40.682446, -73.911674)",ROCKAWAY AVENUE,,,3,0,2,0,0,0,1,0,Unspecified,,,,,4487528,Sedan,,,, +12/17/2021,7:22,QUEENS,11385,40.70089,-73.89336,"(40.70089, -73.89336)",62 STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487718,Bus,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,23:10,BROOKLYN,11208,40.6901,-73.87214,"(40.6901, -73.87214)",,,888 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,7:15,STATEN ISLAND,10301,40.643497,-74.07418,"(40.643497, -74.07418)",,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487634,Fork lift,Sedan,,, +12/15/2021,13:55,,,,,,WESTCHESTER AVENUE,EDGEWATER PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486959,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/07/2021,16:00,MANHATTAN,10029,40.788937,-73.94254,"(40.788937, -73.94254)",,,330 EAST 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487577,Sedan,,,, +12/12/2021,0:32,BROOKLYN,11213,40.67888,-73.93561,"(40.67888, -73.93561)",HERKIMER STREET,TROY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487757,Sedan,Sedan,,, +12/08/2021,21:21,BROOKLYN,11206,40.695377,-73.94921,"(40.695377, -73.94921)",MYRTLE AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487280,Sedan,Sedan,,, +12/15/2021,1:00,,,40.69098,-73.74878,"(40.69098, -73.74878)",120 AVENUE,201 PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4486638,Sedan,Sedan,,, +12/16/2021,1:00,,,40.745876,-73.77225,"(40.745876, -73.77225)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4487009,Sedan,,,, +12/16/2021,19:28,,,40.746788,-73.827156,"(40.746788, -73.827156)",BOOTH MEMORIAL AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4487265,Sedan,Sedan,,, +12/15/2021,14:55,BROOKLYN,11228,40.62125,-74.00899,"(40.62125, -74.00899)",,,1221 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4486780,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,13:10,BRONX,10467,40.868557,-73.870514,"(40.868557, -73.870514)",,,2910 BRONX PARK EAST,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4487233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,9:14,QUEENS,11434,40.680485,-73.774704,"(40.680485, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486975,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,19:20,BROOKLYN,11214,40.603874,-73.99544,"(40.603874, -73.99544)",21 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487547,Sedan,Bike,,, +12/15/2021,17:34,,,40.631157,-74.14692,"(40.631157, -74.14692)",MORNINGSTAR ROAD,WALKER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486930,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,8:23,,,40.615772,-73.98308,"(40.615772, -73.98308)",64 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487572,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,2:56,,,40.812073,-73.93604,"(40.812073, -73.93604)",MADISON AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487913,Sedan,Sedan,,, +12/17/2021,16:30,BROOKLYN,11206,40.706757,-73.94141,"(40.706757, -73.94141)",HUMBOLDT STREET,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4487297,Tractor Truck Diesel,Sedan,,, +12/16/2021,12:40,MANHATTAN,10016,40.747772,-73.985054,"(40.747772, -73.985054)",WEST 33 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4487392,Bus,Sedan,,, +12/16/2021,0:35,,,40.75355,-73.98505,"(40.75355, -73.98505)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486877,Van,Sedan,,, +12/16/2021,9:58,MANHATTAN,10027,40.810307,-73.951515,"(40.810307, -73.951515)",,,264 WEST 125 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487205,Station Wagon/Sport Utility Vehicle,Bus,,, +12/17/2021,18:55,QUEENS,11375,40.712635,-73.83462,"(40.712635, -73.83462)",,,118-17 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487355,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,0:45,QUEENS,11428,40.716362,-73.743904,"(40.716362, -73.743904)",JAMAICA AVENUE,214 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487119,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,11:54,,,,,,MORNINGSTAR ROAD,HOOKER PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487378,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,4:00,QUEENS,11373,40.74344,-73.87675,"(40.74344, -73.87675)",,,43-22 ITHACA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4486898,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/15/2021,7:00,BROOKLYN,11207,40.67677,-73.88949,"(40.67677, -73.88949)",SCHENCK AVENUE,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487079,Box Truck,,,, +11/19/2021,8:18,,,40.875492,-73.86052,"(40.875492, -73.86052)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487216,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,16:01,QUEENS,11433,40.6922,-73.79173,"(40.6922, -73.79173)",159 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486827,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,15:51,STATEN ISLAND,10314,40.608833,-74.12118,"(40.608833, -74.12118)",SCHMIDTS LANE,MANOR ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487476,Sedan,Sedan,,, +12/17/2021,18:28,BRONX,10467,40.88288,-73.8632,"(40.88288, -73.8632)",EAST 218 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487812,Sedan,Sedan,,, +12/16/2021,0:32,MANHATTAN,10035,40.798023,-73.9342,"(40.798023, -73.9342)",,,333 EAST 119 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4487020,Convertible,Sedan,Station Wagon/Sport Utility Vehicle,Bike, +12/17/2021,20:15,,,40.82821,-73.83556,"(40.82821, -73.83556)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487451,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,9:50,BROOKLYN,11219,40.634827,-73.98426,"(40.634827, -73.98426)",,,1514 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487667,Sedan,Van,,, +12/17/2021,19:35,,,40.69603,-73.943535,"(40.69603, -73.943535)",THROOP AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487701,Sedan,E-Scooter,,, +12/17/2021,10:30,BRONX,10463,40.888954,-73.898544,"(40.888954, -73.898544)",,,5959 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487360,Box Truck,Taxi,,, +12/15/2021,16:50,,,40.67765,-73.949776,"(40.67765, -73.949776)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487620,Sedan,,,, +12/17/2021,20:20,,,,,,BROOKLYN QNS EXPRESSWAY,COLES STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487437,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,20:15,,,40.641212,-73.96444,"(40.641212, -73.96444)",CORTELYOU ROAD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487614,Bike,Sedan,,, +12/17/2021,10:55,,,40.591927,-74.13646,"(40.591927, -74.13646)",,,501 BRIELLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487380,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/14/2021,22:24,BROOKLYN,11226,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487543,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/16/2021,17:00,BROOKLYN,11216,40.67187,-73.95464,"(40.67187, -73.95464)",BEDFORD AVENUE,SAINT JOHNS PLACE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Passing or Lane Usage Improper,,,,4487683,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/15/2021,17:00,BRONX,10461,40.84882,-73.85467,"(40.84882, -73.85467)",MORRIS PARK AVENUE,HONE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4487055,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,7:30,,,40.67357,-73.95294,"(40.67357, -73.95294)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487731,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:50,,,40.7242,-73.93765,"(40.7242, -73.93765)",VANDERVORT AVENUE,MEEKER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486851,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,11:50,BROOKLYN,11215,40.675434,-73.97797,"(40.675434, -73.97797)",UNION STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487588,Bike,Sedan,,, +12/13/2021,14:33,MANHATTAN,10030,40.820984,-73.93959,"(40.820984, -73.93959)",,,141 WEST 144 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487270,Ambulance,Sedan,,, +12/14/2021,11:45,MANHATTAN,10012,40.72071,-73.99582,"(40.72071, -73.99582)",,,186 MOTT STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487630,Box Truck,E-Bike,,, +12/16/2021,20:50,QUEENS,11385,40.708427,-73.905525,"(40.708427, -73.905525)",GRANDVIEW AVENUE,GROVE STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4487723,Sedan,Sedan,,, +12/14/2021,20:35,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4487414,Sedan,,,, +11/14/2021,20:30,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4487790,Sedan,Box Truck,,, +12/11/2021,14:25,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487641,Sedan,Dump,Station Wagon/Sport Utility Vehicle,, +12/10/2021,6:25,,,,,,EAST TREMONT AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487339,Station Wagon/Sport Utility Vehicle,Bike,,, +12/15/2021,16:30,BRONX,10461,40.84271,-73.851166,"(40.84271, -73.851166)",,,2460 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486981,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,2:15,BROOKLYN,11214,40.58516,-73.9874,"(40.58516, -73.9874)",CROPSEY AVENUE,BAY 50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4487748,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/15/2021,3:00,,,40.73374,-74.0063,"(40.73374, -74.0063)",WEST 10 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486669,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,18:07,BRONX,10462,40.855244,-73.868675,"(40.855244, -73.868675)",,,2160 BOLTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486909,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,19:43,BROOKLYN,11236,40.634354,-73.910675,"(40.634354, -73.910675)",EAST 81 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487511,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,16:05,MANHATTAN,10025,40.798817,-73.96394,"(40.798817, -73.96394)",,,109 WEST 105 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486759,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,0:00,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487900,Sedan,,,, +12/17/2021,6:40,,,40.77656,-73.95271,"(40.77656, -73.95271)",2 AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4487248,E-Scooter,,,, +12/17/2021,12:12,MANHATTAN,10018,40.754745,-73.99365,"(40.754745, -73.99365)",,,356 WEST 37 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487397,Station Wagon/Sport Utility Vehicle,Food cart,,, +12/16/2021,21:50,MANHATTAN,10011,40.744576,-73.996765,"(40.744576, -73.996765)",,,235 WEST 23 STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4487563,Sedan,Sedan,,, +12/16/2021,0:56,,,,,,CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4486916,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,23:25,QUEENS,11429,40.707684,-73.72798,"(40.707684, -73.72798)",107 AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486821,Pick-up Truck,Sedan,,, +12/15/2021,16:40,MANHATTAN,10036,40.758533,-73.98885,"(40.758533, -73.98885)",WEST 44 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486906,Taxi,,,, +12/15/2021,17:30,BRONX,10467,40.877174,-73.86457,"(40.877174, -73.86457)",,,3514 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487220,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,16:57,,,40.692345,-73.88179,"(40.692345, -73.88179)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4487099,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,6:00,QUEENS,11373,40.73274,-73.86836,"(40.73274, -73.86836)",LONG ISLAND EXPRESSWAY,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486865,Box Truck,Sedan,Sedan,, +07/09/2022,13:27,QUEENS,11422,40.671604,-73.72807,"(40.671604, -73.72807)",HOOK CREEK BOULEVARD,134 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4546058,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,20:18,BROOKLYN,11219,40.639908,-73.994354,"(40.639908, -73.994354)",,,4502 NEW UTRECHT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4487941,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,2:25,QUEENS,11417,40.674557,-73.859604,"(40.674557, -73.859604)",NORTH CONDUIT AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4486559,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,18:00,,,40.67484,-73.82344,"(40.67484, -73.82344)",115 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4487131,Sedan,Pick-up Truck,,, +12/17/2021,1:50,BROOKLYN,11203,40.653564,-73.934494,"(40.653564, -73.934494)",LINDEN BOULEVARD,EAST 46 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4487601,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/14/2021,8:05,BROOKLYN,11210,40.628414,-73.94139,"(40.628414, -73.94139)",,,1830 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487237,Sedan,Bus,,, +12/16/2021,18:11,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4487967,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,7:59,BRONX,10459,40.822235,-73.88746,"(40.822235, -73.88746)",BRUCKNER EXPRESSWAY,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487043,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,8:00,MANHATTAN,10032,40.84095,-73.939476,"(40.84095, -73.939476)",WEST 168 STREET,SAINT NICHOLAS AVENUE,,2,0,1,0,1,0,0,0,Unspecified,,,,,4487403,Bike,,,, +12/14/2021,17:49,BROOKLYN,11208,40.675682,-73.86607,"(40.675682, -73.86607)",,,640 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487188,Sedan,Sedan,,, +12/12/2021,15:10,,,40.710976,-73.97962,"(40.710976, -73.97962)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487459,4 dr sedan,Sedan,,, +12/12/2021,0:04,QUEENS,11370,40.768833,-73.89063,"(40.768833, -73.89063)",DITMARS BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487647,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/26/2021,14:00,BRONX,10470,40.902428,-73.85125,"(40.902428, -73.85125)",,,4617 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487837,Sedan,,,, +12/17/2021,8:23,,,40.703075,-73.79064,"(40.703075, -73.79064)",LIBERTY AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487275,Sedan,,,, +12/17/2021,15:30,BROOKLYN,11210,40.62423,-73.93858,"(40.62423, -73.93858)",EAST 38 STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487483,Sedan,Box Truck,,, +12/14/2021,14:35,QUEENS,11432,40.709614,-73.805115,"(40.709614, -73.805115)",,,85-97 PARSONS BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,17:15,,,40.738586,-73.80839,"(40.738586, -73.80839)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487442,FORD VAN,,,, +12/11/2021,16:20,QUEENS,11434,40.67969,-73.77709,"(40.67969, -73.77709)",,,166-02 BAISLEY BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4487878,Sedan,,,, +12/16/2021,13:22,,,40.79793,-73.934,"(40.79793, -73.934)",1 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4487944,Taxi,E-Bike,,, +12/17/2021,9:28,BROOKLYN,11234,40.634964,-73.932076,"(40.634964, -73.932076)",,,4612 GLENWOOD ROAD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4487539,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,9:25,MANHATTAN,10001,,,,33 street,9th avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457402,Sedan,Box Truck,,, +12/16/2021,21:50,,,40.75719,-73.89041,"(40.75719, -73.89041)",77 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4487657,Sedan,,,, +12/14/2021,14:51,BROOKLYN,11224,40.581516,-73.96734,"(40.581516, -73.96734)",OCEAN PARKWAY,WEST AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4487745,Motorbike,,,, +11/26/2021,15:18,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4487175,Sedan,,,, +12/17/2021,12:44,BRONX,10468,40.872112,-73.88786,"(40.872112, -73.88786)",EAST BEDFORD PARK BOULEVARD,GRAND CONCOURSE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4487289,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/14/2021,14:09,BRONX,10469,40.871315,-73.860374,"(40.871315, -73.860374)",BURKE AVENUE,RADCLIFF AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487808,Sedan,,,, +12/16/2021,0:50,BROOKLYN,11214,40.600136,-74.00271,"(40.600136, -74.00271)",,,2001 CROPSEY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4487580,Sedan,,,, +12/16/2021,9:52,QUEENS,11413,40.67762,-73.75055,"(40.67762, -73.75055)",135 AVENUE,220 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487302,Sedan,,,, +12/17/2021,15:16,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487410,Taxi,Motorcycle,,, +12/13/2021,14:15,BRONX,10455,40.814934,-73.89765,"(40.814934, -73.89765)",SOUTHERN BOULEVARD,EAST 156 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,13:50,,,40.8122,-73.94226,"(40.8122, -73.94226)",WEST 132 STREET,,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4488017,Pick-up Truck,E-Bike,,, +12/15/2021,18:33,QUEENS,11368,40.750732,-73.87035,"(40.750732, -73.87035)",,,37-39 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486972,Ambulance,Sedan,,, +12/15/2021,0:10,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4486740,Sedan,Taxi,,, +12/15/2021,12:00,QUEENS,11418,40.697998,-73.84043,"(40.697998, -73.84043)",,,108-17 86 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4486744,Sedan,Sedan,Sedan,, +12/15/2021,13:40,MANHATTAN,10009,40.729065,-73.984215,"(40.729065, -73.984215)",,,172 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4486947,Taxi,Station Wagon/Sport Utility Vehicle,Bus,, +12/16/2021,13:47,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",NORTH CONDUIT AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4487129,Tractor Truck Diesel,Sedan,,, +12/15/2021,15:23,QUEENS,11101,40.74504,-73.936195,"(40.74504, -73.936195)",,,30-30 THOMSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/15/2021,8:05,QUEENS,11369,40.759407,-73.85713,"(40.759407, -73.85713)",ASTORIA BOULEVARD,112 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486964,Sedan,,,, +12/13/2021,18:00,BRONX,10475,40.88093,-73.83335,"(40.88093, -73.83335)",,,3412 WRIGHT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487800,Sedan,,,, +12/16/2021,11:37,QUEENS,11357,40.776997,-73.8148,"(40.776997, -73.8148)",WILLETS POINT BOULEVARD,150 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4487147,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/15/2021,14:10,BROOKLYN,11217,40.688835,-73.97694,"(40.688835, -73.97694)",,,28 FORT GREENE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486800,Sedan,,,, +12/14/2021,22:30,BROOKLYN,11236,40.63201,-73.90561,"(40.63201, -73.90561)",AVENUE L,EAST 83 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4487519,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,2:20,BROOKLYN,11226,40.642826,-73.955505,"(40.642826, -73.955505)",CLARENDON ROAD,EAST 23 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4486996,Sedan,Sedan,Sedan,, +12/17/2021,14:17,MANHATTAN,10016,40.74152,-73.98174,"(40.74152, -73.98174)",,,160 EAST 27 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487704,Sedan,Bike,,, +12/16/2021,6:36,QUEENS,11373,40.74499,-73.871544,"(40.74499, -73.871544)",,,42-10 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487173,Sedan,,,, +12/15/2021,8:30,BRONX,10467,40.875225,-73.873535,"(40.875225, -73.873535)",,,3259 PARKSIDE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486686,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,1:50,BROOKLYN,11221,40.6965,-73.9285,"(40.6965, -73.9285)",,,32 CEDAR STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4487322,Sedan,,,, +12/15/2021,6:25,,,40.64472,-73.94121,"(40.64472, -73.94121)",CORTELYOU ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486949,Sedan,,,, +04/18/2021,21:25,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409874,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/06/2021,20:40,,,40.687782,-73.91907,"(40.687782, -73.91907)",BROADWAY,PUTNAM AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487778,Sedan,,,, +12/17/2021,9:30,MANHATTAN,10029,40.793888,-73.94301,"(40.793888, -73.94301)",,,1996 3 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,8:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4487535,Sedan,Bus,,, +12/16/2021,11:38,QUEENS,11691,40.60874,-73.74764,"(40.60874, -73.74764)",CENTRAL AVENUE,BEACH 12 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488004,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,20:20,QUEENS,11432,40.70636,-73.792534,"(40.70636, -73.792534)",168 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487492,Sedan,Sedan,,, +12/15/2021,16:45,STATEN ISLAND,10312,40.546955,-74.18129,"(40.546955, -74.18129)",DRUMGOOLE ROAD WEST,ARDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486988,Sedan,,,, +12/17/2021,13:15,,,40.729446,-74.00518,"(40.729446, -74.00518)",VARICK STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487300,Sedan,Bike,,, +12/17/2021,8:59,MANHATTAN,10010,40.73555,-73.979355,"(40.73555, -73.979355)",1 AVENUE,EAST 21 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487714,Bike,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,18:00,MANHATTAN,10026,,,,morningside avenue,west 113 street,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487015,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,12:00,QUEENS,11354,40.763687,-73.81444,"(40.763687, -73.81444)",150 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487279,Sedan,,,, +12/13/2021,12:00,BROOKLYN,11213,40.67873,-73.932976,"(40.67873, -73.932976)",SCHENECTADY AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487777,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,10:10,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486707,Sedan,Sedan,,, +12/15/2021,12:08,BROOKLYN,11232,40.653854,-74.00817,"(40.653854, -74.00817)",3 AVENUE,39 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4486767,Sedan,Sedan,,, +12/17/2021,17:01,QUEENS,11436,40.685856,-73.79548,"(40.685856, -73.79548)",LINDEN BOULEVARD,148 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4487865,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/15/2021,21:45,BRONX,10453,,,,SEDGWICK AVENUE,HALL OF FAME TERRACE,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,Unspecified,,,4487155,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +12/16/2021,17:00,BRONX,10475,40.882046,-73.83677,"(40.882046, -73.83677)",,,3860 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4487797,Sedan,,,, +12/14/2021,14:00,BROOKLYN,11212,40.661015,-73.90853,"(40.661015, -73.90853)",ROCKAWAY AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487527,Sedan,Box Truck,,, +12/11/2021,20:00,,,40.6709,-73.95319,"(40.6709, -73.95319)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4487737,Sedan,,,, +12/17/2021,12:45,,,40.673027,-73.90576,"(40.673027, -73.90576)",SACKMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487529,Bus,Sedan,,, +12/15/2021,9:44,QUEENS,11101,40.742523,-73.94924,"(40.742523, -73.94924)",49 AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487167,Sedan,Van,,, +12/15/2021,17:37,,,40.75855,-73.82964,"(40.75855, -73.82964)",KISSENA BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486793,Sedan,,,, +12/15/2021,7:00,,,40.747334,-73.73681,"(40.747334, -73.73681)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,10:24,BRONX,10453,40.84685,-73.91295,"(40.84685, -73.91295)",,,1712 JEROME AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487150,Sedan,Pick-up Truck,,, +12/16/2021,12:10,QUEENS,11385,40.709682,-73.89891,"(40.709682, -73.89891)",FRESH POND ROAD,LINDEN STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,Unspecified,,,4487041,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/13/2021,10:21,,,40.668682,-73.75973,"(40.668682, -73.75973)",143 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487464,Sedan,,,, +12/16/2021,14:12,,,,,,GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487123,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/15/2021,13:08,,,40.6686,-73.73676,"(40.6686, -73.73676)",138 AVENUE,BROOKVILLE BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486724,Station Wagon/Sport Utility Vehicle,Bike,,, +12/07/2021,7:00,,,,,,west end ave,west 81 street west 82 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487290,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/14/2021,18:20,,,40.681118,-73.96443,"(40.681118, -73.96443)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:30,QUEENS,11434,40.663036,-73.78103,"(40.663036, -73.78103)",146 AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486819,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,13:25,MANHATTAN,10007,40.715996,-74.0071,"(40.715996, -74.0071)",CHURCH STREET,DUANE STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4487268,Taxi,Bike,,, +12/15/2021,9:00,,,,,,35 AVENUE,CLEARVIEW EXPRESSWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486668,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,23:15,BROOKLYN,11237,40.706062,-73.91626,"(40.706062, -73.91626)",STOCKHOLM STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4487323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,5:20,,,40.824417,-73.87357,"(40.824417, -73.87357)",BRUCKNER BOULEVARD,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487259,Sedan,Sedan,,, +12/15/2021,15:37,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486781,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,0:19,BROOKLYN,11236,40.641727,-73.907646,"(40.641727, -73.907646)",REMSEN AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4487518,Sedan,999,,, +12/14/2021,10:10,BROOKLYN,11207,40.67223,-73.88928,"(40.67223, -73.88928)",,,394 HENDRIX STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487190,Garbage or Refuse,Sedan,,, +12/16/2021,17:10,MANHATTAN,10003,40.726185,-73.98943,"(40.726185, -73.98943)",2 AVENUE,EAST 4 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4487573,Station Wagon/Sport Utility Vehicle,Ambulance,,, +12/16/2021,22:30,MANHATTAN,10028,40.77334,-73.94902,"(40.77334, -73.94902)",EAST 82 STREET,YORK AVENUE,,1,0,1,0,0,0,0,0,,,,,,4487923,E-Bike,,,, +12/16/2021,8:04,BROOKLYN,11234,40.621563,-73.939125,"(40.621563, -73.939125)",EAST 37 STREET,KINGS HIGHWAY,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inexperience,,,,4486938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,19:00,,,,,,BRIGHTON 6 STREET,ATLANTIC OCEAN,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,18:21,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487391,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,15:00,BROOKLYN,11234,40.63057,-73.92712,"(40.63057, -73.92712)",EAST 51 STREET,AVENUE I,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4486773,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,22:15,,,,,,VANCORTLANDT PARK,INTERSTATE ROUTE 87 NORTH,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487350,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,11:55,BRONX,10466,40.890648,-73.84875,"(40.890648, -73.84875)",EAST 233 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4487212,Sedan,Pick-up Truck,,, +12/16/2021,19:17,MANHATTAN,10025,40.799633,-73.9617,"(40.799633, -73.9617)",,,69 WEST 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487096,Station Wagon/Sport Utility Vehicle,,,, +12/05/2021,18:30,BRONX,10451,40.827824,-73.91934,"(40.827824, -73.91934)",EAST 163 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487966,Sedan,Sedan,,, +12/16/2021,9:34,BROOKLYN,11226,40.650387,-73.95872,"(40.650387, -73.95872)",CHURCH AVENUE,FLATBUSH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4487000,Sedan,,,, +12/17/2021,10:58,QUEENS,11385,40.713924,-73.92256,"(40.713924, -73.92256)",,,46-45 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4487729,Sedan,Sedan,,, +12/14/2021,18:00,MANHATTAN,10039,40.82422,-73.9409,"(40.82422, -73.9409)",,,2768 8 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487227,Sedan,Sedan,,, +12/16/2021,17:40,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4487457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/16/2021,2:45,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486840,Sedan,,,, +12/16/2021,8:31,BROOKLYN,11211,40.715153,-73.94535,"(40.715153, -73.94535)",,,143 CONSELYEA STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486962,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,10:00,QUEENS,11432,40.71635,-73.80795,"(40.71635, -73.80795)",,,82-85 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487672,Sedan,,,, +12/15/2021,6:22,MANHATTAN,10032,40.83027,-73.94393,"(40.83027, -73.94393)",WEST 153 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4487836,Ambulance,Bike,,, +12/16/2021,20:48,MANHATTAN,10011,40.74551,-74.00204,"(40.74551, -74.00204)",,,188 9 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487562,Bike,,,, +12/16/2021,8:40,QUEENS,11367,40.73239,-73.81098,"(40.73239, -73.81098)",,,155-20 JEWEL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487008,STREET SWE,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,18:07,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487283,Bus,Sedan,,, +12/15/2021,20:21,MANHATTAN,10012,40.72132,-73.99799,"(40.72132, -73.99799)",,,200 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486980,Sedan,Van,,, +12/15/2021,19:00,MANHATTAN,10001,40.75133,-73.99142,"(40.75133, -73.99142)",,,219 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486882,Bus,Sedan,,, +12/17/2021,17:00,QUEENS,11364,40.744812,-73.74929,"(40.744812, -73.74929)",,,226-21 69 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487690,Sedan,,,, +12/16/2021,7:32,,,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4487063,Bus,,,, +12/16/2021,23:51,,,,,,G.C.P. / C.I.P. (CDR),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4487140,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,21:20,BROOKLYN,11206,40.70386,-73.93838,"(40.70386, -73.93838)",,,370 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487915,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,16:11,,,40.78202,-73.97173,"(40.78202, -73.97173)",WEST 79 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Passenger Distraction,Traffic Control Disregarded,,,,4487296,Sedan,E-Bike,,, +12/15/2021,19:25,BROOKLYN,11206,40.701126,-73.954796,"(40.701126, -73.954796)",,,229 LEE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486834,Bus,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,17:20,QUEENS,11427,40.728294,-73.75037,"(40.728294, -73.75037)",SPENCER AVENUE,215 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487254,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,12:30,BRONX,10458,40.86713,-73.883835,"(40.86713, -73.883835)",,,2870 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4487085,,,,, +11/25/2021,17:45,BROOKLYN,11225,40.657177,-73.94912,"(40.657177, -73.94912)",,,329 WINTHROP STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4487239,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,19:22,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",QUEENS BOULEVARD,57 AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487332,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,23:43,,,40.76213,-73.7295,"(40.76213, -73.7295)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4486824,Sedan,,,, +12/17/2021,17:10,BROOKLYN,11236,40.635136,-73.91388,"(40.635136, -73.91388)",,,7913 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487505,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,6:00,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4486614,Sedan,Sedan,,, +12/16/2021,21:00,QUEENS,11422,40.680424,-73.73401,"(40.680424, -73.73401)",130 AVENUE,233 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487107,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,6:40,,,40.58313,-73.9654,"(40.58313, -73.9654)",BRIGHTON 3 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487789,Sedan,Sedan,,, +12/16/2021,23:00,BROOKLYN,11207,40.65658,-73.88586,"(40.65658, -73.88586)",,,180 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4487195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/16/2021,18:20,MANHATTAN,10032,40.84105,-73.94469,"(40.84105, -73.94469)",WEST 165 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487404,Sedan,Sedan,,, +12/15/2021,8:45,,,40.69985,-73.991035,"(40.69985, -73.991035)",MIDDAGH STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4486754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,16:45,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,20:50,BROOKLYN,11219,40.6335,-73.99565,"(40.6335, -73.99565)",,,1252 53 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486854,Sedan,,,, +12/16/2021,13:23,BROOKLYN,11230,40.616005,-73.97326,"(40.616005, -73.97326)",,,1373 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487578,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,6:45,QUEENS,,40.72013,-73.79038,"(40.72013, -73.79038)",GRAND CENTRAL PARKWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487180,Sedan,Sedan,,, +04/23/2021,17:13,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410006,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,17:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457841,Sedan,Sedan,,, +12/16/2021,12:53,BRONX,10455,40.81376,-73.913826,"(40.81376, -73.913826)",,,530 EAST 148 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487137,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/16/2021,10:55,QUEENS,11104,40.751637,-73.90985,"(40.751637, -73.90985)",WOODSIDE AVENUE,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487047,Sedan,,,, +12/17/2021,1:00,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",OCEAN AVENUE,ALBEMARLE ROAD,,1,0,1,0,0,0,0,0,,,,,,4487554,,,,, +12/17/2021,11:30,,,40.691048,-73.986336,"(40.691048, -73.986336)",FULTON STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487363,Bus,,,, +12/14/2021,7:14,MANHATTAN,10037,40.812813,-73.94181,"(40.812813, -73.94181)",LENOX AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487987,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,18:40,BROOKLYN,11223,40.600243,-73.96454,"(40.600243, -73.96454)",AVENUE T,EAST 7 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487386,Sedan,Box Truck,,, +12/10/2021,20:05,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487599,Sedan,Bike,,, +12/13/2021,3:30,,,40.588966,-73.81145,"(40.588966, -73.81145)",ROCKAWAY FREEWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4487821,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,0:15,BRONX,10461,40.84955,-73.85305,"(40.84955, -73.85305)",MORRIS PARK AVENUE,HAIGHT AVENUE,,0,2,0,0,0,0,0,2,Unsafe Speed,,,,,4487222,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,12:08,BROOKLYN,11236,40.63075,-73.90419,"(40.63075, -73.90419)",,,1289 EAST 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487244,Sedan,,,, +12/11/2021,21:15,STATEN ISLAND,10304,40.59702,-74.09339,"(40.59702, -74.09339)",RICHMOND ROAD,OLD TOWN ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487472,,,,, +12/16/2021,18:30,QUEENS,11358,40.750507,-73.80302,"(40.750507, -73.80302)",PIDGEON MEADOW ROAD,164 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487448,Sedan,Bike,,, +12/17/2021,17:58,,,40.84036,-73.91807,"(40.84036, -73.91807)",WEST 170 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488001,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,16:25,BRONX,10457,40.843853,-73.889465,"(40.843853, -73.889465)",,,1932 PROSPECT AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4486861,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,22:50,BROOKLYN,11214,40.604736,-74.01023,"(40.604736, -74.01023)",,,222 BAY 14 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,Unspecified,,,4487569,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/16/2021,16:00,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487200,Sedan,,,, +12/13/2021,21:52,MANHATTAN,10018,40.758976,-73.99394,"(40.758976, -73.99394)",WEST 42 STREET,DYER AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4487549,E-Bike,Bike,,, +12/16/2021,4:03,,,40.765087,-73.83704,"(40.765087, -73.83704)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486924,Sedan,,,, +12/15/2021,17:16,BRONX,10459,40.82458,-73.89885,"(40.82458, -73.89885)",,,1040 STEBBINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487955,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,10:17,BROOKLYN,11218,40.64439,-73.97158,"(40.64439, -73.97158)",,,2 HINCKLEY PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487057,Station Wagon/Sport Utility Vehicle,,,, +12/05/2021,3:02,BROOKLYN,11221,40.694088,-73.93427,"(40.694088, -73.93427)",STUYVESANT AVENUE,PULASKI STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487758,Sedan,Sedan,,, +12/02/2021,8:10,BROOKLYN,11217,40.68185,-73.98004,"(40.68185, -73.98004)",SAINT MARKS PLACE,4 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4487586,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/15/2021,17:39,BROOKLYN,11212,40.656544,-73.90546,"(40.656544, -73.90546)",HEGEMAN AVENUE,OSBORN STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4486845,Sedan,Bike,,, +12/07/2021,15:45,,,,,,48 STREET,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487372,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,13:10,QUEENS,11385,40.702858,-73.85783,"(40.702858, -73.85783)",,,88-24 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4487722,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/16/2021,10:00,BROOKLYN,11237,40.70153,-73.92314,"(40.70153, -73.92314)",KNICKERBOCKER AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487424,Sedan,,,, +12/15/2021,7:50,BRONX,10460,40.83784,-73.88533,"(40.83784, -73.88533)",,,1812 VYSE AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4486814,,,,, +09/05/2021,18:55,,,,,,Hamilton Ave,W 9 Street,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454319,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,4:17,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4457045,Bike,,,, +09/11/2021,12:00,MANHATTAN,10021,40.7743,-73.965385,"(40.7743, -73.965385)",,,2 EAST 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458006,Sedan,Sedan,,, +09/13/2021,7:00,,,40.830845,-73.947235,"(40.830845, -73.947235)",WEST 152 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4457987,Sedan,,,, +12/16/2021,13:20,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4487102,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,7:45,,,40.828297,-73.95087,"(40.828297, -73.95087)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457988,Sedan,,,, +09/11/2021,13:10,BRONX,10475,40.868748,-73.83172,"(40.868748, -73.83172)",,,356 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458019,Sedan,,,, +08/28/2021,18:00,BRONX,10460,40.844013,-73.88832,"(40.844013, -73.88832)",,,784 EAST TREMONT AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4457999,Sedan,Bike,,, +09/13/2021,9:57,MANHATTAN,10031,0,0,"(0.0, 0.0)",RIVERSIDE DRIVE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4457989,Sedan,,,, +09/09/2021,16:00,BRONX,10475,40.86816,-73.83148,"(40.86816, -73.83148)",,,344 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458015,Sedan,,,, +09/11/2021,23:00,,,40.702713,-73.937325,"(40.702713, -73.937325)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457995,Sedan,,,, +12/06/2021,19:45,MANHATTAN,10027,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,LENOX AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4485504,Sedan,,,, +09/01/2021,13:00,,,40.670116,-73.92248,"(40.670116, -73.92248)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4485683,Sedan,Sedan,,, +12/08/2021,19:15,,,40.83517,-73.8668,"(40.83517, -73.8668)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484794,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,1:10,STATEN ISLAND,10312,40.546707,-74.19913,"(40.546707, -74.19913)",HUGUENOT AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485592,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,13:00,MANHATTAN,10019,40.761612,-73.98453,"(40.761612, -73.98453)",,,218 WEST 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485142,Sedan,E-Scooter,,, +12/08/2021,11:00,QUEENS,11377,40.75056,-73.89644,"(40.75056, -73.89644)",,,69-01 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484679,Sedan,Tow Truck / Wrecker,,, +12/09/2021,15:00,QUEENS,11385,40.69831,-73.90684,"(40.69831, -73.90684)",,,1628 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4485713,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,0:00,,,,,,HORACE HARDING EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4485128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck, +12/08/2021,16:31,BRONX,10460,40.834667,-73.88936,"(40.834667, -73.88936)",,,1564 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484922,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/16/2021,18:14,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487114,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,19:30,,,40.659336,-73.92726,"(40.659336, -73.92726)",REMSEN AVENUE,WINTHROP STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4487592,Sedan,Sedan,,, +03/27/2021,14:30,,,,,,MANHATTAN BR LOWER,,,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4410119,E-Scooter,,,, +12/16/2021,6:39,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4487845,Bus,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,23:44,,,40.851765,-73.94191,"(40.851765, -73.94191)",WEST 181 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4487664,Tractor Truck Diesel,Sedan,Sedan,, +12/15/2021,16:08,BRONX,10460,40.837933,-73.87167,"(40.837933, -73.87167)",MANSION STREET,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486958,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,7:20,BRONX,10473,40.8223,-73.873,"(40.8223, -73.873)",STORY AVENUE,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487032,Sedan,,,, +12/15/2021,10:40,BRONX,10455,40.817574,-73.90359,"(40.817574, -73.90359)",EAST 156 STREET,UNION AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486876,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,19:22,,,40.609642,-73.89738,"(40.609642, -73.89738)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457246,Sedan,Sedan,,, +09/14/2021,0:15,BRONX,10453,40.851048,-73.92155,"(40.851048, -73.92155)",,,1610 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457365,Sedan,Bike,,, +09/14/2021,9:25,QUEENS,11420,40.669384,-73.81447,"(40.669384, -73.81447)",135 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457301,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,20:41,BROOKLYN,11215,40.664165,-73.990555,"(40.664165, -73.990555)",5 AVENUE,PROSPECT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457978,Pick-up Truck,Motorscooter,,, +08/27/2021,16:55,MANHATTAN,10004,40.703598,-74.0144,"(40.703598, -74.0144)",STATE STREET,BRIDGE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457770,Bike,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,16:56,MANHATTAN,10007,40.713055,-74.00723,"(40.713055, -74.00723)",BROADWAY,MURRAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458004,Sedan,Sedan,,, +08/11/2021,10:15,BROOKLYN,11237,40.704823,-73.92459,"(40.704823, -73.92459)",TROUTMAN STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457737,Sedan,Tractor Truck Diesel,,, +09/14/2021,0:02,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,,,,,4456924,Sedan,,,, +09/14/2021,17:33,QUEENS,11101,40.73687,-73.928505,"(40.73687, -73.928505)",38 STREET,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457280,Station Wagon/Sport Utility Vehicle,Van,,, +09/14/2021,11:39,QUEENS,11106,40.7598,-73.936646,"(40.7598, -73.936646)",,,21-04 36 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457463,Sedan,Sedan,,, +09/14/2021,15:30,BROOKLYN,11226,40.654015,-73.95956,"(40.654015, -73.95956)",,,776 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4457319,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/14/2021,9:25,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457620,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,18:14,MANHATTAN,10038,40.710083,-74.00434,"(40.710083, -74.00434)",,,90 GOLD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457820,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,9:33,,,,,,FLATLAND AVENUE,EAST 37 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457879,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,2:10,,,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457004,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,13:40,BROOKLYN,11230,40.611374,-73.962654,"(40.611374, -73.962654)",,,1884 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457326,Sedan,,,, +09/02/2021,11:40,QUEENS,11101,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,51 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457762,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,9:43,MANHATTAN,10010,40.73817,-73.97761,"(40.73817, -73.97761)",EAST 25 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457804,Bus,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,22:00,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457550,Sedan,,,, +09/14/2021,6:45,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4457071,Sedan,Sedan,,, +09/14/2021,9:15,QUEENS,11361,40.766552,-73.77255,"(40.766552, -73.77255)",BELL BOULEVARD,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,8:15,MANHATTAN,10128,40.784515,-73.94983,"(40.784515, -73.94983)",3 AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457375,Bus,Sedan,,, +09/14/2021,4:57,BROOKLYN,11208,40.686935,-73.87323,"(40.686935, -73.87323)",CRESCENT STREET,ETNA STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4457478,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/14/2021,0:01,BROOKLYN,11208,40.67386,-73.88259,"(40.67386, -73.88259)",PITKIN AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4457494,Sedan,Sedan,Sedan,, +09/14/2021,8:00,,,40.795456,-73.96564,"(40.795456, -73.96564)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457188,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,7:15,BROOKLYN,11233,40.67655,-73.91465,"(40.67655, -73.91465)",ATLANTIC AVENUE,RADDE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,13:40,,,40.833767,-73.87738,"(40.833767, -73.87738)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4457847,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,17:00,BRONX,10456,40.834515,-73.91771,"(40.834515, -73.91771)",GRAND CONCOURSE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457868,Sedan,Bus,,, +09/14/2021,15:30,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4457913,Sedan,Sedan,Sedan,Sedan, +09/14/2021,11:20,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457153,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,2:00,,,,,,PROSPECT PARK WEST,PRITCHARD SQUARE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,13:30,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",EAST 120 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457782,Sedan,,,, +09/14/2021,13:55,QUEENS,11101,40.7467,-73.93128,"(40.7467, -73.93128)",33 STREET,SKILLMAN AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457209,Sedan,E-Bike,,, +09/14/2021,5:47,,,40.57278,-74.138145,"(40.57278, -74.138145)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4457086,Sedan,,,, +09/14/2021,17:15,,,40.678303,-73.87289,"(40.678303, -73.87289)",EUCLID AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457489,Sedan,Sedan,,, +09/14/2021,9:22,BRONX,10451,40.81572,-73.925064,"(40.81572, -73.925064)",EAST 144 STREET,RIDER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457314,Sedan,Bike,,, +09/14/2021,9:00,QUEENS,11355,40.75472,-73.81704,"(40.75472, -73.81704)",45 AVENUE,BURLING STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457332,Sedan,,,, +09/14/2021,7:00,BRONX,10467,40.874756,-73.87387,"(40.874756, -73.87387)",EAST 207 STREET,PARKSIDE PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457525,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,12:40,MANHATTAN,10011,40.743446,-74.00355,"(40.743446, -74.00355)",9 AVENUE,WEST 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,17:30,,,40.683132,-73.88259,"(40.683132, -73.88259)",RIDGEWOOD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457498,Sedan,,,, +09/14/2021,8:38,,,40.780857,-73.960915,"(40.780857, -73.960915)",TRANSVERSE ROAD NUMBER THREE,5 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4457116,Bike,,,, +09/14/2021,9:57,,,40.660442,-73.95688,"(40.660442, -73.95688)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4457200,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,15:30,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",UNION AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457290,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,4:52,BRONX,10461,40.853664,-73.83381,"(40.853664, -73.83381)",,,2062 MAYFLOWER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457839,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,23:45,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4457949,Sedan,Taxi,,, +09/14/2021,23:30,,,40.68085,-73.79907,"(40.68085, -73.79907)",143 STREET,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4457401,Sedan,Sedan,Sedan,, +09/14/2021,16:59,MANHATTAN,10029,40.78744,-73.94478,"(40.78744, -73.94478)",EAST 101 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457720,Sedan,Sedan,,, +09/12/2021,23:00,BRONX,10474,,,,,,407 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457848,Sedan,Sedan,,, +09/14/2021,13:30,,,40.785786,-73.978546,"(40.785786, -73.978546)",BROADWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4457222,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,1:28,,,40.79599,-73.96896,"(40.79599, -73.96896)",AMSTERDAM AVENUE,,,1,1,0,0,1,1,0,0,Unspecified,,,,,4457900,E-Bike,,,, +09/14/2021,17:25,QUEENS,11412,40.690918,-73.7623,"(40.690918, -73.7623)",BAISLEY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457265,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,21:40,MANHATTAN,10003,40.73529,-73.98782,"(40.73529, -73.98782)",EAST 16 STREET,IRVING PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4457787,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,0:24,BROOKLYN,11220,40.643005,-74.00533,"(40.643005, -74.00533)",49 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457135,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,16:50,,,40.73677,-73.80475,"(40.73677, -73.80475)",65 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4457606,Sedan,Sedan,,, +09/14/2021,16:30,,,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457448,Sedan,Bus,,, +09/14/2021,16:35,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457483,Sedan,Bus,,, +04/23/2021,23:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410207,Sedan,Tractor Truck Diesel,,, +09/14/2021,17:50,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4457924,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,17:28,BROOKLYN,11212,40.654457,-73.90878,"(40.654457, -73.90878)",LINDEN BOULEVARD,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457571,Sedan,Sedan,,, +09/14/2021,0:05,MANHATTAN,10035,40.7966,-73.929,"(40.7966, -73.929)",,,60 PALADINO AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457776,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,13:20,BROOKLYN,11223,40.60799,-73.97173,"(40.60799, -73.97173)",,,1703 EAST 2 STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4457307,Sedan,Sedan,,, +09/14/2021,8:10,,,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4457744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,8:16,BROOKLYN,11219,40.636932,-73.99982,"(40.636932, -73.99982)",52 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457327,Station Wagon/Sport Utility Vehicle,Bus,,, +09/14/2021,9:40,BROOKLYN,11238,40.683723,-73.96797,"(40.683723, -73.96797)",FULTON STREET,VANDERBILT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457274,Sedan,Motorcycle,,, +09/14/2021,18:00,BRONX,10461,40.85543,-73.855354,"(40.85543, -73.855354)",WILLIAMSBRIDGE ROAD,LYDIG AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4457387,Sedan,Sedan,,, +09/14/2021,16:40,MANHATTAN,10018,40.75892,-73.999695,"(40.75892, -73.999695)",WEST 39 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4457826,Sedan,Box Truck,Sedan,, +09/14/2021,14:30,BROOKLYN,11215,40.668293,-73.97924,"(40.668293, -73.97924)",,,506 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passenger Distraction,,,,4457228,Ambulance,Sedan,,, +09/14/2021,14:45,,,40.721375,-73.7903,"(40.721375, -73.7903)",UTOPIA PARKWAY,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457640,Station Wagon/Sport Utility Vehicle,Bike,,, +09/01/2021,8:00,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:00,,,40.607002,-73.988556,"(40.607002, -73.988556)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457346,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,22:53,QUEENS,11101,40.749676,-73.94372,"(40.749676, -73.94372)",43 AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457281,Sedan,Sedan,,, +09/14/2021,17:50,MANHATTAN,10019,40.769634,-73.98578,"(40.769634, -73.98578)",,,428 WEST 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,16:27,BROOKLYN,11226,40.648567,-73.95765,"(40.648567, -73.95765)",,,15 SNYDER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457321,Sedan,Bus,,, +09/13/2021,17:30,,,40.658253,-73.98465,"(40.658253, -73.98465)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457752,Sedan,Sedan,,, +09/14/2021,0:50,QUEENS,11361,,,,corporal kennedy street,35 avenue,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4456929,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,9:06,MANHATTAN,10032,40.833378,-73.94328,"(40.833378, -73.94328)",,,540 WEST 157 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457795,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,1:25,MANHATTAN,10014,40.731064,-74.00801,"(40.731064, -74.00801)",GREENWICH STREET,MORTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,16:37,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4457257,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/14/2021,5:00,MANHATTAN,10012,40.723022,-73.99882,"(40.723022, -73.99882)",BROADWAY,SPRING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457564,Sedan,,,, +09/14/2021,15:04,BRONX,10474,40.815247,-73.886566,"(40.815247, -73.886566)",,,724 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457876,Sedan,Sedan,,, +08/10/2021,17:07,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457852,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,11:30,QUEENS,11377,40.75544,-73.907104,"(40.75544, -73.907104)",32 AVENUE,54 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457736,Sedan,E-Bike,,, +09/14/2021,6:15,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Failure to Yield Right-of-Way,,,,4457055,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,11:20,,,40.62715,-74.16544,"(40.62715, -74.16544)",FOREST AVENUE,GRANDVIEW AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inexperience,,,,4457769,Sedan,Sedan,,, +09/14/2021,18:05,BROOKLYN,11215,40.671734,-73.990814,"(40.671734, -73.990814)",,,454 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457227,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,18:05,BROOKLYN,11226,40.64664,-73.95553,"(40.64664, -73.95553)",,,2225 TILDEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457322,Sedan,,,, +08/23/2021,1:15,BROOKLYN,11224,40.57698,-73.981575,"(40.57698, -73.981575)",MERMAID AVENUE,STILLWELL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457805,Sedan,Bike,,, +09/14/2021,15:29,,,,,,PARK AVENUE,NAVY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457275,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,10:57,STATEN ISLAND,10305,40.595375,-74.06971,"(40.595375, -74.06971)",SAND LANE,HUMBERT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457545,Sedan,Sedan,,, +09/14/2021,15:00,QUEENS,11423,40.720413,-73.76095,"(40.720413, -73.76095)",,,204-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457634,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,22:00,QUEENS,11414,40.669556,-73.84634,"(40.669556, -73.84634)",SOUTH CONDUIT AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457302,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,0:00,BRONX,10459,40.822144,-73.89491,"(40.822144, -73.89491)",,,975 TIFFANY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457871,Bike,,,, +09/04/2021,2:10,MANHATTAN,10016,40.742107,-73.98075,"(40.742107, -73.98075)",,,397 3 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457786,E-Bike,Sedan,,, +09/14/2021,1:35,,,40.64934,-73.94264,"(40.64934, -73.94264)",SNYDER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457132,,,,, +09/14/2021,6:30,BROOKLYN,11222,40.726547,-73.94838,"(40.726547, -73.94838)",NEWEL STREET,NORMAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457169,Station Wagon/Sport Utility Vehicle,Moped,,, +09/14/2021,17:57,BRONX,10468,40.867676,-73.89855,"(40.867676, -73.89855)",DAVIDSON AVENUE,WEST KINGSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4457429,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,14:45,,,40.735313,-73.994125,"(40.735313, -73.994125)",EAST 13 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457861,Sedan,Bike,,, +09/14/2021,11:00,,,40.72522,-73.894745,"(40.72522, -73.894745)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4457251,Sedan,Sedan,,, +09/14/2021,14:30,BRONX,10462,,,,,,2180 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457502,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,18:00,,,40.706142,-74.00603,"(40.706142, -74.00603)",WATER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457819,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,8:15,,,40.631542,-74.14891,"(40.631542, -74.14891)",WALKER STREET,GRANITE AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4457119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,11:10,BRONX,10458,40.858376,-73.89637,"(40.858376, -73.89637)",EAST 184 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457359,Sedan,,,, +09/14/2021,10:48,BRONX,10456,40.82854,-73.90964,"(40.82854, -73.90964)",,,438 EAST 166 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457451,Sedan,UNK,,, +09/14/2021,11:30,MANHATTAN,10019,40.76605,-73.9973,"(40.76605, -73.9973)",,,660 12 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457143,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,23:00,BROOKLYN,11206,40.701424,-73.94307,"(40.701424, -73.94307)",BROADWAY,THORNTON STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457289,Motorcycle,Sedan,,, +09/14/2021,7:30,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",EAST 168 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457726,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,16:30,MANHATTAN,10035,40.804085,-73.93672,"(40.804085, -73.93672)",,,165 EAST 125 STREET,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4457775,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,6:50,QUEENS,11435,40.694965,-73.80835,"(40.694965, -73.80835)",101 AVENUE,BRISBIN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4457535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:24,,,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457232,Sedan,E-Bike,,, +09/14/2021,12:41,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457297,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,13:16,MANHATTAN,10002,,,,,,174 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457968,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,18:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457947,Bus,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,13:00,,,,,,WEST 123 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487207,Sedan,,,, +04/19/2021,19:33,,,40.655754,-73.92403,"(40.655754, -73.92403)",EAST 57 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4410355,Sedan,,,, +09/14/2021,23:10,BROOKLYN,11234,40.614166,-73.92886,"(40.614166, -73.92886)",FILLMORE AVENUE,HENDRICKSON STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457651,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,10:35,QUEENS,11368,,,,,,96-05 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457901,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,21:30,,,40.588955,-74.167595,"(40.588955, -74.167595)",RICHMOND AVENUE,RICHMOND HILL ROAD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4457421,Sedan,Sedan,,, +09/14/2021,5:20,,,,,,LINDEN PLACE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457069,Sedan,Dump,,, +09/14/2021,15:50,BROOKLYN,11207,40.66725,-73.88799,"(40.66725, -73.88799)",HENDRIX STREET,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,View Obstructed/Limited,,,,4457497,Sedan,Sedan,,, +09/14/2021,10:40,QUEENS,11377,40.752155,-73.89995,"(40.752155, -73.89995)",62 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,19:48,QUEENS,11106,40.76354,-73.93332,"(40.76354, -73.93332)",,,33-56 21 STREET,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inattention/Distraction,,,,4457462,Sedan,Motorcycle,,, +09/14/2021,17:00,BRONX,10457,40.85179,-73.90279,"(40.85179, -73.90279)",EAST BURNSIDE AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457372,Sedan,,,, +09/14/2021,11:50,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4457311,Sedan,Sedan,Sedan,, +09/09/2021,10:35,,,40.71843,-74.000534,"(40.71843, -74.000534)",CANAL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457967,Sedan,Dump,,, +09/13/2021,12:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457781,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,12:45,QUEENS,11691,40.601402,-73.7596,"(40.601402, -73.7596)",,,622 GIPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457331,Sedan,,,, +09/14/2021,7:40,MANHATTAN,10029,40.789623,-73.94007,"(40.789623, -73.94007)",EAST 106 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4457710,Sedan,Sedan,,, +09/14/2021,0:00,QUEENS,11434,40.687046,-73.792114,"(40.687046, -73.792114)",LINDEN BOULEVARD,155 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,17:00,BROOKLYN,11220,40.647102,-74.007614,"(40.647102, -74.007614)",,,504 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457511,Sedan,,,, +09/14/2021,0:00,QUEENS,11365,40.734196,-73.78355,"(40.734196, -73.78355)",,,69-62 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457579,Sedan,,,, +09/14/2021,21:20,BROOKLYN,11206,40.707653,-73.93984,"(40.707653, -73.93984)",BUSHWICK AVENUE,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,3:15,BROOKLYN,11207,40.674355,-73.8882,"(40.674355, -73.8882)",,,599 GLENMORE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4457477,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/14/2021,0:00,,,40.5873,-74.09369,"(40.5873, -74.09369)",SEAVIEW AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457084,Sedan,AMBULANCE,,, +09/14/2021,8:30,BROOKLYN,11204,40.621994,-73.99493,"(40.621994, -73.99493)",65 STREET,16 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4457343,,,,, +09/14/2021,14:30,BRONX,10459,40.816193,-73.895996,"(40.816193, -73.895996)",,,1035 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457185,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,18:02,MANHATTAN,10036,40.76428,-73.99859,"(40.76428, -73.99859)",12 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457349,Sedan,Sedan,,, +12/17/2021,17:02,BRONX,10469,40.86544,-73.85579,"(40.86544, -73.85579)",LACONIA AVENUE,ALLERTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487345,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,19:37,BROOKLYN,11207,40.687527,-73.91227,"(40.687527, -73.91227)",,,94 ELDERT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457340,Sedan,,,, +09/10/2021,21:08,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457740,Station Wagon/Sport Utility Vehicle,Motorbike,,, +09/14/2021,13:34,QUEENS,11417,40.680634,-73.84297,"(40.680634, -73.84297)",,,96-05 LIBERTY AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4457305,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,9:00,MANHATTAN,10011,40.74347,-74.00724,"(40.74347, -74.00724)",10 AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457755,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,0:05,BROOKLYN,11234,40.599163,-73.91084,"(40.599163, -73.91084)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456932,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,8:15,,,,,,JAY STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487699,E-Scooter,,,, +09/14/2021,15:07,BRONX,10467,40.875,-73.87471,"(40.875, -73.87471)",EAST 207 STREET,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457796,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,6:30,QUEENS,11378,40.72861,-73.88721,"(40.72861, -73.88721)",57 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457563,Bus,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,17:49,MANHATTAN,10014,40.737545,-74.00484,"(40.737545, -74.00484)",8 AVENUE,WEST 12 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457886,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,18:29,MANHATTAN,10011,40.73656,-74.0011,"(40.73656, -74.0011)",7 AVENUE SOUTH,GREENWICH AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457862,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,15:30,BRONX,10460,40.83466,-73.89151,"(40.83466, -73.89151)",EAST 172 STREET,SEABURY PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457454,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,10:00,QUEENS,11411,40.700905,-73.73049,"(40.700905, -73.73049)",227 STREET,114 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457142,Sedan,,,, +09/14/2021,12:20,MANHATTAN,10007,40.713135,-74.00407,"(40.713135, -74.00407)",CHAMBERS STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457144,Pick-up Truck,Sedan,,, +09/14/2021,22:25,BRONX,10461,40.85278,-73.853294,"(40.85278, -73.853294)",,,1916 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457388,Sedan,,,, +09/11/2021,20:00,BROOKLYN,11238,40.68122,-73.96038,"(40.68122, -73.96038)",,,73 LEFFERTS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457793,Sedan,,,, +09/14/2021,13:15,STATEN ISLAND,10310,40.63367,-74.12945,"(40.63367, -74.12945)",JEWETT AVENUE,CASTLETON AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4457199,Station Wagon/Sport Utility Vehicle,Bus,,, +09/14/2021,15:38,,,40.865383,-73.89348,"(40.865383, -73.89348)",VALENTINE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457431,Sedan,Sedan,,, +09/14/2021,0:00,MANHATTAN,10009,40.724884,-73.978264,"(40.724884, -73.978264)",,,130 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,,,,,4457825,Sedan,,,, +09/14/2021,14:45,BROOKLYN,11217,40.67898,-73.9765,"(40.67898, -73.9765)",,,62 PARK PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457231,Bus,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,19:40,BROOKLYN,11207,40.682316,-73.88814,"(40.682316, -73.88814)",WARWICK STREET,RIDGEWOOD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4457484,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,0:14,MANHATTAN,10011,40.738552,-73.99969,"(40.738552, -73.99969)",WEST 14 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457860,Taxi,Bike,,, +09/14/2021,9:05,,,40.591988,-73.97665,"(40.591988, -73.97665)",AVENUE W,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4457105,Bus,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:48,STATEN ISLAND,10309,40.535656,-74.20813,"(40.535656, -74.20813)",LENEVAR AVENUE,RAMONA AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4457389,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,7:13,,,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457480,Box Truck,Box Truck,,, +09/14/2021,22:45,BROOKLYN,11208,40.682186,-73.86982,"(40.682186, -73.86982)",ATLANTIC AVENUE,AUTUMN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457500,Sedan,,,, +09/14/2021,8:52,,,40.607582,-74.14083,"(40.607582, -74.14083)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4457123,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +09/14/2021,8:30,BROOKLYN,11205,40.694263,-73.95235,"(40.694263, -73.95235)",VERNON AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457198,Sedan,Flat Bed,,, +09/07/2021,11:42,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457842,Sedan,,,, +08/22/2021,21:00,BRONX,10459,40.818913,-73.893555,"(40.818913, -73.893555)",,,887 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457851,Sedan,,,, +09/14/2021,14:45,MANHATTAN,10017,40.751747,-73.97081,"(40.751747, -73.97081)",EAST 45 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457224,Bus,Bus,,, +09/14/2021,9:44,BROOKLYN,11204,40.628994,-73.98364,"(40.628994, -73.98364)",50 STREET,17 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457324,,,,, +09/12/2021,13:39,,,40.615364,-73.94575,"(40.615364, -73.94575)",KINGS HIGHWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4457829,Sedan,Sedan,Sedan,Sedan, +09/14/2021,20:47,,,40.707928,-73.78383,"(40.707928, -73.78383)",177 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4457557,Sedan,,,, +09/14/2021,12:09,MANHATTAN,10003,40.738308,-73.98954,"(40.738308, -73.98954)",,,29 EAST 19 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4457784,Sedan,E-Bike,,, +04/04/2021,23:00,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4404486,Sedan,Sedan,,, +04/12/2021,7:45,BROOKLYN,11203,40.641586,-73.92548,"(40.641586, -73.92548)",KINGS HIGHWAY,JODIE COURT,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407271,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,11:30,STATEN ISLAND,10306,40.586544,-74.10314,"(40.586544, -74.10314)",,,21 SEAVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410555,Sedan,,,, +04/20/2021,9:00,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4410568,Sedan,,,, +04/23/2021,14:30,,,,,,VERRAZANO BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410567,Sedan,Sedan,,, +04/23/2021,16:00,STATEN ISLAND,10308,40.555824,-74.16103,"(40.555824, -74.16103)",ARMSTRONG AVENUE,LEVERETT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410564,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2021,22:30,,,40.669243,-73.80129,"(40.669243, -73.80129)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410560,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,8:08,,,40.636387,-73.94611,"(40.636387, -73.94611)",FARRAGUT ROAD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4457130,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/14/2021,14:30,QUEENS,11429,40.712116,-73.73118,"(40.712116, -73.73118)",HEMPSTEAD AVENUE,223 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457252,Tractor Truck Diesel,Sedan,,, +09/14/2021,5:15,QUEENS,11419,40.69405,-73.82802,"(40.69405, -73.82802)",ATLANTIC AVENUE,LEFFERTS BOULEVARD,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4457078,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,15:25,,,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4457211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:31,MANHATTAN,10033,40.85206,-73.934784,"(40.85206, -73.934784)",WEST 184 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:30,,,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4457378,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,15:13,BRONX,10472,40.834774,-73.86944,"(40.834774, -73.86944)",,,1750 EAST 174 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457204,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,20:30,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4457739,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,17:12,BROOKLYN,11234,40.651707,-73.86579,"(40.651707, -73.86579)",ERSKINE STREET,SHORE PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,,,,,4457485,Bike,,,, +09/14/2021,7:15,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457276,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/14/2021,21:37,BROOKLYN,11212,40.667095,-73.92276,"(40.667095, -73.92276)",RALPH AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4457426,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,13:00,BROOKLYN,11208,40.67637,-73.88323,"(40.67637, -73.88323)",LINWOOD STREET,LIBERTY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4457496,Sedan,Sedan,,, +09/14/2021,8:48,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457469,Sedan,Box Truck,,, +09/14/2021,17:00,QUEENS,11375,40.72165,-73.84121,"(40.72165, -73.84121)",71 ROAD,110 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457317,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/14/2021,16:15,,,40.652946,-74.002174,"(40.652946, -74.002174)",36 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,11:30,,,40.69782,-73.927826,"(40.69782, -73.927826)",HART STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4457812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,21:50,BROOKLYN,11201,0,0,"(0.0, 0.0)",COURT STREET,LIVINGSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457268,Sedan,,,, +09/14/2021,23:57,QUEENS,11368,40.74788,-73.85731,"(40.74788, -73.85731)",108 STREET,45 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457727,Bike,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:05,BROOKLYN,11231,40.679043,-73.995674,"(40.679043, -73.995674)",SMITH STREET,2 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457263,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,8:40,,,,,,LITTLE NECK PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457056,Sedan,Sedan,,, +09/14/2021,22:00,BRONX,10462,40.854465,-73.86656,"(40.854465, -73.86656)",,,724 LYDIG AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4457757,Sedan,Garbage or Refuse,,, +09/09/2021,13:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4457903,Van,Sedan,,, +04/19/2021,13:30,,,40.693203,-73.953995,"(40.693203, -73.953995)",WALWORTH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410159,Van,,,, +04/21/2021,17:15,BROOKLYN,11217,40.68342,-73.982,"(40.68342, -73.982)",BERGEN STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409329,Sedan,Tractor Truck Diesel,,, +04/16/2021,13:00,BROOKLYN,11237,40.712963,-73.92761,"(40.712963, -73.92761)",MEADOW STREET,STEWART AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4410517,Carry All,,,, +04/14/2021,14:31,,,,,,SHELL ROAD,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410133,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/18/2021,14:50,QUEENS,11432,40.7052,-73.795586,"(40.7052, -73.795586)",,,164-09 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4409779,Sedan,,,, +04/21/2021,11:15,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409430,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,16:45,,,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487425,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,17:47,,,,,,SHORE PARKWAY,KNAPP STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409380,Sedan,Sedan,,, +04/23/2021,19:43,,,40.80297,-73.96387,"(40.80297, -73.96387)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409893,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,14:50,QUEENS,11385,40.705418,-73.8607,"(40.705418, -73.8607)",88 STREET,79 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409761,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,17:20,BRONX,10467,40.865467,-73.86541,"(40.865467, -73.86541)",ALLERTON AVENUE,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409747,Sedan,,,, +04/22/2021,10:00,BRONX,10456,40.827198,-73.907036,"(40.827198, -73.907036)",,,1064 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410130,Sedan,,,, +04/22/2021,13:30,,,40.698143,-73.98555,"(40.698143, -73.98555)",FLATBUSH AVENUE EXTENSION,CONCORD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4409655,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,22:30,QUEENS,11385,40.703377,-73.86343,"(40.703377, -73.86343)",MYRTLE AVENUE,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409941,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,14:40,BROOKLYN,11207,40.65114,-73.89,"(40.65114, -73.89)",FLATLANDS AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409882,Sedan,Sedan,,, +04/22/2021,17:19,QUEENS,11372,40.749878,-73.88314,"(40.749878, -73.88314)",,,83-19 37 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409632,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,2:06,,,40.74886,-73.93755,"(40.74886, -73.93755)",QUEENS PLAZA SOUTH,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409025,Sedan,,,, +04/01/2021,17:35,,,40.828316,-73.93118,"(40.828316, -73.93118)",MAJOR DEEGAN EXPRESSWAY,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,8:55,BROOKLYN,11233,40.680725,-73.926605,"(40.680725, -73.926605)",,,180 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410190,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,13:50,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,UNION AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4409365,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:26,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4409895,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,13:33,QUEENS,11385,40.709904,-73.90757,"(40.709904, -73.90757)",,,2108 GREENE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4409766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,1:00,BROOKLYN,11225,40.669937,-73.95901,"(40.669937, -73.95901)",,,1035 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409822,Sedan,,,, +04/22/2021,6:03,,,40.688786,-73.98358,"(40.688786, -73.98358)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,15:06,QUEENS,11411,40.69787,-73.743034,"(40.69787, -73.743034)",SPRINGFIELD BOULEVARD,116 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4409949,Sedan,Sedan,,, +04/23/2021,16:47,BROOKLYN,11229,40.614788,-73.94658,"(40.614788, -73.94658)",EAST 28 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410068,Ambulance,Sedan,,, +04/22/2021,11:00,BROOKLYN,11234,40.621685,-73.91199,"(40.621685, -73.91199)",,,1444 EAST 69 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410397,Garbage or Refuse,Sedan,,, +12/16/2021,1:45,BRONX,10469,40.86356,-73.843414,"(40.86356, -73.843414)",EASTCHESTER ROAD,FIELDING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486910,Sedan,,,, +04/21/2021,22:47,BROOKLYN,11211,40.711716,-73.94305,"(40.711716, -73.94305)",,,750 GRAND STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,20:07,BROOKLYN,11216,40.679634,-73.94959,"(40.679634, -73.94959)",HERKIMER STREET,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410217,Sedan,,,, +04/16/2021,11:45,BROOKLYN,11213,40.677048,-73.9387,"(40.677048, -73.9387)",ALBANY AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410326,Station Wagon/Sport Utility Vehicle,Beverage Truck,,, +04/22/2021,10:20,BRONX,10461,40.857365,-73.84657,"(40.857365, -73.84657)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409596,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,19:07,QUEENS,11435,40.704483,-73.81419,"(40.704483, -73.81419)",,,139-29 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4409688,Sedan,Sedan,Sedan,Sedan, +04/22/2021,21:10,,,40.82371,-73.879,"(40.82371, -73.879)",WHEELER AVENUE,BRUCKNER BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4409722,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,12:37,QUEENS,11378,40.725388,-73.90884,"(40.725388, -73.90884)",59 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410345,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,20:05,MANHATTAN,10036,40.755352,-73.98374,"(40.755352, -73.98374)",,,1114 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485716,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,19:15,BROOKLYN,11209,40.61651,-74.02666,"(40.61651, -74.02666)",92 STREET,GATLING PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,16:47,,,,,,SHERIDAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409406,Sedan,PK,,, +04/22/2021,20:00,,,40.66615,-73.80575,"(40.66615, -73.80575)",134 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4409653,Sedan,Sedan,Sedan,, +04/23/2021,6:30,BRONX,10460,40.83998,-73.87715,"(40.83998, -73.87715)",,,1101 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409793,Taxi,Sedan,,, +04/23/2021,17:13,QUEENS,11413,40.666405,-73.74661,"(40.666405, -73.74661)",,,227-15 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409854,Motorcycle,Sedan,,, +04/19/2021,9:40,,,40.671085,-73.736275,"(40.671085, -73.736275)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4410176,Sedan,,,, +03/29/2021,20:05,QUEENS,11385,40.702446,-73.90099,"(40.702446, -73.90099)",FOREST AVENUE,CATALPA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409934,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,18:10,QUEENS,11101,40.753998,-73.94244,"(40.753998, -73.94244)",41 AVENUE,21 STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,,,,,4410113,E-Bike,,,, +04/22/2021,23:05,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4409679,Sedan,Sedan,Taxi,, +04/23/2021,18:38,BRONX,10466,,,,EAST 224 STREET,SCHIEFELIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410205,Sedan,Sedan,,, +04/21/2021,9:00,BROOKLYN,11239,40.65136,-73.86971,"(40.65136, -73.86971)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409554,Station Wagon/Sport Utility Vehicle,Bus,,, +04/23/2021,13:16,BRONX,10456,40.83501,-73.90353,"(40.83501, -73.90353)",EAST 170 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410092,Sedan,Pick-up Truck,,, +04/21/2021,1:57,,,40.84062,-73.85409,"(40.84062, -73.85409)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409115,Station Wagon/Sport Utility Vehicle,POWER SHOV,,, +04/18/2021,14:19,QUEENS,11423,40.709778,-73.76607,"(40.709778, -73.76607)",,,99-16 193 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4409799,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,21:02,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4409798,Sedan,,,, +04/21/2021,17:00,,,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409302,Sedan,Sedan,,, +04/21/2021,7:25,,,40.56015,-74.19968,"(40.56015, -74.19968)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409964,Tractor Truck Diesel,Sedan,,, +04/22/2021,9:07,BROOKLYN,11232,40.651543,-74.017975,"(40.651543, -74.017975)",48 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409996,Sedan,,,, +04/23/2021,16:40,,,40.876976,-73.88966,"(40.876976, -73.88966)",WEST 205 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409920,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,17:20,BRONX,10454,40.811478,-73.91694,"(40.811478, -73.91694)",,,400 BROOK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410481,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,21:55,BROOKLYN,11212,40.656273,-73.90731,"(40.656273, -73.90731)",ROCKAWAY AVENUE,HEGEMAN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409436,Sedan,E-Scooter,,, +04/23/2021,15:15,MANHATTAN,10010,40.741333,-73.98975,"(40.741333, -73.98975)",,,184 5 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410286,Box Truck,Sedan,,, +04/23/2021,0:45,BROOKLYN,11206,40.702984,-73.94586,"(40.702984, -73.94586)",BROADWAY,LEONARD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409886,Sedan,,,, +04/19/2021,0:15,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,EDSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410532,Sedan,,,, +04/23/2021,18:15,,,40.662178,-73.85025,"(40.662178, -73.85025)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410237,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,10:00,QUEENS,11434,40.684982,-73.79062,"(40.684982, -73.79062)",155 STREET,115 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409754,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,12:51,QUEENS,11412,40.705917,-73.752365,"(40.705917, -73.752365)",205 STREET,110 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4457173,Bus,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/21/2021,5:50,QUEENS,11413,40.682514,-73.75665,"(40.682514, -73.75665)",GRAYSON STREET,NASHVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409464,Sedan,Sedan,Sedan,, +04/19/2021,8:00,,,40.691895,-73.93384,"(40.691895, -73.93384)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410195,Sedan,,,, +04/21/2021,6:45,,,40.756474,-73.94727,"(40.756474, -73.94727)",VERNON BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409509,Bike,Pick-up Truck,,, +04/11/2021,16:45,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409818,Sedan,Sedan,,, +04/22/2021,0:05,MANHATTAN,10030,40.815903,-73.94515,"(40.815903, -73.94515)",,,250 WEST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,13:40,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409252,Sedan,Tractor Truck Diesel,,, +04/22/2021,14:00,,,40.600895,-74.176735,"(40.600895, -74.176735)",,,3575 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410431,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,21:43,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410272,Sedan,Sedan,,, +04/23/2021,18:00,QUEENS,11435,40.70003,-73.81279,"(40.70003, -73.81279)",91 AVENUE,138 PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409831,,,,, +04/21/2021,0:55,QUEENS,11419,40.692135,-73.83485,"(40.692135, -73.83485)",ATLANTIC AVENUE,111 STREET,,3,1,0,0,0,0,3,1,Alcohol Involvement,Unspecified,Unspecified,,,4409176,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/21/2021,12:00,,,40.83511,-73.91945,"(40.83511, -73.91945)",EAST 167 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409702,Sedan,Sedan,Sedan,, +04/22/2021,19:01,MANHATTAN,10021,40.76781,-73.96202,"(40.76781, -73.96202)",EAST 69 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409715,Sedan,Sedan,,, +04/18/2021,17:27,QUEENS,11412,40.695026,-73.75643,"(40.695026, -73.75643)",116 AVENUE,196 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409734,Sedan,Sedan,,, +04/22/2021,18:00,MANHATTAN,10001,40.747894,-73.989174,"(40.747894, -73.989174)",AVENUE OF THE AMERICAS,WEST 31 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4410046,Bike,Bike,,, +04/22/2021,17:40,BROOKLYN,11203,40.651936,-73.9294,"(40.651936, -73.9294)",CHURCH AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409850,Sedan,Sedan,,, +04/21/2021,13:00,BRONX,10451,40.81738,-73.9257,"(40.81738, -73.9257)",,,2824 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409233,Ambulance,Sedan,,, +04/21/2021,11:05,MANHATTAN,10025,40.79283,-73.96954,"(40.79283, -73.96954)",,,155 WEST 95 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4409179,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:36,BRONX,10457,40.843555,-73.90573,"(40.843555, -73.90573)",,,330 EAST 173 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410171,Sedan,Sedan,,, +04/22/2021,20:30,,,40.596672,-73.989716,"(40.596672, -73.989716)",BAY 38 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409664,Sedan,Sedan,,, +04/23/2021,9:30,QUEENS,11413,40.68642,-73.75115,"(40.68642, -73.75115)",NASHVILLE BOULEVARD,197 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409803,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,14:35,,,40.685276,-73.77241,"(40.685276, -73.77241)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4409275,Sedan,Sedan,Sedan,Sedan, +04/16/2021,18:00,,,,,,GRAND CENTRAL PARKWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,5:45,,,40.696087,-73.97533,"(40.696087, -73.97533)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409147,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,16:30,BROOKLYN,11218,40.63405,-73.97776,"(40.63405, -73.97776)",,,825 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410051,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,9:45,,,40.74468,-73.987305,"(40.74468, -73.987305)",EAST 28 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409530,Sedan,,,, +04/19/2021,8:00,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:48,BROOKLYN,11222,40.72624,-73.93795,"(40.72624, -73.93795)",NASSAU AVENUE,APOLLO STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410442,Sedan,Sedan,,, +04/23/2021,10:45,BROOKLYN,11214,40.599495,-73.997604,"(40.599495, -73.997604)",,,151 BAY 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,23:55,QUEENS,11422,40.65501,-73.72964,"(40.65501, -73.72964)",259 STREET,148 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409924,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,1:10,BRONX,10454,40.805557,-73.91047,"(40.805557, -73.91047)",BRUCKNER BOULEVARD,EAST 140 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409389,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,20:48,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Unspecified,,4410079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/23/2021,17:53,QUEENS,11420,40.682285,-73.80805,"(40.682285, -73.80805)",LINDEN BOULEVARD,134 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4410242,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,12:10,BROOKLYN,11205,40.689445,-73.95513,"(40.689445, -73.95513)",BEDFORD AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4410367,Beverage Truck,,,, +04/20/2021,14:00,BRONX,10455,40.81608,-73.917694,"(40.81608, -73.917694)",EAST 149 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4410495,Sedan,Concrete Mixer,,, +04/21/2021,16:50,BRONX,10460,40.849075,-73.88289,"(40.849075, -73.88289)",CROTONA PARKWAY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409412,Sedan,,,, +04/23/2021,7:30,BRONX,10451,40.822323,-73.910706,"(40.822323, -73.910706)",3 AVENUE,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409758,Taxi,Sedan,,, +04/23/2021,9:46,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",BROADWAY,WEST 178 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4409771,Sedan,Bus,,, +04/22/2021,9:51,,,40.760536,-73.95836,"(40.760536, -73.95836)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409543,Sedan,Sedan,,, +04/21/2021,8:00,QUEENS,11411,40.702957,-73.74332,"(40.702957, -73.74332)",MURDOCK AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409979,Sedan,Sedan,,, +04/21/2021,5:50,,,40.77077,-73.91727,"(40.77077, -73.91727)",HOYT AVENUE NORTH,31 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409472,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,17:00,BROOKLYN,11237,40.709393,-73.9219,"(40.709393, -73.9219)",FLUSHING AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457298,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:37,,,40.821415,-73.88933,"(40.821415, -73.88933)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4410021,Sedan,Sedan,,, +04/23/2021,21:59,MANHATTAN,10010,40.742218,-73.9912,"(40.742218, -73.9912)",,,50 WEST 23 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410151,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,22:50,,,40.66305,-73.848564,"(40.66305, -73.848564)",BELT PARKWAY,,,7,0,0,0,0,0,7,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4409535,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/21/2021,7:00,QUEENS,11105,40.78114,-73.90901,"(40.78114, -73.90901)",,,20-02 27 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409165,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,23:55,,,40.69695,-73.962776,"(40.69695, -73.962776)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4409835,Motorcycle,,,, +04/21/2021,13:08,,,,,,Seagirt Boulevard,Beach 9 street,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,Other Vehicular,,,4409262,Sedan,Sedan,Sedan,, +04/21/2021,17:46,BROOKLYN,11228,40.6175,-74.02163,"(40.6175, -74.02163)",7 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409371,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:45,BROOKLYN,11233,40.67657,-73.915184,"(40.67657, -73.915184)",,,2158 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410104,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/22/2021,16:10,BROOKLYN,11234,40.628284,-73.91694,"(40.628284, -73.91694)",,,1067 EAST 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410408,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:14,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",SNYDER AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4409830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,20:05,MANHATTAN,10027,40.814186,-73.94826,"(40.814186, -73.94826)",,,2451 8 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4409739,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,18:55,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",WEST MOUNT EDEN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409459,Sedan,,,, +04/22/2021,12:00,QUEENS,11428,40.715084,-73.75383,"(40.715084, -73.75383)",207 STREET,94 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409620,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,7:00,,,40.575085,-74.10512,"(40.575085, -74.10512)",MAPLEWOOD PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409703,Sedan,,,, +04/23/2021,14:50,BROOKLYN,11209,40.634792,-74.032326,"(40.634792, -74.032326)",72 STREET,COLONIAL ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409862,Bike,,,, +04/21/2021,17:20,QUEENS,11379,40.712646,-73.89936,"(40.712646, -73.89936)",METROPOLITAN AVENUE,62 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409304,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2021,11:50,BRONX,10465,40.842697,-73.82519,"(40.842697, -73.82519)",MACDONOUGH PLACE,COUNTRY CLUB ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409730,Sedan,Sedan,,, +04/21/2021,12:00,STATEN ISLAND,10304,40.615753,-74.08754,"(40.615753, -74.08754)",,,959 VANDUZER STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4409346,Sedan,work van,,, +04/21/2021,19:30,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4409671,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,10:30,MANHATTAN,10001,40.752224,-74.00141,"(40.752224, -74.00141)",,,500 WEST 30 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409205,Box Truck,,,, +04/22/2021,13:40,,,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4409595,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,0:00,BROOKLYN,11249,40.70269,-73.96509,"(40.70269, -73.96509)",,,22 ROSS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409889,Sedan,Sedan,,, +04/15/2021,14:45,,,40.85394,-73.91468,"(40.85394, -73.91468)",WEST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409908,Sedan,Sedan,,, +04/21/2021,8:30,BROOKLYN,11218,40.645123,-73.986916,"(40.645123, -73.986916)",,,3525 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409488,Carry All,Bus,,, +04/23/2021,11:22,BROOKLYN,11203,40.654278,-73.92292,"(40.654278, -73.92292)",LINDEN BOULEVARD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410377,Sedan,,,, +04/23/2021,14:40,BRONX,10468,40.85934,-73.90448,"(40.85934, -73.90448)",DAVIDSON AVENUE,EVELYN PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410460,Sedan,Pick-up Truck,,, +04/22/2021,8:40,BRONX,10462,40.83566,-73.840034,"(40.83566, -73.840034)",COMMERCE AVENUE,WATERBURY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4409516,Pick-up Truck,Sedan,,, +04/23/2021,18:45,BRONX,10456,40.83295,-73.89869,"(40.83295, -73.89869)",,,666 JEFFERSON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410084,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/23/2021,20:45,BROOKLYN,11236,40.63155,-73.90633,"(40.63155, -73.90633)",EAST 82 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409857,Sedan,Sedan,,, +04/23/2021,7:20,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4409735,Station Wagon/Sport Utility Vehicle,Bus,Bus,, +04/23/2021,6:30,BRONX,10458,40.855553,-73.88757,"(40.855553, -73.88757)",ARTHUR AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409790,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,8:20,QUEENS,11370,40.773808,-73.8929,"(40.773808, -73.8929)",19 AVENUE,HAZEN STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4410123,Sedan,bus,,, +04/22/2021,13:55,,,40.824432,-73.873604,"(40.824432, -73.873604)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409588,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,17:00,,,40.830257,-73.914856,"(40.830257, -73.914856)",COLLEGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410160,Sedan,,,, +04/22/2021,22:35,,,40.60073,-73.90163,"(40.60073, -73.90163)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409659,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,19:00,,,40.739902,-73.791275,"(40.739902, -73.791275)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409900,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,19:50,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",BRONX RIVER PARKWAY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409385,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,13:15,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4409639,Tractor Truck Diesel,,,, +09/12/2021,17:54,BRONX,10459,40.823143,-73.891815,"(40.823143, -73.891815)",,,991 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4457872,Sedan,Motorcycle,,, +04/23/2021,18:30,QUEENS,11385,40.71,-73.86549,"(40.71, -73.86549)",,,70-32 84 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4409937,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,20:50,QUEENS,11385,40.70212,-73.90959,"(40.70212, -73.90959)",CYPRESS AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409762,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,19:53,,,40.755802,-73.986404,"(40.755802, -73.986404)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410057,Sedan,,,, +04/23/2021,20:25,BRONX,10451,40.81162,-73.93117,"(40.81162, -73.93117)",EAST 135 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4410500,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,15:30,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,13:25,QUEENS,11379,40.714397,-73.89799,"(40.714397, -73.89799)",64 STREET,62 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4409767,Pick-up Truck,Convertible,,, +04/23/2021,8:45,QUEENS,11364,40.736042,-73.75603,"(40.736042, -73.75603)",KINGSBURY AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409894,Sedan,,,, +04/22/2021,21:35,BROOKLYN,11233,40.676132,-73.921906,"(40.676132, -73.921906)",PACIFIC STREET,RALPH AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4410098,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/22/2021,8:20,BROOKLYN,11234,,,,,,50 AVIATION ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,17:37,BRONX,10453,40.846577,-73.913155,"(40.846577, -73.913155)",JEROME AVENUE,CLIFFORD PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4409441,Taxi,Sedan,,, +04/23/2021,9:55,QUEENS,11368,40.749283,-73.86139,"(40.749283, -73.86139)",,,40-13 104 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409811,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,11:18,,,40.903057,-73.91017,"(40.903057, -73.91017)",INDEPENDENCE AVENUE,WEST 254 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410222,Bus,3-Door,,, +04/22/2021,17:29,BRONX,10458,,,,BEDFORD PARK BOULEVARD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,6:30,BROOKLYN,11232,40.648037,-74.001564,"(40.648037, -74.001564)",,,663 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409314,Sedan,Sedan,,, +09/14/2021,11:30,,,40.69911,-73.93402,"(40.69911, -73.93402)",MELROSE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457809,Sedan,,,, +04/22/2021,8:05,BRONX,10463,40.878983,-73.90609,"(40.878983, -73.90609)",,,3058 GODWIN TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410228,Sedan,,,, +04/23/2021,6:40,,,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410331,Box Truck,,,, +04/22/2021,15:40,QUEENS,11374,,,,97 STREET,HARDING EXPRESSWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409604,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,13:55,QUEENS,11373,40.740265,-73.87062,"(40.740265, -73.87062)",51 AVENUE,93 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4409707,Sedan,Sedan,,, +04/23/2021,17:35,QUEENS,11413,40.679348,-73.750336,"(40.679348, -73.750336)",MERRICK BOULEVARD,219 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4409867,Station Wagon/Sport Utility Vehicle,NICE BUS,Sedan,, +04/21/2021,22:07,,,40.628647,-73.95207,"(40.628647, -73.95207)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409419,Sedan,Sedan,,, +04/20/2021,18:30,BROOKLYN,11234,40.62451,-73.92747,"(40.62451, -73.92747)",,,1945 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410412,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,15:50,QUEENS,11433,40.697247,-73.78965,"(40.697247, -73.78965)",108 AVENUE,164 PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409810,Sedan,,,, +04/21/2021,7:08,BROOKLYN,11211,40.713577,-73.94647,"(40.713577, -73.94647)",,,120 DEVOE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409366,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/22/2021,0:31,BRONX,10457,40.83846,-73.90175,"(40.83846, -73.90175)",CLAREMONT PARKWAY,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409420,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,19:31,BRONX,10466,40.89232,-73.85896,"(40.89232, -73.85896)",,,683 EAST 231 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410183,Sedan,Sedan,,, +04/17/2021,1:50,MANHATTAN,10023,40.780884,-73.98371,"(40.780884, -73.98371)",,,285 WEST END AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4409825,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan +04/21/2021,9:05,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4409402,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,19:25,MANHATTAN,10035,,,,,,1 randalls island,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409645,Bus,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,13:45,BROOKLYN,11236,40.65333,-73.91285,"(40.65333, -73.91285)",,,620 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409842,Sedan,,,, +04/21/2021,0:00,,,40.736572,-73.907715,"(40.736572, -73.907715)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,0:00,,,40.712914,-73.734436,"(40.712914, -73.734436)",HEMPSTEAD AVENUE,220 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4409675,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/23/2021,10:15,BRONX,10474,40.811512,-73.89053,"(40.811512, -73.89053)",RANDALL AVENUE,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409929,Sedan,,,, +04/23/2021,19:15,QUEENS,11434,40.66786,-73.76656,"(40.66786, -73.76656)",144 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4409956,Sedan,Pick-up Truck,Sedan,, +04/21/2021,10:30,,,,,,JUNCTION BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,19:30,,,,,,BRADDOCK AVENUE,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4409341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/21/2021,3:20,,,40.800552,-73.958206,"(40.800552, -73.958206)",CENTRAL PARK NORTH,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409560,Taxi,Sedan,,, +04/21/2021,16:55,,,40.790623,-73.942444,"(40.790623, -73.942444)",EAST 106 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4409721,Station Wagon/Sport Utility Vehicle,Moped,,, +04/22/2021,14:20,,,40.61883,-74.164345,"(40.61883, -74.164345)",,,160 FAHY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409706,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,7:37,QUEENS,11422,40.680164,-73.733154,"(40.680164, -73.733154)",234 STREET,130 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409631,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,18:42,QUEENS,11377,40.745872,-73.914375,"(40.745872, -73.914375)",,,41-22 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409866,Sedan,,,, +04/22/2021,18:00,BROOKLYN,11201,40.69476,-73.99139,"(40.69476, -73.99139)",,,147 PIERREPONT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409654,Sedan,,,, +04/21/2021,10:25,QUEENS,11433,40.703835,-73.778496,"(40.703835, -73.778496)",180 STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Following Too Closely,Unspecified,Unspecified,Unspecified,4409311,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/05/2021,0:40,,,40.69759,-73.90194,"(40.69759, -73.90194)",CYPRESS AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4409794,Sedan,,,, +04/21/2021,8:25,,,40.764915,-73.95517,"(40.764915, -73.95517)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409403,Sedan,,,, +04/17/2021,17:20,QUEENS,11385,40.706406,-73.89691,"(40.706406, -73.89691)",,,66-78 FRESH POND ROAD,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409935,Station Wagon/Sport Utility Vehicle,Multi-Wheeled Vehicle,,, +04/23/2021,18:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4409853,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/21/2021,9:00,BROOKLYN,11222,40.728992,-73.95067,"(40.728992, -73.95067)",MC GUINNESS BOULEVARD,CALYER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409680,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/23/2021,18:35,STATEN ISLAND,10306,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,MIDLAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409959,Bus,Sedan,,, +04/22/2021,15:25,MANHATTAN,10027,40.81722,-73.95228,"(40.81722, -73.95228)",WEST 133 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4410184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/23/2021,12:00,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409987,Sedan,Sedan,,, +04/23/2021,9:55,BROOKLYN,11218,40.633312,-73.97629,"(40.633312, -73.97629)",,,203 AVENUE F,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410472,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,2:24,STATEN ISLAND,10301,40.6332,-74.092865,"(40.6332, -74.092865)",,,307 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4409357,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,17:00,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409553,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,17:02,,,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,,,0,1,0,0,0,0,0,1,Driver Inexperience,Unspecified,,,,4410389,Motorcycle,Sedan,,, +04/23/2021,16:25,BRONX,10475,40.885303,-73.82954,"(40.885303, -73.82954)",BOSTON ROAD,DELAVALL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410523,Sedan,Sedan,,, +04/18/2021,0:30,QUEENS,11103,40.756657,-73.9141,"(40.756657, -73.9141)",,,46-06 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409795,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/22/2021,16:25,,,40.769737,-73.91244,"(40.769737, -73.91244)",ASTORIA BOULEVARD,37 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4409603,Sedan,Sedan,,, +04/19/2021,7:40,QUEENS,11435,40.704224,-73.807274,"(40.704224, -73.807274)",,,148-20 89 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4409780,Dump,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/23/2021,9:20,,,40.575375,-74.18999,"(40.575375, -74.18999)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4409965,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,16:14,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409381,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,16:50,BROOKLYN,11203,40.65636,-73.93479,"(40.65636, -73.93479)",CLARKSON AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4410285,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +04/22/2021,23:00,QUEENS,11103,40.76671,-73.917114,"(40.76671, -73.917114)",,,28-39 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410483,Sedan,,,, +04/22/2021,15:35,BRONX,10469,40.861164,-73.857574,"(40.861164, -73.857574)",WARING AVENUE,WILLIAMSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409748,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,11:30,BROOKLYN,11210,40.63663,-73.94204,"(40.63663, -73.94204)",,,3610 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4410354,Sedan,,,, +03/30/2021,18:30,BRONX,10452,40.843475,-73.92467,"(40.843475, -73.92467)",MERRIAM AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410421,Station Wagon/Sport Utility Vehicle,PK,,, +04/22/2021,19:16,MANHATTAN,10021,40.767532,-73.953255,"(40.767532, -73.953255)",YORK AVENUE,EAST 73 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409716,Taxi,E-Bike,,, +04/21/2021,18:30,BRONX,10455,40.817513,-73.91712,"(40.817513, -73.91712)",EAST 151 STREET,MELROSE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409670,,,,, +04/21/2021,8:48,QUEENS,11378,40.724792,-73.9088,"(40.724792, -73.9088)",,,56-20 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409763,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,9:56,BROOKLYN,11236,40.643784,-73.90218,"(40.643784, -73.90218)",CONKLIN AVENUE,EAST 96 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Obstruction/Debris,,,,4409201,Sedan,Sedan,,, +04/21/2021,11:53,BROOKLYN,11236,40.634533,-73.89304,"(40.634533, -73.89304)",,,9513 AVENUE N,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409238,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,16:30,,,40.68576,-73.915504,"(40.68576, -73.915504)",BROADWAY,HALSEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410093,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +04/22/2021,7:40,QUEENS,11374,40.73251,-73.857056,"(40.73251, -73.857056)",63 ROAD,99 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409476,Sedan,,,, +04/23/2021,15:22,STATEN ISLAND,10306,40.582756,-74.13041,"(40.582756, -74.13041)",ROCKLAND AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410554,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,22:30,,,40.825096,-73.87263,"(40.825096, -73.87263)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410029,Taxi,Sedan,,, +09/14/2021,7:30,MANHATTAN,10013,40.719055,-74.01245,"(40.719055, -74.01245)",WEST STREET,HARRISON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457567,Sedan,,,, +04/22/2021,16:45,MANHATTAN,10029,40.79172,-73.95299,"(40.79172, -73.95299)",5 AVENUE,EAST 102 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409711,Bus,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,9:45,BROOKLYN,11203,40.649277,-73.94361,"(40.649277, -73.94361)",SNYDER AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4409330,Sedan,Sedan,,, +04/23/2021,15:45,QUEENS,11423,40.71982,-73.775856,"(40.71982, -73.775856)",,,86-23 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409838,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,16:20,BRONX,10466,40.881264,-73.83875,"(40.881264, -73.83875)",BAYCHESTER AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409538,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,11:15,,,40.685585,-73.78584,"(40.685585, -73.78584)",158 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409821,Sedan,,,, +04/23/2021,19:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4410229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,2:10,,,40.610214,-74.1202,"(40.610214, -74.1202)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410134,unknown,Station Wagon/Sport Utility Vehicle,,, +04/10/2021,22:55,BROOKLYN,11226,40.646923,-73.94818,"(40.646923, -73.94818)",EAST 31 STREET,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409843,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,18:35,QUEENS,11366,40.725777,-73.79175,"(40.725777, -73.79175)",UTOPIA PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409687,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,13:40,BROOKLYN,11229,40.597733,-73.94139,"(40.597733, -73.94139)",,,3528 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410456,Sedan,,,, +04/21/2021,9:50,QUEENS,11414,40.668247,-73.84602,"(40.668247, -73.84602)",151 AVENUE,89 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4409166,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,16:10,BROOKLYN,11215,40.675426,-73.98208,"(40.675426, -73.98208)",,,614 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409426,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/21/2021,16:20,BROOKLYN,11204,40.62717,-73.98214,"(40.62717, -73.98214)",51 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409489,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2021,22:00,QUEENS,11373,40.736057,-73.87669,"(40.736057, -73.87669)",,,86-35 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4410538,Sedan,,,, +04/23/2021,18:46,BROOKLYN,11233,40.676163,-73.922386,"(40.676163, -73.922386)",,,1997 PACIFIC STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410325,Sedan,,,, +04/21/2021,9:30,MANHATTAN,10001,40.7509,-73.99812,"(40.7509, -73.99812)",WEST 30 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409218,Station Wagon/Sport Utility Vehicle,Dump,,, +04/21/2021,15:10,QUEENS,11101,40.73496,-73.93857,"(40.73496, -73.93857)",REVIEW AVENUE,35 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4409370,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +04/20/2021,16:00,BROOKLYN,11211,40.708675,-73.956314,"(40.708675, -73.956314)",SOUTH 5 STREET,RODNEY STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4409881,Motorcycle,,,, +04/21/2021,19:20,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,20:46,,,40.759727,-73.99169,"(40.759727, -73.99169)",9 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410047,Sedan,,,, +04/19/2021,23:35,MANHATTAN,10017,40.753242,-73.96662,"(40.753242, -73.96662)",1 AVENUE,EAST 49 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409899,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/22/2021,15:00,,,40.625786,-73.89309,"(40.625786, -73.89309)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409658,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,8:58,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4409544,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,0:00,QUEENS,11372,40.752514,-73.87438,"(40.752514, -73.87438)",,,35-39 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409775,Sedan,,,, +04/21/2021,18:40,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PEARL STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409325,Sedan,Sedan,,, +04/16/2021,15:26,,,,,,MANHATTAN BR UPPER,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4410126,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +04/22/2021,14:20,,,40.65505,-73.95631,"(40.65505, -73.95631)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409849,Sedan,Sedan,,, +04/21/2021,13:30,BROOKLYN,11222,40.729744,-73.94423,"(40.729744, -73.94423)",,,300 NORTH HENRY STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409376,Sedan,Tractor Truck Gasoline,,, +02/05/2021,20:00,,,40.68843,-73.89132,"(40.68843, -73.89132)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4409743,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,22:54,,,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410189,Sedan,Sedan,,, +04/23/2021,23:30,,,40.640583,-73.95573,"(40.640583, -73.95573)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4410069,Station Wagon/Sport Utility Vehicle,Dump,,, +04/23/2021,16:08,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4409947,Sedan,Tractor Truck Diesel,,, +04/23/2021,18:58,QUEENS,11103,40.768646,-73.90973,"(40.768646, -73.90973)",,,41-08 ASTORIA BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4409875,Sedan,Sedan,,, +04/23/2021,23:00,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4409909,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/22/2021,7:00,BROOKLYN,11212,40.6572,-73.918655,"(40.6572, -73.918655)",,,414 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410378,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,12:30,,,40.69529,-73.94339,"(40.69529, -73.94339)",VERNON AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4410216,Sedan,Bike,,, +04/23/2021,0:25,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4409998,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,0:00,,,40.843254,-73.892136,"(40.843254, -73.892136)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410273,Box Truck,Dump,,, +04/23/2021,17:00,BROOKLYN,11236,40.632156,-73.90821,"(40.632156, -73.90821)",,,1129 EAST 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409870,Sedan,,,, +04/21/2021,18:00,,,40.81653,-73.93488,"(40.81653, -73.93488)",WEST 141 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409738,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,17:10,,,40.552296,-74.159996,"(40.552296, -74.159996)",EAST FIGUREA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409699,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,14:23,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409610,Sedan,Bus,,, +04/23/2021,2:17,QUEENS,11378,40.72111,-73.90395,"(40.72111, -73.90395)",,,61-06 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4409942,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/22/2021,19:45,BROOKLYN,11226,40.650078,-73.94757,"(40.650078, -73.94757)",,,31 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410347,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,10:08,BROOKLYN,11210,40.632484,-73.94663,"(40.632484, -73.94663)",,,777 EAST 31 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4410064,Sedan,,,, +04/23/2021,18:00,,,40.66605,-73.81525,"(40.66605, -73.81525)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,14:40,,,40.895195,-73.88012,"(40.895195, -73.88012)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4410165,Sedan,Box Truck,,, +04/21/2021,18:30,,,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4409468,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,23:00,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410114,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,7:39,,,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410320,Sedan,,,, +04/23/2021,10:24,MANHATTAN,10017,40.753,-73.969894,"(40.753, -73.969894)",EAST 47 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409817,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,1:25,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,,,,,4409113,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,15:25,BRONX,10467,40.884983,-73.86204,"(40.884983, -73.86204)",EAST 221 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409534,Station Wagon/Sport Utility Vehicle,Van,,, +04/23/2021,11:30,BROOKLYN,11209,40.631477,-74.02309,"(40.631477, -74.02309)",,,460 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409802,Sedan,,,, +04/21/2021,1:55,,,40.766155,-73.89226,"(40.766155, -73.89226)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409280,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,16:10,MANHATTAN,10031,40.82207,-73.94993,"(40.82207, -73.94993)",AMSTERDAM AVENUE,WEST 140 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409770,Pick-up Truck,Bus,,, +04/21/2021,13:30,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409499,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,23:15,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",BOYLAND STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410086,Sedan,Sedan,,, +04/21/2021,14:25,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",SUTTER AVENUE,HOWARD AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4409435,fire truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/21/2021,1:25,,,40.755978,-73.939095,"(40.755978, -73.939095)",22 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410108,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,12:30,BROOKLYN,11209,40.62163,-74.04022,"(40.62163, -74.04022)",SHORE ROAD,91 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410432,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,13:40,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409834,Sedan,Dump,,, +04/23/2021,13:15,BRONX,10468,40.857418,-73.899956,"(40.857418, -73.899956)",EAST 183 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409917,Sedan,,,, +04/21/2021,22:00,BRONX,10455,40.814762,-73.91683,"(40.814762, -73.91683)",,,440 EAST 148 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409388,Pick-up Truck,Sedan,,, +04/22/2021,17:30,MANHATTAN,10039,40.826702,-73.93937,"(40.826702, -73.93937)",,,308 WEST 151 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,Unspecified,,4409742,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/22/2021,18:40,BROOKLYN,11206,40.70744,-73.942024,"(40.70744, -73.942024)",,,188 MONTROSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409885,Station Wagon/Sport Utility Vehicle,Bus,,, +04/22/2021,21:15,BROOKLYN,11204,40.615406,-73.97983,"(40.615406, -73.97983)",,,6220 BAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409663,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,17:41,MANHATTAN,10007,40.710888,-74.00907,"(40.710888, -74.00907)",FULTON STREET,BROADWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4409903,Sedan,,,, +04/21/2021,13:34,QUEENS,11691,40.607853,-73.74465,"(40.607853, -73.74465)",,,707 BOLTON ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409411,Bus,Sedan,,, +04/21/2021,8:12,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409612,Bus,Box Truck,,, +04/22/2021,21:40,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,Unspecified,,,4409753,Sedan,Sedan,Sedan,, +04/21/2021,16:15,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409345,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/23/2021,16:20,QUEENS,11355,40.743256,-73.82043,"(40.743256, -73.82043)",148 STREET,58 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410005,Sedan,TRAILER,,, +04/22/2021,14:15,,,40.6862,-73.950745,"(40.6862, -73.950745)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410373,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,11:00,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4409539,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:00,BROOKLYN,11209,40.611355,-74.03294,"(40.611355, -74.03294)",,,461 101 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409968,Pick-up Truck,,,, +04/23/2021,15:28,BROOKLYN,11221,40.68789,-73.936035,"(40.68789, -73.936035)",GATES AVENUE,LEWIS AVENUE,,1,0,0,0,0,0,1,0,Cell Phone (hands-free),Unspecified,,,,4410194,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,13:00,,,40.85798,-73.93091,"(40.85798, -73.93091)",BROADWAY TERRACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410221,Van,Sedan,,, +04/23/2021,16:45,BROOKLYN,11249,40.713924,-73.96714,"(40.713924, -73.96714)",SOUTH 3 STREET,KENT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409890,E-Bike,,,, +04/21/2021,15:47,BRONX,10466,40.895702,-73.860504,"(40.895702, -73.860504)",,,4234 BRONX BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4410155,Sedan,Tractor Truck Diesel,,, +04/23/2021,13:30,QUEENS,11369,40.75896,-73.85909,"(40.75896, -73.85909)",,,32-56 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409953,Convertible,Sedan,,, +04/21/2021,4:20,BRONX,10466,40.88611,-73.86033,"(40.88611, -73.86033)",,,725 EAST 223 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4410150,Sedan,Sedan,Sedan,, +04/21/2021,19:05,BROOKLYN,11223,40.601795,-73.97257,"(40.601795, -73.97257)",MC DONALD AVENUE,AVENUE S,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4409904,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,22:51,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4410083,Sedan,Tractor Truck Diesel,,, +04/23/2021,19:12,BRONX,10469,40.87427,-73.84187,"(40.87427, -73.84187)",,,3209 TIEMANN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4410211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/23/2021,17:00,BROOKLYN,11236,40.63439,-73.89324,"(40.63439, -73.89324)",EAST 95 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4409990,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/21/2021,14:42,MANHATTAN,10025,40.801098,-73.96791,"(40.801098, -73.96791)",,,2754 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409589,Ambulance,Sedan,,, +04/23/2021,8:00,MANHATTAN,10011,40.738228,-73.996765,"(40.738228, -73.996765)",,,101 WEST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410267,Motorcycle,,,, +04/21/2021,20:40,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",SPRINGFIELD BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409374,Sedan,Sedan,,, +04/07/2021,15:05,MANHATTAN,10012,40.72409,-73.99614,"(40.72409, -73.99614)",,,285 LAFAYETTE STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410122,Sedan,,,, +04/23/2021,14:55,BRONX,10461,40.850166,-73.844925,"(40.850166, -73.844925)",,,1826 EASTCHESTER ROAD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4409807,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,13:40,BROOKLYN,11224,40.576073,-73.98575,"(40.576073, -73.98575)",,,2925 WEST 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410161,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,16:30,,,40.665916,-73.81528,"(40.665916, -73.81528)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4410241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,23:25,,,40.72539,-73.896614,"(40.72539, -73.896614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409938,4 dr sedan,Sedan,,, +04/23/2021,13:40,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing or Lane Usage Improper,Unspecified,,,4410337,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/21/2021,10:30,BRONX,10452,40.83941,-73.91542,"(40.83941, -73.91542)",,,154 EAST 170 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410174,Sedan,,,, +04/23/2021,14:35,BROOKLYN,11223,40.600956,-73.98607,"(40.600956, -73.98607)",82 STREET,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409871,Bus,Sedan,,, +04/21/2021,23:00,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409508,Sedan,Tractor Truck Diesel,,, +04/21/2021,1:53,,,,,,MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410303,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/21/2021,8:42,MANHATTAN,10013,40.717678,-74.00578,"(40.717678, -74.00578)",CHURCH STREET,LEONARD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409144,Bus,Sedan,Sedan,, +04/21/2021,7:30,BROOKLYN,11217,40.677677,-73.97961,"(40.677677, -73.97961)",5 AVENUE,DE GRAW STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409416,Sedan,,,, +04/23/2021,16:30,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410050,Station Wagon/Sport Utility Vehicle,Bus,,, +04/21/2021,10:58,MANHATTAN,10035,40.80083,-73.94422,"(40.80083, -73.94422)",,,1787 MADISON AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4409245,Taxi,Bike,,, +03/30/2021,17:44,,,40.83245,-73.93176,"(40.83245, -73.93176)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410422,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,2:18,BROOKLYN,11228,40.612736,-74.01172,"(40.612736, -74.01172)",86 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4409785,Sedan,Sedan,,, +04/23/2021,17:15,,,40.728775,-73.723785,"(40.728775, -73.723785)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4409923,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/23/2021,0:23,,,40.67608,-73.906136,"(40.67608, -73.906136)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410101,Ambulance,Sedan,,, +04/21/2021,8:00,,,,,,3 AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409422,Taxi,E-Scooter,,, +04/21/2021,14:45,QUEENS,11422,40.671604,-73.72807,"(40.671604, -73.72807)",HOOK CREEK BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409340,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,22:17,BRONX,10456,40.832,-73.899025,"(40.832, -73.899025)",BOSTON ROAD,UNION AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Following Too Closely,,,,4409415,Pick-up Truck,MOPED,,, +04/22/2021,19:18,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409757,Sedan,Box Truck,,, +09/14/2021,14:25,BROOKLYN,11235,40.591263,-73.944016,"(40.591263, -73.944016)",EAST 26 STREET,AVENUE Y,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457303,E-Bike,,,, +04/21/2021,22:55,BRONX,10468,,,,GOULDEN AVENUE,WEST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4409384,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/22/2021,14:00,BROOKLYN,11232,40.651676,-74.010635,"(40.651676, -74.010635)",43 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409648,Sedan,,,, +04/22/2021,16:15,,,40.57916,-73.98309,"(40.57916, -73.98309)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410468,Sedan,Sedan,,, +09/09/2021,22:20,MANHATTAN,10002,40.720074,-73.988365,"(40.720074, -73.988365)",LUDLOW STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457931,Sedan,,,, +04/21/2021,3:00,BRONX,10468,40.877365,-73.88533,"(40.877365, -73.88533)",GRAND CONCOURSE,VANCORTLANDT AVENUE EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409035,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,20:00,QUEENS,11413,40.67073,-73.7491,"(40.67073, -73.7491)",,,139-35 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409676,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,8:20,BROOKLYN,11224,40.579052,-73.98415,"(40.579052, -73.98415)",NEPTUNE AVENUE,WEST 16 STREET,,1,0,0,0,0,0,1,0,Lane Marking Improper/Inadequate,Turning Improperly,,,,4410140,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,13:15,MANHATTAN,10001,,,,12 AVENUE,WEST 34 STREET,,1,0,0,0,1,0,0,0,Obstruction/Debris,,,,,4409774,Bike,,,, +04/23/2021,17:50,,,40.773335,-73.94421,"(40.773335, -73.94421)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410499,Sedan,Sedan,,, +04/21/2021,21:45,,,,,,highland blvd,highland blvd,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4409557,Sedan,,,, +04/20/2021,17:30,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409930,Sedan,,,, +04/03/2021,1:40,,,40.795322,-73.929825,"(40.795322, -73.929825)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409725,Sedan,Sedan,,, +04/22/2021,17:20,BROOKLYN,11223,40.60521,-73.985855,"(40.60521, -73.985855)",QUENTIN ROAD,WEST 13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409978,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,16:30,BRONX,10469,40.875423,-73.86028,"(40.875423, -73.86028)",,,901 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4410180,Sedan,,,, +04/21/2021,10:10,,,40.609653,-73.91145,"(40.609653, -73.91145)",MAYFAIR DRIVE SOUTH,MILL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4410402,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,6:30,,,,,,,,112-454 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,19:43,BRONX,10459,40.821667,-73.89771,"(40.821667, -73.89771)",,,920 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4410019,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,19:28,BROOKLYN,11233,40.682163,-73.92712,"(40.682163, -73.92712)",,,402 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410199,Sedan,E-Bike,,, +04/23/2021,19:30,QUEENS,11434,40.658802,-73.77228,"(40.658802, -73.77228)",,,168-25 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409960,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,19:58,BROOKLYN,11234,40.613194,-73.92631,"(40.613194, -73.92631)",FLATBUSH AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410411,Pick-up Truck,Sedan,,, +04/20/2021,20:59,BROOKLYN,11218,,,,OCEAN PARKWAY,DITMAS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4410476,E-Bike,Bike,,, +04/23/2021,11:40,,,40.67578,-74.0014,"(40.67578, -74.0014)",HAMILTON AVENUE,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410075,AMBULANCE,TRUCK,,, +04/16/2021,11:00,,,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410185,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:05,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",ROOSEVELT AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410291,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/22/2021,13:00,STATEN ISLAND,10306,40.56709,-74.12167,"(40.56709, -74.12167)",TYSENS LANE,8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409712,Sedan,,,, +04/23/2021,12:45,MANHATTAN,10002,40.721985,-73.98552,"(40.721985, -73.98552)",EAST HOUSTON STREET,NORFOLK STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409826,Sedan,E-Bike,,, +04/19/2021,15:30,BROOKLYN,11216,40.69024,-73.9482,"(40.69024, -73.9482)",MARCY AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410366,Sedan,Stake or Rack,,, +04/23/2021,21:40,,,40.762825,-73.93398,"(40.762825, -73.93398)",21 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410118,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,16:00,QUEENS,11432,40.71191,-73.78744,"(40.71191, -73.78744)",,,175-35 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409839,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,18:48,QUEENS,11385,40.70091,-73.88787,"(40.70091, -73.88787)",,,72-23 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/19/2021,6:30,BROOKLYN,11203,40.654278,-73.92292,"(40.654278, -73.92292)",LINDEN BOULEVARD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409844,Station Wagon/Sport Utility Vehicle,Bus,,, +04/21/2021,18:57,BRONX,10469,40.866444,-73.86117,"(40.866444, -73.86117)",,,2751 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409491,Sedan,,,, +04/21/2021,12:45,STATEN ISLAND,10314,40.606358,-74.120926,"(40.606358, -74.120926)",WESTWOOD AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409211,Sedan,Sedan,,, +04/21/2021,13:40,,,40.786495,-73.94839,"(40.786495, -73.94839)",3 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409219,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/21/2021,15:15,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,EAST 170 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4409449,Moped,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,23:37,BRONX,10473,40.82111,-73.848495,"(40.82111, -73.848495)",,,2160 SEWARD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4457368,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,9:11,BRONX,10463,40.88945,-73.90448,"(40.88945, -73.90448)",,,3900 GREYSTONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409257,Sedan,Sedan,,, +04/21/2021,13:50,BROOKLYN,11218,40.640785,-73.98503,"(40.640785, -73.98503)",,,1323 38 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4409483,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,22:47,,,40.645256,-73.874954,"(40.645256, -73.874954)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4410352,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/22/2021,16:47,BRONX,10468,40.859642,-73.90534,"(40.859642, -73.90534)",GRAND AVENUE,EVELYN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409693,Sedan,,,, +04/21/2021,18:11,MANHATTAN,10017,40.750763,-73.97446,"(40.750763, -73.97446)",3 AVENUE,EAST 42 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409322,Bike,,,, +04/23/2021,14:50,BRONX,10462,40.83954,-73.85067,"(40.83954, -73.85067)",,,1662 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4410056,Sedan,,,, +04/22/2021,7:00,QUEENS,11421,40.68841,-73.84794,"(40.68841, -73.84794)",ATLANTIC AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409520,Sedan,,,, +04/21/2021,19:04,,,40.86287,-73.934784,"(40.86287, -73.934784)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4410224,Sedan,Sedan,Sedan,, +04/22/2021,17:25,BRONX,10452,40.84338,-73.914276,"(40.84338, -73.914276)",,,1562 TOWNSEND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409710,Sedan,Sedan,,, +04/21/2021,9:45,BRONX,10461,40.849957,-73.84885,"(40.849957, -73.84885)",,,1711 HERING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409157,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,17:00,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",AVENUE M,REMSEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409858,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,20:50,BRONX,10451,40.82416,-73.922775,"(40.82416, -73.922775)",,,779 CONCOURSE VILLAGE WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409453,Sedan,,,, +04/21/2021,11:50,BROOKLYN,11238,40.682365,-73.96668,"(40.682365, -73.96668)",,,535 CLINTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409789,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,9:45,,,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410330,Station Wagon/Sport Utility Vehicle,3-Door,,, +04/22/2021,22:00,BROOKLYN,11212,40.664486,-73.91525,"(40.664486, -73.91525)",,,2020 STRAUSS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410097,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,23:15,MANHATTAN,10013,40.718044,-73.99605,"(40.718044, -73.99605)",,,80 ELIZABETH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410070,Sedan,,,, +04/19/2021,19:27,STATEN ISLAND,10305,40.58467,-74.09562,"(40.58467, -74.09562)",NAUGHTON AVENUE,JOYCE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410553,Pick-up Truck,,,, +04/21/2021,1:10,,,40.662395,-73.93735,"(40.662395, -73.93735)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410035,Sedan,Sedan,,, +04/21/2021,22:30,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409511,Sedan,,,, +04/23/2021,14:06,QUEENS,11365,40.738007,-73.78837,"(40.738007, -73.78837)",,,64-67 185 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,23:05,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,View Obstructed/Limited,,,4410230,Sedan,Sedan,Sedan,, +04/22/2021,12:15,,,40.787685,-73.97502,"(40.787685, -73.97502)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409537,Sedan,Sedan,,, +04/11/2021,16:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4409816,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/19/2021,12:25,,,40.669735,-73.93104,"(40.669735, -73.93104)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410329,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,9:30,QUEENS,11105,40.775124,-73.90444,"(40.775124, -73.90444)",,,38-07 21 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409167,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,8:30,,,40.819717,-73.94048,"(40.819717, -73.94048)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4409254,Sedan,Firetruck,,, +04/22/2021,12:30,BROOKLYN,11210,40.62709,-73.94403,"(40.62709, -73.94403)",NEW YORK AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410410,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,19:05,STATEN ISLAND,10312,40.559128,-74.16949,"(40.559128, -74.16949)",RICHMOND AVENUE,GURLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409700,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,16:00,BROOKLYN,11232,40.66159,-73.99536,"(40.66159, -73.99536)",,,198 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410348,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,8:40,BROOKLYN,11226,40.650387,-73.95872,"(40.650387, -73.95872)",FLATBUSH AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410063,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,7:00,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Glare,Glare,Unspecified,,,4410279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/21/2021,12:50,MANHATTAN,10013,40.71762,-74.00028,"(40.71762, -74.00028)",WALKER STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410065,Sedan,,,, +03/31/2021,15:38,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,EAST MOUNT EDEN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4409705,,,,, +04/21/2021,16:20,MANHATTAN,10024,40.784355,-73.98117,"(40.784355, -73.98117)",WEST END AVENUE,WEST 79 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409309,Sedan,Bike,,, +04/21/2021,15:45,BRONX,10474,40.81672,-73.89241,"(40.81672, -73.89241)",,,880 GARRISON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409404,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,23:23,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409695,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,14:20,BROOKLYN,11207,40.65911,-73.89922,"(40.65911, -73.89922)",NEW LOTS AVENUE,VAN SIDERIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409556,Bus,,,, +04/23/2021,11:16,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409983,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,22:50,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,View Obstructed/Limited,,,4409668,Sedan,Sedan,Sedan,, +04/21/2021,8:10,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4409190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2021,21:05,MANHATTAN,10023,40.768562,-73.981575,"(40.768562, -73.981575)",,,1 CENTRAL PARK WEST,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4409827,Van,Sedan,,, +04/22/2021,10:15,MANHATTAN,10012,40.720936,-73.993805,"(40.720936, -73.993805)",BOWERY,SPRING STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4410154,Sedan,,,, +04/21/2021,9:57,BROOKLYN,11203,40.652973,-73.94401,"(40.652973, -73.94401)",LINDEN BOULEVARD,BROOKLYN AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4409331,Sedan,Sedan,,, +04/23/2021,13:00,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409805,Pick-up Truck,Tractor Truck Diesel,,, +04/21/2021,7:50,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409132,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,14:00,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4409859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,12:24,,,40.8451,-73.90931,"(40.8451, -73.90931)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4409796,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,12:45,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409286,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2021,17:30,MANHATTAN,10036,40.755802,-73.986404,"(40.755802, -73.986404)",WEST 42 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410055,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,8:30,,,40.594955,-73.78627,"(40.594955, -73.78627)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4409727,Sedan,Sedan,,, +04/22/2021,14:30,QUEENS,11105,40.777252,-73.89799,"(40.777252, -73.89799)",42 STREET,19 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4410110,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:04,BROOKLYN,11223,40.593327,-73.964645,"(40.593327, -73.964645)",OCEAN PARKWAY,AVENUE W,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4410445,Sedan,,,, +04/21/2021,14:00,MANHATTAN,10075,40.777676,-73.963234,"(40.777676, -73.963234)",5 AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409438,E-Scooter,Sedan,,, +04/23/2021,19:00,BROOKLYN,11201,40.688408,-73.98657,"(40.688408, -73.98657)",STATE STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410283,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,15:19,,,40.691074,-73.908806,"(40.691074, -73.908806)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4409916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,9:35,,,40.773037,-73.79566,"(40.773037, -73.79566)",26 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4409269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,22:58,,,40.691227,-73.98214,"(40.691227, -73.98214)",FLATBUSH AVENUE EXTENSION,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4409880,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/22/2021,14:40,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",ALLERTON AVENUE,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409749,Sedan,Sedan,,, +04/22/2021,16:00,,,40.699654,-73.74227,"(40.699654, -73.74227)",115 ROAD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4409635,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/23/2021,17:10,BRONX,10451,40.822742,-73.913895,"(40.822742, -73.913895)",,,416 EAST 159 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4410498,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,9:44,,,,,,18 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409525,Sedan,Bike,,, +04/21/2021,0:50,BROOKLYN,11226,40.644196,-73.95467,"(40.644196, -73.95467)",BEDFORD AVENUE,CORTELYOU ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410253,Taxi,Sedan,,, +04/22/2021,14:40,QUEENS,11378,40.733658,-73.90008,"(40.733658, -73.90008)",65 PLACE,52 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:49,QUEENS,11372,40.74947,-73.886856,"(40.74947, -73.886856)",,,79-14 37 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409975,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,23:10,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409363,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,0:05,MANHATTAN,10040,40.859325,-73.93132,"(40.859325, -73.93132)",BROADWAY,BENNETT AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4409475,Sedan,Open Body,,, +04/21/2021,16:15,BROOKLYN,11233,40.684315,-73.92299,"(40.684315, -73.92299)",,,165 RALPH AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410197,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,6:00,BROOKLYN,11234,,,,59 place,STRICKLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410401,Station Wagon/Sport Utility Vehicle,Bus,,, +04/23/2021,15:00,BROOKLYN,11212,40.67289,-73.906685,"(40.67289, -73.906685)",LIBERTY AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410100,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,13:05,BRONX,10466,40.88845,-73.841965,"(40.88845, -73.841965)",BAYCHESTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409533,Sedan,Van,,, +04/23/2021,9:02,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409820,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,8:00,MANHATTAN,10019,,,,12 AVENUE,WEST 57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409507,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,15:00,BRONX,10461,40.83981,-73.84649,"(40.83981, -73.84649)",FRISBY AVENUE,SAINT PETERS AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,Unspecified,,4409398,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/22/2021,15:25,BRONX,10468,40.870644,-73.89951,"(40.870644, -73.89951)",,,2785 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410214,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,14:42,BRONX,10464,40.848835,-73.787094,"(40.848835, -73.787094)",,,385 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409602,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,17:11,,,,,,GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/23/2021,16:22,,,40.7266,-73.93066,"(40.7266, -73.93066)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410437,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,13:30,QUEENS,11374,40.72229,-73.86732,"(40.72229, -73.86732)",WOODHAVEN BOULEVARD,63 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/21/2021,12:00,,,40.690865,-73.80253,"(40.690865, -73.80253)",LAKEWOOD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409351,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,18:30,,,40.629807,-74.14096,"(40.629807, -74.14096)",,,7 WALKER STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410333,Sedan,Sedan,,, +04/23/2021,12:32,QUEENS,11432,40.704697,-73.79681,"(40.704697, -73.79681)",JAMAICA AVENUE,163 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409791,Sedan,,,, +04/21/2021,13:20,,,40.77741,-73.978806,"(40.77741, -73.978806)",WEST 72 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4409623,Box Truck,,,, +04/23/2021,7:53,STATEN ISLAND,10312,40.52358,-74.187225,"(40.52358, -74.187225)",HYLAN BOULEVARD,IRVINGTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409776,Sedan,Sedan,,, +04/23/2021,8:00,QUEENS,11429,40.711395,-73.731186,"(40.711395, -73.731186)",,,223-25 103 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409865,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,17:53,,,40.741074,-73.7258,"(40.741074, -73.7258)",UNION TURNPIKE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409343,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,13:05,BROOKLYN,11230,40.615093,-73.96436,"(40.615093, -73.96436)",EAST 10 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410048,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,0:00,QUEENS,11434,40.683777,-73.76975,"(40.683777, -73.76975)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409106,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,16:30,BROOKLYN,11220,40.642445,-74.00592,"(40.642445, -74.00592)",7 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409649,Sedan,Ambulance,,, +04/23/2021,18:00,,,40.582287,-74.16907,"(40.582287, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410334,Pick-up Truck,,,, +04/22/2021,22:00,QUEENS,11691,40.593975,-73.77024,"(40.593975, -73.77024)",EDGEMERE AVENUE,BEACH 38 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4409732,Taxi,Sedan,Sedan,, +04/22/2021,11:43,BRONX,10455,40.816765,-73.90073,"(40.816765, -73.90073)",EAST 156 STREET,DAWSON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409931,Sedan,Sedan,,, +04/21/2021,11:28,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409239,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,18:45,BROOKLYN,11223,40.584873,-73.969154,"(40.584873, -73.969154)",WEST STREET,NIXON COURT,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410164,Sedan,Sedan,,, +04/22/2021,11:45,BROOKLYN,11212,40.65853,-73.919754,"(40.65853, -73.919754)",,,1092 LENOX ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4409848,Sedan,Sedan,Sedan,, +04/21/2021,17:00,BROOKLYN,11211,40.718155,-73.94839,"(40.718155, -73.94839)",,,395 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409377,Sedan,,,, +04/05/2021,23:00,MANHATTAN,10013,40.715557,-73.99826,"(40.715557, -73.99826)",,,70 BAYARD STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410115,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,19:30,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409717,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,17:50,BROOKLYN,11249,40.721397,-73.95605,"(40.721397, -73.95605)",BERRY STREET,NORTH 12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409681,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,14:30,,,,,,VAN WYCK EXPRESSWAY,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,15:49,,,40.66493,-73.9144,"(40.66493, -73.9144)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410094,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,17:30,BROOKLYN,11211,40.707954,-73.950615,"(40.707954, -73.950615)",,,252 UNION AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409891,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,16:50,,,40.841988,-73.84392,"(40.841988, -73.84392)",EAST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410524,Sedan,Bus,,, +04/23/2021,12:05,BROOKLYN,11219,40.62748,-74.00714,"(40.62748, -74.00714)",67 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4409801,Bike,,,, +04/23/2021,20:29,BRONX,10468,40.8589,-73.90357,"(40.8589, -73.90357)",,,2350 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409910,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/23/2021,13:50,BRONX,10456,40.830166,-73.90624,"(40.830166, -73.90624)",,,3480 3 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410136,E-Bike,Sedan,,, +09/14/2021,22:19,,,40.794353,-73.97836,"(40.794353, -73.97836)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Illnes,,,,,4457582,Sedan,,,, +04/22/2021,19:13,QUEENS,11375,40.71382,-73.85676,"(40.71382, -73.85676)",68 AVENUE,SELFRIDGE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4409759,Sedan,Bike,,, +04/18/2021,11:40,QUEENS,11432,40.704845,-73.80112,"(40.704845, -73.80112)",90 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409781,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/22/2021,17:30,BROOKLYN,11220,40.647064,-74.02263,"(40.647064, -74.02263)",1 AVENUE,56 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4410000,E-Bike,,,, +04/23/2021,19:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409966,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/16/2021,6:57,QUEENS,11373,40.748367,-73.87693,"(40.748367, -73.87693)",CASE STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410540,Sedan,Station Wagon/Sport Utility Vehicle,Flat Bed,, +04/21/2021,14:40,QUEENS,11417,40.67172,-73.850975,"(40.67172, -73.850975)",NORTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4409382,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/22/2021,16:23,BRONX,10451,40.82485,-73.911316,"(40.82485, -73.911316)",EAST 163 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4410107,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,19:45,QUEENS,11412,40.690063,-73.76018,"(40.690063, -73.76018)",190 STREET,118 ROAD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4409737,Sedan,,,, +04/23/2021,23:00,BROOKLYN,11212,40.66328,-73.90403,"(40.66328, -73.90403)",,,361 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4410089,Sedan,,,, +04/21/2021,15:30,QUEENS,11691,40.599503,-73.754074,"(40.599503, -73.754074)",BROOKHAVEN AVENUE,BEACH 20 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4409433,Pick-up Truck,Bus,,, +04/23/2021,10:40,BRONX,10455,40.811665,-73.909035,"(40.811665, -73.909035)",,,729 EAST 147 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410487,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,0:00,,,40.81632,-73.95783,"(40.81632, -73.95783)",WEST 126 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409591,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2021,12:05,,,40.671535,-73.957664,"(40.671535, -73.957664)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410322,Sedan,Box Truck,,, +04/22/2021,6:00,BRONX,10475,40.872494,-73.83314,"(40.872494, -73.83314)",,,600 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410121,Sedan,,,, +04/21/2021,4:30,MANHATTAN,10001,40.74915,-73.98828,"(40.74915, -73.98828)",AVENUE OF THE AMERICAS,WEST 33 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4409368,Sedan,Box Truck,,, +04/15/2021,1:50,BROOKLYN,11236,40.64378,-73.900826,"(40.64378, -73.900826)",,,1506 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409898,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,15:50,QUEENS,11420,40.667572,-73.8257,"(40.667572, -73.8257)",150 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4410240,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,10:00,QUEENS,11385,40.695976,-73.902374,"(40.695976, -73.902374)",,,1638 NORMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409943,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,8:10,BROOKLYN,11220,40.637203,-74.0222,"(40.637203, -74.0222)",SHORE ROAD DRIVE,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409326,Sedan,Sedan,,, +04/22/2021,11:15,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",REMSEN AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4409642,Sedan,Sedan,,, +04/22/2021,14:50,,,40.61821,-73.89728,"(40.61821, -73.89728)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409657,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2021,15:17,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,WASHINGTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410127,E-Bike,,,, +04/21/2021,15:30,BROOKLYN,11234,40.62531,-73.918884,"(40.62531, -73.918884)",,,1145 EAST 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410407,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,13:15,BROOKLYN,11233,40.678116,-73.92172,"(40.678116, -73.92172)",RALPH AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410193,Sedan,,,, +04/21/2021,20:15,MANHATTAN,10039,40.82815,-73.93491,"(40.82815, -73.93491)",MACOMBS PLACE,WEST 155 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4409467,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,16:48,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",VANNEST AVENUE,EAST TREMONT AVENUE,,4,0,0,0,0,0,4,0,View Obstructed/Limited,,,,,4409545,Taxi,,,, +04/21/2021,19:10,,,,,,G.C.P / L.I.E. (CDR),,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409387,Sedan,,,, +04/23/2021,8:21,STATEN ISLAND,10304,40.604572,-74.091125,"(40.604572, -74.091125)",,,1000 TARGEE STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4409744,Station Wagon/Sport Utility Vehicle,Bike,,, +04/10/2021,23:25,,,40.652916,-73.94498,"(40.652916, -73.94498)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4409876,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,20:09,,,40.869076,-73.93062,"(40.869076, -73.93062)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410220,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,21:30,QUEENS,11368,40.75233,-73.86264,"(40.75233, -73.86264)",,,104-17 37 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409945,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,16:25,BRONX,10460,40.83558,-73.886665,"(40.83558, -73.886665)",,,1680 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409417,Bus,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,16:30,MANHATTAN,10003,40.73485,-73.989975,"(40.73485, -73.989975)",,,10 UNION SQUARE EAST,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4409813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,11:09,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",GLENWOOD ROAD,UTICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4410405,Motorcycle,,,, +04/17/2021,4:30,BRONX,10466,40.895927,-73.855995,"(40.895927, -73.855995)",,,4305 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4410149,Sedan,Sedan,,, +04/23/2021,22:00,QUEENS,11420,40.67602,-73.81613,"(40.67602, -73.81613)",116 AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410231,Sedan,,,, +04/22/2021,12:23,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4409692,Sedan,Sedan,Taxi,, +04/23/2021,17:24,,,40.826397,-73.92116,"(40.826397, -73.92116)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Glare,Driver Inattention/Distraction,,,,4410423,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,16:00,QUEENS,11428,40.72026,-73.75234,"(40.72026, -73.75234)",211 STREET,90 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409869,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,15:52,,,40.68286,-73.97278,"(40.68286, -73.97278)",SOUTH OXFORD STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4409608,Taxi,Bike,,, +04/21/2021,13:00,QUEENS,11370,40.766785,-73.893105,"(40.766785, -73.893105)",ASTORIA BOULEVARD,76 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410106,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/23/2021,14:45,BRONX,10458,40.866047,-73.882744,"(40.866047, -73.882744)",BEDFORD PARK BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4409808,E-Bike,,,, +04/22/2021,21:13,BRONX,10456,40.830563,-73.91883,"(40.830563, -73.91883)",,,1055 SHERIDAN AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4409720,,,,, +04/21/2021,16:03,BRONX,10456,40.833153,-73.90913,"(40.833153, -73.90913)",,,1270 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409424,3-Door,,,, +04/23/2021,18:40,,,40.60058,-73.99161,"(40.60058, -73.99161)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,15:24,MANHATTAN,10024,40.789772,-73.97397,"(40.789772, -73.97397)",,,205 WEST 89 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4409713,Sedan,Box Truck,,, +04/22/2021,18:00,,,40.759514,-73.99926,"(40.759514, -73.99926)",WEST 40 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409616,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,1:05,MANHATTAN,10021,40.77012,-73.95741,"(40.77012, -73.95741)",EAST 74 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409057,,,,, +04/23/2021,1:45,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",SOUTH CONDUIT AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409677,Sedan,Sedan,,, +04/22/2021,11:00,QUEENS,11428,40.7217,-73.73017,"(40.7217, -73.73017)",,,94-30 225 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409925,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,15:10,BROOKLYN,11212,40.65634,-73.92137,"(40.65634, -73.92137)",EAST 92 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409852,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,18:45,BROOKLYN,11236,40.64634,-73.917496,"(40.64634, -73.917496)",,,8613 DITMAS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409845,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,18:25,QUEENS,11434,,,,Belt Parkway,150 street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,17:50,BROOKLYN,11214,40.61278,-73.996605,"(40.61278, -73.996605)",18 AVENUE,76 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4409348,Sedan,Sedan,,, +04/23/2021,9:00,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410173,Box Truck,E-Bike,,, +04/21/2021,20:06,BRONX,10461,40.85384,-73.8564,"(40.85384, -73.8564)",,,2024 HAIGHT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4409492,Sedan,,,, +04/21/2021,9:33,BROOKLYN,11217,40.67805,-73.98262,"(40.67805, -73.98262)",4 AVENUE,SACKETT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409225,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,14:55,BRONX,10475,40.890076,-73.819855,"(40.890076, -73.819855)",BOSTON ROAD,ROPES AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410181,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:47,BROOKLYN,11211,40.71206,-73.94737,"(40.71206, -73.94737)",LEONARD STREET,POWERS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409887,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,14:30,MANHATTAN,10023,40.776016,-73.98724,"(40.776016, -73.98724)",WEST 66 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4410308,Bike,Bike,,, +04/23/2021,20:45,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",VARICK STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409906,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/23/2021,4:43,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",EDSON AVENUE,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410202,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,11:32,BROOKLYN,11232,40.66401,-73.99771,"(40.66401, -73.99771)",3 AVENUE,21 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4409840,Sedan,E-Bike,,, +04/16/2021,15:39,,,40.760494,-73.8614,"(40.760494, -73.8614)",ASTORIA BOULEVARD,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410081,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,1:15,BROOKLYN,11218,,,,OCEAN PARKWAY,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409485,Station Wagon/Sport Utility Vehicle,,,, +03/17/2021,15:00,BROOKLYN,11212,40.67045,-73.911896,"(40.67045, -73.911896)",,,55 CHESTER STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4409961,Pick-up Truck,Sedan,Sedan,, +04/23/2021,18:06,BROOKLYN,11218,40.640415,-73.982925,"(40.640415, -73.982925)",14 AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410477,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,11:55,,,40.696686,-73.9378,"(40.696686, -73.9378)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410213,Sedan,,,, +04/08/2021,7:40,MANHATTAN,10027,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410186,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,23:11,BROOKLYN,11236,40.650402,-73.89422,"(40.650402, -73.89422)",GLENWOOD ROAD,EAST 108 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4409992,Station Wagon/Sport Utility Vehicle,Bike,,, +04/22/2021,16:40,,,40.7025,-73.814964,"(40.7025, -73.814964)",JAMAICA AVENUE,138 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4409788,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,18:30,QUEENS,11359,,,,duane road,totten avenue,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409661,Ambulance,,,, +04/23/2021,13:20,BRONX,10451,40.820515,-73.930695,"(40.820515, -73.930695)",EXTERIOR STREET,EAST 150 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410162,Tractor Truck Diesel,Sedan,,, +04/22/2021,14:30,,,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4409585,Station Wagon/Sport Utility Vehicle,Bus,Sedan,, +04/16/2021,1:42,BROOKLYN,11204,40.611156,-73.97534,"(40.611156, -73.97534)",,,2453 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409902,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,14:14,,,,,,SHORE ROAD,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409397,Sedan,,,, +04/16/2021,19:35,,,40.70022,-73.96219,"(40.70022, -73.96219)",KENT AVENUE,WILLIAMSBURG STREET WEST,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4410526,Sedan,,,, +04/21/2021,14:10,BROOKLYN,11205,40.69642,-73.95978,"(40.69642, -73.95978)",PARK AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410365,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,8:05,QUEENS,11103,40.761475,-73.91364,"(40.761475, -73.91364)",,,30-51 43 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410116,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,13:17,,,40.70921,-73.87017,"(40.70921, -73.87017)",80 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409939,Sedan,,,, +04/22/2021,13:30,BROOKLYN,11217,40.682907,-73.9848,"(40.682907, -73.9848)",NEVINS STREET,WARREN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409756,Sedan,,,, +04/21/2021,20:12,MANHATTAN,10002,40.712994,-73.98853,"(40.712994, -73.98853)",,,38 JEFFERSON STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409410,Sedan,E-Bike,,, +04/21/2021,10:00,,,40.829647,-73.94439,"(40.829647, -73.94439)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409769,Sedan,Sedan,,, +04/16/2021,18:30,BROOKLYN,11216,40.680717,-73.9463,"(40.680717, -73.9463)",MACDONOUGH STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410375,Sedan,,,, +04/23/2021,10:54,,,40.743137,-73.82973,"(40.743137, -73.82973)",HORACE HARDING EXPRESSWAY,136 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4410004,Sedan,Sedan,,, +04/23/2021,19:15,MANHATTAN,10022,40.758064,-73.97029,"(40.758064, -73.97029)",,,160 EAST 53 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4409872,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,18:45,BRONX,10469,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,EASTCHESTER ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409540,Sedan,,,, +04/21/2021,1:30,BRONX,10457,40.854477,-73.90125,"(40.854477, -73.90125)",EAST 181 STREET,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409439,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/08/2021,19:09,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4410419,Sedan,Tractor Truck Diesel,,, +04/21/2021,2:00,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",WEST GUN HILL ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4409265,Pick-up Truck,,,, +04/23/2021,20:26,BRONX,10458,40.856136,-73.89235,"(40.856136, -73.89235)",,,2334 WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4409951,Pick-up Truck,,,, +04/16/2021,18:45,BROOKLYN,11217,40.68876,-73.98085,"(40.68876, -73.98085)",FLATBUSH AVENUE,NEVINS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410280,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/12/2021,13:00,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4410017,Sedan,Sedan,Sedan,, +04/23/2021,11:47,BROOKLYN,11226,40.65245,-73.96345,"(40.65245, -73.96345)",SAINT PAULS PLACE,CROOKE AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4410066,Sedan,Sedan,,, +04/21/2021,23:49,BRONX,10463,,,,VANCORTLANDT PARK SOUTH,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4410226,Sedan,,,, +04/21/2021,10:30,,,40.637997,-74.02136,"(40.637997, -74.02136)",4 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409317,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,9:04,MANHATTAN,10009,40.73027,-73.97993,"(40.73027, -73.97993)",,,505 EAST 14 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410153,Bus,Sedan,,, +04/06/2021,22:30,,,40.842422,-73.928185,"(40.842422, -73.928185)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4409709,Sedan,Sedan,,, +04/21/2021,8:48,,,40.799957,-73.96053,"(40.799957, -73.96053)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409159,Sedan,,,, +04/23/2021,17:15,BROOKLYN,11203,40.653275,-73.92953,"(40.653275, -73.92953)",,,343 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410266,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,17:30,BRONX,10458,,,,MARION AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,,4409696,Sedan,E-Bike,Station Wagon/Sport Utility Vehicle,, +04/21/2021,23:29,,,40.828316,-73.93118,"(40.828316, -73.93118)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409454,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/23/2021,23:13,,,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410268,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,12:03,MANHATTAN,10024,40.784573,-73.971695,"(40.784573, -73.971695)",,,49 WEST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4409828,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/21/2021,18:15,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409373,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/16/2021,19:18,MANHATTAN,10030,40.815304,-73.94371,"(40.815304, -73.94371)",7 AVENUE,WEST 135 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4409741,Sedan,Sedan,,, +03/25/2021,15:30,MANHATTAN,10027,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4410340,Bus,Bike,,, +04/22/2021,15:30,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,15:00,QUEENS,11377,40.73573,-73.89324,"(40.73573, -73.89324)",51 AVENUE,71 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409673,Sedan,Sedan,,, +04/16/2021,8:01,QUEENS,11368,40.745502,-73.86806,"(40.745502, -73.86806)",,,43-03 JUNCTION BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409724,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,12:30,,,40.7847,-73.843056,"(40.7847, -73.843056)",15 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4409270,Sedan,,,, +04/21/2021,12:50,BROOKLYN,11219,40.62729,-74.0086,"(40.62729, -74.0086)",,,1071 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409327,Sedan,,,, +04/21/2021,13:00,BROOKLYN,11207,40.66228,-73.90003,"(40.66228, -73.90003)",VAN SIDERIN AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409551,Tractor Truck Diesel,Sedan,,, +04/23/2021,18:13,,,40.67948,-73.93291,"(40.67948, -73.93291)",FULTON STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4410198,Sedan,Taxi,,, +04/21/2021,21:00,MANHATTAN,10014,40.73189,-74.0038,"(40.73189, -74.0038)",7 AVENUE SOUTH,COMMERCE STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4409512,,,,, +04/18/2021,3:20,,,40.734737,-73.87227,"(40.734737, -73.87227)",57 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410465,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,11:20,,,,,,ELLINGTON PARKWAY,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409527,Station Wagon/Sport Utility Vehicle,,,, +02/10/2021,6:30,QUEENS,11378,40.723236,-73.912575,"(40.723236, -73.912575)",MASPETH AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409745,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,14:30,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4409855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,0:21,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4409155,Sedan,,,, +04/22/2021,16:00,BROOKLYN,11212,40.664818,-73.92221,"(40.664818, -73.92221)",,,735 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410074,Sedan,,,, +04/21/2021,15:30,,,40.666946,-73.79712,"(40.666946, -73.79712)",NORTH CONDUIT AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409784,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,15:30,QUEENS,11358,40.75904,-73.807945,"(40.75904, -73.807945)",43 AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4485261,Sedan,,,, +04/23/2021,22:08,QUEENS,11428,40.714878,-73.75046,"(40.714878, -73.75046)",210 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4409922,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/23/2021,9:10,QUEENS,11109,40.744698,-73.95667,"(40.744698, -73.95667)",,,4-74 48 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409877,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,23:00,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4409414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,23:30,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409752,Glass Rack,Sedan,,, +04/23/2021,23:45,BROOKLYN,11206,40.700813,-73.95447,"(40.700813, -73.95447)",LEE AVENUE,MIDDLETON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409884,Sedan,,,, +04/22/2021,10:21,MANHATTAN,10012,40.720936,-73.993805,"(40.720936, -73.993805)",SPRING STREET,BOWERY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410062,Sedan,,,, +04/23/2021,21:10,MANHATTAN,10065,40.766556,-73.96294,"(40.766556, -73.96294)",EAST 67 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Traffic Control Disregarded,,,,4410511,Sedan,Taxi,,, +04/18/2021,6:55,QUEENS,11385,40.704628,-73.87245,"(40.704628, -73.87245)",78 STREET,78 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409773,Sedan,Sedan,,, +04/22/2021,9:10,,,40.678238,-73.94415,"(40.678238, -73.94415)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410157,Taxi,Box Truck,,, +04/23/2021,4:45,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4409982,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,12:08,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409209,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,21:37,BROOKLYN,11212,40.661606,-73.92066,"(40.661606, -73.92066)",,,241A ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4410351,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:17,,,40.822834,-73.941925,"(40.822834, -73.941925)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4409750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/22/2021,14:30,STATEN ISLAND,10312,40.54581,-74.185555,"(40.54581, -74.185555)",,,275 SHELDON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410251,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,18:00,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410178,Sedan,,,, +04/22/2021,16:00,QUEENS,11377,40.757565,-73.90191,"(40.757565, -73.90191)",31 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410112,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/22/2021,1:15,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4409465,Tractor Truck Diesel,Sedan,,, +04/23/2021,20:25,BROOKLYN,11233,40.67879,-73.913635,"(40.67879, -73.913635)",,,171 BOYLAND STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4410095,Station Wagon/Sport Utility Vehicle,Bike,,, +04/21/2021,0:35,BROOKLYN,11203,40.65362,-73.933525,"(40.65362, -73.933525)",LINDEN BOULEVARD,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409123,Station Wagon/Sport Utility Vehicle,,,, +04/14/2021,2:00,,,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410323,Sedan,,,, +04/21/2021,16:55,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409336,Sedan,Bike,,, +04/22/2021,8:59,MANHATTAN,10022,40.761223,-73.96982,"(40.761223, -73.96982)",,,123 EAST 57 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409510,Sedan,Sedan,,, +04/23/2021,13:00,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4409800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:09,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409728,Sedan,Sedan,,, +04/23/2021,16:35,BROOKLYN,11212,40.654163,-73.91163,"(40.654163, -73.91163)",,,1 BROOKDALE PLAZA,0,0,0,0,0,0,0,0,Unspecified,,,,,4409860,Sedan,,,, +04/23/2021,15:43,BRONX,10461,40.83964,-73.84403,"(40.83964, -73.84403)",,,1411 OVERING STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2021,1:23,,,40.75361,-73.90393,"(40.75361, -73.90393)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410090,Sedan,Sedan,,, +04/21/2021,19:05,QUEENS,11106,40.760956,-73.93576,"(40.760956, -73.93576)",,,35-21 21 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410111,,,,, +04/21/2021,16:34,QUEENS,11691,40.596325,-73.76673,"(40.596325, -73.76673)",ROCKAWAY FREEWAY,SEAGIRT BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4409437,Station Wagon/Sport Utility Vehicle,Bus,,, +04/23/2021,11:40,BROOKLYN,11221,40.68607,-73.91605,"(40.68607, -73.91605)",WEIRFIELD STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409915,Flat Bed,Sedan,,, +04/21/2021,0:00,QUEENS,11417,40.676956,-73.83729,"(40.676956, -73.83729)",101 STREET,133 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4409253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/22/2021,18:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4409656,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/23/2021,22:34,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409879,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,16:22,BROOKLYN,11231,40.678486,-74.006195,"(40.678486, -74.006195)",DWIGHT STREET,DELEVAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409625,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,16:45,BRONX,10456,,,,Third Avenue,167 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410129,Sedan,,,, +04/23/2021,10:40,,,40.7418,-73.72815,"(40.7418, -73.72815)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,11:20,BROOKLYN,11222,40.722668,-73.93689,"(40.722668, -73.93689)",,,95 LOMBARDY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409378,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,13:30,MANHATTAN,10065,40.761787,-73.95745,"(40.761787, -73.95745)",YORK AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4409777,Sedan,Sedan,,, +04/22/2021,7:14,QUEENS,11356,40.778614,-73.83887,"(40.778614, -73.83887)",130 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4410013,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,9:40,QUEENS,11372,40.75644,-73.87701,"(40.75644, -73.87701)",NORTHERN BOULEVARD,91 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409970,Sedan,,,, +04/21/2021,19:03,,,40.71153,-73.95504,"(40.71153, -73.95504)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409364,Sedan,Sedan,,, +04/11/2021,18:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4409896,Sedan,Sedan,,, +04/22/2021,11:00,MANHATTAN,10016,40.748863,-73.97584,"(40.748863, -73.97584)",EAST 39 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409555,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2021,15:45,BROOKLYN,11206,40.696815,-73.936615,"(40.696815, -73.936615)",,,1102 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410196,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,17:40,BRONX,10463,40.87951,-73.9085,"(40.87951, -73.9085)",,,3032 CORLEAR AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4410223,Sedan,,,, +04/23/2021,19:18,BRONX,10458,40.856445,-73.891045,"(40.856445, -73.891045)",,,4615 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409950,Sedan,Sedan,,, +04/23/2021,14:27,BROOKLYN,11230,40.62386,-73.965,"(40.62386, -73.965)",,,1385 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410067,Taxi,,,, +04/23/2021,8:52,BROOKLYN,11237,40.69426,-73.91036,"(40.69426, -73.91036)",KNICKERBOCKER AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409913,Sedan,Sedan,,, +04/23/2021,11:50,BRONX,10474,40.812634,-73.88313,"(40.812634, -73.88313)",WHITTIER STREET,RANDALL AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410385,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,12:10,MANHATTAN,10035,40.802074,-73.93912,"(40.802074, -73.93912)",,,1990 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4409598,Station Wagon/Sport Utility Vehicle,MTA BUS,,, +04/21/2021,0:05,,,,,,BELT PARKWAY,,,6,0,0,0,0,0,6,0,View Obstructed/Limited,Failure to Yield Right-of-Way,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,4409383,Station Wagon/Sport Utility Vehicle,Sedan,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Sedan +04/22/2021,19:29,QUEENS,11423,40.717785,-73.76249,"(40.717785, -73.76249)",199 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4409782,Sedan,Sedan,,, +04/22/2021,20:00,BROOKLYN,11234,40.609867,-73.92239,"(40.609867, -73.92239)",,,5100 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410409,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,16:16,,,40.71827,-73.99072,"(40.71827, -73.99072)",ALLEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410080,Sedan,,,, +04/23/2021,12:00,QUEENS,11419,40.68343,-73.82661,"(40.68343, -73.82661)",115 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410239,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,9:40,BROOKLYN,11236,40.653732,-73.91327,"(40.653732, -73.91327)",,,607 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410530,Sedan,,,, +04/23/2021,3:10,QUEENS,11385,40.705715,-73.91259,"(40.705715, -73.91259)",,,483 SENECA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409940,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,21:15,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409733,E-Scooter,,,, +04/22/2021,15:00,BROOKLYN,11216,40.681446,-73.94644,"(40.681446, -73.94644)",MARCY AVENUE,MACON STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410363,Station Wagon/Sport Utility Vehicle,Bike,,, +04/21/2021,8:50,,,40.883476,-73.868256,"(40.883476, -73.868256)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409242,Sedan,Sedan,Sedan,, +04/20/2021,15:00,BRONX,10475,40.87877,-73.824036,"(40.87877, -73.824036)",,,140 CASALS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409718,Pick-up Truck,,,, +04/21/2021,9:00,,,40.630333,-74.0405,"(40.630333, -74.0405)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4409180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/22/2021,16:35,,,,,,BAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4409667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,8:26,,,40.820255,-73.94562,"(40.820255, -73.94562)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4409473,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/23/2021,17:12,BRONX,10452,40.8347,-73.91827,"(40.8347, -73.91827)",EAST 167 STREET,GRAND VIEW PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4410172,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/23/2021,7:50,QUEENS,11379,40.715595,-73.896904,"(40.715595, -73.896904)",,,61-40 MOUNT OLIVET CRESCENT,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409765,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,11:28,,,40.765137,-73.81944,"(40.765137, -73.81944)",NORTHERN BOULEVARD,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4409804,Sedan,Sedan,,, +12/08/2021,14:19,,,40.767803,-73.95601,"(40.767803, -73.95601)",EAST 72 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4484840,Sedan,Bike,,, +04/21/2021,9:45,,,40.687138,-73.75136,"(40.687138, -73.75136)",197 STREET,122 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409296,Sedan,,,, +04/22/2021,2:11,,,40.588562,-74.14584,"(40.588562, -74.14584)",ROCKLAND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,15:00,BRONX,10460,40.834637,-73.89443,"(40.834637, -73.89443)",BOSTON ROAD,STEBBINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410138,Sedan,,,, +04/23/2021,12:33,BRONX,10452,40.83661,-73.92234,"(40.83661, -73.92234)",GRANT HIGHWAY,JEROME AVENUE,,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4409815,Sedan,Moped,,, +04/21/2021,23:00,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409503,Sedan,Sedan,,, +04/21/2021,22:52,,,40.848114,-73.901474,"(40.848114, -73.901474)",EAST TREMONT AVENUE,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409431,Sedan,Sedan,,, +04/10/2021,0:01,,,40.669434,-73.9255,"(40.669434, -73.9255)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Aggressive Driving/Road Rage,Unspecified,,,4410327,Sedan,Sedan,Sedan,, +04/23/2021,16:30,QUEENS,11434,40.688698,-73.781494,"(40.688698, -73.781494)",167 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409832,Sedan,Sedan,,, +04/23/2021,21:17,,,,,,MC GUINNESS BLVD SOUTH,Calyer Street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410443,Pick-up Truck,Tractor Truck Diesel,,, +04/15/2021,17:50,BRONX,10456,40.834126,-73.916664,"(40.834126, -73.916664)",SHERIDAN AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410424,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +04/21/2021,0:10,,,,,,109 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4409168,Pick-up Truck,Sedan,,, +04/21/2021,8:35,MANHATTAN,10036,40.757656,-73.99079,"(40.757656, -73.99079)",,,329 WEST 42 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4409107,Bus,,,, +04/21/2021,19:10,QUEENS,11422,40.659576,-73.739494,"(40.659576, -73.739494)",,,243-11 145 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409342,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,14:36,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410049,Sedan,Sedan,,, +04/22/2021,12:50,BRONX,10452,40.83383,-73.921234,"(40.83383, -73.921234)",GERARD AVENUE,MCCLELLAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409704,Sedan,Box Truck,,, +04/21/2021,18:00,BRONX,10459,40.821415,-73.88933,"(40.821415, -73.88933)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,17:00,,,,,,EAST 23 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4409305,Sedan,Sedan,,, +04/21/2021,12:00,BRONX,10457,40.8468,-73.89414,"(40.8468, -73.89414)",,,1974 LAFONTAINE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409792,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,12:00,QUEENS,11429,40.713303,-73.73586,"(40.713303, -73.73586)",SPRINGFIELD BOULEVARD,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409634,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,7:30,,,40.55247,-74.21878,"(40.55247, -74.21878)",ZEBRA PLACE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4409651,Dump,,,, +04/21/2021,22:10,BROOKLYN,11203,40.639793,-73.929115,"(40.639793, -73.929115)",UTICA AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409847,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,18:51,BRONX,10474,40.819126,-73.88579,"(40.819126, -73.88579)",SENECA AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4409932,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,19:15,MANHATTAN,10026,40.80255,-73.95092,"(40.80255, -73.95092)",,,141 WEST 116 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409561,Sedan,Sedan,,, +04/23/2021,22:43,,,40.677017,-73.92182,"(40.677017, -73.92182)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410191,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:15,BROOKLYN,11249,40.711445,-73.96414,"(40.711445, -73.96414)",,,109 SOUTH 5 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409892,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,18:59,BROOKLYN,11234,40.63021,-73.93294,"(40.63021, -73.93294)",KINGS HIGHWAY,AVENUE I,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410398,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,17:20,BROOKLYN,11222,40.72304,-73.94837,"(40.72304, -73.94837)",,,92 ECKFORD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409684,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/09/2021,12:30,MANHATTAN,10028,40.780857,-73.958824,"(40.780857, -73.958824)",EAST 86 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4409797,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2021,20:29,,,40.85432,-73.92826,"(40.85432, -73.92826)",WEST 190 STREET,,,2,0,1,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4410219,Bike,,,, +04/22/2021,11:26,QUEENS,11374,40.711796,-73.85952,"(40.711796, -73.85952)",,,90-30 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409760,Sedan,,,, +04/16/2021,7:40,QUEENS,11377,40.74135,-73.89189,"(40.74135, -73.89189)",,,72-16 44 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409995,Sedan,,,, +04/23/2021,6:10,QUEENS,11368,40.755913,-73.8643,"(40.755913, -73.8643)",34 AVENUE,104 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4409967,Sedan,Sedan,,, +04/21/2021,15:20,QUEENS,11435,40.693344,-73.80228,"(40.693344, -73.80228)",WALTHAM STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4409352,Sedan,Sedan,Sedan,, +04/21/2021,20:20,MANHATTAN,10010,40.73817,-73.97761,"(40.73817, -73.97761)",EAST 25 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410287,Bike,Sedan,,, +04/21/2021,22:50,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409592,Sedan,Sedan,,, +04/21/2021,1:00,BRONX,10455,40.81014,-73.908226,"(40.81014, -73.908226)",EAST 145 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410489,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,13:50,BROOKLYN,11235,40.59178,-73.95901,"(40.59178, -73.95901)",AVENUE X,EAST 12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409701,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/21/2021,14:18,,,40.840927,-73.912704,"(40.840927, -73.912704)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409458,Sedan,Sedan,,, +04/18/2021,21:10,,,40.70324,-73.92615,"(40.70324, -73.92615)",KNICKERBOCKER AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4409714,Bike,,,, +04/21/2021,13:35,MANHATTAN,10013,40.716812,-73.99777,"(40.716812, -73.99777)",MOTT STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410120,Sedan,TRK,,, +04/19/2021,21:00,,,40.69496,-73.946236,"(40.69496, -73.946236)",TOMPKINS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410372,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,19:00,BROOKLYN,11212,40.65733,-73.917274,"(40.65733, -73.917274)",WILLMOHR STREET,EAST 96 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409861,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,9:22,QUEENS,11691,40.60224,-73.75416,"(40.60224, -73.75416)",CORNAGA AVENUE,BEACH 21 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4409729,Bus,Sedan,,, +04/21/2021,15:15,BROOKLYN,11203,40.64186,-73.93394,"(40.64186, -73.93394)",,,4517 AVENUE D,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4409846,Sedan,Sedan,,, +04/23/2021,7:41,QUEENS,11358,40.763645,-73.790276,"(40.763645, -73.790276)",CROCHERON AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4409824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/21/2021,11:15,BROOKLYN,11215,40.672855,-73.97993,"(40.672855, -73.97993)",6 AVENUE,1 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4409232,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,8:30,QUEENS,11367,40.732002,-73.824524,"(40.732002, -73.824524)",68 DRIVE,MAIN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409495,Sedan,,,, +04/22/2021,15:31,BRONX,10454,40.80735,-73.90651,"(40.80735, -73.90651)",,,415 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4409672,Sedan,PK,,, +04/21/2021,18:27,QUEENS,11691,40.598206,-73.74815,"(40.598206, -73.74815)",BEACH 14 STREET,NEW HAVEN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409440,Sedan,,,, +04/21/2021,8:09,BROOKLYN,11226,40.65423,-73.948845,"(40.65423, -73.948845)",,,315 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4409208,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,14:48,,,40.593327,-73.964645,"(40.593327, -73.964645)",AVENUE W,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409273,Sedan,Sedan,Sedan,, +04/15/2021,9:00,QUEENS,11368,40.750275,-73.86447,"(40.750275, -73.86447)",,,101-19 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410549,Sedan,,,, +04/23/2021,10:15,QUEENS,11436,40.667976,-73.79814,"(40.667976, -73.79814)",135 AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,Unspecified,Unspecified,,4409819,Box Truck,Box Truck,Sedan,Sedan, +04/22/2021,1:35,,,40.772102,-73.763954,"(40.772102, -73.763954)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4409536,Sedan,,,, +04/21/2021,13:23,BROOKLYN,11220,40.648308,-74.01412,"(40.648308, -74.01412)",3 AVENUE,49 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4409529,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,10:05,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4409163,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,19:05,BROOKLYN,11236,40.633976,-73.90259,"(40.633976, -73.90259)",,,8703 AVENUE L,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409836,,,,, +04/23/2021,17:45,,,40.576393,-73.9869,"(40.576393, -73.9869)",WEST 20 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410464,Station Wagon/Sport Utility Vehicle,Motorbike,,, +04/21/2021,11:00,QUEENS,11365,40.729618,-73.79606,"(40.729618, -73.79606)",,,70-59 174 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409685,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,11:58,BROOKLYN,11205,40.697716,-73.96488,"(40.697716, -73.96488)",FLUSHING AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409787,COMMERCIAL,,,, +04/21/2021,6:00,BROOKLYN,11212,40.672813,-73.903786,"(40.672813, -73.903786)",,,91 JUNIUS STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410099,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,10:20,,,40.609627,-74.14955,"(40.609627, -74.14955)",VICTORY BOULEVARD,NORTH GANNON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410332,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/23/2021,17:15,,,40.754745,-73.9879,"(40.754745, -73.9879)",WEST 40 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4410044,Bike,,,, +04/21/2021,17:50,STATEN ISLAND,10305,40.597607,-74.078,"(40.597607, -74.078)",,,37 KENSINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409719,Sedan,Sedan,,, +04/22/2021,14:00,,,40.698418,-73.80106,"(40.698418, -73.80106)",LIBERTY AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4409587,Sedan,Flat Bed,,, +04/16/2021,14:43,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4409740,Sedan,Flat Bed,,, +04/21/2021,9:00,QUEENS,11373,40.74766,-73.88257,"(40.74766, -73.88257)",GLEANE STREET,BAXTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409386,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,18:20,QUEENS,11429,40.714252,-73.746574,"(40.714252, -73.746574)",,,212-11 99 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409640,Sedan,,,, +04/22/2021,20:25,,,40.71865,-73.83771,"(40.71865, -73.83771)",QUEENS BOULEVARD,75 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4409644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,1:37,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409062,Carry All,,,, +04/22/2021,15:15,QUEENS,11368,40.747795,-73.85526,"(40.747795, -73.85526)",,,109-39 46 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409708,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,18:05,QUEENS,11004,40.74585,-73.714195,"(40.74585, -73.714195)",,,257-15 UNION TURNPIKE,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4457285,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,23:14,BRONX,10451,40.81488,-73.92886,"(40.81488, -73.92886)",GRAND CONCOURSE,EAST 140 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410492,Sedan,Sedan,,, +04/21/2021,18:22,BROOKLYN,11215,40.675682,-73.97858,"(40.675682, -73.97858)",,,785 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409425,Sedan,,,, +04/16/2021,19:30,,,40.61859,-73.94242,"(40.61859, -73.94242)",KINGS HIGHWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4409755,Sedan,,,, +04/20/2021,17:30,BRONX,10459,40.82101,-73.89722,"(40.82101, -73.89722)",,,925 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409928,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,7:10,BROOKLYN,11228,40.61847,-74.021225,"(40.61847, -74.021225)",7 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409678,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/21/2021,22:00,,,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,,,4,0,0,0,0,0,4,0,Aggressive Driving/Road Rage,Unspecified,,,,4409772,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,15:30,BROOKLYN,11204,40.610523,-73.981186,"(40.610523, -73.981186)",AVENUE O,WEST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409347,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,14:12,MANHATTAN,10021,40.771065,-73.95965,"(40.771065, -73.95965)",3 AVENUE,EAST 74 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410501,Sedan,Bike,,, +04/22/2021,8:00,BRONX,10469,40.86814,-73.83369,"(40.86814, -73.83369)",,,1930 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409541,Sedan,,,, +04/22/2021,19:50,BROOKLYN,11212,40.66331,-73.92106,"(40.66331, -73.92106)",EAST 98 STREET,WINTHROP STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409851,FDNY Ambul,,,, +04/22/2021,23:39,BROOKLYN,11211,40.714455,-73.935295,"(40.714455, -73.935295)",MORGAN AVENUE,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409888,Sedan,,,, +04/22/2021,16:52,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410404,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,10:00,BROOKLYN,11216,40.678604,-73.94969,"(40.678604, -73.94969)",,,588 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4410188,Flat Bed,,,, +04/23/2021,8:18,MANHATTAN,10010,40.73883,-73.983154,"(40.73883, -73.983154)",EAST 23 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4409814,Bus,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:30,,,40.678165,-73.746506,"(40.678165, -73.746506)",MERRICK BOULEVARD,223 STREET,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,,,4410147,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/16/2021,7:40,,,40.620438,-74.1672,"(40.620438, -74.1672)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,16:15,BRONX,10468,40.86983,-73.90188,"(40.86983, -73.90188)",,,2723 WEBB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410235,Sedan,Van,,, +12/17/2021,9:45,BROOKLYN,11221,40.683567,-73.94106,"(40.683567, -73.94106)",HANCOCK STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487276,Pick-up Truck,,,, +04/23/2021,17:50,,,40.57257,-74.169876,"(40.57257, -74.169876)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,23:50,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4409372,Station Wagon/Sport Utility Vehicle,Carry All,Tractor Truck Diesel,, +09/14/2021,16:10,BRONX,10455,40.8168,-73.89705,"(40.8168, -73.89705)",FOX STREET,LONGWOOD AVENUE,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,,,,4457233,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,16:00,BRONX,10458,,,,EAST BEDFORD PARK BOULEVARD,DECATUR AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4409697,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/23/2021,18:00,QUEENS,11423,40.71307,-73.77527,"(40.71307, -73.77527)",89 AVENUE,186 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409829,Sedan,,,, +04/22/2021,6:00,QUEENS,11368,40.749752,-73.86624,"(40.749752, -73.86624)",,,99-11 39 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409809,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,20:49,BRONX,10459,40.82789,-73.89821,"(40.82789, -73.89821)",PROSPECT AVENUE,HOME STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410124,MOPED,,,, +04/23/2021,23:25,,,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4410324,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,15:00,,,40.739902,-73.972855,"(40.739902, -73.972855)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410343,Sedan,Sedan,,, +04/23/2021,18:38,QUEENS,11377,40.742516,-73.91692,"(40.742516, -73.91692)",,,45-25 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409878,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,17:18,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409746,Sedan,Sedan,,, +04/23/2021,22:42,BROOKLYN,11218,40.64295,-73.977325,"(40.64295, -73.977325)",BEVERLEY ROAD,EAST 3 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4410058,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/23/2021,17:10,,,40.65108,-73.97163,"(40.65108, -73.97163)",PARK CIRCLE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409841,Sedan,Ambulance,,, +04/23/2021,11:05,BROOKLYN,11212,40.6691,-73.911545,"(40.6691, -73.911545)",,,95 CHESTER STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4410091,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,19:54,,,40.688904,-73.754456,"(40.688904, -73.754456)",120 AVENUE,195 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4409957,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,8:40,,,40.697735,-73.96093,"(40.697735, -73.96093)",TAAFFE PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410158,Moped,Moped,,, +04/23/2021,19:50,BROOKLYN,11205,40.69474,-73.97805,"(40.69474, -73.97805)",,,74 SAINT EDWARDS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409873,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,16:03,BROOKLYN,11230,40.61661,-73.96073,"(40.61661, -73.96073)",,,1352 EAST 14 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410312,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,18:00,BROOKLYN,11238,40.674664,-73.97025,"(40.674664, -73.97025)",,,10 GRAND ARMY PLAZA,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409418,Station Wagon/Sport Utility Vehicle,Bus,,, +04/21/2021,14:20,BROOKLYN,11212,40.664707,-73.90948,"(40.664707, -73.90948)",,,628 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409263,Sedan,Box Truck,,, +04/21/2021,8:30,BROOKLYN,11210,40.615086,-73.952385,"(40.615086, -73.952385)",EAST 22 STREET,BAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409148,Sedan,Box Truck,,, +04/21/2021,12:15,,,40.868496,-73.92173,"(40.868496, -73.92173)",COOPER STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409487,Sedan,Bus,,, +04/21/2021,15:30,,,40.665947,-73.8735,"(40.665947, -73.8735)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409552,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,13:08,BROOKLYN,11209,40.623463,-74.025116,"(40.623463, -74.025116)",,,8304 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409328,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,6:30,BROOKLYN,11232,40.66919,-73.99682,"(40.66919, -73.99682)",15 STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4409315,Sedan,Sedan,Sedan,, +04/22/2021,9:30,QUEENS,11421,40.692726,-73.85558,"(40.692726, -73.85558)",89 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4409514,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,22:13,QUEENS,11364,40.737587,-73.76841,"(40.737587, -73.76841)",73 AVENUE,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2021,23:30,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4410227,Sedan,Sedan,,, +04/23/2021,11:35,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409856,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,13:25,BRONX,10467,40.86946,-73.87987,"(40.86946, -73.87987)",,,3016 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409921,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,9:05,QUEENS,11366,40.726482,-73.79824,"(40.726482, -73.79824)",171 STREET,76 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2021,20:00,QUEENS,11377,40.760143,-73.907005,"(40.760143, -73.907005)",50 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,,,,,,4410105,,,,, +04/21/2021,14:15,,,40.710472,-73.960945,"(40.710472, -73.960945)",SOUTH 5 PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409367,Sedan,,,, +04/21/2021,14:00,MANHATTAN,10128,40.78257,-73.94522,"(40.78257, -73.94522)",1 AVENUE,EAST 95 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409394,Station Wagon/Sport Utility Vehicle,Bike,,, +04/22/2021,16:22,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4409660,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,17:15,QUEENS,11369,40.76301,-73.87532,"(40.76301, -73.87532)",ASTORIA BOULEVARD,94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4409618,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,15:05,QUEENS,11434,40.666637,-73.76715,"(40.666637, -73.76715)",,,144-43 FARMERS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409736,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:55,,,40.75727,-73.74765,"(40.75727, -73.74765)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409901,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,10:45,STATEN ISLAND,10307,40.51583,-74.233536,"(40.51583, -74.233536)",,,7001 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,7:45,,,40.84649,-73.932205,"(40.84649, -73.932205)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409751,Van,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,1:45,QUEENS,11357,40.7858,-73.821915,"(40.7858, -73.821915)",PARSONS BOULEVARD,15 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4409409,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,11:32,BROOKLYN,11211,40.71473,-73.94208,"(40.71473, -73.94208)",BUSHWICK AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409883,Sedan,,,, +04/20/2021,4:40,QUEENS,11385,40.71388,-73.921646,"(40.71388, -73.921646)",,,46-81 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409768,Box Truck,,,, +04/21/2021,19:10,QUEENS,11432,40.713,-73.78237,"(40.713, -73.78237)",HILLSIDE AVENUE,MIDLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409353,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,14:15,BROOKLYN,11231,40.67897,-74.00831,"(40.67897, -74.00831)",VERONA STREET,RICHARDS STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4409723,PSD,COM,,, +04/22/2021,18:30,BRONX,10467,40.884735,-73.86123,"(40.884735, -73.86123)",,,719 EAST 221 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:10,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4409981,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/22/2021,9:17,MANHATTAN,10002,,,,delancey street,bialystoker place,,1,0,1,0,0,0,0,0,Unspecified,,,,,4409593,Sedan,,,, +04/22/2021,11:27,BROOKLYN,11234,40.620262,-73.90915,"(40.620262, -73.90915)",,,2039 EAST 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410413,Sedan,,,, +04/23/2021,15:10,,,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410025,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,6:00,MANHATTAN,10010,40.737007,-73.98157,"(40.737007, -73.98157)",,,375 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410152,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,15:12,BROOKLYN,11226,40.65415,-73.949936,"(40.65415, -73.949936)",NOSTRAND AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410376,Bus,Sedan,,, +04/22/2021,21:15,BRONX,10467,40.882015,-73.8662,"(40.882015, -73.8662)",EAST 216 STREET,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410203,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,13:35,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409907,Sedan,Tractor Truck Diesel,,, +04/22/2021,14:20,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4409607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/23/2021,8:40,BROOKLYN,11212,40.667156,-73.9101,"(40.667156, -73.9101)",ROCKAWAY AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410085,Sedan,,,, +04/23/2021,9:00,,,40.700478,-73.92534,"(40.700478, -73.92534)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4409914,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,5:08,,,40.739143,-73.90109,"(40.739143, -73.90109)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4409868,Sedan,,,, +04/23/2021,10:15,,,40.692463,-73.81082,"(40.692463, -73.81082)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409778,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,19:38,BRONX,10469,40.87821,-73.85609,"(40.87821, -73.85609)",PAULDING AVENUE,EAST 215 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410270,Sedan,Sedan,,, +04/22/2021,7:30,BROOKLYN,11206,40.70219,-73.928345,"(40.70219, -73.928345)",WILSON AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409630,Sedan,,,, +04/21/2021,16:35,BROOKLYN,11222,40.726105,-73.94615,"(40.726105, -73.94615)",,,20 JEWEL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409379,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,19:35,BRONX,10458,40.858418,-73.88514,"(40.858418, -73.88514)",EAST FORDHAM ROAD,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457748,Sedan,,,, +09/13/2021,17:30,MANHATTAN,10035,40.79699,-73.93563,"(40.79699, -73.93563)",,,349 EAST 117 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457773,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,13:21,MANHATTAN,10029,40.7905,-73.94755,"(40.7905, -73.94755)",,,1635 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457420,Sedan,,,, +09/14/2021,17:40,QUEENS,11423,40.712856,-73.76802,"(40.712856, -73.76802)",192 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457536,Sedan,E-Bike,,, +09/14/2021,13:45,BROOKLYN,11220,40.633198,-74.013466,"(40.633198, -74.013466)",,,761 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457309,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,13:00,BROOKLYN,11203,40.65631,-73.947266,"(40.65631, -73.947266)",,,720 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457972,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,21:00,MANHATTAN,10019,40.7688,-73.99249,"(40.7688, -73.99249)",,,790 11 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457344,Sedan,,,, +09/14/2021,18:05,BROOKLYN,11219,40.628845,-73.99855,"(40.628845, -73.99855)",60 STREET,13 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457824,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,7:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457650,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,12:40,BRONX,10474,40.813213,-73.89098,"(40.813213, -73.89098)",TIFFANY STREET,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457875,Chassis Cab,,,, +09/14/2021,15:25,MANHATTAN,10009,40.72804,-73.98082,"(40.72804, -73.98082)",,,539 EAST 11 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457354,Flat Bed,,,, +09/10/2021,19:52,,,40.732925,-74.00007,"(40.732925, -74.00007)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457863,Bike,Sedan,,, +09/14/2021,12:20,,,,,,SHELL ROAD,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4457711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,2:42,QUEENS,11004,40.749798,-73.70587,"(40.749798, -73.70587)",,,267-04 78 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456978,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,16:30,MANHATTAN,10011,40.745228,-74.00597,"(40.745228, -74.00597)",WEST 19 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457797,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/12/2021,14:48,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4457749,Sedan,Motorscooter,,, +09/14/2021,17:42,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4457267,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +09/14/2021,14:00,BRONX,10460,40.83279,-73.88523,"(40.83279, -73.88523)",,,1500 BOONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457458,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,8:20,QUEENS,11422,40.66528,-73.73562,"(40.66528, -73.73562)",SOUTH CONDUIT AVENUE,243 STREET,,9,0,0,0,0,0,9,0,Driver Inattention/Distraction,Unspecified,,,,4457148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,14:55,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457435,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,10:22,MANHATTAN,10035,40.795624,-73.93244,"(40.795624, -73.93244)",,,512 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457780,Sedan,Sedan,,, +09/14/2021,15:07,,,,,,,,1129 Nostrand,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4457569,Sedan,,,, +09/14/2021,18:45,BRONX,10455,40.81346,-73.90605,"(40.81346, -73.90605)",TINTON AVENUE,EAST 150 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457316,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,12:18,QUEENS,11691,40.606396,-73.75176,"(40.606396, -73.75176)",AUGUSTINA AVENUE,BAYPORT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457330,Bus,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,0:00,QUEENS,11373,40.737156,-73.87941,"(40.737156, -73.87941)",VANLOON STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457514,Sedan,Box Truck,,, +09/14/2021,15:43,MANHATTAN,10065,40.765026,-73.9632,"(40.765026, -73.9632)",,,220 EAST 65 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457381,Sedan,,,, +09/14/2021,16:00,,,0,0,"(0.0, 0.0)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4457203,Sedan,,,, +09/14/2021,13:30,,,,,,FLATBUSH AVENUE,PLAZA STREET WEST,,2,0,0,0,0,0,2,0,Other Vehicular,View Obstructed/Limited,View Obstructed/Limited,,,4457230,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/28/2021,22:10,MANHATTAN,10011,40.734974,-74.000145,"(40.734974, -74.000145)",,,24 GREENWICH AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4457859,Taxi,Sedan,,, +09/14/2021,6:30,QUEENS,11434,40.687016,-73.77487,"(40.687016, -73.77487)",MERRICK BOULEVARD,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457110,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,15:05,,,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4457831,Sedan,Box Truck,,, +09/14/2021,21:00,QUEENS,11370,40.760044,-73.89756,"(40.760044, -73.89756)",70 STREET,30 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4457396,Sedan,Sedan,,, +09/14/2021,8:45,,,40.705658,-73.93171,"(40.705658, -73.93171)",MORGAN AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457295,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/14/2021,17:31,QUEENS,11374,40.7293,-73.862854,"(40.7293, -73.862854)",63 DRIVE,SAUNDERS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457966,Sedan,,,, +09/01/2021,9:50,MANHATTAN,10016,40.74074,-73.97601,"(40.74074, -73.97601)",,,333 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,19:20,BROOKLYN,11219,40.633904,-73.99329,"(40.633904, -73.99329)",13 AVENUE,51 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457882,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,9:10,,,,,,69 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457206,Sedan,,,, +09/14/2021,15:18,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",FLATLANDS AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457235,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,16:24,,,40.66003,-73.92179,"(40.66003, -73.92179)",CLARKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457541,Station Wagon/Sport Utility Vehicle,Bus,,, +09/14/2021,12:15,BROOKLYN,11208,40.67539,-73.88113,"(40.67539, -73.88113)",SHEPHERD AVENUE,GLENMORE AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457481,Sedan,E-Bike,,, +09/14/2021,19:20,BROOKLYN,11207,40.65866,-73.89046,"(40.65866, -73.89046)",,,1939 LINDEN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4457486,Motorbike,,,, +08/30/2021,20:11,,,40.66807,-73.950676,"(40.66807, -73.950676)",NOSTRAND AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457975,Sedan,E-Bike,,, +09/14/2021,8:15,,,40.79072,-73.81009,"(40.79072, -73.81009)",12 ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457102,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,21:30,,,40.787025,-73.793,"(40.787025, -73.793)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4457334,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/14/2021,5:00,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",82 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4457140,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,18:35,,,40.752724,-73.996796,"(40.752724, -73.996796)",WEST 33 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4457407,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,9:30,QUEENS,11374,40.72921,-73.85218,"(40.72921, -73.85218)",,,66-01 102 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:50,QUEENS,,0,0,"(0.0, 0.0)",,,238-10 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,19:35,QUEENS,11378,40.7248,-73.89741,"(40.7248, -73.89741)",,,66-66 GRAND AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487844,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,13:22,MANHATTAN,10001,40.746223,-73.98906,"(40.746223, -73.98906)",,,44 WEST 29 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457895,Sedan,,,, +09/14/2021,14:48,MANHATTAN,10065,40.764107,-73.96682,"(40.764107, -73.96682)",EAST 62 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457376,Sedan,,,, +09/14/2021,12:52,BRONX,10472,40.825912,-73.86249,"(40.825912, -73.86249)",,,1825 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457189,Sedan,Bus,,, +09/13/2021,8:40,MANHATTAN,10035,40.797306,-73.93446,"(40.797306, -73.93446)",EAST 118 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4457772,Bike,,,, +09/14/2021,8:45,QUEENS,11368,40.738373,-73.86008,"(40.738373, -73.86008)",99 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457730,Sedan,,,, +09/14/2021,9:30,BROOKLYN,11211,40.71045,-73.95686,"(40.71045, -73.95686)",BORINQUEN PLACE,SOUTH 3 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457299,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/14/2021,22:29,,,40.66157,-73.91548,"(40.66157, -73.91548)",SARATOGA AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457278,Sedan,E-Scooter,,, +09/14/2021,11:00,BROOKLYN,11203,40.64957,-73.93887,"(40.64957, -73.93887)",ALBANY AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457553,Sedan,,,, +09/14/2021,10:18,STATEN ISLAND,10304,40.619907,-74.08591,"(40.619907, -74.08591)",VANDUZER STREET,LAUREL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4457622,Sedan,Sedan,Sedan,, +09/14/2021,16:10,BROOKLYN,11229,40.59758,-73.94813,"(40.59758, -73.94813)",EAST 23 STREET,AVENUE V,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457304,Ambulance,,,, +09/14/2021,15:20,,,40.620235,-74.16535,"(40.620235, -74.16535)",GOETHALS ROAD NORTH,FARRAGUT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457910,Sedan,,,, +09/14/2021,14:15,BRONX,10474,40.8169,-73.88631,"(40.8169, -73.88631)",,,1318 LAFAYETTE AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4457180,Sedan,E-Bike,,, +09/12/2021,22:20,BRONX,10459,40.822445,-73.885666,"(40.822445, -73.885666)",,,1360 BRUCKNER BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,,,,,4457873,Bike,,,, +09/14/2021,11:30,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,TRANTOR PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457128,Pick-up Truck,,,, +09/13/2021,17:37,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457783,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,16:24,BROOKLYN,11215,40.674652,-73.98009,"(40.674652, -73.98009)",,,664 CARROLL STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4487611,Sedan,Bus,,, +09/14/2021,13:45,,,40.65452,-73.882225,"(40.65452, -73.882225)",FLATLANDS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457495,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,12:50,QUEENS,11362,40.767696,-73.7329,"(40.767696, -73.7329)",BROWVALE LANE,DEEPDALE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457220,Sedan,Sedan,,, +09/14/2021,17:16,BROOKLYN,11230,40.61706,-73.96371,"(40.61706, -73.96371)",,,1651 CONEY ISLAND AVENUE,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457318,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,11:43,QUEENS,11101,40.75422,-73.940704,"(40.75422, -73.940704)",,,40-35 22 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4457468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,19:29,MANHATTAN,10003,40.730564,-73.99052,"(40.730564, -73.99052)",WANAMAKER PLACE,4 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4457366,Taxi,Bike,,, +09/14/2021,8:20,,,40.632164,-74.166336,"(40.632164, -74.166336)",SOUTH AVENUE,BRABANT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457124,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/14/2021,2:13,,,40.748325,-73.79231,"(40.748325, -73.79231)",UTOPIA PARKWAY,186 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4457059,Sedan,,,, +09/14/2021,5:00,,,40.676693,-73.99683,"(40.676693, -73.99683)",SMITH STREET,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4457261,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/12/2021,19:40,QUEENS,11385,40.70237,-73.90696,"(40.70237, -73.90696)",SENECA AVENUE,WOODBINE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457849,E-Bike,,,, +09/14/2021,8:27,BROOKLYN,11219,40.62826,-73.99915,"(40.62826, -73.99915)",13 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457325,Carry All,Sedan,,, +09/14/2021,15:03,MANHATTAN,10017,40.751366,-73.96798,"(40.751366, -73.96798)",EAST 46 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457223,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,8:36,QUEENS,11105,40.77925,-73.91389,"(40.77925, -73.91389)",,,21-62 CRESCENT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457738,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,2:25,BROOKLYN,11220,40.646015,-74.00579,"(40.646015, -74.00579)",6 AVENUE,46 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4457758,Sedan,Sedan,,, +09/14/2021,14:00,MANHATTAN,10006,40.707363,-74.01322,"(40.707363, -74.01322)",,,39 TRINITY PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457565,Sedan,Garbage or Refuse,,, +09/14/2021,13:00,,,40.698414,-73.9338,"(40.698414, -73.9338)",STANWIX STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457810,Sedan,,,, +09/14/2021,19:15,QUEENS,11375,40.726295,-73.84104,"(40.726295, -73.84104)",69 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457270,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,19:30,BROOKLYN,11201,40.699776,-73.98246,"(40.699776, -73.98246)",,,191 SANDS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457586,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,13:00,,,40.623444,-74.14917,"(40.623444, -74.14917)",,,970 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:22,QUEENS,11434,40.68158,-73.76548,"(40.68158, -73.76548)",MERRICK BOULEVARD,127 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4457399,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,19:05,,,40.737167,-74.001465,"(40.737167, -74.001465)",GREENWICH AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,0:10,,,40.848625,-73.93425,"(40.848625, -73.93425)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4457896,Sedan,Sedan,Sedan,, +09/14/2021,10:09,,,40.70001,-73.830894,"(40.70001, -73.830894)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457150,Sedan,,,, +09/14/2021,19:05,QUEENS,11106,40.762722,-73.94201,"(40.762722, -73.94201)",,,35-61 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4457461,Sedan,,,, +09/14/2021,19:46,MANHATTAN,10035,40.80477,-73.94139,"(40.80477, -73.94139)",,,1919 MADISON AVENUE,1,0,0,0,0,0,1,0,Headlights Defective,Unspecified,,,,4457788,Sedan,Sedan,,, +09/14/2021,22:38,MANHATTAN,10065,40.769268,-73.96937,"(40.769268, -73.96937)",5 AVENUE,EAST 67 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4457385,Sedan,Sedan,,, +09/14/2021,8:20,QUEENS,11370,40.762268,-73.89134,"(40.762268, -73.89134)",,,25-38 77 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4457139,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,14:30,QUEENS,11418,40.691406,-73.8374,"(40.691406, -73.8374)",,,108-03 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457208,Sedan,,,, +09/14/2021,21:20,QUEENS,11103,40.757473,-73.91582,"(40.757473, -73.91582)",44 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457499,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/14/2021,18:20,BROOKLYN,11207,40.655495,-73.88833,"(40.655495, -73.88833)",PENNSYLVANIA AVENUE,WORTMAN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457488,Sedan,Bike,,, +09/14/2021,8:17,,,40.850822,-73.90147,"(40.850822, -73.90147)",EAST BURNSIDE AVENUE,RYER AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4457112,Sedan,Bike,,, +09/08/2021,19:45,BROOKLYN,11207,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,MOFFAT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457811,Sedan,Dump,,, +09/13/2021,14:41,BRONX,10459,40.826767,-73.888855,"(40.826767, -73.888855)",EAST 167 STREET,BRYANT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457874,,,,, +09/14/2021,8:15,BROOKLYN,11233,40.67506,-73.916626,"(40.67506, -73.916626)",DEAN STREET,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4457570,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,18:45,BROOKLYN,11217,40.68405,-73.98157,"(40.68405, -73.98157)",3 AVENUE,DEAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457950,,,,, +09/14/2021,13:50,QUEENS,11420,40.67062,-73.809235,"(40.67062, -73.809235)",,,131-10 130 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457308,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,11:20,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457745,Sedan,Sedan,,, +09/13/2021,21:40,BRONX,10458,40.85586,-73.89462,"(40.85586, -73.89462)",EAST 183 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,5:25,QUEENS,11373,40.745773,-73.890274,"(40.745773, -73.890274)",,,40-53 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,22:43,MANHATTAN,10014,40.73401,-74.00457,"(40.73401, -74.00457)",BLEECKER STREET,WEST 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457858,Pick-up Truck,Box Truck,,, +09/14/2021,10:30,MANHATTAN,10003,40.73656,-73.98902,"(40.73656, -73.98902)",EAST 17 STREET,UNION SQUARE EAST,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457333,Taxi,Bike,,, +09/14/2021,17:05,MANHATTAN,10003,40.734768,-73.99064,"(40.734768, -73.99064)",,,52 EAST 14 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4457355,E-Bike,,,, +09/08/2021,10:41,QUEENS,11412,40.707104,-73.759,"(40.707104, -73.759)",199 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4457800,Sedan,Sedan,Sedan,, +09/14/2021,17:05,BROOKLYN,11231,40.675117,-74.00962,"(40.675117, -74.00962)",LORRAINE STREET,OTSEGO STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4457266,Sedan,Sedan,,, +09/14/2021,17:00,QUEENS,11368,40.761673,-73.84411,"(40.761673, -73.84411)",,,126-50 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457518,Pick-up Truck,Sedan,,, +09/14/2021,22:15,BROOKLYN,11225,40.666435,-73.95341,"(40.666435, -73.95341)",,,211 CROWN STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457292,Sedan,Sedan,,, +09/09/2021,15:17,BRONX,10472,40.824398,-73.88306,"(40.824398, -73.88306)",,,1055 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,17:45,BROOKLYN,11232,40.66256,-73.99586,"(40.66256, -73.99586)",,,696 4 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4457977,E-Bike,,,, +09/14/2021,7:57,,,40.62392,-73.996506,"(40.62392, -73.996506)",64 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457345,Sedan,Sedan,,, +09/14/2021,11:50,BROOKLYN,11203,40.662132,-73.941444,"(40.662132, -73.941444)",,,644 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457202,Bus,Sedan,,, +09/14/2021,9:25,BRONX,10469,40.8595,-73.84301,"(40.8595, -73.84301)",EASTCHESTER ROAD,ASTOR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457101,Sedan,,,, +09/14/2021,13:29,BROOKLYN,11207,40.67224,-73.893555,"(40.67224, -73.893555)",,,2137 PITKIN AVENUE,1,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457444,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,14:05,BROOKLYN,11226,40.65505,-73.95631,"(40.65505, -73.95631)",BEDFORD AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457542,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,18:23,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457236,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,9:30,BROOKLYN,11217,40.677616,-73.975075,"(40.677616, -73.975075)",,,100 STERLING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457229,Bus,,,, +09/14/2021,16:30,BROOKLYN,11239,40.64844,-73.88242,"(40.64844, -73.88242)",PENNSYLVANIA AVENUE,TWIN PINES DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457482,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,17:45,BROOKLYN,11230,40.621635,-73.96559,"(40.621635, -73.96559)",,,1117 EAST 10 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457823,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/14/2021,17:23,BROOKLYN,11234,40.608807,-73.924126,"(40.608807, -73.924126)",COLEMAN STREET,AVENUE U,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4457284,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,7:20,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457315,Flat Bed,,,, +09/13/2021,20:15,MANHATTAN,10019,40.762638,-73.982155,"(40.762638, -73.982155)",,,810 7 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457777,Sedan,,,, +09/14/2021,13:53,BROOKLYN,11214,40.58516,-73.9874,"(40.58516, -73.9874)",BAY 50 STREET,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457712,Sedan,Sedan,,, +09/10/2021,13:22,MANHATTAN,10002,40.71416,-73.989075,"(40.71416, -73.989075)",,,158 EAST BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457930,Box Truck,Box Truck,,, +09/14/2021,16:55,,,40.828835,-73.82162,"(40.828835, -73.82162)",LOGAN AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4457328,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,22:30,,,40.687023,-73.97621,"(40.687023, -73.97621)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457273,Sedan,Sedan,,, +07/04/2021,11:30,,,40.707264,-73.773476,"(40.707264, -73.773476)",HENDERSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457881,Sedan,Sedan,,, +09/14/2021,7:40,,,40.85937,-73.9068,"(40.85937, -73.9068)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457594,Sedan,,,, +09/14/2021,16:30,,,40.75076,-73.757835,"(40.75076, -73.757835)",58 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,14:29,QUEENS,11691,40.600765,-73.75405,"(40.600765, -73.75405)",,,20-20 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457733,Sedan,,,, +09/14/2021,14:30,,,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457300,Tow Truck / Wrecker,Sedan,,, +12/06/2021,8:48,,,40.76943,-73.91025,"(40.76943, -73.91025)",ASTORIA BOULEVARD,STEINWAY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,18:15,BROOKLYN,11212,40.664097,-73.90932,"(40.664097, -73.90932)",ROCKAWAY AVENUE,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4487715,Sedan,Sedan,,, +12/17/2021,1:55,QUEENS,11377,40.736183,-73.89687,"(40.736183, -73.89687)",68 STREET,GARFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487146,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/15/2021,22:14,BROOKLYN,11215,40.67347,-73.98121,"(40.67347, -73.98121)",,,340 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487903,Sedan,,,, +12/17/2021,18:08,BROOKLYN,11221,40.69221,-73.92293,"(40.69221, -73.92293)",BUSHWICK AVENUE,MENAHAN STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4487337,Sedan,Bike,,, +12/15/2021,1:00,BROOKLYN,11208,40.67793,-73.87189,"(40.67793, -73.87189)",,,463 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487075,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,10:40,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487566,Bus,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,0:00,QUEENS,11375,40.7177,-73.839424,"(40.7177, -73.839424)",,,73-44 AUSTIN STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4487271,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/16/2021,0:30,BROOKLYN,11239,,,,,,710 Egan street,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4487183,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/15/2021,17:23,,,40.86804,-73.879105,"(40.86804, -73.879105)",MOSHOLU PARKWAY,SOUTHERN BOULEVARD,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,,,4486917,Sedan,Sedan,Sedan,, +12/17/2021,23:00,QUEENS,11433,40.698418,-73.80106,"(40.698418, -73.80106)",LIBERTY AVENUE,TUCKERTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487493,Sedan,,,, +12/17/2021,4:00,QUEENS,11432,40.709072,-73.78964,"(40.709072, -73.78964)",171 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487176,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,10:44,BROOKLYN,11207,40.66852,-73.890175,"(40.66852, -73.890175)",BLAKE AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487080,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,2:53,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,4:08,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487132,Sedan,,,, +12/17/2021,16:40,MANHATTAN,10018,40.751114,-73.98499,"(40.751114, -73.98499)",,,59 WEST 37 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487399,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,17:20,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487315,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,9:00,BRONX,10459,40.823303,-73.887115,"(40.823303, -73.887115)",WHITLOCK AVENUE,ALDUS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487308,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/16/2021,14:45,,,40.680573,-74.00644,"(40.680573, -74.00644)",RICHARDS STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4487103,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,12:15,,,,,,BROADWAY AVENUE,WHIPPLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486833,Sedan,,,, +12/16/2021,15:30,MANHATTAN,10002,40.714237,-73.994225,"(40.714237, -73.994225)",,,57 DIVISION STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487640,Sedan,,,, +12/15/2021,10:41,MANHATTAN,10012,40.721436,-73.99555,"(40.721436, -73.99555)",,,203 MOTT STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4486973,Box Truck,E-Scooter,Sedan,, +12/15/2021,9:30,BROOKLYN,11235,40.580166,-73.95254,"(40.580166, -73.95254)",,,74 AMHERST STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486747,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,2:00,MANHATTAN,10013,40.718456,-73.99482,"(40.718456, -73.99482)",BOWERY,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487649,Sedan,,,, +12/17/2021,7:32,QUEENS,11375,40.722622,-73.849144,"(40.722622, -73.849144)",YELLOWSTONE BOULEVARD,GERARD PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487357,Sedan,,,, +12/15/2021,16:40,BROOKLYN,11235,40.5763,-73.96854,"(40.5763, -73.96854)",OCEAN PARKWAY,BRIGHTON BEACH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487749,Station Wagon/Sport Utility Vehicle,Moped,,, +12/17/2021,20:30,,,40.619553,-74.13158,"(40.619553, -74.13158)",,,708 JEWETT AVENUE,1,0,1,0,0,0,0,0,,,,,,4487381,,,,, +12/17/2021,11:00,QUEENS,11366,40.72671,-73.80871,"(40.72671, -73.80871)",75 AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4487676,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,18:25,,,40.78583,-73.79839,"(40.78583, -73.79839)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487303,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/16/2021,9:00,,,40.618973,-74.00523,"(40.618973, -74.00523)",BAY RIDGE PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487542,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,17:30,,,40.65642,-73.933815,"(40.65642, -73.933815)",SCHENECTADY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486965,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,11:50,QUEENS,11357,40.778893,-73.80558,"(40.778893, -73.80558)",,,157-30 WILLETS POINT BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487443,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,20:41,BRONX,10457,40.84549,-73.888985,"(40.84549, -73.888985)",,,740 EAST 178 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4487946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/02/2021,11:50,,,0,0,"(0.0, 0.0)",21 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487684,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,17:45,QUEENS,11372,40.753704,-73.87199,"(40.753704, -73.87199)",,,34-55 JUNCTION BOULEVARD,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487658,Sedan,E-Bike,,, +12/17/2021,2:10,STATEN ISLAND,10306,40.56146,-74.11227,"(40.56146, -74.11227)",TYSENS LANE,MILL ROAD,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4487467,Convertible,Sedan,Pick-up Truck,Sedan, +12/15/2021,15:00,BRONX,10463,40.883724,-73.90146,"(40.883724, -73.90146)",,,5765 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,20:49,QUEENS,11429,40.70622,-73.72792,"(40.70622, -73.72792)",CROSS ISLAND PARKWAY,109 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4487118,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,5:58,,,40.708363,-73.99886,"(40.708363, -73.99886)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487631,Sedan,,,, +12/16/2021,14:24,MANHATTAN,10013,40.716278,-74.00454,"(40.716278, -74.00454)",WORTH STREET,BROADWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487049,Taxi,E-Scooter,,, +12/16/2021,15:25,,,40.77039,-73.91771,"(40.77039, -73.91771)",HOYT AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4487377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,19:25,MANHATTAN,10018,40.751114,-73.98503,"(40.751114, -73.98503)",,,60 WEST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486881,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/07/2021,15:46,BRONX,10457,40.853115,-73.89759,"(40.853115, -73.89759)",WEBSTER AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4487989,Tow Truck / Wrecker,Sedan,,, +12/15/2021,22:00,BRONX,10466,40.891422,-73.8551,"(40.891422, -73.8551)",,,4158 BARNES AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4487804,Sedan,Sedan,,, +12/17/2021,18:32,BROOKLYN,11218,,,,35 STREET,DAHILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487579,,,,, +12/17/2021,14:50,BROOKLYN,11225,40.662846,-73.94284,"(40.662846, -73.94284)",KINGSTON AVENUE,LEFFERTS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487415,Sedan,,,, +12/15/2021,18:09,BRONX,10466,40.88263,-73.839516,"(40.88263, -73.839516)",BAYCHESTER AVENUE,NEEDHAM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487219,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,17:30,,,40.836937,-73.927124,"(40.836937, -73.927124)",WEST 167 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486897,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/14/2021,0:00,BRONX,10461,40.856136,-73.85146,"(40.856136, -73.85146)",LYDIG AVENUE,NARAGANSET AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4487232,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,19:25,BROOKLYN,11235,40.576553,-73.95667,"(40.576553, -73.95667)",,,35 SEACOAST TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487813,Sedan,,,, +12/17/2021,16:05,STATEN ISLAND,10306,40.580208,-74.09975,"(40.580208, -74.09975)",HYLAN BOULEVARD,ADAMS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487473,Sedan,Sedan,,, +12/10/2021,19:17,BRONX,10453,40.848606,-73.91397,"(40.848606, -73.91397)",GRAND AVENUE,WEST 176 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487340,Sedan,,,, +12/13/2021,15:10,BRONX,10457,40.844864,-73.91015,"(40.844864, -73.91015)",,,128 EAST 174 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488016,Sedan,,,, +12/15/2021,13:59,MANHATTAN,10025,0,0,"(0.0, 0.0)",WEST 95 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487021,Sedan,Pick-up Truck,,, +12/15/2021,15:28,MANHATTAN,10010,40.73848,-73.98343,"(40.73848, -73.98343)",,,290 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486939,Sedan,Forklift,,, +09/15/2021,9:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457515,Sedan,,,, +12/16/2021,18:20,QUEENS,11106,40.761684,-73.94162,"(40.761684, -73.94162)",9 STREET,36 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487893,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/15/2021,12:00,BROOKLYN,11210,40.632145,-73.952736,"(40.632145, -73.952736)",BEDFORD AVENUE,CAMPUS ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4486772,Sedan,Bus,,, +12/16/2021,18:30,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487435,PICK UP,Sedan,,, +12/14/2021,18:45,,,40.575787,-73.97079,"(40.575787, -73.97079)",WEST 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487738,Sedan,,,, +12/17/2021,12:48,BROOKLYN,11234,40.609253,-73.92338,"(40.609253, -73.92338)",HENDRICKSON STREET,AVENUE U,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,17:42,BROOKLYN,11212,40.657333,-73.899445,"(40.657333, -73.899445)",,,1705 LINDEN BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4487530,Sedan,,,, +12/10/2021,8:55,MANHATTAN,10018,40.756546,-73.99218,"(40.756546, -73.99218)",,,350 WEST 40 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487707,Taxi,Sedan,,, +12/15/2021,11:55,BROOKLYN,11205,40.693207,-73.971596,"(40.693207, -73.971596)",,,361 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486799,PK,Sedan,,, +12/15/2021,16:40,BROOKLYN,11213,40.675644,-73.94161,"(40.675644, -73.94161)",KINGSTON AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487618,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,11:41,MANHATTAN,10036,40.76236,-73.994064,"(40.76236, -73.994064)",,,454 WEST 46 STREET,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4487172,Sedan,Bike,Sedan,, +12/15/2021,6:57,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486689,Sedan,,,, +12/17/2021,1:12,,,40.675186,-73.933304,"(40.675186, -73.933304)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487730,Sedan,Sedan,,, +12/16/2021,19:56,BROOKLYN,11235,40.591133,-73.94984,"(40.591133, -73.94984)",,,2885 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487151,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,19:45,MANHATTAN,10029,40.790314,-73.94769,"(40.790314, -73.94769)",LEXINGTON AVENUE,EAST 103 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4486951,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,17:29,,,40.67043,-73.928185,"(40.67043, -73.928185)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,14:21,MANHATTAN,10069,40.77954,-73.988,"(40.77954, -73.988)",WEST 70 STREET,RIVERSIDE BOULEVARD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487291,E-Scooter,Bike,,, +12/15/2021,14:00,BROOKLYN,11222,40.725483,-73.94973,"(40.725483, -73.94973)",,,182 ECKFORD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486850,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,12:30,,,40.86247,-73.90029,"(40.86247, -73.90029)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487204,Sedan,Sedan,,, +12/15/2021,5:45,,,40.894978,-73.846375,"(40.894978, -73.846375)",BUSSING AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487793,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,9:15,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,DAVIDSON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487286,Sedan,,,, +12/15/2021,15:15,QUEENS,11412,40.69537,-73.76326,"(40.69537, -73.76326)",QUENCER ROAD,MEXICO STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487128,Sedan,Sedan,,, +11/29/2021,12:50,,,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4487187,,,,, +12/15/2021,14:45,BROOKLYN,11228,40.621315,-74.01071,"(40.621315, -74.01071)",,,1135 76 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4486774,Sedan,,,, +12/15/2021,18:00,BRONX,10457,40.839733,-73.89882,"(40.839733, -73.89882)",,,1639 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486815,Sedan,,,, +12/15/2021,11:30,QUEENS,11435,40.706367,-73.816734,"(40.706367, -73.816734)",QUEENS BOULEVARD,87 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487673,Sedan,Sedan,,, +12/15/2021,11:30,BROOKLYN,11218,40.63878,-73.98322,"(40.63878, -73.98322)",,,1435 39 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486992,Sedan,,,, +12/17/2021,22:57,MANHATTAN,10065,40.76468,-73.9643,"(40.76468, -73.9643)",3 AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487938,E-Bike,,,, +12/15/2021,15:10,STATEN ISLAND,10310,40.6287,-74.11615,"(40.6287, -74.11615)",BROADWAY,CLOVE LAKE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487002,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,13:30,MANHATTAN,10026,40.80347,-73.956055,"(40.80347, -73.956055)",,,2120 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487208,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/17/2021,20:45,,,40.66235,-73.95082,"(40.66235, -73.95082)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487318,Sedan,Sedan,,, +12/15/2021,8:30,QUEENS,11435,40.703,-73.813484,"(40.703, -73.813484)",,,88-27 139 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486679,Sedan,,,, +12/17/2021,16:52,MANHATTAN,10013,40.719296,-74.008705,"(40.719296, -74.008705)",HUDSON STREET,FRANKLIN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487536,Sedan,Tow Truck / Wrecker,,, +12/17/2021,3:40,MANHATTAN,10065,40.76734,-73.96868,"(40.76734, -73.96868)",MADISON AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487247,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,14:00,BROOKLYN,11225,40.662582,-73.96291,"(40.662582, -73.96291)",,,15 OCEAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487396,Sedan,,,, +12/17/2021,21:00,BRONX,10463,40.8827,-73.89273,"(40.8827, -73.89273)",VANCORTLANDT AVENUE WEST,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487347,Sedan,MOPED,,, +12/15/2021,20:54,MANHATTAN,10018,40.75604,-73.99066,"(40.75604, -73.99066)",,,620 8 AVENUE,1,0,0,0,0,0,0,0,Passenger Distraction,Passing or Lane Usage Improper,,,,4486902,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/30/2021,7:30,BRONX,10466,40.896526,-73.855644,"(40.896526, -73.855644)",,,4332 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487215,Pick-up Truck,Sedan,,, +12/13/2021,15:23,,,40.89505,-73.88489,"(40.89505, -73.88489)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487354,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,15:34,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",KINGS HIGHWAY,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4487526,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,20:45,BRONX,10460,40.84193,-73.88582,"(40.84193, -73.88582)",SOUTHERN BOULEVARD,ELSMERE PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487981,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,12:42,QUEENS,11433,40.69239,-73.79623,"(40.69239, -73.79623)",,,154-47 109 AVENUE,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4487236,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/15/2021,21:40,BROOKLYN,11233,40.6771,-73.92479,"(40.6771, -73.92479)",ATLANTIC AVENUE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4487621,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,15:40,BRONX,10460,40.836124,-73.88987,"(40.836124, -73.88987)",EAST 173 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487463,Sedan,Sedan,,, +12/15/2021,7:50,,,,,,VANWYCK EXPRESSWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486739,Sedan,,,, +12/17/2021,5:45,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",BAYCHESTER AVENUE,GRENADA PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4487799,Pick-up Truck,,,, +12/16/2021,17:45,BROOKLYN,11222,40.72588,-73.941696,"(40.72588, -73.941696)",NASSAU AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487213,Sedan,Moped,,, +12/16/2021,17:18,QUEENS,11378,40.71889,-73.903175,"(40.71889, -73.903175)",,,58-59 61 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4487728,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,1:00,QUEENS,11103,40.75839,-73.91365,"(40.75839, -73.91365)",,,45-19 NEWTOWN ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487645,Sedan,Sedan,,, +12/17/2021,13:21,,,40.613995,-73.99538,"(40.613995, -73.99538)",18 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487575,Sedan,,,, +12/15/2021,16:53,BRONX,10472,40.829502,-73.87462,"(40.829502, -73.87462)",MORRISON AVENUE,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4486957,Sedan,E-Bike,,, +12/16/2021,13:00,,,40.62427,-73.99255,"(40.62427, -73.99255)",16 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:15,MANHATTAN,10037,40.818592,-73.935905,"(40.818592, -73.935905)",,,58 WEST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486654,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/06/2021,18:30,BROOKLYN,11221,40.691948,-73.93983,"(40.691948, -73.93983)",MARCUS GARVEY BOULEVARD,KOSCIUSZKO STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487759,Sedan,,,, +12/15/2021,17:35,QUEENS,11422,40.661587,-73.74033,"(40.661587, -73.74033)",241 STREET,CANEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,Unspecified,,,4486820,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/14/2021,22:30,BROOKLYN,11239,,,,,,642 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410644,Sedan,Sedan,,, +12/15/2021,7:00,,,40.531918,-74.19175,"(40.531918, -74.19175)",HUGUENOT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486987,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,0:20,QUEENS,11369,40.761444,-73.87602,"(40.761444, -73.87602)",30 AVENUE,93 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4487263,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,15:20,BROOKLYN,11207,40.659042,-73.89099,"(40.659042, -73.89099)",,,765 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487191,Sedan,,,, +12/17/2021,15:51,QUEENS,11368,40.749866,-73.86273,"(40.749866, -73.86273)",NATIONAL STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4487324,Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/16/2021,23:30,,,40.629707,-73.90486,"(40.629707, -73.90486)",AVENUE M,EAST 80 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4487517,Taxi,,,, +12/15/2021,17:12,MANHATTAN,10018,40.75596,-73.99814,"(40.75596, -73.99814)",,,466 10 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4487550,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,13:00,MANHATTAN,10009,40.722977,-73.97992,"(40.722977, -73.97992)",,,642 EAST 5 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487574,Motorscooter,,,, +12/16/2021,7:12,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486936,Sedan,Sedan,,, +12/16/2021,12:00,MANHATTAN,10001,40.749165,-73.98841,"(40.749165, -73.98841)",,,54 WEST 33 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4487390,Station Wagon/Sport Utility Vehicle,Bike,,, +12/15/2021,7:05,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486766,Bus,Bike,,, +12/16/2021,15:50,BROOKLYN,11225,40.669228,-73.9556,"(40.669228, -73.9556)",BEDFORD AVENUE,UNION STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487113,Bike,,,, +12/14/2021,6:15,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4487349,Sedan,Sedan,Sedan,, +12/16/2021,13:00,,,40.71181,-73.78785,"(40.71181, -73.78785)",HILLSIDE AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4487087,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,16:45,BROOKLYN,11215,40.66917,-73.98631,"(40.66917, -73.98631)",9 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487594,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,0:01,QUEENS,11370,40.762276,-73.89132,"(40.762276, -73.89132)",,,25-21 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487331,Sedan,Sedan,Sedan,, +12/15/2021,23:02,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486855,Sedan,,,, +12/13/2021,7:11,,,40.628185,-74.14792,"(40.628185, -74.14792)",DIXON AVENUE,MORNINGSTAR ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4487240,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +12/17/2021,8:06,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487479,Sedan,Sedan,,, +12/16/2021,16:30,BRONX,10459,40.830837,-73.8987,"(40.830837, -73.8987)",RITTER PLACE,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487455,Sedan,,,, +12/15/2021,10:03,,,40.595707,-73.965065,"(40.595707, -73.965065)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486841,Sedan,,,, +12/16/2021,15:25,,,40.77039,-73.91771,"(40.77039, -73.91771)",HOYT AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,13:10,BRONX,10473,40.82138,-73.852264,"(40.82138, -73.852264)",,,2097 HOMER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487038,Sedan,,,, +12/16/2021,9:45,BROOKLYN,11214,40.606297,-73.99791,"(40.606297, -73.99791)",,,1965 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487670,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,12:30,,,,,,EAST 25 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487703,Sedan,Sedan,,, +12/17/2021,13:10,,,40.636784,-74.018974,"(40.636784, -74.018974)",5 AVENUE,65 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487434,Sedan,Sedan,,, +12/17/2021,17:18,BROOKLYN,11212,40.654205,-73.910576,"(40.654205, -73.910576)",,,1335 LINDEN BOULEVARD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487531,Sedan,E-Bike,,, +12/16/2021,17:15,,,,,,Roosevelt drive & DELANCEY STREE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487826,Sedan,Sedan,,, +09/15/2021,9:00,BRONX,10453,,,,WEST 174 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457713,Sedan,Sedan,,, +12/16/2021,4:30,BROOKLYN,11226,40.641735,-73.95442,"(40.641735, -73.95442)",,,2532 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487062,Sedan,,,, +12/14/2021,18:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487245,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/24/2021,22:11,QUEENS,11412,40.69475,-73.75118,"(40.69475, -73.75118)",,,201-03 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487860,Sedan,Sedan,Sedan,, +12/17/2021,17:30,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,15:37,QUEENS,11378,40.724808,-73.91053,"(40.724808, -73.91053)",,,58-64 MAURICE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487720,Bike,Sedan,,, +12/13/2021,22:06,,,,,,WEST 155 STREET,HARLEM RIVER DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487993,Sedan,Sedan,,, +12/16/2021,19:28,MANHATTAN,10024,40.78642,-73.978065,"(40.78642, -73.978065)",BROADWAY,WEST 83 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487419,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,5:07,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4487196,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,14:21,BRONX,10467,40.88489,-73.86437,"(40.88489, -73.86437)",,,624 EAST 220 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487803,Sedan,,,, +12/15/2021,13:26,,,40.795956,-73.97083,"(40.795956, -73.97083)",BROADWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486758,Sedan,Bike,,, +12/16/2021,23:20,,,40.787792,-73.97123,"(40.787792, -73.97123)",WEST 88 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487181,Taxi,Taxi,,, +12/15/2021,11:49,,,40.78029,-73.94386,"(40.78029, -73.94386)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,,,,4486722,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,23:19,BROOKLYN,11221,40.69335,-73.934135,"(40.69335, -73.934135)",STUYVESANT AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4487121,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/16/2021,0:23,BROOKLYN,11222,40.732822,-73.95205,"(40.732822, -73.95205)",,,306 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),,,,,4486961,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,11:50,MANHATTAN,10002,40.719116,-73.99146,"(40.719116, -73.99146)",,,140 ELDRIDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487638,Sedan,Box Truck,,, +12/16/2021,16:10,,,40.817226,-73.94231,"(40.817226, -73.94231)",7 AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,Traffic Control Disregarded,,,4487228,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/13/2021,0:00,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4487267,Bus,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:20,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4487007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,15:30,,,40.72165,-73.94196,"(40.72165, -73.94196)",MEEKER AVENUE,MONITOR STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486783,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,23:01,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486883,Convertible,,,, +12/17/2021,4:35,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",CHURCH AVENUE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487600,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,9:33,QUEENS,11355,40.757523,-73.82914,"(40.757523, -73.82914)",41 ROAD,MAIN STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4487278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,8:58,QUEENS,11436,40.6767,-73.795,"(40.6767, -73.795)",120 AVENUE,145 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4486978,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,2:30,MANHATTAN,10011,40.736996,-73.998146,"(40.736996, -73.998146)",,,118 WEST 13 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4486922,Sedan,,,, +12/16/2021,20:06,,,40.785732,-73.97645,"(40.785732, -73.97645)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487776,Sedan,,,, +12/17/2021,3:50,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487295,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,10:06,BROOKLYN,11207,40.67398,-73.899315,"(40.67398, -73.899315)",LIBERTY AVENUE,ALABAMA AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4408808,Sedan,Sedan,Ambulance,, +04/19/2021,14:30,QUEENS,11372,40.74938,-73.88789,"(40.74938, -73.88789)",,,78-09 37 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409806,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,14:00,BROOKLYN,11236,40.650642,-73.909805,"(40.650642, -73.909805)",,,777 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410880,Pick-up Truck,,,, +04/24/2021,2:15,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",LINDEN BOULEVARD,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410879,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,14:45,MANHATTAN,10035,,,,,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487922,Tractor Truck Diesel,Garbage or Refuse,,, +12/11/2021,20:25,,,40.601948,-73.99382,"(40.601948, -73.99382)",86 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487904,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,7:41,BRONX,10472,40.832817,-73.867546,"(40.832817, -73.867546)",EAST 172 STREET,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486708,Sedan,Bus,,, +12/15/2021,8:30,QUEENS,11418,40.7007,-73.83805,"(40.7007, -73.83805)",MYRTLE AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4486624,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,23:43,,,40.76213,-73.7295,"(40.76213, -73.7295)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486823,Sedan,,,, +12/17/2021,20:00,BROOKLYN,11236,40.631004,-73.88774,"(40.631004, -73.88774)",,,9522 SCHENCK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487506,Sedan,,,, +12/16/2021,15:22,BRONX,10457,40.846733,-73.90649,"(40.846733, -73.90649)",MONROE AVENUE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4487166,Taxi,Sedan,,, +12/15/2021,17:45,,,40.609535,-73.75372,"(40.609535, -73.75372)",HASSOCK STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4486890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,20:00,,,,,,59 street bridge,crescent street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486789,Sedan,Sedan,,, +12/17/2021,9:12,BROOKLYN,11236,40.636818,-73.89715,"(40.636818, -73.89715)",,,1423 EAST 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4487255,Sedan,Sedan,Sedan,Sedan,Sedan +12/16/2021,17:50,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,20:28,QUEENS,11369,40.758995,-73.87459,"(40.758995, -73.87459)",JACKSON MILL ROAD,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4487108,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/17/2021,14:45,,,40.69728,-73.84733,"(40.69728, -73.84733)",85 ROAD,101 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487310,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,10:20,MANHATTAN,10033,40.847855,-73.937904,"(40.847855, -73.937904)",,,4180 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487406,Sedan,Bike,,, +12/16/2021,10:59,QUEENS,11104,40.751637,-73.90985,"(40.751637, -73.90985)",WOODSIDE AVENUE,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487046,Sedan,,,, +12/17/2021,23:50,,,,,,QUEENSBORO BRIDGE OUTER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/26/2021,2:04,,,40.748158,-73.97033,"(40.748158, -73.97033)",,,EAST 41 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487366,Sedan,,,, +12/14/2021,7:40,BROOKLYN,11221,40.691612,-73.93976,"(40.691612, -73.93976)",,,193 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487835,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,0:10,BRONX,10454,40.808163,-73.92653,"(40.808163, -73.92653)",EAST 135 STREET,ALEXANDER AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4487138,Sedan,,,, +12/16/2021,13:23,MANHATTAN,10022,40.760742,-73.974655,"(40.760742, -73.974655)",,,13 EAST 54 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4487260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,12:00,BROOKLYN,11226,40.64336,-73.954575,"(40.64336, -73.954575)",,,2471 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487698,Sedan,,,, +12/17/2021,8:25,MANHATTAN,10019,40.765675,-73.97624,"(40.765675, -73.97624)",CENTRAL PARK SOUTH,AVENUE OF THE AMERICAS,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487223,Station Wagon/Sport Utility Vehicle,Bus,,, +09/16/2021,10:03,MANHATTAN,10001,,,,10 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4457807,Sedan,Flat Bed,,, +04/24/2021,11:09,,,40.82814,-73.8953,"(40.82814, -73.8953)",EAST 169 STREET,INTERVALE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410103,Scooter,Sedan,,, +04/24/2021,20:17,,,,,,NOSTRAND AVENUE,CAMPUS ROAD,,0,1,0,1,0,0,0,0,,,,,,4410392,,,,, +04/24/2021,5:00,BRONX,10463,40.87721,-73.90074,"(40.87721, -73.90074)",,,3069 KINGSBRIDGE TERRACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410250,Sedan,Sedan,,, +04/24/2021,7:30,MANHATTAN,10039,40.826496,-73.93692,"(40.826496, -73.93692)",,,234 WEST 152 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410694,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:40,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410672,Sedan,Sedan,,, +04/24/2021,1:30,MANHATTAN,10022,40.754807,-73.9626,"(40.754807, -73.9626)",EAST 53 STREET,SUTTON PLACE SOUTH,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4409897,Sedan,,,, +04/24/2021,4:27,BRONX,10470,40.895485,-73.863884,"(40.895485, -73.863884)",,,527 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410208,Sedan,,,, +04/24/2021,6:30,,,40.575974,-74.12564,"(40.575974, -74.12564)",RICHMOND ROAD,MORLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410556,4 dr sedan,garbage tr,,, +04/24/2021,14:30,QUEENS,11373,40.745922,-73.87864,"(40.745922, -73.87864)",,,41-31 GLEANE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410299,Sedan,,,, +04/15/2021,16:25,BROOKLYN,11218,40.641186,-73.98572,"(40.641186, -73.98572)",38 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410761,Sedan,,,, +04/24/2021,4:02,BRONX,10468,40.86776,-73.89896,"(40.86776, -73.89896)",,,36 WEST KINGSBRIDGE ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4409919,Moped,,,, +04/24/2021,21:39,,,,,,PELHAM PARKWAY,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4410310,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +04/24/2021,18:30,MANHATTAN,10037,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410691,Sedan,,,, +04/24/2021,14:20,QUEENS,11377,40.740875,-73.89962,"(40.740875, -73.89962)",65 PLACE,QUEENS BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4410747,Open Body,Sedan,,, +04/23/2021,17:15,,,40.808292,-73.94883,"(40.808292, -73.94883)",WEST 124 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410622,Sedan,Bike,,, +04/24/2021,0:01,QUEENS,11370,40.766705,-73.89024,"(40.766705, -73.89024)",79 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409946,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,21:37,,,40.747765,-73.98296,"(40.747765, -73.98296)",EAST 34 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,10:30,BROOKLYN,11222,,,,VANDERVORT AVENUE,LOMBARDY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410438,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,12:03,BRONX,10467,40.87341,-73.87589,"(40.87341, -73.87589)",EAST 205 STREET,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410479,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,9:20,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410570,Motorcycle,Sedan,Sedan,, +04/23/2021,17:00,QUEENS,11421,40.69068,-73.85306,"(40.69068, -73.85306)",89 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410593,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,19:33,QUEENS,11358,40.772434,-73.79997,"(40.772434, -73.79997)",27 AVENUE,BAYSIDE LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410012,Sedan,Sedan,,, +04/24/2021,10:27,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409984,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,10:45,BROOKLYN,11201,40.69469,-73.99117,"(40.69469, -73.99117)",,,154 PIERREPONT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410808,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,12:36,MANHATTAN,10013,40.716812,-73.99777,"(40.716812, -73.99777)",CANAL STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410867,Sedan,Van,,, +04/24/2021,8:00,QUEENS,11356,40.791527,-73.84176,"(40.791527, -73.84176)",126 STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410007,Sedan,Bike,,, +04/24/2021,14:50,QUEENS,11378,40.73145,-73.89581,"(40.73145, -73.89581)",,,53-04 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4409985,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,8:13,BROOKLYN,11220,40.634045,-74.013245,"(40.634045, -74.013245)",,,735 64 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4410713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,22:00,QUEENS,11101,40.75184,-73.94806,"(40.75184, -73.94806)",11 STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4410028,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/24/2021,6:46,,,40.688004,-73.7569,"(40.688004, -73.7569)",120 AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,13:31,BRONX,10472,40.8324,-73.870384,"(40.8324, -73.870384)",EAST 172 STREET,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4410592,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,19:10,,,40.847427,-73.931404,"(40.847427, -73.931404)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4410284,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/24/2021,8:00,,,40.672848,-73.9675,"(40.672848, -73.9675)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4410321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/23/2021,16:30,MANHATTAN,10029,40.790417,-73.95184,"(40.790417, -73.95184)",EAST 101 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410610,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,23:39,BRONX,10454,40.806164,-73.909134,"(40.806164, -73.909134)",BRUCKNER BOULEVARD,EAST 141 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410490,Sedan,,,, +04/24/2021,1:23,,,40.824432,-73.873604,"(40.824432, -73.873604)",BRUCKNER BOULEVARD,MORRISON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410598,Taxi,Sedan,,, +04/24/2021,13:45,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409974,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,14:35,BRONX,10459,40.822468,-73.891754,"(40.822468, -73.891754)",,,986 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410018,MTA,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,12:23,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410218,Multi-Wheeled Vehicle,Motorcycle,,, +04/22/2021,22:00,,,40.683228,-73.907135,"(40.683228, -73.907135)",GRANITE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410785,Sedan,,,, +04/24/2021,20:34,BROOKLYN,11204,40.616104,-73.97745,"(40.616104, -73.97745)",,,2243 60 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410473,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,14:58,BROOKLYN,11239,40.65136,-73.86971,"(40.65136, -73.86971)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410661,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,14:15,BROOKLYN,11231,40.680042,-74.007065,"(40.680042, -74.007065)",RICHARDS STREET,COMMERCE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410811,AMBULANCE,,,, +04/24/2021,9:10,,,40.85162,-73.82653,"(40.85162, -73.82653)",WILKINSON AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410053,Sedan,Ambulance,,, +04/24/2021,16:45,MANHATTAN,10004,40.70323,-74.01243,"(40.70323, -74.01243)",,,32 PEARL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,14:53,,,40.5751,-73.998566,"(40.5751, -73.998566)",WEST 32 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410729,,,,, +04/24/2021,9:32,BROOKLYN,11236,40.64571,-73.91206,"(40.64571, -73.91206)",,,933 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4409991,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,20:55,BROOKLYN,11207,40.662014,-73.886826,"(40.662014, -73.886826)",HEGEMAN AVENUE,VAN SICLEN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410638,Sedan,,,, +04/24/2021,6:45,MANHATTAN,10028,40.775562,-73.95035,"(40.775562, -73.95035)",1 AVENUE,EAST 84 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410521,Tanker,PK,,, +04/24/2021,3:30,BROOKLYN,11208,40.67059,-73.876114,"(40.67059, -73.876114)",BLAKE AVENUE,MILFORD STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4410583,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,18:35,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",3 AVENUE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410631,Sedan,Sedan,,, +12/16/2021,17:30,STATEN ISLAND,10306,40.561584,-74.13397,"(40.561584, -74.13397)",AMBOY ROAD,EMMET AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487468,Sedan,Bike,,, +04/24/2021,2:45,,,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410262,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,11:30,BROOKLYN,11219,40.637104,-73.99106,"(40.637104, -73.99106)",,,1276 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410679,Sedan,Sedan,,, +04/24/2021,23:30,BRONX,10462,40.846157,-73.86726,"(40.846157, -73.86726)",,,1848 VICTOR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410311,Sedan,,,, +04/24/2021,21:17,,,40.67846,-73.782455,"(40.67846, -73.782455)",122 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410167,Sedan,Sedan,,, +04/24/2021,19:35,BROOKLYN,11223,40.60683,-73.9647,"(40.60683, -73.9647)",,,1728 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410454,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,22:00,,,,,,UTOPIA PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487449,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,19:00,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410061,Sedan,Sedan,,, +04/21/2021,17:00,BROOKLYN,11207,40.666878,-73.901276,"(40.666878, -73.901276)",BLAKE AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410648,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,14:35,BROOKLYN,11217,0,0,"(0.0, 0.0)",,,270 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410841,Box Truck,Sedan,,, +04/24/2021,21:00,QUEENS,11377,40.746235,-73.89895,"(40.746235, -73.89895)",39 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410358,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,4:45,BRONX,10466,40.897625,-73.85625,"(40.897625, -73.85625)",EAST 237 STREET,RICHARDSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410209,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,18:20,BROOKLYN,11220,40.645245,-74.003006,"(40.645245, -74.003006)",45 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410374,Sedan,,,, +04/24/2021,17:00,,,40.76417,-73.83967,"(40.76417, -73.83967)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4410300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,15:00,BROOKLYN,11225,40.6656,-73.9588,"(40.6656, -73.9588)",,,11 MC KEEVER PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410686,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,0:30,BROOKLYN,11223,40.60594,-73.97929,"(40.60594, -73.97929)",QUENTIN ROAD,WEST 6 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409905,PK,,,, +04/24/2021,7:40,,,40.862682,-73.83895,"(40.862682, -73.83895)",KINGSLAND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410737,PK,,,, +04/24/2021,7:23,BRONX,10456,40.831993,-73.90541,"(40.831993, -73.90541)",,,3565 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410131,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,19:25,MANHATTAN,10035,40.806175,-73.935745,"(40.806175, -73.935745)",,,144 EAST 128 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,9:06,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",DEAN STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410840,Pick-up Truck,,,, +04/22/2021,21:00,BROOKLYN,11225,40.665947,-73.95089,"(40.665947, -73.95089)",,,936 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410671,Sedan,Sedan,,, +04/24/2021,3:52,QUEENS,11429,40.70557,-73.73908,"(40.70557, -73.73908)",,,218-33 112 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,,4409926,Sedan,Sedan,Sedan,van, +04/05/2021,13:30,,,40.822834,-73.941925,"(40.822834, -73.941925)",8 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4410693,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,21:23,BRONX,10461,40.836597,-73.840546,"(40.836597, -73.840546)",,,1332 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410060,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,13:00,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410304,Station Wagon/Sport Utility Vehicle,,,, +04/06/2021,8:35,QUEENS,11366,40.726162,-73.7991,"(40.726162, -73.7991)",,,76-02 170 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410748,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,17:45,BRONX,10457,40.843063,-73.90954,"(40.843063, -73.90954)",EAST MOUNT EDEN AVENUE,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410179,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/23/2021,15:45,,,40.810173,-73.937416,"(40.810173, -73.937416)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4410621,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,12:10,,,40.67871,-73.86701,"(40.67871, -73.86701)",LIBERTY AVENUE,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410647,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,12:20,,,40.56025,-74.16974,"(40.56025, -74.16974)",RICHMOND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410254,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,11:00,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410872,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/18/2021,13:49,MANHATTAN,10027,40.80861,-73.965294,"(40.80861, -73.965294)",,,620 WEST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410728,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,18:25,BROOKLYN,11237,40.714207,-73.92817,"(40.714207, -73.92817)",STEWART AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486835,Taxi,Tractor Truck Diesel,,, +04/24/2021,17:40,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409989,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,5:20,QUEENS,11354,40.766434,-73.83767,"(40.766434, -73.83767)",32 AVENUE,WHITESTONE EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4410008,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,20:30,MANHATTAN,10065,40.76325,-73.96675,"(40.76325, -73.96675)",,,158 EAST 61 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410503,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,11:55,MANHATTAN,10003,40.72443,-73.989136,"(40.72443, -73.989136)",,,68 EAST 2 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410854,Motorcycle,,,, +04/24/2021,17:33,BRONX,10456,40.825226,-73.91028,"(40.825226, -73.91028)",,,961 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410109,Bus,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,0:00,BRONX,10472,40.82642,-73.88251,"(40.82642, -73.88251)",,,1125 CLOSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410602,Sedan,Box Truck,,, +04/23/2021,17:44,QUEENS,11372,40.751904,-73.883514,"(40.751904, -73.883514)",,,83-10 35 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410760,Minicycle,,,, +04/24/2021,15:40,,,40.59359,-73.99613,"(40.59359, -73.99613)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409976,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,18:23,MANHATTAN,10018,40.753265,-73.985245,"(40.753265, -73.985245)",,,1050 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410390,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,11:00,BROOKLYN,11206,40.70742,-73.94221,"(40.70742, -73.94221)",,,182 MONTROSE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410527,Sedan,,,, +04/24/2021,0:26,BROOKLYN,11232,40.653793,-74.008095,"(40.653793, -74.008095)",39 STREET,GOWANUS EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409999,Pick-up Truck,Sedan,,, +04/24/2021,17:30,BRONX,10469,40.870705,-73.84106,"(40.870705, -73.84106)",,,3030 KINGSLAND AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4410215,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,10:20,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",NEW LOTS AVENUE,HINSDALE STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4410662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,3:00,MANHATTAN,10030,40.821815,-73.94266,"(40.821815, -73.94266)",,,2698 8 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410697,Sedan,,,, +04/23/2021,23:20,MANHATTAN,10029,40.794758,-73.94235,"(40.794758, -73.94235)",3 AVENUE,EAST 111 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410614,Sedan,Sedan,,, +04/24/2021,9:50,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",ATLANTIC AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410076,Sedan,Van,,, +04/24/2021,23:37,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410244,Sedan,Sedan,,, +04/24/2021,15:35,,,40.699436,-73.91229,"(40.699436, -73.91229)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4410790,Flat Bed,Sedan,,, +04/24/2021,20:45,,,,,,GLENMORE AVENUE,75 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410651,Sedan,,,, +04/24/2021,1:26,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410488,Sedan,Sedan,,, +04/24/2021,8:57,QUEENS,11374,40.71198,-73.86059,"(40.71198, -73.86059)",,,89-55 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4409944,Sedan,Bus,,, +04/23/2021,15:44,BRONX,10472,40.835915,-73.8731,"(40.835915, -73.8731)",CROSS BRONX EXPRESSWAY,FTELEY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4410597,Bus,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,22:50,QUEENS,11411,40.693314,-73.74009,"(40.693314, -73.74009)",221 STREET,118 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4410032,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/24/2021,16:00,QUEENS,11368,40.753113,-73.86,"(40.753113, -73.86)",108 STREET,37 DRIVE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4410548,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,7:30,BRONX,10452,40.836018,-73.9243,"(40.836018, -73.9243)",ANDERSON AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410425,Sedan,,,, +04/24/2021,16:35,BROOKLYN,11201,40.689358,-73.9821,"(40.689358, -73.9821)",HANOVER PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410281,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,13:40,,,40.74906,-73.89083,"(40.74906, -73.89083)",75 STREET,,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4410712,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,23:10,BROOKLYN,11216,40.67187,-73.95464,"(40.67187, -73.95464)",SAINT JOHNS PLACE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410319,Bus,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,20:36,BROOKLYN,11208,40.685497,-73.86978,"(40.685497, -73.86978)",,,188 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410652,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,18:00,BRONX,10456,40.83047,-73.90391,"(40.83047, -73.90391)",,,587 EAST 168 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410137,Sedan,Carry All,,, +04/24/2021,21:30,,,40.82371,-73.879,"(40.82371, -73.879)",BRUCKNER BOULEVARD,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410603,Sedan,,,, +04/09/2021,9:40,BROOKLYN,11225,40.659355,-73.951454,"(40.659355, -73.951454)",,,285 RUTLAND ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4410633,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,14:00,QUEENS,11420,40.669395,-73.80771,"(40.669395, -73.80771)",131 STREET,133 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4410243,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,7:43,,,,,,MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4410569,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,4:05,QUEENS,11430,,,,Belt parkway,Van wyck expressway,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4409954,Sedan,Sedan,Sedan,, +04/24/2021,15:00,,,40.607765,-74.13169,"(40.607765, -74.13169)",,,294 SOUTH GANNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410338,Sedan,,,, +04/24/2021,17:00,QUEENS,11355,40.744846,-73.835686,"(40.744846, -73.835686)",COLLEGE POINT BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410011,Sedan,Stake or Rack,,, +04/24/2021,17:00,,,40.689583,-73.972145,"(40.689583, -73.972145)",CARLTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410379,Sedan,Taxi,,, +04/24/2021,20:00,BRONX,10460,40.83613,-73.88987,"(40.83613, -73.88987)",EAST 173 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410128,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,11:50,,,,,,DIXON AVENUE,SIMONSON AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4410336,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/17/2021,20:10,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487742,Sedan,Sedan,,, +04/24/2021,2:52,,,40.748466,-73.99247,"(40.748466, -73.99247)",7 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410261,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,23:00,BRONX,10455,40.813232,-73.90908,"(40.813232, -73.90908)",JACKSON AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410687,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +04/24/2021,5:15,,,40.757355,-73.73887,"(40.757355, -73.73887)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4409911,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,17:53,MANHATTAN,10011,40.74184,-74.001564,"(40.74184, -74.001564)",,,300 WEST 17 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4410738,Taxi,,,, +04/24/2021,11:30,BRONX,10472,40.833942,-73.876205,"(40.833942, -73.876205)",,,1609 EAST 174 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4410625,Bike,E-Bike,,, +04/19/2021,10:05,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4410855,Sedan,Sedan,,, +04/24/2021,0:20,BRONX,10466,40.89042,-73.855644,"(40.89042, -73.855644)",EAST 230 STREET,BARNES AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4410528,Station Wagon/Sport Utility Vehicle,Moped,,, +04/24/2021,17:10,QUEENS,11378,40.726406,-73.908485,"(40.726406, -73.908485)",,,59-15 MAURICE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409997,Sedan,Sedan,,, +04/24/2021,17:04,BROOKLYN,11205,40.693172,-73.97086,"(40.693172, -73.97086)",CLERMONT AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410001,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,19:15,BRONX,10463,40.870346,-73.9044,"(40.870346, -73.9044)",WEST KINGSBRIDGE ROAD,KINGSBRIDGE TERRACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4410461,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,18:45,,,40.685795,-73.911644,"(40.685795, -73.911644)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410733,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/24/2021,20:55,QUEENS,11694,40.57981,-73.837204,"(40.57981, -73.837204)",ROCKAWAY BEACH BOULEVARD,BEACH 116 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410016,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,20:21,BRONX,10453,40.8514,-73.90606,"(40.8514, -73.90606)",CRESTON AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,Unspecified,,4410505,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +03/19/2021,7:10,,,0,0,"(0.0, 0.0)",GREENWICH AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410768,Sedan,,,, +04/24/2021,19:51,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410073,Station Wagon/Sport Utility Vehicle,,,, +03/15/2021,14:22,BROOKLYN,11216,40.67657,-73.94431,"(40.67657, -73.94431)",DEAN STREET,BROOKLYN AVENUE,,6,0,0,0,0,0,6,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4410586,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/15/2021,22:30,QUEENS,11433,40.700874,-73.794395,"(40.700874, -73.794395)",,,105-08 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487058,Sedan,Sedan,,, +04/24/2021,14:00,QUEENS,11369,40.76213,-73.870125,"(40.76213, -73.870125)",,,99-10 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409971,Sedan,,,, +04/24/2021,10:00,MANHATTAN,10031,40.82943,-73.94196,"(40.82943, -73.94196)",WEST 153 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410463,Sedan,Sedan,,, +04/23/2021,0:10,,,40.8452,-73.916885,"(40.8452, -73.916885)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,20:20,MANHATTAN,10029,40.79554,-73.9481,"(40.79554, -73.9481)",EAST 109 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410600,Sedan,Sedan,,, +04/24/2021,12:00,,,40.601654,-74.01087,"(40.601654, -74.01087)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409977,Sedan,,,, +04/24/2021,18:53,QUEENS,11435,40.71352,-73.814865,"(40.71352, -73.814865)",84 AVENUE,DANIELS STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4410015,Bike,,,, +04/24/2021,21:24,,,40.700546,-73.917076,"(40.700546, -73.917076)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,2:29,BROOKLYN,11225,40.662174,-73.953705,"(40.662174, -73.953705)",LEFFERTS AVENUE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4410820,Station Wagon/Sport Utility Vehicle,Van,Station Wagon/Sport Utility Vehicle,, +04/24/2021,12:24,BRONX,10475,40.882595,-73.826775,"(40.882595, -73.826775)",,,2280 TILLOTSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410059,Sedan,Sedan,,, +04/24/2021,20:00,MANHATTAN,10040,40.853115,-73.927246,"(40.853115, -73.927246)",WEST 189 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410305,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,15:00,QUEENS,11429,40.710762,-73.7461,"(40.710762, -73.7461)",,,104-38 212 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4410775,Motorcycle,Sedan,Pick-up Truck,, +04/24/2021,9:20,MANHATTAN,10026,40.8014,-73.94819,"(40.8014, -73.94819)",,,55 WEST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410624,Taxi,,,, +04/20/2021,10:30,BROOKLYN,11222,40.733738,-73.95485,"(40.733738, -73.95485)",GREEN STREET,MANHATTAN AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4410719,Sedan,E-Bike,,, +04/24/2021,16:30,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4409988,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,1:02,BRONX,10451,40.823128,-73.90925,"(40.823128, -73.90925)",,,3212 3 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410117,Sedan,Sedan,,, +04/24/2021,10:30,QUEENS,11413,40.6745,-73.74142,"(40.6745, -73.74142)",135 AVENUE,230 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409952,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,6:00,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410036,Sedan,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +04/24/2021,12:30,BROOKLYN,11235,40.590252,-73.959564,"(40.590252, -73.959564)",,,2475 EAST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410446,Sedan,,,, +04/24/2021,21:00,MANHATTAN,10002,40.720722,-73.98325,"(40.720722, -73.98325)",,,164 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410023,Sedan,,,, +04/22/2021,13:25,,,40.659496,-73.96057,"(40.659496, -73.96057)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410676,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,10:20,,,,,,BRUCKNER EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410588,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,21:50,MANHATTAN,10031,40.81792,-73.949745,"(40.81792, -73.949745)",SAINT NICHOLAS TERRACE,WEST 135 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410187,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,17:40,,,40.77887,-73.943245,"(40.77887, -73.943245)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4410502,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,8:20,,,40.78717,-73.94999,"(40.78717, -73.94999)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4410596,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,16:42,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410563,Station Wagon/Sport Utility Vehicle,Bus,,, +11/26/2021,2:37,,,40.820972,-73.88896,"(40.820972, -73.88896)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487957,Sedan,,,, +04/24/2021,14:00,,,40.761143,-73.838905,"(40.761143, -73.838905)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410297,Sedan,,,, +12/16/2021,14:05,BRONX,10461,40.83511,-73.82683,"(40.83511, -73.82683)",,,1135 CROSBY AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4487162,Sedan,,,, +04/24/2021,12:58,BROOKLYN,11226,40.64663,-73.95566,"(40.64663, -73.95566)",BEDFORD AVENUE,TILDEN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410753,Sedan,Bike,,, +04/24/2021,14:50,QUEENS,11004,40.74607,-73.71855,"(40.74607, -73.71855)",LITTLE NECK PARKWAY,SHILOH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410148,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,11:30,BROOKLYN,11207,40.673283,-73.89046,"(40.673283, -73.89046)",,,277 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410666,Sedan,,,, +04/24/2021,19:31,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4410135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/24/2021,1:43,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",LEGGETT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4409927,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,11:40,BROOKLYN,11212,40.665073,-73.9274,"(40.665073, -73.9274)",EAST NEW YORK AVENUE,EAST 95 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4486953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,0:10,QUEENS,11354,40.764626,-73.810745,"(40.764626, -73.810745)",,,154-19 NORTHERN BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410009,Station Wagon/Sport Utility Vehicle,Bike,,, +04/24/2021,22:00,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410245,Sedan,,,, +03/18/2021,3:48,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4410873,Station Wagon/Sport Utility Vehicle,,,, +04/06/2021,20:49,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410749,Sedan,,,, +04/23/2021,7:33,MANHATTAN,10026,40.802696,-73.949196,"(40.802696, -73.949196)",LENOX AVENUE,WEST 117 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410628,Sedan,Van,,, +04/24/2021,13:20,,,40.54315,-74.17378,"(40.54315, -74.17378)",ARDEN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410255,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,20:30,BROOKLYN,11236,40.63574,-73.90853,"(40.63574, -73.90853)",EAST 84 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410417,Sedan,Sedan,,, +04/15/2021,20:22,BROOKLYN,11213,40.666878,-73.94522,"(40.666878, -73.94522)",CARROLL STREET,BROOKLYN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410635,Box Truck,,,, +04/24/2021,14:40,BRONX,10469,40.871254,-73.84355,"(40.871254, -73.84355)",HAMMERSLEY AVENUE,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410212,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/24/2021,14:00,,,40.644142,-73.957924,"(40.644142, -73.957924)",CORTELYOU ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410078,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,19:30,,,40.65626,-73.950165,"(40.65626, -73.950165)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410682,Sedan,,,, +04/24/2021,23:00,MANHATTAN,10030,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,8 AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4410696,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,17:15,BRONX,10454,40.806587,-73.91041,"(40.806587, -73.91041)",,,745 EAST 141 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4410485,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/23/2021,19:55,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ATLANTIC AVENUE,ELTON STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4410618,Motorcycle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/24/2021,16:15,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410277,Sedan,,,, +04/24/2021,3:21,BROOKLYN,11203,40.655334,-73.93077,"(40.655334, -73.93077)",LENOX ROAD,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,17:40,QUEENS,11104,40.743263,-73.91964,"(40.743263, -73.91964)",QUEENS BOULEVARD,45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410765,Taxi,Sedan,,, +04/24/2021,11:15,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410650,Sedan,,,, +04/24/2021,1:25,BRONX,10474,40.820503,-73.8881,"(40.820503, -73.8881)",GARRISON AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410380,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,20:08,,,40.84528,-73.9265,"(40.84528, -73.9265)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4410859,Sedan,Van,Station Wagon/Sport Utility Vehicle,, +04/23/2021,18:30,BROOKLYN,11207,40.663776,-73.889915,"(40.663776, -73.889915)",RIVERDALE AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410657,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,4:50,,,40.757355,-73.73887,"(40.757355, -73.73887)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4409912,Sedan,,,, +03/04/2021,19:40,,,40.67553,-73.96319,"(40.67553, -73.96319)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410739,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,17:52,BROOKLYN,11225,40.66065,-73.953545,"(40.66065, -73.953545)",ROGERS AVENUE,MAPLE STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4410683,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,11:55,BROOKLYN,11236,40.644245,-73.89103,"(40.644245, -73.89103)",EAST 105 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4410146,Sedan,Sedan,,, +04/24/2021,17:14,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410535,Sedan,Sedan,,, +04/24/2021,18:30,QUEENS,11361,40.760063,-73.77523,"(40.760063, -73.77523)",209 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4410002,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,21:19,QUEENS,11434,40.671852,-73.76436,"(40.671852, -73.76436)",FARMERS BOULEVARD,139 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410514,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,11:40,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410707,Station Wagon/Sport Utility Vehicle,Bike,,, +04/23/2021,18:05,,,40.661167,-73.87969,"(40.661167, -73.87969)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4410629,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,7:00,QUEENS,11373,40.745285,-73.86911,"(40.745285, -73.86911)",,,95-06 43 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410295,Sedan,Sedan,,, +04/24/2021,16:56,QUEENS,11413,40.675213,-73.7378,"(40.675213, -73.7378)",MERRICK BOULEVARD,232 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,12:40,MANHATTAN,10029,40.788692,-73.93787,"(40.788692, -73.93787)",EAST 106 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,13:24,BROOKLYN,11229,40.606876,-73.94795,"(40.606876, -73.94795)",BEDFORD AVENUE,AVENUE R,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,23:30,,,40.81977,-73.93673,"(40.81977, -73.93673)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410022,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,15:02,,,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410072,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,16:25,MANHATTAN,10128,40.781063,-73.949425,"(40.781063, -73.949425)",2 AVENUE,EAST 91 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410849,Sedan,Taxi,,, +04/24/2021,10:15,QUEENS,11412,40.69537,-73.76326,"(40.69537, -73.76326)",MEXICO STREET,QUENCER ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4409972,Pick-up Truck,Sedan,Sedan,, +04/24/2021,12:30,BROOKLYN,11221,40.692146,-73.919464,"(40.692146, -73.919464)",GATES AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410781,Bus,Sedan,,, +04/24/2021,16:00,BROOKLYN,11218,40.633682,-73.976524,"(40.633682, -73.976524)",,,726 EAST 2 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4410467,Sedan,Sedan,,, +04/24/2021,22:05,,,40.666477,-73.808136,"(40.666477, -73.808136)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4410234,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,11:46,QUEENS,11421,40.699993,-73.85391,"(40.699993, -73.85391)",98 STREET,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410732,Sedan,,,, +04/24/2021,23:30,,,,,,QUEENS BOULEVARD,29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410026,Sedan,Sedan,,, +04/24/2021,23:20,BROOKLYN,11212,40.655853,-73.910126,"(40.655853, -73.910126)",BOYLAND STREET,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410096,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2021,7:05,MANHATTAN,10029,40.792244,-73.94419,"(40.792244, -73.94419)",EAST 107 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410619,Box Truck,Tractor Truck Diesel,,, +04/24/2021,1:07,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4410580,Sedan,Motorcycle,,, +04/23/2021,9:58,,,,,,,,11 Hugh J Grant Cr,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410589,Sedan,Sedan,,, +04/24/2021,7:05,BROOKLYN,11223,40.60372,-73.97671,"(40.60372, -73.97671)",,,243 HIGHLAWN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4409962,Sedan,,,, +04/24/2021,19:47,,,40.636917,-74.152115,"(40.636917, -74.152115)",RICHMOND TERRACE,MARINERS LANE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4410335,Motorcycle,,,, +04/24/2021,7:00,,,40.74111,-73.89842,"(40.74111, -73.89842)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4409994,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/24/2021,20:52,BRONX,10467,40.87341,-73.87589,"(40.87341, -73.87589)",EAST 205 STREET,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410484,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,9:49,QUEENS,11411,40.692783,-73.74511,"(40.692783, -73.74511)",SPRINGFIELD BOULEVARD,119 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409948,Sedan,Sedan,,, +04/24/2021,17:56,BRONX,10451,40.825455,-73.91317,"(40.825455, -73.91317)",MELROSE AVENUE,EAST 163 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410125,Taxi,Sedan,,, +04/24/2021,14:29,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410575,Pick-up Truck,Sedan,,, +04/24/2021,7:00,,,40.723347,-73.939316,"(40.723347, -73.939316)",MEEKER AVENUE,,,2,0,0,0,0,0,2,0,Lost Consciousness,Driver Inattention/Distraction,,,,4410439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,13:10,,,40.75383,-73.81841,"(40.75383, -73.81841)",BOWNE STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410014,Sedan,,,, +04/24/2021,12:04,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,9:33,BROOKLYN,11213,40.667072,-73.93223,"(40.667072, -73.93223)",,,1669 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410669,Sedan,,,, +04/24/2021,12:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410246,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,16:30,BROOKLYN,11221,40.684727,-73.935394,"(40.684727, -73.935394)",,,319 LEWIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410192,Sedan,Sedan,,, +04/23/2021,22:10,MANHATTAN,10027,40.803974,-73.94608,"(40.803974, -73.94608)",,,1 MOUNT MORRIS PARK WEST,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4410623,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:06,BROOKLYN,11239,,,,,,727 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4410645,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/24/2021,16:20,STATEN ISLAND,10309,40.521942,-74.23503,"(40.521942, -74.23503)",,,100 PAGE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410256,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/24/2021,12:05,,,40.796215,-73.822975,"(40.796215, -73.822975)",3 AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Following Too Closely,,,,4410010,Bike,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:50,MANHATTAN,10002,40.723648,-73.99103,"(40.723648, -73.99103)",EAST HOUSTON STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410878,Box Truck,Bike,,, +04/24/2021,8:30,QUEENS,11423,40.721455,-73.77665,"(40.721455, -73.77665)",,,85-66 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409986,Sedan,Sedan,Sedan,, +04/24/2021,21:15,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410716,Sedan,,,, +04/24/2021,22:25,BRONX,10451,40.81115,-73.92891,"(40.81115, -73.92891)",RIDER AVENUE,EAST 137 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4410493,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,22:34,MANHATTAN,10029,40.79902,-73.947655,"(40.79902, -73.947655)",,,1367 5 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410594,Sedan,Sedan,,, +04/24/2021,23:40,MANHATTAN,10017,40.752377,-73.97035,"(40.752377, -73.97035)",EAST 46 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4410040,Sedan,Bike,,, +04/24/2021,16:45,,,40.734978,-73.8614,"(40.734978, -73.8614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410298,Station Wagon/Sport Utility Vehicle,Tanker,,, +04/24/2021,18:30,,,40.87028,-73.878395,"(40.87028, -73.878395)",WEBSTER AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4410561,Bike,,,, +04/24/2021,16:00,BRONX,10451,40.82226,-73.911705,"(40.82226, -73.911705)",,,830 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4409980,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,15:20,,,,,,OLMSTED WAY,EAST DRIVE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4410395,E-Scooter,,,, +12/15/2021,18:23,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487177,Sedan,,,, +04/24/2021,4:10,QUEENS,11370,40.764492,-73.89063,"(40.764492, -73.89063)",,,78-06 24 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409933,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,16:00,BRONX,10460,40.832493,-73.88955,"(40.832493, -73.88955)",,,1468 HOE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410132,Sedan,Sedan,,, +04/22/2021,16:20,,,40.648464,-74.00683,"(40.648464, -74.00683)",5 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410812,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,19:50,,,40.780136,-73.988266,"(40.780136, -73.988266)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4410307,Sedan,,,, +04/24/2021,10:00,,,40.88671,-73.81529,"(40.88671, -73.81529)",NEW ENGLAND THRUWAY,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410054,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2021,12:45,,,40.66336,-73.95975,"(40.66336, -73.95975)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410675,Sedan,Sedan,,, +04/24/2021,11:10,,,40.822163,-73.94242,"(40.822163, -73.94242)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410690,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,17:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410627,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,21:00,QUEENS,11355,40.755524,-73.833405,"(40.755524, -73.833405)",COLLEGE POINT BOULEVARD,41 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410750,,,,, +04/24/2021,20:33,MANHATTAN,10010,40.738903,-73.98731,"(40.738903, -73.98731)",PARK AVENUE SOUTH,EAST 21 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4410156,Bike,,,, +04/22/2021,15:05,BROOKLYN,11208,40.682938,-73.86717,"(40.682938, -73.86717)",ATLANTIC AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410636,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,21:21,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410792,Sedan,Sedan,,, +04/24/2021,23:20,BROOKLYN,11219,40.63837,-73.997665,"(40.63837, -73.997665)",49 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410471,Station Wagon/Sport Utility Vehicle,Bike,,, +04/23/2021,13:45,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",CANAL STREET,LAFAYETTE STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4410865,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,19:40,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4410003,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,17:21,BROOKLYN,11211,40.70867,-73.95858,"(40.70867, -73.95858)",,,281 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410542,Sedan,,,, +04/21/2021,14:30,QUEENS,11368,40.753048,-73.87053,"(40.753048, -73.87053)",,,35-19 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410731,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,15:58,BROOKLYN,11223,40.601753,-73.967636,"(40.601753, -73.967636)",,,1988 EAST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410449,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2021,15:00,BROOKLYN,11236,40.642727,-73.91749,"(40.642727, -73.91749)",,,420 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4409993,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,15:00,,,40.74703,-73.89536,"(40.74703, -73.89536)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410027,Sedan,Sedan,,, +04/24/2021,21:20,,,40.69366,-73.85217,"(40.69366, -73.85217)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410599,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,12:03,,,40.70215,-73.82033,"(40.70215, -73.82033)",JAMAICA AVENUE,132 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410591,Sedan,Sedan,,, +04/24/2021,10:50,MANHATTAN,10022,40.75592,-73.97071,"(40.75592, -73.97071)",,,818 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4409973,Moped,,,, +04/05/2021,7:28,BROOKLYN,11210,40.62573,-73.9564,"(40.62573, -73.9564)",OCEAN AVENUE,AVENUE J,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410752,Sedan,Bike,,, +04/23/2021,16:55,MANHATTAN,10027,40.811096,-73.95235,"(40.811096, -73.95235)",,,310 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4410630,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/24/2021,11:50,BRONX,10460,40.84678,-73.8838,"(40.84678, -73.8838)",EAST 181 STREET,SOUTHERN BOULEVARD,,6,0,0,0,0,0,6,0,Turning Improperly,Unspecified,,,,4410274,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,11:25,BROOKLYN,11225,40.660927,-73.94914,"(40.660927, -73.94914)",,,351 MAPLE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4410680,Van,PK,,, +04/20/2021,16:13,BRONX,10455,40.81014,-73.908226,"(40.81014, -73.908226)",EAST 145 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410685,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,5:15,,,40.85668,-73.90811,"(40.85668, -73.90811)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4409918,Sedan,Sedan,,, +04/24/2021,16:24,BROOKLYN,11217,40.67597,-73.97519,"(40.67597, -73.97519)",,,157 LINCOLN PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410842,Sedan,Sedan,,, +04/24/2021,21:00,,,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410328,Sedan,,,, +04/23/2021,23:52,MANHATTAN,10011,40.744034,-74.00313,"(40.744034, -74.00313)",9 AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4410741,Sedan,Sedan,,, +04/24/2021,10:10,,,40.709404,-74.01483,"(40.709404, -74.01483)",WEST STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410145,Motorcycle,Sedan,,, +04/24/2021,15:30,MANHATTAN,10029,40.79428,-73.94902,"(40.79428, -73.94902)",MADISON AVENUE,EAST 107 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4410607,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/16/2021,13:59,,,,,,,,1 KINGS PLAZA,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487583,Sedan,Sedan,,, +04/20/2021,21:30,,,40.693573,-73.92275,"(40.693573, -73.92275)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410784,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,2:18,,,40.586124,-73.990715,"(40.586124, -73.990715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,,,,,4410356,Tractor Truck Diesel,,,, +04/24/2021,22:20,,,40.826057,-73.89722,"(40.826057, -73.89722)",INTERVALE AVENUE,EAST 167 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410020,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +04/24/2021,11:28,QUEENS,11379,40.728416,-73.87975,"(40.728416, -73.87975)",,,57-38 82 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,20:00,BROOKLYN,11211,40.714523,-73.93683,"(40.714523, -73.93683)",,,967 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410518,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,15:00,MANHATTAN,10029,40.800423,-73.945915,"(40.800423, -73.945915)",,,12 EAST 116 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4410620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,6:00,BRONX,10460,40.834667,-73.88936,"(40.834667, -73.88936)",,,1564 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4410102,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,3:20,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410071,TRUCK,,,, +04/16/2021,7:18,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,PARK PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410582,Sedan,,,, +04/22/2021,0:00,QUEENS,11368,40.752068,-73.85423,"(40.752068, -73.85423)",,,112-37 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,12:20,BRONX,10470,40.898815,-73.86223,"(40.898815, -73.86223)",EAST 236 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,12:00,QUEENS,11373,40.741493,-73.87503,"(40.741493, -73.87503)",CORONA AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410294,Sedan,Sedan,,, +04/24/2021,14:40,MANHATTAN,10028,40.778904,-73.96024,"(40.778904, -73.96024)",MADISON AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410705,Sedan,Sedan,,, +04/23/2021,10:19,BROOKLYN,11207,,,,SHEFFIELD AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410660,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,23:10,QUEENS,11427,40.729355,-73.747665,"(40.729355, -73.747665)",SPENCER AVENUE,218 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4410317,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/24/2021,1:27,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,Unspecified,,,4410163,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/24/2021,3:18,BROOKLYN,11207,40.68054,-73.88674,"(40.68054, -73.88674)",ASHFORD STREET,ARLINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410637,Sedan,,,, +04/24/2021,4:50,,,40.641205,-73.877205,"(40.641205, -73.877205)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4410649,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/22/2021,10:00,BROOKLYN,11213,40.666985,-73.930885,"(40.666985, -73.930885)",,,1690 PRESIDENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410670,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,13:50,BRONX,10471,40.90831,-73.90892,"(40.90831, -73.90892)",,,5901 PALISADE AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4410248,Sedan,,,, +04/24/2021,3:43,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",ROGERS AVENUE,CLARENDON ROAD,,0,1,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410388,Sedan,E-Bike,,, +12/16/2021,16:21,BRONX,10466,40.88814,-73.86155,"(40.88814, -73.86155)",,,672 EAST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487811,Sedan,,,, +12/17/2021,12:06,QUEENS,11373,40.742493,-73.8887,"(40.742493, -73.8887)",76 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487325,Sedan,,,, +12/16/2021,19:35,BROOKLYN,11207,40.65591,-73.89191,"(40.65591, -73.89191)",STANLEY AVENUE,ALABAMA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4487192,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,21:54,,,,,,CROSS ISLAND PARKWAY,TOTTEN ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,12:30,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487287,Bus,Sedan,,, +12/15/2021,8:40,BROOKLYN,11229,40.593613,-73.95732,"(40.593613, -73.95732)",,,2316 EAST 13 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4486748,,,,, +12/15/2021,16:19,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY SOUTH,,1,0,0,0,1,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4486974,Sedan,E-Bike,,, +12/16/2021,14:40,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487126,Sedan,,,, +12/15/2021,18:00,BRONX,10456,40.82526,-73.91026,"(40.82526, -73.91026)",,,961 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4486941,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:05,,,40.7352,-73.9858,"(40.7352, -73.9858)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486738,Station Wagon/Sport Utility Vehicle,Bike,,, +12/15/2021,6:00,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486775,Box Truck,,,, +12/16/2021,0:00,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",FOSTER AVENUE,OCEAN PARKWAY,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4488003,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,14:00,BRONX,10468,40.86132,-73.912346,"(40.86132, -73.912346)",,,2246 CEDAR AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487282,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,12:00,MANHATTAN,10027,40.810684,-73.95452,"(40.810684, -73.95452)",MORNINGSIDE AVENUE,WEST 124 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4487014,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,16:15,STATEN ISLAND,10301,40.646664,-74.088936,"(40.646664, -74.088936)",RICHMOND TERRACE,JERSEY STREET,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4487003,,,,, +12/15/2021,5:32,,,40.85947,-73.915726,"(40.85947, -73.915726)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4486700,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,15:30,BROOKLYN,11211,40.70654,-73.95041,"(40.70654, -73.95041)",,,211 UNION AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4487299,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,10:50,BRONX,10455,,,,,,979 AVENUE SAINT JOHN,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487937,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,21:51,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BROWN PLACE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4487139,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +12/17/2021,8:10,BROOKLYN,11222,40.726536,-73.9544,"(40.726536, -73.9544)",GUERNSEY STREET,MESEROLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487250,Sedan,Sedan,,, +12/16/2021,16:03,MANHATTAN,10001,40.753906,-73.99962,"(40.753906, -73.99962)",WEST 33 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4487561,Tractor Truck Diesel,Taxi,,, +12/17/2021,21:45,,,40.582638,-73.978676,"(40.582638, -73.978676)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487784,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,21:55,,,,,,JACKIE ROBINSON PKWY,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4487496,Sedan,,,, +12/06/2021,14:26,,,40.90034,-73.90591,"(40.90034, -73.90591)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4487182,Sedan,,,, +12/16/2021,13:58,QUEENS,11418,40.702354,-73.818756,"(40.702354, -73.818756)",JAMAICA AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4487051,Sedan,Sedan,,, +12/09/2021,8:10,BRONX,10463,40.88532,-73.90055,"(40.88532, -73.90055)",,,5825 BROADWAY,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4487203,Station Wagon/Sport Utility Vehicle,Bus,,, +12/15/2021,13:02,MANHATTAN,10019,40.77161,-73.99046,"(40.77161, -73.99046)",WEST 59 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486873,Pick-up Truck,,,, +12/16/2021,20:25,,,40.68405,-73.98157,"(40.68405, -73.98157)",DEAN STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487101,Bike,,,, +12/15/2021,22:00,QUEENS,11422,40.663223,-73.73351,"(40.663223, -73.73351)",248 STREET,FRANCIS LEWIS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,1:06,,,40.771076,-73.94676,"(40.771076, -73.94676)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486582,Sedan,,,, +12/16/2021,9:10,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4487171,Station Wagon/Sport Utility Vehicle,Van,,, +12/15/2021,0:00,,,40.798306,-73.93683,"(40.798306, -73.93683)",2 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486900,Sedan,E-Bike,,, +10/14/2021,18:30,MANHATTAN,10029,40.795437,-73.943954,"(40.795437, -73.943954)",LEXINGTON AVENUE,EAST 111 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4487960,Taxi,,,, +12/15/2021,19:11,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486918,Sedan,Sedan,,, +12/15/2021,16:45,BRONX,10467,40.877632,-73.867386,"(40.877632, -73.867386)",EAST GUN HILL ROAD,WILLETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487218,Van,Sedan,,, +12/17/2021,23:07,MANHATTAN,10016,40.751263,-73.9825,"(40.751263, -73.9825)",,,431 5 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4487401,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,21:30,QUEENS,11417,40.67987,-73.844505,"(40.67987, -73.844505)",,,105-26 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487133,Sedan,Motorcycle,,, +12/15/2021,13:23,BROOKLYN,11215,40.66303,-73.991684,"(40.66303, -73.991684)",18 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4487235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,23:50,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486832,Sedan,Sedan,,, +12/17/2021,12:00,BRONX,10451,40.82386,-73.91941,"(40.82386, -73.91941)",CONCOURSE VILLAGE EAST,EAST 158 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487977,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,11:53,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487029,Tractor Truck Diesel,Sedan,,, +12/16/2021,16:05,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487314,Sedan,Box Truck,,, +12/13/2021,3:30,,,40.6664,-73.74011,"(40.6664, -73.74011)",NORTH CONDUIT AVENUE,LAURELTON PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4487358,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,0:00,,,40.832695,-73.94972,"(40.832695, -73.94972)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487843,Pick-up Truck,,,, +12/08/2021,21:00,QUEENS,11369,40.75984,-73.862656,"(40.75984, -73.862656)",,,106-11 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487659,Sedan,Sedan,,, +12/17/2021,8:30,,,40.681805,-73.94987,"(40.681805, -73.94987)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487277,Sedan,Sedan,,, +12/17/2021,23:50,BROOKLYN,11203,40.638523,-73.92607,"(40.638523, -73.92607)",KINGS HIGHWAY,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4487608,Sedan,Sedan,,, +12/16/2021,17:15,QUEENS,11358,40.750134,-73.80751,"(40.750134, -73.80751)",OAK AVENUE,ROSE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487444,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,19:07,,,40.72545,-73.892654,"(40.72545, -73.892654)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487716,Sedan,Sedan,,, +12/12/2021,12:41,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487747,Sedan,Sedan,,, +12/16/2021,5:16,,,40.63851,-74.021225,"(40.63851, -74.021225)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486849,Tractor Truck Diesel,Sedan,,, +12/17/2021,17:41,BRONX,10456,40.835297,-73.91291,"(40.835297, -73.91291)",EAST 169 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487949,Sedan,Bus,,, +12/16/2021,20:46,BROOKLYN,11235,40.588886,-73.965645,"(40.588886, -73.965645)",OCEAN PARKWAY,AVENUE Y,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487152,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,17:42,,,40.787685,-73.97502,"(40.787685, -73.97502)",WEST 86 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4487292,Sedan,Sedan,Sedan,, +12/17/2021,8:00,QUEENS,11435,40.694546,-73.80212,"(40.694546, -73.80212)",SUTPHIN BOULEVARD,SOUTH ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487272,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,19:17,BROOKLYN,11226,40.643005,-73.95263,"(40.643005, -73.95263)",CLARENDON ROAD,EAST 26 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4487590,Sedan,,,, +12/12/2021,12:51,BROOKLYN,11233,40.68209,-73.92118,"(40.68209, -73.92118)",,,335 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487760,Sedan,,,, +12/16/2021,11:30,,,40.877167,-73.83755,"(40.877167, -73.83755)",GIVAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487794,Sedan,,,, +12/13/2021,4:11,,,40.895447,-73.88002,"(40.895447, -73.88002)",EAST 233 STREET,JEROME AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4487348,Sedan,,,, +12/16/2021,13:25,MANHATTAN,10026,40.80349,-73.95607,"(40.80349, -73.95607)",,,2121 8 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4487209,Station Wagon/Sport Utility Vehicle,Van,,, +12/17/2021,20:45,BROOKLYN,11236,40.647182,-73.90748,"(40.647182, -73.90748)",EAST 95 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487521,Sedan,Sedan,,, +12/08/2021,21:00,MANHATTAN,10001,40.74959,-74.00279,"(40.74959, -74.00279)",10 AVENUE,WEST 26 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4487551,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/16/2021,14:29,BROOKLYN,11236,40.649895,-73.90762,"(40.649895, -73.90762)",ROCKAWAY PARKWAY,AVENUE D,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487440,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,20:09,BROOKLYN,11226,40.651726,-73.949234,"(40.651726, -73.949234)",,,291 MARTENSE STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4487622,Sedan,E-Bike,,, +12/17/2021,18:20,BROOKLYN,11221,40.694923,-73.915565,"(40.694923, -73.915565)",WILSON AVENUE,PALMETTO STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487342,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,13:25,,,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487750,Sedan,Sedan,,, +12/15/2021,13:25,,,40.844975,-73.91877,"(40.844975, -73.91877)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488015,Sedan,,,, +12/15/2021,8:25,,,40.691208,-73.813545,"(40.691208, -73.813545)",LIBERTY AVENUE,133 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486913,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,9:32,BROOKLYN,11210,40.633583,-73.94774,"(40.633583, -73.94774)",,,2123 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4486771,Sedan,,,, +12/15/2021,4:40,QUEENS,11101,40.74712,-73.94239,"(40.74712, -73.94239)",44 DRIVE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486672,,,,, +12/15/2021,4:20,QUEENS,11370,40.759132,-73.88697,"(40.759132, -73.88697)",81 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486968,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +12/15/2021,9:00,,,40.76464,-73.916595,"(40.76464, -73.916595)",30 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Lane Changing,,,,4487035,Sedan,Sedan,,, +12/15/2021,22:53,BRONX,10459,40.826763,-73.88842,"(40.826763, -73.88842)",,,1029 EAST 167 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4486816,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,17:24,STATEN ISLAND,10308,40.542915,-74.1558,"(40.542915, -74.1558)",ARMSTRONG AVENUE,SYCAMORE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4486797,Pick-up Truck,Pick-up Truck,,, +12/15/2021,9:51,BROOKLYN,11230,40.61308,-73.96839,"(40.61308, -73.96839)",,,1464 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486993,Van,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,5:45,BROOKLYN,11220,40.639088,-74.03351,"(40.639088, -74.03351)",NARROWS AVENUE,68 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487144,Sedan,Bike,,, +12/13/2021,11:17,BROOKLYN,11210,40.63495,-73.94496,"(40.63495, -73.94496)",,,1555 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487709,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +12/17/2021,19:25,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",EAST GUN HILL ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487319,Sedan,Sedan,,, +11/26/2021,17:00,BROOKLYN,11231,40.674953,-74.007545,"(40.674953, -74.007545)",,,505 COLUMBIA STREET,2,0,0,0,0,0,2,0,Unspecified,,,,,4487395,Sedan,,,, +12/17/2021,6:00,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",HIGHLAND AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4487246,Sedan,Sedan,,, +12/17/2021,2:30,MANHATTAN,10036,40.759144,-73.99584,"(40.759144, -73.99584)",,,561 10 AVENUE,7,0,0,0,0,0,7,0,Turning Improperly,Unspecified,,,,4487565,Box Truck,Sedan,,, +12/15/2021,16:47,,,40.68576,-73.915504,"(40.68576, -73.915504)",BROADWAY,HALSEY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486844,Sedan,Dump,,, +12/15/2021,13:50,QUEENS,11691,40.59391,-73.77802,"(40.59391, -73.77802)",,,310 BEACH 47 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4486879,Box Truck,Sedan,,, +12/16/2021,9:40,BROOKLYN,11237,40.714207,-73.92817,"(40.714207, -73.92817)",METROPOLITAN AVENUE,STEWART AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4487117,Sedan,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle, +12/15/2021,17:30,BROOKLYN,11239,40.646065,-73.87979,"(40.646065, -73.87979)",,,1460 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487082,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,10:30,BROOKLYN,11208,40.680737,-73.87889,"(40.680737, -73.87889)",,,217 NORWOOD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487199,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,22:52,,,40.7699,-73.91608,"(40.7699, -73.91608)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487376,Taxi,,,, +12/16/2021,7:20,BRONX,10457,40.840603,-73.91152,"(40.840603, -73.91152)",SHERIDAN AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4487965,TRAILER,Bus,,, +12/13/2021,9:00,BROOKLYN,11211,40.7203,-73.95508,"(40.7203, -73.95508)",,,101 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487214,Sedan,,,, +12/15/2021,15:55,BRONX,10457,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486895,Sedan,,,, +12/17/2021,15:41,MANHATTAN,10017,40.752003,-73.9695,"(40.752003, -73.9695)",,,330 EAST 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487353,Sedan,Sedan,,, +12/16/2021,16:18,BRONX,10461,40.84899,-73.85035,"(40.84899, -73.85035)",WILLIAMSBRIDGE ROAD,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487231,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,16:25,BROOKLYN,11211,40.71106,-73.94994,"(40.71106, -73.94994)",,,540 GRAND STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4486837,Bike,Box Truck,,, +12/16/2021,9:45,,,40.675537,-73.871,"(40.675537, -73.871)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487186,Garbage or Refuse,,,, +12/17/2021,9:50,QUEENS,11370,40.773808,-73.8929,"(40.773808, -73.8929)",HAZEN STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487650,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,9:10,BRONX,10459,40.828297,-73.888985,"(40.828297, -73.888985)",,,1169 BRYANT AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4487461,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,0:25,QUEENS,11432,40.70519,-73.800064,"(40.70519, -73.800064)",160 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487059,Sedan,Sedan,,, +12/13/2021,19:25,QUEENS,11377,40.76219,-73.90195,"(40.76219, -73.90195)",,,26-45 BROOKLYN QUEENS EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4487891,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,18:00,QUEENS,11435,40.694042,-73.80131,"(40.694042, -73.80131)",,,107-05 SUTPHIN BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4487486,Sedan,,,, +12/12/2021,12:38,,,40.679375,-73.96408,"(40.679375, -73.96408)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487617,Sedan,Sedan,,, +12/16/2021,16:41,BRONX,10469,40.87746,-73.853745,"(40.87746, -73.853745)",EAST 215 STREET,LACONIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487814,Sedan,Sedan,,, +12/17/2021,21:48,QUEENS,11432,40.722008,-73.8018,"(40.722008, -73.8018)",,,80-12 166 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487677,Sedan,Sedan,,, +12/16/2021,17:45,,,40.8882,-73.90761,"(40.8882, -73.90761)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,10:20,BROOKLYN,11207,40.651043,-73.89266,"(40.651043, -73.89266)",,,930 WILLIAMS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,21:00,BROOKLYN,11230,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,AVENUE N,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4487546,Pick-up Truck,Sedan,,, +12/15/2021,5:35,MANHATTAN,10029,40.79373,-73.945786,"(40.79373, -73.945786)",,,128 EAST 108 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4487336,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/17/2021,8:00,,,40.69439,-73.86174,"(40.69439, -73.86174)",FOREST PARKWAY,85 DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487241,Sedan,,,, +12/16/2021,17:55,,,40.670116,-73.92248,"(40.670116, -73.92248)",RALPH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487733,Sedan,,,, +12/16/2021,16:12,QUEENS,11433,40.696625,-73.7849,"(40.696625, -73.7849)",169 PLACE,109 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487088,Sedan,Sedan,,, +12/15/2021,16:43,BROOKLYN,11204,40.627453,-73.97807,"(40.627453, -73.97807)",19 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486857,Sedan,,,, +02/19/2022,16:04,QUEENS,11104,40.745438,-73.923,"(40.745438, -73.923)",43 AVENUE,41 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504062,Sedan,Sedan,,, +07/01/2022,16:05,QUEENS,11413,40.650387,-73.75712,"(40.650387, -73.75712)",,,230-19 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4542608,Sedan,,,, +03/09/2022,17:20,MANHATTAN,10029,,,,EAST 116 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514548,,,,, +06/27/2022,3:10,QUEENS,11379,40.72792,-73.87322,"(40.72792, -73.87322)",,,84-38 ELIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542639,Sedan,,,, +09/16/2021,23:43,,,40.838947,-73.916435,"(40.838947, -73.916435)",ELLIOT PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458099,Sedan,,,, +03/26/2022,15:25,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,111 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513934,Bike,,,, +03/27/2022,22:03,QUEENS,11435,40.709373,-73.81014,"(40.709373, -73.81014)",148 STREET,85 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513925,Pick-up Truck,Pick-up Truck,,, +03/27/2022,17:38,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514156,Sedan,Sedan,,, +03/27/2022,22:33,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",CARPENTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514017,Sedan,,,, +03/27/2022,8:05,,,40.62307,-74.149315,"(40.62307, -74.149315)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514578,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2021,11:46,,,,,,METROPOLITAN AVENUE,FOREST PARK DRIVE EAST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4410926,Sedan,Sedan,,, +03/25/2022,7:00,BROOKLYN,11212,0,0,"(0.0, 0.0)",,,734 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514640,Sedan,,,, +03/27/2022,15:00,,,40.689075,-73.774536,"(40.689075, -73.774536)",116 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514552,Sedan,,,, +03/27/2022,0:00,MANHATTAN,10016,40.746403,-73.97973,"(40.746403, -73.97973)",LEXINGTON AVENUE,EAST 34 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513631,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,14:42,MANHATTAN,10021,40.768795,-73.958374,"(40.768795, -73.958374)",2 AVENUE,EAST 72 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4513979,Sedan,Bike,,, +03/27/2022,20:30,BROOKLYN,11203,40.662384,-73.93745,"(40.662384, -73.93745)",,,728 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514343,Bus,Sedan,,, +03/27/2022,1:50,,,40.713085,-73.94415,"(40.713085, -73.94415)",AINSLIE STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4514085,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,5:11,BROOKLYN,11203,40.655018,-73.92588,"(40.655018, -73.92588)",,,125 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4514503,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/27/2022,0:15,BROOKLYN,11217,40.67821,-73.97323,"(40.67821, -73.97323)",,,296 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,22:58,BRONX,10461,40.845215,-73.82645,"(40.845215, -73.82645)",,,3121 MIDDLETOWN ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4514099,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,8:19,STATEN ISLAND,10309,40.52143,-74.198235,"(40.52143, -74.198235)",,,201 SEGUINE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4514575,Station Wagon/Sport Utility Vehicle,,,, +03/18/2022,5:30,BROOKLYN,11212,40.66255,-73.90893,"(40.66255, -73.90893)",ROCKAWAY AVENUE,LIVONIA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514633,Sedan,,,, +03/25/2022,20:07,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514474,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,4:15,,,40.69439,-73.86174,"(40.69439, -73.86174)",FOREST PARKWAY,85 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4513748,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,0:30,,,40.609505,-74.181885,"(40.609505, -74.181885)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513902,Sedan,,,, +03/27/2022,5:00,MANHATTAN,10035,40.80549,-73.937965,"(40.80549, -73.937965)",,,107 EAST 126 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4514169,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,0:12,,,40.862442,-73.89715,"(40.862442, -73.89715)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4514207,Taxi,Taxi,Sedan,Sedan, +03/27/2022,12:00,BRONX,10451,40.824253,-73.91581,"(40.824253, -73.91581)",,,855 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4514380,Station Wagon/Sport Utility Vehicle,,,, +03/20/2022,0:40,,,40.68553,-73.95656,"(40.68553, -73.95656)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514436,,,,, +03/27/2022,16:00,QUEENS,11418,40.69364,-73.83256,"(40.69364, -73.83256)",114 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4513859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +03/27/2022,12:30,BROOKLYN,11214,40.599068,-73.996826,"(40.599068, -73.996826)",,,8750 BAY PARKWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513815,Sedan,Sedan,Sedan,, +03/23/2022,19:55,,,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,13:20,BROOKLYN,11207,40.677155,-73.88773,"(40.677155, -73.88773)",JEROME STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513851,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,11:20,,,40.603874,-73.99544,"(40.603874, -73.99544)",85 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4513817,Station Wagon/Sport Utility Vehicle,PK,,, +03/27/2022,22:36,BROOKLYN,11236,40.632954,-73.90416,"(40.632954, -73.90416)",AVENUE L,EAST 85 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4514605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,4:35,,,40.75383,-73.81841,"(40.75383, -73.81841)",BOWNE STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513895,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,13:15,QUEENS,11412,40.69893,-73.77037,"(40.69893, -73.77037)",HILBURN AVENUE,WOOD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513777,Sedan,,,, +03/24/2022,12:20,MANHATTAN,10012,40.72101,-73.994,"(40.72101, -73.994)",,,2 SPRING STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514434,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,14:20,,,,,,CROSS BAY BOULEVARD,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487815,Sedan,,,, +03/27/2022,12:40,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",WEST 46 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514069,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,19:46,QUEENS,11434,40.66928,-73.78021,"(40.66928, -73.78021)",137 AVENUE,155 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4514105,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,17:50,BRONX,10460,40.840637,-73.86624,"(40.840637, -73.86624)",,,1841 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4514458,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,22:25,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514225,Station Wagon/Sport Utility Vehicle,Bike,,, +03/13/2022,4:00,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514441,,,,, +03/27/2022,6:30,BROOKLYN,11203,40.658703,-73.93013,"(40.658703, -73.93013)",,,154 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513804,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,16:40,BROOKLYN,11203,40.643356,-73.929504,"(40.643356, -73.929504)",,,1200 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513875,Sedan,Sedan,,, +03/27/2022,13:20,BRONX,10458,40.86429,-73.89323,"(40.86429, -73.89323)",,,2600 BRIGGS AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4513996,Sedan,Sedan,,, +03/27/2022,17:30,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",PITKIN AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514655,Sedan,Sedan,,, +03/27/2022,19:40,,,40.823772,-73.87245,"(40.823772, -73.87245)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514205,Sedan,Sedan,,, +03/27/2022,8:15,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/22/2022,7:05,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514679,Sedan,Sedan,,, +03/27/2022,21:00,QUEENS,11429,40.7061,-73.73385,"(40.7061, -73.73385)",223 STREET,111 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513903,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/27/2022,14:45,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4513949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,7:30,STATEN ISLAND,10310,40.63293,-74.11462,"(40.63293, -74.11462)",,,372 CARY AVENUE,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4514615,Sedan,,,, +03/27/2022,15:12,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4513821,Sedan,Sedan,,, +03/15/2022,7:10,,,40.795456,-73.96564,"(40.795456, -73.96564)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514502,Sedan,,,, +03/27/2022,9:30,,,40.68888,-73.960014,"(40.68888, -73.960014)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514255,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,17:13,,,40.68936,-73.7848,"(40.68936, -73.7848)",LINDEN BOULEVARD,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4514400,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/26/2022,4:42,BRONX,10471,40.896393,-73.896805,"(40.896393, -73.896805)",,,6211 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514493,Sedan,,,, +03/21/2022,8:10,BRONX,10466,40.88754,-73.86501,"(40.88754, -73.86501)",,,3920 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4514587,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,16:34,BRONX,10451,,,,EAST 138 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4514051,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/28/2022,14:30,BROOKLYN,11208,40.658703,-73.87673,"(40.658703, -73.87673)",COZINE AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514562,Pick-up Truck,Sedan,,, +03/27/2022,8:00,BRONX,10465,40.82552,-73.82619,"(40.82552, -73.82619)",,,2825 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4514101,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,7:15,,,40.70807,-73.94333,"(40.70807, -73.94333)",GRAHAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4513965,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,19:50,BRONX,10458,40.858562,-73.88544,"(40.858562, -73.88544)",,,590 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4514177,Ambulance,Sedan,,, +03/26/2022,4:27,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",ROCKAWAY AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514644,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/25/2021,10:30,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411091,Sedan,,,, +12/18/2021,14:12,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4487908,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,21:25,QUEENS,11355,40.76147,-73.818085,"(40.76147, -73.818085)",147 STREET,41 AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4513910,Sedan,Sedan,,, +03/21/2022,13:30,MANHATTAN,10001,40.749638,-73.99905,"(40.749638, -73.99905)",WEST 28 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514509,Station Wagon/Sport Utility Vehicle,Bike,,, +03/27/2022,23:44,,,40.637135,-74.11636,"(40.637135, -74.11636)",HENDERSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514703,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,1:50,BROOKLYN,11201,40.69108,-73.98439,"(40.69108, -73.98439)",,,237 DUFFIELD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514136,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/27/2022,19:20,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513980,Sedan,Sedan,,, +03/27/2022,10:25,,,40.687748,-73.96979,"(40.687748, -73.96979)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514138,Sedan,Sedan,Sedan,, +03/27/2022,13:50,QUEENS,11435,40.694492,-73.80361,"(40.694492, -73.80361)",,,146-42 106 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514091,Station Wagon/Sport Utility Vehicle,,,, +03/17/2022,22:04,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514570,Sedan,Sedan,,, +03/27/2022,1:15,QUEENS,11368,40.757248,-73.864555,"(40.757248, -73.864555)",,,33-14 104 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4513632,Sedan,,,, +03/23/2022,3:07,,,40.683502,-73.91152,"(40.683502, -73.91152)",BROADWAY,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514628,Sedan,E-Bike,,, +03/27/2022,15:15,,,40.6678,-73.801414,"(40.6678, -73.801414)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513940,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/24/2022,16:45,MANHATTAN,10034,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4514487,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/26/2022,19:35,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4514695,Tow Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +03/27/2022,0:10,BROOKLYN,11214,40.606613,-73.990906,"(40.606613, -73.990906)",,,2145 79 STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4513693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,20:40,,,,,,SHELL ROAD,SHORE PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514576,Sedan,,,, +03/27/2022,21:01,QUEENS,11360,40.779865,-73.78053,"(40.779865, -73.78053)",23 AVENUE,211 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4513909,Sedan,Sedan,Sedan,Sedan, +03/27/2022,4:54,,,40.59502,-73.76852,"(40.59502, -73.76852)",EDGEMERE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514092,Sedan,Sedan,,, +03/13/2022,20:40,BROOKLYN,11233,,,,Thomas S Boyland St,HULL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514634,Sedan,Sedan,,, +03/27/2022,19:50,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",LORIMER STREET,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4513966,Sedan,Sedan,,, +03/24/2022,9:00,,,40.84519,-73.91339,"(40.84519, -73.91339)",CROSS BRONX EXPRESSWAY,EAST 174 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514473,Sedan,,,, +03/27/2022,17:45,BRONX,10463,40.884758,-73.89954,"(40.884758, -73.89954)",,,216 WEST 238 STREET,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4514507,Bus,Station Wagon/Sport Utility Vehicle,,, +02/27/2021,21:00,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4396726,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,4:50,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514023,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,4:10,STATEN ISLAND,10314,40.6148,-74.12066,"(40.6148, -74.12066)",DONGAN AVENUE,BEECHWOOD PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514613,Sedan,Sedan,,, +04/23/2021,18:56,BRONX,10458,40.86187,-73.89178,"(40.86187, -73.89178)",EAST FORDHAM ROAD,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410480,Station Wagon/Sport Utility Vehicle,Moped,,, +04/20/2021,19:05,,,40.696342,-73.97644,"(40.696342, -73.97644)",PARK AVENUE,NORTH PORTLAND AVENUE,,1,0,1,0,0,0,0,0,,,,,,4411155,,,,, +04/20/2021,14:44,MANHATTAN,10019,40.769615,-73.98978,"(40.769615, -73.98978)",,,530 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411216,Sedan,Sedan,,, +04/04/2021,16:27,QUEENS,11375,40.71883,-73.840256,"(40.71883, -73.840256)",,,109-32 ASCAN AVENUE,1,0,0,0,1,0,0,0,Passing Too Closely,Passing Too Closely,,,,4405495,Sedan,Bike,,, +03/27/2022,2:03,,,40.81339,-73.95627,"(40.81339, -73.95627)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513820,Sedan,Sedan,,, +04/25/2021,14:50,,,40.759903,-73.76033,"(40.759903, -73.76033)",46 AVENUE,220 PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410368,Sedan,,,, +04/25/2021,3:00,BROOKLYN,11211,40.714592,-73.93877,"(40.714592, -73.93877)",METROPOLITAN AVENUE,OLIVE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410547,Sedan,,,, +04/25/2021,15:58,BRONX,10451,40.823666,-73.914116,"(40.823666, -73.914116)",,,860 MELROSE AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4410452,Sedan,,,, +04/22/2021,7:00,QUEENS,11365,40.736885,-73.80765,"(40.736885, -73.80765)",161 STREET,65 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410988,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,0:00,BRONX,10460,40.846527,-73.88098,"(40.846527, -73.88098)",,,900 BRONX PARK SOUTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410946,Sedan,,,, +04/25/2021,0:01,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410024,Convertible,,,, +04/25/2021,17:45,QUEENS,11422,40.661484,-73.741974,"(40.661484, -73.741974)",BROOKVILLE BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4410426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,10:00,,,40.805637,-73.9344,"(40.805637, -73.9344)",EAST 128 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4410641,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,17:58,BRONX,10454,40.802914,-73.92029,"(40.802914, -73.92029)",EAST 132 STREET,SAINT ANNS AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4410494,Sedan,Sedan,,, +04/25/2021,6:03,QUEENS,11106,40.763573,-73.92189,"(40.763573, -73.92189)",31 AVENUE,33 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410907,Sedan,Bike,,, +04/20/2021,10:30,BROOKLYN,11236,40.64609,-73.89691,"(40.64609, -73.89691)",FLATLANDS AVENUE,EAST 102 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411056,Sedan,,,, +04/25/2021,1:15,,,40.74901,-73.83465,"(40.74901, -73.83465)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4410038,Sedan,Sedan,,, +04/25/2021,16:32,BROOKLYN,11210,40.62994,-73.94646,"(40.62994, -73.94646)",EAST 31 STREET,AURELIA COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410508,Sedan,,,, +04/24/2021,17:31,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4410985,Sedan,Sedan,Sedan,Sedan, +03/03/2021,6:30,QUEENS,11365,40.735596,-73.79224,"(40.735596, -73.79224)",,,65-26 180 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4411034,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,8:30,MANHATTAN,10029,40.786556,-73.946594,"(40.786556, -73.946594)",,,216 EAST 99 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513852,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,3:10,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410077,Sedan,,,, +04/25/2021,16:55,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410339,Sedan,Sedan,,, +04/25/2021,23:15,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410558,Convertible,,,, +04/25/2021,17:48,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410585,Sedan,,,, +04/25/2021,13:00,BROOKLYN,11207,40.65478,-73.889984,"(40.65478, -73.889984)",WORTMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,10:00,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,13:52,QUEENS,11413,40.680252,-73.73716,"(40.680252, -73.73716)",,,130-44 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4410275,Sedan,Sedan,Sedan,Sedan, +04/25/2021,5:20,,,40.633152,-74.01639,"(40.633152, -74.01639)",,,67 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4410201,Sedan,,,, +04/17/2021,22:00,QUEENS,11435,40.694546,-73.80212,"(40.694546, -73.80212)",SUTPHIN BOULEVARD,SOUTH ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,16:50,,,0,0,"(0.0, 0.0)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411114,Box Truck,Bike,,, +04/25/2021,0:38,,,40.60115,-73.97839,"(40.60115, -73.97839)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4410263,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2021,7:00,,,40.716114,-73.824905,"(40.716114, -73.824905)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410204,Sedan,,,, +04/25/2021,3:30,STATEN ISLAND,10301,40.634,-74.097275,"(40.634, -74.097275)",CASTLETON AVENUE,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4411003,Sedan,,,, +04/25/2021,15:30,QUEENS,11102,40.76831,-73.927246,"(40.76831, -73.927246)",,,30-39 23 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410309,Sedan,Sedan,,, +04/25/2021,1:10,,,,,,WEST SHORE EXPRESSWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4410139,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,19:55,BROOKLYN,11204,40.618633,-73.98009,"(40.618633, -73.98009)",59 STREET,21 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4410684,Sedan,Bike,,, +04/25/2021,16:15,,,40.578938,-73.98522,"(40.578938, -73.98522)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410474,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,10:24,,,40.712692,-73.925735,"(40.712692, -73.925735)",GARDNER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410519,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,8:00,QUEENS,11429,40.715504,-73.740974,"(40.715504, -73.740974)",,,217-10 100 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410779,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,0:57,BRONX,10462,40.8354,-73.85525,"(40.8354, -73.85525)",,,1459 UNIONPORT ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Other Vehicular,Unspecified,,,4410601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2021,19:30,MANHATTAN,10011,40.748035,-74.00502,"(40.748035, -74.00502)",,,520 WEST 23 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410736,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/25/2021,10:15,BROOKLYN,11224,40.579803,-73.97184,"(40.579803, -73.97184)",WEST 5 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410170,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/25/2021,11:51,BROOKLYN,11228,40.622093,-74.01808,"(40.622093, -74.01808)",,,956 80 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Passing Too Closely,,,,4410288,Sedan,,,, +04/25/2021,14:30,QUEENS,11417,40.67403,-73.84063,"(40.67403, -73.84063)",LINDEN BOULEVARD,96 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4410433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2020,10:07,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4411064,Sedan,Sedan,,, +04/22/2021,19:47,MANHATTAN,10036,40.763428,-73.99271,"(40.763428, -73.99271)",WEST 48 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411224,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,20:30,BRONX,10453,40.858044,-73.90527,"(40.858044, -73.90527)",BUCHANAN PLACE,DAVIDSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410584,AMBULANCE,,,, +03/27/2022,9:15,QUEENS,11691,40.596443,-73.76474,"(40.596443, -73.76474)",,,333 BEACH 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514247,Sedan,,,, +04/16/2021,16:00,QUEENS,11432,40.71263,-73.782486,"(40.71263, -73.782486)",,,88-21 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411076,Bus,Sedan,,, +04/25/2021,10:45,BROOKLYN,11214,40.60148,-73.99306,"(40.60148, -73.99306)",86 STREET,BAY 31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,16:10,MANHATTAN,10036,40.76129,-73.99053,"(40.76129, -73.99053)",,,670 9 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411203,Station Wagon/Sport Utility Vehicle,Bike,,, +04/25/2021,15:35,BRONX,10461,40.85734,-73.85139,"(40.85734, -73.85139)",,,1228 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,17:47,,,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411014,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,1:25,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4410238,Sedan,,,, +04/24/2021,16:45,QUEENS,11106,40.76086,-73.9241,"(40.76086, -73.9241)",,,32-20 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410906,Sedan,Pick-up Truck,,, +04/25/2021,23:50,BRONX,10473,40.818184,-73.86125,"(40.818184, -73.86125)",,,640 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410615,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,16:50,BROOKLYN,11207,40.679478,-73.893936,"(40.679478, -73.893936)",BRADFORD STREET,ARLINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,1:30,,,40.76229,-73.986115,"(40.76229, -73.986115)",8 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411217,Sedan,Box Truck,,, +04/25/2021,13:30,QUEENS,11430,,,,Belt parkway,Vanwyck expressway,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4410894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/20/2021,9:20,STATEN ISLAND,10301,40.646664,-74.088936,"(40.646664, -74.088936)",JERSEY STREET,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Vehicle Vandalism,Unspecified,Unspecified,,4410995,Sedan,Sedan,Sedan,Sedan, +04/25/2021,11:45,BRONX,10467,40.8755,-73.876495,"(40.8755, -73.876495)",EAST 207 STREET,PERRY AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4410462,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/22/2021,20:54,BROOKLYN,11220,40.634163,-74.00736,"(40.634163, -74.00736)",9 AVENUE,60 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4410963,Sedan,Bike,,, +04/25/2021,0:00,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",OCEAN AVENUE,ALBEMARLE ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4410509,Sedan,,,, +04/25/2021,1:41,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410414,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,15:05,BROOKLYN,11233,40.672745,-73.92119,"(40.672745, -73.92119)",,,1665 PROSPECT PLACE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4410571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/21/2021,14:58,,,40.576275,-73.98796,"(40.576275, -73.98796)",WEST 21 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4411060,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/25/2021,6:30,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4410350,Station Wagon/Sport Utility Vehicle,,,, +04/21/2021,8:20,QUEENS,11106,40.765224,-73.9317,"(40.765224, -73.9317)",BROADWAY,21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410920,Box Truck,,,, +04/24/2021,22:45,,,40.69773,-73.81409,"(40.69773, -73.81409)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Other Vehicular,,,4411081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,8:00,QUEENS,11421,40.694523,-73.85873,"(40.694523, -73.85873)",,,85-57 86 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4513933,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,21:52,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4410427,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/25/2021,3:01,BRONX,10468,40.857758,-73.90095,"(40.857758, -73.90095)",CRESTON AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4410539,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/25/2021,17:00,BRONX,10455,40.817017,-73.916214,"(40.817017, -73.916214)",,,2918 3 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4410496,Sedan,,,, +04/23/2021,19:07,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,1:02,QUEENS,11375,40.72696,-73.841385,"(40.72696, -73.841385)",112 STREET,68 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410030,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,14:00,QUEENS,11378,40.732082,-73.92033,"(40.732082, -73.92033)",,,46-32 53 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411020,Pick-up Truck,,,, +04/21/2021,13:30,MANHATTAN,10028,40.77592,-73.956116,"(40.77592, -73.956116)",,,1438 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411190,Beverage Truck,,,, +04/25/2021,1:39,,,40.677746,-73.73096,"(40.677746, -73.73096)",LAURELTON PARKWAY,,,0,1,0,1,0,0,0,0,,,,,,4410383,,,,, +03/24/2022,10:20,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514444,Sedan,Tractor Truck Diesel,,, +04/20/2021,18:20,BROOKLYN,11205,40.692142,-73.97067,"(40.692142, -73.97067)",,,190 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411154,Sedan,,,, +04/25/2021,14:55,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4411079,Sedan,Sedan,Sedan,, +04/06/2021,14:50,BRONX,10459,40.81969,-73.90161,"(40.81969, -73.90161)",EAST 160 STREET,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410943,Sedan,E-Bike,,, +04/25/2021,0:30,,,40.71699,-73.82402,"(40.71699, -73.82402)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410039,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,18:30,,,40.649635,-73.9379,"(40.649635, -73.9379)",EAST 42 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4410987,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,2:15,,,40.86159,-73.91295,"(40.86159, -73.91295)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4410349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2021,17:30,QUEENS,11412,40.69955,-73.747734,"(40.69955, -73.747734)",115 AVENUE,FRANCIS LEWIS BOULEVARD,,4,0,0,0,0,0,4,0,Glare,,,,,4410504,Station Wagon/Sport Utility Vehicle,,,, +04/12/2021,22:56,BROOKLYN,11221,40.690563,-73.94536,"(40.690563, -73.94536)",TOMPKINS AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4411036,Sedan,Sedan,Bike,, +04/25/2021,0:15,BROOKLYN,11220,40.62958,-74.01212,"(40.62958, -74.01212)",68 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410415,Station Wagon/Sport Utility Vehicle,Bike,,, +04/25/2021,20:46,,,40.662674,-73.94562,"(40.662674, -73.94562)",BROOKLYN AVENUE,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410819,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,15:49,,,40.750294,-73.99485,"(40.750294, -73.99485)",8 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410918,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/25/2021,16:40,,,40.602684,-73.94232,"(40.602684, -73.94232)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4410453,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,15:47,BROOKLYN,11234,40.635258,-73.92745,"(40.635258, -73.92745)",KINGS HIGHWAY,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411125,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,6:45,,,40.728516,-73.88428,"(40.728516, -73.88428)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,,,,4411009,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,6:52,,,40.68029,-73.80807,"(40.68029, -73.80807)",115 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410233,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,0:15,,,40.61312,-73.9894,"(40.61312, -73.9894)",20 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4410264,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/25/2021,12:05,QUEENS,11361,40.75757,-73.77668,"(40.75757, -73.77668)",45 ROAD,206 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410609,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,6:30,QUEENS,11435,40.69985,-73.80974,"(40.69985, -73.80974)",144 PLACE,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411086,Sedan,,,, +04/25/2021,16:40,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4410369,Sedan,Sedan,,, +04/25/2021,18:00,,,40.82472,-73.87147,"(40.82472, -73.87147)",BRUCKNER BOULEVARD,METCALF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410766,Sedan,,,, +04/22/2021,11:00,,,40.651325,-73.93906,"(40.651325, -73.93906)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411055,Sedan,Sedan,,, +04/25/2021,6:30,,,40.83472,-73.91121,"(40.83472, -73.91121)",EAST 169 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410175,Sedan,Sedan,,, +04/25/2021,16:35,,,40.847897,-73.92499,"(40.847897, -73.92499)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410546,Sedan,Sedan,,, +04/25/2021,23:18,,,40.8307,-73.88519,"(40.8307, -73.88519)",SHERIDAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410617,Sedan,Sedan,,, +04/25/2021,10:46,BROOKLYN,11212,40.662125,-73.90106,"(40.662125, -73.90106)",JUNIUS STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410257,Sedan,Sedan,,, +04/25/2021,3:23,,,40.83772,-73.92763,"(40.83772, -73.92763)",WEST 167 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4410430,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,12:30,BROOKLYN,11212,40.66479,-73.91532,"(40.66479, -73.91532)",BLAKE AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514639,Sedan,,,, +04/22/2021,19:00,STATEN ISLAND,10310,,,,BROADWAY,HENDERSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410994,Sedan,Sedan,,, +04/25/2021,10:36,BROOKLYN,11237,40.698254,-73.90878,"(40.698254, -73.90878)",WYCKOFF AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410782,Sedan,Sedan,,, +04/25/2021,20:25,BROOKLYN,11232,40.654133,-74.01169,"(40.654133, -74.01169)",41 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410360,Sedan,Bike,,, +04/25/2021,3:15,BROOKLYN,11211,40.716778,-73.95602,"(40.716778, -73.95602)",,,205 NORTH 7 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4410440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,4:10,QUEENS,11373,40.746788,-73.871925,"(40.746788, -73.871925)",41 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513807,Sedan,,,, +04/15/2021,10:10,BROOKLYN,11206,40.694637,-73.949066,"(40.694637, -73.949066)",VERNON AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411065,Sedan,Sedan,,, +04/22/2021,20:25,QUEENS,11103,40.758553,-73.919334,"(40.758553, -73.919334)",,,32-49 STEINWAY STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4410924,Sedan,Bike,,, +04/25/2021,3:35,BROOKLYN,11204,40.622234,-73.990685,"(40.622234, -73.990685)",17 AVENUE,62 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4411207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/25/2021,0:05,QUEENS,11421,40.68417,-73.86565,"(40.68417, -73.86565)",,,93-23 74 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410595,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,2:10,MANHATTAN,10001,40.74764,-73.986626,"(40.74764, -73.986626)",,,39 WEST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410045,Taxi,,,, +04/25/2021,21:30,,,40.79147,-73.97411,"(40.79147, -73.97411)",WEST 91 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410734,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,15:12,BROOKLYN,11210,40.62534,-73.955284,"(40.62534, -73.955284)",,,1140 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410313,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,8:55,,,40.660442,-73.95688,"(40.660442, -73.95688)",MAPLE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410640,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,11:30,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",114 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410557,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,20:36,QUEENS,11368,40.74385,-73.85522,"(40.74385, -73.85522)",,,51-07 108 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410470,Sedan,Sedan,,, +04/14/2021,19:18,MANHATTAN,10003,40.72919,-73.98724,"(40.72919, -73.98724)",2 AVENUE,EAST 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4411231,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,19:37,STATEN ISLAND,10301,40.6394,-74.08578,"(40.6394, -74.08578)",,,211 BENZIGER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411002,Sedan,,,, +04/25/2021,18:37,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4410515,Pick-up Truck,Sedan,Sedan,, +04/22/2021,23:50,QUEENS,11103,40.761826,-73.90676,"(40.761826, -73.90676)",,,28-48 49 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410925,Van,Sedan,,, +04/25/2021,15:30,MANHATTAN,10036,40.758144,-73.989845,"(40.758144, -73.989845)",,,307 WEST 43 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410391,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,1:54,,,40.737865,-74.00019,"(40.737865, -74.00019)",WEST 13 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410767,Station Wagon/Sport Utility Vehicle,Bike,,, +04/21/2021,14:20,BROOKLYN,11249,40.720318,-73.96173,"(40.720318, -73.96173)",KENT AVENUE,NORTH 7 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410902,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,23:40,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4410436,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,11:00,BROOKLYN,11208,40.673107,-73.87291,"(40.673107, -73.87291)",,,561 CHESTNUT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410655,Van,,,, +04/25/2021,5:25,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4410088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,22:35,BROOKLYN,11206,40.70871,-73.936516,"(40.70871, -73.936516)",,,290 MESEROLE STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4410533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,14:00,BROOKLYN,11203,40.64124,-73.943726,"(40.64124, -73.943726)",AVENUE D,EAST 35 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4410271,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,19:28,BRONX,10467,40.87716,-73.865776,"(40.87716, -73.865776)",,,712 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410541,Sedan,Sedan,,, +04/25/2021,17:38,,,40.826466,-73.83013,"(40.826466, -73.83013)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4410525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/23/2021,17:40,BROOKLYN,11220,40.636047,-74.00742,"(40.636047, -74.00742)",,,840 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410961,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,19:10,MANHATTAN,10031,40.82773,-73.94952,"(40.82773, -73.94952)",WEST 147 STREET,BROADWAY,,3,0,3,0,0,0,0,0,Glare,,,,,4410458,Sedan,,,, +04/22/2021,16:49,,,40.675236,-73.97106,"(40.675236, -73.97106)",FLATBUSH AVENUE,PLAZA STREET EAST,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410979,Sedan,Sedan,,, +04/25/2021,2:30,,,40.71718,-73.98311,"(40.71718, -73.98311)",PITT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410031,Station Wagon/Sport Utility Vehicle,Taxi,,, +03/04/2021,16:15,BROOKLYN,11237,40.699436,-73.91229,"(40.699436, -73.91229)",GATES AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,16:00,MANHATTAN,10013,40.72121,-74.00037,"(40.72121, -74.00037)",,,471 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4410863,Sedan,,,, +04/21/2021,4:58,MANHATTAN,10029,40.786808,-73.94524,"(40.786808, -73.94524)",2 AVENUE,EAST 100 STREET,,2,0,0,0,0,0,2,0,Fell Asleep,,,,,4411187,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,5:30,,,40.713497,-73.75714,"(40.713497, -73.75714)",202 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411087,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/25/2021,6:04,MANHATTAN,10035,40.80208,-73.937,"(40.80208, -73.937)",,,2253 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410632,Sedan,,,, +04/25/2021,8:55,MANHATTAN,10017,40.752117,-73.97556,"(40.752117, -73.97556)",LEXINGTON AVENUE,EAST 43 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4410252,Sedan,Taxi,,, +04/25/2021,9:30,MANHATTAN,10017,40.7528,-73.979294,"(40.7528, -73.979294)",MADISON AVENUE,EAST 42 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410258,Sedan,Bus,,, +04/25/2021,16:39,BROOKLYN,11212,40.66018,-73.91414,"(40.66018, -73.91414)",RIVERDALE AVENUE,STRAUSS STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4410572,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/12/2021,8:08,QUEENS,11385,40.69813,-73.89014,"(40.69813, -73.89014)",,,77-12 64 LANE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411018,Station Wagon/Sport Utility Vehicle,Bus,,, +04/25/2021,6:00,,,40.696033,-73.98453,"(40.696033, -73.98453)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4410282,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,3:30,,,40.688652,-73.84709,"(40.688652, -73.84709)",ATLANTIC AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4410611,Sedan,Sedan,,, +04/16/2021,18:00,,,40.68218,-73.94659,"(40.68218, -73.94659)",HALSEY STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4411059,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,17:08,QUEENS,11362,40.762054,-73.74458,"(40.762054, -73.74458)",RUSHMORE AVENUE,HANFORD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410359,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,21:55,BROOKLYN,11203,40.66041,-73.93424,"(40.66041, -73.93424)",SCHENECTADY AVENUE,RUTLAND ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4410668,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,19:30,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411085,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,6:10,,,40.679996,-73.787445,"(40.679996, -73.787445)",119 AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410166,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,7:07,,,40.66996,-73.90889,"(40.66996, -73.90889)",OSBORN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410573,Sedan,,,, +04/25/2021,0:40,,,40.662807,-73.89646,"(40.662807, -73.89646)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410663,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,19:18,BRONX,10473,40.822678,-73.842575,"(40.822678, -73.842575)",ZEREGA AVENUE,HOMER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410743,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,7:49,,,40.83829,-73.930016,"(40.83829, -73.930016)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4410177,Sedan,Sedan,,, +04/25/2021,0:00,BRONX,10457,40.84857,-73.892075,"(40.84857, -73.892075)",,,2060 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410278,Sedan,Sedan,,, +04/17/2021,2:00,,,40.684,-73.95031,"(40.684, -73.95031)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411066,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,18:55,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411078,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,16:10,,,40.776016,-73.98724,"(40.776016, -73.98724)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410344,Sedan,Taxi,,, +04/25/2021,12:30,MANHATTAN,10065,40.7642,-73.9557,"(40.7642, -73.9557)",,,1275 YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410506,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,22:10,,,40.6843,-73.94121,"(40.6843, -73.94121)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411061,Sedan,Sedan,,, +04/25/2021,0:00,,,40.83829,-73.930016,"(40.83829, -73.930016)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4410862,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,14:50,STATEN ISLAND,10310,40.63729,-74.115005,"(40.63729, -74.115005)",HENDERSON AVENUE,NORTH BURGHER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4411006,Sedan,Sedan,Sedan,Sedan, +04/25/2021,3:18,,,40.895195,-73.88012,"(40.895195, -73.88012)",EAST 233 STREET,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4410225,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,8:30,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4410370,Sedan,,,, +04/25/2021,4:19,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4410087,Sedan,,,, +04/25/2021,16:00,BROOKLYN,11203,40.638542,-73.92604,"(40.638542, -73.92604)",FARRAGUT ROAD,KINGS HIGHWAY,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4410314,Sedan,Sedan,,, +04/22/2021,15:15,MANHATTAN,10029,40.790466,-73.942566,"(40.790466, -73.942566)",,,2059 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411191,Pick-up Truck,Sedan,,, +04/25/2021,23:39,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410562,Sedan,,,, +04/25/2021,12:53,BROOKLYN,11226,40.64439,-73.94987,"(40.64439, -73.94987)",EAST 29 STREET,CORTELYOU ROAD,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4410296,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/25/2021,10:57,QUEENS,11419,40.694572,-73.8225,"(40.694572, -73.8225)",,,94-16 125 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4410955,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,14:50,QUEENS,11419,40.690296,-73.813156,"(40.690296, -73.813156)",,,104-37 133 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410674,Sedan,,,, +04/25/2021,19:17,,,40.63932,-74.02356,"(40.63932, -74.02356)",65 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410416,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,12:04,BROOKLYN,11214,40.602535,-73.99321,"(40.602535, -73.99321)",BAY PARKWAY,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514150,Sedan,Sedan,Sedan,, +04/25/2021,0:00,,,,,,bruckner blvd,watson avenue,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410720,Sedan,,,, +04/25/2021,3:00,BROOKLYN,11208,40.676975,-73.871346,"(40.676975, -73.871346)",,,363 PINE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,18:20,QUEENS,11103,40.767544,-73.91202,"(40.767544, -73.91202)",,,25-43 STEINWAY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410482,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,19:30,,,40.60426,-73.75286,"(40.60426, -73.75286)",MOTT AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514259,,,,, +04/18/2021,18:00,,,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411053,Sedan,,,, +04/25/2021,6:35,BROOKLYN,11234,40.592636,-73.90362,"(40.592636, -73.90362)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410399,Sedan,,,, +04/24/2021,22:20,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",103 AVENUE,111 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410932,Sedan,bmw,,, +04/25/2021,3:30,,,40.679337,-73.94405,"(40.679337, -73.94405)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,16:36,QUEENS,11367,40.736652,-73.813354,"(40.736652, -73.813354)",,,65-11 155 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410981,Sedan,,,, +04/25/2021,9:15,BROOKLYN,11212,40.664448,-73.91524,"(40.664448, -73.91524)",,,2022 STRAUSS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410265,Sedan,,,, +04/25/2021,16:28,BROOKLYN,11229,40.616043,-73.94484,"(40.616043, -73.94484)",KINGS HIGHWAY,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4410447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,11:00,QUEENS,11358,40.761204,-73.78807,"(40.761204, -73.78807)",STATION ROAD,194 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411130,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,13:30,BROOKLYN,11216,40.68024,-73.946754,"(40.68024, -73.946754)",FULTON STREET,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411042,Bus,Sedan,,, +04/25/2021,18:09,MANHATTAN,10034,40.8651,-73.92189,"(40.8651, -73.92189)",SHERMAN AVENUE,WEST 204 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4410884,Sedan,Sedan,,, +04/25/2021,20:13,,,40.831623,-73.95072,"(40.831623, -73.95072)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4410455,Sedan,,,, +04/23/2021,19:30,BROOKLYN,11215,40.66978,-73.98921,"(40.66978, -73.98921)",,,462 4 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411219,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,0:30,,,40.747242,-73.88766,"(40.747242, -73.88766)",78 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410551,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,20:20,BRONX,10474,40.816833,-73.886734,"(40.816833, -73.886734)",,,1306 LAFAYETTE AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4410386,E-Bike,,,, +04/25/2021,7:10,MANHATTAN,10019,40.7607,-73.97564,"(40.7607, -73.97564)",,,680 5 AVENUE,1,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4411209,E-Bike,,,, +04/24/2021,2:30,QUEENS,11106,40.758705,-73.93793,"(40.758705, -73.93793)",21 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410903,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,1:03,BRONX,10451,40.8281,-73.92021,"(40.8281, -73.92021)",EAST 163 STREET,SHERIDAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4410429,Sedan,,,, +04/25/2021,11:40,MANHATTAN,10032,40.839302,-73.936165,"(40.839302, -73.936165)",,,21 JUMEL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410361,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,9:52,BROOKLYN,11234,40.61462,-73.928055,"(40.61462, -73.928055)",,,2274 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4410967,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/24/2021,14:20,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410992,Sedan,Sedan,,, +04/25/2021,1:40,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4410590,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,8:00,,,40.691456,-73.9178,"(40.691456, -73.9178)",WOODBINE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410786,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,18:25,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",JUNCTION BOULEVARD,43 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410469,Sedan,Motorscooter,,, +04/25/2021,11:40,BROOKLYN,11211,40.70752,-73.95193,"(40.70752, -73.95193)",,,363 HEWES STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410534,Sedan,,,, +04/22/2021,11:00,,,40.68668,-73.95958,"(40.68668, -73.95958)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411058,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,15:30,QUEENS,11106,40.758865,-73.938324,"(40.758865, -73.938324)",37 AVENUE,14 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410923,Taxi,,,, +04/24/2021,19:10,,,40.695995,-73.96964,"(40.695995, -73.96964)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4411152,Sedan,,,, +04/25/2021,19:41,BRONX,10469,40.87539,-73.86022,"(40.87539, -73.86022)",,,904 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410543,Sedan,,,, +04/25/2021,1:03,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4410033,Station Wagon/Sport Utility Vehicle,,,, +04/11/2021,15:30,QUEENS,11365,40.742706,-73.77754,"(40.742706, -73.77754)",,,198-18 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4411030,Sedan,,,, +04/21/2021,16:51,BROOKLYN,11234,40.62154,-73.92424,"(40.62154, -73.92424)",EAST 53 STREET,AVENUE M,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4410970,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2021,20:02,BRONX,10462,40.846252,-73.86552,"(40.846252, -73.86552)",,,1833 HUNT AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4410396,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,9:20,,,40.8076,-73.93719,"(40.8076, -73.93719)",EAST 129 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410634,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/25/2021,6:29,MANHATTAN,10017,40.75348,-73.980896,"(40.75348, -73.980896)",WEST 42 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4410259,Sedan,Sedan,,, +04/25/2021,23:25,MANHATTAN,10029,40.79554,-73.9481,"(40.79554, -73.9481)",EAST 109 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410612,Sedan,E-Bike,,, +04/24/2021,14:00,STATEN ISLAND,10305,40.606693,-74.07593,"(40.606693, -74.07593)",,,121 NARROWS ROAD NORTH,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4410997,Sedan,Sedan,,, +04/25/2021,1:30,,,40.702362,-73.91291,"(40.702362, -73.91291)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410890,Sedan,Bike,,, +04/25/2021,16:29,BRONX,10468,,,,,,237 LANDING ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410478,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/25/2021,14:07,BROOKLYN,11249,,,,KENT AVENUE,SOUTH 9 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410513,Sedan,Sedan,,, +04/25/2021,3:30,,,40.736004,-73.99362,"(40.736004, -73.99362)",WEST 14 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410769,Sedan,Sedan,,, +04/25/2021,0:44,STATEN ISLAND,10305,40.581566,-74.07532,"(40.581566, -74.07532)",,,625 CAPODANNO BOULEVARD,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4410565,Sedan,,,, +04/25/2021,6:00,BROOKLYN,11232,40.658546,-73.99634,"(40.658546, -73.99634)",5 AVENUE,26 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410292,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,11:00,QUEENS,11377,40.743454,-73.91484,"(40.743454, -73.91484)",ROOSEVELT AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410357,Sedan,Sedan,,, +04/23/2021,6:00,QUEENS,11433,40.69578,-73.79314,"(40.69578, -73.79314)",,,160-03 108 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411084,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,7:00,BROOKLYN,11224,40.57699,-73.98153,"(40.57699, -73.98153)",STILLWELL AVENUE,MERMAID AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410168,Sedan,Sedan,,, +04/25/2021,19:00,,,40.6884,-73.95118,"(40.6884, -73.95118)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411062,Sedan,,,, +04/25/2021,10:00,,,40.709827,-73.83983,"(40.709827, -73.83983)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410579,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,20:15,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4410435,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,14:43,,,40.680035,-73.9055,"(40.680035, -73.9055)",BROADWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411230,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,20:30,,,40.70453,-73.817245,"(40.70453, -73.817245)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4411016,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,2:00,BROOKLYN,11220,40.643257,-74.0015,"(40.643257, -74.0015)",,,4606 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411163,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,2:58,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410302,Sedan,Sedan,,, +04/25/2021,13:20,MANHATTAN,10032,40.84241,-73.93536,"(40.84241, -73.93536)",,,501 WEST 172 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410362,PK,,,, +04/25/2021,18:00,,,40.6952,-73.92844,"(40.6952, -73.92844)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410787,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,1:00,BROOKLYN,11208,40.67381,-73.86491,"(40.67381, -73.86491)",SUTTER AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410664,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,7:12,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410678,Sedan,Sedan,,, +04/19/2021,8:00,QUEENS,11434,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4408552,Sedan,Sedan,,, +04/25/2021,2:12,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",WATTS STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4410144,Sedan,Taxi,Taxi,, +04/25/2021,14:40,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410522,Sedan,Sedan,,, +04/25/2021,9:55,BROOKLYN,11230,40.61839,-73.95668,"(40.61839, -73.95668)",,,1817 AVENUE M,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410249,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,14:03,,,40.640762,-74.00767,"(40.640762, -74.00767)",7 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410587,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,5:59,,,40.76077,-73.87209,"(40.76077, -73.87209)",31 AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inattention/Distraction,,,,4410082,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,9:20,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4410371,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,22:10,BROOKLYN,11207,40.66658,-73.89253,"(40.66658, -73.89253)",VERMONT STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410658,Sedan,,,, +04/25/2021,16:20,MANHATTAN,10002,40.71497,-73.99451,"(40.71497, -73.99451)",,,26 FORSYTH STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4411199,Sedan,Sedan,,, +04/25/2021,4:50,QUEENS,11372,40.749157,-73.86943,"(40.749157, -73.86943)",JUNCTION BOULEVARD,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410559,Sedan,,,, +04/25/2021,11:25,QUEENS,11422,40.661472,-73.735245,"(40.661472, -73.735245)",,,142-31 249 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410276,Sedan,,,, +01/26/2021,9:00,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410991,3-Door,,,, +04/21/2021,21:40,BROOKLYN,11204,40.630283,-73.97816,"(40.630283, -73.97816)",18 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410941,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,1:10,BROOKLYN,11223,40.602478,-73.96636,"(40.602478, -73.96636)",AVENUE S,OCEAN PARKWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4410450,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,18:25,,,40.643204,-73.90929,"(40.643204, -73.90929)",FARRAGUT ROAD,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4410418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/25/2021,7:05,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410860,Sedan,,,, +04/25/2021,18:40,QUEENS,11103,40.756718,-73.91422,"(40.756718, -73.91422)",BROADWAY,46 STREET,,2,0,0,0,0,0,2,0,Glare,Unspecified,,,,4410908,Sedan,Sedan,,, +04/25/2021,13:24,BRONX,10458,40.86463,-73.892136,"(40.86463, -73.892136)",EAST 194 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410457,Sedan,E-Scooter,,, +04/24/2021,18:15,MANHATTAN,10036,40.760925,-73.99454,"(40.760925, -73.99454)",WEST 44 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411212,Bike,Bike,,, +04/25/2021,0:35,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,REMSEN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410269,Station Wagon/Sport Utility Vehicle,Bike,,, +04/21/2021,2:30,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",EAST 53 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4411132,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,8:00,,,40.73949,-73.8369,"(40.73949, -73.8369)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4410206,Sedan,,,, +04/25/2021,1:22,STATEN ISLAND,10304,40.622463,-74.07254,"(40.622463, -74.07254)",VANDERBILT AVENUE,BAY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411004,Sedan,Sedan,,, +04/25/2021,16:40,QUEENS,11416,40.686283,-73.838936,"(40.686283, -73.838936)",,,104-11 101 AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4410605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,4:00,BROOKLYN,11213,40.672062,-73.925255,"(40.672062, -73.925255)",BUFFALO AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410702,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,17:25,QUEENS,11426,40.7322,-73.721306,"(40.7322, -73.721306)",246 STREET,85 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410315,Sedan,Sedan,,, +04/25/2021,22:27,,,40.770256,-73.91586,"(40.770256, -73.91586)",33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410486,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/25/2021,1:00,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4410653,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/25/2021,19:10,,,40.771347,-73.87097,"(40.771347, -73.87097)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410550,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,0:58,BROOKLYN,11221,40.68834,-73.93015,"(40.68834, -73.93015)",,,150 REID AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410200,Sedan,,,, +04/25/2021,4:45,MANHATTAN,10011,40.745617,-74.00322,"(40.745617, -74.00322)",,,427 WEST 21 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4410042,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/25/2021,6:16,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",SOUTHERN BOULEVARD,EAST 149 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410384,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,2:50,QUEENS,11433,40.70291,-73.780876,"(40.70291, -73.780876)",177 STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411077,Sedan,,,, +04/25/2021,17:20,BROOKLYN,11226,40.649788,-73.9622,"(40.649788, -73.9622)",CHURCH AVENUE,SAINT PAULS PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410507,Sedan,Sedan,,, +04/25/2021,7:00,,,40.608006,-73.99473,"(40.608006, -73.99473)",20 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410342,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/24/2021,10:32,MANHATTAN,10037,40.810234,-73.94153,"(40.810234, -73.94153)",,,48 WEST 130 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410949,Taxi,,,, +04/24/2021,11:27,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4410984,Sedan,Sedan,,, +04/23/2021,15:30,MANHATTAN,10034,40.86758,-73.91842,"(40.86758, -73.91842)",VERMILYEA AVENUE,WEST 211 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410881,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,14:00,BROOKLYN,11208,,,,,,9720 Drew street,0,0,0,0,0,0,0,0,Unspecified,,,,,4411050,Sedan,,,, +04/25/2021,19:10,,,40.760464,-73.826546,"(40.760464, -73.826546)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410400,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,19:00,QUEENS,11105,40.77643,-73.90703,"(40.77643, -73.90703)",,,21-06 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410904,Sedan,,,, +04/25/2021,10:00,BRONX,10461,40.841465,-73.831436,"(40.841465, -73.831436)",DUDLEY AVENUE,WELLMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411071,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,22:58,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410581,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,16:45,QUEENS,11436,40.670326,-73.79244,"(40.670326, -73.79244)",130 AVENUE,146 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411103,Sedan,Bike,,, +04/24/2021,19:56,MANHATTAN,10013,,,,,,197 WORTH STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411201,Moped,,,, +04/25/2021,10:50,BRONX,10466,40.894474,-73.85678,"(40.894474, -73.85678)",,,4234 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410260,Sedan,,,, +04/25/2021,4:15,BROOKLYN,11207,40.663685,-73.88893,"(40.663685, -73.88893)",NEW LOTS AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410639,Sedan,Sedan,,, +04/24/2021,3:05,,,40.82682,-73.94154,"(40.82682, -73.94154)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411015,Sedan,Snow Plow,,, +04/25/2021,11:00,,,40.55359,-74.16127,"(40.55359, -74.16127)",GENESEE AVENUE,STANLEY CIRCLE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,,,4410566,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2021,7:47,BROOKLYN,11226,40.64043,-73.95624,"(40.64043, -73.95624)",DITMAS AVENUE,EAST 23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410247,Sedan,Sedan,,, +04/25/2021,16:45,QUEENS,11375,40.731617,-73.85149,"(40.731617, -73.85149)",YELLOWSTONE BOULEVARD,64 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410306,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,12:15,,,40.675037,-73.930534,"(40.675037, -73.930534)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4410742,Sedan,,,, +04/25/2021,21:16,BROOKLYN,11223,40.60905,-73.9709,"(40.60905, -73.9709)",AVENUE P,EAST 3 STREET,,2,0,0,0,1,0,1,0,Unspecified,Unspecified,,,,4410681,Sedan,Bike,,, +04/25/2021,4:45,,,40.68211,-73.79464,"(40.68211, -73.79464)",116 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410169,Sedan,,,, +04/20/2021,11:55,,,40.687668,-73.951035,"(40.687668, -73.951035)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/22/2021,16:18,QUEENS,11423,40.710827,-73.77066,"(40.710827, -73.77066)",188 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411140,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,7:05,,,40.68366,-73.90788,"(40.68366, -73.90788)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410893,Sedan,,,, +04/24/2021,4:10,MANHATTAN,10036,40.76155,-73.99408,"(40.76155, -73.99408)",10 AVENUE,WEST 45 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4411225,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,4:00,BROOKLYN,11218,40.64404,-73.97453,"(40.64404, -73.97453)",,,234 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4410466,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,11:00,QUEENS,11432,40.718525,-73.79954,"(40.718525, -73.79954)",82 ROAD,167 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4410965,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/24/2021,9:50,QUEENS,11375,40.7079,-73.851105,"(40.7079, -73.851105)",71 AVENUE,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410973,Station Wagon/Sport Utility Vehicle,Bus,,, +04/25/2021,1:05,BROOKLYN,11213,40.665443,-73.935555,"(40.665443, -73.935555)",,,678 CROWN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,14:58,,,40.699757,-73.79359,"(40.699757, -73.79359)",BREWER BOULEVARD,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411083,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2021,23:20,BRONX,10469,40.875393,-73.83862,"(40.875393, -73.83862)",,,3219 ELY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410520,Sedan,Sedan,,, +04/25/2021,18:02,,,40.847897,-73.92499,"(40.847897, -73.92499)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Oversized Vehicle,Following Too Closely,,,4410544,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/19/2021,23:30,QUEENS,11385,40.7056,-73.85822,"(40.7056, -73.85822)",UNION TURNPIKE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411032,Sedan,,,, +04/25/2021,23:07,,,40.59657,-73.90794,"(40.59657, -73.90794)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410394,Sedan,Taxi,,, +04/25/2021,20:20,,,40.731464,-74.00314,"(40.731464, -74.00314)",MORTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410770,Box Truck,Sedan,,, +04/25/2021,17:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4410434,Sedan,,,, +04/12/2021,10:25,,,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4411063,Bus,E-Bike,,, +04/21/2021,8:05,BRONX,10469,40.87182,-73.861374,"(40.87182, -73.861374)",BRONXWOOD AVENUE,SOUTH OAK DRIVE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4409532,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,13:30,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4410536,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/25/2021,14:00,BROOKLYN,11220,40.63532,-74.02324,"(40.63532, -74.02324)",68 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410289,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,7:15,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4410141,Sedan,,,, +04/25/2021,20:01,BRONX,10472,40.825428,-73.86615,"(40.825428, -73.86615)",,,1775 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4410613,Sedan,Sedan,Sedan,, +04/25/2021,23:20,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410795,Sedan,,,, +04/25/2021,3:15,BROOKLYN,11206,40.69553,-73.94343,"(40.69553, -73.94343)",,,247 THROOP AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410364,AMBULANCE,Sedan,,, +04/25/2021,6:45,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4410353,Sedan,Sedan,,, +04/25/2021,1:40,BROOKLYN,11208,40.675873,-73.87784,"(40.675873, -73.87784)",,,873 GLENMORE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4410665,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/17/2021,0:00,BROOKLYN,11206,40.69897,-73.95702,"(40.69897, -73.95702)",FLUSHING AVENUE,BEDFORD AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411057,Pick-up Truck,Sedan,,, +04/25/2021,23:25,QUEENS,11414,40.6656,-73.74648,"(40.6656, -73.74648)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410428,Sedan,,,, +04/25/2021,17:00,QUEENS,11373,40.7466,-73.879715,"(40.7466, -73.879715)",,,86-17 BRITTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410475,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,17:26,,,40.645298,-74.10466,"(40.645298, -74.10466)",RICHMOND TERRACE,SNUG HARBOR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410996,Sedan,,,, +04/20/2021,15:22,QUEENS,11419,40.692135,-73.83485,"(40.692135, -73.83485)",ATLANTIC AVENUE,111 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4410927,Sedan,Sedan,,, +04/24/2021,21:45,MANHATTAN,10036,40.759205,-73.98464,"(40.759205, -73.98464)",WEST 47 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411218,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,14:44,,,40.670586,-73.76509,"(40.670586, -73.76509)",FARMERS BOULEVARD,142 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410512,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,10:37,BROOKLYN,11234,40.608063,-73.92057,"(40.608063, -73.92057)",,,2560 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410406,Sedan,,,, +04/21/2021,17:05,,,40.69614,-73.9734,"(40.69614, -73.9734)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4411156,Sedan,Box Truck,,, +04/24/2021,20:29,QUEENS,11101,40.75232,-73.92882,"(40.75232, -73.92882)",,,37-25 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410905,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,9:55,QUEENS,11105,40.77652,-73.915924,"(40.77652, -73.915924)",26 STREET,23 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410921,Station Wagon/Sport Utility Vehicle,,,, +04/02/2021,13:36,,,40.811977,-73.92373,"(40.811977, -73.92373)",ALEXANDER AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4410942,Sedan,Bike,,, +04/25/2021,12:30,BRONX,10460,40.833508,-73.89118,"(40.833508, -73.89118)",,,1455 MINFORD PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410451,Sedan,Sedan,,, +03/27/2022,4:36,BROOKLYN,11207,40.662014,-73.886826,"(40.662014, -73.886826)",VAN SICLEN AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513836,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,4:00,BRONX,10453,40.84825,-73.90975,"(40.84825, -73.90975)",EAST 176 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4513995,Sedan,,,, +03/23/2022,11:10,,,40.80907,-73.94455,"(40.80907, -73.94455)",WEST 127 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514537,Station Wagon/Sport Utility Vehicle,Dump,,, +03/16/2022,8:53,BRONX,10469,40.881508,-73.85111,"(40.881508, -73.85111)",LACONIA AVENUE,EAST 221 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,,,,4514584,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,0:40,QUEENS,11432,40.706924,-73.79064,"(40.706924, -73.79064)",,,169-03 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4514462,Sedan,Sedan,,, +03/27/2022,14:00,BROOKLYN,11201,40.69349,-73.97917,"(40.69349, -73.97917)",ASHLAND PLACE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513918,Station Wagon/Sport Utility Vehicle,Bike,,, +03/27/2022,0:04,BROOKLYN,11235,40.585693,-73.95173,"(40.585693, -73.95173)",,,1711 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514009,Sedan,Sedan,,, +03/27/2022,5:33,MANHATTAN,10128,40.784615,-73.953964,"(40.784615, -73.953964)",EAST 93 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4514665,Sedan,,,, +03/27/2022,3:45,,,40.524097,-74.2141,"(40.524097, -74.2141)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4514524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,14:00,MANHATTAN,10002,40.717968,-73.979774,"(40.717968, -73.979774)",,,72 COLUMBIA STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4514224,Dump,Sedan,,, +03/27/2022,6:53,MANHATTAN,10032,40.841393,-73.936844,"(40.841393, -73.936844)",,,518 WEST 170 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513715,Sedan,Sedan,,, +03/27/2022,16:03,BROOKLYN,11238,40.678326,-73.97203,"(40.678326, -73.97203)",CARLTON AVENUE,PROSPECT PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514440,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,7:00,,,40.77558,-73.84267,"(40.77558, -73.84267)",126 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513896,Sedan,,,, +03/27/2022,13:10,,,40.738197,-73.93774,"(40.738197, -73.93774)",BORDEN AVENUE,30 PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4514314,Pick-up Truck,Sedan,,, +03/27/2022,20:45,BROOKLYN,11204,40.62945,-73.979866,"(40.62945, -73.979866)",18 AVENUE,47 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514164,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,4:45,BROOKLYN,11212,40.660004,-73.91887,"(40.660004, -73.91887)",,,299 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514065,Sedan,Sedan,,, +03/10/2022,8:50,BRONX,10470,40.895466,-73.87713,"(40.895466, -73.87713)",EAST 233 STREET,VANCORTLANDT PARK EAST,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,21:19,,,40.82442,-73.83613,"(40.82442, -73.83613)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514104,Sedan,Sedan,,, +03/26/2022,13:00,BROOKLYN,11208,40.671463,-73.8773,"(40.671463, -73.8773)",,,292 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514527,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,11:37,BROOKLYN,11215,40.670986,-73.984795,"(40.670986, -73.984795)",5 AVENUE,6 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513948,Sedan,Bike,,, +02/28/2022,20:25,BROOKLYN,11215,40.673485,-73.97296,"(40.673485, -73.97296)",UNION STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4514447,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,12:17,BRONX,10463,40.883823,-73.89471,"(40.883823, -73.89471)",,,3869 CANNON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514497,Sedan,Sedan,,, +03/27/2022,0:17,BRONX,10453,40.85166,-73.904236,"(40.85166, -73.904236)",BUSH STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514003,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,6:00,BROOKLYN,11219,40.63844,-74.000786,"(40.63844, -74.000786)",,,963 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514375,Sedan,,,, +03/27/2022,1:13,BROOKLYN,11225,40.663258,-73.94418,"(40.663258, -73.94418)",,,34 LAMONT COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513773,Sedan,Sedan,,, +03/27/2022,20:30,,,40.69889,-73.91753,"(40.69889, -73.91753)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514128,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,13:00,QUEENS,11418,40.69293,-73.84235,"(40.69293, -73.84235)",104 STREET,90 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4513858,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,20:21,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4514141,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/27/2022,20:20,QUEENS,11412,40.696377,-73.757034,"(40.696377, -73.757034)",196 STREET,115 ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4513938,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,15:27,,,40.7014,-73.91858,"(40.7014, -73.91858)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514127,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,22:10,,,40.671474,-73.93088,"(40.671474, -73.93088)",UTICA AVENUE,,,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4514561,Sedan,,,, +03/27/2022,14:15,,,40.612183,-74.18033,"(40.612183, -74.18033)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514042,Pick-up Truck,Sedan,,, +03/23/2022,8:25,,,40.66326,-73.99512,"(40.66326, -73.99512)",4 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514571,e bike uni,,,, +03/27/2022,0:20,,,40.676243,-73.95269,"(40.676243, -73.95269)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4513647,Taxi,Station Wagon/Sport Utility Vehicle,,, +03/23/2022,1:00,BROOKLYN,11212,40.664116,-73.9093,"(40.664116, -73.9093)",,,619 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514629,Sedan,Sedan,,, +09/17/2021,19:15,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4458270,Motorcycle,,,, +03/21/2022,7:25,MANHATTAN,10034,40.865795,-73.920006,"(40.865795, -73.920006)",SHERMAN AVENUE,WEST 207 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514484,Garbage or Refuse,Sedan,,, +03/27/2022,15:00,MANHATTAN,10018,40.754093,-73.99209,"(40.754093, -73.99209)",WEST 37 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4514268,E-Bike,,,, +03/27/2022,4:50,BROOKLYN,11208,40.67637,-73.88323,"(40.67637, -73.88323)",LIBERTY AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4513829,Sedan,,,, +03/27/2022,9:55,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513842,Sedan,,,, +03/27/2022,17:10,BRONX,10458,40.852528,-73.884346,"(40.852528, -73.884346)",,,2323 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514181,Pick-up Truck,Box Truck,,, +03/25/2022,19:30,STATEN ISLAND,10309,40.521248,-74.204765,"(40.521248, -74.204765)",BAYVIEW AVENUE,EXCELSIOR AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4514623,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,7:15,,,40.885426,-73.897446,"(40.885426, -73.897446)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4513871,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,9:25,QUEENS,11691,40.596313,-73.745316,"(40.596313, -73.745316)",BEACH 11 STREET,HEYSON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2022,2:10,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514643,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,2:55,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,WEST 204 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4513917,Sedan,Sedan,Sedan,, +03/27/2022,17:40,MANHATTAN,10019,40.76593,-73.99088,"(40.76593, -73.99088)",10 AVENUE,WEST 52 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4514409,Taxi,,,, +03/27/2022,0:15,QUEENS,11429,40.70768,-73.74512,"(40.70768, -73.74512)",212 STREET,110 AVENUE,,5,0,0,0,0,0,5,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4513786,Sedan,Sedan,Sedan,Sedan, +03/27/2022,22:40,BROOKLYN,11230,40.616238,-73.96357,"(40.616238, -73.96357)",CONEY ISLAND AVENUE,RODER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514183,Sedan,,,, +03/27/2022,4:24,,,40.779747,-73.915825,"(40.779747, -73.915825)",DITMARS BOULEVARD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4514387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/23/2022,8:00,QUEENS,11372,40.75507,-73.89002,"(40.75507, -73.89002)",77 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514443,Dump,,,, +03/27/2022,6:15,QUEENS,11373,40.74655,-73.88331,"(40.74655, -73.88331)",,,82-10 BAXTER AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4513808,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,15:29,MANHATTAN,10002,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,PITT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/23/2022,15:05,QUEENS,11368,40.74005,-73.86622,"(40.74005, -73.86622)",96 STREET,CHRISTIE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514672,Box Truck,Sedan,,, +03/25/2022,15:10,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,WEST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4514693,Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,12:00,,,40.757755,-73.79304,"(40.757755, -73.79304)",UTOPIA PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4513908,Sedan,,,, +03/27/2022,12:34,MANHATTAN,10037,40.81779,-73.93597,"(40.81779, -73.93597)",WEST 142 STREET,CHISUM PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514095,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,23:20,BROOKLYN,11212,40.658916,-73.9119,"(40.658916, -73.9119)",NEWPORT STREET,AMBOY STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Obstruction/Debris,,,,4514645,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,11:14,,,40.84852,-73.935936,"(40.84852, -73.935936)",WEST 179 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514483,Sedan,,,, +03/27/2022,11:35,STATEN ISLAND,10301,40.61978,-74.10793,"(40.61978, -74.10793)",,,1050 CLOVE ROAD,2,0,0,0,0,0,2,0,Steering Failure,Unspecified,,,,4514610,Sedan,Sedan,,, +03/27/2022,4:46,,,40.763885,-73.84002,"(40.763885, -73.84002)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4513819,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,9:30,,,40.682507,-73.94375,"(40.682507, -73.94375)",TOMPKINS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4513762,Sedan,,,, +09/10/2021,7:00,MANHATTAN,10038,40.708225,-74.00077,"(40.708225, -74.00077)",,,252 FRONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458322,Sedan,,,, +03/27/2022,12:34,QUEENS,11367,40.74152,-73.83,"(40.74152, -73.83)",136 STREET,62 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4513897,E-Bike,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,22:00,MANHATTAN,10035,40.79856,-73.93547,"(40.79856, -73.93547)",,,307 EAST 119 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4514174,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,15:30,BROOKLYN,11208,40.679916,-73.867424,"(40.679916, -73.867424)",,,105 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/23/2022,18:30,BROOKLYN,11216,40.677353,-73.94424,"(40.677353, -73.94424)",PACIFIC STREET,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514557,Sedan,,,, +03/27/2022,15:00,,,40.62435,-74.13927,"(40.62435, -74.13927)",,,1520 FOREST AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514424,Sedan,,,, +03/27/2022,15:00,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513968,Sedan,Sedan,,, +03/27/2022,8:03,BRONX,10454,,,,Crimmins avenue,East 143 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4514231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +03/20/2022,13:28,,,40.823315,-73.94901,"(40.823315, -73.94901)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,16:07,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4514365,Sedan,Sedan,Sedan,, +03/27/2022,4:50,QUEENS,11691,40.59582,-73.77233,"(40.59582, -73.77233)",BEACH 40 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4514073,Sedan,Sedan,,, +03/27/2022,9:20,BRONX,10463,40.876812,-73.90118,"(40.876812, -73.90118)",,,3048 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514506,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,15:30,BROOKLYN,11212,40.666306,-73.905106,"(40.666306, -73.905106)",,,350 BLAKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514638,Sedan,,,, +03/27/2022,23:43,QUEENS,11420,40.682613,-73.80693,"(40.682613, -73.80693)",,,135-15 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4513959,Sedan,,,, +03/22/2022,5:07,,,40.67798,-73.872116,"(40.67798, -73.872116)",CONDUIT BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514544,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,16:40,QUEENS,11420,40.677254,-73.81173,"(40.677254, -73.81173)",127 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4513944,Sedan,School Bus,,, +03/27/2022,1:25,MANHATTAN,10036,40.75671,-73.986465,"(40.75671, -73.986465)",7 AVENUE,WEST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513706,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/26/2022,22:02,,,40.586002,-73.97221,"(40.586002, -73.97221)",WEST 3 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514573,Sedan,,,, +03/27/2022,15:35,QUEENS,11104,40.745544,-73.92393,"(40.745544, -73.92393)",43 AVENUE,40 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513854,Sedan,E-Scooter,,, +03/27/2022,16:30,,,40.58407,-73.92344,"(40.58407, -73.92344)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4514014,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,0:00,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514635,Sedan,,,, +03/11/2022,16:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,16:47,,,40.737907,-73.877174,"(40.737907, -73.877174)",BROADWAY,JUSTICE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514024,Bus,Sedan,,, +03/27/2022,5:10,BROOKLYN,11219,40.638844,-74.00144,"(40.638844, -74.00144)",,,921 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514163,Sedan,,,, +03/13/2022,7:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514498,Taxi,,,, +03/27/2022,3:39,BRONX,10460,40.832558,-73.88538,"(40.832558, -73.88538)",EAST 172 STREET,BOONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513986,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,9:20,MANHATTAN,10033,40.847412,-73.93331,"(40.847412, -73.93331)",WEST 179 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4513919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,14:00,BROOKLYN,11216,40.6752,-73.950005,"(40.6752, -73.950005)",SAINT MARKS AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514564,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,11:45,BROOKLYN,11226,40.65008,-73.96101,"(40.65008, -73.96101)",CHURCH AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514583,Sedan,AMBULANCE,,, +03/27/2022,18:19,,,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514222,Bus,Sedan,,, +03/01/2022,9:00,,,40.808243,-73.92785,"(40.808243, -73.92785)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514466,Pick-up Truck,Sedan,,, +03/27/2022,23:34,BROOKLYN,11218,40.632,-73.97453,"(40.632, -73.97453)",,,4112 18 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514063,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,23:00,,,40.70219,-73.928345,"(40.70219, -73.928345)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514130,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,1:03,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4514642,Sedan,Sedan,,, +12/16/2021,18:00,,,40.711365,-73.97897,"(40.711365, -73.97897)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,15:00,QUEENS,11420,40.670044,-73.818115,"(40.670044, -73.818115)",135 AVENUE,122 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4487130,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,19:00,BROOKLYN,11214,40.60548,-73.999725,"(40.60548, -73.999725)",86 STREET,BAY 22 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487544,Sedan,Bike,,, +12/18/2021,14:50,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4487849,Ambulance,Sedan,,, +12/18/2021,14:30,QUEENS,11365,40.73498,-73.81062,"(40.73498, -73.81062)",,,65-56 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487685,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,14:30,BRONX,10461,40.845787,-73.829834,"(40.845787, -73.829834)",,,3040 ROBERTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488120,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,2:20,,,40.66475,-73.89405,"(40.66475, -73.89405)",LIVONIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488094,Sedan,Sedan,,, +12/18/2021,5:48,BRONX,10474,40.81543,-73.88679,"(40.81543, -73.88679)",,,737 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487320,Sedan,,,, +12/18/2021,23:00,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487629,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,20:50,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487961,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,14:42,MANHATTAN,10016,40.74668,-73.9745,"(40.74668, -73.9745)",2 AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487724,Ambulance,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,13:59,BROOKLYN,11208,40.677334,-73.86763,"(40.677334, -73.86763)",GLENMORE AVENUE,LINCOLN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4488071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/16/2021,20:15,,,,,,PROSPECT PARK south WEST,15 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488170,Sedan,,,, +12/16/2021,17:00,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4488265,Sedan,Bike,,, +12/18/2021,0:05,,,40.84797,-73.924774,"(40.84797, -73.924774)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487341,Sedan,,,, +12/18/2021,15:40,BROOKLYN,11206,40.69488,-73.94042,"(40.69488, -73.94042)",WILLOUGHBY AVENUE,MARCUS GARVEY BOULEVARD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487761,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,1:11,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4488118,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/13/2021,7:07,,,40.62236,-74.174355,"(40.62236, -74.174355)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4488153,Box Truck,,,, +12/17/2021,15:00,STATEN ISLAND,10301,40.619225,-74.0897,"(40.619225, -74.0897)",,,43 CLAIRE COURT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488045,Sedan,,,, +12/18/2021,23:30,QUEENS,11422,40.660404,-73.730965,"(40.660404, -73.730965)",FRANCIS LEWIS BOULEVARD,254 STREET,,2,0,0,0,0,0,2,0,Failure to Keep Right,Unspecified,Unspecified,,,4487503,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/18/2021,11:56,BROOKLYN,11249,40.714787,-73.96202,"(40.714787, -73.96202)",,,150 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487882,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,11:15,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458384,Motorcycle,,,, +12/18/2021,18:15,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487970,Sedan,,,, +12/18/2021,10:50,BRONX,10451,40.827244,-73.92406,"(40.827244, -73.92406)",WALTON AVENUE,EAST 161 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4488008,Sedan,E-Bike,,, +12/18/2021,0:09,STATEN ISLAND,10312,40.545395,-74.16575,"(40.545395, -74.16575)",RICHMOND AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4487474,Station Wagon/Sport Utility Vehicle,ambulance,,, +12/18/2021,16:55,MANHATTAN,10020,40.7599,-73.98043,"(40.7599, -73.98043)",WEST 50 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,,,,,4487418,Bike,,,, +12/18/2021,17:30,BROOKLYN,11235,40.592407,-73.93361,"(40.592407, -73.93361)",AVENUE Y,BRIGHAM STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488199,Sedan,,,, +12/16/2021,12:17,MANHATTAN,10022,40.762913,-73.96981,"(40.762913, -73.96981)",PARK AVENUE,EAST 59 STREET,,2,0,0,0,0,0,2,0,Outside Car Distraction,Outside Car Distraction,Following Too Closely,,,4488237,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/16/2021,22:50,BROOKLYN,11221,40.690926,-73.92066,"(40.690926, -73.92066)",GATES AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4488315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,17:30,,,40.898506,-73.87938,"(40.898506, -73.87938)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,15:55,MANHATTAN,10019,40.76479,-73.98429,"(40.76479, -73.98429)",WEST 54 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487422,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,22:11,,,40.6727,-73.93635,"(40.6727, -73.93635)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,20:57,QUEENS,11435,40.697258,-73.80575,"(40.697258, -73.80575)",SUTPHIN BOULEVARD,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487494,Sedan,Sedan,,, +12/18/2021,11:57,,,40.60248,-74.12247,"(40.60248, -74.12247)",,,395 FANNING STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4487382,Sedan,Pick-up Truck,,, +12/18/2021,6:00,,,40.828064,-73.91609,"(40.828064, -73.91609)",EAST 164 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488006,Sedan,,,, +12/18/2021,17:20,MANHATTAN,10011,,,,WEST 17 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487706,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,19:15,,,,,,WESTCHESTER AVENUE,SHERIDAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487781,Sedan,Sedan,,, +12/14/2021,0:10,MANHATTAN,10011,40.750305,-74.00837,"(40.750305, -74.00837)",12 AVENUE,WEST 24 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488036,Sedan,,,, +12/18/2021,17:05,,,40.708492,-73.93887,"(40.708492, -73.93887)",MESEROLE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487919,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,20:15,BRONX,10452,,,,GERARD AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488012,Sedan,,,, +12/18/2021,1:25,MANHATTAN,10002,40.71467,-73.98234,"(40.71467, -73.98234)",,,504 GRAND STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4487411,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,7:14,STATEN ISLAND,10314,40.589066,-74.138626,"(40.589066, -74.138626)",ROCKLAND AVENUE,BRIELLE AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4487481,Sedan,,,, +12/18/2021,3:50,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",LAFAYETTE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487643,Sedan,Sedan,,, +12/17/2021,8:50,,,0,0,"(0.0, 0.0)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488194,Bus,Sedan,,, +12/18/2021,21:35,MANHATTAN,10021,40.769844,-73.96686,"(40.769844, -73.96686)",EAST 69 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487907,Sedan,,,, +12/18/2021,14:13,BROOKLYN,11207,40.65766,-73.89705,"(40.65766, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,10:30,QUEENS,11385,40.703438,-73.901436,"(40.703438, -73.901436)",,,68-06 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488201,Sedan,,,, +12/18/2021,13:55,MANHATTAN,10024,40.785294,-73.969345,"(40.785294, -73.969345)",TRANSVERSE ROAD NUMBER THREE,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4487504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,4:28,QUEENS,11102,40.772114,-73.93068,"(40.772114, -73.93068)",,,8-63 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4410911,Sedan,,,, +09/17/2021,19:15,BRONX,10466,,,,BAYCHESTER AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458417,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,9:30,,,40.811714,-73.92671,"(40.811714, -73.92671)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488303,Bus,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,15:53,BROOKLYN,11236,40.649673,-73.91232,"(40.649673, -73.91232)",,,9325 DITMAS AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4487593,Sedan,Sedan,Sedan,Sedan, +12/18/2021,4:00,BRONX,10475,40.879948,-73.82339,"(40.879948, -73.82339)",PEARTREE AVENUE,COOP CITY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4488137,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/18/2021,11:50,BROOKLYN,11207,40.690647,-73.90805,"(40.690647, -73.90805)",WILSON AVENUE,COVERT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487429,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/18/2021,23:58,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488070,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,22:55,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487945,Sedan,Sedan,,, +12/18/2021,19:00,QUEENS,11419,40.687267,-73.81312,"(40.687267, -73.81312)",,,131-15 107 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487990,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,7:37,BROOKLYN,11221,40.692482,-73.9203,"(40.692482, -73.9203)",EVERGREEN AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,12:30,,,40.670193,-73.878876,"(40.670193, -73.878876)",BLAKE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488062,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,6:05,MANHATTAN,10027,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,LENOX AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488127,Sedan,,,, +12/18/2021,17:55,MANHATTAN,10032,40.841087,-73.937935,"(40.841087, -73.937935)",AUDUBON AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487694,Sedan,,,, +12/17/2021,18:45,QUEENS,11365,40.740623,-73.78024,"(40.740623, -73.78024)",,,192-10 64 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488106,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,18:30,QUEENS,11362,40.76188,-73.72319,"(40.76188, -73.72319)",LITTLE NECK PARKWAY,58 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,8:30,BROOKLYN,11217,40.683636,-73.97717,"(40.683636, -73.97717)",,,140 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487609,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,16:57,QUEENS,11412,40.688236,-73.76196,"(40.688236, -73.76196)",FARMERS BOULEVARD,119 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487892,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,23:12,BRONX,10461,40.843163,-73.82812,"(40.843163, -73.82812)",ZULETTE AVENUE,HOLLYWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488183,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,23:00,,,40.763885,-73.84002,"(40.763885, -73.84002)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4487512,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +12/17/2021,17:20,,,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488075,Sedan,Sedan,,, +12/17/2021,18:31,QUEENS,11432,40.703644,-73.80041,"(40.703644, -73.80041)",,,90-50 PARSONS BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4488213,Taxi,,,, +12/18/2021,0:30,BROOKLYN,11233,40.67681,-73.91924,"(40.67681, -73.91924)",ATLANTIC AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487829,Sedan,Sedan,PK,, +12/18/2021,2:30,MANHATTAN,10002,40.72284,-73.99144,"(40.72284, -73.99144)",,,215 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487632,Sedan,,,, +12/18/2021,16:15,BRONX,10466,40.892365,-73.859116,"(40.892365, -73.859116)",,,677 EAST 231 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487838,Box Truck,Sedan,,, +12/18/2021,2:24,QUEENS,11379,40.714993,-73.90038,"(40.714993, -73.90038)",,,61-40 ELIOT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487727,Sedan,Sedan,,, +12/18/2021,19:35,BRONX,10465,40.840034,-73.81581,"(40.840034, -73.81581)",,,3407 COUNTRY CLUB ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488113,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,4:30,QUEENS,11373,40.737156,-73.87941,"(40.737156, -73.87941)",VANLOON STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487328,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,12:25,,,40.856625,-73.8319,"(40.856625, -73.8319)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488149,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,4:00,,,40.840286,-73.92147,"(40.840286, -73.92147)",GRANT HIGHWAY,WEST 170 STREET,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4488285,,,,, +12/18/2021,4:00,MANHATTAN,10011,40.741085,-73.99978,"(40.741085, -73.99978)",,,252 WEST 17 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487567,Sedan,Sedan,,, +12/08/2021,23:40,STATEN ISLAND,10301,40.634342,-74.07522,"(40.634342, -74.07522)",,,330 BAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488049,Sedan,,,, +12/18/2021,20:20,BROOKLYN,11215,40.663776,-73.990944,"(40.663776, -73.990944)",,,606 5 AVENUE,1,0,1,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4488263,Pick-up Truck,Sedan,Sedan,, +12/17/2021,15:00,,,40.691933,-73.79829,"(40.691933, -73.79829)",SUTPHIN BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Other Electronic Device,Unspecified,,,,4488212,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,18:15,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488093,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/18/2021,4:10,BRONX,10458,40.86713,-73.883835,"(40.86713, -73.883835)",,,2870 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487346,Sedan,,,, +12/10/2021,22:23,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4488119,Sedan,,,, +12/18/2021,17:20,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487510,USPS VEHIC,Sedan,,, +12/18/2021,22:25,BROOKLYN,11224,40.574593,-73.98764,"(40.574593, -73.98764)",WEST 21 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487743,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,7:07,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4488154,Box Truck,,,, +12/18/2021,0:44,,,40.72803,-74.00216,"(40.72803, -74.00216)",WEST HOUSTON STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4487615,Taxi,,,, +12/15/2021,14:40,,,,,,,,54 CLEVELAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488044,Sedan,,,, +12/17/2021,17:30,,,40.665474,-73.86752,"(40.665474, -73.86752)",CRESCENT STREET,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4488074,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,10:30,,,40.74091,-73.83727,"(40.74091, -73.83727)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4487686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,3:00,,,40.69231,-73.88147,"(40.69231, -73.88147)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4488240,Sedan,,,, +12/17/2021,17:58,BRONX,10461,40.84281,-73.84469,"(40.84281, -73.84469)",WILLIAMSBRIDGE ROAD,HALPERIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488136,Sedan,,,, +12/18/2021,14:13,BROOKLYN,11221,40.698097,-73.9298,"(40.698097, -73.9298)",,,165 EVERGREEN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4487428,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,23:04,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4487454,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,17:00,BROOKLYN,11219,40.63782,-73.98921,"(40.63782, -73.98921)",13 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487933,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,17:25,BRONX,10467,40.884346,-73.88706,"(40.884346, -73.88706)",MOSHOLU PARKWAY,WEST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488221,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,2:00,,,,,,PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487548,Taxi,Sedan,,, +12/15/2021,18:00,STATEN ISLAND,10309,40.552784,-74.2119,"(40.552784, -74.2119)",,,15 KNESEL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488027,Sedan,,,, +11/20/2021,14:00,,,40.68024,-73.946754,"(40.68024, -73.946754)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488169,Sedan,Sedan,,, +12/18/2021,15:18,MANHATTAN,10036,40.75793,-73.979675,"(40.75793, -73.979675)",,,26 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487412,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,22:46,QUEENS,11355,40.756317,-73.83369,"(40.756317, -73.83369)",COLLEGE POINT BOULEVARD,41 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4487847,Pick-up Truck,,,, +12/18/2021,10:37,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4487947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,21:29,MANHATTAN,10017,,,,EAST 48 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487436,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,11:20,MANHATTAN,10013,40.72106,-73.99821,"(40.72106, -73.99821)",BROOME STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4487639,Sedan,Sedan,,, +12/18/2021,18:30,,,40.64385,-73.87576,"(40.64385, -73.87576)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488083,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,22:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411116,Sedan,,,, +12/17/2021,23:30,,,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488126,Taxi,E-Bike,,, +12/08/2021,10:00,MANHATTAN,10001,40.750153,-74.00415,"(40.750153, -74.00415)",,,534 WEST 26 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488037,Sedan,Van,,, +12/18/2021,22:30,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487524,Sedan,,,, +12/18/2021,16:25,,,40.70786,-73.84846,"(40.70786, -73.84846)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4487652,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/18/2021,17:25,BRONX,10472,40.827423,-73.86823,"(40.827423, -73.86823)",WATSON AVENUE,ROSEDALE AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488195,E-Scooter,,,, +12/18/2021,1:15,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4488078,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/14/2021,10:45,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488307,Sedan,,,, +12/18/2021,4:30,,,,,,BROADWAY,ROEBLING STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487918,Sedan,,,, +12/18/2021,4:00,QUEENS,11368,40.74311,-73.86751,"(40.74311, -73.86751)",,,47-12 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4487364,Sedan,,,, +12/18/2021,17:30,,,,,,EAST 149 STREET,ANTHONY A GRIFFIN,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488011,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,15:19,QUEENS,11412,40.710316,-73.75247,"(40.710316, -73.75247)",FRANCIS LEWIS BOULEVARD,104 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487495,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,20:20,BRONX,10458,,,,EAST 183 STREET,BEAUMONT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,15:40,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487864,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,9:45,,,40.734295,-73.97455,"(40.734295, -73.97455)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4487705,Sedan,Pick-up Truck,,, +12/18/2021,13:40,BRONX,10465,40.830425,-73.82947,"(40.830425, -73.82947)",,,1028 QUINCY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,22:00,,,40.681515,-73.90412,"(40.681515, -73.90412)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4487771,Sedan,Sedan,Sedan,, +12/18/2021,3:30,BROOKLYN,11208,40.68462,-73.8687,"(40.68462, -73.8687)",,,222 NICHOLS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488079,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,13:20,BROOKLYN,11215,40.678097,-73.98559,"(40.678097, -73.98559)",,,257 3 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487587,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,17:00,BROOKLYN,11238,40.688087,-73.96683,"(40.688087, -73.96683)",LAFAYETTE AVENUE,WAVERLY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488031,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,20:34,BROOKLYN,11207,40.66047,-73.89205,"(40.66047, -73.89205)",,,701 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488063,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,3:50,QUEENS,11421,40.68428,-73.86647,"(40.68428, -73.86647)",,,93-001 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487651,Sedan,Sedan,,, +12/18/2021,9:21,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487969,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,3:10,,,40.608433,-74.15544,"(40.608433, -74.15544)",CHRISTOPHER LANE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487379,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/18/2021,17:50,BRONX,10467,40.87673,-73.86444,"(40.87673, -73.86444)",,,754 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487810,Sedan,Sedan,,, +12/18/2021,4:30,BRONX,10456,40.82358,-73.90675,"(40.82358, -73.90675)",CAULDWELL AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4487462,E-bike,,,, +12/18/2021,16:14,MANHATTAN,10032,40.831177,-73.942085,"(40.831177, -73.942085)",,,460 WEST 155 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487839,Sedan,Sedan,,, +12/18/2021,21:17,,,40.662174,-73.953705,"(40.662174, -73.953705)",ROGERS AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4487560,Sedan,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/18/2021,19:54,BRONX,10475,40.88504,-73.8271,"(40.88504, -73.8271)",,,3525 CONNER STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487798,Sedan,Sedan,,, +12/16/2021,14:50,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",EAST 141 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488102,Sedan,Box Truck,,, +12/18/2021,16:20,,,40.833786,-73.94037,"(40.833786, -73.94037)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,,,,4487693,Pick-up Truck,ESCOOTERSI,,, +12/18/2021,12:55,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488114,Sedan,Sedan,,, +12/18/2021,1:30,QUEENS,11373,40.737156,-73.87941,"(40.737156, -73.87941)",QUEENS BOULEVARD,VANLOON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487329,Sedan,Sedan,,, +12/18/2021,0:40,,,40.534813,-74.194115,"(40.534813, -74.194115)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4488150,Pick-up Truck,,,, +12/11/2021,3:45,,,40.63777,-74.07602,"(40.63777, -74.07602)",BAY STREET,VICTORY BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488048,Sedan,Bike,,, +12/18/2021,2:00,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4488282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,18:17,,,40.87306,-73.87864,"(40.87306, -73.87864)",EAST 204 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488222,E-Bike,,,, +12/18/2021,4:00,BRONX,10460,40.842846,-73.881424,"(40.842846, -73.881424)",EAST 179 STREET,VYSE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487950,Sedan,,,, +12/18/2021,12:00,BROOKLYN,11228,40.62094,-74.01037,"(40.62094, -74.01037)",,,7602 12 AVENUE,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4487433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/18/2021,16:04,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4487439,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,13:57,QUEENS,11412,40.700005,-73.7547,"(40.700005, -73.7547)",200 STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4487895,Sedan,Sedan,,, +12/16/2021,16:35,,,40.824352,-73.82022,"(40.824352, -73.82022)",EAST TREMONT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488148,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,6:30,STATEN ISLAND,10305,40.596848,-74.06206,"(40.596848, -74.06206)",LILY POND AVENUE,GUILFORD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4487480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,15:24,MANHATTAN,10065,40.764362,-73.96162,"(40.764362, -73.96162)",2 AVENUE,EAST 65 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487939,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/17/2021,0:20,BROOKLYN,11214,40.60882,-73.9903,"(40.60882, -73.9903)",,,7602 21 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488181,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,23:43,,,,,,DOUGLASTON PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487522,Sedan,Sedan,,, +12/18/2021,22:49,MANHATTAN,10039,40.82317,-73.93872,"(40.82317, -73.93872)",,,200 WEST 147 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4487991,Box Truck,Sedan,,, +12/15/2021,9:39,,,40.643776,-74.008125,"(40.643776, -74.008125)",6 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488219,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,13:25,BROOKLYN,11236,40.655685,-73.899414,"(40.655685, -73.899414)",BANK STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,7:00,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487898,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,23:05,BRONX,10460,40.849308,-73.88481,"(40.849308, -73.88481)",EAST 182 STREET,PROSPECT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487973,FIRE TRUCK,Sedan,,, +12/17/2021,13:23,,,40.605522,-73.76088,"(40.605522, -73.76088)",DICKENS STREET,HEALY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4488025,Sedan,Sedan,,, +12/18/2021,11:00,BROOKLYN,11203,40.659966,-73.94151,"(40.659966, -73.94151)",,,575 RUTLAND ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4487416,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,17:41,STATEN ISLAND,10314,40.603912,-74.11792,"(40.603912, -74.11792)",LAGUARDIA AVENUE,LINCOLN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4487478,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +12/14/2021,12:15,QUEENS,11385,40.700497,-73.90021,"(40.700497, -73.90021)",MYRTLE AVENUE,FOREST AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488196,Sedan,Bike,,, +12/13/2021,22:00,,,40.709885,-73.75426,"(40.709885, -73.75426)",104 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4488210,Sedan,Sedan,,, +12/18/2021,16:58,QUEENS,11373,40.737705,-73.88231,"(40.737705, -73.88231)",51 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487509,E-Bike,,,, +12/18/2021,13:20,MANHATTAN,10029,40.794285,-73.95112,"(40.794285, -73.95112)",EAST 106 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487752,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,19:56,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488186,Sedan,Sedan,,, +12/15/2021,17:04,STATEN ISLAND,10301,40.62403,-74.09433,"(40.62403, -74.09433)",,,800 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488047,Sedan,,,, +12/06/2021,17:33,BROOKLYN,11216,40.672752,-73.95432,"(40.672752, -73.95432)",BEDFORD AVENUE,STERLING PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488135,,,,, +12/18/2021,12:00,BROOKLYN,11221,40.700054,-73.92459,"(40.700054, -73.92459)",HART STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487427,Pick-up Truck,,,, +12/18/2021,23:20,,,40.660233,-73.93712,"(40.660233, -73.93712)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487557,Ambulance,Sedan,,, +12/18/2021,4:01,QUEENS,11102,40.770756,-73.91727,"(40.770756, -73.91727)",,,24-41 31 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4487374,Sedan,,,, +12/18/2021,21:42,QUEENS,11413,40.67734,-73.75067,"(40.67734, -73.75067)",,,135-21 220 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4487501,Sedan,Sedan,,, +12/08/2021,7:34,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4488286,Station Wagon/Sport Utility Vehicle,Bike,,, +12/18/2021,8:50,BROOKLYN,11206,40.70276,-73.94546,"(40.70276, -73.94546)",BROADWAY,GERRY STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4487884,Sedan,Sedan,,, +12/18/2021,12:33,QUEENS,11433,40.695324,-73.789276,"(40.695324, -73.789276)",109 AVENUE,164 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4487489,Sedan,Pick-up Truck,Sedan,, +12/18/2021,23:41,BROOKLYN,11208,40.686428,-73.8687,"(40.686428, -73.8687)",,,551 RIDGEWOOD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4488096,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +12/18/2021,20:30,BROOKLYN,11210,40.626564,-73.94881,"(40.626564, -73.94881)",AVENUE J,EAST 28 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4487997,Sedan,,,, +12/18/2021,10:09,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487623,Sedan,Sedan,,, +12/18/2021,2:58,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4487928,Bike,Sedan,,, +12/18/2021,11:59,BRONX,10456,40.82998,-73.913994,"(40.82998, -73.913994)",FINDLAY AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488010,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,2:15,,,,,,SOUTH CONDUIT AVENUE,NASSAU EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inexperience,Unsafe Lane Changing,,,,4487968,Sedan,Sedan,,, +12/18/2021,23:25,QUEENS,11354,40.766434,-73.83767,"(40.766434, -73.83767)",WHITESTONE EXPRESSWAY,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487717,Sedan,,,, +12/17/2021,10:00,BROOKLYN,11207,40.672447,-73.892136,"(40.672447, -73.892136)",PITKIN AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488073,Pick-up Truck,,,, +12/11/2021,13:54,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488166,Sedan,,,, +12/18/2021,13:19,BROOKLYN,11215,40.668644,-73.9852,"(40.668644, -73.9852)",,,339 9 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4487603,Station Wagon/Sport Utility Vehicle,Moped,,, +12/18/2021,20:40,,,40.641205,-73.877205,"(40.641205, -73.877205)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488084,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,23:30,MANHATTAN,10036,40.760155,-73.9988,"(40.760155, -73.9988)",WEST 41 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4487570,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,11:24,,,40.884857,-73.91587,"(40.884857, -73.91587)",WEST 232 STREET,INDEPENDENCE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487361,Sedan,,,, +12/10/2021,10:49,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4488115,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,4:10,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4488312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,1:03,,,40.84528,-73.9265,"(40.84528, -73.9265)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4487456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,22:20,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",ALLEN STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487675,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,13:30,MANHATTAN,10016,40.748177,-73.98474,"(40.748177, -73.98474)",,,347 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458811,Station Wagon/Sport Utility Vehicle,,,, +12/07/2021,15:50,MANHATTAN,10013,40.72106,-73.99821,"(40.72106, -73.99821)",BROOME STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485804,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,15:40,QUEENS,11368,40.755997,-73.8634,"(40.755997, -73.8634)",105 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485256,Station Wagon/Sport Utility Vehicle,SCOOTER,,, +12/10/2021,5:10,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4485105,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/26/2021,15:20,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485157,Sedan,Tractor Truck Diesel,,, +12/08/2021,15:45,BROOKLYN,11231,40.68093,-74.004944,"(40.68093, -74.004944)",RAPELYE STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484773,Sedan,Sedan,,, +12/08/2021,13:45,QUEENS,11415,40.712357,-73.8263,"(40.712357, -73.8263)",,,125-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4484800,Sedan,Sedan,,, +12/09/2021,8:30,BROOKLYN,11203,40.651695,-73.9311,"(40.651695, -73.9311)",,,4920 CHURCH AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4485003,,,,, +12/10/2021,17:28,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485642,Sedan,,,, +12/08/2021,14:55,,,40.6379,-74.14504,"(40.6379, -74.14504)",,,2512 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4484965,Sedan,,,, +12/06/2021,12:00,BRONX,10458,40.856014,-73.8945,"(40.856014, -73.8945)",,,4554 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4485939,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/09/2021,6:14,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4484971,Station Wagon/Sport Utility Vehicle,TRUCK,,, +12/10/2021,4:34,MANHATTAN,10010,40.73539,-73.97511,"(40.73539, -73.97511)",AVENUE C,EAST 23 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485178,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,17:40,BROOKLYN,11228,40.61881,-74.021774,"(40.61881, -74.021774)",,,705 86 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4485288,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,8:30,MANHATTAN,10010,40.738552,-73.98043,"(40.738552, -73.98043)",2 AVENUE,EAST 24 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4484672,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/10/2021,7:11,BRONX,10452,40.84398,-73.92296,"(40.84398, -73.92296)",UNIVERSITY AVENUE,GRANT HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485510,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,16:23,,,40.865223,-73.83619,"(40.865223, -73.83619)",EAST GUN HILL ROAD,ALLERTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485217,Taxi,van,,, +12/06/2021,14:00,BROOKLYN,11217,40.68163,-73.97488,"(40.68163, -73.97488)",,,474 DEAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485744,Sedan,,,, +12/05/2021,3:15,,,40.768982,-73.91064,"(40.768982, -73.91064)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4485363,Sedan,Sedan,Sedan,, +12/10/2021,1:16,BRONX,10474,40.822533,-73.88509,"(40.822533, -73.88509)",BRUCKNER BOULEVARD,EDGEWATER ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4485317,Ambulance,,,, +12/08/2021,17:00,BROOKLYN,11223,40.609554,-73.96631,"(40.609554, -73.96631)",AVENUE P,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484887,Sedan,,,, +12/10/2021,5:40,MANHATTAN,10037,40.809246,-73.93598,"(40.809246, -73.93598)",,,1951 PARK AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4485185,Sedan,,,, +12/10/2021,4:36,MANHATTAN,10036,40.76161,-73.99418,"(40.76161, -73.99418)",,,501 WEST 45 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4485325,Taxi,Sedan,Sedan,, +12/03/2021,13:30,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485498,Sedan,Sedan,,, +12/10/2021,8:14,QUEENS,11358,40.76135,-73.796326,"(40.76135, -73.796326)",170 STREET,DEPOT ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485206,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/09/2021,16:50,STATEN ISLAND,10312,40.547325,-74.18201,"(40.547325, -74.18201)",ARDEN AVENUE,RATHBUN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4485597,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/08/2021,17:00,QUEENS,11374,40.728745,-73.86131,"(40.728745, -73.86131)",,,63-109 SAUNDERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485422,Pick-up Truck,,,, +12/08/2021,12:30,,,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484729,FIRE,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,13:20,MANHATTAN,10016,40.743324,-73.984085,"(40.743324, -73.984085)",EAST 28 STREET,PARK AVENUE SOUTH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488242,Sedan,Bike,,, +12/15/2021,15:24,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488157,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,21:12,,,40.63056,-74.1057,"(40.63056, -74.1057)",FOREST AVENUE,BARD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488053,Sedan,Sedan,,, +12/18/2021,20:03,QUEENS,11367,40.743122,-73.835075,"(40.743122, -73.835075)",,,130-04 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487687,Taxi,Sedan,,, +12/18/2021,18:20,,,40.685436,-73.79326,"(40.685436, -73.79326)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4487863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,16:00,BROOKLYN,11207,40.67175,-73.89685,"(40.67175, -73.89685)",SHEFFIELD AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488064,Sedan,Bike,,, +12/18/2021,10:05,STATEN ISLAND,10310,40.631363,-74.12629,"(40.631363, -74.12629)",,,737 POST AVENUE,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,Unspecified,,,4487637,Sedan,Sedan,Sedan,, +04/21/2021,2:30,BRONX,10452,40.839832,-73.92392,"(40.839832, -73.92392)",NELSON AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4409097,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/22/2021,10:56,QUEENS,11377,40.738567,-73.90554,"(40.738567, -73.90554)",59 PLACE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409638,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,15:16,QUEENS,11416,40.682808,-73.851135,"(40.682808, -73.851135)",89 STREET,101 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4410608,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/26/2021,18:10,STATEN ISLAND,10306,40.57725,-74.10298,"(40.57725, -74.10298)",HYLAN BOULEVARD,ZWICKY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410910,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,17:00,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410798,Pick-up Truck,Pick-up Truck,,, +04/26/2021,15:10,,,,,,LINDEN PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410837,Station Wagon/Sport Utility Vehicle,Stake or Rack,Station Wagon/Sport Utility Vehicle,, +04/24/2021,19:11,,,40.57558,-73.969925,"(40.57558, -73.969925)",SEA BREEZE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4411609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/22/2021,20:00,BROOKLYN,11234,40.633545,-73.92907,"(40.633545, -73.92907)",,,4930 KINGS HIGHWAY,0,0,0,0,0,0,0,0,,,,,,4411301,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,14:00,MANHATTAN,10029,40.78707,-73.94388,"(40.78707, -73.94388)",,,333 EAST 101 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411258,Sedan,,,, +04/26/2021,3:11,,,40.838886,-73.921646,"(40.838886, -73.921646)",GRANT HIGHWAY,WEST 169 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4410441,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,22:45,QUEENS,11429,40.713303,-73.73586,"(40.713303, -73.73586)",HEMPSTEAD AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410823,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/26/2021,8:15,MANHATTAN,10035,40.80256,-73.943,"(40.80256, -73.943)",EAST 120 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410977,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,9:30,MANHATTAN,10007,40.715553,-74.00615,"(40.715553, -74.00615)",,,106 DUANE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410866,Sedan,Van,,, +04/18/2021,0:14,MANHATTAN,10009,40.72842,-73.983574,"(40.72842, -73.983574)",,,261 EAST 10 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,10:50,BRONX,10469,40.867676,-73.85571,"(40.867676, -73.85571)",ARNOW AVENUE,LACONIA AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4411342,Sedan,Sedan,,, +04/26/2021,14:03,MANHATTAN,10010,40.74342,-73.99245,"(40.74342, -73.99245)",,,729 AVENUE OF THE AMERICAS,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411423,Sedan,Bike,,, +04/26/2021,0:14,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,,,,4410516,Motorcycle,Motorcycle,,, +04/26/2021,7:20,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410874,Sedan,PK,,, +03/27/2021,12:43,MANHATTAN,10019,,,,WEST 54 STREET,12 AVENUE,,1,0,0,0,0,0,0,0,Using On Board Navigation Device,Unspecified,,,,4411578,Sedan,E-Scooter,,, +12/18/2021,16:00,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487525,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,17:45,BROOKLYN,11219,40.63712,-73.98996,"(40.63712, -73.98996)",,,4516 13 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411299,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,20:45,BRONX,10466,40.88845,-73.841965,"(40.88845, -73.841965)",GRENADA PLACE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4411329,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,1:41,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4410576,Sedan,Sedan,,, +04/26/2021,8:29,QUEENS,11413,40.66847,-73.75052,"(40.66847, -73.75052)",,,141-25 225 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410773,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,21:37,,,40.767776,-73.903595,"(40.767776, -73.903595)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4410915,Motorcycle,Sedan,,, +04/26/2021,13:00,STATEN ISLAND,10305,40.612175,-74.07098,"(40.612175, -74.07098)",,,567 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411596,Station Wagon/Sport Utility Vehicle,Box truck,,, +04/26/2021,16:21,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,JEROME AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4410947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/26/2021,9:30,QUEENS,11418,40.703426,-73.838326,"(40.703426, -73.838326)",,,112-44 PARK LANE SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4410999,Sedan,,,, +04/26/2021,12:24,QUEENS,11385,40.71266,-73.92193,"(40.71266, -73.92193)",,,70 ONDERDONK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411033,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/26/2021,9:47,,,40.668495,-73.925606,"(40.668495, -73.925606)",EASTERN PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,Unspecified,Unspecified,4410740,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/26/2021,2:53,BROOKLYN,11223,40.589367,-73.98093,"(40.589367, -73.98093)",AVENUE X,WEST 11 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4410706,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,20:50,BROOKLYN,11233,40.6763,-73.91927,"(40.6763, -73.91927)",,,327 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411357,Sedan,,,, +04/24/2021,14:30,QUEENS,11373,40.739777,-73.868965,"(40.739777, -73.868965)",,,52-12 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4411397,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2021,21:28,MANHATTAN,10022,40.759388,-73.96756,"(40.759388, -73.96756)",,,209 EAST 56 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411506,E-Bike,,,, +04/26/2021,13:40,BROOKLYN,11206,40.701077,-73.957085,"(40.701077, -73.957085)",,,83 HEYWARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410725,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,7:55,QUEENS,11357,40.786697,-73.82506,"(40.786697, -73.82506)",,,143-40 14 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410708,Sedan,Bus,,, +04/23/2021,0:15,,,40.594585,-73.90858,"(40.594585, -73.90858)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411311,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,14:15,BRONX,10472,40.82864,-73.85344,"(40.82864, -73.85344)",OLMSTEAD AVENUE,BLACKROCK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4410759,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,1:45,BROOKLYN,11208,40.66728,-73.86797,"(40.66728, -73.86797)",,,836 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410642,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/26/2021,12:00,QUEENS,11435,40.70571,-73.81289,"(40.70571, -73.81289)",,,87-47 143 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411031,Sedan,,,, +04/26/2021,16:00,BRONX,10456,40.82873,-73.914734,"(40.82873, -73.914734)",EAST 165 STREET,FINDLAY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,17:12,,,40.886536,-73.89985,"(40.886536, -73.89985)",BROADWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4410883,Sedan,Sedan,,, +04/22/2021,13:25,MANHATTAN,10002,40.720764,-73.99063,"(40.720764, -73.99063)",ELDRIDGE STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411604,Sedan,Box Truck,,, +04/26/2021,15:12,BRONX,10465,40.832153,-73.82752,"(40.832153, -73.82752)",,,3448 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4411093,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,8:55,,,,,,MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4410952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,14:28,BROOKLYN,11230,40.6094,-73.967674,"(40.6094, -73.967674)",AVENUE P,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411040,Sedan,Box Truck,,, +04/26/2021,9:25,BRONX,10453,40.848328,-73.91842,"(40.848328, -73.91842)",BRANDT PLACE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410700,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,14:30,BROOKLYN,11230,40.625114,-73.96208,"(40.625114, -73.96208)",,,1417 AVENUE J,1,0,1,0,0,0,0,0,,,,,,4410751,,,,, +04/26/2021,20:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4410829,Sedan,,,, +04/12/2021,12:40,,,40.684624,-73.93838,"(40.684624, -73.93838)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411352,Sedan,,,, +04/21/2021,12:30,BROOKLYN,11217,40.68109,-73.978096,"(40.68109, -73.978096)",,,132 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,17:05,BRONX,10460,40.842655,-73.89052,"(40.842655, -73.89052)",EAST 176 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4410945,Sedan,,,, +12/17/2021,12:55,BRONX,10459,40.81969,-73.90161,"(40.81969, -73.90161)",EAST 160 STREET,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4488110,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,8:05,,,,,,WESTCHESTER AVENUE,HUTCHINSON RIVER PARKWAY EAST,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488123,Sedan,,,, +04/26/2021,8:55,BROOKLYN,11238,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410774,Pick-up Truck,Bus,,, +04/15/2021,15:24,BROOKLYN,11217,40.68792,-73.98025,"(40.68792, -73.98025)",,,29 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,,,,4411480,PK,Sedan,,, +04/26/2021,18:10,BROOKLYN,11219,40.621853,-74.00083,"(40.621853, -74.00083)",,,1435 BAY RIDGE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410807,Station Wagon/Sport Utility Vehicle,,,, +04/18/2021,21:30,BRONX,10467,40.87352,-73.86579,"(40.87352, -73.86579)",,,731 NORTH OAK DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411316,Sedan,,,, +04/26/2021,7:39,BROOKLYN,11220,40.63517,-74.0151,"(40.63517, -74.0151)",,,657 64 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4410714,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,12:26,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411200,,,,, +04/26/2021,11:28,BROOKLYN,11232,40.646378,-73.997345,"(40.646378, -73.997345)",,,814 40 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410960,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,10:30,,,40.71347,-73.91567,"(40.71347, -73.91567)",METROPOLITAN AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4411023,Sedan,,,, +04/24/2021,15:15,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411509,Sedan,Taxi,,, +04/26/2021,0:00,BROOKLYN,11218,40.649467,-73.97176,"(40.649467, -73.97176)",,,346 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411164,Sedan,Sedan,,, +04/24/2021,1:32,BROOKLYN,11234,40.60731,-73.9197,"(40.60731, -73.9197)",FLATBUSH AVENUE,HENDRICKSON PLACE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4411307,Sedan,,,, +04/26/2021,0:30,MANHATTAN,10029,40.78363,-73.94353,"(40.78363, -73.94353)",EAST 97 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410845,Sedan,,,, +04/26/2021,21:05,MANHATTAN,10032,40.832493,-73.94115,"(40.832493, -73.94115)",,,465 WEST 157 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411267,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,8:09,BROOKLYN,11203,40.644634,-73.943115,"(40.644634, -73.943115)",CORTELYOU ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410875,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,20:56,,,40.700356,-73.912575,"(40.700356, -73.912575)",LINDEN STREET,,,2,0,0,0,0,0,2,0,Pavement Defective,Unspecified,Unspecified,,,4411613,Motorcycle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/26/2021,17:30,QUEENS,11101,40.73818,-73.93887,"(40.73818, -73.93887)",,,30-02 BORDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,7:22,BRONX,10474,40.821297,-73.88542,"(40.821297, -73.88542)",WHITTIER STREET,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410934,Station Wagon/Sport Utility Vehicle,FORKLIFT,,, +04/26/2021,19:13,,,40.878475,-73.851395,"(40.878475, -73.851395)",FISH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411347,Sedan,Sedan,,, +04/26/2021,12:30,BROOKLYN,11205,,,,,,165 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410780,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,17:19,MANHATTAN,10003,40.734837,-73.99076,"(40.734837, -73.99076)",BROADWAY,EAST 14 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411242,Bike,,,, +04/26/2021,19:12,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411372,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,11:25,QUEENS,11412,40.703373,-73.759186,"(40.703373, -73.759186)",111 AVENUE,197 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410895,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,1:55,,,40.824562,-73.948105,"(40.824562, -73.948105)",WEST 144 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410824,E-Bike,Sedan,,, +04/26/2021,19:45,,,40.66725,-73.88799,"(40.66725, -73.88799)",HENDRIX STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4410896,Sedan,Sedan,Sedan,, +04/26/2021,16:00,BROOKLYN,11230,40.61562,-73.95959,"(40.61562, -73.95959)",AVENUE N,EAST 15 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410868,Sedan,Sedan,,, +04/25/2021,10:15,,,40.646786,-74.008575,"(40.646786, -74.008575)",5 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411278,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,0:20,BROOKLYN,11249,40.720844,-73.956635,"(40.720844, -73.956635)",BERRY STREET,NORTH 11 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4410444,Sedan,Sedan,,, +04/21/2020,16:40,,,40.877796,-73.86806,"(40.877796, -73.86806)",EAST GUN HILL ROAD,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411325,Sedan,Sedan,,, +04/24/2021,19:45,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",9 AVENUE,WEST 39 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411437,Sedan,Bike,,, +04/26/2021,17:10,QUEENS,11385,40.705936,-73.85734,"(40.705936, -73.85734)",,,89-89 UNION TURNPIKE,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410803,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,22:15,,,40.701237,-73.79465,"(40.701237, -73.79465)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411139,Sedan,Sedan,,, +04/25/2021,10:00,QUEENS,11432,40.703342,-73.80021,"(40.703342, -73.80021)",JAMAICA AVENUE,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411421,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,21:12,,,40.82902,-73.94485,"(40.82902, -73.94485)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411370,Sedan,Moped,,, +04/24/2021,11:52,MANHATTAN,10009,40.72732,-73.97912,"(40.72732, -73.97912)",,,601 EAST 11 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411257,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,0:00,QUEENS,11422,40.659714,-73.739815,"(40.659714, -73.739815)",243 STREET,145 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4410529,Sedan,Sedan,,, +04/20/2021,20:03,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4411300,Sedan,Sedan,,, +04/26/2021,8:30,QUEENS,11411,40.698093,-73.73049,"(40.698093, -73.73049)",115 AVENUE,228 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410778,Sedan,,,, +04/26/2021,20:04,BROOKLYN,11210,40.61669,-73.949814,"(40.61669, -73.949814)",BEDFORD AVENUE,AVENUE N,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4410869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,9:45,BRONX,10467,40.88403,-73.86426,"(40.88403, -73.86426)",EAST 219 STREET,WILLETT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4411330,Sedan,,,, +04/26/2021,20:25,BROOKLYN,11225,40.658222,-73.95036,"(40.658222, -73.95036)",,,1193 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4410818,Sedan,,,, +04/26/2021,15:50,,,40.672638,-73.758575,"(40.672638, -73.758575)",SOUTHGATE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411106,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,18:20,BROOKLYN,11211,40.708904,-73.95926,"(40.708904, -73.95926)",BROADWAY,HAVEMEYER STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487917,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/26/2021,16:33,,,40.73877,-73.80564,"(40.73877, -73.80564)",163 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4410838,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,17:40,BRONX,10474,40.81256,-73.88597,"(40.81256, -73.88597)",,,600 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411584,Sedan,,,, +04/23/2021,20:40,MANHATTAN,10018,40.758976,-73.99394,"(40.758976, -73.99394)",WEST 42 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411407,Sedan,Box Truck,,, +04/26/2021,16:05,BROOKLYN,11234,40.630688,-73.92521,"(40.630688, -73.92521)",AVENUE I,EAST 53 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411314,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,9:10,,,40.684887,-74.00111,"(40.684887, -74.00111)",BROOKLYN QUEENS EXPRESSWAY,,,9,0,0,0,0,0,9,0,Unspecified,Unspecified,,,,4410711,Station Wagon/Sport Utility Vehicle,Dump,,, +04/26/2021,12:30,,,40.73952,-73.986855,"(40.73952, -73.986855)",EAST 22 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410726,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,13:30,BRONX,10459,40.817394,-73.893845,"(40.817394, -73.893845)",,,881 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4410956,Sedan,,,, +04/24/2021,12:07,QUEENS,11385,40.70151,-73.90428,"(40.70151, -73.90428)",,,1825 CORNELIA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411379,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,15:00,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410799,Sedan,Sedan,,, +04/26/2021,16:46,QUEENS,11378,40.722717,-73.89373,"(40.722717, -73.89373)",,,59-15 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411070,Sedan,Sedan,,, +04/26/2021,17:30,QUEENS,11691,40.602768,-73.75012,"(40.602768, -73.75012)",,,16-12 MOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411341,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,7:40,,,40.715927,-73.80889,"(40.715927, -73.80889)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4410701,Station Wagon/Sport Utility Vehicle,Convertible,,, +04/26/2021,12:15,QUEENS,11370,40.76705,-73.88841,"(40.76705, -73.88841)",GRAND CENTRAL PARKWAY,81 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4410909,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,17:40,BRONX,10460,40.839935,-73.86604,"(40.839935, -73.86604)",,,1575 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410962,Sedan,,,, +04/26/2021,0:00,,,,,,East New York Avenue,Mother Gaston Boulevard,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4410721,Sedan,Flat Bed,,, +04/26/2021,12:55,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410827,Tractor Truck Diesel,Sedan,,, +04/23/2021,15:00,,,40.856487,-73.872406,"(40.856487, -73.872406)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411250,Sedan,Sedan,,, +04/21/2021,0:00,BROOKLYN,11234,40.6319,-73.92929,"(40.6319, -73.92929)",,,1196 EAST 49 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411306,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,18:00,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411094,Truck,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,9:15,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4410793,Sedan,,,, +04/26/2021,14:30,BRONX,10468,40.8606,-73.91102,"(40.8606, -73.91102)",WEST 183 STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410833,Sedan,Sedan,,, +04/16/2021,10:07,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411570,Sedan,,,, +04/25/2021,23:02,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,EAST 138 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4411557,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +04/12/2021,11:45,,,40.68064,-73.95338,"(40.68064, -73.95338)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411353,Sedan,,,, +04/24/2021,1:50,MANHATTAN,10036,40.758022,-73.981804,"(40.758022, -73.981804)",AVENUE OF THE AMERICAS,WEST 47 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4411245,Box Truck,Box Truck,,, +04/26/2021,10:00,MANHATTAN,10027,40.810764,-73.9526,"(40.810764, -73.9526)",SAINT NICHOLAS AVENUE,WEST 125 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411495,Van,,,, +04/26/2021,5:45,BRONX,10457,40.841984,-73.89201,"(40.841984, -73.89201)",,,744 EAST 175 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4410951,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,6:00,QUEENS,11414,40.66255,-73.84045,"(40.66255, -73.84045)",,,93-22 157 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410574,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,23:20,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4411039,Taxi,Sedan,,, +04/26/2021,15:20,,,40.792854,-73.96753,"(40.792854, -73.96753)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inexperience,,,,4410763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,14:57,,,,,,PARK AVENUE,CLINTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410969,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,16:45,QUEENS,11106,40.758274,-73.93336,"(40.758274, -73.93336)",CRESCENT STREET,36 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410914,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/26/2021,16:30,,,40.611946,-74.1323,"(40.611946, -74.1323)",,,21 BRADLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410850,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2021,0:10,,,40.844604,-73.90348,"(40.844604, -73.90348)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411567,Sedan,,,, +04/26/2021,2:25,BROOKLYN,11234,40.630905,-73.920425,"(40.630905, -73.920425)",AVENUE I,EAST 58 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411310,Bike,Sedan,,, +04/26/2021,14:07,BRONX,10460,40.83657,-73.888245,"(40.83657, -73.888245)",,,1716 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4410882,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,15:15,MANHATTAN,10036,40.758587,-73.98509,"(40.758587, -73.98509)",7 AVENUE,WEST 46 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411246,Station Wagon/Sport Utility Vehicle,Bike,,, +04/24/2021,8:20,MANHATTAN,10002,40.72163,-73.99353,"(40.72163, -73.99353)",BOWERY,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411593,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,21:05,BROOKLYN,11204,40.615185,-73.98367,"(40.615185, -73.98367)",21 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410806,Sedan,Sedan,,, +04/26/2021,15:45,BRONX,10465,,,,,,1454 KENNELLWORTH PL,0,0,0,0,0,0,0,0,Unspecified,,,,,4411072,Sedan,,,, +04/26/2021,8:15,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411171,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,17:30,BROOKLYN,11229,40.594887,-73.93306,"(40.594887, -73.93306)",ALLEN AVENUE,KNAPP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410832,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +04/26/2021,16:17,BROOKLYN,11236,40.63838,-73.89481,"(40.63838, -73.89481)",,,1772 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410998,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/26/2021,1:00,BRONX,10472,40.832096,-73.860725,"(40.832096, -73.860725)",,,1930 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410616,Sedan,Sedan,,, +04/26/2021,18:30,,,40.846466,-73.87123,"(40.846466, -73.87123)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4410888,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,9:30,BROOKLYN,11201,40.691597,-73.98438,"(40.691597, -73.98438)",,,216 DUFFIELD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,23:40,BROOKLYN,11208,40.6845,-73.88194,"(40.6845, -73.88194)",,,31 HIGHLAND PLACE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410898,Sedan,,,, +04/26/2021,6:30,QUEENS,11375,40.727627,-73.844284,"(40.727627, -73.844284)",110 STREET,68 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4410802,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,16:48,BRONX,10460,40.835716,-73.89205,"(40.835716, -73.89205)",BOSTON ROAD,EAST 172 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4410887,Station Wagon/Sport Utility Vehicle,Bike,,, +04/26/2021,14:50,STATEN ISLAND,10301,40.636623,-74.08179,"(40.636623, -74.08179)",VICTORY BOULEVARD,WESTERVELT AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4411601,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,9:12,MANHATTAN,10032,40.83918,-73.94115,"(40.83918, -73.94115)",BROADWAY,WEST 165 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411263,Taxi,Bus,,, +04/26/2021,22:30,BROOKLYN,11211,40.707592,-73.95555,"(40.707592, -73.95555)",BROADWAY,KEAP STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4410844,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,15:40,MANHATTAN,10011,40.742153,-73.998634,"(40.742153, -73.998634)",,,239 WEST 19 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411281,Ambulance,Sedan,,, +04/26/2021,1:20,BRONX,10467,40.87891,-73.87377,"(40.87891, -73.87377)",,,320 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410459,Sedan,Box Truck,,, +04/26/2021,19:35,QUEENS,11103,40.76046,-73.91339,"(40.76046, -73.91339)",,,30-92 44 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,23:10,QUEENS,11433,40.70024,-73.792854,"(40.70024, -73.792854)",164 STREET,SOUTH ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411138,Sedan,,,, +04/26/2021,12:11,,,40.90128,-73.887764,"(40.90128, -73.887764)",MOSHOLU PARKWAY,,,2,0,0,0,0,0,2,0,Outside Car Distraction,Unspecified,,,,4411436,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,10:30,MANHATTAN,10028,40.7775,-73.95085,"(40.7775, -73.95085)",,,333 EAST 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411393,Sedan,,,, +04/26/2021,13:40,BROOKLYN,11218,40.64034,-73.97215,"(40.64034, -73.97215)",,,462 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410964,Sedan,,,, +04/26/2021,7:42,BROOKLYN,11204,40.615433,-73.99775,"(40.615433, -73.99775)",17 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410718,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,8:55,BROOKLYN,11212,40.66549,-73.91063,"(40.66549, -73.91063)",BLAKE AVENUE,CHESTER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4410722,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,11:04,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410935,Box Truck,Sedan,,, +04/25/2021,12:00,QUEENS,11106,40.76518,-73.92928,"(40.76518, -73.92928)",,,23-41 31 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411321,Sedan,,,, +04/26/2021,14:40,MANHATTAN,10018,40.758915,-73.9997,"(40.758915, -73.9997)",11 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410746,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +12/17/2021,10:55,,,40.740532,-73.94451,"(40.740532, -73.94451)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488041,Box Truck,Taxi,,, +04/26/2021,7:45,STATEN ISLAND,10305,40.615463,-74.069466,"(40.615463, -74.069466)",ANDERSON STREET,SAINT MARYS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Turning Improperly,,,,4410957,Flat Bed,Bulk Agriculture,,, +04/26/2021,21:39,BRONX,10467,40.873505,-73.8659,"(40.873505, -73.8659)",,,729 NORTH OAK DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411346,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,15:35,,,40.698696,-73.93477,"(40.698696, -73.93477)",MELROSE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410789,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,13:36,BROOKLYN,11219,40.62349,-74.000534,"(40.62349, -74.000534)",14 AVENUE,67 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411025,Station Wagon/Sport Utility Vehicle,Bike,,, +04/26/2021,20:30,QUEENS,11385,40.705402,-73.911,"(40.705402, -73.911)",,,18-21 BLEECKER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411376,Sedan,Sedan,,, +04/26/2021,9:15,,,40.760944,-73.9163,"(40.760944, -73.9163)",41 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4410673,Sedan,Dump,,, +04/26/2021,16:10,BRONX,10455,40.818146,-73.89929,"(40.818146, -73.89929)",LONGWOOD AVENUE,DAWSON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4410936,E-Bike,,,, +04/26/2021,9:29,QUEENS,11385,40.712635,-73.92188,"(40.712635, -73.92188)",,,74 ONDERDONK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411010,Sedan,Tractor Truck Diesel,,, +04/26/2021,15:50,BROOKLYN,11236,40.646275,-73.90771,"(40.646275, -73.90771)",,,942 EAST 94 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411051,Sedan,,,, +04/26/2021,7:33,QUEENS,11373,40.745033,-73.87001,"(40.745033, -73.87001)",,,94-41 43 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4410703,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,10:58,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4410745,Tractor Truck Diesel,,,, +04/26/2021,23:10,,,40.69089,-73.94253,"(40.69089, -73.94253)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411354,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,20:25,QUEENS,11385,40.706245,-73.91014,"(40.706245, -73.91014)",,,18-61 BLEECKER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4411368,Sedan,Sedan,Motorcycle,, +04/26/2021,11:20,QUEENS,11428,40.71469,-73.7511,"(40.71469, -73.7511)",,,209-20 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410777,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,18:32,BROOKLYN,11210,40.618244,-73.94528,"(40.618244, -73.94528)",,,2722 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410870,Sedan,,,, +04/26/2021,20:40,,,40.88893,-73.86579,"(40.88893, -73.86579)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411348,Sedan,Sedan,,, +04/26/2021,14:50,QUEENS,11433,40.69635,-73.79667,"(40.69635, -73.79667)",157 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411134,Sedan,Bus,,, +04/15/2021,12:15,,,40.623676,-73.937996,"(40.623676, -73.937996)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411313,Chassis Cab,,,, +04/26/2021,11:39,,,40.759567,-73.83015,"(40.759567, -73.83015)",ROOSEVELT AVENUE,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4410710,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,15:00,QUEENS,11364,40.74879,-73.75658,"(40.74879, -73.75658)",,,61-24 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410800,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,7:17,BRONX,10459,40.822613,-73.88706,"(40.822613, -73.88706)",,,1365 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410606,Sedan,Sedan,,, +04/26/2021,16:00,QUEENS,11377,40.743336,-73.90804,"(40.743336, -73.90804)",43 AVENUE,57 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4410764,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2021,17:30,QUEENS,11358,40.76167,-73.79241,"(40.76167, -73.79241)",,,189-30 39 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411442,Convertible,Bus,,, +04/26/2021,20:00,,,40.804012,-73.93097,"(40.804012, -73.93097)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410922,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,6:00,,,40.877068,-73.906105,"(40.877068, -73.906105)",BROADWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410756,Sedan,,,, +04/05/2021,13:40,MANHATTAN,10019,40.764374,-73.97518,"(40.764374, -73.97518)",,,42 WEST 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411585,LIMO,Sedan,,, +04/24/2021,1:17,,,40.844604,-73.90348,"(40.844604, -73.90348)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4411260,Carry All,Sedan,,, +04/26/2021,18:24,BROOKLYN,11209,40.61173,-74.03369,"(40.61173, -74.03369)",,,425 101 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411026,Pick-up Truck,,,, +04/26/2021,0:39,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410821,Sedan,,,, +04/26/2021,14:10,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4410954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/18/2021,16:28,MANHATTAN,10012,,,,,,195 MULBERRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487697,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,16:46,BROOKLYN,11235,40.587685,-73.95523,"(40.587685, -73.95523)",EAST 14 STREET,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,18:40,BRONX,10456,40.83394,-73.9087,"(40.83394, -73.9087)",WEBSTER AVENUE,EAST 169 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410858,Bike,,,, +04/26/2021,13:15,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411240,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,0:00,QUEENS,11691,40.59423,-73.76,"(40.59423, -73.76)",,,174 BEACH 27 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4411340,Sedan,FIRETRUCK,,, +04/26/2021,14:30,,,40.65318,-74.00561,"(40.65318, -74.00561)",38 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410813,Sedan,,,, +04/14/2021,16:36,MANHATTAN,10003,40.72978,-73.98682,"(40.72978, -73.98682)",EAST 10 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411252,Ambulance,Sedan,,, +04/26/2021,0:00,BROOKLYN,11204,40.611797,-73.98236,"(40.611797, -73.98236)",,,1431 WEST 8 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4410805,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,5:30,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410531,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,22:15,STATEN ISLAND,10312,40.558304,-74.164536,"(40.558304, -74.164536)",CORTELYOU AVENUE,EAST MACON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411285,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,20:21,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411499,Taxi,Sedan,,, +04/26/2021,12:32,BRONX,10473,40.822525,-73.86729,"(40.822525, -73.86729)",,,849 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410727,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,15:36,BRONX,10467,40.879578,-73.875374,"(40.879578, -73.875374)",EAST GUN HILL ROAD,PUTNAM PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410834,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,5:45,,,,,,CROSS BAY BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4411413,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,0:43,MANHATTAN,10011,40.742653,-73.998055,"(40.742653, -73.998055)",,,230 WEST 20 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4411331,Dump,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,13:45,QUEENS,11432,40.70884,-73.79564,"(40.70884, -73.79564)",,,166-18 88 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411142,Sedan,,,, +04/22/2021,14:16,MANHATTAN,10012,40.720497,-73.9959,"(40.720497, -73.9959)",,,180 MOTT STREET,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4411606,Box Truck,,,, +04/26/2021,21:43,BRONX,10467,40.86946,-73.87987,"(40.86946, -73.87987)",,,3016 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4410839,Station Wagon/Sport Utility Vehicle,,,, +04/20/2021,14:14,BRONX,10451,40.81738,-73.9257,"(40.81738, -73.9257)",,,2824 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411544,Sedan,AMBULANCE,,, +04/26/2021,9:30,STATEN ISLAND,10308,40.562576,-74.157196,"(40.562576, -74.157196)",,,496 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410913,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/26/2021,8:25,,,40.634377,-74.03866,"(40.634377, -74.03866)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4411172,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/26/2021,12:20,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410826,Tractor Truck Diesel,Sedan,Box Truck,, +04/26/2021,13:00,BROOKLYN,11231,40.672928,-74.01069,"(40.672928, -74.01069)",OTSEGO STREET,VAN DYKE STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4410794,Bus,,,, +04/26/2021,23:01,BRONX,10456,40.83443,-73.91035,"(40.83443, -73.91035)",TELLER AVENUE,EAST 169 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4411269,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,14:20,BROOKLYN,11234,40.634274,-73.92838,"(40.634274, -73.92838)",,,5001 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4411305,Sedan,Sedan,,, +04/26/2021,21:10,,,40.82267,-73.92007,"(40.82267, -73.92007)",MORRIS AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4410950,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,17:40,QUEENS,11434,40.68049,-73.774704,"(40.68049, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411099,Sedan,,,, +04/26/2021,19:36,MANHATTAN,10007,40.71523,-74.01334,"(40.71523, -74.01334)",MURRAY STREET,WEST STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4410848,Bus,Sedan,,, +04/26/2021,7:27,QUEENS,11436,40.68384,-73.802574,"(40.68384, -73.802574)",141 STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4411571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/26/2021,9:02,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",BOSTON ROAD,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410889,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,17:30,,,40.691624,-73.942665,"(40.691624, -73.942665)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4411344,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/26/2021,15:40,MANHATTAN,10032,40.83596,-73.94468,"(40.83596, -73.94468)",,,25 FORT WASHINGTON AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411244,Station Wagon/Sport Utility Vehicle,Bike,,, +04/24/2021,5:46,QUEENS,11435,40.69248,-73.800995,"(40.69248, -73.800995)",WALTHAM STREET,LAKEWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411418,Sedan,Sedan,,, +04/26/2021,8:30,,,40.850044,-73.88448,"(40.850044, -73.88448)",PROSPECT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410900,Box Truck,Bus,,, +04/13/2021,11:40,BROOKLYN,11217,,,,,,62 Hanson,1,0,1,0,0,0,0,0,Unspecified,,,,,4411394,Sedan,,,, +04/24/2021,18:30,MANHATTAN,10019,40.760056,-73.97884,"(40.760056, -73.97884)",,,51 WEST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411247,Box Truck,Sedan,,, +04/26/2021,0:50,BRONX,10454,40.809265,-73.90854,"(40.809265, -73.90854)",EAST 144 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410491,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,21:02,BRONX,10466,40.888588,-73.849884,"(40.888588, -73.849884)",EAST 230 STREET,PAULDING AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4411327,Sedan,Sedan,,, +04/20/2021,18:18,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,Unspecified,,,4411273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/26/2021,14:21,,,40.74035,-73.788345,"(40.74035, -73.788345)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410810,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,5:40,BROOKLYN,11218,40.63544,-73.97912,"(40.63544, -73.97912)",DAHILL ROAD,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4410966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/26/2021,9:40,BROOKLYN,11205,40.699387,-73.9536,"(40.699387, -73.9536)",,,535 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410723,Box Truck,Sedan,,, +04/26/2021,10:28,BROOKLYN,11219,40.63575,-73.990326,"(40.63575, -73.990326)",,,1320 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410958,Van,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,10:40,BROOKLYN,11234,40.626102,-73.917946,"(40.626102, -73.917946)",,,2093 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411309,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,15:30,,,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411146,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,16:08,BRONX,10451,40.823456,-73.92444,"(40.823456, -73.92444)",GRAND CONCOURSE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4410857,Bus,Sedan,,, +04/26/2021,17:20,STATEN ISLAND,10301,40.61118,-74.105606,"(40.61118, -74.105606)",LITTLE CLOVE ROAD,RENWICK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4411598,Sedan,Sedan,Sedan,, +04/26/2021,5:35,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4410877,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,0:00,,,40.709396,-73.79439,"(40.709396, -73.79439)",168 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411088,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,22:30,,,40.714622,-73.829704,"(40.714622, -73.829704)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4410931,Sedan,Sedan,Sedan,, +04/26/2021,10:04,BROOKLYN,11210,40.628784,-73.9509,"(40.628784, -73.9509)",,,2613 AVENUE I,0,0,0,0,0,0,0,0,Unspecified,,,,,4410755,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,15:20,,,40.698772,-73.92233,"(40.698772, -73.92233)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410788,Bus,,,, +04/26/2021,20:00,QUEENS,11385,40.704742,-73.902504,"(40.704742, -73.902504)",,,791 FAIRVIEW AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411375,Sedan,Motorcycle,,, +04/26/2021,8:50,,,40.765976,-73.86284,"(40.765976, -73.86284)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410689,Sedan,,,, +04/23/2021,20:00,QUEENS,11691,40.60959,-73.75585,"(40.60959, -73.75585)",,,22-55 BATTERY ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4411349,Sedan,,,, +04/26/2021,16:06,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",SOUTHERN BOULEVARD,EAST 163 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4410937,Moped,,,, +04/26/2021,15:45,BROOKLYN,11229,40.59938,-73.95141,"(40.59938, -73.95141)",OCEAN AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410831,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2021,13:35,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",WEBSTER AVENUE,EAST 168 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411566,Station Wagon/Sport Utility Vehicle,Bike,,, +04/24/2021,8:00,BROOKLYN,11226,40.63945,-73.95129,"(40.63945, -73.95129)",,,1240 ROGERS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411318,Sedan,,,, +04/25/2021,11:25,,,40.65806,-73.93497,"(40.65806, -73.93497)",WINTHROP STREET,,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,Unspecified,,,,4411433,Sedan,Sedan,,, +04/26/2021,15:21,BRONX,10473,40.82012,-73.868484,"(40.82012, -73.868484)",,,781 CROES AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410757,Sedan,Sedan,,, +04/26/2021,6:52,BROOKLYN,11231,40.674625,-74.00772,"(40.674625, -74.00772)",COLUMBIA STREET,LORRAINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410796,PK,Sedan,,, +04/26/2021,15:54,,,40.670586,-73.76509,"(40.670586, -73.76509)",142 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411102,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,1:26,BRONX,10458,40.855755,-73.88544,"(40.855755, -73.88544)",EAST 188 STREET,BELMONT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4411013,Taxi,Sedan,Sedan,, +04/26/2021,12:15,QUEENS,11378,40.72211,-73.9084,"(40.72211, -73.9084)",,,57-27 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411028,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,22:35,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411572,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,7:53,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410659,Sedan,Sedan,,, +04/26/2021,17:40,BRONX,10456,40.83265,-73.90616,"(40.83265, -73.90616)",,,1285 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410886,Sedan,Sedan,,, +04/25/2021,18:19,,,,,,MANHATTAN BR UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411589,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,10:00,BROOKLYN,11214,40.60862,-73.9897,"(40.60862, -73.9897)",,,2111 76 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410717,Sedan,,,, +04/21/2021,12:15,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411586,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,22:32,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",EAST 180 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410948,,,,, +04/26/2021,8:10,QUEENS,11373,40.745033,-73.87001,"(40.745033, -73.87001)",,,94-41 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,17:45,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4410801,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/26/2021,0:10,STATEN ISLAND,10301,40.625526,-74.0925,"(40.625526, -74.0925)",,,700 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4411007,Sedan,,,, +04/25/2021,15:00,,,40.659225,-73.95339,"(40.659225, -73.95339)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411450,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,13:45,STATEN ISLAND,10308,40.559677,-74.14443,"(40.559677, -74.14443)",CHERRYWOOD COURT,SANDALWOOD DRIVE,,1,0,0,0,1,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4410919,Station Wagon/Sport Utility Vehicle,Bike,,, +04/26/2021,4:04,,,40.73567,-73.924736,"(40.73567, -73.924736)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4410744,Sedan,,,, +04/24/2021,11:40,BROOKLYN,11234,40.63336,-73.92928,"(40.63336, -73.92928)",,,4901 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4411302,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,15:00,BRONX,10467,40.859573,-73.86734,"(40.859573, -73.86734)",BOSTON ROAD,ASTOR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411254,Sedan,Taxi,,, +04/26/2021,20:30,QUEENS,11373,40.740616,-73.868996,"(40.740616, -73.868996)",,,94-10 51 AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4410835,Sedan,,,, +04/26/2021,22:30,QUEENS,11413,40.66016,-73.75579,"(40.66016, -73.75579)",225 STREET,146 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,10:18,QUEENS,11354,,,,,,30-29 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4411120,Pick-up Truck,,,, +04/20/2021,15:20,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4411239,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,19:00,BROOKLYN,11235,40.57655,-73.966385,"(40.57655, -73.966385)",BRIGHTON BEACH AVENUE,BRIGHTON 1 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4410843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,1:20,MANHATTAN,10002,40.721756,-73.98752,"(40.721756, -73.98752)",,,171 LUDLOW STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411501,,,,, +04/26/2021,13:13,,,40.810173,-73.95117,"(40.810173, -73.95117)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410730,Sedan,Box Truck,,, +04/25/2021,20:34,BRONX,10465,40.81928,-73.80832,"(40.81928, -73.80832)",THROGS NECK EXPRESSWAY,REYNOLDS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4411414,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,11:50,,,,,,CROSS ISLAND PARKWAY,212 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4410709,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,19:55,MANHATTAN,10035,40.797306,-73.93446,"(40.797306, -73.93446)",EAST 118 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411312,Taxi,Motorscooter,,, +04/26/2021,14:00,,,40.90021,-73.8865,"(40.90021, -73.8865)",MOSHOLU PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4410953,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/26/2021,20:21,QUEENS,11372,40.755463,-73.88155,"(40.755463, -73.88155)",,,33-11 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411037,Sedan,,,, +04/26/2021,6:45,,,40.711227,-73.72826,"(40.711227, -73.72826)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,3,0,0,0,0,0,3,0,Illnes,Unspecified,Unspecified,Unspecified,,4410772,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +04/26/2021,20:45,BRONX,10452,40.833652,-73.93083,"(40.833652, -73.93083)",,,1008 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4410861,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +04/26/2021,14:13,MANHATTAN,10128,40.78547,-73.952126,"(40.78547, -73.952126)",,,128 EAST 95 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4410983,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,16:07,QUEENS,11101,40.755234,-73.941246,"(40.755234, -73.941246)",21 STREET,40 AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4410912,Box Truck,Sedan,,, +04/26/2021,5:48,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4410704,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,5:10,,,40.738117,-73.7973,"(40.738117, -73.7973)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4410552,Sedan,Sedan,Sedan,, +04/26/2021,17:45,,,,,,BELT PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4410804,Sedan,Sedan,Sedan,, +04/22/2021,12:30,,,40.604324,-73.89885,"(40.604324, -73.89885)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411367,Sedan,,,, +04/26/2021,11:34,MANHATTAN,10002,40.719597,-73.99164,"(40.719597, -73.99164)",,,46 DELANCEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410871,Box Truck,Box Truck,,, +04/26/2021,9:20,BROOKLYN,11238,40.683037,-73.96478,"(40.683037, -73.96478)",FULTON STREET,WASHINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410776,Pick-up Truck,,,, +04/23/2021,17:30,,,40.82499,-73.91662,"(40.82499, -73.91662)",EAST 161 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411259,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,17:00,BROOKLYN,11226,40.64802,-73.952194,"(40.64802, -73.952194)",ALBEMARLE ROAD,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411287,Sedan,,,, +04/26/2021,7:00,QUEENS,11423,40.707882,-73.7687,"(40.707882, -73.7687)",,,102-46 189 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411141,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,15:30,,,40.87647,-73.87058,"(40.87647, -73.87058)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411332,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,1:08,STATEN ISLAND,10310,40.63854,-74.107346,"(40.63854, -74.107346)",HENDERSON AVENUE,BARD AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4411607,Sedan,,,, +04/26/2021,16:40,,,40.643005,-74.00533,"(40.643005, -74.00533)",7 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410814,Sedan,,,, +04/26/2021,23:40,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4411173,Box Truck,,,, +04/26/2021,13:00,BRONX,10467,,,,EAST GUN HILL ROAD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4411355,Taxi,Sedan,,, +04/26/2021,0:20,QUEENS,11419,40.695858,-73.81891,"(40.695858, -73.81891)",ATLANTIC AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4410939,Sedan,Sedan,Sedan,, +02/02/2022,9:25,QUEENS,11434,40.67002,-73.78312,"(40.67002, -73.78312)",ROCKAWAY BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4505283,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/24/2021,22:40,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411472,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,9:20,,,40.709183,-73.956825,"(40.709183, -73.956825)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4410724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/26/2021,20:33,BROOKLYN,11234,40.6109,-73.925224,"(40.6109, -73.925224)",AVENUE T,HENDRICKSON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410968,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,16:15,BROOKLYN,11203,40.656483,-73.92408,"(40.656483, -73.92408)",REMSEN AVENUE,EAST 57 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4411317,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,20:30,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410933,Sedan,Sedan,,, +04/26/2021,10:09,BROOKLYN,11228,40.617252,-74.01918,"(40.617252, -74.01918)",,,1065 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410715,Sedan,,,, +04/26/2021,7:21,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",QUEENS BOULEVARD,62 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410758,Sedan,,,, +04/26/2021,21:59,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,17:00,QUEENS,11385,40.702785,-73.85705,"(40.702785, -73.85705)",MYRTLE AVENUE,88 LANE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411029,Pick-up Truck,Box Truck,,, +04/26/2021,6:30,QUEENS,11372,40.749493,-73.88333,"(40.749493, -73.88333)",,,37-46 83 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4410692,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/26/2021,0:08,QUEENS,11432,40.717426,-73.79225,"(40.717426, -73.79225)",HOME LAWN STREET,CROYDON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411339,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,9:40,BROOKLYN,11225,40.657063,-73.95093,"(40.657063, -73.95093)",,,287 WINTHROP STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4411417,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,16:29,,,40.76471,-73.830696,"(40.76471, -73.830696)",35 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4411148,Convertible,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,21:00,MANHATTAN,10036,40.7591,-73.99215,"(40.7591, -73.99215)",WEST 43 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4411563,E-Bike,Bike,,, +04/26/2021,0:30,MANHATTAN,10029,40.78363,-73.94353,"(40.78363, -73.94353)",EAST 97 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410846,Sedan,,,, +04/26/2021,15:30,BRONX,10456,40.83226,-73.91369,"(40.83226, -73.91369)",EAST 167 STREET,COLLEGE AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4411268,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,10:21,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",EAST TREMONT AVENUE,3 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4411274,Sedan,,,, +04/26/2021,5:51,BROOKLYN,11226,40.652225,-73.95779,"(40.652225, -73.95779)",,,35 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4410510,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,16:47,QUEENS,11385,40.702,-73.88009,"(40.702, -73.88009)",MYRTLE AVENUE,71 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411373,Sedan,Motorcycle,,, +04/26/2021,8:15,,,40.86155,-73.92472,"(40.86155, -73.92472)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410885,Sedan,,,, +04/26/2021,21:45,,,40.851498,-73.942535,"(40.851498, -73.942535)",HENRY HUDSON PARKWAY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,,,4410901,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/23/2021,10:00,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",WEBSTER AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411597,Sedan,,,, +04/23/2021,12:02,BROOKLYN,11218,40.64295,-73.977325,"(40.64295, -73.977325)",BEVERLEY ROAD,EAST 3 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4411328,Sedan,Bike,,, +04/26/2021,17:30,QUEENS,11365,40.736366,-73.794106,"(40.736366, -73.794106)",175 STREET,65 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,16:20,QUEENS,11434,40.6847,-73.77297,"(40.6847, -73.77297)",MERRILL STREET,VICTORIA ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411089,Ambulance,Sedan,,, +04/26/2021,13:30,QUEENS,11417,40.676685,-73.84371,"(40.676685, -73.84371)",SUTTER AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410830,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,21:50,QUEENS,11691,40.605045,-73.75013,"(40.605045, -73.75013)",,,11-37 BAYPORT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411350,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,12:55,,,40.778904,-73.96024,"(40.778904, -73.96024)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411573,Van,Bus,,, +04/26/2021,12:43,,,40.69663,-73.91857,"(40.69663, -73.91857)",MENAHAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410892,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,11:40,,,,,,75 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4410754,Station Wagon/Sport Utility Vehicle,MOWER,,, +04/26/2021,1:26,BROOKLYN,11239,40.648956,-73.88301,"(40.648956, -73.88301)",,,1310 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4410643,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/26/2021,8:05,BROOKLYN,11219,40.62605,-73.99547,"(40.62605, -73.99547)",,,1463 61 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410959,Van,Van,,, +04/26/2021,18:44,QUEENS,11412,40.69893,-73.77037,"(40.69893, -73.77037)",WOOD STREET,HILBURN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411105,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,19:50,QUEENS,11434,40.66178,-73.77243,"(40.66178, -73.77243)",,,167-11 146 ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410797,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,1:22,,,40.696205,-73.91782,"(40.696205, -73.91782)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410783,Sedan,,,, +04/26/2021,4:43,QUEENS,11385,40.70485,-73.90562,"(40.70485, -73.90562)",WOODWARD AVENUE,PALMETTO STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411017,Sedan,Sedan,,, +04/15/2021,20:00,BROOKLYN,11205,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411343,Sedan,Sedan,,, +04/26/2021,15:45,BROOKLYN,11222,40.73395,-73.95272,"(40.73395, -73.95272)",,,217 GREEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4410825,Sedan,,,, +04/26/2021,15:37,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410856,Sedan,,,, +04/24/2021,16:30,BROOKLYN,11234,40.6094,-73.91177,"(40.6094, -73.91177)",,,2610 MILL AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4411308,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,15:56,,,,,,WEST 44 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411248,Sedan,Sedan,,, +04/26/2021,18:38,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unspecified,,,,,4411521,Motorcycle,,,, +04/25/2021,3:30,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4411587,Sedan,,,, +04/26/2021,16:07,BROOKLYN,11212,40.655853,-73.910126,"(40.655853, -73.910126)",HEGEMAN AVENUE,BOYLAND STREET,,1,0,1,0,0,0,0,0,,,,,,4410876,Sedan,,,, +04/26/2021,17:00,QUEENS,11377,40.737164,-73.905624,"(40.737164, -73.905624)",50 AVENUE,59 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410815,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,16:00,BROOKLYN,11213,40.66812,-73.92842,"(40.66812, -73.92842)",,,296 ROCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411428,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,0:55,,,40.68794,-73.789635,"(40.68794, -73.789635)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4411192,Sedan,Sedan,Sedan,, +04/23/2021,9:00,MANHATTAN,10019,40.760765,-73.97664,"(40.760765, -73.97664)",,,15 WEST 53 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411243,Box Truck,Box Truck,,, +04/24/2021,8:29,BRONX,10467,40.865685,-73.86737,"(40.865685, -73.86737)",,,2711 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4411255,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,14:30,BRONX,10463,40.871956,-73.90445,"(40.871956, -73.90445)",,,212 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410836,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,6:15,BROOKLYN,11207,40.666203,-73.88959,"(40.666203, -73.88959)",,,588 MILLER AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4488077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/16/2021,21:40,MANHATTAN,10017,40.749157,-73.9727,"(40.749157, -73.9727)",2 AVENUE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,16:00,BRONX,10475,40.882145,-73.83223,"(40.882145, -73.83223)",,,2137 REEDS MILL LANE,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4487840,Sedan,,,, +12/18/2021,21:00,BRONX,10467,40.87686,-73.87974,"(40.87686, -73.87974)",BAINBRIDGE AVENUE,VANCORTLANDT AVENUE EAST,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488223,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,10:40,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488080,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,6:27,QUEENS,11372,40.751396,-73.888405,"(40.751396, -73.888405)",78 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4487330,Motorcycle,Sedan,,, +12/18/2021,16:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4488151,Sedan,Sedan,Sedan,, +12/17/2021,21:00,,,40.847187,-73.92135,"(40.847187, -73.92135)",MONTGOMERY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488111,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,0:00,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487602,Sedan,Sedan,,, +12/18/2021,17:30,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4487953,Sedan,Sedan,Sedan,Sedan, +12/18/2021,22:48,QUEENS,11101,40.7485,-73.93853,"(40.7485, -73.93853)",,,28-10 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487446,Sedan,,,, +12/18/2021,16:37,BROOKLYN,11218,40.63867,-73.97182,"(40.63867, -73.97182)",EAST 7 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487940,Sedan,,,, +12/18/2021,11:55,,,40.870777,-73.81923,"(40.870777, -73.81923)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Defective,Pavement Slippery,4488129,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +12/18/2021,4:20,,,40.635857,-74.166756,"(40.635857, -74.166756)",,,88 ARLINGTON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488056,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,19:05,MANHATTAN,10010,40.74147,-73.985435,"(40.74147, -73.985435)",PARK AVENUE SOUTH,EAST 25 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487713,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,20:09,BROOKLYN,11207,40.683228,-73.907135,"(40.683228, -73.907135)",BUSHWICK AVENUE,GRANITE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487767,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/14/2021,12:45,BROOKLYN,11217,40.68977,-73.977104,"(40.68977, -73.977104)",DE KALB AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488032,Sedan,,,, +12/18/2021,12:20,,,40.71086,-73.95801,"(40.71086, -73.95801)",HAVEMEYER STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4487885,Station Wagon/Sport Utility Vehicle,Van,,, +12/18/2021,3:50,QUEENS,11435,40.69068,-73.804214,"(40.69068, -73.804214)",SHORE AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487488,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,19:30,,,40.631496,-73.884476,"(40.631496, -73.884476)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,Unspecified,,4487516,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/17/2021,6:05,,,40.645103,-74.01033,"(40.645103, -74.01033)",5 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488218,Bike,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,10:00,MANHATTAN,10032,40.83728,-73.94093,"(40.83728, -73.94093)",,,544 WEST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487405,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,19:56,,,40.834198,-73.85169,"(40.834198, -73.85169)",WESTCHESTER AVENUE,CASTLE HILL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488188,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,11:00,BROOKLYN,11211,40.713215,-73.93828,"(40.713215, -73.93828)",,,283 POWERS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487899,Sedan,,,, +12/18/2021,18:54,QUEENS,11370,40.76815,-73.89714,"(40.76815, -73.89714)",DITMARS BOULEVARD,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487646,Sedan,Sedan,,, +12/16/2021,7:50,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4488143,Sedan,Bike,,, +12/15/2021,13:20,MANHATTAN,10028,40.772705,-73.949486,"(40.772705, -73.949486)",EAST 81 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488280,Sedan,Box Truck,,, +12/18/2021,5:00,,,40.699512,-73.81461,"(40.699512, -73.81461)",91 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487490,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,7:10,MANHATTAN,10007,40.715984,-74.010254,"(40.715984, -74.010254)",,,157 CHAMBERS STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487537,Sedan,,,, +12/18/2021,22:30,,,,,,WEST 41 STREET,GALVIN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488042,Sedan,Pick-up Truck,,, +12/18/2021,17:30,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487974,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,15:40,,,,,,WEST 155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487998,Sedan,Sedan,,, +06/06/2021,20:00,MANHATTAN,10019,40.761036,-73.98702,"(40.761036, -73.98702)",8 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4424505,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,8:07,QUEENS,11106,40.758125,-73.928505,"(40.758125, -73.928505)",31 STREET,35 AVENUE,,1,1,0,0,0,0,1,1,Traffic Control Disregarded,Unspecified,,,,4451296,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/05/2021,3:37,,,40.842346,-73.93119,"(40.842346, -73.93119)",HARLEM RIVER DRIVE,,,0,1,0,0,0,0,0,1,Unspecified,,,,,4454052,Sedan,,,, +08/24/2021,21:23,BROOKLYN,11233,40.675716,-73.9142,"(40.675716, -73.9142)",,,2185 PACIFIC STREET,0,1,0,1,0,0,0,0,Driver Inexperience,,,,,4456041,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,7:51,BRONX,10453,40.855137,-73.90836,"(40.855137, -73.90836)",GRAND AVENUE,WEST 180 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4456843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,7:35,BROOKLYN,11221,40.68934,-73.917854,"(40.68934, -73.917854)",,,1143 BUSHWICK AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485817,Station Wagon/Sport Utility Vehicle,,,, +11/28/2021,22:29,MANHATTAN,10035,40.80256,-73.943,"(40.80256, -73.943)",EAST 120 STREET,MADISON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4485183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,9:20,,,40.73978,-73.97951,"(40.73978, -73.97951)",2 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485709,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,9:59,BROOKLYN,11230,40.61214,-73.96657,"(40.61214, -73.96657)",,,709 AVENUE O,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,0:32,,,40.839924,-73.93286,"(40.839924, -73.93286)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4485552,Sedan,,,, +12/08/2021,0:00,MANHATTAN,10032,40.841152,-73.942696,"(40.841152, -73.942696)",,,177 FORT WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4484928,Sedan,,,, +12/09/2021,19:00,BROOKLYN,11204,40.619892,-73.98372,"(40.619892, -73.98372)",,,1967 60 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485529,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,7:25,QUEENS,11416,40.683647,-73.856384,"(40.683647, -73.856384)",ROCKAWAY BOULEVARD,84 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4484642,Sedan,E-Bike,,, +12/05/2021,21:32,MANHATTAN,10040,40.8614,-73.92527,"(40.8614, -73.92527)",NAGLE AVENUE,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485773,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,21:49,MANHATTAN,10017,40.752388,-73.974304,"(40.752388, -73.974304)",,,150 EAST 44 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4484806,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,9:30,,,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4484963,Box Truck,Box Truck,,, +12/10/2021,13:17,,,40.778095,-73.9783,"(40.778095, -73.9783)",WEST 73 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485233,Box Truck,Sedan,,, +12/09/2021,7:25,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4485161,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,7:30,BROOKLYN,11201,40.68726,-73.98777,"(40.68726, -73.98777)",,,334 PACIFIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485294,Station Wagon/Sport Utility Vehicle,,,, +12/05/2021,0:03,,,40.837425,-73.92037,"(40.837425, -73.92037)",WEST 169 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485480,,,,, +12/06/2021,10:37,BROOKLYN,11230,40.61831,-73.95499,"(40.61831, -73.95499)",,,1781 OCEAN AVENUE,1,0,0,0,0,0,1,0,,,,,,4485524,,,,, +12/10/2021,7:23,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4485550,Sedan,Sedan,,, +12/09/2021,0:40,QUEENS,11378,40.724888,-73.89899,"(40.724888, -73.89899)",PERRY AVENUE,HAMILTON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4484911,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +12/05/2021,21:10,QUEENS,11105,40.782284,-73.9127,"(40.782284, -73.9127)",,,20-63 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485358,Motorcycle,,,, +12/08/2021,17:10,QUEENS,11434,40.68999,-73.78327,"(40.68999, -73.78327)",166 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4484754,Sedan,,,, +12/08/2021,22:45,QUEENS,11362,40.76453,-73.74086,"(40.76453, -73.74086)",245 STREET,ALAMEDA AVENUE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4485088,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,10:00,BRONX,10459,40.82101,-73.897385,"(40.82101, -73.897385)",,,919 EAST 163 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485319,Station Wagon/Sport Utility Vehicle,Van,,, +12/09/2021,21:09,BROOKLYN,11220,40.642548,-74.016655,"(40.642548, -74.016655)",4 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485068,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,12:53,,,40.658875,-73.94753,"(40.658875, -73.94753)",NEW YORK AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4487394,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/14/2021,12:38,,,40.707027,-73.9236,"(40.707027, -73.9236)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458345,Tow Truck / Wrecker,Ambulance,,, +09/15/2021,12:45,BROOKLYN,11211,40.714066,-73.94938,"(40.714066, -73.94938)",LORIMER STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457596,Pick-up Truck,Bus,,, +09/12/2021,3:21,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",WOODHAVEN BOULEVARD,91 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4458637,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,0:34,QUEENS,11106,40.755398,-73.93182,"(40.755398, -73.93182)",30 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,18:05,MANHATTAN,10019,40.76979,-73.988075,"(40.76979, -73.988075)",WEST 58 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458048,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,18:32,BRONX,10451,40.811245,-73.92753,"(40.811245, -73.92753)",,,260 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457697,Sedan,Box Truck,,, +09/15/2021,23:55,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458559,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,11:35,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457643,Sedan,Sedan,,, +09/17/2021,16:15,,,40.727295,-73.81281,"(40.727295, -73.81281)",KISSENA BOULEVARD,73 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458162,Sedan,,,, +09/14/2021,11:17,,,40.706573,-73.922874,"(40.706573, -73.922874)",WYCKOFF AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,16:30,MANHATTAN,10003,40.73543,-73.98271,"(40.73543, -73.98271)",2 AVENUE,EAST 19 STREET,,1,0,0,0,0,0,1,0,,,,,,4458716,,,,, +09/17/2021,17:45,BROOKLYN,11226,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458857,Sedan,Sedan,,, +09/16/2021,14:53,,,40.84482,-73.837,"(40.84482, -73.837)",HUTCHINSON RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4458014,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,14:45,MANHATTAN,10002,40.71436,-73.98652,"(40.71436, -73.98652)",,,233 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,20:05,BROOKLYN,11221,40.68948,-73.93515,"(40.68948, -73.93515)",,,578A LEXINGTON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458812,Sedan,,,, +09/17/2021,8:00,BROOKLYN,11206,40.710094,-73.93722,"(40.710094, -73.93722)",WATERBURY STREET,STAGG STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4458201,Van,Sedan,,, +09/16/2021,18:02,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458151,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,14:51,,,40.701187,-73.80789,"(40.701187, -73.80789)",91 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457885,Bus,,,, +09/17/2021,20:40,BRONX,10458,40.852413,-73.88438,"(40.852413, -73.88438)",,,2314 CROTONA AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4458956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,1:55,,,40.64644,-73.91289,"(40.64644, -73.91289)",REMSEN AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457286,Sedan,Sedan,,, +09/17/2021,20:30,MANHATTAN,10013,40.71697,-73.998245,"(40.71697, -73.998245)",,,196 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458586,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,19:28,QUEENS,11365,40.734543,-73.80296,"(40.734543, -73.80296)",,,67-37 166 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458238,Sedan,,,, +05/14/2021,13:17,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4458377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,10:40,BROOKLYN,11215,40.66079,-73.99401,"(40.66079, -73.99401)",22 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457624,Ambulance,Sedan,,, +09/17/2021,2:00,QUEENS,11366,40.726593,-73.809685,"(40.726593, -73.809685)",,,158-50 75 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458164,Sedan,Pick-up Truck,,, +09/16/2021,14:45,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",QUEENS BOULEVARD,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458035,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/13/2021,0:00,,,40.65488,-73.96189,"(40.65488, -73.96189)",PARKSIDE AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4458091,Pick-up Truck,Bike,,, +12/10/2021,9:15,BROOKLYN,11212,40.670094,-73.907974,"(40.670094, -73.907974)",WATKINS STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485575,Sedan,,,, +09/15/2021,14:00,BROOKLYN,11215,40.65638,-73.98066,"(40.65638, -73.98066)",18 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4457754,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/17/2021,11:40,BROOKLYN,11220,,,,58 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458206,Sedan,,,, +09/17/2021,23:45,,,40.730553,-73.84142,"(40.730553, -73.84142)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458265,Sedan,Sedan,,, +09/17/2021,14:00,BROOKLYN,11220,40.635303,-74.00617,"(40.635303, -74.00617)",58 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458561,Station Wagon/Sport Utility Vehicle,Bike,,, +09/15/2021,15:00,BROOKLYN,11209,40.622654,-74.02543,"(40.622654, -74.02543)",,,8419 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457669,Sedan,,,, +09/17/2021,21:35,,,40.703556,-73.78805,"(40.703556, -73.78805)",170 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4458400,PK,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,12:30,BROOKLYN,11208,40.67691,-73.87945,"(40.67691, -73.87945)",,,816 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458499,Box Truck,Tow Truck / Wrecker,,, +09/16/2021,7:56,BRONX,10472,40.82835,-73.86116,"(40.82835, -73.86116)",,,1890 WATSON AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457844,Sedan,E-Scooter,,, +09/16/2021,12:00,MANHATTAN,10002,40.720722,-73.98325,"(40.720722, -73.98325)",,,164 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457940,Sedan,,,, +09/16/2021,3:00,,,40.63858,-74.02078,"(40.63858, -74.02078)",64 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457982,,,,, +09/12/2021,17:25,,,40.835777,-73.91648,"(40.835777, -73.91648)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4458529,Moped,,,, +09/15/2021,3:30,,,40.76295,-73.83196,"(40.76295, -73.83196)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4457329,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,22:30,BROOKLYN,11220,,,,,,230 60 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458767,,,,, +09/17/2021,12:55,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,23:30,BROOKLYN,11234,40.628586,-73.92113,"(40.628586, -73.92113)",EAST 57 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457675,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,7:40,,,40.69325,-73.97287,"(40.69325, -73.97287)",CARLTON AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457906,Station Wagon/Sport Utility Vehicle,Fire Truck,,, +08/18/2021,15:50,BRONX,10460,40.83774,-73.86489,"(40.83774, -73.86489)",,,1853 ARCHER STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4458062,E-Bike,,,, +09/13/2021,18:00,BRONX,10469,40.875874,-73.84989,"(40.875874, -73.84989)",BOSTON ROAD,FISH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458772,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,6:15,,,40.757355,-73.73887,"(40.757355, -73.73887)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458123,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,20:08,BROOKLYN,11236,,,,PAERDEGAT 3 STREET,PAERDEGAT AVENUE NORTH,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458358,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,8:30,BROOKLYN,11249,40.70683,-73.9684,"(40.70683, -73.9684)",DIVISION AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458194,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,13:45,,,40.753456,-73.941414,"(40.753456, -73.941414)",41 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4458306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/16/2021,9:57,QUEENS,11004,40.753345,-73.7068,"(40.753345, -73.7068)",,,270-05 76 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457933,Sedan,EZ GO,,, +09/16/2021,20:10,QUEENS,11101,40.756405,-73.9222,"(40.756405, -73.9222)",,,34-38 38 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,6:55,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457817,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,8:49,QUEENS,11694,40.58376,-73.82554,"(40.58376, -73.82554)",BEACH 104 STREET,ROCKAWAY FREEWAY,,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4458283,Sedan,Bike,,, +09/15/2021,20:16,QUEENS,11385,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,MYRTLE AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4458741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,7:05,,,40.75781,-73.97353,"(40.75781, -73.97353)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4457370,Sedan,Flat Bed,,, +09/15/2021,5:33,BRONX,10470,40.900604,-73.85259,"(40.900604, -73.85259)",,,4509 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4458068,Bus,,,, +09/14/2021,14:30,BRONX,10470,40.901325,-73.86466,"(40.901325, -73.86466)",,,426 EAST 240 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458067,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,13:35,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4457566,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,2:44,BROOKLYN,11222,40.724636,-73.945305,"(40.724636, -73.945305)",,,659 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4458216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Dump +09/16/2021,22:10,,,40.64091,-74.034996,"(40.64091, -74.034996)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458233,Sedan,Sedan,,, +09/15/2021,19:45,BROOKLYN,11226,40.651802,-73.962364,"(40.651802, -73.962364)",,,1829 CATON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4457701,Sedan,,,, +08/13/2021,16:35,BROOKLYN,11226,40.643185,-73.94974,"(40.643185, -73.94974)",CLARENDON ROAD,EAST 29 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458183,Bike,,,, +09/13/2021,15:50,MANHATTAN,10029,40.7879,-73.953674,"(40.7879, -73.953674)",EAST 97 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458617,Station Wagon/Sport Utility Vehicle,PK,,, +09/13/2021,19:30,BROOKLYN,11232,40.654068,-74.001,"(40.654068, -74.001)",34 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Outside Car Distraction,Unspecified,,,,4458472,Station Wagon/Sport Utility Vehicle,Bike,,, +09/17/2021,14:36,MANHATTAN,10017,40.749157,-73.9727,"(40.749157, -73.9727)",EAST 41 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458155,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,13:05,BROOKLYN,11214,40.609764,-73.99914,"(40.609764, -73.99914)",,,1803 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458657,Sedan,,,, +09/13/2021,19:20,,,40.764347,-73.82595,"(40.764347, -73.82595)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458431,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,15:44,,,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458537,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,16:00,MANHATTAN,10003,40.729324,-73.99191,"(40.729324, -73.99191)",,,440 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458870,Sedan,PK,,, +09/17/2021,23:07,BRONX,10456,,,,TINTON AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458973,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,17:00,STATEN ISLAND,10312,40.5438,-74.164795,"(40.5438, -74.164795)",RICHMOND AVENUE,MOSELY AVENUE,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4458023,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,16:30,BROOKLYN,11222,40.72377,-73.9508,"(40.72377, -73.9508)",NASSAU AVENUE,MANHATTAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458221,Sedan,,,, +09/15/2021,6:42,QUEENS,11106,40.755363,-73.92718,"(40.755363, -73.92718)",,,34-12 36 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4457721,Sedan,Sedan,,, +09/16/2021,12:31,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4458934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,16:23,BROOKLYN,11213,40.671627,-73.93364,"(40.671627, -73.93364)",STERLING PLACE,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458687,Sedan,Motorscooter,,, +09/15/2021,17:12,,,40.695023,-73.84645,"(40.695023, -73.84645)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4457761,Sedan,Garbage or Refuse,,, +09/15/2021,7:48,QUEENS,11370,40.75884,-73.889755,"(40.75884, -73.889755)",31 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458087,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,16:45,BROOKLYN,11221,40.69165,-73.925865,"(40.69165, -73.925865)",,,1236 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458823,Sedan,Motorscooter,,, +09/15/2021,15:12,BROOKLYN,11207,40.66086,-73.89883,"(40.66086, -73.89883)",SNEDIKER AVENUE,NEWPORT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4457785,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/15/2021,14:45,MANHATTAN,10022,40.754894,-73.96543,"(40.754894, -73.96543)",,,931 1 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457527,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/17/2021,7:50,,,40.58489,-73.92885,"(40.58489, -73.92885)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458594,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,2:07,QUEENS,11355,40.75421,-73.810486,"(40.75421, -73.810486)",156 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4458453,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,1:00,,,40.67786,-73.93863,"(40.67786, -73.93863)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458709,Sedan,Sedan,,, +09/15/2021,1:00,BRONX,10469,40.872414,-73.839966,"(40.872414, -73.839966)",HAMMERSLEY AVENUE,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458100,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,7:45,QUEENS,11429,40.712116,-73.73118,"(40.712116, -73.73118)",223 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457466,Sedan,Sedan,,, +08/29/2021,19:32,BROOKLYN,11238,40.67066,-73.957985,"(40.67066, -73.957985)",FRANKLIN AVENUE,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458793,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,21:20,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457955,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,15:55,,,40.676193,-74.001335,"(40.676193, -74.001335)",HAMILTON AVENUE,WEST 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457971,Sedan,Flat Bed,,, +09/16/2021,18:15,QUEENS,11414,40.65573,-73.84672,"(40.65573, -73.84672)",,,160-39 85 STREET,4,0,0,0,0,0,4,0,Passing Too Closely,Unspecified,Unspecified,,,4457998,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/16/2021,16:15,QUEENS,11434,40.68893,-73.785576,"(40.68893, -73.785576)",,,163-02 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,8:10,,,40.634174,-74.14596,"(40.634174, -74.14596)",,,151 MORNINGSTAR ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4458119,Pick-up Truck,,,, +09/15/2021,11:20,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4457516,Taxi,Sedan,,, +09/15/2021,10:20,,,40.656475,-73.744934,"(40.656475, -73.744934)",BROOKVILLE BOULEVARD,147 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4457467,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,20:52,BROOKLYN,11237,40.70281,-73.9254,"(40.70281, -73.9254)",STARR STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458352,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,17:00,QUEENS,11357,40.79087,-73.807434,"(40.79087, -73.807434)",12 ROAD,154 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457918,Sedan,,,, +09/17/2021,0:10,,,40.899246,-73.84609,"(40.899246, -73.84609)",BAYCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,4458072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/15/2021,2:00,BROOKLYN,11236,40.646782,-73.90376,"(40.646782, -73.90376)",,,9717 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457554,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,21:32,BROOKLYN,11208,40.67955,-73.879105,"(40.67955, -73.879105)",,,3143 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458485,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,2:29,,,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4457403,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,14:00,,,40.665474,-73.95231,"(40.665474, -73.95231)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458253,Convertible,UNK,,, +09/16/2021,6:50,MANHATTAN,10010,40.738552,-73.98043,"(40.738552, -73.98043)",2 AVENUE,EAST 24 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457779,E-Bike,,,, +09/17/2021,8:45,BROOKLYN,11208,40.688446,-73.87593,"(40.688446, -73.87593)",,,784 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458480,Sedan,,,, +09/17/2021,11:58,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458598,Bus,Sedan,,, +09/16/2021,14:10,BRONX,10472,40.829052,-73.85038,"(40.829052, -73.85038)",CASTLE HILL AVENUE,BLACKROCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458055,Sedan,Bus,,, +09/17/2021,14:45,QUEENS,11419,40.68795,-73.82502,"(40.68795, -73.82502)",LEFFERTS BOULEVARD,103 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4458187,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,16:35,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457661,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,12:30,,,40.75982,-73.9139,"(40.75982, -73.9139)",44 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458311,Garbage or Refuse,,,, +09/12/2021,22:30,,,40.674747,-73.9417,"(40.674747, -73.9417)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458706,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,20:54,MANHATTAN,10002,40.712406,-73.97803,"(40.712406, -73.97803)",CHERRY STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458904,Sedan,Box Truck,,, +09/15/2021,15:00,MANHATTAN,10035,40.80506,-73.94117,"(40.80506, -73.94117)",MADISON AVENUE,EAST 124 STREET,,1,0,1,0,0,0,0,0,,,,,,4458440,E-Bike,,,, +09/07/2021,16:49,QUEENS,11103,40.761265,-73.9094,"(40.761265, -73.9094)",47 STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458544,Sedan,Bike,,, +09/17/2021,13:00,MANHATTAN,10029,40.7881,-73.94249,"(40.7881, -73.94249)",,,315 EAST 103 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4458623,Sedan,Sedan,,, +09/16/2021,0:57,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457683,Sedan,Pick-up Truck,,, +09/17/2021,2:46,BRONX,10455,40.81218,-73.9011,"(40.81218, -73.9011)",TIMPSON PLACE,SAINT JOHN AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,,,,,4458027,Sedan,,,, +09/17/2021,15:50,BRONX,10457,40.848606,-73.8898,"(40.848606, -73.8898)",EAST 180 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458942,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/15/2021,16:40,STATEN ISLAND,10309,40.52182,-74.23502,"(40.52182, -74.23502)",,,85 PAGE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458040,Sedan,Sedan,,, +09/17/2021,17:18,BRONX,10460,40.853344,-73.881676,"(40.853344, -73.881676)",EAST 187 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458979,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,14:58,,,40.72114,-73.942825,"(40.72114, -73.942825)",NORTH HENRY STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458225,Sedan,,,, +09/17/2021,7:17,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4458143,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,16:12,,,40.74308,-73.86607,"(40.74308, -73.86607)",ALSTYNE AVENUE,CORONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457728,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,9:05,MANHATTAN,10017,40.75524,-73.97328,"(40.75524, -73.97328)",EAST 48 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458661,Taxi,E-Bike,,, +09/13/2021,21:00,BROOKLYN,11216,40.68096,-73.93765,"(40.68096, -73.93765)",MARCUS GARVEY BOULEVARD,DECATUR STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458832,Convertible,,,, +09/16/2021,18:00,QUEENS,11427,40.730602,-73.734566,"(40.730602, -73.734566)",RANSOM STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458242,Sedan,,,, +09/11/2021,22:15,QUEENS,11103,40.765713,-73.90692,"(40.765713, -73.90692)",46 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458335,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,8:15,QUEENS,11378,40.726166,-73.88818,"(40.726166, -73.88818)",58 AVENUE,73 PLACE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4458732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,12:39,,,,,,PARK AVENUE,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4457794,Sedan,Sedan,,, +09/15/2021,10:10,,,40.831684,-73.85562,"(40.831684, -73.85562)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4457437,Sedan,,,, +09/06/2021,0:00,BRONX,10467,40.87321,-73.8671,"(40.87321, -73.8671)",WHITE PLAINS ROAD,ROSEWOOD STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4458104,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/14/2021,2:49,,,40.85738,-73.92973,"(40.85738, -73.92973)",WADSWORTH TERRACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458762,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,6:15,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",1 AVENUE,EAST 58 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4457532,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,19:03,BROOKLYN,11228,40.618584,-74.009224,"(40.618584, -74.009224)",78 STREET,13 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457632,E-Scooter,Sedan,,, +09/16/2021,7:40,,,40.7588,-73.83536,"(40.7588, -73.83536)",39 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458298,Sedan,,,, +09/16/2021,21:25,,,,,,EAST 58 STREET,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4457951,Taxi,,,, +09/02/2021,20:15,QUEENS,11426,40.726833,-73.71358,"(40.726833, -73.71358)",,,251-05 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458570,Sedan,,,, +09/16/2021,13:30,MANHATTAN,10027,40.815845,-73.95287,"(40.815845, -73.95287)",CONVENT AVENUE,WEST 131 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4458777,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,21:40,,,,,,,,EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458005,Bike,,,, +09/15/2021,15:29,,,40.78517,-73.94332,"(40.78517, -73.94332)",1 AVENUE,,,2,0,0,0,0,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inexperience,,,,4457719,Station Wagon/Sport Utility Vehicle,Moped,,, +09/16/2021,7:35,BROOKLYN,11234,40.6216,-73.92327,"(40.6216, -73.92327)",AVENUE M,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4457870,Bike,,,, +09/16/2021,15:13,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457956,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,9:21,,,40.720383,-73.780815,"(40.720383, -73.780815)",GRAND CENTRAL PKWY,,,0,1,0,0,0,0,0,1,Unspecified,,,,,4458131,Motorcycle,,,, +09/15/2021,12:29,BROOKLYN,11212,40.666187,-73.916664,"(40.666187, -73.916664)",SARATOGA AVENUE,SUTTER AVENUE,,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4457568,PK,,,, +09/16/2021,0:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457993,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,13:43,,,40.788418,-73.97077,"(40.788418, -73.97077)",WEST 89 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457609,Sedan,,,, +09/15/2021,17:00,QUEENS,11372,40.749756,-73.88411,"(40.749756, -73.88411)",,,82-10 37 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4457922,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,8:37,BROOKLYN,11207,40.675495,-73.88916,"(40.675495, -73.88916)",LIBERTY AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4457501,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,6:00,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457843,Tractor Truck Diesel,Tractor Truck Diesel,,, +09/17/2021,9:59,MANHATTAN,10022,40.759586,-73.968056,"(40.759586, -73.968056)",3 AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458158,Station Wagon/Sport Utility Vehicle,Bus,,, +09/15/2021,21:40,MANHATTAN,10075,40.77402,-73.95457,"(40.77402, -73.95457)",EAST 80 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458923,Taxi,Sedan,,, +09/16/2021,15:30,BROOKLYN,11203,40.649387,-73.9253,"(40.649387, -73.9253)",,,348 EAST 55 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458175,Sedan,E-Bike,,, +09/15/2021,16:27,BRONX,10457,40.853115,-73.89759,"(40.853115, -73.89759)",WEBSTER AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457742,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,13:15,QUEENS,11106,40.758274,-73.93336,"(40.758274, -73.93336)",36 AVENUE,CRESCENT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458553,Sedan,Bike,,, +09/06/2021,3:00,MANHATTAN,10031,40.821144,-73.95753,"(40.821144, -73.95753)",WEST 135 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458605,Sedan,Sedan,,, +09/15/2021,20:00,,,40.60579,-74.12092,"(40.60579, -74.12092)",,,800 MANOR ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4457767,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,15:47,QUEENS,11377,40.745827,-73.90111,"(40.745827, -73.90111)",63 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458276,Sedan,Sedan,,, +09/13/2021,16:30,,,40.842335,-73.93109,"(40.842335, -73.93109)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4458126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,19:56,BRONX,10458,40.853462,-73.88939,"(40.853462, -73.88939)",ARTHUR AVENUE,CRESCENT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458000,Sedan,,,, +09/17/2021,10:03,,,,,,BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458059,Bus,Bus,,, +09/17/2021,23:00,,,,,,MADISON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458316,Sedan,,,, +09/15/2021,16:15,BROOKLYN,11207,40.66351,-73.89175,"(40.66351, -73.89175)",RIVERDALE AVENUE,VERMONT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457834,Sedan,,,, +09/17/2021,9:20,BROOKLYN,11206,40.701077,-73.94043,"(40.701077, -73.94043)",SUMNER PLACE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458346,Bus,Sedan,,, +09/16/2021,13:58,BROOKLYN,11209,40.62079,-74.04048,"(40.62079, -74.04048)",SHORE ROAD,92 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4457914,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/15/2021,9:34,,,,,,BROOKLYN BRIDGE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458168,Sedan,Sedan,,, +09/17/2021,3:16,,,40.67725,-73.92754,"(40.67725, -73.92754)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4458699,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,0:00,QUEENS,11434,40.681778,-73.78156,"(40.681778, -73.78156)",BREWER BOULEVARD,119 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457655,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,15:00,QUEENS,11418,40.70001,-73.830894,"(40.70001, -73.830894)",JAMAICA AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4457891,Bus,Box Truck,,, +09/16/2021,1:28,BROOKLYN,11234,40.63039,-73.93006,"(40.63039, -73.93006)",AVENUE I,EAST 48 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4457676,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,6:55,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4458197,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/16/2021,6:00,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458031,Sedan,Sedan,,, +09/13/2021,9:30,MANHATTAN,10031,40.828346,-73.94906,"(40.828346, -73.94906)",WEST 148 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458257,Sedan,,,, +09/15/2021,16:34,MANHATTAN,10029,40.790997,-73.94931,"(40.790997, -73.94931)",EAST 103 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458630,Box Truck,Sedan,,, +09/15/2021,15:55,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",LINCOLN AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457615,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,0:00,,,40.73447,-73.86316,"(40.73447, -73.86316)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458036,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/17/2021,22:23,BROOKLYN,11212,40.66217,-73.908844,"(40.66217, -73.908844)",,,718 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4458670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/18/2021,1:15,BRONX,10470,40.897015,-73.872574,"(40.897015, -73.872574)",EAST 235 STREET,ONEIDA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4458845,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,18:00,QUEENS,11427,40.7272,-73.74922,"(40.7272, -73.74922)",HILLSIDE AVENUE,215 PLACE,,1,0,1,0,0,0,0,0,,,,,,4487792,,,,, +09/17/2021,21:00,,,40.828022,-73.84604,"(40.828022, -73.84604)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458291,Sedan,,,, +09/17/2021,15:00,BRONX,10467,40.879948,-73.88086,"(40.879948, -73.88086)",STEUBEN AVENUE,EAST 210 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458565,Sedan,,,, +02/02/2021,21:30,BROOKLYN,11220,40.64703,-74.012,"(40.64703, -74.012)",4 AVENUE,49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4388940,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,10:55,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410699,Sedan,Sedan,,, +04/25/2021,9:37,,,40.737907,-73.877174,"(40.737907, -73.877174)",JUSTICE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411396,Station Wagon/Sport Utility Vehicle,,,, +03/03/2021,18:30,BROOKLYN,11210,40.622726,-73.93934,"(40.622726, -73.93934)",EAST 37 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411809,Sedan,Sedan,,, +04/07/2021,19:59,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411803,Sedan,Taxi,,, +04/27/2021,2:50,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",EAST 58 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4411853,Garbage or Refuse,,,, +03/23/2021,15:25,MANHATTAN,10019,40.77006,-73.99078,"(40.77006, -73.99078)",,,555 WEST 57 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411869,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,13:00,,,40.5846,-73.91603,"(40.5846, -73.91603)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,Unspecified,,,4411827,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2021,20:30,,,40.776897,-73.97547,"(40.776897, -73.97547)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411804,Sedan,Sedan,,, +04/20/2021,13:30,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411866,Sedan,Sedan,,, +09/15/2021,14:00,,,40.587303,-73.96036,"(40.587303, -73.96036)",CONEY ISLAND AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457709,Sedan,Sedan,,, +09/17/2021,8:05,QUEENS,11412,40.703564,-73.76593,"(40.703564, -73.76593)",109 ROAD,190 PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458080,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,2:40,BROOKLYN,11236,40.643204,-73.90929,"(40.643204, -73.90929)",REMSEN AVENUE,FARRAGUT ROAD,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4411821,Sedan,Sedan,Sedan,, +09/14/2021,20:24,BRONX,10455,40.813095,-73.90718,"(40.813095, -73.90718)",,,551 WALES AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458409,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/16/2021,21:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457944,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,12:00,,,,,,,,147-24 EDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457580,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,9:05,BRONX,10469,,,,WARING AVENUE,MICKLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,20:15,BRONX,10456,40.8359271,-73.9029039,"(40.8359271, -73.9029039)",SAINT PAULS PLACE,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,12:43,,,40.77139,-73.73489,"(40.77139, -73.73489)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411122,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,10:45,MANHATTAN,10032,40.84115,-73.942696,"(40.84115, -73.942696)",,,177 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411264,Taxi,Ambulance,,, +04/27/2021,6:50,BROOKLYN,11235,40.583767,-73.95751,"(40.583767, -73.95751)",EAST 12 STREET,BANNER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411175,Chassis Cab,Sedan,,, +04/22/2021,19:40,,,40.743664,-73.856064,"(40.743664, -73.856064)",CORONA AVENUE,51 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411737,Station Wagon/Sport Utility Vehicle,Bike,,, +04/27/2021,0:30,QUEENS,11101,40.744656,-73.94853,"(40.744656, -73.94853)",JACKSON AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410816,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,22:16,QUEENS,11372,40.754837,-73.88336,"(40.754837, -73.88336)",,,33-40 84 STREET,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411153,Pick-up Truck,Sedan,,, +04/27/2021,2:00,BRONX,10466,40.88859,-73.86448,"(40.88859, -73.86448)",,,3950 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411360,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,15:00,BROOKLYN,11212,40.661377,-73.91056,"(40.661377, -73.91056)",,,400 BRISTOL STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4411196,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,18:45,BROOKLYN,11212,40.65461,-73.922,"(40.65461, -73.922)",REMSEN AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411673,Station Wagon/Sport Utility Vehicle,PK,,, +04/27/2021,4:40,BROOKLYN,11208,40.671154,-73.87815,"(40.671154, -73.87815)",,,309 ATKINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410899,Sedan,Sedan,,, +04/27/2021,22:10,BRONX,10452,40.84518,-73.91417,"(40.84518, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411205,Sedan,Bike,,, +04/21/2021,1:45,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411616,Box Truck,,,, +09/17/2021,2:20,BRONX,10467,40.876457,-73.86351,"(40.876457, -73.86351)",,,763 EAST GUN HILL ROAD,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,Unspecified,,,4458771,Motorcycle,Sedan,Pick-up Truck,, +04/27/2021,16:07,BROOKLYN,11229,40.59844,-73.95994,"(40.59844, -73.95994)",,,1204 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411104,Box Truck,Sedan,,, +04/27/2021,22:46,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411271,Sedan,Sedan,,, +04/27/2021,12:52,,,40.86341,-73.93001,"(40.86341, -73.93001)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411292,Sedan,Bus,,, +04/27/2021,20:52,BROOKLYN,11207,40.66725,-73.88799,"(40.66725, -73.88799)",DUMONT AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4411381,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/27/2021,13:00,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411068,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,9:19,,,40.625103,-74.14877,"(40.625103, -74.14877)",MORNINGSTAR ROAD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411005,Sedan,Pick-up Truck,,, +04/27/2021,8:50,BROOKLYN,11207,40.658443,-73.884125,"(40.658443, -73.884125)",,,879 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411047,Sedan,Sedan,,, +04/27/2021,6:45,QUEENS,11379,40.712196,-73.88584,"(40.712196, -73.88584)",,,69-29 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411008,Pick-up Truck,Sedan,,, +04/27/2021,0:00,BRONX,10462,40.8313,-73.84458,"(40.8313, -73.84458)",HAVILAND AVENUE,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,2:10,QUEENS,11364,40.74922,-73.75609,"(40.74922, -73.75609)",,,221-18 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4410975,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,21:40,BRONX,10468,40.871273,-73.90249,"(40.871273, -73.90249)",,,2755 SEDGWICK AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4411435,Sedan,,,, +04/27/2021,15:47,MANHATTAN,10028,40.777863,-73.95775,"(40.777863, -73.95775)",,,119 EAST 83 STREET,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4411188,Motorcycle,Taxi,,, +04/27/2021,19:31,MANHATTAN,10019,40.766346,-73.98795,"(40.766346, -73.98795)",,,421 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411215,Sedan,Bike,,, +04/27/2021,15:40,STATEN ISLAND,10304,40.626842,-74.075745,"(40.626842, -74.075745)",,,621 BAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411576,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,14:30,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411298,Sedan,,,, +04/27/2021,13:30,MANHATTAN,10002,40.716305,-73.98012,"(40.716305, -73.98012)",,,275 DELANCEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411504,Sedan,,,, +04/27/2021,11:25,BROOKLYN,11214,40.61392,-74.00049,"(40.61392, -74.00049)",,,7724 NEW UTRECHT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4410989,,,,, +04/27/2021,11:10,QUEENS,11101,40.73772,-73.93352,"(40.73772, -73.93352)",BORDEN AVENUE,GALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411080,Box Truck,Sedan,,, +04/27/2021,7:30,BROOKLYN,11215,40.665565,-73.98932,"(40.665565, -73.98932)",5 AVENUE,15 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411161,Sedan,Bike,,, +04/27/2021,23:55,,,40.65785,-73.91648,"(40.65785, -73.91648)",ROCKAWAY PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4411291,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,19:25,BROOKLYN,11210,40.63814,-73.94532,"(40.63814, -73.94532)",,,1416 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,10:00,QUEENS,11411,40.69732,-73.74102,"(40.69732, -73.74102)",218 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411107,Sedan,,,, +04/27/2021,19:20,QUEENS,11367,40.72527,-73.816154,"(40.72527, -73.816154)",150 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411135,Sedan,Sedan,,, +04/27/2021,9:29,,,40.605556,-73.99369,"(40.605556, -73.99369)",82 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,15:30,,,40.642735,-73.92247,"(40.642735, -73.92247)",,,5700 DITMAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411672,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,6:50,MANHATTAN,10010,40.741077,-73.98362,"(40.741077, -73.98362)",,,68 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411334,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,17:00,QUEENS,11417,40.676918,-73.85274,"(40.676918, -73.85274)",84 STREET,108 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Passing or Lane Usage Improper,,,4411410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,3:18,BROOKLYN,11212,40.655144,-73.90415,"(40.655144, -73.90415)",LINDEN BOULEVARD,WATKINS STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4411644,Sedan,,,, +04/27/2021,14:30,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4411181,Station Wagon/Sport Utility Vehicle,,,, +04/26/2021,20:00,BRONX,10473,40.81052,-73.85447,"(40.81052, -73.85447)",,,248 NEWMAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411753,Sedan,,,, +04/27/2021,10:53,MANHATTAN,10013,40.715523,-74.001236,"(40.715523, -74.001236)",,,1 HOGAN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4411208,Station Wagon/Sport Utility Vehicle,WH,,, +04/27/2021,21:00,BROOKLYN,11217,40.68629,-73.98527,"(40.68629, -73.98527)",PACIFIC STREET,BOND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411147,Taxi,,,, +04/27/2021,14:34,,,40.57725,-74.10298,"(40.57725, -74.10298)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411282,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,15:35,MANHATTAN,10022,40.75503,-73.96698,"(40.75503, -73.96698)",,,344 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411111,Station Wagon/Sport Utility Vehicle,USPS,,, +03/30/2021,10:38,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411687,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,14:00,,,40.70519,-73.91478,"(40.70519, -73.91478)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4411232,Tractor Truck Diesel,Sedan,,, +04/27/2021,19:40,BROOKLYN,11236,40.633038,-73.90554,"(40.633038, -73.90554)",,,1170 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411157,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,16:34,BRONX,10459,40.816196,-73.896,"(40.816196, -73.896)",,,1035 LONGWOOD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411233,Tractor Truck Diesel,Sedan,,, +04/27/2021,14:25,BROOKLYN,11249,40.70986,-73.96696,"(40.70986, -73.96696)",WYTHE AVENUE,SOUTH 8 STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4411197,Sedan,,,, +04/24/2021,14:23,BROOKLYN,11210,40.63393,-73.948784,"(40.63393, -73.948784)",FLATBUSH AVENUE,EAST 29 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4411781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,0:08,BROOKLYN,11218,40.65085,-73.9733,"(40.65085, -73.9733)",,,10 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4410828,Sedan,Sedan,,, +04/27/2021,10:15,,,40.752663,-73.746025,"(40.752663, -73.746025)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411128,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +03/12/2021,18:50,BROOKLYN,11218,40.64063,-73.98176,"(40.64063, -73.98176)",,,1417 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411626,Sedan,,,, +04/20/2021,14:06,QUEENS,11373,40.73597,-73.86747,"(40.73597, -73.86747)",,,57-12 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411736,Bus,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,5:30,QUEENS,11105,40.77603,-73.915245,"(40.77603, -73.915245)",27 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410916,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,14:15,,,,,,VANERVEER STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411110,Sedan,Bus,,, +04/27/2021,14:15,BROOKLYN,11237,40.707504,-73.92543,"(40.707504, -73.92543)",,,47 STEWART AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411198,Sedan,,,, +04/27/2021,11:45,,,40.787544,-73.82394,"(40.787544, -73.82394)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4411149,Sedan,,,, +09/17/2021,15:00,BRONX,10454,40.804523,-73.91199,"(40.804523, -73.91199)",BRUCKNER EXPRESSWAY,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4458416,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/27/2021,23:50,,,40.862152,-73.92993,"(40.862152, -73.92993)",ELLWOOD STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4411683,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/27/2021,9:30,BROOKLYN,11229,40.60223,-73.95609,"(40.60223, -73.95609)",,,1959 EAST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411176,Sedan,,,, +04/27/2021,6:19,QUEENS,11385,40.711056,-73.90997,"(40.711056, -73.90997)",GRANDVIEW AVENUE,STANHOPE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4411019,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +04/27/2021,10:40,,,40.6931,-73.95489,"(40.6931, -73.95489)",WILLOUGHBY AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411048,Station Wagon/Sport Utility Vehicle,Bike,,, +04/27/2021,18:16,BROOKLYN,11234,40.605072,-73.92988,"(40.605072, -73.92988)",AVENUE U,EAST 33 STREET,,6,0,0,0,0,0,6,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,Unspecified,4411315,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/27/2021,14:00,QUEENS,11358,40.76319,-73.80644,"(40.76319, -73.80644)",NORTHERN BOULEVARD,159 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411123,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,14:50,,,40.716133,-73.8185,"(40.716133, -73.8185)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411520,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,9:55,,,40.74091,-73.726654,"(40.74091, -73.726654)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410990,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,1:07,,,40.83608,-73.93996,"(40.83608, -73.93996)",WEST 162 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411262,Bike,,,, +04/27/2021,10:30,QUEENS,11691,40.601086,-73.76816,"(40.601086, -73.76816)",,,1014 BAY 32 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411336,Box Truck,Sedan,,, +04/27/2021,8:33,BROOKLYN,11218,40.642044,-73.98124,"(40.642044, -73.98124)",CHURCH AVENUE,STORY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,22:51,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4411160,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,14:50,BRONX,10466,40.88002,-73.84179,"(40.88002, -73.84179)",,,3663 BOSTON ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411720,Sedan,Sedan,,, +04/27/2021,22:53,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411588,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,15:35,QUEENS,11417,40.68239,-73.84008,"(40.68239, -73.84008)",,,103-53 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,20:13,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4411698,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,23:40,BRONX,10473,,,,,,62 HERON LANE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4411296,Sedan,Van,,, +04/27/2021,8:00,QUEENS,11416,40.681404,-73.85334,"(40.681404, -73.85334)",102 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410938,Sedan,Pick-up Truck,,, +04/27/2021,15:20,MANHATTAN,10027,40.814297,-73.95308,"(40.814297, -73.95308)",CONVENT AVENUE,WEST 129 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411497,Station Wagon/Sport Utility Vehicle,Bus,,, +04/27/2021,10:10,,,40.68378,-73.789734,"(40.68378, -73.789734)",116 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411098,Sedan,,,, +04/27/2021,9:20,BRONX,10469,40.86941,-73.84264,"(40.86941, -73.84264)",EASTCHESTER ROAD,ADEE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4411359,Bus,Box Truck,,, +04/27/2021,11:24,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",EAST MOUNT EDEN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411270,Sedan,,,, +04/27/2021,23:50,QUEENS,11357,40.782547,-73.80285,"(40.782547, -73.80285)",160 STREET,17 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411186,Sedan,Sedan,,, +04/27/2021,10:30,BROOKLYN,11235,40.587307,-73.93938,"(40.587307, -73.93938)",VOORHIES AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4411850,,,,, +04/27/2021,15:34,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411214,Sedan,Sedan,,, +04/27/2021,14:40,STATEN ISLAND,10310,40.634045,-74.123405,"(40.634045, -74.123405)",,,1230 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411705,Sedan,,,, +04/27/2021,14:15,,,40.67602,-73.81613,"(40.67602, -73.81613)",116 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4411133,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,2:50,BROOKLYN,11232,40.655273,-74.0105,"(40.655273, -74.0105)",39 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411522,Tractor Truck Gasoline,Sedan,,, +04/25/2021,18:01,BROOKLYN,11212,40.6636,-73.91264,"(40.6636, -73.91264)",,,189 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411647,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,18:00,QUEENS,11365,40.728092,-73.80883,"(40.728092, -73.80883)",,,160-11 72 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4411166,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,18:00,,,40.703537,-73.895546,"(40.703537, -73.895546)",FRESH POND ROAD,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411378,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,6:49,,,40.72293,-73.847336,"(40.72293, -73.847336)",QUEENS BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4410972,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,12:45,BRONX,10453,40.856987,-73.90897,"(40.856987, -73.90897)",AQUEDUCT AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411227,Sedan,Moped,,, +04/27/2021,10:20,,,40.829,-73.83642,"(40.829, -73.83642)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411067,Sedan,,,, +04/27/2021,20:20,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4411234,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,13:00,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411127,Sedan,,,, +04/27/2021,22:18,BROOKLYN,11215,40.67599,-73.97941,"(40.67599, -73.97941)",,,718 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411223,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/27/2021,8:00,QUEENS,11415,40.707962,-73.82815,"(40.707962, -73.82815)",84 ROAD,AUSTIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411751,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,9:00,,,40.744556,-73.870834,"(40.744556, -73.870834)",43 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411180,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,3:02,,,40.63844,-74.036766,"(40.63844, -74.036766)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4410847,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,1:45,MANHATTAN,10018,40.754185,-73.99422,"(40.754185, -73.99422)",,,362 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458511,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,20:40,,,40.60638,-73.754715,"(40.60638, -73.754715)",BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4411337,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,13:10,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411035,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,8:25,BROOKLYN,11208,40.684013,-73.87433,"(40.684013, -73.87433)",,,187 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411044,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,14:06,STATEN ISLAND,10305,40.59415,-74.086586,"(40.59415, -74.086586)",HYLAN BOULEVARD,REID AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411283,Pick-up Truck,Convertible,,, +04/27/2021,15:00,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411074,Sedan,Sedan,,, +04/27/2021,14:56,MANHATTAN,10034,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,ACADEMY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411319,Sedan,Motorbike,,, +04/13/2021,22:00,QUEENS,11373,40.74487,-73.87629,"(40.74487, -73.87629)",WHITNEY AVENUE,GLEANE STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411786,Sedan,E-Scooter,,, +04/27/2021,7:13,BROOKLYN,11236,40.6434,-73.91546,"(40.6434, -73.91546)",,,21 SOUTH MARKET STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411115,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,23:00,QUEENS,11433,40.6935,-73.791695,"(40.6935, -73.791695)",,,109-36 160 STREET,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,Unspecified,,,4411420,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/27/2021,1:52,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4410980,Sedan,Motorcycle,,, +04/27/2021,14:30,STATEN ISLAND,10306,40.57862,-74.10168,"(40.57862, -74.10168)",HYLAN BOULEVARD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411284,Sedan,,,, +04/27/2021,16:22,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,16:26,MANHATTAN,10025,40.804886,-73.96248,"(40.804886, -73.96248)",AMSTERDAM AVENUE,WEST 113 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4411519,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +04/27/2021,0:38,BROOKLYN,11236,40.648354,-73.91001,"(40.648354, -73.91001)",EAST 94 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411000,Sedan,Sedan,,, +04/27/2021,13:00,,,40.583725,-73.89372,"(40.583725, -73.89372)",AVIATION ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411073,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,12:55,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411109,Sedan,,,, +04/27/2021,9:55,BROOKLYN,11231,40.678925,-74.01106,"(40.678925, -74.01106)",VAN BRUNT STREET,PIONEER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411202,Sedan,,,, +04/24/2021,10:00,QUEENS,11691,40.60358,-73.744675,"(40.60358, -73.744675)",,,801 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411619,Sedan,Sedan,,, +04/21/2021,5:10,,,40.708965,-73.95673,"(40.708965, -73.95673)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4411862,Sedan,,,, +04/27/2021,11:30,,,40.716133,-73.8185,"(40.716133, -73.8185)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4411012,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/27/2021,14:07,QUEENS,11364,40.74922,-73.75609,"(40.74922, -73.75609)",,,221-22 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411124,Sedan,Sedan,,, +04/27/2021,9:55,BRONX,10457,40.853935,-73.892456,"(40.853935, -73.892456)",,,2245 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410971,Sedan,Sedan,,, +04/27/2021,14:50,QUEENS,11412,40.70247,-73.7568,"(40.70247, -73.7568)",112 AVENUE,199 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4411100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/27/2021,17:35,BRONX,10457,40.854115,-73.89091,"(40.854115, -73.89091)",3 AVENUE,EAST 183 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4411276,Pick-up Truck,,,, +04/27/2021,16:35,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411092,Sedan,Tractor Truck Diesel,,, +04/26/2021,7:30,BROOKLYN,11225,40.66408,-73.94817,"(40.66408, -73.94817)",EMPIRE BOULEVARD,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4411742,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/27/2021,16:46,,,40.693348,-73.79976,"(40.693348, -73.79976)",YATES ROAD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4411424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,15:40,,,40.612293,-74.03412,"(40.612293, -74.03412)",101 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,20:21,BROOKLYN,11234,40.616894,-73.93933,"(40.616894, -73.93933)",,,1566 EAST 36 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4411304,Station Wagon/Sport Utility Vehicle,Bus,Sedan,Station Wagon/Sport Utility Vehicle, +04/27/2021,21:39,BROOKLYN,11220,40.633396,-74.01383,"(40.633396, -74.01383)",,,738 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411496,Sedan,,,, +04/27/2021,17:13,QUEENS,11378,40.72143,-73.892746,"(40.72143, -73.892746)",69 STREET,60 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411377,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,14:10,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4411194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,11:25,BROOKLYN,11221,40.689426,-73.94223,"(40.689426, -73.94223)",GREENE AVENUE,THROOP AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4411682,Bike,Sedan,,, +04/27/2021,9:49,,,40.70537,-73.775826,"(40.70537, -73.775826)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411143,Sedan,Motorcycle,,, +04/26/2021,9:30,,,40.88919,-73.83131,"(40.88919, -73.83131)",EAST 233 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411723,Sedan,Taxi,,, +04/27/2021,14:59,,,40.770382,-73.792244,"(40.770382, -73.792244)",UTOPIA PARKWAY,29 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4411131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/27/2021,8:40,STATEN ISLAND,10306,40.58166,-74.10186,"(40.58166, -74.10186)",ADAMS AVENUE,HUSSON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4410917,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,23:40,,,40.776104,-73.97975,"(40.776104, -73.97975)",WEST 70 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4411788,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +04/27/2021,12:44,BROOKLYN,11207,40.6646,-73.89502,"(40.6646, -73.89502)",LIVONIA AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411049,Sedan,Sedan,,, +04/27/2021,22:40,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411169,Sedan,Sedan,,, +04/24/2021,2:24,QUEENS,11420,40.678375,-73.80509,"(40.678375, -73.80509)",,,116-41 135 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4411631,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/27/2021,14:55,BROOKLYN,11223,40.60784,-73.961975,"(40.60784, -73.961975)",CONEY ISLAND AVENUE,QUENTIN ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,16:07,MANHATTAN,10032,40.84103,-73.94463,"(40.84103, -73.94463)",WEST 165 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4411266,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,20:17,BRONX,10457,40.83911,-73.90334,"(40.83911, -73.90334)",,,455 CLAREMONT PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411650,Sedan,,,, +04/27/2021,2:20,QUEENS,11692,40.593765,-73.79624,"(40.593765, -73.79624)",,,430 BEACH 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +04/27/2021,9:15,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411118,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,16:25,QUEENS,11385,40.710163,-73.90255,"(40.710163, -73.90255)",,,63-42 60 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4411772,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/25/2021,2:21,BROOKLYN,11211,40.720047,-73.95536,"(40.720047, -73.95536)",BEDFORD AVENUE,NORTH 11 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4411819,Sedan,Sedan,,, +04/27/2021,17:28,,,40.826088,-73.86121,"(40.826088, -73.86121)",BRUCKNER BOULEVARD,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411295,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,8:14,,,40.67578,-74.0014,"(40.67578, -74.0014)",WEST 9 STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411599,Sedan,,,, +04/27/2021,16:25,BROOKLYN,11228,40.610523,-74.00806,"(40.610523, -74.00806)",86 STREET,BAY 11 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4411185,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,14:25,BRONX,10474,40.81899,-73.8867,"(40.81899, -73.8867)",BRYANT AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411228,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,16:30,,,40.610428,-74.11097,"(40.610428, -74.11097)",STATEN ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,,,,,4411697,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,14:45,BROOKLYN,11212,40.667366,-73.92274,"(40.667366, -73.92274)",RALPH AVENUE,UNION STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411235,Bus,,,, +04/15/2021,21:20,QUEENS,11368,40.754955,-73.85384,"(40.754955, -73.85384)",114 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411711,Sedan,,,, +04/27/2021,0:35,,,40.79548,-73.96191,"(40.79548, -73.96191)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4410891,Sedan,Sedan,,, +04/27/2021,17:00,QUEENS,11385,40.712257,-73.90462,"(40.712257, -73.90462)",,,62-51 60 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,17:30,,,40.72828,-73.7604,"(40.72828, -73.7604)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4411137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/27/2021,21:25,,,,,,Seagirt Blvd,Beach 9th Street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411338,Sedan,Sedan,,, +04/27/2021,12:07,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411045,Sedan,Sedan,,, +04/27/2021,13:40,QUEENS,11101,40.75325,-73.9123,"(40.75325, -73.9123)",,,50-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411320,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,16:55,MANHATTAN,10022,40.754505,-73.965706,"(40.754505, -73.965706)",1 AVENUE,EAST 51 STREET,,1,0,1,0,0,0,0,0,,,,,,4411842,,,,, +04/14/2021,16:55,BRONX,10472,40.830025,-73.872765,"(40.830025, -73.872765)",WESTCHESTER AVENUE,METCALF AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411641,Sedan,Bike,,, +04/27/2021,10:40,BROOKLYN,11249,40.70079,-73.9605,"(40.70079, -73.9605)",WYTHE AVENUE,PENN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411193,Sedan,Box Truck,,, +04/27/2021,20:34,QUEENS,11372,40.75365,-73.88573,"(40.75365, -73.88573)",,,81-14 34 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411213,Sedan,Bike,,, +04/27/2021,9:26,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411555,Sedan,Sedan,,, +04/27/2021,19:10,BRONX,10458,40.856155,-73.88357,"(40.856155, -73.88357)",,,690 EAST 189 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4411279,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/27/2021,5:52,,,,,,SHORE ROAD,CITY ISLAND ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4411090,Sedan,Sedan,Sedan,, +04/27/2021,13:50,BROOKLYN,11205,40.69314,-73.96969,"(40.69314, -73.96969)",,,403 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411113,Station Wagon/Sport Utility Vehicle,Bus,,, +04/27/2021,2:15,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410982,Sedan,,,, +04/27/2021,15:09,MANHATTAN,10039,40.8329,-73.93545,"(40.8329, -73.93545)",,,159-38 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4411286,Sedan,,,, +04/27/2021,20:45,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",39 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411165,Van,Sedan,,, +04/27/2021,7:30,,,40.833065,-73.85974,"(40.833065, -73.85974)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4411095,Sedan,Tractor Truck Diesel,,, +04/27/2021,13:47,BROOKLYN,11218,,,,PARK CIRCLE,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411119,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,8:55,BROOKLYN,11201,40.689857,-73.99842,"(40.689857, -73.99842)",HICKS STREET,AMITY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4411600,MACK,Sedan,,, +04/27/2021,14:25,,,40.606846,-74.16443,"(40.606846, -74.16443)",,,4 JONES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411388,Sedan,,,, +04/27/2021,21:35,,,40.849308,-73.93192,"(40.849308, -73.93192)",WEST 182 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411427,Pick-up Truck,,,, +04/27/2021,8:43,BRONX,10457,40.845642,-73.89771,"(40.845642, -73.89771)",EAST 176 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410978,Taxi,,,, +04/27/2021,19:00,BROOKLYN,11217,40.672638,-73.97076,"(40.672638, -73.97076)",PLAZA STREET WEST,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411222,E-Bike,Sedan,,, +04/27/2021,0:00,,,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411027,Sedan,,,, +04/27/2021,19:50,QUEENS,11101,40.752815,-73.930595,"(40.752815, -73.930595)",,,38-09 33 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411294,Sedan,Sedan,,, +04/27/2021,2:32,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4410944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,10:00,QUEENS,11354,40.763668,-73.82303,"(40.763668, -73.82303)",37 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411126,Sedan,,,, +04/27/2021,16:05,BROOKLYN,11207,40.662205,-73.892265,"(40.662205, -73.892265)",NEW LOTS AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411383,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/27/2021,13:40,,,40.788532,-73.95322,"(40.788532, -73.95322)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411275,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,10:00,,,40.70605,-74.00746,"(40.70605, -74.00746)",PEARL STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411069,Van,,,, +04/12/2021,21:35,,,40.786804,-73.98338,"(40.786804, -73.98338)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4411815,Sedan,,,, +04/27/2021,18:35,BRONX,10466,40.903763,-73.84325,"(40.903763, -73.84325)",CRANFORD AVENUE,MONTICELLO AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411725,Sedan,Sedan,,, +04/27/2021,17:00,BROOKLYN,11220,40.640774,-74.02917,"(40.640774, -74.02917)",WAKEMAN PLACE,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411170,Sedan,Sedan,Sedan,, +04/27/2021,18:32,QUEENS,11413,40.665707,-73.760956,"(40.665707, -73.760956)",,,144-30 184 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411151,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,20:46,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,WEST 145 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411617,Station Wagon/Sport Utility Vehicle,Moped,,, +04/24/2021,20:20,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4411674,Sedan,,,, +04/27/2021,17:00,BRONX,10468,40.868282,-73.90107,"(40.868282, -73.90107)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411179,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,9:17,,,40.697582,-73.94965,"(40.697582, -73.94965)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411054,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,1:57,,,40.7423,-73.781235,"(40.7423, -73.781235)",LONG ISLAND EXPRESSWAY,,,0,1,0,1,0,0,0,0,Alcohol Involvement,,,,,4411011,Sedan,,,, +04/27/2021,15:25,BRONX,10461,40.8407,-73.84544,"(40.8407, -73.84544)",FRISBY AVENUE,OVERING STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411855,Taxi,,,, +04/27/2021,10:58,BROOKLYN,11219,40.635788,-73.9949,"(40.635788, -73.9949)",50 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411303,Van,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,22:00,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411487,Sedan,Sedan,,, +04/27/2021,15:35,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4411101,Sedan,Taxi,Sedan,, +04/27/2021,21:06,,,40.677673,-73.76277,"(40.677673, -73.76277)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411195,Sedan,Sedan,,, +04/27/2021,17:59,BRONX,10465,40.823715,-73.81788,"(40.823715, -73.81788)",,,530 LOGAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411369,Sedan,,,, +04/27/2021,12:00,MANHATTAN,10032,40.840755,-73.93629,"(40.840755, -73.93629)",,,2204 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411265,Box Truck,Sedan,,, +04/27/2021,5:00,,,,,,QUEENS MIDTOWN EXPRESSWAY,69 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411001,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/27/2021,8:40,,,40.70347,-73.82947,"(40.70347, -73.82947)",85 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410930,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,16:17,QUEENS,11363,40.77067,-73.7355,"(40.77067, -73.7355)",NORTHERN BOULEVARD,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411129,Sedan,Sedan,,, +04/27/2021,12:45,BRONX,10453,40.855785,-73.90558,"(40.855785, -73.90558)",JEROME AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4411204,Sedan,Sedan,,, +04/27/2021,12:36,,,40.664333,-73.79119,"(40.664333, -73.79119)",NASSAU EXPRESSWAY,150 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,21:00,QUEENS,11436,40.670326,-73.79244,"(40.670326, -73.79244)",146 STREET,130 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457960,,,,, +04/27/2021,16:00,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",48 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411789,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,21:05,BROOKLYN,11236,40.648067,-73.89784,"(40.648067, -73.89784)",EAST 103 STREET,GLENWOOD ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411630,Sedan,Bike,,, +04/27/2021,14:13,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Other Vehicular,Other Vehicular,,,4411144,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/27/2021,22:30,BRONX,10459,40.826813,-73.88982,"(40.826813, -73.88982)",,,1001 EAST 167 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411653,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,17:00,MANHATTAN,10035,40.804382,-73.93954,"(40.804382, -73.93954)",EAST 124 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411288,Bike,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,7:10,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",FULTON STREET,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411046,Bus,Bus,,, +04/27/2021,18:09,,,40.681805,-73.94987,"(40.681805, -73.94987)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411351,Sedan,Sedan,Taxi,, +04/21/2021,0:10,,,40.790623,-73.942444,"(40.790623, -73.942444)",EAST 106 STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4411876,Motorcycle,E-Bike,,, +04/27/2021,19:00,QUEENS,11415,40.708324,-73.832375,"(40.708324, -73.832375)",BEVERLY ROAD,83 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411280,Sedan,,,, +04/27/2021,3:45,BROOKLYN,11220,40.633564,-74.01595,"(40.633564, -74.01595)",7 AVENUE,GOWANUS EXPRESSWAY,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4411024,Sedan,,,, +04/27/2021,9:00,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411096,Tractor Truck Diesel,Tractor Truck Diesel,,, +04/27/2021,0:27,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,2,1,0,0,0,0,2,1,Unsafe Speed,,,,,4411518,Sedan,,,, +04/27/2021,21:50,,,40.738575,-73.845345,"(40.738575, -73.845345)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4411432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/27/2021,11:20,,,40.572502,-74.11358,"(40.572502, -74.11358)",EDISON STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4410986,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,17:53,,,,,,EAST 162 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411642,Bus,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,18:27,QUEENS,11368,40.740814,-73.85532,"(40.740814, -73.85532)",,,55-12 VANDOREN STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411184,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,19:00,BROOKLYN,11222,40.71901,-73.95019,"(40.71901, -73.95019)",LORIMER STREET,BAYARD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411756,Sedan,Bike,,, +04/24/2021,22:44,,,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4411774,Sedan,Bike,,, +04/27/2021,0:00,BROOKLYN,11207,40.652752,-73.88629,"(40.652752, -73.88629)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4410897,Sedan,,,, +04/27/2021,11:52,BROOKLYN,11215,40.676636,-73.98514,"(40.676636, -73.98514)",,,511 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/27/2021,8:19,BRONX,10469,40.865093,-73.837,"(40.865093, -73.837)",ALLERTON AVENUE,LODOVICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411253,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/27/2021,7:01,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inexperience,Unspecified,,,4411136,Sedan,Sedan,Sedan,, +04/27/2021,22:05,BRONX,10451,40.822826,-73.91658,"(40.822826, -73.91658)",COURTLANDT AVENUE,EAST 158 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411558,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,11:30,,,40.642445,-74.00592,"(40.642445, -74.00592)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411162,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/27/2021,15:00,BROOKLYN,11221,40.69614,-73.92726,"(40.69614, -73.92726)",EVERGREEN AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411229,Sedan,,,, +04/27/2021,15:00,QUEENS,11418,40.702442,-73.81687,"(40.702442, -73.81687)",JAMAICA AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411082,Sedan,Box Truck,,, +04/27/2021,8:44,,,40.850166,-73.93576,"(40.850166, -73.93576)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4410976,Sedan,Armored Truck,,, +04/27/2021,16:34,QUEENS,11377,40.756996,-73.90784,"(40.756996, -73.90784)",51 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4411322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,14:15,STATEN ISLAND,10314,40.61294,-74.12478,"(40.61294, -74.12478)",VICTORY BOULEVARD,LESTER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411603,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,10:35,QUEENS,11354,40.756657,-73.8338,"(40.756657, -73.8338)",,,40-70 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411121,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,0:00,BROOKLYN,11217,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411112,Sedan,Bus,,, +04/27/2021,8:58,BROOKLYN,11209,40.623257,-74.03114,"(40.623257, -74.03114)",,,8619 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411401,Sedan,Box Truck,,, +04/27/2021,20:21,QUEENS,11375,40.732277,-73.84927,"(40.732277, -73.84927)",108 STREET,64 ROAD,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4411158,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/27/2021,14:45,MANHATTAN,10013,40.722324,-74.01178,"(40.722324, -74.01178)",WEST STREET,LAIGHT STREET,,1,0,1,0,0,0,0,0,,,,,,4411189,Sedan,,,, +04/24/2021,18:54,MANHATTAN,10003,40.732845,-73.995926,"(40.732845, -73.995926)",5 AVENUE,WEST 9 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4411830,Sedan,,,, +04/27/2021,14:14,BROOKLYN,11230,40.625973,-73.97624,"(40.625973, -73.97624)",MC DONALD AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411712,Refrigerated Van,Sedan,,, +04/27/2021,22:59,QUEENS,11369,40.76942,-73.880295,"(40.76942, -73.880295)",90 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411210,Sedan,Sedan,,, +04/27/2021,15:00,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411145,Bus,Pick-up Truck,,, +04/25/2021,22:30,,,40.8285,-73.93779,"(40.8285, -73.93779)",WEST 154 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4411656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,19:10,QUEENS,11101,40.753113,-73.93371,"(40.753113, -73.93371)",39 AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411691,Station Wagon/Sport Utility Vehicle,,,, +04/19/2021,18:00,,,40.888016,-73.86374,"(40.888016, -73.86374)",CARPENTER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411728,Sedan,Sedan,,, +04/27/2021,11:45,BROOKLYN,11222,40.72334,-73.952126,"(40.72334, -73.952126)",,,57 NASSAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411174,Sedan,,,, +09/05/2021,18:00,QUEENS,11369,40.76161,-73.87983,"(40.76161, -73.87983)",,,30-01 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459014,Sedan,,,, +12/18/2021,14:10,BROOKLYN,11209,40.61834,-74.03018,"(40.61834, -74.03018)",92 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487432,Sedan,,,, +09/17/2021,7:30,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458136,Sedan,Sedan,,, +09/15/2021,22:45,QUEENS,11420,40.681274,-73.81162,"(40.681274, -73.81162)",130 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4457690,Sedan,Pick-up Truck,,, +09/12/2021,7:00,,,40.74504,-73.7345,"(40.74504, -73.7345)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4458582,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,10:45,,,40.77574,-73.77986,"(40.77574, -73.77986)",28 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458079,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,11:35,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457625,Dump,,,, +09/15/2021,8:41,BROOKLYN,11235,40.58613,-73.95011,"(40.58613, -73.95011)",VOORHIES AVENUE,EAST 19 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,19:27,BROOKLYN,11229,40.59403,-73.93779,"(40.59403, -73.93779)",,,2354 BATCHELDER STREET,2,0,2,0,0,0,0,0,Pavement Slippery,,,,,4458366,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,7:53,BRONX,10453,40.84962,-73.91938,"(40.84962, -73.91938)",WEST 176 STREET,MONTGOMERY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458094,Bus,Sedan,,, +09/16/2021,0:15,BROOKLYN,11209,40.62143,-74.02299,"(40.62143, -74.02299)",FORT HAMILTON PARKWAY,84 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457670,Sedan,Sedan,,, +09/15/2021,8:34,,,40.864807,-73.91937,"(40.864807, -73.91937)",POST AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457899,Sedan,Bus,,, +09/17/2021,10:18,BROOKLYN,11206,40.7017,-73.94353,"(40.7017, -73.94353)",,,693 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4458111,Sedan,,,, +09/15/2021,0:15,,,40.69593,-73.96548,"(40.69593, -73.96548)",PARK AVENUE,RYERSON STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4457291,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +09/16/2021,16:15,,,40.678154,-73.94416,"(40.678154, -73.94416)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457927,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,15:50,QUEENS,11379,40.726574,-73.87365,"(40.726574, -73.87365)",,,84-06 61 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458727,Sedan,Pick-up Truck,,, +09/15/2021,15:25,BROOKLYN,11226,40.640823,-73.96531,"(40.640823, -73.96531)",CORTELYOU ROAD,RUGBY ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458190,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,9:52,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4458210,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,14:00,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",VANDAM STREET,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457986,Pick-up Truck,Sedan,,, +09/15/2021,17:48,,,0,0,"(0.0, 0.0)",HORACE HARDING EXPRESSWAY,150 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4457603,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,7:50,MANHATTAN,10016,40.741127,-73.97503,"(40.741127, -73.97503)",,,400 EAST 30 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4457827,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,21:30,BROOKLYN,11232,40.657665,-74.00093,"(40.657665, -74.00093)",30 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4457981,Sedan,E-Bike,,, +09/16/2021,18:31,QUEENS,11434,40.68704,-73.780525,"(40.68704, -73.780525)",116 AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,14:01,QUEENS,11434,,,,SUTPHIN BOULEVARD,150 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457884,Sedan,,,, +09/17/2021,3:42,QUEENS,11413,40.678226,-73.75236,"(40.678226, -73.75236)",135 AVENUE,218 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458135,Sedan,Sedan,,, +09/15/2021,5:00,,,40.76565,-73.837425,"(40.76565, -73.837425)",33 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457335,Sedan,,,, +09/17/2021,6:50,BROOKLYN,11223,40.596928,-73.97363,"(40.596928, -73.97363)",,,284 AVENUE U,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4458918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/16/2021,3:30,BROOKLYN,11201,40.699738,-73.98212,"(40.699738, -73.98212)",,,192 SANDS STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4457907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,14:52,BRONX,10462,40.832645,-73.85122,"(40.832645, -73.85122)",ELLIS AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,20:10,BRONX,10462,40.830902,-73.84765,"(40.830902, -73.84765)",HAVEMEYER AVENUE,HAVILAND AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458063,Sedan,E-Scooter,,, +09/15/2021,23:40,,,40.686775,-73.73135,"(40.686775, -73.73135)",233 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457671,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/12/2021,14:00,QUEENS,11385,40.70678,-73.85472,"(40.70678, -73.85472)",,,89-89 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458195,Sedan,,,, +09/12/2021,22:50,QUEENS,11434,,,,ROCKAWAY BOULEVARD,150 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,10:30,,,40.69552,-73.86456,"(40.69552, -73.86456)",PARK LANE SOUTH,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458122,Sedan,,,, +09/16/2021,13:47,QUEENS,11432,40.707535,-73.80268,"(40.707535, -73.80268)",,,87-65 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458394,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,12:14,QUEENS,11422,40.668186,-73.74111,"(40.668186, -73.74111)",233 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457934,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,9:23,QUEENS,11432,,,,90th Ave,168 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458212,Box Truck,Box Truck,,, +09/16/2021,15:57,STATEN ISLAND,10307,40.510815,-74.24199,"(40.510815, -74.24199)",WOOD AVENUE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,4:10,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4458229,Tractor Truck Diesel,Sedan,,, +09/15/2021,17:35,STATEN ISLAND,10304,40.617294,-74.08048,"(40.617294, -74.08048)",OSGOOD AVENUE,PARK HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458611,Sedan,,,, +09/15/2021,22:00,BRONX,10458,40.86066,-73.88945,"(40.86066, -73.88945)",,,466 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458924,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,14:00,BROOKLYN,11236,40.646145,-73.90344,"(40.646145, -73.90344)",ROCKAWAY PARKWAY,SMITHS LANE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4457617,Sedan,,,, +09/15/2021,13:24,MANHATTAN,10007,40.71604,-74.010414,"(40.71604, -74.010414)",,,160 CHAMBERS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457816,Sedan,,,, +09/16/2021,22:16,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,CENTRE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458560,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,16:50,,,40.61156,-73.98382,"(40.61156, -73.98382)",BAY RIDGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458650,Station Wagon/Sport Utility Vehicle,Bus,,, +08/20/2021,17:54,BRONX,10473,40.827232,-73.84365,"(40.827232, -73.84365)",,,945 ZEREGA AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458064,Bike,,,, +09/15/2021,15:07,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457853,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/17/2021,5:40,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458049,Sedan,,,, +09/16/2021,5:41,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458217,Sedan,Sedan,,, +09/15/2021,16:27,BROOKLYN,11215,40.666718,-73.97769,"(40.666718, -73.97769)",,,555 7 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457644,Sedan,PK,,, +09/12/2021,18:05,BROOKLYN,11215,40.661137,-73.99006,"(40.661137, -73.99006)",6 AVENUE,19 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458470,Sedan,Sedan,,, +09/17/2021,7:35,STATEN ISLAND,10305,40.612022,-74.070885,"(40.612022, -74.070885)",,,570 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458618,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,20:20,BRONX,10475,,,,,,100 BAYCHESTER AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4458016,Pick-up Truck,Sedan,,, +09/17/2021,22:35,MANHATTAN,10010,40.741547,-73.98958,"(40.741547, -73.98958)",EAST 23 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458864,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,4:30,,,40.845253,-73.90935,"(40.845253, -73.90935)",CROSS BRONX EXPRESSWAY,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415022,Sedan,Sedan,,, +09/17/2021,16:02,MANHATTAN,10032,40.839867,-73.93692,"(40.839867, -73.93692)",WEST 168 STREET,AMSTERDAM AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458813,Sedan,,,, +09/13/2021,10:00,,,40.57515,-73.98558,"(40.57515, -73.98558)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458535,Sedan,,,, +09/14/2021,17:33,BROOKLYN,11233,40.683773,-73.91323,"(40.683773, -73.91323)",,,745 DECATUR STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458681,Station Wagon/Sport Utility Vehicle,Minibike,,, +09/14/2021,10:20,MANHATTAN,10013,40.71574,-74.00169,"(40.71574, -74.00169)",LEONARD STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458587,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,17:48,BRONX,10465,40.81637,-73.83897,"(40.81637, -73.83897)",SCHLEY AVENUE,BRUSH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459000,Sedan,Sedan,,, +09/15/2021,20:01,BROOKLYN,11212,40.660156,-73.917534,"(40.660156, -73.917534)",,,325 EAST 98 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457973,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,13:02,BRONX,10455,40.81676,-73.917465,"(40.81676, -73.917465)",EAST 150 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457921,Sedan,Sedan,,, +09/16/2021,16:57,,,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS HILLS STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4458742,Bike,,,, +09/16/2021,22:10,,,40.707813,-73.91923,"(40.707813, -73.91923)",CYPRESS AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4458032,Motorcycle,Sedan,,, +09/15/2021,11:30,BROOKLYN,11208,40.680576,-73.87885,"(40.680576, -73.87885)",,,225 NORWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457492,Sedan,,,, +09/15/2021,11:15,BRONX,10466,40.885178,-73.85746,"(40.885178, -73.85746)",,,824 EAST 223 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457517,Sedan,Sedan,,, +08/27/2021,9:04,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4458284,Tractor Truck Diesel,,,, +09/15/2021,13:17,,,40.844578,-73.902695,"(40.844578, -73.902695)",CROSS BRONX EXPRESSWAY,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457732,Sedan,Box Truck,,, +09/15/2021,11:50,,,,,,BAY 7 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458669,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,18:40,BROOKLYN,11234,40.618847,-73.92869,"(40.618847, -73.92869)",,,4801 AVENUE N,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,0:45,BRONX,10466,40.884777,-73.85877,"(40.884777, -73.85877)",EAST 222 STREET,BARNES AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4458075,Sedan,Sedan,,, +09/16/2021,15:40,,,40.68553,-73.95656,"(40.68553, -73.95656)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4457964,Sedan,,,, +09/15/2021,8:25,BROOKLYN,11210,40.617104,-73.946075,"(40.617104, -73.946075)",AVENUE N,EAST 29 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457598,Station Wagon/Sport Utility Vehicle,Bike,,, +09/15/2021,9:30,BRONX,10470,40.895466,-73.87713,"(40.895466, -73.87713)",EAST 233 STREET,VANCORTLANDT PARK EAST,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing Too Closely,,,,4458107,Box Truck,Sedan,,, +09/15/2021,15:51,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457801,Sedan,Sedan,,, +09/14/2021,22:05,,,40.655872,-73.9564,"(40.655872, -73.9564)",PARKSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458090,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,11:45,,,40.862064,-73.89484,"(40.862064, -73.89484)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458326,Sedan,Sedan,,, +09/15/2021,5:25,BRONX,10469,40.876072,-73.85414,"(40.876072, -73.85414)",,,1102 EAST 213 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458112,Sedan,Sedan,,, +09/16/2021,8:00,MANHATTAN,10002,40.714745,-73.98261,"(40.714745, -73.98261)",,,500 GRAND STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457939,Sedan,E-Scooter,,, +04/28/2021,9:36,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411405,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,14:11,,,40.610996,-74.176605,"(40.610996, -74.176605)",,,1200 SOUTH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4458603,Sedan,,,, +09/15/2021,7:00,,,40.623768,-74.01996,"(40.623768, -74.01996)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457446,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,13:05,BRONX,10454,40.80565,-73.92062,"(40.80565, -73.92062)",BROOK AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,Unspecified,Unspecified,,4457696,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/15/2021,17:46,MANHATTAN,10026,40.79968,-73.95586,"(40.79968, -73.95586)",,,207 CENTRAL PARK NORTH,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4457743,Sedan,E-Scooter,,, +09/10/2021,14:30,BROOKLYN,11219,40.635582,-73.99155,"(40.635582, -73.99155)",13 AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458659,Taxi,Carry All,,, +09/17/2021,19:00,BROOKLYN,11207,40.654793,-73.88999,"(40.654793, -73.88999)",WORTMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458497,Sedan,,,, +09/15/2021,12:06,,,40.767963,-73.91169,"(40.767963, -73.91169)",STEINWAY STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457507,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,17:30,QUEENS,11427,40.73749,-73.73861,"(40.73749, -73.73861)",233 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4457630,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/15/2021,18:01,QUEENS,11411,40.688934,-73.73225,"(40.688934, -73.73225)",231 STREET,119 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458883,Sedan,Sedan,,, +09/16/2021,18:42,,,,,,MOSHOLU PARKWAY,BRONX RIVER PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458150,Sedan,Bike,,, +09/15/2021,16:15,BRONX,10474,40.816574,-73.88908,"(40.816574, -73.88908)",LAFAYETTE AVENUE,MANIDA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457877,Sedan,Sedan,,, +09/09/2021,14:49,QUEENS,11385,40.70237,-73.89055,"(40.70237, -73.89055)",,,65-02 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458725,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,15:45,,,40.692844,-73.770805,"(40.692844, -73.770805)",178 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4458249,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,12:20,,,40.70163,-73.989685,"(40.70163, -73.989685)",YORK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458167,Sedan,Box Truck,,, +09/16/2021,8:01,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457912,E-Scooter,Sedan,,, +09/15/2021,14:20,,,40.661312,-73.849106,"(40.661312, -73.849106)",84 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,23:45,BROOKLYN,11207,40.67677,-73.88949,"(40.67677, -73.88949)",ATLANTIC AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458044,Sedan,Sedan,,, +09/15/2021,12:30,BROOKLYN,11201,40.698357,-73.99631,"(40.698357, -73.99631)",COLUMBIA HEIGHTS,CLARK STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457588,Sedan,Sedan,,, +09/14/2021,15:10,,,40.58502,-74.14763,"(40.58502, -74.14763)",FOREST HILL ROAD,TRAVIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458318,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/16/2021,13:10,BRONX,10467,40.877533,-73.86693,"(40.877533, -73.86693)",,,697 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4458773,Sedan,,,, +09/10/2021,11:38,QUEENS,11385,40.70276,-73.856865,"(40.70276, -73.856865)",,,88-52 MYRTLE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4458730,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,7:00,,,40.631203,-74.15809,"(40.631203, -74.15809)",,,218 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458118,Sedan,,,, +09/15/2021,13:45,,,40.74498,-73.89325,"(40.74498, -73.89325)",41 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457638,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,8:03,MANHATTAN,10021,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,EAST 76 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458010,Sedan,Van,,, +09/14/2021,15:40,MANHATTAN,10010,40.74209,-73.984985,"(40.74209, -73.984985)",EAST 26 STREET,PARK AVENUE SOUTH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4458373,Sedan,Bike,,, +09/16/2021,21:19,BROOKLYN,11205,,,,,,240 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458266,Sedan,,,, +09/16/2021,12:30,BROOKLYN,11211,40.708965,-73.95673,"(40.708965, -73.95673)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458205,Sedan,,,, +12/08/2021,21:15,QUEENS,11428,40.717308,-73.73985,"(40.717308, -73.73985)",215 PLACE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487026,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,19:10,BROOKLYN,11213,40.673996,-73.92785,"(40.673996, -73.92785)",SAINT MARKS AVENUE,ROCHESTER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458689,Sedan,Bike,,, +09/03/2021,11:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4458803,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +09/16/2021,11:41,BROOKLYN,11233,40.675346,-73.92198,"(40.675346, -73.92198)",DEAN STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458144,Sedan,Sedan,,, +09/17/2021,16:00,QUEENS,11365,40.738716,-73.78204,"(40.738716, -73.78204)",,,64-02 192 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4458176,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,20:03,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458554,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,12:00,QUEENS,11435,,,,,,88-83 Van Wyck Expressway,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4458399,Stake or Rack,Sedan,,, +09/17/2021,8:50,BROOKLYN,11209,40.622,-74.03461,"(40.622, -74.03461)",89 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458234,Pick-up Truck,,,, +09/17/2021,15:56,BROOKLYN,11236,40.64031,-73.90984,"(40.64031, -73.90984)",GLENWOOD ROAD,EAST 87 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4458455,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,13:37,MANHATTAN,10030,,,,,,2453 7 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458139,Sedan,Bike,,, +09/07/2021,0:25,,,40.677353,-73.94424,"(40.677353, -73.94424)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458711,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,0:03,BROOKLYN,11220,40.6366,-74.0068,"(40.6366, -74.0068)",,,843 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458003,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,12:45,BROOKLYN,11231,40.677864,-73.99808,"(40.677864, -73.99808)",COURT STREET,4 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,12:34,BROOKLYN,11233,40.67679,-73.91904,"(40.67679, -73.91904)",,,2066 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4457864,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,22:25,BROOKLYN,11230,40.625175,-73.9614,"(40.625175, -73.9614)",EAST 15 STREET,AVENUE J,,1,0,1,0,0,0,0,0,,,,,,4458202,,,,, +09/16/2021,15:00,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458530,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,15:30,MANHATTAN,10031,40.828297,-73.95087,"(40.828297, -73.95087)",RIVERSIDE DRIVE,WEST 147 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458261,Moped,Bike,,, +09/11/2021,15:08,,,40.77132,-73.98589,"(40.77132, -73.98589)",WEST 61 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4458429,Sedan,,,, +09/13/2021,13:00,BROOKLYN,11201,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4458768,Box Truck,,,, +09/16/2021,20:10,BROOKLYN,11206,40.707752,-73.94666,"(40.707752, -73.94666)",MESEROLE STREET,LEONARD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457994,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,20:13,BROOKLYN,11235,40.590065,-73.958664,"(40.590065, -73.958664)",,,2477 EAST 12 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458351,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,18:32,BRONX,10455,40.81361,-73.913345,"(40.81361, -73.913345)",SAINT ANNS AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,0:00,BRONX,10456,40.833664,-73.902504,"(40.833664, -73.902504)",,,1363 FULTON AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4457725,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,17:55,QUEENS,11106,40.757378,-73.92691,"(40.757378, -73.92691)",35 AVENUE,33 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4458307,Sedan,Sedan,,, +09/17/2021,14:30,,,40.67657,-73.9008,"(40.67657, -73.9008)",EAST NEW YORK AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458488,Sedan,Sedan,,, +09/15/2021,13:55,QUEENS,11369,40.768127,-73.87625,"(40.768127, -73.87625)",23 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458086,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,8:45,BROOKLYN,11237,40.702236,-73.92715,"(40.702236, -73.92715)",,,221 TROUTMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457369,Sedan,Box Truck,,, +09/15/2021,8:25,MANHATTAN,10035,40.79989,-73.93859,"(40.79989, -73.93859)",3 AVENUE,EAST 119 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4457792,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,5:20,MANHATTAN,10128,40.784878,-73.955894,"(40.784878, -73.955894)",,,1300 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458071,Sedan,,,, +09/15/2021,10:14,QUEENS,11435,40.698406,-73.80647,"(40.698406, -73.80647)",95 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4457559,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +09/16/2021,9:50,QUEENS,11368,40.747303,-73.864975,"(40.747303, -73.864975)",,,99-37 42 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458039,Garbage or Refuse,Sedan,,, +09/16/2021,0:04,BROOKLYN,11220,40.642605,-74.01981,"(40.642605, -74.01981)",59 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457753,Pick-up Truck,E-Bike,,, +09/17/2021,17:00,,,40.73807,-73.93756,"(40.73807, -73.93756)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458278,Sedan,Sedan,Sedan,, +09/16/2021,6:00,QUEENS,11426,40.73518,-73.71835,"(40.73518, -73.71835)",249 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457700,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/16/2021,13:21,,,,,,MALCOM X BLVD,KOSCUISZKO,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458760,Sedan,,,, +09/15/2021,15:39,QUEENS,11105,40.77209,-73.90965,"(40.77209, -73.90965)",37 STREET,23 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458302,Motorcycle,,,, +09/17/2021,0:00,BROOKLYN,11201,40.69278,-73.98895,"(40.69278, -73.98895)",,,333 ADAMS STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458595,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,15:00,BRONX,10466,40.8932,-73.85919,"(40.8932, -73.85919)",,,658 EAST 232 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458103,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,18:46,,,40.6535,-73.91452,"(40.6535, -73.91452)",AVENUE A,,,1,0,1,0,0,0,0,0,,,,,,4458182,Sedan,,,, +09/13/2021,7:00,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4458736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,17:00,QUEENS,11412,40.700844,-73.76442,"(40.700844, -73.76442)",KEESEVILLE AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457658,Sedan,Pick-up Truck,,, +09/15/2021,1:24,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4458009,Sedan,Sedan,,, +09/17/2021,8:44,BRONX,10465,,,,,,4147 THROGS NECK EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458154,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,12:30,QUEENS,11354,40.77194,-73.8465,"(40.77194, -73.8465)",122 STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4457917,Tractor Truck Diesel,,,, +09/11/2021,12:52,,,40.676292,-73.92484,"(40.676292, -73.92484)",PACIFIC STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458792,Bike,Sedan,,, +09/15/2021,17:14,BROOKLYN,11203,40.656162,-73.93087,"(40.656162, -73.93087)",,,702 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4458171,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,23:37,,,40.743214,-73.95135,"(40.743214, -73.95135)",PULASKI BRIDGE,JACKSON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457682,E-Bike,,,, +09/15/2021,16:00,STATEN ISLAND,10301,40.635563,-74.07725,"(40.635563, -74.07725)",,,65 HANNAH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457866,Sedan,,,, +09/16/2021,23:29,MANHATTAN,10033,40.845036,-73.935036,"(40.845036, -73.935036)",,,201 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,14:34,BRONX,10459,40.82474,-73.899536,"(40.82474, -73.899536)",,,1041 PROSPECT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,12:08,MANHATTAN,10128,40.780506,-73.94425,"(40.780506, -73.94425)",FDR DRIVE,EAST 93 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4487909,Sedan,Sedan,,, +09/16/2021,22:00,BROOKLYN,11209,40.612392,-74.03274,"(40.612392, -74.03274)",,,451 100 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458237,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,14:00,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,5:50,MANHATTAN,10001,40.753998,-73.99775,"(40.753998, -73.99775)",,,433 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457802,Motorcycle,Pick-up Truck,,, +09/14/2021,17:25,BROOKLYN,11222,40.730316,-73.95288,"(40.730316, -73.95288)",,,188 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458220,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,14:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458382,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,14:25,BROOKLYN,11221,40.68866,-73.922905,"(40.68866, -73.922905)",,,833 MONROE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458828,Sedan,,,, +09/17/2021,4:00,BRONX,10455,40.811584,-73.90868,"(40.811584, -73.90868)",CONCORD AVENUE,EAST 147 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458408,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +09/17/2021,14:17,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458159,Bus,REFG,,, +09/17/2021,19:10,BRONX,10468,40.859306,-73.89885,"(40.859306, -73.89885)",EAST 184 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458341,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/17/2021,10:26,QUEENS,11419,40.689445,-73.808716,"(40.689445, -73.808716)",106 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458209,Sedan,Sedan,,, +09/17/2021,22:27,BRONX,10467,40.86381,-73.864716,"(40.86381, -73.864716)",,,2527 BOSTON ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458334,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,22:10,BROOKLYN,11226,40.639927,-73.94939,"(40.639927, -73.94939)",EAST 29 STREET,NEWKIRK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458172,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,18:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458275,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,12:00,QUEENS,11432,40.707962,-73.78323,"(40.707962, -73.78323)",,,178-01 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458395,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/17/2021,15:30,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4458230,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,18:30,BROOKLYN,11239,40.65289,-73.866745,"(40.65289, -73.866745)",GATEWAY DRIVE,ERSKINE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457835,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,11:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4458444,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,15:27,QUEENS,11101,40.7495,-73.94667,"(40.7495, -73.94667)",21 STREET,44 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457636,Station Wagon/Sport Utility Vehicle,Moped,,, +09/05/2021,0:01,QUEENS,11103,40.75739,-73.91697,"(40.75739, -73.91697)",,,32-77 43 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458315,Convertible,,,, +09/13/2021,12:32,,,40.674313,-73.95009,"(40.674313, -73.95009)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458705,Sedan,,,, +09/16/2021,11:00,BRONX,10467,40.879307,-73.859825,"(40.879307, -73.859825)",,,861 EAST 215 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458076,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,11:52,,,40.692772,-73.92782,"(40.692772, -73.92782)",KOSSUTH PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458347,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/07/2021,15:00,BROOKLYN,11201,40.701233,-73.99346,"(40.701233, -73.99346)",POPLAR STREET,WILLOW STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458439,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,11:00,BROOKLYN,11211,40.708424,-73.95791,"(40.708424, -73.95791)",BROADWAY,MARCY AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,,,,4458198,Sedan,Sedan,,, +12/18/2021,12:09,,,40.76635,-73.89093,"(40.76635, -73.89093)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487371,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,17:50,BROOKLYN,11229,40.60718,-73.94514,"(40.60718, -73.94514)",EAST 28 STREET,AVENUE R,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4458357,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +09/16/2021,20:34,,,40.80174,-73.96477,"(40.80174, -73.96477)",AMSTERDAM AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Backing Unsafely,,,,4458140,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,6:55,QUEENS,11368,40.752026,-73.86909,"(40.752026, -73.86909)",37 AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457760,Lift Boom,Tractor Truck Diesel,,, +09/13/2021,16:00,MANHATTAN,10009,40.72369,-73.97604,"(40.72369, -73.97604)",AVENUE D,EAST 8 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4458868,Bike,,,, +09/17/2021,15:42,,,40.645344,-73.87897,"(40.645344, -73.87897)",PENNSYLVANIA AVENUE,HORNELL LOOP,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458482,Station Wagon/Sport Utility Vehicle,Van,,, +09/15/2021,6:10,,,40.698536,-73.91788,"(40.698536, -73.91788)",KNICKERBOCKER AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4457393,Sedan,Sedan,,, +09/15/2021,13:48,BROOKLYN,11238,40.6861,-73.96539,"(40.6861, -73.96539)",,,409 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457687,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,21:34,BROOKLYN,11206,40.706863,-73.94021,"(40.706863, -73.94021)",,,222 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458252,Sedan,Sedan,,, +09/15/2021,10:00,QUEENS,11434,40.67267,-73.77738,"(40.67267, -73.77738)",160 STREET,134 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4457524,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:56,,,40.866047,-73.87207,"(40.866047, -73.87207)",SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411546,Sedan,,,, +09/15/2021,14:30,,,40.818085,-73.96048,"(40.818085, -73.96048)",12 AVENUE,WEST 125 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4458590,Sedan,Sedan,,, +09/17/2021,0:30,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458054,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,22:30,BROOKLYN,11236,,,,SEAVIEW AVENUE,CANARSIE ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4458186,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/15/2021,18:34,QUEENS,11355,40.7609,-73.81314,"(40.7609, -73.81314)",150 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,16:39,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4457693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,17:20,QUEENS,11358,40.749973,-73.80541,"(40.749973, -73.80541)",OAK AVENUE,162 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457602,Box Truck,,,, +09/15/2021,18:20,BROOKLYN,11211,40.712955,-73.9365,"(40.712955, -73.9365)",,,950 GRAND STREET,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457686,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,21:38,,,40.71328,-73.83311,"(40.71328, -73.83311)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458026,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,20:54,MANHATTAN,10014,40.733887,-74.0054,"(40.733887, -74.0054)",,,233 WEST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457890,Sedan,,,, +09/15/2021,16:16,QUEENS,11434,40.68114,-73.7812,"(40.68114, -73.7812)",BREWER BOULEVARD,119 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457654,Sedan,Motorcycle,,, +09/16/2021,12:48,BROOKLYN,11236,40.631092,-73.89835,"(40.631092, -73.89835)",AVENUE N,EAST 88 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4457902,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,16:55,STATEN ISLAND,10304,40.61653,-74.08699,"(40.61653, -74.08699)",VANDUZER STREET,METCALFE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458609,Station Wagon/Sport Utility Vehicle,Bus,,, +09/15/2021,1:10,BROOKLYN,11209,40.62938,-74.025665,"(40.62938, -74.025665)",77 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457312,AMBULANCE,Sedan,,, +09/17/2021,23:11,BRONX,10460,,,,EAST 180 STREET,BOSTON ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4458953,Sedan,E-Scooter,,, +09/16/2021,10:59,,,,,,EAST HOUSTON STREET,,,2,0,0,0,2,0,0,0,Following Too Closely,Passing Too Closely,,,,4457928,Bike,Bike,,, +09/17/2021,21:15,BRONX,10461,40.84636,-73.84463,"(40.84636, -73.84463)",EASTCHESTER ROAD,WATERS PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4458330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,23:45,QUEENS,11368,40.752052,-73.85423,"(40.752052, -73.85423)",,,112-26 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458043,Sedan,,,, +09/17/2021,17:00,BROOKLYN,11249,40.72339,-73.95628,"(40.72339, -73.95628)",WYTHE AVENUE,NORTH 14 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458629,Sedan,,,, +09/16/2021,0:40,QUEENS,11368,40.75511,-73.871895,"(40.75511, -73.871895)",96 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4457822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/17/2021,16:10,BROOKLYN,11206,40.702675,-73.93396,"(40.702675, -73.93396)",FLUSHING AVENUE,EVERGREEN AVENUE,,2,0,0,0,0,0,2,0,Oversized Vehicle,Unspecified,,,,4458191,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,23:50,BROOKLYN,11234,40.62123,-73.93987,"(40.62123, -73.93987)",,,3601 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457985,Sedan,,,, +09/17/2021,14:00,MANHATTAN,10021,40.767532,-73.953255,"(40.767532, -73.953255)",YORK AVENUE,EAST 73 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458919,Sedan,Bike,,, +09/17/2021,11:35,BROOKLYN,11211,40.715614,-73.94796,"(40.715614, -73.94796)",LEONARD STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458224,Sedan,Sedan,,, +09/17/2021,17:36,BROOKLYN,11236,,,,,,10401 FOSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458361,Sedan,Van,,, +09/16/2021,16:30,BRONX,10468,40.86304,-73.89856,"(40.86304, -73.89856)",,,58 EAST 190 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458564,Sedan,Box Truck,,, +09/16/2021,14:50,BROOKLYN,11225,40.655956,-73.95996,"(40.655956, -73.95996)",,,712 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458081,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,14:20,QUEENS,11004,,,,,,82-32 261 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458241,Ambulance,Sedan,,, +09/17/2021,10:30,MANHATTAN,10007,40.71465,-74.00994,"(40.71465, -74.00994)",,,66 WEST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458389,Box Truck,Pick-up Truck,,, +09/17/2021,9:25,BROOKLYN,11226,,,,,,111 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458213,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +09/11/2021,13:00,QUEENS,11412,40.6982,-73.7688,"(40.6982, -73.7688)",JORDAN AVENUE,WOOD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459004,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,15:05,MANHATTAN,10013,40.71755,-73.99932,"(40.71755, -73.99932)",CANAL STREET,BAXTER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458573,Sedan,,,, +09/16/2021,21:00,STATEN ISLAND,10304,40.633953,-74.085754,"(40.633953, -74.085754)",VICTORY BOULEVARD,CEBRA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458612,Sedan,,,, +09/17/2021,20:36,BROOKLYN,11231,40.68147,-73.99797,"(40.68147, -73.99797)",,,199 CARROLL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,15:10,BRONX,10474,40.816914,-73.88631,"(40.816914, -73.88631)",,,1315 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458370,Sedan,,,, +09/15/2021,0:00,BROOKLYN,11207,40.6818,-73.88978,"(40.6818, -73.88978)",JAMAICA AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458479,Van,Motorcycle,,, +09/14/2021,20:33,,,40.865353,-73.89494,"(40.865353, -73.89494)",,,GRAND CONCOURSE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458797,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,14:55,,,40.844116,-73.89857,"(40.844116, -73.89857)",CROSS BRONX EXPRESSWAY,BATHGATE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458926,Sedan,Bike,,, +09/17/2021,20:55,QUEENS,11385,40.709743,-73.907745,"(40.709743, -73.907745)",GRANDVIEW AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458851,Sedan,Sedan,,, +09/16/2021,20:14,BROOKLYN,11206,40.697903,-73.9468,"(40.697903, -73.9468)",TOMPKINS AVENUE,PARK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4457965,Sedan,Sedan,,, +09/13/2021,3:30,BRONX,10461,40.84706,-73.84908,"(40.84706, -73.84908)",WILLIAMSBRIDGE ROAD,PIERCE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4458095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,19:30,BROOKLYN,11223,40.58412,-73.98187,"(40.58412, -73.98187)",,,2632 WEST 13 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458543,Sedan,,,, +09/14/2021,13:00,,,40.5794,-74.16949,"(40.5794, -74.16949)",RICHMOND AVENUE,PLATINUM AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4458310,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,22:20,BRONX,10469,40.874584,-73.8502,"(40.874584, -73.8502)",,,3360 WILSON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458108,Sedan,,,, +09/17/2021,12:15,BROOKLYN,11206,40.70321,-73.94626,"(40.70321, -73.94626)",BROADWAY,MOORE STREET,,1,0,0,0,0,0,1,0,Illnes,Driver Inattention/Distraction,,,,4458196,Sedan,Sedan,,, +09/17/2021,7:00,QUEENS,11436,40.67253,-73.798386,"(40.67253, -73.798386)",142 STREET,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4458113,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/10/2021,10:50,STATEN ISLAND,10309,,,,,,206 WESTFIELD AVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458678,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,15:26,BROOKLYN,11221,40.693447,-73.917015,"(40.693447, -73.917015)",CENTRAL AVENUE,PALMETTO STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457746,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,0:00,BRONX,10472,,,,,,1865 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Driver Inattention/Distraction,,,,4457506,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,12:00,QUEENS,11101,40.74629,-73.93327,"(40.74629, -73.93327)",SKILLMAN AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457508,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,15:00,,,40.76025,-73.96753,"(40.76025, -73.96753)",3 AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Turning Improperly,,,,4457926,Sedan,Bike,,, +09/15/2021,13:25,QUEENS,11356,,,,11 AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457531,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,1:40,QUEENS,11385,40.693123,-73.8941,"(40.693123, -73.8941)",,,80-56 59 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,18:30,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457734,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,7:00,BROOKLYN,11223,40.59011,-73.97422,"(40.59011, -73.97422)",SHELL ROAD,AVENUE X,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458534,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,19:37,BROOKLYN,11234,,,,FLATLANDS AVENUE,EAST 46 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4457943,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,14:42,,,40.692844,-73.99311,"(40.692844, -73.99311)",JORALEMON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457587,Sedan,Sedan,,, +09/10/2021,9:00,,,40.82682,-73.94154,"(40.82682, -73.94154)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458256,Sedan,,,, +09/15/2021,21:00,,,40.58743,-74.16019,"(40.58743, -74.16019)",,,292 NOME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457768,Sedan,,,, +09/16/2021,6:42,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458412,Sedan,,,, +09/16/2021,16:35,,,40.698452,-73.92176,"(40.698452, -73.92176)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457963,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,4:37,BROOKLYN,11233,40.678116,-73.90787,"(40.678116, -73.90787)",EASTERN PARKWAY,FULTON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457427,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,14:10,,,,,,SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458127,Sedan,Sedan,,, +09/15/2021,15:13,BROOKLYN,11215,40.669754,-73.98923,"(40.669754, -73.98923)",4 AVENUE,10 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4457714,Bike,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,9:00,,,40.700592,-73.85457,"(40.700592, -73.85457)",FOREST PARK DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458058,Sedan,,,, +09/17/2021,21:07,BROOKLYN,11234,40.63747,-73.91918,"(40.63747, -73.91918)",RALPH AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458508,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,10:45,BROOKLYN,11201,40.694813,-73.98328,"(40.694813, -73.98328)",GOLD STREET,JOHNSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458289,Sedan,,,, +09/17/2021,17:50,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458267,Taxi,Box Truck,,, +09/16/2021,13:08,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458668,Sedan,,,, +09/17/2021,8:48,,,40.77005,-73.76129,"(40.77005, -73.76129)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458245,Sedan,,,, +09/17/2021,23:00,BROOKLYN,11233,40.68372,-73.92016,"(40.68372, -73.92016)",HOWARD AVENUE,MACDONOUGH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458838,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,0:08,,,40.626392,-74.13334,"(40.626392, -74.13334)",FOREST AVENUE,HAMLIN PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4457764,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,8:40,BRONX,10469,40.869724,-73.838684,"(40.869724, -73.838684)",,,2953 GUNTHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458106,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,20:30,BROOKLYN,11225,40.669945,-73.95219,"(40.669945, -73.95219)",,,486 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4487559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,22:43,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4457799,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,7:00,,,40.743195,-73.93673,"(40.743195, -73.93673)",30 PLACE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4458085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,0:00,BROOKLYN,11207,40.664574,-73.89527,"(40.664574, -73.89527)",,,595 LIVONIA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4458505,Sedan,,,, +09/15/2021,8:30,BRONX,10460,40.833447,-73.887955,"(40.833447, -73.887955)",VYSE AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,0:00,QUEENS,11354,40.765137,-73.81944,"(40.765137, -73.81944)",NORTHERN BOULEVARD,147 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457530,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,0:25,,,40.677048,-73.9387,"(40.677048, -73.9387)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4458712,Sedan,Sedan,,, +09/10/2021,21:30,MANHATTAN,10012,40.724827,-73.99459,"(40.724827, -73.99459)",,,47 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458572,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,8:39,,,40.615562,-73.979645,"(40.615562, -73.979645)",BAY PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4457953,Bus,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,18:10,BRONX,10451,40.827244,-73.92406,"(40.827244, -73.92406)",EAST 161 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458531,Sedan,,,, +09/13/2021,17:18,,,40.877296,-73.85212,"(40.877296, -73.85212)",HICKS STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4458769,Sedan,Sedan,,, +09/13/2021,20:25,BROOKLYN,11233,40.675545,-73.91101,"(40.675545, -73.91101)",ROCKAWAY AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458682,Sedan,,,, +09/08/2021,15:10,,,40.82309,-73.956345,"(40.82309, -73.956345)",12 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458260,Sedan,Open Body,,, +09/11/2021,6:39,BROOKLYN,11238,40.686863,-73.96448,"(40.686863, -73.96448)",GREENE AVENUE,SAINT JAMES PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/17/2021,13:00,,,40.82398,-73.946724,"(40.82398, -73.946724)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458262,Sedan,,,, +09/15/2021,22:52,,,40.67151,-73.76455,"(40.67151, -73.76455)",140 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457958,Sedan,,,, +05/14/2021,9:23,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",JEROME AVENUE,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416456,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,5:05,QUEENS,11692,40.590164,-73.79787,"(40.590164, -73.79787)",BEACH 69 STREET,ROCKAWAY BEACH BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4457574,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,17:00,,,,,,HILLSIDE AVENUE,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457673,Sedan,Sedan,,, +09/16/2021,18:20,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457945,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,10:00,MANHATTAN,10038,40.711697,-74.00582,"(40.711697, -74.00582)",,,150 NASSAU STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457821,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +09/13/2021,6:50,,,,,,WEST 155 STREET,HARLEM RIV PARK BRIDGE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458228,Sedan,Sedan,,, +09/16/2021,16:36,QUEENS,11354,40.769684,-73.82165,"(40.769684, -73.82165)",146 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457920,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,12:56,BROOKLYN,11208,40.663353,-73.87464,"(40.663353, -73.87464)",,,941 STANLEY AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457490,Sedan,Pick-up Truck,,, +09/15/2021,12:30,BRONX,10452,40.82857,-73.9246,"(40.82857, -73.9246)",,,70 EAST 162 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458096,Sedan,,,, +09/14/2021,9:00,,,40.85315,-73.90561,"(40.85315, -73.90561)",EAST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458340,Bus,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,8:08,BROOKLYN,11226,40.650414,-73.95798,"(40.650414, -73.95798)",,,2230 CHURCH AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457599,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/16/2021,19:44,QUEENS,11103,40.76968,-73.9162,"(40.76968, -73.9162)",,,33-10 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4458074,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,8:25,BROOKLYN,11207,40.662563,-73.89146,"(40.662563, -73.89146)",NEW LOTS AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457384,Sedan,Sedan,Sedan,, +09/14/2021,21:00,MANHATTAN,10033,40.844246,-73.93372,"(40.844246, -73.93372)",AMSTERDAM AVENUE,WEST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458128,Sedan,Sedan,,, +09/16/2021,11:10,BRONX,10458,,,,EAST 189 STREET,CAMBRELENG AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4458948,Sedan,Sedan,,, +08/21/2021,12:00,BRONX,10460,40.840042,-73.863945,"(40.840042, -73.863945)",WHITE PLAINS ROAD,GUERLAIN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458065,Taxi,Bike,,, +09/15/2021,11:40,BROOKLYN,11236,,,,,,7913 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457560,Dump,Sedan,,, +09/17/2021,15:50,,,,,,PARKSIDE AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458255,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,0:50,,,40.820568,-73.959305,"(40.820568, -73.959305)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4457990,Sedan,Sedan,Sedan,, +09/17/2021,11:00,QUEENS,11357,40.788246,-73.81901,"(40.788246, -73.81901)",,,13-22 147 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458303,WORK VAN,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,7:00,,,,,,70 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458602,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,20:10,MANHATTAN,10029,40.792187,-73.9382,"(40.792187, -73.9382)",1 AVENUE,EAST 110 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Following Too Closely,,,,4457703,Sedan,Sedan,,, +09/14/2021,17:35,MANHATTAN,10032,40.83037,-73.94015,"(40.83037, -73.94015)",SAINT NICHOLAS PLACE,WEST 155 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4458467,Bike,,,, +09/01/2021,15:10,BROOKLYN,11226,40.655117,-73.95501,"(40.655117, -73.95501)",,,140 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4458181,Sedan,Bus,,, +11/26/2021,8:59,BROOKLYN,11203,40.652714,-73.93048,"(40.652714, -73.93048)",,,837 UTICA AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4485299,Box Truck,Station Wagon/Sport Utility Vehicle,Dump,, +09/15/2021,9:39,BROOKLYN,11212,40.65818,-73.92465,"(40.65818, -73.92465)",CLARKSON AVENUE,EAST 91 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,13:20,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Oversized Vehicle,,,,4458149,Sedan,TRK,,, +09/16/2021,17:30,QUEENS,11368,40.755997,-73.8634,"(40.755997, -73.8634)",34 AVENUE,105 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4458017,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/15/2021,15:00,QUEENS,11421,40.695827,-73.855385,"(40.695827, -73.855385)",85 ROAD,90 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4457889,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +09/10/2021,12:30,BROOKLYN,11215,40.673073,-73.97645,"(40.673073, -73.97645)",,,130 7 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458909,Tractor Truck Diesel,Sedan,,, +09/12/2021,0:00,,,40.603607,-74.01763,"(40.603607, -74.01763)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,8:51,QUEENS,11420,40.666862,-73.8045,"(40.666862, -73.8045)",NORTH CONDUIT AVENUE,134 PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457771,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,12:05,MANHATTAN,10035,40.80352,-73.93302,"(40.80352, -73.93302)",,,2460 2 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4458442,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,1:50,BRONX,10458,40.857525,-73.892654,"(40.857525, -73.892654)",,,4646 PARK AVENUE,1,0,1,0,0,0,0,0,,,,,,4487972,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,12:50,,,40.6904,-73.92365,"(40.6904, -73.92365)",BROADWAY,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458033,E-Scooter,Sedan,,, +09/17/2021,11:00,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,0:15,BROOKLYN,11236,40.633858,-73.911446,"(40.633858, -73.911446)",AVENUE J,EAST 80 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457618,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,12:00,BRONX,10457,40.8553,-73.901306,"(40.8553, -73.901306)",ANTHONY AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4457731,Sedan,Box Truck,,, +06/28/2021,13:37,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4458386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,20:30,MANHATTAN,10002,40.717922,-73.9931,"(40.717922, -73.9931)",GRAND STREET,FORSYTH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458563,Sedan,,,, +09/16/2021,16:00,QUEENS,11355,40.759686,-73.821175,"(40.759686, -73.821175)",PARSONS BOULEVARD,BARCLAY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458296,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,13:25,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457791,Sedan,,,, +09/14/2021,19:40,BROOKLYN,11221,40.687485,-73.91993,"(40.687485, -73.91993)",,,1054 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458827,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,7:50,BROOKLYN,11213,40.663692,-73.93595,"(40.663692, -73.93595)",,,791 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458089,Bus,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,17:47,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4457759,Sedan,Sedan,,, +09/16/2021,12:20,,,,,,FORT WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458691,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,19:53,BROOKLYN,11233,40.67069,-73.91703,"(40.67069, -73.91703)",SARATOGA AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Traffic Control Device Improper/Non-Working,,,,4457664,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,10:17,QUEENS,11433,40.701694,-73.78984,"(40.701694, -73.78984)",,,168-10 104 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4458398,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,4:05,BRONX,10459,40.822285,-73.89174,"(40.822285, -73.89174)",,,950 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457850,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,17:56,BROOKLYN,11201,40.688408,-73.98657,"(40.688408, -73.98657)",HOYT STREET,STATE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457938,Station Wagon/Sport Utility Vehicle,Bike,,, +09/09/2021,11:30,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4458597,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,13:00,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4458102,Sedan,,,, +09/15/2021,16:40,,,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4457612,Sedan,Sedan,,, +09/16/2021,10:10,MANHATTAN,10001,40.753716,-73.996056,"(40.753716, -73.996056)",,,440 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458514,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,9:00,MANHATTAN,10128,40.781517,-73.94598,"(40.781517, -73.94598)",,,1792 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4458060,Sedan,,,, +09/15/2021,4:50,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457878,Refrigerated Van,Tractor Truck Diesel,,, +09/16/2021,22:50,BROOKLYN,11208,40.682186,-73.86982,"(40.682186, -73.86982)",ATLANTIC AVENUE,AUTUMN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4458045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/17/2021,6:50,BROOKLYN,11236,40.642662,-73.9022,"(40.642662, -73.9022)",,,9502 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458134,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,0:37,BROOKLYN,11226,40.648533,-73.95827,"(40.648533, -73.95827)",SNYDER AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4457605,Sedan,DIRTBIKE,,, +09/17/2021,18:47,,,40.701008,-73.9424,"(40.701008, -73.9424)",GRAHAM AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458250,Sedan,Sedan,,, +09/15/2021,5:57,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,4457338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/15/2021,18:30,,,,,,FDR DRIVE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4457904,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,16:45,,,,,,7 AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458515,Sedan,E-Scooter,,, +09/16/2021,17:40,BROOKLYN,11206,,,,GERRY STREET,HARRISON AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4457996,Sedan,E-Bike,,, +09/17/2021,18:20,BROOKLYN,11237,,,,MORGAN AVENUE,STAGG STREET,,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4458192,Bike,,,, +09/10/2021,16:39,BRONX,10469,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,EASTCHESTER ROAD,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4458776,Sedan,Sedan,Sedan,, +09/15/2021,10:30,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",WYCKOFF AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4457519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,17:30,BROOKLYN,11237,40.707653,-73.921776,"(40.707653, -73.921776)",TROUTMAN STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458349,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,7:47,BROOKLYN,11236,40.641727,-73.907646,"(40.641727, -73.907646)",REMSEN AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458117,Sedan,Box Truck,,, +09/15/2021,19:57,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",70 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457639,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,0:22,QUEENS,11106,40.756256,-73.924515,"(40.756256, -73.924515)",36 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458308,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,20:10,,,40.659405,-73.9505,"(40.659405, -73.9505)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457974,Sedan,Bike,,, +09/16/2021,13:00,QUEENS,11426,40.74165,-73.716576,"(40.74165, -73.716576)",LITTLE NECK PARKWAY,81 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457935,Bus,Box Truck,,, +09/16/2021,10:30,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457830,Pick-up Truck,Sedan,,, +09/17/2021,14:13,,,,,,SHORE FRONT PARKWAY,BEACH 56 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458285,Sedan,,,, +09/17/2021,6:25,,,40.697216,-73.872955,"(40.697216, -73.872955)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458743,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,10:45,,,40.694984,-73.9977,"(40.694984, -73.9977)",MONTAGUE TERRACE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4458809,Tractor Truck Diesel,Bike,,, +09/17/2021,12:57,,,40.68916,-73.99263,"(40.68916, -73.99263)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458160,Sedan,,,, +09/17/2021,14:53,BROOKLYN,11223,40.60316,-73.98169,"(40.60316, -73.98169)",HIGHLAWN AVENUE,WEST 9 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458651,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,8:00,BRONX,10469,40.878365,-73.85893,"(40.878365, -73.85893)",EAST 214 STREET,BRONXWOOD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458070,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,2:22,BROOKLYN,11212,40.661007,-73.92911,"(40.661007, -73.92911)",,,121 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458177,Sedan,,,, +09/10/2021,15:30,QUEENS,11101,40.752403,-73.92442,"(40.752403, -73.92442)",NORTHERN BOULEVARD,39 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458327,Bike,Sedan,,, +09/16/2021,10:35,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458555,Sedan,Tractor Truck Diesel,,, +09/16/2021,22:01,BRONX,10459,40.823494,-73.89421,"(40.823494, -73.89421)",,,995 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458028,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,12:27,QUEENS,11385,,,,LINDEN STREET,60 PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4458737,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/01/2021,20:20,MANHATTAN,10036,40.76258,-74.0004,"(40.76258, -74.0004)",WEST 43 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4458050,Sedan,,,, +09/16/2021,18:02,,,40.687553,-73.980385,"(40.687553, -73.980385)",LIVINGSTON STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458235,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,18:30,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458218,Sedan,Sedan,,, +09/16/2021,14:30,BROOKLYN,11214,40.58922,-73.98672,"(40.58922, -73.98672)",HARWAY AVENUE,BAY 47 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4458660,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,20:35,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457647,Box Truck,Sedan,,, +09/17/2021,14:00,,,,,,LONG ISLAND EXPRESSWAY,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458301,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,15:26,BRONX,10455,,,,,,412 EAST 147 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458002,Sedan,Sedan,,, +09/17/2021,20:35,QUEENS,11377,40.744076,-73.900925,"(40.744076, -73.900925)",WOODSIDE AVENUE,64 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458279,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,19:20,,,40.62508,-73.962326,"(40.62508, -73.962326)",AVENUE J,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457699,Sedan,Sedan,,, +09/17/2021,16:13,,,,,,VICTORY BOULEVARD,SILVERLAKE PARK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458619,Sedan,,,, +09/15/2021,20:20,BROOKLYN,11234,40.62973,-73.922226,"(40.62973, -73.922226)",FLATLANDS AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4457836,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,13:20,BROOKLYN,11208,40.681076,-73.88111,"(40.681076, -73.88111)",FULTON STREET,HIGHLAND PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458493,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,11:45,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",111 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458314,Sedan,,,, +09/15/2021,16:59,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457629,Sedan,Sedan,,, +09/17/2021,0:34,,,40.69985,-73.991035,"(40.69985, -73.991035)",MIDDAGH STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,5:30,QUEENS,11385,40.713436,-73.91467,"(40.713436, -73.91467)",METROPOLITAN AVENUE,STARR STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458726,Taxi,Bike,,, +09/17/2021,13:10,MANHATTAN,10029,40.798622,-73.94163,"(40.798622, -73.94163)",EAST 116 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458437,Sedan,Sedan,,, +09/10/2021,0:30,QUEENS,11435,40.697258,-73.80575,"(40.697258, -73.80575)",97 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458203,Sedan,,,, +09/15/2021,15:00,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457589,Sedan,,,, +09/15/2021,15:15,,,,,,ROCKAWAY POINT BOULEVARD,BEACH 169 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4457893,Bike,E-Bike,,, +09/15/2021,11:26,,,,,,EAST 58 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457911,Taxi,Sedan,,, +09/17/2021,8:55,BROOKLYN,11233,0,0,"(0.0, 0.0)",HALSEY STREET,REID AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4458816,Sedan,Pick-up Truck,,, +09/16/2021,14:25,MANHATTAN,10036,40.760216,-73.985344,"(40.760216, -73.985344)",,,1585 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458319,Taxi,Pick-up Truck,,, +09/17/2021,14:00,,,40.798622,-73.94163,"(40.798622, -73.94163)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,6:50,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458568,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,0:00,BRONX,10460,40.837166,-73.88718,"(40.837166, -73.88718)",,,932 EAST 174 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458965,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,22:15,,,40.775604,-73.81279,"(40.775604, -73.81279)",25 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4458379,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,20:40,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",BOSTON ROAD,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457724,Sedan,,,, +09/15/2021,19:08,STATEN ISLAND,10314,40.608074,-74.11827,"(40.608074, -74.11827)",LAGUARDIA AVENUE,WALDO PLACE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4457813,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/15/2021,0:00,QUEENS,11433,40.699802,-73.773964,"(40.699802, -73.773964)",180 STREET,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457657,Sedan,Sedan,,, +09/15/2021,14:50,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4458011,Moped,,,, +09/15/2021,7:40,,,40.671787,-73.90544,"(40.671787, -73.90544)",SACKMAN STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458145,Bus,Sedan,,, +09/17/2021,19:33,BRONX,10458,40.857426,-73.89111,"(40.857426, -73.89111)",EAST 187 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4458937,Station Wagon/Sport Utility Vehicle,Ambulance,,, +08/28/2021,17:10,MANHATTAN,10012,40.72526,-73.99475,"(40.72526, -73.99475)",,,298 MULBERRY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4458869,Sedan,PK,,, +09/17/2021,22:50,,,40.732822,-73.8684,"(40.732822, -73.8684)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4458404,Flat Bed,Sedan,,, +09/17/2021,11:30,BROOKLYN,11220,40.648182,-74.02147,"(40.648182, -74.02147)",1 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458204,Sedan,Sedan,,, +09/15/2021,19:36,,,40.687637,-73.97077,"(40.687637, -73.97077)",LAFAYETTE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Reaction to Uninvolved Vehicle,,,4457688,Station Wagon/Sport Utility Vehicle,Sedan,Bike,, +09/10/2021,23:00,,,40.73783,-73.9357,"(40.73783, -73.9357)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458082,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,19:35,BRONX,10468,40.86605,-73.90277,"(40.86605, -73.90277)",,,2542 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458567,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,19:20,BROOKLYN,11217,40.677998,-73.97306,"(40.677998, -73.97306)",7 AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488292,Sedan,Sedan,,, +09/11/2021,9:15,,,40.771477,-73.91824,"(40.771477, -73.91824)",29 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458333,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,23:53,MANHATTAN,10024,40.782475,-73.98082,"(40.782475, -73.98082)",WEST 77 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458420,Sedan,,,, +09/16/2021,18:55,MANHATTAN,10025,40.801464,-73.96218,"(40.801464, -73.96218)",,,114 WEST 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457942,Sedan,,,, +09/17/2021,17:05,QUEENS,11378,40.726143,-73.88714,"(40.726143, -73.88714)",58 AVENUE,74 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458751,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,8:00,,,40.81848,-73.9553,"(40.81848, -73.9553)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458591,Sedan,,,, +09/09/2021,10:20,QUEENS,11411,40.696217,-73.7436,"(40.696217, -73.7436)",SPRINGFIELD BOULEVARD,LINDEN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458138,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,20:50,BRONX,10468,40.879547,-73.885796,"(40.879547, -73.885796)",,,40 WEST MOSHOLU PARKWAY SOUTH,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4458783,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,14:10,,,40.685017,-73.84336,"(40.685017, -73.84336)",98 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4457856,Sedan,Sedan,,, +09/17/2021,11:30,,,40.741753,-73.82528,"(40.741753, -73.82528)",61 ROAD,MAIN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458300,Van,Sedan,,, +09/14/2021,11:17,,,40.753994,-73.94244,"(40.753994, -73.94244)",21 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4458077,Pick-up Truck,Pick-up Truck,,, +09/15/2021,19:11,BROOKLYN,11220,40.646526,-74.00662,"(40.646526, -74.00662)",,,567 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457980,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,22:00,MANHATTAN,10036,40.757828,-73.99308,"(40.757828, -73.99308)",WEST 41 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4457694,Sedan,Motorcycle,,, +03/11/2022,10:01,MANHATTAN,10027,40.809864,-73.951416,"(40.809864, -73.951416)",,,2319 8 AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4514521,Sedan,Garbage or Refuse,,, +09/17/2021,20:26,,,40.768536,-73.786705,"(40.768536, -73.786705)",202 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,0:57,QUEENS,11428,40.716057,-73.745255,"(40.716057, -73.745255)",,,212-61 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4457969,Sedan,,,, +09/15/2021,22:45,STATEN ISLAND,10304,40.62146,-74.07175,"(40.62146, -74.07175)",BAY STREET,TOWNSEND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457867,Sedan,,,, +09/15/2021,5:25,,,40.63013,-74.01756,"(40.63013, -74.01756)",71 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457313,,,,, +09/15/2021,11:00,MANHATTAN,10002,40.71913,-73.976364,"(40.71913, -73.976364)",EAST HOUSTON STREET,BARUCH PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4457929,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,14:00,QUEENS,11385,40.705402,-73.87469,"(40.705402, -73.87469)",,,77-57 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458729,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,16:35,,,40.79944,-73.975006,"(40.79944, -73.975006)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458188,Sedan,,,, +09/16/2021,8:00,,,40.839275,-73.88436,"(40.839275, -73.88436)",BOSTON ROAD,EAST 176 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458121,Tractor Truck Diesel,,,, +09/17/2021,9:15,BROOKLYN,11211,40.710716,-73.95359,"(40.710716, -73.95359)",BORINQUEN PLACE,KEAP STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,,,,4458114,Sedan,Motorcycle,,, +09/15/2021,17:00,BRONX,10463,40.884357,-73.9094,"(40.884357, -73.9094)",,,3226 OXFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457897,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/15/2021,16:38,STATEN ISLAND,10304,40.60433,-74.09347,"(40.60433, -74.09347)",,,36 WILSON TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457611,Sedan,,,, +09/17/2021,23:30,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4458355,Sedan,E-Bike,,, +09/15/2021,17:45,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458921,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,15:50,BRONX,10460,40.851574,-73.882195,"(40.851574, -73.882195)",,,2311 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457747,Taxi,,,, +09/15/2021,11:55,,,40.74106,-73.946106,"(40.74106, -73.946106)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Accelerator Defective,Unspecified,,,,4457509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,19:45,,,40.58466,-73.95086,"(40.58466, -73.95086)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,7:14,MANHATTAN,10022,40.759926,-73.96679,"(40.759926, -73.96679)",,,220 EAST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458156,Box Truck,,,, +09/17/2021,16:15,,,40.64137,-73.87729,"(40.64137, -73.87729)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,9:13,BROOKLYN,11203,40.64934,-73.94264,"(40.64934, -73.94264)",SNYDER AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4458173,Sedan,Sedan,Sedan,, +07/30/2021,16:33,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458391,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,22:49,,,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458109,Sedan,,,, +09/11/2021,4:40,,,40.665848,-73.75187,"(40.665848, -73.75187)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458273,Sedan,,,, +09/15/2021,8:25,QUEENS,11691,40.59955,-73.76129,"(40.59955, -73.76129)",BEACH 25 STREET,BROOKHAVEN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457735,Sedan,,,, +09/16/2021,15:15,BROOKLYN,11222,,,,NORMAN AVENUE,RUSSELL STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458214,Sedan,E-Bike,,, +09/13/2021,17:54,BRONX,10454,40.810352,-73.91761,"(40.810352, -73.91761)",BROOK AVENUE,EAST 142 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Tinted Windows,,,,4458969,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,10:57,QUEENS,11694,40.582745,-73.835075,"(40.582745, -73.835075)",,,112-01 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458614,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,15:17,,,,,,BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458396,Sedan,E-Scooter,,, +09/09/2021,23:21,MANHATTAN,10010,40.744186,-73.991875,"(40.744186, -73.991875)",AVENUE OF THE AMERICAS,WEST 25 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Passenger Distraction,,,,4458371,Sedan,Bike,,, +04/29/2021,16:00,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411916,Refrigerated Van,Box Truck,,, +09/17/2021,19:53,,,40.796562,-73.974205,"(40.796562, -73.974205)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458231,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,19:15,,,40.77246,-73.96705,"(40.77246, -73.96705)",EAST 72 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458927,Sedan,Bus,,, +09/17/2021,7:54,,,40.833755,-73.87407,"(40.833755, -73.87407)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458057,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,0:10,QUEENS,11355,40.747833,-73.83301,"(40.747833, -73.83301)",COLLEGE POINT BOULEVARD,LAWRENCE STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4457916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,16:12,BROOKLYN,11207,40.68708,-73.913895,"(40.68708, -73.913895)",HALSEY STREET,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4458348,Bike,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,19:14,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457832,Sedan,,,, +09/16/2021,14:21,BROOKLYN,11203,,,,CLARENDON ROAD,EAST 40 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4458170,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/15/2021,17:50,MANHATTAN,10002,40.715168,-73.97741,"(40.715168, -73.97741)",DELANCEY STREET,MANGIN STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,,,,4457663,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,9:25,BROOKLYN,11214,40.596222,-73.98897,"(40.596222, -73.98897)",BENSON AVENUE,25 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458654,Sedan,,,, +09/17/2021,23:11,BRONX,10452,40.837708,-73.927635,"(40.837708, -73.927635)",UNIVERSITY AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458542,Sedan,Sedan,,, +09/13/2021,21:16,,,40.76769,-73.93619,"(40.76769, -73.93619)",BROADWAY,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458309,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,9:05,BROOKLYN,11215,40.668617,-73.98515,"(40.668617, -73.98515)",,,341 9 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458199,Sedan,Box Truck,,, +09/17/2021,11:10,,,40.631245,-73.988884,"(40.631245, -73.988884)",15 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458954,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,22:30,,,40.599064,-73.74481,"(40.599064, -73.74481)",LANETT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4458025,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/15/2021,18:15,BROOKLYN,11225,40.66124,-73.94412,"(40.66124, -73.94412)",,,501 MAPLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457679,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,4:00,QUEENS,11368,40.749294,-73.86086,"(40.749294, -73.86086)",,,104-49 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458038,Sedan,,,, +09/11/2021,1:15,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458550,Taxi,Sedan,,, +09/17/2021,15:00,BROOKLYN,11209,40.62806,-74.02029,"(40.62806, -74.02029)",6 AVENUE,BAY RIDGE PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4458236,Sedan,Bike,,, +09/17/2021,9:15,QUEENS,11375,40.720375,-73.855515,"(40.720375, -73.855515)",YELLOWSTONE BOULEVARD,EXETER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4458141,Sedan,E-Bike,Sedan,, +09/17/2021,12:20,BROOKLYN,11233,40.674095,-73.911156,"(40.674095, -73.911156)",,,266 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4458676,Ambulance,,,, +09/13/2021,19:05,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458703,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,12:36,MANHATTAN,10001,40.752056,-74.00099,"(40.752056, -74.00099)",WEST 30 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4457803,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,11:48,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457706,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/13/2021,17:30,MANHATTAN,10002,,,,,,19 HENRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458585,Van,Box Truck,,, +09/15/2021,8:30,QUEENS,11433,,,,,,174-03 POLHEMUS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,14:35,QUEENS,11433,40.694115,-73.79214,"(40.694115, -73.79214)",160 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458208,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,22:30,,,40.821144,-73.95753,"(40.821144, -73.95753)",WEST 135 STREET,,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4458464,Sedan,,,, +09/17/2021,17:35,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458240,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,14:01,BROOKLYN,11238,40.686863,-73.96448,"(40.686863, -73.96448)",SAINT JAMES PLACE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458263,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,17:30,,,40.709415,-73.87022,"(40.709415, -73.87022)",80 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458734,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:30,,,40.759872,-73.784485,"(40.759872, -73.784485)",FRANCIS LEWIS BOULEVARD,42 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458414,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,14:30,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4457585,Sedan,Tractor Truck Gasoline,,, +09/13/2021,3:40,QUEENS,11102,40.772903,-73.92129,"(40.772903, -73.92129)",,,25-18 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458339,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,14:00,BROOKLYN,11214,40.595608,-74.00006,"(40.595608, -74.00006)",,,1616 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4457962,Sedan,,,, +09/15/2021,8:55,BRONX,10468,40.882175,-73.88692,"(40.882175, -73.88692)",,,100 WEST MOSHOLU PARKWAY SOUTH,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4457430,Bike,,,, +09/17/2021,11:54,BRONX,10467,40.874928,-73.86498,"(40.874928, -73.86498)",HOLLAND AVENUE,MAGENTA STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458766,Sedan,Sedan,,, +09/16/2021,8:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4458443,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,8:15,MANHATTAN,10029,40.79647,-73.93649,"(40.79647, -73.93649)",,,343 EAST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,0:33,,,40.794785,-73.96431,"(40.794785, -73.96431)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4457716,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,6:20,,,,,,FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4458445,Sedan,,,, +09/17/2021,16:00,BROOKLYN,11213,40.6772,-73.94147,"(40.6772, -73.94147)",PACIFIC STREET,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458796,Sedan,,,, +09/08/2021,5:10,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458097,Box Truck,Sedan,,, +09/15/2021,2:30,QUEENS,11416,40.68935,-73.83957,"(40.68935, -73.83957)",105 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4457635,Taxi,Sedan,Sedan,Sedan,Sedan +09/15/2021,22:16,MANHATTAN,10028,40.773655,-73.95173,"(40.773655, -73.95173)",EAST 81 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458008,Bus,Sedan,,, +09/17/2021,8:45,,,40.67819,-73.80144,"(40.67819, -73.80144)",FOCH BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459005,Sedan,Sedan,,, +09/16/2021,22:40,,,40.639256,-73.968796,"(40.639256, -73.968796)",CONEY ISLAND AVENUE,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458522,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,2:30,,,40.66408,-73.94817,"(40.66408, -73.94817)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458092,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,17:48,MANHATTAN,10016,,,,,,200 EAST 32 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4457925,Van,,,, +09/16/2021,21:00,BROOKLYN,11234,40.634262,-73.92749,"(40.634262, -73.92749)",,,1087 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457984,Sedan,Sedan,,, +09/15/2021,13:00,BROOKLYN,11210,40.63692,-73.93752,"(40.63692, -73.93752)",FARRAGUT ROAD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457548,Station Wagon/Sport Utility Vehicle,Multi-Wheeled Vehicle,,, +09/15/2021,14:50,BROOKLYN,11208,40.67239,-73.87463,"(40.67239, -73.87463)",FOUNTAIN AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457590,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,22:10,STATEN ISLAND,10305,40.59791,-74.08361,"(40.59791, -74.08361)",HYLAN BOULEVARD,PARKINSON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4457814,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,17:35,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458387,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,16:50,,,40.593193,-74.15637,"(40.593193, -74.15637)",ROCKLAND AVENUE,MERRYMOUNT STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4457765,Motorbike,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,7:46,,,40.626156,-73.983475,"(40.626156, -73.983475)",18 AVENUE,53 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458608,Station Wagon/Sport Utility Vehicle,Bike,,, +09/15/2021,9:00,MANHATTAN,10019,40.76932,-73.98908,"(40.76932, -73.98908)",,,504 WEST 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457774,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,3:00,,,40.771736,-73.96125,"(40.771736, -73.96125)",EAST 74 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458012,Sedan,,,, +09/17/2021,8:00,QUEENS,11364,40.742405,-73.75348,"(40.742405, -73.75348)",73 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4458124,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/15/2021,9:44,QUEENS,11420,40.67626,-73.81525,"(40.67626, -73.81525)",123 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,19:25,,,,,,HAMILTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458268,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,11:00,,,40.764732,-73.96637,"(40.764732, -73.96637)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458053,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,23:45,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458475,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,12:26,BROOKLYN,11236,40.64504,-73.89318,"(40.64504, -73.89318)",,,1011 EAST 104 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4458185,Sedan,,,, +09/17/2021,2:30,MANHATTAN,10034,,,,SEAMAN AVENUE,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458708,Sedan,Sedan,,, +09/16/2021,20:45,BRONX,10458,40.870224,-73.88717,"(40.870224, -73.88717)",BRIGGS AVENUE,EAST 199 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458146,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/15/2021,14:58,BROOKLYN,11206,40.70159,-73.94875,"(40.70159, -73.94875)",HARRISON AVENUE,WALLABOUT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4457685,,,,, +09/17/2021,0:00,BROOKLYN,11223,40.59011,-73.97422,"(40.59011, -73.97422)",AVENUE X,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458021,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,23:05,BRONX,10461,40.842636,-73.84561,"(40.842636, -73.84561)",,,2703 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458153,Sedan,Sedan,,, +09/17/2021,23:11,,,40.82138,-73.95414,"(40.82138, -73.95414)",BROADWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458259,Station Wagon/Sport Utility Vehicle,Bike,,, +09/17/2021,5:47,QUEENS,11435,40.68683,-73.79996,"(40.68683, -73.79996)",111 AVENUE,145 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458987,Sedan,,,, +09/17/2021,15:42,MANHATTAN,10128,,,,EAST 96 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Backing Unsafely,,,,4458636,Sedan,Bus,,, +09/16/2021,18:50,QUEENS,11368,40.749462,-73.86656,"(40.749462, -73.86656)",ROOSEVELT AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458042,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,6:00,,,40.852818,-73.90476,"(40.852818, -73.90476)",EAST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458343,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,22:08,,,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4458227,Sedan,Bike,,, +09/14/2021,21:04,,,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,4458852,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Bike, +09/15/2021,8:40,QUEENS,11103,40.762764,-73.912605,"(40.762764, -73.912605)",43 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4457505,Bus,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,22:00,BRONX,10475,40.865284,-73.82252,"(40.865284, -73.82252)",,,99 EINSTEIN LOOP,0,0,0,0,0,0,0,0,Unspecified,,,,,4458532,Sedan,,,, +09/17/2021,5:44,QUEENS,11369,40.75916,-73.859116,"(40.75916, -73.859116)",,,32-33 111 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458018,Sedan,,,, +09/12/2021,14:00,MANHATTAN,10037,40.809147,-73.93605,"(40.809147, -73.93605)",,,1947 PARK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458441,Sedan,,,, +09/17/2021,16:30,BROOKLYN,11236,40.640583,-73.91894,"(40.640583, -73.91894)",EAST 80 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458360,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,17:18,,,40.741493,-73.81477,"(40.741493, -73.81477)",KISSENA BOULEVARD,58 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,16:00,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457723,Bus,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,23:25,BROOKLYN,11234,40.634964,-73.932076,"(40.634964, -73.932076)",,,4612 GLENWOOD ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458287,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,17:30,QUEENS,11385,40.712788,-73.90294,"(40.712788, -73.90294)",METROPOLITAN AVENUE,60 LANE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4458744,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +09/15/2021,6:50,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457373,Sedan,Sedan,,, +09/17/2021,15:45,BROOKLYN,11207,40.660667,-73.88089,"(40.660667, -73.88089)",,,725 STANLEY AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458495,Sedan,Van,,, +09/15/2021,8:28,BROOKLYN,11230,40.62059,-73.95542,"(40.62059, -73.95542)",,,1685 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/16/2021,6:15,MANHATTAN,10002,40.719933,-73.97879,"(40.719933, -73.97879)",,,415 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457763,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,0:00,BRONX,10466,40.895794,-73.85945,"(40.895794, -73.85945)",CARPENTER AVENUE,EAST 235 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458069,Station Wagon/Sport Utility Vehicle,AMBU,,, +09/17/2021,0:53,,,40.682377,-73.767166,"(40.682377, -73.767166)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Passing Too Closely,,,,4457991,Sedan,Sedan,,, +09/15/2021,11:00,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458129,Ambulance,,,, +09/13/2021,11:30,BROOKLYN,11249,40.710625,-73.96678,"(40.710625, -73.96678)",BROADWAY,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458254,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,22:00,,,40.753395,-73.79243,"(40.753395, -73.79243)",UTOPIA PARKWAY,46 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4458281,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,13:00,QUEENS,11354,40.76502,-73.82049,"(40.76502, -73.82049)",,,146-01 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458304,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,5:46,BROOKLYN,11226,,,,DORCHESTER ROAD,EAST 16 STREET,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4457702,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,18:20,BROOKLYN,11203,40.64474,-73.92449,"(40.64474, -73.92449)",,,5522 CLARENDON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458180,Sedan,Sedan,,, +09/15/2021,14:40,,,40.78356,-73.82449,"(40.78356, -73.82449)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,11:45,BRONX,10467,40.875923,-73.8619,"(40.875923, -73.8619)",,,800 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458770,Box Truck,Sedan,,, +09/15/2021,20:48,BROOKLYN,11226,40.64253,-73.95159,"(40.64253, -73.95159)",,,1117 ROGERS AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4458738,Sedan,Sedan,,, +09/05/2021,7:20,,,40.67043,-73.928185,"(40.67043, -73.928185)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4458715,Sedan,Sedan,Sedan,, +09/16/2021,14:10,BROOKLYN,11237,40.7014,-73.91858,"(40.7014, -73.91858)",HIMROD STREET,IRVING AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4457909,Box Truck,E-Bike,,, +09/15/2021,22:55,BRONX,10462,40.845776,-73.863464,"(40.845776, -73.863464)",MORRIS PARK AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458148,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,9:10,BRONX,10459,40.821682,-73.89288,"(40.821682, -73.89288)",,,975 SIMPSON STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4457880,E-Scooter,,,, +09/17/2021,19:40,,,40.707825,-74.00433,"(40.707825, -74.00433)",PEARL STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458320,Ambulance,,,, +09/16/2021,8:01,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",EAST TREMONT AVENUE,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458133,Sedan,,,, +09/15/2021,14:35,BROOKLYN,11236,40.64024,-73.91947,"(40.64024, -73.91947)",FOSTER AVENUE,RALPH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457641,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,7:20,BROOKLYN,11233,40.6715,-73.91505,"(40.6715, -73.91505)",EASTERN PARKWAY,PARK PLACE,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,Unspecified,,,4458046,Sedan,Sedan,Ambulance,, +09/17/2021,17:00,QUEENS,11413,40.659687,-73.759926,"(40.659687, -73.759926)",,,146-81 SPRINGFIELD LANE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458239,Sedan,Sedan,,, +09/17/2021,5:12,MANHATTAN,10065,40.76484,-73.970505,"(40.76484, -73.970505)",EAST 61 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4458936,Sedan,Sedan,,, +09/17/2021,12:30,BROOKLYN,11249,40.71772,-73.96202,"(40.71772, -73.96202)",,,76 NORTH 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458222,Sedan,Box Truck,,, +09/15/2021,18:02,,,40.612488,-73.89707,"(40.612488, -73.89707)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/29/2021,18:20,QUEENS,11434,40.66088,-73.76977,"(40.66088, -73.76977)",,,176-03 147 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412044,Sedan,,,, +09/16/2021,13:30,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",167 STREET,HIGHLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458165,Sedan,,,, +09/16/2021,9:05,,,40.692974,-73.90811,"(40.692974, -73.90811)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457818,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,23:40,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4458385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/10/2021,18:40,BRONX,10455,40.81903,-73.91262,"(40.81903, -73.91262)",BROOK AVENUE,BERGEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458410,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,15:02,,,40.68603,-73.93268,"(40.68603, -73.93268)",PUTNAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458837,E-Scooter,,,, +09/17/2021,8:40,BROOKLYN,11215,40.662468,-73.99226,"(40.662468, -73.99226)",19 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458207,Box Truck,Sedan,,, +09/17/2021,17:10,BROOKLYN,11238,40.684544,-73.96509,"(40.684544, -73.96509)",WASHINGTON AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458264,Sedan,Sedan,,, +09/15/2021,20:00,BROOKLYN,11203,40.655827,-73.9376,"(40.655827, -73.9376)",,,9 EAST 43 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458178,Sedan,,,, +09/17/2021,8:05,,,,,,STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4458556,UNKNOWN,Sedan,,, +09/17/2021,21:00,MANHATTAN,10036,40.75633,-73.98767,"(40.75633, -73.98767)",,,214 WEST 42 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458810,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,4:00,,,40.90478,-73.9003,"(40.90478, -73.9003)",FARADAY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457846,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,18:00,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457653,Pick-up Truck,Sedan,,, +09/16/2021,10:55,,,40.666756,-73.83653,"(40.666756, -73.83653)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4458051,Van,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,14:00,,,40.677715,-73.93587,"(40.677715, -73.93587)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458714,Sedan,Sedan,,, +09/02/2021,23:30,QUEENS,11426,40.736145,-73.72067,"(40.736145, -73.72067)",,,83-14 247 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458571,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,22:42,BROOKLYN,11220,40.635242,-74.02028,"(40.635242, -74.02028)",,,6713 5 AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458271,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/14/2021,18:19,QUEENS,11357,40.7923,-73.807236,"(40.7923, -73.807236)",154 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458435,Sedan,,,, +09/15/2021,7:00,STATEN ISLAND,10301,40.643932,-74.08595,"(40.643932, -74.08595)",,,54 CLEVELAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458655,Sedan,,,, +08/05/2021,16:00,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,EAST BURNSIDE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444210,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,11:40,BROOKLYN,11211,40.71249,-73.93848,"(40.71249, -73.93848)",GRAND STREET,OLIVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458200,Sedan,,,, +09/15/2021,20:23,BROOKLYN,11211,40.71258,-73.958115,"(40.71258, -73.958115)",,,228 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457997,Sedan,Sedan,,, +09/13/2021,10:25,BROOKLYN,11221,40.6871,-73.92989,"(40.6871, -73.92989)",REID AVENUE,MADISON STREET,,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4458821,Sedan,,,, +09/17/2021,16:30,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4458540,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,11:37,BRONX,10462,40.84816,-73.86338,"(40.84816, -73.86338)",BARNES AVENUE,RHINELANDER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4457520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,4:23,BROOKLYN,11203,40.65786,-73.93829,"(40.65786, -73.93829)",,,669 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457976,Sedan,Sedan,,, +09/15/2021,11:37,BROOKLYN,11207,40.669933,-73.88773,"(40.669933, -73.88773)",,,435 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457470,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/17/2021,11:02,BRONX,10456,40.827274,-73.904915,"(40.827274, -73.904915)",EAST 165 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458974,Sedan,Sedan,,, +09/15/2021,9:30,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4457919,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +09/15/2021,4:00,,,40.749866,-73.86273,"(40.749866, -73.86273)",ROOSEVELT AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457729,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/17/2021,13:43,BROOKLYN,11235,40.588207,-73.95221,"(40.588207, -73.95221)",,,1717 AVENUE Z,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4458354,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,19:30,BRONX,10469,40.8721,-73.849884,"(40.8721, -73.849884)",BOUCK AVENUE,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458034,Sedan,Sedan,,, +09/17/2021,8:50,,,,,,JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4458073,Sedan,Sedan,,, +09/15/2021,11:15,MANHATTAN,10035,40.802578,-73.939156,"(40.802578, -73.939156)",,,114 EAST 122 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,,,,4457789,Sedan,Pick-up Truck,,, +09/15/2021,13:50,QUEENS,11432,40.707226,-73.80048,"(40.707226, -73.80048)",,,88-55 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457561,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/15/2021,19:45,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,16:50,BRONX,10460,40.84249,-73.868004,"(40.84249, -73.868004)",VANNEST AVENUE,GARFIELD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458328,Station Wagon/Sport Utility Vehicle,Bus,,, +09/17/2021,0:00,,,40.732887,-73.920586,"(40.732887, -73.920586)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458084,Station Wagon/Sport Utility Vehicle,UNKNOWN VE,,, +09/15/2021,14:45,,,40.642796,-74.00197,"(40.642796, -74.00197)",8 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4457756,Bus,Sedan,,, +09/15/2021,17:07,BROOKLYN,11210,40.62397,-73.95021,"(40.62397, -73.95021)",AVENUE K,EAST 26 STREET,,7,0,0,0,0,0,7,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457698,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/17/2021,9:36,BROOKLYN,11207,40.665516,-73.88286,"(40.665516, -73.88286)",,,659 ASHFORD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4458504,Motorcycle,Sedan,Sedan,, +09/15/2021,23:55,,,40.89725,-73.855255,"(40.89725, -73.855255)",EAST 237 STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4458101,Station Wagon/Sport Utility Vehicle,dirt bike,,, +12/18/2021,22:50,QUEENS,11422,40.671097,-73.731255,"(40.671097, -73.731255)",135 AVENUE,244 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,17:00,MANHATTAN,10027,40.812347,-73.95702,"(40.812347, -73.95702)",,,1295 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4458593,Sedan,,,, +09/15/2021,6:28,,,40.768356,-73.904884,"(40.768356, -73.904884)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,0:44,MANHATTAN,10019,40.766083,-73.993164,"(40.766083, -73.993164)",,,535 WEST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4457351,Sedan,,,, +09/15/2021,14:08,BROOKLYN,11218,40.643745,-73.97009,"(40.643745, -73.97009)",CONEY ISLAND AVENUE,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4457604,Sedan,Sedan,,, +09/17/2021,4:00,BROOKLYN,11206,40.70767,-73.94325,"(40.70767, -73.94325)",,,174 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458251,Sedan,Sedan,,, +09/16/2021,11:00,BROOKLYN,11228,40.61633,-74.00441,"(40.61633, -74.00441)",,,7718 15 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4457957,Sedan,,,, +09/16/2021,2:05,BROOKLYN,11234,40.61796,-73.91812,"(40.61796, -73.91812)",,,1460 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4457674,Sedan,Sedan,Sedan,, +09/15/2021,10:15,QUEENS,11692,40.596077,-73.797516,"(40.596077, -73.797516)",,,549 BEACH 68 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4457573,Lift Boom,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,16:39,MANHATTAN,10010,40.736317,-73.97484,"(40.736317, -73.97484)",,,2430 FDR DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4458872,Box Truck,,,, +08/13/2021,12:21,,,,,,ZEREGA AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458061,Station Wagon/Sport Utility Vehicle,Bike,,, +09/15/2021,19:00,QUEENS,11101,40.749054,-73.95222,"(40.749054, -73.95222)",44 DRIVE,VERNON BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4457887,Sedan,Sedan,Sedan,Sedan,Sedan +09/16/2021,13:50,BRONX,10453,40.85809,-73.901924,"(40.85809, -73.901924)",MORRIS AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457905,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,21:09,BRONX,10469,40.877907,-73.85753,"(40.877907, -73.85753)",,,958 EAST 214 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458116,Sedan,Sedan,,, +04/29/2021,18:55,BRONX,10459,40.82432,-73.89261,"(40.82432, -73.89261)",,,1047 WESTCHESTER AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412120,E-Scooter,Sedan,,, +09/16/2021,17:23,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4458193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,8:15,MANHATTAN,10003,40.732807,-73.986015,"(40.732807, -73.986015)",,,253 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4457828,Sedan,Sedan,Pick-up Truck,, +09/17/2021,23:45,,,40.765266,-73.81517,"(40.765266, -73.81517)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4458378,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/15/2021,10:05,MANHATTAN,10021,40.769314,-73.95961,"(40.769314, -73.95961)",,,242 EAST 72 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458931,Sedan,,,, +09/16/2021,15:00,,,40.73885,-73.810356,"(40.73885, -73.810356)",PARSONS BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458161,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,21:54,MANHATTAN,10038,,,,,,46 MADISON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458562,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,17:25,,,40.707466,-73.7887,"(40.707466, -73.7887)",171 STREET,,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4457936,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,13:30,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458066,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,20:58,,,,,,SANDS STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458826,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,18:16,QUEENS,11361,40.768974,-73.773766,"(40.768974, -73.773766)",35 AVENUE,BELL BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4458694,,,,, +09/13/2021,7:22,,,,,,Tunnel Exit street,East 37 street,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4458403,Sedan,Pick-up Truck,,, +09/12/2021,18:05,,,,,,WILLOUGHBY AVE,suydam st,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458029,Sedan,,,, +09/17/2021,19:05,BROOKLYN,11209,40.61917,-74.025566,"(40.61917, -74.025566)",,,8815 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458232,Bus,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,11:30,BROOKLYN,11222,40.729153,-73.94224,"(40.729153, -73.94224)",,,355 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458219,Taxi,Sedan,,, +09/15/2021,14:30,STATEN ISLAND,10306,40.572674,-74.10755,"(40.572674, -74.10755)",HYLAN BOULEVARD,LOCUST AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4457613,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/17/2021,15:30,BROOKLYN,11207,40.66337,-73.89267,"(40.66337, -73.89267)",RIVERDALE AVENUE,NEW JERSEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4458474,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/16/2021,8:35,,,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4457837,Sedan,Box Truck,,, +09/17/2021,15:25,,,,,,PARK AVENUE,EAST 113 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458620,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,10:00,BROOKLYN,11204,40.61901,-73.98686,"(40.61901, -73.98686)",19 AVENUE,63 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4457954,Sedan,Bike,,, +09/15/2021,23:30,QUEENS,11370,40.766777,-73.89404,"(40.766777, -73.89404)",75 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,,4457718,Sedan,Sedan,Sedan,, +09/16/2021,20:20,BROOKLYN,11236,40.639366,-73.9113,"(40.639366, -73.9113)",EAST 85 STREET,GLENWOOD ROAD,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4457970,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +09/10/2021,18:03,QUEENS,11102,40.76945,-73.9171,"(40.76945, -73.9171)",,,25-41 33 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458312,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,23:22,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458545,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,0:30,BRONX,10460,40.831203,-73.88724,"(40.831203, -73.88724)",JENNINGS STREET,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458130,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,2:33,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,BROADWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4457992,Garbage or Refuse,Ambulance,,, +09/15/2021,1:20,BRONX,10469,40.88014,-73.852036,"(40.88014, -73.852036)",LACONIA AVENUE,EAST 219 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,,,4458115,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/16/2021,10:38,,,40.67058,-73.93096,"(40.67058, -73.93096)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4458698,Sedan,Bus,,, +04/23/2021,0:00,,,40.824738,-73.95435,"(40.824738, -73.95435)",RIVERSIDE DRIVE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4412141,Bike,,,, +08/27/2021,17:58,,,40.66813,-73.93675,"(40.66813, -73.93675)",TROY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458093,E-Scooter,,,, +09/08/2021,20:19,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458981,Sedan,,,, +09/16/2021,7:31,,,40.699455,-73.9397,"(40.699455, -73.9397)",BROADWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4457751,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,16:20,MANHATTAN,10033,40.854965,-73.93625,"(40.854965, -73.93625)",,,740 WEST 187 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458701,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,12:10,,,40.84205,-73.83791,"(40.84205, -73.83791)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457923,Sedan,Sedan,,, +09/15/2021,0:30,BRONX,10453,40.85706,-73.90469,"(40.85706, -73.90469)",JEROME AVENUE,WEST 182 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457708,Sedan,E-Bike,,, +09/15/2021,11:30,BROOKLYN,11207,40.67643,-73.89128,"(40.67643, -73.89128)",ATLANTIC AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4457503,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,8:09,BROOKLYN,11236,40.636353,-73.885765,"(40.636353, -73.885765)",,,10215 SEAVIEW AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4457552,Sedan,,,, +09/16/2021,21:36,BRONX,10460,40.836136,-73.86616,"(40.836136, -73.86616)",,,1435 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4458088,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +09/17/2021,10:15,QUEENS,11378,40.72579,-73.904724,"(40.72579, -73.904724)",,,60-36 55 DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458733,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,18:20,,,,,,EAST 116 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,16:53,MANHATTAN,10036,40.7591,-73.99214,"(40.7591, -73.99214)",WEST 43 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457778,Van,Bus,,, +09/15/2021,10:00,BRONX,10472,,,,,,1127 FTELEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457436,Sedan,Sedan,,, +09/15/2021,5:32,BRONX,10470,40.900604,-73.85259,"(40.900604, -73.85259)",,,4509 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4458105,Bus,,,, +07/28/2021,14:10,MANHATTAN,10030,40.8232,-73.94515,"(40.8232, -73.94515)",,,676 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458606,Sedan,Sedan,,, +09/17/2021,10:07,QUEENS,11378,40.726624,-73.906456,"(40.726624, -73.906456)",55 ROAD,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458749,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,17:40,BROOKLYN,11201,40.693047,-73.99074,"(40.693047, -73.99074)",COURT STREET,REMSEN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457937,Pick-up Truck,Sedan,,, +09/15/2021,18:30,BROOKLYN,11203,40.655903,-73.93475,"(40.655903, -73.93475)",,,248 EAST 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458745,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,8:17,MANHATTAN,10028,40.773148,-73.950554,"(40.773148, -73.950554)",,,424 EAST 81 STREET,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,Unspecified,,,4458056,Van,Station Wagon/Sport Utility Vehicle,Box Truck,, +09/17/2021,2:51,QUEENS,11357,40.780087,-73.817154,"(40.780087, -73.817154)",149 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4458295,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/12/2021,0:20,MANHATTAN,10001,,,,West 32 street,6 avenue,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4458512,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,21:20,,,,,,NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458247,Sedan,Sedan,,, +09/16/2021,15:23,BROOKLYN,11220,40.645348,-74.01375,"(40.645348, -74.01375)",4 AVENUE,52 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457979,E-Bike,Sedan,,, +09/15/2021,21:10,BROOKLYN,11207,,,,PENNSYLVANIA AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4457833,Sedan,Sedan,,, +09/15/2021,18:30,MANHATTAN,10065,40.76393,-73.96908,"(40.76393, -73.96908)",,,530 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458007,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,12:10,,,40.675842,-73.78305,"(40.675842, -73.78305)",BAISLEY BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457656,Sedan,,,, +09/15/2021,14:40,BRONX,10462,40.85188,-73.8683,"(40.85188, -73.8683)",,,2090 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,7:20,BROOKLYN,11233,40.677822,-73.91636,"(40.677822, -73.91636)",HERKIMER STREET,SARATOGA AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458667,,,,, +12/08/2021,17:50,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4484846,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,15:30,BROOKLYN,11208,40.66647,-73.882515,"(40.66647, -73.882515)",NEW LOTS AVENUE,CLEVELAND STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4457898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,5:06,,,40.829647,-73.94439,"(40.829647, -73.94439)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457320,Pick-up Truck,,,, +09/16/2021,17:31,QUEENS,11412,,,,LOVINGHAM PLACE,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457961,Sedan,,,, +09/15/2021,20:30,BROOKLYN,11211,40.71241,-73.95764,"(40.71241, -73.95764)",,,242 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4457684,Sedan,Sedan,,, +09/16/2021,6:05,QUEENS,11421,40.69756,-73.85275,"(40.69756, -73.85275)",PARK LANE SOUTH,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458907,Sedan,,,, +09/16/2021,21:55,MANHATTAN,10029,,,,EAST 103 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4458621,Taxi,Bike,,, +09/15/2021,17:22,BRONX,10455,40.81377,-73.919464,"(40.81377, -73.919464)",,,446 WILLIS AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457695,E-Scooter,Sedan,,, +09/14/2021,19:23,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",EAST 158 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4458024,Bike,,,, +09/16/2021,7:35,BROOKLYN,11226,,,,,,911 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458189,Station Wagon/Sport Utility Vehicle,Moped,,, +12/18/2021,8:15,STATEN ISLAND,10306,40.56467,-74.1156,"(40.56467, -74.1156)",,,2754 HYLAN BOULEVARD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487475,Sedan,,,, +09/16/2021,6:30,,,,,,GRAND CENTRAL PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458041,Sedan,Sedan,,, +09/15/2021,15:14,,,40.8018,-73.96108,"(40.8018, -73.96108)",WEST 110 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4457610,Sedan,Sedan,,, +09/17/2021,13:20,QUEENS,11421,40.68766,-73.85057,"(40.68766, -73.85057)",ATLANTIC AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458634,Bus,,,, +09/16/2021,7:30,BROOKLYN,11223,40.58382,-73.970856,"(40.58382, -73.970856)",SHORE PARKWAY,WEST 2 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4457806,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,11:22,,,40.683647,-73.856384,"(40.683647, -73.856384)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458120,Sedan,Bus,,, +09/17/2021,14:00,MANHATTAN,10032,40.84107,-73.93605,"(40.84107, -73.93605)",WEST 170 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458822,Sedan,Sedan,,, +09/17/2021,1:15,MANHATTAN,10017,40.75457,-73.97169,"(40.75457, -73.97169)",3 AVENUE,EAST 48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458157,Taxi,Sedan,Sedan,, +09/15/2021,18:07,BRONX,10468,40.864872,-73.90253,"(40.864872, -73.90253)",WEST 190 STREET,AQUEDUCT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458566,Sedan,FDNY FIRET,,, +09/17/2021,14:29,MANHATTAN,10010,40.737156,-73.97834,"(40.737156, -73.97834)",,,400 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458372,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,8:12,MANHATTAN,10036,40.761753,-74.00051,"(40.761753, -74.00051)",,,635 WEST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458083,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,18:10,BROOKLYN,11212,40.656044,-73.90724,"(40.656044, -73.90724)",,,985 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458684,Sedan,,,, +06/09/2021,20:56,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,EAST BURNSIDE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425766,MOTOR SCOO,,,, +09/17/2021,17:40,,,40.860355,-73.86716,"(40.860355, -73.86716)",BOSTON ROAD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458332,Station Wagon/Sport Utility Vehicle,Moped,,, +09/17/2021,12:00,BROOKLYN,11222,40.72406,-73.94426,"(40.72406, -73.94426)",,,97 RUSSELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458215,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,14:30,,,40.773655,-73.97783,"(40.773655, -73.97783)",WEST 68 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458428,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,15:04,BROOKLYN,11207,40.666294,-73.89445,"(40.666294, -73.89445)",PENNSYLVANIA AVENUE,DUMONT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458481,Sedan,,,, +09/13/2021,13:10,BROOKLYN,11237,40.70281,-73.9254,"(40.70281, -73.9254)",KNICKERBOCKER AVENUE,STARR STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4459011,Sedan,Sedan,,, +09/15/2021,19:46,BROOKLYN,11220,40.637325,-74.03115,"(40.637325, -74.03115)",,,117 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457633,Bus,Sedan,,, +09/11/2021,15:00,BROOKLYN,11236,40.641582,-73.89313,"(40.641582, -73.89313)",,,1144 EAST 101 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458616,Sedan,,,, +09/16/2021,20:30,MANHATTAN,10016,40.747684,-73.97879,"(40.747684, -73.97879)",EAST 36 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4457948,Sedan,Sedan,,, +09/17/2021,6:25,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,KINGSTON AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4458795,Sedan,Sedan,,, +09/17/2021,17:21,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",LEXINGTON AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458929,4 dr sedan,Bus,,, +09/16/2021,23:50,BRONX,10456,40.831127,-73.91745,"(40.831127, -73.91745)",SHERMAN AVENUE,EAST 166 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4458098,Bike,Sedan,,, +09/15/2021,16:49,BRONX,10458,40.868317,-73.88189,"(40.868317, -73.88189)",WEBSTER AVENUE,EAST 201 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4458078,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,11:32,MANHATTAN,10019,40.765568,-73.98745,"(40.765568, -73.98745)",,,803 9 AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4458317,Dump,Sedan,,, +09/10/2021,21:00,,,40.676132,-73.921906,"(40.676132, -73.921906)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458707,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,14:30,BROOKLYN,11212,,,,,,124 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4458496,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,22:40,BROOKLYN,11218,40.643303,-73.974106,"(40.643303, -73.974106)",OCEAN PARKWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458523,Sedan,,,, +09/16/2021,20:42,,,40.853706,-73.871864,"(40.853706, -73.871864)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458147,Convertible,,,, +09/16/2021,15:06,QUEENS,11368,40.758972,-73.845085,"(40.758972, -73.845085)",,,35-01 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458013,Pick-up Truck,,,, +09/17/2021,17:00,MANHATTAN,10032,40.83027,-73.94393,"(40.83027, -73.94393)",AMSTERDAM AVENUE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458258,Sedan,Sedan,,, +09/17/2021,9:50,BROOKLYN,11211,40.708904,-73.95926,"(40.708904, -73.95926)",HAVEMEYER STREET,BROADWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4458110,Van,Sedan,,, +09/17/2021,17:30,BROOKLYN,11212,40.665398,-73.92663,"(40.665398, -73.92663)",,,1090 EAST NEW YORK AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458739,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,15:06,QUEENS,11361,40.759037,-73.78409,"(40.759037, -73.78409)",42 ROAD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458282,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,12:45,QUEENS,11432,40.704304,-73.80315,"(40.704304, -73.80315)",90 AVENUE,153 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4458211,Sedan,,,, +09/07/2021,7:04,,,40.693314,-73.92496,"(40.693314, -73.92496)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,Unspecified,,,4458344,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/17/2021,0:00,BRONX,10474,40.819267,-73.884865,"(40.819267, -73.884865)",SENECA AVENUE,WHITTIER STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4458142,Sedan,Sedan,,, +09/08/2021,7:05,,,40.694946,-73.9921,"(40.694946, -73.9921)",,,PIERREPONT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458853,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,15:12,BROOKLYN,11207,40.658306,-73.881836,"(40.658306, -73.881836)",WORTMAN AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458484,Bus,Sedan,,, +09/16/2021,8:44,BROOKLYN,11233,40.676594,-73.91556,"(40.676594, -73.91556)",ATLANTIC AVENUE,ROOSEVELT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458671,Box Truck,Sedan,,, +09/15/2021,16:00,BROOKLYN,11235,40.583107,-73.95415,"(40.583107, -73.95415)",EMMONS AVENUE,SHORE BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457689,Station Wagon/Sport Utility Vehicle,Bike,,, +09/15/2021,12:35,,,40.608562,-74.1472,"(40.608562, -74.1472)",NORTH GANNON AVENUE,WILLOWBROOK ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4457539,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,7:57,MANHATTAN,10007,40.712196,-74.00857,"(40.712196, -74.00857)",,,10 BARCLAY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457406,Sedan,Sedan,,, +03/27/2022,15:00,QUEENS,11355,40.748783,-73.81279,"(40.748783, -73.81279)",BOWNE STREET,POPLAR AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4514142,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/15/2021,14:16,MANHATTAN,10004,40.70359,-74.01236,"(40.70359, -74.01236)",,,31 BRIDGE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4457815,Sedan,Van,,, +09/14/2021,8:30,QUEENS,11385,40.705296,-73.8578,"(40.705296, -73.8578)",,,80-19 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458728,Dump,,,, +09/15/2021,14:45,,,40.65723,-73.96025,"(40.65723, -73.96025)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,15:40,QUEENS,11427,40.72981,-73.74469,"(40.72981, -73.74469)",HILLSIDE AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4457581,Sedan,,,, +09/15/2021,17:15,,,40.584682,-74.16871,"(40.584682, -74.16871)",,,2557 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Illnes,,,,,4457766,Sedan,,,, +09/16/2021,8:45,MANHATTAN,10016,,,,W 30 street,30th st,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4457941,Sedan,,,, +09/17/2021,15:55,BRONX,10455,40.818336,-73.907005,"(40.818336, -73.907005)",EAST 156 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458415,Station Wagon/Sport Utility Vehicle,Bus,,, +09/15/2021,20:00,,,40.807037,-73.949745,"(40.807037, -73.949745)",7 AVENUE,,,2,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458125,Bike,E-Bike,,, +09/16/2021,16:44,BROOKLYN,11213,40.679684,-73.93668,"(40.679684, -73.93668)",,,1598 FULTON STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4458763,Sedan,,,, +09/16/2021,13:53,BROOKLYN,11236,40.652157,-73.90413,"(40.652157, -73.90413)",,,10101 AVENUE D,1,0,0,0,0,0,1,0,Turning Improperly,Passing Too Closely,,,,4458184,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,10:00,,,,,,WALTON AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4458052,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,20:10,BROOKLYN,11211,40.71535,-73.95068,"(40.71535, -73.95068)",,,20 SKILLMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4458299,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/15/2021,15:33,BROOKLYN,11209,40.62629,-74.023964,"(40.62629, -74.023964)",,,7922 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457628,Motorscooter,Box Truck,,, +09/15/2021,5:25,MANHATTAN,10002,40.720234,-73.98448,"(40.720234, -73.98448)",CLINTON STREET,STANTON STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4457662,Motorcycle,Sedan,,, +09/15/2021,7:45,,,40.78776,-73.79137,"(40.78776, -73.79137)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4457915,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,0:00,STATEN ISLAND,10310,,,,GREENLEAF AVENUE,DELAFIELD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4457869,Sedan,Sedan,Sedan,, +09/16/2021,15:35,BRONX,10455,,,,EAST 154 STREET,ELTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458001,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/14/2021,11:34,BROOKLYN,11212,40.654163,-73.91154,"(40.654163, -73.91154)",,,1 BROOKDALE PLAZA,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458169,Sedan,,,, +09/17/2021,19:00,,,40.61515,-74.00204,"(40.61515, -74.00204)",77 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458625,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,23:27,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,0:05,QUEENS,11373,40.74545,-73.871216,"(40.74545, -73.871216)",,,94-11 42 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4457677,Pick-up Truck,Sedan,,, +09/17/2021,9:42,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458152,Pick-up Truck,Sedan,,, +09/15/2021,20:30,BRONX,10457,40.851227,-73.88789,"(40.851227, -73.88789)",,,2203 BELMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458955,Sedan,,,, +09/15/2021,15:18,STATEN ISLAND,10309,40.527912,-74.23442,"(40.527912, -74.23442)",,,2955 VETERANS ROAD WEST,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4458037,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,16:30,STATEN ISLAND,10306,40.583298,-74.099915,"(40.583298, -74.099915)",HUSSON STREET,STOBE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,Traffic Control Disregarded,,,4457614,Sedan,Sedan,Sedan,, +09/17/2021,14:10,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458947,Sedan,E-Bike,,, +09/17/2021,14:35,MANHATTAN,10021,40.770752,-73.95695,"(40.770752, -73.95695)",2 AVENUE,EAST 75 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458922,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,23:00,,,40.65743,-73.9451,"(40.65743, -73.9451)",BROOKLYN AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4457983,Sedan,Sedan,,, +09/15/2021,20:40,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4458364,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,18:10,MANHATTAN,10030,40.818905,-73.93859,"(40.818905, -73.93859)",,,106 WEST 142 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458226,Taxi,Sedan,,, +09/16/2021,1:25,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4457840,Sedan,,,, +04/10/2021,0:00,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4412355,Sedan,Sedan,Sedan,, +09/12/2021,20:45,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,22:00,BROOKLYN,11201,40.698486,-73.986664,"(40.698486, -73.986664)",,,120 NASSAU STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458243,Sedan,,,, +09/17/2021,16:53,BRONX,10467,40.867794,-73.8617,"(40.867794, -73.8617)",ARNOW AVENUE,WILLIAMSBRIDGE ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458337,Station Wagon/Sport Utility Vehicle,ESCOOTER S,,, +09/17/2021,1:10,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,DELANCEY STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4458551,Sedan,Sedan,,, +09/15/2021,10:14,BROOKLYN,11219,,,,,,1326 63 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458392,Dump,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,14:30,QUEENS,11432,40.70975,-73.79562,"(40.70975, -73.79562)",167 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4458174,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/15/2021,14:25,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4457855,Sedan,Sedan,,, +09/17/2021,15:45,,,,,,54 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458277,Sedan,Sedan,,, +09/16/2021,22:55,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",NEW YORK AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458179,Sedan,Sedan,,, +09/17/2021,12:25,QUEENS,11413,40.675663,-73.75248,"(40.675663, -73.75248)",137 AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4458137,Sedan,Sedan,Sedan,, +09/11/2021,3:30,STATEN ISLAND,10312,40.547085,-74.19784,"(40.547085, -74.19784)",,,104 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458047,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,9:15,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",AVENUE H,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458449,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,17:54,QUEENS,11435,40.701977,-73.80982,"(40.701977, -73.80982)",,,145-01 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4457883,E-Bike,,,, +09/15/2021,0:00,MANHATTAN,10025,40.808228,-73.96654,"(40.808228, -73.96654)",RIVERSIDE DRIVE,WEST 115 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458782,Sedan,,,, +09/15/2021,16:10,BROOKLYN,11215,40.6628,-73.978355,"(40.6628, -73.978355)",PROSPECT PARK WEST,12 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4457642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,20:30,,,40.60827,-73.94232,"(40.60827, -73.94232)",GERRITSEN AVENUE,AVENUE R,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485210,Sedan,Bus,,, +12/09/2021,7:33,STATEN ISLAND,10304,40.5911,-74.10205,"(40.5911, -74.10205)",,,43 FOUR CORNERS ROAD,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4485456,Sedan,,,, +12/09/2021,18:30,BRONX,10467,40.880756,-73.8821,"(40.880756, -73.8821)",,,3424 DEKALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485415,Sedan,,,, +12/08/2021,11:06,BROOKLYN,11223,40.602226,-73.968666,"(40.602226, -73.968666)",AVENUE S,EAST 4 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4484831,Sedan,,,, +12/11/2020,1:45,BRONX,10462,40.846657,-73.85944,"(40.846657, -73.85944)",BRONXDALE AVENUE,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485338,Sedan,,,, +12/09/2021,10:30,,,40.62506,-74.13582,"(40.62506, -74.13582)",FOREST AVENUE,BARRETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485014,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,11:31,QUEENS,11373,40.728996,-73.88225,"(40.728996, -73.88225)",,,80-09 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485640,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,11:15,BRONX,10456,40.833134,-73.90089,"(40.833134, -73.90089)",,,1325 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485676,Ambulance,,,, +12/10/2021,13:30,,,40.824738,-73.95435,"(40.824738, -73.95435)",WEST 141 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485389,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/10/2021,10:50,BROOKLYN,11210,40.632145,-73.952736,"(40.632145, -73.952736)",BEDFORD AVENUE,CAMPUS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485505,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,16:45,BROOKLYN,11219,40.63293,-74.00578,"(40.63293, -74.00578)",,,6021 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485356,Sedan,,,, +12/08/2021,11:05,BROOKLYN,11206,40.708782,-73.94344,"(40.708782, -73.94344)",GRAHAM AVENUE,SCHOLES STREET,,1,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4485876,Pick-up Truck,E-Bike,,, +12/09/2021,17:20,BROOKLYN,11217,40.68733,-73.98183,"(40.68733, -73.98183)",SCHERMERHORN STREET,NEVINS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485047,Station Wagon/Sport Utility Vehicle,Bike,,, +12/13/2021,15:12,,,40.857784,-73.83081,"(40.857784, -73.83081)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488122,Sedan,Sedan,,, +12/13/2021,9:00,BROOKLYN,11207,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488088,Sedan,Self insur,,, +12/18/2021,14:50,QUEENS,11367,40.721275,-73.81671,"(40.721275, -73.81671)",147 STREET,77 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487679,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,20:49,,,,,,PELHAM PARKWAY,WHITE PLAINS ROAD,,3,0,0,0,0,0,3,0,Unsafe Speed,Other Vehicular,,,,4487624,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,18:17,STATEN ISLAND,10310,40.63017,-74.113556,"(40.63017, -74.113556)",MYRTLE AVENUE,NORTH BURGHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488046,Sedan,,,, +12/15/2021,10:21,BROOKLYN,11239,40.658005,-73.87408,"(40.658005, -73.87408)",FLATLANDS AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488072,Sedan,Garbage or Refuse,,, +12/18/2021,20:30,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487688,Sedan,Sedan,,, +12/18/2021,0:22,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",EAST 140 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4488314,Sedan,Sedan,Sedan,, +12/18/2021,10:38,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4487458,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/17/2021,19:23,QUEENS,11413,40.6755,-73.73864,"(40.6755, -73.73864)",MERRICK BOULEVARD,231 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488248,Sedan,Sedan,,, +12/18/2021,17:45,,,40.74315,-73.831924,"(40.74315, -73.831924)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487423,Sedan,Sedan,,, +12/09/2021,15:00,,,40.67549,-73.93885,"(40.67549, -73.93885)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488134,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,17:25,BROOKLYN,11206,40.699635,-73.95141,"(40.699635, -73.95141)",,,559 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4487921,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,9:55,BRONX,10456,40.83381,-73.918396,"(40.83381, -73.918396)",TUDOR PLACE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488009,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,23:15,,,40.67753,-73.73085,"(40.67753, -73.73085)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,4:00,QUEENS,11378,40.72246,-73.90456,"(40.72246, -73.90456)",,,57-18 61 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487721,Sedan,,,, +12/18/2021,20:23,QUEENS,11420,40.67484,-73.82344,"(40.67484, -73.82344)",SUTTER AVENUE,115 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4487962,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +12/18/2021,4:12,QUEENS,11434,40.680485,-73.774704,"(40.680485, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4487861,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/18/2021,17:00,MANHATTAN,10022,40.759678,-73.97216,"(40.759678, -73.97216)",EAST 54 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487417,Sedan,Sedan,,, +12/18/2021,7:40,BROOKLYN,11232,40.659107,-73.99576,"(40.659107, -73.99576)",5 AVENUE,25 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487362,Sedan,Sedan,,, +12/18/2021,20:05,,,,,,12 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4487568,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,0:00,QUEENS,11385,40.709312,-73.90939,"(40.709312, -73.90939)",,,2017 HARMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488203,Sedan,,,, +12/18/2021,16:45,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487755,Sedan,,,, +12/18/2021,19:30,,,40.68418,-73.983955,"(40.68418, -73.983955)",BERGEN STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487507,,,,, +12/18/2021,10:25,,,40.66906,-73.88658,"(40.66906, -73.88658)",BARBEY STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488095,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,5:58,BRONX,10461,40.842762,-73.843124,"(40.842762, -73.843124)",,,2635 ROBERTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488117,Sedan,,,, +12/18/2021,15:25,,,40.588955,-74.167595,"(40.588955, -74.167595)",RICHMOND HILL ROAD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488052,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/17/2021,5:37,,,40.694035,-73.72679,"(40.694035, -73.72679)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488161,Sedan,Sedan,,, +12/18/2021,14:30,BROOKLYN,11203,40.64903,-73.928154,"(40.64903, -73.928154)",,,480 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487604,Sedan,,,, +12/18/2021,21:50,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4488065,Sedan,Sedan,,, +12/13/2021,16:15,QUEENS,11379,40.711246,-73.87095,"(40.711246, -73.87095)",80 STREET,68 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488197,E-Bike,Sedan,,, +12/18/2021,4:00,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487905,Sedan,Ambulance,,, +12/18/2021,13:00,BRONX,10468,40.869114,-73.89464,"(40.869114, -73.89464)",,,2757 MORRIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488224,Sedan,,,, +12/16/2021,17:45,,,40.820187,-73.92149,"(40.820187, -73.92149)",EAST 153 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488299,Pick-up Truck,E-Bike,,, +12/18/2021,4:35,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4487450,Sedan,Sedan,,, +12/18/2021,16:10,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/18/2021,14:00,,,,,,HUTCHINSON RIVER PARKWAY,ORCHARD BEACH ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488138,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,19:20,,,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487890,Pick-up Truck,Sedan,,, +12/18/2021,20:35,MANHATTAN,10016,40.7441,-73.97637,"(40.7441, -73.97637)",EAST 33 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487430,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,6:30,QUEENS,11412,40.707325,-73.756134,"(40.707325, -73.756134)",,,109-11 202 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487491,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,9:40,,,40.799305,-73.94324,"(40.799305, -73.94324)",EAST 116 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488019,Moped,Sedan,,, +12/18/2021,8:46,BRONX,10452,40.840633,-73.915184,"(40.840633, -73.915184)",EAST 171 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488005,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,9:20,QUEENS,11104,40.743267,-73.92436,"(40.743267, -73.92436)",,,45-59 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487409,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/18/2021,0:01,QUEENS,11040,40.75279,-73.70219,"(40.75279, -73.70219)",,,77-40 HEWLETT STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4488162,Pick-up Truck,Dump,Sedan,, +11/28/2021,21:54,,,40.686996,-73.95685,"(40.686996, -73.95685)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488249,Sedan,,,, +12/17/2021,7:34,BROOKLYN,11208,40.67637,-73.88323,"(40.67637, -73.88323)",LINWOOD STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488061,Sedan,Bus,,, +12/18/2021,20:20,,,40.83441,-73.94986,"(40.83441, -73.94986)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4487696,Sedan,Sedan,,, +12/17/2021,7:45,BROOKLYN,11217,40.68011,-73.971596,"(40.68011, -73.971596)",,,556 BERGEN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488109,Sedan,Bike,,, +12/18/2021,0:05,BRONX,10465,40.82071,-73.818214,"(40.82071, -73.818214)",,,3997 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4488112,Sedan,Sedan,Sedan,, +12/18/2021,1:45,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",43 AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487333,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,12:00,QUEENS,11433,40.694508,-73.79531,"(40.694508, -73.79531)",,,108-03 157 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488214,Sedan,,,, +12/18/2021,20:54,BRONX,10474,40.814503,-73.88649,"(40.814503, -73.88649)",SPOFFORD AVENUE,FAILE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487782,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,2:20,,,40.828297,-73.95087,"(40.828297, -73.95087)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487841,Sedan,Ambulance,,, +12/13/2021,10:20,,,40.620438,-74.1672,"(40.620438, -74.1672)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488152,Tractor Truck Diesel,Sedan,,, +12/18/2021,9:25,BROOKLYN,11203,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487598,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,5:40,,,40.586338,-73.93421,"(40.586338, -73.93421)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4488033,Sedan,,,, +12/18/2021,11:15,,,40.76635,-73.873024,"(40.76635, -73.873024)",97 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/28/2021,0:00,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488189,Sedan,Sedan,Sedan,, +12/18/2021,18:00,QUEENS,11693,40.5867,-73.81704,"(40.5867, -73.81704)",BEACH 94 STREET,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487822,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,18:00,BROOKLYN,11210,40.625866,-73.93469,"(40.625866, -73.93469)",,,4200 AVENUE K,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487484,Sedan,Sedan,,, +12/18/2021,10:24,BROOKLYN,11235,40.587418,-73.95936,"(40.587418, -73.95936)",EAST 11 STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487388,Sedan,Sedan,,, +12/18/2021,19:15,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",CONEY ISLAND AVENUE,AVENUE P,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4487942,Moped,,,, +12/04/2021,19:00,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4488043,Sedan,,,, +12/18/2021,9:15,MANHATTAN,10012,40.72455,-74.00194,"(40.72455, -74.00194)",WEST BROADWAY,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487538,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,18:39,QUEENS,11355,,,,ROOSEVELT AVENUE,SHEA ROAD,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4487515,Sedan,Sedan,,, +12/18/2021,21:34,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487986,Taxi,Bike,,, +12/17/2021,13:15,,,40.83022,-73.94769,"(40.83022, -73.94769)",WEST 151 STREET,,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,,,4488173,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/18/2021,0:40,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487635,Sedan,Sedan,,, +12/18/2021,3:00,,,40.735424,-73.974754,"(40.735424, -73.974754)",EAST 23 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4487712,Sedan,,,, +12/18/2021,11:10,MANHATTAN,10027,40.80759,-73.954956,"(40.80759, -73.954956)",WEST 120 STREET,MANHATTAN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4488128,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,11:30,,,40.677155,-73.86887,"(40.677155, -73.86887)",CONDUIT BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488081,Sedan,Sedan,,, +12/18/2021,22:56,QUEENS,11411,40.697525,-73.746826,"(40.697525, -73.746826)",FRANCIS LEWIS BOULEVARD,116 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4487764,Sedan,Sedan,,, +12/18/2021,1:47,BROOKLYN,11226,40.654232,-73.94851,"(40.654232, -73.94851)",,,330 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487607,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,0:53,BROOKLYN,11217,40.68728,-73.97979,"(40.68728, -73.97979)",,,49 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488276,Sedan,Sedan,,, +12/16/2021,22:55,BROOKLYN,11207,40.67904,-73.89381,"(40.67904, -73.89381)",,,19 BRADFORD STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4488067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,23:56,BROOKLYN,11207,40.664413,-73.89624,"(40.664413, -73.89624)",,,570 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488076,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,6:45,,,40.78739,-73.938225,"(40.78739, -73.938225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488092,Sedan,Sedan,,, +12/18/2021,11:15,BROOKLYN,11212,40.65608,-73.91737,"(40.65608, -73.91737)",,,409 EAST 95 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487680,Sedan,,,, +02/19/2022,12:43,MANHATTAN,10065,40.767967,-73.96822,"(40.767967, -73.96822)",MADISON AVENUE,EAST 66 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4504363,Station Wagon/Sport Utility Vehicle,Taxi,Bulk Agriculture,, +02/19/2022,22:30,BROOKLYN,11207,40.66256,-73.88824,"(40.66256, -73.88824)",,,730 MILLER AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4504567,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,12:25,BRONX,10469,40.87312,-73.8531,"(40.87312, -73.8531)",,,1176 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4503967,Sedan,Sedan,,, +02/19/2022,5:35,BROOKLYN,11212,40.672073,-73.91135,"(40.672073, -73.91135)",ROCKAWAY AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504132,Sedan,Sedan,,, +02/19/2022,1:09,,,,,,CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4503912,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,17:04,QUEENS,11436,40.67708,-73.79318,"(40.67708, -73.79318)",120 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,8:34,BRONX,10472,40.832897,-73.86287,"(40.832897, -73.86287)",,,1885 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504443,Station Wagon/Sport Utility Vehicle,,,, +03/23/2022,8:30,BRONX,10472,40.82755,-73.87117,"(40.82755, -73.87117)",,,1113 FTELEY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4514529,,,,, +03/27/2022,2:19,BROOKLYN,11216,40.677025,-73.95268,"(40.677025, -73.95268)",BEDFORD AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Other Vehicular,,,,4513649,Bus,Station Wagon/Sport Utility Vehicle,,, +03/10/2022,22:00,BROOKLYN,11233,40.673542,-73.91955,"(40.673542, -73.91955)",HOWARD AVENUE,SAINT MARKS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514630,,,,, +03/11/2022,10:45,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514565,Station Wagon/Sport Utility Vehicle,GOV VEHICL,,, +03/27/2022,0:09,BROOKLYN,11238,40.68031,-73.96793,"(40.68031, -73.96793)",,,550 VANDERBILT AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4513951,Sedan,Sedan,,, +03/27/2022,21:46,,,40.736313,-73.85392,"(40.736313, -73.85392)",62 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4514308,Sedan,,,, +03/27/2022,12:35,BROOKLYN,11207,40.660423,-73.89311,"(40.660423, -73.89311)",,,682 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513843,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,14:00,BROOKLYN,11205,40.690693,-73.95728,"(40.690693, -73.95728)",FRANKLIN AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514252,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/23/2022,18:02,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,,,,4514594,Van,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,23:15,BRONX,10473,40.82672,-73.85112,"(40.82672, -73.85112)",,,2162 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4514491,Sedan,,,, +03/27/2022,20:30,BROOKLYN,11226,40.64477,-73.954735,"(40.64477, -73.954735)",BEDFORD AVENUE,BEVERLEY ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4514072,Sedan,Bike,,, +03/27/2022,16:55,BROOKLYN,11214,40.59232,-73.9931,"(40.59232, -73.9931)",CROPSEY AVENUE,25 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514103,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/22/2022,16:00,MANHATTAN,10035,40.803387,-73.93604,"(40.803387, -73.93604)",,,2293 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514452,Sedan,Box Truck,,, +03/27/2022,20:32,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514175,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,0:50,BROOKLYN,11226,40.652794,-73.946884,"(40.652794, -73.946884)",LINDEN BOULEVARD,NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4513882,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,20:50,,,40.75584,-73.83448,"(40.75584, -73.83448)",HAIGHT STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4513912,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,18:15,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514713,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,12:15,MANHATTAN,10019,40.767918,-73.985725,"(40.767918, -73.985725)",WEST 57 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4513796,Sedan,Bike,,, +03/27/2022,5:00,BROOKLYN,11212,40.657333,-73.899445,"(40.657333, -73.899445)",,,1705 LINDEN BOULEVARD,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4514648,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,13:20,MANHATTAN,10036,40.757477,-73.982185,"(40.757477, -73.982185)",,,1180 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,,,,,4514184,Sedan,,,, +03/27/2022,14:12,BRONX,10456,40.833836,-73.91586,"(40.833836, -73.91586)",EAST 167 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4514001,Sedan,Sedan,,, +03/13/2022,16:00,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4514618,Sedan,,,, +03/27/2022,16:00,QUEENS,11379,40.71398,-73.90006,"(40.71398, -73.90006)",,,61-53 62 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513889,Sedan,Sedan,Sedan,, +03/27/2022,9:00,,,40.86177,-73.91848,"(40.86177, -73.91848)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513920,Sedan,Sedan,,, +03/10/2022,8:15,,,40.815872,-73.9257,"(40.815872, -73.9257)",EAST 144 STREET,CANAL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514467,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,9:39,QUEENS,11691,40.60047,-73.747,"(40.60047, -73.747)",MOTT AVENUE,FRISCO AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4514394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,14:30,QUEENS,11412,40.691994,-73.76111,"(40.691994, -73.76111)",LINDEN BOULEVARD,190 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514428,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,8:30,QUEENS,11411,40.69038,-73.73957,"(40.69038, -73.73957)",,,119-37 223 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4513785,Sedan,Sedan,,, +03/27/2022,19:25,,,,,,WESTMINISTER ROAD,DORCHESTER ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514122,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,1:30,BROOKLYN,11207,40.67677,-73.88949,"(40.67677, -73.88949)",ATLANTIC AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4513828,Sedan,,,, +03/27/2022,2:20,,,,,,MANHATTAN BRIDGE,CANAL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4514211,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +03/27/2022,9:15,MANHATTAN,10036,40.754,-73.98211,"(40.754, -73.98211)",,,33 WEST 42 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4513750,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/27/2022,17:30,,,40.786484,-73.97218,"(40.786484, -73.97218)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4513937,Station Wagon/Sport Utility Vehicle,Taxi,,, +03/27/2022,20:13,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514386,Pick-up Truck,,,, +03/27/2022,15:19,MANHATTAN,10035,40.799503,-73.93771,"(40.799503, -73.93771)",,,234 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514173,Sedan,,,, +03/27/2022,16:35,,,40.733604,-73.84995,"(40.733604, -73.84995)",108 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513864,Sedan,Sedan,,, +03/26/2022,19:45,,,40.557182,-74.19948,"(40.557182, -74.19948)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514580,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/20/2022,9:50,MANHATTAN,10002,40.714146,-73.99744,"(40.714146, -73.99744)",,,1 BOWERY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514545,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,18:31,BROOKLYN,11235,40.589245,-73.94269,"(40.589245, -73.94269)",AVENUE Z,EAST 27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514015,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/27/2022,17:30,,,40.766827,-73.909294,"(40.766827, -73.909294)",25 AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4513971,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +03/21/2022,7:05,MANHATTAN,10034,40.865047,-73.9242,"(40.865047, -73.9242)",,,618 ACADEMY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514482,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,13:25,STATEN ISLAND,10305,40.594227,-74.06296,"(40.594227, -74.06296)",CAPODANNO BOULEVARD,SEASIDE LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514504,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/27/2022,4:29,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514026,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,13:47,QUEENS,11377,40.74447,-73.91464,"(40.74447, -73.91464)",50 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4513855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,4:50,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4513818,Sedan,Sedan,Sedan,, +03/24/2022,16:00,STATEN ISLAND,10310,40.64289,-74.11386,"(40.64289, -74.11386)",RICHMOND TERRACE,BEMENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514609,Sedan,,,, +03/27/2022,17:13,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4514230,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/14/2022,12:30,,,40.8272,-73.94245,"(40.8272, -73.94245)",SAINT NICHOLAS PLACE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4514437,Flat Rack,Sedan,,, +03/27/2022,18:30,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4513901,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +03/27/2022,21:17,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,DYRE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514076,Sedan,Sedan,,, +03/27/2022,23:05,BROOKLYN,11211,40.714455,-73.935295,"(40.714455, -73.935295)",METROPOLITAN AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4514348,Sedan,Sedan,,, +03/27/2022,1:39,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4514161,Taxi,Sedan,,, +03/27/2022,14:10,BROOKLYN,11209,40.61825,-74.03456,"(40.61825, -74.03456)",,,231 94 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4513810,Sedan,Sedan,,, +03/27/2022,4:15,MANHATTAN,10036,40.763084,-73.99298,"(40.763084, -73.99298)",,,689 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513713,Sedan,,,, +03/27/2022,17:25,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",LEFFERTS BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4513941,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/29/2021,16:26,,,40.88455,-73.832344,"(40.88455, -73.832344)",SECOR AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4412779,Sedan,Sedan,,, +04/17/2021,2:00,BROOKLYN,11233,40.67582,-73.930466,"(40.67582, -73.930466)",UTICA AVENUE,DEAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4409613,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2021,17:35,QUEENS,11368,40.740257,-73.86532,"(40.740257, -73.86532)",97 STREET,CHRISTIE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4410290,Taxi,,,, +04/19/2021,8:39,BROOKLYN,11204,40.61424,-73.98824,"(40.61424, -73.98824)",BAY RIDGE AVENUE,20 AVENUE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4410382,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,21:50,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",UNION AVENUE,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412807,Sedan,Bike,,, +04/30/2021,20:38,BROOKLYN,11249,40.699413,-73.95902,"(40.699413, -73.95902)",WALLABOUT STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412809,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,13:10,,,40.89696,-73.854355,"(40.89696, -73.854355)",FURMAN AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4412796,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/30/2021,17:55,BROOKLYN,11211,40.71362,-73.9339,"(40.71362, -73.9339)",,,1031 GRAND STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412805,Sedan,,,, +04/30/2021,21:25,BROOKLYN,11237,40.704956,-73.93152,"(40.704956, -73.93152)",MORGAN AVENUE,THAMES STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4412806,Bike,Sedan,,, +03/26/2021,15:46,BRONX,10451,40.816868,-73.92072,"(40.816868, -73.92072)",,,321 EAST 149 STREET,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4402038,Sedan,E-Scooter,,, +03/25/2022,17:25,BRONX,10455,40.81958,-73.90184,"(40.81958, -73.90184)",,,839 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514688,Sedan,Bike,,, +03/27/2022,9:20,BRONX,10455,40.81343,-73.91003,"(40.81343, -73.91003)",EAST 149 STREET,TRINITY AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4514097,Taxi,Taxi,,, +02/15/2022,15:05,,,40.67187,-73.95464,"(40.67187, -73.95464)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514555,,,,, +03/25/2022,19:30,STATEN ISLAND,10309,40.5523,-74.21307,"(40.5523, -74.21307)",,,23 BARRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514574,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,9:35,STATEN ISLAND,10306,40.568855,-74.10674,"(40.568855, -74.10674)",,,465 NEW DORP LANE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514488,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/20/2022,16:00,BROOKLYN,11233,40.67572,-73.913765,"(40.67572, -73.913765)",,,249 BOYLAND STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4514636,Sedan,Sedan,,, +03/27/2022,2:30,,,40.70481,-73.93932,"(40.70481, -73.93932)",BUSHWICK AVENUE,SEIGEL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4513963,Sedan,Sedan,,, +03/27/2022,1:58,,,40.862923,-73.92777,"(40.862923, -73.92777)",ARDEN STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4514499,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/16/2022,15:22,QUEENS,11367,40.7338,-73.81481,"(40.7338, -73.81481)",MELBOURNE AVENUE,KISSENA BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514673,Sedan,,,, +03/27/2022,22:28,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514198,Sedan,,,, +03/27/2022,14:39,BROOKLYN,11208,40.676857,-73.87101,"(40.676857, -73.87101)",,,1055 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4513844,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +03/27/2022,22:45,BROOKLYN,11201,40.698174,-73.98496,"(40.698174, -73.98496)",,,189 BRIDGE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4514309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,7:30,,,40.675793,-73.94438,"(40.675793, -73.94438)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4514617,Sedan,Sedan,Sedan,, +03/27/2022,21:10,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514176,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,11:30,,,40.69286,-73.87801,"(40.69286, -73.87801)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4513822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,18:59,QUEENS,11372,40.750557,-73.87669,"(40.750557, -73.87669)",,,90-09 37 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4513893,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,18:00,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,VANDERBILT AVENUE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4514442,Taxi,Sedan,,, +03/17/2022,6:00,,,40.6931,-73.95489,"(40.6931, -73.95489)",SPENCER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514431,Sedan,,,, +04/27/2021,14:00,BROOKLYN,11203,40.64203,-73.93116,"(40.64203, -73.93116)",,,4801 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412585,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,17:30,BROOKLYN,11220,40.643322,-74.01217,"(40.643322, -74.01217)",,,5305 5 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411444,Sedan,E-Bike,,, +04/18/2021,21:20,,,40.750294,-73.99485,"(40.750294, -73.99485)",8 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4412429,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,0:00,,,40.704544,-73.727234,"(40.704544, -73.727234)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411847,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,22:25,QUEENS,11411,40.690914,-73.72819,"(40.690914, -73.72819)",LINDEN BOULEVARD,234 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4411531,Sedan,Sedan,,, +04/28/2021,6:16,BRONX,10461,40.846405,-73.842896,"(40.846405, -73.842896)",WATERS PLACE,INDUSTRIAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412347,Box Truck,Pick-up Truck,,, +04/28/2021,0:00,,,40.66566,-73.767624,"(40.66566, -73.767624)",FARMERS BOULEVARD,145 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4411479,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/22/2021,16:00,BROOKLYN,11209,40.621853,-74.023674,"(40.621853, -74.023674)",,,579 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411968,Sedan,Sedan,,, +04/28/2021,19:00,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411826,Sedan,Sedan,,, +04/28/2021,16:50,,,40.669434,-73.9255,"(40.669434, -73.9255)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412506,Taxi,Sedan,,, +03/27/2022,10:05,QUEENS,11385,40.703247,-73.90844,"(40.703247, -73.90844)",GATES AVENUE,SENECA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4513797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,22:40,QUEENS,11361,40.759712,-73.76126,"(40.759712, -73.76126)",46 AVENUE,220 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411808,4 dr sedan,,,, +04/25/2021,16:30,BRONX,10459,40.820065,-73.900826,"(40.820065, -73.900826)",,,860 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4412119,Tractor Truck Gasoline,,,, +04/29/2021,8:45,,,40.602528,-74.015114,"(40.602528, -74.015114)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411700,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,23:35,BROOKLYN,11225,40.669083,-73.95267,"(40.669083, -73.95267)",,,1201 UNION STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412588,Station Wagon/Sport Utility Vehicle,,,, +04/13/2021,14:45,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412007,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/30/2021,9:35,BRONX,10453,40.856106,-73.90646,"(40.856106, -73.90646)",DAVIDSON AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411957,Sedan,Sedan,,, +04/28/2021,15:08,BROOKLYN,11203,40.637215,-73.93274,"(40.637215, -73.93274)",FARRAGUT ROAD,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411678,Station Wagon/Sport Utility Vehicle,,,, +04/11/2021,21:00,BROOKLYN,11231,40.681725,-73.996216,"(40.681725, -73.996216)",PRESIDENT STREET,COURT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412741,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,0:00,,,,,,GRAND CENTRAL PARKWAY,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Other Vehicular,Other Vehicular,,,4411167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,9:00,BROOKLYN,11230,40.62194,-73.96865,"(40.62194, -73.96865)",EAST 7 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412374,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,15:15,QUEENS,11372,40.75314,-73.87262,"(40.75314, -73.87262)",95 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4412168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,15:50,QUEENS,11422,40.65883,-73.74414,"(40.65883, -73.74414)",,,240-11 EDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411465,Bus,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,8:36,BROOKLYN,11209,40.61758,-74.03049,"(40.61758, -74.03049)",93 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411970,Sedan,,,, +04/28/2021,21:47,,,40.847965,-73.87145,"(40.847965, -73.87145)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inattention/Distraction,,,,4411833,Motorbike,Sedan,,, +04/25/2021,23:30,MANHATTAN,10033,40.848114,-73.942085,"(40.848114, -73.942085)",,,227 HAVEN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411897,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,7:19,,,40.83955,-73.91595,"(40.83955, -73.91595)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411575,Station Wagon/Sport Utility Vehicle,Bus,,, +04/30/2021,12:32,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412012,Sedan,Sedan,,, +04/30/2021,17:15,BROOKLYN,11220,40.633564,-74.01595,"(40.633564, -74.01595)",7 AVENUE,GOWANUS EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4412071,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/30/2021,21:15,QUEENS,11372,40.75663,-73.875145,"(40.75663, -73.875145)",93 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,8:36,,,40.81821,-73.96144,"(40.81821, -73.96144)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Tow Hitch Defective,Obstruction/Debris,Unspecified,Unspecified,,4411498,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/30/2021,8:42,,,40.745686,-73.97213,"(40.745686, -73.97213)",EAST 37 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412199,Ambulance,Bus,,, +04/28/2021,17:57,BRONX,10456,40.830914,-73.92047,"(40.830914, -73.92047)",GRAND CONCOURSE,EAST 165 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4412290,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,17:16,,,40.81728,-73.938545,"(40.81728, -73.938545)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4411658,Bike,Motorcycle,,, +04/28/2021,14:45,QUEENS,11368,40.75911,-73.842384,"(40.75911, -73.842384)",36 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411735,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/29/2021,14:40,BROOKLYN,11215,40.67285,-73.97339,"(40.67285, -73.97339)",8 AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411777,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,2:10,STATEN ISLAND,10304,40.62016,-74.076965,"(40.62016, -74.076965)",TOMPKINS AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4412312,Sedan,Sedan,Sedan,, +04/28/2021,6:30,,,40.768276,-73.86524,"(40.768276, -73.86524)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,19:12,,,40.74071,-73.83744,"(40.74071, -73.83744)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4412542,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2021,9:06,,,,,,MAIN STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411938,Sedan,,,, +04/28/2021,23:20,BROOKLYN,11203,40.6465,-73.926895,"(40.6465, -73.926895)",EAST 53 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411507,Sedan,Sedan,,, +04/29/2021,10:03,BROOKLYN,11229,40.60704,-73.95285,"(40.60704, -73.95285)",,,2249 OCEAN AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4411696,Sedan,Sedan,,, +04/29/2021,13:17,MANHATTAN,10075,40.775,-73.9631,"(40.775, -73.9631)",MADISON AVENUE,EAST 77 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411865,Sedan,,,, +04/21/2021,18:19,BROOKLYN,11233,40.678658,-73.92741,"(40.678658, -73.92741)",,,15 ROCHESTER AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4412551,Sedan,Box Truck,Sedan,, +04/29/2021,21:30,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4411929,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/25/2021,1:13,MANHATTAN,10009,40.7276,-73.98531,"(40.7276, -73.98531)",SAINT MARKS PLACE,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412154,Station Wagon/Sport Utility Vehicle,Bike,,, +04/28/2021,16:47,QUEENS,11412,40.688957,-73.76205,"(40.688957, -73.76205)",FARMERS BOULEVARD,118 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412000,Sedan,,,, +04/30/2021,21:14,BROOKLYN,11228,40.614063,-74.01393,"(40.614063, -74.01393)",86 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412103,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,14:25,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411727,Sedan,,,, +04/30/2021,18:40,QUEENS,11356,40.78169,-73.842316,"(40.78169, -73.842316)",126 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,23:20,BRONX,10460,40.838085,-73.88867,"(40.838085, -73.88867)",,,1728 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411636,Sedan,Sedan,,, +04/30/2021,19:50,QUEENS,11366,40.72294,-73.8002,"(40.72294, -73.8002)",168 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412086,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,16:50,,,40.678543,-73.949684,"(40.678543, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412526,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,3:33,BRONX,10462,40.850258,-73.859055,"(40.850258, -73.859055)",,,1920 RADCLIFF AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4411256,Sedan,Pick-up Truck,,, +04/29/2021,17:20,MANHATTAN,10036,,,,WEST 45 STREET,12 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411873,Station Wagon/Sport Utility Vehicle,Bike,,, +04/29/2021,16:46,MANHATTAN,10019,,,,WEST 55 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411872,van,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:00,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411419,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,12:00,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412022,Box Truck,Sedan,,, +04/30/2021,16:45,QUEENS,11413,40.68344,-73.7347,"(40.68344, -73.7347)",FRANCIS LEWIS BOULEVARD,128 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412039,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,11:47,,,40.70022,-73.96219,"(40.70022, -73.96219)",KENT AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411535,Sedan,Sedan,,, +04/25/2021,21:40,BROOKLYN,11234,40.622578,-73.920494,"(40.622578, -73.920494)",,,1268 EAST 57 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411989,Sedan,Sedan,,, +04/29/2021,18:29,,,40.69642,-73.95978,"(40.69642, -73.95978)",KENT AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412413,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/30/2021,23:05,,,40.673824,-73.90839,"(40.673824, -73.90839)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,15:55,BROOKLYN,11231,40.682182,-73.99356,"(40.682182, -73.99356)",,,282 SMITH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411961,Sedan,,,, +04/20/2021,17:00,MANHATTAN,10036,40.757767,-73.98563,"(40.757767, -73.98563)",,,1528 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4412436,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,14:30,BROOKLYN,11212,40.661995,-73.91959,"(40.661995, -73.91959)",EAST 98 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412234,Sedan,Sedan,,, +04/30/2021,16:29,,,40.579826,-73.97622,"(40.579826, -73.97622)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412323,Sedan,Box Truck,,, +04/30/2021,20:00,,,40.7263,-73.94913,"(40.7263, -73.94913)",NORMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412651,Convertible,,,, +04/30/2021,1:35,BRONX,10455,40.812347,-73.90476,"(40.812347, -73.90476)",,,843 EAST 149 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412751,Moped,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,20:00,,,40.73303,-73.8542,"(40.73303, -73.8542)",102 STREET,63 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4411817,Bike,,,, +04/29/2021,11:00,,,40.728474,-73.882614,"(40.728474, -73.882614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412027,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:20,BRONX,10451,40.82048,-73.91285,"(40.82048, -73.91285)",,,3055 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,16:40,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412714,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,17:45,QUEENS,11368,40.752842,-73.8629,"(40.752842, -73.8629)",,,104-18 37 ROAD,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4412173,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,6:00,BROOKLYN,11234,40.61051,-73.923294,"(40.61051, -73.923294)",,,2452 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412465,Bus,Sedan,,, +04/28/2021,17:40,,,40.766666,-73.96707,"(40.766666, -73.96707)",EAST 65 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Turning Improperly,,,,4411581,Sedan,Bike,,, +04/28/2021,9:55,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4411893,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,10:20,MANHATTAN,10033,40.845783,-73.93449,"(40.845783, -73.93449)",,,227 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412597,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,18:00,BROOKLYN,11235,40.57803,-73.95692,"(40.57803, -73.95692)",BRIGHTON BEACH AVENUE,BRIGHTON 13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411611,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,6:00,,,40.600136,-73.99087,"(40.600136, -73.99087)",86 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411398,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,15:10,QUEENS,11370,40.768116,-73.89241,"(40.768116, -73.89241)",,,22-20 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412381,Sedan,,,, +04/29/2021,20:20,BROOKLYN,11212,40.65418,-73.91068,"(40.65418, -73.91068)",LINDEN BOULEVARD,AMBOY STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4412263,Taxi,Sedan,,, +04/16/2021,16:50,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412492,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,13:00,MANHATTAN,10032,40.83716,-73.94646,"(40.83716, -73.94646)",,,884 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411906,Sedan,,,, +04/28/2021,9:00,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411358,Flat Rack,Station Wagon/Sport Utility Vehicle,,, +04/06/2021,9:00,BROOKLYN,11221,40.686108,-73.92971,"(40.686108, -73.92971)",,,210 REID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412562,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,11:00,BROOKLYN,11214,40.608143,-74.00412,"(40.608143, -74.00412)",86 STREET,BAY 16 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411752,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,4:17,BROOKLYN,11201,40.691,-73.989334,"(40.691, -73.989334)",LIVINGSTON STREET,BOERUM PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411767,Sedan,Sedan,,, +04/29/2021,17:30,BROOKLYN,11205,40.69073,-73.96635,"(40.69073, -73.96635)",,,269 WASHINGTON AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4411793,Bike,Sedan,,, +04/23/2021,16:55,,,40.636024,-73.89506,"(40.636024, -73.89506)",AVENUE M,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4412054,Sedan,Sedan,,, +04/30/2021,1:03,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4411925,PK,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,1:10,BROOKLYN,11208,40.67134,-73.87631,"(40.67134, -73.87631)",,,320 MILFORD STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4411389,Sedan,Sedan,,, +04/28/2021,9:45,,,40.82034,-73.940025,"(40.82034, -73.940025)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4411361,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,9:22,,,40.65965,-73.773834,"(40.65965, -73.773834)",NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,10:45,BROOKLYN,11249,40.72118,-73.95866,"(40.72118, -73.95866)",WYTHE AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,20:16,,,40.82113,-73.92565,"(40.82113, -73.92565)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411878,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,13:30,BROOKLYN,11219,40.626183,-73.994156,"(40.626183, -73.994156)",60 STREET,15 AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4411411,Sedan,Sedan,,, +04/29/2021,13:00,,,40.83543,-73.92341,"(40.83543, -73.92341)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412282,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,0:10,BROOKLYN,11203,40.640343,-73.94266,"(40.640343, -73.94266)",BROOKLYN AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Reaction to Uninvolved Vehicle,,,,4411289,Sedan,Sedan,,, +04/28/2021,16:00,BROOKLYN,11235,40.57655,-73.966385,"(40.57655, -73.966385)",BRIGHTON BEACH AVENUE,BRIGHTON 1 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411610,Sedan,,,, +04/28/2021,17:30,,,40.832916,-73.92939,"(40.832916, -73.92939)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412277,Sedan,Motorcycle,,, +04/30/2021,21:00,,,40.760788,-73.91088,"(40.760788, -73.91088)",46 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412385,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,4:30,,,40.825855,-73.828156,"(40.825855, -73.828156)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411857,Pick-up Truck,Sedan,,, +04/28/2021,19:00,BROOKLYN,11224,40.573196,-73.99278,"(40.573196, -73.99278)",WEST 27 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4411993,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,19:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,4411490,Sedan,Sedan,Sedan,Sedan,Sedan +04/30/2021,0:00,BROOKLYN,11228,40.60824,-74.014046,"(40.60824, -74.014046)",,,170 BAY 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412076,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,20:32,BROOKLYN,11238,40.68175,-73.96748,"(40.68175, -73.96748)",ATLANTIC AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4412108,Sedan,Sedan,Sedan,, +04/25/2021,1:00,QUEENS,11378,40.72667,-73.90726,"(40.72667, -73.90726)",,,59-40 55 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412484,Sedan,,,, +04/22/2021,17:58,,,40.75645,-73.97032,"(40.75645, -73.97032)",EAST 51 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412059,Sedan,,,, +03/18/2022,17:00,BROOKLYN,11233,40.675987,-73.91932,"(40.675987, -73.91932)",HOWARD AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514637,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,7:30,QUEENS,11420,40.66771,-73.80912,"(40.66771, -73.80912)",135 ROAD,130 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4412671,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +04/29/2021,16:05,,,40.847965,-73.87145,"(40.847965, -73.87145)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4412244,Sedan,Sedan,Sedan,, +04/24/2021,17:00,STATEN ISLAND,10301,40.6377,-74.08805,"(40.6377, -74.08805)",YORK AVENUE,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412330,Sedan,,,, +04/29/2021,19:45,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412422,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,14:35,BROOKLYN,11208,40.681114,-73.87765,"(40.681114, -73.87765)",LOGAN STREET,DINSMORE PLACE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4411513,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,20:18,BROOKLYN,11220,40.644997,-74.01046,"(40.644997, -74.01046)",,,5008 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411823,Bus,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,19:16,BRONX,10454,40.81417,-73.92122,"(40.81417, -73.92122)",EAST 145 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4412724,Sedan,,,, +04/29/2021,22:41,MANHATTAN,10022,40.757072,-73.96986,"(40.757072, -73.96986)",3 AVENUE,EAST 52 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4411838,Bike,Bike,,, +04/29/2021,3:00,,,40.841026,-73.887245,"(40.841026, -73.887245)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4411628,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/29/2021,23:25,,,40.815937,-73.909134,"(40.815937, -73.909134)",WESTCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4412759,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,8:00,QUEENS,11379,40.725433,-73.872734,"(40.725433, -73.872734)",,,61-88 DRY HARBOR ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4412031,Sedan,,,, +04/29/2021,10:33,BRONX,10459,40.828236,-73.88602,"(40.828236, -73.88602)",WHITLOCK AVENUE,FREEMAN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411949,Sedan,Tractor Truck Diesel,,, +04/28/2021,0:00,BRONX,10458,40.869274,-73.88381,"(40.869274, -73.88381)",,,2971 MARION AVENUE,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4411551,Taxi,Sedan,,, +04/29/2021,1:20,,,40.8119,-73.966255,"(40.8119, -73.966255)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4412440,Sedan,,,, +04/30/2021,23:57,MANHATTAN,10032,40.84394,-73.93903,"(40.84394, -73.93903)",WEST 172 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412606,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,21:20,STATEN ISLAND,10307,40.514057,-74.24178,"(40.514057, -74.24178)",BARNARD AVENUE,CRAIG AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412048,Pick-up Truck,,,, +04/30/2021,14:50,MANHATTAN,10019,40.761612,-73.98453,"(40.761612, -73.98453)",,,218 WEST 50 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4412130,Bus,Sedan,,, +04/28/2021,17:44,,,40.87821,-73.85609,"(40.87821, -73.85609)",PAULDING AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4412514,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/28/2021,17:25,MANHATTAN,10032,40.832764,-73.94583,"(40.832764, -73.94583)",WEST 155 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4411618,Sedan,,,, +04/28/2021,4:45,BROOKLYN,11219,40.63905,-73.99279,"(40.63905, -73.99279)",,,1172 45 STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4411333,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/30/2021,8:55,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",NORTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411910,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,18:27,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,8:05,BROOKLYN,11219,40.629475,-74.004166,"(40.629475, -74.004166)",,,1115 63 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411403,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,9:55,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412794,Sedan,Carry All,,, +04/28/2021,18:30,,,40.762882,-73.809296,"(40.762882, -73.809296)",156 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411470,Sedan,,,, +04/29/2021,7:00,,,40.735764,-73.97491,"(40.735764, -73.97491)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4412095,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,7:50,,,40.794785,-73.96431,"(40.794785, -73.96431)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411747,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2021,19:25,,,40.77022,-73.89562,"(40.77022, -73.89562)",74 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412364,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,17:00,,,40.686344,-73.9234,"(40.686344, -73.9234)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412556,Sedan,Sedan,,, +04/28/2021,15:00,QUEENS,11433,40.69687,-73.78072,"(40.69687, -73.78072)",110 AVENUE,173 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411905,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,17:02,,,,,,LONG ISLAND EXPRESSWAY,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4411798,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,16:46,BRONX,10457,40.851967,-73.897095,"(40.851967, -73.897095)",EAST 180 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411669,Sedan,Van,,, +04/29/2021,13:22,BROOKLYN,11226,40.654255,-73.94842,"(40.654255, -73.94842)",,,333 LENOX ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411754,Motorcycle,Sedan,,, +04/30/2021,8:15,BROOKLYN,11207,40.654427,-73.8908,"(40.654427, -73.8908)",ALABAMA AVENUE,WORTMAN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4411937,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,5:45,MANHATTAN,10003,40.735573,-73.98127,"(40.735573, -73.98127)",,,338 EAST 20 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411422,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,17:02,QUEENS,11373,40.73844,-73.87824,"(40.73844, -73.87824)",51 AVENUE,REEDER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411787,Sedan,,,, +04/28/2021,18:09,QUEENS,11362,40.75271,-73.74144,"(40.75271, -73.74144)",DOUGLASTON PARKWAY,65 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4411454,Sedan,Bike,,, +04/28/2021,15:05,MANHATTAN,10017,40.757233,-73.97605,"(40.757233, -73.97605)",MADISON AVENUE,EAST 49 STREET,,1,0,1,0,0,0,0,0,,,,,,4411715,Bus,,,, +04/28/2021,9:07,BROOKLYN,11226,40.647743,-73.962746,"(40.647743, -73.962746)",,,145 EAST 18 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411366,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/28/2021,22:00,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4411657,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,17:00,,,40.7132,-73.97723,"(40.7132, -73.97723)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4411964,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,18:05,BROOKLYN,11224,40.5787,-73.98734,"(40.5787, -73.98734)",NEPTUNE AVENUE,WEST 20 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412705,Station Wagon/Sport Utility Vehicle,Motorbike,,, +04/29/2021,0:00,BROOKLYN,11234,,,,Flatbush Ave,Belt parkway,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4411981,Sedan,,,, +04/29/2021,0:05,MANHATTAN,10016,40.74608,-73.974945,"(40.74608, -73.974945)",2 AVENUE,EAST 36 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4411562,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,1:59,BRONX,10456,40.82996,-73.90178,"(40.82996, -73.90178)",,,1226 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412338,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,18:08,MANHATTAN,10040,40.86155,-73.92472,"(40.86155, -73.92472)",DYCKMAN STREET,NAGLE AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4412399,Station Wagon/Sport Utility Vehicle,FIRE,,, +04/28/2021,12:00,,,40.840603,-73.91152,"(40.840603, -73.91152)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411592,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,17:32,,,40.73556,-73.915054,"(40.73556, -73.915054)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412080,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,7:30,,,40.675186,-73.873436,"(40.675186, -73.873436)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411932,Sedan,Sedan,,, +03/25/2022,9:30,BRONX,10458,40.851643,-73.88429,"(40.851643, -73.88429)",,,743 EAST 183 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514492,Sedan,,,, +04/28/2021,9:50,,,40.82113,-73.92565,"(40.82113, -73.92565)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4411861,Sedan,AMBULCANCE,,, +04/30/2021,16:30,QUEENS,11364,40.742626,-73.76323,"(40.742626, -73.76323)",,,67-26 212 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,22:20,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4411649,Sedan,,,, +04/28/2021,20:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412142,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,7:45,STATEN ISLAND,10301,40.640907,-74.08134,"(40.640907, -74.08134)",,,25 SHERMAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411704,Station Wagon/Sport Utility Vehicle,Bus,,, +04/23/2021,10:30,,,40.815693,-73.948685,"(40.815693, -73.948685)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4411974,Sedan,,,, +04/30/2021,9:47,QUEENS,11355,40.75584,-73.83448,"(40.75584, -73.83448)",41 AVENUE,HAIGHT STREET,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4412473,Van,,,, +04/28/2021,15:40,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411485,Sedan,,,, +04/29/2021,2:45,,,40.628975,-74.18495,"(40.628975, -74.18495)",GULF AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411684,Sedan,,,, +04/28/2021,23:39,,,40.785294,-73.969345,"(40.785294, -73.969345)",TRANSVERSE ROAD NUMBER THREE,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4411508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,5:15,,,40.666294,-73.79899,"(40.666294, -73.79899)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4412003,Sedan,Sedan,,, +04/29/2021,16:15,,,40.818535,-73.90783,"(40.818535, -73.90783)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412729,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,17:30,BROOKLYN,11228,40.61752,-74.01963,"(40.61752, -74.01963)",,,1037 86 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4411828,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +04/04/2021,0:00,MANHATTAN,10016,40.746326,-73.983574,"(40.746326, -73.983574)",,,32 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412426,Sedan,UNKNOWN,,, +04/28/2021,10:00,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,Unspecified,4411460,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/29/2021,21:00,,,40.623672,-73.8956,"(40.623672, -73.8956)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4411834,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/29/2021,18:27,BRONX,10466,40.89294,-73.85599,"(40.89294, -73.85599)",,,740 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412783,Sedan,Box Truck,,, +04/30/2021,20:30,QUEENS,11694,40.581917,-73.82978,"(40.581917, -73.82978)",BEACH 108 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412451,Sedan,Van,,, +04/20/2021,15:00,,,40.699703,-73.99627,"(40.699703, -73.99627)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,17:44,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411969,Sedan,Sedan,,, +04/30/2021,8:30,,,40.677605,-74.002754,"(40.677605, -74.002754)",HAMILTON AVENUE,NELSON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412091,Sedan,Sedan,,, +04/29/2021,14:51,BRONX,10461,40.854256,-73.84353,"(40.854256, -73.84353)",,,2038 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Passenger Distraction,Passing Too Closely,,,,4412358,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,18:28,BROOKLYN,11223,40.595886,-73.98315,"(40.595886, -73.98315)",AVENUE U,WEST 12 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4411540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,23:27,,,40.845078,-73.91111,"(40.845078, -73.91111)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4411886,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/30/2021,19:35,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,Unspecified,,4412216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,2:00,BROOKLYN,11226,40.654984,-73.95747,"(40.654984, -73.95747)",,,75 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4411743,Dump,,,, +04/28/2021,13:12,MANHATTAN,10016,40.745056,-73.978615,"(40.745056, -73.978615)",3 AVENUE,EAST 33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411430,Pick-up Truck,Taxi,,, +04/30/2021,11:26,BRONX,10463,40.870804,-73.905785,"(40.870804, -73.905785)",,,2681 HEATH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,5:02,,,40.677483,-73.93033,"(40.677483, -73.93033)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412550,,,,, +04/30/2021,3:37,BROOKLYN,11212,40.65715,-73.91572,"(40.65715, -73.91572)",,,450 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4412226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/29/2021,21:30,,,40.61949,-73.94652,"(40.61949, -73.94652)",AVENUE M,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412298,Sedan,,,, +04/28/2021,17:19,BROOKLYN,11206,40.693634,-73.9383,"(40.693634, -73.9383)",,,323 PULASKI STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4411662,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,14:23,MANHATTAN,10007,40.71594,-74.01019,"(40.71594, -74.01019)",,,154 CHAMBERS STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4484853,Sedan,,,, +12/10/2021,0:17,BROOKLYN,11223,40.601017,-73.96937,"(40.601017, -73.96937)",,,2015 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485215,Pickup tru,Sedan,,, +04/29/2021,15:50,QUEENS,11434,40.682358,-73.76714,"(40.682358, -73.76714)",125 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411759,Sedan,,,, +04/30/2021,18:00,BROOKLYN,11206,40.70878,-73.93583,"(40.70878, -73.93583)",,,316 MESEROLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412771,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,11:30,QUEENS,11373,40.741734,-73.881874,"(40.741734, -73.881874)",83 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412533,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/29/2021,12:00,BROOKLYN,11207,40.668255,-73.892006,"(40.668255, -73.892006)",BLAKE AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411942,Sedan,,,, +04/28/2021,6:34,MANHATTAN,10025,40.806133,-73.961555,"(40.806133, -73.961555)",WEST 115 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411525,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,12:45,,,40.768124,-73.90383,"(40.768124, -73.90383)",47 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412369,Tractor Truck Diesel,,,, +04/29/2021,15:15,,,,,,Ring Road,Platinum avenue,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4411885,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,7:00,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411466,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/28/2021,22:25,QUEENS,11411,40.699417,-73.73486,"(40.699417, -73.73486)",115 AVENUE,223 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4411526,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2021,17:20,MANHATTAN,10009,40.72615,-73.978226,"(40.72615, -73.978226)",,,384 EAST 10 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4412160,Taxi,,,, +04/30/2021,6:15,QUEENS,11433,40.688915,-73.795006,"(40.688915, -73.795006)",111 AVENUE,153 STREET,,1,0,0,0,0,0,1,0,Pavement Defective,Unspecified,Unspecified,Unspecified,,4411900,Motorcycle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/28/2021,21:59,,,40.711227,-73.72826,"(40.711227, -73.72826)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4411500,Sedan,Sedan,Motorcycle,, +04/28/2021,17:09,MANHATTAN,10018,40.75529,-73.99493,"(40.75529, -73.99493)",9 AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411692,Sedan,Sedan,,, +04/29/2021,11:00,MANHATTAN,10035,40.805058,-73.93904,"(40.805058, -73.93904)",EAST 125 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411917,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/28/2021,1:50,QUEENS,11419,40.68217,-73.83105,"(40.68217, -73.83105)",110 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4411178,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Van +04/29/2021,11:15,MANHATTAN,10128,40.785557,-73.95327,"(40.785557, -73.95327)",,,1209 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,20:04,,,40.583725,-73.89372,"(40.583725, -73.89372)",AVIATION ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412509,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,12:40,BROOKLYN,11203,40.65989,-73.9342,"(40.65989, -73.9342)",,,554 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411996,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,13:00,,,40.594486,-74.09874,"(40.594486, -74.09874)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4412016,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,17:00,BROOKLYN,11214,40.614193,-74.00194,"(40.614193, -74.00194)",,,1621 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411782,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,16:00,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411449,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/28/2021,19:20,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",2 AVENUE,EAST 126 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4411640,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,14:36,,,40.7684,-73.73755,"(40.7684, -73.73755)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,14:00,QUEENS,11428,40.718952,-73.74726,"(40.718952, -73.74726)",212 PLACE,93 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,13:05,,,40.6525,-73.924644,"(40.6525, -73.924644)",EAST 56 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411677,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,13:00,BROOKLYN,11207,40.672394,-73.89243,"(40.672394, -73.89243)",,,2170 PITKIN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411941,Taxi,,,, +03/27/2022,21:25,BROOKLYN,11222,40.735332,-73.95259,"(40.735332, -73.95259)",,,366 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514056,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,16:00,,,,,,SHEEPSHEAD BAY ROAD,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,7:40,,,40.692722,-73.72673,"(40.692722, -73.72673)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4411699,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/28/2021,13:59,BROOKLYN,11205,40.690636,-73.96831,"(40.690636, -73.96831)",,,241 CLINTON AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,Unspecified,4411429,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/29/2021,11:20,BROOKLYN,11206,40.708492,-73.93887,"(40.708492, -73.93887)",BUSHWICK PLACE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411867,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/28/2021,12:43,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411502,Sedan,Box Truck,,, +04/29/2021,11:20,,,40.746174,-73.82473,"(40.746174, -73.82473)",BOOTH MEMORIAL AVENUE,141 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412001,Ambulance,Sedan,,, +04/30/2021,17:07,BRONX,10454,40.80723,-73.92055,"(40.80723, -73.92055)",EAST 137 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412745,Sedan,,,, +04/29/2021,12:22,,,40.706085,-73.8085,"(40.706085, -73.8085)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4411928,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,8:30,,,40.614456,-74.00993,"(40.614456, -74.00993)",14 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412191,Sedan,,,, +04/29/2021,6:00,QUEENS,11358,40.75583,-73.78734,"(40.75583, -73.78734)",45 AVENUE,194 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411729,Sedan,,,, +04/30/2021,15:31,STATEN ISLAND,10306,40.56968,-74.12623,"(40.56968, -74.12623)",TYSENS LANE,COVERLY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412018,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2021,4:03,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412161,Sedan,,,, +04/30/2021,13:35,MANHATTAN,10016,40.74854,-73.97315,"(40.74854, -73.97315)",EAST 40 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412035,Station Wagon/Sport Utility Vehicle,,,, +04/16/2021,9:33,BROOKLYN,11238,40.686188,-73.95742,"(40.686188, -73.95742)",,,101 QUINCY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412407,Sedan,,,, +04/30/2021,19:06,BROOKLYN,11224,40.577545,-73.99789,"(40.577545, -73.99789)",NEPTUNE AVENUE,WEST 31 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412706,Sedan,Sedan,,, +04/28/2021,17:30,,,40.665848,-73.75187,"(40.665848, -73.75187)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4411461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,20:55,BRONX,10472,40.83347,-73.8638,"(40.83347, -73.8638)",,,1341 LELAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411635,Sedan,Sedan,,, +04/18/2021,16:00,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",AVENUE C,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412349,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,17:41,,,40.84984,-73.934975,"(40.84984, -73.934975)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412430,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,13:30,,,40.776318,-73.962135,"(40.776318, -73.962135)",EAST 79 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,8:45,,,,,,HARLEM RIVER DRIVE RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411661,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,22:47,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411848,Convertible,,,, +04/30/2021,9:43,QUEENS,11413,40.675163,-73.73768,"(40.675163, -73.73768)",,,232-06 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412023,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/28/2021,17:30,QUEENS,11374,40.72802,-73.8615,"(40.72802, -73.8615)",,,64-05 BOOTH STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411481,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,22:35,BROOKLYN,11212,40.66255,-73.90893,"(40.66255, -73.90893)",ROCKAWAY AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412268,Sedan,Sedan,,, +04/30/2021,19:38,,,40.682846,-73.95382,"(40.682846, -73.95382)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4412414,Sedan,Sedan,,, +04/29/2021,20:30,QUEENS,11375,40.71679,-73.83274,"(40.71679, -73.83274)",77 AVENUE,113 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,12:02,BROOKLYN,11218,40.658722,-73.97517,"(40.658722, -73.97517)",PROSPECT PARK SOUTHWEST,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412636,Pick-up Truck,Pick-up Truck,,, +04/26/2021,16:05,BRONX,10467,40.872173,-73.86319,"(40.872173, -73.86319)",BARNES AVENUE,SOUTH OAK DRIVE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4412772,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/30/2021,20:20,,,40.695377,-73.94921,"(40.695377, -73.94921)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4412591,Sedan,Sedan,,, +04/30/2021,13:17,,,40.58478,-73.962555,"(40.58478, -73.962555)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412322,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,10:02,BROOKLYN,11220,40.645973,-74.01631,"(40.645973, -74.01631)",3 AVENUE,53 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4514563,Sedan,Motorcycle,,, +04/29/2021,17:10,,,40.768875,-73.90852,"(40.768875, -73.90852)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412377,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,23:22,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",CANAL STREET,VARICK STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412764,Sedan,,,, +04/29/2021,15:20,QUEENS,11368,40.75232,-73.85959,"(40.75232, -73.85959)",108 STREET,38 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4411768,Sedan,Bike,,, +04/29/2021,11:45,,,40.571266,-74.09118,"(40.571266, -74.09118)",PATTERSON AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4411714,Sedan,,,, +04/30/2021,8:00,QUEENS,11377,40.739956,-73.89421,"(40.739956, -73.89421)",QUEENS BOULEVARD,70 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412527,Van,,,, +04/29/2021,21:55,BROOKLYN,11209,40.630814,-74.02508,"(40.630814, -74.02508)",4 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,Unspecified,4411829,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/28/2021,9:50,,,40.789684,-73.94815,"(40.789684, -73.94815)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411364,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,6:15,,,40.65556,-73.892715,"(40.65556, -73.892715)",STANLEY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411390,Sedan,Tractor Truck Diesel,,, +04/30/2021,9:01,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",CLINTON STREET,EAST HOUSTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4412087,Sedan,,,, +04/28/2021,21:50,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Traffic Control Disregarded,Traffic Control Disregarded,,,4411554,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/30/2021,11:56,BRONX,10463,40.875088,-73.912415,"(40.875088, -73.912415)",,,150 WEST 225 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412450,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,18:05,STATEN ISLAND,10312,40.545147,-74.18286,"(40.545147, -74.18286)",DRUMGOOLE ROAD WEST,JEFFERSON BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412050,Pick-up Truck,,,, +04/29/2021,0:30,,,40.844677,-73.9245,"(40.844677, -73.9245)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411881,Taxi,Sedan,,, +04/29/2021,11:20,QUEENS,11432,40.709557,-73.79628,"(40.709557, -73.79628)",,,166-14 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411763,Sedan,,,, +04/28/2021,6:05,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unsafe Speed,Following Too Closely,,,4411445,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/30/2021,4:18,,,40.762226,-73.96819,"(40.762226, -73.96819)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411913,Taxi,Box Truck,,, +04/29/2021,0:20,QUEENS,11412,40.69802,-73.7623,"(40.69802, -73.7623)",MURDOCK AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411622,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,18:30,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",DE KALB AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411896,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,1:28,,,40.656685,-73.9299,"(40.656685, -73.9299)",CLARKSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412228,Sedan,Sedan,,, +04/28/2021,0:00,BRONX,10455,40.818146,-73.89929,"(40.818146, -73.89929)",LONGWOOD AVENUE,DAWSON STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412121,Sedan,Bike,,, +04/29/2021,18:44,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411918,Sedan,Sedan,,, +04/29/2021,9:30,QUEENS,11368,40.760483,-73.840836,"(40.760483, -73.840836)",,,127-92 WILLETS POINT BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411734,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +03/21/2022,11:50,MANHATTAN,10011,,,,,,99 TENTH AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514566,Taxi,Sedan,,, +04/29/2021,15:00,MANHATTAN,10034,40.864113,-73.92126,"(40.864113, -73.92126)",POST AVENUE,WEST 204 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4412395,Van,Sedan,Sedan,, +04/28/2021,8:20,MANHATTAN,10003,40.73543,-73.982704,"(40.73543, -73.982704)",2 AVENUE,EAST 19 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411335,Ambulance,,,, +04/29/2021,0:05,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411530,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,22:15,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4411564,Taxi,Taxi,,, +04/24/2021,5:00,MANHATTAN,10001,40.746037,-73.9886,"(40.746037, -73.9886)",WEST 29 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412437,Sedan,FDNY RIG,,, +04/29/2021,11:00,,,40.830143,-73.92858,"(40.830143, -73.92858)",ANDERSON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,8:00,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411382,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:40,QUEENS,11356,40.781662,-73.83445,"(40.781662, -73.83445)",,,134-15 20 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411469,Sedan,Sedan,,, +04/30/2021,9:00,BROOKLYN,11222,40.720314,-73.9443,"(40.720314, -73.9443)",,,497 MEEKER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412655,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/27/2021,17:39,BROOKLYN,11228,40.6191,-74.01009,"(40.6191, -74.01009)",,,1264 78 STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4411956,Sedan,Sedan,Sedan,Sedan, +04/28/2021,14:56,MANHATTAN,10004,40.706043,-74.0131,"(40.706043, -74.0131)",,,32 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411670,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,12:00,QUEENS,11691,40.602272,-73.75277,"(40.602272, -73.75277)",,,1925 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412507,Station Wagon/Sport Utility Vehicle,,,, +03/31/2021,17:23,BROOKLYN,11226,40.655884,-73.950134,"(40.655884, -73.950134)",,,1274 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4412055,Sedan,,,, +04/29/2021,14:53,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411973,Sedan,,,, +04/28/2021,22:25,,,40.866474,-73.932175,"(40.866474, -73.932175)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411703,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,9:30,BROOKLYN,11236,40.633606,-73.91623,"(40.633606, -73.91623)",FLATLANDS AVENUE,EAST 76 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411629,Station Wagon/Sport Utility Vehicle,Van,,, +04/30/2021,0:01,,,40.621994,-73.99493,"(40.621994, -73.99493)",65 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4411843,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/28/2021,11:50,QUEENS,11377,40.74073,-73.91539,"(40.74073, -73.91539)",50 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411439,Sedan,,,, +04/30/2021,15:00,,,40.694305,-73.91852,"(40.694305, -73.91852)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412115,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,11:54,,,40.68789,-73.936035,"(40.68789, -73.936035)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412553,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2020,17:30,QUEENS,11436,40.67376,-73.79473,"(40.67376, -73.79473)",ROCKAWAY BOULEVARD,144 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412513,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/29/2021,17:15,BRONX,10458,40.855057,-73.88401,"(40.855057, -73.88401)",EAST 188 STREET,BEAUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411924,Sedan,,,, +04/28/2021,17:00,QUEENS,11001,40.737274,-73.707344,"(40.737274, -73.707344)",,,84-14 261 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411475,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,12:30,BROOKLYN,11236,40.63758,-73.88829,"(40.63758, -73.88829)",,,10122 AVENUE N,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4411802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,8:10,QUEENS,11368,40.749752,-73.86624,"(40.749752, -73.86624)",,,99-17 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412167,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,18:00,BROOKLYN,11225,40.662846,-73.955505,"(40.662846, -73.955505)",,,165 STERLING STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412072,Sedan,Pick-up Truck,,, +04/24/2021,19:00,,,40.72956,-73.87145,"(40.72956, -73.87145)",ELIOT AVENUE,WOODHAVEN BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412011,Sedan,Sedan,,, +04/30/2021,9:14,,,40.806705,-73.96486,"(40.806705, -73.96486)",BROADWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4412466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,11:15,QUEENS,11364,40.74504,-73.77657,"(40.74504, -73.77657)",,,58-20 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412573,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,16:50,BRONX,10474,40.811935,-73.88773,"(40.811935, -73.88773)",RANDALL AVENUE,MANIDA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411950,Van,Tractor Truck Diesel,,, +04/29/2021,17:10,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411982,Sedan,Sedan,,, +04/27/2021,12:35,STATEN ISLAND,10301,40.635933,-74.07585,"(40.635933, -74.07585)",BAY STREET,HANNAH STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412339,Sedan,Bike,,, +04/28/2021,13:00,BROOKLYN,11214,40.613396,-74.00063,"(40.613396, -74.00063)",78 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412198,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,8:00,QUEENS,11692,40.594044,-73.78444,"(40.594044, -73.78444)",,,364 BEACH 54 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412040,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,1:33,,,40.65726,-73.90031,"(40.65726, -73.90031)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4412264,Taxi,,,, +04/30/2021,5:30,BROOKLYN,11239,40.652477,-73.86798,"(40.652477, -73.86798)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4411945,Chassis Cab,Sedan,,, +04/27/2021,15:17,BROOKLYN,11205,,,,MYRTLE AVENUE,ADELPHI STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412494,Station Wagon/Sport Utility Vehicle,Bike,,, +04/29/2021,14:45,,,40.71604,-73.80504,"(40.71604, -73.80504)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411797,Sedan,Sedan,,, +04/29/2021,0:28,BROOKLYN,11225,40.65682,-73.95482,"(40.65682, -73.95482)",,,159 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411748,Sedan,,,, +04/28/2021,22:00,BRONX,10460,40.842537,-73.87784,"(40.842537, -73.87784)",,,1046 EAST 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411665,Station Wagon/Sport Utility Vehicle,Bike,,, +04/29/2021,8:11,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PROSPECT STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4412008,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,15:00,STATEN ISLAND,10301,40.6307,-74.103676,"(40.6307, -74.103676)",,,540 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412313,Sedan,,,, +04/30/2021,15:30,QUEENS,11411,40.689198,-73.733116,"(40.689198, -73.733116)",119 AVENUE,230 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412067,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2021,8:30,BROOKLYN,11226,40.64967,-73.95237,"(40.64967, -73.95237)",ROGERS AVENUE,ERASMUS STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412233,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,22:55,,,40.732708,-73.84322,"(40.732708, -73.84322)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412544,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,16:10,,,40.72773,-73.90674,"(40.72773, -73.90674)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411790,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,22:45,,,40.75537,-73.722244,"(40.75537, -73.722244)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412146,Sedan,,,, +04/29/2021,12:55,BRONX,10455,40.82039,-73.9158,"(40.82039, -73.9158)",,,718 MELROSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412756,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,0:30,BRONX,10454,40.80719,-73.92431,"(40.80719, -73.92431)",WILLIS AVENUE,EAST 135 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4411550,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,16:40,BROOKLYN,11231,,,,COLUMBIA STREET,DEAD END,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412104,Sedan,,,, +04/30/2021,17:10,BRONX,10465,40.827866,-73.823586,"(40.827866, -73.823586)",PHILIP AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4412283,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,22:00,,,40.695114,-73.93194,"(40.695114, -73.93194)",HART STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411892,Sedan,Box Truck,,, +04/28/2021,6:30,MANHATTAN,10003,40.728107,-73.984955,"(40.728107, -73.984955)",,,145 1 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4411251,Motorbike,Flat Bed,,, +04/28/2021,13:00,,,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,16:51,,,40.79084,-73.97457,"(40.79084, -73.97457)",WEST 90 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411877,Taxi,Armored Truck,,, +04/28/2021,14:00,BROOKLYN,11212,40.66659,-73.9032,"(40.66659, -73.9032)",POWELL STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411412,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,1:00,QUEENS,11417,40.673748,-73.84324,"(40.673748, -73.84324)",CROSS BAY BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411837,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,6:30,QUEENS,11412,40.69579,-73.759285,"(40.69579, -73.759285)",115 ROAD,194 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411574,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,22:40,QUEENS,11101,40.740067,-73.935455,"(40.740067, -73.935455)",HUNTERS POINT AVENUE,31 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,9:15,BROOKLYN,11237,40.711033,-73.93378,"(40.711033, -73.93378)",,,201 MORGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411534,Tractor Truck Diesel,Dump,,, +04/30/2021,16:15,QUEENS,11368,40.737682,-73.862305,"(40.737682, -73.862305)",57 AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412537,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/12/2021,17:20,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4412099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,6:16,BROOKLYN,11230,40.62685,-73.97643,"(40.62685, -73.97643)",,,1080 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412383,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,0:45,,,,,,WEST 155 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411909,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,7:00,BROOKLYN,11234,40.622658,-73.93641,"(40.622658, -73.93641)",,,3860 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4411988,Sedan,,,, +04/30/2021,6:30,,,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4412520,Sedan,Sedan,Bus,, +04/28/2021,15:25,QUEENS,11420,40.680756,-73.813446,"(40.680756, -73.813446)",127 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4411489,Sedan,Sedan,,, +04/29/2021,18:00,,,40.725975,-73.7575,"(40.725975, -73.7575)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411801,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,23:30,,,40.682194,-74.00239,"(40.682194, -74.00239)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411960,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:55,BROOKLYN,11222,40.724194,-73.94523,"(40.724194, -73.94523)",,,635 HUMBOLDT STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,,4411708,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/26/2021,23:45,BROOKLYN,11206,40.695095,-73.93845,"(40.695095, -73.93845)",,,764 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412561,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,10:04,BROOKLYN,11235,40.583107,-73.954155,"(40.583107, -73.954155)",NEPTUNE AVENUE,SHORE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411977,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:23,,,40.676003,-73.865395,"(40.676003, -73.865395)",CONDUIT BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,2:45,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Other Vehicular,Driver Inattention/Distraction,Other Vehicular,,4411666,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Tractor Truck Diesel, +04/29/2021,15:30,BRONX,10472,40.832222,-73.87181,"(40.832222, -73.87181)",,,1689 EAST 172 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411816,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,23:36,,,40.760536,-73.95836,"(40.760536, -73.95836)",EAST 62 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412719,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,19:45,,,40.757725,-73.779274,"(40.757725, -73.779274)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Turning Improperly,,,,4411453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,16:57,STATEN ISLAND,10312,40.558887,-74.1977,"(40.558887, -74.1977)",ARTHUR KILL ROAD,ARDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412043,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,16:10,STATEN ISLAND,10310,40.626728,-74.127914,"(40.626728, -74.127914)",,,1145 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412332,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,8:20,BRONX,10467,40.87573,-73.87956,"(40.87573, -73.87956)",EAST 207 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411623,Taxi,Bus,,, +04/07/2021,6:40,QUEENS,11378,40.715515,-73.90245,"(40.715515, -73.90245)",61 STREET,60 DRIVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4412026,Station Wagon/Sport Utility Vehicle,Bike,,, +04/30/2021,16:34,QUEENS,11368,40.75014,-73.860756,"(40.75014, -73.860756)",,,104-49 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412172,Bike,,,, +04/28/2021,12:08,MANHATTAN,10033,40.848,-73.93784,"(40.848, -73.93784)",,,4186 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,0:00,MANHATTAN,10003,40.73132,-73.98862,"(40.73132, -73.98862)",EAST 11 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4412213,Sedan,,,, +04/28/2021,20:00,,,40.742836,-73.97214,"(40.742836, -73.97214)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411965,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,23:15,,,40.71294,-73.82387,"(40.71294, -73.82387)",VANWYCK EXPRESSWAY,HOOVER AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4412136,Sedan,,,, +04/29/2021,18:50,STATEN ISLAND,10306,40.579765,-74.103806,"(40.579765, -74.103806)",BEDFORD AVENUE,HUSSON STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inattention/Distraction,,,,4412015,Sedan,Sedan,,, +04/30/2021,14:24,,,40.762806,-73.993164,"(40.762806, -73.993164)",WEST 47 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412129,Bike,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,13:00,,,40.800583,-73.960075,"(40.800583, -73.960075)",WEST 109 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411978,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,13:50,QUEENS,11377,40.739956,-73.89421,"(40.739956, -73.89421)",QUEENS BOULEVARD,70 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412079,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,5:20,BROOKLYN,11220,40.644455,-74.0183,"(40.644455, -74.0183)",3 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412194,Station Wagon/Sport Utility Vehicle,3-Door,,, +04/07/2021,19:30,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",EAST 58 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412036,Sedan,,,, +04/28/2021,0:00,BRONX,10457,40.84084,-73.901566,"(40.84084, -73.901566)",,,1647 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411651,Ambulance,,,, +04/30/2021,12:55,BROOKLYN,11212,40.66526,-73.92289,"(40.66526, -73.92289)",,,5 SUTTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4412258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,16:20,,,40.721283,-73.8141,"(40.721283, -73.8141)",150 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411474,Sedan,Sedan,,, +04/30/2021,14:00,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",CANAL STREET,VARICK STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412111,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,16:52,QUEENS,11379,40.72556,-73.87965,"(40.72556, -73.87965)",80 STREET,CALDWELL AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412479,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,18:45,,,40.85214,-73.92071,"(40.85214, -73.92071)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4411882,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/20/2021,14:46,MANHATTAN,10009,40.72035,-73.97846,"(40.72035, -73.97846)",,,10 AVENUE D,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412143,Station Wagon/Sport Utility Vehicle,Bike,,, +04/30/2021,12:50,BROOKLYN,11212,40.662888,-73.924965,"(40.662888, -73.924965)",,,105 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412237,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,18:00,QUEENS,11354,,,,NORTHERN BOULEVARD,PRINCE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2021,11:20,MANHATTAN,10002,40.713764,-73.993805,"(40.713764, -73.993805)",,,90 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,19:17,,,40.722485,-73.974396,"(40.722485, -73.974396)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412153,Taxi,,,, +04/28/2021,11:58,BROOKLYN,11207,40.661274,-73.89267,"(40.661274, -73.89267)",,,649 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411946,Sedan,Sedan,,, +04/28/2021,22:30,,,40.77723,-73.946175,"(40.77723, -73.946175)",EAST 88 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411580,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,0:00,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412645,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/22/2021,14:00,BRONX,10452,40.83898,-73.9186,"(40.83898, -73.9186)",MARCY PLACE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412279,Sedan,,,, +04/28/2021,8:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4411277,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,2:43,BROOKLYN,11207,40.659527,-73.896576,"(40.659527, -73.896576)",,,658 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4411517,Sedan,Sedan,,, +04/30/2021,15:30,,,40.717674,-73.81713,"(40.717674, -73.81713)",MAIN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412058,Sedan,Pick-up Truck,Sedan,, +04/28/2021,11:15,MANHATTAN,10037,40.815327,-73.93576,"(40.815327, -73.93576)",EAST 139 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411395,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,15:14,,,40.839092,-73.85005,"(40.839092, -73.85005)",ZEREGA AVENUE,SAINT RAYMOND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4411856,Moped,,,, +04/28/2021,21:00,,,40.728474,-73.882614,"(40.728474, -73.882614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411992,Station Wagon/Sport Utility Vehicle,Carry All,,, +04/29/2021,6:30,MANHATTAN,10009,40.730064,-73.97462,"(40.730064, -73.97462)",,,279 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412094,Ambulance,Sedan,,, +04/29/2021,1:14,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4411527,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +04/28/2021,16:00,,,40.701237,-73.79465,"(40.701237, -73.79465)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411448,Bus,Sedan,,, +04/28/2021,6:00,BROOKLYN,11207,40.65478,-73.889984,"(40.65478, -73.889984)",WORTMAN AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411516,Sedan,,,, +04/28/2021,16:30,BROOKLYN,11220,40.646454,-74.00352,"(40.646454, -74.00352)",,,650 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411822,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,19:20,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,TOMPKINS AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411681,Station Wagon/Sport Utility Vehicle,Bike,,, +04/28/2021,16:35,QUEENS,11414,40.664192,-73.841125,"(40.664192, -73.841125)",CROSS BAY BOULEVARD,156 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,0:50,,,40.58571,-73.91276,"(40.58571, -73.91276)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4411693,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2021,7:20,,,40.698643,-73.94697,"(40.698643, -73.94697)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412406,Sedan,,,, +04/28/2021,3:20,,,,,,G.C.P / L.I.E. (CDR),,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4411182,Sedan,,,, +04/30/2021,18:00,BRONX,10455,40.816032,-73.90809,"(40.816032, -73.90809)",JACKSON AVENUE,EAST 152 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412730,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,0:00,MANHATTAN,10028,40.777542,-73.957016,"(40.777542, -73.957016)",LEXINGTON AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411722,Box Truck,,,, +04/30/2021,20:52,BRONX,10468,40.862732,-73.90333,"(40.862732, -73.90333)",GRAND AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412124,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,19:11,,,40.68444,-73.83192,"(40.68444, -73.83192)",LIBERTY AVENUE,110 STREET,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4411841,Sedan,,,, +12/08/2020,15:18,,,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412425,Sedan,,,, +04/29/2021,1:38,,,40.827904,-73.91218,"(40.827904, -73.91218)",PARK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4411639,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,16:20,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411997,Tow Truck / Wrecker,Sedan,,, +04/29/2021,9:05,,,40.6185,-73.96014,"(40.6185, -73.96014)",CHESTNUT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411780,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,14:30,,,40.608807,-73.9532,"(40.608807, -73.9532)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4412684,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,15:46,QUEENS,11385,40.710964,-73.91601,"(40.710964, -73.91601)",WILLOUGHBY AVENUE,WOODWARD AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4412030,Station Wagon/Sport Utility Vehicle,MOPAD,,, +04/30/2021,17:50,QUEENS,11694,40.571163,-73.86313,"(40.571163, -73.86313)",BEACH 147 STREET,NEPONSIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,21:00,BRONX,10467,40.861275,-73.86366,"(40.861275, -73.86366)",WARING AVENUE,BARNES AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4412357,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,21:30,,,40.823383,-73.91835,"(40.823383, -73.91835)",PARK AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4458935,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,7:30,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4485897,Sedan,,,, +04/30/2021,1:30,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411887,Taxi,Sedan,,, +04/27/2021,14:22,STATEN ISLAND,10307,40.518726,-74.24025,"(40.518726, -74.24025)",ARTHUR KILL ROAD,NASSAU PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412047,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,0:00,QUEENS,11354,40.771572,-73.81323,"(40.771572, -73.81323)",BAYSIDE AVENUE,MURRAY STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4412181,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,15:00,STATEN ISLAND,10308,40.5377,-74.15002,"(40.5377, -74.15002)",HYLAN BOULEVARD,ARMSTRONG AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4412019,Pick-up Truck,Sedan,,, +04/29/2021,18:05,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY NORTH,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412765,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/28/2021,1:27,QUEENS,11105,40.773663,-73.90239,"(40.773663, -73.90239)",42 STREET,21 AVENUE,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,,,4412368,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2021,5:45,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412408,Sedan,Sedan,,, +04/30/2021,15:40,BROOKLYN,11214,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4412075,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,6:53,BROOKLYN,11201,40.68882,-73.98568,"(40.68882, -73.98568)",,,200 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,14:50,,,,,,JEROME AVENUE,EAST 168 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412276,Sedan,,,, +04/29/2021,2:45,BROOKLYN,11221,40.69497,-73.931694,"(40.69497, -73.931694)",,,1056 BROADWAY,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4412571,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,17:00,QUEENS,11414,40.666183,-73.8513,"(40.666183, -73.8513)",153 AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412707,Station Wagon/Sport Utility Vehicle,,,, +04/12/2021,0:00,,,40.696167,-73.97721,"(40.696167, -73.97721)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4412622,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,9:30,QUEENS,11433,40.70448,-73.79267,"(40.70448, -73.79267)",,,166-10 ARCHER AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4411764,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,0:27,MANHATTAN,10003,40.73042,-73.98926,"(40.73042, -73.98926)",,,39 3 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4513662,Bus,Taxi,,, +04/30/2021,12:00,BRONX,10465,40.8275,-73.8408,"(40.8275, -73.8408)",,,999 BRUSH AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412782,Sedan,Sedan,,, +04/30/2021,23:57,BRONX,10460,,,,CROTONA PARK EAST,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412329,,,,, +04/30/2021,19:53,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",6 AVENUE,DEAN STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4412107,Sedan,E-Bike,,, +04/28/2021,15:18,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",2 AVENUE,EAST 125 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411914,Sedan,,,, +04/28/2021,13:00,,,40.67151,-73.76455,"(40.67151, -73.76455)",FARMERS BOULEVARD,140 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4412002,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/29/2021,18:15,MANHATTAN,10029,40.79726,-73.94053,"(40.79726, -73.94053)",EAST 115 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411919,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/30/2021,14:45,STATEN ISLAND,10310,40.637054,-74.10938,"(40.637054, -74.10938)",,,280 DAVIS AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412455,Sedan,Bike,,, +04/28/2021,17:50,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411565,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,0:00,BROOKLYN,11222,40.72867,-73.95529,"(40.72867, -73.95529)",,,137 NOBLE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4411380,Box Truck,Sedan,Sedan,Sedan, +04/28/2021,6:05,BROOKLYN,11207,40.67657,-73.9008,"(40.67657, -73.9008)",EAST NEW YORK AVENUE,WILLIAMS AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411385,Bus,Convertible,,, +04/28/2021,18:44,BROOKLYN,11223,40.593742,-73.96085,"(40.593742, -73.96085)",CONEY ISLAND AVENUE,AVENUE W,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411541,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,7:30,MANHATTAN,10027,40.818283,-73.95481,"(40.818283, -73.95481)",,,547 WEST 133 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4411719,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/28/2021,11:39,,,40.637997,-74.02136,"(40.637997, -74.02136)",65 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411402,Sedan,,,, +04/26/2021,14:00,,,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4412519,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/26/2022,8:45,STATEN ISLAND,10305,40.607605,-74.06196,"(40.607605, -74.06196)",,,8 LYMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514704,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,17:30,,,40.757935,-73.98557,"(40.757935, -73.98557)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412321,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:45,BRONX,10467,40.882496,-73.86989,"(40.882496, -73.86989)",,,3560 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411741,Sedan,,,, +04/28/2021,11:00,BROOKLYN,11204,40.615772,-73.98308,"(40.615772, -73.98308)",64 STREET,21 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4411438,Sedan,Bike,,, +04/30/2021,19:55,QUEENS,11434,40.67897,-73.759834,"(40.67897, -73.759834)",BELKNAP STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412062,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/28/2021,17:18,BRONX,10458,40.86028,-73.89405,"(40.86028, -73.89405)",MARION AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411594,Station Wagon/Sport Utility Vehicle,Bus,,, +04/30/2021,22:30,QUEENS,11429,40.711437,-73.74779,"(40.711437, -73.74779)",211 STREET,104 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412219,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,15:01,BRONX,10471,40.889626,-73.911476,"(40.889626, -73.911476)",WEST 239 STREET,BLACKSTONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,6:45,,,40.804993,-73.934875,"(40.804993, -73.934875)",EAST 127 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4411297,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,14:11,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411933,Sedan,,,, +04/28/2021,20:17,,,40.586205,-73.93417,"(40.586205, -73.93417)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4411542,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/29/2021,11:41,,,40.710533,-73.95514,"(40.710533, -73.95514)",RODNEY STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4411860,Tanker,Sedan,,, +04/30/2021,21:25,BRONX,10452,40.836304,-73.92518,"(40.836304, -73.92518)",WOODYCREST AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412293,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,7:10,BROOKLYN,11231,40.681705,-74.00431,"(40.681705, -74.00431)",COLUMBIA STREET,WOODHULL STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4412090,Bus,,,, +04/30/2021,18:00,BROOKLYN,11225,40.663143,-73.95046,"(40.663143, -73.95046)",,,308 STERLING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412073,Sedan,,,, +04/30/2021,8:38,BRONX,10463,40.885098,-73.90066,"(40.885098, -73.90066)",WEST 238 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412448,Station Wagon/Sport Utility Vehicle,Bus,,, +04/26/2021,10:30,STATEN ISLAND,10309,40.516457,-74.196884,"(40.516457, -74.196884)",,,392 SEGUINE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412051,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,15:00,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4412620,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/29/2021,0:09,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4411583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/30/2021,6:53,MANHATTAN,10013,40.72625,-74.00374,"(40.72625, -74.00374)",AVENUE OF THE AMERICAS,VANDAM STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4411912,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,18:30,BROOKLYN,11212,40.66095,-73.9247,"(40.66095, -73.9247)",,,1054 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412229,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,8:24,BROOKLYN,11211,40.71213,-73.95688,"(40.71213, -73.95688)",,,254 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411621,Station Wagon/Sport Utility Vehicle,Unknown,,, +04/28/2021,9:10,,,40.707027,-73.9236,"(40.707027, -73.9236)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411891,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,19:00,BRONX,10451,40.825424,-73.923485,"(40.825424, -73.923485)",GRAND CONCOURSE,EAST 158 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412292,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,4:00,BRONX,10467,40.866005,-73.86834,"(40.866005, -73.86834)",,,2750 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411345,Sedan,,,, +04/28/2021,11:15,BROOKLYN,11235,40.586555,-73.95237,"(40.586555, -73.95237)",,,1653 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411400,Sedan,Sedan,,, +04/30/2021,19:00,BROOKLYN,11210,40.63006,-73.935524,"(40.63006, -73.935524)",,,4223 AVENUE I,0,0,0,0,0,0,0,0,Unspecified,,,,,4412499,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,22:20,QUEENS,11103,40.76653,-73.90624,"(40.76653, -73.90624)",,,24-69 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412366,Sedan,,,, +04/29/2021,13:00,BRONX,10466,40.885143,-73.8339,"(40.885143, -73.8339)",,,3628 HARPER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4411749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/27/2021,16:55,BROOKLYN,11230,40.622894,-73.96002,"(40.622894, -73.96002)",EAST 16 STREET,AVENUE K,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412319,Bus,Bike,,, +04/28/2021,15:25,BROOKLYN,11221,40.68665,-73.920746,"(40.68665, -73.920746)",JEFFERSON AVENUE,HOWARD AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412548,Bike,Sedan,,, +04/30/2021,19:56,QUEENS,11691,40.60638,-73.754715,"(40.60638, -73.754715)",DIX AVENUE,BEACH CHANNEL DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412461,Sedan,Sedan,,, +04/24/2021,4:00,,,40.664356,-73.734535,"(40.664356, -73.734535)",246 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412066,Sedan,,,, +04/29/2021,11:58,BROOKLYN,11212,40.669888,-73.90932,"(40.669888, -73.90932)",,,1730 PITKIN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4412265,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,19:10,QUEENS,11377,40.74119,-73.90156,"(40.74119, -73.90156)",QUEENS BOULEVARD,64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412068,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,12:15,QUEENS,11423,40.72004,-73.76185,"(40.72004, -73.76185)",,,202-06 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411757,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,17:00,BROOKLYN,11206,40.70938,-73.9371,"(40.70938, -73.9371)",SCHOLES STREET,WATERBURY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,9:00,QUEENS,11432,40.708076,-73.79257,"(40.708076, -73.79257)",90 AVENUE,168 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411426,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,16:40,MANHATTAN,10002,40.71062,-73.98534,"(40.71062, -73.98534)",,,299 SOUTH STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411503,Bike,Motorcycle,,, +04/28/2021,20:34,,,40.88788,-73.85028,"(40.88788, -73.85028)",EAST 229 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411744,Bike,,,, +04/28/2021,21:38,BRONX,10472,40.832542,-73.864006,"(40.832542, -73.864006)",,,1852 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411638,Sedan,,,, +04/30/2021,12:30,,,40.760254,-73.967545,"(40.760254, -73.967545)",EAST 57 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412034,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/29/2021,9:55,QUEENS,11369,40.758793,-73.87256,"(40.758793, -73.87256)",96 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411713,Sedan,Sedan,,, +04/28/2021,6:03,BRONX,10466,40.900433,-73.840706,"(40.900433, -73.840706)",,,2151 NEREID AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4411363,Sedan,,,, +04/29/2021,13:07,BRONX,10458,40.855927,-73.89478,"(40.855927, -73.89478)",PARK AVENUE,EAST 183 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4411902,Sedan,,,, +04/30/2021,13:30,BRONX,10458,40.858814,-73.890236,"(40.858814, -73.890236)",,,2452 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412133,Sedan,Sedan,,, +04/28/2021,6:30,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411446,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,22:02,BRONX,10452,40.83163,-73.92252,"(40.83163, -73.92252)",EAST 165 STREET,GERARD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411880,Sedan,,,, +04/28/2021,2:57,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411272,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/29/2021,20:58,BROOKLYN,11208,40.683105,-73.874115,"(40.683105, -73.874115)",FULTON STREET,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411934,Sedan,Box Truck,,, +04/28/2021,0:35,,,40.77226,-73.92591,"(40.77226, -73.92591)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412728,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,19:39,,,40.844746,-73.90363,"(40.844746, -73.90363)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4411870,Sedan,Sedan,Sedan,, +04/28/2021,12:40,QUEENS,11106,40.765224,-73.9317,"(40.765224, -73.9317)",21 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4411415,Sedan,Sedan,,, +04/30/2021,15:40,,,40.72375,-73.82852,"(40.72375, -73.82852)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412061,Sedan,Box Truck,,, +04/29/2021,18:00,QUEENS,11412,40.691666,-73.76239,"(40.691666, -73.76239)",FARMERS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411783,Sedan,Sedan,,, +04/30/2021,15:00,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4412100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Ambulance,, +04/29/2021,17:22,BROOKLYN,11230,40.62643,-73.972305,"(40.62643, -73.972305)",EAST 5 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4412387,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/28/2021,11:45,BROOKLYN,11249,40.715046,-73.964806,"(40.715046, -73.964806)",SOUTH 1 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411537,Sedan,,,, +04/30/2021,7:00,BROOKLYN,11233,40.674496,-73.90629,"(40.674496, -73.90629)",DEAN STREET,SACKMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412267,Sedan,Bus,,, +04/29/2021,21:30,BROOKLYN,11234,40.63039,-73.93006,"(40.63039, -73.93006)",AVENUE I,EAST 48 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4411987,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/28/2021,9:30,MANHATTAN,10025,40.797867,-73.96758,"(40.797867, -73.96758)",WEST 102 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411406,Sedan,,,, +04/29/2021,19:37,BRONX,10456,40.83008,-73.90301,"(40.83008, -73.90301)",,,631 EAST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411955,Sedan,,,, +04/29/2021,20:30,,,40.72956,-73.87145,"(40.72956, -73.87145)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411811,Pick-up Truck,Sedan,,, +04/29/2021,8:00,,,40.788033,-73.845665,"(40.788033, -73.845665)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411680,Sedan,Sedan,,, +04/29/2021,23:20,,,40.74321,-73.89608,"(40.74321, -73.89608)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412681,CARRIER,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,15:55,,,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4412424,Sedan,Motorcycle,,, +04/28/2021,16:28,BROOKLYN,11231,40.680374,-74.000465,"(40.680374, -74.000465)",,,18 2 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411595,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,0:42,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",STONE AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4412256,Sedan,Sedan,,, +04/30/2021,2:30,BRONX,10455,40.818954,-73.91404,"(40.818954, -73.91404)",3 AVENUE,EAST 154 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412755,Taxi,Sedan,,, +04/28/2021,19:55,MANHATTAN,10014,40.72952,-74.00514,"(40.72952, -74.00514)",CARMINE STREET,7 AVENUE SOUTH,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4411831,Sedan,Bike,,, +04/28/2021,18:17,QUEENS,11385,40.708443,-73.908806,"(40.708443, -73.908806)",,,506 FAIRVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412029,Sedan,Sedan,,, +04/28/2021,8:09,QUEENS,11426,40.724037,-73.72568,"(40.724037, -73.72568)",JAMAICA AVENUE,242 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4411463,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,2:09,,,40.811108,-73.92734,"(40.811108, -73.92734)",3 AVENUE,EAST 138 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411553,Bike,Sedan,,, +04/30/2021,14:25,MANHATTAN,10022,40.760254,-73.967545,"(40.760254, -73.967545)",3 AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412175,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,11:00,,,40.73019,-73.97255,"(40.73019, -73.97255)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4412093,Pick-up Truck,Pick-up Truck,Pick-up Truck,Pick-up Truck, +04/29/2021,5:55,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411614,Pick-up Truck,Sedan,,, +04/30/2021,0:00,MANHATTAN,10032,40.83089,-73.941376,"(40.83089, -73.941376)",WEST 155 STREET,SAINT NICHOLAS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412604,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,8:07,,,40.700546,-73.917076,"(40.700546, -73.917076)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411895,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,14:47,BROOKLYN,11212,40.66885,-73.91635,"(40.66885, -73.91635)",PITKIN AVENUE,STRAUSS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4411579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,17:02,,,40.677338,-73.927536,"(40.677338, -73.927536)",ROCHESTER AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412467,Box Truck,Sedan,,, +04/28/2021,0:00,BROOKLYN,11209,40.61264,-74.03384,"(40.61264, -74.03384)",,,10010 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411493,Sedan,Sedan,,, +04/28/2021,6:45,BROOKLYN,11214,40.60041,-73.9882,"(40.60041, -73.9882)",84 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412197,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,16:38,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4411660,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,16:40,,,40.74357,-73.83772,"(40.74357, -73.83772)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411733,Box Truck,Box Truck,,, +04/30/2021,22:15,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412384,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,6:20,MANHATTAN,10032,40.836224,-73.93957,"(40.836224, -73.93957)",,,2071 AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411908,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,9:30,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4411457,Box Truck,Sedan,,, +04/30/2021,8:15,BROOKLYN,11230,40.626476,-73.95655,"(40.626476, -73.95655)",,,1470 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412301,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,20:30,,,,,,BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4514115,Sedan,Sedan,,, +04/29/2021,6:43,,,40.723698,-74.00792,"(40.723698, -74.00792)",HUDSON STREET,CANAL STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411671,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,1:20,QUEENS,11428,40.71982,-73.74978,"(40.71982, -73.74978)",,,91-15 HOLLIS COURT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411844,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/28/2021,22:00,BROOKLYN,11207,40.671356,-73.88716,"(40.671356, -73.88716)",,,459 BARBEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411940,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,16:45,,,,,,HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411452,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2021,20:47,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",FRANCIS LEWIS BOULEVARD,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4412056,Sedan,,,, +04/28/2021,0:00,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4411236,Sedan,,,, +04/29/2021,9:15,QUEENS,11420,40.674995,-73.80854,"(40.674995, -73.80854)",ROCKAWAY BOULEVARD,130 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4411694,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,10:35,BROOKLYN,11226,40.64169,-73.96341,"(40.64169, -73.96341)",,,1605 CORTELYOU ROAD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412302,Box Truck,Bike,,, +04/28/2021,11:30,BROOKLYN,11201,40.692024,-73.9818,"(40.692024, -73.9818)",FLEET PLACE,WILLOUGHBY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411791,Station Wagon/Sport Utility Vehicle,Bike,,, +04/30/2021,4:55,QUEENS,11355,40.74125,-73.81912,"(40.74125, -73.81912)",150 STREET,60 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4411998,Station Wagon/Sport Utility Vehicle,Bike,,, +03/28/2021,21:30,,,40.679276,-73.92906,"(40.679276, -73.92906)",UTICA AVENUE,FULTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412554,,,,, +04/28/2021,7:40,,,40.714622,-73.829704,"(40.714622, -73.829704)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4411391,Sedan,Sedan,,, +04/27/2021,20:15,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4412145,Taxi,,,, +04/29/2021,12:56,BRONX,10460,40.839863,-73.888145,"(40.839863, -73.888145)",EAST 175 STREET,WATERLOO PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4411923,Sedan,Convertible,Sedan,Station Wagon/Sport Utility Vehicle, +04/28/2021,21:20,,,40.766552,-73.77255,"(40.766552, -73.77255)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411476,Sedan,Sedan,,, +04/30/2021,18:13,BROOKLYN,11231,40.6737,-74.00444,"(40.6737, -74.00444)",HENRY STREET,LORRAINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412105,Sedan,,,, +04/29/2021,11:40,QUEENS,11694,40.58501,-73.82619,"(40.58501, -73.82619)",BEACH 104 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411769,Sedan,UNK,,, +04/29/2021,9:00,BRONX,10461,40.847332,-73.831375,"(40.847332, -73.831375)",HOBART AVENUE,BUHRE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4411730,,,,, +04/28/2021,13:35,BROOKLYN,11212,40.6687,-73.90372,"(40.6687, -73.90372)",,,237 POWELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4411645,Sedan,Sedan,,, +03/27/2022,15:00,,,40.6148,-73.98766,"(40.6148, -73.98766)",68 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514149,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,14:00,MANHATTAN,10002,40.717648,-73.98868,"(40.717648, -73.98868)",ESSEX STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412088,Sedan,,,, +04/27/2021,16:05,,,,,,38 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412528,Sedan,Sedan,Sedan,, +04/30/2021,23:00,BROOKLYN,11233,40.67974,-73.92214,"(40.67974, -73.92214)",RALPH AVENUE,SUMPTER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412574,Pick-up Truck,Sedan,,, +04/28/2021,9:30,,,40.889927,-73.9084,"(40.889927, -73.9084)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411966,Box Truck,,,, +04/25/2021,19:45,,,40.853714,-73.92681,"(40.853714, -73.92681)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412431,Sedan,,,, +04/29/2021,20:15,,,40.843063,-73.90954,"(40.843063, -73.90954)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4411875,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:30,BROOKLYN,11234,40.615585,-73.92264,"(40.615585, -73.92264)",,,1722 EAST 54 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411983,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,9:00,BRONX,10459,40.82193,-73.88844,"(40.82193, -73.88844)",BRYANT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4412122,Bus,Bus,,, +04/28/2021,16:30,,,40.58461,-73.92711,"(40.58461, -73.92711)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4412341,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/29/2021,22:30,BROOKLYN,11211,40.70997,-73.962425,"(40.70997, -73.962425)",,,175 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411824,Sedan,Sedan,,, +04/26/2021,15:00,BROOKLYN,11238,0,0,"(0.0, 0.0)",PROSPECT PLACE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412521,Box Truck,Motorcycle,,, +04/29/2021,0:00,BRONX,10458,40.86309,-73.88946,"(40.86309, -73.88946)",WEBSTER AVENUE,EAST 194 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4411849,Sedan,E-Scooter,,, +04/25/2021,13:50,QUEENS,11691,40.596325,-73.76673,"(40.596325, -73.76673)",ROCKAWAY FREEWAY,SEAGIRT BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4412041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/28/2021,17:45,QUEENS,11385,40.7122,-73.86208,"(40.7122, -73.86208)",COOPER AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,21:57,MANHATTAN,10018,40.75428,-73.99255,"(40.75428, -73.99255)",,,302 WEST 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412438,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/28/2021,15:50,,,40.68175,-73.96748,"(40.68175, -73.96748)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/01/2021,16:10,,,40.643787,-74.018845,"(40.643787, -74.018845)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412098,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,1:30,QUEENS,11422,40.6722,-73.734604,"(40.6722, -73.734604)",135 AVENUE,BROOKVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4411796,Sedan,,,, +04/29/2021,11:26,BROOKLYN,11236,40.641277,-73.88406,"(40.641277, -73.88406)",EAST 108 STREET,FLATLANDS 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412083,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,7:15,BROOKLYN,11211,40.71148,-73.9456,"(40.71148, -73.9456)",GRAND STREET,MANHATTAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411533,Sedan,Bike,,, +04/28/2021,17:40,BROOKLYN,11238,40.681137,-73.95567,"(40.681137, -73.95567)",FRANKLIN AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4412415,Sedan,Sedan,,, +04/28/2021,16:30,BRONX,10459,40.830227,-73.898575,"(40.830227, -73.898575)",FREEMAN STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411652,Sedan,,,, +04/28/2021,19:40,MANHATTAN,10001,40.75045,-73.9873,"(40.75045, -73.9873)",AVENUE OF THE AMERICAS,WEST 35 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4412284,Sedan,Bike,,, +04/30/2021,17:00,MANHATTAN,10006,40.710876,-74.01439,"(40.710876, -74.01439)",LIBERTY STREET,WEST STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412110,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,14:00,,,40.66461,-73.77319,"(40.66461, -73.77319)",145 AVENUE,175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411468,Sedan,,,, +04/27/2021,12:25,,,40.852386,-73.90369,"(40.852386, -73.90369)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4411972,Sedan,Sedan,,, +04/30/2021,12:30,BROOKLYN,11234,40.620285,-73.93438,"(40.620285, -73.93438)",,,2036 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4412508,E-Bike,Sedan,,, +04/29/2021,18:53,BROOKLYN,11203,40.654102,-73.9258,"(40.654102, -73.9258)",EAST 55 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412236,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,16:00,,,40.76738,-73.759735,"(40.76738, -73.759735)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412009,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:10,QUEENS,11377,40.74447,-73.911514,"(40.74447, -73.911514)",53 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4411440,Sedan,Bike,,, +04/28/2021,16:30,QUEENS,11105,40.774567,-73.90665,"(40.774567, -73.90665)",,,21-60 37 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passenger Distraction,,,,4411688,Bike,Sedan,,, +04/28/2021,16:30,STATEN ISLAND,10301,40.63404,-74.09884,"(40.63404, -74.09884)",,,488 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411702,Sedan,,,, +04/30/2021,17:00,,,40.698643,-73.94697,"(40.698643, -73.94697)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412592,Sedan,Sedan,,, +04/29/2021,2:55,,,40.86952,-73.84443,"(40.86952, -73.84443)",EAST GUN HILL ROAD,FENTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4412781,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,15:42,BROOKLYN,11221,40.69614,-73.92726,"(40.69614, -73.92726)",EVERGREEN AVENUE,DE KALB AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412116,Sedan,,,, +04/30/2021,23:18,BROOKLYN,11222,40.726246,-73.957886,"(40.726246, -73.957886)",,,90 QUAY STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4412653,Box Truck,Box Truck,,, +04/28/2021,21:34,,,40.84247,-73.85335,"(40.84247, -73.85335)",EAST TREMONT AVENUE,BRONXDALE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4412361,Sedan,Sedan,,, +04/30/2021,15:20,,,,,,EAST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412746,Sedan,Sedan,,, +04/29/2021,14:40,,,,,,GRAND CENTRAL PARKWAY,111 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412171,Sedan,,,, +04/28/2021,20:33,BRONX,10468,40.878056,-73.892136,"(40.878056, -73.892136)",GOULDEN AVENUE,WEST 205 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411549,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,15:25,,,40.827595,-73.85004,"(40.827595, -73.85004)",BRUCKNER BOULEVARD,CASTLE HILL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411632,Sedan,Sedan,,, +04/28/2021,17:55,QUEENS,11420,0,0,"(0.0, 0.0)",111 AVENUE,114 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4411488,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,16:00,MANHATTAN,10023,40.772022,-73.979805,"(40.772022, -73.979805)",,,10 WEST 65 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411805,AMBULANCE,Bus,,, +04/29/2021,0:50,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411951,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/29/2021,23:12,BRONX,10455,40.81346,-73.91022,"(40.81346, -73.91022)",,,674 EAST 149 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4412718,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,7:50,,,40.722137,-73.82436,"(40.722137, -73.82436)",137 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412650,Bus,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,11:00,,,40.738575,-73.845345,"(40.738575, -73.845345)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412212,Pick-up Truck,Sedan,,, +04/28/2021,8:00,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412010,Sedan,Sedan,,, +04/28/2021,16:51,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4411523,Sedan,Sedan,,, +04/29/2021,13:25,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411888,Sedan,Taxi,,, +04/28/2021,11:47,,,40.870823,-73.8721,"(40.870823, -73.8721)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4412775,Sedan,Sedan,,, +04/30/2021,21:15,BRONX,10469,40.867733,-73.85861,"(40.867733, -73.85861)",ARNOW AVENUE,PAULDING AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4412360,Taxi,Sedan,,, +04/29/2021,16:38,QUEENS,11691,40.605164,-73.75485,"(40.605164, -73.75485)",,,21-48 MOTT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4412463,Station Wagon/Sport Utility Vehicle,,,, +03/18/2022,17:05,BROOKLYN,11233,40.670868,-73.9198,"(40.670868, -73.9198)",HOWARD AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514632,Sedan,,,, +04/28/2021,13:44,BROOKLYN,11203,40.654327,-73.9221,"(40.654327, -73.9221)",KINGS HIGHWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412231,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,9:45,BRONX,10462,40.83389,-73.85466,"(40.83389, -73.85466)",WESTCHESTER AVENUE,OLMSTEAD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411739,Station Wagon/Sport Utility Vehicle,Van,,, +04/29/2021,16:30,,,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412536,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,8:47,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412379,Taxi,,,, +04/29/2021,19:04,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4411944,Sedan,Sedan,Sedan,, +04/22/2021,15:20,BROOKLYN,11221,40.691555,-73.93677,"(40.691555, -73.93677)",LAFAYETTE AVENUE,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412560,Sedan,Sedan,,, +04/29/2021,8:14,BRONX,10460,40.839615,-73.88974,"(40.839615, -73.88974)",,,857 CROTONA PARK NORTH,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4411664,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,22:30,QUEENS,11377,40.74875,-73.90077,"(40.74875, -73.90077)",,,37-67 62 STREET,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,Unspecified,Unspecified,,4412097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/29/2021,22:13,MANHATTAN,10019,40.764168,-73.98474,"(40.764168, -73.98474)",WEST 53 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411883,Sedan,Bike,,, +04/29/2021,13:34,BROOKLYN,11215,40.671783,-73.9742,"(40.671783, -73.9742)",8 AVENUE,MONTGOMERY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411775,Sedan,Sedan,,, +04/28/2021,21:45,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4411528,Sedan,Sedan,,, +04/30/2021,16:45,,,40.54653,-74.180435,"(40.54653, -74.180435)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,10:18,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",HILLSIDE AVENUE,PARSONS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411765,Motorcycle,Sedan,,, +04/28/2021,13:25,BRONX,10457,40.848335,-73.89309,"(40.848335, -73.89309)",,,577 EAST 179 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4411667,Pick-up Truck,Sedan,,, +04/28/2021,3:40,,,40.725174,-73.97274,"(40.725174, -73.97274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4411183,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/29/2021,12:56,,,40.770424,-73.96222,"(40.770424, -73.96222)",LEXINGTON AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411724,Sedan,E-Bike,,, +04/22/2021,12:30,BROOKLYN,11213,40.67202,-73.93083,"(40.67202, -73.93083)",,,198 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412512,Sedan,,,, +04/29/2021,22:15,BROOKLYN,11234,40.621216,-73.93539,"(40.621216, -73.93539)",FLATBUSH AVENUE,FLATLANDS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4411994,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,18:07,,,40.697083,-73.83048,"(40.697083, -73.83048)",118 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411927,Sedan,,,, +04/30/2021,7:50,MANHATTAN,10029,40.796,-73.93542,"(40.796, -73.93542)",EAST 116 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411920,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/29/2021,7:15,,,40.63856,-74.13194,"(40.63856, -74.13194)",,,81 ANN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411689,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,15:30,BROOKLYN,11217,40.68582,-73.979904,"(40.68582, -73.979904)",,,475 STATE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411456,Sedan,Sedan,,, +04/28/2021,22:00,BROOKLYN,11209,40.622295,-74.02186,"(40.622295, -74.02186)",,,8220 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412152,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,13:46,QUEENS,11377,40.746185,-73.90813,"(40.746185, -73.90813)",WOODSIDE AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412691,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/28/2021,17:35,,,40.7083,-74.01125,"(40.7083, -74.01125)",BROADWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411568,Sedan,Bike,,, +04/28/2021,6:22,BROOKLYN,11207,40.656116,-73.89666,"(40.656116, -73.89666)",DE WITT AVENUE,HINSDALE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411386,Sedan,Bike,,, +04/28/2021,13:55,,,40.728104,-73.979004,"(40.728104, -73.979004)",AVENUE B,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412158,Sedan,Box Truck,,, +04/29/2021,23:30,,,40.708504,-73.81954,"(40.708504, -73.81954)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411962,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,19:08,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412280,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,12:30,MANHATTAN,10001,40.750786,-74.00564,"(40.750786, -74.00564)",11 AVENUE,WEST 26 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4411979,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,Dump, +04/17/2021,17:30,,,,,,STATION ROAD,192,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412184,Sedan,Sedan,,, +04/29/2021,13:11,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",EAST 126 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4411915,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,22:05,QUEENS,11104,40.74565,-73.92485,"(40.74565, -73.92485)",43 AVENUE,39 PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4412078,Bike,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,8:30,BROOKLYN,11215,40.67232,-73.98933,"(40.67232, -73.98933)",,,210 7 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411560,Sedan,Bike,,, +04/27/2021,20:10,QUEENS,11385,40.69757,-73.90758,"(40.69757, -73.90758)",JEFFERSON AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412020,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,16:40,QUEENS,11434,40.681393,-73.787964,"(40.681393, -73.787964)",155 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4513950,Sedan,Sedan,Sedan,, +04/13/2021,14:00,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412409,Motorcycle,Sedan,,, +04/30/2021,6:40,,,40.64332,-74.01945,"(40.64332, -74.01945)",3 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4412196,Sedan,Sedan,,, +04/29/2021,12:40,MANHATTAN,10003,40.73129,-73.9904,"(40.73129, -73.9904)",EAST 10 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4412165,Sedan,Sedan,Sedan,, +04/30/2021,15:53,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412037,Station Wagon/Sport Utility Vehicle,Dump,,, +04/30/2021,9:10,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4412709,Sedan,Sedan,Sedan,, +04/28/2021,19:00,BROOKLYN,11211,40.711163,-73.95781,"(40.711163, -73.95781)",,,167 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4411859,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,23:10,,,40.862923,-73.92777,"(40.862923, -73.92777)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411707,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,22:25,MANHATTAN,10003,40.73132,-73.98862,"(40.73132, -73.98862)",EAST 11 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4412144,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,15:20,BRONX,10460,40.835808,-73.89083,"(40.835808, -73.89083)",BOSTON ROAD,SEABURY PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4411646,Sedan,Sedan,,, +04/26/2021,8:51,,,40.80133,-73.950195,"(40.80133, -73.950195)",WEST 115 STREET,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4411976,Sedan,Bus,,, +04/28/2021,16:47,BROOKLYN,11219,40.628643,-74.005936,"(40.628643, -74.005936)",65 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4411492,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,13:10,,,40.84984,-73.934975,"(40.84984, -73.934975)",WADSWORTH AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4412432,Sedan,,,, +04/30/2021,17:35,BROOKLYN,11235,40.579185,-73.96401,"(40.579185, -73.96401)",BRIGHTON 4 STREET,OCEANVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412328,Sedan,,,, +04/30/2021,17:49,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",5 AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412106,Taxi,,,, +04/29/2021,15:23,,,40.787544,-73.82394,"(40.787544, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412005,Sedan,Flat Bed,,, +04/26/2021,22:25,,,40.684887,-74.00111,"(40.684887, -74.00111)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,21:20,BROOKLYN,11220,40.632446,-74.01272,"(40.632446, -74.01272)",,,6521 8 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411820,Sedan,Sedan,,, +04/28/2021,17:00,BROOKLYN,11208,40.67264,-73.87281,"(40.67264, -73.87281)",SUTTER AVENUE,CHESTNUT STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4411511,Convertible,Bike,,, +04/29/2021,23:35,BROOKLYN,11236,40.65293,-73.897026,"(40.65293, -73.897026)",,,543 EAST 108 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411836,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,20:14,,,40.58353,-73.971214,"(40.58353, -73.971214)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412333,Sedan,Motorcycle,,, +04/30/2021,5:45,QUEENS,11413,40.677925,-73.75486,"(40.677925, -73.75486)",SPRINGFIELD BOULEVARD,136 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412042,Tractor Truck Diesel,Sedan,,, +04/29/2021,6:45,,,40.718857,-73.946236,"(40.718857, -73.946236)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412790,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,16:23,MANHATTAN,10027,40.80821,-73.95056,"(40.80821, -73.95056)",,,243 WEST 123 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411947,Sedan,Concrete Mixer,,, +04/30/2021,8:06,STATEN ISLAND,10301,40.63346,-74.076546,"(40.63346, -74.076546)",VANDUZER STREET,GRANT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412454,Sedan,Sedan,,, +04/30/2021,0:00,,,40.783268,-73.82485,"(40.783268, -73.82485)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4412476,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/28/2021,13:57,QUEENS,11412,40.697117,-73.74839,"(40.697117, -73.74839)",116 AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411624,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/28/2021,16:07,BROOKLYN,11223,40.602478,-73.96636,"(40.602478, -73.96636)",AVENUE S,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411538,Sedan,Ambulance,,, +04/23/2021,17:40,BROOKLYN,11204,40.62318,-73.98611,"(40.62318, -73.98611)",18 AVENUE,58 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4412371,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/29/2021,14:30,STATEN ISLAND,10308,40.560707,-74.14865,"(40.560707, -74.14865)",,,47 JUMEL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412014,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,13:45,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",BROADWAY,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412266,Sedan,Sedan,,, +04/23/2021,16:30,STATEN ISLAND,10312,40.532116,-74.15603,"(40.532116, -74.15603)",HYLAN BOULEVARD,HALES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412046,Sedan,,,, +04/29/2021,20:59,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4412069,Convertible,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/30/2021,18:00,QUEENS,11004,40.739338,-73.7081,"(40.739338, -73.7081)",83 AVENUE,261 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412221,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,16:15,QUEENS,11435,40.702274,-73.81154,"(40.702274, -73.81154)",144 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411434,Sedan,,,, +04/28/2021,23:18,QUEENS,11436,40.677055,-73.798485,"(40.677055, -73.798485)",142 PLACE,119 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412132,Sedan,Pick-up Truck,,, +04/29/2021,16:38,,,40.741734,-73.7283,"(40.741734, -73.7283)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4411761,Sedan,,,, +04/28/2021,8:00,MANHATTAN,10022,40.754505,-73.965706,"(40.754505, -73.965706)",1 AVENUE,EAST 51 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411323,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,19:20,QUEENS,11368,40.76225,-73.84219,"(40.76225, -73.84219)",,,127-48 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412541,Box Truck,,,, +04/29/2021,19:40,BROOKLYN,11233,40.672966,-73.91681,"(40.672966, -73.91681)",,,375 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412257,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,20:53,MANHATTAN,10025,40.79296,-73.97378,"(40.79296, -73.97378)",,,256 WEST 93 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411745,Ambulance,Sedan,,, +04/29/2021,1:00,BROOKLYN,11229,40.611683,-73.94694,"(40.611683, -73.94694)",AVENUE P,EAST 27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4411543,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/30/2021,17:30,BROOKLYN,11212,40.66719,-73.919716,"(40.66719, -73.919716)",,,611 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412259,Sedan,Sedan,,, +04/29/2021,22:43,BROOKLYN,11221,40.68896,-73.93326,"(40.68896, -73.93326)",QUINCY STREET,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412569,Sedan,Sedan,,, +04/29/2021,13:00,BRONX,10457,40.848316,-73.89534,"(40.848316, -73.89534)",,,4278 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411903,Sedan,,,, +04/28/2021,11:00,,,40.7152,-73.77847,"(40.7152, -73.77847)",WEXFORD TERRACE,DALNY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411473,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,14:42,QUEENS,11367,40.74318,-73.8355,"(40.74318, -73.8355)",,,130-04 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411800,Sedan,Box Truck,,, +04/02/2021,10:01,BRONX,10469,40.87218,-73.85556,"(40.87218, -73.85556)",,,3227 LACONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412769,Sedan,FORK LIFT,,, +04/30/2021,15:40,BROOKLYN,11234,40.615433,-73.91388,"(40.615433, -73.91388)",MILL AVENUE,AVENUE U,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412516,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,3:59,,,40.72697,-73.98575,"(40.72697, -73.98575)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514455,Sedan,Sedan,,, +04/29/2021,14:30,MANHATTAN,10012,40.7206,-73.99395,"(40.7206, -73.99395)",,,180 BOWERY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4412308,Station Wagon/Sport Utility Vehicle,Bike,,, +12/31/2020,12:06,MANHATTAN,10036,40.7602,-73.996864,"(40.7602, -73.996864)",,,524 WEST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411898,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/29/2021,8:15,MANHATTAN,10031,40.827816,-73.94391,"(40.827816, -73.94391)",CONVENT AVENUE,WEST 150 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4411718,Sedan,Sedan,Sedan,, +04/29/2021,7:58,BROOKLYN,11226,40.653774,-73.95617,"(40.653774, -73.95617)",LENOX ROAD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411779,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,12:00,,,40.768166,-73.83693,"(40.768166, -73.83693)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4411408,Carry All,,,, +04/28/2021,9:40,QUEENS,11377,40.750416,-73.897736,"(40.750416, -73.897736)",35 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4411441,Sedan,Bike,,, +04/28/2021,18:40,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411633,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2021,21:20,,,40.821445,-73.950386,"(40.821445, -73.950386)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,23:10,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411590,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,15:05,BROOKLYN,11230,40.62418,-73.97048,"(40.62418, -73.97048)",OCEAN PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412405,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/28/2021,8:56,,,40.69193,-73.91031,"(40.69193, -73.91031)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4411602,Tow Truck / Wrecker,Sedan,,, +04/29/2021,0:00,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",FLATLANDS AVENUE,EAST 80 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4411806,Sedan,Sedan,,, +04/29/2021,20:50,BROOKLYN,11207,40.67325,-73.886734,"(40.67325, -73.886734)",PITKIN AVENUE,JEROME STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411930,Sedan,,,, +04/28/2021,9:20,MANHATTAN,10005,40.7057,-74.00826,"(40.7057, -74.00826)",,,69 WALL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411293,Box Truck,Sedan,,, +04/30/2021,16:37,BROOKLYN,11229,40.590305,-73.92232,"(40.590305, -73.92232)",GERRITSEN AVENUE,CYRUS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4412074,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/29/2021,16:50,BRONX,10475,40.870396,-73.8259,"(40.870396, -73.8259)",ASCH LOOP,COOP CITY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411854,Sedan,Sedan,,, +04/20/2021,0:00,BRONX,10465,40.82497,-73.81899,"(40.82497, -73.81899)",,,2963 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412275,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,7:19,,,40.6796,-73.80349,"(40.6796, -73.80349)",116 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411991,Sedan,Sedan,,, +04/28/2021,6:00,,,40.851322,-73.94029,"(40.851322, -73.94029)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412488,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,13:50,BRONX,10474,40.81899,-73.8867,"(40.81899, -73.8867)",SENECA AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411952,Sedan,Sedan,,, +04/28/2021,20:50,,,40.678955,-73.86516,"(40.678955, -73.86516)",ELDERTS LANE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4411515,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,17:32,BROOKLYN,11201,40.693012,-73.99077,"(40.693012, -73.99077)",,,32 COURT STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4411814,Bike,,,, +04/30/2021,6:27,,,40.666355,-73.8045,"(40.666355, -73.8045)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,Passing or Lane Usage Improper,,,,4411959,Bus,,,, +04/29/2021,22:32,QUEENS,11426,40.739914,-73.72469,"(40.739914, -73.72469)",244 STREET,81 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412065,Sedan,Sedan,,, +04/23/2021,17:50,,,40.720627,-74.00522,"(40.720627, -74.00522)",AVENUE OF THE AMERICAS,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412763,Sedan,E-Bike,,, +04/09/2021,11:07,,,40.754055,-73.99583,"(40.754055, -73.99583)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412428,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,20:50,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411840,Sedan,,,, +04/30/2021,23:21,,,40.7145,-73.824715,"(40.7145, -73.824715)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4412138,Sedan,,,, +04/24/2021,16:44,BROOKLYN,11203,40.662575,-73.93448,"(40.662575, -73.93448)",EAST NEW YORK AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412033,Sedan,Sedan,Sedan,, +04/30/2021,12:59,,,,,,,,75 WEST DRIVE,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4412623,Bike,E-Bike,,, +04/28/2021,0:50,,,40.828445,-73.83951,"(40.828445, -73.83951)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4411374,Sedan,Tractor Truck Diesel,,, +04/28/2021,13:30,,,40.6217,-74.12403,"(40.6217, -74.12403)",MANOR ROAD,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412320,Sedan,Sedan,,, +04/29/2021,14:00,QUEENS,11368,40.748013,-73.85682,"(40.748013, -73.85682)",,,108-56 45 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411812,Fire truck,Sedan,,, +04/29/2021,19:46,,,40.77486,-73.90891,"(40.77486, -73.90891)",35 STREET,,,2,1,1,0,0,0,1,1,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4412249,Sedan,Motorcycle,Sedan,Sedan, +04/28/2021,22:30,MANHATTAN,10009,40.726997,-73.98287,"(40.726997, -73.98287)",,,137 AVENUE A,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412155,Motorcycle,Convertible,,, +04/30/2021,19:15,,,40.665134,-73.99669,"(40.665134, -73.99669)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412102,Sedan,Sedan,,, +04/28/2021,10:13,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4411548,Carry All,Sedan,,, +04/30/2021,19:00,BROOKLYN,11209,40.62432,-74.02476,"(40.62432, -74.02476)",82 STREET,5 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4412089,Sedan,Sedan,,, +04/26/2021,13:19,,,40.668495,-73.925606,"(40.668495, -73.925606)",BUFFALO AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412529,Sedan,Bike,,, +04/28/2021,2:32,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",FLATLANDS AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411261,Sedan,Pick-up Truck,,, +04/30/2021,21:01,,,,,,BRUCKNER EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4412285,Sedan,,,, +04/28/2021,8:17,QUEENS,11358,40.76604,-73.789986,"(40.76604, -73.789986)",192 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411447,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,15:10,,,40.86219,-73.8717,"(40.86219, -73.8717)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4411582,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/28/2021,22:05,,,40.84036,-73.91807,"(40.84036, -73.91807)",JEROME AVENUE,WEST 170 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,Following Too Closely,,,4411874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/29/2021,18:00,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411784,Sedan,,,, +04/30/2021,5:50,BROOKLYN,11207,40.672607,-73.89992,"(40.672607, -73.89992)",GLENMORE AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411935,Sedan,,,, +04/30/2021,14:20,QUEENS,11375,40.720566,-73.8459,"(40.720566, -73.8459)",AUSTIN STREET,70 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412060,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,20:02,BROOKLYN,11236,40.643185,-73.90704,"(40.643185, -73.90704)",,,1069 EAST 92 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412084,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,18:20,,,40.58428,-73.92529,"(40.58428, -73.92529)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4412101,Motorcycle,,,, +04/28/2021,16:19,BROOKLYN,11206,40.706047,-73.94129,"(40.706047, -73.94129)",HUMBOLDT STREET,BOERUM STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Driver Inattention/Distraction,Unspecified,,,4411536,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/29/2021,17:35,BROOKLYN,11210,40.62841,-73.939476,"(40.62841, -73.939476)",,,1100 EAST 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411986,Sedan,,,, +04/28/2021,10:45,,,40.58428,-73.92529,"(40.58428, -73.92529)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,18:00,BROOKLYN,11233,40.67934,-73.9305,"(40.67934, -73.9305)",,,1711 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412549,Sedan,,,, +04/29/2021,8:28,BROOKLYN,11201,40.689533,-73.991875,"(40.689533, -73.991875)",,,221 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412522,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,13:33,,,,,,SEAGIRT BOULEVARD,GADELL PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4412504,Taxi,Sedan,,, +04/28/2021,17:16,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411701,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,20:49,BROOKLYN,11219,40.625034,-74.0061,"(40.625034, -74.0061)",12 AVENUE,BAY RIDGE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411954,Sedan,,,, +04/28/2021,10:02,BROOKLYN,11203,40.654034,-73.930626,"(40.654034, -73.930626)",,,793 UTICA AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4411675,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,14:00,BRONX,10455,40.81662,-73.90144,"(40.81662, -73.90144)",,,691 DAWSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412118,Sedan,,,, +04/29/2021,12:15,,,40.67173,-73.87926,"(40.67173, -73.87926)",BERRIMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411939,Sedan,Tractor Truck Diesel,,, +04/28/2021,0:00,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411477,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,18:00,QUEENS,11413,40.687992,-73.74847,"(40.687992, -73.74847)",,,121-83 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4411845,Box Truck,,,, +04/23/2021,8:00,QUEENS,11691,40.609913,-73.75362,"(40.609913, -73.75362)",,,14-68 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412045,Sedan,,,, +04/26/2021,12:57,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412716,Sedan,Sedan,,, +04/26/2021,17:20,,,40.712856,-73.9049,"(40.712856, -73.9049)",METROPOLITAN AVENUE,60 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412028,Station Wagon/Sport Utility Vehicle,Bike,,, +04/28/2021,18:20,QUEENS,11413,40.66143,-73.749794,"(40.66143, -73.749794)",230 STREET,145 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411464,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,12:45,BROOKLYN,11209,40.625233,-74.03133,"(40.625233, -74.03133)",,,273 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4411971,Sedan,,,, +04/28/2021,12:12,,,40.836155,-73.87179,"(40.836155, -73.87179)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411637,Motorcycle,Sedan,,, +04/30/2021,13:20,,,40.72545,-73.892654,"(40.72545, -73.892654)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Following Too Closely,,,,4412174,Sedan,Motorcycle,,, +04/30/2021,20:15,,,40.71793,-73.73696,"(40.71793, -73.73696)",JAMAICA AVENUE,218 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412218,Motorcycle,Sedan,,, +04/29/2021,22:00,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4412619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/29/2021,13:00,,,40.76532,-73.771904,"(40.76532, -73.771904)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412013,Ambulance,Sedan,,, +04/30/2021,12:20,BROOKLYN,11209,40.628647,-74.02596,"(40.628647, -74.02596)",78 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412070,Sedan,,,, +04/29/2021,12:40,BROOKLYN,11234,40.631275,-73.91851,"(40.631275, -73.91851)",,,1875 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411984,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,0:00,QUEENS,11411,40.694317,-73.737526,"(40.694317, -73.737526)",LINDEN BOULEVARD,223 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412581,Station Wagon/Sport Utility Vehicle,Dump,,, +04/29/2021,2:01,,,,,,MACOMBS DAM BRIDGE,BORO LINE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4411659,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/28/2021,19:55,BROOKLYN,11217,40.686916,-73.97737,"(40.686916, -73.97737)",LAFAYETTE AVENUE,SAINT FELIX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411483,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,17:52,,,40.85675,-73.90606,"(40.85675, -73.90606)",CLINTON PLACE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,,,4513997,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/30/2021,23:43,BROOKLYN,11234,40.628464,-73.923065,"(40.628464, -73.923065)",AVENUE J,EAST 55 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412501,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,23:35,,,40.759346,-73.91981,"(40.759346, -73.91981)",38 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412365,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/30/2021,0:30,,,40.584625,-73.94713,"(40.584625, -73.94713)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4412077,Sedan,,,, +04/29/2021,13:00,BROOKLYN,11226,40.65151,-73.95345,"(40.65151, -73.95345)",,,175 MARTENSE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412235,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,21:06,BRONX,10462,40.84867,-73.867004,"(40.84867, -73.867004)",SAGAMORE STREET,CRUGER AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4412346,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/27/2022,3:03,BROOKLYN,11212,40.666725,-73.902176,"(40.666725, -73.902176)",,,418 BLAKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514653,Sedan,Sedan,,, +04/28/2021,14:20,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4412778,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/30/2021,21:00,MANHATTAN,10034,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,ACADEMY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412433,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,23:35,BRONX,10470,40.89624,-73.86785,"(40.89624, -73.86785)",,,285 EAST 233 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412780,Sedan,,,, +04/30/2021,15:29,QUEENS,11358,40.7597,-73.80031,"(40.7597, -73.80031)",NORTHERN BOULEVARD,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412006,Bus,,,, +04/28/2021,14:35,BROOKLYN,11217,40.68286,-73.97278,"(40.68286, -73.97278)",SOUTH OXFORD STREET,ATLANTIC AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4411792,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,16:25,MANHATTAN,10032,40.836716,-73.94341,"(40.836716, -73.94341)",,,607 WEST 161 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412594,Sedan,,,, +04/28/2021,15:00,STATEN ISLAND,10310,40.636753,-74.119026,"(40.636753, -74.119026)",,,806 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412327,Sedan,,,, +04/28/2021,11:30,BROOKLYN,11221,40.689274,-73.92399,"(40.689274, -73.92399)",RALPH AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411392,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,16:30,BRONX,10462,40.8361,-73.85471,"(40.8361, -73.85471)",,,2113 STARLING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411770,Sedan,Sedan,,, +04/28/2021,1:49,BRONX,10469,40.876953,-73.83816,"(40.876953, -73.83816)",EAST 222 STREET,GIVAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411362,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,11:58,BRONX,10454,40.803715,-73.91588,"(40.803715, -73.91588)",EAST 135 STREET,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4412754,Sedan,,,, +04/28/2021,15:22,STATEN ISLAND,10301,40.635933,-74.07585,"(40.635933, -74.07585)",BAY STREET,HANNAH STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411710,Sedan,,,, +04/28/2021,16:30,BRONX,10468,40.861706,-73.907135,"(40.861706, -73.907135)",,,2315 ANDREWS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411552,Sedan,,,, +04/27/2021,14:50,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",GLENWOOD ROAD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412150,Sedan,Box Truck,,, +04/28/2021,18:04,,,40.824913,-73.8689,"(40.824913, -73.8689)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411832,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,10:00,BRONX,10451,0,0,"(0.0, 0.0)",CONCOURSE VILLAGE EAST,EAST 161 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411879,Bus,Sedan,,, +04/28/2021,17:39,MANHATTAN,10031,40.82773,-73.94952,"(40.82773, -73.94952)",BROADWAY,WEST 147 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411612,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/28/2021,10:42,BRONX,10458,40.876495,-73.88321,"(40.876495, -73.88321)",MOSHOLU PARKWAY,VANCORTLANDT AVENUE EAST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411416,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,20:00,BROOKLYN,11219,40.632107,-74.00703,"(40.632107, -74.00703)",FORT HAMILTON PARKWAY,62 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,14:14,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412123,Tractor Truck Diesel,Sedan,,, +04/28/2021,21:41,BRONX,10468,40.86247,-73.90029,"(40.86247, -73.90029)",WALTON AVENUE,EAST FORDHAM ROAD,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4411890,Motorcycle,,,, +04/28/2021,20:20,,,40.77234,-73.95269,"(40.77234, -73.95269)",EAST 79 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4411577,Sedan,Bike,,, +04/29/2021,0:05,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411532,Sedan,,,, +04/27/2021,10:00,BROOKLYN,11230,40.62818,-73.96002,"(40.62818, -73.96002)",,,915 EAST 17 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412291,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,0:22,MANHATTAN,10032,40.840485,-73.93837,"(40.840485, -73.93837)",WEST 168 STREET,AUDUBON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4411907,Taxi,Sedan,,, +04/29/2021,16:29,BROOKLYN,11218,40.643166,-73.9905,"(40.643166, -73.9905)",FORT HAMILTON PARKWAY,39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412386,Box Truck,E-Bike,,, +04/30/2021,1:30,QUEENS,11106,40.76066,-73.943306,"(40.76066, -73.943306)",37 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4412380,Sedan,,,, +04/28/2021,10:00,BROOKLYN,11212,40.663437,-73.91208,"(40.663437, -73.91208)",,,694 BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411356,Garbage or Refuse,Sedan,,, +04/28/2021,2:12,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,RALPH AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4411237,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,11:50,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411451,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,18:15,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412057,Sedan,Sedan,,, +04/29/2021,12:00,,,40.644753,-73.92493,"(40.644753, -73.92493)",CLARENDON ROAD,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411755,Sedan,Motorcycle,,, +04/28/2021,21:28,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411505,Taxi,E-Bike,,, +04/28/2021,11:20,QUEENS,11412,40.706753,-73.75384,"(40.706753, -73.75384)",,,204-01 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411425,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/27/2021,8:00,,,40.724262,-73.93745,"(40.724262, -73.93745)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4412652,Sedan,Tow Truck / Wrecker,,, +04/28/2021,18:00,,,40.789307,-73.943405,"(40.789307, -73.943405)",2 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Following Too Closely,Unspecified,4411864,Station Wagon/Sport Utility Vehicle,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,Sedan +04/28/2021,19:25,BROOKLYN,11203,40.652992,-73.94355,"(40.652992, -73.94355)",,,422 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411679,Bus,Garbage or Refuse,,, +04/29/2021,9:22,BROOKLYN,11229,40.598476,-73.93141,"(40.598476, -73.93141)",WHITNEY AVENUE,GERRITSEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411695,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,2:00,,,40.698696,-73.93477,"(40.698696, -73.93477)",MELROSE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514135,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,7:30,QUEENS,11356,40.784916,-73.84213,"(40.784916, -73.84213)",126 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411999,Sedan,,,, +04/29/2021,2:04,BRONX,10473,40.81706,-73.85072,"(40.81706, -73.85072)",,,530 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4411643,Sedan,,,, +04/29/2021,15:00,QUEENS,11372,40.755363,-73.88723,"(40.755363, -73.88723)",80 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4412169,Sedan,,,, +04/30/2021,16:10,BRONX,10454,40.801968,-73.91393,"(40.801968, -73.91393)",,,753 EAST 134 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412713,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/30/2021,11:39,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4411967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/29/2021,14:30,BRONX,10461,40.851917,-73.85262,"(40.851917, -73.85262)",,,1894 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4412353,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,19:15,,,40.705414,-73.78035,"(40.705414, -73.78035)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411731,Sedan,Motorcycle,,, +04/29/2021,9:45,MANHATTAN,10029,40.788055,-73.94433,"(40.788055, -73.94433)",EAST 102 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4411871,Sedan,Sedan,,, +04/26/2021,13:30,,,40.84907,-73.93916,"(40.84907, -73.93916)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412602,Sedan,,,, +04/29/2021,4:22,,,40.74634,-73.829185,"(40.74634, -73.829185)",57 ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412471,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/30/2021,14:30,BROOKLYN,11214,40.604206,-73.99146,"(40.604206, -73.99146)",82 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412204,Sedan,,,, +04/29/2021,6:50,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,20:15,QUEENS,11411,40.701805,-73.74115,"(40.701805, -73.74115)",SPRINGFIELD BOULEVARD,COLFAX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412038,Bus,Sedan,,, +04/30/2021,9:20,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",SOUTH CONDUIT AVENUE,HOOK CREEK BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4412025,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/28/2021,18:50,QUEENS,11693,40.588997,-73.81629,"(40.588997, -73.81629)",BEACH 91 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411458,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,8:45,BROOKLYN,11212,40.66004,-73.91509,"(40.66004, -73.91509)",SARATOGA AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412271,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,12:05,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",TINTON AVENUE,EAST 163 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4411654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/21/2021,17:40,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4412416,Bus,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,14:18,,,40.726437,-74.00566,"(40.726437, -74.00566)",VARICK STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411750,Box Truck,Sedan,,, +04/28/2021,0:00,,,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,,,2,0,0,0,0,0,2,0,Pavement Defective,Following Too Closely,,,,4411545,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,5:30,BROOKLYN,11203,40.64161,-73.93779,"(40.64161, -73.93779)",,,4112 AVENUE D,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4411766,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,8:59,MANHATTAN,10013,40.719997,-74.00913,"(40.719997, -74.00913)",,,56 NORTH MOORE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,1:00,STATEN ISLAND,10310,40.636845,-74.11833,"(40.636845, -74.11833)",,,778 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412331,Sedan,Sedan,,, +04/30/2021,7:00,BROOKLYN,11239,,,,,,590 EGAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411936,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,18:20,,,40.699955,-73.98682,"(40.699955, -73.98682)",SANDS STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411785,Sedan,Sedan,,, +04/29/2021,8:00,QUEENS,11418,40.69816,-73.84672,"(40.69816, -73.84672)",85 AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411921,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,21:30,,,40.75899,-73.83454,"(40.75899, -73.83454)",39 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412472,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/29/2021,11:12,MANHATTAN,10001,,,,12 AVENUE,WEST 26 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4411899,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/28/2021,7:00,BROOKLYN,11207,40.652714,-73.8906,"(40.652714, -73.8906)",COZINE AVENUE,MALTA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411387,Trailer,Sedan,,, +04/29/2021,21:50,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4412784,Sedan,,,, +04/30/2021,16:35,MANHATTAN,10002,40.712154,-73.99612,"(40.712154, -73.99612)",,,81 MADISON STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412760,TRUCK,,,, +04/29/2021,0:19,,,40.664677,-73.84509,"(40.664677, -73.84509)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411569,Sedan,Sedan,,, +04/29/2021,5:30,QUEENS,11378,40.71736,-73.9064,"(40.71736, -73.9064)",59 DRIVE,60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412475,Sedan,Tractor Truck Diesel,,, +04/29/2021,10:50,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411716,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,20:42,BROOKLYN,11223,40.60612,-73.96565,"(40.60612, -73.96565)",KINGS HIGHWAY,EAST 7 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4411539,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,8:40,BRONX,10461,40.84444,-73.83559,"(40.84444, -73.83559)",WESTCHESTER AVENUE,MULFORD AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4411371,Sedan,Sedan,,, +04/28/2021,12:04,BRONX,10468,40.87469,-73.8865,"(40.87469, -73.8865)",GRAND CONCOURSE,EAST 204 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4411409,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,16:38,BROOKLYN,11210,40.63826,-73.94243,"(40.63826, -73.94243)",,,1425 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4513876,Sedan,Sedan,Sedan,, +03/27/2022,4:00,,,40.666935,-73.782715,"(40.666935, -73.782715)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4513784,Sedan,Sedan,,, +04/30/2021,15:15,BROOKLYN,11234,40.63032,-73.9213,"(40.63032, -73.9213)",FLATLANDS AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412515,Sedan,,,, +04/28/2021,13:40,BROOKLYN,11211,40.708424,-73.95791,"(40.708424, -73.95791)",MARCY AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4411620,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,3:25,,,,,,BARTOW CIRCLE,SHORE ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4411605,Sedan,,,, +04/28/2021,8:01,MANHATTAN,10017,40.748825,-73.96984,"(40.748825, -73.96984)",1 AVENUE,EAST 42 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411324,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,17:55,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411911,Sedan,,,, +04/29/2021,23:20,,,40.867256,-73.92935,"(40.867256, -73.92935)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412400,Taxi,Flat Bed,,, +04/22/2021,22:26,,,40.665375,-73.934235,"(40.665375, -73.934235)",CROWN STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412534,Sedan,Sedan,,, +04/28/2021,18:01,,,40.74118,-73.88663,"(40.74118, -73.88663)",45 AVENUE,78 STREET,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4411732,Bike,Sedan,,, +04/21/2021,17:42,BROOKLYN,11233,40.677338,-73.927536,"(40.677338, -73.927536)",ATLANTIC AVENUE,ROCHESTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412530,,,,, +04/28/2021,17:00,BROOKLYN,11206,40.70021,-73.953896,"(40.70021, -73.953896)",LEE AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411858,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,8:30,,,40.6742,-73.999985,"(40.6742, -73.999985)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,11:30,BROOKLYN,11230,40.635807,-73.95832,"(40.635807, -73.95832)",,,1096 OCEAN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412300,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,11:20,,,40.68693,-73.95089,"(40.68693, -73.95089)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412053,Pick-up Truck,Sedan,,, +04/29/2021,15:59,,,40.824432,-73.873604,"(40.824432, -73.873604)",BRUCKNER BOULEVARD,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unsafe Speed,,,,4411771,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/28/2021,21:00,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4411648,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/29/2021,0:21,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",GRAND CENTRAL PARKWAY,150 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4411799,Sedan,,,, +04/28/2021,17:48,QUEENS,11420,40.66643,-73.815384,"(40.66643, -73.815384)",NORTH CONDUIT AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411486,Sedan,,,, +04/28/2021,13:50,,,40.61015,-74.14697,"(40.61015, -74.14697)",VICTORY BOULEVARD,WILLOWBROOK ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4411686,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,18:30,MANHATTAN,10034,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411690,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,0:19,,,40.850822,-73.90147,"(40.850822, -73.90147)",EAST BURNSIDE AVENUE,RYER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4411206,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,9:42,QUEENS,11428,40.723885,-73.73385,"(40.723885, -73.73385)",222 STREET,FAIRBURY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,15:26,BROOKLYN,11208,40.689297,-73.87406,"(40.689297, -73.87406)",CRESCENT STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411514,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,19:42,BROOKLYN,11235,40.59036,-73.96531,"(40.59036, -73.96531)",OCEAN COURT,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412675,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,17:25,,,40.678543,-73.949684,"(40.678543, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4412419,Box Truck,Sedan,,, +04/28/2021,23:20,QUEENS,11413,40.66462,-73.75292,"(40.66462, -73.75292)",225 STREET,144 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411529,Sedan,Sedan,,, +04/29/2021,19:05,BRONX,10472,40.826527,-73.874886,"(40.826527, -73.874886)",WATSON AVENUE,STRATFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411818,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,0:10,,,40.634483,-73.91886,"(40.634483, -73.91886)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4411995,Sedan,Sedan,,, +04/28/2021,13:08,QUEENS,11360,40.77816,-73.7777,"(40.77816, -73.7777)",212 STREET,26 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411726,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,15:20,MANHATTAN,10022,40.759468,-73.96164,"(40.759468, -73.96164)",,,400 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4411839,Station Wagon/Sport Utility Vehicle,Bike,,, +04/28/2021,6:55,,,40.684685,-73.98114,"(40.684685, -73.98114)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411455,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/23/2021,11:20,MANHATTAN,10036,40.7591,-73.99215,"(40.7591, -73.99215)",WEST 43 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4412427,Taxi,Bike,,, +04/28/2021,15:53,,,40.60589,-74.07427,"(40.60589, -74.07427)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411627,Station Wagon/Sport Utility Vehicle,truck,,, +04/21/2021,10:00,QUEENS,11101,40.74355,-73.958405,"(40.74355, -73.958405)",50 AVENUE,2 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4411926,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,13:20,MANHATTAN,10033,40.846077,-73.93848,"(40.846077, -73.93848)",,,4138 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4412596,Box Truck,,,, +04/28/2021,8:25,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411963,Van,,,, +04/29/2021,19:51,BRONX,10462,40.841984,-73.8577,"(40.841984, -73.8577)",,,2155 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412359,Taxi,,,, +04/23/2021,14:00,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",MYRTLE AVENUE,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4412166,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,15:10,BROOKLYN,11211,40.710606,-73.95108,"(40.710606, -73.95108)",,,341 UNION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411889,Sedan,,,, +04/30/2021,13:18,QUEENS,11691,40.605164,-73.75485,"(40.605164, -73.75485)",,,21-40 MOTT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412464,Concrete Mixer,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,14:00,,,40.70753,-73.96443,"(40.70753, -73.96443)",DIVISION AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412776,Sedan,,,, +04/30/2021,11:08,,,,,,EAST BEDFORD PARK BOULEVARD,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4412126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,12:49,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",FRANCIS LEWIS BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412021,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,8:07,BROOKLYN,11203,40.6465,-73.926895,"(40.6465, -73.926895)",BEVERLEY ROAD,EAST 53 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4412232,Sedan,Sedan,Sedan,, +04/30/2021,13:30,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4412278,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/29/2021,22:15,,,40.707523,-73.96115,"(40.707523, -73.96115)",ROEBLING STREET,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412770,Sedan,,,, +04/28/2021,13:27,QUEENS,11422,40.653282,-73.743324,"(40.653282, -73.743324)",241 STREET,148 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4411471,Sedan,Van,Sedan,Station Wagon/Sport Utility Vehicle, +04/15/2021,12:32,,,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412410,Sedan,Sedan,,, +04/28/2021,19:22,BRONX,10465,40.87831,-73.870155,"(40.87831, -73.870155)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4411746,Sedan,,,, +04/27/2021,16:40,,,40.678726,-73.91906,"(40.678726, -73.91906)",HOWARD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412567,Sedan,,,, +04/30/2021,0:44,BRONX,10455,40.81829,-73.90352,"(40.81829, -73.90352)",,,776 UNION AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412712,Sedan,,,, +04/29/2021,12:50,,,40.853462,-73.88939,"(40.853462, -73.88939)",ARTHUR AVENUE,EAST 184 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4411904,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,19:00,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411884,Sedan,,,, +04/29/2021,16:15,MANHATTAN,10027,40.820004,-73.95888,"(40.820004, -73.95888)",WEST 133 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4412114,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,23:30,,,40.69874,-73.89305,"(40.69874, -73.89305)",62 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412485,Sedan,Sedan,,, +04/30/2021,21:05,MANHATTAN,10036,40.75736,-73.98798,"(40.75736, -73.98798)",,,255 WEST 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412286,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/30/2021,12:30,,,40.577545,-73.99789,"(40.577545, -73.99789)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412311,Lift Boom,Sedan,,, +03/28/2021,0:00,BRONX,10457,40.84084,-73.901566,"(40.84084, -73.901566)",,,1647 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4411953,Ambulance,,,, +04/29/2021,15:50,BROOKLYN,11236,40.645874,-73.892845,"(40.645874, -73.892845)",AVENUE J,EAST 105 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4411807,Sedan,Sedan,,, +04/30/2021,20:05,QUEENS,11375,40.7244,-73.84981,"(40.7244, -73.84981)",QUEENS BOULEVARD,68 DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412064,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2021,14:28,,,40.677174,-73.924774,"(40.677174, -73.924774)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412525,Sedan,Sedan,,, +04/06/2021,17:12,BROOKLYN,11236,40.63497,-73.9189,"(40.63497, -73.9189)",,,1723 RALPH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4412085,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/27/2021,23:57,,,,,,VERRAZANO BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4412017,Sedan,Sedan,,, +04/30/2021,14:05,BROOKLYN,11236,40.64188,-73.894684,"(40.64188, -73.894684)",EAST 100 STREET,AVENUE K,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4412140,Bus,Sedan,,, +04/29/2021,21:25,MANHATTAN,10032,40.82982,-73.940575,"(40.82982, -73.940575)",,,89 SAINT NICHOLAS PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411948,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,16:02,,,40.675076,-73.98801,"(40.675076, -73.98801)",3 AVENUE,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412631,Sedan,Sedan,,, +04/29/2021,16:30,BRONX,10452,40.830345,-73.92328,"(40.830345, -73.92328)",GERARD AVENUE,EAST 164 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412281,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,15:34,BRONX,10471,40.90214,-73.898636,"(40.90214, -73.898636)",,,5421 SYLVAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412452,Sedan,Sedan,,, +04/28/2021,6:30,,,,,,HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4411524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,11:05,QUEENS,11375,40.71729,-73.83208,"(40.71729, -73.83208)",GRAND CENTRAL PARKWAY,77 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411404,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,1:15,BROOKLYN,11236,40.65183,-73.91113,"(40.65183, -73.91113)",,,703 EAST 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4411290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/28/2021,18:28,BROOKLYN,11215,40.671177,-73.9747,"(40.671177, -73.9747)",GARFIELD PLACE,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411561,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,20:00,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411634,Sedan,,,, +04/30/2021,15:30,BROOKLYN,11238,40.674282,-73.9618,"(40.674282, -73.9618)",,,500 STERLING PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4412511,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/28/2021,13:55,,,40.643425,-74.01207,"(40.643425, -74.01207)",5 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411443,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/28/2021,10:55,,,40.72293,-73.847336,"(40.72293, -73.847336)",QUEENS BOULEVARD,YELLOWSTONE BOULEVARD,,2,0,1,0,1,0,0,0,Unspecified,,,,,4411431,Bike,,,, +04/28/2021,14:09,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",VALENTINE AVENUE,EAST 178 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4411591,Moped,Tow Truck / Wrecker,,, +04/29/2021,6:00,QUEENS,11373,40.735485,-73.867195,"(40.735485, -73.867195)",94 STREET,58 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4411738,Sedan,,,, +04/29/2021,23:50,BROOKLYN,11226,40.64477,-73.954735,"(40.64477, -73.954735)",BEVERLEY ROAD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412225,Sedan,Sedan,,, +04/29/2021,5:15,BROOKLYN,11207,40.667427,-73.89181,"(40.667427, -73.89181)",,,458 WYONA STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411931,ambulance,,,, +04/30/2021,15:00,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",REVIEW AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412540,Sedan,Sedan,,, +04/30/2021,12:35,,,40.678238,-73.94415,"(40.678238, -73.94415)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4411990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,17:27,BROOKLYN,11235,40.580883,-73.93669,"(40.580883, -73.93669)",,,1812 SHORE BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4411852,Sedan,,,, +04/28/2021,7:50,MANHATTAN,10010,40.741028,-73.99417,"(40.741028, -73.99417)",WEST 20 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4412096,Bus,Box Truck,,, +04/28/2021,13:00,,,40.69141,-73.72668,"(40.69141, -73.72668)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4411467,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,16:20,BROOKLYN,11219,40.628036,-74.00656,"(40.628036, -74.00656)",66 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4411491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,16:20,BROOKLYN,11211,40.717754,-73.95313,"(40.717754, -73.95313)",,,229 NORTH 10 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411706,Ambulance,Sedan,,, +04/29/2021,8:15,BRONX,10472,40.836754,-73.875084,"(40.836754, -73.875084)",EAST 177 STREET,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4411668,Taxi,Bus,,, +04/29/2021,8:37,QUEENS,11422,40.660286,-73.74298,"(40.660286, -73.74298)",BROOKVILLE BOULEVARD,MAYDA ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4411795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,14:54,BRONX,10459,40.830414,-73.896706,"(40.830414, -73.896706)",LYMAN PLACE,FREEMAN STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4411975,Sedan,Bike,,, +04/24/2021,20:51,BROOKLYN,11221,40.688698,-73.942085,"(40.688698, -73.942085)",THROOP AVENUE,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412423,Station Wagon/Sport Utility Vehicle,Bike,,, +04/29/2021,20:15,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4411813,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,0:00,BROOKLYN,11207,40.657864,-73.89227,"(40.657864, -73.89227)",LINDEN BOULEVARD,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411510,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,11:00,BROOKLYN,11205,40.690216,-73.96028,"(40.690216, -73.96028)",,,298 CLASSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411958,Sedan,Tow Truck / Wrecker,,, +04/30/2021,15:00,BRONX,10455,40.812855,-73.90725,"(40.812855, -73.90725)",WALES AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412739,Sedan,Sedan,,, +04/30/2021,1:05,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4411835,Sedan,,,, +04/28/2021,18:00,QUEENS,11422,40.658966,-73.7321,"(40.658966, -73.7321)",255 STREET,MEMPHIS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4411459,Station Wagon/Sport Utility Vehicle,,,, +04/10/2021,16:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,2:20,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4412704,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +04/28/2021,19:42,BROOKLYN,11230,40.62095,-73.9555,"(40.62095, -73.9555)",OCEAN AVENUE,AVENUE L,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4411778,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,12:18,MANHATTAN,10012,40.726524,-73.99585,"(40.726524, -73.99585)",BLEECKER STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412159,Sedan,,,, +04/11/2021,4:36,,,40.69231,-73.88147,"(40.69231, -73.88147)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412032,Sedan,,,, +04/28/2021,1:05,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4411655,Sedan,,,, +04/26/2021,11:30,QUEENS,11370,40.766785,-73.895,"(40.766785, -73.895)",ASTORIA BOULEVARD,74 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412370,Sedan,,,, +04/23/2021,13:30,STATEN ISLAND,10312,40.541603,-74.177376,"(40.541603, -74.177376)",,,831 ANNADALE ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4412049,Station Wagon/Sport Utility Vehicle,FDNY TRUCK,,, +04/30/2021,22:09,MANHATTAN,10036,40.763428,-73.99271,"(40.763428, -73.99271)",WEST 48 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412131,Taxi,,,, +04/29/2021,13:20,BRONX,10456,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,EAST 167 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412337,Sedan,,,, +04/30/2021,16:24,,,40.789467,-73.784225,"(40.789467, -73.784225)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412185,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,16:00,BROOKLYN,11234,40.635426,-73.92474,"(40.635426, -73.92474)",GLENWOOD ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4411980,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,11:30,,,40.65763,-73.85625,"(40.65763, -73.85625)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4411663,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +04/30/2021,11:40,BRONX,10456,40.831993,-73.90541,"(40.831993, -73.90541)",,,3565 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412081,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,17:48,BROOKLYN,11234,40.632847,-73.928375,"(40.632847, -73.928375)",AVENUE H,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411985,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +04/28/2021,16:30,BROOKLYN,11207,40.656338,-73.89331,"(40.656338, -73.89331)",,,184 MALTA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411943,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,16:42,,,,,,BRONX RIVER PARKWAY,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4411846,Sedan,Sedan,,, +04/30/2021,23:00,BROOKLYN,11233,40.670803,-73.918785,"(40.670803, -73.918785)",,,1804 STERLING PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412260,Sedan,,,, +03/27/2022,14:28,QUEENS,11691,40.596,-73.77067,"(40.596, -73.77067)",BEACH CHANNEL DRIVE,BEACH 38 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4514254,Sedan,Sedan,Sedan,Sedan, +04/29/2021,18:10,BRONX,10467,40.87898,-73.86093,"(40.87898, -73.86093)",,,814 EAST 214 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412557,Sedan,,,, +04/28/2021,13:00,QUEENS,11360,40.7806,-73.77536,"(40.7806, -73.77536)",,,23-70 BELL BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4411478,Sedan,Sedan,,, +03/21/2022,6:09,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",BROADWAY,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514470,Bus,,,, +03/27/2022,11:20,,,40.678253,-74.00273,"(40.678253, -74.00273)",HENRY STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4513921,USPS,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,0:02,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4513911,Taxi,,,, +03/27/2022,11:30,,,40.65463,-73.92201,"(40.65463, -73.92201)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4514399,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,20:05,BROOKLYN,11212,40.667366,-73.92274,"(40.667366, -73.92274)",RALPH AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514641,Ambulance,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,0:25,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",EAST 163 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4513983,Sedan,,,, +03/27/2022,12:30,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",8 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514071,Sedan,,,, +03/22/2022,22:30,QUEENS,11435,40.688416,-73.804665,"(40.688416, -73.804665)",,,142-19 LAKEWOOD AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4514592,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,15:00,BROOKLYN,11208,40.66041,-73.87693,"(40.66041, -73.87693)",WORTMAN AVENUE,ELTON STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4514530,Sedan,,,, +03/27/2022,16:27,BRONX,10465,40.817413,-73.80946,"(40.817413, -73.80946)",,,370 PENNYFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514102,Station Wagon/Sport Utility Vehicle,Convertible,,, +03/27/2022,18:35,BROOKLYN,11249,40.715046,-73.964806,"(40.715046, -73.964806)",SOUTH 1 STREET,WYTHE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4513964,Sedan,Sedan,,, +03/27/2022,18:50,,,40.86676,-73.920616,"(40.86676, -73.920616)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514500,Sedan,,,, +03/26/2022,16:00,QUEENS,11368,40.753967,-73.85826,"(40.753967, -73.85826)",,,109-09 37 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514510,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,7:00,QUEENS,11412,40.686863,-73.757965,"(40.686863, -73.757965)",120 ROAD,LUCAS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514546,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,18:10,,,40.583687,-73.94487,"(40.583687, -73.94487)",EMMONS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514016,Sedan,Sedan,,, +04/24/2022,4:14,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",EASTERN PARKWAY,BERGEN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4521372,Station Wagon/Sport Utility Vehicle,,,, +04/20/2022,15:51,,,40.822018,-73.953674,"(40.822018, -73.953674)",WEST 138 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4522306,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,9:00,QUEENS,11432,40.711155,-73.7943,"(40.711155, -73.7943)",,,87-37 168 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4522183,Sedan,,,, +04/21/2022,2:43,MANHATTAN,10032,40.83928,-73.93986,"(40.83928, -73.93986)",,,1112 SAINT NICHOLAS AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,,,,,4522117,Bike,,,, +04/24/2022,11:45,QUEENS,11354,40.766884,-73.82396,"(40.766884, -73.82396)",34 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4521545,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,16:40,MANHATTAN,10001,40.74782,-73.99665,"(40.74782, -73.99665)",8 AVENUE,WEST 27 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4521551,Bike,Sedan,,, +04/24/2022,19:00,MANHATTAN,10012,0,0,"(0.0, 0.0)",,,113 MAC DOUGAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4521980,Van,,,, +04/24/2022,23:45,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522303,Sedan,,,, +04/24/2022,17:15,BROOKLYN,11233,40.682106,-73.92257,"(40.682106, -73.92257)",,,221 RALPH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4521618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2022,15:00,QUEENS,11106,40.760773,-73.92417,"(40.760773, -73.92417)",,,32-76 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522347,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2022,15:36,MANHATTAN,10016,40.747295,-73.97405,"(40.747295, -73.97405)",2 AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2022,13:53,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4522144,Sedan,Sedan,Sedan,, +04/24/2022,13:10,QUEENS,11413,40.671684,-73.75647,"(40.671684, -73.75647)",141 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521502,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,9:30,,,,,,G.C.P. / L.I.E (CDR),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459025,Sedan,Flat Bed,,, +12/19/2021,5:25,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488131,Sedan,,,, +05/01/2021,15:20,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",WEST MOUNT EDEN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412303,ambulance,Sedan,,, +09/17/2021,21:47,,,40.5322793,-74.2241343,"(40.5322793, -74.2241343)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459135,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,15:20,,,40.77493,-73.950806,"(40.77493, -73.950806)",1 AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4514392,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,10:39,,,40.612736,-74.14149,"(40.612736, -74.14149)",,,26 FILLAT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4521984,Sedan,Sedan,,, +04/15/2022,10:00,BROOKLYN,11223,40.60573,-73.96557,"(40.60573, -73.96557)",,,1833 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4522139,Station Wagon/Sport Utility Vehicle,,,, +04/22/2022,9:53,,,0,0,"(0.0, 0.0)",11 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4522161,Box Truck,Sedan,,, +04/24/2022,14:16,QUEENS,11385,40.70875,-73.90929,"(40.70875, -73.90929)",,,489 FAIRVIEW AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4521510,Sedan,,,, +04/24/2022,14:55,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4521608,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/24/2022,21:25,,,,,,KISSENA BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4521643,Sedan,Motorcycle,,, +04/24/2022,16:05,BROOKLYN,11207,40.689365,-73.9058,"(40.689365, -73.9058)",WILSON AVENUE,COOPER STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4521836,Taxi,Sedan,,, +04/18/2022,19:20,,,0,0,"(0.0, 0.0)",31 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4522353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/24/2022,21:43,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4522182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/22/2022,22:00,QUEENS,11429,40.71611,-73.73137,"(40.71611, -73.73137)",,,221-16 99 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522291,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/24/2022,0:53,BROOKLYN,11207,,,,,,494 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4521534,Sedan,,,, +04/24/2022,9:00,,,40.670082,-73.79067,"(40.670082, -73.79067)",130 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4521677,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,10:45,BROOKLYN,11209,40.62479,-74.029465,"(40.62479, -74.029465)",,,329 84 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4521467,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,20:00,BROOKLYN,11239,40.642708,-73.87845,"(40.642708, -73.87845)",,,11245 SEAVIEW AVENUE,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4521634,Bike,,,, +04/24/2022,15:17,BROOKLYN,11235,0,0,"(0.0, 0.0)",AVENUE Z,HUBBARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521949,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,12:48,MANHATTAN,10027,40.80824,-73.95259,"(40.80824, -73.95259)",WEST 122 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4522241,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,8:45,,,0,0,"(0.0, 0.0)",VANDERBILT AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4522145,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/24/2022,14:50,QUEENS,11432,40.70675,-73.80224,"(40.70675, -73.80224)",PARSONS BOULEVARD,88 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4521732,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/24/2022,14:30,,,0,0,"(0.0, 0.0)",POWELL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522042,Bus,Station Wagon/Sport Utility Vehicle,,, +04/22/2022,16:00,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522151,Sedan,Sedan,,, +04/19/2022,8:12,,,40.63777,-74.07602,"(40.63777, -74.07602)",BAY STREET,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522130,Station Wagon/Sport Utility Vehicle,Bike,,, +04/24/2022,11:06,,,40.691307,-73.91326,"(40.691307, -73.91326)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521822,Sedan,,,, +04/24/2022,21:00,BROOKLYN,11249,0,0,"(0.0, 0.0)",,,37 SOUTH 8 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4522217,Sedan,,,, +04/15/2022,19:00,QUEENS,11434,40.678547,-73.77917,"(40.678547, -73.77917)",,,163-07 BAISLEY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522324,Sedan,Sedan,,, +04/24/2022,22:50,QUEENS,11358,40.755714,-73.78922,"(40.755714, -73.78922)",45 AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521718,Station Wagon/Sport Utility Vehicle,,,, +03/12/2022,10:40,,,40.801155,-73.959656,"(40.801155, -73.959656)",WEST 110 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4522235,Taxi,Sedan,,, +04/24/2022,11:14,,,,,,BELT PARKWAY,,,7,0,0,0,0,0,7,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4521699,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/07/2021,12:30,QUEENS,11421,40.686665,-73.86089,"(40.686665, -73.86089)",80 STREET,91 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454868,Station Wagon/Sport Utility Vehicle,Bike,,, +09/14/2021,8:30,BROOKLYN,11208,40.67122,-73.88276,"(40.67122, -73.88276)",SUTTER AVENUE,ELTON STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4457479,Sedan,Sedan,,, +09/17/2021,18:11,BRONX,10457,40.843124,-73.89796,"(40.843124, -73.89796)",,,4068 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458975,Tow Truck / Wrecker,E-Scooter,,, +09/16/2021,22:11,,,40.832024,-73.9159,"(40.832024, -73.9159)",GRANT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459344,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,16:30,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459294,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,5:00,,,40.89999,-73.85301,"(40.89999, -73.85301)",EAST 239 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459373,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,15:40,,,40.585117,-73.91429,"(40.585117, -73.91429)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,15:45,,,40.65777,-73.93962,"(40.65777, -73.93962)",WINTHROP STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485703,Sedan,,,, +12/10/2021,11:50,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",6 AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4485381,Sedan,Dump,,, +12/09/2021,18:00,BROOKLYN,11217,40.67573,-73.9746,"(40.67573, -73.9746)",LINCOLN PLACE,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485166,Sedan,,,, +11/16/2021,23:00,BROOKLYN,11207,40.68704,-73.90575,"(40.68704, -73.90575)",CHAUNCEY STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4485832,Sedan,,,, +12/08/2021,9:30,BRONX,10470,40.899822,-73.86333,"(40.899822, -73.86333)",,,4323 VIREO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4484746,Sedan,,,, +12/09/2021,21:06,BROOKLYN,11223,40.592323,-73.96074,"(40.592323, -73.96074)",CRAWFORD AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,13:30,QUEENS,11418,40.70288,-73.81869,"(40.70288, -73.81869)",,,132-67 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4484710,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,21:00,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485100,Sedan,Sedan,,, +12/09/2021,7:30,,,40.77012,-73.95741,"(40.77012, -73.95741)",EAST 74 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4484935,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/09/2021,22:00,MANHATTAN,10036,40.760155,-73.9988,"(40.760155, -73.9988)",WEST 41 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4485608,Sedan,Bike,,, +12/05/2021,16:59,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485198,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/10/2021,13:30,MANHATTAN,10002,40.715446,-73.98277,"(40.715446, -73.98277)",,,500B GRAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485237,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,17:45,BRONX,10461,40.856045,-73.84395,"(40.856045, -73.84395)",,,2121 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4484975,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,6:37,QUEENS,11377,40.736927,-73.895966,"(40.736927, -73.895966)",69 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484784,Sedan,Sedan,,, +12/08/2021,19:10,MANHATTAN,10014,40.734562,-74.00543,"(40.734562, -74.00543)",,,99 CHARLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,8:35,,,40.736847,-73.8067,"(40.736847, -73.8067)",65 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485582,Station Wagon/Sport Utility Vehicle,,,, +12/06/2021,7:50,,,40.870777,-73.81923,"(40.870777, -73.81923)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485248,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +12/09/2021,1:37,,,40.716312,-73.81938,"(40.716312, -73.81938)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4484955,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,3:50,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4484904,Sedan,Sedan,,, +12/10/2021,7:35,,,40.726448,-73.75632,"(40.726448, -73.75632)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4485780,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,20:55,QUEENS,11361,40.75563,-73.77264,"(40.75563, -73.77264)",OCEANIA STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485265,Sedan,,,, +09/18/2021,8:30,MANHATTAN,10031,40.828186,-73.94056,"(40.828186, -73.94056)",,,375 EDGECOMBE AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458465,Sedan,Bike,,, +09/18/2021,19:25,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458697,Sedan,Bus,,, +09/18/2021,1:33,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458538,Sedan,,,, +07/24/2021,15:15,BROOKLYN,11208,40.671352,-73.88182,"(40.671352, -73.88182)",,,1000 SUTTER AVENUE,0,0,0,0,0,0,0,0,Glare,,,,,4459283,DEPARTMENT,,,, +09/17/2021,17:00,BRONX,10463,40.884666,-73.89917,"(40.884666, -73.89917)",,,209 WEST 238 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459261,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +09/17/2021,7:45,QUEENS,11373,40.740532,-73.87635,"(40.740532, -73.87635)",CORONA AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459077,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,19:50,MANHATTAN,10013,40.719456,-73.99441,"(40.719456, -73.99441)",BROOME STREET,BOWERY,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4459053,Taxi,,,, +09/18/2021,3:00,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,ALLEN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458272,Taxi,,,, +09/18/2021,16:11,BROOKLYN,11217,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458507,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,23:30,,,40.735764,-73.97491,"(40.735764, -73.97491)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458863,Sedan,,,, +09/18/2021,15:00,BROOKLYN,11220,40.638523,-74.01,"(40.638523, -74.01)",7 AVENUE,57 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458588,Sedan,Bike,,, +09/14/2021,21:00,QUEENS,11368,40.74676,-73.86677,"(40.74676, -73.86677)",42 AVENUE,97 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459027,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,10:00,,,40.54396,-74.19184,"(40.54396, -74.19184)",STAFFORD AVENUE,,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4459144,Motorbike,Sedan,,, +09/16/2021,13:30,STATEN ISLAND,10306,40.578224,-74.10207,"(40.578224, -74.10207)",,,2145 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459210,Sedan,Sedan,,, +09/18/2021,2:35,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458290,Taxi,,,, +09/18/2021,0:48,MANHATTAN,10029,,,,EAST 106 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4458622,Sedan,Sedan,,, +07/17/2021,21:00,QUEENS,11373,40.73753,-73.87284,"(40.73753, -73.87284)",,,90-44 54 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459071,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/14/2021,7:40,QUEENS,11367,40.719654,-73.81816,"(40.719654, -73.81816)",,,78-16 MAIN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4459137,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/18/2021,20:10,QUEENS,11412,40.700687,-73.766815,"(40.700687, -73.766815)",JORDAN AVENUE,HANNIBAL STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458989,Pick-up Truck,Sedan,,, +09/18/2021,7:50,,,40.602985,-74.13148,"(40.602985, -74.13148)",,,336 BRADLEY AVENUE,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458321,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/18/2021,19:38,QUEENS,11427,40.72154,-73.75541,"(40.72154, -73.75541)",89 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4458447,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/18/2021,10:30,,,40.869843,-73.91588,"(40.869843, -73.91588)",BROADWAY,WEST 215 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458724,E-Bike,,,, +09/18/2021,11:00,BROOKLYN,11206,40.708767,-73.94004,"(40.708767, -73.94004)",,,204 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4458786,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/18/2021,17:54,MANHATTAN,10035,,,,EAST 122 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458875,Station Wagon/Sport Utility Vehicle,Bike,,, +09/18/2021,11:04,,,40.736412,-73.74183,"(40.736412, -73.74183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,12:00,,,,,,,,86 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458369,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,20:50,MANHATTAN,10011,40.732212,-73.99862,"(40.732212, -73.99862)",WAVERLY PLACE,WASHINGTON SQUARE WEST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459168,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,8:07,,,,,,LACONIA AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459197,Sedan,,,, +05/01/2021,12:50,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412785,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,14:45,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459234,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,4:15,BROOKLYN,11237,40.711376,-73.92794,"(40.711376, -73.92794)",,,492 SCHOLES STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4458406,Convertible,LIMO,,, +09/18/2021,8:46,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4458374,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,0:20,,,40.72804,-73.83171,"(40.72804, -73.83171)",JEWEL AVENUE,PARK DRIVE EAST,,1,0,0,0,0,0,1,0,Unspecified,,,,,4459107,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,17:00,QUEENS,11357,40.782642,-73.804146,"(40.782642, -73.804146)",FRANCIS LEWIS BOULEVARD,17 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458434,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,4:24,BRONX,10462,40.85456,-73.869484,"(40.85456, -73.869484)",,,2144 BRONX PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458336,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,16:05,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458932,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,5:30,QUEENS,11369,40.7651,-73.868034,"(40.7651, -73.868034)",,,25-05 GILLMORE STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4458576,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/18/2021,9:00,,,40.603848,-74.00264,"(40.603848, -74.00264)",19 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458640,Sedan,Sedan,,, +09/16/2021,9:40,,,40.68029,-73.94774,"(40.68029, -73.94774)",FULTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459277,Sedan,Bike,,, +09/16/2021,12:00,,,40.663704,-73.75587,"(40.663704, -73.75587)",145 AVENUE,223 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459308,Sedan,Sedan,,, +09/18/2021,22:45,BRONX,10454,40.803272,-73.918884,"(40.803272, -73.918884)",BRUCKNER BOULEVARD,SAINT ANNS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458970,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,19:10,QUEENS,11421,40.692574,-73.858185,"(40.692574, -73.858185)",JAMAICA AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458800,Sedan,Sedan,,, +09/18/2021,20:02,MANHATTAN,10021,40.768932,-73.96078,"(40.768932, -73.96078)",,,201 EAST 71 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4458945,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/18/2021,6:15,BROOKLYN,11236,40.64687,-73.90428,"(40.64687, -73.90428)",,,1346 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458359,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,19:06,BROOKLYN,11234,40.61186,-73.93243,"(40.61186, -73.93243)",FILLMORE AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458425,Sedan,Sedan,,, +09/18/2021,1:43,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4458521,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,18:10,QUEENS,11433,40.70112,-73.78334,"(40.70112, -73.78334)",,,106-18 173 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459158,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,14:15,BROOKLYN,11201,40.69977,-73.98294,"(40.69977, -73.98294)",GOLD STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,13:00,,,40.804256,-73.96293,"(40.804256, -73.96293)",WEST 112 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458785,Sedan,,,, +09/17/2021,8:25,QUEENS,11373,40.741493,-73.87503,"(40.741493, -73.87503)",CORONA AVENUE,90 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459042,Bus,Box Truck,,, +09/17/2021,13:05,MANHATTAN,10011,40.738132,-74.00084,"(40.738132, -74.00084)",,,220 WEST 13 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459169,Taxi,Bus,,, +09/18/2021,9:50,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,15:45,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459225,Sedan,Sedan,,, +09/18/2021,17:15,BROOKLYN,11220,40.64032,-74.02841,"(40.64032, -74.02841)",SEDGWICK PLACE,WAKEMAN PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4458489,Sedan,,,, +09/07/2021,7:55,MANHATTAN,10019,40.76788,-73.9815,"(40.76788, -73.9815)",COLUMBUS CIRCLE,CENTRAL PARK SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459115,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/18/2021,11:23,,,40.784473,-73.786194,"(40.784473, -73.786194)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458381,Sedan,Tractor Truck Diesel,,, +09/17/2021,17:11,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459026,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,12:00,BROOKLYN,11221,40.68989,-73.93645,"(40.68989, -73.93645)",,,198A LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458833,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,22:50,BROOKLYN,11206,40.710094,-73.93722,"(40.710094, -73.93722)",WATERBURY STREET,STAGG STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4458898,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,16:00,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,21:35,QUEENS,11364,40.750248,-73.75428,"(40.750248, -73.75428)",HORACE HARDING EXPRESSWAY,223 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459020,Sedan,Sedan,,, +09/16/2021,0:09,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4459094,Sedan,Sedan,,, +09/18/2021,18:14,MANHATTAN,10037,40.812737,-73.93762,"(40.812737, -73.93762)",5 AVENUE,WEST 135 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4459059,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/18/2021,10:20,BROOKLYN,11249,40.715855,-73.95987,"(40.715855, -73.95987)",,,246 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458628,Taxi,,,, +07/08/2021,15:30,BROOKLYN,11207,40.672226,-73.90241,"(40.672226, -73.90241)",,,226 GLENMORE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459284,Flat Bed,Sedan,,, +09/18/2021,16:00,QUEENS,11413,40.678226,-73.742386,"(40.678226, -73.742386)",227 STREET,133 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4458500,Sedan,Sedan,,, +09/18/2021,10:15,,,40.681633,-73.95133,"(40.681633, -73.95133)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459295,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,7:08,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458758,Sedan,Sedan,,, +09/15/2021,15:00,,,40.745903,-73.76703,"(40.745903, -73.76703)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4459154,Sedan,Sedan,Sedan,Tanker, +09/18/2021,19:30,QUEENS,11354,40.764454,-73.83178,"(40.764454, -73.83178)",FARRINGTON STREET,35 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4458454,E-Bike,Sedan,,, +09/18/2021,9:46,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",57 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459031,Sedan,,,, +09/16/2021,11:15,,,,,,WEST 13 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459175,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,10:41,QUEENS,11429,40.717976,-73.735344,"(40.717976, -73.735344)",SPRINGFIELD BOULEVARD,AMBOY LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458656,Motorcycle,Bus,,, +09/18/2021,22:29,BROOKLYN,11236,40.634033,-73.90534,"(40.634033, -73.90534)",,,1127 EAST 85 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458509,Sedan,Sedan,,, +09/18/2021,20:00,,,40.59192,-73.99401,"(40.59192, -73.99401)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458658,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,9:40,,,,,,Gowanus expressway,Exit 26,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4458589,Sedan,Sedan,,, +09/17/2021,3:00,,,40.5778,-73.96057,"(40.5778, -73.96057)",BRIGHTON 7 STREET,,,1,0,1,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4459065,Sedan,Sedan,,, +09/18/2021,1:00,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458274,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,6:10,STATEN ISLAND,10312,40.54191,-74.18441,"(40.54191, -74.18441)",,,790 DRUMGOOLE ROAD EAST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459132,Convertible,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,11:00,,,,,,HORACE HARDING EXPRESSWAY,188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459217,Sedan,Box Truck,,, +09/18/2021,15:50,QUEENS,11377,40.743484,-73.89908,"(40.743484, -73.89908)",WOODSIDE AVENUE,65 PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458473,E-Bike,,,, +09/18/2021,12:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459008,Sedan,Sedan,Sedan,, +09/16/2021,22:16,STATEN ISLAND,10305,0,0,"(0.0, 0.0)",PEARSALL STREET,OLYMPIA BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459204,Sedan,,,, +09/14/2021,20:16,MANHATTAN,10014,40.738735,-74.00961,"(40.738735, -74.00961)",WEST STREET,HORATIO STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4459174,Motorcycle,Sedan,,, +09/18/2021,15:15,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",SOUTHERN BOULEVARD,EAST 163 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4459052,Bike,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,4:30,QUEENS,11361,40.764645,-73.7617,"(40.764645, -73.7617)",,,41-06 221 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4458292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,0:00,MANHATTAN,10027,40.808586,-73.94954,"(40.808586, -73.94954)",,,210 WEST 124 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459072,Sedan,,,, +09/18/2021,13:42,QUEENS,11355,40.752316,-73.8324,"(40.752316, -73.8324)",AVERY AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458452,Convertible,,,, +09/18/2021,12:24,,,,,,WEST 113 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458592,Sedan,Taxi,,, +09/15/2021,13:00,QUEENS,11432,40.71415,-73.78991,"(40.71415, -73.78991)",,,86-14 AVA PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459138,Sedan,Sedan,,, +09/18/2021,0:00,BROOKLYN,11217,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,10:50,,,40.71617,-73.95952,"(40.71617, -73.95952)",NORTH 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458986,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,20:00,,,,,,GRAND CENTRAL PARKWAY,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459030,Sedan,Sedan,,, +09/14/2021,12:32,,,40.844734,-73.90757,"(40.844734, -73.90757)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459346,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,21:00,BROOKLYN,11211,40.714455,-73.935295,"(40.714455, -73.935295)",MORGAN AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4458546,Station Wagon/Sport Utility Vehicle,Moped,,, +09/14/2021,17:07,BRONX,10463,40.881428,-73.90001,"(40.881428, -73.90001)",,,3438 BAILEY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4459262,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/17/2021,18:50,STATEN ISLAND,10304,40.59335,-74.10042,"(40.59335, -74.10042)",RICHMOND ROAD,NORDEN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459198,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,23:30,QUEENS,11429,40.703636,-73.74652,"(40.703636, -73.74652)",113 AVENUE,209 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459112,Sedan,,,, +04/24/2022,9:16,BROOKLYN,11220,40.63504,-74.008835,"(40.63504, -74.008835)",,,826 60 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4521440,Sedan,Motorbike,,, +09/18/2021,11:35,,,40.78569,-73.7872,"(40.78569, -73.7872)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458380,Sedan,Tractor Truck Diesel,,, +09/18/2021,7:51,,,40.84042,-73.86269,"(40.84042, -73.86269)",GUERLAIN STREET,UNIONPORT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458407,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,17:41,QUEENS,11375,,,,69 AVENUE,HARROW STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4458817,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/17/2021,14:00,,,40.65878,-73.960526,"(40.65878, -73.960526)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459187,Tractor Truck Diesel,Sedan,,, +09/18/2021,10:50,MANHATTAN,10031,,,,WEST 153 STREET,RIVERSIDE DRIVE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458466,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,1:00,BROOKLYN,11218,40.64315,-73.97548,"(40.64315, -73.97548)",BEVERLEY ROAD,EAST 5 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458958,Taxi,Bike,,, +09/17/2021,9:10,QUEENS,11432,40.713314,-73.78522,"(40.713314, -73.78522)",,,178-36 WEXFORD TERRACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459143,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,4:48,BROOKLYN,11223,40.605244,-73.97233,"(40.605244, -73.97233)",,,1941 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458362,Sedan,,,, +09/18/2021,20:00,,,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4458693,Sedan,,,, +09/18/2021,17:45,QUEENS,11365,40.73963,-73.79014,"(40.73963, -73.79014)",HORACE HARDING EXPRESSWAY,184 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458840,Box Truck,Sedan,,, +09/18/2021,10:10,QUEENS,11423,40.712772,-73.77201,"(40.712772, -73.77201)",188 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458397,Sedan,Pick-up Truck,,, +09/18/2021,14:00,BROOKLYN,11215,40.666134,-73.99224,"(40.666134, -73.99224)",4 AVENUE,16 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458517,Sedan,Bike,,, +09/12/2021,4:50,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459048,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,2:34,MANHATTAN,10026,40.79864,-73.9534,"(40.79864, -73.9534)",,,111 CENTRAL PARK NORTH,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459082,Sedan,,,, +09/18/2021,0:00,BRONX,10456,40.82581,-73.907036,"(40.82581, -73.907036)",BOSTON ROAD,EAST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4458976,Sedan,E-Bike,,, +09/12/2021,21:45,BROOKLYN,11221,40.688354,-73.913826,"(40.688354, -73.913826)",,,91 WEIRFIELD STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459330,Sedan,Sedan,,, +09/18/2021,22:35,,,40.697147,-73.9976,"(40.697147, -73.9976)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458459,Sedan,Sedan,,, +09/18/2021,4:20,QUEENS,11105,40.770824,-73.9032,"(40.770824, -73.9032)",45 STREET,DITMARS BOULEVARD,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4458527,Sedan,,,, +09/02/2021,9:33,,,40.884144,-73.91502,"(40.884144, -73.91502)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459252,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,20:05,,,40.710186,-73.82113,"(40.710186, -73.82113)",VANWYCK EXPRESSWAY,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459160,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,21:15,QUEENS,11368,40.76377,-73.84206,"(40.76377, -73.84206)",,,32-11 HARPER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459034,Sedan,,,, +09/17/2021,18:00,BRONX,10467,40.876923,-73.87327,"(40.876923, -73.87327)",,,3322 DECATUR AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4459227,,,,, +09/18/2021,13:50,BROOKLYN,11234,40.621357,-73.92714,"(40.621357, -73.92714)",UTICA AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458799,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,1:14,QUEENS,11420,40.68106,-73.82637,"(40.68106, -73.82637)",114 STREET,109 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4458313,Taxi,Sedan,,, +09/18/2021,14:57,MANHATTAN,10021,40.766346,-73.956635,"(40.766346, -73.956635)",,,400 EAST 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458944,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,13:45,,,40.78613,-73.80215,"(40.78613, -73.80215)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4458436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,2:30,BROOKLYN,11225,40.660316,-73.95899,"(40.660316, -73.95899)",,,47 MAPLE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4413072,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/01/2021,23:01,BROOKLYN,11215,40.663277,-73.98283,"(40.663277, -73.98283)",,,409 14 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4413133,Bike,Sedan,,, +04/30/2021,6:40,BRONX,10454,40.811653,-73.91685,"(40.811653, -73.91685)",EAST 144 STREET,BROOK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413121,Sedan,Bike,,, +05/01/2021,15:55,,,40.57577,-74.16981,"(40.57577, -74.16981)",,,2873 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,0:00,BROOKLYN,11203,40.65812,-73.934006,"(40.65812, -73.934006)",SCHENECTADY AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413098,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,22:00,BROOKLYN,11213,40.668655,-73.94585,"(40.668655, -73.94585)",,,1352 UNION STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413041,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,0:00,,,40.744644,-73.731186,"(40.744644, -73.731186)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4411894,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2021,4:15,BROOKLYN,11238,40.682114,-73.96926,"(40.682114, -73.96926)",,,794 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4413126,Sedan,Sedan,Box Truck,, +09/15/2021,13:40,,,40.68096,-73.93765,"(40.68096, -73.93765)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459299,Sedan,Sedan,,, +09/18/2021,5:00,BROOKLYN,11210,40.634674,-73.95321,"(40.634674, -73.95321)",,,2787 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458859,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,15:00,BROOKLYN,11207,40.665714,-73.898445,"(40.665714, -73.898445)",,,545 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458721,Sedan,,,, +09/18/2021,6:40,QUEENS,11368,,,,97 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458575,Sedan,,,, +07/06/2021,19:25,,,40.87971,-73.90134,"(40.87971, -73.90134)",BAILEY AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459251,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,17:07,STATEN ISLAND,10307,40.515903,-74.23344,"(40.515903, -74.23344)",,,7001 AMBOY ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4459106,Sedan,,,, +09/18/2021,22:10,QUEENS,11419,40.695854,-73.818924,"(40.695854, -73.818924)",130 STREET,ATLANTIC AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4458639,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,15:00,,,40.712914,-73.734436,"(40.712914, -73.734436)",HEMPSTEAD AVENUE,220 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,21:05,,,,,,GRAND CENTRAL PARKWAY,47 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412394,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,13:00,MANHATTAN,10035,40.807224,-73.941666,"(40.807224, -73.941666)",,,2041 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412905,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,9:00,QUEENS,11423,40.71275,-73.77659,"(40.71275, -73.77659)",,,184-33 89 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4412876,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/01/2021,2:20,,,40.68623,-74.00046,"(40.68623, -74.00046)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412113,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,14:00,BRONX,10462,40.845722,-73.859886,"(40.845722, -73.859886)",,,876 KINSELLA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412362,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,23:20,BRONX,10467,40.869545,-73.87972,"(40.869545, -73.87972)",EAST MOSHOLU PARKWAY NORTH,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4412696,Sedan,Moped,,, +05/01/2021,8:15,,,,,,Henry Hudson parkway West,West 246st,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412449,Sedan,Sedan,,, +05/01/2021,15:03,,,,,,VERRAZANO BRIDGE UPPER,,,9,0,0,0,0,0,9,0,Following Too Closely,Following Too Closely,Unspecified,,,4412849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/27/2021,21:15,MANHATTAN,10029,40.79931,-73.943245,"(40.79931, -73.943245)",EAST 116 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4412964,Station Wagon/Sport Utility Vehicle,Bike,,, +09/12/2021,23:13,BRONX,10451,40.826397,-73.92116,"(40.826397, -73.92116)",SHERIDAN AVENUE,EAST 161 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4459036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,20:30,QUEENS,11385,40.7122,-73.86208,"(40.7122, -73.86208)",METROPOLITAN AVENUE,COOPER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412474,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,17:25,BRONX,10462,40.84169,-73.86012,"(40.84169, -73.86012)",,,2000 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412903,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,15:30,,,40.666756,-73.83653,"(40.666756, -73.83653)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412947,Sedan,Sedan,,, +04/26/2021,15:00,QUEENS,11368,40.75643,-73.870285,"(40.75643, -73.870285)",,,33-31 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412824,Sedan,,,, +09/17/2021,20:29,BRONX,10463,40.884724,-73.89943,"(40.884724, -73.89943)",,,206 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459270,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,22:10,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412248,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,17:35,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4412598,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/01/2021,17:30,BROOKLYN,11220,40.642174,-74.02064,"(40.642174, -74.02064)",3 AVENUE,60 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,19:22,BROOKLYN,11224,40.57916,-73.98309,"(40.57916, -73.98309)",WEST 15 STREET,NEPTUNE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412715,Sedan,,,, +05/01/2021,1:12,BRONX,10475,40.878475,-73.837166,"(40.878475, -73.837166)",,,3364 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4412792,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/01/2021,0:02,QUEENS,11004,40.740128,-73.704414,"(40.740128, -73.704414)",265 STREET,83 AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4412222,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/01/2021,2:15,BROOKLYN,11214,40.599705,-73.99016,"(40.599705, -73.99016)",86 STREET,BAY 35 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412192,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,14:50,MANHATTAN,10011,40.742832,-74.00771,"(40.742832, -74.00771)",WEST 15 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412994,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/01/2021,15:20,BROOKLYN,11237,40.70303,-73.914055,"(40.70303, -73.914055)",,,230 SAINT NICHOLAS AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,18:46,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4412211,Sedan,SKATEBOARD,,, +05/01/2021,2:00,,,40.646927,-74.00126,"(40.646927, -74.00126)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412193,Sedan,,,, +04/14/2021,17:16,MANHATTAN,10029,40.790756,-73.95264,"(40.790756, -73.95264)",,,25 EAST 101 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412917,Ambulance,,,, +05/01/2021,23:03,MANHATTAN,10009,40.726864,-73.97991,"(40.726864, -73.97991)",AVENUE B,EAST 10 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412243,Bike,,,, +05/01/2021,14:15,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",REMSEN AVENUE,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412177,Bike,,,, +05/01/2021,21:00,BROOKLYN,11226,40.640125,-73.96519,"(40.640125, -73.96519)",,,390 RUGBY ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412434,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/01/2021,18:40,,,40.680473,-73.9614,"(40.680473, -73.9614)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412510,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/01/2021,16:10,BROOKLYN,11211,40.71406,-73.95292,"(40.71406, -73.95292)",RODNEY STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412813,Sedan,,,, +05/01/2021,0:40,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412659,Sedan,,,, +05/01/2021,18:35,BRONX,10469,40.869938,-73.86142,"(40.869938, -73.86142)",,,3012 BRONXWOOD AVENUE,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4412798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/01/2021,11:05,QUEENS,11355,40.752316,-73.8324,"(40.752316, -73.8324)",COLLEGE POINT BOULEVARD,AVERY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412187,Box Truck,Bike,,, +05/01/2021,5:30,BROOKLYN,11203,40.659447,-73.9312,"(40.659447, -73.9312)",,,575 UTICA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412230,Sedan,Sedan,,, +05/01/2021,13:25,QUEENS,11422,40.664356,-73.734535,"(40.664356, -73.734535)",246 STREET,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412376,Bus,Sedan,,, +04/29/2021,10:15,MANHATTAN,10011,40.741077,-74.001564,"(40.741077, -74.001564)",WEST 16 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412985,Sedan,,,, +05/01/2021,17:22,BROOKLYN,11232,40.657818,-74.004196,"(40.657818, -74.004196)",32 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412632,Sedan,Sedan,,, +05/01/2021,17:55,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412865,Sedan,,,, +04/23/2021,11:11,MANHATTAN,10028,40.778553,-73.9555,"(40.778553, -73.9555)",,,160 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412996,Sedan,,,, +05/01/2021,22:50,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,,,,,4412250,Sedan,,,, +05/01/2021,15:15,STATEN ISLAND,10310,40.639175,-74.121826,"(40.639175, -74.121826)",ALASKA STREET,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412325,Sedan,Sedan,,, +05/01/2021,0:00,BRONX,10462,40.839638,-73.85814,"(40.839638, -73.85814)",,,1540 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412925,Sedan,Bike,,, +05/01/2021,15:50,BROOKLYN,11201,40.696198,-73.98869,"(40.696198, -73.98869)",ADAMS STREET,TILLARY STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4412202,Sedan,,,, +04/26/2021,6:55,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4412848,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/01/2021,14:08,,,40.881504,-73.879364,"(40.881504, -73.879364)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412677,AMBULANCE,FOOD TRUCK,,, +05/01/2021,23:23,BRONX,10451,40.817024,-73.921394,"(40.817024, -73.921394)",,,298 EAST 149 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4412732,Taxi,Motorbike,,, +04/30/2021,17:50,,,40.604618,-74.162384,"(40.604618, -74.162384)",RICHMOND AVENUE,ETON PLACE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4412842,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,13:35,BRONX,10472,40.82686,-73.85886,"(40.82686, -73.85886)",,,1018 VIRGINIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412910,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,16:14,BRONX,10457,40.84764,-73.901,"(40.84764, -73.901)",EAST TREMONT AVENUE,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4412403,Ambulance,Sedan,,, +04/11/2021,22:20,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412880,Sedan,Sedan,Sedan,, +05/01/2021,12:40,,,40.78762,-73.84877,"(40.78762, -73.84877)",119 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412477,Station Wagon/Sport Utility Vehicle,Bike,,, +05/01/2021,18:50,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",COLUMBIA STREET,EAST HOUSTON STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412343,Sedan,Bike,,, +05/01/2021,11:50,BRONX,10459,0,0,"(0.0, 0.0)",EAST 163 STREET,FOX STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4412610,Sedan,Sedan,,, +04/23/2021,19:00,,,40.73032,-74.00469,"(40.73032, -74.00469)",7 AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412969,Taxi,Bike,,, +05/01/2021,18:58,BROOKLYN,11233,40.685497,-73.91771,"(40.685497, -73.91771)",HALSEY STREET,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412262,Sedan,,,, +04/30/2021,17:40,MANHATTAN,10035,40.796516,-73.93503,"(40.796516, -73.93503)",,,2272 1 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4412856,Motorcycle,Sedan,,, +05/01/2021,13:30,MANHATTAN,10011,40.74144,-74.00503,"(40.74144, -74.00503)",,,61 9 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413011,Sedan,,,, +05/01/2021,17:23,BRONX,10475,40.878075,-73.83694,"(40.878075, -73.83694)",,,3330 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412566,Sedan,,,, +05/01/2021,14:25,BRONX,10469,40.86574,-73.84625,"(40.86574, -73.84625)",,,2719 SEYMOUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/01/2021,17:50,,,40.90355,-73.854836,"(40.90355, -73.854836)",BRONX BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412568,Sedan,Sedan,,, +05/01/2021,14:00,STATEN ISLAND,10304,40.624584,-74.07838,"(40.624584, -74.07838)",,,14 QUINN STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412456,Sedan,Sedan,,, +05/01/2021,15:00,,,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412896,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,2:54,BROOKLYN,11221,40.69764,-73.92932,"(40.69764, -73.92932)",EVERGREEN AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412117,Station Wagon/Sport Utility Vehicle,Bike,,, +05/01/2021,18:14,BRONX,10453,40.84962,-73.91938,"(40.84962, -73.91938)",MONTGOMERY AVENUE,WEST 176 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412935,Sedan,Sedan,,, +05/01/2021,16:29,MANHATTAN,10010,40.74073,-73.981766,"(40.74073, -73.981766)",3 AVENUE,EAST 26 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4412315,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,7:45,,,,,,,,100 ESSEX DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412836,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,9:30,,,40.736958,-74.00651,"(40.736958, -74.00651)",BETHUNE STREET,,,0,0,0,0,0,0,0,0,,,,,,4413009,Sedan,,,, +05/01/2021,2:30,,,40.69726,-73.80575,"(40.69726, -73.80575)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4412875,Sedan,,,, +05/01/2021,9:45,,,40.7448,-73.953415,"(40.7448, -73.953415)",VERNON BOULEVARD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412139,Sedan,Bike,,, +05/01/2021,21:15,,,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4412904,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,11:00,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412261,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,16:21,,,,,,van cortlandt south,MOSHOLU PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412458,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,22:55,BROOKLYN,11218,40.63555,-73.97803,"(40.63555, -73.97803)",MC DONALD AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,0:00,MANHATTAN,10003,40.731163,-73.99193,"(40.731163, -73.99193)",WANAMAKER PLACE,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412352,Sedan,,,, +05/01/2021,20:40,QUEENS,11419,40.69177,-73.824524,"(40.69177, -73.824524)",121 STREET,97 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4412823,Taxi,,,, +05/01/2021,14:30,,,40.606457,-74.16699,"(40.606457, -74.16699)",,,3226 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4412855,Sedan,Sedan,,, +05/01/2021,16:30,BRONX,10461,40.846527,-73.828735,"(40.846527, -73.828735)",,,1700 MAHAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,23:34,,,40.696983,-73.935234,"(40.696983, -73.935234)",MYRTLE AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413027,Sedan,,,, +05/01/2021,15:20,BROOKLYN,11214,40.606384,-74.00121,"(40.606384, -74.00121)",BAY 20 STREET,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412201,Sedan,,,, +04/27/2021,9:00,,,40.658,-73.935905,"(40.658, -73.935905)",WINTHROP STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412924,E-Bike,Sedan,,, +05/01/2021,16:18,QUEENS,11429,40.70198,-73.74105,"(40.70198, -73.74105)",SPRINGFIELD BOULEVARD,114 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412214,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,10:00,QUEENS,11420,40.677334,-73.82548,"(40.677334, -73.82548)",LINDEN BOULEVARD,113 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412667,Pick-up Truck,Taxi,,, +05/01/2021,19:45,,,,,,RICHMOND TERRACE,VANPELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413017,Sedan,Sedan,,, +05/01/2021,20:59,,,40.833286,-73.914085,"(40.833286, -73.914085)",MORRIS AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4412305,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,22:30,BRONX,10470,40.896084,-73.873184,"(40.896084, -73.873184)",,,87 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412802,Sedan,,,, +04/30/2021,11:46,BROOKLYN,11249,40.719967,-73.95545,"(40.719967, -73.95545)",,,110 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412963,Bus,,,, +05/01/2021,13:14,QUEENS,11354,40.759678,-73.83236,"(40.759678, -73.83236)",39 AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412188,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,9:05,BROOKLYN,11225,40.660435,-73.94542,"(40.660435, -73.94542)",BROOKLYN AVENUE,MIDWOOD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412577,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,11:39,BROOKLYN,11235,40.588028,-73.94926,"(40.588028, -73.94926)",OCEAN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412678,Sedan,Sedan,,, +05/01/2021,19:18,BROOKLYN,11238,40.683723,-73.96797,"(40.683723, -73.96797)",FULTON STREET,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4412207,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/01/2021,15:00,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412373,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,22:20,STATEN ISLAND,10308,40.538067,-74.1496,"(40.538067, -74.1496)",HYLAN BOULEVARD,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412866,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,22:00,,,40.83489,-73.8663,"(40.83489, -73.8663)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412909,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,16:47,QUEENS,11435,40.704082,-73.81641,"(40.704082, -73.81641)",138 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412815,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,21:35,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412289,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +05/01/2021,3:00,,,40.75644,-73.94356,"(40.75644, -73.94356)",11 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412390,Sedan,,,, +04/16/2021,17:30,,,40.85162,-73.82653,"(40.85162, -73.82653)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412989,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,10:12,MANHATTAN,10035,40.797527,-73.933014,"(40.797527, -73.933014)",,,441 EAST 119 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4412860,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,6:05,QUEENS,11417,40.674206,-73.85649,"(40.674206, -73.85649)",,,132-40 80 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4412657,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,11:20,,,40.667847,-73.77612,"(40.667847, -73.77612)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4412151,Sedan,Sedan,,, +05/01/2021,19:00,BRONX,10469,40.87294,-73.84465,"(40.87294, -73.84465)",,,1489 BURKE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412797,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,0:52,,,40.636803,-74.15366,"(40.636803, -74.15366)",RICHMOND TERRACE,GIORDAN COURT,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4412245,Motorcycle,,,, +05/01/2021,15:56,BROOKLYN,11229,40.600544,-73.94076,"(40.600544, -73.94076)",,,2950 AVENUE U,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4412692,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,22:30,MANHATTAN,10033,40.847248,-73.93687,"(40.847248, -73.93687)",WEST 177 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412593,Sedan,,,, +05/01/2021,14:13,QUEENS,11101,40.7448,-73.953415,"(40.7448, -73.953415)",VERNON BOULEVARD,47 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412421,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,14:50,BRONX,10473,40.814598,-73.86463,"(40.814598, -73.86463)",,,1752 LACOMBE AVENUE,1,0,1,0,0,0,0,0,,,,,,4412916,,,,, +05/01/2021,22:30,QUEENS,11385,40.705284,-73.90636,"(40.705284, -73.90636)",GATES AVENUE,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412487,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,13:20,STATEN ISLAND,10308,40.551857,-74.135284,"(40.551857, -74.135284)",REDGRAVE AVENUE,GREENCROFT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412861,Sedan,Sedan,,, +05/01/2021,13:02,STATEN ISLAND,10301,40.620686,-74.11002,"(40.620686, -74.11002)",CLOVE ROAD,BARD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412324,Sedan,Sedan,,, +05/01/2021,17:40,,,40.860176,-73.891754,"(40.860176, -73.891754)",EAST 189 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4412810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,15:30,QUEENS,11432,40.70984,-73.78907,"(40.70984, -73.78907)",172 STREET,89 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4412843,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,2:00,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412389,Taxi,Pick-up Truck,,, +05/01/2021,15:00,QUEENS,11419,40.681923,-73.831924,"(40.681923, -73.831924)",107 AVENUE,109 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412710,Sedan,,,, +05/01/2021,1:50,QUEENS,11369,40.758892,-73.86681,"(40.758892, -73.86681)",,,32-25 102 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,Unspecified,,4412170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/01/2021,4:19,BROOKLYN,11221,40.69129,-73.925934,"(40.69129, -73.925934)",,,1052 GREENE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4412558,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/01/2021,0:20,QUEENS,11422,40.67452,-73.736084,"(40.67452, -73.736084)",MERRICK BOULEVARD,234 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412220,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,18:34,BRONX,10467,40.87144,-73.867165,"(40.87144, -73.867165)",BURKE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412570,Sedan,Sedan,,, +05/01/2021,12:40,,,,,,HYLAN BOULEVARD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,17:40,QUEENS,11368,40.748154,-73.85403,"(40.748154, -73.85403)",111 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412543,Pick-up Truck,,,, +05/01/2021,18:00,QUEENS,11434,40.693863,-73.80069,"(40.693863, -73.80069)",150 STREET,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412879,Sedan,Sedan,,, +05/01/2021,17:28,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412402,Sedan,,,, +04/30/2021,8:58,,,40.827595,-73.85004,"(40.827595, -73.85004)",CASTLE HILL AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412900,Ambulance,Sedan,,, +05/01/2021,0:46,,,40.86159,-73.91295,"(40.86159, -73.91295)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4412127,Sedan,Sedan,Sedan,, +05/01/2021,3:35,MANHATTAN,10012,40.72593,-73.99466,"(40.72593, -73.99466)",LAFAYETTE STREET,BLEECKER STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4412936,Sedan,Sedan,,, +04/30/2021,14:32,,,40.626278,-74.15202,"(40.626278, -74.15202)",,,399 LAKE AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4412835,Sedan,Pick-up Truck,,, +04/29/2021,19:23,BROOKLYN,11222,40.727486,-73.94482,"(40.727486, -73.94482)",RUSSELL STREET,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,15:10,BROOKLYN,11238,40.68877,-73.96088,"(40.68877, -73.96088)",,,368 LAFAYETTE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4413020,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/01/2021,9:50,,,40.60247,-73.94425,"(40.60247, -73.94425)",AVENUE T,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412685,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,15:00,BROOKLYN,11231,40.67448,-74.00202,"(40.67448, -74.00202)",CENTRE MALL,CLINTON STREET,,0,0,0,0,0,0,0,0,Glare,,,,,4412206,NYPD VAN,,,, +05/01/2021,11:15,,,40.745308,-73.90753,"(40.745308, -73.90753)",57 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412208,Sedan,,,, +05/01/2021,20:40,BRONX,10474,40.812077,-73.88681,"(40.812077, -73.88681)",COSTER STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412611,Sedan,,,, +05/01/2021,7:30,,,40.8518,-73.909225,"(40.8518, -73.909225)",EAST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4412932,Sedan,,,, +05/01/2021,17:59,,,40.652973,-73.94401,"(40.652973, -73.94401)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412227,Sedan,Sedan,,, +05/01/2021,12:45,QUEENS,11417,40.675312,-73.84331,"(40.675312, -73.84331)",133 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,0:00,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,EAST BURNSIDE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412968,Moped,,,, +05/01/2021,3:00,BRONX,10461,40.850616,-73.831184,"(40.850616, -73.831184)",,,1957 HOBART AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412288,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/01/2021,16:30,MANHATTAN,10282,40.71755,-74.01367,"(40.71755, -74.01367)",,,345 CHAMBERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412740,Sedan,,,, +04/08/2021,18:00,,,40.663017,-73.94003,"(40.663017, -73.94003)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4413014,Motorcycle,,,, +05/01/2021,0:50,,,40.78223,-73.77119,"(40.78223, -73.77119)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4412180,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,23:45,BRONX,10455,40.811428,-73.90091,"(40.811428, -73.90091)",BRUCKNER BOULEVARD,AUSTIN PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412616,Sedan,Sedan,,, +05/01/2021,15:50,BRONX,10455,40.817257,-73.91723,"(40.817257, -73.91723)",,,600 MELROSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412720,Sedan,,,, +05/01/2021,13:30,BRONX,10470,40.90362,-73.85068,"(40.90362, -73.85068)",,,691 EAST 241 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412801,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,15:15,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4412189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/01/2021,6:45,QUEENS,11427,40.72558,-73.75262,"(40.72558, -73.75262)",HILLSIDE AVENUE,213 STREET,,2,0,0,0,0,0,2,0,Glare,Unspecified,,,,4412224,Sedan,Sedan,,, +04/30/2021,14:00,MANHATTAN,10018,40.758915,-73.9997,"(40.758915, -73.9997)",WEST 39 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4412990,Station Wagon/Sport Utility Vehicle,Bus,,, +04/23/2021,0:00,BROOKLYN,11249,40.72118,-73.95866,"(40.72118, -73.95866)",WYTHE AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413003,Sedan,Sedan,,, +05/01/2021,16:20,,,40.74777,-73.815994,"(40.74777, -73.815994)",OAK AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4412253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,15:45,,,40.88518,-73.91398,"(40.88518, -73.91398)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4412459,Sedan,,,, +04/30/2021,14:30,BROOKLYN,11220,40.639854,-74.0122,"(40.639854, -74.0122)",57 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412972,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,16:20,QUEENS,11423,40.7192,-73.759224,"(40.7192, -73.759224)",205 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412833,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,23:05,BRONX,10473,40.821575,-73.87077,"(40.821575, -73.87077)",,,856 METCALF AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4412923,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/01/2021,15:45,BROOKLYN,11209,40.630814,-74.02508,"(40.630814, -74.02508)",BAY RIDGE PARKWAY,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412200,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,1:54,BROOKLYN,11230,40.615517,-73.96052,"(40.615517, -73.96052)",EAST 14 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4412306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/01/2021,11:37,,,40.690357,-73.989746,"(40.690357, -73.989746)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412164,Sedan,Sedan,,, +05/01/2021,17:08,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412246,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/22/2021,14:00,BROOKLYN,11238,40.671803,-73.96336,"(40.671803, -73.96336)",,,200 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4413103,Sedan,,,, +05/01/2021,13:30,,,40.847897,-73.94523,"(40.847897, -73.94523)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412600,Sedan,Box Truck,,, +05/01/2021,15:49,BROOKLYN,11212,40.661377,-73.92574,"(40.661377, -73.92574)",,,159 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412240,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,11:46,,,40.824184,-73.937225,"(40.824184, -73.937225)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412878,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,9:15,MANHATTAN,10006,40.710876,-74.01439,"(40.710876, -74.01439)",WEST STREET,LIBERTY STREET,,3,0,2,0,0,0,1,0,Unsafe Speed,,,,,4412757,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,8:30,MANHATTAN,10009,40.72197,-73.97568,"(40.72197, -73.97568)",,,920 EAST 6 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4412354,Sedan,Bike,,, +05/01/2021,23:47,,,40.86804,-73.879105,"(40.86804, -73.879105)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412661,Sedan,Sedan,,, +05/01/2021,6:40,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,EAST 233 STREET,,9,0,0,0,0,0,9,0,Unsafe Speed,Unspecified,,,,4412795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,17:00,QUEENS,11414,40.665775,-73.85415,"(40.665775, -73.85415)",80 STREET,153 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412698,Sedan,,,, +05/01/2021,5:27,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Obstruction/Debris,Other Vehicular,,,,4412446,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,2:30,MANHATTAN,10035,40.808956,-73.94041,"(40.808956, -73.94041)",5 AVENUE,EAST 129 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412854,Sedan,Sedan,,, +05/01/2021,19:30,QUEENS,11434,40.67711,-73.78129,"(40.67711, -73.78129)",BAISLEY BOULEVARD,161 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412962,Sedan,Sedan,,, +05/01/2021,20:28,,,,,,PARK AVENUE,EAST 173 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4412335,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,23:34,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,16:40,STATEN ISLAND,10304,40.626663,-74.07565,"(40.626663, -74.07565)",BAY STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412317,Sedan,Sedan,Sedan,, +05/01/2021,9:00,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4412147,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/30/2021,9:28,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",STORY AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4412901,Sedan,Sedan,,, +04/28/2021,17:00,BROOKLYN,11238,40.678543,-73.96855,"(40.678543, -73.96855)",SAINT MARKS AVENUE,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4413130,Station Wagon/Sport Utility Vehicle,Bike,,, +05/01/2021,21:03,QUEENS,11411,40.691452,-73.733955,"(40.691452, -73.733955)",228 STREET,118 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412215,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,20:37,BRONX,10461,40.853443,-73.856094,"(40.853443, -73.856094)",NEILL AVENUE,HAIGHT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412391,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,14:28,,,40.681503,-73.904106,"(40.681503, -73.904106)",BUSHWICK AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413029,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,5:00,QUEENS,11378,40.729134,-73.931015,"(40.729134, -73.931015)",REVIEW AVENUE,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412956,Sedan,,,, +05/01/2021,18:04,,,40.70412,-73.85405,"(40.70412, -73.85405)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4412839,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/01/2021,22:20,,,40.854923,-73.82636,"(40.854923, -73.82636)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412397,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,19:13,BROOKLYN,11208,40.68419,-73.8703,"(40.68419, -73.8703)",FULTON STREET,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458486,Sedan,Convertible,,, +09/18/2021,23:10,,,40.82017,-73.91591,"(40.82017, -73.91591)",MELROSE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458962,Motorscooter,Sedan,,, +04/30/2021,4:00,STATEN ISLAND,10305,40.583042,-74.096176,"(40.583042, -74.096176)",HYLAN BOULEVARD,SEAVER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412844,Sedan,,,, +05/01/2021,21:55,BRONX,10461,40.838844,-73.83588,"(40.838844, -73.83588)",,,3085 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4412294,Taxi,,,, +05/01/2021,23:00,,,40.708935,-73.77721,"(40.708935, -73.77721)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412882,Sedan,Sedan,,, +04/30/2021,17:13,,,40.815304,-73.94371,"(40.815304, -73.94371)",7 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,16:26,BROOKLYN,11211,40.724014,-73.95562,"(40.724014, -73.95562)",,,11 WYTHE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412656,Sedan,,,, +05/01/2021,16:35,,,40.699512,-73.81461,"(40.699512, -73.81461)",91 AVENUE,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4412817,Sedan,,,, +05/01/2021,22:55,QUEENS,11101,40.747334,-73.955055,"(40.747334, -73.955055)",46 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412420,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,17:17,BROOKLYN,11218,40.640995,-73.9693,"(40.640995, -73.9693)",,,664 CONEY ISLAND AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412372,Sedan,E-Bike,,, +05/01/2021,23:00,BRONX,10466,40.892513,-73.84543,"(40.892513, -73.84543)",EDENWALD AVENUE,GRACE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4412563,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,1:27,BRONX,10452,40.846237,-73.91818,"(40.846237, -73.91818)",FEATHERBED LANE,JESUP AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412966,Moped,,,, +05/01/2021,9:45,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412859,Sedan,Box Truck,,, +04/21/2021,18:00,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413039,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,0:55,BROOKLYN,11233,40.68549,-73.924255,"(40.68549, -73.924255)",,,786A HANCOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412572,Sedan,,,, +04/29/2021,17:05,QUEENS,11372,40.747375,-73.88648,"(40.747375, -73.88648)",,,79-19 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4413022,Sedan,,,, +04/30/2021,0:09,,,40.61021,-74.13326,"(40.61021, -74.13326)",MANN AVENUE,PURDY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412862,Pick-up Truck,Sedan,,, +05/01/2021,4:00,BRONX,10460,40.838238,-73.876686,"(40.838238, -73.876686)",EAST 177 STREET,BRONX PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412134,Sedan,Sedan,,, +05/01/2021,13:30,MANHATTAN,10029,40.7963,-73.93829,"(40.7963, -73.93829)",EAST 115 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412937,Bus,Sedan,,, +04/29/2021,8:40,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",BRONX RIVER AVENUE,EAST 174 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412893,Sedan,,,, +05/01/2021,16:30,BRONX,10451,40.824707,-73.91552,"(40.824707, -73.91552)",EAST 161 STREET,COURTLANDT AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4412334,Bike,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,16:50,QUEENS,11420,40.665997,-73.81648,"(40.665997, -73.81648)",NORTH CONDUIT AVENUE,124 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Passing or Lane Usage Improper,Oversized Vehicle,,,4412686,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/01/2021,16:40,QUEENS,11377,40.7493,-73.89758,"(40.7493, -73.89758)",BROADWAY,65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412209,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,18:37,BROOKLYN,11235,40.590187,-73.95383,"(40.590187, -73.95383)",AVENUE Y,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412669,Sedan,Sedan,,, +04/28/2021,22:30,,,40.79162,-73.94885,"(40.79162, -73.94885)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412913,Sedan,,,, +05/01/2021,21:25,,,40.575615,-74.16678,"(40.575615, -74.16678)",,,40 YUKON AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4412840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,17:50,MANHATTAN,10012,40.720936,-73.993805,"(40.720936, -73.993805)",BOWERY,SPRING STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412445,Sedan,Sedan,,, +05/01/2021,15:30,,,40.68843,-73.89132,"(40.68843, -73.89132)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,22:55,BROOKLYN,11211,40.71175,-73.9558,"(40.71175, -73.9558)",SOUTH 1 STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412811,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,15:15,MANHATTAN,10032,40.843903,-73.9427,"(40.843903, -73.9427)",WEST 170 STREET,HAVEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412601,Sedan,,,, +05/01/2021,4:40,,,40.644753,-73.92493,"(40.644753, -73.92493)",CLARENDON ROAD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412239,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,22:30,,,40.678257,-74.002235,"(40.678257, -74.002235)",HAMILTON AVENUE,HENRY STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412274,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,13:54,MANHATTAN,10036,40.7613,-73.999435,"(40.7613, -73.999435)",,,635 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413013,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,10:50,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4412182,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/24/2021,11:00,QUEENS,11373,40.73284,-73.883835,"(40.73284, -73.883835)",,,52-32 83 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412975,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,10:55,,,,,,,,77 WEST DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412624,Bike,Bike,,, +05/01/2021,14:00,,,40.758705,-73.93793,"(40.758705, -73.93793)",37 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412388,Sedan,Sedan,,, +04/30/2021,18:20,BRONX,10458,40.868805,-73.89055,"(40.868805, -73.89055)",EAST 197 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412930,Sedan,E-Bike,,, +05/01/2021,4:30,,,40.666286,-73.95084,"(40.666286, -73.95084)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413080,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/01/2021,17:50,,,40.644753,-73.92493,"(40.644753, -73.92493)",KINGS HIGHWAY,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,22:24,QUEENS,11412,40.689827,-73.75728,"(40.689827, -73.75728)",119 AVENUE,193 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4412295,Sedan,Sedan,,, +04/30/2021,3:18,QUEENS,11432,40.707466,-73.7887,"(40.707466, -73.7887)",JAMAICA AVENUE,171 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4412818,Sedan,,,, +05/01/2021,17:53,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412721,Sedan,Sedan,,, +05/01/2021,6:00,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,15:30,,,40.78722,-73.96793,"(40.78722, -73.96793)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412179,Sedan,Sedan,,, +05/01/2021,23:45,QUEENS,11101,40.74255,-73.93116,"(40.74255, -73.93116)",34 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412539,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +05/01/2021,12:00,BROOKLYN,11204,40.61927,-73.99203,"(40.61927, -73.99203)",,,1745 66 STREET,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4412205,Sedan,,,, +05/01/2021,13:30,BROOKLYN,11211,40.71568,-73.94061,"(40.71568, -73.94061)",,,55 MASPETH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412654,Sedan,,,, +05/01/2021,7:10,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412163,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,22:38,,,40.610947,-73.953606,"(40.610947, -73.953606)",AVENUE P,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412307,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,9:00,QUEENS,11420,40.66848,-73.81088,"(40.66848, -73.81088)",,,135-21 129 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4412717,Sedan,Sedan,Sedan,, +09/14/2021,16:00,QUEENS,11368,40.736988,-73.8646,"(40.736988, -73.8646)",,,96-08 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459022,Sedan,,,, +05/01/2021,8:39,MANHATTAN,10032,40.83923,-73.94555,"(40.83923, -73.94555)",RIVERSIDE DRIVE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4412599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +05/01/2021,13:20,QUEENS,11429,40.7185,-73.73531,"(40.7185, -73.73531)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412223,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,12:17,MANHATTAN,10027,40.809227,-73.94891,"(40.809227, -73.94891)",,,209 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412906,Sedan,Bus,,, +04/30/2021,22:45,,,40.711823,-73.78786,"(40.711823, -73.78786)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4412871,Pick-up Truck,,,, +05/01/2021,17:00,QUEENS,11101,40.753056,-73.921455,"(40.753056, -73.921455)",,,42-02 NORTHERN BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4412392,Sedan,,,, +05/01/2021,0:00,MANHATTAN,10003,40.727493,-73.993484,"(40.727493, -73.993484)",,,380 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412356,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,1:00,QUEENS,11372,40.747375,-73.88648,"(40.747375, -73.88648)",,,79-09 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412832,Bus,Sedan,,, +05/01/2021,15:40,,,,,,AMBOY ROAD,CLOVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412851,Sedan,Sedan,,, +05/01/2021,13:30,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412401,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,14:40,BROOKLYN,11215,40.665794,-73.97752,"(40.665794, -73.97752)",,,541 8 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413132,Sedan,ambulance,,, +05/01/2021,20:11,QUEENS,11377,40.740517,-73.89236,"(40.740517, -73.89236)",45 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412217,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,15:57,,,,,,CENTRAL AVE,BUSHWICK AVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413030,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,8:15,,,40.640064,-74.01557,"(40.640064, -74.01557)",59 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412195,Sedan,,,, +04/28/2021,21:30,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412922,Sedan,Sedan,,, +05/01/2021,17:30,QUEENS,11417,40.67922,-73.86141,"(40.67922, -73.86141)",LIBERTY AVENUE,76 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4412660,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,12:00,QUEENS,11412,40.694534,-73.74783,"(40.694534, -73.74783)",118 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412793,Sedan,Sedan,,, +05/01/2021,18:40,QUEENS,11432,40.725956,-73.788315,"(40.725956, -73.788315)",SURREY PLACE,80 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,19:50,STATEN ISLAND,10312,40.56347,-74.18102,"(40.56347, -74.18102)",WOODROW ROAD,BOYLAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4412447,Sedan,Motorcycle,,, +05/01/2021,19:00,,,,,,SOUTH CONDUIT AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412697,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,19:00,QUEENS,11413,40.68159,-73.74459,"(40.68159, -73.74459)",131 AVENUE,223 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4412583,Sedan,Sedan,,, +05/01/2021,17:00,,,40.743137,-73.82973,"(40.743137, -73.82973)",HORACE HARDING EXPRESSWAY,136 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4412190,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,11:10,,,40.74457,-73.731575,"(40.74457, -73.731575)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412149,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,16:40,MANHATTAN,10011,40.74044,-73.9946,"(40.74044, -73.9946)",WEST 19 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412316,Sedan,,,, +04/22/2021,10:55,,,40.73715,-73.98859,"(40.73715, -73.98859)",PARK AVENUE SOUTH,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413002,Sedan,,,, +05/01/2021,4:30,,,40.779182,-73.826675,"(40.779182, -73.826675)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412470,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,16:30,QUEENS,11413,40.670357,-73.74291,"(40.670357, -73.74291)",,,138-31 230 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412251,Sedan,,,, +05/01/2021,11:04,QUEENS,11435,40.700024,-73.81182,"(40.700024, -73.81182)",,,91-16 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412877,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,17:17,BRONX,10473,40.81644,-73.86695,"(40.81644, -73.86695)",,,1704 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412902,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,16:00,,,40.58664,-74.19173,"(40.58664, -74.19173)",,,389 WILD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412837,Sedan,,,, +04/28/2021,22:20,BRONX,10472,40.82851,-73.88012,"(40.82851, -73.88012)",WHEELER AVENUE,WESTCHESTER AVENUE,,2,0,2,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4412957,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,17:35,QUEENS,11354,40.764347,-73.82595,"(40.764347, -73.82595)",NORTHERN BOULEVARD,BOWNE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412340,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,19:30,,,,,,NARROWS ROAD SOUTH,HYLAN BOULEVARD,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4412845,Motorcycle,Sedan,,, +04/29/2021,13:50,MANHATTAN,10029,40.78393,-73.94423,"(40.78393, -73.94423)",EAST 97 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412992,Sedan,Dump,,, +05/01/2021,11:10,MANHATTAN,10017,40.750763,-73.97446,"(40.750763, -73.97446)",3 AVENUE,EAST 42 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412630,Taxi,,,, +05/01/2021,7:00,BROOKLYN,11237,40.698963,-73.91864,"(40.698963, -73.91864)",GREENE AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413023,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,10:20,,,40.810047,-73.92515,"(40.810047, -73.92515)",EAST 138 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413119,Dump,Bike,,, +05/01/2021,12:45,QUEENS,11411,40.6894,-73.72711,"(40.6894, -73.72711)",118 AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,15:00,BRONX,10460,40.832756,-73.88599,"(40.832756, -73.88599)",,,1004 EAST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412690,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,22:53,MANHATTAN,10029,40.788685,-73.94386,"(40.788685, -73.94386)",EAST 103 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4412928,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/01/2021,18:20,,,40.826057,-73.89722,"(40.826057, -73.89722)",EAST 167 STREET,INTERVALE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4412609,Moped,Sedan,,, +05/01/2021,12:05,BROOKLYN,11214,40.610706,-73.99771,"(40.610706, -73.99771)",,,1818 79 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4412203,Sedan,,,, +05/01/2021,18:30,,,40.7227,-73.98787,"(40.7227, -73.98787)",ORCHARD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412242,Sedan,,,, +05/01/2021,8:00,,,40.89675,-73.85988,"(40.89675, -73.85988)",BRONX BOULEVARD,EAST 236 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412800,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,22:46,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4412777,Sedan,Sedan,Sedan,, +05/01/2021,11:56,,,40.756264,-73.823524,"(40.756264, -73.823524)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412183,Sedan,Sedan,,, +04/25/2021,12:25,BROOKLYN,11222,40.734093,-73.952286,"(40.734093, -73.952286)",,,338 MC GUINNESS BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412958,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,5:25,,,40.698185,-73.9374,"(40.698185, -73.9374)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413032,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,6:45,,,40.596767,-74.16523,"(40.596767, -74.16523)",,,73 ROCKVILLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412841,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +05/01/2021,20:40,,,40.685844,-73.94732,"(40.685844, -73.94732)",MARCY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412412,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,11:21,,,40.812725,-73.94931,"(40.812725, -73.94931)",WEST 129 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412881,Sedan,,,, +04/19/2021,5:30,BRONX,10462,40.836945,-73.86342,"(40.836945, -73.86342)",,,1465 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412894,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,3:00,QUEENS,11434,40.66737,-73.78266,"(40.66737, -73.78266)",NORTH CONDUIT AVENUE,CRANSTON STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4412135,Station Wagon/Sport Utility Vehicle,,,, +04/03/2021,15:12,,,40.87626,-73.90395,"(40.87626, -73.90395)",BAILEY AVENUE,,,2,0,2,0,0,0,0,0,Unspecified,,,,,4413012,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,0:01,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",FLATBUSH AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412517,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,19:30,BROOKLYN,11225,40.656578,-73.96009,"(40.656578, -73.96009)",,,681 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412575,Sedan,Sedan,,, +04/19/2021,7:30,,,40.61313,-74.00773,"(40.61313, -74.00773)",83 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412944,Sedan,,,, +05/01/2021,10:00,BROOKLYN,11218,40.648117,-73.97135,"(40.648117, -73.97135)",,,397 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412326,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,2:20,BROOKLYN,11211,40.71142,-73.95313,"(40.71142, -73.95313)",GRAND STREET,KEAP STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4412812,,,,, +05/01/2021,18:11,BRONX,10467,40.858868,-73.86952,"(40.858868, -73.86952)",THWAITES PLACE,BARKER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4412382,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,23:40,BROOKLYN,11226,40.651546,-73.95257,"(40.651546, -73.95257)",MARTENSE STREET,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Traffic Control Disregarded,Unspecified,,,4412977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/01/2021,14:43,BRONX,10466,40.889786,-73.83487,"(40.889786, -73.83487)",,,3907 DURYEA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412564,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/01/2021,10:45,BROOKLYN,11203,40.651108,-73.94283,"(40.651108, -73.94283)",EAST 37 STREET,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,,,,,4412238,Sedan,,,, +05/01/2021,13:02,MANHATTAN,10012,40.72538,-74.00011,"(40.72538, -74.00011)",PRINCE STREET,WOOSTER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412178,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +05/01/2021,10:10,BROOKLYN,11223,40.599525,-73.96128,"(40.599525, -73.96128)",,,2355 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4412676,Sedan,Sedan,PK,, +04/30/2021,18:10,QUEENS,11416,40.68302,-73.85604,"(40.68302, -73.85604)",,,97-45 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412822,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,1:05,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412299,Sedan,,,, +05/01/2021,23:15,,,40.70644,-73.75973,"(40.70644, -73.75973)",HOLLIS AVENUE,198 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4412272,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,20:42,,,40.777874,-73.95175,"(40.777874, -73.95175)",EAST 86 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412731,Sedan,Bike,,, +05/01/2021,10:00,,,,,,G.C.P. / JEWEL (CDR),,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,,,,4412965,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,15:12,BRONX,10461,40.85638,-73.83799,"(40.85638, -73.83799)",,,1680 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4412367,Sedan,,,, +05/01/2021,17:03,MANHATTAN,10016,40.748432,-73.982475,"(40.748432, -73.982475)",EAST 35 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Traffic Control Disregarded,,,,4412439,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,0:00,MANHATTAN,10027,40.81458,-73.94795,"(40.81458, -73.94795)",WEST 132 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4412912,Sedan,,,, +05/01/2021,18:20,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,17:45,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4411150,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/01/2021,7:00,QUEENS,11385,40.697433,-73.898605,"(40.697433, -73.898605)",DECATUR STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412481,Box Truck,Sedan,,, +05/01/2021,19:45,,,40.71906,-73.812126,"(40.71906, -73.812126)",UNION TURNPIKE,150 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4412342,Sedan,Sedan,,, +05/01/2021,23:01,BROOKLYN,11236,40.63682,-73.90218,"(40.63682, -73.90218)",REMSEN AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413076,Sedan,Sedan,,, +05/01/2021,9:31,STATEN ISLAND,10305,40.586475,-74.0703,"(40.586475, -74.0703)",,,451 CAPODANNO BOULEVARD,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4412847,Sedan,Carry All,,, +04/30/2021,17:20,,,40.6041,-74.06908,"(40.6041, -74.06908)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412858,Station Wagon/Sport Utility Vehicle,van,,, +05/01/2021,23:05,,,40.856792,-73.91742,"(40.856792, -73.91742)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4412873,Sedan,,,, +05/01/2021,18:45,,,40.769737,-73.91244,"(40.769737, -73.91244)",37 STREET,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4412393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/18/2021,23:45,BROOKLYN,11225,40.66551,-73.95315,"(40.66551, -73.95315)",,,348 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4458526,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/18/2021,16:12,MANHATTAN,10009,40.72709,-73.97665,"(40.72709, -73.97665)",EAST 12 STREET,AVENUE C,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458874,Van,Bike,,, +09/18/2021,6:20,BRONX,10468,40.859642,-73.899826,"(40.859642, -73.899826)",CRESTON AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458329,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,13:30,BRONX,10473,40.82129,-73.86605,"(40.82129, -73.86605)",,,805 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458647,Sedan,Sedan,,, +09/18/2021,16:30,QUEENS,11413,40.665478,-73.748795,"(40.665478, -73.748795)",EDGEWOOD AVENUE,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458419,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,6:32,BROOKLYN,11228,40.61334,-74.01109,"(40.61334, -74.01109)",85 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4459371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/18/2021,20:28,BROOKLYN,11212,,,,Livonia Avenue,Mother Gaston Boulevard,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458665,,,,, +09/18/2021,1:14,BROOKLYN,11232,40.650566,-74.00462,"(40.650566, -74.00462)",,,4013 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458471,Pick-up Truck,E-Bike,,, +09/18/2021,5:00,,,40.60779,-73.99136,"(40.60779, -73.99136)",78 STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4458644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/16/2021,6:50,BRONX,10462,40.840733,-73.85304,"(40.840733, -73.85304)",METROPOLITAN AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459275,Sedan,,,, +09/18/2021,16:50,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4459058,Motorbike,Sedan,,, +09/18/2021,22:57,,,40.5774,-73.95404,"(40.5774, -73.95404)",BRIGHTON BEACH AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4458552,Sedan,Sedan,,, +09/16/2021,7:31,BRONX,10474,,,,BARRETTO STREET,OAK POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459066,Sedan,Sedan,,, +09/18/2021,1:15,MANHATTAN,10022,40.758743,-73.96863,"(40.758743, -73.96863)",,,909 3 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4458280,Bike,,,, +09/12/2021,19:20,STATEN ISLAND,10307,40.516838,-74.24085,"(40.516838, -74.24085)",,,5142 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4459133,Sedan,,,, +09/17/2021,17:34,MANHATTAN,10019,40.76838,-73.99281,"(40.76838, -73.99281)",WEST 54 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459329,Motorcycle,Bike,,, +09/18/2021,15:30,BRONX,10461,40.854664,-73.85707,"(40.854664, -73.85707)",HAIGHT AVENUE,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458994,Sedan,,,, +09/11/2021,13:30,BRONX,10467,40.87296,-73.87495,"(40.87296, -73.87495)",WEBSTER AVENUE,EAST 205 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459216,Sedan,,,, +09/17/2021,11:40,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",VICTORY BOULEVARD,CLOVE ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4459188,Sedan,,,, +09/18/2021,18:23,,,40.708504,-73.81954,"(40.708504, -73.81954)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4458841,Sedan,,,, +09/18/2021,10:30,MANHATTAN,10006,40.70694,-74.01353,"(40.70694, -74.01353)",TRINITY PLACE,EDGAR STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4458390,Bus,,,, +09/18/2021,6:00,,,40.70778,-73.79341,"(40.70778, -73.79341)",168 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,17:16,BRONX,10469,40.8703,-73.839905,"(40.8703, -73.839905)",ADEE AVENUE,TIEMANN AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4458761,Sedan,Sedan,Sedan,, +09/17/2021,9:00,QUEENS,11368,40.750126,-73.86999,"(40.750126, -73.86999)",,,37-83 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459131,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/18/2021,16:10,BROOKLYN,11234,40.609947,-73.92227,"(40.609947, -73.92227)",,,5100 AVENUE U,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4458424,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,1:33,,,40.846165,-73.929146,"(40.846165, -73.929146)",HARLEM RIVER DRIVE,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4458819,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/09/2021,0:40,STATEN ISLAND,10309,40.54997,-74.21127,"(40.54997, -74.21127)",ROSSVILLE AVENUE,BERRY COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/18/2021,10:00,,,40.6266,-74.16119,"(40.6266, -74.16119)",AMITY PLACE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458458,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,6:10,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4458899,Station Wagon/Sport Utility Vehicle,Sedan,Flat Bed,, +09/11/2021,14:10,BRONX,10472,40.829502,-73.87462,"(40.829502, -73.87462)",WESTCHESTER AVENUE,MORRISON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4459182,Sedan,,,, +09/18/2021,4:30,BRONX,10457,40.85407,-73.89932,"(40.85407, -73.89932)",EAST 181 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458350,Sedan,Sedan,,, +09/18/2021,3:43,,,40.873383,-73.88938,"(40.873383, -73.88938)",EAST BEDFORD PARK BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458775,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,23:15,,,40.66605,-73.81525,"(40.66605, -73.81525)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458892,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,12:30,BRONX,10460,40.850224,-73.88257,"(40.850224, -73.88257)",GROTE STREET,SOUTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4458951,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/18/2021,0:13,,,,,,LINDEN STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4458365,Sedan,,,, +09/15/2021,18:30,QUEENS,11432,40.70638,-73.79998,"(40.70638, -73.79998)",161 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459161,Sedan,Sedan,,, +09/18/2021,17:12,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,20:22,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458451,Sedan,,,, +09/18/2021,12:20,QUEENS,11364,40.735023,-73.761444,"(40.735023, -73.761444)",,,210-02 RICHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458596,Sedan,,,, +09/16/2021,18:40,,,40.715927,-73.80889,"(40.715927, -73.80889)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459155,Sedan,Sedan,,, +08/10/2022,9:00,BRONX,10458,40.85718,-73.89214,"(40.85718, -73.89214)",,,466 EAST 186 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4561627,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,20:20,BROOKLYN,11211,40.714825,-73.95882,"(40.714825, -73.95882)",DRIGGS AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4458991,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,Sedan,Station Wagon/Sport Utility Vehicle +09/18/2021,8:43,,,40.752888,-73.96374,"(40.752888, -73.96374)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,12:00,,,40.74549,-73.95318,"(40.74549, -73.95318)",VERNON BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458376,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,4:00,BROOKLYN,11226,40.64485,-73.96002,"(40.64485, -73.96002)",BEVERLEY ROAD,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4458468,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,3:30,,,40.631283,-74.13131,"(40.631283, -74.13131)",,,911 POST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458324,Pick-up Truck,,,, +09/18/2021,18:10,MANHATTAN,10035,40.801865,-73.94136,"(40.801865, -73.94136)",EAST 120 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4458438,Sedan,,,, +09/06/2021,14:00,BROOKLYN,11238,40.68644,-73.97251,"(40.68644, -73.97251)",,,318 CUMBERLAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459219,Motorcycle,Sedan,,, +09/18/2021,19:25,BROOKLYN,11226,40.65065,-73.952866,"(40.65065, -73.952866)",,,2606 CHURCH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458746,Sedan,,,, +09/18/2021,1:00,,,40.744587,-73.81966,"(40.744587, -73.81966)",148 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458430,Sedan,,,, +09/14/2021,22:20,BRONX,10468,40.870132,-73.90161,"(40.870132, -73.90161)",,,2728 WEBB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459263,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,20:55,BROOKLYN,11229,40.594738,-73.95176,"(40.594738, -73.95176)",AVENUE W,EAST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458912,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,0:30,BROOKLYN,11226,40.644493,-73.94698,"(40.644493, -73.94698)",CORTELYOU ROAD,EAST 32 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459291,Sedan,Sedan,,, +09/18/2021,18:15,BROOKLYN,11207,40.66005,-73.89496,"(40.66005, -73.89496)",,,649 ALABAMA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4458502,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,1:50,,,40.681473,-73.72776,"(40.681473, -73.72776)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4458806,Sedan,Sedan,,, +09/18/2021,12:15,MANHATTAN,10028,40.77529,-73.953636,"(40.77529, -73.953636)",2 AVENUE,EAST 83 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458943,Station Wagon/Sport Utility Vehicle,Bike,,, +09/18/2021,2:15,MANHATTAN,10009,,,,,,425 EAST 13 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4458873,Taxi,Motorscooter,Sedan,, +09/18/2021,22:23,QUEENS,11369,40.770496,-73.87481,"(40.770496, -73.87481)",DITMARS BOULEVARD,96 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458579,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,19:08,QUEENS,11373,40.74226,-73.89071,"(40.74226, -73.89071)",74 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459029,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,0:22,,,40.7178,-73.80358,"(40.7178, -73.80358)",164 STREET,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459142,Sedan,Sedan,,, +09/18/2021,4:33,BROOKLYN,11228,40.61944,-74.018196,"(40.61944, -74.018196)",,,1014 83 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4458492,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/18/2021,17:01,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,23:56,MANHATTAN,10019,40.765675,-73.97624,"(40.765675, -73.97624)",CENTRAL PARK SOUTH,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,21:43,QUEENS,11411,40.696938,-73.72752,"(40.696938, -73.72752)",,,115-04 CROSS ISLAND PARKWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458477,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/18/2021,5:50,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458293,Sedan,Sedan,COMMERCIAL,, +09/18/2021,22:13,,,40.854588,-73.90187,"(40.854588, -73.90187)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459067,Sedan,,,, +08/21/2021,23:00,BROOKLYN,11201,40.70242,-73.9867,"(40.70242, -73.9867)",JAY STREET,FRONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459229,Sedan,,,, +09/18/2021,16:00,,,40.815872,-73.9257,"(40.815872, -73.9257)",CANAL PLACE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4458411,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,2:26,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459199,Sedan,,,, +09/18/2021,19:24,BRONX,10461,40.8377102,-73.845465,"(40.8377102, -73.845465)",,,2452 WESTCHESTER AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4458528,Sedan,E-Bike,,, +09/18/2021,16:00,QUEENS,11435,40.709026,-73.81333,"(40.709026, -73.81333)",143 STREET,85 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459139,Sedan,Sedan,,, +09/16/2021,18:30,BROOKLYN,11221,,,,CENTRAL AVENUE,GROVE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459016,Moped,,,, +08/16/2021,8:02,BROOKLYN,11201,40.70206,-73.99262,"(40.70206, -73.99262)",FULTON STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459278,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,13:33,,,40.786175,-73.9457,"(40.786175, -73.9457)",EAST 99 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4459352,Sedan,E-Scooter,,, +09/18/2021,11:41,,,,,,EAST 165 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:45,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459239,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,11:09,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4458713,Sedan,Sedan,,, +09/17/2021,23:30,QUEENS,11373,40.740437,-73.87316,"(40.740437, -73.87316)",,,91-09 50 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459023,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,8:45,,,40.719368,-73.836006,"(40.719368, -73.836006)",113 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458516,Motorcycle,,,, +09/18/2021,22:05,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4458460,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +09/16/2021,22:15,MANHATTAN,10037,40.814358,-73.94067,"(40.814358, -73.94067)",,,506 LENOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459062,Van,unknown,,, +09/18/2021,15:39,QUEENS,11373,40.73609,-73.871765,"(40.73609, -73.871765)",,,90-45 56 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459081,Sedan,Sedan,,, +09/18/2021,21:10,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,View Obstructed/Limited,,,,4458790,Sedan,Tow Truck / Wrecker,,, +09/18/2021,20:05,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",SAINT ANNS AVENUE,EAST 149 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458978,PICK UP,Sedan,,, +09/18/2021,0:15,QUEENS,11368,40.75763,-73.865685,"(40.75763, -73.865685)",103 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,12:31,BRONX,10463,40.87664,-73.90139,"(40.87664, -73.90139)",ALBANY CRESCENT,KINGSBRIDGE TERRACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459254,Station Wagon/Sport Utility Vehicle,Motorbike,,, +09/18/2021,17:05,BROOKLYN,11223,40.605377,-73.98211,"(40.605377, -73.98211)",KINGS HIGHWAY,WEST 9 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458648,Sedan,Sedan,,, +09/01/2021,15:30,MANHATTAN,10011,40.73104,-73.99961,"(40.73104, -73.99961)",WEST 4 STREET,MAC DOUGAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459152,Sedan,Bike,,, +09/12/2021,20:30,QUEENS,11373,40.734657,-73.86482,"(40.734657, -73.86482)",JUNCTION BOULEVARD,60 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459033,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,8:00,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,TYSENS LANE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4459203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,14:30,BROOKLYN,11233,40.67909,-73.90829,"(40.67909, -73.90829)",STONE AVENUE,SOMERS STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458672,Sedan,Bike,,, +09/01/2021,18:55,BROOKLYN,11213,40.671185,-73.94204,"(40.671185, -73.94204)",SAINT JOHNS PLACE,KINGSTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459189,Sedan,Motorscooter,,, +09/17/2021,9:40,QUEENS,11373,40.734768,-73.87459,"(40.734768, -73.87459)",QUEENS BOULEVARD,56 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459040,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,0:50,BROOKLYN,11234,40.619442,-73.91906,"(40.619442, -73.91906)",,,5803 AVENUE N,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4458286,Sedan,,,, +09/13/2021,8:45,,,40.563755,-74.17759,"(40.563755, -74.17759)",ANNADALE ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459134,Bus,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,22:29,,,,,,WEST 150 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459063,,,,, +09/18/2021,21:50,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458491,Sedan,,,, +09/18/2021,10:55,BRONX,10467,40.87321,-73.8671,"(40.87321, -73.8671)",WHITE PLAINS ROAD,ROSEWOOD STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4458842,Sedan,,,, +09/18/2021,16:00,QUEENS,11354,40.76316,-73.8164,"(40.76316, -73.8164)",ROOSEVELT AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458402,Sedan,,,, +09/18/2021,23:35,QUEENS,11357,40.780354,-73.80233,"(40.780354, -73.80233)",WILLETS POINT BOULEVARD,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,11:00,STATEN ISLAND,10309,40.537365,-74.21193,"(40.537365, -74.21193)",MAGUIRE AVENUE,SHELDON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459103,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,23:20,BROOKLYN,11237,,,,KNICKERBOCKER AVENUE,BLEECKER STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459017,Sedan,Sedan,,, +09/18/2021,21:45,QUEENS,11369,40.76803,-73.87722,"(40.76803, -73.87722)",23 AVENUE,93 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458578,Sedan,Sedan,,, +08/26/2021,6:00,,,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459274,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,9:30,BRONX,10463,40.883778,-73.89405,"(40.883778, -73.89405)",,,3920 ORLOFF AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4458635,Bike,,,, +09/10/2021,18:15,,,40.69423,-73.94608,"(40.69423, -73.94608)",TOMPKINS AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4459298,Bike,Sedan,,, +09/18/2021,0:45,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",WASHINGTON AVENUE,EAST 163 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458966,E-Bike,Sedan,,, +09/18/2021,13:15,,,,,,MYRTLE AVENUE,FOREST PARK DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4458748,Sedan,Sedan,Sedan,, +09/18/2021,12:19,BRONX,10461,40.85543,-73.855354,"(40.85543, -73.855354)",WILLIAMSBRIDGE ROAD,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458427,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,4:15,QUEENS,11435,40.704147,-73.807594,"(40.704147, -73.807594)",89 AVENUE,148 STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4458457,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/08/2021,11:30,,,40.73619,-74.008316,"(40.73619, -74.008316)",BANK STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459179,Sedan,,,, +09/18/2021,4:40,BROOKLYN,11229,40.59904,-73.92951,"(40.59904, -73.92951)",,,2412 BURNETT STREET,0,0,0,0,0,0,0,0,,,,,,4458353,,,,, +09/16/2021,20:40,,,40.836155,-73.87179,"(40.836155, -73.87179)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459156,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/18/2021,10:45,BRONX,10473,40.8213,-73.88033,"(40.8213, -73.88033)",STORY AVENUE,COLGATE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458779,Sedan,,,, +09/18/2021,13:30,BROOKLYN,11215,40.6754,-73.9887,"(40.6754, -73.9887)",,,214 3 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458525,Sedan,,,, +09/17/2021,14:24,,,40.69691,-73.85745,"(40.69691, -73.85745)",88 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4459250,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/31/2021,19:00,MANHATTAN,10013,40.71589,-73.99631,"(40.71589, -73.99631)",,,50 BOWERY,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4459121,Sedan,E-Scooter,,, +09/09/2021,20:40,QUEENS,11361,40.76167,-73.77597,"(40.76167, -73.77597)",42 AVENUE,209 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459213,Sedan,Sedan,,, +09/18/2021,17:30,QUEENS,11357,40.79328,-73.801544,"(40.79328, -73.801544)",9 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458432,Sedan,Sedan,,, +09/18/2021,19:20,QUEENS,11365,40.745667,-73.792496,"(40.745667, -73.792496)",UTOPIA PARKWAY,PECK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458461,Motorcycle,Sedan,,, +09/18/2021,2:25,BRONX,10457,40.846825,-73.89705,"(40.846825, -73.89705)",EAST TREMONT AVENUE,BATHGATE AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4458980,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,13:45,QUEENS,11417,40.679787,-73.847694,"(40.679787, -73.847694)",,,105-29 91 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458896,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,16:02,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4458916,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/12/2021,22:39,BRONX,10463,40.879345,-73.91238,"(40.879345, -73.91238)",JOHNSON AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459258,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/18/2021,8:30,,,40.770283,-73.82558,"(40.770283, -73.82558)",143 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458342,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,21:35,,,40.66807,-73.80789,"(40.66807, -73.80789)",131 STREET,135 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412673,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,12:40,,,40.59654,-73.76748,"(40.59654, -73.76748)",BEACH CHANNEL DRIVE,BEACH 35 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unsafe Lane Changing,,,,4459365,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,20:11,MANHATTAN,10029,40.797447,-73.94671,"(40.797447, -73.94671)",EAST 112 STREET,MADISON AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458643,AMBULACE,E-Scooter,,, +09/17/2021,19:44,,,,,,DELAFIELD AVENUE,MANHATTAN COLLEGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459268,Sedan,,,, +09/17/2021,15:40,MANHATTAN,10019,40.766087,-73.97724,"(40.766087, -73.97724)",,,128 CENTRAL PARK SOUTH,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459325,Station Wagon/Sport Utility Vehicle,PEDICAB,,, +09/18/2021,13:00,BROOKLYN,11228,40.624474,-74.00668,"(40.624474, -74.00668)",70 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458388,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,0:25,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4459265,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/18/2021,22:20,,,40.780464,-73.94404,"(40.780464, -73.94404)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4458789,Tractor Truck Diesel,,,, +09/18/2021,2:55,MANHATTAN,10013,40.716423,-74.00975,"(40.716423, -74.00975)",,,141 READE STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4458323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,20:52,MANHATTAN,10017,,,,3 AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458469,Sedan,Sedan,,, +09/18/2021,23:00,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,View Obstructed/Limited,,,4458890,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/13/2021,12:46,BROOKLYN,11201,40.692013,-73.98149,"(40.692013, -73.98149)",WILLOUGHBY STREET,FLEET STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459221,Sedan,,,, +09/18/2021,18:54,,,40.64495,-73.9249,"(40.64495, -73.9249)",CLARENDON ROAD,KINGS HIGHWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458740,Bike,Sedan,,, +09/18/2021,15:46,QUEENS,11413,40.665485,-73.75137,"(40.665485, -73.75137)",226 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458422,Sedan,Sedan,,, +09/17/2021,19:30,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",73 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459079,Sedan,Sedan,,, +09/18/2021,8:15,,,40.808445,-73.945,"(40.808445, -73.945)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4459050,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,15:49,,,40.60827,-73.94232,"(40.60827, -73.94232)",GERRITSEN AVENUE,AVENUE R,,2,0,0,0,0,0,2,0,Unspecified,,,,,4459342,Sedan,,,, +09/18/2021,23:37,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4458503,Convertible,Sedan,,, +09/18/2021,21:28,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4458990,Sedan,Sedan,,, +09/18/2021,14:30,QUEENS,11368,40.73862,-73.8508,"(40.73862, -73.8508)",WALDRON STREET,SAULTELL AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459028,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,15:08,BROOKLYN,11224,40.578236,-73.99157,"(40.578236, -73.99157)",NEPTUNE AVENUE,WEST 24 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4458548,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,10:04,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4459355,Sedan,Sedan,,, +08/23/2021,11:08,BROOKLYN,11201,,,,TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459230,Sedan,Box Truck,,, +09/18/2021,0:05,,,,,,WILLIS AVE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458413,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,14:00,STATEN ISLAND,10308,40.559383,-74.15393,"(40.559383, -74.15393)",GIFFORDS LANE,BARLOW AVENUE,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459200,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,12:00,QUEENS,11377,40.74128,-73.90257,"(40.74128, -73.90257)",QUEENS BOULEVARD,63 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4458375,Sedan,Sedan,,, +09/13/2021,8:35,QUEENS,11372,40.752472,-73.87818,"(40.752472, -73.87818)",35 AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,22:45,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,2,0,0,0,0,0,0,0,Unspecified,,,,,4458801,E-Bike,,,, +09/17/2021,19:25,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4459293,Bike,Sedan,Sedan,, +09/18/2021,14:57,BRONX,10458,40.860237,-73.892845,"(40.860237, -73.892845)",,,2466 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4458938,MOPED,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,0:00,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458583,Sedan,Sedan,,, +09/18/2021,20:35,MANHATTAN,10016,,,,,,7 EAST 27 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4458865,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,20:28,,,40.800507,-73.96798,"(40.800507, -73.96798)",WEST 105 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4458710,Convertible,Sedan,,, +09/18/2021,1:10,,,40.814594,-73.88588,"(40.814594, -73.88588)",HUNTS POINT AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4458367,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,1:58,,,40.746883,-73.76348,"(40.746883, -73.76348)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4458294,Sedan,Sedan,,, +09/18/2021,12:50,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458476,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,0:15,MANHATTAN,10014,40.735664,-74.00162,"(40.735664, -74.00162)",,,159 7 AVENUE SOUTH,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459171,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,7:00,QUEENS,11422,40.668186,-73.74111,"(40.668186, -73.74111)",233 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458601,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,0:00,BROOKLYN,11210,40.6333,-73.94812,"(40.6333, -73.94812)",,,1535 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4458450,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,0:01,STATEN ISLAND,10301,40.64548,-74.087746,"(40.64548, -74.087746)",,,61 JERSEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459054,Sedan,Sedan,Sedan,, +09/18/2021,14:13,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4459068,Sedan,,,, +09/18/2021,12:00,,,40.700054,-73.92459,"(40.700054, -73.92459)",HART STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459009,Pick-up Truck,Sedan,,, +09/04/2021,5:45,STATEN ISLAND,10312,40.559128,-74.16948,"(40.559128, -74.16948)",DRUMGOOLE ROAD EAST,RICHMOND AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4459140,Sedan,,,, +09/18/2021,10:09,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4459279,Sedan,,,, +09/18/2021,15:45,BROOKLYN,11208,40.677467,-73.86671,"(40.677467, -73.86671)",GLENMORE AVENUE,SHERIDAN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458494,Sedan,E-Scooter,,, +09/18/2021,19:50,,,40.73149,-73.84215,"(40.73149, -73.84215)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459024,Sedan,Sedan,,, +09/01/2021,16:00,MANHATTAN,10014,40.734295,-74.00717,"(40.734295, -74.00717)",CHARLES STREET,GREENWICH STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4459167,Sedan,,,, +09/18/2021,0:00,BRONX,10467,40.878784,-73.87298,"(40.878784, -73.87298)",,,344 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4458780,Sedan,,,, +09/18/2021,0:05,STATEN ISLAND,10306,,,,RICHMOND ROAD,MCKINLEY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4459194,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,16:25,BRONX,10468,,,,Bedford park boulevard,grand concourse,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4459223,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,16:20,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458405,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,19:45,,,40.874485,-73.843,"(40.874485, -73.843)",SEXTON PLACE,,,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,Unspecified,,,4458843,Sedan,Sedan,,, +09/04/2021,14:45,STATEN ISLAND,10304,40.62551,-74.07599,"(40.62551, -74.07599)",BROAD STREET,BROWNELL STREET,,18,0,0,0,0,0,18,0,Driver Inexperience,Unspecified,,,,4459119,Sedan,School Bus,,, +09/18/2021,9:00,QUEENS,11378,40.726677,-73.90736,"(40.726677, -73.90736)",,,59-40 55 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458755,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,4:20,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4458383,Bike,,,, +09/18/2021,17:22,QUEENS,11356,40.778606,-73.84339,"(40.778606, -73.84339)",23 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,,4458433,Sedan,Sedan,,, +07/01/2022,20:12,,,,,,VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4542846,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,9:10,BRONX,10460,40.8314,-73.88783,"(40.8314, -73.88783)",,,984 JENNINGS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,2:36,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458928,E-Scooter,,,, +09/18/2021,4:50,BROOKLYN,11211,40.71299,-73.94921,"(40.71299, -73.94921)",,,537 LORIMER STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4458356,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/20/2020,9:14,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459141,Sedan,Pick-up Truck,,, +09/07/2021,6:56,QUEENS,11414,40.665154,-73.83366,"(40.665154, -73.83366)",155 AVENUE,101 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4454664,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/14/2021,3:00,,,40.879578,-73.879,"(40.879578, -73.879)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4459202,Sedan,Sedan,,, +09/16/2021,22:27,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4459019,Sedan,Sedan,Sedan,, +09/10/2021,12:00,,,40.694115,-73.79214,"(40.694115, -73.79214)",160 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459249,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,2:10,QUEENS,11369,40.75868,-73.87552,"(40.75868, -73.87552)",32 AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4458569,Sedan,,,, +09/13/2021,22:55,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459060,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,18:55,BROOKLYN,11224,40.576042,-73.99008,"(40.576042, -73.99008)",WEST 23 STREET,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459064,Sedan,E-Scooter,,, +09/18/2021,4:52,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,,,4458288,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +09/01/2021,19:28,MANHATTAN,10014,40.738132,-74.008385,"(40.738132, -74.008385)",,,100 JANE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459176,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,2:43,QUEENS,11421,40.685722,-73.85738,"(40.685722, -73.85738)",ATLANTIC AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4458641,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/18/2021,20:00,BROOKLYN,11212,40.66366,-73.90146,"(40.66366, -73.90146)",JUNIUS STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458673,Sedan,,,, +08/27/2021,13:00,,,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,15:57,BROOKLYN,11201,40.6867,-73.9982,"(40.6867, -73.9982)",HENRY STREET,KANE STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4459313,Sedan,,,, +09/18/2021,18:15,,,,,,BROOKLYN QUEENS EXPY (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458490,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/18/2021,17:30,BRONX,10460,40.837246,-73.885704,"(40.837246, -73.885704)",,,1769 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458967,Taxi,,,, +09/18/2021,12:46,,,,,,VANDERBILT AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458524,Sedan,Sedan,,, +09/06/2021,21:30,MANHATTAN,10011,40.73509,-73.9956,"(40.73509, -73.9956)",,,24 WEST 12 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459157,Sedan,Bike,,, +09/16/2021,16:58,BRONX,10463,,,,,,3363 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459260,Bus,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,20:00,,,40.743343,-73.97203,"(40.743343, -73.97203)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4458652,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/18/2021,16:38,BRONX,10469,40.865967,-73.8568,"(40.865967, -73.8568)",,,2723 LURTING AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458426,Moped,Bike,,, +09/18/2021,2:30,BRONX,10462,40.842438,-73.85377,"(40.842438, -73.85377)",,,2205 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458338,Sedan,Sedan,,, +09/18/2021,13:40,,,40.68488,-73.92311,"(40.68488, -73.92311)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4458831,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/18/2021,19:43,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4458982,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,9:17,BROOKLYN,11220,,,,4 AVENUE,49 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458463,Station Wagon/Sport Utility Vehicle,Bike,,, +09/18/2021,18:48,BROOKLYN,11217,40.68962,-73.97313,"(40.68962, -73.97313)",DE KALB AVENUE,WASHINGTON PARK,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4458456,Motorcycle,Sedan,,, +09/18/2021,20:58,BROOKLYN,11249,40.71475,-73.96105,"(40.71475, -73.96105)",,,280 BEDFORD AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458897,Sedan,Bike,,, +09/18/2021,18:30,STATEN ISLAND,10312,40.54977,-74.192116,"(40.54977, -74.192116)",VESPA AVENUE,JEFFERSON BOULEVARD,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4459148,Station Wagon/Sport Utility Vehicle,Bike,,, +09/18/2021,16:21,QUEENS,11436,40.680088,-73.80177,"(40.680088, -73.80177)",116 AVENUE,140 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459360,Station Wagon/Sport Utility Vehicle,Bike,,, +09/18/2021,20:51,,,40.750317,-73.99112,"(40.750317, -73.99112)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458513,Sedan,Bus,,, +09/18/2021,0:30,,,40.747242,-73.88766,"(40.747242, -73.88766)",78 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458577,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,18:00,BROOKLYN,11220,40.644127,-74.00417,"(40.644127, -74.00417)",47 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459102,Sedan,,,, +09/17/2021,19:00,QUEENS,11368,40.73619,-73.85806,"(40.73619, -73.85806)",,,99-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459041,Sedan,E-Bike,,, +09/18/2021,21:00,,,40.60853,-73.89788,"(40.60853, -73.89788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459237,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,11:00,BRONX,10463,40.882866,-73.90201,"(40.882866, -73.90201)",,,5740 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4459267,Sedan,,,, +09/18/2021,10:45,BROOKLYN,11211,40.717064,-73.944824,"(40.717064, -73.944824)",,,407 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458631,Sedan,Box Truck,,, +09/17/2021,12:42,,,,,,THROOP AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4459297,Sedan,Moped,,, +09/18/2021,7:06,,,,,,HIGHLAND BOULEVARD,VERMONT PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4458498,Sedan,,,, +09/18/2021,1:00,STATEN ISLAND,10306,40.556526,-74.13934,"(40.556526, -74.13934)",,,3501 AMBOY ROAD,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4459211,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,0:00,QUEENS,11372,40.746956,-73.890305,"(40.746956, -73.890305)",,,75-10 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459032,Sedan,,,, +09/11/2021,16:24,MANHATTAN,10128,40.778656,-73.94764,"(40.778656, -73.94764)",,,400 EAST 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459343,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,14:25,,,40.86235,-73.89997,"(40.86235, -73.89997)",MORRIS AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459051,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/18/2021,14:05,,,40.868458,-73.8214,"(40.868458, -73.8214)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4458536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/09/2021,14:45,MANHATTAN,10037,40.817993,-73.93804,"(40.817993, -73.93804)",,,621 LENOX AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485928,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/08/2021,16:38,MANHATTAN,10035,40.79897,-73.93432,"(40.79897, -73.93432)",,,342 EAST 120 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485920,Taxi,Sedan,,, +12/08/2021,12:15,,,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4484703,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,7:00,QUEENS,11411,40.694336,-73.741585,"(40.694336, -73.741585)",,,117-54 219 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484638,Sedan,,,, +12/08/2021,18:10,BROOKLYN,11212,40.664505,-73.90673,"(40.664505, -73.90673)",,,330 DUMONT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4484813,Moped,,,, +12/10/2021,16:15,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",WEST 29 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4485475,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,16:15,QUEENS,11354,40.76616,-73.82091,"(40.76616, -73.82091)",35 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485136,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,18:10,,,,,,MACOMBS DAM BRIDGE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4484874,Sedan,,,, +12/08/2021,17:00,QUEENS,11435,40.7046,-73.81018,"(40.7046, -73.81018)",146 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4484787,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/09/2021,13:00,,,40.69687,-73.799194,"(40.69687, -73.799194)",155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485225,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,9:55,,,,,,VERRAZANO BRIDGE UPPER,,,6,0,0,0,0,0,6,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4413177,Sedan,Sedan,,, +03/28/2022,16:00,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4514460,Sedan,,,, +05/02/2021,10:15,MANHATTAN,10013,40.718628,-74.00255,"(40.718628, -74.00255)",BROADWAY,WALKER STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412773,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/17/2021,16:20,,,40.62693,-74.0779,"(40.62693, -74.0779)",WRIGHT STREET,CANAL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4413246,Sedan,,,, +04/17/2021,22:12,STATEN ISLAND,10310,40.632675,-74.116844,"(40.632675, -74.116844)",BROADWAY,CARY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413192,Sedan,Sedan,,, +05/02/2021,1:15,QUEENS,11413,40.663517,-73.758644,"(40.663517, -73.758644)",220 STREET,145 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412252,2 dr sedan,Sedan,,, +05/02/2021,15:40,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412644,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,21:25,BROOKLYN,11201,40.692097,-73.988976,"(40.692097, -73.988976)",BOERUM PLACE,FULTON STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412886,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,20:45,QUEENS,11420,40.679005,-73.819595,"(40.679005, -73.819595)",120 STREET,LINDEN BOULEVARD,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4412708,Sedan,Bike,,, +05/02/2021,0:30,MANHATTAN,10004,40.70509,-74.016464,"(40.70509, -74.016464)",WEST STREET,BATTERY PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413135,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,0:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412296,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/02/2021,20:25,MANHATTAN,10065,40.764988,-73.96116,"(40.764988, -73.96116)",2 AVENUE,EAST 66 STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4412727,Bike,Bike,,, +05/01/2021,16:20,STATEN ISLAND,10310,40.633255,-74.11196,"(40.633255, -74.11196)",CARY AVENUE,BEMENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413243,Sedan,Sedan,,, +04/24/2021,19:19,QUEENS,11101,40.756264,-73.921196,"(40.756264, -73.921196)",,,34-25 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413372,Sedan,,,, +05/02/2021,12:30,MANHATTAN,10011,40.74284,-74.00028,"(40.74284, -74.00028)",8 AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413016,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,1:45,,,,,,BOSTON ROAD,CLAREMONT PARKWAY,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inattention/Distraction,,,,4412336,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:11,BROOKLYN,11228,40.607857,-74.01442,"(40.607857, -74.01442)",,,195 BAY 8 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412559,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,6:00,BRONX,10461,40.84551,-73.83422,"(40.84551, -73.83422)",WESTCHESTER AVENUE,ROBERTS AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412789,Sedan,Motorscooter,,, +05/02/2021,15:30,,,40.771347,-73.87097,"(40.771347, -73.87097)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412827,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/02/2021,8:25,,,40.817844,-73.94185,"(40.817844, -73.94185)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412895,Sedan,,,, +05/02/2021,12:10,BRONX,10473,40.82256,-73.87101,"(40.82256, -73.87101)",STORY AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412934,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,1:30,BROOKLYN,11234,40.623978,-73.92063,"(40.623978, -73.92063)",AVENUE L,EAST 57 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4412502,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,6:39,QUEENS,11412,40.691917,-73.75042,"(40.691917, -73.75042)",119 AVENUE,201 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412453,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,3:23,BROOKLYN,11226,40.63987,-73.950325,"(40.63987, -73.950325)",EAST 28 STREET,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4412495,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/02/2021,14:40,STATEN ISLAND,10310,40.63173,-74.1249,"(40.63173, -74.1249)",CLOVE ROAD,CARY AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4412457,Sedan,Sedan,Sedan,, +05/01/2021,21:35,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4413304,Sedan,Box Truck,,, +05/02/2021,18:00,BROOKLYN,11212,40.668976,-73.90668,"(40.668976, -73.90668)",STONE AVENUE,BELMONT AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Unsafe Speed,,,,4412608,Sedan,Sedan,,, +12/19/2021,6:45,,,,,,111 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488513,Sedan,,,, +05/02/2021,18:15,QUEENS,11373,40.73845,-73.8863,"(40.73845, -73.8863)",,,77-00 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412546,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,2:40,QUEENS,11369,40.758595,-73.87452,"(40.758595, -73.87452)",94 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412351,Sedan,,,, +05/02/2021,15:06,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4412933,Sedan,Sedan,,, +05/02/2021,23:05,BROOKLYN,11236,40.636154,-73.9123,"(40.636154, -73.9123)",,,8123 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412695,Station Wagon/Sport Utility Vehicle,Bus,,, +05/02/2021,15:25,MANHATTAN,10021,40.773006,-73.96033,"(40.773006, -73.96033)",LEXINGTON AVENUE,EAST 76 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412737,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,23:55,BROOKLYN,11212,40.663204,-73.92247,"(40.663204, -73.92247)",,,148 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412978,Sedan,Sedan,,, +05/02/2021,16:22,QUEENS,11372,40.751102,-73.8912,"(40.751102, -73.8912)",35 AVENUE,75 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412831,Sedan,Sedan,,, +05/02/2021,23:28,BRONX,10462,40.83351,-73.85809,"(40.83351, -73.85809)",,,1990 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4412942,Sedan,Bus,,, +05/02/2021,10:25,BROOKLYN,11229,40.6103,-73.959526,"(40.6103, -73.959526)",AVENUE P,EAST 14 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412435,Sedan,,,, +05/02/2021,12:30,BROOKLYN,11217,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,NEVINS STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412523,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,2:10,QUEENS,11419,40.69065,-73.81033,"(40.69065, -73.81033)",VANWYCK EXPRESSWAY,105 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412658,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,10:40,QUEENS,11416,40.689934,-73.842545,"(40.689934, -73.842545)",,,102-14 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4412826,Sedan,,,, +04/25/2021,18:45,,,40.561077,-74.16984,"(40.561077, -74.16984)",RICHMOND AVENUE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4413172,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,6:18,BROOKLYN,11233,40.677753,-73.93028,"(40.677753, -73.93028)",,,49 UTICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412565,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/02/2021,20:32,,,40.75108,-73.98686,"(40.75108, -73.98686)",AVENUE OF THE AMERICAS,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412627,Sedan,E-Bike,,, +04/29/2021,16:17,,,40.760403,-73.98748,"(40.760403, -73.98748)",WEST 47 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413348,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,15:05,,,40.741993,-73.807304,"(40.741993, -73.807304)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412478,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,15:45,BROOKLYN,11217,40.682148,-73.982864,"(40.682148, -73.982864)",3 AVENUE,WARREN STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4413131,Bus,,,, +05/02/2021,12:15,MANHATTAN,10037,40.810024,-73.93754,"(40.810024, -73.93754)",,,2096 MADISON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412870,Sedan,,,, +05/02/2021,18:31,,,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4412918,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/02/2021,19:02,BROOKLYN,11234,40.61692,-73.92152,"(40.61692, -73.92152)",,,5524 AVENUE O,0,0,0,0,0,0,0,0,Unspecified,,,,,4413061,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,23:45,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,19:00,BROOKLYN,11229,40.60095,-73.93716,"(40.60095, -73.93716)",AVENUE U,COYLE STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2021,15:28,,,40.886395,-73.86125,"(40.886395, -73.86125)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413213,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,10:30,,,40.750244,-73.920135,"(40.750244, -73.920135)",43 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4412733,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,2:28,,,40.83096,-73.94947,"(40.83096, -73.94947)",WEST 151 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4412640,Sedan,Box Truck,,, +05/02/2021,11:56,QUEENS,11422,40.63989,-73.74272,"(40.63989, -73.74272)",,,248-46 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,10:30,BROOKLYN,11236,40.643017,-73.88968,"(40.643017, -73.88968)",,,1166 EAST 105 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413156,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,22:45,QUEENS,11368,40.748013,-73.856834,"(40.748013, -73.856834)",,,108-40 45 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412753,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,18:48,QUEENS,11367,40.727722,-73.83151,"(40.727722, -73.83151)",,,69-45 PARK DRIVE EAST,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4412646,Sedan,Sedan,,, +05/02/2021,19:20,,,40.707966,-73.99975,"(40.707966, -73.99975)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2021,17:05,QUEENS,11385,40.710117,-73.90423,"(40.710117, -73.90423)",,,59-20 MENAHAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4413228,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,2:20,QUEENS,11357,40.787525,-73.79483,"(40.787525, -73.79483)",UTOPIA PARKWAY,14 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412254,Sedan,,,, +04/25/2021,12:50,MANHATTAN,10022,40.762672,-73.97327,"(40.762672, -73.97327)",,,15 EAST 57 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4413356,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,14:50,,,40.752415,-73.97838,"(40.752415, -73.97838)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passenger Distraction,,,,4412617,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,18:57,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4413040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/29/2021,11:53,BROOKLYN,11236,40.645027,-73.91998,"(40.645027, -73.91998)",RALPH AVENUE,CLARENDON ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413186,Sedan,,,, +05/02/2021,2:50,BRONX,10465,40.828125,-73.84105,"(40.828125, -73.84105)",BRUSH AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412297,4 dr sedan,Motorcycle,,, +04/30/2021,12:12,STATEN ISLAND,10304,40.611347,-74.08856,"(40.611347, -74.08856)",,,629 RICHMOND ROAD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4413244,Sedan,Sedan,Sedan,, +05/02/2021,19:00,QUEENS,11429,40.70768,-73.74512,"(40.70768, -73.74512)",212 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412580,Sedan,,,, +05/02/2021,21:27,BRONX,10454,40.802814,-73.90848,"(40.802814, -73.90848)",EAST 138 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412722,Station Wagon/Sport Utility Vehicle,,,, +04/24/2021,20:15,,,40.75588,-73.92371,"(40.75588, -73.92371)",37 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413373,Sedan,,,, +05/02/2021,16:00,QUEENS,11413,40.666855,-73.75293,"(40.666855, -73.75293)",,,143-08 224 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,21:36,,,40.665398,-73.95093,"(40.665398, -73.95093)",NOSTRAND AVENUE,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4413015,Sedan,Sedan,,, +04/21/2021,6:43,QUEENS,11421,40.69366,-73.85217,"(40.69366, -73.85217)",JAMAICA AVENUE,WOODHAVEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4413155,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,16:48,BROOKLYN,11223,40.602478,-73.96636,"(40.602478, -73.96636)",OCEAN PARKWAY,AVENUE S,,2,0,1,0,0,0,1,0,Unspecified,,,,,4412679,Sedan,,,, +05/01/2021,2:25,MANHATTAN,10022,40.762287,-73.97027,"(40.762287, -73.97027)",PARK AVENUE,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413346,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,13:10,,,40.786,-73.84574,"(40.786, -73.84574)",14 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4412469,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:30,BROOKLYN,11210,40.634808,-73.94785,"(40.634808, -73.94785)",,,2083 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4412496,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,15:37,STATEN ISLAND,10304,,,,richmond road,hasbrouck road,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4412846,Sedan,,,, +05/02/2021,0:04,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412612,Taxi,,,, +05/02/2021,14:55,BRONX,10458,40.852734,-73.888084,"(40.852734, -73.888084)",EAST 183 STREET,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412949,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,13:05,,,,,,49 STREET,7 TH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413397,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,10:50,QUEENS,11367,40.721436,-73.81871,"(40.721436, -73.81871)",,,144-16 77 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412442,Sedan,Sedan,,, +05/02/2021,16:15,MANHATTAN,10010,40.73697,-73.980835,"(40.73697, -73.980835)",,,312 EAST 22 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412872,Sedan,Bike,,, +05/02/2021,14:50,BROOKLYN,11230,40.62717,-73.96541,"(40.62717, -73.96541)",,,1110 AVENUE I,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412489,Bike,Sedan,,, +05/02/2021,22:25,QUEENS,11367,40.725266,-73.8266,"(40.725266, -73.8266)",,,136-58 72 AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4412649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:49,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413261,Sedan,,,, +05/02/2021,22:50,BROOKLYN,11212,0,0,"(0.0, 0.0)",EAST 98 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412980,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,19:45,QUEENS,11377,40.750416,-73.897736,"(40.750416, -73.897736)",35 AVENUE,65 STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4412590,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,16:50,,,40.58493,-73.91434,"(40.58493, -73.91434)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412665,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2020,22:03,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413160,Sedan,,,, +05/02/2021,0:10,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4412830,Sedan,Sedan,,, +05/02/2021,0:30,,,40.621017,-74.13181,"(40.621017, -74.13181)",COLLEGE AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4412318,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,19:13,BRONX,10460,,,,,,1538 St Lawrence avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4412941,Sedan,,,, +05/02/2021,6:30,BROOKLYN,11206,40.694065,-73.934425,"(40.694065, -73.934425)",,,412 PULASKI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412547,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,18:19,MANHATTAN,10030,40.815304,-73.94371,"(40.815304, -73.94371)",7 AVENUE,WEST 135 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412885,Sedan,Moped,,, +05/02/2021,2:50,BRONX,10461,40.83425,-73.82908,"(40.83425, -73.82908)",EAST TREMONT AVENUE,HASKIN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412788,Sedan,TOW TRUCK,,, +05/02/2021,22:00,BRONX,10459,40.828545,-73.8919,"(40.828545, -73.8919)",SOUTHERN BOULEVARD,HOME STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412694,Station Wagon/Sport Utility Vehicle,Motorbike,,, +04/30/2021,14:00,BROOKLYN,11218,40.649406,-73.97175,"(40.649406, -73.97175)",,,350 CONEY ISLAND AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4413303,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:30,MANHATTAN,10128,40.78519,-73.94934,"(40.78519, -73.94934)",3 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412736,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/28/2021,11:50,BROOKLYN,11239,40.65136,-73.86971,"(40.65136, -73.86971)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413163,Sedan,Sedan,,, +05/02/2021,17:40,,,,,,,,80 WEST DRIVE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412626,Bike,Bike,,, +05/02/2021,20:23,MANHATTAN,10034,40.85894,-73.922935,"(40.85894, -73.922935)",10 AVENUE,DYCKMAN STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4412950,Taxi,Sedan,,, +05/02/2021,5:15,,,40.61847,-73.89746,"(40.61847, -73.89746)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413070,Sedan,Sedan,,, +05/02/2021,16:06,,,,,,,,2913 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412664,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,19:24,MANHATTAN,10035,40.802498,-73.94092,"(40.802498, -73.94092)",EAST 121 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412892,Sedan,Sedan,,, +05/02/2021,2:50,,,40.766685,-73.892136,"(40.766685, -73.892136)",77 STREET,ASTORIA BOULEVARD,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4412348,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,22:00,,,,,,BRUCKNER EXPRESSWAY,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412748,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,15:40,BROOKLYN,11203,40.660175,-73.9282,"(40.660175, -73.9282)",REMSEN AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4412500,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/02/2021,20:15,BROOKLYN,11230,40.62519,-73.96119,"(40.62519, -73.96119)",,,1504 AVENUE J,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412768,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/02/2021,23:14,,,40.62894,-74.116196,"(40.62894, -74.116196)",FOREST AVENUE,,,9,0,2,0,0,0,7,0,Unsafe Speed,Unspecified,Unspecified,,,4412761,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/02/2021,0:50,,,40.80655,-73.88632,"(40.80655, -73.88632)",VIELE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412615,Taxi,,,, +05/02/2021,0:43,,,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412747,Sedan,Sedan,,, +04/30/2021,21:04,QUEENS,11375,40.724308,-73.842575,"(40.724308, -73.842575)",110 STREET,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413231,Sedan,,,, +05/02/2021,2:55,QUEENS,11354,40.766434,-73.83767,"(40.766434, -73.83767)",WHITESTONE EXPRESSWAY,32 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4412255,Sedan,,,, +05/02/2021,5:56,,,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4413358,Sedan,,,, +05/02/2021,17:55,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413031,Station Wagon/Sport Utility Vehicle,Open Body,,, +05/02/2021,14:20,BROOKLYN,11236,40.63682,-73.90218,"(40.63682, -73.90218)",REMSEN AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412874,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,12:05,,,40.78694,-73.77558,"(40.78694, -73.77558)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412483,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,2:33,BROOKLYN,11234,40.592636,-73.90362,"(40.592636, -73.90362)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412490,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/02/2021,7:00,BRONX,10458,40.857117,-73.89907,"(40.857117, -73.89907)",EAST 183 STREET,RYER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412816,Sedan,,,, +04/30/2021,8:06,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413355,Sedan,Sedan,,, +05/02/2021,16:55,,,40.586716,-73.911194,"(40.586716, -73.911194)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412518,Sedan,,,, +05/02/2021,9:57,STATEN ISLAND,10306,40.57299,-74.13636,"(40.57299, -74.13636)",RICHMOND ROAD,AULTMAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412852,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,15:45,BROOKLYN,11201,40.689568,-73.98966,"(40.689568, -73.98966)",,,239 STATE STREET,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4412589,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,19:15,MANHATTAN,10128,40.786545,-73.95256,"(40.786545, -73.95256)",EAST 96 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412919,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,7:15,BROOKLYN,11209,40.62053,-74.0405,"(40.62053, -74.0405)",,,9201 SHORE ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4412404,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/02/2021,7:25,QUEENS,11368,40.75415,-73.853424,"(40.75415, -73.853424)",38 AVENUE,114 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412820,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,23:10,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,5,0,0,0,0,0,5,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4412911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,21:39,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,TYSENS LANE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412948,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,4:46,,,40.756725,-73.96,"(40.756725, -73.96)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412443,Pick-up Truck,Sedan,,, +05/02/2021,12:15,BROOKLYN,11230,40.63074,-73.973404,"(40.63074, -73.973404)",,,170 LAWRENCE AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4412505,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,18:00,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4412579,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,21:12,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,15:35,BROOKLYN,11207,40.68109,-73.90338,"(40.68109, -73.90338)",BUSHWICK AVENUE,STEWART STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,Following Too Closely,,,4413025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/02/2021,15:46,BROOKLYN,11223,40.607258,-73.96727,"(40.607258, -73.96727)",QUENTIN ROAD,OCEAN PARKWAY,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412687,E-Scooter,Sedan,,, +04/30/2021,19:45,,,40.62872,-74.16042,"(40.62872, -74.16042)",,,314 HARBOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413338,Flat Bed,,,, +05/02/2021,12:00,,,40.585686,-73.81724,"(40.585686, -73.81724)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412468,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,22:40,BRONX,10459,40.822456,-73.88728,"(40.822456, -73.88728)",BRUCKNER EXPRESSWAY,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412613,Ambulance,,,, +05/02/2021,2:10,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412345,Sedan,,,, +05/02/2021,13:30,BROOKLYN,11233,40.676987,-73.91645,"(40.676987, -73.91645)",,,260 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412552,Sedan,Box Truck,,, +05/02/2021,19:20,,,40.878746,-73.84241,"(40.878746, -73.84241)",EAST 222 STREET,WICKHAM AVENUE,,1,0,1,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4412799,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/02/2021,16:20,QUEENS,11375,40.73181,-73.84351,"(40.73181, -73.84351)",GRAND CENTRAL PARKWAY,66 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412532,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/30/2021,17:30,BROOKLYN,11236,40.65152,-73.909454,"(40.65152, -73.909454)",DITMAS AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4413199,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/02/2021,23:35,MANHATTAN,10032,40.832863,-73.94204,"(40.832863, -73.94204)",AMSTERDAM AVENUE,WEST 157 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Outside Car Distraction,,,,4412920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,17:05,QUEENS,11422,40.67625,-73.73627,"(40.67625, -73.73627)",233 STREET,133 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412642,Sedan,Bike,,, +05/02/2021,21:20,,,40.617924,-74.155785,"(40.617924, -74.155785)",RICHMOND AVENUE,DEPPE PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412838,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/02/2021,20:10,MANHATTAN,10009,,,,EAST 14 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412940,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,14:40,,,40.845882,-73.930435,"(40.845882, -73.930435)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412890,Sedan,Sedan,,, +05/02/2021,18:55,BRONX,10453,40.85927,-73.90931,"(40.85927, -73.90931)",,,2220 ANDREWS AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412701,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,1:01,BROOKLYN,11221,40.6944,-73.93066,"(40.6944, -73.93066)",,,1087 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4413146,Sedan,Sedan,Sedan,Sedan, +04/29/2021,19:30,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413392,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/02/2021,1:20,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4412635,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,20:20,MANHATTAN,10036,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4413182,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,17:25,,,,,,,,97 EAST DRIVE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4412625,Bike,,,, +05/02/2021,0:45,BROOKLYN,11230,40.63137,-73.95746,"(40.63137, -73.95746)",,,1271 OCEAN AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4412309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/02/2021,1:15,QUEENS,11368,40.752506,-73.85593,"(40.752506, -73.85593)",,,111-17 39 AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4413236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,0:05,BROOKLYN,11213,40.665916,-73.92547,"(40.665916, -73.92547)",ROCKAWAY PARKWAY,EAST NEW YORK AVENUE,,1,0,1,0,0,0,0,0,,,,,,4412497,,,,, +05/02/2021,0:00,BRONX,10468,40.866997,-73.902084,"(40.866997, -73.902084)",UNIVERSITY AVENUE,WEST 192 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Turning Improperly,,,,4412666,Motorcycle,Sedan,,, +05/02/2021,20:40,,,40.573013,-73.993835,"(40.573013, -73.993835)",WEST 28 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413375,Sedan,,,, +05/02/2021,13:55,,,40.666695,-73.961624,"(40.666695, -73.961624)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413044,Sedan,,,, +05/02/2021,19:25,QUEENS,11420,40.682503,-73.82131,"(40.682503, -73.82131)",109 AVENUE,120 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412680,Sedan,Sedan,,, +05/02/2021,18:00,,,40.68049,-73.774704,"(40.68049, -73.774704)",BAISLEY BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412787,Sedan,,,, +05/02/2021,18:33,QUEENS,11435,40.714996,-73.81022,"(40.714996, -73.81022)",150 STREET,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412648,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,1:40,,,40.836605,-73.93931,"(40.836605, -73.93931)",AMSTERDAM AVENUE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412595,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/30/2021,8:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413221,Sedan,,,, +04/30/2021,8:02,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413260,Tractor Truck Diesel,Box Truck,,, +05/02/2021,0:00,QUEENS,11368,40.75249,-73.85592,"(40.75249, -73.85592)",,,111-08 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412829,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,11:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412991,Sedan,,,, +05/02/2021,2:31,QUEENS,11377,40.746338,-73.896194,"(40.746338, -73.896194)",,,69-06 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412693,Sedan,Sedan,Sedan,, +05/02/2021,23:50,QUEENS,11368,40.74005,-73.86622,"(40.74005, -73.86622)",CHRISTIE AVENUE,96 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412749,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,16:06,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4413158,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/02/2021,11:24,BRONX,10462,40.84969,-73.86582,"(40.84969, -73.86582)",HOLLAND AVENUE,HUNT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4412766,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/27/2021,8:32,,,40.808956,-73.94041,"(40.808956, -73.94041)",WEST 129 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413167,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,3:30,BROOKLYN,11211,40.708904,-73.95926,"(40.708904, -73.95926)",BROADWAY,HAVEMEYER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412270,,,,, +05/02/2021,13:10,,,40.824703,-73.944275,"(40.824703, -73.944275)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413364,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,15:10,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,17:00,,,40.780464,-73.94404,"(40.780464, -73.94404)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4412629,Box Truck,,,, +05/02/2021,5:00,QUEENS,11432,40.70984,-73.786285,"(40.70984, -73.786285)",,,175-09 90 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4412883,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/02/2021,6:20,,,40.81207,-73.93603,"(40.81207, -73.93603)",MADISON AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412867,Sedan,Sedan,,, +05/01/2021,0:45,BROOKLYN,11222,40.73124,-73.95443,"(40.73124, -73.95443)",,,934 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4413292,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,17:01,QUEENS,11422,40.636684,-73.74054,"(40.636684, -73.74054)",,,252-02 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413047,Convertible,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,15:37,,,40.76241,-73.95443,"(40.76241, -73.95443)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,19:00,QUEENS,11423,40.71142,-73.7598,"(40.71142, -73.7598)",,,99-05 200 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412960,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,12:10,BRONX,10470,40.905884,-73.85191,"(40.905884, -73.85191)",,,4750 CARPENTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4412803,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,2:29,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4412531,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,12:30,,,40.665718,-73.95687,"(40.665718, -73.95687)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412587,Sedan,Sedan,,, +05/02/2021,9:00,QUEENS,11377,40.746185,-73.90813,"(40.746185, -73.90813)",56 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412417,Pick-up Truck,,,, +05/02/2021,16:00,QUEENS,11372,40.749092,-73.88703,"(40.749092, -73.88703)",,,37-71 79 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412821,Sedan,,,, +12/17/2021,2:15,BROOKLYN,11208,40.671238,-73.86326,"(40.671238, -73.86326)",,,761 ELDERTS LANE,1,0,1,0,0,0,0,0,Drugs (illegal),,,,,4488546,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,9:29,,,40.884342,-73.886765,"(40.884342, -73.886765)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412663,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,15:35,MANHATTAN,10032,40.830383,-73.94018,"(40.830383, -73.94018)",WEST 155 STREET,SAINT NICHOLAS PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413354,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,16:50,MANHATTAN,10013,40.715633,-73.99754,"(40.715633, -73.99754)",,,6 ELIZABETH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,17:00,,,40.84932,-73.945145,"(40.84932, -73.945145)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412603,Sedan,Sedan,,, +05/02/2021,10:54,MANHATTAN,10029,40.787014,-73.9516,"(40.787014, -73.9516)",,,108 EAST 97 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4412914,Ambulance,Sedan,,, +05/02/2021,16:15,MANHATTAN,10033,0,0,"(0.0, 0.0)",BROADWAY,WEST 181 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412927,Sedan,,,, +05/02/2021,0:00,BROOKLYN,11233,40.674232,-73.91566,"(40.674232, -73.91566)",,,1965 BERGEN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412398,Sedan,Sedan,,, +05/02/2021,22:57,MANHATTAN,10007,40.715996,-74.0071,"(40.715996, -74.0071)",CHURCH STREET,DUANE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412743,Sedan,Sedan,,, +05/02/2021,13:55,QUEENS,11379,40.72122,-73.884705,"(40.72122, -73.884705)",LUTHERAN AVENUE,JUNIPER BOULEVARD NORTH,,1,0,0,0,0,0,1,0,Passenger Distraction,Passing Too Closely,,,,4412482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,2:48,QUEENS,11372,40.753437,-73.88783,"(40.753437, -73.88783)",79 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412828,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,2:10,,,40.710888,-73.9808,"(40.710888, -73.9808)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4412344,Taxi,Sedan,,, +05/02/2021,1:01,BRONX,10459,40.81969,-73.90161,"(40.81969, -73.90161)",WESTCHESTER AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412614,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,23:00,,,40.830658,-73.93517,"(40.830658, -73.93517)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,10:00,BROOKLYN,11249,40.71772,-73.96202,"(40.71772, -73.96202)",,,76 NORTH 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412791,Sedan,,,, +05/02/2021,3:00,BROOKLYN,11230,40.625294,-73.96029,"(40.625294, -73.96029)",,,1606 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,,,,,4412503,Sedan,,,, +05/01/2021,2:50,QUEENS,11693,40.60442,-73.81984,"(40.60442, -73.81984)",CROSS BAY BOULEVARD,WEST 12 ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4413254,Sedan,Box Truck,,, +05/01/2021,11:50,BROOKLYN,11226,40.645504,-73.955086,"(40.645504, -73.955086)",,,2391 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413184,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,0:06,BROOKLYN,11235,40.583485,-73.9601,"(40.583485, -73.9601)",GUIDER AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412670,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/02/2021,15:30,QUEENS,11365,40.736237,-73.810524,"(40.736237, -73.810524)",,,65-61 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4412643,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,9:00,BROOKLYN,11221,40.691307,-73.91326,"(40.691307, -73.91326)",JEFFERSON AVENUE,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413021,Sedan,,,, +05/02/2021,5:40,,,40.694687,-73.91112,"(40.694687, -73.91112)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,,4413145,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/02/2021,23:00,,,40.7495,-73.94667,"(40.7495, -73.94667)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,14:55,BROOKLYN,11203,40.649216,-73.94458,"(40.649216, -73.94458)",SNYDER AVENUE,EAST 35 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412498,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,12:40,,,40.776608,-73.844406,"(40.776608, -73.844406)",25 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412462,Sedan,,,, +04/29/2021,0:00,QUEENS,11368,40.743294,-73.85829,"(40.743294, -73.85829)",,,104-21 ALSTYNE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/02/2021,12:26,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",VALENTINE AVENUE,EAST 178 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4412834,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,19:00,BRONX,10472,40.83269,-73.86847,"(40.83269, -73.86847)",EAST 172 STREET,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412938,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/02/2021,6:10,,,40.677116,-73.92378,"(40.677116, -73.92378)",KANE PLACE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4412555,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,15:29,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412702,Sedan,,,, +05/02/2021,23:48,MANHATTAN,10030,40.822834,-73.941925,"(40.822834, -73.941925)",8 AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4412887,Sedan,,,, +05/02/2021,18:15,BRONX,10465,40.828075,-73.840065,"(40.828075, -73.840065)",,,2560 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,13:45,QUEENS,11103,40.769485,-73.91503,"(40.769485, -73.91503)",,,34-16 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4412444,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,0:04,,,40.624172,-73.94836,"(40.624172, -73.94836)",AVENUE K,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4412310,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,19:45,MANHATTAN,10033,40.84691,-73.93824,"(40.84691, -73.93824)",BROADWAY,WEST 176 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4412618,Station Wagon/Sport Utility Vehicle,Bike,,, +10/18/2022,8:30,MANHATTAN,10014,40.729706,-74.00922,"(40.729706, -74.00922)",WASHINGTON STREET,CLARKSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4574353,Sedan,,,, +05/02/2021,2:30,,,40.803844,-73.91444,"(40.803844, -73.91444)",BRUCKNER BOULEVARD,EAST 136 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412726,Sedan,Sedan,,, +05/02/2021,16:50,,,40.766308,-73.8197,"(40.766308, -73.8197)",35 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4412576,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,15:35,QUEENS,11378,40.72214,-73.902275,"(40.72214, -73.902275)",FLUSHING AVENUE,63 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413193,Sedan,Bike,,, +04/29/2021,20:53,STATEN ISLAND,10301,40.645473,-74.09287,"(40.645473, -74.09287)",RICHMOND TERRACE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413239,Sedan,Sedan,,, +05/02/2021,14:00,BRONX,10463,40.88391,-73.89443,"(40.88391, -73.89443)",,,3915 ORLOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413042,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,17:45,QUEENS,11106,40.75582,-73.93259,"(40.75582, -73.93259)",37 AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413376,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,11:03,BROOKLYN,11215,40.659027,-73.98508,"(40.659027, -73.98508)",18 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412637,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,22:54,QUEENS,11433,40.699802,-73.773964,"(40.699802, -73.773964)",180 STREET,110 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4413105,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,11:00,QUEENS,11369,40.758892,-73.86681,"(40.758892, -73.86681)",,,32-25 102 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412825,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,16:00,BROOKLYN,11201,40.698116,-73.977325,"(40.698116, -73.977325)",,,21 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4412493,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,13:55,,,,,,EAST 125 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412884,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,23:30,,,40.77039,-73.954124,"(40.77039, -73.954124)",EAST 76 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413353,Motorbike,,,, +05/02/2021,1:22,,,40.6983,-73.77088,"(40.6983, -73.77088)",DUNKIRK STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412804,Sedan,,,, +05/02/2021,9:30,,,40.71507,-73.91327,"(40.71507, -73.91327)",54 STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412480,Station Wagon/Sport Utility Vehicle,Box truck,,, +05/02/2021,20:10,BRONX,10472,40.832436,-73.86444,"(40.832436, -73.86444)",,,1841 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412945,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,0:00,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4412931,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/02/2021,12:45,,,40.69529,-73.94339,"(40.69529, -73.94339)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412418,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,5:30,,,40.75207,-73.926476,"(40.75207, -73.926476)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413380,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,20:45,BROOKLYN,11234,40.625553,-73.93224,"(40.625553, -73.93224)",,,4509 AVENUE K,0,0,0,0,0,0,0,0,Unspecified,,,,,4413060,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,16:05,BRONX,10456,40.835926,-73.902916,"(40.835926, -73.902916)",SAINT PAULS PLACE,3 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4412689,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/02/2021,23:06,BRONX,10469,40.869083,-73.837395,"(40.869083, -73.837395)",ARNOW AVENUE,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413214,Sedan,,,, +04/30/2021,8:49,BROOKLYN,11203,40.657906,-73.93762,"(40.657906, -73.93762)",,,697 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413226,Ambulance,Sedan,,, +05/02/2021,1:17,QUEENS,11412,40.69385,-73.76643,"(40.69385, -73.76643)",DUNKIRK STREET,TIOGA DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4412273,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/02/2021,0:51,MANHATTAN,10013,40.723217,-74.00623,"(40.723217, -74.00623)",,,75 VARICK STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4412742,Sedan,Sedan,,, +05/02/2021,22:34,BRONX,10469,40.858517,-73.85204,"(40.858517, -73.85204)",,,1225 PELHAM PARKWAY NORTH,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412767,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,10:30,,,40.771374,-73.877144,"(40.771374, -73.877144)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413369,Sedan,,,, +05/02/2021,20:35,BROOKLYN,11204,40.614216,-73.97742,"(40.614216, -73.97742)",62 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4412628,Sedan,Pick-up Truck,Sedan,, +05/02/2021,20:10,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",EAST 187 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412976,Sedan,Sedan,,, +05/02/2021,6:59,BRONX,10460,40.835705,-73.88875,"(40.835705, -73.88875)",SOUTHERN BOULEVARD,EAST 173 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4412662,Sedan,Sedan,,, +05/02/2021,5:04,MANHATTAN,10014,40.728344,-74.00535,"(40.728344, -74.00535)",,,200 VARICK STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4412752,Sedan,Bike,,, +05/02/2021,13:07,QUEENS,11101,40.746296,-73.93041,"(40.746296, -73.93041)",43 AVENUE,34 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,,4412524,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/02/2021,7:00,QUEENS,11422,40.667397,-73.73757,"(40.667397, -73.73757)",,,138-55 BROOKVILLE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412375,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,8:00,MANHATTAN,10035,40.80016,-73.93538,"(40.80016, -73.93538)",2 AVENUE,EAST 121 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Speed,,,,4412869,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/02/2021,14:55,,,40.679184,-73.941284,"(40.679184, -73.941284)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4413005,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,17:42,BROOKLYN,11236,40.654366,-73.90684,"(40.654366, -73.90684)",,,1030 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412607,Sedan,Sedan,,, +05/02/2021,21:10,QUEENS,11360,40.788555,-73.78234,"(40.788555, -73.78234)",212 STREET,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412586,Taxi,Sedan,,, +05/02/2021,18:48,,,40.80907,-73.94455,"(40.80907, -73.94455)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4412915,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,22:30,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412647,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,4:54,QUEENS,11368,40.741985,-73.8576,"(40.741985, -73.8576)",,,103-64 52 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412699,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,2:05,BROOKLYN,11221,40.689453,-73.924034,"(40.689453, -73.924034)",,,30 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413278,Sedan,,,, +04/20/2021,15:30,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413169,Sedan,Sedan,,, +05/02/2021,14:23,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4412734,Sedan,Bike,,, +05/02/2021,12:40,,,,,,GOWANUS RAMP,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4412638,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,15:00,QUEENS,11421,40.699993,-73.85391,"(40.699993, -73.85391)",WOODHAVEN BOULEVARD,98 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413125,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,19:21,,,40.827564,-73.83363,"(40.827564, -73.83363)",CROSS BRONX EXTENTION,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4413157,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Convertible, +05/02/2021,7:20,BROOKLYN,11203,40.651985,-73.929245,"(40.651985, -73.929245)",,,5105 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413185,Sedan,,,, +05/02/2021,7:40,BROOKLYN,11223,40.602848,-73.963,"(40.602848, -73.963)",AVENUE S,EAST 9 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4412672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,1:17,,,,,,SAINT EDWARDS STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4488557,Sedan,,,, +12/05/2021,10:10,STATEN ISLAND,10312,40.546253,-74.158875,"(40.546253, -74.158875)",ARMSTRONG AVENUE,AMBOY ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4488685,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,20:15,MANHATTAN,10011,40.742653,-73.998055,"(40.742653, -73.998055)",,,180 WEST 20 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504023,Station Wagon/Sport Utility Vehicle,SANITATION,,, +01/16/2022,4:51,QUEENS,11357,40.782215,-73.81686,"(40.782215, -73.81686)",149 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494826,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/10/2022,22:14,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504513,Sedan,Sedan,,, +02/19/2022,16:50,,,40.742676,-73.839516,"(40.742676, -73.839516)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4504172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/19/2022,12:00,BRONX,10472,40.826893,-73.87973,"(40.826893, -73.87973)",,,1132 WHEELER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4504462,Sedan,Sedan,Sedan,, +02/19/2022,3:38,,,40.77039,-73.954124,"(40.77039, -73.954124)",EAST 76 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4504528,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/19/2022,8:00,BROOKLYN,11238,40.68265,-73.96211,"(40.68265, -73.96211)",,,1 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,6:00,QUEENS,11417,40.6826,-73.84018,"(40.6826, -73.84018)",,,103-37 101 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4504335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/16/2022,17:50,QUEENS,11105,40.774433,-73.90013,"(40.774433, -73.90013)",,,20-24 43 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504623,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,16:40,QUEENS,11385,40.70012,-73.91161,"(40.70012, -73.91161)",,,1578 GATES AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504160,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,0:05,,,40.73392,-73.9928,"(40.73392, -73.9928)",EAST 12 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504152,Taxi,,,, +02/19/2022,2:10,BROOKLYN,11209,40.633278,-74.030014,"(40.633278, -74.030014)",,,7320 RIDGE BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4503876,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,18:00,BROOKLYN,11236,40.646297,-73.91274,"(40.646297, -73.91274)",,,900 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4503997,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,14:30,,,40.83942,-73.872925,"(40.83942, -73.872925)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504243,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,18:50,BROOKLYN,11208,40.68415,-73.8848,"(40.68415, -73.8848)",JAMAICA AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4504574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/19/2022,17:45,QUEENS,11356,40.789375,-73.84376,"(40.789375, -73.84376)",9 AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4504256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/19/2022,7:27,,,40.825066,-73.866745,"(40.825066, -73.866745)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Turning Improperly,,,,4504437,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/15/2022,15:00,BROOKLYN,11239,40.64165,-73.879196,"(40.64165, -73.879196)",SEAVIEW AVENUE,LOUISIANA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504586,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,12:41,BROOKLYN,11225,40.660557,-73.94337,"(40.660557, -73.94337)",,,530 MIDWOOD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504203,Sedan,,,, +02/19/2022,9:44,STATEN ISLAND,10304,40.625362,-74.07698,"(40.625362, -74.07698)",,,51 BROAD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504103,Sedan,,,, +02/17/2022,16:00,QUEENS,11360,40.781727,-73.78412,"(40.781727, -73.78412)",KENNEDY STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4503655,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,23:49,BRONX,10454,40.807503,-73.91702,"(40.807503, -73.91702)",EAST 139 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4504456,Sedan,Sedan,,, +02/18/2022,1:07,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4504561,Sedan,,,, +02/10/2022,10:00,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504659,Sedan,Sedan,,, +05/03/2021,0:02,,,,,,GOWANUS RAMP,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4412639,Sedan,,,, +12/19/2021,14:22,BROOKLYN,11236,40.64077,-73.90913,"(40.64077, -73.90913)",EAST 88 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487856,Sedan,Box Truck,,, +12/19/2021,21:02,BROOKLYN,11208,40.67236,-73.88036,"(40.67236, -73.88036)",,,489 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488069,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,22:46,BRONX,10455,40.81241,-73.90316,"(40.81241, -73.90316)",,,564 SOUTHERN BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,23:54,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Pavement Slippery,Unspecified,,,4488427,Sedan,Sedan,Sedan,, +12/17/2021,16:50,BROOKLYN,11228,40.624786,-74.01798,"(40.624786, -74.01798)",77 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488412,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,1:09,,,40.582756,-74.13041,"(40.582756, -74.13041)",MANOR ROAD,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4487470,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,17:34,BROOKLYN,11206,40.700912,-73.94116,"(40.700912, -73.94116)",,,785 FLUSHING AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487888,Sedan,,,, +12/19/2021,14:20,BRONX,10462,40.83383,-73.85155,"(40.83383, -73.85155)",,,1278 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488202,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,11:00,BROOKLYN,11230,40.626053,-73.961555,"(40.626053, -73.961555)",,,969 EAST 15 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4487992,E-Scooter,,,, +12/17/2021,14:00,STATEN ISLAND,10312,40.526894,-74.16728,"(40.526894, -74.16728)",BARCLAY AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488395,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,17:03,,,40.709415,-73.87022,"(40.709415, -73.87022)",80 STREET,COOPER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488491,Sedan,,,, +12/17/2021,8:45,,,40.759945,-73.8387,"(40.759945, -73.8387)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4488572,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,4:00,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487523,Sedan,,,, +12/19/2021,13:00,MANHATTAN,10029,40.79181,-73.9529,"(40.79181, -73.9529)",,,1215 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488026,Sedan,,,, +12/13/2021,17:34,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488425,Sedan,Sedan,,, +12/19/2021,6:40,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488470,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,12:00,MANHATTAN,10019,40.76552,-73.98004,"(40.76552, -73.98004)",WEST 57 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4488360,LIMO,Sedan,,, +12/19/2021,3:18,QUEENS,11422,40.659485,-73.74305,"(40.659485, -73.74305)",NEWHALL AVENUE,HUXLEY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4487585,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/19/2021,20:16,BROOKLYN,11228,40.622963,-74.01184,"(40.622963, -74.01184)",BAY RIDGE PARKWAY,11 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/19/2021,21:28,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4488089,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,20:00,,,40.821415,-73.82185,"(40.821415, -73.82185)",DEWEY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488125,Sedan,,,, +12/19/2021,23:50,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4488216,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,16:00,,,40.60583,-73.75779,"(40.60583, -73.75779)",MOTT AVENUE,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4488301,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,17:35,QUEENS,11358,40.76027,-73.80401,"(40.76027, -73.80401)",SANFORD AVENUE,162 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487774,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,10:47,BROOKLYN,11223,40.60115,-73.97839,"(40.60115, -73.97839)",AVENUE S,WEST 6 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487671,Station Wagon/Sport Utility Vehicle,Bike,,, +12/05/2021,2:15,,,40.669735,-73.93104,"(40.669735, -73.93104)",LINCOLN PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488509,Sedan,,,, +12/07/2021,10:30,BROOKLYN,11207,40.65452,-73.882225,"(40.65452, -73.882225)",FLATLANDS AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4488549,Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/17/2021,19:00,MANHATTAN,10032,40.833637,-73.94581,"(40.833637, -73.94581)",,,601 WEST 156 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488592,Sedan,,,, +12/19/2021,17:30,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",HIGHLAND AVENUE,167 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487766,Sedan,,,, +12/19/2021,12:20,BROOKLYN,11226,40.64513,-73.948975,"(40.64513, -73.948975)",NOSTRAND AVENUE,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4487682,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,0:40,,,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4488441,Sedan,Sedan,,, +12/19/2021,4:50,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",WHITE PLAINS ROAD,EAST 241 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487816,Sedan,,,, +12/19/2021,7:45,QUEENS,11377,40.73931,-73.91947,"(40.73931, -73.91947)",48 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487613,Sedan,,,, +12/19/2021,12:15,MANHATTAN,10013,40.71492,-73.998856,"(40.71492, -73.998856)",,,38 MOTT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488296,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,5:47,BROOKLYN,11201,40.68966,-74.00047,"(40.68966, -74.00047)",COLUMBIA STREET,CONGRESS STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4487979,Sedan,,,, +12/19/2021,18:08,MANHATTAN,10013,40.721348,-74.00554,"(40.721348, -74.00554)",,,1 YORK STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4488035,Station Wagon/Sport Utility Vehicle,Bike,,, +12/19/2021,4:50,BROOKLYN,11236,40.653763,-73.92104,"(40.653763, -73.92104)",,,519 REMSEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488347,Sedan,Sedan,,, +12/19/2021,14:22,,,40.653976,-73.952835,"(40.653976, -73.952835)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488142,Bus,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,12:12,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4488327,Sedan,Bus,,, +12/19/2021,3:50,STATEN ISLAND,10306,40.55862,-74.136154,"(40.55862, -74.136154)",,,3380 AMBOY ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4487662,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,9:30,,,40.695995,-73.96742,"(40.695995, -73.96742)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487787,Sedan,,,, +12/19/2021,15:58,MANHATTAN,10013,40.715916,-73.99834,"(40.715916, -73.99834)",,,59 MOTT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487911,Sedan,Sedan,,, +12/16/2021,16:50,BROOKLYN,11234,40.626457,-73.918,"(40.626457, -73.918)",RALPH AVENUE,AVENUE K,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4488500,Sedan,Sedan,,, +12/12/2021,14:30,BRONX,10461,40.834354,-73.82623,"(40.834354, -73.82623)",CROSBY AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488648,Sedan,,,, +12/19/2021,13:40,,,40.79824,-73.95247,"(40.79824, -73.95247)",CENTRAL PARK NORTH,,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4488124,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,14:00,BROOKLYN,11209,40.613102,-74.035736,"(40.613102, -74.035736)",101 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488406,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,8:30,BROOKLYN,11233,40.676292,-73.92484,"(40.676292, -73.92484)",BUFFALO AVENUE,PACIFIC STREET,,1,0,0,0,1,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4488510,Sedan,Bike,,, +12/19/2021,17:06,,,40.742905,-73.83932,"(40.742905, -73.83932)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4487825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,22:00,BROOKLYN,11203,40.660633,-73.93979,"(40.660633, -73.93979)",,,571 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488585,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,4:17,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",ROOSEVELT AVENUE,69 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4487871,Station Wagon/Sport Utility Vehicle,,,, +11/28/2021,17:41,,,40.868015,-73.89997,"(40.868015, -73.89997)",WEST KINGSBRIDGE ROAD,RESERVOIR AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488448,,,,, +12/19/2021,14:20,BROOKLYN,11212,40.66331,-73.92106,"(40.66331, -73.92106)",EAST 98 STREET,WINTHROP STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487708,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,8:52,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4488391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,23:24,,,40.716557,-73.82869,"(40.716557, -73.82869)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4488175,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,16:15,QUEENS,11357,40.77766,-73.79502,"(40.77766, -73.79502)",21 ROAD,169 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488247,Sedan,Sedan,,, +12/19/2021,23:55,,,40.588562,-74.14584,"(40.588562, -74.14584)",ROCKLAND AVENUE,FOREST HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488593,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/29/2021,9:34,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488375,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,15:16,BROOKLYN,11235,40.591927,-73.95768,"(40.591927, -73.95768)",AVENUE X,SHEEPSHEAD BAY ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4488431,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,17:54,BRONX,10459,40.819714,-73.894066,"(40.819714, -73.894066)",,,901 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487958,Sedan,Garbage or Refuse,,, +12/17/2021,17:00,BROOKLYN,11220,40.646923,-74.01212,"(40.646923, -74.01212)",,,4906 4 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4488416,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,0:05,,,40.723698,-74.00792,"(40.723698, -74.00792)",CANAL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488028,Sedan,Sedan,,, +12/19/2021,1:58,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",EAST 149 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Drugs (illegal),,,,,4488101,Sedan,,,, +12/19/2021,2:26,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4488495,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/19/2021,15:45,BROOKLYN,11233,40.682304,-73.92895,"(40.682304, -73.92895)",,,310 REID AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4487833,Sedan,School Bus,,, +12/11/2021,4:20,,,40.77417,-73.82934,"(40.77417, -73.82934)",WHITESTONE EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unspecified,,,,,4488399,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,23:00,QUEENS,11370,40.765423,-73.89001,"(40.765423, -73.89001)",79 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488515,Sedan,,,, +12/19/2021,8:30,BROOKLYN,11235,40.590748,-73.94872,"(40.590748, -73.94872)",AVENUE Y,EAST 21 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488057,Sedan,Sedan,,, +12/19/2021,15:15,QUEENS,11102,40.77421,-73.93182,"(40.77421, -73.93182)",8 STREET,27 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,22:19,MANHATTAN,10036,40.758392,-73.981544,"(40.758392, -73.981544)",,,1211 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488058,Station Wagon/Sport Utility Vehicle,Tanker,,, +12/19/2021,19:08,,,40.82092,-73.94333,"(40.82092, -73.94333)",WEST 142 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4487994,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,3:10,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488421,Sedan,,,, +12/19/2021,1:30,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487499,Sedan,,,, +12/12/2021,2:55,,,40.681736,-73.8051,"(40.681736, -73.8051)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4488463,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/05/2021,22:51,,,40.789116,-73.82259,"(40.789116, -73.82259)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4488577,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,15:07,,,,,,ED KOCH BRIDGE,21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487867,Sedan,Sedan,,, +12/15/2021,9:55,QUEENS,11105,40.77476,-73.91035,"(40.77476, -73.91035)",,,22-31 33 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4488369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,1:30,MANHATTAN,10025,40.805447,-73.963844,"(40.805447, -73.963844)",,,546 WEST 113 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488571,Sedan,,,, +12/03/2021,0:00,QUEENS,11372,40.75373,-73.88505,"(40.75373, -73.88505)",82 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488514,Sedan,Dump,,, +12/16/2021,0:11,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488411,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,0:44,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487534,Sedan,Taxi,,, +12/17/2021,21:10,,,40.6089,-74.03465,"(40.6089, -74.03465)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4488426,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,19:30,,,40.684147,-73.922966,"(40.684147, -73.922966)",RALPH AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4487830,Sedan,,,, +12/19/2021,17:00,BRONX,10466,40.890423,-73.84139,"(40.890423, -73.84139)",,,2030 STRANG AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4488013,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,7:40,,,40.682583,-73.788864,"(40.682583, -73.788864)",155 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4488471,Sedan,,,, +12/19/2021,10:38,QUEENS,11101,40.75391,-73.9253,"(40.75391, -73.9253)",,,36-11 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4487881,Sedan,,,, +12/19/2021,0:02,,,40.831398,-73.83097,"(40.831398, -73.83097)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488357,Tractor Truck Diesel,,,, +12/18/2021,14:43,,,40.89341,-73.85737,"(40.89341, -73.85737)",EAST 233 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4488398,Van,,,, +12/19/2021,12:20,BROOKLYN,11211,40.713085,-73.94415,"(40.713085, -73.94415)",GRAHAM AVENUE,AINSLIE STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487932,Sedan,Sedan,,, +12/19/2021,20:56,QUEENS,11694,40.57981,-73.837204,"(40.57981, -73.837204)",ROCKAWAY BEACH BOULEVARD,BEACH 116 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488551,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,4:51,,,40.86804,-73.879105,"(40.86804, -73.879105)",SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488446,Sedan,,,, +12/19/2021,13:31,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,TILLARY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487700,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,1:06,BROOKLYN,11237,40.703434,-73.9248,"(40.703434, -73.9248)",,,143 STARR STREET,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4487768,Sedan,Bike,,, +12/19/2021,17:30,,,40.836407,-73.94852,"(40.836407, -73.94852)",RIVERSIDE DRIVE WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488155,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,1:42,,,40.715553,-73.82617,"(40.715553, -73.82617)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488525,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,17:34,MANHATTAN,10001,40.752056,-74.00099,"(40.752056, -74.00099)",10 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4487858,Sedan,Sedan,Sedan,, +12/18/2021,22:06,,,40.851936,-73.91078,"(40.851936, -73.91078)",GRAND AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4488330,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/15/2021,10:40,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4488487,Pick-up Truck,PK,,, +12/19/2021,3:37,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487665,Sedan,,,, +12/19/2021,17:30,BROOKLYN,11207,40.657757,-73.89654,"(40.657757, -73.89654)",,,1789 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488068,Sedan,,,, +12/19/2021,3:27,QUEENS,11375,40.72136,-73.837036,"(40.72136, -73.837036)",72 ROAD,113 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4488187,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/19/2021,12:50,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",GLENWOOD ROAD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4487754,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +12/19/2021,2:00,MANHATTAN,10065,40.763546,-73.969345,"(40.763546, -73.969345)",EAST 60 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,9:10,BROOKLYN,11201,40.69952,-73.989815,"(40.69952, -73.989815)",CADMAN PLAZA EAST,RED CROSS PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488407,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,0:25,BROOKLYN,11201,40.69116,-73.98994,"(40.69116, -73.98994)",,,110 LIVINGSTON STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4488430,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/15/2021,9:30,,,40.639645,-74.008835,"(40.639645, -74.008835)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488349,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,3:29,,,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487851,Sedan,,,, +12/19/2021,13:54,MANHATTAN,10029,40.794975,-73.93296,"(40.794975, -73.93296)",,,503 EAST 116 STREET,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Following Too Closely,Unspecified,,,4487924,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/13/2021,6:00,MANHATTAN,10028,40.77913,-73.95474,"(40.77913, -73.95474)",,,170 EAST 86 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488659,Sedan,,,, +12/19/2021,23:15,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488645,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,17:50,,,40.676743,-73.93316,"(40.676743, -73.93316)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488504,Sedan,Box Truck,,, +12/07/2021,9:32,MANHATTAN,10031,40.828445,-73.94155,"(40.828445, -73.94155)",SAINT NICHOLAS PLACE,WEST 152 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488402,Sedan,Sedan,,, +12/16/2021,18:15,,,40.576252,-74.16978,"(40.576252, -74.16978)",,,2845 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488586,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,21:00,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488141,Sedan,,,, +12/19/2021,2:05,BROOKLYN,11234,40.626976,-73.914024,"(40.626976, -73.914024)",AVENUE L,EAST 73 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,16:35,,,40.83852,-73.92619,"(40.83852, -73.92619)",WEST 168 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,20:45,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487817,Sedan,Sedan,,, +12/19/2021,22:40,BROOKLYN,11223,40.602432,-73.961525,"(40.602432, -73.961525)",,,2242 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488200,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,15:00,BROOKLYN,11208,40.659412,-73.8708,"(40.659412, -73.8708)",FLATLANDS AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488087,Station Wagon/Sport Utility Vehicle,MOTOR HOME,,, +12/19/2021,2:42,BROOKLYN,11231,40.675117,-74.00962,"(40.675117, -74.00962)",LORRAINE STREET,OTSEGO STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487978,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,6:50,MANHATTAN,10028,40.78057,-73.95817,"(40.78057, -73.95817)",,,64 EAST 86 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488658,Bike,Sedan,Station Wagon/Sport Utility Vehicle,, +12/19/2021,20:05,,,40.87793,-73.8703,"(40.87793, -73.8703)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488440,Station Wagon/Sport Utility Vehicle,PK,,, +12/19/2021,11:50,MANHATTAN,10012,40.725594,-73.999916,"(40.725594, -73.999916)",,,132 WOOSTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488034,Sedan,Sedan,,, +12/16/2021,14:24,,,40.691456,-73.9178,"(40.691456, -73.9178)",WOODBINE STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488403,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,14:00,QUEENS,11378,40.72621,-73.920525,"(40.72621, -73.920525)",56 ROAD,48 STREET,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,Unspecified,Unspecified,4487870,Sedan,Moped,Moped,Moped,Moped +12/13/2021,21:25,,,40.650448,-73.91111,"(40.650448, -73.91111)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488344,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,17:53,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",HYLAN BOULEVARD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488377,Sedan,Sedan,,, +12/19/2021,23:45,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Failure to Yield Right-of-Way,,,,4487916,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,22:00,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing or Lane Usage Improper,Unspecified,,,4488215,Sedan,,,, +12/19/2021,4:30,,,40.73556,-73.915054,"(40.73556, -73.915054)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487612,Sedan,,,, +12/19/2021,22:30,QUEENS,11355,40.753956,-73.82772,"(40.753956, -73.82772)",,,42-45 MAIN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488050,Sedan,Sedan,,, +12/19/2021,17:05,,,40.770428,-73.79198,"(40.770428, -73.79198)",29 AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,16:40,,,40.604424,-74.1229,"(40.604424, -74.1229)",,,56 HOLDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488059,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,14:25,QUEENS,11378,40.73542,-73.91552,"(40.73542, -73.91552)",,,49-02 LAUREL HILL BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4487866,Sedan,,,, +12/19/2021,17:00,BROOKLYN,11220,40.63797,-74.00604,"(40.63797, -74.00604)",,,817 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488040,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,22:03,QUEENS,11429,40.707306,-73.75122,"(40.707306, -73.75122)",FRANCIS LEWIS BOULEVARD,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488415,Sedan,Sedan,,, +12/19/2021,22:20,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487948,Sedan,,,, +12/18/2021,4:00,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488422,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,2:20,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487500,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,5:30,QUEENS,11413,40.682404,-73.75181,"(40.682404, -73.75181)",LUCAS STREET,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4488465,Sedan,Sedan,,, +05/03/2021,23:05,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413340,Sedan,,,, +12/16/2021,1:00,QUEENS,11106,40.76771,-73.93247,"(40.76771, -73.93247)",31 ROAD,14 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488367,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/19/2021,3:58,,,40.664993,-73.80229,"(40.664993, -73.80229)",VAN WYCK EXPWY,,,2,0,1,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4488576,Taxi,Taxi,,, +12/11/2021,0:00,QUEENS,11434,40.684277,-73.78302,"(40.684277, -73.78302)",FOCH BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488530,Sedan,,,, +12/19/2021,13:45,,,40.76137,-73.72905,"(40.76137, -73.72905)",57 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4488191,Sedan,,,, +12/19/2021,12:30,BROOKLYN,11235,40.57702,-73.9642,"(40.57702, -73.9642)",BRIGHTON BEACH AVENUE,BRIGHTON 3 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4487751,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,17:04,BROOKLYN,11236,40.641266,-73.904366,"(40.641266, -73.904366)",,,9222 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487756,Pick-up Truck,,,, +12/19/2021,3:00,BRONX,10451,40.8221,-73.92063,"(40.8221, -73.92063)",,,699 MORRIS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4488103,Pick-up Truck,,,, +11/22/2021,20:57,QUEENS,11434,40.67002,-73.78312,"(40.67002, -73.78312)",ROCKAWAY BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488462,Sedan,Sedan,,, +12/19/2021,16:00,BROOKLYN,11223,40.586872,-73.971436,"(40.586872, -73.971436)",,,2568 WEST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487786,Station Wagon/Sport Utility Vehicle,,,, +09/02/2022,3:55,QUEENS,11374,40.72825,-73.87281,"(40.72825, -73.87281)",,,85-11 ELIOT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4561640,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,20:14,,,40.833096,-73.94066,"(40.833096, -73.94066)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4488158,Station Wagon/Sport Utility Vehicle,Bike,,, +12/18/2021,17:20,,,40.79507,-73.93919,"(40.79507, -73.93919)",EAST 113 STREET,,,1,0,0,0,1,0,0,0,Pavement Slippery,Pavement Slippery,,,,4488494,Station Wagon/Sport Utility Vehicle,Bike,,, +12/19/2021,21:53,BROOKLYN,11201,40.69457,-73.99068,"(40.69457, -73.99068)",CADMAN PLAZA WEST,PIERREPONT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4487850,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,4:40,BROOKLYN,11216,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,THROOP AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4488250,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,4:40,,,40.70041,-73.81553,"(40.70041, -73.81553)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4488523,Tractor Truck Diesel,Sedan,,, +12/19/2021,7:00,QUEENS,11370,40.757362,-73.8857,"(40.757362, -73.8857)",,,32-01 82 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487648,Sedan,,,, +12/19/2021,19:15,BRONX,10456,40.820747,-73.906006,"(40.820747, -73.906006)",JACKSON AVENUE,EAST 160 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4488104,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/19/2021,10:32,MANHATTAN,10003,40.73398,-73.98991,"(40.73398, -73.98991)",,,1 UNION SQUARE SOUTH,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488226,Bike,,,, +12/19/2021,5:03,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488329,Sedan,,,, +12/19/2021,9:00,QUEENS,11361,40.763844,-73.769455,"(40.763844, -73.769455)",41 AVENUE,214 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487666,Station Wagon/Sport Utility Vehicle,Dump,,, +12/19/2021,11:25,,,40.81328,-73.89749,"(40.81328, -73.89749)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4487783,Sedan,Pick-up Truck,,, +12/19/2021,2:24,BROOKLYN,11213,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,ALBANY AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4488505,Sedan,,,, +12/19/2021,19:00,QUEENS,11373,40.741524,-73.88061,"(40.741524, -73.88061)",,,82-78 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4487828,Sedan,,,, +12/19/2021,19:34,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/19/2021,2:25,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488496,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,3:00,,,40.688473,-73.80857,"(40.688473, -73.80857)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488365,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/22/2021,9:30,BROOKLYN,11222,0,0,"(0.0, 0.0)",RUSSELL STREET,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488445,Sedan,,,, +12/19/2021,13:15,,,40.747574,-73.76147,"(40.747574, -73.76147)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487691,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/03/2021,14:39,,,,,,SHORE PARKWAY,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413384,Pick-up Truck,Sedan,,, +12/19/2021,22:49,MANHATTAN,10011,40.745293,-73.9985,"(40.745293, -73.9985)",WEST 23 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487859,Sedan,Sedan,,, +12/19/2021,0:05,BROOKLYN,11203,40.651604,-73.933304,"(40.651604, -73.933304)",CHURCH AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487610,Sedan,Sedan,,, +12/19/2021,17:57,,,40.747097,-73.98345,"(40.747097, -73.98345)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487820,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,2:15,BROOKLYN,11207,40.65945,-73.89847,"(40.65945, -73.89847)",NEW LOTS AVENUE,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4488097,Sedan,Sedan,Sedan,, +12/19/2021,12:54,,,40.63552,-74.0167,"(40.63552, -74.0167)",6 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4487805,Station Wagon/Sport Utility Vehicle,Bike,,, +12/17/2021,1:15,QUEENS,11422,40.667213,-73.73707,"(40.667213, -73.73707)",,,138-72 FRANCIS LEWIS BOULEVARD,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4488414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,8:25,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488272,Sedan,,,, +12/19/2021,10:31,QUEENS,11412,40.705074,-73.758965,"(40.705074, -73.758965)",198 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4487886,Sedan,Sedan,,, +12/19/2021,1:00,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488147,Sedan,,,, +12/19/2021,0:00,BRONX,10458,40.856434,-73.886826,"(40.856434, -73.886826)",EAST 188 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488320,Sedan,,,, +12/19/2021,12:00,BROOKLYN,11235,40.58845,-73.96326,"(40.58845, -73.96326)",,,2524 HUBBARD STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4488207,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,4:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4487983,Sedan,,,, +12/12/2021,0:52,BRONX,10467,40.88337,-73.85956,"(40.88337, -73.85956)",EAST 220 STREET,BARNES AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unsafe Speed,,,,4488397,Sedan,Sedan,,, +12/19/2021,5:00,BRONX,10461,40.846012,-73.8305,"(40.846012, -73.8305)",,,1710 HOBART AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488486,Sedan,,,, +12/19/2021,22:22,QUEENS,11378,40.72852,-73.90573,"(40.72852, -73.90573)",MAURICE AVENUE,54 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487874,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,12:50,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4488408,Sedan,Sedan,,, +12/19/2021,22:20,QUEENS,11377,40.739666,-73.898834,"(40.739666, -73.898834)",LAUREL HILL BOULEVARD,66 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4487869,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/19/2021,4:55,MANHATTAN,10011,40.739197,-73.99924,"(40.739197, -73.99924)",,,68 7 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4487571,Sedan,Motorcycle,,, +12/15/2021,10:05,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488423,Sedan,,,, +12/18/2021,19:30,,,40.63006,-74.138756,"(40.63006, -74.138756)",,,197 CATHERINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488588,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,4:04,,,40.701958,-73.9239,"(40.701958, -73.9239)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487769,E-Bike,,,, +12/19/2021,16:16,MANHATTAN,10013,40.71539,-73.99785,"(40.71539, -73.99785)",,,57 BAYARD STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4487927,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,17:25,MANHATTAN,10027,40.815105,-73.94897,"(40.815105, -73.94897)",,,440 SAINT NICHOLAS AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4488474,Van,Taxi,,, +12/16/2021,11:19,,,40.75327,-73.92803,"(40.75327, -73.92803)",37 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,2:40,BROOKLYN,11204,40.616707,-73.97846,"(40.616707, -73.97846)",BAY PARKWAY,60 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4487934,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +09/01/2021,2:10,BROOKLYN,11211,40.70651,-73.95239,"(40.70651, -73.95239)",,,452 BROADWAY,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4488636,E-Scooter,,,, +12/19/2021,13:20,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488086,Sedan,,,, +09/17/2021,16:50,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",EAST 184 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,20:56,,,40.728767,-73.984436,"(40.728767, -73.984436)",EAST 10 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459684,Sedan,,,, +09/18/2021,2:45,,,40.606102,-74.07983,"(40.606102, -74.07983)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459656,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,15:55,,,40.578938,-73.98522,"(40.578938, -73.98522)",NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4459676,Van,Bike,,, +09/13/2021,1:45,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459673,Sedan,,,, +09/07/2021,12:59,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,7,0,0,0,0,0,7,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4459687,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,15:55,BROOKLYN,11222,40.71909,-73.949234,"(40.71909, -73.949234)",,,74 BAYARD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459643,Sedan,E-Scooter,,, +08/31/2021,16:25,MANHATTAN,10003,40.728092,-73.98494,"(40.728092, -73.98494)",,,145 1 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459685,Van,E-Scooter,,, +09/16/2021,17:50,,,40.586212,-73.990585,"(40.586212, -73.990585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459671,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,15:40,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,JAY STREET,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4485072,Sedan,,,, +12/09/2021,6:50,QUEENS,11419,40.685772,-73.81819,"(40.685772, -73.81819)",125 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Speed,,,,4485083,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/06/2021,15:18,BROOKLYN,11215,40.661907,-73.99284,"(40.661907, -73.99284)",20 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485280,Dump,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,22:26,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485374,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,17:13,BROOKLYN,11233,40.676445,-73.92762,"(40.676445, -73.92762)",ROCHESTER AVENUE,PACIFIC STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485025,Sedan,Bike,,, +12/05/2021,21:36,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485636,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,13:39,QUEENS,11369,40.764885,-73.8656,"(40.764885, -73.8656)",27 AVENUE,CURTIS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485334,Sedan,Sedan,,, +12/10/2021,5:30,BRONX,10454,40.805367,-73.9219,"(40.805367, -73.9219)",EAST 134 STREET,BROWN PLACE,,2,0,0,0,0,0,2,0,Turning Improperly,Turning Improperly,,,,4485882,Sedan,,,, +12/09/2021,22:25,QUEENS,11373,40.737537,-73.881516,"(40.737537, -73.881516)",QUEENS BOULEVARD,SIMONSON STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485117,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/09/2021,16:28,,,40.757946,-73.9099,"(40.757946, -73.9099)",31 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4485230,Carry All,Sedan,Station Wagon/Sport Utility Vehicle,, +12/03/2021,9:00,QUEENS,11102,40.772606,-73.91813,"(40.772606, -73.91813)",,,24-61 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488384,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,19:57,,,,,,VANDERBILT AVENUE,GRAND ARMY PLAZA,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4487902,Sedan,Sedan,,, +12/19/2021,12:35,,,40.686726,-73.99047,"(40.686726, -73.99047)",SMITH STREET,,,1,0,1,0,0,0,0,0,,,,,,4487852,,,,, +12/18/2021,1:30,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488418,Sedan,Pick-up Truck,,, +12/17/2021,8:13,,,40.745754,-73.73044,"(40.745754, -73.73044)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488429,Sedan,,,, +12/19/2021,16:30,,,40.700104,-73.94726,"(40.700104, -73.94726)",FLUSHING AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488140,E-Bike,Sedan,,, +12/12/2021,5:23,MANHATTAN,10007,40.717175,-74.01288,"(40.717175, -74.01288)",WEST STREET,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488350,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,16:30,BROOKLYN,11201,40.68736,-73.99788,"(40.68736, -73.99788)",BALTIC STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4487975,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/17/2021,23:18,MANHATTAN,10002,40.712307,-73.99437,"(40.712307, -73.99437)",MARKET STREET,MADISON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488674,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,1:23,BRONX,10458,,,,EAST FORDHAM ROAD,BAINBRIDGE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458794,Sedan,Moped,,, +09/19/2021,0:43,BROOKLYN,11204,40.622612,-73.98667,"(40.622612, -73.98667)",18 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458959,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +09/19/2021,17:10,,,40.802074,-73.93407,"(40.802074, -73.93407)",EAST 124 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458871,Taxi,Bike,,, +09/17/2021,0:43,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459430,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,18:00,QUEENS,11103,40.768234,-73.90709,"(40.768234, -73.90709)",44 STREET,ASTORIA BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459398,PK,Bike,,, +09/19/2021,1:03,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",SOUTH CONDUIT AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4458478,Sedan,Sedan,,, +09/19/2021,20:15,QUEENS,11694,40.575634,-73.848816,"(40.575634, -73.848816)",BEACH 130 STREET,ROCKAWAY BEACH BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4458846,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,22:41,MANHATTAN,10037,40.81314,-73.93861,"(40.81314, -73.93861)",,,20 WEST 135 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4459061,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/19/2021,1:40,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458894,Sedan,Sedan,,, +09/19/2021,8:00,BROOKLYN,11215,40.66936,-73.974464,"(40.66936, -73.974464)",,,622 2 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459336,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,14:31,QUEENS,11378,40.72248,-73.90781,"(40.72248, -73.90781)",,,59-19 57 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4459502,Sedan,,,, +09/17/2021,0:00,BROOKLYN,11214,40.605766,-73.99705,"(40.605766, -73.99705)",20 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459608,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,0:15,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,JAY STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4458519,Sedan,Sedan,,, +09/19/2021,22:53,,,40.794353,-73.97836,"(40.794353, -73.97836)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458905,Sedan,Sedan,,, +09/19/2021,22:00,BRONX,10467,40.885307,-73.860466,"(40.885307, -73.860466)",,,716 EAST 222 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459425,Sedan,Sedan,,, +09/15/2021,16:02,MANHATTAN,10065,40.764286,-73.95562,"(40.764286, -73.95562)",YORK AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,15:04,,,40.608776,-74.09113,"(40.608776, -74.09113)",CLOVE ROAD,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4459205,Sedan,,,, +09/19/2021,1:40,,,40.67581,-73.739555,"(40.67581, -73.739555)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458581,Bus,Sedan,,, +09/19/2021,16:44,BROOKLYN,11204,40.6087,-73.97404,"(40.6087, -73.97404)",AVENUE P,DAHILL ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458754,Station Wagon/Sport Utility Vehicle,Bike,,, +09/19/2021,15:39,BRONX,10455,40.817673,-73.91704,"(40.817673, -73.91704)",,,616 MELROSE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458971,Sedan,Sedan,,, +09/19/2021,22:29,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458998,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,20:00,BRONX,10456,40.8355,-73.90123,"(40.8355, -73.90123)",FULTON AVENUE,SAINT PAULS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459080,Sedan,,,, +09/19/2021,19:07,BROOKLYN,11236,40.63739,-73.91038,"(40.63739, -73.91038)",FLATLANDS AVENUE,EAST 84 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459110,Sedan,Sedan,,, +09/19/2021,13:50,,,0,0,"(0.0, 0.0)",FLATBUSH AVENUE,HANSON PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,4:15,BRONX,10472,40.82615,-73.87766,"(40.82615, -73.87766)",WATSON AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458646,Sedan,,,, +09/17/2021,11:00,QUEENS,11361,40.75618,-73.7804,"(40.75618, -73.7804)",,,45-37 202 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459525,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,23:42,QUEENS,11101,40.740913,-73.95226,"(40.740913, -73.95226)",BORDEN AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459579,Sedan,,,, +09/19/2021,0:57,BROOKLYN,11221,40.68909,-73.92566,"(40.68909, -73.92566)",,,995 GATES AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4458686,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +09/19/2021,7:40,,,40.602905,-74.00003,"(40.602905, -74.00003)",20 AVENUE,BENSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458649,Bike,Sedan,,, +09/19/2021,20:48,BRONX,10458,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459449,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,16:25,BRONX,10463,40.88598,-73.90545,"(40.88598, -73.90545)",,,3611 WALDO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458731,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,10:17,,,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4458610,Motorcycle,,,, +09/19/2021,23:30,BROOKLYN,11220,40.64479,-74.01433,"(40.64479, -74.01433)",53 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459100,Sedan,,,, +09/19/2021,16:00,BROOKLYN,11225,40.655216,-73.96194,"(40.655216, -73.96194)",,,231 OCEAN AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458886,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,2:00,BROOKLYN,11229,40.598377,-73.94086,"(40.598377, -73.94086)",,,2937 AVENUE V,0,0,0,0,0,0,0,0,Unspecified,,,,,4458913,Sedan,,,, +09/19/2021,0:00,BROOKLYN,11225,40.668358,-73.95592,"(40.668358, -73.95592)",BEDFORD AVENUE,PRESIDENT STREET,,2,0,0,0,0,0,0,0,Unspecified,,,,,4459170,Sedan,E-Bike,,, +09/19/2021,17:45,QUEENS,11412,40.702557,-73.76233,"(40.702557, -73.76233)",194 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459006,Sedan,,,, +09/19/2021,15:00,QUEENS,11436,40.67875,-73.794,"(40.67875, -73.794)",146 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,View Obstructed/Limited,,,,4459129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,3:40,,,40.795322,-73.929825,"(40.795322, -73.929825)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Passing or Lane Usage Improper,,,,4458633,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/19/2021,0:08,STATEN ISLAND,10309,40.524612,-74.230446,"(40.524612, -74.230446)",BOSCOMBE AVENUE,TYRELLAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,18:55,BROOKLYN,11205,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,DE KALB AVENUE,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4459518,Bus,Sedan,,, +09/19/2021,19:39,,,40.820095,-73.81086,"(40.820095, -73.81086)",PENNYFIELD AVENUE,THROGS NECK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458997,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,22:41,QUEENS,11102,40.773205,-73.927,"(40.773205, -73.927)",,,18-02 26 ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459390,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,13:25,,,40.665718,-73.95687,"(40.665718, -73.95687)",BEDFORD AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459526,Sedan,E-Scooter,,, +09/19/2021,3:30,BROOKLYN,11218,40.646378,-73.97085,"(40.646378, -73.97085)",CHURCH AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458756,Bus,Convertible,,, +09/13/2021,15:55,,,,,,31 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,19:12,QUEENS,11356,40.7925,-73.84077,"(40.7925, -73.84077)",5 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458818,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,14:25,MANHATTAN,10021,40.76975,-73.96061,"(40.76975, -73.96061)",EAST 72 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459457,Bus,Sedan,,, +09/19/2021,11:09,QUEENS,11416,40.680447,-73.85872,"(40.680447, -73.85872)",,,101-04 80 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4458664,Sedan,Pick-up Truck,Sedan,, +09/19/2021,22:35,,,40.75927,-73.980896,"(40.75927, -73.980896)",WEST 49 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459328,Sedan,,,, +09/19/2021,15:15,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459038,Sedan,Pick-up Truck,,, +09/19/2021,19:00,BROOKLYN,11207,40.66774,-73.892815,"(40.66774, -73.892815)",,,471 VERMONT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459089,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,19:21,BROOKLYN,11234,40.59651,-73.90788,"(40.59651, -73.90788)",FLATBUSH AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459257,Sedan,,,, +09/14/2021,2:00,BRONX,10460,40.841175,-73.8701,"(40.841175, -73.8701)",VANBUREN STREET,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459438,Sedan,,,, +09/19/2021,19:50,QUEENS,11411,40.700817,-73.727684,"(40.700817, -73.727684)",114 ROAD,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4458881,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/19/2021,3:00,QUEENS,11377,40.75399,-73.90031,"(40.75399, -73.90031)",62 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4459403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/19/2021,20:20,QUEENS,11415,40.706142,-73.83177,"(40.706142, -73.83177)",LEFFERTS BOULEVARD,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4458906,Sedan,Sedan,,, +09/19/2021,0:00,BRONX,10466,40.90336,-73.845085,"(40.90336, -73.845085)",CRANFORD AVENUE,MURDOCK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4458835,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/19/2021,0:40,BROOKLYN,11222,40.728695,-73.95158,"(40.728695, -73.95158)",CALYER STREET,ECKFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458988,Sedan,,,, +09/13/2021,0:30,,,40.86848,-73.918564,"(40.86848, -73.918564)",WEST 212 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,15:15,BROOKLYN,11221,40.68872,-73.92389,"(40.68872, -73.92389)",,,46 RALPH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458765,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/19/2021,12:19,QUEENS,11691,40.605484,-73.75597,"(40.605484, -73.75597)",,,22-18 MOTT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459374,Sedan,Sedan,,, +09/12/2021,23:30,,,40.833588,-73.91498,"(40.833588, -73.91498)",GRANT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459543,Sedan,,,, +09/19/2021,19:28,MANHATTAN,10022,40.762226,-73.96819,"(40.762226, -73.96819)",LEXINGTON AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4458933,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,20:10,,,,,,BEACH CHANNEL DRIVE,BEACH 84 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4458847,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,16:19,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4458939,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,10:30,QUEENS,11419,40.68854,-73.82294,"(40.68854, -73.82294)",121 STREET,103 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458895,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,11:51,BROOKLYN,11207,40.673916,-73.893456,"(40.673916, -73.893456)",,,212 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459413,Sedan,,,, +09/19/2021,0:19,BROOKLYN,11208,,,,PITKIN AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4458487,Taxi,,,, +09/15/2021,7:45,BRONX,10472,40.82705,-73.87104,"(40.82705, -73.87104)",WATSON AVENUE,FTELEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459469,Sedan,Sedan,,, +09/19/2021,5:00,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459621,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,18:30,QUEENS,11413,40.665485,-73.75374,"(40.665485, -73.75374)",SOUTH CONDUIT AVENUE,224 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458807,Sedan,Sedan,,, +09/19/2021,21:13,,,,,,HORACE HARDING EXPRESSWAY,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459215,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/19/2021,11:56,BROOKLYN,11231,40.68643,-74.00006,"(40.68643, -74.00006)",,,479 HICKS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459604,Sedan,,,, +09/14/2021,0:00,MANHATTAN,10017,40.754696,-73.97002,"(40.754696, -73.97002)",,,255 EAST 49 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4459541,Box Truck,,,, +09/12/2021,11:00,QUEENS,11105,40.77864,-73.91204,"(40.77864, -73.91204)",,,21-35 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459397,Sedan,,,, +09/19/2021,2:07,,,40.84398,-73.92296,"(40.84398, -73.92296)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458539,Sedan,,,, +09/14/2021,9:17,MANHATTAN,10011,40.73656,-74.0011,"(40.73656, -74.0011)",WEST 11 STREET,7 AVENUE SOUTH,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459426,Sedan,Bike,,, +09/19/2021,2:45,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458764,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,10:55,BROOKLYN,11206,40.70447,-73.94274,"(40.70447, -73.94274)",GRAHAM AVENUE,SEIGEL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4458900,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,22:00,,,40.864426,-73.906815,"(40.864426, -73.906815)",WEBB AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459477,Sedan,,,, +09/19/2021,12:40,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4458836,Sedan,Sedan,,, +09/19/2021,14:20,BROOKLYN,11203,40.657867,-73.938156,"(40.657867, -73.938156)",,,675 WINTHROP STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459192,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,6:13,,,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459370,LIMO,,,, +09/19/2021,11:15,MANHATTAN,10009,40.72301,-73.98576,"(40.72301, -73.98576)",EAST 2 STREET,AVENUE A,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4458876,Sedan,Bike,,, +08/04/2021,11:38,,,,,,GREENPOINT AVENUE Bridge,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4459580,Box Truck,,,, +09/13/2021,19:15,,,40.704082,-73.81641,"(40.704082, -73.81641)",HILLSIDE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,10:26,BROOKLYN,11226,40.64422,-73.965706,"(40.64422, -73.965706)",,,1416 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4458663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,12:45,,,40.66309,-73.962395,"(40.66309, -73.962395)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458688,Bus,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,22:10,QUEENS,11369,40.759617,-73.86478,"(40.759617, -73.86478)",,,104-11 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459012,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,16:08,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4459550,Sedan,Motorcycle,,, +09/19/2021,14:42,BROOKLYN,11234,40.60553,-73.92917,"(40.60553, -73.92917)",AVENUE U,EAST 34 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,6:08,STATEN ISLAND,10309,40.52348,-74.21603,"(40.52348, -74.21603)",,,6323 AMBOY ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459146,Sedan,Sedan,,, +09/19/2021,19:32,BRONX,10473,40.82406,-73.87034,"(40.82406, -73.87034)",FTELEY AVENUE,BANYER PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459500,Motorcycle,Sedan,,, +09/19/2021,0:29,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4458638,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,4:09,BRONX,10457,40.84541,-73.891136,"(40.84541, -73.891136)",EAST TREMONT AVENUE,CROTONA AVENUE,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,Unspecified,,,4458957,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/19/2021,13:00,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459039,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,0:57,BROOKLYN,11233,40.674652,-73.909164,"(40.674652, -73.909164)",EASTERN PARKWAY,DEAN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4458677,Sedan,Sedan,,, +12/19/2021,18:20,QUEENS,11691,40.61037,-73.75352,"(40.61037, -73.75352)",,,14-99 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4488051,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,6:00,QUEENS,11377,40.752563,-73.91044,"(40.752563, -73.91044)",,,50-49 NEWTOWN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4459392,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,11:25,BRONX,10462,40.842175,-73.85601,"(40.842175, -73.85601)",,,2265 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4459437,Sedan,Ambulance,,, +09/19/2021,16:30,MANHATTAN,10014,40.73866,-74.00551,"(40.73866, -74.00551)",,,636 HUDSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459172,Sedan,Bus,,, +09/19/2021,14:00,,,40.712055,-73.96615,"(40.712055, -73.96615)",WYTHE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458784,Sedan,Sedan,,, +09/19/2021,22:58,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Tow Hitch Defective,,,,4458860,Sedan,Sedan,,, +09/19/2021,15:55,,,40.624245,-74.02008,"(40.624245, -74.02008)",79 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,18:03,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459377,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,0:00,BRONX,10464,40.8837,-73.79406,"(40.8837, -73.79406)",SHORE ROAD,CITY LINE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504417,Sedan,,,, +03/30/2021,13:09,MANHATTAN,10021,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,EAST 76 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4404422,Van,,,, +04/03/2021,23:30,BRONX,10451,40.813957,-73.93134,"(40.813957, -73.93134)",,,255 EXTERIOR STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4406444,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/02/2021,6:35,QUEENS,11368,40.745834,-73.8618,"(40.745834, -73.8618)",,,102-11 46 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4412545,Sedan,Sedan,,, +05/03/2021,14:16,BROOKLYN,11234,40.622204,-73.91645,"(40.622204, -73.91645)",,,6405 AVENUE M,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413052,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/29/2021,18:17,,,40.627415,-74.15788,"(40.627415, -74.15788)",,,361 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413764,Sedan,Sedan,,, +05/03/2021,8:57,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413159,Tractor Truck Diesel,,,, +05/03/2021,19:00,QUEENS,11101,40.743057,-73.93566,"(40.743057, -73.93566)",,,31-02 47 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413092,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,16:00,MANHATTAN,10030,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413690,Sedan,,,, +05/01/2021,8:00,BRONX,10460,40.841385,-73.88636,"(40.841385, -73.88636)",,,895 FAIRMOUNT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413640,Sedan,Sedan,,, +05/02/2021,18:35,,,40.65923,-73.89329,"(40.65923, -73.89329)",HEGEMAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413471,Sedan,,,, +05/02/2021,18:20,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413453,Taxi,Sedan,,, +05/03/2021,6:49,BROOKLYN,11236,40.6472,-73.90311,"(40.6472, -73.90311)",EAST 98 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413077,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/06/2021,19:06,BROOKLYN,11211,40.718403,-73.949036,"(40.718403, -73.949036)",,,75 RICHARDSON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459641,FDNY Firet,Sedan,,, +05/03/2021,23:10,QUEENS,11434,40.68775,-73.79039,"(40.68775, -73.79039)",LINDEN BOULEVARD,157 STREET,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,Unspecified,,,4413273,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +05/03/2021,17:50,BROOKLYN,11233,40.673237,-73.91402,"(40.673237, -73.91402)",BOYLAND STREET,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,23:30,BROOKLYN,11207,40.66854,-73.88378,"(40.66854, -73.88378)",,,554 ASHFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413435,Sedan,,,, +04/27/2021,10:10,,,40.830555,-73.832664,"(40.830555, -73.832664)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413589,Van,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,6:45,MANHATTAN,10038,40.708183,-74.0078,"(40.708183, -74.0078)",,,90 WILLIAM STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4412819,Sedan,,,, +05/03/2021,13:40,BRONX,10451,40.820198,-73.921486,"(40.820198, -73.921486)",MORRIS AVENUE,EAST 153 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413120,Van,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,6:30,BROOKLYN,11207,40.675785,-73.90269,"(40.675785, -73.90269)",ATLANTIC AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413469,Sedan,Sedan,,, +05/03/2021,11:00,BROOKLYN,11218,40.646988,-73.969315,"(40.646988, -73.969315)",CHURCH AVENUE,STRATFORD ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413829,Sedan,,,, +04/30/2021,21:15,BRONX,10472,40.82941,-73.861145,"(40.82941, -73.861145)",,,1147 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4413521,Sedan,Motorscooter,,, +04/30/2021,17:37,QUEENS,11101,40.755764,-73.93372,"(40.755764, -73.93372)",,,37-29 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413409,Sedan,,,, +05/03/2021,6:20,,,40.727608,-73.91211,"(40.727608, -73.91211)",58 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412888,Tractor Truck Diesel,,,, +04/22/2021,14:00,BROOKLYN,11238,40.671627,-73.96263,"(40.671627, -73.96263)",EASTERN PARKWAY,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4413843,Sedan,,,, +04/23/2021,20:50,BROOKLYN,11238,40.67752,-73.972725,"(40.67752, -73.972725)",FLATBUSH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413842,Sedan,Pick-up Truck,,, +05/03/2021,0:11,BROOKLYN,11221,40.697433,-73.93123,"(40.697433, -73.93123)",MYRTLE AVENUE,CHARLES PLACE,,1,0,0,0,0,0,1,0,Headlights Defective,Unspecified,,,,4413033,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/03/2021,16:12,MANHATTAN,10037,40.81094,-73.94318,"(40.81094, -73.94318)",LENOX AVENUE,WEST 130 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4413168,Bus,Bike,,, +09/19/2021,16:40,QUEENS,11436,40.676598,-73.795944,"(40.676598, -73.795944)",120 AVENUE,144 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4459003,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,20:37,BROOKLYN,11217,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,NEVINS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413196,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,21:00,QUEENS,11373,40.74768,-73.88085,"(40.74768, -73.88085)",,,40-12 FORLEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413315,Sedan,,,, +05/03/2021,21:40,QUEENS,11369,40.76529,-73.86487,"(40.76529, -73.86487)",27 AVENUE,BUTLER STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4413365,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,8:15,BRONX,10463,40.87054,-73.9059,"(40.87054, -73.9059)",HEATH AVENUE,WEST 193 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412997,Bus,Sedan,,, +04/24/2021,16:45,BRONX,10473,40.824844,-73.84938,"(40.824844, -73.84938)",,,860 CASTLE HILL AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413541,Sedan,E-Bike,,, +05/03/2021,8:26,BRONX,10475,40.87582,-73.8327,"(40.87582, -73.8327)",,,120 DONIZETTI PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4412954,Station Wagon/Sport Utility Vehicle,4 dr sedan,Bus,, +04/25/2021,14:15,BROOKLYN,11206,40.69529,-73.94339,"(40.69529, -73.94339)",THROOP AVENUE,VERNON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413558,Sedan,,,, +04/28/2021,23:53,,,40.655895,-74.00591,"(40.655895, -74.00591)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413581,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/03/2021,18:10,,,40.80322,-73.95253,"(40.80322, -73.95253)",7 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413617,Taxi,Bike,,, +05/03/2021,9:00,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",EAST 34 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4412984,Bike,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,8:47,BRONX,10465,40.84334,-73.82515,"(40.84334, -73.82515)",MACDONOUGH PLACE,DWIGHT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412955,Sedan,Dump,,, +04/28/2021,22:30,QUEENS,11691,40.600952,-73.75095,"(40.600952, -73.75095)",,,18-30 EVERDELL AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4413496,Sedan,,,, +04/29/2021,16:30,,,40.82513,-73.931076,"(40.82513, -73.931076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413850,Sedan,Tractor Truck Diesel,,, +05/03/2021,8:43,,,,,,MYRTLE AVENUE,CARLTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413018,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,8:19,QUEENS,11432,,,,171 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4412899,Bus,Pick-up Truck,,, +05/03/2021,11:25,BROOKLYN,11206,40.701256,-73.95495,"(40.701256, -73.95495)",,,223 LEE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413363,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,13:18,QUEENS,11368,40.74506,-73.86403,"(40.74506, -73.86403)",,,98-30 CORONA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413107,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:45,BROOKLYN,11215,40.673813,-73.99238,"(40.673813, -73.99238)",2 AVENUE,7 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413129,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,17:35,BRONX,10475,40.861195,-73.821785,"(40.861195, -73.821785)",,,120 ERSKINE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413682,Sedan,,,, +09/19/2021,6:00,QUEENS,11422,40.636112,-73.7403,"(40.636112, -73.7403)",ROCKAWAY BOULEVARD,MEYER AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4458580,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,20:30,,,40.575256,-74.0053,"(40.575256, -74.0053)",OCEANIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413387,Sedan,Sedan,,, +05/03/2021,14:05,MANHATTAN,10011,40.739258,-73.991264,"(40.739258, -73.991264)",,,144 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413203,Station Wagon/Sport Utility Vehicle,Van,,, +05/03/2021,11:00,BROOKLYN,11214,40.58525,-73.98728,"(40.58525, -73.98728)",CROPSEY AVENUE,BAY 50 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4413379,Sedan,Box Truck,,, +05/03/2021,1:10,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412943,Ambulance,Taxi,,, +05/03/2021,12:55,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413001,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,16:47,BROOKLYN,11228,40.616905,-74.01097,"(40.616905, -74.01097)",13 AVENUE,81 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,21:40,MANHATTAN,10011,40.74406,-74.00682,"(40.74406, -74.00682)",10 AVENUE,WEST 17 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413553,Sedan,Bike,,, +04/08/2021,11:35,BROOKLYN,11230,40.60985,-73.97211,"(40.60985, -73.97211)",,,1638 EAST 2 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413626,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,20:46,,,40.696198,-73.98869,"(40.696198, -73.98869)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413195,Sedan,,,, +05/01/2021,23:54,BROOKLYN,11207,40.675793,-73.88707,"(40.675793, -73.88707)",,,614 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413447,Sedan,Sedan,,, +04/25/2021,20:58,BROOKLYN,11216,40.680717,-73.9463,"(40.680717, -73.9463)",MARCY AVENUE,MACDONOUGH STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4413559,Sedan,Sedan,,, +05/03/2021,9:05,,,,,,LAWTON AVENUE,THROGS NECK EXPRESSWAY,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4413034,Sedan,Sedan,,, +05/02/2021,10:05,MANHATTAN,10027,40.812008,-73.951515,"(40.812008, -73.951515)",SAINT NICHOLAS AVENUE,WEST 127 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413613,Sedan,,,, +05/03/2021,21:50,,,40.784943,-73.946594,"(40.784943, -73.946594)",2 AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413809,Sedan,E-Scooter,,, +05/03/2021,7:15,,,40.746174,-73.82473,"(40.746174, -73.82473)",141 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4413063,Sedan,Box Truck,,, +05/03/2021,12:30,BROOKLYN,11218,40.640976,-73.982346,"(40.640976, -73.982346)",14 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413505,Pallet,Sedan,,, +05/03/2021,12:30,,,40.74273,-73.95412,"(40.74273, -73.95412)",50 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4412970,Sedan,,,, +04/30/2021,23:49,BROOKLYN,11208,40.666595,-73.87176,"(40.666595, -73.87176)",FOUNTAIN AVENUE,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4413434,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,16:30,,,40.662052,-73.93149,"(40.662052, -73.93149)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4413225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,19:49,BROOKLYN,11230,40.628117,-73.956856,"(40.628117, -73.956856)",AVENUE I,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413331,Van,Dump,,, +04/27/2021,19:25,MANHATTAN,10027,40.80918,-73.94819,"(40.80918, -73.94819)",,,2104 7 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413618,Taxi,Bike,,, +04/28/2021,16:50,BROOKLYN,11231,40.67859,-73.99049,"(40.67859, -73.99049)",,,347 BOND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4413822,AMBULANE,Sedan,,, +05/02/2021,18:56,BROOKLYN,11208,40.662247,-73.86671,"(40.662247, -73.86671)",COZINE AVENUE,CRESCENT STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4413427,Sedan,,,, +05/03/2021,20:10,BROOKLYN,11208,40.681355,-73.88022,"(40.681355, -73.88022)",FULTON STREET,HALE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413475,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,18:10,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4413100,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,2:55,,,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413457,Sedan,,,, +05/03/2021,10:45,,,40.817387,-73.92277,"(40.817387, -73.92277)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4413123,Carry All,Sedan,,, +05/03/2021,1:05,BROOKLYN,11213,40.671032,-73.93927,"(40.671032, -73.93927)",ALBANY AVENUE,SAINT JOHNS PLACE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4413692,Sedan,Sedan,Sedan,, +05/03/2021,20:50,,,40.685947,-73.95943,"(40.685947, -73.95943)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413069,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,21:05,BROOKLYN,11213,40.670486,-73.93652,"(40.670486, -73.93652)",,,255 TROY AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,Oversized Vehicle,,,,4413702,Sedan,Box Truck,,, +05/03/2021,14:50,,,40.597786,-73.75305,"(40.597786, -73.75305)",BEACH 19 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4413175,Sedan,Sedan,Sedan,, +05/03/2021,16:40,QUEENS,11691,40.59514,-73.754,"(40.59514, -73.754)",SEAGIRT BOULEVARD,BEACH 20 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Other Vehicular,Other Vehicular,,,4413547,Sedan,Sedan,Sedan,, +05/03/2021,12:21,,,40.75544,-73.72199,"(40.75544, -73.72199)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Other Vehicular,,,,4413038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,14:40,BROOKLYN,11207,40.66156,-73.89375,"(40.66156, -73.89375)",,,355 NEW LOTS AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413439,,,,, +05/01/2021,19:50,,,40.73392,-73.9928,"(40.73392, -73.9928)",EAST 12 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413565,Moped,Sedan,,, +05/03/2021,21:39,BRONX,10462,40.853683,-73.86917,"(40.853683, -73.86917)",BRONX PARK EAST,MARAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413143,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/03/2021,12:30,,,40.740547,-73.78812,"(40.740547, -73.78812)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413078,Pick-up Truck,Sedan,,, +05/03/2021,17:00,QUEENS,11104,40.73988,-73.92431,"(40.73988, -73.92431)",48 AVENUE,GREENPOINT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413148,Station Wagon/Sport Utility Vehicle,Bike,,, +05/03/2021,17:59,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4413115,Sedan,Box Truck,,, +04/30/2021,20:30,,,40.67974,-73.87839,"(40.67974, -73.87839)",MILFORD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413465,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,0:00,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4412674,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/07/2021,14:25,BROOKLYN,11204,40.62772,-73.986084,"(40.62772, -73.986084)",,,1680 53 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4413511,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,23:20,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,14:20,QUEENS,11357,40.78228,-73.80861,"(40.78228, -73.80861)",154 STREET,18 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4413057,Sedan,Sedan,,, +05/02/2021,23:45,QUEENS,11105,40.78202,-73.91703,"(40.78202, -73.91703)",,,21-43 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413414,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,8:07,,,40.829,-73.83642,"(40.829, -73.83642)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413588,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/02/2021,12:31,,,40.73384,-74.00121,"(40.73384, -74.00121)",WAVERLY PLACE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4413564,Moped,Bike,,, +05/02/2021,17:16,BROOKLYN,11208,40.669037,-73.86569,"(40.669037, -73.86569)",,,2676 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413452,Sedan,,,, +05/03/2021,3:15,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4412850,Sedan,Garbage or Refuse,,, +05/02/2021,0:00,BROOKLYN,11207,40.662827,-73.888405,"(40.662827, -73.888405)",,,715 MILLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413470,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,15:48,QUEENS,11370,40.75923,-73.88604,"(40.75923, -73.88604)",82 STREET,31 AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Traffic Control Disregarded,,,,4413037,Pick-up Truck,Sedan,,, +05/03/2021,21:15,,,40.82802,-73.93122,"(40.82802, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413832,Sedan,,,, +05/03/2021,7:50,BRONX,10454,40.80853,-73.92155,"(40.80853, -73.92155)",,,440 EAST 138 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4413116,Taxi,Sedan,,, +05/03/2021,7:50,BRONX,10457,40.84937,-73.89858,"(40.84937, -73.89858)",,,4275 PARK AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413527,Sedan,Sedan,,, +05/03/2021,0:01,QUEENS,11411,40.69912,-73.73604,"(40.69912, -73.73604)",,,115-21 222 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413071,Sedan,,,, +05/03/2021,13:35,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413407,Taxi,Bike,,, +05/02/2021,12:21,,,40.833633,-73.92615,"(40.833633, -73.92615)",ANDERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413837,AMBULANCE,Sedan,,, +05/01/2021,8:30,BROOKLYN,11208,40.680653,-73.87309,"(40.680653, -73.87309)",,,55 GLEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413438,Sedan,,,, +05/03/2021,15:35,,,40.717022,-73.94913,"(40.717022, -73.94913)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413766,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/03/2021,17:00,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413093,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,14:31,BRONX,10458,40.852802,-73.8883,"(40.852802, -73.8883)",,,631 EAST 183 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4413641,Sedan,Bike,,, +05/03/2021,18:15,BRONX,10469,40.86751,-73.83567,"(40.86751, -73.83567)",BRUNER AVENUE,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/03/2021,17:20,BROOKLYN,11204,40.633278,-73.983185,"(40.633278, -73.983185)",45 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413501,Sedan,,,, +04/28/2021,11:45,QUEENS,11435,40.696934,-73.80358,"(40.696934, -73.80358)",LIBERTY AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4413693,Sedan,Tractor Truck Diesel,,, +05/03/2021,11:08,QUEENS,11419,40.684383,-73.823265,"(40.684383, -73.823265)",LEFFERTS BOULEVARD,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412967,Sedan,firetruck,Pick-up Truck,, +05/03/2021,5:15,BROOKLYN,11203,40.652588,-73.93049,"(40.652588, -73.93049)",,,846 UTICA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412986,Dump,Pick-up Truck,,, +05/03/2021,17:07,BRONX,10474,40.81636,-73.891815,"(40.81636, -73.891815)",TIFFANY STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413208,Sedan,,,, +05/01/2021,4:20,,,40.86758,-73.91842,"(40.86758, -73.91842)",VERMILYEA AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4413569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/03/2021,6:40,,,40.72707,-73.75457,"(40.72707, -73.75457)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413053,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,15:17,QUEENS,11102,40.77054,-73.93205,"(40.77054, -73.93205)",12 STREET,30 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4413383,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,5:00,,,40.540833,-74.17738,"(40.540833, -74.17738)",ANNADALE ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413540,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,9:00,BRONX,10473,40.824207,-73.87529,"(40.824207, -73.87529)",BRUCKNER BOULEVARD,MANOR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412946,PK,Bus,,, +05/03/2021,10:28,MANHATTAN,10007,40.715157,-74.01018,"(40.715157, -74.01018)",,,73 WARREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413153,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/03/2021,14:40,,,40.574463,-74.092606,"(40.574463, -74.092606)",MAPLETON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413230,Sedan,,,, +05/03/2021,0:45,BROOKLYN,11212,40.65801,-73.92078,"(40.65801, -73.92078)",EAST 94 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412979,Sedan,,,, +05/03/2021,18:11,BROOKLYN,11219,40.62284,-74.00121,"(40.62284, -74.00121)",14 AVENUE,OVINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413082,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,2:54,,,40.679676,-73.87863,"(40.679676, -73.87863)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413448,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,13:30,BROOKLYN,11208,40.668587,-73.877556,"(40.668587, -73.877556)",NEW LOTS AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413474,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,16:10,QUEENS,11101,40.751408,-73.93757,"(40.751408, -73.93757)",41 AVENUE,28 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413388,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,13:30,QUEENS,11365,40.746784,-73.78546,"(40.746784, -73.78546)",193 STREET,53 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413735,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,13:50,BROOKLYN,11218,40.648823,-73.971565,"(40.648823, -73.971565)",KERMIT PLACE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413048,Sedan,,,, +05/03/2021,15:30,QUEENS,11101,40.741028,-73.93432,"(40.741028, -73.93432)",VANDAM STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413088,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,21:36,BRONX,10460,40.84227,-73.88196,"(40.84227, -73.88196)",,,2005 VYSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413634,Van,Sedan,,, +05/01/2021,10:35,MANHATTAN,10034,40.871475,-73.91857,"(40.871475, -73.91857)",SEAMAN AVENUE,WEST 215 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413623,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,15:45,QUEENS,11691,,,,BEACH 54 STREET,ROCKAWAY FREEWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4413554,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,21:50,BROOKLYN,11208,40.675606,-73.870575,"(40.675606, -73.870575)",,,2751 PITKIN AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4413442,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,19:46,,,40.807087,-73.94178,"(40.807087, -73.94178)",WEST 126 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413614,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,11:00,BRONX,10474,40.81575,-73.88708,"(40.81575, -73.88708)",,,760 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4413202,Sedan,Tractor Truck Diesel,,, +05/03/2021,8:30,,,40.717033,-73.8221,"(40.717033, -73.8221)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4412863,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,10:50,,,40.768547,-73.90464,"(40.768547, -73.90464)",ASTORIA BOULEVARD,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413378,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,23:00,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413846,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,14:50,BROOKLYN,11205,40.693436,-73.97586,"(40.693436, -73.97586)",,,149 NORTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4413019,AMB,Sedan,,, +05/03/2021,17:00,QUEENS,11435,40.702934,-73.811615,"(40.702934, -73.811615)",,,89-05 144 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4413707,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/03/2021,13:57,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413265,Sedan,Sedan,,, +05/03/2021,19:30,STATEN ISLAND,10306,40.556496,-74.138306,"(40.556496, -74.138306)",,,24 BAY TERRACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413165,Sedan,,,, +05/03/2021,20:15,,,,,,135 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413104,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,14:41,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",WEBSTER AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4413632,Sedan,E-Bike,,, +05/03/2021,23:00,BROOKLYN,11207,40.66849,-73.88645,"(40.66849, -73.88645)",,,570 BARBEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413493,Sedan,,,, +05/03/2021,10:10,BROOKLYN,11217,40.67871,-73.98019,"(40.67871, -73.98019)",,,393 DOUGLASS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413128,Box Truck,Sedan,,, +05/02/2021,0:00,,,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413443,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,11:46,,,,,,CROSS BRONX EXPY RAMP,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4413667,Sedan,Sedan,,, +05/03/2021,7:00,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413062,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/02/2021,21:23,BROOKLYN,11208,40.672337,-73.87508,"(40.672337, -73.87508)",,,1163 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413428,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,0:40,,,40.68348,-73.966896,"(40.68348, -73.966896)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4413087,Taxi,,,, +09/19/2021,23:05,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4459125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,8:36,,,,,,PELHAM PARKWAY SOUTH,WILLIAMSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413140,Bus,Sedan,,, +05/03/2021,12:22,,,40.86235,-73.89997,"(40.86235, -73.89997)",MORRIS AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412993,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,16:30,BROOKLYN,11214,40.591305,-73.994545,"(40.591305, -73.994545)",,,1824 SHORE PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413806,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,23:01,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413149,Sedan,Sedan,,, +05/03/2021,7:00,,,40.76289,-73.805534,"(40.76289, -73.805534)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413056,Ambulance,Sedan,,, +05/03/2021,10:30,BROOKLYN,11211,40.711037,-73.96059,"(40.711037, -73.96059)",SOUTH 5 PLACE,SOUTH 4 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413139,Station Wagon/Sport Utility Vehicle,Bike,,, +04/23/2021,15:10,QUEENS,11433,40.703033,-73.797134,"(40.703033, -73.797134)",UNION HALL STREET,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413681,Sedan,Carry All,,, +05/02/2021,23:55,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4413456,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/03/2021,15:00,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413096,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +05/01/2021,20:20,BROOKLYN,11208,40.68193,-73.87827,"(40.68193, -73.87827)",,,3165 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413466,Sedan,,,, +05/03/2021,1:28,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",JEROME AVENUE,EAST FORDHAM ROAD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412703,Sedan,Bike,,, +05/01/2021,15:20,QUEENS,11691,40.608105,-73.75414,"(40.608105, -73.75414)",BEACH CHANNEL DRIVE,NAMEOKE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4413513,Sedan,Motorbike,,, +05/03/2021,2:00,BROOKLYN,11213,40.667305,-73.93126,"(40.667305, -73.93126)",,,313 UTICA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413732,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,23:20,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4413413,Sedan,,,, +05/03/2021,17:20,,,40.878056,-73.83482,"(40.878056, -73.83482)",PALMER AVENUE,,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4413601,Sedan,Sedan,Sedan,Sedan, +05/03/2021,20:40,MANHATTAN,10025,40.79398,-73.97229,"(40.79398, -73.97229)",BROADWAY,WEST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413238,Sedan,,,, +05/03/2021,7:50,QUEENS,11101,40.751434,-73.94725,"(40.751434, -73.94725)",43 AVENUE,12 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4412974,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,1:23,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4412981,Sedan,,,, +05/03/2021,8:30,,,40.708252,-73.781456,"(40.708252, -73.781456)",179 PLACE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412898,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/22/2021,18:30,,,,,,CONNER STREET,PROVOST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413570,MTR H,Pick-up Truck,,, +05/03/2021,16:50,,,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413176,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,15:56,,,40.746788,-73.98846,"(40.746788, -73.98846)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413508,Sedan,,,, +05/03/2021,11:45,,,40.665916,-73.81528,"(40.665916, -73.81528)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4413000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/03/2021,19:00,BRONX,10462,40.83521,-73.85498,"(40.83521, -73.85498)",UNIONPORT ROAD,OLMSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413209,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,18:20,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413546,Sedan,Sedan,,, +05/03/2021,18:30,QUEENS,11422,40.673798,-73.73179,"(40.673798, -73.73179)",MERRICK BOULEVARD,242 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413046,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,10:26,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAND STREET,GRAHAM AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4413336,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +04/27/2021,16:13,BRONX,10469,40.87823,-73.84438,"(40.87823, -73.84438)",,,3563 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,9:10,QUEENS,11418,40.695282,-73.84114,"(40.695282, -73.84114)",106 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4412926,,,,, +05/03/2021,11:24,BROOKLYN,11203,40.65636,-73.93479,"(40.65636, -73.93479)",CLARKSON AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413187,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/28/2021,20:15,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413819,Sedan,,,, +05/03/2021,0:08,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413325,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,10:50,BROOKLYN,11212,40.66208,-73.92121,"(40.66208, -73.92121)",,,196 ROCKAWAY PARKWAY,2,0,1,0,0,0,0,0,Unspecified,,,,,4458750,E-Bike,,,, +05/03/2021,8:20,,,40.86155,-73.92472,"(40.86155, -73.92472)",DYCKMAN STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4412951,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,9:42,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4412999,Sedan,Sedan,,, +05/03/2021,16:40,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",EAST TREMONT AVENUE,3 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4413555,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,10:50,BROOKLYN,11208,40.675053,-73.87436,"(40.675053, -73.87436)",PITKIN AVENUE,CRYSTAL STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4413563,Sedan,Sedan,Sedan,Sedan, +05/03/2021,13:00,BROOKLYN,11232,40.654957,-74.007034,"(40.654957, -74.007034)",3 AVENUE,37 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413036,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,8:59,,,40.81457,-73.931,"(40.81457, -73.931)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413117,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +05/02/2021,1:15,QUEENS,11102,40.77421,-73.93182,"(40.77421, -73.93182)",8 STREET,27 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413411,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,14:30,,,40.68109,-73.90338,"(40.68109, -73.90338)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4413498,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,7:58,QUEENS,11415,40.707096,-73.834984,"(40.707096, -73.834984)",METROPOLITAN AVENUE,83 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4412961,Station Wagon/Sport Utility Vehicle,Bus,,, +05/03/2021,14:30,QUEENS,11356,40.781685,-73.845024,"(40.781685, -73.845024)",123 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413054,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/03/2021,17:54,,,40.85935,-73.90117,"(40.85935, -73.90117)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4413854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/03/2021,1:26,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4412891,Tractor Truck Diesel,Sedan,,, +04/26/2021,15:10,,,40.83694,-73.927124,"(40.83694, -73.927124)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4413838,Sedan,,,, +05/03/2021,14:30,BRONX,10457,40.851967,-73.897095,"(40.851967, -73.897095)",EAST 180 STREET,PARK AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413548,Sedan,E-Scooter,,, +05/03/2021,6:30,,,40.690926,-73.92066,"(40.690926, -73.92066)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413026,Sedan,,,, +05/03/2021,19:01,,,40.80698,-73.95351,"(40.80698, -73.95351)",WEST 120 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413608,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/03/2021,17:30,STATEN ISLAND,10310,40.624523,-74.11702,"(40.624523, -74.11702)",CLOVE ROAD,MARTLING AVENUE,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,4413171,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/03/2021,4:44,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4413007,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/03/2021,18:33,BRONX,10460,40.841354,-73.88033,"(40.841354, -73.88033)",,,1010 EAST 178 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4413642,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/03/2021,0:32,BROOKLYN,11239,40.6468,-73.88496,"(40.6468, -73.88496)",LOUISIANA AVENUE,TWIN PINES DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4413455,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,10:35,QUEENS,11435,40.69726,-73.80575,"(40.69726, -73.80575)",SUTPHIN BOULEVARD,97 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4413695,Sedan,E-Bike,,, +05/03/2021,9:30,BROOKLYN,11225,40.660557,-73.94337,"(40.660557, -73.94337)",,,530 MIDWOOD STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4413074,Sedan,Garbage or Refuse,,, +05/03/2021,18:52,BRONX,10459,40.82681,-73.889984,"(40.82681, -73.889984)",EAST 167 STREET,WEST FARMS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4413206,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/03/2021,11:20,,,40.584564,-73.97194,"(40.584564, -73.97194)",WEST 3 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413377,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/03/2021,9:20,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4413295,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,14:53,BRONX,10458,40.866047,-73.882744,"(40.866047, -73.882744)",EAST BEDFORD PARK BOULEVARD,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413110,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,8:15,BROOKLYN,11207,40.65851,-73.89081,"(40.65851, -73.89081)",,,1935 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413437,Box Truck,,,, +04/28/2021,22:15,,,40.655895,-74.00591,"(40.655895, -74.00591)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413539,Sedan,,,, +05/03/2021,16:02,,,40.743538,-73.83374,"(40.743538, -73.83374)",LAWRENCE STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413066,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/03/2021,14:50,BROOKLYN,11201,40.68736,-73.99788,"(40.68736, -73.99788)",BALTIC STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4413823,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,18:50,BROOKLYN,11208,40.667507,-73.88007,"(40.667507, -73.88007)",NEW LOTS AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,2:00,QUEENS,11693,40.588,-73.80729,"(40.588, -73.80729)",BEACH 81 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4413746,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,13:52,,,40.789116,-73.82259,"(40.789116, -73.82259)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4413059,Sedan,,,, +05/03/2021,1:10,QUEENS,11422,40.652866,-73.7293,"(40.652866, -73.7293)",,,259-33 149 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4412853,Sedan,Sedan,,, +05/01/2021,21:00,BROOKLYN,11208,40.687492,-73.87789,"(40.687492, -73.87789)",JAMAICA AVENUE,RICHMOND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413467,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,23:35,,,40.807545,-73.95681,"(40.807545, -73.95681)",MORNINGSIDE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4413615,Sedan,Sedan,,, +05/03/2021,11:30,BROOKLYN,11212,40.658836,-73.92365,"(40.658836, -73.92365)",,,1035 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412987,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,18:30,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,6,0,0,0,0,0,6,0,Following Too Closely,Other Vehicular,Unspecified,,,4413089,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/28/2021,17:45,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",CHURCH AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4413583,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,17:59,,,,,,East 180,3 ave,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413528,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:05,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413423,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/01/2021,23:11,BROOKLYN,11215,40.666885,-73.98159,"(40.666885, -73.98159)",9 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413845,,,,, +04/19/2021,19:02,,,40.673588,-73.96296,"(40.673588, -73.96296)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4413685,Sedan,Sedan,,, +05/01/2021,16:00,BROOKLYN,11201,40.69108,-73.98439,"(40.69108, -73.98439)",,,237 DUFFIELD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413783,Sedan,Sedan,,, +05/03/2021,18:20,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413094,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,1:30,BRONX,10459,40.81853,-73.8989,"(40.81853, -73.8989)",DAWSON STREET,STEBBINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459057,Sedan,,,, +05/03/2021,16:10,STATEN ISLAND,10306,40.576378,-74.10383,"(40.576378, -74.10383)",,,2221 HYLAN BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4413164,Station Wagon/Sport Utility Vehicle,Bike,,, +05/03/2021,21:00,BROOKLYN,11207,40.666134,-73.88492,"(40.666134, -73.88492)",JEROME STREET,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413429,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,1:00,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4413081,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,17:45,BROOKLYN,11217,40.681835,-73.97584,"(40.681835, -73.97584)",FLATBUSH AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413049,Sedan,Sedan,,, +05/03/2021,4:40,BROOKLYN,11207,40.662735,-73.888336,"(40.662735, -73.888336)",,,721 MILLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4413459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/03/2021,15:08,BROOKLYN,11208,40.669476,-73.870476,"(40.669476, -73.870476)",,,701 EUCLID AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413473,Sedan,Sedan,,, +05/03/2021,2:59,BRONX,10459,40.82193,-73.88844,"(40.82193, -73.88844)",BRUCKNER BOULEVARD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413201,Sedan,Sedan,,, +04/25/2021,17:25,QUEENS,11103,40.75705,-73.91283,"(40.75705, -73.91283)",47 STREET,NEWTOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413403,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:00,QUEENS,11420,40.6724,-73.811584,"(40.6724, -73.811584)",,,130-27 127 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4413102,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +05/03/2021,4:58,BRONX,10458,40.855156,-73.8892,"(40.855156, -73.8892)",,,2356 HOFFMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413636,Sedan,,,, +05/03/2021,9:00,BRONX,10469,40.862614,-73.835175,"(40.862614, -73.835175)",MACE AVENUE,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413141,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,15:05,BRONX,10457,40.845108,-73.89051,"(40.845108, -73.89051)",,,719 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4413545,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,15:23,BROOKLYN,11207,40.657665,-73.89705,"(40.657665, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413441,Sedan,,,, +05/03/2021,16:54,,,40.87111,-73.83741,"(40.87111, -73.83741)",ADEE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4413587,Sedan,,,, +09/19/2021,16:00,,,40.828278,-73.907036,"(40.828278, -73.907036)",3 AVENUE,EAST 166 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4458968,Sedan,Sedan,Sedan,, +05/03/2021,8:10,MANHATTAN,10128,40.78294,-73.948044,"(40.78294, -73.948044)",EAST 94 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413574,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +04/30/2021,20:20,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",SCHENCK AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413445,Box Truck,,,, +05/03/2021,3:44,,,40.803555,-73.91184,"(40.803555, -73.91184)",EAST 137 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4412744,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/02/2021,16:00,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4413518,Sedan,Sedan,Sedan,, +05/03/2021,18:30,BROOKLYN,11207,40.679478,-73.893936,"(40.679478, -73.893936)",ARLINGTON AVENUE,BRADFORD STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413460,Taxi,Sedan,,, +05/03/2021,8:50,QUEENS,11354,40.764603,-73.819305,"(40.764603, -73.819305)",147 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413065,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:00,STATEN ISLAND,10304,,,,,,7 NAVY PIER COURT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413245,Sedan,Sedan,,, +05/03/2021,4:10,BROOKLYN,11236,40.648308,-73.91363,"(40.648308, -73.91363)",,,791 EAST 91 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4412982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,21:20,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4413216,Sedan,Sedan,,, +05/03/2021,13:25,,,40.830563,-73.92727,"(40.830563, -73.92727)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413818,Flat Bed,Sedan,,, +05/03/2021,12:00,,,40.65911,-73.89922,"(40.65911, -73.89922)",NEW LOTS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413490,Bus,Bus,Sedan,, +04/30/2021,22:30,,,40.677155,-73.88773,"(40.677155, -73.88773)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,14:45,,,40.73995,-73.84553,"(40.73995, -73.84553)",GRAND CENTRAL PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413109,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,19:45,MANHATTAN,10011,40.747967,-74.00485,"(40.747967, -74.00485)",,,512 WEST 23 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4413678,Ambulance,Ambulance,,, +05/03/2021,9:40,BROOKLYN,11215,40.670193,-73.97793,"(40.670193, -73.97793)",,,518 3 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413127,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,19:10,QUEENS,11433,,,,Liberty Avenue,177 Street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413706,Sedan,Sedan,,, +05/03/2021,13:15,BROOKLYN,11224,40.577118,-74.001114,"(40.577118, -74.001114)",WEST 35 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413385,Sedan,,,, +05/03/2021,15:00,,,0,0,"(0.0, 0.0)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413173,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/03/2021,1:15,BROOKLYN,11205,40.694363,-73.958,"(40.694363, -73.958)",FRANKLIN AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413006,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,14:14,BROOKLYN,11219,40.62452,-73.99749,"(40.62452, -73.99749)",64 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413045,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,14:50,,,40.732254,-73.99636,"(40.732254, -73.99636)",EAST 8 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4413567,Sedan,,,, +05/03/2021,7:40,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,21:00,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413549,Sedan,Sedan,,, +05/03/2021,20:00,BROOKLYN,11203,40.651966,-73.929245,"(40.651966, -73.929245)",,,5102 CHURCH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4413190,Sedan,,,, +05/03/2021,5:49,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",ORCHARD STREET,DELANCEY STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4413086,Sedan,Sedan,,, +05/03/2021,9:26,MANHATTAN,10034,40.862392,-73.91802,"(40.862392, -73.91802)",9 AVENUE,WEST 205 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413629,Box Truck,Box Truck,,, +05/02/2021,20:41,,,40.617287,-73.97786,"(40.617287, -73.97786)",59 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,Unspecified,,,4413507,Bike,Sedan,,, +05/02/2021,15:32,BRONX,10460,40.840446,-73.86692,"(40.840446, -73.86692)",,,1831 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413595,Sedan,Sedan,,, +05/03/2021,4:10,BROOKLYN,11221,40.691948,-73.939835,"(40.691948, -73.939835)",MARCUS GARVEY BOULEVARD,KOSCIUSZKO STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4413008,Sedan,Sedan,Sedan,, +05/03/2021,12:15,BROOKLYN,11234,40.615795,-73.93937,"(40.615795, -73.93937)",AVENUE P,EAST 35 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4413050,Sedan,Sedan,,, +04/28/2021,10:50,QUEENS,11106,0,0,"(0.0, 0.0)",,,21-19 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413404,Sedan,,,, +05/03/2021,9:00,BROOKLYN,11230,40.629253,-73.957054,"(40.629253, -73.957054)",,,1347 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413329,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,11:10,MANHATTAN,10036,40.763466,-73.99477,"(40.763466, -73.99477)",,,540 WEST 47 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4413344,Box Truck,Box Truck,Flat Bed,, +05/03/2021,20:40,BRONX,10458,40.85407,-73.88421,"(40.85407, -73.88421)",,,702 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413637,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/03/2021,5:50,MANHATTAN,10032,40.839626,-73.940834,"(40.839626, -73.940834)",,,3985 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412921,Box Truck,,,, +05/02/2021,20:30,BRONX,10452,40.83511,-73.91945,"(40.83511, -73.91945)",WALTON AVENUE,EAST 167 STREET,,1,0,1,0,0,0,0,0,,,,,,4413803,,,,, +05/03/2021,17:15,,,40.710876,-74.01439,"(40.710876, -74.01439)",WEST STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413136,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,16:35,BROOKLYN,11214,40.608215,-73.99809,"(40.608215, -73.99809)",19 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413647,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/03/2021,7:53,MANHATTAN,10027,40.810764,-73.9526,"(40.810764, -73.9526)",WEST 125 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4413728,Bus,Sedan,,, +05/03/2021,8:00,QUEENS,11377,40.74447,-73.911514,"(40.74447, -73.911514)",53 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4412973,Sedan,,,, +05/03/2021,9:00,BRONX,10458,40.853622,-73.88766,"(40.853622, -73.88766)",,,2315 HUGHES AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413643,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:15,BROOKLYN,11201,40.692715,-73.98873,"(40.692715, -73.98873)",,,345 ADAMS STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Following Too Closely,,,,4413198,Refrigerated Van,Motorcycle,,, +05/03/2021,2:15,,,40.830658,-73.93517,"(40.830658, -73.93517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4412889,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,18:20,BROOKLYN,11210,40.62872,-73.938545,"(40.62872, -73.938545)",,,1151 EAST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413055,Sedan,,,, +05/03/2021,21:38,,,40.76555,-73.83911,"(40.76555, -73.83911)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413316,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/28/2021,6:00,,,40.84018,-73.92647,"(40.84018, -73.92647)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413844,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,12:00,MANHATTAN,10026,40.803215,-73.9465,"(40.803215, -73.9465)",,,43 WEST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413611,Sedan,,,, +05/03/2021,16:34,MANHATTAN,10037,40.815235,-73.93756,"(40.815235, -73.93756)",,,37 WEST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413170,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,8:00,BROOKLYN,11201,40.690372,-73.99481,"(40.690372, -73.99481)",,,161 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4412998,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,22:30,BROOKLYN,11207,40.676594,-73.89038,"(40.676594, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413472,Sedan,,,, +05/02/2021,11:30,BROOKLYN,11208,40.666996,-73.86789,"(40.666996, -73.86789)",CRESCENT STREET,LORING AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4413450,Sedan,,,, +05/03/2021,22:40,,,40.85208,-73.82685,"(40.85208, -73.82685)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4413090,Tractor Truck Diesel,,,, +05/01/2021,18:45,,,40.592907,-73.79516,"(40.592907, -73.79516)",BEACH CHANNEL DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4413747,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:23,BROOKLYN,11236,40.64305,-73.89722,"(40.64305, -73.89722)",AVENUE J,EAST 99 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413075,Sedan,Sedan,,, +04/30/2021,15:00,BROOKLYN,11219,40.63062,-73.99574,"(40.63062, -73.99574)",,,5610 NEW UTRECHT AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4413410,Bike,,,, +05/01/2021,1:45,BROOKLYN,11207,40.675224,-73.89097,"(40.675224, -73.89097)",LIBERTY AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4413436,Sedan,Sedan,Sedan,, +05/03/2021,23:00,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413095,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2021,19:15,,,40.827774,-73.945755,"(40.827774, -73.945755)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413795,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,17:55,MANHATTAN,10026,40.80249,-73.95082,"(40.80249, -73.95082)",,,128 WEST 116 STREET,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4413616,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/03/2021,10:50,BROOKLYN,11236,40.652954,-73.920166,"(40.652954, -73.920166)",,,560 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4412988,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,16:20,BRONX,10469,40.876183,-73.854454,"(40.876183, -73.854454)",LACONIA AVENUE,EAST 213 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4413585,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,6:50,BROOKLYN,11222,40.732716,-73.95807,"(40.732716, -73.95807)",FRANKLIN STREET,HURON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4412959,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,11:08,,,,,,GRAND CENTRAL PARKWAY,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413497,Sedan,Sedan,,, +05/03/2021,0:00,BRONX,10459,40.82161,-73.891716,"(40.82161, -73.891716)",,,979 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413205,PK,Sedan,,, +05/02/2021,19:00,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4413696,Sedan,Box Truck,,, +05/02/2021,4:39,,,40.844604,-73.90348,"(40.844604, -73.90348)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413853,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,8:45,BRONX,10475,,,,,,3441 STEENWICK AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4413374,Bus,Tractor Truck Diesel,,, +05/03/2021,13:43,,,40.593388,-73.77881,"(40.593388, -73.77881)",ROCKAWAY BEACH BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4413028,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,21:10,,,,,,SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413111,Sedan,Taxi,,, +05/03/2021,22:31,MANHATTAN,10017,40.75504,-73.97278,"(40.75504, -73.97278)",,,145 EAST 48 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,20:00,BROOKLYN,11219,40.62284,-74.00121,"(40.62284, -74.00121)",14 AVENUE,OVINGTON AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4413162,Sedan,Sedan,Sedan,, +05/03/2021,5:45,,,40.85078,-73.91222,"(40.85078, -73.91222)",WEST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4412952,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/03/2021,2:11,,,40.582756,-74.13041,"(40.582756, -74.13041)",MANOR ROAD,,,1,0,0,0,0,0,1,0,Animals Action,,,,,4412857,Sedan,,,, +05/03/2021,17:00,BROOKLYN,11210,40.629852,-73.93868,"(40.629852, -73.93868)",EAST 39 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413058,Sedan,,,, +05/02/2021,0:00,BROOKLYN,11212,40.661232,-73.91051,"(40.661232, -73.91051)",,,407 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413562,Sedan,,,, +05/03/2021,9:25,BRONX,10455,40.818157,-73.90625,"(40.818157, -73.90625)",EAST 156 STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413118,Sedan,Pick up,,, +05/03/2021,14:30,BROOKLYN,11213,40.666046,-73.929794,"(40.666046, -73.929794)",,,1717 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413035,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,16:50,QUEENS,11412,40.691933,-73.7582,"(40.691933, -73.7582)",117 ROAD,193 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4413826,Sedan,Sedan,,, +05/02/2021,14:15,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413454,Sedan,,,, +05/01/2021,13:30,BROOKLYN,11239,,,,,,180 BETHEL LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413468,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,14:48,BRONX,10451,40.824398,-73.909706,"(40.824398, -73.909706)",,,503 EAST 163 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4413421,Bike,,,, +05/01/2021,13:00,,,40.60098,-73.75555,"(40.60098, -73.75555)",BEACH 22 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4413534,Sedan,Sedan,,, +09/19/2021,19:30,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",SOUTH CONDUIT AVENUE,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458885,Sedan,,,, +04/29/2021,5:08,,,40.677624,-73.93308,"(40.677624, -73.93308)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4413687,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,13:30,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,1:20,,,40.703434,-73.91181,"(40.703434, -73.91181)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413431,Sedan,Sedan,Sedan,, +05/01/2021,3:01,MANHATTAN,10032,40.832886,-73.94402,"(40.832886, -73.94402)",,,555 WEST 156 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413557,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,8:52,QUEENS,11385,40.704178,-73.88953,"(40.704178, -73.88953)",70 AVENUE,66 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413191,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,19:08,,,40.641003,-73.94755,"(40.641003, -73.94755)",EAST 31 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413580,Sedan,,,, +05/01/2021,4:50,,,40.80003,-73.954865,"(40.80003, -73.954865)",WEST 111 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4413612,E-Bike,,,, +05/03/2021,11:40,MANHATTAN,10029,40.79094,-73.947235,"(40.79094, -73.947235)",EAST 104 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4412983,Sedan,,,, +05/03/2021,6:19,MANHATTAN,10032,40.83718,-73.942604,"(40.83718, -73.942604)",BROADWAY,WEST 162 STREET,,2,0,0,0,1,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4413264,Motorcycle,Bike,,, +08/08/2021,15:00,,,,,,WEST GUN HILL ROAD,WEST MOSHOLU PARKWAY SOUTH,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4459448,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,21:30,QUEENS,11416,40.683514,-73.84064,"(40.683514, -73.84064)",103 AVENUE,101 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413174,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,10:30,,,40.64464,-74.01757,"(40.64464, -74.01757)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4412971,Sedan,Sedan,,, +05/03/2021,2:07,,,40.879307,-73.90295,"(40.879307, -73.90295)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4413010,Station Wagon/Sport Utility Vehicle,Sedan,Tractor Truck Gasoline,, +05/03/2021,6:15,QUEENS,11103,40.758175,-73.91729,"(40.758175, -73.91729)",,,42-07 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4413381,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,21:30,QUEENS,11368,40.750717,-73.85877,"(40.750717, -73.85877)",ROOSEVELT AVENUE,108 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413359,Sedan,,,, +05/03/2021,0:41,BROOKLYN,11230,40.61533,-73.97115,"(40.61533, -73.97115)",,,1450 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412939,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,7:45,,,40.534096,-74.1863,"(40.534096, -74.1863)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413538,Bus,Sedan,,, +04/30/2021,13:10,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4413817,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/03/2021,17:33,BRONX,10475,40.884876,-73.82686,"(40.884876, -73.82686)",,,3505 CONNER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413586,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,0:40,,,40.669186,-73.87479,"(40.669186, -73.87479)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413426,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,11:48,BRONX,10469,40.880947,-73.85456,"(40.880947, -73.85456)",EAST 219 STREET,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4413628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,17:00,QUEENS,11420,40.675404,-73.80365,"(40.675404, -73.80365)",,,120-16 135 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413101,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,6:17,BROOKLYN,11207,40.664246,-73.88625,"(40.664246, -73.88625)",,,660 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4413458,Sedan,,,, +05/03/2021,12:52,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413461,Sedan,Sedan,,, +05/03/2021,1:02,BROOKLYN,11249,40.70403,-73.966934,"(40.70403, -73.966934)",,,565 KENT AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4412808,Sedan,,,, +05/02/2021,20:30,,,40.72983,-74.010666,"(40.72983, -74.010666)",WEST STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4413566,Moped,,,, +05/03/2021,21:20,MANHATTAN,10005,40.706604,-74.00841,"(40.706604, -74.00841)",,,56 PINE STREET,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4413134,Bike,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,13:00,QUEENS,11372,40.74955,-73.88618,"(40.74955, -73.88618)",80 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413674,Sedan,,,, +04/28/2021,15:14,BRONX,10473,40.819,-73.86432,"(40.819, -73.86432)",SAINT LAWRENCE AVENUE,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413519,Sedan,,,, +04/28/2021,16:45,MANHATTAN,10027,40.818386,-73.95632,"(40.818386, -73.95632)",,,3280 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4413727,Sedan,,,, +05/03/2021,8:34,QUEENS,11354,40.76848,-73.809494,"(40.76848, -73.809494)",33 AVENUE,155 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413064,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,17:25,QUEENS,11102,40.772682,-73.92746,"(40.772682, -73.92746)",,,27-16 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413386,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,15:15,BROOKLYN,11215,40.67297,-73.97162,"(40.67297, -73.97162)",,,906 UNION STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458911,Sedan,Motorbike,,, +05/03/2021,15:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4413639,Sedan,Sedan,,, +05/03/2021,17:41,BRONX,10469,40.857548,-73.85638,"(40.857548, -73.85638)",WILLIAMSBRIDGE ROAD,ESPLANADE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413142,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,11:00,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413004,Sedan,Box Truck,,, +05/03/2021,1:13,,,40.71016,-73.98854,"(40.71016, -73.98854)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4413085,Taxi,Sedan,Sedan,, +05/03/2021,21:00,MANHATTAN,10002,40.72311,-73.98923,"(40.72311, -73.98923)",,,153 EAST HOUSTON STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413152,E-Scooter,,,, +05/03/2021,7:40,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4412907,Sedan,Box Truck,,, +05/03/2021,18:10,QUEENS,11385,40.705235,-73.883316,"(40.705235, -73.883316)",,,70-22 69 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413224,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,12:20,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413051,Sedan,Sedan,,, +05/03/2021,16:00,BRONX,10463,40.888058,-73.90754,"(40.888058, -73.90754)",,,3775 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413043,Sedan,Sedan,,, +05/02/2021,17:50,BROOKLYN,11205,40.68986,-73.95147,"(40.68986, -73.95147)",NOSTRAND AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4413543,Sedan,Sedan,,, +05/03/2021,1:10,QUEENS,11368,40.736927,-73.8648,"(40.736927, -73.8648)",,,96-02 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413796,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,19:40,,,40.59052,-73.805336,"(40.59052, -73.805336)",BEACH CHANNEL DRIVE,BEACH 79 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4413079,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,13:40,,,40.7406,-73.879326,"(40.7406, -73.879326)",BROADWAY,DONGAN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4413108,Moped,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,19:45,BROOKLYN,11208,40.674812,-73.86363,"(40.674812, -73.86363)",,,714 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4413482,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/30/2021,14:30,BROOKLYN,11208,40.671635,-73.868935,"(40.671635, -73.868935)",,,1293 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413446,Sedan,,,, +04/28/2021,20:00,MANHATTAN,10026,40.801666,-73.95677,"(40.801666, -73.95677)",,,297 WEST 112 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4413619,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,23:01,QUEENS,11385,40.70318,-73.86058,"(40.70318, -73.86058)",,,87-17 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413644,Sedan,,,, +05/03/2021,15:25,MANHATTAN,10065,40.761173,-73.95789,"(40.761173, -73.95789)",EAST 63 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413124,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,19:00,QUEENS,11435,40.70318,-73.81327,"(40.70318, -73.81327)",,,139-36 88 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413705,Sedan,,,, +05/03/2021,7:30,QUEENS,11354,40.768883,-73.841286,"(40.768883, -73.841286)",,,31-22 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413068,Tow Truck / Wrecker,Tractor Truck Diesel,,, +05/01/2021,14:36,BRONX,10467,40.85959,-73.86521,"(40.85959, -73.86521)",,,760 ASTOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413591,Sedan,Sedan,,, +04/28/2021,19:45,BROOKLYN,11208,40.667168,-73.88087,"(40.667168, -73.88087)",NEW LOTS AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4413433,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,12:28,BROOKLYN,11239,40.65047,-73.885475,"(40.65047, -73.885475)",,,99 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413440,Taxi,,,, +04/27/2021,8:30,,,,,,Leonard ave,Clinton B Fiske,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413763,Pick-up Truck,,,, +05/02/2021,13:35,BROOKLYN,11208,40.665474,-73.86752,"(40.665474, -73.86752)",STANLEY AVENUE,CRESCENT STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4413451,Sedan,Sedan,,, +05/03/2021,13:59,QUEENS,11101,0,0,"(0.0, 0.0)",QUEENS BOULEVARD,37 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413091,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,7:05,BROOKLYN,11226,40.65217,-73.96141,"(40.65217, -73.96141)",CATON AVENUE,OCEAN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413330,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/28/2021,18:50,QUEENS,11103,40.76502,-73.9174,"(40.76502, -73.9174)",36 STREET,30 AVENUE,,2,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4413405,E-Bike,,,, +09/19/2021,18:40,,,40.6072,-73.75444,"(40.6072, -73.75444)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4459378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,15:28,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",WEST 157 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,18:40,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",HILLSIDE AVENUE,178 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4459149,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,12:54,,,40.680214,-73.94628,"(40.680214, -73.94628)",MARCY AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4459300,Sedan,Sedan,Sedan,, +09/19/2021,0:00,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4458858,Sedan,Sedan,,, +09/19/2021,13:00,,,40.734028,-73.84408,"(40.734028, -73.84408)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,8:16,MANHATTAN,10031,40.8295,-73.94595,"(40.8295, -73.94595)",,,535 WEST 151 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4458607,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,21:31,,,40.785297,-73.955574,"(40.785297, -73.955574)",EAST 93 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458920,Sedan,Sedan,,, +09/19/2021,14:30,QUEENS,11361,40.760807,-73.78371,"(40.760807, -73.78371)",,,40-11 201 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4458695,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,21:00,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458940,Sedan,Sedan,,, +09/19/2021,17:50,,,40.6664,-73.74011,"(40.6664, -73.74011)",NORTH CONDUIT AVENUE,LAURELTON PARKWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4458805,Station Wagon/Sport Utility Vehicle,Bike,,, +09/19/2021,17:51,,,,,,SHORE PARKWAY,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4458917,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/14/2021,17:12,QUEENS,11101,40.758102,-73.94196,"(40.758102, -73.94196)",,,38-04 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459402,Sedan,,,, +09/19/2021,5:20,MANHATTAN,10016,40.74137,-73.978355,"(40.74137, -73.978355)",,,512 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458880,Taxi,Taxi,,, +12/19/2021,23:50,,,40.703083,-73.85766,"(40.703083, -73.85766)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,4488493,Sedan,Sedan,Sedan,Sedan,Taxi +09/19/2021,2:50,BROOKLYN,11208,40.657642,-73.8749,"(40.657642, -73.8749)",FLATLANDS AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458506,Sedan,,,, +09/13/2021,18:20,MANHATTAN,10035,40.797993,-73.936066,"(40.797993, -73.936066)",,,325 EAST 118 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4459471,Self,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,23:18,STATEN ISLAND,10308,40.55141,-74.15041,"(40.55141, -74.15041)",,,23 GIFFORDS LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459214,Sedan,,,, +09/15/2021,7:56,BROOKLYN,11204,40.616825,-73.992516,"(40.616825, -73.992516)",BAY RIDGE AVENUE,18 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459619,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,21:00,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",SOUTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459554,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,21:15,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459044,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,0:00,QUEENS,11421,40.69546,-73.85271,"(40.69546, -73.85271)",WOODHAVEN BOULEVARD,86 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458675,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,4:51,,,40.850807,-73.86781,"(40.850807, -73.86781)",BRONX PARK EAST,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4458992,Sedan,Sedan,,, +08/19/2021,9:40,,,40.639706,-74.01961,"(40.639706, -74.01961)",62 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459467,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,4:10,QUEENS,11354,40.76407,-73.80914,"(40.76407, -73.80914)",NORTHERN BOULEVARD,156 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4458704,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,22:00,,,40.770496,-73.87481,"(40.770496, -73.87481)",DITMARS BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459013,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,16:46,BROOKLYN,11205,40.693966,-73.96151,"(40.693966, -73.96151)",,,569 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459507,Sedan,Box Truck,,, +09/19/2021,18:59,BROOKLYN,11232,40.648045,-74.00009,"(40.648045, -74.00009)",7 AVENUE,40 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458781,Sedan,E-Bike,,, +09/19/2021,17:55,BROOKLYN,11239,40.653854,-73.877754,"(40.653854, -73.877754)",,,127 GATEWAY DRIVE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4459091,Sedan,Sedan,,, +09/17/2021,14:00,QUEENS,11692,,,,,,66-08 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4459549,Sedan,Sedan,,, +09/19/2021,11:25,QUEENS,11362,40.765648,-73.72392,"(40.765648, -73.72392)",,,54-27 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,14:11,BRONX,10469,40.868546,-73.85859,"(40.868546, -73.85859)",BOSTON ROAD,PAULDING AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4458993,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,1:40,,,40.7406,-73.879326,"(40.7406, -73.879326)",BROADWAY,DONGAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459084,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,7:05,,,40.525803,-74.22559,"(40.525803, -74.22559)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4459145,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,11:00,BRONX,10473,40.815006,-73.84525,"(40.815006, -73.84525)",ZEREGA AVENUE,NORTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4458642,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +09/19/2021,0:20,,,40.769955,-73.836426,"(40.769955, -73.836426)",WHITESTONE EXPRESSWAY,DOWNING STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4458702,Sedan,Sedan,,, +09/14/2021,10:15,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PROSPECT STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459522,Sedan,,,, +09/11/2021,13:30,,,,,,BRADDOCK AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459536,Sedan,Sedan,,, +09/19/2021,17:05,,,40.66999,-73.73733,"(40.66999, -73.73733)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4458759,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/19/2021,23:00,QUEENS,11417,40.67544,-73.85322,"(40.67544, -73.85322)",PITKIN AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,,,,,4458902,E-Bike,,,, +09/14/2021,8:00,MANHATTAN,10034,40.87056,-73.918465,"(40.87056, -73.918465)",,,31 PARK TERRACE WEST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459515,Sedan,,,, +09/19/2021,6:05,STATEN ISLAND,10308,40.541847,-74.14779,"(40.541847, -74.14779)",WIMAN AVENUE,PRESLEY STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4459212,Sedan,Sedan,,, +09/06/2021,20:06,BRONX,10467,40.884014,-73.8791,"(40.884014, -73.8791)",EAST 212 STREET,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459451,Sedan,FIRE TRUCK,,, +09/19/2021,14:00,,,40.694504,-73.849144,"(40.694504, -73.849144)",JAMAICA AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458662,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,17:09,BROOKLYN,11228,40.617325,-74.0177,"(40.617325, -74.0177)",85 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458802,Sedan,Sedan,,, +09/19/2021,5:40,,,40.634884,-74.165146,"(40.634884, -74.165146)",,,200 GRANDVIEW AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458604,Station Wagon/Sport Utility Vehicle,Tow truck,,, +09/19/2021,3:30,,,40.70049,-73.90134,"(40.70049, -73.90134)",ONDERDONK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4458752,Sedan,,,, +09/12/2021,19:02,,,40.833626,-73.92615,"(40.833626, -73.92615)",ANDERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459628,Sedan,Sedan,,, +09/19/2021,21:00,BRONX,10469,40.870605,-73.8465,"(40.870605, -73.8465)",,,1357 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4458983,Sedan,Sedan,,, +09/19/2021,0:00,BROOKLYN,11208,40.671738,-73.86815,"(40.671738, -73.86815)",HEMLOCK STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Brakes Defective,,,,4458720,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,1:40,QUEENS,11105,40.775604,-73.90515,"(40.775604, -73.90515)",,,37-02 21 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459401,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,19:35,BROOKLYN,11208,40.683754,-73.88565,"(40.683754, -73.88565)",ELTON STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459092,Sedan,Sedan,,, +09/19/2021,3:47,,,,,,141 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458839,Sedan,,,, +09/19/2021,0:00,,,40.704304,-73.92981,"(40.704304, -73.92981)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459010,Sedan,Bike,,, +09/19/2021,0:00,QUEENS,11429,40.713284,-73.7358,"(40.713284, -73.7358)",SPRINGFIELD BOULEVARD,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4459122,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,17:40,BROOKLYN,11231,40.679226,-74.01291,"(40.679226, -74.01291)",KING STREET,CONOVER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459073,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,19:00,QUEENS,11419,40.68698,-73.81398,"(40.68698, -73.81398)",,,130-10 107 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4458889,Sedan,,,, +09/19/2021,17:07,BROOKLYN,11219,40.630463,-73.98911,"(40.630463, -73.98911)",,,1502 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459364,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,13:45,BRONX,10465,40.818386,-73.824196,"(40.818386, -73.824196)",BALCOM AVENUE,SAMPSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459499,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,21:00,QUEENS,11354,40.763126,-73.83125,"(40.763126, -73.83125)",FARRINGTON STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458825,Pick-up Truck,,,, +09/12/2021,2:20,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4459393,Sedan,Sedan,Sedan,, +09/19/2021,6:24,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458814,Motorcycle,Taxi,,, +09/19/2021,3:50,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4458541,Sedan,,,, +09/14/2021,21:37,BROOKLYN,11249,40.71868,-73.96056,"(40.71868, -73.96056)",,,85 NORTH 6 STREET,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459642,Sedan,E-Scooter,,, +09/19/2021,14:45,BROOKLYN,11216,40.677025,-73.95268,"(40.677025, -73.95268)",BEDFORD AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4458690,Sedan,Bus,,, +09/19/2021,16:25,,,40.821445,-73.950386,"(40.821445, -73.950386)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458861,Tractor Truck Diesel,Sedan,,, +09/17/2021,8:59,BROOKLYN,11205,40.697716,-73.967735,"(40.697716, -73.967735)",FLUSHING AVENUE,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459585,Station Wagon/Sport Utility Vehicle,Bike,,, +08/07/2021,12:10,,,40.704697,-73.79681,"(40.704697, -73.79681)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459483,GOLF CART,,,, +09/19/2021,18:00,BRONX,10463,40.87384,-73.90892,"(40.87384, -73.90892)",,,40 WEST 225 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4459222,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,12:30,MANHATTAN,10012,40.725048,-73.99402,"(40.725048, -73.99402)",,,302 MOTT STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4458877,Sedan,,,, +09/19/2021,22:30,BRONX,10454,40.808773,-73.92426,"(40.808773, -73.92426)",,,360 EAST 137 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458964,Sedan,Sedan,,, +09/19/2021,4:15,MANHATTAN,10036,40.761425,-73.99419,"(40.761425, -73.99419)",,,631 10 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4459322,Sedan,Sedan,Sedan,, +11/25/2021,16:07,MANHATTAN,10031,40.828346,-73.94906,"(40.828346, -73.94906)",WEST 148 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4488401,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/19/2021,17:15,BROOKLYN,11206,40.700123,-73.947136,"(40.700123, -73.947136)",HARRISON AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458787,Sedan,Sedan,,, +09/19/2021,15:00,QUEENS,11102,40.776546,-73.92377,"(40.776546, -73.92377)",19 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459405,Sedan,,,, +09/14/2021,15:00,STATEN ISLAND,10305,40.597588,-74.07697,"(40.597588, -74.07697)",JEROME AVENUE,KRAMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459434,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,15:30,,,40.70174,-73.76545,"(40.70174, -73.76545)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459002,Sedan,,,, +09/19/2021,15:45,MANHATTAN,10016,40.7476,-73.97858,"(40.7476, -73.97858)",,,139 EAST 36 STREET,2,0,0,0,0,0,2,0,Unspecified,,,,,4459183,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,17:45,QUEENS,11411,40.696373,-73.74525,"(40.696373, -73.74525)",LINDEN BOULEVARD,207 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458884,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/19/2021,21:44,BRONX,10457,40.844368,-73.88902,"(40.844368, -73.88902)",EAST TREMONT AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Following Too Closely,,,,4458925,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,11:30,QUEENS,11378,40.721863,-73.893074,"(40.721863, -73.893074)",,,59-59 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459505,Sedan,,,, +09/07/2021,12:25,BRONX,10462,40.834625,-73.84201,"(40.834625, -73.84201)",NEWBOLD AVENUE,SEABURY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4459376,Sedan,,,, +09/18/2021,2:15,BROOKLYN,11205,40.693253,-73.97272,"(40.693253, -73.97272)",,,339 MYRTLE AVENUE,1,0,1,0,0,0,0,0,,,,,,4459597,,,,, +09/19/2021,15:50,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4458946,Sedan,Sedan,,, +09/18/2021,14:00,BROOKLYN,11236,40.649982,-73.91183,"(40.649982, -73.91183)",DITMAS AVENUE,EAST 94 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459561,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,3:00,QUEENS,11369,40.76181,-73.8683,"(40.76181, -73.8683)",ASTORIA BOULEVARD,KEARNEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459379,Sedan,,,, +09/19/2021,1:40,BROOKLYN,11206,40.6997,-73.94425,"(40.6997, -73.94425)",THROOP AVENUE,HOPKINS STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4458510,Sedan,Bike,,, +09/14/2021,15:00,MANHATTAN,10035,40.798912,-73.93418,"(40.798912, -73.93418)",,,350 EAST 120 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459472,Sedan,,,, +09/16/2021,18:15,BRONX,10466,40.89004,-73.85584,"(40.89004, -73.85584)",,,4110 BARNES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459420,Sedan,Sedan,,, +05/04/2021,17:46,,,,,,135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413270,Sedan,,,, +09/19/2021,15:30,QUEENS,11370,40.76893,-73.8897,"(40.76893, -73.8897)",DITMARS BOULEVARD,80 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459409,Sedan,Sedan,,, +09/19/2021,3:00,,,40.75819,-73.82318,"(40.75819, -73.82318)",SANFORD AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4458824,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,21:29,,,40.835117,-73.87391,"(40.835117, -73.87391)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,15:01,,,40.744644,-73.731186,"(40.744644, -73.731186)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4458680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,19:15,,,40.697407,-73.93601,"(40.697407, -73.93601)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459021,Sedan,Sedan,,, +09/19/2021,0:51,QUEENS,11379,40.72028,-73.86548,"(40.72028, -73.86548)",WOODHAVEN BOULEVARD,FURMANVILLE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4459442,Sedan,Sedan,,, +09/19/2021,0:55,MANHATTAN,10017,40.75348,-73.980896,"(40.75348, -73.980896)",WEST 42 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,16:57,,,40.80417,-73.966705,"(40.80417, -73.966705)",WEST 110 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458888,Motorcycle,,,, +09/19/2021,12:12,BROOKLYN,11215,40.672768,-73.98672,"(40.672768, -73.98672)",4 AVENUE,5 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458910,E-Scooter,Sedan,,, +09/19/2021,12:19,QUEENS,11435,40.69357,-73.81053,"(40.69357, -73.81053)",REMINGTON STREET,102 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459163,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,21:50,BRONX,10469,40.87123,-73.85604,"(40.87123, -73.85604)",BURKE AVENUE,BOSTON ROAD,,2,0,0,0,0,0,2,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4458984,Sedan,Sedan,Sedan,, +09/19/2021,9:50,BROOKLYN,11207,40.66707,-73.88606,"(40.66707, -73.88606)",,,623 BARBEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458719,Sedan,,,, +09/19/2021,11:30,BROOKLYN,11234,40.605145,-73.92977,"(40.605145, -73.92977)",,,3301 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458778,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,10:15,BROOKLYN,11238,40.673695,-73.9672,"(40.673695, -73.9672)",LINCOLN PLACE,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459548,Box Truck,Sedan,,, +09/19/2021,6:15,BROOKLYN,11225,40.668083,-73.95929,"(40.668083, -73.95929)",,,960 CARROLL STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458626,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,7:15,MANHATTAN,10033,40.850773,-73.93543,"(40.850773, -73.93543)",BROADWAY,WEST 182 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459516,Sedan,,,, +09/19/2021,9:00,BRONX,10462,40.85159,-73.867805,"(40.85159, -73.867805)",BRONXDALE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458995,Sedan,,,, +09/19/2021,22:31,BROOKLYN,11215,40.66082,-73.98013,"(40.66082, -73.98013)",,,206 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4458856,Sedan,Sedan,,, +09/08/2021,14:40,MANHATTAN,10128,40.77981,-73.95035,"(40.77981, -73.95035)",EAST 89 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459464,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,14:50,,,40.810863,-73.967224,"(40.810863, -73.967224)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4488570,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,12:35,,,40.68966,-74.00047,"(40.68966, -74.00047)",COLUMBIA STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458722,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/19/2021,1:20,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4458788,Sedan,Taxi,Taxi,Station Wagon/Sport Utility Vehicle, +09/19/2021,4:14,STATEN ISLAND,10301,40.63744,-74.08033,"(40.63744, -74.08033)",,,110 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4459190,Sedan,Sedan,,, +09/19/2021,22:00,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",82 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459085,E-Bike,,,, +09/19/2021,20:40,BROOKLYN,11208,40.683132,-73.88259,"(40.683132, -73.88259)",RIDGEWOOD AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459093,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,5:30,BROOKLYN,11236,40.63603,-73.892166,"(40.63603, -73.892166)",,,1907 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458615,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,11:45,BROOKLYN,11223,40.60612,-73.96565,"(40.60612, -73.96565)",KINGS HIGHWAY,EAST 7 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458915,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,6:27,BROOKLYN,11233,40.680676,-73.91404,"(40.680676, -73.91404)",BOYLAND STREET,SUMPTER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458674,Sedan,,,, +09/19/2021,19:30,,,40.699158,-73.927055,"(40.699158, -73.927055)",CENTRAL AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459001,Sedan,,,, +09/19/2021,3:03,,,40.667736,-73.75442,"(40.667736, -73.75442)",222 STREET,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4458599,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/19/2021,9:17,BROOKLYN,11234,40.62798,-73.91439,"(40.62798, -73.91439)",,,1166 BERGEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458804,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,17:33,MANHATTAN,10027,40.80959,-73.95193,"(40.80959, -73.95193)",,,302 WEST 124 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,4:49,,,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459629,Moped,Motorcycle,,, +09/19/2021,16:30,BRONX,10455,40.81698,-73.91625,"(40.81698, -73.91625)",,,2914 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458972,Sedan,,,, +09/19/2021,9:45,QUEENS,11355,40.746815,-73.826164,"(40.746815, -73.826164)",,,56-45 MAIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4458700,Sedan,ambulance,,, +09/17/2021,2:40,STATEN ISLAND,10308,40.55154,-74.16011,"(40.55154, -74.16011)",ARMSTRONG AVENUE,KATAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459433,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,7:30,,,,,,33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459394,Sedan,,,, +09/19/2021,19:35,,,40.825954,-73.94337,"(40.825954, -73.94337)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458862,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/19/2021,19:56,,,40.865543,-73.8368,"(40.865543, -73.8368)",EAST GUN HILL ROAD,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4458844,Ambulance,Tractor Truck Diesel,,, +09/19/2021,17:41,STATEN ISLAND,10306,40.580574,-74.10728,"(40.580574, -74.10728)",MIDLAND AVENUE,SOUTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459206,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,21:42,,,,,,NOSTRAND AVENUE,SHORE PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4459341,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/19/2021,23:00,,,,,,DICKINSON AVENUE,VANCORTLANDT PARK WEST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458878,Sedan,,,, +09/19/2021,12:10,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458692,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,8:30,MANHATTAN,10040,40.852486,-73.927704,"(40.852486, -73.927704)",AMSTERDAM AVENUE,WEST 188 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4459591,Sedan,Sedan,,, +09/19/2021,1:40,MANHATTAN,10036,,,,43 Street,9 Avenue,,1,0,1,0,0,0,0,0,,,,,,4458653,,,,, +08/13/2021,6:31,BROOKLYN,11211,40.714813,-73.94273,"(40.714813, -73.94273)",HUMBOLDT STREET,MASPETH AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459450,SCOOTER,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,18:10,BROOKLYN,11221,40.69363,-73.91332,"(40.69363, -73.91332)",WILSON AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459007,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,18:45,QUEENS,11428,40.715347,-73.74845,"(40.715347, -73.74845)",JAMAICA AVENUE,HOLLIS COURT BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4459113,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,15:59,BROOKLYN,11230,40.62508,-73.962326,"(40.62508, -73.962326)",AVENUE J,EAST 14 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unsafe Speed,,,,4458753,Sedan,Bike,,, +09/19/2021,12:40,QUEENS,11419,40.681923,-73.831924,"(40.681923, -73.831924)",109 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4458891,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,11:00,QUEENS,11373,40.747242,-73.87798,"(40.747242, -73.87798)",,,40-71 ELBERTSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,21:06,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,2:10,BRONX,10460,40.836384,-73.87039,"(40.836384, -73.87039)",,,1719 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458645,Sedan,Sedan,,, +09/19/2021,2:40,,,40.575302,-73.98453,"(40.575302, -73.98453)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4458558,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,11:00,BROOKLYN,11205,40.691563,-73.96953,"(40.691563, -73.96953)",VANDERBILT AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,19:53,,,40.70722,-73.78957,"(40.70722, -73.78957)",170 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459530,Sedan,Bike,,, +09/19/2021,13:24,QUEENS,11419,40.686058,-73.82488,"(40.686058, -73.82488)",,,118-09 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458903,Sedan,,,, +09/19/2021,15:55,QUEENS,11422,40.67138,-73.732124,"(40.67138, -73.732124)",135 AVENUE,243 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458757,Sedan,Sedan,,, +09/12/2021,21:20,QUEENS,11370,40.765423,-73.89001,"(40.765423, -73.89001)",ASTORIA BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459399,Sedan,,,, +09/17/2021,10:50,BRONX,10466,40.899174,-73.85826,"(40.899174, -73.85826)",,,4377 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459421,Sedan,Pick-up Truck,,, +09/19/2021,4:55,BRONX,10467,40.875,-73.87471,"(40.875, -73.87471)",DECATUR AVENUE,EAST 207 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459218,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/20/2021,14:40,,,,,,HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459488,Sedan,,,, +09/19/2021,7:00,QUEENS,11355,40.75451,-73.827156,"(40.75451, -73.827156)",COLDEN STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4458830,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,2:40,MANHATTAN,10022,40.76233,-73.96846,"(40.76233, -73.96846)",,,130 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459323,Sedan,Sedan,,, +09/16/2021,14:10,,,40.692764,-73.94579,"(40.692764, -73.94579)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459523,Taxi,Sedan,,, +09/19/2021,20:30,,,40.82908,-73.837135,"(40.82908, -73.837135)",CROSS BRONX EXPRESSWAY,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458996,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,22:12,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459564,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,12:12,BROOKLYN,11230,40.615936,-73.962494,"(40.615936, -73.962494)",,,1376 EAST 12 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459634,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,2:45,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",SARATOGA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4458685,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,3:05,,,40.815662,-73.88702,"(40.815662, -73.88702)",HUNTS POINT AVENUE,FAILE STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4459056,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +09/09/2021,6:43,MANHATTAN,10033,40.850166,-73.93576,"(40.850166, -73.93576)",BROADWAY,WEST 181 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4459463,Sedan,Sedan,,, +09/19/2021,19:40,,,40.724262,-73.93745,"(40.724262, -73.93745)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,4:13,,,40.65864,-73.91374,"(40.65864, -73.91374)",NEWPORT STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4458666,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,13:00,,,40.603874,-73.99544,"(40.603874, -73.99544)",85 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458723,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,20:00,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",JACKSON AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459098,Pick-up Truck,,,, +09/19/2021,0:20,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4458632,Sedan,Sedan,Sedan,, +09/16/2021,15:58,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459495,Sedan,,,, +09/19/2021,10:10,,,40.855556,-73.92918,"(40.855556, -73.92918)",WEST 191 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4459592,Sedan,Van,,, +09/19/2021,3:40,,,40.585228,-73.94155,"(40.585228, -73.94155)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4459236,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +09/19/2021,20:50,QUEENS,11422,40.664356,-73.734535,"(40.664356, -73.734535)",FRANCIS LEWIS BOULEVARD,246 STREET,,3,0,0,0,0,0,3,0,Unspecified,,,,,4458882,Sedan,Sedan,,, +09/19/2021,13:05,,,40.753643,-73.90767,"(40.753643, -73.90767)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459404,Ambulance,Sedan,,, +09/19/2021,19:45,BROOKLYN,11208,40.678146,-73.86688,"(40.678146, -73.86688)",,,182 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459412,Sedan,Convertible,,, +09/19/2021,5:40,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",69 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4458518,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,16:00,BRONX,10452,40.8362,-73.923355,"(40.8362, -73.923355)",,,1174 SHAKESPEARE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459545,Sedan,Sedan,,, +09/19/2021,21:03,BROOKLYN,11209,40.617897,-74.02931,"(40.617897, -74.02931)",92 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458914,Sedan,,,, +09/19/2021,23:17,MANHATTAN,10017,40.751892,-73.9676,"(40.751892, -73.9676)",1 AVENUE,EAST 47 STREET,,0,1,0,0,0,0,0,1,Alcohol Involvement,Unspecified,,,,4458952,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,18:19,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459474,Sedan,Sedan,,, +09/19/2021,8:00,BROOKLYN,11221,40.68682,-73.91918,"(40.68682, -73.91918)",,,964 JEFFERSON AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4458820,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,18:35,,,40.731594,-73.9948,"(40.731594, -73.9948)",EAST 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459166,Sedan,Tractor Truck Diesel,,, +09/19/2021,21:10,,,40.6674,-73.773636,"(40.6674, -73.773636)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4458855,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/17/2021,16:30,,,40.855606,-73.93793,"(40.855606, -73.93793)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459517,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,15:00,MANHATTAN,10075,40.77402,-73.95457,"(40.77402, -73.95457)",2 AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4458930,Bike,,,, +09/19/2021,10:22,,,40.67398,-73.899315,"(40.67398, -73.899315)",ALABAMA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4458718,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,10:22,BROOKLYN,11234,40.61324,-73.93898,"(40.61324, -73.93898)",QUENTIN ROAD,EAST 33 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4458613,Sedan,,,, +09/19/2021,12:00,QUEENS,11368,,,,,,41 SEAVER WAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459037,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,3:00,STATEN ISLAND,10301,40.640125,-74.08562,"(40.640125, -74.08562)",,,119 HENDRICKS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459191,Sedan,Sedan,,, +09/19/2021,1:55,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Alcohol Involvement,,,,4458791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,8:30,BROOKLYN,11221,40.693054,-73.9367,"(40.693054, -73.9367)",,,934 DE KALB AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4458774,Sedan,Sedan,,, +09/19/2021,23:09,BROOKLYN,11208,40.67252,-73.862755,"(40.67252, -73.862755)",,,1458 BLAKE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,10:30,QUEENS,11379,40.71757,-73.874405,"(40.71757, -73.874405)",79 STREET,FURMANVILLE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459503,Station Wagon/Sport Utility Vehicle,Bike,,, +09/19/2021,20:12,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458848,Sedan,Sedan,,, +09/19/2021,23:45,QUEENS,11379,40.721485,-73.86658,"(40.721485, -73.86658)",WOODHAVEN BOULEVARD,64 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458887,Bike,,,, +09/18/2021,22:30,BRONX,10461,40.856327,-73.84392,"(40.856327, -73.84392)",,,2104 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4459441,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,16:33,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,Unspecified,,,4459383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/19/2021,11:40,BROOKLYN,11217,40.680023,-73.97451,"(40.680023, -73.97451)",,,259 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4458908,Sedan,Bike,,, +09/19/2021,20:40,BROOKLYN,11216,40.68078,-73.93761,"(40.68078, -73.93761)",,,471 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458834,Sedan,,,, +09/19/2021,21:45,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459610,Sedan,Pick-up Truck,,, +09/19/2021,10:30,MANHATTAN,10036,40.762123,-73.99157,"(40.762123, -73.99157)",,,440 WEST 47 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459327,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,21:56,MANHATTAN,10029,40.790627,-73.942444,"(40.790627, -73.942444)",EAST 106 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inattention/Distraction,,,,4459375,Sedan,Moped,,, +09/19/2021,19:30,BRONX,10452,40.8448,-73.92264,"(40.8448, -73.92264)",UNIVERSITY AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4459395,Sedan,Sedan,,, +02/19/2022,15:30,,,40.829376,-73.88562,"(40.829376, -73.88562)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504635,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,22:34,QUEENS,11101,40.73764,-73.93502,"(40.73764, -73.93502)",LONG ISLAND EXPRESSWAY,VANDAM STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4458866,Bus,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +12/08/2021,15:00,,,40.6931,-73.95489,"(40.6931, -73.95489)",SPENCER STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485667,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/03/2021,16:30,BROOKLYN,11220,40.643467,-74.02277,"(40.643467, -74.02277)",60 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4485193,Bike,,,, +12/10/2021,17:00,,,,,,11 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485431,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,7:07,BROOKLYN,11212,40.663574,-73.929405,"(40.663574, -73.929405)",,,9 EAST 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485409,Sedan,,,, +12/09/2021,1:31,BROOKLYN,11211,40.701397,-73.95808,"(40.701397, -73.95808)",BEDFORD AVENUE,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484823,Sedan,Van,,, +12/06/2021,21:00,BROOKLYN,11211,40.71594,-73.94462,"(40.71594, -73.94462)",SKILLMAN AVENUE,GRAHAM AVENUE,,1,0,1,0,0,0,0,0,Windshield Inadequate,,,,,4485743,Sedan,,,, +12/08/2021,15:12,,,,,,VANCORTLANDT PARK WEST,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485038,Sedan,Sedan,,, +12/08/2021,6:07,BRONX,10451,40.825443,-73.91808,"(40.825443, -73.91808)",,,260 EAST 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485133,Sedan,Sedan,,, +12/08/2021,19:30,MANHATTAN,10280,40.707462,-74.01713,"(40.707462, -74.01713)",BATTERY PLACE,3 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4484923,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,12:21,BRONX,10457,40.84664,-73.90469,"(40.84664, -73.90469)",EAST 175 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4485147,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/09/2021,12:10,BROOKLYN,11212,40.656826,-73.90357,"(40.656826, -73.90357)",MOTHER GASTON BOULEVARD,HEGEMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485562,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/06/2021,22:13,,,40.758816,-73.90128,"(40.758816, -73.90128)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4485849,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,21:00,QUEENS,11427,40.723946,-73.75192,"(40.723946, -73.75192)",89 AVENUE,212 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485295,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/06/2021,0:30,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485162,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/04/2021,22:00,BROOKLYN,11232,,,,,,500 25 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485279,Sedan,,,, +12/10/2021,15:20,QUEENS,11369,40.76731,-73.882774,"(40.76731, -73.882774)",23 AVENUE,87 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485257,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/08/2021,17:45,,,40.792362,-73.96418,"(40.792362, -73.96418)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4484742,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,15:39,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4484948,Tow Truck / Wrecker,Taxi,,, +12/09/2021,17:35,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4485104,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +12/09/2021,3:15,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",GLENWOOD ROAD,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4484915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/08/2021,7:30,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4484728,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,17:19,MANHATTAN,10018,40.75352,-73.98499,"(40.75352, -73.98499)",,,40 WEST 40 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4484774,Station Wagon/Sport Utility Vehicle,Van,,, +12/07/2021,7:25,QUEENS,11378,40.72641,-73.90604,"(40.72641, -73.90604)",BORDEN AVENUE,60 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4485252,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,11:25,,,40.766167,-73.954254,"(40.766167, -73.954254)",EAST 71 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4484985,Box Truck,Taxi,,, +12/08/2021,11:29,BRONX,10462,40.852375,-73.86582,"(40.852375, -73.86582)",BRADY AVENUE,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,12:07,MANHATTAN,10010,40.742912,-73.988594,"(40.742912, -73.988594)",,,202 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484680,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/19/2021,17:23,,,40.602734,-74.16307,"(40.602734, -74.16307)",,,1855 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,18:20,BROOKLYN,11207,40.66626,-73.884026,"(40.66626, -73.884026)",WARWICK STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488539,Pick-up Truck,,,, +12/16/2021,14:00,BROOKLYN,11221,40.693264,-73.91268,"(40.693264, -73.91268)",,,446 WILSON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4488404,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,0:00,BROOKLYN,11201,40.699993,-73.99099,"(40.699993, -73.99099)",,,140 CADMAN PLAZA WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487508,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,22:15,,,40.703865,-73.765076,"(40.703865, -73.765076)",109 ROAD,191 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488467,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,0:00,QUEENS,11411,40.69314,-73.74486,"(40.69314, -73.74486)",FRANCIS LEWIS BOULEVARD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4488419,Sedan,,,, +12/19/2021,18:50,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4487873,Sedan,Sedan,,, +12/19/2021,16:30,QUEENS,11374,40.72229,-73.86732,"(40.72229, -73.86732)",WOODHAVEN BOULEVARD,63 DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488192,Sedan,Sedan,,, +12/19/2021,16:57,QUEENS,11358,40.753464,-73.79142,"(40.753464, -73.79142)",189 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487762,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,11:00,BROOKLYN,11220,40.640553,-74.0043,"(40.640553, -74.0043)",8 AVENUE,51 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488171,Van,,,, +12/18/2021,17:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488436,Sedan,,,, +12/15/2021,16:45,STATEN ISLAND,10312,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488373,Station Wagon/Sport Utility Vehicle,Bus,,, +12/19/2021,5:30,,,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487982,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,4:00,,,40.603313,-73.75714,"(40.603313, -73.75714)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488030,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,23:08,BROOKLYN,11212,40.656784,-73.91379,"(40.656784, -73.91379)",EAST 98 STREET,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4488345,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,7:48,BROOKLYN,11207,40.655495,-73.88833,"(40.655495, -73.88833)",PENNSYLVANIA AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488098,Sedan,Sedan,,, +12/19/2021,19:00,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487791,Sedan,Sedan,,, +12/19/2021,20:37,QUEENS,11364,40.73769,-73.76846,"(40.73769, -73.76846)",CLEARVIEW EXPRESSWAY,73 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4487848,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,17:00,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488522,Sedan,Sedan,,, +12/19/2021,5:30,,,40.754612,-73.87667,"(40.754612, -73.87667)",34 AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4487653,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,11:40,,,40.676598,-73.93039,"(40.676598, -73.93039)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488497,Dump,Box Truck,,, +12/19/2021,20:09,BRONX,10451,40.81296,-73.925804,"(40.81296, -73.925804)",MORRIS AVENUE,EAST 140 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488107,,,,, +12/19/2021,1:30,MANHATTAN,10037,40.80916,-73.93698,"(40.80916, -73.93698)",,,73 EAST 131 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4487914,Sedan,,,, +12/08/2021,12:30,BROOKLYN,11221,40.693565,-73.91574,"(40.693565, -73.91574)",,,179 WOODBINE STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4488651,Sedan,Box Truck,,, +12/18/2021,17:00,,,,,,WEST 38 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4488456,Sedan,,,, +12/17/2021,12:50,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4488575,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,12:10,,,40.6256,-74.03608,"(40.6256, -74.03608)",COLONIAL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487806,Taxi,Sedan,,, +02/15/2022,8:45,BROOKLYN,11210,40.62802,-73.94713,"(40.62802, -73.94713)",,,2326 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504430,Tractor Truck Diesel,,,, +05/02/2021,7:00,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4413867,Sedan,,,, +12/19/2021,18:20,BROOKLYN,11234,40.630928,-73.92818,"(40.630928, -73.92818)",,,1710 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4487853,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/19/2021,21:40,,,40.82472,-73.87147,"(40.82472, -73.87147)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488352,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,19:00,BROOKLYN,11234,40.62374,-73.92448,"(40.62374, -73.92448)",AVENUE L,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4488233,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +12/19/2021,23:50,,,40.716557,-73.82869,"(40.716557, -73.82869)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,4488273,Sedan,Sedan,,, +12/19/2021,3:15,BRONX,10461,40.85062,-73.85163,"(40.85062, -73.85163)",,,1803 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487628,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,2:45,MANHATTAN,10001,40.75458,-73.99915,"(40.75458, -73.99915)",10 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488039,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,9:45,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4487736,Sedan,Sedan,,, +12/19/2021,1:15,BROOKLYN,11217,40.680595,-73.980896,"(40.680595, -73.980896)",4 AVENUE,BALTIC STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487606,Sedan,Pick-up Truck,,, +12/19/2021,21:00,QUEENS,11436,40.673573,-73.79258,"(40.673573, -73.79258)",ROCKAWAY BOULEVARD,INWOOD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4487862,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,23:45,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4488217,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,10:00,STATEN ISLAND,10308,40.543118,-74.15149,"(40.543118, -74.15149)",OCEANVIEW PLACE,ACACIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488579,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,21:55,BROOKLYN,11239,40.650772,-73.884796,"(40.650772, -73.884796)",PENNSYLVANIA AVENUE,VANDALIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488090,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/19/2021,18:08,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4487779,Sedan,Sedan,,, +12/16/2021,15:00,QUEENS,11419,40.69246,-73.83364,"(40.69246, -73.83364)",,,112-20 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488428,Sedan,,,, +12/17/2021,13:30,,,0,0,"(0.0, 0.0)",BAY STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4488409,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,16:17,MANHATTAN,10065,40.764362,-73.96162,"(40.764362, -73.96162)",2 AVENUE,EAST 65 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487929,Sedan,E-Scooter,,, +12/19/2021,17:25,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4487887,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/16/2021,22:24,MANHATTAN,10030,40.82092,-73.94333,"(40.82092, -73.94333)",WEST 142 STREET,8 AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Other Vehicular,,,,4488362,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/07/2021,11:15,BROOKLYN,11217,40.67968,-73.97826,"(40.67968, -73.97826)",5 AVENUE,PARK PLACE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4488396,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,16:51,BROOKLYN,11204,40.625435,-73.99135,"(40.625435, -73.99135)",16 AVENUE,59 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4487936,Station Wagon/Sport Utility Vehicle,Bike,,, +12/19/2021,18:30,,,40.6043,-74.16349,"(40.6043, -74.16349)",AMSTERDAM AVENUE,CARNEGIE AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4488591,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +12/19/2021,16:48,BROOKLYN,11237,40.69889,-73.91753,"(40.69889, -73.91753)",MYRTLE AVENUE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4487770,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,19:35,,,40.806114,-73.95937,"(40.806114, -73.95937)",MORNINGSIDE DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488568,Sedan,,,, +12/19/2021,11:00,QUEENS,11368,40.742455,-73.86424,"(40.742455, -73.86424)",98 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487689,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,15:04,MANHATTAN,10027,0,0,"(0.0, 0.0)",LENOX AVENUE,WEST 125 STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488444,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/19/2021,22:50,BROOKLYN,11212,40.659855,-73.92009,"(40.659855, -73.92009)",KINGS HIGHWAY,EAST 96 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4488144,Sedan,Motorscooter,,, +12/19/2021,11:52,BRONX,10454,40.803272,-73.918884,"(40.803272, -73.918884)",BRUCKNER BOULEVARD,SAINT ANNS PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488304,Sedan,Sedan,,, +12/19/2021,18:50,BROOKLYN,11205,40.68961,-73.97264,"(40.68961, -73.97264)",,,177 DE KALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4487823,Sedan,,,, +12/19/2021,13:00,QUEENS,11420,40.677258,-73.81873,"(40.677258, -73.81873)",120 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4487988,Pick-up Truck,,,, +12/19/2021,22:53,QUEENS,11385,40.702034,-73.87979,"(40.702034, -73.87979)",,,71-07 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488204,Sedan,Sedan,,, +12/19/2021,6:30,BROOKLYN,11207,40.672882,-73.89808,"(40.672882, -73.89808)",GEORGIA AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,11:00,QUEENS,11373,40.741722,-73.86741,"(40.741722, -73.86741)",,,95-15 50 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4487669,Sedan,,,, +12/19/2021,0:00,,,40.673992,-73.73508,"(40.673992, -73.73508)",MERRICK BOULEVARD,LAURELTON PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4487581,Sedan,,,, +12/19/2021,19:41,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",QUEENS BOULEVARD,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4487868,Pick-up Truck,Sedan,,, +12/15/2021,11:30,QUEENS,11372,40.751205,-73.88647,"(40.751205, -73.88647)",,,35-63 80 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488512,Sedan,Sedan,,, +12/19/2021,10:30,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4488024,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,18:00,QUEENS,11373,40.735115,-73.87524,"(40.735115, -73.87524)",,,88-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4487827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,17:38,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4488413,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,1:20,BROOKLYN,11201,40.69024,-73.99437,"(40.69024, -73.99437)",ATLANTIC AVENUE,CLINTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488424,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,14:19,,,40.75869,-73.9115,"(40.75869, -73.9115)",47 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488370,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,17:16,BROOKLYN,11218,40.64721,-73.970436,"(40.64721, -73.970436)",,,57 EAST 10 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488477,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,22:00,QUEENS,11428,40.7259,-73.736694,"(40.7259, -73.736694)",,,92-09 WINCHESTER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,10:00,STATEN ISLAND,10314,40.611427,-74.116844,"(40.611427, -74.116844)",SLOSSON AVENUE,REON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4488385,Sedan,Sedan,Sedan,, +12/19/2021,10:45,QUEENS,11369,40.760494,-73.8614,"(40.760494, -73.8614)",ASTORIA BOULEVARD,31 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488506,Sedan,,,, +12/19/2021,12:05,,,40.79847,-73.96901,"(40.79847, -73.96901)",BROADWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4488121,,,,, +12/18/2021,21:00,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4488580,Sedan,Sedan,,, +12/19/2021,13:45,,,40.716297,-73.7559,"(40.716297, -73.7559)",FRANCIS LEWIS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4487765,Tractor Truck Diesel,Sedan,Sedan,, +12/19/2021,6:01,QUEENS,11374,40.73195,-73.863434,"(40.73195, -73.863434)",62 DRIVE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488193,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,10:00,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",DYRE AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488454,Sedan,Sedan,,, +12/19/2021,22:56,,,40.646446,-73.87392,"(40.646446, -73.87392)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488099,Sedan,Sedan,,, +12/19/2021,9:00,QUEENS,11385,40.699993,-73.89938,"(40.699993, -73.89938)",,,72-06 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/19/2021,17:45,BROOKLYN,11209,40.617153,-74.033104,"(40.617153, -74.033104)",,,259 95 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,21:00,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488328,Pick-up Truck,Sedan,,, +09/20/2021,17:20,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459233,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,17:25,MANHATTAN,10065,40.76524,-73.95788,"(40.76524, -73.95788)",1 AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488281,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/19/2021,4:00,QUEENS,11370,40.76276,-73.88953,"(40.76276, -73.88953)",79 STREET,25 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,,4487655,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/14/2021,0:00,QUEENS,11361,40.760105,-73.77013,"(40.760105, -73.77013)",,,213-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488480,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,9:00,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4488569,Sedan,Sedan,,, +11/26/2021,16:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4488374,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +12/02/2021,13:45,BROOKLYN,11217,0,0,"(0.0, 0.0)",,,620 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488649,Bus,Sedan,,, +12/19/2021,3:00,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487963,Sedan,,,, +12/17/2021,3:15,,,40.72735,-73.72408,"(40.72735, -73.72408)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488417,Sedan,Sedan,,, +12/16/2021,13:00,QUEENS,11427,40.722927,-73.75346,"(40.722927, -73.75346)",HOLLIS COURT BOULEVARD,89 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488420,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,0:50,,,,,,WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4487513,Sedan,,,, +12/19/2021,20:45,,,40.709827,-73.83983,"(40.709827, -73.83983)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488521,Sedan,Sedan,,, +12/19/2021,19:00,MANHATTAN,10011,40.74462,-74.0027,"(40.74462, -74.0027)",WEST 20 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488038,Sedan,,,, +12/19/2021,12:28,BROOKLYN,11208,40.660652,-73.86577,"(40.660652, -73.86577)",CRESCENT STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488066,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,18:50,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488469,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +12/19/2021,20:00,QUEENS,11377,40.746937,-73.89862,"(40.746937, -73.89862)",65 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487872,Sedan,,,, +12/19/2021,20:20,BROOKLYN,11203,40.650288,-73.9273,"(40.650288, -73.9273)",SNYDER AVENUE,EAST 53 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488346,,,,, +12/19/2021,6:50,MANHATTAN,10018,40.754745,-73.9879,"(40.754745, -73.9879)",WEST 40 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487912,Sedan,,,, +12/06/2021,20:15,,,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,,,0,0,0,0,0,0,0,0,Cell Phone (hands-free),Unspecified,,,,4488499,Sedan,Moped,,, +12/19/2021,1:24,STATEN ISLAND,10310,40.640568,-74.118,"(40.640568, -74.118)",RICHMOND TERRACE,BROADWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488054,Sedan,,,, +12/19/2021,18:00,QUEENS,11413,40.66462,-73.75292,"(40.66462, -73.75292)",225 STREET,144 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487788,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,1:20,BRONX,10462,40.845787,-73.8681,"(40.845787, -73.8681)",,,1838 AMETHYST STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4487627,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/19/2021,17:00,,,40.673996,-73.92785,"(40.673996, -73.92785)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488172,Sedan,,,, +12/06/2021,7:00,,,40.58833,-73.80431,"(40.58833, -73.80431)",ROCKAWAY BEACH BOULEVARD,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,Unspecified,,,4488354,Sedan,Sedan,Sedan,, +09/20/2021,12:48,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4459305,Motorcycle,,,, +04/09/2021,19:45,,,40.59662,-74.00231,"(40.59662, -74.00231)",BELT PARKWAY,,,1,1,0,0,0,0,1,1,Lost Consciousness,Unspecified,Unspecified,,,4407073,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/30/2021,22:09,STATEN ISLAND,10309,,,,OUTERBRIDGE CROSSING,WEST SHORE EXPRESSWAY,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4412441,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/01/2021,1:49,BROOKLYN,11226,40.64513,-73.948975,"(40.64513, -73.948975)",NOSTRAND AVENUE,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4412584,Station Wagon/Sport Utility Vehicle,Sedan,Van,, +04/30/2021,22:54,QUEENS,11418,40.696384,-73.81704,"(40.696384, -73.81704)",132 STREET,ATLANTIC AVENUE,,5,0,0,0,0,0,5,0,Backing Unsafely,Unspecified,,,,4413552,Bus,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,20:15,,,40.74425,-73.7334,"(40.74425, -73.7334)",GRAND CENTRAL PARKWAY,CROSS ISLAND PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4413284,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,4:00,BRONX,10451,40.822456,-73.92692,"(40.822456, -73.92692)",EAST 153 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414164,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:20,,,,,,BRIGHTON 4 STREET,RIEGELMAN BOARDWALK EAST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413402,E-Scooter,,,, +05/04/2021,18:53,,,40.809563,-73.92923,"(40.809563, -73.92923)",3 AVENUE,EAST 135 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413324,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2021,15:40,,,40.674885,-73.927765,"(40.674885, -73.927765)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:55,,,40.69152,-73.74708,"(40.69152, -73.74708)",NASHVILLE BOULEVARD,120 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4414040,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,15:04,QUEENS,11365,40.732323,-73.810776,"(40.732323, -73.810776)",PARSONS BOULEVARD,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,16:45,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413709,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,0:09,,,40.74278,-73.82817,"(40.74278, -73.82817)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Other Vehicular,,,,4413073,Sedan,Sedan,,, +05/04/2021,17:54,BROOKLYN,11235,40.58846,-73.960434,"(40.58846, -73.960434)",,,2791 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413308,Station Wagon/Sport Utility Vehicle,,,, +04/11/2021,19:00,,,40.677483,-73.93033,"(40.677483, -73.93033)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414089,Sedan,Sedan,,, +05/04/2021,12:00,BROOKLYN,11219,40.635582,-73.99155,"(40.635582, -73.99155)",48 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413503,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,14:45,,,40.62549,-74.151955,"(40.62549, -74.151955)",,,1881 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413350,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,8:00,,,40.57529,-73.97655,"(40.57529, -73.97655)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4413656,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,17:43,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413877,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/01/2021,16:50,BROOKLYN,11205,40.690693,-73.95728,"(40.690693, -73.95728)",DE KALB AVENUE,FRANKLIN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413956,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/04/2021,5:55,BRONX,10462,40.847286,-73.861145,"(40.847286, -73.861145)",MULINER AVENUE,DELANCEY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:47,MANHATTAN,10019,40.764904,-73.97446,"(40.764904, -73.97446)",,,24 CENTRAL PARK SOUTH,1,0,1,0,0,0,0,0,Unspecified,,,,,4413361,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,8:40,STATEN ISLAND,10310,40.62894,-74.116196,"(40.62894, -74.116196)",FOREST AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413755,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,19:00,BRONX,10469,40.86455,-73.85776,"(40.86455, -73.85776)",,,2566 HONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413598,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,1:05,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Driver Inattention/Distraction,,,4413161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,10:05,QUEENS,11355,40.749336,-73.81035,"(40.749336, -73.81035)",PARSONS BOULEVARD,QUINCE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4413266,Taxi,Sedan,,, +05/04/2021,22:00,QUEENS,11102,40.77215,-73.929,"(40.77215, -73.929)",ASTORIA BOULEVARD,14 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413415,Station Wagon/Sport Utility Vehicle,Bike,,, +05/02/2021,23:10,MANHATTAN,10024,40.786366,-73.97598,"(40.786366, -73.97598)",AMSTERDAM AVENUE,WEST 84 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,Unspecified,,,4414064,Sedan,Sedan,Sedan,, +05/04/2021,5:00,,,40.599503,-73.754074,"(40.599503, -73.754074)",BEACH 20 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4413464,Sedan,,,, +05/04/2021,12:57,BROOKLYN,11219,40.637894,-73.99838,"(40.637894, -73.99838)",50 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413514,Carry All,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,14:40,BRONX,10473,40.80994,-73.85545,"(40.80994, -73.85545)",,,220 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413542,Sedan,E-Bike,,, +05/04/2021,19:05,STATEN ISLAND,10304,40.59703,-74.09337,"(40.59703, -74.09337)",RICHMOND ROAD,DELLWOOD ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4413247,PK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/04/2021,2:25,BRONX,10473,40.822212,-73.85092,"(40.822212, -73.85092)",,,2124 VIRGIL PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413210,Sedan,Sedan,,, +05/04/2021,9:28,BRONX,10455,,,,,,955 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413893,Tractor Truck Diesel,,,, +05/04/2021,9:20,,,40.692776,-73.95769,"(40.692776, -73.95769)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413941,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:59,QUEENS,11377,40.75353,-73.90478,"(40.75353, -73.90478)",,,56-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413986,Sedan,,,, +05/04/2021,16:00,BROOKLYN,11214,40.60386,-74.00979,"(40.60386, -74.00979)",CROPSEY AVENUE,17 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413235,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,7:15,MANHATTAN,10011,40.7397,-73.99649,"(40.7397, -73.99649)",,,130 WEST 17 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413212,Bike,,,, +05/04/2021,16:05,MANHATTAN,10019,40.770313,-73.99141,"(40.770313, -73.99141)",WEST 57 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413814,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,19:35,BROOKLYN,11228,40.620483,-74.00008,"(40.620483, -74.00008)",15 AVENUE,70 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413258,Station Wagon/Sport Utility Vehicle,Bike,,, +05/04/2021,9:38,MANHATTAN,10013,40.721096,-74.00658,"(40.721096, -74.00658)",,,50 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413180,Flat Bed,Sedan,,, +05/04/2021,0:00,STATEN ISLAND,10312,40.54988,-74.16743,"(40.54988, -74.16743)",RICHMOND AVENUE,LAREDO AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4413537,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +05/04/2021,5:00,,,40.610416,-74.16015,"(40.610416, -74.16015)",,,1550 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413341,Sedan,,,, +05/04/2021,7:55,,,40.771076,-73.94676,"(40.771076, -73.94676)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,4413370,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/03/2021,11:20,MANHATTAN,10023,40.772243,-73.990005,"(40.772243, -73.990005)",WEST 60 STREET,WEST END AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4414070,Taxi,Motorcycle,,, +05/02/2021,18:53,,,40.74424,-73.77618,"(40.74424, -73.77618)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414111,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,10:30,QUEENS,11421,40.691563,-73.86563,"(40.691563, -73.86563)",76 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413584,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,Sedan,, +05/04/2021,9:30,BROOKLYN,11239,40.649113,-73.88516,"(40.649113, -73.88516)",,,1260 CROTON LOOP,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4413479,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/04/2021,11:32,MANHATTAN,10016,40.746536,-73.985954,"(40.746536, -73.985954)",5 AVENUE,WEST 31 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413560,Sedan,Bike,,, +05/04/2021,13:00,BROOKLYN,11201,40.702538,-73.99071,"(40.702538, -73.99071)",MAIN STREET,FRONT STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413197,Bus,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,12:50,BROOKLYN,11201,40.695908,-73.98322,"(40.695908, -73.98322)",TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413251,Box Truck,Sedan,,, +05/04/2021,17:58,BRONX,10458,40.865925,-73.88594,"(40.865925, -73.88594)",WEBSTER AVENUE,EAST 198 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413313,Sedan,,,, +12/19/2021,17:35,,,40.715263,-73.976326,"(40.715263, -73.976326)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4487855,Sedan,,,, +04/30/2021,16:30,MANHATTAN,10021,40.768322,-73.9551,"(40.768322, -73.9551)",,,405 EAST 73 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414011,Sedan,,,, +05/04/2021,19:06,BROOKLYN,11207,40.679874,-73.89122,"(40.679874, -73.89122)",ARLINGTON AVENUE,HENDRIX STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413463,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/04/2021,18:20,BROOKLYN,11216,40.669704,-73.94774,"(40.669704, -73.94774)",EASTERN PARKWAY,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413689,Sedan,Sedan,,, +04/30/2021,11:37,BROOKLYN,11222,40.72652,-73.95235,"(40.72652, -73.95235)",,,750 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413895,Sedan,Sedan,,, +05/04/2021,9:04,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413267,Sedan,,,, +05/03/2021,13:50,BROOKLYN,11230,40.616055,-73.96063,"(40.616055, -73.96063)",,,1384 EAST 14 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413976,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,19:19,BROOKLYN,11226,40.641468,-73.95938,"(40.641468, -73.95938)",DORCHESTER ROAD,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413831,E-Scooter,,,, +05/04/2021,1:11,,,40.79333,-73.97964,"(40.79333, -73.97964)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4413219,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,15:30,,,,,,EAST 222 STREET,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Driver Inattention/Distraction,,,,4413655,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/04/2021,6:55,,,,,,,,1051 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413491,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,22:10,,,40.831493,-73.85444,"(40.831493, -73.85444)",CROSS BRONX EXPY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4413525,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/04/2021,14:29,MANHATTAN,10027,40.814255,-73.94716,"(40.814255, -73.94716)",,,281 WEST 132 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413995,Sedan,,,, +05/04/2021,1:20,,,40.841026,-73.887245,"(40.841026, -73.887245)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413635,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,23:00,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413775,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,15:08,BROOKLYN,11230,,,,OCEAN PARKWAY,PARKVILLE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,9:00,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413721,Sedan,Sedan,,, +05/04/2021,19:00,QUEENS,11368,40.75612,-73.86238,"(40.75612, -73.86238)",,,106-05 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413362,Sedan,,,, +12/19/2021,20:08,QUEENS,11358,40.769188,-73.8009,"(40.769188, -73.8009)",32 AVENUE,164 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4487846,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,15:01,,,40.637997,-74.02136,"(40.637997, -74.02136)",65 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4413302,Box Truck,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/29/2021,10:00,BROOKLYN,11216,40.673912,-73.95546,"(40.673912, -73.95546)",,,678 PARK PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414090,Sedan,,,, +05/04/2021,20:20,BRONX,10461,40.84121,-73.84484,"(40.84121, -73.84484)",BENSON STREET,FRISBY AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4413424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,19:35,QUEENS,11365,40.74217,-73.804436,"(40.74217, -73.804436)",164 STREET,BOOTH MEMORIAL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413271,Sedan,Pick-up Truck,,, +05/04/2021,18:42,,,40.86769,-73.92122,"(40.86769, -73.92122)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4413664,Station Wagon/Sport Utility Vehicle,FIRE,,, +05/01/2021,14:35,,,40.714542,-74.00758,"(40.714542, -74.00758)",,,331 CURRY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413913,Sedan,,,, +05/04/2021,6:16,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413395,Sedan,Sedan,,, +05/04/2021,17:40,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413309,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,12:05,BROOKLYN,11223,40.588223,-73.97168,"(40.588223, -73.97168)",AVENUE Y,WEST 2 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4413396,Sedan,Sedan,,, +05/04/2021,16:45,,,40.629055,-74.16575,"(40.629055, -74.16575)",,,487 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413351,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,22:45,,,40.74925,-73.739685,"(40.74925, -73.739685)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413740,Sedan,,,, +05/04/2021,3:02,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4413099,Sedan,,,, +05/04/2021,15:35,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413849,Sedan,Box Truck,,, +04/30/2021,8:15,,,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413966,Pick-up Truck,,,, +05/04/2021,13:10,,,40.659775,-73.85356,"(40.659775, -73.85356)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4413289,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,8:30,,,40.71747,-73.908516,"(40.71747, -73.908516)",59 DRIVE,59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413609,Pick-up Truck,Box Truck,,, +04/26/2021,11:40,,,40.67994,-73.941216,"(40.67994, -73.941216)",FULTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,Unspecified,,,4413955,Sedan,Sedan,Sedan,, +05/03/2021,3:05,BRONX,10460,40.843296,-73.88685,"(40.843296, -73.88685)",EAST TREMONT AVENUE,MARMION AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413905,Sedan,,,, +05/04/2021,0:10,,,40.702293,-73.79117,"(40.702293, -73.79117)",MERRICK BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413708,Sedan,,,, +05/04/2021,5:10,QUEENS,11377,40.74594,-73.90006,"(40.74594, -73.90006)",ROOSEVELT AVENUE,64 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413144,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,5:53,,,40.608913,-74.15308,"(40.608913, -74.15308)",VICTORY BOULEVARD,CANTERBURY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413759,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,21:30,,,40.60747,-74.16022,"(40.60747, -74.16022)",,,2944 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413352,Sedan,,,, +05/04/2021,7:50,,,40.63079,-73.94552,"(40.63079, -73.94552)",FLATBUSH AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413870,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,19:08,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4413305,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,11:16,QUEENS,11378,40.725918,-73.89535,"(40.725918, -73.89535)",69 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413597,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,19:03,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4413663,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,17:00,,,40.836437,-73.91842,"(40.836437, -73.91842)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414166,Sedan,,,, +05/04/2021,22:00,,,40.828075,-73.88543,"(40.828075, -73.88543)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4413326,Tractor Truck Diesel,Sedan,,, +04/30/2021,20:50,BROOKLYN,11206,40.69488,-73.94042,"(40.69488, -73.94042)",WILLOUGHBY AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414046,Sedan,Ambulance,,, +05/02/2021,16:45,,,40.69822,-73.943954,"(40.69822, -73.943954)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413942,Ambulance,Sedan,,, +05/04/2021,19:39,QUEENS,11434,40.68114,-73.7812,"(40.68114, -73.7812)",BREWER BOULEVARD,119 DRIVE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,22:00,BROOKLYN,11216,40.675354,-73.952774,"(40.675354, -73.952774)",SAINT MARKS AVENUE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414086,Sedan,Sedan,,, +05/04/2021,13:00,QUEENS,11385,,,,,,6013 78 avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4413218,Sedan,,,, +05/04/2021,19:43,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,21:21,BROOKLYN,11207,40.676746,-73.89713,"(40.676746, -73.89713)",,,50 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413483,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,11:15,QUEENS,11427,40.724693,-73.7541,"(40.724693, -73.7541)",212 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413926,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,13:45,BROOKLYN,11236,40.640583,-73.91515,"(40.640583, -73.91515)",,,582 EAST 83 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4413285,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,17:30,BROOKLYN,11218,40.641182,-73.9712,"(40.641182, -73.9712)",AVENUE C,EAST 8 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413575,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,13:15,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Steering Failure,Unspecified,,,4413876,Sedan,Sedan,,, +05/04/2021,0:00,BROOKLYN,11203,40.651512,-73.93521,"(40.651512, -73.93521)",CHURCH AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413200,Sedan,Sedan,,, +05/04/2021,18:14,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4413401,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,10:30,BROOKLYN,11208,40.65886,-73.866,"(40.65886, -73.866)",FOUNTAIN AVENUE,VANDALIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413492,Sedan,Bus,,, +05/04/2021,16:00,,,40.79465,-73.971794,"(40.79465, -73.971794)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413229,Sedan,,,, +05/04/2021,22:30,QUEENS,11104,40.743916,-73.92519,"(40.743916, -73.92519)",QUEENS BOULEVARD,39 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413699,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,9:15,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413772,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,11:10,BRONX,10462,40.84797,-73.85836,"(40.84797, -73.85836)",,,1822 BOGART AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413590,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,20:50,,,40.833286,-73.914085,"(40.833286, -73.914085)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4414154,Sedan,Taxi,Sedan,, +05/04/2021,17:00,BROOKLYN,11218,40.654003,-73.979935,"(40.654003, -73.979935)",TERRACE PLACE,20 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413276,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,22:55,BRONX,10451,40.81084,-73.92764,"(40.81084, -73.92764)",,,2535 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413320,Sedan,,,, +05/03/2021,13:40,,,40.68603,-73.93268,"(40.68603, -73.93268)",PUTNAM AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4414034,Sedan,Sedan,,, +05/02/2021,13:40,MANHATTAN,10031,40.825745,-73.94886,"(40.825745, -73.94886)",,,540 WEST 145 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414006,Sedan,Bike,,, +05/03/2021,12:10,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413890,Station Wagon/Sport Utility Vehicle,Carry All,,, +05/04/2021,19:35,BRONX,10473,40.825912,-73.857124,"(40.825912, -73.857124)",,,1994 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413672,Sedan,,,, +12/19/2021,18:52,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4488246,Sedan,Motorcycle,,, +05/04/2021,16:05,BROOKLYN,11239,40.650764,-73.88481,"(40.650764, -73.88481)",PENNSYLVANIA AVENUE,VANDALIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413478,Sedan,Sedan,,, +05/04/2021,7:20,MANHATTAN,10013,40.717678,-74.00578,"(40.717678, -74.00578)",CHURCH STREET,LEONARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413154,Sedan,Bus,,, +05/04/2021,23:15,QUEENS,11419,40.6957,-73.81477,"(40.6957, -73.81477)",,,95-07 134 STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4413556,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/04/2021,19:16,,,40.593525,-73.99628,"(40.593525, -73.99628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,Unspecified,,4413259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/23/2021,15:00,QUEENS,11377,40.73573,-73.89324,"(40.73573, -73.89324)",51 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414102,Sedan,Sedan,,, +05/04/2021,15:59,,,40.739384,-74.00968,"(40.739384, -74.00968)",WEST STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413502,Pick-up Truck,Sedan,,, +05/04/2021,11:37,,,40.602535,-73.99321,"(40.602535, -73.99321)",85 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413412,Sedan,,,, +12/10/2021,22:24,,,,,,THROGS NECK BRIDGE,,,8,0,0,0,0,0,8,0,Traffic Control Disregarded,Unspecified,,,,4488492,Sedan,Sedan,,, +05/04/2021,19:09,,,,,,BEACH 84 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4414022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,14:00,,,40.791084,-73.953445,"(40.791084, -73.953445)",5 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4413812,Sedan,Taxi,,, +05/04/2021,15:25,MANHATTAN,10021,40.768803,-73.95837,"(40.768803, -73.95837)",2 AVENUE,EAST 72 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413368,E-Bike,,,, +05/04/2021,14:00,,,40.69132,-73.83142,"(40.69132, -73.83142)",95 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413677,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,14:32,,,40.58107,-74.00174,"(40.58107, -74.00174)",BAY VIEW AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4414059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,10:15,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413293,Sedan,Concrete Mixer,,, +05/04/2021,19:40,,,40.66003,-73.92179,"(40.66003, -73.92179)",EAST 95 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,,,4413577,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,6:40,,,40.8623,-73.92943,"(40.8623, -73.92943)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413638,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,18:40,BRONX,10455,40.811398,-73.90777,"(40.811398, -73.90777)",WALES AVENUE,EAST 147 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413319,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,16:25,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4413512,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,9:56,,,,,,101 AVENUE,VANWYCK EXPRESSWAY,,6,0,0,0,0,0,6,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4413179,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,8:50,QUEENS,11102,40.770306,-73.91901,"(40.770306, -73.91901)",30 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413391,Sedan,Sedan,,, +05/04/2021,19:40,STATEN ISLAND,10306,40.56786,-74.11241,"(40.56786, -74.11241)",,,2627 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413242,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,23:00,QUEENS,11103,40.76496,-73.90532,"(40.76496, -73.90532)",48 STREET,25 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4413398,,,,, +05/04/2021,4:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413288,Sedan,,,, +05/04/2021,4:30,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4413390,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +05/01/2021,11:14,,,40.78178,-73.98508,"(40.78178, -73.98508)",RIVERSIDE DRIVE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414067,Sedan,Bike,,, +05/04/2021,12:40,QUEENS,11374,40.73005,-73.86208,"(40.73005, -73.86208)",,,96-33 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413719,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,18:51,MANHATTAN,10036,40.763428,-73.99271,"(40.763428, -73.99271)",WEST 48 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4504654,Sedan,Bike,,, +05/04/2021,20:55,,,40.73626,-73.74221,"(40.73626, -73.74221)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4413742,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,3:30,,,40.86157,-73.913185,"(40.86157, -73.913185)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4413112,Sedan,,,, +05/04/2021,17:10,QUEENS,11691,40.59337,-73.75318,"(40.59337, -73.75318)",,,120 BEACH 19 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4413855,Sedan,,,, +04/30/2021,19:37,BROOKLYN,11222,40.726788,-73.94768,"(40.726788, -73.94768)",,,169 NORMAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414124,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/04/2021,8:40,,,,,,PHELAN PLACE,BILLINGSLY TERRACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4413607,Dump,Sedan,Sedan,, +05/04/2021,20:00,BROOKLYN,11206,40.696175,-73.942345,"(40.696175, -73.942345)",,,991 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413963,Sedan,Sedan,,, +05/03/2021,5:00,BRONX,10462,40.840668,-73.853584,"(40.840668, -73.853584)",,,1720 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413927,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,19:45,BROOKLYN,11221,40.695583,-73.92078,"(40.695583, -73.92078)",BLEECKER STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413494,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,14:35,,,40.717392,-73.97515,"(40.717392, -73.97515)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413227,Sedan,Sedan,,, +05/04/2021,14:50,,,40.744347,-73.92891,"(40.744347, -73.92891)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413232,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,11:30,BROOKLYN,11221,40.687504,-73.91465,"(40.687504, -73.91465)",BUSHWICK AVENUE,WEIRFIELD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413430,Sedan,Bike,,, +05/04/2021,14:14,BRONX,10452,40.843006,-73.91714,"(40.843006, -73.91714)",,,1508 INWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413848,Bus,Carry All,,, +05/04/2021,17:30,BROOKLYN,11215,40.674458,-73.98189,"(40.674458, -73.98189)",,,261 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,21:25,,,40.664856,-73.88023,"(40.664856, -73.88023)",HEGEMAN AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4413484,Sedan,Sedan,,, +05/04/2021,8:40,BROOKLYN,11230,40.61327,-73.95623,"(40.61327, -73.95623)",AVENUE O,EAST 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413880,Sedan,Sedan,,, +05/04/2021,8:00,,,40.759396,-73.79941,"(40.759396, -73.79941)",167 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413275,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,23:38,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4413526,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,17:25,BRONX,10462,40.83885,-73.860916,"(40.83885, -73.860916)",,,99 METROPOLITAN OVAL,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413925,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,8:09,BROOKLYN,11203,40.64417,-73.92506,"(40.64417, -73.92506)",,,5488 KINGS HIGHWAY,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4413188,Van,Sedan,,, +05/04/2021,21:55,QUEENS,11691,40.606655,-73.762886,"(40.606655, -73.762886)",,,24-11 BAYSWATER AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,,,,4413432,Motorcycle,Sedan,,, +05/04/2021,17:45,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413516,Bike,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,9:29,MANHATTAN,10128,40.78587,-73.95305,"(40.78587, -73.95305)",EAST 95 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4413573,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/04/2021,3:35,,,40.740467,-73.97295,"(40.740467, -73.97295)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Outside Car Distraction,Following Too Closely,,,,4413204,Sedan,Sedan,,, +05/04/2021,8:32,BROOKLYN,11215,40.67517,-73.98471,"(40.67517, -73.98471)",4 AVENUE,1 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413249,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,12:09,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413891,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,11:20,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4413904,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +05/04/2021,15:50,QUEENS,11355,40.75819,-73.82318,"(40.75819, -73.82318)",SANFORD AVENUE,BOWNE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4413269,Bike,Sedan,,, +05/04/2021,16:08,MANHATTAN,10017,40.75744,-73.978,"(40.75744, -73.978)",,,597 5 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4413357,Motorcycle,,,, +04/02/2021,13:30,BROOKLYN,11237,40.697678,-73.916374,"(40.697678, -73.916374)",GROVE STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413884,Pick-up Truck,Sedan,,, +05/04/2021,22:00,,,40.697536,-73.87106,"(40.697536, -73.87106)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4413606,Sedan,Sedan,Sedan,Sedan, +05/04/2021,18:27,QUEENS,11436,40.67819,-73.80144,"(40.67819, -73.80144)",140 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4413828,Sedan,,,, +05/04/2021,14:08,,,40.87626,-73.90395,"(40.87626, -73.90395)",WEST 230 STREET,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413217,Pick-up Truck,,,, +05/04/2021,22:50,BROOKLYN,11236,40.644917,-73.894325,"(40.644917, -73.894325)",AVENUE J,EAST 103 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4413286,Taxi,,,, +05/04/2021,6:19,,,40.633015,-74.01592,"(40.633015, -74.01592)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4413178,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,8:21,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413262,Station Wagon/Sport Utility Vehicle,Van,,, +05/03/2021,15:55,BROOKLYN,11226,40.65067,-73.952286,"(40.65067, -73.952286)",,,2704 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413968,Bus,Sedan,,, +05/04/2021,14:34,,,40.831383,-73.906845,"(40.831383, -73.906845)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413419,Bus,Sedan,,, +05/04/2021,17:28,,,,,,68 street,48 ave,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,19:45,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4414048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,23:45,,,40.743244,-73.73154,"(40.743244, -73.73154)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413715,Sedan,,,, +05/04/2021,15:05,BRONX,10462,40.854424,-73.86435,"(40.854424, -73.86435)",,,786 LYDIG AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2021,17:18,BROOKLYN,11238,40.672394,-73.96566,"(40.672394, -73.96566)",,,85 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414087,Sedan,,,, +05/04/2021,7:05,BROOKLYN,11229,40.60547,-73.95258,"(40.60547, -73.95258)",,,2300 OCEAN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4413306,Sedan,Pick-up Truck,,, +05/04/2021,15:30,BROOKLYN,11207,40.669094,-73.89711,"(40.669094, -73.89711)",GEORGIA AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413481,Sedan,Motorbike,,, +05/04/2021,16:14,QUEENS,11416,40.684204,-73.85858,"(40.684204, -73.85858)",ROCKAWAY BOULEVARD,82 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,Unspecified,,,4413551,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,12:44,BROOKLYN,11218,40.637444,-73.9727,"(40.637444, -73.9727)",,,455 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413510,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,17:40,MANHATTAN,10025,40.794212,-73.97282,"(40.794212, -73.97282)",,,255 WEST 95 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413347,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,22:03,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4413660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,1:05,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4413875,Sedan,,,, +05/04/2021,10:35,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",HILLSIDE AVENUE,EDGERTON BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4413299,Sedan,Sedan,,, +05/04/2021,19:00,,,40.557434,-74.17127,"(40.557434, -74.17127)",WAINWRIGHT AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413701,Mailtruck,Motorcycle,,, +05/02/2021,20:10,BRONX,10452,40.83511,-73.91945,"(40.83511, -73.91945)",WALTON AVENUE,EAST 167 STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4414156,Sedan,,,, +05/04/2021,7:00,BROOKLYN,11222,40.72065,-73.94085,"(40.72065, -73.94085)",,,123 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413291,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,3:35,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413147,Bike,COURIER VA,,, +05/04/2021,5:55,STATEN ISLAND,10310,40.632236,-74.120445,"(40.632236, -74.120445)",CARY AVENUE,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4413751,Sedan,Sedan,,, +05/04/2021,16:47,QUEENS,11379,40.71187,-73.87265,"(40.71187, -73.87265)",,,79-25 67 DRIVE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4413979,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,16:15,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",MERRICK BOULEVARD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4413240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,17:55,,,40.86235,-73.894066,"(40.86235, -73.894066)",EAST FORDHAM ROAD,EAST KINGSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:12,BROOKLYN,11206,40.69954,-73.95216,"(40.69954, -73.95216)",,,542 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4413943,Motorcycle,,,, +04/26/2021,11:15,,,40.7314,-73.926094,"(40.7314, -73.926094)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413871,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,19:00,BROOKLYN,11203,40.640083,-73.93304,"(40.640083, -73.93304)",,,875 EAST 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413621,Sedan,,,, +04/27/2021,15:10,,,,,,henry hudson pkwy,west 235 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4414079,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,22:20,BROOKLYN,11204,40.610126,-73.97529,"(40.610126, -73.97529)",65 STREET,WEST 1 STREET,,1,0,1,0,0,0,0,0,,,,,,4413327,,,,, +04/29/2021,12:17,MANHATTAN,10022,40.75871,-73.96386,"(40.75871, -73.96386)",,,345 EAST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414002,Sedan,Sedan,,, +05/04/2021,23:00,MANHATTAN,10001,40.748463,-73.98673,"(40.748463, -73.98673)",,,58 WEST 33 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4413408,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,13:50,,,,,,BAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4413646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,14:00,,,,,,BRONX RIVER PARKWAY RAMP,,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4413311,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/04/2021,18:00,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413279,Sedan,Pick-up Truck,,, +05/04/2021,13:40,QUEENS,11361,40.75461,-73.78159,"(40.75461, -73.78159)",,,46-08 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413734,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,23:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413771,Sedan,Tractor Truck Gasoline,,, +05/04/2021,9:56,BROOKLYN,11207,40.67385,-73.90024,"(40.67385, -73.90024)",WILLIAMS AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413477,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,6:39,BRONX,10460,40.839993,-73.86998,"(40.839993, -73.86998)",,,1622 ADAMS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413592,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,8:15,BROOKLYN,11206,40.703854,-73.95128,"(40.703854, -73.95128)",HARRISON AVENUE,LYNCH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413337,Bus,Sedan,,, +04/28/2021,16:00,QUEENS,11423,40.70871,-73.77905,"(40.70871, -73.77905)",182 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,Unspecified,,,4414035,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,6:30,,,40.58153,-73.96195,"(40.58153, -73.96195)",BRIGHTON 7 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413393,Taxi,,,, +04/28/2021,14:50,,,40.61439,-74.15767,"(40.61439, -74.15767)",RICHMOND AVENUE,CHRISTOPHER LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413879,Sedan,Bus,,, +05/04/2021,7:45,,,40.847908,-73.90357,"(40.847908, -73.90357)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413671,Sedan,Bus,,, +05/04/2021,12:55,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4413954,Sedan,,,, +05/04/2021,12:25,,,40.587265,-73.983475,"(40.587265, -73.983475)",STILLWELL AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4413399,Box Truck,Sedan,,, +04/23/2021,23:15,QUEENS,11378,40.726543,-73.89541,"(40.726543, -73.89541)",,,56-18 69 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4413929,,,,, +05/04/2021,14:30,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",9 AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413679,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/04/2021,1:28,BROOKLYN,11212,40.655895,-73.90435,"(40.655895, -73.90435)",,,660 WATKINS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4413113,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/30/2021,12:30,BROOKLYN,11215,40.669216,-73.97964,"(40.669216, -73.97964)",,,249 7 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413864,Sedan,Sedan,,, +05/04/2021,9:17,QUEENS,11358,40.756687,-73.785545,"(40.756687, -73.785545)",196 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413737,Sedan,,,, +05/04/2021,8:00,QUEENS,11367,40.721935,-73.817055,"(40.721935, -73.817055)",147 STREET,77 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4413298,Sedan,Sedan,Sedan,, +05/04/2021,13:10,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4413495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:15,QUEENS,11374,40.72229,-73.86732,"(40.72229, -73.86732)",WOODHAVEN BOULEVARD,63 DRIVE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4413233,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/04/2021,23:50,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ATLANTIC AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4413485,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,0:00,MANHATTAN,10002,40.712795,-73.98826,"(40.712795, -73.98826)",,,227 MADISON STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4413811,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/04/2021,15:22,BRONX,10466,40.893284,-73.84193,"(40.893284, -73.84193)",WILDER AVENUE,EDENWALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413630,Sedan,,,, +05/04/2021,1:00,,,40.633957,-74.13328,"(40.633957, -74.13328)",,,279 HEBERTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413345,Sedan,,,, +12/19/2021,19:42,QUEENS,11416,40.686646,-73.849075,"(40.686646, -73.849075)",93 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4487901,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,16:10,QUEENS,11372,40.753326,-73.8718,"(40.753326, -73.8718)",35 AVENUE,JUNCTION BOULEVARD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413367,Station Wagon/Sport Utility Vehicle,Bike,,, +04/07/2021,17:00,,,40.677574,-73.95548,"(40.677574, -73.95548)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414101,Sedan,,,, +05/04/2021,19:50,,,40.654327,-73.9221,"(40.654327, -73.9221)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413578,Sedan,Sedan,,, +05/04/2021,17:00,BRONX,10459,40.822525,-73.90046,"(40.822525, -73.90046)",,,961 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413420,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,16:10,BROOKLYN,11217,40.68305,-73.98107,"(40.68305, -73.98107)",,,324 BERGEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413253,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,12:00,,,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413274,Sedan,Sedan,,, +05/03/2021,16:30,,,40.666077,-73.995224,"(40.666077, -73.995224)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,11:08,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413189,Station Wagon/Sport Utility Vehicle,Bike,,, +05/03/2021,22:30,BRONX,10459,40.821415,-73.88933,"(40.821415, -73.88933)",BRUCKNER BOULEVARD,FAILE STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4413885,Sedan,,,, +05/04/2021,20:00,,,40.7491,-73.984085,"(40.7491, -73.984085)",5 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413444,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,15:00,,,,,,BRUCKNER BOULEVARD,EAST 135 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4413318,Sedan,Van,,, +04/27/2021,14:04,BROOKLYN,11230,40.615437,-73.96117,"(40.615437, -73.96117)",,,1320 AVENUE N,1,0,1,0,0,0,0,0,Unspecified,,,,,4414020,Sedan,,,, +05/04/2021,23:00,,,40.85315,-73.90561,"(40.85315, -73.90561)",MORRIS AVENUE,,,1,0,0,0,0,0,0,0,Pavement Slippery,,,,,4413847,E-Bike,,,, +05/04/2021,14:08,QUEENS,11369,40.75847,-73.87818,"(40.75847, -73.87818)",,,90-08 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413962,Sedan,,,, +05/04/2021,19:00,,,,,,CROSS BAY BOULEVARD,EAST 11 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4413256,Station Wagon/Sport Utility Vehicle,Bike,,, +05/04/2021,23:16,QUEENS,11375,40.72696,-73.841385,"(40.72696, -73.841385)",112 STREET,68 DRIVE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413280,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,13:23,BRONX,10462,40.847378,-73.86827,"(40.847378, -73.86827)",,,1906 AMETHYST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413594,Sedan,Sedan,,, +05/04/2021,15:12,,,40.833588,-73.8615,"(40.833588, -73.8615)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413522,Tanker,Tractor Truck Diesel,,, +05/04/2021,13:30,,,40.832012,-73.85621,"(40.832012, -73.85621)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413533,Tractor Truck Diesel,,,, +04/13/2021,12:00,QUEENS,11433,40.70161,-73.79161,"(40.70161, -73.79161)",,,165-18 SOUTH ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414037,Sedan,,,, +05/04/2021,10:00,QUEENS,11377,40.735657,-73.9096,"(40.735657, -73.9096)",58 STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4413183,Concrete Mixer,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,1:03,,,40.749897,-73.93782,"(40.749897, -73.93782)",QUEENS PLAZA NORTH,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413389,Taxi,,,, +05/04/2021,14:40,QUEENS,11434,40.66021,-73.768906,"(40.66021, -73.768906)",,,147-24 177 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414057,Sedan,,,, +05/02/2021,15:40,BROOKLYN,11222,40.72393,-73.95029,"(40.72393, -73.95029)",,,92 NASSAU AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414123,Station Wagon/Sport Utility Vehicle,Bike,,, +05/04/2021,8:28,BROOKLYN,11228,40.62186,-74.00686,"(40.62186, -74.00686)",,,1279 73 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413223,Pick-up Truck,Sedan,,, +04/29/2021,10:43,,,40.575695,-73.99327,"(40.575695, -73.99327)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4414053,Sedan,MACK,,, +05/04/2021,10:00,BROOKLYN,11207,40.682484,-73.89029,"(40.682484, -73.89029)",SUNNYSIDE AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413476,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,8:10,,,40.555454,-74.1639,"(40.555454, -74.1639)",CORTELYOU AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413166,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,22:19,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4413287,Sedan,Sedan,,, +05/04/2021,14:20,BROOKLYN,11220,40.634163,-74.00736,"(40.634163, -74.00736)",60 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413515,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,12:15,BROOKLYN,11236,40.645027,-73.91998,"(40.645027, -73.91998)",RALPH AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413971,Sedan,,,, +05/04/2021,5:43,QUEENS,11372,40.75149,-73.88748,"(40.75149, -73.88748)",35 AVENUE,79 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413248,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Sedan, +05/04/2021,8:21,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4413768,Sedan,Sedan,Sedan,, +05/04/2021,19:59,BROOKLYN,11204,40.628445,-73.98421,"(40.628445, -73.98421)",51 STREET,17 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413703,E-Scooter,,,, +05/04/2021,8:45,,,40.7406,-73.879326,"(40.7406, -73.879326)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413322,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,9:05,,,40.843372,-73.904945,"(40.843372, -73.904945)",EAST 173 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unsafe Speed,,,,4414160,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,17:15,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4413307,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,17:30,QUEENS,11385,40.700478,-73.902145,"(40.700478, -73.902145)",,,57-44 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413602,Sedan,Box Truck,,, +05/04/2021,18:15,,,40.86857,-73.93093,"(40.86857, -73.93093)",HENRY HUDSON PARKWAY,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4413659,Bike,Moped,,, +05/04/2021,10:18,BROOKLYN,11226,40.638878,-73.95405,"(40.638878, -73.95405)",FLATBUSH AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413332,Sedan,,,, +05/04/2021,15:08,,,40.691353,-73.92142,"(40.691353, -73.92142)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Failure to Keep Right,Unspecified,Unspecified,,,4413985,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/04/2021,9:05,QUEENS,11691,,,,SEAGIRT BOULEVARD,BEACH 12 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Pavement Defective,,,,4413418,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,1:15,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4503864,Sedan,,,, +05/04/2021,19:04,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4413241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2021,0:00,,,40.884144,-73.91502,"(40.884144, -73.91502)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413951,Tractor Truck Diesel,,,, +05/04/2021,9:00,,,40.751747,-73.97081,"(40.751747, -73.97081)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413215,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/04/2021,14:13,,,40.682274,-73.99349,"(40.682274, -73.99349)",SACKETT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413824,Tractor Truck Diesel,,,, +05/04/2021,9:00,BROOKLYN,11208,40.66896,-73.87462,"(40.66896, -73.87462)",,,685 LOGAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413480,Sedan,,,, +04/13/2021,9:44,,,40.675186,-73.933304,"(40.675186, -73.933304)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414088,Sedan,,,, +05/04/2021,8:30,BROOKLYN,11222,40.731174,-73.959236,"(40.731174, -73.959236)",,,47 JAVA STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4413550,,,,, +05/04/2021,20:45,QUEENS,11355,40.761745,-73.81353,"(40.761745, -73.81353)",150 STREET,BARCLAY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,11:47,,,40.636124,-74.15919,"(40.636124, -74.15919)",,,33 BUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4413349,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,8:50,BROOKLYN,11220,40.636875,-74.005745,"(40.636875, -74.005745)",,,873 56 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413509,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,23:54,,,40.856792,-73.91742,"(40.856792, -73.91742)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4413406,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,5:10,,,40.7495,-73.94667,"(40.7495, -73.94667)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413150,Sedan,Sedan,,, +05/04/2021,23:35,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4413290,Sedan,,,, +05/04/2021,17:25,BRONX,10465,40.825855,-73.825615,"(40.825855, -73.825615)",,,749 QUINCY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413903,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,17:30,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4413360,Box Truck,Sedan,,, +05/04/2021,15:25,,,40.769955,-73.836426,"(40.769955, -73.836426)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413268,Sedan,Pick-up Truck,,, +05/04/2021,12:08,QUEENS,11433,40.699802,-73.78272,"(40.699802, -73.78272)",,,173-06 108 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4413710,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/04/2021,18:24,STATEN ISLAND,10301,40.63845,-74.08755,"(40.63845, -74.08755)",JERSEY STREET,WINTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413754,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,17:45,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4413610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,14:24,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413872,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2021,8:10,,,40.668373,-73.92264,"(40.668373, -73.92264)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4414082,Sedan,Sedan,Sedan,, +05/04/2021,16:00,,,40.71582,-73.80799,"(40.71582, -73.80799)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,10:11,,,40.684395,-73.97835,"(40.684395, -73.97835)",4 AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4413648,Box Truck,,,, +05/04/2021,19:39,BRONX,10459,40.821613,-73.89688,"(40.821613, -73.89688)",,,956 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,11:03,,,40.661835,-73.89311,"(40.661835, -73.89311)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413462,Box Truck,Ambulance,,, +05/04/2021,14:00,MANHATTAN,10128,40.781387,-73.95213,"(40.781387, -73.95213)",EAST 90 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413936,Bus,,,, +05/04/2021,14:22,BROOKLYN,11226,40.644306,-73.95179,"(40.644306, -73.95179)",CORTELYOU ROAD,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413974,Sedan,Sedan,,, +05/04/2021,13:53,BRONX,10474,40.816902,-73.88926,"(40.816902, -73.88926)",,,800 MANIDA STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413207,Sedan,E-Bike,,, +05/04/2021,16:15,BROOKLYN,11204,40.632576,-73.98393,"(40.632576, -73.98393)",,,4616 16 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413234,Sedan,Sedan,,, +05/04/2021,14:26,,,40.848877,-73.91615,"(40.848877, -73.91615)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413500,Sedan,,,, +05/04/2021,18:30,QUEENS,11691,40.604782,-73.754005,"(40.604782, -73.754005)",BEACH 22 STREET,MOTT AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4413836,Sedan,,,, +05/04/2021,3:15,BRONX,10457,40.841953,-73.898544,"(40.841953, -73.898544)",,,4020 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413422,Sedan,Sedan,,, +05/04/2021,8:00,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",WOODWARD AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413220,Sedan,Tractor Truck Diesel,,, +05/04/2021,7:00,BRONX,10463,40.873196,-73.90427,"(40.873196, -73.90427)",,,2818 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413257,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,12:50,BROOKLYN,11212,40.660984,-73.90879,"(40.660984, -73.90879)",,,211 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413561,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,20:10,STATEN ISLAND,10312,40.561512,-74.171844,"(40.561512, -74.171844)",ARTHUR KILL ROAD,DRUMGOOLE ROAD WEST,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4413536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,1:09,BRONX,10452,40.84518,-73.91417,"(40.84518, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4413194,Tractor Truck Diesel,,,, +05/03/2021,18:36,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4413873,Pick-up Truck,,,, +12/19/2021,3:39,,,40.679317,-74.003334,"(40.679317, -74.003334)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4487980,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,6:00,BRONX,10457,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413633,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,23:30,BROOKLYN,11216,40.678963,-73.94965,"(40.678963, -73.94965)",NOSTRAND AVENUE,HERKIMER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414017,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,15:50,BROOKLYN,11210,40.633995,-73.94778,"(40.633995, -73.94778)",GLENWOOD ROAD,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413335,Sedan,,,, +05/04/2021,15:15,MANHATTAN,10019,40.76838,-73.99281,"(40.76838, -73.99281)",11 AVENUE,WEST 54 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4413729,Sedan,Sedan,,, +05/04/2021,8:40,QUEENS,11364,40.74172,-73.75547,"(40.74172, -73.75547)",73 AVENUE,220 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4413738,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,2:55,BRONX,10455,40.81608,-73.917694,"(40.81608, -73.917694)",3 AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413122,Pick-up Truck,,,, +04/23/2021,13:00,BRONX,10469,40.875233,-73.859726,"(40.875233, -73.859726)",,,934 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4413916,Sedan,Sedan,,, +05/04/2021,9:30,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413371,Sedan,Box Truck,,, +05/04/2021,15:30,,,40.578236,-73.99157,"(40.578236, -73.99157)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4413400,Sedan,,,, +05/04/2021,13:05,MANHATTAN,10024,40.784534,-73.9736,"(40.784534, -73.9736)",COLUMBUS AVENUE,WEST 83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414065,Box Truck,,,, +04/28/2021,10:55,,,40.713184,-73.82393,"(40.713184, -73.82393)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4413866,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +05/01/2021,12:45,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414113,Sedan,Sedan,,, +05/04/2021,0:10,QUEENS,11366,40.725147,-73.81031,"(40.725147, -73.81031)",,,158-46 76 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,22:40,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,AVENUE D,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413579,Station Wagon/Sport Utility Vehicle,Bus,,, +05/04/2021,11:15,BRONX,10451,40.81836,-73.93053,"(40.81836, -73.93053)",,,475 EXTERIOR STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4413317,Dump,Sedan,,, +05/02/2021,13:45,,,40.608208,-74.13322,"(40.608208, -74.13322)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413887,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,19:30,,,40.675198,-73.789894,"(40.675198, -73.789894)",125 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414039,Sedan,,,, +05/04/2021,11:50,MANHATTAN,10002,40.713577,-73.99607,"(40.713577, -73.99607)",,,40 EAST BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413394,Taxi,Bike,,, +05/04/2021,15:10,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PROSPECT STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413252,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,12:05,MANHATTAN,10007,40.714832,-74.00621,"(40.714832, -74.00621)",,,54 READE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413181,Chassis Cab,Sedan,,, +05/04/2021,14:19,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413487,Ambulance,,,, +05/04/2021,17:10,BRONX,10462,40.843086,-73.86583,"(40.843086, -73.86583)",,,1683 UNIONPORT ROAD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4413596,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,17:55,QUEENS,11004,40.74351,-73.717415,"(40.74351, -73.717415)",LITTLE NECK PARKWAY,80 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413283,Sedan,,,, +05/04/2021,14:45,QUEENS,11354,40.767498,-73.83302,"(40.767498, -73.83302)",FARRINGTON STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:00,BRONX,10462,40.8307,-73.84446,"(40.8307, -73.84446)",,,1101 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413524,Sedan,,,, +05/02/2021,14:25,,,40.6361,-74.13796,"(40.6361, -74.13796)",,,1634 CASTLETON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4413878,Sedan,,,, +05/04/2021,8:10,,,,,,WEST 54 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413342,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,10:00,MANHATTAN,10002,40.71777,-73.9838,"(40.71777, -73.9838)",,,80 RIDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413810,Sedan,,,, +05/04/2021,19:45,,,40.855556,-73.92918,"(40.855556, -73.92918)",WEST 191 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413680,Sedan,Sedan,,, +04/24/2021,7:15,MANHATTAN,10030,0,0,"(0.0, 0.0)",,,161 WEST 136 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4413996,Sedan,,,, +04/30/2021,19:05,BROOKLYN,11224,40.578,-74.00583,"(40.578, -74.00583)",SEAGATE AVENUE,LAUREL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414054,Sedan,,,, +05/04/2021,1:25,,,40.766155,-73.89226,"(40.766155, -73.89226)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4413366,Sedan,,,, +04/30/2021,9:15,,,40.67657,-73.94431,"(40.67657, -73.94431)",DEAN STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unsafe Lane Changing,,,,4414091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,18:44,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413301,Bus,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,11:17,QUEENS,11369,40.76401,-73.881165,"(40.76401, -73.881165)",,,88-05 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413958,Sedan,,,, +05/04/2021,22:36,BRONX,10469,40.880825,-73.85158,"(40.880825, -73.85158)",LACONIA AVENUE,EAST 220 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413654,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,11:10,QUEENS,11368,40.75326,-73.864456,"(40.75326, -73.864456)",103 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413669,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,10:30,BRONX,10456,40.83501,-73.91206,"(40.83501, -73.91206)",COLLEGE AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414161,Sedan,Sedan,,, +05/04/2021,19:09,BROOKLYN,11220,40.646755,-74.010056,"(40.646755, -74.010056)",,,464 48 STREET,2,0,0,0,0,0,2,0,Pavement Defective,Unspecified,,,,4413704,Moped,Sedan,,, +05/04/2021,17:15,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413323,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,22:41,BROOKLYN,11235,40.585934,-73.9519,"(40.585934, -73.9519)",VOORHIES AVENUE,SHEEPSHEAD BAY ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413310,Sedan,E-Scooter,,, +12/18/2021,19:36,BROOKLYN,11236,40.65079,-73.903366,"(40.65079, -73.903366)",,,472 EAST 101 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4488434,Box Truck,,,, +12/17/2021,2:30,,,40.69835,-73.92275,"(40.69835, -73.92275)",MYRTLE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488405,Sedan,Sedan,,, +12/19/2021,17:12,MANHATTAN,10032,40.83445,-73.940865,"(40.83445, -73.940865)",,,2009 AMSTERDAM AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488595,Station Wagon/Sport Utility Vehicle,Bike,,, +12/19/2021,22:01,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,WATTS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488029,Lift Boom,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,2:02,BROOKLYN,11236,40.630943,-73.889244,"(40.630943, -73.889244)",SEAVIEW COURT,CANARSIE ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4504158,Sedan,Pick-up Truck,Sedan,, +12/19/2021,6:00,,,40.682663,-73.77589,"(40.682663, -73.77589)",MARSDEN STREET,120 AVENUE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4487877,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/18/2021,22:35,,,40.725994,-73.75815,"(40.725994, -73.75815)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4488573,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,1:30,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Unspecified,,,,,4488387,Sedan,,,, +12/14/2021,15:59,MANHATTAN,10031,40.82804,-73.94251,"(40.82804, -73.94251)",SAINT NICHOLAS AVENUE,WEST 151 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488400,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/17/2021,11:45,BROOKLYN,11237,40.704494,-73.92929,"(40.704494, -73.92929)",,,1052 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488410,Van,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,21:20,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487930,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,18:00,QUEENS,11369,40.76348,-73.870636,"(40.76348, -73.870636)",,,25-33 99 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4503988,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,10:00,QUEENS,11418,40.700268,-73.84281,"(40.700268, -73.84281)",,,84-12 107 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504468,Sedan,,,, +02/19/2022,3:40,BROOKLYN,11208,40.670555,-73.874176,"(40.670555, -73.874176)",,,370 FOUNTAIN AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4504575,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,23:48,,,40.63795,-74.14479,"(40.63795, -74.14479)",RICHMOND TERRACE,MORNINGSTAR ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4504312,Sedan,,,, +02/19/2022,12:00,MANHATTAN,10039,40.826046,-73.93777,"(40.826046, -73.93777)",,,231 WEST 151 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504392,Sedan,,,, +02/17/2022,21:30,,,40.664856,-73.88023,"(40.664856, -73.88023)",HEGEMAN AVENUE,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4504556,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/12/2022,0:06,BRONX,10472,0,0,"(0.0, 0.0)",,,1885 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4504444,Box Truck,,,, +02/19/2022,19:16,,,,,,BOSTON ROAD,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,17:01,BRONX,10452,40.843185,-73.92157,"(40.843185, -73.92157)",,,1445 NELSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504096,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,7:30,QUEENS,11694,40.576916,-73.85178,"(40.576916, -73.85178)",,,132-16 NEWPORT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4503935,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,15:29,BRONX,10454,40.80568,-73.91484,"(40.80568, -73.91484)",,,622 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504449,Taxi,Sedan,,, +02/19/2022,19:30,BROOKLYN,11213,40.674976,-73.94599,"(40.674976, -73.94599)",,,810 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504224,AMBU,Sedan,,, +02/19/2022,2:02,BROOKLYN,11212,40.65463,-73.92201,"(40.65463, -73.92201)",REMSEN AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4504025,Dump,Station Wagon/Sport Utility Vehicle,Sedan,, +02/19/2022,14:48,STATEN ISLAND,10304,40.614025,-74.08479,"(40.614025, -74.08479)",TARGEE STREET,SOBEL COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504104,Sedan,,,, +02/18/2022,6:20,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504562,Van,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,19:00,BROOKLYN,11203,40.63796,-73.93667,"(40.63796, -73.93667)",,,688 EAST 42 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504514,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,0:40,QUEENS,11372,40.74888,-73.89247,"(40.74888, -73.89247)",,,73-14 37 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4503928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,19:50,,,40.812737,-73.93762,"(40.812737, -73.93762)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4504403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,14:28,,,,,,COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4503978,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,14:00,MANHATTAN,10035,40.80261,-73.94469,"(40.80261, -73.94469)",,,1481 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504455,Sedan,,,, +11/30/2021,15:30,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504480,Tow Truck / Wrecker,Sedan,,, +12/20/2021,0:02,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4487854,Sedan,Sedan,,, +12/20/2021,15:20,,,40.79465,-73.97179,"(40.79465, -73.97179)",WEST 96 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488184,Station Wagon/Sport Utility Vehicle,,,, +03/24/2022,20:21,,,40.84474,-73.922585,"(40.84474, -73.922585)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4513671,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,17:40,BRONX,10451,40.82038,-73.926956,"(40.82038, -73.926956)",EAST 151 STREET,CEDAR LANE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4514946,Bus,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,7:52,,,40.669544,-73.917145,"(40.669544, -73.917145)",EAST NEW YORK AVENUE,SARATOGA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514912,Sedan,,,, +02/13/2022,0:20,,,40.673256,-73.9307,"(40.673256, -73.9307)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/23/2022,19:34,BROOKLYN,11230,40.61623,-73.96066,"(40.61623, -73.96066)",,,1374 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514929,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,20:30,BROOKLYN,11206,40.707474,-73.94494,"(40.707474, -73.94494)",,,140 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514887,Sedan,Sedan,,, +03/19/2022,19:10,BROOKLYN,11216,40.685112,-73.94717,"(40.685112, -73.94717)",MARCY AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514944,Sedan,Sedan,,, +03/18/2022,0:10,QUEENS,11360,40.788555,-73.78234,"(40.788555, -73.78234)",BELL BOULEVARD,212 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514939,Sedan,,,, +04/14/2022,10:27,BRONX,10463,40.87892,-73.90479,"(40.87892, -73.90479)",BROADWAY,WEST 231 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4522257,Sedan,Sedan,Sedan,, +04/24/2022,10:57,BRONX,10454,40.80879,-73.91619,"(40.80879, -73.91619)",SAINT ANNS AVENUE,EAST 141 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4521581,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/24/2022,15:00,BROOKLYN,11233,0,0,"(0.0, 0.0)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521762,Sedan,,,, +04/20/2022,21:22,BRONX,10462,40.838234,-73.86364,"(40.838234, -73.86364)",,,1503 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4522313,Sedan,,,, +04/14/2022,13:00,MANHATTAN,10011,40.731544,-73.9992,"(40.731544, -73.9992)",,,33 WASHINGTON SQUARE WEST,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4522187,Sedan,,,, +04/24/2022,11:24,BRONX,10459,40.833046,-73.89648,"(40.833046, -73.89648)",PROSPECT AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4521771,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2022,2:30,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521936,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,18:25,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4522197,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2022,3:49,MANHATTAN,10128,0,0,"(0.0, 0.0)",,,1711 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4521743,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,15:00,,,40.607864,-74.179184,"(40.607864, -74.179184)",TELEPORT DRIVE,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521663,Sedan,Sedan,,, +04/16/2022,23:48,MANHATTAN,10026,40.80333,-73.94873,"(40.80333, -73.94873)",LENOX AVENUE,WEST 118 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522247,Sedan,Sedan,,, +12/20/2021,17:40,,,40.853477,-73.82622,"(40.853477, -73.82622)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488271,Sedan,Box Truck,,, +04/13/2022,15:56,STATEN ISLAND,10305,,,,FRONT STREET,EDGEWATER STREET,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4522265,Sedan,Sedan,,, +03/28/2022,14:08,BROOKLYN,11230,40.626324,-73.960686,"(40.626324, -73.960686)",,,958 EAST 16 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4514319,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,16:15,BRONX,10454,40.80717,-73.917244,"(40.80717, -73.917244)",,,256 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514433,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,15:50,BROOKLYN,11209,40.61834,-74.03018,"(40.61834, -74.03018)",4 AVENUE,92 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514369,Sedan,Sedan,,, +03/25/2022,21:09,,,40.665447,-73.81571,"(40.665447, -73.81571)",SOUTH CONDUIT AVENUE,,,1,1,0,0,0,0,1,1,Unsafe Speed,,,,,4514831,Sedan,,,, +03/28/2022,18:00,,,40.88051,-73.9007,"(40.88051, -73.9007)",WEST 234 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514790,Sedan,,,, +03/28/2022,2:18,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,Unspecified,,,4513943,Sedan,Sedan,Sedan,, +03/28/2022,14:45,QUEENS,11420,40.66773,-73.81594,"(40.66773, -73.81594)",149 AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514349,Sedan,Sedan,,, +03/28/2022,18:42,BROOKLYN,11207,40.669094,-73.8864,"(40.669094, -73.8864)",,,867 BLAKE AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4514528,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,16:29,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,5:30,,,,,,MACOMBS DAM BRIDGE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4514751,Taxi,Sedan,,, +03/28/2022,4:55,,,40.67784,-73.780266,"(40.67784, -73.780266)",161 PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514043,Sedan,,,, +03/28/2022,15:19,MANHATTAN,10013,40.72065,-74.012115,"(40.72065, -74.012115)",,,233 WEST STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514397,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/28/2022,14:30,BROOKLYN,11219,0,0,"(0.0, 0.0)",11 AVENUE,57 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514826,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/27/2022,15:30,,,40.61847,-73.89746,"(40.61847, -73.89746)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514718,Sedan,Sedan,,, +03/28/2022,8:10,,,40.76203,-73.812416,"(40.76203, -73.812416)",MURRAY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514140,Pick-up Truck,,,, +03/28/2022,14:40,,,40.66546,-73.74246,"(40.66546, -73.74246)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514294,Sedan,Sedan,,, +03/28/2022,11:07,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514448,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,8:12,MANHATTAN,10065,40.766556,-73.96294,"(40.766556, -73.96294)",3 AVENUE,EAST 67 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514468,Box Truck,Box Truck,,, +03/28/2022,14:10,QUEENS,11434,40.677265,-73.778625,"(40.677265, -73.778625)",129 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514551,Sedan,,,, +03/28/2022,9:02,STATEN ISLAND,10310,40.631783,-74.12426,"(40.631783, -74.12426)",,,678 CARY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514607,Sedan,Bus,,, +03/28/2022,8:53,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514270,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,7:22,BRONX,10454,40.8086,-73.909775,"(40.8086, -73.909775)",CONCORD AVENUE,SAINT MARYS STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4514210,Sedan,Sedan,,, +03/28/2022,11:49,,,40.75892,-73.999695,"(40.75892, -73.999695)",WEST 39 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514258,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +03/28/2022,1:00,,,40.74111,-73.89842,"(40.74111, -73.89842)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514216,Sedan,Sedan,,, +03/27/2022,15:43,BROOKLYN,11232,40.651333,-74.00751,"(40.651333, -74.00751)",,,4123 4 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514863,Sedan,Bike,,, +03/28/2022,8:11,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,TILLARY STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514288,Station Wagon/Sport Utility Vehicle,Bike,,, +03/28/2022,3:00,,,40.74833,-73.896095,"(40.74833, -73.896095)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4514162,Sedan,,,, +03/28/2022,2:20,QUEENS,11385,40.699883,-73.90831,"(40.699883, -73.90831)",MYRTLE AVENUE,MADISON STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514597,E-Scooter,,,, +05/05/2021,9:45,QUEENS,11430,,,,NASSAU EXPRESSWAY,NORTH HANGAR ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413834,Sedan,,,, +09/19/2021,21:45,QUEENS,11103,40.768234,-73.90709,"(40.768234, -73.90709)",44 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459783,Sedan,,,, +03/28/2022,12:30,BRONX,10456,40.82245,-73.90183,"(40.82245, -73.90183)",,,765 EAST 163 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514383,Bus,Sedan,,, +03/28/2022,2:30,QUEENS,11412,40.69612,-73.746185,"(40.69612, -73.746185)",LINDEN BOULEVARD,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514406,Pick-up Truck,Sedan,,, +03/28/2022,17:00,BRONX,10459,40.81663,-73.89592,"(40.81663, -73.89592)",,,809 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4514690,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,18:14,BRONX,10472,40.82548,-73.87042,"(40.82548, -73.87042)",,,1010 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514476,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,7:12,BROOKLYN,11212,40.66381,-73.91117,"(40.66381, -73.91117)",BRISTOL STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,Other Vehicular,,,4514654,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +03/28/2022,0:01,,,,,,LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514185,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,11:55,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",EAST 34 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514275,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,21:50,,,40.68662,-73.82319,"(40.68662, -73.82319)",LIBERTY AVENUE,120 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514358,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,20:10,QUEENS,11423,40.716324,-73.77009,"(40.716324, -73.77009)",HILLSIDE AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514463,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/14/2022,10:00,BROOKLYN,11213,40.673843,-73.92509,"(40.673843, -73.92509)",SAINT MARKS AVENUE,BUFFALO AVENUE,,1,0,1,0,0,0,0,0,,,,,,4514777,,,,, +03/28/2022,15:35,,,,,,LITTLE NECK PARKWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,16:29,QUEENS,11357,40.786934,-73.808334,"(40.786934, -73.808334)",,,153-81 CROSS ISLAND PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514335,Sedan,Sedan,,, +03/22/2022,20:58,MANHATTAN,10028,40.7791,-73.95463,"(40.7791, -73.95463)",,,179 EAST 86 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514879,Station Wagon/Sport Utility Vehicle,Ambulance,,, +03/28/2022,7:16,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514229,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,1:24,MANHATTAN,10003,40.739674,-73.99095,"(40.739674, -73.99095)",EAST 20 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514750,Sedan,Sedan,,, +03/28/2022,11:15,BRONX,10463,40.883465,-73.91699,"(40.883465, -73.91699)",,,2734 INDEPENDENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514512,Sedan,Sedan,Sedan,, +03/28/2022,11:00,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514577,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,11:00,MANHATTAN,10012,40.722652,-73.99599,"(40.722652, -73.99599)",,,232 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514738,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,13:57,BROOKLYN,11215,40.659695,-73.99218,"(40.659695, -73.99218)",,,297 22 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514845,Tractor Truck Diesel,Sedan,,, +03/28/2022,17:19,BROOKLYN,11230,40.611954,-73.96817,"(40.611954, -73.96817)",OCEAN PARKWAY,AVENUE O,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4514378,Sedan,Sedan,,, +03/17/2022,17:30,BRONX,10457,40.84408,-73.894485,"(40.84408, -73.894485)",,,1826 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514800,Sedan,,,, +03/28/2022,23:50,MANHATTAN,10013,40.723118,-74.00624,"(40.723118, -74.00624)",VARICK STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,18:27,BROOKLYN,11234,40.615337,-73.94008,"(40.615337, -73.94008)",AVENUE P,EAST 34 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514341,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,9:26,MANHATTAN,10003,40.73003,-73.99109,"(40.73003, -73.99109)",EAST 8 STREET,LAFAYETTE STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4514454,Taxi,Bus,,, +03/28/2022,8:20,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",GRAND CENTRAL PARKWAY,150 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4514310,Sedan,,,, +03/27/2022,9:00,QUEENS,11434,40.683655,-73.78266,"(40.683655, -73.78266)",BREWER BOULEVARD,118 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514760,Sedan,,,, +03/28/2022,22:30,BROOKLYN,11219,40.62284,-74.00121,"(40.62284, -74.00121)",OVINGTON AVENUE,14 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4514423,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/06/2021,1:32,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413912,Sedan,Sedan,,, +03/28/2022,22:50,QUEENS,11420,40.67335,-73.82582,"(40.67335, -73.82582)",133 AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514350,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,0:00,,,40.601486,-74.167305,"(40.601486, -74.167305)",,,15 PARK DRIVE NORTH,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4514425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/21/2022,19:55,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514816,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,0:30,BRONX,10456,40.831768,-73.90803,"(40.831768, -73.90803)",PARK AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4513988,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/26/2022,10:15,MANHATTAN,10031,40.82647,-73.944885,"(40.82647, -73.944885)",,,419 CONVENT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514727,Sedan,Sedan,,, +03/24/2022,7:52,BROOKLYN,11233,40.678528,-73.91525,"(40.678528, -73.91525)",,,1983 FULTON STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4514789,Sedan,Sedan,,, +03/28/2022,1:20,BROOKLYN,11226,40.64439,-73.94987,"(40.64439, -73.94987)",CORTELYOU ROAD,EAST 29 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4514066,Sedan,Sedan,,, +03/26/2022,13:50,BROOKLYN,11219,40.634136,-74.002716,"(40.634136, -74.002716)",,,1023 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514829,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,10:33,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514307,Sedan,,,, +03/28/2022,9:00,BROOKLYN,11211,40.716908,-73.95626,"(40.716908, -73.95626)",,,210 NORTH 7 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514393,Sedan,,,, +03/24/2022,16:05,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514716,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,20:15,QUEENS,11434,40.68628,-73.77701,"(40.68628, -73.77701)",170 STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4514758,Sedan,Sedan,,, +03/28/2022,8:50,BROOKLYN,11219,40.641815,-73.99582,"(40.641815, -73.99582)",44 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514371,,,,, +03/28/2022,13:06,BROOKLYN,11234,40.62564,-73.91302,"(40.62564, -73.91302)",,,1250 EAST 72 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514872,Sedan,,,, +03/28/2022,9:15,BRONX,10451,40.817738,-73.924164,"(40.817738, -73.924164)",,,234 EAST 149 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4514228,Ambulance,Ambulance,,, +03/28/2022,12:55,,,40.62916,-74.01144,"(40.62916, -74.01144)",68 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514260,Sedan,Sedan,,, +03/28/2022,20:34,,,,,,Cross Bronx expressway service r,St Lawrence,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514486,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,17:25,BRONX,10465,40.81987,-73.81987,"(40.81987, -73.81987)",CALHOUN AVENUE,SAMPSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514320,Sedan,Sedan,,, +03/28/2022,13:23,MANHATTAN,10016,40.748466,-73.97296,"(40.748466, -73.97296)",,,305 EAST 40 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514675,Sedan,Sedan,Taxi,, +03/28/2022,5:30,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4514200,Ambulance,Sedan,Sedan,, +03/28/2022,18:12,BROOKLYN,11206,40.695705,-73.94637,"(40.695705, -73.94637)",MYRTLE AVENUE,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4514432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,14:35,,,40.877106,-73.90616,"(40.877106, -73.90616)",WEST 230 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,9:30,QUEENS,11412,40.70564,-73.75048,"(40.70564, -73.75048)",FRANCIS LEWIS BOULEVARD,111 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4514246,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/28/2022,12:40,BROOKLYN,11205,40.698677,-73.95886,"(40.698677, -73.95886)",FRANKLIN AVENUE,FLUSHING AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514354,Sedan,Sedan,Box Truck,, +03/28/2022,8:25,MANHATTAN,10037,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,LENOX AVENUE,,2,1,1,1,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4514342,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/06/2021,1:20,,,,,,FDR DRIVE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4413988,Sedan,Taxi,,, +09/08/2021,20:18,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4459418,Taxi,,,, +09/20/2021,20:00,QUEENS,11373,40.74184,-73.88101,"(40.74184, -73.88101)",ELMHURST AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460040,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,16:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459995,Sedan,Tractor Truck Diesel,,, +12/10/2021,14:01,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",EAST 42 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485269,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,23:00,MANHATTAN,10030,40.816376,-73.948364,"(40.816376, -73.948364)",WEST 134 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485933,Sedan,Sedan,,, +12/10/2021,0:10,,,40.852818,-73.90476,"(40.852818, -73.90476)",EAST BURNSIDE AVENUE,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485118,Sedan,Sedan,,, +12/09/2021,20:45,QUEENS,11411,40.69654,-73.72828,"(40.69654, -73.72828)",,,115-24 231 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485220,Sedan,,,, +12/09/2021,8:30,BROOKLYN,11235,40.582497,-73.95738,"(40.582497, -73.95738)",NEPTUNE AVENUE,BRIGHTON 10 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485534,Sedan,,,, +12/07/2021,16:37,,,40.74084,-73.72681,"(40.74084, -73.72681)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485795,Sedan,,,, +12/09/2021,19:30,QUEENS,11416,40.688675,-73.84123,"(40.688675, -73.84123)",,,95-03 103 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4485470,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/09/2021,21:45,BROOKLYN,11235,40.591686,-73.94021,"(40.591686, -73.94021)",NOSTRAND AVENUE,AVENUE Y,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4485152,Station Wagon/Sport Utility Vehicle,Bike,,, +12/08/2021,22:51,QUEENS,11435,40.70197,-73.80977,"(40.70197, -73.80977)",,,145-09 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4485029,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,22:49,,,40.798443,-73.97089,"(40.798443, -73.97089)",WEST 101 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4485173,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/08/2021,13:25,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Oversized Vehicle,Failure to Yield Right-of-Way,,,,4484860,Dump,Sedan,,, +12/10/2021,0:05,QUEENS,11435,40.705784,-73.80959,"(40.705784, -73.80959)",,,147-01 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,,,,,,4485076,E-Bike,,,, +12/08/2021,7:57,BROOKLYN,11236,40.641945,-73.916626,"(40.641945, -73.916626)",FOSTER AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485079,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,7:19,BROOKLYN,11222,40.72015,-73.93783,"(40.72015, -73.93783)",RICHARDSON STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4484587,Bus,,,, +12/09/2021,9:25,BRONX,10452,40.836937,-73.927124,"(40.836937, -73.927124)",OGDEN AVENUE,WEST 167 STREET,,2,0,2,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4485140,,,,, +12/08/2021,16:49,BROOKLYN,11219,40.635525,-73.99487,"(40.635525, -73.99487)",,,5019 NEW UTRECHT AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484886,Sedan,E-Scooter,,, +12/08/2021,12:40,BROOKLYN,11210,40.623554,-73.953995,"(40.623554, -73.953995)",AVENUE K,EAST 22 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4484898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,20:20,BROOKLYN,11220,40.644337,-74.00754,"(40.644337, -74.00754)",49 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485188,Sedan,,,, +12/06/2021,12:10,,,40.762074,-73.91869,"(40.762074, -73.91869)",37 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485368,Sedan,Box Truck,,, +12/09/2021,14:24,BRONX,10458,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485113,Sedan,,,, +12/09/2021,17:10,STATEN ISLAND,10308,40.550434,-74.13608,"(40.550434, -74.13608)",AINSWORTH AVENUE,HYLAN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485205,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,17:55,QUEENS,11420,40.676025,-73.80905,"(40.676025, -73.80905)",130 STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4484817,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,13:52,MANHATTAN,10010,40.738796,-73.97716,"(40.738796, -73.97716)",1 AVENUE,EAST 26 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4484993,Taxi,Sedan,,, +12/10/2021,20:31,QUEENS,11369,40.7609,-73.87018,"(40.7609, -73.87018)",99 STREET,31 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485284,Sedan,E-Scooter,,, +12/10/2021,18:30,,,40.758022,-73.981804,"(40.758022, -73.981804)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485330,Station Wagon/Sport Utility Vehicle,Bus,,, +09/20/2021,9:14,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459245,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,22:37,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459384,Sedan,Sedan,,, +09/20/2021,3:00,,,40.680695,-74.002975,"(40.680695, -74.002975)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,,,,,4459312,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,21:00,BROOKLYN,11234,40.624813,-73.917816,"(40.624813, -73.917816)",,,2179 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459956,Sedan,,,, +09/11/2021,3:13,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4459916,Taxi,Taxi,Taxi,Sedan, +09/18/2021,21:32,BROOKLYN,11219,40.6294,-73.99949,"(40.6294, -73.99949)",,,1260 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,7:30,,,40.671825,-73.774506,"(40.671825, -73.774506)",BREWER BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459749,Sedan,,,, +09/20/2021,0:33,QUEENS,11377,40.74594,-73.90006,"(40.74594, -73.90006)",64 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4458867,Sedan,,,, +09/20/2021,20:44,BROOKLYN,11203,40.6462,-73.93175,"(40.6462, -73.93175)",BEVERLEY ROAD,EAST 48 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4459290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/24/2021,17:00,BROOKLYN,11221,40.693195,-73.92859,"(40.693195, -73.92859)",,,1150 BROADWAY,1,0,1,0,0,0,0,0,,,,,,4459968,Sedan,,,, +03/28/2022,1:40,,,40.828743,-73.843994,"(40.828743, -73.843994)",CROSS BRONX EXPRESSWAY,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514780,Sedan,,,, +09/20/2021,21:48,BROOKLYN,11217,40.68261,-73.97642,"(40.68261, -73.97642)",,,170 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459338,Sedan,MTA NYC BU,,, +09/11/2021,6:13,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459708,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,22:01,BROOKLYN,11238,40.686516,-73.9675,"(40.686516, -73.9675)",CLINTON AVENUE,GREENE AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459819,E-Bike,Sedan,,, +08/30/2021,13:47,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",FULTON STREET,RALPH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,4:20,QUEENS,11372,40.749844,-73.883385,"(40.749844, -73.883385)",83 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4459015,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,21:32,BRONX,10451,40.81419,-73.92689,"(40.81419, -73.92689)",,,341 CANAL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459349,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,16:12,BROOKLYN,11218,40.638794,-73.97075,"(40.638794, -73.97075)",EAST 8 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,15:14,QUEENS,11365,40.73332,-73.79114,"(40.73332, -73.79114)",180 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459808,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,6:40,BRONX,10465,40.82178,-73.82087,"(40.82178, -73.82087)",,,2851 DEWEY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459675,Sedan,Dump,,, +09/20/2021,5:00,BRONX,10472,40.8316,-73.87892,"(40.8316, -73.87892)",,,1300 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459047,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,9:09,BRONX,10463,40.871128,-73.90449,"(40.871128, -73.90449)",,,170 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,8:07,QUEENS,11434,40.680218,-73.775505,"(40.680218, -73.775505)",BAISLEY BOULEVARD,168 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459389,Sedan,E-Bike,,, +09/10/2021,5:01,BROOKLYN,11216,40.686577,-73.947464,"(40.686577, -73.947464)",MARCY AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459938,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,14:45,,,40.71769,-73.831406,"(40.71769, -73.831406)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,8:56,,,40.856743,-73.917625,"(40.856743, -73.917625)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4459487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/20/2021,11:30,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459539,Sedan,Sedan,,, +09/20/2021,8:45,QUEENS,11423,40.71801,-73.76514,"(40.71801, -73.76514)",,,88-15 197 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,10:45,STATEN ISLAND,10309,40.529453,-74.211006,"(40.529453, -74.211006)",DRUMGOOLE ROAD EAST,MAGUIRE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4459105,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,14:35,MANHATTAN,10036,40.757385,-73.98226,"(40.757385, -73.98226)",WEST 46 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4459832,Sedan,,,, +09/20/2021,13:01,BROOKLYN,11249,40.718666,-73.9635,"(40.718666, -73.9635)",KENT AVENUE,NORTH 4 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459864,Bike,,,, +09/17/2021,6:40,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459893,Sedan,,,, +09/20/2021,11:05,BRONX,10473,40.824028,-73.873665,"(40.824028, -73.873665)",,,1644 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459147,Sedan,,,, +09/20/2021,10:03,,,40.772045,-73.87623,"(40.772045, -73.87623)",94 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4459108,Sedan,Sedan,,, +09/09/2021,12:43,MANHATTAN,10023,,,,W 75th St,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4459787,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/20/2021,17:20,STATEN ISLAND,10306,40.56444,-74.12676,"(40.56444, -74.12676)",GUYON AVENUE,SOUTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459195,Sedan,,,, +09/20/2021,0:45,QUEENS,11373,40.73675,-73.87945,"(40.73675, -73.87945)",,,52-05 VANLOON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459078,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,23:43,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",SPRINGFIELD BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459532,Sedan,Sedan,,, +09/19/2021,1:30,,,40.639256,-73.968796,"(40.639256, -73.968796)",CONEY ISLAND AVENUE,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460055,Sedan,,,, +09/20/2021,17:00,MANHATTAN,10019,40.77099,-73.99092,"(40.77099, -73.99092)",11 AVENUE,WEST 58 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459332,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +09/20/2021,20:30,,,40.724655,-73.935585,"(40.724655, -73.935585)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459356,Sedan,Motorbike,,, +09/14/2021,15:24,BROOKLYN,11226,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,PARADE PLACE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459949,Sedan,E-Bike,,, +09/19/2021,21:45,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459996,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +09/20/2021,12:45,MANHATTAN,10011,40.73635,-73.993385,"(40.73635, -73.993385)",,,90 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459603,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,15:07,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4459432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,9:50,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459562,Sedan,Sedan,,, +09/20/2021,8:48,BROOKLYN,11239,40.649128,-73.87967,"(40.649128, -73.87967)",,,165 ELMIRA LOOP,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459097,Van,,,, +09/20/2021,10:30,,,40.75247,-73.96456,"(40.75247, -73.96456)",FDR DRIVE,EAST 49 STREET,,0,1,0,0,0,0,0,1,Lost Consciousness,,,,,4459180,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,12:51,BROOKLYN,11229,40.615364,-73.94575,"(40.615364, -73.94575)",KINGS HIGHWAY,EAST 29 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459303,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,17:30,,,40.766556,-73.96294,"(40.766556, -73.96294)",3 AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514839,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,11:04,BROOKLYN,11233,40.679073,-73.92527,"(40.679073, -73.92527)",PATCHEN AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4459899,Motorcycle,,,, +09/20/2021,10:36,,,40.878464,-73.82828,"(40.878464, -73.82828)",DREISER LOOP,COOP CITY BOULEVARD,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4459417,Station Wagon/Sport Utility Vehicle,Bike,,, +09/20/2021,1:10,MANHATTAN,10032,40.834354,-73.94096,"(40.834354, -73.94096)",,,2006 AMSTERDAM AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4459736,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,12:31,BRONX,10468,40.868797,-73.90232,"(40.868797, -73.90232)",,,2690 WEBB AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459833,Sedan,,,, +09/20/2021,13:10,QUEENS,11364,40.746243,-73.75979,"(40.746243, -73.75979)",217 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459209,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,16:49,QUEENS,11379,40.718693,-73.87414,"(40.718693, -73.87414)",,,64-17 80 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459888,Bus,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,19:53,,,40.76095,-73.832756,"(40.76095, -73.832756)",PRINCE STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459269,Motorcycle,Sedan,,, +09/10/2021,9:08,MANHATTAN,10024,40.787003,-73.97552,"(40.787003, -73.97552)",WEST 85 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,12:41,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",ATLANTIC AVENUE,104 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4459118,Sedan,,,, +09/20/2021,16:33,,,40.815205,-73.947495,"(40.815205, -73.947495)",WEST 133 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4459707,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/20/2021,16:46,MANHATTAN,10003,40.734768,-73.99064,"(40.734768, -73.99064)",,,52 EAST 14 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4459456,Bike,,,, +09/20/2021,14:00,,,40.60729,-74.14086,"(40.60729, -74.14086)",WOOLLEY AVENUE,SOUTH GANNON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459509,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,14:00,QUEENS,11385,40.69469,-73.90252,"(40.69469, -73.90252)",SUMMERFIELD AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459894,Sedan,,,, +09/19/2021,9:06,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",EAST TREMONT AVENUE,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459700,Sedan,,,, +09/20/2021,17:40,BROOKLYN,11206,40.70717,-73.94491,"(40.70717, -73.94491)",MANHATTAN AVENUE,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459320,Bike,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,13:42,BROOKLYN,11220,40.636425,-74.00501,"(40.636425, -74.00501)",56 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459754,Sedan,,,, +09/20/2021,17:54,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459350,Bus,,,, +03/28/2022,16:10,BRONX,10474,40.820503,-73.8881,"(40.820503, -73.8881)",GARRISON AVENUE,FAILE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514692,Sedan,Sedan,,, +09/20/2021,15:53,,,40.667835,-73.89484,"(40.667835, -73.89484)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459286,Bus,Box Truck,,, +09/18/2021,23:09,,,,,,Malcolm x blvd,jefferson,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4459972,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/20/2021,11:10,QUEENS,11105,40.774357,-73.908195,"(40.774357, -73.908195)",36 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459408,Sedan,,,, +09/14/2021,16:58,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4459824,Sedan,Sedan,,, +09/20/2021,16:40,BRONX,10468,40.864143,-73.89858,"(40.864143, -73.89858)",MORRIS AVENUE,EAST 191 STREET,,0,0,0,0,0,0,0,0,,,,,,4459228,,,,, +09/04/2021,7:02,QUEENS,11379,40.713806,-73.88424,"(40.713806, -73.88424)",,,66-30 71 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4459717,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/20/2021,14:25,BRONX,10458,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4459851,E-Bike,,,, +09/20/2021,22:40,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4459366,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,0:23,BROOKLYN,11212,40.656765,-73.91815,"(40.656765, -73.91815)",WILLMOHR STREET,EAST 95 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459292,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/20/2021,16:08,QUEENS,11434,40.671825,-73.774506,"(40.671825, -73.774506)",137 AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4459368,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,8:00,BROOKLYN,11229,40.594982,-73.94953,"(40.594982, -73.94953)",EAST 21 STREET,AVENUE W,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459340,Sedan,,,, +09/18/2021,14:15,QUEENS,11432,40.713055,-73.782196,"(40.713055, -73.782196)",,,180-05 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459762,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,1:45,QUEENS,11420,40.665054,-73.81581,"(40.665054, -73.81581)",,,150-17 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4458893,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,19:00,STATEN ISLAND,10310,40.62368,-74.10426,"(40.62368, -74.10426)",BARD AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4459799,Sedan,Sedan,,, +09/07/2021,1:00,BRONX,10472,40.82928,-73.87538,"(40.82928, -73.87538)",,,1603 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459883,Station Wagon/Sport Utility Vehicle,Bike,,, +09/20/2021,13:56,,,40.72802,-73.86368,"(40.72802, -73.86368)",63 DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459256,Sedan,Motorcycle,,, +09/18/2021,18:00,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459694,Sedan,Pick-up Truck,,, +09/10/2021,11:44,QUEENS,11385,40.704594,-73.90826,"(40.704594, -73.90826)",LINDEN STREET,ONDERDONK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459878,Sedan,,,, +09/15/2021,7:50,BRONX,10471,40.903957,-73.90306,"(40.903957, -73.90306)",,,5601 MOSHOLU AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459842,Station Wagon/Sport Utility Vehicle,Dump,,, +09/20/2021,16:12,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459748,Sedan,,,, +09/20/2021,3:08,QUEENS,11370,40.762276,-73.89134,"(40.762276, -73.89134)",,,25-12 77 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459018,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,21:55,,,,,,GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4459769,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,14:50,,,40.869545,-73.87972,"(40.869545, -73.87972)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459226,Sedan,Box Truck,,, +09/20/2021,12:50,BRONX,10451,40.8216,-73.91211,"(40.8216, -73.91211)",,,3103 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459345,AMBULANCE,Sedan,,, +09/14/2021,14:00,,,40.718887,-73.8416,"(40.718887, -73.8416)",AUSTIN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459810,Sedan,Box Truck,,, +09/20/2021,17:30,,,40.638966,-73.94251,"(40.638966, -73.94251)",BROOKLYN AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4459287,Sedan,Sedan,,, +09/20/2021,21:20,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459674,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,5:53,,,40.817196,-73.93637,"(40.817196, -73.93637)",CHISUM PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,3:30,,,40.73929,-73.85288,"(40.73929, -73.85288)",108 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460044,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,15:10,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459314,Taxi,,,, +09/20/2021,13:31,BROOKLYN,11238,40.685146,-73.96724,"(40.685146, -73.96724)",,,444 CLINTON AVENUE,2,0,2,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4459922,Sedan,,,, +09/19/2021,16:45,,,40.688564,-73.93019,"(40.688564, -73.93019)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4459867,Sedan,,,, +09/18/2021,19:09,MANHATTAN,10023,40.778606,-73.98163,"(40.778606, -73.98163)",WEST 72 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459790,Taxi,,,, +09/20/2021,16:28,BROOKLYN,11221,40.692562,-73.92799,"(40.692562, -73.92799)",PATCHEN AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459964,Bus,Pick-up Truck,,, +09/20/2021,8:50,QUEENS,11421,40.68981,-73.85808,"(40.68981, -73.85808)",,,88-31 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459117,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,10:25,,,40.565235,-74.181404,"(40.565235, -74.181404)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459150,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,19:45,BRONX,10461,,,,Marconi Street,Waters Place,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459439,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,19:45,,,40.68005,-73.94327,"(40.68005, -73.94327)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459858,Sedan,Ambulance,,, +09/20/2021,20:00,QUEENS,11101,40.74854,-73.94964,"(40.74854, -73.94964)",11 STREET,44 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459246,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,1:02,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",WEST 204 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4459593,Sedan,Sedan,,, +07/21/2021,0:00,BROOKLYN,11205,40.69515,-73.96248,"(40.69515, -73.96248)",,,82 EMERSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459818,PK,,,, +09/20/2021,4:21,QUEENS,11377,40.7535,-73.90492,"(40.7535, -73.90492)",NORTHERN BOULEVARD,56 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459099,,,,, +09/20/2021,14:21,QUEENS,11691,,,,,,1143 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459382,Sedan,Sedan,,, +09/20/2021,11:44,QUEENS,11377,40.741512,-73.89056,"(40.741512, -73.89056)",74 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459458,Sedan,,,, +09/20/2021,7:45,QUEENS,11428,40.723602,-73.731766,"(40.723602, -73.731766)",224 STREET,93 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459126,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,7:25,BROOKLYN,11218,40.632492,-73.97344,"(40.632492, -73.97344)",,,3915 18 AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459302,Pick-up Truck,Sedan,Sedan,, +09/17/2021,10:00,MANHATTAN,10029,40.796524,-73.94848,"(40.796524, -73.94848)",,,10 EAST 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459739,Convertible,,,, +09/13/2021,1:26,,,40.78809,-73.98271,"(40.78809, -73.98271)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4459782,Sedan,,,, +09/20/2021,15:55,MANHATTAN,10028,40.77678,-73.95124,"(40.77678, -73.95124)",,,339 EAST 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459618,Box Truck,Sedan,,, +09/13/2021,16:47,,,40.723484,-73.95165,"(40.723484, -73.95165)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460031,Sedan,,,, +09/20/2021,17:00,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459240,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,23:25,,,40.775646,-73.78627,"(40.775646, -73.78627)",26 AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4459307,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/13/2021,17:25,BROOKLYN,11233,40.678116,-73.92172,"(40.678116, -73.92172)",RALPH AVENUE,HERKIMER STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459905,Bike,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,13:44,QUEENS,11379,40.710117,-73.87514,"(40.710117, -73.87514)",,,68-46 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459897,Sedan,,,, +09/18/2021,4:00,BRONX,10463,40.884045,-73.910446,"(40.884045, -73.910446)",,,3225 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4459829,Sedan,Sedan,,, +09/20/2021,22:30,MANHATTAN,10032,40.838127,-73.946526,"(40.838127, -73.946526)",,,900 RIVERSIDE DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459728,Sedan,Sedan,,, +08/27/2021,2:50,QUEENS,11385,40.710728,-73.91863,"(40.710728, -73.91863)",TROUTMAN STREET,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459889,Sedan,,,, +09/20/2021,16:10,,,40.83238,-73.89271,"(40.83238, -73.89271)",INTERVALE AVENUE,WILKENS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459429,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,5:30,BRONX,10460,40.837482,-73.86823,"(40.837482, -73.86823)",,,1485 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459046,Taxi,,,, +09/20/2021,19:46,BROOKLYN,11236,40.646626,-73.90399,"(40.646626, -73.90399)",ROCKAWAY PARKWAY,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459556,Sedan,Motorcycle,,, +09/20/2021,16:26,MANHATTAN,10035,40.80087,-73.94098,"(40.80087, -73.94098)",,,120 EAST 119 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4459196,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/20/2021,7:15,BROOKLYN,11220,40.64759,-74.01142,"(40.64759, -74.01142)",48 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459468,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,15:20,QUEENS,11434,40.68676,-73.78449,"(40.68676, -73.78449)",BREWER BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4459388,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,21:13,,,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4459326,Sedan,,,, +09/20/2021,18:25,MANHATTAN,10013,40.72433,-74.0094,"(40.72433, -74.0094)",,,474 GREENWICH STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4459904,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,15:50,,,40.78818,-73.98287,"(40.78818, -73.98287)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459786,,,,, +09/20/2021,20:15,BROOKLYN,11222,40.727097,-73.95269,"(40.727097, -73.95269)",MESEROLE AVENUE,MANHATTAN AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4459354,Motorbike,Sedan,,, +09/20/2021,15:20,,,40.83923,-73.94555,"(40.83923, -73.94555)",RIVERSIDE DRIVE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4459731,Sedan,Sedan,,, +09/10/2021,0:43,BROOKLYN,11216,40.685112,-73.94717,"(40.685112, -73.94717)",MARCY AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459937,Station Wagon/Sport Utility Vehicle,Bus,,, +09/20/2021,19:30,,,40.622086,-74.02865,"(40.622086, -74.02865)",87 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459266,Bus,Sedan,,, +09/20/2021,16:38,MANHATTAN,10027,40.817047,-73.96078,"(40.817047, -73.96078)",,,560 RIVERSIDE DRIVE,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4459595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,17:15,,,40.848396,-73.90605,"(40.848396, -73.90605)",MONROE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459702,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/20/2021,15:50,QUEENS,11426,40.726837,-73.71356,"(40.726837, -73.71356)",,,251-21 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459306,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,16:40,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4459481,Sedan,Convertible,,, +09/20/2021,7:18,BRONX,10473,40.821926,-73.853065,"(40.821926, -73.853065)",,,2066 VIRGIL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459076,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,14:00,BROOKLYN,11235,40.57563,-73.96395,"(40.57563, -73.96395)",BRIGHTWATER COURT,BRIGHTON 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459361,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,10:00,QUEENS,11423,40.708405,-73.7679,"(40.708405, -73.7679)",FARMERS BOULEVARD,HENDERSON AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing or Lane Usage Improper,Unspecified,,,4459162,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/20/2021,12:04,BROOKLYN,11219,40.641815,-73.99582,"(40.641815, -73.99582)",44 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460054,Sedan,Flat Bed,,, +09/20/2021,7:47,,,40.873695,-73.824394,"(40.873695, -73.824394)",COOP CITY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,7:27,,,40.72837,-73.87114,"(40.72837, -73.87114)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459255,Station Wagon/Sport Utility Vehicle,Moped,,, +09/20/2021,15:30,,,40.715443,-73.95185,"(40.715443, -73.95185)",MEEKER AVENUE,UNION AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459359,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,14:55,BROOKLYN,11226,40.646126,-73.959206,"(40.646126, -73.959206)",REGENT PLACE,EAST 21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459946,Sedan,Sedan,,, +09/20/2021,20:30,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459753,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,16:10,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,18:36,BROOKLYN,11230,40.617382,-73.965744,"(40.617382, -73.965744)",AVENUE M,EAST 9 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,0:00,QUEENS,11420,40.666573,-73.82016,"(40.666573, -73.82016)",121 STREET,150 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4458901,Sedan,Sedan,,, +09/08/2021,5:35,BRONX,10462,40.831924,-73.85104,"(40.831924, -73.85104)",CASTLE HILL AVENUE,GLEASON AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4459800,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/20/2021,15:00,MANHATTAN,10029,40.790543,-73.94437,"(40.790543, -73.94437)",,,230 EAST 105 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460018,Bus,Sedan,,, +09/17/2021,13:25,MANHATTAN,10014,40.73226,-74.003586,"(40.73226, -74.003586)",7 AVENUE SOUTH,BLEECKER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459691,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,12:43,BRONX,10472,40.83022,-73.86371,"(40.83022, -73.86371)",,,1846 GLEASON AVENUE,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4459882,Sedan,Sedan,,, +09/19/2021,2:25,,,40.684734,-73.950455,"(40.684734, -73.950455)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459859,Sedan,Sedan,,, +09/20/2021,20:25,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Outside Car Distraction,,,,4459460,Sedan,E-Bike,,, +09/20/2021,9:06,QUEENS,11436,40.683594,-73.80345,"(40.683594, -73.80345)",LINDEN BOULEVARD,140 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4459124,Bus,Sedan,,, +09/20/2021,8:04,BROOKLYN,11213,40.66952,-73.94456,"(40.66952, -73.94456)",,,706 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459127,Sedan,Sedan,,, +09/20/2021,21:00,BROOKLYN,11208,40.677296,-73.87682,"(40.677296, -73.87682)",LIBERTY AVENUE,LOGAN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459410,Sedan,E-Bike,,, +09/18/2021,18:45,STATEN ISLAND,10301,40.623055,-74.11327,"(40.623055, -74.11327)",BROADWAY,CLOVE ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459798,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,10:10,QUEENS,11365,40.734795,-73.80115,"(40.734795, -73.80115)",168 STREET,67 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4459178,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,12:00,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,VERMONT PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459440,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,16:08,,,,,,238 street,major deegan,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4459823,Sedan,Pick-up Truck,Sedan,, +09/20/2021,9:20,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459238,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/20/2021,17:15,,,40.58839,-74.16793,"(40.58839, -74.16793)",,,2465 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459511,Sedan,,,, +09/11/2021,21:45,,,40.689022,-73.93925,"(40.689022, -73.93925)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4459856,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,7:40,BROOKLYN,11207,40.66478,-73.8939,"(40.66478, -73.8939)",,,625 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4459090,Sedan,3-Door,,, +09/20/2021,23:00,BRONX,10466,40.903996,-73.84214,"(40.903996, -73.84214)",,,950 CRANFORD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4459414,Sedan,Sedan,Taxi,Sedan, +09/20/2021,9:43,BROOKLYN,11231,40.68748,-74.00054,"(40.68748, -74.00054)",TIFFANY PLACE,KANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,7:58,BROOKLYN,11217,40.689735,-73.97611,"(40.689735, -73.97611)",DE KALB AVENUE,SOUTH ELLIOTT PLACE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4459588,Bike,Sedan,,, +09/20/2021,7:45,,,40.640625,-74.014984,"(40.640625, -74.014984)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459101,Delivery,,,, +09/20/2021,8:49,MANHATTAN,10022,40.75582,-73.970764,"(40.75582, -73.970764)",3 AVENUE,EAST 50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459177,Convertible,Flat Bed,,, +09/18/2021,16:28,,,40.878,-73.90408,"(40.878, -73.90408)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459830,Sedan,Sedan,,, +09/19/2021,17:40,,,40.874638,-73.909744,"(40.874638, -73.909744)",BROADWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459837,Sedan,,,, +09/20/2021,4:30,BRONX,10468,40.870316,-73.90269,"(40.870316, -73.90269)",,,2603 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459224,Sedan,Sedan,,, +09/20/2021,17:46,,,,,,EAST 161 STREET,MACOMBS DAM BRIDGE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459347,Motorbike,,,, +09/13/2021,17:05,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4459825,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck, +09/04/2021,22:40,,,40.707394,-73.92418,"(40.707394, -73.92418)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459689,Sedan,Sedan,Sedan,, +09/20/2021,21:30,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459789,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,1:45,QUEENS,11358,40.757755,-73.79304,"(40.757755, -73.79304)",NORTHERN BOULEVARD,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459116,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,19:33,QUEENS,11101,40.73781,-73.929245,"(40.73781, -73.929245)",37 STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459247,Bike,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,9:20,,,40.640392,-74.131516,"(40.640392, -74.131516)",PORT RICHMOND AVENUE,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459075,Sedan,Sedan,,, +09/20/2021,8:34,BROOKLYN,11201,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459201,Van,Sedan,,, +09/11/2021,14:00,BRONX,10472,40.834137,-73.8658,"(40.834137, -73.8658)",MCGRAW AVENUE,TAYLOR AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4459884,E-Bike,,,, +09/20/2021,15:12,BROOKLYN,11217,40.675873,-73.97498,"(40.675873, -73.97498)",,,168 LINCOLN PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459396,Box Truck,Sedan,,, +09/20/2021,10:45,QUEENS,11377,40.74594,-73.90006,"(40.74594, -73.90006)",ROOSEVELT AVENUE,64 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459185,Bike,Sedan,,, +09/17/2021,18:13,,,40.751896,-73.79221,"(40.751896, -73.79221)",UTOPIA PARKWAY,BAGLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,12:41,BROOKLYN,11219,40.63837,-73.997665,"(40.63837, -73.997665)",FORT HAMILTON PARKWAY,49 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459752,Sedan,,,, +09/20/2021,17:00,,,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459512,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,15:45,,,40.69149,-73.92557,"(40.69149, -73.92557)",GREENE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459965,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,17:00,,,40.678303,-73.87289,"(40.678303, -73.87289)",CONDUIT BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4459288,Sedan,Sedan,Sedan,, +09/20/2021,2:22,,,40.855595,-73.92733,"(40.855595, -73.92733)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/20/2021,15:00,QUEENS,11434,40.661118,-73.770706,"(40.661118, -73.770706)",,,175-14 147 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459553,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,9:30,MANHATTAN,10035,40.79913,-73.94076,"(40.79913, -73.94076)",,,156 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459478,Bus,Sedan,,, +09/20/2021,20:11,,,40.69749,-73.92008,"(40.69749, -73.92008)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459335,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,9:25,MANHATTAN,10026,40.800663,-73.946465,"(40.800663, -73.946465)",WEST 116 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4459711,Bus,Sedan,,, +09/20/2021,22:24,STATEN ISLAND,10310,40.643158,-74.11252,"(40.643158, -74.11252)",RICHMOND TERRACE,PELTON PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4459815,E-Bike,,,, +09/20/2021,15:10,BROOKLYN,11207,40.669926,-73.89149,"(40.669926, -73.89149)",SUTTER AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Turning Improperly,,,,4459280,Motorcycle,Sedan,,, +09/02/2021,17:20,BRONX,10465,40.822407,-73.8364,"(40.822407, -73.8364)",HUTCHINSON RIVER PARKWAY,WENNER PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4459743,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,7:15,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460035,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,17:35,,,40.66173,-73.96078,"(40.66173, -73.96078)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459264,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,9:05,QUEENS,11373,40.745785,-73.889336,"(40.745785, -73.889336)",76 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459035,Sedan,Pick-up Truck,,, +09/17/2021,23:30,BROOKLYN,11218,40.641388,-73.989075,"(40.641388, -73.989075)",12 AVENUE,40 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459766,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,13:00,,,40.705444,-73.867775,"(40.705444, -73.867775)",81 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,13:15,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Traffic Control Disregarded,,,,4459151,Sedan,Bike,,, +09/20/2021,19:30,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459309,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,12:20,QUEENS,11103,,,,46 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459868,Sedan,,,, +09/20/2021,14:55,,,40.609116,-74.15714,"(40.609116, -74.15714)",,,141 MORANI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459811,Sedan,Sedan,,, +09/20/2021,22:49,MANHATTAN,10012,40.723843,-73.99636,"(40.723843, -73.99636)",,,270 LAFAYETTE STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4459696,Sedan,Sedan,,, +09/20/2021,16:44,MANHATTAN,10002,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,PITT STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Other Vehicular,,,,4459951,Sedan,Sedan,,, +09/19/2021,0:43,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4460049,Sedan,Sedan,Sedan,Sedan,Sedan +09/20/2021,17:00,BROOKLYN,11231,40.67932,-73.992714,"(40.67932, -73.992714)",,,353 HOYT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459315,Pick-up Truck,,,, +08/18/2021,19:49,QUEENS,11385,40.71009,-73.91453,"(40.71009, -73.91453)",WOODWARD AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459896,Sedan,Sedan,,, +09/20/2021,11:43,BROOKLYN,11228,40.61493,-74.00471,"(40.61493, -74.00471)",,,1524 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,12:44,MANHATTAN,10030,40.82032,-73.93804,"(40.82032, -73.93804)",,,112 WEST 144 STREET,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4459703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,17:51,BROOKLYN,11210,40.624073,-73.94928,"(40.624073, -73.94928)",EAST 27 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459301,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,16:25,QUEENS,11372,40.755657,-73.884445,"(40.755657, -73.884445)",83 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459241,Sedan,,,, +09/20/2021,12:17,MANHATTAN,10014,40.733147,-74.00587,"(40.733147, -74.00587)",CHRISTOPHER STREET,BEDFORD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4459757,Box Truck,,,, +09/11/2021,23:20,QUEENS,11385,40.709305,-73.907005,"(40.709305, -73.907005)",GRANDVIEW AVENUE,BLEECKER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459781,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,0:00,BROOKLYN,11233,40.682446,-73.911674,"(40.682446, -73.911674)",ROCKAWAY AVENUE,CHAUNCEY STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459428,Sedan,Sedan,,, +09/20/2021,17:00,BRONX,10455,40.814144,-73.919205,"(40.814144, -73.919205)",WILLIS AVENUE,EAST 146 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459630,E-Bike,,,, +09/20/2021,21:30,,,40.770412,-73.987625,"(40.770412, -73.987625)",10 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459324,Box Truck,Sedan,,, +09/15/2021,22:00,BROOKLYN,11221,40.69217,-73.93149,"(40.69217, -73.93149)",,,1019 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459906,Sedan,,,, +09/20/2021,20:01,,,40.58379,-73.98282,"(40.58379, -73.98282)",STILLWELL AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4459362,Sedan,freight To,,, +09/01/2021,17:38,BROOKLYN,11205,40.698,-73.97479,"(40.698, -73.97479)",FLUSHING AVENUE,CUMBERLAND STREET,,1,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4459822,Sedan,E-Bike,,, +09/13/2021,9:57,,,40.674747,-73.9417,"(40.674747, -73.9417)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459722,Station Wagon/Sport Utility Vehicle,Bus,,, +09/20/2021,23:20,QUEENS,11418,40.697205,-73.81334,"(40.697205, -73.81334)",VANWYCK EXPRESSWAY,94 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459872,Pick-up Truck,,,, +09/20/2021,15:50,MANHATTAN,10029,40.79672,-73.94499,"(40.79672, -73.94499)",,,65 EAST 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459372,PK,Sedan,,, +09/13/2021,4:30,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459860,Sedan,Sedan,,, +09/14/2021,12:15,BRONX,10462,40.849373,-73.86317,"(40.849373, -73.86317)",,,1957 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459734,Sedan,,,, +09/20/2021,4:20,,,40.72936,-73.92856,"(40.72936, -73.92856)",LAUREL HILL BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4458960,,,,, +09/15/2021,15:57,MANHATTAN,10023,40.779804,-73.98448,"(40.779804, -73.98448)",WEST END AVENUE,WEST 72 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459801,Station Wagon/Sport Utility Vehicle,Bus,,, +09/15/2021,10:30,BROOKLYN,11230,40.625973,-73.97624,"(40.625973, -73.97624)",MC DONALD AVENUE,AVENUE I,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4459760,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/20/2021,20:15,,,40.749825,-73.972206,"(40.749825, -73.972206)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4459276,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,15:50,,,,,,3 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459461,Sedan,,,, +09/20/2021,9:40,QUEENS,11428,40.71463,-73.751335,"(40.71463, -73.751335)",JAMAICA AVENUE,209 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4459128,Van,Sedan,,, +09/20/2021,7:00,QUEENS,11237,40.693703,-73.90505,"(40.693703, -73.90505)",IRVING AVENUE,COVERT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459445,Flat Bed,,,, +09/20/2021,13:35,QUEENS,11385,40.70688,-73.90831,"(40.70688, -73.90831)",,,1911 MENAHAN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459785,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,8:15,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4459698,Bus,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,12:00,BROOKLYN,11207,40.69212,-73.90661,"(40.69212, -73.90661)",KNICKERBOCKER AVENUE,COVERT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459334,Sedan,,,, +07/07/2021,22:50,BROOKLYN,11226,40.644615,-73.962166,"(40.644615, -73.962166)",BEVERLEY ROAD,EAST 18 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459945,Sedan,Bike,,, +09/20/2021,13:49,MANHATTAN,10029,40.794178,-73.95118,"(40.794178, -73.95118)",,,1249 5 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459353,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,16:40,BROOKLYN,11215,40.660576,-73.99065,"(40.660576, -73.99065)",6 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459994,Sedan,Carry All,,, +09/20/2021,19:17,,,40.63432,-74.13587,"(40.63432, -74.13587)",,,297 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459598,Sedan,Sedan,,, +03/28/2022,14:20,QUEENS,11357,40.785927,-73.818405,"(40.785927, -73.818405)",147 STREET,15 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,15:30,,,40.710346,-73.76904,"(40.710346, -73.76904)",190 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459184,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,19:36,,,40.68005,-73.94327,"(40.68005, -73.94327)",FULTON STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4459855,Sedan,Sedan,,, +09/20/2021,8:05,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459095,Van,Sedan,,, +03/28/2022,16:45,QUEENS,11361,40.761246,-73.76294,"(40.761246, -73.76294)",NORTHERN BOULEVARD,219 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514362,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/20/2021,21:15,MANHATTAN,10016,40.744305,-73.974785,"(40.744305, -73.974785)",,,326 EAST 34 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459415,Sedan,Sedan,,, +09/19/2021,22:30,BROOKLYN,11221,40.68716,-73.93588,"(40.68716, -73.93588)",LEWIS AVENUE,MONROE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459903,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,17:30,STATEN ISLAND,10304,40.613586,-74.08267,"(40.613586, -74.08267)",PARK HILL AVENUE,SOBEL COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459797,Sedan,,,, +09/20/2021,20:00,QUEENS,11378,40.726624,-73.906456,"(40.726624, -73.906456)",55 ROAD,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459881,Sedan,DELIVERY T,,, +09/20/2021,16:30,,,40.71906,-73.812126,"(40.71906, -73.812126)",150 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459186,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/20/2021,15:49,BROOKLYN,11236,40.632954,-73.90416,"(40.632954, -73.90416)",AVENUE L,EAST 85 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459242,Sedan,Sedan,,, +09/20/2021,17:33,BROOKLYN,11211,40.715145,-73.958466,"(40.715145, -73.958466)",,,633 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459644,Sedan,,,, +09/20/2021,10:31,BROOKLYN,11208,40.674404,-73.86976,"(40.674404, -73.86976)",CRESCENT STREET,BELMONT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4459498,Sedan,Sedan,,, +09/20/2021,11:07,QUEENS,11378,40.723736,-73.901215,"(40.723736, -73.901215)",,,64-30 PERRY AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459521,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/17/2021,13:55,,,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459907,Bike,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,1:00,BROOKLYN,11239,,,,,,1275 Delmar loop,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,8:45,BROOKLYN,11218,40.64122,-73.9833,"(40.64122, -73.9833)",CHURCH AVENUE,OLD NEW UTRECHT ROAD,,6,0,0,0,0,0,6,0,Traffic Control Disregarded,Unspecified,,,,4460053,Taxi,Motorcycle,,, +09/20/2021,8:56,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459358,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,12:54,BROOKLYN,11206,40.69645,-73.946495,"(40.69645, -73.946495)",TOMPKINS AVENUE,STOCKTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459936,Sedan,Ambulance,,, +09/19/2021,22:20,,,40.667076,-73.99508,"(40.667076, -73.99508)",3 AVENUE,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460000,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,13:00,QUEENS,11434,40.657772,-73.76883,"(40.657772, -73.76883)",,,149-15 177 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459123,Pick-up Truck,Sedan,,, +09/16/2021,20:06,QUEENS,11423,40.720016,-73.77598,"(40.720016, -73.77598)",,,86-16 188 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4459931,Sedan,,,, +09/20/2021,15:30,BRONX,10470,40.904552,-73.847824,"(40.904552, -73.847824)",PENFIELD STREET,BARNES AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459423,Sedan,E-Scooter,,, +09/20/2021,4:30,QUEENS,11368,40.741432,-73.86677,"(40.741432, -73.86677)",,,50-11 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459070,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/20/2021,11:45,,,40.736732,-73.85451,"(40.736732, -73.85451)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459253,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,22:52,QUEENS,11427,40.730278,-73.74399,"(40.730278, -73.74399)",BRADDOCK AVENUE,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459491,Sedan,Sedan,,, +09/03/2021,12:00,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4459885,Sedan,Sedan,,, +09/20/2021,16:00,,,40.849167,-73.92393,"(40.849167, -73.92393)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4459391,Sedan,Sedan,,, +09/20/2021,12:00,QUEENS,11370,40.758743,-73.89069,"(40.758743, -73.89069)",77 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inattention/Distraction,,,,4459165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,23:42,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",4 AVENUE,39 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4459772,Sedan,Sedan,,, +09/20/2021,12:41,MANHATTAN,10029,40.793488,-73.94328,"(40.793488, -73.94328)",EAST 109 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459744,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,9:34,,,,,,BROOKLYN BATTERY TUNNEL,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4459310,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/20/2021,12:20,BRONX,10456,40.827557,-73.914764,"(40.827557, -73.914764)",EAST 164 STREET,TELLER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460038,Sedan,Sedan,,, +05/03/2021,14:00,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414352,Sedan,,,, +09/20/2021,19:09,BROOKLYN,11207,40.6635,-73.89569,"(40.6635, -73.89569)",,,530 GEORGIA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4459289,Sedan,,,, +09/20/2021,12:20,BRONX,10460,40.845875,-73.88619,"(40.845875, -73.88619)",,,2055 MAPES AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459678,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,17:30,BRONX,10453,40.851185,-73.92152,"(40.851185, -73.92152)",,,1750 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4459709,Sedan,Sedan,,, +09/20/2021,8:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,2:12,,,40.69193,-73.91031,"(40.69193, -73.91031)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460051,Sedan,,,, +09/12/2021,6:30,QUEENS,11385,40.712875,-73.90519,"(40.712875, -73.90519)",,,60-07 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459892,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,8:10,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",PARSONS BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459159,Flat Bed,Bus,,, +09/20/2021,15:35,BROOKLYN,11210,40.619606,-73.945526,"(40.619606, -73.945526)",NOSTRAND AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459869,Sedan,Bus,,, +09/20/2021,12:25,QUEENS,11434,40.65771,-73.76757,"(40.65771, -73.76757)",BREWER BOULEVARD,149 ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4459114,Sedan,Sedan,,, +09/06/2021,1:55,QUEENS,11385,40.702732,-73.85535,"(40.702732, -73.85535)",,,82-48 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4459788,Box Truck,,,, +09/20/2021,13:30,BRONX,10460,40.840042,-73.863945,"(40.840042, -73.863945)",GUERLAIN STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459435,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,12:25,BROOKLYN,11233,40.676857,-73.92013,"(40.676857, -73.92013)",ATLANTIC AVENUE,BANCROFT PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4459966,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,15:00,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459542,Sedan,Bike,,, +09/20/2021,9:25,,,40.574413,-74.115524,"(40.574413, -74.115524)",SOUTH RAILROAD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,14:50,BROOKLYN,11215,40.66374,-73.97852,"(40.66374, -73.97852)",,,637 11 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4459337,Box Truck,Box Truck,,, +09/20/2021,8:20,MANHATTAN,10035,40.800793,-73.93492,"(40.800793, -73.93492)",EAST 122 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459475,Sedan,E-Bike,,, +09/20/2021,19:45,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4459385,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/20/2021,8:20,BROOKLYN,11209,40.631084,-74.03812,"(40.631084, -74.03812)",,,16 79 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459104,Sedan,Sedan,,, +09/20/2021,8:00,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,19:00,BROOKLYN,11234,40.617752,-73.934074,"(40.617752, -73.934074)",,,1653 COLEMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459259,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,14:42,MANHATTAN,10001,40.74816,-73.9927,"(40.74816, -73.9927)",,,350 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459835,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,4:30,BRONX,10455,40.820686,-73.91514,"(40.820686, -73.91514)",,,410 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459348,Taxi,,,, +09/20/2021,16:30,STATEN ISLAND,10306,40.57296,-74.1065,"(40.57296, -74.1065)",,,343 OTIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459220,Sedan,PK,,, +08/26/2021,14:07,MANHATTAN,10003,40.72958,-73.99327,"(40.72958, -73.99327)",WAVERLY PLACE,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459750,Box Truck,,,, +09/19/2021,18:01,BROOKLYN,11233,40.683067,-73.91181,"(40.683067, -73.91181)",,,18 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459767,Sedan,,,, +03/17/2022,20:08,,,40.82663,-73.9543,"(40.82663, -73.9543)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4514770,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/20/2021,0:46,STATEN ISLAND,10304,40.619743,-74.085915,"(40.619743, -74.085915)",,,803 VANDUZER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4459812,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/17/2021,8:45,MANHATTAN,10002,40.721107,-73.98499,"(40.721107, -73.98499)",,,180 SUFFOLK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459952,Sedan,,,, +09/20/2021,17:20,BROOKLYN,11203,40.65565,-73.93082,"(40.65565, -73.93082)",,,726 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459281,Sedan,Bus,,, +09/12/2021,8:00,MANHATTAN,10039,40.82574,-73.93705,"(40.82574, -73.93705)",,,208 WEST 151 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459704,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,19:20,BRONX,10468,40.87023,-73.90061,"(40.87023, -73.90061)",CLAFLIN AVENUE,WEST 195 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459831,Sedan,Bike,,, +09/20/2021,9:40,BRONX,10469,40.876015,-73.85151,"(40.876015, -73.85151)",,,1181 EAST 214 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459416,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,4:10,,,40.693497,-73.94594,"(40.693497, -73.94594)",HART STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459862,Sedan,Sedan,,, +09/17/2021,17:40,BROOKLYN,11219,40.62368,-73.99772,"(40.62368, -73.99772)",NEW UTRECHT AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459886,Motorcycle,Sedan,,, +09/20/2021,12:30,,,40.68251,-73.976326,"(40.68251, -73.976326)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4459130,Sedan,Sedan,,, +09/20/2021,15:20,BROOKLYN,11232,40.66874,-73.99668,"(40.66874, -73.99668)",HAMILTON AVENUE,2 AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4459465,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,18:00,,,,,,REON AVENUE,NARROWS ROAD NORTH,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459796,Sedan,Taxi,,, +09/20/2021,16:50,QUEENS,11103,40.75962,-73.92041,"(40.75962, -73.92041)",,,37-14 BROADWAY,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459407,TANK,Taxi,,, +09/20/2021,10:30,MANHATTAN,10013,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,MULBERRY STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4459120,Sedan,Tractor Truck Diesel,,, +09/20/2021,0:35,BROOKLYN,11210,40.619816,-73.943596,"(40.619816, -73.943596)",AVENUE M,EAST 32 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459193,Sedan,,,, +09/20/2021,9:17,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459572,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,22:38,,,40.663605,-73.934395,"(40.663605, -73.934395)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459524,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,9:04,,,40.64844,-73.88242,"(40.64844, -73.88242)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459096,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,1:23,STATEN ISLAND,10310,,,,NORTH BURGHER AVENUE,SKINNER LANE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4459814,Sedan,Sedan,Sedan,, +07/15/2021,0:00,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4437386,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/12/2021,19:20,QUEENS,11377,40.74539,-73.90559,"(40.74539, -73.90559)",WOODSIDE AVENUE,59 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459871,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,9:14,,,,,,EAST TREMONT AVENUE,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4459699,Sedan,,,, +08/06/2021,23:15,BROOKLYN,11233,40.68234,-73.92261,"(40.68234, -73.92261)",,,213 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459901,Bus,Sedan,,, +09/20/2021,19:50,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",NORTH CONDUIT AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459321,Tractor Truck Diesel,PK,,, +09/18/2021,21:52,MANHATTAN,10036,40.76037,-73.98542,"(40.76037, -73.98542)",,,219 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459755,Sedan,Sedan,,, +09/20/2021,11:32,BROOKLYN,11212,40.664833,-73.92026,"(40.664833, -73.92026)",,,104 TAPSCOTT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459761,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,6:21,QUEENS,11433,40.688778,-73.786446,"(40.688778, -73.786446)",LINDEN BOULEVARD,DILLON STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4458999,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,4:00,BRONX,10468,40.860775,-73.91072,"(40.860775, -73.91072)",,,2233 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459853,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,10:39,,,40.583412,-73.9713,"(40.583412, -73.9713)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459357,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,0:30,QUEENS,11691,40.6031,-73.75076,"(40.6031, -73.75076)",,,18-31 MOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,14:00,MANHATTAN,10002,40.716393,-73.98454,"(40.716393, -73.98454)",BROOME STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459944,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,4:18,QUEENS,11430,40.665245,-73.80204,"(40.665245, -73.80204)",NASSAU EXPRESSWAY,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4459805,Sedan,,,, +09/18/2021,21:53,,,,,,GOWANUS EXPRESSWAY,PROSPECT EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459997,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,7:45,,,40.700104,-73.94726,"(40.700104, -73.94726)",TOMPKINS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459272,Pick-up Truck,,,, +09/20/2021,23:43,BROOKLYN,11210,40.6231,-73.946175,"(40.6231, -73.946175)",,,2525 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459602,Sedan,,,, +09/20/2021,13:55,BROOKLYN,11210,40.623554,-73.953995,"(40.623554, -73.953995)",AVENUE K,EAST 22 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4459304,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/17/2021,21:38,BROOKLYN,11238,40.68821,-73.96583,"(40.68821, -73.96583)",LAFAYETTE AVENUE,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,,,,4459827,Sedan,Bike,,, +09/20/2021,4:00,BROOKLYN,11209,40.63324,-74.02898,"(40.63324, -74.02898)",,,230 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459910,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,5:13,QUEENS,11434,40.68818,-73.78869,"(40.68818, -73.78869)",159 STREET,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Passing or Lane Usage Improper,,,,4459363,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,5:50,MANHATTAN,10016,40.746403,-73.97973,"(40.746403, -73.97973)",EAST 34 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459181,Sedan,Sedan,Box Truck,, +09/20/2021,7:40,,,40.84023,-73.880104,"(40.84023, -73.880104)",EAST TREMONT AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459086,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/20/2021,14:20,,,40.73803,-73.7949,"(40.73803, -73.7949)",174 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459453,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,16:33,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4459653,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,10:20,,,40.753006,-73.8326,"(40.753006, -73.8326)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459244,Sedan,,,, +09/20/2021,12:40,MANHATTAN,10018,40.753906,-73.99357,"(40.753906, -73.99357)",,,330 WEST 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459232,,,,, +09/20/2021,13:48,,,40.630486,-74.14595,"(40.630486, -74.14595)",MARTIN LUTHER KING JR,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459508,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,14:05,BROOKLYN,11238,40.683414,-73.966545,"(40.683414, -73.966545)",,,915 FULTON STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459820,Moped,Moped,,, +09/20/2021,12:30,MANHATTAN,10017,40.75148,-73.97617,"(40.75148, -73.97617)",,,120 EAST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460052,Station Wagon/Sport Utility Vehicle,Dump,,, +09/20/2021,9:20,,,40.685028,-73.94135,"(40.685028, -73.94135)",THROOP AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459296,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,10:10,BROOKLYN,11237,40.694687,-73.91112,"(40.694687, -73.91112)",KNICKERBOCKER AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459333,Tractor Truck Diesel,Box Truck,,, +09/15/2021,20:50,QUEENS,11385,40.700493,-73.90142,"(40.700493, -73.90142)",CENTRE STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459784,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,16:58,QUEENS,11379,40.721714,-73.88633,"(40.721714, -73.88633)",,,72-01 ELIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459735,Sedan,,,, +09/19/2021,18:45,BROOKLYN,11221,40.68603,-73.93268,"(40.68603, -73.93268)",STUYVESANT AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459895,Sedan,E-Bike,,, +09/14/2021,7:55,,,,,,YELLOWSTONE BOULEVARD,ALDERTON STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459933,Station Wagon/Sport Utility Vehicle,Bike,,, +09/20/2021,16:55,BRONX,10454,40.812893,-73.92013,"(40.812893, -73.92013)",EAST 144 STREET,WILLIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459351,Sedan,Sedan,,, +09/20/2021,19:22,BROOKLYN,11205,40.697884,-73.97182,"(40.697884, -73.97182)",FLUSHING AVENUE,CLERMONT AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459984,Taxi,E-Bike,,, +09/20/2021,22:30,QUEENS,11368,40.745266,-73.85596,"(40.745266, -73.85596)",108 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459282,Sedan,Sedan,,, +09/14/2021,15:40,BRONX,10472,40.832912,-73.87638,"(40.832912, -73.87638)",,,1349 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459880,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,1:00,MANHATTAN,10039,40.824757,-73.94052,"(40.824757, -73.94052)",WEST 148 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459706,Sedan,Sedan,,, +05/06/2021,23:45,QUEENS,11354,,,,,,124-16 31 AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4414510,Sedan,,,, +08/31/2021,23:20,,,40.699436,-73.91229,"(40.699436, -73.91229)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459721,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,2:48,BRONX,10452,40.84126,-73.92805,"(40.84126, -73.92805)",DEPOT PLACE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460039,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,7:00,BRONX,10459,40.82385,-73.88862,"(40.82385, -73.88862)",,,1017 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459746,Sedan,,,, +09/20/2021,18:00,,,40.678253,-74.00273,"(40.678253, -74.00273)",HAMILTON AVENUE,HENRY STREET,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4459311,Station Wagon/Sport Utility Vehicle,,,, +12/02/2021,10:00,BRONX,10456,40.81872,-73.9035,"(40.81872, -73.9035)",UNION AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485888,Sedan,,,, +12/07/2021,14:50,QUEENS,11368,40.740192,-73.85335,"(40.740192, -73.85335)",108 STREET,VANDOREN STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485632,Bus,E-Bike,,, +12/04/2021,8:30,BRONX,10465,40.85099,-73.82743,"(40.85099, -73.82743)",SANDS PLACE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485247,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/03/2021,15:14,QUEENS,11692,40.59307,-73.79233,"(40.59307, -73.79233)",BEACH 63 STREET,BEACH CHANNEL DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,19:55,,,40.687782,-73.91907,"(40.687782, -73.91907)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,13:06,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4485697,Taxi,Bike,,, +12/09/2021,15:10,MANHATTAN,10034,40.863163,-73.91988,"(40.863163, -73.91988)",10 AVENUE,WEST 205 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485752,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,16:30,BROOKLYN,11222,40.725243,-73.94631,"(40.725243, -73.94631)",,,170 NASSAU AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4484839,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/09/2021,11:21,QUEENS,11360,40.778282,-73.77728,"(40.778282, -73.77728)",,,212-45 26 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4485129,Pick-up Truck,,,, +12/10/2021,19:30,QUEENS,11354,40.764988,-73.82067,"(40.764988, -73.82067)",146 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485262,Sedan,,,, +12/06/2021,2:50,,,40.864525,-73.92663,"(40.864525, -73.92663)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4485242,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/10/2021,10:30,BROOKLYN,11236,40.654377,-73.90684,"(40.654377, -73.90684)",,,1022 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485568,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,18:55,BROOKLYN,11214,40.612026,-73.99414,"(40.612026, -73.99414)",,,7514 19 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,9:15,,,,,,FDR DRIVE RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4485805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/10/2021,5:46,BRONX,10474,40.813786,-73.89132,"(40.813786, -73.89132)",,,1191 SPOFFORD AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4485318,Bus,,,, +12/09/2021,16:30,MANHATTAN,10016,40.743942,-73.983635,"(40.743942, -73.983635)",EAST 29 STREET,PARK AVENUE SOUTH,,1,0,0,0,0,0,1,0,Unspecified,,,,,4485179,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,14:20,MANHATTAN,10029,40.790684,-73.94666,"(40.790684, -73.94666)",,,166 EAST 104 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485495,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,21:50,QUEENS,11413,40.671947,-73.74191,"(40.671947, -73.74191)",,,137-25 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4485274,Sedan,Sedan,,, +12/09/2021,13:30,,,40.574802,-73.97353,"(40.574802, -73.97353)",SURF AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4485525,Sedan,,,, +12/10/2021,2:01,QUEENS,11434,40.685642,-73.764404,"(40.685642, -73.764404)",120 AVENUE,179 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4485396,Sedan,Sedan,,, +12/10/2021,12:20,QUEENS,11434,40.67544,-73.78086,"(40.67544, -73.78086)",160 STREET,129 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4485599,Sedan,Sedan,Sedan,, +12/10/2021,3:45,BROOKLYN,11221,40.697712,-73.929405,"(40.697712, -73.929405)",EVERGREEN AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4485311,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/09/2021,18:00,,,40.849144,-73.93548,"(40.849144, -73.93548)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4485756,Sedan,Tractor Truck Diesel,,, +03/28/2022,13:09,BRONX,10462,40.833443,-73.858864,"(40.833443, -73.858864)",,,1957 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514475,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/28/2022,2:00,MANHATTAN,10013,40.723118,-74.00624,"(40.723118, -74.00624)",VARICK STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514137,Sedan,,,, +03/28/2022,11:34,,,40.63993,-74.08195,"(40.63993, -74.08195)",BENZIGER AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4514612,Sedan,Sedan,Sedan,, +03/28/2022,11:00,,,,,,FLATBUSH AVENUE EXTENSION,SUBWAY BROOKLYN BMT,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4514291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,18:55,,,40.67798,-73.872116,"(40.67798, -73.872116)",LIBERTY AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4514526,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,3:24,BROOKLYN,11215,40.672432,-73.97367,"(40.672432, -73.97367)",,,113 8 AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4514445,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,15:31,MANHATTAN,10075,40.77202,-73.956024,"(40.77202, -73.956024)",EAST 77 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514382,Box Truck,TANK,,, +03/27/2022,4:30,,,40.757095,-73.915016,"(40.757095, -73.915016)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4514860,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +03/28/2022,10:16,BRONX,10451,40.812035,-73.92855,"(40.812035, -73.92855)",EAST 138 STREET,CANAL PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4514405,Sedan,Sedan,,, +03/27/2022,7:30,BROOKLYN,11216,40.678192,-73.94463,"(40.678192, -73.94463)",,,1381 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4514772,Tow Truck / Wrecker,,,, +03/28/2022,18:29,,,40.76738,-73.759735,"(40.76738, -73.759735)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4514333,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:30,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",EAST 34 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/06/2022,3:45,,,40.83091,-73.92047,"(40.83091, -73.92047)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4514741,Sedan,,,, +03/28/2022,22:30,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514361,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:47,STATEN ISLAND,10309,40.511734,-74.21044,"(40.511734, -74.21044)",HYLAN BOULEVARD,SHARROTT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4514549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,7:20,QUEENS,11433,40.699764,-73.78285,"(40.699764, -73.78285)",173 STREET,108 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Failure to Keep Right,,,,4514146,Station Wagon/Sport Utility Vehicle,Bus,,, +03/28/2022,13:38,,,40.623894,-74.16741,"(40.623894, -74.16741)",SOUTH AVENUE,AMADOR STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514416,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,6:48,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4514269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,16:37,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",160 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514427,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,20:00,,,,,,JACKSON AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514324,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,22:40,,,40.69216,-73.914764,"(40.69216, -73.914764)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4514411,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/22/2022,7:00,BROOKLYN,11204,40.617245,-73.99772,"(40.617245, -73.99772)",,,1655 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514798,Sedan,,,, +03/28/2022,17:15,BROOKLYN,11219,40.63406,-74.00411,"(40.63406, -74.00411)",58 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514377,Sedan,Sedan,,, +03/24/2022,13:05,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514817,Sedan,,,, +03/28/2022,3:30,MANHATTAN,10003,40.727684,-73.98833,"(40.727684, -73.98833)",,,110 2 AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4514008,Taxi,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,23:45,,,,,,UNION TURNPIKE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4514726,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,15:35,,,40.87626,-73.90395,"(40.87626, -73.90395)",WEST 230 STREET,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4514514,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,7:55,,,,,,east 96 street,york avenue,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488718,Sedan,,,, +03/28/2022,8:32,MANHATTAN,10007,40.714863,-74.00628,"(40.714863, -74.00628)",,,56 READE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514244,Sedan,,,, +03/28/2022,8:00,QUEENS,11411,40.692783,-73.74511,"(40.692783, -73.74511)",SPRINGFIELD BOULEVARD,119 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514249,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,15:30,BROOKLYN,11208,40.659046,-73.875916,"(40.659046, -73.875916)",ELTON STREET,COZINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514456,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,10:03,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4514274,Sedan,E-Scooter,,, +03/28/2022,11:50,BRONX,10460,40.841187,-73.88597,"(40.841187, -73.88597)",SOUTHERN BOULEVARD,FAIRMOUNT PLACE,,1,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4514489,Taxi,E-Scooter,,, +03/28/2022,7:09,BROOKLYN,11235,40.593426,-73.93477,"(40.593426, -73.93477)",,,2420 BRAGG STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514313,Sedan,,,, +03/28/2022,18:30,QUEENS,11385,40.71364,-73.91789,"(40.71364, -73.91789)",,,49-21 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4514588,Tow Truck / Wrecker,Sedan,,, +03/28/2022,9:10,QUEENS,11412,40.69955,-73.747734,"(40.69955, -73.747734)",115 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514170,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,7:45,BRONX,10469,40.8639,-73.83385,"(40.8639, -73.83385)",,,1806 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4514457,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,15:50,,,40.694794,-73.98246,"(40.694794, -73.98246)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514559,Bus,Pick-up Truck,,, +03/28/2022,9:00,QUEENS,11432,40.714085,-73.807236,"(40.714085, -73.807236)",,,84-05 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4514660,Sedan,,,, +03/28/2022,7:37,,,40.827423,-73.86823,"(40.827423, -73.86823)",WATSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514206,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,9:18,MANHATTAN,10016,40.74036,-73.97318,"(40.74036, -73.97318)",FDR DRIVE,EAST 30 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514273,Sedan,,,, +03/28/2022,15:00,QUEENS,11366,40.7266,-73.789116,"(40.7266, -73.789116)",179 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514306,Sedan,,,, +03/28/2022,16:00,MANHATTAN,10004,40.7067,-74.01605,"(40.7067, -74.01605)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514395,Station Wagon/Sport Utility Vehicle,Bus,,, +03/25/2022,22:15,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514723,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,1:45,BROOKLYN,11234,40.635258,-73.92745,"(40.635258, -73.92745)",KINGS HIGHWAY,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4514869,Sedan,,,, +03/28/2022,0:27,,,40.71598,-73.97579,"(40.71598, -73.97579)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514226,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,15:56,BROOKLYN,11230,40.631493,-73.971855,"(40.631493, -73.971855)",OCEAN PARKWAY,LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,8:00,,,40.714695,-73.77531,"(40.714695, -73.77531)",HILLSIDE AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514145,Sedan,,,, +03/28/2022,15:20,,,,,,ROCKAWAY BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4514292,Sedan,Sedan,Sedan,, +03/28/2022,22:30,,,40.85396,-73.90944,"(40.85396, -73.90944)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4514450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,6:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,0:00,BROOKLYN,11214,40.590084,-73.99363,"(40.590084, -73.99363)",,,1870 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4514797,Pick-up Truck,,,, +03/28/2022,17:50,BROOKLYN,11224,40.58061,-73.98565,"(40.58061, -73.98565)",CROPSEY AVENUE,HART PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514589,Box Truck,Sedan,,, +03/28/2022,23:30,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514344,Sedan,,,, +03/28/2022,6:36,BRONX,10457,40.84672,-73.896484,"(40.84672, -73.896484)",,,521 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514481,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,18:00,STATEN ISLAND,10304,40.623524,-74.083015,"(40.623524, -74.083015)",,,217 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514611,Sedan,,,, +05/07/2021,9:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4414649,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:39,BRONX,10461,40.842857,-73.83881,"(40.842857, -73.83881)",,,1200 WATERS PLACE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4514539,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,16:39,QUEENS,11106,40.763344,-73.94163,"(40.763344, -73.94163)",,,35-11 VERNON BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514388,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,11:50,MANHATTAN,10033,40.845432,-73.93658,"(40.845432, -73.93658)",WEST 175 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514756,Sedan,Box Truck,,, +03/28/2022,16:45,,,40.709827,-73.83983,"(40.709827, -73.83983)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514338,Sedan,Sedan,,, +03/27/2022,18:40,,,40.75707,-73.85605,"(40.75707, -73.85605)",34 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514783,Sedan,,,, +03/28/2022,20:38,,,40.72648,-73.89442,"(40.72648, -73.89442)",69 PLACE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514332,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,5:55,MANHATTAN,10019,40.762672,-73.9821,"(40.762672, -73.9821)",,,811 7 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514078,E-Scooter,,,, +03/28/2022,14:50,BROOKLYN,11238,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,GRAND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4514819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle +03/28/2022,8:30,BRONX,10454,40.804615,-73.90666,"(40.804615, -73.90666)",EAST 141 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514264,Sedan,,,, +03/28/2022,8:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514363,Sedan,Sedan,,, +03/28/2022,14:41,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514730,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,18:15,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",OCEAN PARKWAY,AVENUE C,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4514372,Sedan,Sedan,Sedan,Sedan, +03/28/2022,16:06,BROOKLYN,11215,40.671906,-73.98668,"(40.671906, -73.98668)",,,267 6 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4514439,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +03/21/2022,9:00,BRONX,10456,40.828728,-73.914734,"(40.828728, -73.914734)",FINDLAY AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514743,Sedan,Sedan,,, +03/28/2022,8:00,BROOKLYN,11211,40.707523,-73.96115,"(40.707523, -73.96115)",DIVISION AVENUE,ROEBLING STREET,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,Unspecified,4514353,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +03/28/2022,17:15,,,40.789314,-73.84188,"(40.789314, -73.84188)",126 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514316,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,8:22,BROOKLYN,11235,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON BEACH AVENUE,BRIGHTON 5 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514807,Sedan,Bus,,, +03/25/2022,18:56,BRONX,10465,40.823658,-73.836426,"(40.823658, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514835,Sedan,Sedan,,, +03/28/2022,10:30,BRONX,10458,40.856323,-73.883896,"(40.856323, -73.883896)",CAMBRELENG AVENUE,EAST 189 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4514472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,11:11,BROOKLYN,11219,40.641815,-73.99582,"(40.641815, -73.99582)",44 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514697,Sedan,Bike,,, +03/28/2022,9:30,,,40.826492,-73.907745,"(40.826492, -73.907745)",EAST 165 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514381,Tanker,Station Wagon/Sport Utility Vehicle,Sedan,, +03/28/2022,23:30,,,40.599827,-74.17823,"(40.599827, -74.17823)",TRAVIS AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4514417,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,22:10,,,40.83406,-73.944885,"(40.83406, -73.944885)",BROADWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514767,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,2:50,BROOKLYN,11216,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,NOSTRAND AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4514429,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,7:40,,,40.740467,-73.97295,"(40.740467, -73.97295)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4514773,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/28/2022,1:03,QUEENS,11373,40.74767,-73.8754,"(40.74767, -73.8754)",,,40-60 CASE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4514025,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,8:00,,,,,,WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414684,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,12:40,QUEENS,11106,40.760853,-73.92408,"(40.760853, -73.92408)",,,32-17 33 STREET,1,0,1,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514809,Sedan,Sedan,,, +03/28/2022,18:20,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514337,Sedan,Sedan,,, +03/28/2022,5:40,QUEENS,11375,40.738724,-73.8488,"(40.738724, -73.8488)",HORACE HARDING EXPRESSWAY,VANDOREN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514516,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,11:18,MANHATTAN,10011,40.741055,-73.99786,"(40.741055, -73.99786)",7 AVENUE,WEST 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514256,AMB,Sedan,,, +03/28/2022,19:30,QUEENS,11693,40.588604,-73.80641,"(40.588604, -73.80641)",,,221 BEACH 80 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514505,Sedan,,,, +03/18/2022,19:33,,,40.754864,-73.85255,"(40.754864, -73.85255)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4514857,Sedan,Sedan,Sedan,, +03/24/2022,17:00,,,40.640553,-74.0043,"(40.640553, -74.0043)",51 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514732,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,12:35,BRONX,10467,40.879818,-73.880226,"(40.879818, -73.880226)",,,120 EAST 210 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,17:55,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BREWER BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514403,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,6:49,BRONX,10474,40.817207,-73.88432,"(40.817207, -73.88432)",LAFAYETTE AVENUE,WHITTIER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,19:59,,,40.84908,-73.90946,"(40.84908, -73.90946)",MOUNT HOPE PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,Other Vehicular,,,4514451,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/28/2022,7:28,,,40.657654,-73.87917,"(40.657654, -73.87917)",COZINE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514280,Sedan,,,, +03/28/2022,9:35,,,,,,Belt parkway,Sheepsheadbay road,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514312,Station Wagon/Sport Utility Vehicle,Motorbike,,, +03/28/2022,8:25,QUEENS,11435,40.714283,-73.8102,"(40.714283, -73.8102)",150 STREET,HOOVER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4514171,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,19:28,BRONX,10461,40.843475,-73.85102,"(40.843475, -73.85102)",,,1530 HONE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4514459,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,17:00,QUEENS,11414,40.666393,-73.849976,"(40.666393, -73.849976)",,,84-29 153 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514360,Sedan,,,, +03/27/2022,17:30,QUEENS,11435,40.71423,-73.81633,"(40.71423, -73.81633)",HOOVER AVENUE,LANDER STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4514881,Sedan,Sedan,Pick-up Truck,, +03/28/2022,7:50,QUEENS,11385,40.71302,-73.90831,"(40.71302, -73.90831)",,,55-20 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4514282,,,,, +03/28/2022,16:07,QUEENS,11355,40.745327,-73.833435,"(40.745327, -73.833435)",58 ROAD,LAWRENCE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,11:00,BROOKLYN,11211,40.70792,-73.9541,"(40.70792, -73.9541)",,,367 SOUTH 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514706,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,15:25,,,40.676292,-73.92484,"(40.676292, -73.92484)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514560,Sedan,Motorscooter,,, +03/28/2022,14:15,BROOKLYN,11235,40.5774,-73.95404,"(40.5774, -73.95404)",BRIGHTON BEACH AVENUE,CORBIN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514590,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,8:17,QUEENS,11366,40.733303,-73.773186,"(40.733303, -73.773186)",,,75-35 198 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4514167,Sedan,,,, +03/28/2022,10:00,BROOKLYN,11237,40.702686,-73.92084,"(40.702686, -73.92084)",IRVING AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514410,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/28/2022,6:20,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HILLSIDE AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514236,Sedan,Box Truck,,, +03/28/2022,7:45,MANHATTAN,10169,40.754677,-73.975815,"(40.754677, -73.975815)",EAST 46 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514469,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:00,QUEENS,11433,40.697495,-73.78904,"(40.697495, -73.78904)",,,164-44 108 AVENUE,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4514143,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,19:00,BROOKLYN,11223,40.604935,-73.96684,"(40.604935, -73.96684)",,,1800 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484513,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,17:14,BRONX,10460,40.841682,-73.88832,"(40.841682, -73.88832)",CROSS BRONX EXPRESSWAY,MARMION AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4486862,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,23:20,BROOKLYN,11229,40.60216,-73.94707,"(40.60216, -73.94707)",BEDFORD AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4487387,Taxi,Sedan,,, +12/18/2021,18:50,,,40.65407,-73.97821,"(40.65407, -73.97821)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4488951,Sedan,Sedan,Taxi,, +12/20/2021,8:30,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488984,Bus,Box Truck,,, +12/16/2021,19:20,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4488974,Motorcycle,,,, +12/10/2021,21:12,BRONX,10461,0,0,"(0.0, 0.0)",,,1410 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4488986,Sedan,Ambulance,,, +05/03/2021,1:30,,,,,,,,3425 PARK AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4414836,Sedan,,,, +02/19/2022,8:40,BRONX,10469,40.865208,-73.84336,"(40.865208, -73.84336)",EASTCHESTER ROAD,ALLERTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4503909,Sedan,Sedan,,, +02/19/2022,9:00,BROOKLYN,11233,40.670048,-73.921364,"(40.670048, -73.921364)",,,1682 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504133,Station Wagon/Sport Utility Vehicle,,,, +02/17/2022,11:12,STATEN ISLAND,10305,40.612022,-74.070885,"(40.612022, -74.070885)",,,570 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504500,Sedan,,,, +02/19/2022,12:00,BROOKLYN,11233,40.67398,-73.911156,"(40.67398, -73.911156)",ROCKAWAY AVENUE,BERGEN STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4504442,Sedan,PK,,, +02/19/2022,22:00,BROOKLYN,11214,40.605057,-73.999,"(40.605057, -73.999)",86 STREET,BAY 23 STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4504004,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/19/2022,17:30,BROOKLYN,11217,40.681797,-73.97681,"(40.681797, -73.97681)",,,37 5 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4504660,Sedan,Bus,,, +02/19/2022,22:55,QUEENS,11372,40.75607,-73.88059,"(40.75607, -73.88059)",,,87-01 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504246,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,21:59,QUEENS,11373,40.736202,-73.878876,"(40.736202, -73.878876)",,,86-53 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504174,FIRE TRUCK,Sedan,,, +02/19/2022,20:55,BROOKLYN,11208,40.686504,-73.874954,"(40.686504, -73.874954)",EUCLID AVENUE,ETNA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504566,Sedan,,,, +02/13/2022,20:30,QUEENS,11377,40.754158,-73.898636,"(40.754158, -73.898636)",NORTHERN BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4504618,Sedan,,,, +02/19/2022,15:10,,,,,,164 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504258,Sedan,Sedan,,, +02/19/2022,18:22,BROOKLYN,11236,40.63084,-73.903076,"(40.63084, -73.903076)",AVENUE M,EAST 84 STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4503998,Taxi,Sedan,,, +02/19/2022,12:30,MANHATTAN,10002,40.713253,-73.97759,"(40.713253, -73.97759)",FDR DRIVE,GRAND STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4503959,Sedan,Sedan,,, +02/17/2022,15:31,BRONX,10472,40.8278,-73.865425,"(40.8278, -73.865425)",WATSON AVENUE,BEACH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504461,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,17:40,QUEENS,11378,40.726624,-73.906456,"(40.726624, -73.906456)",55 ROAD,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4504527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,15:42,MANHATTAN,10019,40.76434,-73.98834,"(40.76434, -73.98834)",,,765 9 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4504055,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,3:05,QUEENS,11414,40.650814,-73.837814,"(40.650814, -73.837814)",CROSS BAY BOULEVARD,164 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504338,Sedan,,,, +02/17/2022,17:00,BROOKLYN,11224,40.577003,-74.00217,"(40.577003, -74.00217)",NEPTUNE AVENUE,WEST 36 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4504489,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,5:00,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",WESTCHESTER AVENUE,BRONX RIVER AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504436,Station Wagon/Sport Utility Vehicle,Bike,,, +02/19/2022,0:24,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",2 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4503945,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/20/2021,15:30,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488266,Sedan,Sedan,,, +12/20/2021,7:00,,,40.729557,-73.98994,"(40.729557, -73.98994)",3 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488432,Sedan,,,, +12/20/2021,12:00,BROOKLYN,11237,40.701958,-73.9239,"(40.701958, -73.9239)",SUYDAM STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488316,Sedan,,,, +12/17/2021,13:15,STATEN ISLAND,10301,40.638268,-74.0788,"(40.638268, -74.0788)",VICTORY BOULEVARD,MONROE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488799,Pick-up Truck,Sedan,,, +12/16/2021,17:00,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",76 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488776,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,16:30,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4488294,Sedan,Sedan,,, +12/20/2021,9:56,,,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488542,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,9:18,BRONX,10453,40.858387,-73.90279,"(40.858387, -73.90279)",EAST 183 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488341,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/20/2021,21:00,QUEENS,11427,40.728294,-73.75037,"(40.728294, -73.75037)",SPENCER AVENUE,215 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488741,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,22:14,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4488851,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,4:50,BROOKLYN,11201,40.690983,-73.99706,"(40.690983, -73.99706)",,,88 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,15:15,BRONX,10472,40.831375,-73.863396,"(40.831375, -73.863396)",,,1243 LELAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,15:20,STATEN ISLAND,10304,40.619717,-74.07949,"(40.619717, -74.07949)",DIX PLACE,COURSEN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488797,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,17:00,QUEENS,11372,40.748398,-73.889824,"(40.748398, -73.889824)",,,37-21 76 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488839,Sedan,,,, +12/14/2021,8:49,BRONX,10462,40.841278,-73.86359,"(40.841278, -73.86359)",EAST TREMONT AVENUE,UNIONPORT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488711,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/20/2021,8:55,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",LIBERTY AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488100,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,13:30,QUEENS,11377,40.74074,-73.90779,"(40.74074, -73.90779)",47 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,,,,4488244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,11:30,MANHATTAN,10036,40.75941,-73.99562,"(40.75941, -73.99562)",,,570 10 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488438,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,15:30,QUEENS,11412,40.692352,-73.762436,"(40.692352, -73.762436)",DUNKIRK DRIVE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488466,Sedan,,,, +12/20/2021,16:45,QUEENS,11693,40.5867,-73.81704,"(40.5867, -73.81704)",BEACH 94 STREET,ROCKAWAY FREEWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4488552,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,17:40,,,40.61743,-74.135765,"(40.61743, -74.135765)",,,259 NEAL DOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488601,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,11:09,BRONX,10468,40.872765,-73.88864,"(40.872765, -73.88864)",EAST BEDFORD PARK BOULEVARD,VILLA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488225,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,9:38,QUEENS,11367,40.73239,-73.81116,"(40.73239, -73.81116)",,,155-15 JEWEL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488167,Stake or Rack,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,13:10,BROOKLYN,11203,40.656063,-73.93957,"(40.656063, -73.93957)",CLARKSON AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488876,Sedan,Sedan,,, +12/18/2021,4:15,BROOKLYN,11214,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,BAY 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488928,Taxi,,,, +12/20/2021,5:41,,,40.58359,-73.98721,"(40.58359, -73.98721)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488206,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,17:24,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4414950,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/20/2021,8:49,,,40.63582,-74.1712,"(40.63582, -74.1712)",,,176 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4488168,Dump,Sedan,Sedan,, +08/03/2021,14:00,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488811,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,8:00,,,40.71027,-73.765236,"(40.71027, -73.765236)",194 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488238,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,4:23,BROOKLYN,11212,40.65418,-73.91072,"(40.65418, -73.91072)",LINDEN BOULEVARD,AMBOY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488133,Sedan,Sedan,,, +12/20/2021,11:30,,,40.60716,-74.13194,"(40.60716, -74.13194)",,,180 BRADLEY AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4488600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/20/2021,2:00,BRONX,10452,40.842247,-73.91403,"(40.842247, -73.91403)",ROCKWOOD STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488335,Sedan,,,, +05/02/2021,23:30,,,40.661777,-73.85069,"(40.661777, -73.85069)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4412711,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/04/2021,18:49,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413889,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,6:08,BROOKLYN,11233,40.67094,-73.92124,"(40.67094, -73.92124)",,,1736 STERLING PLACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,,4414522,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/05/2021,17:00,QUEENS,11377,40.75399,-73.90031,"(40.75399, -73.90031)",62 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4413736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/07/2021,5:10,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414827,Sedan,,,, +05/07/2021,9:00,,,40.65878,-73.960526,"(40.65878, -73.960526)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414483,Sedan,Sedan,,, +05/05/2021,22:00,MANHATTAN,10012,40.72508,-73.997086,"(40.72508, -73.997086)",,,599 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414188,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,14:30,BRONX,10456,40.83185,-73.910904,"(40.83185, -73.910904)",,,1190 CLAY AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413861,Sedan,Ambulance,,, +05/06/2021,6:30,BROOKLYN,11234,40.592636,-73.90362,"(40.592636, -73.90362)",,,2900 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414715,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,21:29,QUEENS,11420,40.67978,-73.823875,"(40.67978, -73.823875)",116 STREET,111 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,Unspecified,,,4413787,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/06/2021,16:50,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4414302,Sedan,Motorcycle,Sedan,, +05/07/2021,11:50,BRONX,10458,40.866383,-73.88515,"(40.866383, -73.88515)",WEBSTER AVENUE,OLIVER PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414170,Sedan,,,, +05/07/2021,12:10,BRONX,10474,40.819847,-73.885994,"(40.819847, -73.885994)",,,891 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414932,Box Truck,Pick-up Truck,,, +05/06/2021,20:06,BROOKLYN,11235,40.5896,-73.959236,"(40.5896, -73.959236)",,,1123 AVENUE Y,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414150,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,17:30,,,40.741074,-73.7258,"(40.741074, -73.7258)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,14:05,MANHATTAN,10022,40.757008,-73.96388,"(40.757008, -73.96388)",1 AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414036,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/27/2021,21:40,BRONX,10451,40.829628,-73.92118,"(40.829628, -73.92118)",GRAND CONCOURSE,EAST 164 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4414347,Sedan,Sedan,,, +05/07/2021,16:24,,,40.758205,-73.777405,"(40.758205, -73.777405)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,13:37,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",10 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414016,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,0:00,MANHATTAN,10022,40.75924,-73.967255,"(40.75924, -73.967255)",,,228 EAST 56 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413282,Sedan,,,, +05/07/2021,9:20,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414738,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,12:50,,,40.856743,-73.89527,"(40.856743, -73.89527)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414384,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,12:30,,,,,,MAJOR DEEGAN EXPRESSWAY,VANCORTLANDT PARK WEST,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4414553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,18:39,,,40.60459,-74.02212,"(40.60459, -74.02212)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4413770,Sedan,Sedan,,, +05/07/2021,6:28,BROOKLYN,11231,40.67812,-74.016914,"(40.67812, -74.016914)",COFFEY STREET,FERRIS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414304,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,23:22,BROOKLYN,11234,40.614227,-73.924446,"(40.614227, -73.924446)",,,1844 EAST 52 STREET,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4414175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,12:00,BRONX,10461,40.849613,-73.83491,"(40.849613, -73.83491)",SAINT THERESA AVENUE,MULFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414231,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,13:15,BRONX,10466,40.890507,-73.8611,"(40.890507, -73.8611)",,,655 EAST 228 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413922,Sedan,,,, +05/06/2021,10:13,QUEENS,11385,40.713707,-73.919,"(40.713707, -73.919)",,,48-25 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414415,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,18:39,,,40.616814,-73.94396,"(40.616814, -73.94396)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414718,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,21:18,BROOKLYN,11204,40.6131,-73.97858,"(40.6131, -73.97858)",64 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,10:50,BRONX,10469,40.87059,-73.8362,"(40.87059, -73.8362)",,,2909 ELY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4414579,Sedan,,,, +05/06/2021,12:58,BROOKLYN,11206,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4414659,Ambulance,,,, +05/06/2021,10:07,QUEENS,11101,40.75069,-73.91771,"(40.75069, -73.91771)",,,45-02 37 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413994,Sedan,street swe,,, +05/06/2021,16:04,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414077,Sedan,Bus,,, +05/06/2021,6:20,,,40.66535,-73.81695,"(40.66535, -73.81695)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414125,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2021,12:15,,,40.811264,-73.95782,"(40.811264, -73.95782)",WEST 123 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414681,Sedan,,,, +05/05/2021,4:15,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4413486,Sedan,,,, +05/07/2021,10:00,QUEENS,11355,40.75193,-73.808914,"(40.75193, -73.808914)",LABURNUM AVENUE,158 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4414272,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,19:40,MANHATTAN,10002,40.72247,-73.987144,"(40.72247, -73.987144)",EAST HOUSTON STREET,LUDLOW STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413815,Sedan,Bike,,, +05/06/2021,12:15,BROOKLYN,11234,40.625652,-73.930534,"(40.625652, -73.930534)",AVENUE K,SCHENECTADY AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4414032,Sedan,Sedan,,, +04/30/2021,17:30,,,40.570877,-74.16984,"(40.570877, -74.16984)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4414202,Sedan,Sedan,,, +05/07/2021,11:00,QUEENS,11413,40.655624,-73.765724,"(40.655624, -73.765724)",182 STREET,150 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414263,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,20:13,BROOKLYN,11226,40.64333,-73.95973,"(40.64333, -73.95973)",OCEAN AVENUE,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414533,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,11:48,,,40.830536,-73.91571,"(40.830536, -73.91571)",EAST 166 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414340,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,4:00,,,40.757515,-73.81857,"(40.757515, -73.81857)",BEECH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,14:55,,,40.783897,-73.97407,"(40.783897, -73.97407)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414069,Sedan,Pick-up Truck,,, +04/18/2021,17:30,QUEENS,11358,40.76167,-73.79241,"(40.76167, -73.79241)",,,189-30 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414571,Sedan,Bus,,, +05/05/2021,17:50,QUEENS,11369,40.763683,-73.87927,"(40.763683, -73.87927)",ASTORIA BOULEVARD,90 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413973,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,5:11,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4414430,Sedan,Sedan,,, +05/05/2021,8:40,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413520,Sedan,Sedan,,, +04/23/2021,15:04,,,40.807087,-73.94178,"(40.807087, -73.94178)",WEST 126 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414208,Taxi,Sedan,,, +05/07/2021,13:40,,,40.711384,-73.8366,"(40.711384, -73.8366)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414207,Sedan,Bus,,, +05/05/2021,0:00,QUEENS,11422,40.660328,-73.72948,"(40.660328, -73.72948)",,,140-59 255 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4413713,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,8:00,STATEN ISLAND,10312,40.535404,-74.193565,"(40.535404, -74.193565)",HUGUENOT AVENUE,CARLTON COURT,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414362,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/06/2021,22:15,STATEN ISLAND,10312,40.54585,-74.164604,"(40.54585, -74.164604)",ELTINGVILLE BOULEVARD,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414379,Sedan,Sedan,,, +05/05/2021,14:02,,,40.737465,-73.919846,"(40.737465, -73.919846)",50 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413868,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/06/2021,21:10,QUEENS,11691,40.59616,-73.74713,"(40.59616, -73.74713)",BEACH 13 STREET,HEYSON ROAD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,Unspecified,,,4414329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/05/2021,15:00,MANHATTAN,10032,40.83948,-73.93604,"(40.83948, -73.93604)",WEST 168 STREET,JUMEL PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414788,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,16:30,BROOKLYN,11219,40.62826,-73.99915,"(40.62826, -73.99915)",61 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414630,Sedan,,,, +05/07/2021,21:36,QUEENS,11435,40.707478,-73.8093,"(40.707478, -73.8093)",,,148-28 87 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414295,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/07/2021,11:39,MANHATTAN,10028,40.777355,-73.95462,"(40.777355, -73.95462)",,,200 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414845,Sedan,Sedan,,, +05/04/2021,6:40,BRONX,10466,40.895596,-73.85617,"(40.895596, -73.85617)",WHITE PLAINS ROAD,EAST 236 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414599,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,17:00,BROOKLYN,11213,40.671352,-73.92881,"(40.671352, -73.92881)",,,1514 STERLING PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414689,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,12:30,BRONX,10451,40.81934,-73.93012,"(40.81934, -73.93012)",EAST 149 STREET,RIVER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4414159,Tractor Truck Diesel,Motorcycle,,, +05/05/2021,16:30,BRONX,10461,40.854233,-73.85563,"(40.854233, -73.85563)",,,2029 TOMLINSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414367,Sedan,,,, +05/06/2021,8:35,QUEENS,11101,40.74729,-73.92832,"(40.74729, -73.92832)",SKILLMAN AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413899,Sedan,,,, +05/07/2021,12:50,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,23:40,BRONX,10451,40.818794,-73.92213,"(40.818794, -73.92213)",EAST 151 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414884,Sedan,Sedan,,, +05/05/2021,23:22,,,40.82383,-73.87624,"(40.82383, -73.87624)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413930,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:54,BRONX,10465,40.822315,-73.81918,"(40.822315, -73.81918)",EAST TREMONT AVENUE,DEWEY AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4414227,Bike,,,, +05/05/2021,19:00,,,40.811108,-73.92734,"(40.811108, -73.92734)",EAST 138 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413945,Sedan,,,, +05/05/2021,12:10,BRONX,10462,40.83477,-73.85394,"(40.83477, -73.85394)",,,1320 ODELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413668,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,0:00,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,Unspecified,4414750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +05/05/2021,11:42,MANHATTAN,10012,40.722023,-73.9934,"(40.722023, -73.9934)",,,222 BOWERY,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414617,TRUCK,,,, +05/07/2021,12:50,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4414922,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,16:05,QUEENS,11377,40.73701,-73.89993,"(40.73701, -73.89993)",65 PLACE,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414240,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,11:35,,,40.86231,-73.909874,"(40.86231, -73.909874)",WEST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4413604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,18:22,QUEENS,11104,40.743046,-73.91776,"(40.743046, -73.91776)",QUEENS BOULEVARD,47 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414099,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,0:44,QUEENS,11422,40.66096,-73.731476,"(40.66096, -73.731476)",FRANCIS LEWIS BOULEVARD,253 STREET,,0,0,0,0,0,0,0,0,Illnes,,,,,4414116,Sedan,,,, +05/05/2021,11:30,BROOKLYN,11206,40.70149,-73.95193,"(40.70149, -73.95193)",LORIMER STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4414137,Bike,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,22:52,MANHATTAN,10024,40.79112,-73.97331,"(40.79112, -73.97331)",,,212 WEST 91 STREET,2,0,2,0,0,0,0,0,,,,,,4414394,,,,, +05/07/2021,17:28,,,40.70644,-73.75973,"(40.70644, -73.75973)",HOLLIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414259,Sedan,Sedan,,, +05/05/2021,10:45,BROOKLYN,11209,40.635777,-74.02897,"(40.635777, -74.02897)",,,6931 RIDGE BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4413658,Sedan,Sedan,,, +05/05/2021,9:50,BROOKLYN,11218,40.646297,-73.97195,"(40.646297, -73.97195)",,,167 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413622,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,18:45,BROOKLYN,11212,40.668674,-73.90876,"(40.668674, -73.90876)",,,45 BELMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414529,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,17:10,BROOKLYN,11238,40.686687,-73.9661,"(40.686687, -73.9661)",,,149 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414049,Sedan,Sedan,,, +05/07/2021,0:06,,,40.67132,-73.9281,"(40.67132, -73.9281)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414212,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:30,,,40.60589,-73.98972,"(40.60589, -73.98972)",79 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4413698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,5:42,,,40.83204,-73.85564,"(40.83204, -73.85564)",ELLIS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413532,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,14:15,,,40.67224,-73.96104,"(40.67224, -73.96104)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414399,Sedan,Sedan,Sedan,, +05/05/2021,17:51,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413944,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/05/2021,16:46,,,40.68804,-73.947754,"(40.68804, -73.947754)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414640,Sedan,,,, +05/05/2021,15:40,BROOKLYN,11232,40.658924,-74.00302,"(40.658924, -74.00302)",30 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414760,Sedan,E-Bike,,, +05/06/2021,21:30,,,40.691845,-74.0002,"(40.691845, -74.0002)",ATLANTIC AVENUE,FURMAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414195,Dump,Sedan,,, +05/07/2021,4:33,MANHATTAN,10037,40.81467,-73.93623,"(40.81467, -73.93623)",EAST 138 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4414333,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/05/2021,12:10,BROOKLYN,11233,40.676243,-73.90891,"(40.676243, -73.90891)",,,2129 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4413798,Van,Sedan,,, +05/07/2021,12:25,BROOKLYN,11221,40.694,-73.92351,"(40.694, -73.92351)",EVERGREEN AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/08/2020,4:05,,,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414460,Sedan,Sedan,,, +05/03/2021,7:00,,,40.817173,-73.94606,"(40.817173, -73.94606)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4414907,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,12:00,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414608,COM,Sedan,,, +05/06/2021,7:00,BROOKLYN,11212,40.659286,-73.92029,"(40.659286, -73.92029)",,,9522 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414694,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,12:40,,,40.60188,-74.16534,"(40.60188, -74.16534)",SIGNS ROAD,TODDY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4414804,Sedan,Sedan,,, +05/05/2021,18:45,,,40.686466,-73.80156,"(40.686466, -73.80156)",110 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413827,Sedan,Sedan,,, +05/05/2021,16:42,,,40.845078,-73.91111,"(40.845078, -73.91111)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414167,Sedan,Sedan,,, +05/05/2021,12:30,BROOKLYN,11238,40.680668,-73.95774,"(40.680668, -73.95774)",,,141 LEFFERTS PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413964,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,14:55,BRONX,10458,40.85611,-73.88252,"(40.85611, -73.88252)",CROTONA AVENUE,EAST 189 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4414371,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/07/2021,11:30,QUEENS,11354,40.76985,-73.8093,"(40.76985, -73.8093)",32 AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414283,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,20:15,,,40.84009,-73.88036,"(40.84009, -73.88036)",BOSTON ROAD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4413906,Sedan,Sedan,,, +05/02/2021,18:30,BROOKLYN,11235,40.58591,-73.95678,"(40.58591, -73.95678)",,,2685 HOMECREST AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4414854,,,,, +05/06/2021,13:19,MANHATTAN,10075,,,,Lexington Avenue,East 77 street,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414388,Sedan,,,, +05/06/2021,12:55,,,40.6271,-74.12514,"(40.6271, -74.12514)",MANOR ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414515,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/03/2021,22:00,QUEENS,11372,40.748863,-73.892715,"(40.748863, -73.892715)",37 AVENUE,73 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414959,Sedan,,,, +05/06/2021,11:42,BROOKLYN,11222,40.728153,-73.95127,"(40.728153, -73.95127)",,,261 ECKFORD STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413949,Box Truck,Sedan,,, +05/05/2021,11:30,,,40.845062,-73.91839,"(40.845062, -73.91839)",JESUP AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413593,Sedan,,,, +05/07/2021,14:50,QUEENS,11417,40.679947,-73.84973,"(40.679947, -73.84973)",LIBERTY AVENUE,89 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414244,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,12:10,BRONX,10471,40.906136,-73.90431,"(40.906136, -73.90431)",,,5665 RIVERDALE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413683,Sedan,Sedan,,, +05/05/2021,13:02,BROOKLYN,11222,40.721798,-73.94802,"(40.721798, -73.94802)",,,54 ECKFORD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413778,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,0:00,,,40.608253,-73.897835,"(40.608253, -73.897835)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4414441,Sedan,,,, +05/06/2021,21:45,QUEENS,11412,40.69612,-73.74619,"(40.69612, -73.74619)",FRANCIS LEWIS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414095,Pick-up Truck,Ambulance,,, +05/03/2021,1:00,,,40.776897,-73.97547,"(40.776897, -73.97547)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414731,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,16:15,BROOKLYN,11236,40.633286,-73.91674,"(40.633286, -73.91674)",,,6565 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4414239,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,14:24,BROOKLYN,11249,40.712315,-73.96688,"(40.712315, -73.96688)",,,41 SOUTH 5 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414142,Sedan,,,, +05/05/2021,10:10,BRONX,10458,,,,EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4413898,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/05/2021,23:40,,,40.71328,-73.76606,"(40.71328, -73.76606)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414009,Sedan,Sedan,,, +05/05/2021,18:10,BROOKLYN,11238,40.676548,-73.96354,"(40.676548, -73.96354)",WASHINGTON AVENUE,PROSPECT PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414100,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/09/2021,20:15,BROOKLYN,11223,40.60264,-73.98639,"(40.60264, -73.98639)",STILLWELL AVENUE,HIGHLAWN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414271,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,16:53,QUEENS,11433,40.70355,-73.781296,"(40.70355, -73.781296)",177 STREET,105 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413714,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,19:45,BROOKLYN,11236,40.633984,-73.912926,"(40.633984, -73.912926)",,,962 EAST 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414133,,,,, +05/05/2021,9:07,STATEN ISLAND,10301,40.631897,-74.09716,"(40.631897, -74.09716)",FOREST AVENUE,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413752,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,1:15,,,40.701763,-73.9276,"(40.701763, -73.9276)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4503885,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:33,BROOKLYN,11234,40.62684,-73.9219,"(40.62684, -73.9219)",,,1193 EAST 56 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414180,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/05/2021,10:23,QUEENS,11385,40.709373,-73.86103,"(40.709373, -73.86103)",,,89-01 74 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413631,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/05/2021,10:10,QUEENS,11102,40.775322,-73.935295,"(40.775322, -73.935295)",2 STREET,27 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413993,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,16:41,BROOKLYN,11231,40.68112,-73.9905,"(40.68112, -73.9905)",,,437 SACKETT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414298,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,21:00,QUEENS,11432,40.709,-73.79832,"(40.709, -73.79832)",,,164-19 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414319,Sedan,Sedan,,, +05/05/2021,13:28,MANHATTAN,10034,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,WEST 202 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4413914,Sedan,Sedan,,, +05/06/2021,19:30,BROOKLYN,11212,40.664276,-73.92501,"(40.664276, -73.92501)",,,73 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414700,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,3:03,BROOKLYN,11233,40.68401,-73.917694,"(40.68401, -73.917694)",,,701 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414771,Sedan,,,, +05/05/2021,19:45,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413935,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,17:20,QUEENS,11385,40.701706,-73.88375,"(40.701706, -73.88375)",MYRTLE AVENUE,68 PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414424,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,18:30,QUEENS,11434,40.65771,-73.76757,"(40.65771, -73.76757)",BREWER BOULEVARD,149 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414266,Sedan,Sedan,,, +05/06/2021,14:06,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",MORRIS AVENUE,EAST 149 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414138,Sedan,,,, +05/07/2021,10:10,,,40.631157,-74.14692,"(40.631157, -74.14692)",WALKER STREET,MORNINGSTAR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,10:55,,,40.790253,-73.94564,"(40.790253, -73.94564)",EAST 104 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414467,PK,Sedan,,, +05/07/2021,0:00,BROOKLYN,11233,40.67585,-73.91097,"(40.67585, -73.91097)",,,197 ROCKAWAY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,14:20,,,,,,NASSAU EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4414043,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/07/2021,20:47,,,40.72662,-73.757324,"(40.72662, -73.757324)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414311,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/07/2021,8:35,QUEENS,11368,40.749462,-73.86656,"(40.749462, -73.86656)",ROOSEVELT AVENUE,99 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4414892,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,13:20,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413792,Sedan,Sedan,,, +05/06/2021,12:35,BROOKLYN,11210,40.63561,-73.95532,"(40.63561, -73.95532)",EAST 23 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414023,Sedan,Sedan,,, +05/05/2021,23:35,MANHATTAN,10002,40.716133,-73.98947,"(40.716133, -73.98947)",,,39 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413816,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,14:13,BRONX,10451,,,,,,700 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414343,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,17:00,BROOKLYN,11210,40.625015,-73.94073,"(40.625015, -73.94073)",AVENUE K,EAST 36 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4414171,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,15:30,,,40.60381,-73.75213,"(40.60381, -73.75213)",SMITH PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4414403,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,17:00,BROOKLYN,11204,40.620422,-73.98767,"(40.620422, -73.98767)",,,1829 62 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414813,Sedan,,,, +05/05/2021,12:53,QUEENS,11354,40.757183,-73.83396,"(40.757183, -73.83396)",COLLEGE POINT BOULEVARD,40 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413762,Station Wagon/Sport Utility Vehicle,Van,,, +05/06/2021,16:10,BROOKLYN,11210,40.62813,-73.94713,"(40.62813, -73.94713)",,,2319 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414176,Sedan,,,, +05/06/2021,15:35,BRONX,10451,40.822323,-73.910706,"(40.822323, -73.910706)",3 AVENUE,BROOK AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4414867,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,23:43,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4414303,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,17:42,,,40.855595,-73.89601,"(40.855595, -73.89601)",WEBSTER AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4414435,Moped,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,17:20,BROOKLYN,11234,40.636234,-73.926506,"(40.636234, -73.926506)",,,5207 KINGS HIGHWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414723,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,17:23,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WHITLOCK AVENUE,WESTCHESTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4413886,Sedan,Sedan,,, +05/07/2021,16:01,,,,,,RICHMOND ROAD,DONGAN HILL AVENUE,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4414220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,17:20,,,40.878746,-73.84241,"(40.878746, -73.84241)",EAST 222 STREET,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414583,Sedan,Convertible,,, +05/06/2021,16:40,BROOKLYN,11213,40.67736,-73.938675,"(40.67736, -73.938675)",,,98 ALBANY AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4414084,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/05/2021,14:45,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,4:32,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414501,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,16:50,BRONX,10466,40.896152,-73.858,"(40.896152, -73.858)",,,642 EAST 236 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414591,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,17:00,BROOKLYN,11206,40.708244,-73.9414,"(40.708244, -73.9414)",,,190 MESEROLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414667,Motorcycle,,,, +05/06/2021,10:00,MANHATTAN,10017,40.748405,-73.97094,"(40.748405, -73.97094)",TUDOR CITY PLACE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4414000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,20:55,,,40.88736,-73.89426,"(40.88736, -73.89426)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414106,Sedan,Sedan,,, +05/07/2021,9:08,,,40.781662,-73.818985,"(40.781662, -73.818985)",20 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414276,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/05/2021,14:30,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4413852,Station Wagon/Sport Utility Vehicle,Bike,,, +03/19/2021,17:30,,,,,,Meridian road,New York avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414735,Sedan,,,, +05/07/2021,13:15,,,40.611256,-73.974525,"(40.611256, -73.974525)",DAHILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414219,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,18:40,MANHATTAN,10017,40.753944,-73.972145,"(40.753944, -73.972145)",3 AVENUE,EAST 47 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413773,Sedan,,,, +05/05/2021,13:55,BRONX,10451,40.824295,-73.90945,"(40.824295, -73.90945)",,,508 EAST 163 STREET,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4413856,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,12:30,STATEN ISLAND,10304,40.61427,-74.08232,"(40.61427, -74.08232)",,,225 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414544,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,21:30,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4414234,Dump,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/05/2021,21:25,BROOKLYN,11212,40.657665,-73.90961,"(40.657665, -73.90961)",BRISTOL STREET,LOTT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413805,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,20:27,,,40.818016,-73.96043,"(40.818016, -73.96043)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414028,Sedan,Sedan,,, +12/20/2021,16:26,QUEENS,11432,40.70794,-73.784935,"(40.70794, -73.784935)",,,175-15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4488364,Taxi,Sedan,Box Truck,, +05/05/2021,5:27,BROOKLYN,11214,40.59958,-73.98997,"(40.59958, -73.98997)",,,2366 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413328,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:50,BROOKLYN,11224,40.57858,-73.9884,"(40.57858, -73.9884)",WEST 21 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414061,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +05/01/2021,0:30,BRONX,10469,40.86227,-73.83102,"(40.86227, -73.83102)",,,1990 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4414336,Sedan,Sedan,,, +05/06/2021,10:01,,,40.68085,-73.97112,"(40.68085, -73.97112)",CARLTON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414356,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,9:42,QUEENS,11417,40.685085,-73.83512,"(40.685085, -73.83512)",107 STREET,103 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4414129,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,16:09,MANHATTAN,10025,40.80297,-73.96387,"(40.80297, -73.96387)",CATHEDRAL PARKWAY,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4413745,Sedan,Taxi,,, +05/05/2021,12:30,,,,,,HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413981,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,12:42,BROOKLYN,11222,40.728924,-73.957436,"(40.728924, -73.957436)",,,122 FRANKLIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,13:05,,,40.889927,-73.9084,"(40.889927, -73.9084)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4414105,Box Truck,,,, +05/06/2021,11:30,,,40.759914,-73.75207,"(40.759914, -73.75207)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414015,Sedan,Sedan,,, +05/06/2021,11:55,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414275,Sedan,Sedan,,, +05/05/2021,6:40,BROOKLYN,11207,40.660217,-73.89675,"(40.660217, -73.89675)",NEW LOTS AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,18:00,MANHATTAN,10001,40.744644,-73.988846,"(40.744644, -73.988846)",,,1158 BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4414033,Bike,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,13:20,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413720,Sedan,,,, +05/06/2021,0:00,BROOKLYN,11228,40.620903,-74.006805,"(40.620903, -74.006805)",74 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414203,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,22:07,BROOKLYN,11221,40.68614,-73.91619,"(40.68614, -73.91619)",,,1550 BROADWAY,1,0,0,0,0,0,1,0,Other Vehicular,Turning Improperly,Unspecified,Unspecified,,4413807,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/03/2021,0:31,,,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414341,Sedan,,,, +05/06/2021,18:00,,,40.65492,-73.726395,"(40.65492, -73.726395)",HOOK CREEK BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414262,Sedan,,,, +05/04/2021,17:44,BRONX,10466,40.887497,-73.8621,"(40.887497, -73.8621)",,,667 EAST 224 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414572,Ambulance,Sedan,,, +05/05/2021,21:32,MANHATTAN,10023,40.772987,-73.98208,"(40.772987, -73.98208)",COLUMBUS AVENUE,WEST 65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414071,Sedan,Sedan,Sedan,, +05/06/2021,16:20,BROOKLYN,11215,40.66115,-73.98018,"(40.66115, -73.98018)",PROSPECT PARK WEST,15 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4414358,Moped,,,, +05/07/2021,17:00,STATEN ISLAND,10314,40.613075,-74.12257,"(40.613075, -74.12257)",VICTORY BOULEVARD,MANOR ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414545,Sedan,,,, +04/30/2021,18:40,,,40.613243,-74.155304,"(40.613243, -74.155304)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414375,Sedan,Sedan,,, +05/07/2021,15:03,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",WEST 178 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:30,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413765,Sedan,Box Truck,,, +05/05/2021,9:40,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413972,Sedan,Sedan,,, +05/05/2021,18:18,BROOKLYN,11234,40.61782,-73.94309,"(40.61782, -73.94309)",,,3201 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4414717,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,18:19,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414828,Sedan,Convertible,,, +05/07/2021,9:18,BROOKLYN,11209,40.619633,-74.025856,"(40.619633, -74.025856)",,,544 88 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4414204,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/06/2021,7:05,MANHATTAN,10017,40.75457,-73.97169,"(40.75457, -73.97169)",EAST 48 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413999,Sedan,Bus,,, +05/06/2021,7:27,MANHATTAN,10013,40.72486,-74.00595,"(40.72486, -74.00595)",,,121 VARICK STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4414189,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,7:50,STATEN ISLAND,10307,40.511875,-74.24958,"(40.511875, -74.24958)",,,127 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414363,Sedan,,,, +05/05/2021,19:58,BRONX,10468,40.862537,-73.90945,"(40.862537, -73.90945)",,,208 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413788,Sedan,Sedan,,, +05/02/2021,20:35,BROOKLYN,11218,40.639378,-73.985725,"(40.639378, -73.985725)",,,1353 40 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4414627,Bike,,,, +05/07/2021,13:34,,,40.843655,-73.93065,"(40.843655, -73.93065)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414789,Sedan,,,, +05/06/2021,19:30,,,40.58562,-73.95486,"(40.58562, -73.95486)",SHORE PARKWAY,EAST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414151,Station Wagon/Sport Utility Vehicle,,,, +04/27/2021,18:30,MANHATTAN,10011,40.736584,-73.99498,"(40.736584, -73.99498)",,,39 WEST 14 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4414688,Bike,,,, +05/06/2021,18:07,BRONX,10451,40.824806,-73.91352,"(40.824806, -73.91352)",MELROSE AVENUE,EAST 162 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414871,,,,, +05/07/2021,9:30,QUEENS,11385,40.701397,-73.90533,"(40.701397, -73.90533)",,,804 SENECA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414741,Sedan,Bus,,, +05/07/2021,0:20,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414117,Sedan,,,, +05/06/2021,15:30,,,40.60459,-74.02212,"(40.60459, -74.02212)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414052,Sedan,Sedan,,, +05/05/2021,22:43,,,40.62194,-73.91753,"(40.62194, -73.91753)",RALPH AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414172,Sedan,,,, +05/05/2021,12:07,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413627,Tractor Truck Diesel,Sedan,,, +05/05/2021,12:30,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,EDSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413661,Sedan,Sedan,,, +05/06/2021,18:05,BROOKLYN,11237,40.695847,-73.908806,"(40.695847, -73.908806)",IRVING AVENUE,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4414431,Sedan,,,, +05/05/2021,15:05,BROOKLYN,11219,40.628845,-73.99855,"(40.628845, -73.99855)",60 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413909,Dump,,,, +05/07/2021,9:00,,,40.75228,-73.93562,"(40.75228, -73.93562)",29 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414866,Sedan,,,, +05/01/2021,13:30,MANHATTAN,10128,40.780693,-73.9466,"(40.780693, -73.9466)",EAST 92 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414390,AMBULANCE,Sedan,,, +05/06/2021,21:52,,,40.629036,-74.16538,"(40.629036, -74.16538)",NETHERLAND AVENUE,GRANDVIEW AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414215,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,17:45,MANHATTAN,10002,40.714012,-73.990776,"(40.714012, -73.990776)",,,156 EAST BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414110,Sedan,Sedan,,, +05/05/2021,8:30,,,,,,42 avenue,214 street,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413739,Bus,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,19:55,STATEN ISLAND,10314,40.611427,-74.116844,"(40.611427, -74.116844)",SLOSSON AVENUE,REON AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4488694,Sedan,Sedan,Sedan,, +05/06/2021,7:52,,,40.8451,-73.90931,"(40.8451, -73.90931)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413957,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,13:32,BRONX,10465,40.828125,-73.84105,"(40.828125, -73.84105)",BRUCKNER BOULEVARD,BRUSH AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,Unspecified,,,4414230,Sedan,Taxi,Sedan,, +05/07/2021,8:28,BRONX,10469,40.880947,-73.85456,"(40.880947, -73.85456)",PAULDING AVENUE,EAST 219 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414592,Sedan,Sedan,,, +05/07/2021,20:35,QUEENS,11354,40.76316,-73.8164,"(40.76316, -73.8164)",ROOSEVELT AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414487,,,,, +05/07/2021,18:10,QUEENS,11377,40.740784,-73.89893,"(40.740784, -73.89893)",QUEENS BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414252,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/05/2021,16:35,BROOKLYN,11225,40.663124,-73.9509,"(40.663124, -73.9509)",NOSTRAND AVENUE,STERLING STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414076,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,16:30,,,40.678726,-73.91906,"(40.678726, -73.91906)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414770,Sedan,Sedan,,, +05/05/2021,5:48,,,40.72839,-73.83302,"(40.72839, -73.83302)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4413599,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,0:36,BROOKLYN,11226,40.651783,-73.962364,"(40.651783, -73.962364)",,,1834 CATON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4413860,Sedan,,,, +05/06/2021,5:38,QUEENS,11420,40.664413,-73.81504,"(40.664413, -73.81504)",,,150-59 126 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4413915,Sedan,Sedan,Sedan,, +04/29/2021,10:00,MANHATTAN,10128,40.782307,-73.95042,"(40.782307, -73.95042)",,,229 EAST 92 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414848,Sedan,Box Truck,,, +05/06/2021,7:51,,,40.689228,-73.957,"(40.689228, -73.957)",FRANKLIN AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4414658,Sedan,Bus,,, +05/05/2021,10:15,BROOKLYN,11215,40.677834,-73.98826,"(40.677834, -73.98826)",NEVINS STREET,CARROLL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Pavement Slippery,,,,4413651,Van,Van,,, +05/05/2021,4:50,,,40.678993,-73.7298,"(40.678993, -73.7298)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413777,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,21:19,QUEENS,11427,40.7216,-73.75868,"(40.7216, -73.75868)",HILLSIDE AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414290,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,10:28,BRONX,10453,40.848022,-73.90859,"(40.848022, -73.90859)",EAST 176 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414010,Sedan,,,, +05/07/2021,19:25,MANHATTAN,10036,40.757572,-73.9866,"(40.757572, -73.9866)",,,216 WEST 44 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414936,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,15:24,MANHATTAN,10037,40.81194,-73.94244,"(40.81194, -73.94244)",,,434 LENOX AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414395,PK,Sedan,,, +05/06/2021,3:00,,,40.740837,-73.78656,"(40.740837, -73.78656)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4414310,Sedan,,,, +05/06/2021,12:55,QUEENS,11433,40.695995,-73.782776,"(40.695995, -73.782776)",MERRICK BOULEVARD,110 AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414042,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/06/2021,1:48,,,40.75791,-73.85857,"(40.75791, -73.85857)",NORTHERN BOULEVARD,111 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413965,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,6:40,BROOKLYN,11223,40.597286,-73.96192,"(40.597286, -73.96192)",,,2141 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414184,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,16:45,BRONX,10471,40.90535,-73.89646,"(40.90535, -73.89646)",,,6485 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4413726,Sedan,,,, +05/05/2021,17:30,QUEENS,11375,40.714584,-73.84831,"(40.714584, -73.84831)",71 AVENUE,INGRAM STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4414475,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/20/2021,12:50,MANHATTAN,10039,40.82481,-73.93679,"(40.82481, -73.93679)",7 AVENUE,WEST 150 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,5:19,,,40.69968,-73.79864,"(40.69968, -73.79864)",158 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414258,Tractor Truck Diesel,,,, +05/05/2021,20:00,,,40.879215,-73.885284,"(40.879215, -73.885284)",EAST MOSHOLU PARKWAY SOUTH,JEROME AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4413782,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,18:06,BROOKLYN,11235,40.587616,-73.93656,"(40.587616, -73.93656)",VOORHIES AVENUE,BATCHELDER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488632,Sedan,Sedan,,, +05/07/2021,22:08,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4414552,Station Wagon/Sport Utility Vehicle,,,, +04/06/2021,11:25,QUEENS,11385,40.703484,-73.85915,"(40.703484, -73.85915)",81 ROAD,88 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4414416,Sedan,,,, +05/01/2021,20:12,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4414351,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,14:36,BROOKLYN,11222,40.72293,-73.95333,"(40.72293, -73.95333)",NASSAU AVENUE,DOBBIN STREET,,1,0,0,0,1,0,0,0,Pavement Slippery,Unspecified,,,,4414886,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,20:50,BROOKLYN,11209,40.633957,-74.02886,"(40.633957, -74.02886)",,,220 72 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4414284,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/07/2021,20:20,BROOKLYN,11226,40.647995,-73.952774,"(40.647995, -73.952774)",ALBEMARLE ROAD,VERONICA PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,Unspecified,,4414704,Sedan,Sedan,Sedan,Sedan, +05/06/2021,1:31,BRONX,10466,40.8869,-73.83336,"(40.8869, -73.83336)",HARPER AVENUE,CONNER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414578,Sedan,Sedan,,, +05/06/2021,19:30,,,,,,NARROWS ROAD SOUTH,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414380,Sedan,Sedan,Bus,, +05/07/2021,16:52,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414619,Sedan,PK,,, +05/06/2021,15:20,,,40.72703,-73.85392,"(40.72703, -73.85392)",QUEENS BOULEVARD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414320,Sedan,E-Bike,,, +05/06/2021,16:00,,,40.767998,-73.830864,"(40.767998, -73.830864)",32 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414279,Station Wagon/Sport Utility Vehicle,Van,,, +05/06/2021,12:48,BROOKLYN,11226,40.64872,-73.96491,"(40.64872, -73.96491)",CHURCH AVENUE,EAST 16 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414926,Sedan,,,, +05/06/2021,17:20,BRONX,10454,40.80757,-73.91696,"(40.80757, -73.91696)",,,276 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4414141,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,11:20,,,40.671787,-73.95311,"(40.671787, -73.95311)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414096,Sedan,,,, +05/05/2021,21:04,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,NEW YORK AVENUE,,3,0,2,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4414004,Sedan,Sedan,,, +04/26/2021,14:45,,,40.8297,-73.91932,"(40.8297, -73.91932)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414348,Bus,,,, +05/07/2021,11:45,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4414682,Sedan,Sedan,,, +05/07/2021,12:00,BRONX,10457,40.84961,-73.89799,"(40.84961, -73.89799)",,,4298 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414408,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,8:00,,,40.89675,-73.85988,"(40.89675, -73.85988)",EAST 236 STREET,BRONX BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414596,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/06/2021,17:40,BRONX,10467,40.87345,-73.88096,"(40.87345, -73.88096)",,,259 EAST MOSHOLU PARKWAY NORTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414134,Sedan,,,, +05/06/2021,17:20,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",EASTERN PARKWAY,STONE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414528,Sedan,,,, +05/05/2021,23:17,QUEENS,11418,40.702904,-73.81882,"(40.702904, -73.81882)",,,132-59 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4413902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/20/2021,9:25,BRONX,10460,40.8399,-73.87562,"(40.8399, -73.87562)",EAST TREMONT AVENUE,BRONX PARK AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4488160,Sedan,Sedan,,, +05/07/2021,18:23,,,40.679337,-73.94405,"(40.679337, -73.94405)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4414652,Sedan,Sedan,,, +05/06/2021,11:59,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4414226,Sedan,Sedan,,, +05/05/2021,7:47,MANHATTAN,10035,40.800648,-73.938034,"(40.800648, -73.938034)",,,2205 3 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413517,Sedan,comm,,, +05/06/2021,10:00,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",78 STREET,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,Unspecified,,4413948,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/07/2021,9:20,BROOKLYN,11238,40.671875,-73.963585,"(40.671875, -73.963585)",,,175 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414211,Sedan,Pick-up Truck,,, +05/05/2021,12:14,BROOKLYN,11213,40.67172,-73.93524,"(40.67172, -73.93524)",,,1307 STERLING PLACE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4413700,Bus,Sedan,,, +05/06/2021,14:55,BROOKLYN,11234,40.592636,-73.90362,"(40.592636, -73.90362)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414179,Sedan,Sedan,,, +05/05/2021,9:30,BROOKLYN,11215,40.656147,-73.97732,"(40.656147, -73.97732)",PROSPECT AVENUE,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4413921,Trailer,Sedan,,, +04/28/2021,8:55,,,40.69324,-73.92865,"(40.69324, -73.92865)",BROADWAY,KOSCIUSZKO STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414426,Sedan,Sedan,,, +05/05/2021,20:29,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4413865,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,12:00,,,40.726036,-73.80858,"(40.726036, -73.80858)",75 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414446,Sedan,,,, +04/25/2021,0:30,,,40.76249,-73.839584,"(40.76249, -73.839584)",VAN WYCK EXPWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4414753,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,14:53,QUEENS,11417,40.681988,-73.83698,"(40.681988, -73.83698)",LIBERTY AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414243,Sedan,,,, +05/06/2021,3:43,,,,,,TRIBOROUGH BRIDGE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4414328,Sedan,Sedan,,, +05/07/2021,13:11,BROOKLYN,11207,40.669926,-73.89149,"(40.669926, -73.89149)",SUTTER AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414968,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,19:57,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4413797,Station Wagon/Sport Utility Vehicle,Bike,,, +05/06/2021,8:00,BROOKLYN,11206,40.7091,-73.94009,"(40.7091, -73.94009)",BUSHWICK AVENUE,SCHOLES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414145,Sedan,,,, +05/07/2021,8:30,,,40.73319,-73.866875,"(40.73319, -73.866875)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4414294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,16:35,MANHATTAN,10035,40.795967,-73.93249,"(40.795967, -73.93249)",,,324 PLEASANT AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414047,Sedan,Sedan,,, +05/07/2021,14:00,,,40.709023,-73.798195,"(40.709023, -73.798195)",164 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414315,Station Wagon/Sport Utility Vehicle,Bus,,, +05/05/2021,0:50,,,40.716194,-73.996086,"(40.716194, -73.996086)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413825,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,9:11,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4414005,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,22:15,MANHATTAN,10019,,,,12 AVENUE,WEST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414158,Sedan,Sedan,,, +05/05/2021,14:30,,,,,,LINDEN PLACE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,13:45,,,40.85214,-73.92071,"(40.85214, -73.92071)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4414383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,17:30,,,40.646557,-73.92593,"(40.646557, -73.92593)",BEVERLEY ROAD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4414696,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,18:00,QUEENS,11369,40.761982,-73.87896,"(40.761982, -73.87896)",30 AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413959,Sedan,Sedan,,, +05/04/2021,5:50,STATEN ISLAND,10309,40.53691,-74.22503,"(40.53691, -74.22503)",SHARROTTS ROAD,VETERANS ROAD WEST,,0,0,0,0,0,0,0,0,Unsafe Speed,Pavement Slippery,,,,4414366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,1:52,,,40.57858,-73.9884,"(40.57858, -73.9884)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4414559,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/06/2021,17:15,BRONX,10466,40.88527,-73.85511,"(40.88527, -73.85511)",EAST 224 STREET,BRONXWOOD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414582,Pick-up Truck,,,, +05/04/2021,19:00,,,40.687824,-73.74116,"(40.687824, -73.74116)",121 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414299,,,,, +05/06/2021,22:35,BROOKLYN,11226,40.641212,-73.96444,"(40.641212, -73.96444)",CORTELYOU ROAD,MARLBOROUGH ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,9:30,BROOKLYN,11217,40.67855,-73.97314,"(40.67855, -73.97314)",,,126 PROSPECT PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,11:00,STATEN ISLAND,10301,40.620686,-74.11002,"(40.620686, -74.11002)",CLOVE ROAD,BARD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4414512,Sedan,Sedan,Sedan,, +05/06/2021,9:15,QUEENS,11367,40.718426,-73.817505,"(40.718426, -73.817505)",,,79-15 MAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414316,Convertible,,,, +05/06/2021,11:00,QUEENS,11385,40.698677,-73.90954,"(40.698677, -73.90954)",MADISON STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414423,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,0:38,BRONX,10466,40.88851,-73.86009,"(40.88851, -73.86009)",WHITE PLAINS ROAD,EAST 226 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414573,Sedan,Motorscooter,,, +05/02/2021,23:44,MANHATTAN,10029,40.793816,-73.94012,"(40.793816, -73.94012)",EAST 111 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4414376,Taxi,Moped,,, +05/05/2021,17:20,BROOKLYN,11229,40.600883,-73.958694,"(40.600883, -73.958694)",EAST 13 STREET,AVENUE T,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,20:50,BROOKLYN,11218,40.634094,-73.97206,"(40.634094, -73.97206)",,,601 OCEAN PARKWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4414612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/05/2021,15:45,BROOKLYN,11222,0,0,"(0.0, 0.0)",MC GUINNESS BOULEVARD,KENT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413781,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,12:50,,,,,,SEDGWICK AVENUE,WEST KINGSBRIDGE ROAD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4484893,E-Bike,,,, +05/03/2021,20:05,QUEENS,11385,40.704742,-73.86016,"(40.704742, -73.86016)",UNION TURNPIKE,88 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414465,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,0:00,,,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4414903,Sedan,,,, +05/07/2021,14:45,BROOKLYN,11201,40.686646,-73.9924,"(40.686646, -73.9924)",,,32 WYCKOFF STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414216,Sedan,,,, +05/07/2021,17:00,BROOKLYN,11226,40.64803,-73.966675,"(40.64803, -73.966675)",RUGBY ROAD,CHURCH AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414524,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,18:25,MANHATTAN,10013,40.714466,-73.99948,"(40.714466, -73.99948)",,,100 MOSCO STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4414606,Sedan,,,, +05/02/2021,14:32,,,40.836437,-73.91842,"(40.836437, -73.91842)",EAST 168 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414344,Sedan,Bike,,, +05/05/2021,8:40,BROOKLYN,11237,40.70854,-73.927414,"(40.70854, -73.927414)",VARICK AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,18:45,BROOKLYN,11233,40.681236,-73.91142,"(40.681236, -73.91142)",,,55 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414532,Sedan,,,, +05/06/2021,8:08,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414280,Station Wagon/Sport Utility Vehicle,Van,,, +05/05/2021,17:04,BRONX,10473,40.82226,-73.84564,"(40.82226, -73.84564)",HAVEMEYER AVENUE,HOMER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413928,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,5:00,,,40.6884,-73.95118,"(40.6884, -73.95118)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4414642,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,4:10,,,40.828407,-73.84392,"(40.828407, -73.84392)",BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413531,Sedan,,,, +05/05/2021,17:50,QUEENS,11433,40.688778,-73.786446,"(40.688778, -73.786446)",LINDEN BOULEVARD,DILLON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413840,Sedan,Sedan,,, +04/28/2021,0:15,,,40.67117,-73.92534,"(40.67117, -73.92534)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414398,Sedan,,,, +05/05/2021,9:20,,,40.82949,-73.87326,"(40.82949, -73.87326)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4413666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,15:20,QUEENS,11385,40.710094,-73.90029,"(40.710094, -73.90029)",GROVE STREET,61 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4414742,Sedan,Sedan,,, +05/06/2021,10:27,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4414194,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/06/2021,12:49,QUEENS,11691,40.594845,-73.761925,"(40.594845, -73.761925)",SEAGIRT AVENUE,BEACH 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414332,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,1:35,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414440,Sedan,,,, +05/05/2021,19:20,BROOKLYN,11226,40.654068,-73.96177,"(40.654068, -73.96177)",WOODRUFF AVENUE,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4413857,Sedan,Pick-up Truck,,, +05/05/2021,19:55,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413744,Box Truck,Box Truck,,, +05/05/2021,18:50,QUEENS,11412,40.701824,-73.753494,"(40.701824, -73.753494)",202 STREET,113 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413835,Sedan,Sedan,,, +05/06/2021,8:50,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414165,Sedan,,,, +05/05/2021,17:00,STATEN ISLAND,10309,40.52864,-74.21685,"(40.52864, -74.21685)",BLOOMINGDALE ROAD,DRUMGOOLE ROAD WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,7:40,QUEENS,11373,40.736057,-73.87669,"(40.736057, -73.87669)",,,86-35 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413791,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,8:00,MANHATTAN,10001,,,,12 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4414029,Sedan,Pick-up Truck,,, +05/06/2021,16:20,MANHATTAN,10032,40.83538,-73.94219,"(40.83538, -73.94219)",,,555 WEST 160 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414777,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,5:22,,,40.678276,-73.910805,"(40.678276, -73.910805)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413343,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,15:00,QUEENS,11357,40.775967,-73.79927,"(40.775967, -73.79927)",FRANCIS LEWIS BOULEVARD,24 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4484769,Sedan,,,, +05/06/2021,18:50,QUEENS,11368,40.75207,-73.86896,"(40.75207, -73.86896)",,,98-15 37 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414062,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +05/07/2021,2:00,QUEENS,11692,40.598885,-73.79914,"(40.598885, -73.79914)",,,69-07 BAYFIELD AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414496,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,12:00,BROOKLYN,11234,40.628387,-73.92431,"(40.628387, -73.92431)",AVENUE J,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414183,Sedan,,,, +05/06/2021,21:23,,,40.62884,-74.15267,"(40.62884, -74.15267)",,,318 SIMONSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414807,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,10:12,BROOKLYN,11230,40.622696,-73.961716,"(40.622696, -73.961716)",,,1402 AVENUE K,0,0,0,0,0,0,0,0,Unspecified,,,,,4413980,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,18:08,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",EAST 167 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414337,Sedan,,,, +05/06/2021,17:30,,,40.666416,-73.80631,"(40.666416, -73.80631)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414128,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,7:45,,,40.666355,-73.80163,"(40.666355, -73.80163)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414370,Carry All,Sedan,,, +05/06/2021,10:05,BROOKLYN,11212,,,,,,479 CHRISTOPHER AVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414538,Sedan,,,, +05/07/2021,16:16,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414722,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,7:25,BRONX,10475,40.88254,-73.826965,"(40.88254, -73.826965)",TILLOTSON AVENUE,MERRITT AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4414221,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,15:14,MANHATTAN,10021,40.76781,-73.96202,"(40.76781, -73.96202)",3 AVENUE,EAST 69 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4414387,Bus,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,8:00,BRONX,10469,40.880157,-73.848076,"(40.880157, -73.848076)",EASTCHESTER ROAD,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,6:15,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",NORTH CONDUIT AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Other Vehicular,,,4414359,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/05/2021,23:07,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414734,Sedan,Sedan,,, +05/07/2021,23:00,,,40.83562,-73.927864,"(40.83562, -73.927864)",OGDEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414780,Sedan,Sedan,,, +05/06/2021,19:06,,,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4414419,Sedan,Sedan,,, +05/07/2021,19:30,STATEN ISLAND,10301,40.61148,-74.098595,"(40.61148, -74.098595)",LITTLE CLOVE ROAD,CLOVE ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Passing Too Closely,,,,4414547,Sedan,Sedan,,, +04/29/2021,20:00,BROOKLYN,11216,40.69024,-73.9482,"(40.69024, -73.9482)",LAFAYETTE AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414634,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,0:40,,,40.69614,-73.9734,"(40.69614, -73.9734)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414112,Sedan,Sedan,,, +05/01/2021,20:20,QUEENS,11369,40.761265,-73.87501,"(40.761265, -73.87501)",30 AVENUE,94 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4414235,Station Wagon/Sport Utility Vehicle,Bike,,, +04/25/2021,9:35,,,40.655575,-73.926895,"(40.655575, -73.926895)",LENOX ROAD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4414692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,21:30,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414456,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,11:42,BRONX,10459,40.822456,-73.88728,"(40.822456, -73.88728)",SHERIDAN EXPRESSWAY,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4414248,Box Truck,Garbage or Refuse,Motorcycle,, +05/02/2021,13:00,BRONX,10457,40.843063,-73.90954,"(40.843063, -73.90954)",MOUNT EDEN PARKWAY,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414342,Sedan,Sedan,,, +05/07/2021,19:20,MANHATTAN,10016,40.748985,-73.979965,"(40.748985, -73.979965)",PARK AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,12:40,BROOKLYN,11209,40.633827,-74.031456,"(40.633827, -74.031456)",,,156 73 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4488230,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,7:03,,,40.71754,-73.89931,"(40.71754, -73.89931)",MOUNT OLIVET CRESCENT,60 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4413917,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,11:00,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413650,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,12:50,,,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413652,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,14:58,STATEN ISLAND,10308,40.559124,-74.15494,"(40.559124, -74.15494)",BARLOW AVENUE,STIEG AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,11:00,BROOKLYN,11224,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414060,Sedan,PK,,, +05/05/2021,14:00,,,40.69637,-73.837906,"(40.69637, -73.837906)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4413676,,,,, +05/05/2021,8:30,MANHATTAN,10013,40.71755,-73.99932,"(40.71755, -73.99932)",CANAL STREET,BAXTER STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414963,Sedan,Sedan,,, +12/20/2021,19:48,BRONX,10451,40.811314,-73.92759,"(40.811314, -73.92759)",,,259 EAST 138 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4488302,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,22:30,BROOKLYN,11213,40.6746,-73.9389,"(40.6746, -73.9389)",SAINT MARKS AVENUE,ALBANY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414687,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:45,,,40.701237,-73.79465,"(40.701237, -73.79465)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414081,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,12:15,QUEENS,11366,40.72584,-73.81037,"(40.72584, -73.81037)",,,158-15 75 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4413725,Sedan,,,, +05/07/2021,18:55,,,40.598846,-73.74898,"(40.598846, -73.74898)",NEW HAVEN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414402,Station Wagon/Sport Utility Vehicle,Bike,,, +05/06/2021,8:16,MANHATTAN,10021,40.767803,-73.95601,"(40.767803, -73.95601)",EAST 72 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4413937,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,16:35,MANHATTAN,10016,40.7438,-73.98373,"(40.7438, -73.98373)",,,419 PARK AVENUE SOUTH,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414585,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,11:00,MANHATTAN,10002,40.716976,-73.98229,"(40.716976, -73.98229)",DELANCEY STREET,WILLETT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414109,3-Door,,,, +05/05/2021,8:30,MANHATTAN,10028,40.774654,-73.9541,"(40.774654, -73.9541)",EAST 81 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4413571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,13:56,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414267,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,17:30,BRONX,10459,40.821865,-73.88936,"(40.821865, -73.88936)",,,940 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413894,Sedan,,,, +05/07/2021,11:00,MANHATTAN,10128,40.782833,-73.95948,"(40.782833, -73.95948)",5 AVENUE,EAST 88 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414198,Bike,,,, +05/07/2021,19:35,BROOKLYN,11211,40.71469,-73.942696,"(40.71469, -73.942696)",METROPOLITAN AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414666,Box Truck,Sedan,,, +05/06/2021,22:42,,,40.848114,-73.901474,"(40.848114, -73.901474)",VALENTINE AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Other Vehicular,,,,4414434,Taxi,FIRE TRUCK,,, +05/07/2021,22:50,QUEENS,11379,40.712296,-73.88375,"(40.712296, -73.88375)",,,71-21 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414417,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:00,QUEENS,11102,40.769028,-73.92242,"(40.769028, -73.92242)",,,28-10 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414865,Sedan,,,, +05/07/2021,0:20,QUEENS,11385,40.70019,-73.90561,"(40.70019, -73.90561)",CORNELIA STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414391,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,4:50,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413932,Tractor Truck Diesel,Sedan,,, +05/05/2021,18:00,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4414246,Bike,Pick-up Truck,Sedan,, +05/07/2021,20:10,,,40.892956,-73.86382,"(40.892956, -73.86382)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4414593,Sedan,Sedan,,, +05/05/2021,19:20,BROOKLYN,11220,40.640842,-74.01843,"(40.640842, -74.01843)",60 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413953,Sedan,,,, +05/07/2021,6:00,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414225,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,13:00,BROOKLYN,11206,40.70539,-73.93333,"(40.70539, -73.93333)",GRATTAN STREET,BOGART STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414665,Box Truck,Box Truck,,, +05/05/2021,9:30,QUEENS,11367,40.732037,-73.814926,"(40.732037, -73.814926)",KISSENA BOULEVARD,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413600,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,13:20,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,8:00,BRONX,10475,40.864414,-73.82194,"(40.864414, -73.82194)",,,131 EINSTEIN LOOP,0,0,0,0,0,0,0,0,Unspecified,,,,,4414927,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:00,,,40.77622,-73.97596,"(40.77622, -73.97596)",WEST 72 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414733,Sedan,Sedan,,, +05/06/2021,15:16,,,40.732613,-73.925156,"(40.732613, -73.925156)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414097,Bus,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,18:53,MANHATTAN,10010,40.7429,-73.99281,"(40.7429, -73.99281)",AVENUE OF THE AMERICAS,WEST 23 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414683,Sedan,,,, +05/06/2021,17:09,BRONX,10457,40.842346,-73.89836,"(40.842346, -73.89836)",EAST 174 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,8:26,BRONX,10460,40.8406,-73.87972,"(40.8406, -73.87972)",,,2020 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414407,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,13:00,BRONX,10458,40.867714,-73.88162,"(40.867714, -73.88162)",,,2995 BOTANICAL SQUARE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414621,Sedan,,,, +05/07/2021,20:00,BRONX,10457,40.84707,-73.89597,"(40.84707, -73.89597)",,,4222 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,15:05,BROOKLYN,11228,40.609707,-74.011284,"(40.609707, -74.011284)",BENSON AVENUE,15 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4414104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,9:16,QUEENS,11423,40.714443,-73.75999,"(40.714443, -73.75999)",93 AVENUE,199 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4413718,Sedan,Sedan,,, +05/06/2021,6:35,,,40.602535,-73.99321,"(40.602535, -73.99321)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413808,Sedan,Tractor Truck Gasoline,,, +05/06/2021,19:30,QUEENS,11377,40.741077,-73.900566,"(40.741077, -73.900566)",QUEENS BOULEVARD,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414092,Sedan,Garbage or Refuse,,, +05/06/2021,11:30,QUEENS,11378,,,,,,5845 47st,0,0,0,0,0,0,0,0,Unspecified,,,,,4413978,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,19:18,,,40.852306,-73.89811,"(40.852306, -73.89811)",EAST 180 STREET,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414374,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,15:00,BROOKLYN,11209,40.614098,-74.036316,"(40.614098, -74.036316)",,,123 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414051,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,17:00,,,40.61578,-73.99995,"(40.61578, -73.99995)",NEW UTRECHT AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4488870,Bike,,,, +04/28/2021,16:15,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414236,Sedan,Sedan,,, +05/06/2021,20:08,BROOKLYN,11226,40.649788,-73.9622,"(40.649788, -73.9622)",CHURCH AVENUE,EAST 19 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414518,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,11:05,QUEENS,11365,40.746296,-73.78725,"(40.746296, -73.78725)",53 AVENUE,190 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4413741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,21:00,BROOKLYN,11216,40.67739,-73.94508,"(40.67739, -73.94508)",,,1374 PACIFIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414214,Sedan,,,, +05/05/2021,9:24,,,40.80293,-73.96759,"(40.80293, -73.96759)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4413530,Box Truck,Sedan,,, +05/07/2021,19:20,QUEENS,11422,40.63588,-73.740204,"(40.63588, -73.740204)",,,253-01 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414268,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,11:00,BROOKLYN,11228,40.61334,-74.01109,"(40.61334, -74.01109)",14 AVENUE,85 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414205,E-Bike,,,, +05/05/2021,13:30,QUEENS,11433,,,,guy r brewer blvd,jamaica ave,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413711,Sedan,,,, +05/07/2021,8:34,MANHATTAN,10029,40.794,-73.94499,"(40.794, -73.94499)",,,1753 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4414401,Sedan,Sedan,Sedan,Sedan, +05/07/2021,0:55,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4414130,Sedan,Sedan,,, +05/07/2021,21:00,QUEENS,11358,40.753838,-73.805824,"(40.753838, -73.805824)",46 AVENUE,161 STREET,,1,0,0,0,0,0,1,0,Illnes,,,,,4414447,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,4:24,BROOKLYN,11221,40.68925,-73.92165,"(40.68925, -73.92165)",,,1380 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4414769,Sedan,,,, +05/05/2021,19:13,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4413874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,14:13,BROOKLYN,11219,40.62973,-73.99244,"(40.62973, -73.99244)",,,1442 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414626,Sedan,,,, +05/05/2021,16:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414327,Sedan,Sedan,,, +05/05/2021,0:34,,,40.67341,-73.93348,"(40.67341, -73.93348)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413688,Sedan,Sedan,,, +05/07/2021,13:30,QUEENS,11362,40.759743,-73.71993,"(40.759743, -73.71993)",,,262-44 60 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414289,Sedan,Dump,,, +05/06/2021,0:00,BROOKLYN,11223,40.60536,-73.96174,"(40.60536, -73.96174)",CONEY ISLAND AVENUE,AVENUE R,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414152,Sedan,,,, +05/06/2021,8:42,QUEENS,11694,40.57588,-73.85486,"(40.57588, -73.85486)",NEWPORT AVENUE,BEACH 136 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414019,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,16:10,,,40.588562,-74.14584,"(40.588562, -74.14584)",ROCKLAND AVENUE,FOREST HILL ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414806,Sedan,Sedan,,, +05/06/2021,8:30,,,40.783993,-73.95442,"(40.783993, -73.95442)",EAST 92 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4413938,Station Wagon/Sport Utility Vehicle,,,, +04/25/2021,11:40,BROOKLYN,11219,40.633137,-73.9905,"(40.633137, -73.9905)",14 AVENUE,50 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414610,Box Truck,,,, +05/07/2021,0:40,BROOKLYN,11234,40.63147,-73.91955,"(40.63147, -73.91955)",FLATLANDS AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414173,Bus,,,, +05/05/2021,16:55,,,,,,PELHAM PARKWAY,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4414369,Sedan,Taxi,Sedan,, +05/05/2021,21:58,MANHATTAN,10009,40.724556,-73.98555,"(40.724556, -73.98555)",,,172 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413767,Station Wagon/Sport Utility Vehicle,Moped,,, +05/05/2021,16:09,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413908,Van,Bus,,, +05/07/2021,18:00,,,40.884575,-73.89889,"(40.884575, -73.89889)",WEST 238 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414564,,,,, +05/04/2021,16:39,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414721,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,9:34,BROOKLYN,11239,40.64784,-73.886154,"(40.64784, -73.886154)",,,592 LOUISIANA AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,Unspecified,4414439,Sedan,Sedan,Sedan,Sedan,Sedan +05/06/2021,8:13,QUEENS,11420,40.66549,-73.819534,"(40.66549, -73.819534)",122 STREET,NORTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Other Vehicular,Other Vehicular,,,4413947,Sedan,Convertible,Station Wagon/Sport Utility Vehicle,, +05/07/2021,17:15,BRONX,10465,40.829685,-73.81989,"(40.829685, -73.81989)",THROGS NECK EXPRESSWAY,PHILIP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414229,Station Wagon/Sport Utility Vehicle,PK,,, +05/05/2021,15:10,BRONX,10473,40.822502,-73.84885,"(40.822502, -73.84885)",CASTLE HILL AVENUE,VIRGIL PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2021,15:05,,,40.804745,-73.91194,"(40.804745, -73.91194)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,23:51,,,40.666187,-73.916664,"(40.666187, -73.916664)",SARATOGA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413801,Bus,,,, +05/05/2021,2:05,BRONX,10466,40.90152,-73.84695,"(40.90152, -73.84695)",BAYCHESTER AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414577,Sedan,,,, +05/05/2021,7:40,BROOKLYN,11233,40.676273,-73.9095,"(40.676273, -73.9095)",,,2111 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,11:05,,,40.8746,-73.9097,"(40.8746, -73.9097)",BROADWAY,WEST 225 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414075,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,12:00,BROOKLYN,11216,40.68138,-73.95352,"(40.68138, -73.95352)",HALSEY STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414759,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,17:05,QUEENS,11420,40.67815,-73.83109,"(40.67815, -73.83109)",108 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414242,Sedan,Bike,,, +05/05/2021,15:08,BROOKLYN,11217,,,,FLATBUSH AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4413757,Station Wagon/Sport Utility Vehicle,Bus,,, +05/05/2021,9:50,BROOKLYN,11211,,,,METROPOLITAN AVENUE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414671,Carry All,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,17:45,,,40.625607,-74.14865,"(40.625607, -74.14865)",,,515 MORNINGSTAR ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414200,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,8:45,QUEENS,11423,40.72033,-73.76115,"(40.72033, -73.76115)",HILLSIDE AVENUE,204 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4414012,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,8:05,BROOKLYN,11236,40.64409,-73.90525,"(40.64409, -73.90525)",,,1067 EAST 94 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414185,Sedan,,,, +05/06/2021,21:00,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414274,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/05/2021,14:45,,,,,,NORTHERN BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4413749,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,20:00,MANHATTAN,10001,40.752686,-74.000534,"(40.752686, -74.000534)",WEST 31 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4414396,Sedan,Sedan,,, +05/05/2021,7:05,,,40.84782,-73.90756,"(40.84782, -73.90756)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413489,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,9:00,QUEENS,11416,40.686646,-73.849075,"(40.686646, -73.849075)",93 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414030,,,,, +05/06/2021,14:00,BROOKLYN,11249,40.699177,-73.9605,"(40.699177, -73.9605)",WALLABOUT STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414674,Station Wagon/Sport Utility Vehicle,Bus,,, +05/07/2021,0:20,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414135,Sedan,,,, +05/03/2021,16:58,,,40.827713,-73.92223,"(40.827713, -73.92223)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4414338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,8:45,BROOKLYN,11230,40.62418,-73.97048,"(40.62418, -73.97048)",AVENUE J,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413662,Sedan,Pick-up Truck,,, +05/06/2021,12:38,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4414527,Van,Box Truck,,, +05/06/2021,14:00,QUEENS,11433,40.706615,-73.78428,"(40.706615, -73.78428)",176 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4414257,Sedan,Sedan,,, +05/05/2021,2:30,QUEENS,11417,40.683994,-73.83895,"(40.683994, -73.83895)",103 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413784,Sedan,,,, +05/07/2021,22:00,BROOKLYN,11201,40.698357,-73.99631,"(40.698357, -73.99631)",CLARK STREET,COLUMBIA HEIGHTS,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414454,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,1:14,QUEENS,11429,40.71082,-73.73179,"(40.71082, -73.73179)",223 STREET,104 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414118,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,16:25,MANHATTAN,10013,40.716408,-74.00001,"(40.716408, -74.00001)",,,77 BAXTER STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4504148,Van,Sedan,,, +05/06/2021,7:00,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413983,Sedan,Sedan,,, +05/07/2021,12:50,,,40.69749,-73.92008,"(40.69749, -73.92008)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4414432,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,23:15,QUEENS,11413,40.676296,-73.74648,"(40.676296, -73.74648)",135 AVENUE,224 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414300,Sedan,Sedan,,, +05/07/2021,19:50,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",EAST 60 STREET,3 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inexperience,,,,4414829,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,23:30,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",JUNCTION BOULEVARD,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414210,Sedan,Sedan,,, +05/07/2021,20:00,BRONX,10459,40.81909,-73.90087,"(40.81909, -73.90087)",,,867 LONGWOOD AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4414322,Sedan,,,, +05/07/2021,12:44,,,40.847908,-73.87121,"(40.847908, -73.87121)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4414490,Motorcycle,Sedan,,, +05/06/2021,5:00,BROOKLYN,11234,40.61306,-73.92618,"(40.61306, -73.92618)",FLATBUSH AVENUE,AVENUE S,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414711,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/05/2021,15:55,BRONX,10452,40.843643,-73.91303,"(40.843643, -73.91303)",WALTON AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414168,Sedan,Pick-up Truck,,, +05/07/2021,8:20,,,40.707676,-73.92386,"(40.707676, -73.92386)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414970,Sedan,E BIKE,,, +05/05/2021,1:15,MANHATTAN,10022,40.7575,-73.9689,"(40.7575, -73.9689)",,,211 EAST 53 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414190,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,3:55,BROOKLYN,11234,40.63514,-73.92948,"(40.63514, -73.92948)",,,4901 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4414381,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,22:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414364,UTIL,Sedan,,, +05/07/2021,15:11,BROOKLYN,11235,40.592407,-73.93361,"(40.592407, -73.93361)",BRIGHAM STREET,AVENUE Y,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414852,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,8:00,,,40.66518,-73.83175,"(40.66518, -73.83175)",SOUTH CONDUIT AVENUE,NASSAU EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4413789,Pick-up Truck,Sedan,,, +05/06/2021,12:00,QUEENS,11385,40.709988,-73.90475,"(40.709988, -73.90475)",FOREST AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414445,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/06/2021,5:30,BRONX,10454,40.80746,-73.91347,"(40.80746, -73.91347)",,,318 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414140,Sedan,,,, +05/07/2021,11:07,,,40.703674,-73.91513,"(40.703674, -73.91513)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414427,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,9:23,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",CLAREMONT PARKWAY,FULTON AVENUE,,0,0,0,0,0,0,0,0,,,,,,4413863,,,,, +05/07/2021,9:35,MANHATTAN,10032,40.842556,-73.93924,"(40.842556, -73.93924)",,,4040 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414790,Box Truck,Box Truck,,, +05/06/2021,11:50,QUEENS,11378,40.730972,-73.92204,"(40.730972, -73.92204)",54 ROAD,46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413990,Station Wagon/Sport Utility Vehicle,Tanker,,, +05/06/2021,13:00,QUEENS,11417,40.676685,-73.84371,"(40.676685, -73.84371)",SUTTER AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414654,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2021,20:10,QUEENS,11385,40.712906,-73.90598,"(40.712906, -73.90598)",,,58-07 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,19:11,MANHATTAN,10000,40.788685,-73.9555,"(40.788685, -73.9555)",,,1 TRANSVERSE ROAD NUMBER FOUR,1,0,0,0,1,0,0,0,Obstruction/Debris,Unspecified,,,,4413776,Taxi,Bike,,, +05/06/2021,1:13,,,,,,EAST 18 STREET,avenue c,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414308,Sedan,Flat Bed,,, +05/07/2021,14:06,MANHATTAN,10036,40.757908,-73.9893,"(40.757908, -73.9893)",WEST 43 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414939,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,11:10,,,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414605,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/20/2021,15:30,,,0,0,"(0.0, 0.0)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414349,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/05/2021,12:00,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",REMSEN AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4413730,Van,Sedan,,, +05/06/2021,13:49,BROOKLYN,11229,40.598835,-73.95641,"(40.598835, -73.95641)",AVENUE U,EAST 15 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414025,Sedan,Pick-up Truck,,, +05/06/2021,12:40,QUEENS,11413,40.675884,-73.75577,"(40.675884, -73.75577)",SPRINGFIELD BOULEVARD,EAST GATE PLAZA,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414041,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,14:15,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414476,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,12:15,BROOKLYN,11234,40.632282,-73.9283,"(40.632282, -73.9283)",,,1633 UTICA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4414726,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,0:04,BROOKLYN,11235,40.586918,-73.96387,"(40.586918, -73.96387)",AVENUE Z,EAST 6 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4414558,Sedan,Sedan,Sedan,, +05/06/2021,2:30,,,40.705833,-73.81812,"(40.705833, -73.81812)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4413901,Sedan,Sedan,,, +05/05/2021,12:35,BROOKLYN,11216,0,0,"(0.0, 0.0)",,,1275 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413967,Taxi,Sedan,,, +05/05/2021,14:40,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413794,Sedan,Sedan,,, +05/05/2021,19:55,BROOKLYN,11211,40.70648,-73.96375,"(40.70648, -73.96375)",BEDFORD AVENUE,CLYMER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414147,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,15:38,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414285,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/04/2021,12:00,BRONX,10466,40.896633,-73.84796,"(40.896633, -73.84796)",,,4309 ELY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414581,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,6:00,,,40.862953,-73.89066,"(40.862953, -73.89066)",EAST 193 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4414350,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/05/2021,19:24,QUEENS,11434,40.693962,-73.77415,"(40.693962, -73.77415)",MURDOCK AVENUE,176 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4413841,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/20/2021,12:13,,,40.68221,-73.77257,"(40.68221, -73.77257)",172 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4488464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/05/2021,12:50,BROOKLYN,11234,40.632095,-73.91861,"(40.632095, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,5,0,0,0,0,0,5,0,Brakes Defective,Unspecified,,,,4414725,Pick-up Truck,Pick-up Truck,,, +05/07/2021,19:44,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",SAINT ANNS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414876,Taxi,Sedan,,, +05/07/2021,0:00,BRONX,10470,40.901535,-73.85329,"(40.901535, -73.85329)",,,4553 RICHARDSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414594,Sedan,,,, +05/05/2021,11:00,,,40.90034,-73.90591,"(40.90034, -73.90591)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414080,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,14:30,BRONX,10469,40.87122,-73.85492,"(40.87122, -73.85492)",,,1117 BURKE AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414748,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,9:10,QUEENS,11354,40.76402,-73.80901,"(40.76402, -73.80901)",,,156-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414278,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,15:00,BROOKLYN,11212,40.655643,-73.920586,"(40.655643, -73.920586)",,,435 EAST 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414003,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,23:05,QUEENS,11377,,,,69 street,30 avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414444,Sedan,Sedan,,, +05/05/2021,3:30,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",WEST MOUNT EDEN AVENUE,JEROME AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4414217,Bike,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,22:10,BROOKLYN,11220,40.634167,-74.02073,"(40.634167, -74.02073)",5 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414121,Sedan,Sedan,,, +05/05/2021,8:50,BROOKLYN,11226,40.653774,-73.95617,"(40.653774, -73.95617)",LENOX ROAD,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4413858,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,5:46,,,40.682644,-73.97175,"(40.682644, -73.97175)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414392,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,19:04,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",EAST 57 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4414114,Station Wagon/Sport Utility Vehicle,Bike,,, +05/06/2021,11:29,BRONX,10460,40.842003,-73.88375,"(40.842003, -73.88375)",,,1963 DALY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4414007,Sedan,Taxi,,, +05/05/2021,1:14,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",EAST 168 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4413416,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/06/2021,18:40,BROOKLYN,11238,40.681435,-73.96143,"(40.681435, -73.96143)",GRAND AVENUE,LEFFERTS PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414063,Sedan,Sedan,,, +05/07/2021,11:15,MANHATTAN,10001,0,0,"(0.0, 0.0)",WEST 34 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414956,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/06/2021,8:15,QUEENS,11691,40.60677,-73.74523,"(40.60677, -73.74523)",,,11-31 SAGE STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4414334,Station Wagon/Sport Utility Vehicle,Bus,,, +05/07/2021,17:41,QUEENS,11413,40.68495,-73.748085,"(40.68495, -73.748085)",,,218-27 130 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414261,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,21:30,QUEENS,11432,40.70772,-73.796326,"(40.70772, -73.796326)",89 AVENUE,165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414254,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,21:30,MANHATTAN,10001,40.752224,-74.00141,"(40.752224, -74.00141)",,,500 WEST 30 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4414026,Sedan,,,, +05/05/2021,17:40,MANHATTAN,10039,40.826622,-73.93785,"(40.826622, -73.93785)",,,54 MACOMBS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413756,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:00,,,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414531,Sedan,Sedan,,, +05/06/2021,5:30,BROOKLYN,11232,40.65263,-74.00618,"(40.65263, -74.00618)",4 AVENUE,39 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4413919,Bike,,,, +05/05/2021,12:19,MANHATTAN,10028,40.78142,-73.96019,"(40.78142, -73.96019)",,,1049 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413653,Sedan,,,, +05/06/2021,13:44,BROOKLYN,11212,40.665207,-73.91252,"(40.665207, -73.91252)",BOYLAND STREET,BLAKE AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4414539,Sedan,Sedan,Sedan,, +05/07/2021,10:30,MANHATTAN,10002,40.718765,-73.98889,"(40.718765, -73.98889)",,,100 DELANCEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414296,Box Truck,,,, +05/07/2021,14:30,,,40.666653,-73.80991,"(40.666653, -73.80991)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414645,Sedan,Sedan,,, +05/06/2021,17:25,,,40.726604,-73.789116,"(40.726604, -73.789116)",UNION TURNPIKE,SURREY PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414317,Pick-up Truck,Sedan,,, +05/02/2021,13:45,BRONX,10457,40.84569,-73.891685,"(40.84569, -73.891685)",,,681 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4414568,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,0:13,,,40.778645,-73.9892,"(40.778645, -73.9892)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414249,Sedan,,,, +04/30/2021,6:47,QUEENS,11379,40.717102,-73.879684,"(40.717102, -73.879684)",,,75-09 PENELOPE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4414422,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/05/2021,21:35,BROOKLYN,11223,40.609673,-73.96523,"(40.609673, -73.96523)",AVENUE P,EAST 8 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,13:03,,,40.829647,-73.94439,"(40.829647, -73.94439)",WEST 152 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4414360,Bike,,,, +05/06/2021,15:25,,,40.83772,-73.92763,"(40.83772, -73.92763)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4414784,Sedan,Bus,,, +05/04/2021,21:53,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4414574,Sedan,Sedan,,, +05/07/2021,16:30,,,40.82998,-73.913994,"(40.82998, -73.913994)",FINDLAY AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4414549,Ambulance,Sedan,,, +05/04/2021,14:30,STATEN ISLAND,10305,40.579494,-74.07825,"(40.579494, -74.07825)",,,777 SEAVIEW AVENUE,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4414377,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,10:03,MANHATTAN,10012,40.725006,-73.99935,"(40.725006, -73.99935)",PRINCE STREET,GREENE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4414197,Taxi,Bike,,, +05/06/2021,8:28,BROOKLYN,11236,40.63201,-73.90561,"(40.63201, -73.90561)",AVENUE L,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414045,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,15:28,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4414525,Sedan,Sedan,Sedan,, +05/06/2021,8:37,BROOKLYN,11221,40.690075,-73.91916,"(40.690075, -73.91916)",BUSHWICK AVENUE,WOODBINE STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4413984,Sedan,Sedan,,, +05/06/2021,18:06,QUEENS,11365,40.732323,-73.810776,"(40.732323, -73.810776)",JEWEL AVENUE,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414314,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,15:42,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413800,Sedan,,,, +05/07/2021,22:40,,,40.678543,-73.949684,"(40.678543, -73.949684)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4414691,Sedan,Sedan,,, +05/02/2021,10:09,,,40.689697,-73.98296,"(40.689697, -73.98296)",FULTON STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4414455,Dump,Bus,,, +05/02/2021,9:58,BRONX,10452,40.841103,-73.91266,"(40.841103, -73.91266)",,,1505 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414345,Ambulance,Sedan,,, +05/05/2021,11:33,,,40.84126,-73.92805,"(40.84126, -73.92805)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,22:25,BROOKLYN,11211,40.714035,-73.961586,"(40.714035, -73.961586)",,,289 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413821,Sedan,Sedan,,, +05/05/2021,15:30,BROOKLYN,11234,40.630417,-73.92118,"(40.630417, -73.92118)",,,5701 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4414178,Sedan,,,, +05/06/2021,16:55,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",ROCKAWAY PARKWAY,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414697,Sedan,Sedan,,, +05/06/2021,16:53,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,FEATHERBED LANE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414382,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,8:05,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414281,Van,Sedan,,, +05/06/2021,15:35,BRONX,10457,40.83717,-73.90197,"(40.83717, -73.90197)",EAST 171 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414869,Sedan,,,, +05/07/2021,9:00,QUEENS,11106,40.75621,-73.92896,"(40.75621, -73.92896)",36 AVENUE,32 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414900,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,17:57,QUEENS,11372,40.750732,-73.89466,"(40.750732, -73.89466)",,,71-12 35 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/05/2021,22:25,MANHATTAN,10128,40.78426,-73.94925,"(40.78426, -73.94925)",,,216 EAST 95 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413881,Sedan,Taxi,,, +05/07/2021,12:30,,,40.74006,-73.87864,"(40.74006, -73.87864)",BROADWAY,SAINT JAMES AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414737,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/05/2021,13:57,QUEENS,11354,40.760464,-73.826546,"(40.760464, -73.826546)",UNION STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,23:50,BROOKLYN,11215,40.67236,-73.97375,"(40.67236, -73.97375)",,,118 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414354,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/20/2021,12:00,BROOKLYN,11212,40.661274,-73.917564,"(40.661274, -73.917564)",,,21 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488769,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,15:00,MANHATTAN,10128,40.780006,-73.95022,"(40.780006, -73.95022)",,,1725 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414386,,,,, +05/07/2021,22:30,BRONX,10457,40.84768,-73.89362,"(40.84768, -73.89362)",,,2012 LAFONTAINE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414411,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/07/2021,14:45,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,KENMARE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414962,Sedan,COM,,, +05/07/2021,20:57,BRONX,10466,40.891582,-73.85509,"(40.891582, -73.85509)",,,4167 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414588,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,18:10,QUEENS,11366,40.7247,-73.80803,"(40.7247, -73.80803)",,,160-22 76 ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4413724,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,11:44,,,40.628544,-74.07648,"(40.628544, -74.07648)",BAY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414517,Sedan,Bike,,, +05/06/2021,20:45,,,40.727802,-73.80516,"(40.727802, -73.80516)",73 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414108,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,10:00,MANHATTAN,10065,40.767185,-73.96248,"(40.767185, -73.96248)",3 AVENUE,EAST 68 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4413572,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,22:00,BROOKLYN,11220,40.641674,-74.00313,"(40.641674, -74.00313)",8 AVENUE,49 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414611,,,,, +05/06/2021,18:45,QUEENS,11426,40.743694,-73.718285,"(40.743694, -73.718285)",,,252-25 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414093,Sedan,Sedan,,, +05/05/2021,23:30,BROOKLYN,11249,40.718372,-73.96463,"(40.718372, -73.96463)",NORTH 3 STREET,RIVER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413896,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:45,BROOKLYN,11219,40.63216,-73.9874,"(40.63216, -73.9874)",,,1500 49 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4414614,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,10:15,BROOKLYN,11217,40.687325,-73.976944,"(40.687325, -73.976944)",,,713 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414237,Sedan,Sedan,,, +05/05/2021,15:30,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413780,Sedan,Box Truck,,, +05/05/2021,21:05,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",MORGAN AVENUE,GRAND STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414144,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,22:00,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,Driver Inattention/Distraction,,,4414677,Taxi,Sedan,Sedan,, +05/06/2021,12:12,BROOKLYN,11225,40.65655,-73.959114,"(40.65655, -73.959114)",,,19 WINTHROP STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414232,Sedan,Box Truck,,, +05/06/2021,14:20,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4414058,Sedan,Convertible,Station Wagon/Sport Utility Vehicle,, +05/06/2021,14:46,BRONX,10458,40.866047,-73.882744,"(40.866047, -73.882744)",SOUTHERN BOULEVARD,BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4414127,Sedan,Sedan,,, +05/05/2021,15:10,,,40.803425,-73.93309,"(40.803425, -73.93309)",2 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413691,Station Wagon/Sport Utility Vehicle,Bus,,, +05/05/2021,13:49,BROOKLYN,11236,40.6379,-73.90085,"(40.6379, -73.90085)",AVENUE K,EAST 92 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4413731,Station Wagon/Sport Utility Vehicle,Van,,, +05/05/2021,22:10,,,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413969,Sedan,Sedan,,, +05/02/2021,0:00,MANHATTAN,10023,40.769478,-73.98089,"(40.769478, -73.98089)",,,15 CENTRAL PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414566,Sedan,Sedan,,, +05/06/2021,8:09,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4413933,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,7:10,MANHATTAN,10032,40.83854,-73.93658,"(40.83854, -73.93658)",,,444 WEST 167 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414775,Motorcycle,Sedan,,, +05/06/2021,0:25,MANHATTAN,10018,40.753513,-73.98879,"(40.753513, -73.98879)",WEST 38 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413939,Bike,,,, +05/06/2021,23:50,,,40.58407,-73.92344,"(40.58407, -73.92344)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4414148,Sedan,,,, +05/07/2021,16:56,QUEENS,11429,40.709316,-73.73441,"(40.709316, -73.73441)",107 AVENUE,221 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,9:48,,,40.5878,-74.16564,"(40.5878, -74.16564)",,,80 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413544,Sedan,,,, +05/05/2021,15:00,QUEENS,11378,40.722977,-73.91017,"(40.722977, -73.91017)",,,58-51 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414418,Sedan,,,, +05/06/2021,17:23,,,40.723698,-74.00792,"(40.723698, -74.00792)",CANAL STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414193,Sedan,,,, +05/04/2021,0:18,BROOKLYN,11216,40.68327,-73.95016,"(40.68327, -73.95016)",NOSTRAND AVENUE,JEFFERSON AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4414633,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,19:30,BRONX,10459,40.823074,-73.8918,"(40.823074, -73.8918)",SOUTHERN BOULEVARD,ALDUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414331,Sedan,Bus,,, +05/05/2021,10:55,,,40.82815,-73.93491,"(40.82815, -73.93491)",MACOMBS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414915,Sedan,,,, +05/06/2021,10:20,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414286,Sedan,Box Truck,,, +12/18/2021,20:30,BROOKLYN,11201,40.689377,-73.99146,"(40.689377, -73.99146)",,,232 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4488878,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,14:35,QUEENS,11374,40.73191,-73.87124,"(40.73191, -73.87124)",LONG ISLAND EXPRESSWAY,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414293,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,19:33,BROOKLYN,11229,40.608383,-73.95917,"(40.608383, -73.95917)",EAST 14 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414405,Station Wagon/Sport Utility Vehicle,FDNY truck,,, +05/07/2021,15:30,,,40.74214,-73.98706,"(40.74214, -73.98706)",EAST 25 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414825,Sedan,,,, +05/03/2021,19:51,BROOKLYN,11234,40.61497,-73.92844,"(40.61497, -73.92844)",FLATBUSH AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414182,Sedan,Ambulance,,, +05/06/2021,14:45,BROOKLYN,11226,40.648045,-73.960625,"(40.648045, -73.960625)",,,601 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414520,Box Truck,Sedan,Box Truck,, +05/06/2021,13:55,BRONX,10457,40.84532,-73.888214,"(40.84532, -73.888214)",,,2005 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414373,Taxi,Motorbike,,, +05/05/2021,10:50,BROOKLYN,11223,40.602226,-73.968666,"(40.602226, -73.968666)",AVENUE S,EAST 4 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413649,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/05/2021,19:56,,,40.83874,-73.913765,"(40.83874, -73.913765)",GRAND CONCOURSE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414153,Sedan,Bike,,, +05/06/2021,16:00,MANHATTAN,10013,40.71592,-73.99933,"(40.71592, -73.99933)",MULBERRY STREET,BAYARD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414609,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,19:00,BROOKLYN,11233,40.68005,-73.91296,"(40.68005, -73.91296)",,,203 MACDOUGAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414537,Sedan,Sedan,,, +05/07/2021,13:08,,,40.79074,-73.84273,"(40.79074, -73.84273)",125 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414449,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,14:15,,,40.855244,-73.89314,"(40.855244, -73.89314)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413900,Sedan,Bus,,, +05/06/2021,21:50,,,40.698757,-73.91885,"(40.698757, -73.91885)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414433,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/05/2021,0:30,,,,,,SHERIDAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4413523,Sedan,Sedan,,, +05/04/2021,23:26,BROOKLYN,11221,40.6843,-73.94121,"(40.6843, -73.94121)",THROOP AVENUE,JEFFERSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414656,Sedan,Sedan,,, +05/05/2021,18:00,BROOKLYN,11214,40.60589,-73.98972,"(40.60589, -73.98972)",BAY PARKWAY,79 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413743,E-Scooter,,,, +05/05/2021,11:00,QUEENS,11378,40.715107,-73.90563,"(40.715107, -73.90563)",,,60-11 60 DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4413931,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/07/2021,13:45,QUEENS,11369,40.76025,-73.860374,"(40.76025, -73.860374)",110 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414209,Sedan,,,, +05/06/2021,19:00,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4414131,Sedan,Sedan,Sedan,, +05/07/2021,18:30,BROOKLYN,11209,40.61696,-74.02751,"(40.61696, -74.02751)",92 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414269,Sedan,Motorcycle,,, +05/07/2021,10:00,MANHATTAN,10029,40.793186,-73.94057,"(40.793186, -73.94057)",EAST 110 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414400,Bus,Sedan,,, +05/02/2021,9:30,,,40.703045,-73.92985,"(40.703045, -73.92985)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414428,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,11:09,,,40.78884,-73.81381,"(40.78884, -73.81381)",14 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414448,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,16:15,,,40.8494,-73.90304,"(40.8494, -73.90304)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4413869,Bus,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,12:10,,,40.83472,-73.93517,"(40.83472, -73.93517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414326,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,14:35,,,40.804256,-73.9193,"(40.804256, -73.9193)",SAINT ANNS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413670,Box Truck,,,, +05/06/2021,12:45,BRONX,10474,40.81707,-73.88525,"(40.81707, -73.88525)",LONGFELLOW AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,20:10,QUEENS,11433,40.704422,-73.792854,"(40.704422, -73.792854)",MERRICK BOULEVARD,ARCHER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414038,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,13:56,QUEENS,11361,40.765087,-73.782875,"(40.765087, -73.782875)",36 AVENUE,204 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4414288,Sedan,Sedan,,, +05/06/2021,9:10,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414013,Sedan,Box Truck,,, +05/07/2021,20:00,QUEENS,11377,40.744167,-73.91248,"(40.744167, -73.91248)",52 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414477,Station Wagon/Sport Utility Vehicle,TRAILER,,, +05/06/2021,18:33,QUEENS,11354,40.764706,-73.811005,"(40.764706, -73.811005)",154 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4414273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/05/2021,17:10,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413785,Sedan,Sedan,,, +05/07/2021,8:35,BROOKLYN,11235,40.58945,-73.960526,"(40.58945, -73.960526)",CONEY ISLAND AVENUE,AVENUE Y,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,7:40,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414385,Sedan,,,, +05/05/2021,18:03,BRONX,10467,40.865456,-73.86566,"(40.865456, -73.86566)",,,744 ALLERTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414368,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,17:19,BROOKLYN,11220,40.636547,-74.02866,"(40.636547, -74.02866)",BAY RIDGE AVENUE,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4413769,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +05/07/2021,9:49,QUEENS,11374,40.72844,-73.87116,"(40.72844, -73.87116)",WOODHAVEN BOULEVARD,ALDERTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4414305,Sedan,Sedan,,, +05/05/2021,11:40,QUEENS,11379,,,,,,6209 FRESH POND ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413975,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,9:30,,,40.581745,-73.960945,"(40.581745, -73.960945)",BRIGHTON 8 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414561,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,2:00,,,40.731377,-73.973724,"(40.731377, -73.973724)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4414584,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/03/2021,2:00,QUEENS,11434,40.681988,-73.76634,"(40.681988, -73.76634)",126 AVENUE,MERRICK BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4414353,Sedan,Sedan,,, +04/29/2021,3:45,QUEENS,11379,40.725433,-73.872734,"(40.725433, -73.872734)",,,61-88 DRY HARBOR ROAD,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4414414,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/07/2021,21:00,,,40.809628,-73.890045,"(40.809628, -73.890045)",TIFFANY STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4414324,Sedan,Box Truck,Box Truck,, +05/07/2021,16:04,BROOKLYN,11218,40.643818,-73.97964,"(40.643818, -73.97964)",,,425 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414714,Sedan,Motorcycle,,, +05/06/2021,9:30,,,40.82725,-73.9387,"(40.82725, -73.9387)",WEST 152 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413997,Box Truck,Sedan,,, +05/05/2021,22:00,QUEENS,11419,40.687172,-73.820625,"(40.687172, -73.820625)",,,104-74 123 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4413790,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2021,14:50,MANHATTAN,10007,40.717186,-74.0129,"(40.717186, -74.0129)",WEST STREET,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414191,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,14:30,STATEN ISLAND,10305,40.601208,-74.08057,"(40.601208, -74.08057)",,,187 WINDERMERE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414928,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,14:40,,,40.77447,-73.9924,"(40.77447, -73.9924)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4414732,Sedan,Taxi,,, +04/15/2021,10:04,QUEENS,11379,40.720264,-73.872826,"(40.720264, -73.872826)",,,82-24 PENELOPE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414421,Sedan,Bus,,, +05/06/2021,10:00,,,40.661743,-73.94784,"(40.661743, -73.94784)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414604,Sedan,Sedan,,, +05/06/2021,9:29,,,40.844524,-73.902725,"(40.844524, -73.902725)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414844,Sedan,Sedan,,, +05/01/2021,12:20,BRONX,10452,40.83142,-73.92644,"(40.83142, -73.92644)",JEROME AVENUE,EAST 164 STREET,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4414346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/06/2021,15:13,BRONX,10467,40.882164,-73.88186,"(40.882164, -73.88186)",,,3480 JEROME AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414136,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,18:30,,,40.665916,-73.92547,"(40.665916, -73.92547)",EAST NEW YORK AVENUE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4414690,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,10:00,,,40.824924,-73.86985,"(40.824924, -73.86985)",BRUCKNER BOULEVARD,SOUND VIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413665,Sedan,,,, +05/06/2021,23:40,QUEENS,11422,40.66406,-73.73846,"(40.66406, -73.73846)",141 AVENUE,241 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414119,Sedan,Sedan,,, +05/05/2021,12:43,QUEENS,11691,40.60327,-73.75106,"(40.60327, -73.75106)",MOTT AVENUE,BEACH 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413624,Sedan,,,, +05/06/2021,17:30,BROOKLYN,11228,40.625774,-74.016495,"(40.625774, -74.016495)",75 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414050,Sedan,Sedan,,, +05/05/2021,16:36,BRONX,10461,40.84838,-73.82865,"(40.84838, -73.82865)",,,3135 BUHRE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413907,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,5:15,BROOKLYN,11212,40.664948,-73.90355,"(40.664948, -73.90355)",,,430 DUMONT AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4414530,Sedan,Sedan,Sedan,, +05/04/2021,21:05,BROOKLYN,11234,40.62392,-73.9216,"(40.62392, -73.9216)",AVENUE L,EAST 56 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4414174,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,1:49,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",PACIFIC STREET,UTICA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414213,Box Truck,Garbage or Refuse,,, +05/06/2021,10:30,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413946,Pick up tr,Subn,,, +05/05/2021,15:20,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413712,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,17:56,QUEENS,11368,40.738068,-73.861046,"(40.738068, -73.861046)",,,98-32 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,8:30,BROOKLYN,11236,40.63267,-73.88846,"(40.63267, -73.88846)",,,2066 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4414492,Tractor Truck Diesel,,,, +05/06/2021,14:34,BRONX,10464,40.855873,-73.79149,"(40.855873, -73.79149)",,,636 CITY ISLAND AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414224,Sedan,Motorcycle,,, +05/05/2021,0:00,,,40.8913,-73.8507,"(40.8913, -73.8507)",EAST 233 STREET,EDENWALD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413923,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,21:04,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",UNION STREET,35 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488245,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,18:41,BROOKLYN,11206,40.701565,-73.94333,"(40.701565, -73.94333)",,,700 BROADWAY,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4414664,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,14:30,QUEENS,11417,40.681385,-73.84748,"(40.681385, -73.84748)",ROCKAWAY BOULEVARD,92 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414241,Sedan,Sedan,,, +04/30/2021,6:38,BROOKLYN,11221,40.69253,-73.927414,"(40.69253, -73.927414)",,,1184 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414768,Sedan,Bus,,, +05/03/2021,18:00,BRONX,10467,40.863945,-73.86452,"(40.863945, -73.86452)",WALLACE AVENUE,BOSTON ROAD,,2,0,0,0,0,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,,4414749,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/05/2021,11:25,,,40.676132,-73.81924,"(40.676132, -73.81924)",LEFFERTS BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Pavement Slippery,,,,4413603,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,1:20,,,40.70499,-73.91736,"(40.70499, -73.91736)",STOCKHOLM STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413499,Bike,Van,,, +05/05/2021,12:30,,,40.748783,-73.81279,"(40.748783, -73.81279)",POPLAR AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4413748,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,11:27,QUEENS,11434,40.6707,-73.77366,"(40.6707, -73.77366)",BREWER BOULEVARD,140 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414397,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,16:26,BROOKLYN,11214,40.595097,-74.00092,"(40.595097, -74.00092)",,,8973 BAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414103,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,14:00,MANHATTAN,10002,40.72161,-73.98904,"(40.72161, -73.98904)",STANTON STREET,ALLEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413813,Sedan,,,, +05/05/2021,6:35,QUEENS,11435,40.687508,-73.80666,"(40.687508, -73.80666)",109 AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/29/2021,15:33,,,40.62156,-74.16849,"(40.62156, -74.16849)",SOUTH AVENUE,GOETHALS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414201,Sedan,Sedan,,, +05/06/2021,4:50,STATEN ISLAND,10309,40.55247,-74.21878,"(40.55247, -74.21878)",ARTHUR KILL ROAD,ZEBRA PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4414018,Sedan,Chassis Cab,,, +05/05/2021,20:15,,,40.730137,-73.862366,"(40.730137, -73.862366)",QUEENS BOULEVARD,63 DRIVE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414031,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2021,8:30,QUEENS,11428,40.715687,-73.75545,"(40.715687, -73.75545)",,,93-34 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4414256,Sedan,Sedan,,, +01/29/2021,15:34,BRONX,10451,40.82712,-73.93116,"(40.82712, -73.93116)",MAJOR DEEGAN EXPRESSWAY,EAST 157 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4414339,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,4:50,,,40.72025,-73.834305,"(40.72025, -73.834305)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413982,Station Wagon/Sport Utility Vehicle,Flat Rack,,, +05/01/2021,4:39,,,40.573196,-73.99278,"(40.573196, -73.99278)",SURF AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,22:18,MANHATTAN,10022,40.756763,-73.96716,"(40.756763, -73.96716)",2 AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414301,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,22:47,BROOKLYN,11234,40.612858,-73.92862,"(40.612858, -73.92862)",,,1953 COLEMAN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4414719,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +05/06/2021,0:52,,,40.812138,-73.96636,"(40.812138, -73.96636)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4414073,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/06/2021,11:08,BROOKLYN,11220,40.634617,-74.02353,"(40.634617, -74.02353)",4 AVENUE,BAY RIDGE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414206,Sedan,Bus,,, +05/02/2021,12:00,BRONX,10454,40.799168,-73.91029,"(40.799168, -73.91029)",EAST 133 STREET,LOCUST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414889,Tractor Truck Gasoline,,,, +05/05/2021,18:00,BRONX,10470,40.902374,-73.84811,"(40.902374, -73.84811)",BARNES AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414580,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,16:35,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",EAST 125 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414169,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,18:24,,,40.577065,-74.11633,"(40.577065, -74.11633)",LOCUST AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4414378,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/29/2021,20:26,STATEN ISLAND,10309,40.532482,-74.2031,"(40.532482, -74.2031)",FOSTER ROAD,DRUMGOOLE ROAD WEST,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4414365,Sedan,Sedan,,, +05/05/2021,18:40,QUEENS,11377,40.734848,-73.90002,"(40.734848, -73.90002)",65 PLACE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,0:00,BROOKLYN,11230,40.625324,-73.974945,"(40.625324, -73.974945)",,,1020 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414631,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:00,BROOKLYN,11235,40.583374,-73.95126,"(40.583374, -73.95126)",,,1725 EMMONS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4413991,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/07/2021,11:15,MANHATTAN,10032,40.836555,-73.94306,"(40.836555, -73.94306)",WEST 161 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414792,Ambulance,PK,,, +05/06/2021,18:40,QUEENS,11101,40.745068,-73.936356,"(40.745068, -73.936356)",THOMSON AVENUE,30 PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414098,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,7:52,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413897,Sedan,Pick-up Truck,,, +05/06/2021,19:05,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",EAST 36 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414115,Box Truck,Sedan,,, +05/07/2021,8:00,QUEENS,11427,40.720535,-73.75682,"(40.720535, -73.75682)",89 AVENUE,208 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4414461,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/04/2021,20:10,BROOKLYN,11210,40.63219,-73.938934,"(40.63219, -73.938934)",AVENUE H,EAST 39 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414695,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,15:30,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4414270,Sedan,Multi-Wheeled Vehicle,,, +05/06/2021,15:35,QUEENS,11417,40.674557,-73.859604,"(40.674557, -73.859604)",SUTTER AVENUE,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4414132,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,23:10,QUEENS,11423,40.71426,-73.77713,"(40.71426, -73.77713)",HILLSIDE AVENUE,184 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414255,Pick-up Truck,Pick-up Truck,,, +05/02/2021,20:33,BRONX,10455,40.81462,-73.908585,"(40.81462, -73.908585)",JACKSON AVENUE,PONTIAC PLACE,,1,0,1,0,0,0,0,0,,,,,,4414890,,,,, +05/06/2021,23:00,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4414233,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,10:10,BRONX,10466,40.885777,-73.8515,"(40.885777, -73.8515)",EAST 226 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413657,Sedan,Sedan,,, +05/06/2021,8:03,QUEENS,11421,40.69125,-73.85087,"(40.69125, -73.85087)",WOODHAVEN BOULEVARD,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413920,Bus,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,7:00,,,40.715702,-73.95579,"(40.715702, -73.95579)",NORTH 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414894,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/06/2021,2:15,,,40.57858,-73.9884,"(40.57858, -73.9884)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414056,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,16:00,MANHATTAN,10028,40.776867,-73.955414,"(40.776867, -73.955414)",3 AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413882,Sedan,E-Bike,,, +05/05/2021,4:05,BROOKLYN,11201,40.699978,-73.98779,"(40.699978, -73.98779)",PEARL STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413645,Sedan,Pickup tru,,, +05/05/2021,7:30,,,40.673103,-73.92793,"(40.673103, -73.92793)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413694,Sedan,,,, +05/06/2021,10:12,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414228,Sedan,Tractor Truck Diesel,,, +05/01/2021,8:00,QUEENS,11369,40.7647,-73.874535,"(40.7647, -73.874535)",,,24-39 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414961,Sedan,,,, +05/06/2021,11:25,BRONX,10472,40.833263,-73.877396,"(40.833263, -73.877396)",,,1350 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413950,Sedan,,,, +05/05/2021,12:20,,,40.812126,-73.90419,"(40.812126, -73.90419)",EAST 149 STREET,,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4413940,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,8:00,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4413576,Sedan,Sedan,Sedan,, +05/06/2021,9:45,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414245,Bus,3-Door,,, +05/04/2021,15:20,,,40.743336,-73.9511,"(40.743336, -73.9511)",JACKSON AVENUE,11 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414774,Station Wagon/Sport Utility Vehicle,Bike,,, +05/05/2021,22:35,BRONX,10463,40.882965,-73.893875,"(40.882965, -73.893875)",,,3904 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4414074,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/04/2021,23:35,MANHATTAN,10011,40.744644,-74.00639,"(40.744644, -74.00639)",WEST 18 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4414196,Bus,Sedan,Sedan,, +05/07/2021,9:13,,,40.84908,-73.90946,"(40.84908, -73.90946)",MOUNT HOPE PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4414437,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/07/2021,6:00,BROOKLYN,11211,40.715767,-73.92556,"(40.715767, -73.92556)",,,1301 GRAND STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414668,Sedan,,,, +05/06/2021,16:00,,,40.62318,-74.14925,"(40.62318, -74.14925)",,,970 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4414393,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,23:05,,,40.85223,-73.87141,"(40.85223, -73.87141)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414120,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,17:36,,,40.58489,-73.92885,"(40.58489, -73.92885)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4413987,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/05/2021,7:50,,,40.709442,-73.9607,"(40.709442, -73.9607)",BROADWAY,ROEBLING STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414143,Van,Sedan,,, +05/05/2021,12:00,QUEENS,11367,40.7433,-73.83768,"(40.7433, -73.83768)",VANWYCK EXPRESSWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413793,Dump,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,11:50,MANHATTAN,10010,40.741405,-73.98337,"(40.741405, -73.98337)",EAST 26 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414024,Sedan,,,, +05/06/2021,13:50,,,40.585197,-73.95289,"(40.585197, -73.95289)",SHORE PARKWAY,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414027,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/05/2021,6:30,BRONX,10451,40.823944,-73.913,"(40.823944, -73.913)",,,425 EAST 161 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413417,Sedan,Sedan,,, +05/06/2021,21:30,QUEENS,11374,40.73191,-73.87124,"(40.73191, -73.87124)",LONG ISLAND EXPRESSWAY,WOODHAVEN BOULEVARD,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414107,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/05/2021,6:30,BROOKLYN,11210,40.628647,-73.95207,"(40.628647, -73.95207)",BEDFORD AVENUE,AVENUE I,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,Other Vehicular,,,4413833,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/06/2021,3:13,,,,,,CROSS BRONX EXPRESSWAY,THIRD AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414860,Sedan,E-Scooter,,, +12/20/2021,18:15,BROOKLYN,11218,40.633385,-73.97552,"(40.633385, -73.97552)",EAST 3 STREET,AVENUE F,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488278,Pick-up Truck,,,, +05/06/2021,0:00,,,40.666397,-73.75337,"(40.666397, -73.75337)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4414795,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/05/2021,10:49,BROOKLYN,11215,40.671112,-73.978065,"(40.671112, -73.978065)",2 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4413859,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,19:51,,,40.82499,-73.91662,"(40.82499, -73.91662)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414162,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,16:03,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414335,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,11:00,BRONX,10472,40.83264,-73.86876,"(40.83264, -73.86876)",,,1754 EAST 172 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488823,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,22:24,BROOKLYN,11234,40.618877,-73.908936,"(40.618877, -73.908936)",AVENUE U,EAST 69 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414181,Sedan,,,, +05/05/2021,9:45,STATEN ISLAND,10310,40.62782,-74.12126,"(40.62782, -74.12126)",CLOVE ROAD,FOREST AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4413753,Sedan,Sedan,,, +05/06/2021,22:40,QUEENS,11367,40.718304,-73.8149,"(40.718304, -73.8149)",,,147-41 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414823,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,0:00,QUEENS,11372,40.75386,-73.892654,"(40.75386, -73.892654)",,,33-46 74 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4413961,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,0:02,,,40.720657,-73.76031,"(40.720657, -73.76031)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414260,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,15:15,BROOKLYN,11201,40.690758,-73.99624,"(40.690758, -73.99624)",ATLANTIC AVENUE,HENRY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414297,Sedan,Sedan,,, +05/07/2021,2:50,BROOKLYN,11234,40.62788,-73.93251,"(40.62788, -73.93251)",KINGS HIGHWAY,AVENUE J,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4414724,Box Truck,Sedan,,, +05/07/2021,11:29,BRONX,10463,40.876312,-73.91195,"(40.876312, -73.91195)",,,21 ADRIAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414551,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,12:25,BRONX,10465,40.8266,-73.82213,"(40.8266, -73.82213)",,,3713 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414223,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,20:20,BROOKLYN,11222,40.72159,-73.9458,"(40.72159, -73.9458)",MC GUINNESS BLVD SOUTH,ENGERT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4414877,Convertible,,,, +05/06/2021,17:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414504,Sedan,Sedan,,, +05/06/2021,8:26,BRONX,10459,40.825283,-73.88648,"(40.825283, -73.88648)",WHITLOCK AVENUE,EAST 165 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4414361,Sedan,PK,,, +05/07/2021,21:00,BRONX,10469,40.87823,-73.84438,"(40.87823, -73.84438)",,,3563 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414595,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,19:00,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,Unspecified,,,4414641,Pick-up Truck,Sedan,Sedan,, +05/05/2021,15:19,,,40.72565,-73.93205,"(40.72565, -73.93205)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4413779,Sedan,Sedan,Armored Truck,, +05/04/2021,21:35,BROOKLYN,11221,40.690483,-73.93954,"(40.690483, -73.93954)",MARCUS GARVEY BOULEVARD,VAN BUREN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4414786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/05/2021,21:30,QUEENS,11378,40.722675,-73.921425,"(40.722675, -73.921425)",,,56-13 48 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414094,Sedan,,,, +05/07/2021,14:49,BROOKLYN,11238,40.682373,-73.96162,"(40.682373, -73.96162)",FULTON STREET,GRAND AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414238,Van,Motorscooter,,, +05/06/2021,16:40,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414218,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,14:24,BRONX,10461,40.851078,-73.84862,"(40.851078, -73.84862)",TENBROECK AVENUE,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4414470,Box Truck,,,, +05/07/2021,23:35,,,40.720642,-73.943275,"(40.720642, -73.943275)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414910,Sedan,,,, +04/30/2021,17:14,,,40.680855,-73.93855,"(40.680855, -73.93855)",ALBANY AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4414657,Sedan,,,, +05/07/2021,13:25,MANHATTAN,10009,40.733242,-73.98113,"(40.733242, -73.98113)",1 AVENUE,EAST 17 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414678,Bike,Sedan,,, +05/07/2021,9:48,QUEENS,11358,40.76278,-73.787384,"(40.76278, -73.787384)",195 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414287,Sedan,Sedan,,, +05/06/2021,19:45,BROOKLYN,11229,40.596115,-73.9393,"(40.596115, -73.9393)",,,2977 AVENUE W,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414149,Sedan,PK,,, +12/20/2021,12:30,MANHATTAN,10035,40.796665,-73.93098,"(40.796665, -73.93098)",,,535 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488179,Sedan,,,, +05/07/2021,17:00,BRONX,10459,40.81616,-73.8944,"(40.81616, -73.8944)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414250,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,18:51,BROOKLYN,11206,40.69941,-73.93622,"(40.69941, -73.93622)",BEAVER STREET,BELVIDERE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414429,Tractor Truck Diesel,Sedan,,, +05/06/2021,13:30,BROOKLYN,11215,40.67148,-73.97775,"(40.67148, -73.97775)",,,175 7 AVENUE,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4414357,Sedan,E-Bike,,, +05/05/2021,17:00,,,40.689144,-73.99071,"(40.689144, -73.99071)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,7:50,QUEENS,11355,40.743763,-73.82463,"(40.743763, -73.82463)",59 AVENUE,142 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4414282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,21:00,QUEENS,11417,40.676456,-73.85688,"(40.676456, -73.85688)",80 STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414647,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,16:42,QUEENS,11101,40.757595,-73.94603,"(40.757595, -73.94603)",,,40-15 VERNON BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414868,Pick-up Truck,,,, +05/05/2021,13:45,BROOKLYN,11226,40.649136,-73.95842,"(40.649136, -73.95842)",,,928 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4413851,Sedan,Van,,, +05/05/2021,14:00,,,40.68594,-73.84686,"(40.68594, -73.84686)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4413684,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,6:55,BRONX,10462,40.834522,-73.848495,"(40.834522, -73.848495)",HAVEMEYER AVENUE,WATERBURY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413535,Sedan,Sedan,,, +05/06/2021,11:30,BROOKLYN,11201,40.693523,-73.980316,"(40.693523, -73.980316)",,,218 MYRTLE AVENUE,1,0,1,0,0,0,0,0,,,,,,4413970,,,,, +05/03/2021,0:50,,,40.764744,-73.86179,"(40.764744, -73.86179)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Other Vehicular,,,,,4414952,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,18:05,,,40.662395,-73.93735,"(40.662395, -73.93735)",EAST NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4413733,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,15:30,QUEENS,11101,40.740276,-73.92782,"(40.740276, -73.92782)",48 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413723,Sedan,Sedan,,, +05/05/2021,23:00,,,40.798622,-73.94163,"(40.798622, -73.94163)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413934,Sedan,Bike,,, +05/06/2021,9:30,,,,,,,,74 VANCORTLANDT PARK WEST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414078,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +12/19/2021,22:58,,,40.618484,-73.913506,"(40.618484, -73.913506)",AVENUE T,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488739,Sedan,Sedan,,, +05/07/2021,13:40,QUEENS,11411,40.69251,-73.73744,"(40.69251, -73.73744)",118 AVENUE,224 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4414265,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,14:00,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",WESTCHESTER AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,22:52,MANHATTAN,10014,40.726173,-74.01099,"(40.726173, -74.01099)",WEST STREET,SPRING STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414192,Sedan,Dump,,, +05/07/2021,7:30,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414442,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,14:35,,,40.718716,-73.79406,"(40.718716, -73.79406)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4413774,Sedan,Convertible,Sedan,, +05/05/2021,16:40,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",BRISTOL STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413799,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,15:20,STATEN ISLAND,10306,40.580727,-74.10757,"(40.580727, -74.10757)",NORTH RAILROAD AVENUE,MIDLAND AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4414044,Sedan,Sedan,,, +05/05/2021,22:45,,,40.69733,-73.78456,"(40.69733, -73.78456)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414008,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,15:25,BRONX,10451,40.816902,-73.91938,"(40.816902, -73.91938)",,,560 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414139,Sedan,Flat Bed,,, +05/05/2021,22:21,QUEENS,11365,40.735798,-73.78212,"(40.735798, -73.78212)",190 LANE,69 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414313,Sedan,Sedan,,, +05/06/2021,20:35,,,40.6255,-74.152145,"(40.6255, -74.152145)",FOREST AVENUE,LAKE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414805,Sedan,Sedan,,, +05/05/2021,12:47,,,40.83,-73.91812,"(40.83, -73.91812)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414155,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,17:25,BROOKLYN,11206,40.69976,-73.956665,"(40.69976, -73.956665)",,,160 WALLABOUT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413820,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/07/2021,17:45,BROOKLYN,11225,40.662415,-73.94996,"(40.662415, -73.94996)",,,335 LEFFERTS AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4414292,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,14:12,BROOKLYN,11210,40.6323,-73.93702,"(40.6323, -73.93702)",AVENUE H,ALBANY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414177,Bike,Sedan,,, +05/05/2021,10:30,BRONX,10462,40.854473,-73.86609,"(40.854473, -73.86609)",,,741 LYDIG AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4413761,Sedan,,,, +05/06/2021,16:35,,,40.767418,-73.7906,"(40.767418, -73.7906)",FRANCIS LEWIS BOULEVARD,33 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414126,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,20:04,BROOKLYN,11212,40.66607,-73.906654,"(40.66607, -73.906654)",,,350 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414540,Sedan,,,, +05/06/2021,17:30,MANHATTAN,10035,40.79941,-73.935555,"(40.79941, -73.935555)",,,300 EAST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4414372,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/06/2021,18:05,QUEENS,11368,40.759716,-73.85022,"(40.759716, -73.85022)",,,125-00 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414736,Pick-up Truck,Convertible,,, +05/07/2021,8:16,MANHATTAN,10021,40.770836,-73.96322,"(40.770836, -73.96322)",,,114 EAST 72 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4414389,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,20:15,STATEN ISLAND,10301,40.639572,-74.08809,"(40.639572, -74.08809)",,,285 YORK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414516,Sedan,Sedan,,, +05/02/2021,17:46,BROOKLYN,11226,40.652706,-73.94873,"(40.652706, -73.94873)",,,275 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414699,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,7:00,,,40.893623,-73.85525,"(40.893623, -73.85525)",BYRON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414569,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,17:01,QUEENS,11435,40.713676,-73.82232,"(40.713676, -73.82232)",,,135-14 HOOVER AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414318,Sedan,Bike,,, +05/06/2021,13:45,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",EAST 42 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414001,Sedan,Sedan,,, +05/01/2021,20:00,QUEENS,11385,40.693848,-73.901184,"(40.693848, -73.901184)",WYCKOFF AVENUE,CODY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414425,Tractor Truck Diesel,,,, +05/06/2021,18:39,,,40.8436,-73.94511,"(40.8436, -73.94511)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4414325,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,15:41,,,40.787018,-73.811584,"(40.787018, -73.811584)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4414277,Sedan,Sedan,Sedan,, +04/30/2021,17:09,QUEENS,11369,40.763332,-73.864105,"(40.763332, -73.864105)",CURTIS STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414187,Sedan,Sedan,,, +05/07/2021,19:25,BROOKLYN,11230,40.618084,-73.969315,"(40.618084, -73.969315)",,,1257 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414616,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,10:50,,,40.760532,-73.753716,"(40.760532, -73.753716)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414014,Sedan,Sedan,,, +05/05/2021,21:45,QUEENS,11420,40.671364,-73.81481,"(40.671364, -73.81481)",124 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413786,Sedan,Sedan,,, +05/06/2021,10:55,QUEENS,11101,40.750484,-73.93529,"(40.750484, -73.93529)",,,29-76 NORTHERN BOULEVARD,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413992,Sedan,E-Scooter,,, +12/20/2021,17:57,QUEENS,11693,40.58781,-73.816444,"(40.58781, -73.816444)",,,321 BEACH 92 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4488508,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,7:47,,,,,,WEST 168 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4488590,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,18:37,MANHATTAN,10030,40.823257,-73.94293,"(40.823257, -73.94293)",BRADHURST AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488732,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,19:30,STATEN ISLAND,10305,40.60783,-74.07341,"(40.60783, -74.07341)",,,300 SAINT JOHNS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,,,,4488803,Sedan,Sedan,,, +12/20/2021,12:00,BROOKLYN,11235,40.575657,-73.94791,"(40.575657, -73.94791)",,,281 EXETER STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488324,Sedan,Pick-up Truck,,, +12/16/2021,20:27,,,40.666435,-73.7628,"(40.666435, -73.7628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488783,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/20/2021,21:38,MANHATTAN,10030,40.820694,-73.94351,"(40.820694, -73.94351)",,,2649 8 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4488355,Sedan,Sedan,,, +12/20/2021,11:00,BROOKLYN,11215,40.66855,-73.990234,"(40.66855, -73.990234)",4 AVENUE,12 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488289,Sedan,E-Bike,,, +12/20/2021,0:00,BRONX,10468,,,,Bedford Park Blvd,Jerome Ave,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,21:45,,,40.6026,-74.01491,"(40.6026, -74.01491)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488864,Sedan,Sedan,,, +12/20/2021,15:39,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488255,Station Wagon/Sport Utility Vehicle,Bike,,, +12/13/2021,15:40,STATEN ISLAND,10301,40.63793,-74.079506,"(40.63793, -74.079506)",,,91 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488751,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,17:00,,,40.68377,-73.92625,"(40.68377, -73.92625)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488904,Sedan,Sedan,,, +12/20/2021,15:19,,,40.8468,-73.931854,"(40.8468, -73.931854)",WEST 179 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488386,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,18:31,QUEENS,11419,40.679535,-73.83176,"(40.679535, -73.83176)",109 AVENUE,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488295,Sedan,Sedan,Sedan,, +12/20/2021,18:10,,,40.853546,-73.92432,"(40.853546, -73.92432)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4488388,Sedan,,,, +12/20/2021,7:40,BRONX,10457,40.85651,-73.897316,"(40.85651, -73.897316)",TIEBOUT AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488342,Bus,,,, +08/20/2021,19:55,BROOKLYN,11206,40.696594,-73.93862,"(40.696594, -73.93862)",,,1055 MYRTLE AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4488793,,,,, +03/28/2022,6:45,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Outside Car Distraction,,,,4514322,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,6:30,MANHATTAN,10025,40.803455,-73.96353,"(40.803455, -73.96353)",,,1024 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4488827,,,,, +12/20/2021,15:00,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488955,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/16/2021,14:15,,,40.59976,-73.903336,"(40.59976, -73.903336)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488948,Sedan,Sedan,,, +12/19/2021,17:00,BROOKLYN,11233,40.679836,-73.9344,"(40.679836, -73.9344)",LEWIS AVENUE,CHAUNCEY STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4488903,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,1:30,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488774,Sedan,,,, +12/20/2021,6:15,,,40.64485,-73.96002,"(40.64485, -73.96002)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4487995,Sedan,Sedan,,, +12/16/2021,15:00,STATEN ISLAND,10301,40.62434,-74.09396,"(40.62434, -74.09396)",VICTORY BOULEVARD,THERESA PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488798,Sedan,Sedan,,, +12/20/2021,15:58,MANHATTAN,10016,40.750156,-73.97699,"(40.750156, -73.97699)",EAST 40 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488254,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,6:50,MANHATTAN,10038,40.710228,-74.00668,"(40.710228, -74.00668)",,,55 ANN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488343,Flat Bed,,,, +12/18/2021,18:20,QUEENS,11372,40.751423,-73.88461,"(40.751423, -73.88461)",,,35-45 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488840,Ambulance,Sedan,,, +09/19/2021,23:55,,,,,,GRAND ARMY PLAZA,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4460102,Sedan,Sedan,Sedan,, +12/20/2021,11:30,BRONX,10454,40.804256,-73.9193,"(40.804256, -73.9193)",EAST 134 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488290,Sedan,,,, +12/17/2021,15:45,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488708,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +12/17/2021,15:30,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",FARMERS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,17:12,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488317,Bike,,,, +12/13/2021,10:30,BROOKLYN,11203,40.65763,-73.94179,"(40.65763, -73.94179)",,,544 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,18:45,BRONX,10467,40.87977,-73.86729,"(40.87977, -73.86729)",,,3560 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,Unspecified,Unspecified,,4488817,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/20/2021,12:00,,,40.765137,-73.81944,"(40.765137, -73.81944)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4488178,Sedan,,,, +12/20/2021,14:38,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488208,Sedan,Sedan,,, +12/20/2021,8:00,,,40.77132,-73.84655,"(40.77132, -73.84655)",122 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4488481,Sedan,Box Truck,,, +12/16/2021,14:15,BROOKLYN,11233,40.685497,-73.91771,"(40.685497, -73.91771)",HALSEY STREET,SARATOGA AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4488912,Sedan,Sedan,,, +12/20/2021,18:03,,,40.707783,-73.932076,"(40.707783, -73.932076)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488267,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,16:18,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488676,Bus,,,, +12/04/2021,20:00,BROOKLYN,11213,40.6746,-73.9389,"(40.6746, -73.9389)",SAINT MARKS AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4488850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,6:00,,,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488163,Sedan,Sedan,Sedan,, +12/20/2021,9:40,,,40.694214,-73.7531,"(40.694214, -73.7531)",199 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,Unspecified,,,4488394,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/20/2021,6:20,QUEENS,11370,40.75778,-73.884834,"(40.75778, -73.884834)",83 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488511,Sedan,E-Bike,,, +12/20/2021,10:40,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Keep Right,,,,4488185,Bulk Agriculture,Tow Truck / Wrecker,,, +12/20/2021,18:20,BRONX,10451,40.813313,-73.92288,"(40.813313, -73.92288)",EAST 143 STREET,3 AVENUE,,2,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488300,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/15/2021,16:20,BROOKLYN,11219,40.62448,-73.99593,"(40.62448, -73.99593)",15 AVENUE,63 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488770,Sedan,E-Bike,,, +12/19/2021,22:14,STATEN ISLAND,10304,40.62659,-74.07646,"(40.62659, -74.07646)",,,88 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488802,Sedan,Sedan,,, +12/18/2021,6:00,,,40.8451,-73.90931,"(40.8451, -73.90931)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4488695,Box Truck,Box Truck,,, +12/20/2021,9:45,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488259,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,11:20,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",GRAND CENTRAL PARKWAY,150 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488309,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,17:53,MANHATTAN,10021,40.77246,-73.96705,"(40.77246, -73.96705)",5 AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4488995,Bike,Sedan,,, +12/20/2021,12:24,BROOKLYN,11204,40.608078,-73.979706,"(40.608078, -73.979706)",AVENUE P,WEST 6 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488871,Sedan,Box Truck,,, +12/20/2021,16:55,STATEN ISLAND,10310,40.633858,-74.12596,"(40.633858, -74.12596)",CASTLETON AVENUE,CLOVE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488755,Sedan,,,, +05/08/2021,18:14,,,,,,20 AVENUE,PATRACCA PLACE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4414488,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,16:00,QUEENS,11691,40.604977,-73.754425,"(40.604977, -73.754425)",REDFERN AVENUE,MOTT AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4488980,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,21:34,QUEENS,11412,40.691887,-73.756256,"(40.691887, -73.756256)",195 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488473,Sedan,,,, +12/20/2021,6:55,BROOKLYN,11239,40.649616,-73.87132,"(40.649616, -73.87132)",,,369 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488091,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,5:00,BROOKLYN,11206,40.70938,-73.9371,"(40.70938, -73.9371)",WATERBURY STREET,SCHOLES STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488623,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,16:50,QUEENS,11362,40.767372,-73.738754,"(40.767372, -73.738754)",NORTHERN BOULEVARD,ZION STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4488239,Sedan,Sedan,,, +12/20/2021,11:52,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488541,Sedan,Sedan,,, +12/20/2021,8:00,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",QUEENS BOULEVARD,48 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488437,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,18:40,BRONX,10459,40.82498,-73.89132,"(40.82498, -73.89132)",WESTCHESTER AVENUE,WEST FARMS ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488334,Taxi,,,, +12/15/2021,10:45,,,40.74629,-73.766945,"(40.74629, -73.766945)",HORACE HARDING EXPRESSWAY,210 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488809,Box Truck,Sedan,,, +12/20/2021,20:49,MANHATTAN,10120,40.750114,-73.98859,"(40.750114, -73.98859)",,,112 WEST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488363,Taxi,,,, +12/18/2021,10:30,STATEN ISLAND,10304,40.62016,-74.076965,"(40.62016, -74.076965)",VANDERBILT AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4488756,Ambulance,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,16:40,BROOKLYN,11204,40.62986,-73.97904,"(40.62986, -73.97904)",18 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488277,Sedan,Bus,,, +12/20/2021,10:00,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,21:35,,,40.771667,-73.9867,"(40.771667, -73.9867)",WEST 61 STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4488734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,17:00,BROOKLYN,11231,40.676693,-73.99683,"(40.676693, -73.99683)",LUQUER STREET,SMITH STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4488308,Bike,,,, +12/20/2021,17:00,BROOKLYN,11208,40.681908,-73.88519,"(40.681908, -73.88519)",,,72 ELTON STREET,3,0,0,0,0,0,3,0,Accelerator Defective,Other Vehicular,,,,4488545,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,3:00,BRONX,10452,40.8382,-73.92371,"(40.8382, -73.92371)",WOODYCREST AVENUE,WEST 168 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488116,Sedan,,,, +12/20/2021,14:00,,,40.758236,-73.93702,"(40.758236, -73.93702)",37 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488381,Sedan,Motorcycle,,, +12/20/2021,17:40,QUEENS,11355,40.742973,-73.814316,"(40.742973, -73.814316)",KISSENA BOULEVARD,BOOTH MEMORIAL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,22:48,,,40.85051,-73.93105,"(40.85051, -73.93105)",WEST 184 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488389,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,14:20,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488270,Box Truck,Box Truck,,, +12/20/2021,17:00,STATEN ISLAND,10306,40.568943,-74.1113,"(40.568943, -74.1113)",,,2602B HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4488378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,4:49,BROOKLYN,11209,40.61651,-74.02666,"(40.61651, -74.02666)",92 STREET,GATLING PLACE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4488782,Sedan,,,, +12/20/2021,8:41,,,40.66813,-73.93675,"(40.66813, -73.93675)",UNION STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488323,Box Truck,Sedan,,, +12/08/2021,18:00,STATEN ISLAND,10305,40.60902,-74.07422,"(40.60902, -74.07422)",,,416 MARYLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488794,Sedan,,,, +12/20/2021,1:30,QUEENS,11436,40.673676,-73.79376,"(40.673676, -73.79376)",ROCKAWAY BOULEVARD,145 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4487880,Sedan,Sedan,Sedan,, +05/08/2021,17:15,,,40.665813,-73.833115,"(40.665813, -73.833115)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414651,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,18:20,,,,,,FLATBUSH AVENUE EXTENSION,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460202,Sedan,,,, +12/20/2021,10:10,MANHATTAN,10027,40.813828,-73.951935,"(40.813828, -73.951935)",,,409 WEST 129 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4488828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,12:30,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488717,Sedan,,,, +12/17/2021,15:00,,,40.64464,-74.01757,"(40.64464, -74.01757)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488954,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,20:00,BROOKLYN,11221,40.68842,-73.92484,"(40.68842, -73.92484)",,,794 MONROE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488913,Sedan,,,, +12/20/2021,20:48,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",103 AVENUE,111 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,4488518,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/20/2021,0:33,,,40.716557,-73.82869,"(40.716557, -73.82869)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488190,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,9:00,BRONX,10466,40.892475,-73.8545,"(40.892475, -73.8545)",BARNES AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488453,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,20:05,BRONX,10473,40.822063,-73.86699,"(40.822063, -73.86699)",,,839 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488826,Sedan,,,, +12/20/2021,12:30,BROOKLYN,11219,40.62834,-74.00858,"(40.62834, -74.00858)",,,1028 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488229,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,18:49,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4488488,Sedan,,,, +12/18/2021,0:00,BROOKLYN,11232,40.64882,-74.00288,"(40.64882, -74.00288)",41 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488860,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,9:45,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,JAY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488258,Sedan,Sedan,,, +12/20/2021,16:08,MANHATTAN,10033,40.847355,-73.93518,"(40.847355, -73.93518)",SAINT NICHOLAS AVENUE,WEST 178 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488594,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,13:55,,,40.68854,-73.92384,"(40.68854, -73.92384)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4488910,Station Wagon/Sport Utility Vehicle,Van,,, +12/20/2021,8:15,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Glare,,,,,4488146,Sedan,,,, +12/20/2021,19:00,BRONX,10470,40.8956,-73.876015,"(40.8956, -73.876015)",,,27 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488455,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,14:40,,,,,,UTOPIA PARKWAY,29 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488564,Sedan,Sedan,,, +12/20/2021,16:55,,,40.701153,-73.93057,"(40.701153, -73.93057)",CENTRAL AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4488653,Sedan,,,, +12/20/2021,8:40,QUEENS,11413,40.66547,-73.75452,"(40.66547, -73.75452)",,,223-10 SOUTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488164,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,18:30,BROOKLYN,11209,40.616966,-74.03704,"(40.616966, -74.03704)",,,160 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,12:30,BROOKLYN,11203,40.642498,-73.92358,"(40.642498, -73.92358)",AVENUE D,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4488874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,13:30,QUEENS,11385,40.707714,-73.919044,"(40.707714, -73.919044)",,,239 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488894,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/20/2021,7:20,QUEENS,11354,40.765087,-73.83704,"(40.765087, -73.83704)",34 AVENUE,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4488252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/20/2021,10:20,,,40.717995,-74.0095,"(40.717995, -74.0095)",JAY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488348,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:00,BRONX,10466,40.892475,-73.8545,"(40.892475, -73.8545)",EAST 233 STREET,BARNES AVENUE,,2,0,2,0,0,0,0,0,,,,,,4488866,,,,, +12/06/2021,5:20,QUEENS,11102,40.769638,-73.918564,"(40.769638, -73.918564)",,,25-49 31 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488715,Sedan,,,, +12/15/2021,19:10,QUEENS,11411,40.69599,-73.73665,"(40.69599, -73.73665)",116 AVENUE,223 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4488813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,18:00,BROOKLYN,11233,,,,RALPH AVENUE,BAINBRIDGE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460266,,,,, +12/20/2021,11:30,QUEENS,11434,40.66564,-73.77896,"(40.66564, -73.77896)",158 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488177,Sedan,,,, +12/20/2021,5:30,,,40.81322,-73.897835,"(40.81322, -73.897835)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4488268,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,7:40,QUEENS,11691,40.595135,-73.75321,"(40.595135, -73.75321)",SEAGIRT BOULEVARD,BEACH 19 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4488108,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,18:00,QUEENS,11413,40.673378,-73.75316,"(40.673378, -73.75316)",,,219-08 138 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488241,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,10:20,,,40.58273,-73.97494,"(40.58273, -73.97494)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4488956,Box Truck,,,, +12/20/2021,7:53,BRONX,10466,40.89132,-73.86105,"(40.89132, -73.86105)",,,639 EAST 229 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488443,Sedan,,,, +12/20/2021,17:12,,,40.80111,-73.96522,"(40.80111, -73.96522)",WEST 107 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488234,Sedan,,,, +12/19/2021,11:35,QUEENS,11004,40.7462,-73.71354,"(40.7462, -73.71354)",,,258-01 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4488779,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/20/2021,9:33,,,40.625908,-74.15577,"(40.625908, -74.15577)",VANPELT AVENUE,FOREST AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4488597,Sedan,,,, +12/20/2021,13:25,BROOKLYN,11215,40.673717,-73.97358,"(40.673717, -73.97358)",,,862 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488291,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,6:53,BROOKLYN,11226,40.64572,-73.95808,"(40.64572, -73.95808)",,,1042 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,Unspecified,,,4488478,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/20/2021,18:25,,,40.803696,-73.93792,"(40.803696, -73.93792)",EAST 124 STREET,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4488603,Sedan,,,, +12/20/2021,15:30,BROOKLYN,11208,40.673332,-73.8681,"(40.673332, -73.8681)",,,1350 SUTTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4488544,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/20/2021,9:11,BROOKLYN,11220,40.63778,-74.01794,"(40.63778, -74.01794)",63 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488339,Sedan,,,, +12/20/2021,18:21,QUEENS,11434,40.678703,-73.781746,"(40.678703, -73.781746)",LONG STREET,122 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4488749,Sedan,Sedan,,, +12/17/2021,14:00,,,40.6752,-73.86288,"(40.6752, -73.86288)",CONDUIT BOULEVARD,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,0:01,BRONX,10459,40.823105,-73.89103,"(40.823105, -73.89103)",,,954 ALDUS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488284,Sedan,,,, +12/20/2021,21:56,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488771,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,22:50,,,,,,LIE LOWER LEVEL (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488275,Sedan,Sedan,,, +12/20/2021,1:00,,,40.739143,-73.90109,"(40.739143, -73.90109)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488000,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/14/2021,23:00,STATEN ISLAND,10310,40.636665,-74.11976,"(40.636665, -74.11976)",HENDERSON AVENUE,CHAPPELL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488795,Sedan,Sedan,Sedan,, +12/20/2021,17:15,,,40.584755,-73.94712,"(40.584755, -73.94712)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4488981,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/20/2021,6:05,,,40.68843,-73.89132,"(40.68843, -73.89132)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Following Too Closely,Unspecified,Unspecified,,4488209,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/20/2021,20:00,QUEENS,11435,40.706684,-73.80936,"(40.706684, -73.80936)",148 STREET,87 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488310,Sedan,,,, +10/22/2021,18:30,,,,,,GALVIN AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488939,Sedan,Sedan,,, +12/20/2021,18:58,BROOKLYN,11213,40.663754,-73.937164,"(40.663754, -73.937164)",EMPIRE BOULEVARD,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488841,Sedan,Sedan,,, +03/28/2022,15:54,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514558,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,16:10,BROOKLYN,11219,40.62751,-73.99635,"(40.62751, -73.99635)",60 STREET,14 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,8:15,MANHATTAN,10002,40.71718,-73.99548,"(40.71718, -73.99548)",,,93 BOWERY,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459055,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/08/2021,14:44,BRONX,10474,40.81447,-73.88677,"(40.81447, -73.88677)",,,1295 SPOFFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4460403,Dump,Sedan,Sedan,, +09/15/2021,14:30,MANHATTAN,10011,40.736668,-73.997345,"(40.736668, -73.997345)",AVENUE OF THE AMERICAS,WEST 13 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460405,,,,, +09/20/2021,10:00,MANHATTAN,10075,40.77417,-73.961136,"(40.77417, -73.961136)",,,100 EAST 77 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4460407,Sedan,,,, +09/20/2021,11:51,MANHATTAN,10021,40.7711,-73.96594,"(40.7711, -73.96594)",EAST 71 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460401,Sedan,Sedan,,, +09/13/2021,8:13,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",LONGWOOD AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460402,Sedan,,,, +12/08/2021,4:00,,,40.635216,-74.16025,"(40.635216, -74.16025)",,,77 HARBOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484666,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,10:05,,,40.793472,-73.93726,"(40.793472, -73.93726)",EAST 112 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4484940,Sedan,Sedan,,, +12/09/2021,12:32,MANHATTAN,10038,40.711678,-74.00586,"(40.711678, -74.00586)",NASSAU STREET,SPRUCE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485004,Sedan,Box Truck,,, +12/08/2021,22:40,QUEENS,11417,40.68508,-73.83512,"(40.68508, -73.83512)",103 AVENUE,107 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4484801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,17:10,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4484793,Box Truck,,,, +12/08/2021,14:00,,,40.575333,-74.16179,"(40.575333, -74.16179)",FOREST HILL ROAD,PLATINUM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4484966,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/09/2021,8:00,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485122,Sedan,Sedan,,, +12/10/2021,14:15,,,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485684,Sedan,,,, +12/10/2021,8:45,,,40.692154,-73.98529,"(40.692154, -73.98529)",BRIDGE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485290,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,14:40,,,40.772953,-73.92028,"(40.772953, -73.92028)",HOYT AVENUE NORTH,26 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4485362,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,13:32,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4485216,Sedan,Carry All,,, +12/09/2021,17:00,BROOKLYN,11235,40.58253,-73.95723,"(40.58253, -73.95723)",NEPTUNE AVENUE,EAST 12 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4485538,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,18:01,BROOKLYN,11229,40.607357,-73.943474,"(40.607357, -73.943474)",,,2922 AVENUE R,1,0,1,0,0,0,0,0,Unspecified,,,,,4484835,Sedan,,,, +12/08/2021,18:20,BROOKLYN,11204,40.630135,-73.978455,"(40.630135, -73.978455)",,,4527 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484866,Sedan,Sedan,,, +12/09/2021,6:20,QUEENS,11101,40.74525,-73.95575,"(40.74525, -73.95575)",47 ROAD,5 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485093,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,14:54,QUEENS,11385,40.703663,-73.90152,"(40.703663, -73.90152)",FOREST AVENUE,68 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485059,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,7:45,QUEENS,11416,40.688213,-73.843575,"(40.688213, -73.843575)",100 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4485169,Ambulance,Sedan,,, +12/20/2021,15:00,BROOKLYN,11237,40.70738,-73.91849,"(40.70738, -73.91849)",SUYDAM STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488318,Sedan,Tractor Truck Diesel,,, +12/09/2021,19:43,,,,,,FDR DRIVE,EAST 25 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488993,Sedan,Sedan,,, +12/20/2021,9:36,QUEENS,11357,40.791985,-73.81722,"(40.791985, -73.81722)",149 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,16:38,,,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488735,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,8:45,,,40.741493,-73.81477,"(40.741493, -73.81477)",KISSENA BOULEVARD,58 ROAD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459574,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/21/2021,16:11,QUEENS,11379,40.714985,-73.90044,"(40.714985, -73.90044)",,,61-39 ELIOT AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4459714,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,17:09,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,BROWN PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459635,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,8:45,,,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,65 ROAD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460360,Sedan,E-Bike,,, +09/17/2021,12:54,QUEENS,11370,40.76065,-73.89172,"(40.76065, -73.89172)",,,76-18 30 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460312,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,14:40,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460138,Sedan,Sedan,,, +09/21/2021,17:45,,,40.590706,-74.165794,"(40.590706, -74.165794)",RICHMOND AVENUE,NOME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460097,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,2:09,QUEENS,11420,40.68379,-73.80978,"(40.68379, -73.80978)",111 AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459317,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,17:16,,,40.7466,-73.76503,"(40.7466, -73.76503)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4459609,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/17/2021,18:40,MANHATTAN,10019,40.75997,-73.98408,"(40.75997, -73.98408)",,,723 7 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460381,Sedan,Sedan,,, +09/21/2021,0:00,BRONX,10468,40.871414,-73.89927,"(40.871414, -73.89927)",,,2791 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,17:30,STATEN ISLAND,10312,40.54605,-74.16408,"(40.54605, -74.16408)",,,384 WILSON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459659,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,8:15,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4460067,Tractor Truck Gasoline,Sedan,Sedan,, +09/19/2021,11:40,QUEENS,11105,40.770737,-73.90309,"(40.770737, -73.90309)",,,45-02 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460213,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,22:15,,,40.755203,-73.74191,"(40.755203, -73.74191)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460268,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/21/2021,4:00,,,40.752968,-73.83689,"(40.752968, -73.83689)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459386,Sedan,Tractor Truck Diesel,,, +09/21/2021,15:11,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4459664,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/11/2021,14:21,QUEENS,11693,40.6078,-73.81932,"(40.6078, -73.81932)",CROSS BAY BOULEVARD,NOEL ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4460129,Motorcycle,Sedan,,, +09/20/2021,0:00,,,40.88643,-73.895805,"(40.88643, -73.895805)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4460190,Sedan,PK,Station Wagon/Sport Utility Vehicle,Sedan, +09/21/2021,16:00,QUEENS,11377,40.74686,-73.90968,"(40.74686, -73.90968)",39 DRIVE,54 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,9:00,,,40.51245,-74.25015,"(40.51245, -74.25015)",MAIN STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459427,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:48,,,40.755745,-73.76616,"(40.755745, -73.76616)",48 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459557,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:36,,,40.850822,-73.90147,"(40.850822, -73.90147)",EAST BURNSIDE AVENUE,RYER AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,4459723,Sedan,Sedan,Sedan,Sedan,Sedan +09/21/2021,15:40,BROOKLYN,11206,40.697903,-73.9468,"(40.697903, -73.9468)",PARK AVENUE,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460332,Sedan,Sedan,,, +09/21/2021,9:30,BRONX,10474,40.809593,-73.895065,"(40.809593, -73.895065)",,,511 BARRY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459747,PK,,,, +09/21/2021,13:27,,,40.881504,-73.879364,"(40.881504, -73.879364)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4459846,Station Wagon/Sport Utility Vehicle,Bus,,, +09/21/2021,16:55,BRONX,10469,40.877636,-73.8478,"(40.877636, -73.8478)",,,3469 CORSA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459912,Bus,Sedan,,, +09/21/2021,8:00,QUEENS,11435,40.696453,-73.81211,"(40.696453, -73.81211)",,,95-05 REMINGTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459529,Sedan,,,, +09/21/2021,9:05,MANHATTAN,10035,40.799076,-73.93318,"(40.799076, -73.93318)",,,2351 1 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459482,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,17:10,MANHATTAN,10010,40.73951,-73.98475,"(40.73951, -73.98475)",EAST 23 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4460241,Bike,Station Wagon/Sport Utility Vehicle,Box Truck,, +07/29/2021,22:30,QUEENS,11385,40.704594,-73.90826,"(40.704594, -73.90826)",ONDERDONK AVENUE,LINDEN STREET,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4460261,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/13/2021,14:15,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460292,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,13:00,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Following Too Closely,,,,4459510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,0:00,QUEENS,11435,40.701763,-73.80793,"(40.701763, -73.80793)",SUTPHIN BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459484,Station Wagon/Sport Utility Vehicle,Bus,Sedan,, +09/18/2021,13:30,,,40.73803,-73.7949,"(40.73803, -73.7949)",174 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460160,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/21/2021,6:09,,,40.844883,-73.907295,"(40.844883, -73.907295)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459547,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +09/21/2021,2:00,QUEENS,11372,40.749844,-73.883385,"(40.749844, -73.883385)",83 STREET,37 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4459446,Taxi,,,, +09/21/2021,9:00,BRONX,10467,40.871834,-73.86716,"(40.871834, -73.86716)",,,3211 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459909,Sedan,,,, +09/21/2021,15:57,BROOKLYN,11211,40.714077,-73.953804,"(40.714077, -73.953804)",,,445 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459649,Sedan,Sedan,,, +09/21/2021,16:25,QUEENS,11692,40.590633,-73.788765,"(40.590633, -73.788765)",,,146 BEACH 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459670,Sedan,,,, +09/21/2021,19:29,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4460341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/17/2021,0:00,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460387,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,20:00,MANHATTAN,10023,0,0,"(0.0, 0.0)",,,265 WEST 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459961,Motorcycle,Sedan,,, +09/21/2021,11:40,BROOKLYN,11213,40.66772,-73.93678,"(40.66772, -73.93678)",,,317 TROY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459764,Sedan,,,, +09/21/2021,20:40,,,,,,HORACE HARDING EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459927,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,5:25,BROOKLYN,11220,40.645336,-74.02287,"(40.645336, -74.02287)",,,140 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459466,Station Wagon/Sport Utility Vehicle,Fork lift,,, +09/21/2021,16:30,QUEENS,11429,40.71333,-73.73679,"(40.71333, -73.73679)",,,102-20 218 PLACE,0,0,0,0,0,0,0,0,,,,,,4459535,,,,, +09/21/2021,17:00,BROOKLYN,11235,40.591953,-73.95752,"(40.591953, -73.95752)",,,1245 AVENUE X,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459616,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/14/2021,19:00,BROOKLYN,11238,40.688465,-73.963524,"(40.688465, -73.963524)",,,308 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460233,Sedan,Bike,,, +08/19/2021,19:13,,,40.678455,-73.949684,"(40.678455, -73.949684)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460297,Bus,Sedan,,, +09/21/2021,9:30,BRONX,10474,40.809593,-73.895065,"(40.809593, -73.895065)",,,511 BARRY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459745,PK,,,, +09/20/2021,19:45,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4460086,Sedan,,,, +09/19/2021,1:15,BROOKLYN,11207,40.665745,-73.89816,"(40.665745, -73.89816)",WILLIAMS AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4460243,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/21/2021,19:26,BROOKLYN,11220,40.6313,-74.01034,"(40.6313, -74.01034)",65 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459558,Sedan,Sedan,,, +09/20/2021,16:00,BROOKLYN,11201,40.68984,-73.97863,"(40.68984, -73.97863)",DE KALB AVENUE,ASHLAND PLACE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4460282,Bike,,,, +09/21/2021,12:59,BROOKLYN,11205,40.692924,-73.9668,"(40.692924, -73.9668)",,,189 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4459586,Bus,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,11:59,QUEENS,11102,40.771984,-73.91891,"(40.771984, -73.91891)",28 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460169,Sedan,,,, +09/21/2021,9:00,,,40.678253,-74.00273,"(40.678253, -74.00273)",HAMILTON AVENUE,HENRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,18:35,BRONX,10455,40.815872,-73.89667,"(40.815872, -73.89667)",,,788 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460066,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:07,,,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,,,1,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4459795,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/21/2021,19:50,BROOKLYN,11234,40.61679,-73.92373,"(40.61679, -73.92373)",EAST 53 STREET,AVENUE O,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4459870,Sedan,Sedan,Sedan,, +07/19/2021,19:25,,,40.680233,-73.96423,"(40.680233, -73.96423)",WASHINGTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460293,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,19:43,QUEENS,11368,40.74618,-73.85293,"(40.74618, -73.85293)",111 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4460036,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,11:54,BROOKLYN,11233,40.680252,-73.9308,"(40.680252, -73.9308)",,,117 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460154,Sedan,Bulk Agriculture,,, +09/21/2021,16:40,,,40.76496,-73.90532,"(40.76496, -73.90532)",25 AVENUE,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459645,Pick-up Truck,E-Scooter,,, +09/02/2021,16:50,,,40.73986,-73.79012,"(40.73986, -73.79012)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460103,Sedan,Sedan,,, +09/21/2021,7:36,BROOKLYN,11208,40.675053,-73.87436,"(40.675053, -73.87436)",CRYSTAL STREET,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459665,Sedan,Motorcycle,,, +09/21/2021,13:07,BROOKLYN,11237,40.707676,-73.92386,"(40.707676, -73.92386)",HARRISON PLACE,FLUSHING AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460367,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,19:53,,,40.61467,-73.92809,"(40.61467, -73.92809)",FLATBUSH AVENUE,FILLMORE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459601,Sedan,Sedan,,, +09/19/2021,23:00,,,40.763542,-73.9852,"(40.763542, -73.9852)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460382,Station Wagon/Sport Utility Vehicle,Bike,,, +09/21/2021,20:45,MANHATTAN,10032,40.841152,-73.942696,"(40.841152, -73.942696)",,,177 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459732,Sedan,,,, +08/18/2021,12:55,BROOKLYN,11221,40.688164,-73.93312,"(40.688164, -73.93312)",,,196 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460220,Van,,,, +09/21/2021,11:50,QUEENS,11354,40.763588,-73.83603,"(40.763588, -73.83603)",COLLEGE POINT BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:15,MANHATTAN,10002,40.72284,-73.99144,"(40.72284, -73.99144)",,,215 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460075,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/21/2021,10:20,MANHATTAN,10003,40.735584,-73.98486,"(40.735584, -73.98486)",,,211 EAST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460253,Sedan,,,, +09/21/2021,9:50,BROOKLYN,11221,40.696396,-73.91412,"(40.696396, -73.91412)",PALMETTO STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459690,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,23:50,,,40.74457,-73.731575,"(40.74457, -73.731575)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4459611,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,12:11,,,40.73938,-74.00995,"(40.73938, -74.00995)",WEST STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459692,Sedan,,,, +09/21/2021,10:41,STATEN ISLAND,10305,40.598713,-74.06907,"(40.598713, -74.06907)",MAJOR AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459660,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/19/2021,3:36,BROOKLYN,11238,40.68085,-73.97112,"(40.68085, -73.97112)",CARLTON AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,1:09,QUEENS,11420,40.680054,-73.82886,"(40.680054, -73.82886)",,,109-06 111 STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4459318,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,10:00,BROOKLYN,11203,40.649868,-73.93409,"(40.649868, -73.93409)",EAST 46 STREET,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,13:15,BROOKLYN,11221,40.693512,-73.93116,"(40.693512, -73.93116)",,,25 REID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460273,Sedan,,,, +09/21/2021,10:15,,,40.738197,-73.93774,"(40.738197, -73.93774)",30 PLACE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459581,Sedan,Dump,,, +09/21/2021,7:37,QUEENS,11368,40.74917,-73.86925,"(40.74917, -73.86925)",,,96-06 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4460021,Sedan,,,, +09/16/2021,15:53,BROOKLYN,11233,40.683548,-73.92619,"(40.683548, -73.92619)",,,225 PATCHEN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460267,Bus,,,, +07/23/2021,12:30,BROOKLYN,11233,40.683277,-73.93063,"(40.683277, -73.93063)",,,525 MACON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460251,Sedan,,,, +09/15/2021,13:20,MANHATTAN,10014,40.73448,-74.001396,"(40.73448, -74.001396)",WEST 10 STREET,WAVERLY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460096,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,7:45,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459400,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,12:20,QUEENS,11693,40.614872,-73.82165,"(40.614872, -73.82165)",CROSS BAY BOULEVARD,EAST 1 ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460133,Sedan,Sedan,,, +09/21/2021,19:00,QUEENS,11005,40.75628,-73.7211,"(40.75628, -73.7211)",267 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4459563,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/21/2021,1:30,,,40.849964,-73.91416,"(40.849964, -73.91416)",HARRISON AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4459661,Sedan,Sedan,,, +09/20/2021,12:30,BROOKLYN,11211,40.71437,-73.946075,"(40.71437, -73.946075)",METROPOLITAN AVENUE,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460194,Taxi,Carry All,,, +09/21/2021,13:00,,,40.608215,-73.99809,"(40.608215, -73.99809)",82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459605,Sedan,,,, +09/21/2021,14:05,BROOKLYN,11238,40.68247,-73.968765,"(40.68247, -73.968765)",,,510 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459983,Sedan,,,, +09/21/2021,7:00,BROOKLYN,11236,40.653522,-73.918846,"(40.653522, -73.918846)",,,9111 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460074,Sedan,Sedan,,, +09/21/2021,14:45,,,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459636,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,23:25,BROOKLYN,11236,40.64891,-73.89256,"(40.64891, -73.89256)",EAST 108 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460314,Sedan,Sedan,,, +09/11/2021,13:45,,,40.705147,-73.90213,"(40.705147, -73.90213)",FOREST AVENUE,PUTNAM AVENUE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,,,,4460262,Sedan,Bike,,, +09/17/2021,8:49,,,40.622166,-74.141624,"(40.622166, -74.141624)",COLLEGE AVENUE,CRYSTAL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460168,Sedan,Bike,,, +09/18/2021,11:17,MANHATTAN,10075,40.772964,-73.95827,"(40.772964, -73.95827)",3 AVENUE,EAST 77 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460374,Motorbike,,,, +09/21/2021,9:10,,,40.697193,-73.72752,"(40.697193, -73.72752)",115 AVENUE,CROSS ISLAND PARKWAY,,1,0,0,0,1,0,0,0,Tire Failure/Inadequate,Traffic Control Disregarded,,,,4459489,Station Wagon/Sport Utility Vehicle,Bike,,, +09/21/2021,13:45,BROOKLYN,11203,40.662544,-73.9351,"(40.662544, -73.9351)",,,843 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4459513,Sedan,,,, +09/21/2021,19:45,QUEENS,11432,40.71152,-73.7908,"(40.71152, -73.7908)",,,171-19 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459778,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,14:05,BROOKLYN,11213,40.677563,-73.93309,"(40.677563, -73.93309)",SCHENECTADY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460257,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,14:55,QUEENS,11355,40.74584,-73.82342,"(40.74584, -73.82342)",BOOTH MEMORIAL AVENUE,142 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459575,Sedan,Bike,,, +09/21/2021,17:35,BROOKLYN,11205,40.69632,-73.960625,"(40.69632, -73.960625)",TAAFFE PLACE,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459939,Sedan,,,, +09/21/2021,5:30,,,40.76771,-73.93247,"(40.76771, -73.93247)",14 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460212,Sedan,,,, +09/21/2021,10:23,,,,,,166 STREET,NADAL PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459470,Sedan,,,, +09/21/2021,14:48,BRONX,10472,40.831825,-73.85665,"(40.831825, -73.85665)",,,2002 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4459712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/21/2021,17:45,BRONX,10472,,,,WESTCHESTER AVENUE,HARROD AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459809,Sedan,Taxi,,, +09/21/2021,13:08,BROOKLYN,11207,0,0,"(0.0, 0.0)",,,208 NEW LOTS AVENUE,1,0,0,0,0,0,1,0,Using On Board Navigation Device,Unspecified,,,,4459497,Sedan,Sedan,,, +09/21/2021,13:30,BROOKLYN,11229,40.599697,-73.948524,"(40.599697, -73.948524)",AVENUE U,EAST 23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459614,Sedan,Sedan,,, +09/21/2021,18:00,BRONX,10471,40.901352,-73.89785,"(40.901352, -73.89785)",,,5401 POST ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4460087,Sedan,,,, +09/18/2021,12:38,QUEENS,11435,40.70058,-73.80775,"(40.70058, -73.80775)",SUTPHIN BOULEVARD,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460152,Station Wagon/Sport Utility Vehicle,UTIL,,, +09/21/2021,20:54,,,40.678116,-73.92172,"(40.678116, -73.92172)",RALPH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459970,Sedan,,,, +09/15/2021,20:00,BRONX,10461,40.849392,-73.82972,"(40.849392, -73.82972)",,,3111 WILLOW LANE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4460397,Sedan,,,, +09/21/2021,17:33,BRONX,10462,40.8561,-73.86763,"(40.8561, -73.86763)",,,2190 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4459569,Bus,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,17:00,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459625,Pick-up Truck,Sedan,,, +07/14/2021,9:50,BROOKLYN,11213,40.67533,-73.93609,"(40.67533, -73.93609)",BERGEN STREET,TROY AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4460302,Bus,,,, +08/12/2021,19:05,,,40.677574,-73.95548,"(40.677574, -73.95548)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,13:30,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460234,Sedan,Sedan,,, +09/21/2021,16:00,,,40.5974,-74.083275,"(40.5974, -74.083275)",KERMIT AVENUE,PARKINSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460079,Sedan,,,, +09/14/2021,15:00,QUEENS,11422,40.66708,-73.73319,"(40.66708, -73.73319)",,,244-33 138 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460284,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,18:05,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",12 AVENUE,WEST 56 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459759,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,6:16,BRONX,10470,40.89845,-73.85431,"(40.89845, -73.85431)",NEREID AVENUE,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459424,Sedan,,,, +09/21/2021,9:50,BROOKLYN,11205,40.690125,-73.960266,"(40.690125, -73.960266)",,,298 CLASSON AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4459924,Sedan,Bus,,, +09/21/2021,16:40,MANHATTAN,10128,40.781315,-73.94614,"(40.781315, -73.94614)",EAST 93 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459551,Sedan,Bike,,, +12/20/2021,15:05,QUEENS,11416,40.679344,-73.859535,"(40.679344, -73.859535)",LIBERTY AVENUE,78 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4488298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:24,BRONX,10463,40.888313,-73.91312,"(40.888313, -73.91312)",WEST 237 STREET,INDEPENDENCE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459836,Sedan,,,, +09/21/2021,9:30,QUEENS,11379,40.729813,-73.874664,"(40.729813, -73.874664)",,,85-20 60 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459719,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,6:10,BRONX,10451,40.811714,-73.92671,"(40.811714, -73.92671)",EAST 139 STREET,MORRIS AVENUE,,1,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459648,Taxi,E-Bike,,, +05/02/2021,18:30,BROOKLYN,11213,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4460301,Sedan,Bike,,, +08/23/2021,12:50,,,,,,HORACE HARDING EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460157,Sedan,,,, +09/21/2021,22:12,,,40.597614,-74.074905,"(40.597614, -74.074905)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4459668,Sedan,Sedan,,, +09/21/2021,16:00,,,40.577744,-73.95607,"(40.577744, -73.95607)",BRIGHTON BEACH AVENUE,BRIGHTON 14 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460082,Sedan,,,, +09/20/2021,15:15,,,40.5591,-74.20101,"(40.5591, -74.20101)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4460331,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,22:33,,,40.76241,-73.95443,"(40.76241, -73.95443)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459584,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:38,MANHATTAN,10002,40.710697,-73.984634,"(40.710697, -73.984634)",,,299 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459940,Garbage or Refuse,Garbage or Refuse,,, +09/21/2021,21:00,,,40.600025,-73.75741,"(40.600025, -73.75741)",BROOKHAVEN AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4460037,Sedan,,,, +09/21/2021,6:21,QUEENS,11417,40.676003,-73.84351,"(40.676003, -73.84351)",CROSS BAY BOULEVARD,PLATTWOOD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459623,Bus,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:45,BRONX,10458,40.861923,-73.89357,"(40.861923, -73.89357)",EAST FORDHAM ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459845,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,9:05,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4459444,Sedan,,,, +09/21/2021,17:20,QUEENS,11413,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,150 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4459681,Sedan,Sedan,,, +09/21/2021,14:00,QUEENS,11435,40.697872,-73.802376,"(40.697872, -73.802376)",150 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459528,Sedan,,,, +09/21/2021,16:00,MANHATTAN,10014,40.73507,-74.001976,"(40.73507, -74.001976)",7 AVENUE SOUTH,CHARLES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,20:40,QUEENS,11354,40.771633,-73.82468,"(40.771633, -73.82468)",PARSONS BOULEVARD,29 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4459578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,17:00,QUEENS,11434,40.684277,-73.775024,"(40.684277, -73.775024)",119 AVENUE,RING PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459680,Sedan,Sedan,,, +04/02/2021,13:34,QUEENS,11435,40.701458,-73.812515,"(40.701458, -73.812515)",90 AVENUE,139 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4405630,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,10:54,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",PROSPECT AVENUE,4 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4412634,Sedan,Sedan,,, +05/05/2021,5:15,,,,,,MANHATTAN BR LOWER,,,2,0,0,0,0,0,2,0,Fell Asleep,,,,,4415343,Sedan,,,, +05/08/2021,19:10,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415317,Sedan,Sedan,,, +05/08/2021,13:40,BROOKLYN,11239,40.650764,-73.88481,"(40.650764, -73.88481)",PENNSYLVANIA AVENUE,VANDALIA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415323,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,15:02,MANHATTAN,10013,40.719517,-73.994385,"(40.719517, -73.994385)",BOWERY,BROOME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415345,Sedan,Sedan,,, +05/08/2021,15:20,BROOKLYN,11208,,,,ATLANTIC AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415306,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/07/2021,15:15,MANHATTAN,10031,40.823887,-73.95232,"(40.823887, -73.95232)",WEST 141 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415346,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,16:42,,,40.677155,-73.86887,"(40.677155, -73.86887)",GLENMORE AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4415316,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/08/2021,21:30,BROOKLYN,11207,40.67559,-73.886406,"(40.67559, -73.886406)",,,329 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415320,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,15:15,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,9:15,MANHATTAN,10013,40.71739,-73.99573,"(40.71739, -73.99573)",,,153 HESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460340,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,17:13,BRONX,10462,40.849354,-73.863075,"(40.849354, -73.863075)",,,1954 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459640,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,10:12,MANHATTAN,10029,40.794735,-73.93455,"(40.794735, -73.93455)",,,464 EAST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460118,Sedan,,,, +09/21/2021,3:50,,,,,,,,39-14 corporal kenney street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/19/2021,10:54,BROOKLYN,11212,40.66298,-73.92997,"(40.66298, -73.92997)",,,25 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460178,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,13:45,BROOKLYN,11204,40.616707,-73.97846,"(40.616707, -73.97846)",60 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460392,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,23:00,,,40.78739,-73.938225,"(40.78739, -73.938225)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460017,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,9:17,MANHATTAN,10010,40.739727,-73.98924,"(40.739727, -73.98924)",,,15 EAST 21 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414589,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,22:22,BRONX,10454,40.804585,-73.91906,"(40.804585, -73.91906)",MAJOR DEEGAN EXPRESSWAY,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4414897,Sedan,Sedan,Sedan,, +05/08/2021,11:00,MANHATTAN,10024,40.787003,-73.97552,"(40.787003, -73.97552)",WEST 85 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414730,Sedan,,,, +05/08/2021,7:00,BROOKLYN,11208,40.676403,-73.87218,"(40.676403, -73.87218)",,,440 EUCLID AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415305,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,5:18,BROOKLYN,11238,40.676548,-73.96354,"(40.676548, -73.96354)",WASHINGTON AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415133,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,10:40,BRONX,10461,40.84301,-73.83877,"(40.84301, -73.83877)",,,1250 WATERS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415089,Sedan,Sedan,,, +05/08/2021,1:00,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414306,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:19,BRONX,10472,40.831875,-73.86636,"(40.831875, -73.86636)",WESTCHESTER AVENUE,BEACH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414991,E-Bike,,,, +05/08/2021,16:00,,,40.590393,-74.16611,"(40.590393, -74.16611)",,,2385 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414809,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,17:17,MANHATTAN,10013,40.722927,-74.00218,"(40.722927, -74.00218)",BROOME STREET,WOOSTER STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4415063,Sedan,Sedan,,, +05/06/2021,5:50,BROOKLYN,11207,40.67802,-73.89744,"(40.67802, -73.89744)",,,1 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415279,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,0:29,BRONX,10459,40.822105,-73.90062,"(40.822105, -73.90062)",PROSPECT AVENUE,EAST 163 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4414323,Sedan,Bike,,, +05/08/2021,11:18,BRONX,10457,40.839935,-73.900925,"(40.839935, -73.900925)",BATHGATE AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:50,,,40.8746,-73.9097,"(40.8746, -73.9097)",BROADWAY,WEST 225 STREET,,1,0,1,0,0,0,0,0,,,,,,4415127,,,,, +09/19/2021,14:50,BROOKLYN,11233,40.68237,-73.931946,"(40.68237, -73.931946)",MACDONOUGH STREET,STUYVESANT AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460272,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,1:20,STATEN ISLAND,10309,40.52128,-74.23946,"(40.52128, -74.23946)",ARTHUR KILL ROAD,RICHMOND VALLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4415043,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,9:28,BRONX,10453,40.848255,-73.90976,"(40.848255, -73.90976)",EAST 176 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414436,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,17:30,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",ROCKAWAY AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414546,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,3:42,,,40.72738,-73.94575,"(40.72738, -73.94575)",HUMBOLDT STREET,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414911,Sedan,,,, +05/08/2021,12:15,STATEN ISLAND,10312,40.55959,-74.16958,"(40.55959, -74.16958)",,,3267 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414946,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,6:45,BRONX,10460,40.837585,-73.866394,"(40.837585, -73.866394)",TAYLOR AVENUE,ARCHER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414998,Sedan,,,, +05/03/2021,15:09,BRONX,10473,40.82215,-73.86218,"(40.82215, -73.86218)",,,820 THIERIOT AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4415012,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,19:45,BROOKLYN,11209,40.62181,-74.02878,"(40.62181, -74.02878)",,,8724 4 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414499,Sedan,,,, +05/08/2021,16:00,,,40.743477,-73.73286,"(40.743477, -73.73286)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414472,Pick-up Truck,Sedan,,, +05/08/2021,6:30,BROOKLYN,11231,40.675117,-74.00962,"(40.675117, -74.00962)",LORRAINE STREET,OTSEGO STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4415250,LIMO,Sedan,Sedan,, +05/06/2021,8:50,BROOKLYN,11208,40.665596,-73.87431,"(40.665596, -73.87431)",LINDEN BOULEVARD,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415272,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +04/03/2021,18:40,BRONX,10455,40.818226,-73.916794,"(40.818226, -73.916794)",MELROSE AVENUE,EAST 152 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415200,E-Bike,Taxi,,, +08/14/2021,14:45,,,40.68383,-73.932236,"(40.68383, -73.932236)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460258,Sedan,Sedan,,, +05/08/2021,23:40,BROOKLYN,11208,40.679863,-73.878,"(40.679863, -73.878)",,,3183 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415291,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,2:00,BROOKLYN,11236,40.641598,-73.902504,"(40.641598, -73.902504)",,,1184 EAST 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414493,Sedan,Sedan,,, +05/08/2021,18:20,,,40.689964,-73.796776,"(40.689964, -73.796776)",SUTPHIN BOULEVARD,110 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Traffic Control Disregarded,,,,4414473,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,15:45,,,40.700512,-73.796776,"(40.700512, -73.796776)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,5:00,BROOKLYN,11212,40.667366,-73.92274,"(40.667366, -73.92274)",RALPH AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4414535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/08/2021,9:40,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,HUNTERS POINT AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4414453,Sedan,Bike,,, +05/08/2021,7:00,BRONX,10472,40.832817,-73.86559,"(40.832817, -73.86559)",,,1317 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4415011,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/08/2021,17:00,,,40.844685,-73.9408,"(40.844685, -73.9408)",WEST 172 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414779,Bus,Sedan,,, +05/08/2021,1:12,MANHATTAN,10065,40.76734,-73.96868,"(40.76734, -73.96868)",MADISON AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414846,Sedan,Taxi,,, +05/07/2021,13:29,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4415027,Sedan,Sedan,,, +05/08/2021,23:00,QUEENS,11370,40.76276,-73.88953,"(40.76276, -73.88953)",79 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414954,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,12:14,,,40.828407,-73.84392,"(40.828407, -73.84392)",BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415017,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/08/2021,5:35,,,40.790154,-73.93675,"(40.790154, -73.93675)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4414466,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,18:30,MANHATTAN,10002,40.717926,-73.98568,"(40.717926, -73.98568)",DELANCEY STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4414506,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,18:40,BRONX,10469,40.86174,-73.846375,"(40.86174, -73.846375)",,,2439 SEYMOUR AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4414686,Sedan,Motorbike,,, +04/30/2021,17:20,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415224,Sedan,E-Bike,,, +05/06/2021,23:30,BROOKLYN,11207,40.674255,-73.89749,"(40.674255, -73.89749)",LIBERTY AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415297,Sedan,,,, +05/08/2021,11:37,,,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4414945,Sedan,Sedan,Taxi,, +05/06/2021,0:00,,,40.672474,-73.88308,"(40.672474, -73.88308)",ELTON STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415082,AMBULANCE,Sedan,,, +05/08/2021,16:41,,,40.683342,-74.001976,"(40.683342, -74.001976)",HICKS STREET,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415251,Sedan,Sedan,,, +05/08/2021,20:40,STATEN ISLAND,10310,40.637245,-74.12752,"(40.637245, -74.12752)",,,1872 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414548,Sedan,Sedan,Sedan,, +05/07/2021,17:30,BROOKLYN,11208,40.689583,-73.87158,"(40.689583, -73.87158)",,,18 AUTUMN AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415287,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,23:14,BROOKLYN,11204,40.63007,-73.982414,"(40.63007, -73.982414)",17 AVENUE,48 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4414624,Sedan,Bike,,, +05/08/2021,15:57,BROOKLYN,11203,40.65836,-73.930084,"(40.65836, -73.930084)",EAST 51 STREET,WINTHROP STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415158,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,16:20,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414481,Sedan,Sedan,,, +05/07/2021,17:22,MANHATTAN,10014,40.726173,-74.01099,"(40.726173, -74.01099)",WEST STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415061,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,11:30,QUEENS,11418,40.69615,-73.82668,"(40.69615, -73.82668)",,,91-32 121 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414982,Sedan,,,, +05/07/2021,19:30,BRONX,10473,40.825966,-73.862175,"(40.825966, -73.862175)",BRUCKNER BOULEVARD,LELAND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415006,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,16:30,BROOKLYN,11207,40.68057,-73.892334,"(40.68057, -73.892334)",JAMAICA AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415293,Sedan,Sedan,,, +05/08/2021,16:03,MANHATTAN,10035,40.79988,-73.93861,"(40.79988, -73.93861)",3 AVENUE,EAST 119 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415056,Sedan,,,, +04/06/2021,11:55,,,40.68383,-73.932236,"(40.68383, -73.932236)",STUYVESANT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415139,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/08/2021,16:12,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414754,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,13:55,QUEENS,11373,40.72886,-73.884094,"(40.72886, -73.884094)",,,78-17 57 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4415096,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,17:10,BRONX,10456,40.8353,-73.90792,"(40.8353, -73.90792)",,,1368 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414831,Station Wagon/Sport Utility Vehicle,PK,,, +05/08/2021,17:00,,,40.6568,-73.85758,"(40.6568, -73.85758)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4414643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,20:47,STATEN ISLAND,10305,,,,father capodanno blvd,sand lane,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4414929,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +05/05/2021,10:38,MANHATTAN,10021,40.7709,-73.955315,"(40.7709, -73.955315)",,,349 EAST 76 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415207,Sedan,,,, +05/08/2021,11:07,,,40.840286,-73.92147,"(40.840286, -73.92147)",WEST 170 STREET,GRANT HIGHWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4414557,Station Wagon/Sport Utility Vehicle,Bike,,, +05/06/2021,13:32,,,40.757286,-73.97812,"(40.757286, -73.97812)",5 AVENUE,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4415071,Box Truck,Sedan,,, +04/30/2021,0:25,STATEN ISLAND,10305,40.607414,-74.0626,"(40.607414, -74.0626)",,,32 LYMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415261,Sedan,Sedan,,, +05/08/2021,13:15,BRONX,10455,40.81721,-73.916,"(40.81721, -73.916)",3 AVENUE,EAST 151 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4414880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,16:30,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414653,Sedan,,,, +05/08/2021,17:50,BRONX,10453,40.858814,-73.90365,"(40.858814, -73.90365)",,,2285 JEROME AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4414883,Pick-up Truck,Sedan,,, +05/08/2021,0:01,,,40.79944,-73.975006,"(40.79944, -73.975006)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4414810,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,0:00,,,40.67766,-73.968864,"(40.67766, -73.968864)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415117,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,4:00,QUEENS,11434,40.666386,-73.785,"(40.666386, -73.785)",SOUTH CONDUIT AVENUE,153 LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414307,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,11:00,BROOKLYN,11223,40.607323,-73.97271,"(40.607323, -73.97271)",,,1869 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415164,Box Truck,Sedan,,, +05/06/2021,17:05,BROOKLYN,11207,40.658367,-73.893715,"(40.658367, -73.893715)",,,727 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415283,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,3:10,BROOKLYN,11230,40.61701,-73.969124,"(40.61701, -73.969124)",OCEAN PARKWAY,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414615,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,16:00,,,40.840824,-73.94597,"(40.840824, -73.94597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4415051,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,16:30,BROOKLYN,11208,40.679535,-73.87914,"(40.679535, -73.87914)",,,3143 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4415278,Sedan,,,, +05/08/2021,17:35,QUEENS,11412,40.69797,-73.753784,"(40.69797, -73.753784)",200 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415256,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,10:45,QUEENS,11375,40.71491,-73.83194,"(40.71491, -73.83194)",,,118-35 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4415088,Sedan,,,, +05/08/2021,6:00,BROOKLYN,11229,40.603344,-73.93684,"(40.603344, -73.93684)",GERRITSEN AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414406,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,18:30,QUEENS,11423,40.71871,-73.763176,"(40.71871, -73.763176)",,,88-37 199 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415132,Sedan,Sedan,,, +05/08/2021,10:30,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",BRUCKNER EXPRESSWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414555,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,18:20,,,40.59113,-74.16521,"(40.59113, -74.16521)",,,2353 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4414811,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,14:40,,,40.692146,-73.919464,"(40.692146, -73.919464)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415178,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,1:15,QUEENS,11419,40.691628,-73.811874,"(40.691628, -73.811874)",LIBERTY AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4414646,Sedan,Sedan,,, +05/07/2021,8:45,STATEN ISLAND,10307,40.51577,-74.24355,"(40.51577, -74.24355)",BARNARD AVENUE,ARTHUR KILL ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4415042,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/08/2021,14:30,,,40.762966,-73.973976,"(40.762966, -73.973976)",WEST 57 STREET,,,1,0,1,0,0,0,0,0,,,,,,4415068,,,,, +05/08/2021,8:30,QUEENS,11368,40.74895,-73.854485,"(40.74895, -73.854485)",111 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4414739,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +05/06/2021,9:42,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415273,Sedan,Sedan,,, +05/08/2021,12:56,BROOKLYN,11203,,,,WINTHROP STREET,EAST 51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415155,Sedan,,,, +05/08/2021,16:30,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414479,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,13:19,QUEENS,11692,40.59534,-73.80139,"(40.59534, -73.80139)",,,72-22 ELIZABETH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414494,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,19:00,BROOKLYN,11211,40.71493,-73.93874,"(40.71493, -73.93874)",,,69 OLIVE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414971,Sedan,,,, +05/07/2021,17:39,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415266,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,4:00,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",EAST 241 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414597,Sedan,,,, +05/08/2021,14:30,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415020,Sedan,Sedan,,, +04/30/2021,23:40,,,,,,109 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4415193,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/08/2021,8:25,BROOKLYN,11236,40.638306,-73.8947,"(40.638306, -73.8947)",,,1777 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4414468,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/08/2021,20:50,QUEENS,11106,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,34 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4414896,Sedan,Sedan,Sedan,, +05/08/2021,12:50,QUEENS,11421,40.696205,-73.85155,"(40.696205, -73.85155)",,,85-34 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414983,Box Truck,,,, +05/08/2021,16:20,,,40.780437,-73.79402,"(40.780437, -73.79402)",19 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414486,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,9:00,BRONX,10461,40.855034,-73.85625,"(40.855034, -73.85625)",LYDIG AVENUE,TOMLINSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414685,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,20:30,,,40.66725,-73.99455,"(40.66725, -73.99455)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415083,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,6:00,QUEENS,11419,40.691372,-73.80989,"(40.691372, -73.80989)",VANWYCK EXPRESSWAY,104 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415138,Sedan,,,, +05/07/2021,13:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415028,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,14:29,,,,,,PARK AVENUE,CUMBERLAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414570,Box Truck,Box Truck,,, +05/08/2021,2:28,BROOKLYN,11203,40.649986,-73.93215,"(40.649986, -73.93215)",SNYDER AVENUE,EAST 48 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414706,Taxi,Taxi,,, +05/07/2021,16:03,BROOKLYN,11207,40.65408,-73.89162,"(40.65408, -73.89162)",WORTMAN AVENUE,MALTA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415301,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,11:00,BROOKLYN,11207,40.68035,-73.88806,"(40.68035, -73.88806)",,,181 ARLINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415296,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,21:40,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4415225,Sedan,,,, +05/06/2021,9:00,BROOKLYN,11207,40.66725,-73.88799,"(40.66725, -73.88799)",HENDRIX STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415075,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,19:25,BROOKLYN,11208,40.663544,-73.86949,"(40.663544, -73.86949)",FOUNTAIN AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415288,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,23:40,QUEENS,11372,40.75004,-73.88153,"(40.75004, -73.88153)",85 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4414953,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,3:55,BROOKLYN,11236,40.64286,-73.91519,"(40.64286, -73.91519)",EAST 85 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Outside Car Distraction,,,,4414413,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,16:55,MANHATTAN,10035,40.80143,-73.93646,"(40.80143, -73.93646)",,,226 EAST 122 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415016,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,7:00,,,40.619392,-73.94746,"(40.619392, -73.94746)",AVENUE M,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4414536,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,9:18,BROOKLYN,11207,40.67993,-73.90126,"(40.67993, -73.90126)",,,1650 BUSHWICK AVENUE,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4414988,Sedan,Sedan,,, +05/08/2021,15:15,MANHATTAN,10037,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inexperience,,,,4414908,Bike,Sedan,,, +05/08/2021,20:00,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4414776,Motorscooter,,,, +05/07/2021,7:20,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4415300,Sedan,Sedan,Sedan,Sedan, +05/07/2021,20:30,QUEENS,11433,40.701237,-73.79465,"(40.701237, -73.79465)",LIBERTY AVENUE,BREWER BOULEVARD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4415142,Sedan,Sedan,,, +05/08/2021,14:50,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414838,Sedan,Van,,, +03/22/2021,10:00,,,40.626034,-73.98327,"(40.626034, -73.98327)",18 AVENUE,53 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415076,Van,E-Scooter,,, +05/08/2021,21:20,,,40.86032,-73.90944,"(40.86032, -73.90944)",LORING PLACE NORTH,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414622,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,18:00,BRONX,10473,40.822903,-73.85754,"(40.822903, -73.85754)",,,1937 TURNBULL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415021,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,14:30,BROOKLYN,11207,40.66742,-73.897644,"(40.66742, -73.897644)",BLAKE AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415057,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,18:00,,,40.648922,-73.94938,"(40.648922, -73.94938)",SNYDER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414702,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,11:10,STATEN ISLAND,10310,40.634407,-74.11883,"(40.634407, -74.11883)",,,1080 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459816,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,13:30,QUEENS,11354,40.763958,-73.82814,"(40.763958, -73.82814)",NORTHERN BOULEVARD,UNION STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4414452,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,22:30,,,,,,BAINBRIDGE AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4414875,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,18:15,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414498,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,0:27,BRONX,10454,40.807304,-73.92859,"(40.807304, -73.92859)",,,25 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414885,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,20:45,MANHATTAN,10038,40.70812,-73.999435,"(40.70812, -73.999435)",FDR DRIVE,BROOKLYN BRIDGE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414607,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,20:45,BRONX,10460,40.83241,-73.89072,"(40.83241, -73.89072)",JENNINGS STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4414874,Bus,Motorbike,Station Wagon/Sport Utility Vehicle,, +05/07/2021,19:32,BROOKLYN,11220,40.642548,-74.016655,"(40.642548, -74.016655)",4 AVENUE,57 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415095,Sedan,Bike,,, +05/08/2021,13:47,,,,,,BOSTON ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414752,Sedan,,,, +05/07/2021,0:40,,,40.676094,-73.94992,"(40.676094, -73.94992)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415119,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,5:17,,,40.75291,-73.90608,"(40.75291, -73.90608)",BROADWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4414309,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,9:50,BROOKLYN,11216,40.671555,-73.94898,"(40.671555, -73.94898)",,,884 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415166,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,16:57,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415050,Bus,,,, +05/06/2021,16:03,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415282,Sedan,Bus,,, +05/05/2021,12:00,BROOKLYN,11239,,,,,,475 LOCKE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4415269,Sedan,,,, +09/21/2021,10:40,,,40.641205,-73.877205,"(40.641205, -73.877205)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459496,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,22:08,,,40.75858,-73.82562,"(40.75858, -73.82562)",UNION STREET,BARCLAY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414485,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,12:00,BRONX,10459,40.823086,-73.89143,"(40.823086, -73.89143)",,,944 ALDUS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414935,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,0:01,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4415162,Sedan,Sedan,,, +05/08/2021,16:30,,,40.71741,-73.984,"(40.71741, -73.984)",RIDGE STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414505,Sedan,,,, +04/16/2021,7:45,QUEENS,11377,40.733597,-73.91062,"(40.733597, -73.91062)",,,53-15 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414973,Sedan,TRAILER,,, +05/04/2021,10:15,MANHATTAN,10128,40.784042,-73.9565,"(40.784042, -73.9565)",EAST 91 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4415206,Taxi,Box Truck,,, +05/08/2021,15:30,,,40.58036,-73.96761,"(40.58036, -73.96761)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414565,Sedan,,,, +05/07/2021,19:30,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415007,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,14:54,QUEENS,11412,40.701588,-73.74865,"(40.701588, -73.74865)",MURDOCK AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4415265,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/08/2021,11:45,QUEENS,11413,40.66534,-73.743935,"(40.66534, -73.743935)",SOUTH CONDUIT AVENUE,232 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4414459,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,23:40,STATEN ISLAND,10305,40.5842,-74.09472,"(40.5842, -74.09472)",HYLAN BOULEVARD,NAUGHTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414940,Sedan,Sedan,,, +05/07/2021,9:52,BRONX,10462,40.830902,-73.84765,"(40.830902, -73.84765)",HAVEMEYER AVENUE,HAVILAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415000,Station Wagon/Sport Utility Vehicle,Van,,, +05/07/2021,17:50,MANHATTAN,10035,40.799984,-73.94275,"(40.799984, -73.94275)",PARK AVENUE,EAST 117 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4415019,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/08/2021,11:28,,,40.795403,-73.94188,"(40.795403, -73.94188)",3 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414469,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,13:00,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414503,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,14:05,BROOKLYN,11225,40.662006,-73.953705,"(40.662006, -73.953705)",,,432 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415226,Sedan,,,, +05/08/2021,4:40,,,40.686756,-73.9938,"(40.686756, -73.9938)",WARREN STREET,COURT STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4415253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/08/2021,23:30,,,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414554,Sedan,,,, +05/08/2021,12:30,,,40.613388,-73.995995,"(40.613388, -73.995995)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414812,Sedan,Sedan,,, +05/08/2021,16:30,MANHATTAN,10001,40.74967,-73.99531,"(40.74967, -73.99531)",8 AVENUE,WEST 30 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415208,Station Wagon/Sport Utility Vehicle,Bike,,, +05/06/2021,15:07,BROOKLYN,11208,40.677597,-73.874794,"(40.677597, -73.874794)",,,937 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415049,Sedan,,,, +05/08/2021,19:30,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415150,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/08/2021,19:20,BROOKLYN,11205,40.69401,-73.9611,"(40.69401, -73.9611)",MYRTLE AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414478,Ambulance,,,, +05/08/2021,7:50,BRONX,10470,40.903347,-73.84918,"(40.903347, -73.84918)",,,733 CRANFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414598,Sedan,,,, +05/08/2021,8:25,,,40.611008,-73.98439,"(40.611008, -73.98439)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,Unspecified,4414443,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/08/2021,18:30,BROOKLYN,11212,40.670273,-73.91545,"(40.670273, -73.91545)",,,1410 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4414541,Sedan,Sedan,,, +05/05/2021,14:25,BROOKLYN,11208,40.674828,-73.86986,"(40.674828, -73.86986)",,,537 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415284,Bus,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,8:50,,,40.820965,-73.939575,"(40.820965, -73.939575)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4414913,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/08/2021,10:00,STATEN ISLAND,10304,40.62043,-74.08444,"(40.62043, -74.08444)",,,268 TARGEE STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4414514,Sedan,,,, +05/08/2021,23:45,,,40.63932,-74.02356,"(40.63932, -74.02356)",65 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415094,Dump,Sedan,,, +05/07/2021,10:40,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4415008,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,11:30,,,40.82682,-73.94154,"(40.82682, -73.94154)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415350,Motorcycle,,,, +05/08/2021,19:45,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4414648,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/08/2021,20:36,,,40.84758,-73.923195,"(40.84758, -73.923195)",UNDERCLIFF AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4414966,Motorcycle,,,, +05/08/2021,12:11,BRONX,10473,40.809704,-73.8554,"(40.809704, -73.8554)",,,210 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415015,Sedan,Sedan,,, +05/06/2021,13:36,,,40.852726,-73.93443,"(40.852726, -73.93443)",WEST 185 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4414996,Sedan,Box Truck,Sedan,Sedan, +05/08/2021,22:45,,,40.85512,-73.872215,"(40.85512, -73.872215)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4414803,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,12:30,,,40.764736,-73.98222,"(40.764736, -73.98222)",WEST 55 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415067,Sedan,,,, +05/08/2021,20:00,QUEENS,11426,40.726498,-73.72582,"(40.726498, -73.72582)",,,242-23 91 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415189,Taxi,,,, +05/08/2021,23:00,QUEENS,11355,40.75783,-73.82109,"(40.75783, -73.82109)",,,143-49 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414637,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,8:50,BROOKLYN,11218,40.647297,-73.9803,"(40.647297, -73.9803)",CATON AVENUE,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415084,EMS bus,Sedan,,, +05/08/2021,10:30,BRONX,10468,40.869087,-73.89467,"(40.869087, -73.89467)",,,2755 MORRIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414620,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,4:54,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414410,Sedan,,,, +05/07/2021,0:40,,,40.675644,-73.94161,"(40.675644, -73.94161)",KINGSTON AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4415120,Bike,Sedan,,, +05/08/2021,23:50,BROOKLYN,11208,40.683384,-73.86841,"(40.683384, -73.86841)",,,304 NICHOLS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415289,Sedan,Sedan,,, +05/08/2021,16:00,QUEENS,11432,40.7148,-73.79291,"(40.7148, -73.79291)",,,85-01 KINGSTON PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4414495,Sedan,,,, +05/08/2021,20:20,BROOKLYN,11212,40.661366,-73.92179,"(40.661366, -73.92179)",,,216 EAST 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414707,Sedan,,,, +05/05/2021,16:30,BROOKLYN,11207,40.668556,-73.88552,"(40.668556, -73.88552)",,,521 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415274,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,20:29,,,40.70091,-73.926094,"(40.70091, -73.926094)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415179,Sedan,Sedan,,, +05/06/2021,16:30,QUEENS,11372,40.747734,-73.883,"(40.747734, -73.883)",ROOSEVELT AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415053,Sedan,,,, +05/08/2021,16:00,BROOKLYN,11208,40.685917,-73.87071,"(40.685917, -73.87071)",AUTUMN AVENUE,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415324,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,15:20,,,40.855667,-73.89968,"(40.855667, -73.89968)",RYER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514449,Sedan,Bus,,, +05/08/2021,11:30,QUEENS,11373,40.740097,-73.871346,"(40.740097, -73.871346)",,,92-12 51 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414740,Sedan,,,, +05/06/2021,16:25,BROOKLYN,11208,40.665905,-73.87778,"(40.665905, -73.87778)",HEGEMAN AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415295,Sedan,Sedan,,, +05/08/2021,3:30,BROOKLYN,11211,40.71773,-73.9432,"(40.71773, -73.9432)",,,454 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414906,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,21:25,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4415058,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,14:40,QUEENS,11422,40.665245,-73.73757,"(40.665245, -73.73757)",SOUTH CONDUIT AVENUE,241 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414662,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,23:10,BROOKLYN,11205,40.694256,-73.97799,"(40.694256, -73.97799)",AUBURN PLACE,SAINT EDWARDS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414576,Sedan,Taxi,,, +05/04/2021,9:20,,,40.570877,-74.16984,"(40.570877, -74.16984)",RICHMOND AVENUE,FOREST HILL ROAD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4415102,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,22:50,QUEENS,11432,40.708176,-73.79232,"(40.708176, -73.79232)",,,168-37 90 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415135,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,19:15,MANHATTAN,10018,40.754063,-73.99388,"(40.754063, -73.99388)",,,347 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4414951,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,18:11,BRONX,10462,40.83629,-73.85293,"(40.83629, -73.85293)",,,2169 STARLING AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415029,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,20:21,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414767,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,0:35,BROOKLYN,11207,40.657665,-73.89705,"(40.657665, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415302,Sedan,Box Truck,,, +05/08/2021,0:17,QUEENS,11106,40.766064,-73.93089,"(40.766064, -73.93089)",21 STREET,31 DRIVE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4414878,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,15:40,MANHATTAN,10018,40.75179,-73.98472,"(40.75179, -73.98472)",,,66 WEST 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415205,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,14:17,BROOKLYN,11207,40.675632,-73.89878,"(40.675632, -73.89878)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415073,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,23:15,BROOKLYN,11207,40.66394,-73.895805,"(40.66394, -73.895805)",,,506 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415277,Sedan,,,, +05/08/2021,13:15,,,40.770256,-73.91586,"(40.770256, -73.91586)",ASTORIA BOULEVARD,33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,16:00,BROOKLYN,11239,40.650764,-73.88481,"(40.650764, -73.88481)",PENNSYLVANIA AVENUE,VANDALIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415270,Sedan,Box Truck,,, +05/07/2021,16:50,BROOKLYN,11208,40.665264,-73.86463,"(40.665264, -73.86463)",,,960 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4415077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/08/2021,0:43,,,40.751675,-73.96488,"(40.751675, -73.96488)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414312,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,12:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4415170,Sedan,Sedan,,, +04/25/2021,14:40,,,40.68781,-73.9237,"(40.68781, -73.9237)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415105,Sedan,Sedan,,, +05/08/2021,18:17,BROOKLYN,11219,40.639153,-73.99142,"(40.639153, -73.99142)",12 AVENUE,44 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414632,Sedan,,,, +05/05/2021,20:03,,,40.867027,-73.917046,"(40.867027, -73.917046)",10 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,19:11,BROOKLYN,11220,40.63347,-74.02102,"(40.63347, -74.02102)",BAY RIDGE AVENUE,5 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4414489,Sedan,Sedan,,, +05/06/2021,21:34,BROOKLYN,11221,40.691555,-73.93677,"(40.691555, -73.93677)",LAFAYETTE AVENUE,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414974,Sedan,Sedan,,, +05/08/2021,20:15,QUEENS,11433,40.702312,-73.78478,"(40.702312, -73.78478)",172 STREET,105 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415141,Sedan,Sedan,,, +04/18/2021,17:00,QUEENS,11368,40.753944,-73.8598,"(40.753944, -73.8598)",,,108-25 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415054,Sedan,,,, +05/08/2021,17:40,BROOKLYN,11207,40.655563,-73.87974,"(40.655563, -73.87974)",SCHENCK AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,11:37,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",2 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414837,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,9:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415023,Pick-up Truck,Sedan,,, +05/08/2021,9:09,,,40.824184,-73.937225,"(40.824184, -73.937225)",7 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414916,Box Truck,Sedan,,, +05/08/2021,23:35,QUEENS,11423,40.716656,-73.76915,"(40.716656, -73.76915)",193 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4414513,Taxi,Sedan,,, +05/08/2021,13:45,,,40.583275,-73.982254,"(40.583275, -73.982254)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Unspecified,,,4414563,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/10/2020,7:06,,,40.712288,-73.92731,"(40.712288, -73.92731)",STAGG STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,10:30,QUEENS,11422,40.65802,-73.73975,"(40.65802, -73.73975)",,,245-06 NEWHALL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414462,Sedan,Sedan,,, +05/01/2021,0:00,BROOKLYN,11228,40.618057,-74.02053,"(40.618057, -74.02053)",86 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415213,Sedan,,,, +05/08/2021,21:50,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,NEW DORP LANE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414943,Sedan,Bus,,, +05/08/2021,16:00,,,40.64166,-73.93705,"(40.64166, -73.93705)",AVENUE D,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414701,Sedan,Sedan,,, +05/07/2021,11:45,,,40.67241,-73.863556,"(40.67241, -73.863556)",ELDERTS LANE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415299,Sedan,Sedan,,, +05/08/2021,14:10,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415161,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,0:00,,,40.680187,-73.86935,"(40.680187, -73.86935)",MC KINLEY AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,22:45,,,40.684395,-73.97835,"(40.684395, -73.97835)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414526,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,0:00,QUEENS,11429,40.704803,-73.73808,"(40.704803, -73.73808)",112 ROAD,219 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4414586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +04/30/2021,18:00,,,40.61592,-74.00482,"(40.61592, -74.00482)",15 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415032,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,10:09,BRONX,10457,40.851223,-73.8905,"(40.851223, -73.8905)",ARTHUR AVENUE,OAK TREE PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4415001,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/07/2021,21:35,,,40.823578,-73.878136,"(40.823578, -73.878136)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415009,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,13:40,,,40.705154,-73.85597,"(40.705154, -73.85597)",MARGARET PLACE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4459501,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/08/2021,1:15,,,40.745842,-73.73009,"(40.745842, -73.73009)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4414458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,20:30,BRONX,10459,40.830135,-73.89088,"(40.830135, -73.89088)",FREEMAN STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414851,4 dr sedan,,,, +04/01/2021,0:00,,,40.646927,-73.88074,"(40.646927, -73.88074)",PENNSYLVANIA AVENUE,FREEPORT LOOP,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415315,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,18:06,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414484,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,17:10,BROOKLYN,11208,40.66216,-73.87284,"(40.66216, -73.87284)",ATKINS AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415308,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/08/2021,14:15,,,40.643482,-73.94491,"(40.643482, -73.94491)",CLARENDON ROAD,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4414785,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/08/2021,17:00,STATEN ISLAND,10304,40.607304,-74.08761,"(40.607304, -74.08761)",NARROWS ROAD SOUTH,BRITTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414947,Sedan,Dump,,, +05/08/2021,2:35,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",WEST 179 STREET,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4414438,Sedan,,,, +05/08/2021,23:25,BRONX,10467,40.88337,-73.85956,"(40.88337, -73.85956)",EAST 220 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4414600,Sedan,Sedan,Sedan,, +05/07/2021,10:45,BRONX,10472,40.830025,-73.872765,"(40.830025, -73.872765)",WESTCHESTER AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414999,Tractor Truck Diesel,,,, +05/06/2021,13:38,BROOKLYN,11239,40.65317,-73.866875,"(40.65317, -73.866875)",ERSKINE STREET,GATEWAY DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415285,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,12:58,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4414912,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,16:40,BROOKLYN,11228,40.61637,-74.02547,"(40.61637, -74.02547)",,,139 DAHLGREN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414500,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,12:55,QUEENS,11433,40.703865,-73.78579,"(40.703865, -73.78579)",,,103-14 172 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4415134,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,17:45,,,40.608543,-74.08886,"(40.608543, -74.08886)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4415085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/08/2021,17:45,BROOKLYN,11234,40.61232,-73.93172,"(40.61232, -73.93172)",FILLMORE AVENUE,EAST 38 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4414712,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,21:35,QUEENS,11420,40.6778,-73.823845,"(40.6778, -73.823845)",LINDEN BOULEVARD,115 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414650,Sedan,Sedan,,, +05/08/2021,16:10,,,40.556923,-74.17485,"(40.556923, -74.17485)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415044,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,10:30,BROOKLYN,11225,40.664127,-73.94409,"(40.664127, -73.94409)",LAMONT COURT,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415064,Motorcycle,,,, +05/08/2021,22:19,,,40.744923,-73.83709,"(40.744923, -73.83709)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4414745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/08/2021,23:50,BROOKLYN,11207,40.658443,-73.884125,"(40.658443, -73.884125)",,,879 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415290,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,21:30,,,40.73566,-73.91521,"(40.73566, -73.91521)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4414497,Sedan,Box Truck,Sedan,, +05/05/2021,20:42,,,40.644,-73.87584,"(40.644, -73.87584)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Driver Inexperience,Unspecified,,,4415275,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,16:09,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,12:00,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4415146,Sedan,Flat Rack,Station Wagon/Sport Utility Vehicle,Sedan, +05/08/2021,19:01,QUEENS,11370,40.75545,-73.89671,"(40.75545, -73.89671)",,,32-53 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414958,Sedan,Sedan,,, +05/05/2021,21:59,BROOKLYN,11212,40.66071,-73.90846,"(40.66071, -73.90846)",,,774 ROCKAWAY AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4415351,Sedan,Sedan,,, +05/06/2021,16:43,,,40.85533,-73.93332,"(40.85533, -73.93332)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415014,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,, +05/08/2021,14:49,BROOKLYN,11210,40.630127,-73.94482,"(40.630127, -73.94482)",FLATBUSH AVENUE,AURELIA COURT,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4414543,Sedan,Sedan,,, +05/08/2021,14:40,,,40.627186,-74.131065,"(40.627186, -74.131065)",,,390 JEWETT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4414808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/06/2021,17:20,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414992,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,22:30,BRONX,10455,40.810963,-73.909904,"(40.810963, -73.909904)",,,455 JACKSON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4414899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/08/2021,13:45,,,40.786785,-73.80971,"(40.786785, -73.80971)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414471,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,3:58,,,40.85947,-73.915726,"(40.85947, -73.915726)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4414412,Sedan,,,, +05/08/2021,13:25,BRONX,10468,40.867695,-73.90729,"(40.867695, -73.90729)",,,2559 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414618,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,4:00,BROOKLYN,11231,40.678646,-74.00384,"(40.678646, -74.00384)",LUQUER STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415252,Sedan,,,, +05/08/2021,22:46,BROOKLYN,11204,40.62051,-73.99248,"(40.62051, -73.99248)",65 STREET,17 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4414820,Moped,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,3:09,STATEN ISLAND,10310,40.63194,-74.12307,"(40.63194, -74.12307)",,,631 CARY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414550,Sedan,Sedan,,, +05/08/2021,11:06,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",EAST 144 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415092,Ambulance,Sedan,,, +05/07/2021,14:52,QUEENS,11416,40.6828,-73.853065,"(40.6828, -73.853065)",87 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4415122,Sedan,Sedan,Sedan,, +05/07/2021,17:49,QUEENS,11372,40.748802,-73.89338,"(40.748802, -73.89338)",,,72-23 37 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415052,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,0:50,,,40.688553,-73.91245,"(40.688553, -73.91245)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415180,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,6:50,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415342,Sedan,Convertible,,, +05/08/2021,18:00,,,40.607445,-73.99531,"(40.607445, -73.99531)",81 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414638,Sedan,,,, +05/06/2021,23:32,BROOKLYN,11207,40.6783,-73.88988,"(40.6783, -73.88988)",SCHENCK AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,Unspecified,,4415059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/07/2021,17:30,BROOKLYN,11225,40.66947,-73.95684,"(40.66947, -73.95684)",,,1060 UNION STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415227,Sedan,Sedan,,, +05/08/2021,18:00,,,40.846783,-73.907394,"(40.846783, -73.907394)",WEEKS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414944,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,0:51,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4415271,Sedan,Sedan,Sedan,, +05/07/2021,12:45,BROOKLYN,11208,,,,Vandalia avenue,Milford,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415286,Sedan,Sedan,,, +05/08/2021,19:34,QUEENS,11101,40.740276,-73.92782,"(40.740276, -73.92782)",48 AVENUE,38 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4414491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,17:10,QUEENS,11418,40.704853,-73.83733,"(40.704853, -73.83733)",PARK LANE SOUTH,CURZON ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4414987,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +05/08/2021,10:10,,,40.693523,-73.9522,"(40.693523, -73.9522)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415160,Sedan,Bike,,, +05/08/2021,18:10,BRONX,10464,40.85114,-73.788475,"(40.85114, -73.788475)",,,459 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414924,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,20:15,QUEENS,11413,40.667973,-73.750824,"(40.667973, -73.750824)",225 STREET,PROSPECT COURT,,3,0,0,0,0,0,3,0,Unspecified,,,,,4414482,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,0:38,BROOKLYN,11212,40.660034,-73.904396,"(40.660034, -73.904396)",STONE AVENUE,NEWPORT STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414534,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,10:10,QUEENS,11208,40.68319,-73.8663,"(40.68319, -73.8663)",ATLANTIC AVENUE,ELDERTS LANE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415018,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,2:45,BRONX,10473,40.819878,-73.85777,"(40.819878, -73.85777)",SEWARD AVENUE,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4415010,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Sedan, +05/08/2021,14:10,QUEENS,11422,40.662186,-73.737946,"(40.662186, -73.737946)",243 STREET,143 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414463,Sedan,Sedan,,, +05/08/2021,19:39,,,40.692604,-73.92751,"(40.692604, -73.92751)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415182,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,19:30,,,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415276,Station Wagon/Sport Utility Vehicle,Van,,, +05/04/2021,17:30,STATEN ISLAND,10301,40.615185,-74.10258,"(40.615185, -74.10258)",CLOVE ROAD,GENESEE STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4415055,Sedan,Sedan,Sedan,, +05/06/2021,11:39,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",VAN SICLEN AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415298,Sedan,Sedan,,, +05/08/2021,20:00,QUEENS,11377,40.743214,-73.907166,"(40.743214, -73.907166)",58 STREET,43 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414758,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,16:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415100,Sedan,Bus,,, +05/07/2021,1:30,,,40.6792,-73.9553,"(40.6792, -73.9553)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4415116,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,4:44,BROOKLYN,11214,40.609333,-73.996925,"(40.609333, -73.996925)",19 AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4414321,Sedan,,,, +05/04/2021,0:00,,,40.858162,-73.91699,"(40.858162, -73.91699)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415262,Sedan,,,, +05/08/2021,16:31,MANHATTAN,10028,40.77602,-73.951454,"(40.77602, -73.951454)",,,354 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,20:12,,,40.767647,-73.92078,"(40.767647, -73.92078)",31 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414895,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/08/2021,19:10,BROOKLYN,11207,40.653454,-73.88466,"(40.653454, -73.88466)",VERMONT STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415318,Sedan,Sedan,,, +05/07/2021,12:00,,,40.692974,-73.90811,"(40.692974, -73.90811)",HALSEY STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415174,Bus,Bike,,, +05/08/2021,12:30,BROOKLYN,11230,40.619396,-73.969574,"(40.619396, -73.969574)",AVENUE L,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414628,Sedan,Sedan,,, +09/21/2021,16:00,MANHATTAN,10035,40.798176,-73.93381,"(40.798176, -73.93381)",,,2326 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459733,Bus,Sedan,,, +05/08/2021,16:50,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,KINGS HIGHWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4414698,Sedan,Sedan,,, +05/08/2021,17:47,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4415216,Sedan,Sedan,Sedan,, +05/08/2021,7:55,BROOKLYN,11207,40.66931,-73.89568,"(40.66931, -73.89568)",,,627 SUTTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4415304,Sedan,Pick-up Truck,Sedan,Sedan, +05/08/2021,11:22,QUEENS,11377,40.75719,-73.90828,"(40.75719, -73.90828)",31 AVENUE,HOBART STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4414879,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,22:30,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414508,Sedan,,,, +05/08/2021,9:00,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414457,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,21:45,BROOKLYN,11208,40.65904,-73.87593,"(40.65904, -73.87593)",COZINE AVENUE,ELTON STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4414976,Sedan,,,, +05/08/2021,11:49,MANHATTAN,10035,40.80192,-73.93417,"(40.80192, -73.93417)",,,2413A 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415040,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,14:25,QUEENS,11422,40.66457,-73.73777,"(40.66457, -73.73777)",,,241-26 MEMPHIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414587,Sedan,,,, +05/08/2021,7:30,BROOKLYN,11224,40.575512,-73.98241,"(40.575512, -73.98241)",WEST 15 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4414562,Sedan,,,, +05/07/2021,9:07,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415002,Sedan,Bus,,, +04/30/2021,0:20,BROOKLYN,11225,40.669273,-73.950554,"(40.669273, -73.950554)",,,803 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4415204,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,20:40,,,40.792015,-73.98051,"(40.792015, -73.98051)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,Unspecified,,,4414660,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,18:25,BROOKLYN,11203,40.65251,-73.921555,"(40.65251, -73.921555)",,,5913 CHURCH AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4414782,Station Wagon/Sport Utility Vehicle,Bus,,, +05/08/2021,20:36,QUEENS,11433,40.70241,-73.79253,"(40.70241, -73.79253)",LIBERTY AVENUE,165 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415140,Sedan,Bike,,, +05/08/2021,23:00,,,40.701836,-73.82211,"(40.701836, -73.82211)",130 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4415078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,18:30,BROOKLYN,11207,40.672333,-73.901764,"(40.672333, -73.901764)",GLENMORE AVENUE,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415294,Bus,Motorcycle,,, +05/08/2021,18:35,BROOKLYN,11207,40.656944,-73.88082,"(40.656944, -73.88082)",SCHENCK AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415309,Sedan,Sedan,,, +05/08/2021,21:46,BROOKLYN,11229,40.59287,-73.95716,"(40.59287, -73.95716)",,,2365 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,12:00,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414639,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,8:20,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415280,Pick-up Truck,,,, +05/07/2021,12:47,BROOKLYN,11208,,,,EGAN STREET,ELTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4415060,Sedan,Sedan,Sedan,Sedan,Sedan +05/07/2021,11:50,MANHATTAN,10022,40.76213,-73.97037,"(40.76213, -73.97037)",,,475 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415072,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,10:45,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415086,Sedan,Tractor Truck Diesel,,, +05/08/2021,19:52,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414727,Sedan,Sedan,,, +09/20/2021,19:30,BROOKLYN,11212,40.66331,-73.92106,"(40.66331, -73.92106)",WINTHROP STREET,EAST 98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460175,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,9:28,BROOKLYN,11215,40.66617,-73.988815,"(40.66617, -73.988815)",5 AVENUE,14 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4459534,Moped,,,, +09/21/2021,14:17,,,40.734657,-73.79755,"(40.734657, -73.79755)",67 AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4459779,Sedan,,,, +08/25/2021,10:25,BROOKLYN,11221,40.690742,-73.939575,"(40.690742, -73.939575)",,,215 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460219,Box Truck,Box Truck,,, +09/21/2021,20:08,QUEENS,11693,40.58566,-73.81729,"(40.58566, -73.81729)",ROCKAWAY BEACH BOULEVARD,BEACH 95 STREET,,1,0,0,0,0,0,0,0,Pavement Slippery,Unsafe Speed,,,,4459568,Sedan,E-Scooter,,, +09/21/2021,20:30,QUEENS,11435,40.698925,-73.80273,"(40.698925, -73.80273)",,,95-36 150 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459874,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,11:00,,,40.687496,-73.93297,"(40.687496, -73.93297)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460256,Sedan,E-Bike,,, +09/21/2021,7:29,MANHATTAN,10065,40.76838,-73.96727,"(40.76838, -73.96727)",,,44 EAST 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/21/2021,10:20,MANHATTAN,10032,40.844685,-73.9408,"(40.844685, -73.9408)",FORT WASHINGTON AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459738,Taxi,Taxi,,, +09/21/2021,14:30,BRONX,10472,40.834522,-73.87183,"(40.834522, -73.87183)",EAST 174 STREET,CROES AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459854,Sedan,Sedan,,, +09/21/2021,21:50,QUEENS,11374,40.728977,-73.868484,"(40.728977, -73.868484)",AUSTIN STREET,62 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4459935,Sedan,,,, +09/21/2021,11:54,BRONX,10458,40.85948,-73.8872,"(40.85948, -73.8872)",,,532 EAST FORDHAM ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4459479,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/21/2021,8:47,MANHATTAN,10016,40.746033,-73.9768,"(40.746033, -73.9768)",EAST 35 STREET,QUEENS MIDTOWN TUNNEL EXIT,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4459533,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,13:15,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4460235,Box Truck,,,, +07/17/2021,22:45,BROOKLYN,11208,40.67351,-73.871475,"(40.67351, -73.871475)",,,554 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460250,Sedan,,,, +09/21/2021,20:50,BROOKLYN,11219,40.63011,-74.01001,"(40.63011, -74.01001)",FORT HAMILTON PARKWAY,66 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459560,Sedan,E-Bike,,, +09/21/2021,15:05,BROOKLYN,11207,40.675766,-73.887245,"(40.675766, -73.887245)",,,608 LIBERTY AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459662,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,9:30,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4460221,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,22:50,MANHATTAN,10029,40.79143,-73.94687,"(40.79143, -73.94687)",,,1671 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4460016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,1:40,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4460166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,12:47,QUEENS,11358,40.753777,-73.78619,"(40.753777, -73.78619)",46 AVENUE,195 STREET,,1,0,1,0,0,0,0,0,,,,,,4459486,Sedan,,,, +09/21/2021,20:40,QUEENS,11355,40.75472,-73.81704,"(40.75472, -73.81704)",45 AVENUE,BURLING STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459576,Sedan,Sedan,,, +09/21/2021,8:00,BROOKLYN,11208,40.673855,-73.864555,"(40.673855, -73.864555)",,,1434 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459443,Sedan,Sedan,,, +09/21/2021,18:45,BROOKLYN,11249,40.712627,-73.965,"(40.712627, -73.965)",,,79 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4459552,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:12,STATEN ISLAND,10301,40.63494,-74.07882,"(40.63494, -74.07882)",,,107 SWAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460277,Sedan,,,, +09/21/2021,13:05,,,40.63164,-74.16172,"(40.63164, -74.16172)",LOCKMAN AVENUE,BRABANT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459725,Sedan,Pick-up Truck,,, +09/21/2021,12:06,MANHATTAN,10017,40.74958,-73.97373,"(40.74958, -73.97373)",,,222 EAST 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459540,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/21/2021,8:30,,,40.60855,-74.13216,"(40.60855, -74.13216)",NORTH GANNON AVENUE,BRADLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460099,Station Wagon/Sport Utility Vehicle,Bus,,, +09/21/2021,21:58,,,40.862133,-73.8266,"(40.862133, -73.8266)",PALMER AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459887,E-Scooter,Sedan,,, +09/19/2021,0:00,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",EAST 149 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4460376,E-Bike,,,, +09/21/2021,15:30,,,40.622154,-73.99834,"(40.622154, -73.99834)",67 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459606,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,23:20,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459775,Sedan,Flat Bed,,, +09/21/2021,20:54,,,40.90651,-73.84889,"(40.90651, -73.84889)",WHITE PLAINS ROAD,EAST 243 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459915,Sedan,,,, +09/21/2021,16:28,BRONX,10468,40.882835,-73.888016,"(40.882835, -73.888016)",SEDGWICK AVENUE,GOULDEN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459841,Sedan,Sedan,,, +09/21/2021,14:15,QUEENS,11691,40.595383,-73.779945,"(40.595383, -73.779945)",BEACH CHANNEL DRIVE,BEACH 49 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4459655,Sedan,Sedan,,, +09/19/2021,21:00,BROOKLYN,11212,40.657482,-73.92141,"(40.657482, -73.92141)",EAST 93 STREET,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460070,Sedan,,,, +09/15/2021,2:00,,,40.67159,-73.77981,"(40.67159, -73.77981)",134 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460210,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,11:13,QUEENS,11356,40.785763,-73.85237,"(40.785763, -73.85237)",115 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459590,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,18:10,,,40.845882,-73.930435,"(40.845882, -73.930435)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460088,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,11:45,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",LONGFELLOW AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460398,Sedan,Sedan,,, +09/21/2021,21:30,,,,,,CENTER BOULEVARD,NORTH BASIN ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459583,Tractor Truck Diesel,,,, +09/21/2021,0:25,,,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459411,Sedan,Sedan,,, +09/20/2021,17:05,MANHATTAN,10027,40.809166,-73.94449,"(40.809166, -73.94449)",,,339 LENOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460119,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/04/2021,16:15,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460288,Sedan,Sedan,,, +09/21/2021,16:30,QUEENS,11361,40.759823,-73.776115,"(40.759823, -73.776115)",208 STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459520,Sedan,Sedan,,, +09/21/2021,17:45,QUEENS,11420,40.668785,-73.80486,"(40.668785, -73.80486)",,,133-20 134 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4459626,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,5:25,QUEENS,11385,40.703438,-73.90228,"(40.703438, -73.90228)",,,1930 CORNELIA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460263,Sedan,MTABUS,,, +09/21/2021,15:10,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/21/2021,9:05,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4460348,Sedan,Bus,,, +09/21/2021,10:50,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459637,Sedan,Box Truck,,, +08/12/2021,18:10,BROOKLYN,11213,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,ALBANY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460295,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,21:39,QUEENS,11385,40.705647,-73.87677,"(40.705647, -73.87677)",CENTRAL AVENUE,73 PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459718,Sedan,Sedan,,, +09/21/2021,19:43,QUEENS,11368,40.74618,-73.85293,"(40.74618, -73.85293)",111 STREET,49 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4460043,Sedan,,,, +09/21/2021,8:00,BROOKLYN,11229,40.595993,-73.94973,"(40.595993, -73.94973)",,,2316 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459613,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,15:55,BROOKLYN,11234,40.63742,-73.92401,"(40.63742, -73.92401)",FOSTER AVENUE,EAST 55 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4459570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,16:06,BRONX,10472,40.825047,-73.88123,"(40.825047, -73.88123)",,,1059 COLGATE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4460105,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,12:24,BROOKLYN,11221,40.69346,-73.93327,"(40.69346, -73.93327)",,,1047 DE KALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460151,Sedan,,,, +09/21/2021,12:30,MANHATTAN,10019,40.768448,-73.98701,"(40.768448, -73.98701)",,,442 WEST 57 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459756,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:00,QUEENS,11354,40.76698,-73.835266,"(40.76698, -73.835266)",,,133-25 32 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459971,Dump,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,22:47,BRONX,10454,40.809227,-73.923164,"(40.809227, -73.923164)",,,359 EAST 138 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4459647,Sedan,Convertible,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/21/2021,10:39,,,40.901493,-73.87894,"(40.901493, -73.87894)",MAJOR DEEGAN EXPRESSWAY,,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,,,,4460303,Motorcycle,Sedan,,, +09/21/2021,16:10,,,40.85447,-73.91008,"(40.85447, -73.91008)",WEST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,11:45,BROOKLYN,11233,40.681767,-73.93059,"(40.681767, -73.93059)",,,320 DECATUR STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460217,Sedan,PK,,, +09/17/2021,8:30,,,40.57686,-73.98266,"(40.57686, -73.98266)",WEST 15 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460078,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,17:41,MANHATTAN,10013,40.716812,-73.99777,"(40.716812, -73.99777)",CANAL STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459701,Sedan,Sedan,,, +08/10/2021,20:20,BROOKLYN,11233,40.6771,-73.92479,"(40.6771, -73.92479)",ATLANTIC AVENUE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460259,Sedan,Sedan,,, +09/20/2021,15:26,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460083,Bike,,,, +09/21/2021,6:16,QUEENS,11412,40.68645,-73.761185,"(40.68645, -73.761185)",120 AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4459367,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,13:00,MANHATTAN,10011,40.736668,-73.997345,"(40.736668, -73.997345)",AVENUE OF THE AMERICAS,WEST 13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460179,Taxi,Bike,,, +09/21/2021,18:11,QUEENS,11415,40.705807,-73.82735,"(40.705807, -73.82735)",ABINGDON ROAD,124 PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4460108,Sedan,,,, +09/21/2021,20:40,QUEENS,11354,40.75896,-73.82985,"(40.75896, -73.82985)",MAIN STREET,40 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459589,Sedan,,,, +09/21/2021,22:10,STATEN ISLAND,10314,40.620663,-74.12569,"(40.620663, -74.12569)",SOUTH GREENLEAF AVENUE,MAINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459817,Sedan,Sedan,,, +09/21/2021,13:00,,,40.70051,-73.89421,"(40.70051, -73.89421)",60 LANE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459504,Sedan,,,, +09/21/2021,21:00,MANHATTAN,10019,40.769115,-73.98856,"(40.769115, -73.98856)",10 AVENUE,WEST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459791,Tractor Truck Gasoline,Sedan,,, +09/18/2021,2:00,,,40.71582,-73.81759,"(40.71582, -73.81759)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460156,Sedan,,,, +09/21/2021,16:43,QUEENS,11368,40.74849,-73.86355,"(40.74849, -73.86355)",41 AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460028,Sedan,Bike,,, +09/21/2021,22:42,,,40.761944,-73.76699,"(40.761944, -73.76699)",215 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4459651,Sedan,Sedan,,, +09/19/2021,15:04,BROOKLYN,11221,40.688698,-73.942085,"(40.688698, -73.942085)",LEXINGTON AVENUE,THROOP AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460337,Station Wagon/Sport Utility Vehicle,Bike,,, +09/21/2021,22:09,BROOKLYN,11208,40.671604,-73.86907,"(40.671604, -73.86907)",CRESCENT STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459667,Sedan,,,, +09/20/2021,0:00,,,,,,NEW ENGLAND THRUWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4460384,Taxi,,,, +09/21/2021,15:51,BROOKLYN,11226,40.653584,-73.96518,"(40.653584, -73.96518)",,,121 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459947,Sedan,Bus,,, +09/21/2021,12:32,MANHATTAN,10032,40.83155,-73.94115,"(40.83155, -73.94115)",,,916 SAINT NICHOLAS AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459729,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,0:00,MANHATTAN,10022,40.75613,-73.96761,"(40.75613, -73.96761)",EAST 52 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459538,Sedan,E-Bike,,, +09/21/2021,14:56,,,40.766357,-73.7811,"(40.766357, -73.7811)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4459567,Sedan,,,, +08/24/2021,9:30,BRONX,10452,40.83636,-73.91817,"(40.83636, -73.91817)",,,105 EAST 168 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4460255,Sedan,,,, +09/21/2021,10:16,BROOKLYN,11234,40.609604,-73.91378,"(40.609604, -73.91378)",STRICKLAND AVENUE,EAST 57 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459459,Sedan,Bus,,, +09/11/2021,8:00,BROOKLYN,11213,40.67774,-73.936,"(40.67774, -73.936)",,,1545 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460222,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/21/2021,11:53,MANHATTAN,10029,40.786175,-73.9457,"(40.786175, -73.9457)",2 AVENUE,EAST 99 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4459740,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/21/2021,8:00,QUEENS,11420,40.668224,-73.81868,"(40.668224, -73.81868)",149 AVENUE,122 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,17:35,,,40.671185,-73.94204,"(40.671185, -73.94204)",KINGSTON AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460300,Sedan,Motorcycle,,, +09/20/2021,15:40,,,40.760185,-73.9147,"(40.760185, -73.9147)",31 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460171,Bus,Sedan,,, +09/21/2021,12:15,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,11:46,MANHATTAN,10022,40.75613,-73.96761,"(40.75613, -73.96761)",EAST 52 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459544,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,22:00,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459571,Sedan,,,, +09/21/2021,18:00,MANHATTAN,10002,40.718304,-73.987404,"(40.718304, -73.987404)",DELANCEY STREET,NORFOLK STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4459976,Station Wagon/Sport Utility Vehicle,Bike,,, +09/21/2021,20:15,BROOKLYN,11205,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,PULASKI STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459861,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,20:10,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4488786,Sedan,Sedan,Sedan,, +08/23/2021,9:50,,,40.676445,-73.92762,"(40.676445, -73.92762)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460304,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,9:10,,,40.71154,-73.83624,"(40.71154, -73.83624)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4459454,Box Truck,,,, +09/21/2021,11:30,BROOKLYN,11214,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,BAY 54 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4459677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,15:50,,,40.893425,-73.88347,"(40.893425, -73.88347)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460328,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,23:40,,,40.868458,-73.8214,"(40.868458, -73.8214)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/21/2021,10:50,BROOKLYN,11207,40.67338,-73.89472,"(40.67338, -73.89472)",,,425 GLENMORE AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459494,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,18:59,,,,,,HICKS STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460319,Sedan,Sedan,,, +09/21/2021,13:50,BRONX,10457,40.84987,-73.88991,"(40.84987, -73.88991)",EAST 181 STREET,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4459751,Sedan,Sedan,Sedan,Sedan, +09/21/2021,1:27,STATEN ISLAND,10306,40.572037,-74.144196,"(40.572037, -74.144196)",RICHMOND ROAD,SAINT PATRICK PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4459431,Sedan,,,, +09/21/2021,22:00,QUEENS,11355,40.759476,-73.81468,"(40.759476, -73.81468)",ASH AVENUE,149 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4459577,Sedan,E-Scooter,,, +09/21/2021,17:35,,,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459850,Sedan,Sedan,,, +09/21/2021,16:00,STATEN ISLAND,10301,40.641525,-74.0995,"(40.641525, -74.0995)",,,151 TYSEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460278,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,14:10,MANHATTAN,10035,40.800793,-73.93492,"(40.800793, -73.93492)",EAST 122 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459724,Sedan,Bike,,, +09/21/2021,16:25,QUEENS,11432,40.703445,-73.79991,"(40.703445, -73.79991)",,,159-18 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459531,Sedan,Sedan,,, +09/21/2021,23:10,MANHATTAN,10036,40.75769,-73.97911,"(40.75769, -73.97911)",,,22 WEST 48 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4460146,Motorscooter,,,, +09/21/2021,8:40,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4460092,PK,Taxi,,, +09/21/2021,8:29,BRONX,10455,40.81793,-73.9053,"(40.81793, -73.9053)",WESTCHESTER AVENUE,EAST 156 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4459631,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,7:39,BROOKLYN,11214,40.609196,-74.004234,"(40.609196, -74.004234)",17 AVENUE,85 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459607,Sedan,E-Scooter,,, +09/21/2021,15:50,QUEENS,11434,,,,SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4459993,Sedan,Sedan,,, +09/16/2021,19:15,BROOKLYN,11225,40.667286,-73.959915,"(40.667286, -73.959915)",,,49 CROWN STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460069,Sedan,Sedan,,, +09/21/2021,8:15,,,40.602295,-73.752174,"(40.602295, -73.752174)",CORNAGA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459638,Bus,,,, +09/02/2021,14:00,,,40.675926,-73.95608,"(40.675926, -73.95608)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460291,Sedan,,,, +09/21/2021,12:40,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459527,Garbage or Refuse,Moped,,, +09/12/2021,7:15,BROOKLYN,11233,40.677288,-73.92824,"(40.677288, -73.92824)",ATLANTIC AVENUE,HUNTERFLY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460264,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,13:07,BROOKLYN,11211,40.712997,-73.936325,"(40.712997, -73.936325)",,,958 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459485,Sedan,Sedan,,, +08/13/2021,11:05,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460165,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,23:00,,,,,,VANWYCK EXPRESSWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459773,Sedan,,,, +09/15/2021,15:00,BRONX,10454,40.811005,-73.925316,"(40.811005, -73.925316)",,,306 EAST 139 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460378,Sedan,,,, +09/21/2021,20:13,,,40.89675,-73.85988,"(40.89675, -73.85988)",EAST 236 STREET,BRONX BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,,,,,4459914,Sedan,,,, +09/21/2021,14:14,BROOKLYN,11206,40.699524,-73.95236,"(40.699524, -73.95236)",,,555 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459555,Sedan,E-Bike,,, +09/21/2021,9:58,,,40.605427,-74.0762,"(40.605427, -74.0762)",NARROWS ROAD SOUTH,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:45,BRONX,10463,40.87391,-73.909164,"(40.87391, -73.909164)",,,49 WEST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,20:35,QUEENS,11385,40.70942,-73.86966,"(40.70942, -73.86966)",,,80-00 COOPER AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4459716,Motorcycle,,,, +09/21/2021,8:18,MANHATTAN,10035,40.80601,-73.94133,"(40.80601, -73.94133)",,,28 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459480,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/21/2021,8:05,BRONX,10467,40.877632,-73.867386,"(40.877632, -73.867386)",EAST GUN HILL ROAD,WILLETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459422,Tractor Truck Diesel,Sedan,,, +09/21/2021,16:00,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,22:30,MANHATTAN,10001,40.745422,-73.99291,"(40.745422, -73.99291)",,,152 WEST 26 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460244,Motorcycle,Taxi,,, +09/21/2021,18:00,BROOKLYN,11239,40.652367,-73.876465,"(40.652367, -73.876465)",,,632 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459663,Sedan,,,, +09/21/2021,19:15,BROOKLYN,11209,40.62095,-74.023705,"(40.62095, -74.023705)",85 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459559,Sedan,,,, +12/19/2021,19:05,STATEN ISLAND,10310,40.62894,-74.116196,"(40.62894, -74.116196)",FOREST AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488801,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,14:52,MANHATTAN,10030,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460120,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/21/2021,14:00,MANHATTAN,10029,40.792587,-73.94713,"(40.792587, -73.94713)",,,112 EAST 106 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460024,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,9:30,BROOKLYN,11221,40.686478,-73.92216,"(40.686478, -73.92216)",,,884 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4460203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,16:10,BROOKLYN,11233,40.676735,-73.90432,"(40.676735, -73.90432)",,,14 HAVENS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460350,Sedan,,,, +09/21/2021,20:54,,,,,,,,67 WEST DRIVE,0,0,0,0,0,0,0,0,Animals Action,,,,,4459594,Taxi,,,, +09/21/2021,19:00,QUEENS,11436,40.68461,-73.79987,"(40.68461, -73.79987)",144 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460048,Sedan,Sedan,,, +09/19/2021,14:58,QUEENS,11435,40.693638,-73.80195,"(40.693638, -73.80195)",,,146-59 107 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460238,Sedan,,,, +12/20/2021,19:02,,,40.680374,-73.80445,"(40.680374, -73.80445)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488472,Sedan,Tractor Truck Diesel,,, +08/31/2021,7:25,BROOKLYN,11233,40.67903,-73.9246,"(40.67903, -73.9246)",FULTON STREET,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460260,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,7:05,BROOKLYN,11217,40.687748,-73.980125,"(40.687748, -73.980125)",,,25 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460280,Sedan,Sedan,,, +09/21/2021,8:25,QUEENS,11378,40.724823,-73.90621,"(40.724823, -73.90621)",,,56-15 60 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459506,Sedan,Sedan,,, +09/21/2021,16:50,STATEN ISLAND,10301,40.643776,-74.078445,"(40.643776, -74.078445)",WALL STREET,ACADEMY PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459821,Sedan,,,, +09/21/2021,11:32,QUEENS,11364,40.739017,-73.76432,"(40.739017, -73.76432)",,,209-74 73 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4460170,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/21/2021,14:50,,,40.619026,-74.13252,"(40.619026, -74.13252)",,,176 WARDWELL AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4459730,Bus,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,11:00,BROOKLYN,11207,40.677235,-73.89709,"(40.677235, -73.89709)",,,2641 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459493,Sedan,,,, +09/21/2021,16:11,BROOKLYN,11215,40.67726,-73.98676,"(40.67726, -73.98676)",,,471 CARROLL STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459546,Box Truck,Sedan,,, +09/21/2021,18:16,QUEENS,11364,40.73525,-73.74959,"(40.73525, -73.74959)",221 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4459928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/21/2021,7:22,,,40.698536,-73.9943,"(40.698536, -73.9943)",PINEAPPLE STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4459900,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,12:22,QUEENS,11418,40.69302,-73.837364,"(40.69302, -73.837364)",,,91-49 109 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4459462,Sedan,,,, +12/14/2021,5:08,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4488699,Sedan,Sedan,,, +05/09/2021,15:10,,,40.663227,-73.93159,"(40.663227, -73.93159)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415065,Sedan,,,, +08/28/2021,16:40,QUEENS,11105,40.774204,-73.908,"(40.774204, -73.908)",,,36-20 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4460209,Sedan,Taxi,,, +09/18/2021,7:20,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460265,Sedan,,,, +09/21/2021,22:40,BROOKLYN,11211,40.719246,-73.95407,"(40.719246, -73.95407)",DRIGGS AVENUE,NORTH 11 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460029,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,11:00,,,40.673103,-73.92793,"(40.673103, -73.92793)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460298,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,16:55,BRONX,10454,40.81103,-73.92149,"(40.81103, -73.92149)",WILLIS AVENUE,EAST 141 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4459646,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,23:00,QUEENS,11421,40.692524,-73.8589,"(40.692524, -73.8589)",,,85-10 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4460104,,,,, +09/21/2021,18:30,QUEENS,11418,40.69524,-73.84045,"(40.69524, -73.84045)",,,87-23 107 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460110,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,2:50,,,40.82677,-73.856155,"(40.82677, -73.856155)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4459380,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,10:40,BROOKLYN,11233,40.677387,-73.921776,"(40.677387, -73.921776)",,,343 RALPH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460254,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,14:05,,,40.64485,-73.96002,"(40.64485, -73.96002)",OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459672,Taxi,Motorcycle,,, +09/21/2021,14:00,BRONX,10472,40.83228,-73.871315,"(40.83228, -73.871315)",EAST 172 STREET,CROES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459710,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,21:42,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4460334,Sedan,Sedan,Sedan,, +09/17/2021,5:30,MANHATTAN,10030,,,,,,175 WEST 134 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460189,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,15:55,BRONX,10475,40.869118,-73.83048,"(40.869118, -73.83048)",BARTOW AVENUE,ASCH LOOP,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,11:42,BROOKLYN,11205,40.694206,-73.97312,"(40.694206, -73.97312)",,,93 CARLTON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459587,Sedan,Box Truck,,, +09/21/2021,10:00,BROOKLYN,11212,0,0,"(0.0, 0.0)",ROCKAWAY PARKWAY,WINTHROP STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4459954,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/21/2021,17:15,MANHATTAN,10007,40.710327,-74.00955,"(40.710327, -74.00955)",JOHN STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459617,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,0:40,BROOKLYN,11207,40.65674,-73.88128,"(40.65674, -73.88128)",,,240 COZINE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4460226,Sedan,Sedan,,, +09/12/2021,21:30,,,40.671474,-73.93088,"(40.671474, -73.93088)",STERLING PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460306,Sedan,,,, +09/21/2021,14:30,,,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON BEACH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4459683,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,15:20,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4459537,Sedan,Sedan,,, +09/21/2021,7:30,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Oversized Vehicle,,,,4459447,Sedan,Tractor Truck Diesel,,, +09/21/2021,10:00,MANHATTAN,10023,40.76889,-73.9821,"(40.76889, -73.9821)",WEST 60 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4459792,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/20/2021,16:30,BRONX,10474,40.812214,-73.885895,"(40.812214, -73.885895)",RANDALL AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488333,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,21:40,,,,,,UNION TURNPIKE,141 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459573,Sedan,,,, +09/21/2021,14:14,,,40.75362,-73.898445,"(40.75362, -73.898445)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,Unspecified,,,4459566,Pick-up Truck,Pick-up Truck,Box Truck,, +09/21/2021,9:00,BROOKLYN,11222,40.727264,-73.94572,"(40.727264, -73.94572)",,,746 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459863,Sedan,Pick-up Truck,,, +09/21/2021,13:27,BROOKLYN,11233,40.681877,-73.93625,"(40.681877, -73.93625)",,,251 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460216,Sedan,Sedan,,, +09/21/2021,15:00,BROOKLYN,11205,40.69784,-73.970604,"(40.69784, -73.970604)",,,141 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459612,TOW TRUCK,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:00,BROOKLYN,11211,40.718616,-73.9372,"(40.718616, -73.9372)",,,417 MORGAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459650,Sedan,,,, +09/20/2021,0:00,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460155,Sedan,,,, +09/18/2021,10:30,STATEN ISLAND,10305,40.596146,-74.067535,"(40.596146, -74.067535)",CEDAR AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460085,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,4:45,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460294,Sedan,,,, +09/19/2021,4:35,,,40.705826,-73.79397,"(40.705826, -73.79397)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4460320,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,18:20,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459666,Sedan,Sedan,,, +09/21/2021,20:50,,,0,0,"(0.0, 0.0)",WEST 48 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460383,Sedan,Bike,,, +09/21/2021,6:21,BROOKLYN,11236,40.646626,-73.90399,"(40.646626, -73.90399)",ROCKAWAY PARKWAY,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4459600,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,11:17,MANHATTAN,10010,40.738552,-73.983345,"(40.738552, -73.983345)",,,293 3 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4460269,Box Truck,Bike,,, +09/21/2021,18:21,BROOKLYN,11218,40.635086,-73.98015,"(40.635086, -73.98015)",,,1630 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460057,Taxi,Sedan,,, +09/20/2021,19:10,STATEN ISLAND,10305,40.593655,-74.0809,"(40.593655, -74.0809)",REID AVENUE,PARKINSON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460077,Sedan,,,, +09/20/2021,12:30,BROOKLYN,11210,40.613506,-73.954094,"(40.613506, -73.954094)",OCEAN AVENUE,AVENUE O,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460094,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,8:45,,,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4459633,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/07/2021,9:42,BROOKLYN,11225,40.66405,-73.94879,"(40.66405, -73.94879)",,,403 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485343,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/10/2021,8:49,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",EAST 125 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485184,Flat Bed,,,, +12/09/2021,0:04,BROOKLYN,11221,40.69069,-73.91621,"(40.69069, -73.91621)",EVERGREEN AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4484878,Sedan,E-Bike,,, +12/03/2021,7:20,,,40.664303,-73.9573,"(40.664303, -73.9573)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485324,Bus,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,14:50,BROOKLYN,11211,40.714043,-73.92634,"(40.714043, -73.92634)",METROPOLITAN AVENUE,GARDNER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485201,Station Wagon/Sport Utility Vehicle,Van,,, +12/08/2021,15:40,BROOKLYN,11206,40.70321,-73.94626,"(40.70321, -73.94626)",BROADWAY,WALLABOUT STREET,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4484824,Sedan,Bike,,, +12/10/2021,5:00,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485156,Sedan,Pick-up Truck,,, +12/09/2021,18:30,,,40.61489,-74.13597,"(40.61489, -74.13597)",,,49 SEWARD PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485624,Sedan,Tow Truck / Wrecker,,, +12/10/2021,21:30,BRONX,10459,40.82162,-73.89589,"(40.82162, -73.89589)",,,957 KELLY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485420,Sedan,,,, +12/08/2021,5:20,BROOKLYN,11233,40.677773,-73.92274,"(40.677773, -73.92274)",,,9 COLUMBUS PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Fell Asleep,,,,4485044,Taxi,Sedan,,, +12/09/2021,8:00,BRONX,10466,40.895584,-73.84564,"(40.895584, -73.84564)",,,4218 EDSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485906,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,19:57,QUEENS,11415,40.713284,-73.83281,"(40.713284, -73.83281)",,,119-40 UNION TURNPIKE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485460,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,16:20,QUEENS,11423,40.720764,-73.76715,"(40.720764, -73.76715)",,,196-45 POMPEII AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485591,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,20:30,QUEENS,11419,40.686802,-73.82734,"(40.686802, -73.82734)",,,103-22 116 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4485856,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/19/2021,17:20,,,40.68672,-73.98224,"(40.68672, -73.98224)",,,NEVINS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,17:20,,,40.585922,-74.10526,"(40.585922, -74.10526)",RICHMOND ROAD,,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inexperience,Unspecified,,,4488382,Pick-up Truck,Sedan,Sedan,, +12/20/2021,4:37,BROOKLYN,11214,40.60745,-74.00299,"(40.60745, -74.00299)",,,1778 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488857,Sedan,,,, +12/18/2021,17:00,MANHATTAN,10027,40.808292,-73.94883,"(40.808292, -73.94883)",7 AVENUE,WEST 124 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4488753,Sedan,Bike,,, +12/12/2021,18:30,BROOKLYN,11212,40.66479,-73.91532,"(40.66479, -73.91532)",BLAKE AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488944,Sedan,Sedan,,, +12/20/2021,17:20,,,40.852337,-73.92517,"(40.852337, -73.92517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4488390,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,22:17,STATEN ISLAND,10305,40.614086,-74.06614,"(40.614086, -74.06614)",BAY STREET,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,15:15,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,4,0,0,0,0,0,4,0,View Obstructed/Limited,View Obstructed/Limited,,,,4488759,Sedan,Sedan,,, +12/20/2021,0:18,,,40.701008,-73.9424,"(40.701008, -73.9424)",GRAHAM AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4487926,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,19:13,,,40.734783,-73.79323,"(40.734783, -73.79323)",67 AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4488831,Sedan,Sedan,Sedan,, +12/15/2021,1:30,QUEENS,11368,40.75137,-73.86247,"(40.75137, -73.86247)",,,38-01 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488787,Sedan,,,, +12/20/2021,14:33,BRONX,10474,40.81707,-73.88525,"(40.81707, -73.88525)",LAFAYETTE AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488283,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,15:50,QUEENS,11434,40.680485,-73.774704,"(40.680485, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488531,Sedan,,,, +12/20/2021,14:30,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,8:10,QUEENS,11385,40.702625,-73.8794,"(40.702625, -73.8794)",71 PLACE,COOPER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488490,Sedan,,,, +11/19/2021,8:15,QUEENS,11432,40.709873,-73.80089,"(40.709873, -73.80089)",,,162-02 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488805,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,5:25,BROOKLYN,11221,40.690483,-73.93954,"(40.690483, -73.93954)",MARCUS GARVEY BOULEVARD,VAN BUREN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4488730,Station Wagon/Sport Utility Vehicle,Convertible,,, +12/20/2021,13:30,BRONX,10453,40.85132,-73.90842,"(40.85132, -73.90842)",EAST TREMONT AVENUE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4488337,Pick-up Truck,Taxi,,, +12/20/2021,5:50,MANHATTAN,10002,40.718002,-73.98659,"(40.718002, -73.98659)",DELANCEY STREET,SUFFOLK STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488359,E-Bike,,,, +12/10/2021,8:02,,,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488692,Sedan,Bus,,, +12/20/2021,16:10,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Following Too Closely,Following Too Closely,,,4488447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sprinter V,, +12/20/2021,16:00,BROOKLYN,11209,40.620323,-74.02723,"(40.620323, -74.02723)",5 AVENUE,88 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488232,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,8:50,BROOKLYN,11201,40.698444,-73.98497,"(40.698444, -73.98497)",NASSAU STREET,BRIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4488257,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/13/2021,0:00,BROOKLYN,11221,40.688507,-73.937126,"(40.688507, -73.937126)",,,590 QUINCY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488909,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,9:38,MANHATTAN,10032,40.836987,-73.93902,"(40.836987, -73.93902)",,,2093 AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4488156,Sedan,Moped,,, +12/20/2021,17:20,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488867,Bike,Sedan,,, +05/09/2021,21:35,,,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415417,Sedan,Bike,,, +12/20/2021,19:05,BROOKLYN,11235,40.588627,-73.94832,"(40.588627, -73.94832)",EAST 21 STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488459,Bike,Sedan,,, +12/20/2021,17:05,,,40.680977,-74.00498,"(40.680977, -74.00498)",HAMILTON AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488306,Sedan,Pick-up Truck,,, +12/14/2021,8:48,QUEENS,11004,40.749844,-73.7119,"(40.749844, -73.7119)",,,75-59 263 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4486427,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,17:56,,,40.754387,-73.920525,"(40.754387, -73.920525)",42 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488825,Sedan,Sedan,,, +12/15/2021,0:40,,,40.602673,-73.89933,"(40.602673, -73.89933)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4488953,Sedan,,,, +12/20/2021,8:49,BROOKLYN,11234,40.630905,-73.920425,"(40.630905, -73.920425)",AVENUE I,EAST 58 STREET,,7,0,0,0,0,0,7,0,Fell Asleep,Turning Improperly,Unspecified,Unspecified,,4488235,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/28/2022,0:35,MANHATTAN,10016,40.74036,-73.97318,"(40.74036, -73.97318)",FDR DRIVE,EAST 30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514271,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,11:25,BRONX,10457,40.849247,-73.88775,"(40.849247, -73.88775)",,,2130 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,Unspecified,Unspecified,,4488705,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/20/2021,17:13,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488567,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,10:20,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,5:45,,,40.636448,-73.94513,"(40.636448, -73.94513)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488145,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,4:38,,,40.866806,-73.93101,"(40.866806, -73.93101)",STAFF STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488371,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,14:45,BRONX,10458,40.85876,-73.89736,"(40.85876, -73.89736)",EAST 184 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488182,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,17:14,QUEENS,11434,40.688362,-73.77663,"(40.688362, -73.77663)",MERRICK BOULEVARD,116 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4488468,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,6:45,BRONX,10454,40.80715,-73.90821,"(40.80715, -73.90821)",EAST 142 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488105,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,14:00,,,40.699413,-73.95902,"(40.699413, -73.95902)",WALLABOUT STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488269,Sedan,Sedan,,, +12/20/2021,19:50,BROOKLYN,11235,40.58842,-73.96326,"(40.58842, -73.96326)",,,2526 HUBBARD STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488558,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/06/2021,20:25,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",EAST 138 STREET,WILLIS AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4488964,Sedan,,,, +12/20/2021,15:07,,,40.87787,-73.8701,"(40.87787, -73.8701)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488439,Sedan,Sedan,,, +12/20/2021,18:20,MANHATTAN,10003,40.724903,-73.99233,"(40.724903, -73.99233)",BOWERY,EAST 1 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488227,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,12:34,STATEN ISLAND,10304,,,,VANDUZER STREET,WANDEL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4488800,Sedan,Sedan,,, +12/18/2021,12:30,MANHATTAN,10003,40.735878,-73.9874,"(40.735878, -73.9874)",EAST 17 STREET,IRVING PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488772,Sedan,,,, +12/20/2021,10:50,QUEENS,11423,40.72006,-73.761856,"(40.72006, -73.761856)",,,202-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488311,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,15:30,,,40.66858,-73.84223,"(40.66858, -73.84223)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4488293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/30/2021,17:46,,,40.752403,-73.92442,"(40.752403, -73.92442)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488712,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,16:38,BROOKLYN,11205,40.692776,-73.95769,"(40.692776, -73.95769)",FRANKLIN AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4488745,Bus,Box Truck,,, +05/09/2021,11:50,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415488,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,10:48,BRONX,10455,,,,WESTCHESTER AVENUE,TRINITY AVENUE,,2,0,2,0,0,0,0,0,,,,,,4459911,,,,, +12/20/2021,15:55,MANHATTAN,10035,40.800198,-73.94133,"(40.800198, -73.94133)",,,114 EAST 118 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488319,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,7:00,,,40.66494,-73.99664,"(40.66494, -73.99664)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488983,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,2:27,QUEENS,11423,40.712517,-73.76267,"(40.712517, -73.76267)",,,196-34 HIAWATHA AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4488211,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,12:20,,,40.831707,-73.901886,"(40.831707, -73.901886)",EAST 169 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488940,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/20/2021,10:10,MANHATTAN,10002,40.720272,-73.981544,"(40.720272, -73.981544)",,,133 PITT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4488176,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,12:58,QUEENS,11365,40.737873,-73.802765,"(40.737873, -73.802765)",,,61-14 166 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488812,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,7:21,BROOKLYN,11226,40.647007,-73.96262,"(40.647007, -73.96262)",ALBEMARLE ROAD,EAST 18 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488476,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,19:53,,,40.628662,-74.13675,"(40.628662, -74.13675)",DECKER AVENUE,CATHERINE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488602,Sedan,Sedan,,, +12/20/2021,12:19,QUEENS,11377,40.744167,-73.91248,"(40.744167, -73.91248)",ROOSEVELT AVENUE,52 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488243,,,,, +12/20/2021,18:00,BROOKLYN,11218,40.635723,-73.97655,"(40.635723, -73.97655)",,,233 DITMAS AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4488340,Station Wagon/Sport Utility Vehicle,Bike,,, +12/20/2021,8:15,BROOKLYN,11208,40.68081,-73.8849,"(40.68081, -73.8849)",ARLINGTON AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488543,Sedan,,,, +12/20/2021,8:00,BROOKLYN,11220,,,,BELT PARKWAY,65 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488433,Sedan,,,, +12/20/2021,6:18,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488165,Sedan,Dump,,, +12/20/2021,2:15,,,40.787544,-73.82394,"(40.787544, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4488055,Taxi,Sedan,,, +12/20/2021,19:00,QUEENS,11374,40.726173,-73.86489,"(40.726173, -73.86489)",63 DRIVE,ALDERTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488274,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,3:00,,,40.697575,-73.984055,"(40.697575, -73.984055)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488881,Sedan,,,, +03/28/2021,0:46,,,40.809643,-73.947845,"(40.809643, -73.947845)",7 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415585,Sedan,Sedan,,, +09/22/2021,19:30,QUEENS,11354,,,,LEAVITT STREET,32 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459980,Sedan,,,, +12/07/2021,8:01,,,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485647,Sedan,,,, +12/10/2021,21:38,,,40.900005,-73.87919,"(40.900005, -73.87919)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4485351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/09/2021,11:27,BROOKLYN,11236,40.639286,-73.89869,"(40.639286, -73.89869)",EAST 95 STREET,AVENUE K,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485054,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/10/2021,8:25,BROOKLYN,11226,40.64059,-73.95429,"(40.64059, -73.95429)",AVENUE D,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485520,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/04/2021,23:37,QUEENS,11105,40.77694,-73.916504,"(40.77694, -73.916504)",,,25-01 23 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485357,Sedan,Pick-up Truck,,, +12/10/2021,18:20,BROOKLYN,11229,40.600903,-73.95169,"(40.600903, -73.95169)",,,2481 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485303,freight,Sedan,,, +12/08/2021,0:01,,,40.60783,-74.1465,"(40.60783, -74.1465)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4485211,Sedan,Tanker,,, +12/09/2021,17:41,,,40.753098,-73.97788,"(40.753098, -73.97788)",VANDERBILT AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4485725,Taxi,Bike,,, +12/09/2021,0:00,BROOKLYN,11228,40.627247,-74.01429,"(40.627247, -74.01429)",FORT HAMILTON PARKWAY,72 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485069,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,19:10,MANHATTAN,10022,40.75906,-73.97262,"(40.75906, -73.97262)",PARK AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4484847,Sedan,,,, +12/20/2021,7:35,BRONX,10462,40.837757,-73.859795,"(40.837757, -73.859795)",,,40 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488351,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,2:00,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4488251,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,19:15,QUEENS,11370,40.762856,-73.888596,"(40.762856, -73.888596)",80 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488778,Sedan,,,, +12/14/2021,14:30,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",WOODSTOCK AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4488796,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,23:00,BROOKLYN,11211,40.7124,-73.95136,"(40.7124, -73.95136)",AINSLIE STREET,UNION AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4488725,Station Wagon/Sport Utility Vehicle,,,, +03/28/2021,17:17,,,,,,MACOMBS DAM BRIDGE,WEST 155 STREET,,0,1,0,0,0,0,0,1,Illnes,Unspecified,Unspecified,,,4403297,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/02/2021,18:57,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4412995,Sedan,Sedan,Sedan,, +05/06/2021,18:04,BRONX,10459,40.818768,-73.89867,"(40.818768, -73.89867)",,,831 DAWSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414247,Tow Truck / Wrecker,Sedan,,, +05/09/2021,13:45,,,40.63612,-74.138245,"(40.63612, -74.138245)",CASTLETON AVENUE,TREADWELL AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414821,Sedan,Sedan,,, +05/09/2021,15:00,BROOKLYN,11224,40.5731,-74.00143,"(40.5731, -74.00143)",SURF AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414919,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,10:30,,,40.869316,-73.91674,"(40.869316, -73.91674)",WEST 214 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415463,Sedan,,,, +05/09/2021,22:08,BROOKLYN,11220,40.637794,-74.010765,"(40.637794, -74.010765)",,,5822 7 AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415442,Sedan,Sedan,,, +05/09/2021,2:05,BRONX,10454,40.80213,-73.9073,"(40.80213, -73.9073)",EAST 138 STREET,LOCUST AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4414502,Sedan,,,, +05/09/2021,12:10,BRONX,10454,40.806873,-73.91973,"(40.806873, -73.91973)",EAST 137 STREET,BROOK AVENUE,,1,0,1,0,0,0,0,0,Tinted Windows,,,,,4414881,Sedan,,,, +05/09/2021,1:40,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415246,Motorcycle,,,, +05/09/2021,0:10,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4414964,Sedan,,,, +05/07/2021,18:56,,,40.677982,-73.791214,"(40.677982, -73.791214)",SUTPHIN BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415415,Bus,Sedan,,, +05/08/2021,10:40,QUEENS,11435,40.695335,-73.80121,"(40.695335, -73.80121)",150 STREET,SOUTH ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415545,Sedan,,,, +05/09/2021,1:20,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,,,,4414575,Sedan,Sedan,,, +05/09/2021,15:08,BROOKLYN,11233,40.67638,-73.911736,"(40.67638, -73.911736)",,,2220 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4414977,Sedan,Sedan,Sedan,, +05/06/2021,11:25,BROOKLYN,11218,40.65319,-73.97494,"(40.65319, -73.97494)",,,35 REEVE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415459,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,21:00,MANHATTAN,10012,40.72766,-74.001396,"(40.72766, -74.001396)",WEST HOUSTON STREET,SULLIVAN STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415526,Pick-up Truck,E-Bike,,, +05/07/2021,17:35,,,,,,,,103 WEST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4415381,Bike,,,, +05/09/2021,10:29,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",225 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414625,Taxi,,,, +05/09/2021,14:30,MANHATTAN,10022,40.754875,-73.96853,"(40.754875, -73.96853)",EAST 50 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414793,Sedan,Bike,,, +05/09/2021,8:00,BRONX,10462,40.848545,-73.86161,"(40.848545, -73.86161)",RHINELANDER AVENUE,MULINER AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415090,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/09/2021,20:00,QUEENS,11435,40.688465,-73.80387,"(40.688465, -73.80387)",143 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415148,Sedan,Sedan,,, +05/09/2021,11:25,BROOKLYN,11208,40.68759,-73.87056,"(40.68759, -73.87056)",,,364 ETNA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,15:50,BROOKLYN,11218,40.640736,-73.98801,"(40.640736, -73.98801)",,,1248 40 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414623,Sedan,E-Bike,,, +05/08/2021,16:42,,,40.63743,-74.11375,"(40.63743, -74.11375)",HENDERSON AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415356,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/09/2021,16:00,,,40.737785,-73.93496,"(40.737785, -73.93496)",VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414756,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,13:03,,,40.701916,-73.72712,"(40.701916, -73.72712)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414680,Sedan,,,, +05/09/2021,12:50,QUEENS,11372,40.748863,-73.892715,"(40.748863, -73.892715)",73 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415669,Sedan,,,, +05/09/2021,13:25,,,40.84935,-73.8712,"(40.84935, -73.8712)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414744,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,0:01,BROOKLYN,11203,40.64235,-73.945755,"(40.64235, -73.945755)",,,1253 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414693,Sedan,,,, +05/09/2021,15:15,,,40.625664,-74.15373,"(40.625664, -74.15373)",,,1941 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,15:47,BROOKLYN,11212,40.66028,-73.92576,"(40.66028, -73.92576)",EAST 92 STREET,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414781,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,4:20,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414644,Sedan,Motorcycle,,, +05/08/2021,5:10,,,,,,MEADOW LAKE,FLUSHING PARK ENTRANCE EAST,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4415355,Sedan,Tractor Truck Diesel,,, +05/09/2021,14:13,STATEN ISLAND,10305,40.603615,-74.06931,"(40.603615, -74.06931)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414938,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,15:00,MANHATTAN,10010,40.73842,-73.980095,"(40.73842, -73.980095)",,,305 EAST 24 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414986,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,13:46,MANHATTAN,10013,40.71697,-73.998245,"(40.71697, -73.998245)",,,196 CANAL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4415372,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,1:43,MANHATTAN,10128,40.783566,-73.947586,"(40.783566, -73.947586)",2 AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4504364,Taxi,Pick-up Truck,Sedan,, +04/30/2021,13:15,QUEENS,11355,,,,Grand central parkway,Hall of science bridge,,1,0,0,0,0,0,1,0,Unspecified,,,,,4415360,Sedan,,,, +05/09/2021,12:45,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414672,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,17:25,,,40.829945,-73.93005,"(40.829945, -73.93005)",EAST 161 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4414763,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,20:45,,,40.770256,-73.91586,"(40.770256, -73.91586)",ASTORIA BOULEVARD,33 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414901,Lift Boom,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,23:40,,,,,,BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4415559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/09/2021,9:40,QUEENS,11423,40.71532,-73.75742,"(40.71532, -73.75742)",,,93-04 204 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415147,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,13:38,BRONX,10454,40.80058,-73.914734,"(40.80058, -73.914734)",,,765 EAST 132 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4415436,Dump,Box Truck,,, +05/08/2021,14:30,QUEENS,11422,40.665356,-73.72865,"(40.665356, -73.72865)",,,248-81 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415599,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,0:05,QUEENS,11428,40.721935,-73.74118,"(40.721935, -73.74118)",,,92-35 217 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414794,Sedan,,,, +05/09/2021,14:00,BRONX,10457,40.84229,-73.897385,"(40.84229, -73.897385)",,,1725 FULTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414849,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,4:20,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4414709,Sedan,Sedan,,, +05/07/2021,14:42,,,40.787064,-73.94194,"(40.787064, -73.94194)",1 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/09/2021,12:40,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4415215,Sedan,Sedan,Sedan,, +05/09/2021,16:15,BROOKLYN,11207,40.674118,-73.89839,"(40.674118, -73.89839)",LIBERTY AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415334,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,23:10,BRONX,10472,40.831085,-73.86909,"(40.831085, -73.86909)",ROSEDALE AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,14:42,BROOKLYN,11215,40.668617,-73.98515,"(40.668617, -73.98515)",,,341 9 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415470,Station Wagon/Sport Utility Vehicle,Bike,,, +05/09/2021,14:25,,,40.865612,-73.801094,"(40.865612, -73.801094)",PARK DRIVE,ORCHARD BEACH ROAD,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4414931,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,22:05,,,40.72773,-73.90674,"(40.72773, -73.90674)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4415446,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,23:49,,,40.686497,-73.9168,"(40.686497, -73.9168)",BROADWAY,HANCOCK STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4414978,Sedan,Sedan,Sedan,Sedan, +05/09/2021,20:14,QUEENS,11368,40.744076,-73.85478,"(40.744076, -73.85478)",,,108-32 51 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414858,Sedan,,,, +05/09/2021,5:36,,,40.670746,-73.950424,"(40.670746, -73.950424)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4415126,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,12:00,,,40.672363,-73.93079,"(40.672363, -73.93079)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415552,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,22:50,BROOKLYN,11211,40.712215,-73.945724,"(40.712215, -73.945724)",POWERS STREET,MANHATTAN AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4414800,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,9:21,QUEENS,11377,40.756996,-73.90784,"(40.756996, -73.90784)",31 AVENUE,51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415419,Pick-up Truck,,,, +05/03/2021,5:37,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415622,Pick-up Truck,Motorcycle,,, +05/09/2021,20:55,BROOKLYN,11236,40.640724,-73.883446,"(40.640724, -73.883446)",EAST 108 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4415030,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,15:12,BRONX,10468,40.863785,-73.90028,"(40.863785, -73.90028)",JEROME AVENUE,EAST 190 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,Unspecified,,,4414882,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/09/2021,11:20,BROOKLYN,11236,40.636536,-73.91441,"(40.636536, -73.91441)",,,749 EAST 80 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,13:48,BRONX,10469,40.87003,-73.840744,"(40.87003, -73.840744)",ADEE AVENUE,KINGSLAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4414967,Sedan,Sedan,,, +04/24/2021,22:29,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",FRESH POND ROAD,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4415454,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,3:15,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,5,0,0,0,0,0,5,0,Unspecified,,,,,4414507,Sedan,,,, +05/06/2021,13:59,BRONX,10461,40.839485,-73.84382,"(40.839485, -73.84382)",,,1403 OVERING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415508,Sedan,,,, +05/09/2021,0:00,BROOKLYN,11229,40.611683,-73.94694,"(40.611683, -73.94694)",AVENUE P,EAST 27 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4414840,Pick-up Truck,,,, +05/08/2021,4:15,,,40.714622,-73.829704,"(40.714622, -73.829704)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4415389,Sedan,Sedan,,, +05/06/2021,16:50,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4414072,Sedan,,,, +04/30/2021,0:22,BROOKLYN,11225,40.668964,-73.95059,"(40.668964, -73.95059)",NOSTRAND AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,15:30,,,,,,18 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,,4415441,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/09/2021,0:05,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",EDSON AVENUE,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4414601,Sedan,,,, +05/09/2021,8:15,MANHATTAN,10033,40.84932,-73.93374,"(40.84932, -73.93374)",SAINT NICHOLAS AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4415462,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/09/2021,15:52,BROOKLYN,11211,40.713615,-73.96094,"(40.713615, -73.96094)",,,160 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414799,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,12:05,BROOKLYN,11211,40.712532,-73.95798,"(40.712532, -73.95798)",,,232 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414969,Sedan,Ambulance,,, +05/07/2021,18:44,BROOKLYN,11226,40.649746,-73.950676,"(40.649746, -73.950676)",,,147 ERASMUS STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4415539,Sedan,Sedan,,, +05/09/2021,15:00,QUEENS,11355,40.753254,-73.831955,"(40.753254, -73.831955)",,,132-29 POPLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,7:47,MANHATTAN,10000,40.781593,-73.96286,"(40.781593, -73.96286)",TRANSVERSE ROAD NUMBER THREE,EAST DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415380,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,1:15,QUEENS,11434,40.669666,-73.76561,"(40.669666, -73.76561)",FARMERS BOULEVARD,143 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415418,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,17:13,,,40.575413,-73.98347,"(40.575413, -73.98347)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,5:30,QUEENS,11372,40.750946,-73.87292,"(40.750946, -73.87292)",,,94-18 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415670,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,8:56,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415487,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,14:14,BROOKLYN,11226,40.647217,-73.9492,"(40.647217, -73.9492)",,,1600 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4414708,Station Wagon/Sport Utility Vehicle,bus,,, +05/09/2021,15:35,QUEENS,11373,40.738514,-73.86846,"(40.738514, -73.86846)",54 AVENUE,94 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4414746,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/26/2022,19:48,BRONX,10463,40.885212,-73.90104,"(40.885212, -73.90104)",WEST 238 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514834,Sedan,,,, +04/24/2021,1:00,QUEENS,11368,40.739185,-73.85252,"(40.739185, -73.85252)",,,58-45 WALDRON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415645,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,18:02,QUEENS,11423,40.72328,-73.778046,"(40.72328, -73.778046)",188 STREET,AVON ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4414824,Sedan,Bike,,, +05/08/2021,12:20,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415364,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,23:40,QUEENS,11435,40.704082,-73.81094,"(40.704082, -73.81094)",,,88-24 145 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415544,Sedan,Sedan,,, +05/09/2021,12:19,QUEENS,11429,40.705982,-73.73956,"(40.705982, -73.73956)",SPRINGFIELD BOULEVARD,111 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,21:15,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",VARICK STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415062,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,1:58,,,40.659016,-73.95673,"(40.659016, -73.95673)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4415219,Sedan,Sedan,Sedan,Sedan,Sedan +05/09/2021,12:20,,,40.62374,-73.92448,"(40.62374, -73.92448)",AVENUE L,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,1:10,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4414898,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,7:47,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",ALEXANDER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415437,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/07/2021,17:30,BROOKLYN,11215,40.669132,-73.97745,"(40.669132, -73.97745)",,,507 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415468,Sedan,,,, +05/09/2021,10:00,QUEENS,11691,40.6029,-73.76673,"(40.6029, -73.76673)",,,29-16 MARTIN COURT,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4415373,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,19:40,,,40.606407,-74.18937,"(40.606407, -74.18937)",,,380 CHELSEA ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414815,Sedan,,,, +05/09/2021,12:00,,,40.84492,-73.90552,"(40.84492, -73.90552)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4414909,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,21:34,QUEENS,11385,40.697773,-73.88772,"(40.697773, -73.88772)",,,78-34 CYPRESS HILLS STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4415563,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,20:29,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415423,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,16:09,BROOKLYN,11213,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415167,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,10:15,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414613,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,22:00,MANHATTAN,10031,40.821037,-73.9552,"(40.821037, -73.9552)",,,619 WEST 136 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415359,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,20:43,MANHATTAN,10033,40.845325,-73.93872,"(40.845325, -73.93872)",,,4117 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414783,Sedan,Sedan,,, +12/19/2021,2:00,,,40.60968,-73.99298,"(40.60968, -73.99298)",20 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4488842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/09/2021,23:00,QUEENS,11421,40.692764,-73.86109,"(40.692764, -73.86109)",,,86-42 FOREST PARKWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,4:20,STATEN ISLAND,10306,40.560394,-74.120056,"(40.560394, -74.120056)",HYLAN BOULEVARD,GUYON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4414937,Pick-up Truck,,,, +05/08/2021,10:30,BROOKLYN,11232,40.6687,-73.9965,"(40.6687, -73.9965)",GOWANUS EXPRESSWAY,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415478,Sedan,Stake or Rack,,, +05/09/2021,4:36,QUEENS,11421,40.691864,-73.862076,"(40.691864, -73.862076)",,,86-77 80 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414981,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,10:30,QUEENS,11368,40.74428,-73.861786,"(40.74428, -73.861786)",CORONA AVENUE,102 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415430,Bus,Sedan,,, +05/09/2021,19:25,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414843,Sedan,Taxi,,, +05/09/2021,21:00,QUEENS,11103,40.761692,-73.91789,"(40.761692, -73.91789)",31 AVENUE,38 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415365,,,,, +05/08/2021,11:35,,,40.695538,-73.74831,"(40.695538, -73.74831)",LINDEN BOULEVARD,204 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4415406,Sedan,Sedan,,, +05/09/2021,0:30,,,40.71786,-73.948326,"(40.71786, -73.948326)",MEEKER AVENUE,LEONARD STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414905,Station Wagon/Sport Utility Vehicle,Bike,,, +05/09/2021,5:00,BROOKLYN,11208,40.685917,-73.87071,"(40.685917, -73.87071)",RIDGEWOOD AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4415322,Sedan,Sedan,Sedan,Sedan, +05/09/2021,11:40,,,40.765873,-73.8089,"(40.765873, -73.8089)",35 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414636,Pick-up Truck,,,, +05/09/2021,20:20,STATEN ISLAND,10301,40.63407,-74.105385,"(40.63407, -74.105385)",,,353 HOYT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415013,Sedan,,,, +05/09/2021,21:00,BROOKLYN,11201,40.699844,-73.991035,"(40.699844, -73.991035)",CADMAN PLAZA WEST,MIDDAGH STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414755,Sedan,Bike,,, +05/09/2021,1:45,STATEN ISLAND,10312,,,,,,8 KATHY COURT,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4415045,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,6:57,BRONX,10451,40.82485,-73.911316,"(40.82485, -73.911316)",EAST 163 STREET,BROOK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414839,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,20:45,BRONX,10453,40.85458,-73.9162,"(40.85458, -73.9162)",WEST BURNSIDE AVENUE,OSBORNE PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4415005,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,19:03,,,40.878,-73.90408,"(40.878, -73.90408)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4514786,Sedan,Bike,,, +05/09/2021,15:30,,,,,,SHORE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414925,Sedan,Sedan,,, +05/06/2021,19:44,BROOKLYN,11220,40.648308,-74.01412,"(40.648308, -74.01412)",3 AVENUE,49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415455,Tractor Truck Diesel,Sedan,,, +05/09/2021,2:55,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414509,4 dr sedan,Sedan,,, +05/06/2021,23:00,QUEENS,11368,40.757824,-73.86101,"(40.757824, -73.86101)",NORTHERN BOULEVARD,108 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415510,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,15:00,MANHATTAN,10029,40.798622,-73.94163,"(40.798622, -73.94163)",EAST 116 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4415387,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,6:50,QUEENS,11368,40.7424,-73.85399,"(40.7424, -73.85399)",,,108-45 CORONA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415655,Carry All,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,21:45,QUEENS,11357,40.781693,-73.82225,"(40.781693, -73.82225)",PARSONS BOULEVARD,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415230,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,0:23,,,,,,MARINE PARKWAY BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,0:37,BROOKLYN,11234,40.6229,-73.92631,"(40.6229, -73.92631)",,,1534 EAST 51 STREET,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4414728,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/09/2021,22:40,,,40.89371,-73.88558,"(40.89371, -73.88558)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4415128,Sedan,,,, +05/08/2021,20:00,MANHATTAN,10032,40.83016,-73.94167,"(40.83016, -73.94167)",SAINT NICHOLAS AVENUE,WEST 154 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4415507,Sedan,E-Bike,,, +05/09/2021,21:00,QUEENS,11101,40.744347,-73.92891,"(40.744347, -73.92891)",QUEENS BOULEVARD,36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,12:00,,,40.7114,-73.741,"(40.7114, -73.741)",106 AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415188,Sedan,Sedan,,, +05/08/2021,14:25,,,40.668495,-73.925606,"(40.668495, -73.925606)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415551,Pick-up Truck,Bus,,, +05/09/2021,23:47,BROOKLYN,11207,40.661865,-73.88984,"(40.661865, -73.88984)",,,681 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415340,Sedan,,,, +05/01/2021,1:24,QUEENS,11417,40.67119,-73.8387,"(40.67119, -73.8387)",,,96-38 149 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415633,Sedan,,,, +05/09/2021,10:33,QUEENS,11354,40.75732,-73.834015,"(40.75732, -73.834015)",,,40-24 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4414663,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,23:30,,,40.879807,-73.906586,"(40.879807, -73.906586)",WEST 231 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415129,Sedan,Sedan,,, +05/09/2021,5:00,BROOKLYN,11208,40.685818,-73.87107,"(40.685818, -73.87107)",,,482 RIDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415327,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,21:00,QUEENS,11102,40.773922,-73.9297,"(40.773922, -73.9297)",,,26-25 12 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415362,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,12:36,MANHATTAN,10016,40.747513,-73.9688,"(40.747513, -73.9688)",EAST 41 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Fell Asleep,,,,4414676,Sedan,Sedan,,, +05/09/2021,13:27,BROOKLYN,11218,40.64608,-73.98445,"(40.64608, -73.98445)",,,3413 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414761,Station Wagon/Sport Utility Vehicle,Moped,,, +05/05/2021,16:27,,,40.769188,-73.8009,"(40.769188, -73.8009)",32 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415572,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,14:00,BROOKLYN,11225,40.669197,-73.96212,"(40.669197, -73.96212)",WASHINGTON AVENUE,CLASSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415619,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/09/2021,16:20,BROOKLYN,11211,40.711693,-73.95124,"(40.711693, -73.95124)",UNION AVENUE,HOPE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,Pavement Slippery,,,4414798,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/09/2021,16:10,BRONX,10453,40.84962,-73.91938,"(40.84962, -73.91938)",WEST 176 STREET,MONTGOMERY AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4414972,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/04/2021,8:23,BRONX,10466,40.885647,-73.84402,"(40.885647, -73.84402)",,,1175 EAST 229 STREET,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4415554,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,1:09,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4488287,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/02/2021,1:20,QUEENS,11375,40.71531,-73.826385,"(40.71531, -73.826385)",132 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415486,Taxi,,,, +05/09/2021,8:30,,,40.64663,-73.95566,"(40.64663, -73.95566)",TILDEN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414705,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,4:08,BROOKLYN,11235,40.583652,-73.94356,"(40.583652, -73.94356)",BEDFORD AVENUE,EMMONS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,8:16,QUEENS,11355,40.75667,-73.828804,"(40.75667, -73.828804)",MAIN STREET,SANFORD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414635,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,21:00,,,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,22:30,QUEENS,11377,40.750782,-73.90107,"(40.750782, -73.90107)",BROADWAY,61 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4415104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,18:35,,,40.609463,-73.97419,"(40.609463, -73.97419)",DAHILL ROAD,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4414814,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,19:35,BROOKLYN,11215,40.6603,-73.980446,"(40.6603, -73.980446)",,,215 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415444,Sedan,,,, +05/09/2021,15:00,MANHATTAN,10031,40.828625,-73.945854,"(40.828625, -73.945854)",,,506 WEST 150 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415349,Sedan,,,, +05/09/2021,7:30,BRONX,10467,40.879032,-73.87425,"(40.879032, -73.87425)",,,301 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4414862,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,19:29,,,40.69003,-73.911,"(40.69003, -73.911)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415181,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,13:20,QUEENS,11101,40.75203,-73.92915,"(40.75203, -73.92915)",35 STREET,NORTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4415358,Pick-up Truck,Sedan,,, +05/09/2021,1:10,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,SCHENCK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415321,Sedan,,,, +05/09/2021,1:50,,,40.853474,-73.906456,"(40.853474, -73.906456)",EAST BURNSIDE AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Lane Changing,,,,4414955,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,22:50,QUEENS,11435,40.704082,-73.81094,"(40.704082, -73.81094)",,,88-24 145 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415543,Sedan,Sedan,,, +05/09/2021,18:00,QUEENS,11420,40.68022,-73.82121,"(40.68022, -73.82121)",,,111-31 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414855,Sedan,Pick-up Truck,,, +05/04/2021,13:10,MANHATTAN,10029,40.790417,-73.95184,"(40.790417, -73.95184)",MADISON AVENUE,EAST 101 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,12:05,BROOKLYN,11229,40.596966,-73.931496,"(40.596966, -73.931496)",AVENUE W,PLUMB 2 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4414842,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,0:45,BRONX,10466,40.88601,-73.85808,"(40.88601, -73.85808)",,,3944 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414602,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,9:15,QUEENS,11378,40.72593,-73.8969,"(40.72593, -73.8969)",PERRY AVENUE,BORDEN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415457,Sedan,Bike,,, +05/09/2021,18:59,QUEENS,11368,40.747395,-73.853546,"(40.747395, -73.853546)",,,47-01 111 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4414747,Sedan,Bike,,, +05/09/2021,17:00,BROOKLYN,11222,40.723072,-73.94028,"(40.723072, -73.94028)",,,5 SUTTON STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414914,Sedan,Sedan,,, +04/19/2021,7:40,QUEENS,11368,40.757824,-73.86101,"(40.757824, -73.86101)",NORTHERN BOULEVARD,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4415675,Sedan,Sedan,,, +04/09/2021,15:00,BROOKLYN,11225,40.66594,-73.944336,"(40.66594, -73.944336)",,,441 CROWN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4415540,Sedan,Sedan,,, +05/06/2021,22:17,QUEENS,11413,40.683376,-73.76043,"(40.683376, -73.76043)",MONTAUK STREET,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4415398,Sedan,Sedan,Sedan,, +05/09/2021,1:30,,,40.87911,-73.84325,"(40.87911, -73.84325)",BOSTON ROAD,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4414921,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/09/2021,4:39,MANHATTAN,10035,40.803024,-73.93632,"(40.803024, -73.93632)",EAST 124 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415070,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,23:28,,,40.797478,-73.9488,"(40.797478, -73.9488)",EAST 111 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4415407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/09/2021,22:43,,,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4414893,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,21:39,BROOKLYN,11204,40.616554,-73.99659,"(40.616554, -73.99659)",72 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4414816,Ambulance,Sedan,,, +05/08/2021,10:22,QUEENS,11378,40.71935,-73.91233,"(40.71935, -73.91233)",GRAND AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415450,Sedan,Box Truck,,, +05/08/2021,14:30,BROOKLYN,11215,40.67445,-73.97957,"(40.67445, -73.97957)",,,684 CARROLL STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4415465,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,16:33,BROOKLYN,11204,40.62145,-73.99404,"(40.62145, -73.99404)",,,1630 65 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414766,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/20/2021,20:34,BROOKLYN,11206,40.696125,-73.936195,"(40.696125, -73.936195)",,,335 VERNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488736,Station Wagon/Sport Utility Vehicle,SPRINTER,,, +05/09/2021,6:59,BROOKLYN,11221,40.6913,-73.9455,"(40.6913, -73.9455)",TOMPKINS AVENUE,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4415159,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +05/04/2021,17:35,BROOKLYN,11205,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415376,Sedan,Sedan,,, +05/09/2021,20:50,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4414934,Box Truck,Sedan,,, +05/09/2021,13:15,BROOKLYN,11214,40.604885,-73.9987,"(40.604885, -73.9987)",,,1973 86 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4415024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,14:25,BROOKLYN,11233,40.678276,-73.910805,"(40.678276, -73.910805)",ROCKAWAY AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415549,Taxi,,,, +05/09/2021,19:10,,,40.69103,-73.78079,"(40.69103, -73.78079)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4415422,Sedan,Sedan,,, +05/09/2021,2:00,STATEN ISLAND,10312,40.55289,-74.19154,"(40.55289, -74.19154)",,,240 ARDEN AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4415046,FORKLIFT,,,, +05/05/2021,18:10,BROOKLYN,11206,40.707516,-73.94119,"(40.707516, -73.94119)",,,200 MONTROSE AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,,,4415664,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +04/30/2021,20:50,BRONX,10469,40.876835,-73.8585,"(40.876835, -73.8585)",,,935 TILDEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415432,Sedan,Sedan,,, +05/09/2021,0:02,BROOKLYN,11234,40.62973,-73.922226,"(40.62973, -73.922226)",FLATLANDS AVENUE,EAST 56 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4414511,Sedan,Sedan,,, +05/08/2021,7:30,QUEENS,11385,40.704018,-73.89795,"(40.704018, -73.89795)",68 ROAD,60 LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415451,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/09/2021,13:40,,,40.615364,-73.94575,"(40.615364, -73.94575)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414853,Sedan,Sedan,,, +05/09/2021,20:51,QUEENS,11355,40.744846,-73.835686,"(40.744846, -73.835686)",COLLEGE POINT BOULEVARD,59 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415232,Motorcycle,,,, +05/09/2021,7:56,QUEENS,11366,40.725777,-73.79175,"(40.725777, -73.79175)",UNION TURNPIKE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4414729,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,22:00,BRONX,10455,40.820824,-73.91562,"(40.820824, -73.91562)",EAST 156 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415199,Sedan,Sedan,,, +05/08/2021,10:25,BROOKLYN,11215,40.676006,-73.98352,"(40.676006, -73.98352)",,,543 CARROLL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415477,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,7:47,BROOKLYN,11203,40.648243,-73.929,"(40.648243, -73.929)",TILDEN AVENUE,EAST 51 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488875,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,14:00,BRONX,10466,40.898243,-73.858864,"(40.898243, -73.858864)",,,4352 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414942,Sedan,,,, +05/09/2021,13:00,QUEENS,11420,40.67978,-73.823875,"(40.67978, -73.823875)",116 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4414980,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,2:57,QUEENS,11691,40.60797,-73.754196,"(40.60797, -73.754196)",,,13-89 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4415369,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,15:18,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415106,Sedan,Sedan,,, +05/09/2021,14:40,BRONX,10452,40.83932,-73.91503,"(40.83932, -73.91503)",WYTHE PLACE,EAST 170 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4414765,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,19:50,,,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4414802,Sedan,E-Bike,,, +05/09/2021,19:11,,,40.65676,-73.960144,"(40.65676, -73.960144)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4415625,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,12:30,BROOKLYN,11211,40.71236,-73.95896,"(40.71236, -73.95896)",,,210 ROEBLING STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414669,Sedan,,,, +04/30/2021,17:54,,,40.69524,-73.87571,"(40.69524, -73.87571)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415556,Sedan,,,, +05/08/2021,17:55,BROOKLYN,11212,40.66962,-73.91112,"(40.66962, -73.91112)",,,1684 PITKIN AVENUE,1,0,0,0,0,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4415511,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/09/2021,21:45,MANHATTAN,10016,40.7453,-73.986855,"(40.7453, -73.986855)",EAST 29 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4415131,Sedan,,,, +05/09/2021,20:48,,,40.854477,-73.90125,"(40.854477, -73.90125)",EAST 181 STREET,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,,,,4414904,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,9:30,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415493,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,16:15,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414772,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,23:05,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4414817,Sedan,Sedan,,, +05/09/2021,17:10,BROOKLYN,11219,40.62824,-74.00838,"(40.62824, -74.00838)",,,1041 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415378,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,16:30,BROOKLYN,11208,40.665188,-73.86939,"(40.665188, -73.86939)",EUCLID AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415328,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,22:00,STATEN ISLAND,10305,40.61408,-74.072464,"(40.61408, -74.072464)",TOMPKINS AVENUE,SAINT MARYS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4415353,Sedan,Sedan,,, +05/09/2021,9:00,QUEENS,11357,40.786797,-73.812195,"(40.786797, -73.812195)",,,150-46 CROSS ISLAND PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414661,Sedan,,,, +05/09/2021,14:00,,,40.766617,-73.8389,"(40.766617, -73.8389)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4414994,Sedan,,,, +05/09/2021,0:00,BROOKLYN,11234,40.635258,-73.92745,"(40.635258, -73.92745)",GLENWOOD ROAD,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4414713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/09/2021,14:05,BROOKLYN,11236,40.648567,-73.91781,"(40.648567, -73.91781)",EAST 88 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4415154,Sedan,Sedan,Sedan,, +05/09/2021,0:50,BROOKLYN,11219,40.633224,-73.995186,"(40.633224, -73.995186)",NEW UTRECHT AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414629,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,17:16,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4414834,Sedan,Sedan,,, +05/09/2021,13:00,,,40.67772,-73.86486,"(40.67772, -73.86486)",ELDERTS LANE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415326,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,18:20,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415097,Taxi,Sedan,,, +05/09/2021,14:50,,,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414757,Sedan,Sedan,,, +04/26/2021,18:30,QUEENS,11377,40.755764,-73.904106,"(40.755764, -73.904106)",,,57-15 32 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415464,Sedan,Bike,,, +05/07/2021,6:40,BROOKLYN,11220,40.64554,-74.01708,"(40.64554, -74.01708)",3 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415439,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/09/2021,5:38,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4414917,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,15:50,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414863,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,13:40,QUEENS,11692,40.590393,-73.788734,"(40.590393, -73.788734)",,,146 BEACH 59 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4415382,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,5:15,MANHATTAN,10029,40.784985,-73.94345,"(40.784985, -73.94345)",,,1918 1 AVENUE,0,0,0,0,0,0,0,0,Vehicle Vandalism,,,,,4415416,Sedan,,,, +05/09/2021,20:15,,,40.576374,-74.00788,"(40.576374, -74.00788)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414923,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,18:45,BROOKLYN,11231,40.683655,-74.000404,"(40.683655, -74.000404)",,,174 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4414751,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,15:40,QUEENS,11691,40.604755,-73.75113,"(40.604755, -73.75113)",FOAM PLACE,SMITH PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4415687,Sedan,,,, +05/09/2021,11:16,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inattention/Distraction,,,,4414703,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,0:00,BRONX,10462,40.856613,-73.86747,"(40.856613, -73.86747)",,,700 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4488461,Sedan,,,, +04/27/2021,0:54,QUEENS,11385,40.705772,-73.89997,"(40.705772, -73.89997)",PUTNAM AVENUE,60 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,21:56,,,40.69742,-73.93134,"(40.69742, -73.93134)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415176,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/09/2021,18:39,STATEN ISLAND,10310,40.63473,-74.109764,"(40.63473, -74.109764)",CASTLETON AVENUE,REGAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415357,Sedan,Sedan,,, +05/09/2021,16:16,BRONX,10461,40.85187,-73.853775,"(40.85187, -73.853775)",RHINELANDER AVENUE,TOMLINSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414791,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,1:20,QUEENS,11372,40.752945,-73.89248,"(40.752945, -73.89248)",74 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4414960,Sedan,,,, +05/09/2021,18:35,BROOKLYN,11211,40.71453,-73.9444,"(40.71453, -73.9444)",METROPOLITAN AVENUE,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415257,Sedan,Sedan,,, +05/09/2021,19:23,MANHATTAN,10035,40.803238,-73.93475,"(40.803238, -73.93475)",,,246 EAST 125 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415069,Sedan,Sedan,,, +12/17/2021,8:33,STATEN ISLAND,10304,40.623585,-74.08278,"(40.623585, -74.08278)",BROAD STREET,GORDON STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Driver Inattention/Distraction,,,,4488926,Sedan,Sedan,,, +05/09/2021,7:30,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",2 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414841,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,14:10,,,40.708504,-73.81954,"(40.708504, -73.81954)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415609,Sedan,Sedan,,, +05/09/2021,5:58,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4414975,Sedan,Sedan,Sedan,, +05/09/2021,23:12,QUEENS,11368,40.75639,-73.859726,"(40.75639, -73.859726)",34 AVENUE,109 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4414797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,11:20,,,40.645103,-74.01033,"(40.645103, -74.01033)",50 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4415443,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/06/2021,13:00,BROOKLYN,11218,40.649525,-73.98072,"(40.649525, -73.98072)",GREENWOOD AVENUE,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415458,Sedan,Dump,,, +05/04/2021,11:00,,,40.683483,-73.773506,"(40.683483, -73.773506)",172 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415395,Sedan,Sedan,,, +05/09/2021,19:45,,,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415541,Sedan,Sedan,,, +05/09/2021,18:10,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4414856,Sedan,,,, +04/23/2021,18:39,QUEENS,11385,40.70519,-73.90526,"(40.70519, -73.90526)",,,1924 PALMETTO STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4415578,Sedan,,,, +05/09/2021,3:30,QUEENS,11423,40.710938,-73.77382,"(40.710938, -73.77382)",,,90-59 186 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4415144,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +05/07/2021,17:30,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,14:00,QUEENS,11385,40.697327,-73.89322,"(40.697327, -73.89322)",,,61-26 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4414743,Sedan,,,, +05/09/2021,12:50,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",HOWARD AVENUE,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4415235,Sedan,Sedan,,, +05/01/2021,18:04,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415490,Sedan,Sedan,,, +05/09/2021,2:30,,,40.70996,-73.989334,"(40.70996, -73.989334)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4415107,Sedan,,,, +05/09/2021,15:23,MANHATTAN,10025,40.80584,-73.96176,"(40.80584, -73.96176)",,,1111 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4414710,Ambulance,Ambulance,,, +05/09/2021,18:10,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4414773,Sedan,Sedan,,, +05/09/2021,3:42,BRONX,10466,40.891033,-73.8487,"(40.891033, -73.8487)",,,4013 GUNTHER AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414603,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/22/2021,20:00,,,,,,170 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4460009,Sedan,Sedan,,, +05/07/2021,20:00,QUEENS,11377,40.74499,-73.89307,"(40.74499, -73.89307)",,,72-10 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415361,Sedan,,,, +04/28/2021,3:56,QUEENS,11368,40.74541,-73.85549,"(40.74541, -73.85549)",,,108-27 49 AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4415354,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/09/2021,10:20,QUEENS,11422,40.65492,-73.726395,"(40.65492, -73.726395)",HOOK CREEK BOULEVARD,148 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4414670,Sedan,Bike,,, +05/06/2021,19:30,QUEENS,11385,40.70103,-73.855,"(40.70103, -73.855)",,,83-35 WOODHAVEN BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4415542,Bike,,,, +05/08/2021,20:51,QUEENS,11434,40.67267,-73.770294,"(40.67267, -73.770294)",137 AVENUE,170 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4415401,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,22:30,BROOKLYN,11226,40.649887,-73.96176,"(40.649887, -73.96176)",,,1930 CHURCH AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4414933,Bike,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,8:20,QUEENS,11385,40.703175,-73.88719,"(40.703175, -73.88719)",CENTRAL AVENUE,67 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415447,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2020,0:51,MANHATTAN,10032,40.84103,-73.94463,"(40.84103, -73.94463)",WEST 165 STREET,RIVERSIDE DRIVE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,Unspecified,,,4415453,AMBULANCE,Sedan,Station Wagon/Sport Utility Vehicle,, +05/09/2021,1:23,BROOKLYN,11233,40.681118,-73.90868,"(40.681118, -73.90868)",,,15 STONE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Following Too Closely,,,,4414542,Sedan,Sedan,,, +05/05/2021,9:00,BROOKLYN,11225,40.663986,-73.9498,"(40.663986, -73.9498)",,,379 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415623,Sedan,,,, +05/09/2021,12:00,BROOKLYN,11229,40.600525,-73.94772,"(40.600525, -73.94772)",,,2075 EAST 24 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4414990,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/09/2021,0:00,,,40.848263,-73.92049,"(40.848263, -73.92049)",MONTGOMERY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415048,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,16:00,BROOKLYN,11233,40.677364,-73.90798,"(40.677364, -73.90798)",EASTERN PARKWAY,HERKIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415517,Sedan,,,, +05/09/2021,22:57,,,40.65994,-73.95347,"(40.65994, -73.95347)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4414850,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,6:00,QUEENS,11377,40.75,-73.89924,"(40.75, -73.89924)",63 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415371,Sedan,,,, +05/09/2021,18:31,,,40.7672,-73.887825,"(40.7672, -73.887825)",GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4414902,Sedan,Sedan,Taxi,, +05/09/2021,12:45,,,,,,BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,Unspecified,Unspecified,4415557,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/09/2021,22:55,BROOKLYN,11230,40.622837,-73.973526,"(40.622837, -73.973526)",BAY PARKWAY,EAST 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415025,Sedan,Sedan,,, +05/09/2021,19:30,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,10:45,QUEENS,11417,40.675423,-73.842926,"(40.675423, -73.842926)",,,94-27 133 AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4414655,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/09/2021,11:20,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4415214,Sedan,Sedan,,, +05/08/2021,12:54,QUEENS,11691,40.59511,-73.75955,"(40.59511, -73.75955)",,,25-18 SEAGIRT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4415379,Sedan,Sedan,,, +05/09/2021,8:45,,,40.59691,-74.19134,"(40.59691, -74.19134)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4414819,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,12:45,MANHATTAN,10002,40.713932,-73.99157,"(40.713932, -73.99157)",,,133 EAST BROADWAY,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4414801,Station Wagon/Sport Utility Vehicle,Bike,,, +05/09/2021,22:03,BROOKLYN,11207,40.67509,-73.89187,"(40.67509, -73.89187)",LIBERTY AVENUE,MILLER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,8:28,QUEENS,11432,40.71043,-73.79133,"(40.71043, -73.79133)",,,170-22 88 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415547,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,19:50,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Alcohol Involvement,,,,4414891,Sedan,Sedan,,, +05/09/2021,22:40,STATEN ISLAND,10306,40.57322,-74.106995,"(40.57322, -74.106995)",HYLAN BOULEVARD,OTIS AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4414941,Sedan,Sedan,,, +05/08/2021,3:50,BROOKLYN,11215,40.677414,-73.98305,"(40.677414, -73.98305)",4 AVENUE,UNION STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,,,,,4415476,Taxi,,,, +05/09/2021,14:30,BROOKLYN,11233,,,,Thomas boyland street,Atlantic avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414979,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,21:10,QUEENS,11414,40.670555,-73.85634,"(40.670555, -73.85634)",79 STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4414857,Sedan,,,, +05/05/2021,22:50,QUEENS,11436,40.680573,-73.80003,"(40.680573, -73.80003)",116 AVENUE,142 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4415413,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,6:10,QUEENS,11412,40.68645,-73.761185,"(40.68645, -73.761185)",120 AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4415420,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2021,0:00,QUEENS,11385,40.704845,-73.892136,"(40.704845, -73.892136)",65 STREET,CATALPA AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4415440,Sedan,E-Bike,,, +05/09/2021,13:30,QUEENS,11417,40.684494,-73.83719,"(40.684494, -73.83719)",105 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4414918,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,19:00,BROOKLYN,11220,40.644363,-74.01364,"(40.644363, -74.01364)",,,422 53 STREET,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4415435,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/19/2021,22:00,BRONX,10454,40.80701,-73.91064,"(40.80701, -73.91064)",,,325 CONCORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488970,Sedan,,,, +12/20/2021,1:50,QUEENS,11379,40.72201,-73.86907,"(40.72201, -73.86907)",84 PLACE,PENELOPE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488205,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,17:24,QUEENS,11364,40.749893,-73.76754,"(40.749893, -73.76754)",211 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488533,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,0:40,BRONX,10462,40.83162,-73.847824,"(40.83162, -73.847824)",POWELL AVENUE,HAVEMEYER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4488824,Sedan,Sedan,,, +12/20/2021,14:35,BRONX,10458,40.862,-73.89099,"(40.862, -73.89099)",,,2543 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,7:30,QUEENS,11422,40.678417,-73.729225,"(40.678417, -73.729225)",BROOKVILLE BOULEVARD,130 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488180,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,6:00,BROOKLYN,11234,40.614918,-73.91468,"(40.614918, -73.91468)",AVENUE U,EAST 61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488236,Sedan,,,, +12/20/2021,8:31,MANHATTAN,10029,40.79293,-73.94791,"(40.79293, -73.94791)",EAST 106 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4488643,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +12/20/2021,12:40,,,40.59038,-74.19295,"(40.59038, -74.19295)",VICTORY BOULEVARD,GLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488599,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,2:00,,,40.69611,-73.96406,"(40.69611, -73.96406)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4488159,Sedan,,,, +12/13/2021,12:45,BROOKLYN,11207,40.67456,-73.88682,"(40.67456, -73.88682)",,,633 GLENMORE AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4488846,Sedan,,,, +12/16/2021,22:30,BRONX,10457,40.83846,-73.90175,"(40.83846, -73.90175)",CLAREMONT PARKWAY,BATHGATE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488941,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,18:58,MANHATTAN,10013,40.725933,-74.003876,"(40.725933, -74.003876)",,,171 AVENUE OF THE AMERICAS,2,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488731,E-Bike,E-Bike,,, +12/20/2021,7:00,BRONX,10453,40.853523,-73.90273,"(40.853523, -73.90273)",GRAND CONCOURSE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4488331,Sedan,Sedan,,, +12/18/2021,7:30,,,40.835484,-73.9494,"(40.835484, -73.9494)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488784,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,11:55,MANHATTAN,10016,40.744816,-73.97998,"(40.744816, -73.97998)",,,160 EAST 32 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4488792,Station Wagon/Sport Utility Vehicle,Bike,,, +12/20/2021,2:51,BRONX,10469,40.85887,-73.835175,"(40.85887, -73.835175)",,,1751 ASTOR AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487954,Station Wagon/Sport Utility Vehicle,,,, +12/06/2021,9:00,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488905,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/20/2021,9:30,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4488368,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,19:00,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488393,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,22:30,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4488837,Sedan,Pick-up Truck,,, +12/20/2021,19:09,BROOKLYN,11223,40.600082,-73.96591,"(40.600082, -73.96591)",OCEAN PARKWAY,AVENUE T,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488279,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,15:08,BRONX,10468,40.859642,-73.899826,"(40.859642, -73.899826)",EAST 184 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488693,Taxi,Sedan,,, +12/20/2021,5:15,BRONX,10454,40.80623,-73.91206,"(40.80623, -73.91206)",EAST 140 STREET,JACKSON AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4488305,E-Bike,E-Bike,,, +12/20/2021,12:30,BROOKLYN,11214,40.60309,-73.99262,"(40.60309, -73.99262)",84 STREET,BAY PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488869,Sedan,Bike,,, +12/20/2021,18:40,,,,,,G.C.P / L.I.E. (CDR),,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4488383,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,14:45,,,40.63073,-74.01734,"(40.63073, -74.01734)",OVINGTON AVENUE,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,8:25,QUEENS,11367,40.719604,-73.81323,"(40.719604, -73.81323)",,,79-25 150 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488139,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,9:20,QUEENS,11369,40.760612,-73.872894,"(40.760612, -73.872894)",96 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488507,Sedan,,,, +12/06/2021,15:18,BRONX,10472,40.82929,-73.88029,"(40.82929, -73.88029)",,,1222 WHEELER AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4488707,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,17:05,BROOKLYN,11212,40.671684,-73.912224,"(40.671684, -73.912224)",CHESTER STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4488264,Sedan,Sedan,,, +12/20/2021,19:35,BROOKLYN,11216,40.68024,-73.946754,"(40.68024, -73.946754)",FULTON STREET,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488256,Bus,Sedan,,, +12/20/2021,8:10,BROOKLYN,11225,40.664265,-73.957375,"(40.664265, -73.957375)",,,1715 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,Unspecified,,,4488584,Sedan,Sedan,Sedan,, +11/30/2021,11:30,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488852,Sedan,,,, +12/20/2021,9:03,BRONX,10454,40.811623,-73.92398,"(40.811623, -73.92398)",,,310 ALEXANDER AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4488297,Sedan,Sedan,Sedan,, +12/20/2021,17:00,,,40.844975,-73.91877,"(40.844975, -73.91877)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Traffic Control Disregarded,,,,4488336,Sedan,Tractor Truck Diesel,,, +12/18/2021,6:45,BRONX,10472,40.829147,-73.8793,"(40.829147, -73.8793)",,,1210 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,11:30,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4488764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,16:25,MANHATTAN,10010,40.740185,-73.986374,"(40.740185, -73.986374)",PARK AVENUE SOUTH,EAST 23 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4488989,Sedan,Bus,,, +12/20/2021,9:33,BROOKLYN,11217,40.67911,-73.98128,"(40.67911, -73.98128)",,,348 DOUGLASS STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488356,Sedan,Bike,,, +12/20/2021,6:45,,,,,,MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Fell Asleep,Unspecified,Unspecified,,,4488288,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/17/2021,12:05,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4488952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,13:55,,,40.684,-73.95031,"(40.684, -73.95031)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488737,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,12:45,,,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4488752,Sedan,Van,,, +12/20/2021,17:19,MANHATTAN,10010,40.741356,-73.989136,"(40.741356, -73.989136)",EAST 23 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488773,,,,, +12/20/2021,11:15,QUEENS,11691,40.59332,-73.77272,"(40.59332, -73.77272)",BEACH 41 STREET,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4488313,Sedan,,,, +02/19/2022,6:15,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4504061,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,21:45,BROOKLYN,11228,40.62247,-74.0172,"(40.62247, -74.0172)",,,980 79 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4514364,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/28/2022,16:00,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",GRAND STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4514346,Station Wagon/Sport Utility Vehicle,Lift Boom,,, +03/20/2022,13:30,,,40.619007,-74.04096,"(40.619007, -74.04096)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4514721,Sedan,Sedan,Sedan,, +03/28/2022,15:45,MANHATTAN,10009,40.73378,-73.98065,"(40.73378, -73.98065)",1 AVENUE,EAST 18 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4514754,Sedan,E-Scooter,,, +03/28/2022,19:12,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514374,Sedan,Sedan,,, +03/28/2022,13:40,BROOKLYN,11209,40.618004,-74.02657,"(40.618004, -74.02657)",,,9013 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514265,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,8:40,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514223,Sedan,,,, +03/26/2022,23:43,,,40.75352,-73.93448,"(40.75352, -73.93448)",39 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,20:35,BRONX,10472,40.831043,-73.88071,"(40.831043, -73.88071)",WHEELER AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514479,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,10:29,STATEN ISLAND,10301,40.643925,-74.09839,"(40.643925, -74.09839)",CLINTON AVENUE,VANBUREN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514608,Sedan,,,, +03/28/2022,8:00,BROOKLYN,11201,40.68817,-73.98399,"(40.68817, -73.98399)",SCHERMERHORN STREET,BOND STREET,,1,0,1,0,0,0,0,0,,,,,,4514293,,,,, +03/28/2022,19:04,BRONX,10463,40.876877,-73.9034,"(40.876877, -73.9034)",BAILEY AVENUE,ALBANY CRESCENT,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4514534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,10:05,,,40.694214,-73.95932,"(40.694214, -73.95932)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,6:20,,,40.73738,-73.7235,"(40.73738, -73.7235)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514208,Sedan,Sedan,,, +03/28/2022,4:20,,,40.843002,-73.90359,"(40.843002, -73.90359)",,,WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4514116,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +03/28/2022,6:40,,,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514330,Station Wagon/Sport Utility Vehicle,Bus,,, +03/28/2022,19:30,,,40.61204,-73.97848,"(40.61204, -73.97848)",65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,17:00,QUEENS,11434,40.662724,-73.766594,"(40.662724, -73.766594)",,,179-14 146 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4514296,Sedan,,,, +03/26/2022,19:00,BROOKLYN,11217,40.68063,-73.976875,"(40.68063, -73.976875)",,,9 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514794,Sedan,,,, +03/20/2022,21:11,QUEENS,11103,,,,Steinway Street,28 Ave,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4514821,Station Wagon/Sport Utility Vehicle,Bike,,, +03/28/2022,15:28,,,40.823887,-73.95232,"(40.823887, -73.95232)",WEST 141 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514729,Sedan,Bus,,, +03/28/2022,15:30,QUEENS,11416,40.68357,-73.85522,"(40.68357, -73.85522)",,,85-01 97 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514339,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,18:35,,,40.830536,-73.91571,"(40.830536, -73.91571)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4514744,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/28/2022,12:53,BROOKLYN,11238,40.68414,-73.969055,"(40.68414, -73.969055)",,,810 FULTON STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4514257,Sedan,Bike,,, +03/28/2022,14:25,QUEENS,11364,40.753143,-73.75645,"(40.753143, -73.75645)",56 ROAD,223 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514518,Station Wagon/Sport Utility Vehicle,,,, +03/22/2022,21:50,,,,,,UNION TURNPIKE,141 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514880,Sedan,,,, +05/10/2021,8:00,BROOKLYN,11212,40.66478,-73.92559,"(40.66478, -73.92559)",,,36 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4415152,Sedan,Sedan,Sedan,, +03/28/2022,23:15,MANHATTAN,10037,40.811234,-73.934,"(40.811234, -73.934)",,,60 EAST 135 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4514453,3-Door,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +03/28/2022,4:35,QUEENS,11413,40.650307,-73.75696,"(40.650307, -73.75696)",,,230-59 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4514235,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:30,,,40.885086,-73.85194,"(40.885086, -73.85194)",EAST 225 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514287,Station Wagon/Sport Utility Vehicle,BACKHOE LO,,, +03/28/2022,13:00,BRONX,10460,40.832558,-73.88538,"(40.832558, -73.88538)",EAST 172 STREET,BOONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514656,Sedan,,,, +03/28/2022,14:00,QUEENS,11423,40.715534,-73.76331,"(40.715534, -73.76331)",197 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514593,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:58,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/20/2022,1:25,,,40.810997,-73.905846,"(40.810997, -73.905846)",EAST 147 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514737,Sedan,Sedan,,, +03/28/2022,23:15,MANHATTAN,10128,40.784245,-73.9471,"(40.784245, -73.9471)",2 AVENUE,EAST 96 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4514379,AMBULANCE,Sedan,Sedan,, +03/23/2022,15:30,BRONX,10458,40.85365,-73.882744,"(40.85365, -73.882744)",EAST 187 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514804,Sedan,,,, +03/28/2022,19:37,,,40.65344,-73.97748,"(40.65344, -73.97748)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514812,Sedan,Sedan,,, +03/28/2022,3:18,QUEENS,11373,40.74221,-73.88159,"(40.74221, -73.88159)",,,82-39 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514036,E-Bike,Pick-up Truck,,, +03/28/2022,9:30,QUEENS,11434,40.679653,-73.77724,"(40.679653, -73.77724)",BAISLEY BOULEVARD,166 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514408,Sedan,,,, +03/28/2022,11:45,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514430,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,14:20,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,16:57,BRONX,10459,40.820972,-73.892845,"(40.820972, -73.892845)",EAST 163 STREET,SIMPSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514687,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,19:15,BROOKLYN,11211,40.706318,-73.953476,"(40.706318, -73.953476)",,,302 HEWES STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514359,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,17:23,,,40.715168,-74.000534,"(40.715168, -74.000534)",HOGAN PLACE,BAXTER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514418,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,14:12,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514279,Sedan,Sedan,,, +03/28/2022,9:44,BROOKLYN,11222,40.7263,-73.94913,"(40.7263, -73.94913)",MC GUINNESS BOULEVARD,NORMAN AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4514165,Dump,Sedan,,, +03/28/2022,23:05,QUEENS,11369,40.760494,-73.87204,"(40.760494, -73.87204)",,,31-06 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4514508,Sedan,Sedan,Sedan,Sedan, +03/28/2022,9:07,BRONX,10461,40.855488,-73.830734,"(40.855488, -73.830734)",,,1870 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514708,Station Wagon/Sport Utility Vehicle,Bus,,, +03/28/2022,7:30,BROOKLYN,11226,40.638145,-73.95874,"(40.638145, -73.95874)",,,1001 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514318,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,6:47,BROOKLYN,11223,40.59609,-73.98129,"(40.59609, -73.98129)",AVENUE U,WEST 10 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514311,Sedan,Sedan,,, +03/28/2022,15:56,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514567,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,16:21,BROOKLYN,11211,40.707592,-73.95555,"(40.707592, -73.95555)",BROADWAY,KEAP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514351,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,11:05,MANHATTAN,10012,40.72521,-73.99586,"(40.72521, -73.99586)",EAST HOUSTON STREET,CROSBY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514384,Sedan,Sedan,,, +03/27/2022,1:15,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4514846,Sedan,Bus,Sedan,, +05/10/2021,18:40,,,,,,thomson avenue,ED KOCH BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415194,Sedan,Sedan,,, +03/26/2022,19:52,QUEENS,11432,40.7087,-73.79931,"(40.7087, -73.79931)",163 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514775,Sedan,Sedan,,, +03/28/2022,19:00,QUEENS,11434,40.68676,-73.78449,"(40.68676, -73.78449)",BREWER BOULEVARD,116 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514402,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,14:59,BROOKLYN,11217,40.688786,-73.97847,"(40.688786, -73.97847)",,,215 ASHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,9:10,,,40.825436,-73.91593,"(40.825436, -73.91593)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514748,Sedan,,,, +12/26/2021,13:49,MANHATTAN,10033,40.843147,-73.93455,"(40.843147, -73.93455)",,,2284 AMSTERDAM AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4514764,Bike,,,, +03/14/2022,10:03,,,40.833206,-73.82797,"(40.833206, -73.82797)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514788,Tractor Truck Diesel,,,, +03/28/2022,19:52,BROOKLYN,11229,40.59863,-73.95827,"(40.59863, -73.95827)",EAST 13 STREET,AVENUE U,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514366,Sedan,,,, +04/24/2022,21:50,BROOKLYN,11213,40.663548,-73.93319,"(40.663548, -73.93319)",,,877 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4522014,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,13:55,,,40.71039,-73.98662,"(40.71039, -73.98662)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522173,Sedan,Sedan,,, +04/24/2022,21:00,BRONX,10468,0,0,"(0.0, 0.0)",,,2280 ANDREWS AVENUE,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4521788,Sedan,Sedan,Sedan,Sedan, +04/24/2022,13:30,STATEN ISLAND,10307,40.50429,-74.24434,"(40.50429, -74.24434)",CHELSEA STREET,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521864,Station Wagon/Sport Utility Vehicle,Convertible,,, +04/22/2022,15:50,BROOKLYN,11212,40.664062,-73.90958,"(40.664062, -73.90958)",,,269 DUMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4522339,Sedan,,,, +04/08/2022,22:14,BRONX,10468,40.870422,-73.89958,"(40.870422, -73.89958)",,,2759 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4522224,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,6:10,,,0,0,"(0.0, 0.0)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4521912,Sedan,Sedan,,, +04/23/2022,2:36,,,40.904434,-73.87828,"(40.904434, -73.87828)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4522229,Sedan,Sedan,,, +04/24/2022,2:43,BROOKLYN,11233,0,0,"(0.0, 0.0)",BOYLAND STREET,CHAUNCEY STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4521382,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/22/2022,1:39,MANHATTAN,10031,0,0,"(0.0, 0.0)",WEST 145 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522307,Taxi,Bike,,, +04/11/2022,2:21,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4522249,Sedan,,,, +04/24/2022,10:45,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4521716,Sedan,Motorcycle,,, +04/23/2022,0:11,MANHATTAN,10013,40.722656,-74.003555,"(40.722656, -74.003555)",,,344 WEST BROADWAY,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4522118,Sedan,Bike,,, +04/24/2022,15:13,QUEENS,11373,40.73938,-73.86698,"(40.73938, -73.86698)",,,53-18 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521556,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,14:15,,,40.72651,-73.93055,"(40.72651, -73.93055)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4522059,Pick-up Truck,,,, +04/04/2022,15:00,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522284,Sedan,Sedan,,, +04/22/2022,8:00,,,40.69122,-73.93969,"(40.69122, -73.93969)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522188,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,7:00,BRONX,10460,40.84483,-73.880066,"(40.84483, -73.880066)",,,954 EAST 181 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521821,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,20:30,BRONX,10460,40.845573,-73.879585,"(40.845573, -73.879585)",,,950 BRONX PARK SOUTH,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4521852,Station Wagon/Sport Utility Vehicle,,,, +04/23/2022,0:45,,,40.69299,-73.95583,"(40.69299, -73.95583)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4522169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +04/24/2022,16:06,BRONX,10451,40.81767,-73.92381,"(40.81767, -73.92381)",,,243 EAST 149 STREET,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4521954,Bike,Bike,,, +12/21/2021,22:20,,,,,,SHEFFIELD AVENUE,pennsylvania avenue,,2,0,0,0,0,0,2,0,Unspecified,,,,,4488619,Sedan,,,, +09/23/2021,17:00,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460325,Sedan,Bus,,, +06/06/2022,15:28,QUEENS,11101,40.75303,-73.92163,"(40.75303, -73.92163)",42 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4534863,Sedan,E-Bike,,, +06/12/2022,18:07,BROOKLYN,11220,40.645245,-74.003006,"(40.645245, -74.003006)",45 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4537608,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,14:01,,,,,,,,101 EAST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4542318,Bike,,,, +06/26/2022,13:45,QUEENS,11436,40.681114,-73.79815,"(40.681114, -73.79815)",144 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543181,Bike,Sedan,,, +06/28/2022,9:10,BRONX,10457,40.84597,-73.896545,"(40.84597, -73.896545)",,,4183 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543172,Sedan,,,, +06/15/2022,22:16,,,,,,WEST 137 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4543190,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,17:20,BRONX,10457,40.853233,-73.89175,"(40.853233, -73.89175)",,,4487 3 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4543186,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,19:20,BROOKLYN,11208,40.682724,-73.88539,"(40.682724, -73.88539)",RIDGEWOOD AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4546092,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2022,18:30,BROOKLYN,11211,40.719147,-73.955376,"(40.719147, -73.955376)",,,169 NORTH 10 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4545732,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2022,7:50,BROOKLYN,11203,40.652916,-73.94498,"(40.652916, -73.94498)",LINDEN BOULEVARD,EAST 35 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4545929,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2022,20:05,BROOKLYN,11208,40.682037,-73.87788,"(40.682037, -73.87788)",FULTON STREET,LOGAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4546073,Sedan,Sedan,,, +07/04/2022,6:02,BRONX,10452,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,GOBLE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4546023,Sedan,Bike,,, +07/12/2022,11:10,QUEENS,11434,40.668026,-73.77343,"(40.668026, -73.77343)",NORTH CONDUIT AVENUE,LATHAM LANE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545630,Sedan,,,, +07/12/2022,8:57,MANHATTAN,10014,40.727947,-74.00315,"(40.727947, -74.00315)",,,227 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545565,Sedan,,,, +07/12/2022,16:13,BROOKLYN,11215,40.66495,-73.993355,"(40.66495, -73.993355)",4 AVENUE,17 STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Driver Inexperience,,,,4545764,Station Wagon/Sport Utility Vehicle,Bike,,, +07/12/2022,13:30,QUEENS,11417,40.67814,-73.84885,"(40.67814, -73.84885)",89 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545957,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,16:00,QUEENS,11417,40.675312,-73.840576,"(40.675312, -73.840576)",134 AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4545736,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2022,16:36,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4546206,Tow Truck / Wrecker,Sedan,,, +07/10/2022,12:15,,,40.73351,-73.75989,"(40.73351, -73.75989)",UNION TURNPIKE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4546230,Sedan,,,, +07/10/2022,9:00,,,40.683567,-73.94106,"(40.683567, -73.94106)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4546139,Sedan,,,, +07/12/2022,13:16,MANHATTAN,10029,40.791138,-73.93898,"(40.791138, -73.93898)",,,2109 1 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545784,Dump,Box Truck,,, +06/25/2022,18:00,QUEENS,11691,40.59833,-73.776024,"(40.59833, -73.776024)",,,494 BEACH 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4546151,Taxi,,,, +07/12/2022,8:30,QUEENS,11378,40.72469,-73.89763,"(40.72469, -73.89763)",,,66-50 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4546043,Sedan,E-Scooter,,, +07/12/2022,20:42,,,40.66748,-73.92188,"(40.66748, -73.92188)",UNION STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545680,Sedan,,,, +05/11/2021,8:00,BRONX,10468,40.867554,-73.901634,"(40.867554, -73.901634)",,,2636 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4415429,Bus,,,, +03/29/2022,16:00,QUEENS,11101,,,,37 ROAD,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514601,Sedan,,,, +06/27/2022,13:00,,,40.69447,-73.95709,"(40.69447, -73.95709)",SKILLMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542836,Sedan,Sedan,,, +06/30/2022,2:28,,,40.79976,-73.96622,"(40.79976, -73.96622)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4541988,Bike,E-Bike,,, +06/23/2022,10:00,,,40.77719,-73.95225,"(40.77719, -73.95225)",EAST 85 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,5:50,BROOKLYN,11225,40.656708,-73.95313,"(40.656708, -73.95313)",,,610 ROGERS AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4542810,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/20/2022,1:15,BROOKLYN,11232,40.65443,-74.00912,"(40.65443, -74.00912)",,,262 39 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4542484,Sedan,Sedan,,, +06/29/2022,13:26,BRONX,10456,40.83872,-73.91378,"(40.83872, -73.91378)",GRAND CONCOURSE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542130,Sedan,Bus,,, +06/29/2022,20:30,MANHATTAN,10009,,,,,,282 1 AVENUE,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4543017,E-Scooter,Sedan,,, +06/29/2022,18:08,MANHATTAN,10112,40.758736,-73.97961,"(40.758736, -73.97961)",,,49 WEST 49 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4542053,Sedan,E-Bike,,, +06/30/2022,17:03,BRONX,10472,40.83082,-73.87001,"(40.83082, -73.87001)",WESTCHESTER AVENUE,NOBLE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4542598,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/30/2022,13:50,MANHATTAN,10013,40.723248,-74.00497,"(40.723248, -74.00497)",,,101 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,15:00,QUEENS,11101,40.737633,-73.937996,"(40.737633, -73.937996)",,,30-28 STARR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542452,Sedan,Box Truck,,, +06/30/2022,14:40,BROOKLYN,11226,40.655872,-73.9564,"(40.655872, -73.9564)",BEDFORD AVENUE,PARKSIDE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542809,Bike,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,18:00,BRONX,10454,40.804256,-73.9193,"(40.804256, -73.9193)",SAINT ANNS AVENUE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542362,Station Wagon/Sport Utility Vehicle,,,, +06/25/2022,23:30,QUEENS,11385,40.703537,-73.90339,"(40.703537, -73.90339)",WOODWARD AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542642,Sedan,Sedan,,, +07/01/2022,0:19,,,40.85162,-73.8265,"(40.85162, -73.8265)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4542587,Sedan,,,, +06/30/2022,18:39,,,40.76739,-73.97073,"(40.76739, -73.97073)",5 AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4542346,Bike,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,0:00,MANHATTAN,10037,40.81404,-73.9367,"(40.81404, -73.9367)",WEST 137 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4541642,Sedan,Ambulance,,, +06/24/2022,6:30,,,40.606102,-74.07983,"(40.606102, -74.07983)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543042,Sedan,Dump,,, +07/01/2022,23:15,QUEENS,11693,40.597183,-73.82094,"(40.597183, -73.82094)",,,20-50 CROSS BAY BOULEVARD,2,0,0,0,0,0,2,0,Fell Asleep,,,,,4542691,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,22:40,QUEENS,11368,,,,ROOSEVELT AVENUE,Seaver Way,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4542864,Sedan,,,, +06/30/2022,1:54,,,40.859352,-73.872345,"(40.859352, -73.872345)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542020,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,19:23,BRONX,10472,40.82843,-73.88105,"(40.82843, -73.88105)",EVERGREEN AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4542600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/15/2022,21:09,MANHATTAN,10030,40.821476,-73.942894,"(40.821476, -73.942894)",,,2680 8 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542471,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,18:30,,,40.69614,-73.9734,"(40.69614, -73.9734)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542220,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,15:40,QUEENS,11102,40.77204,-73.93224,"(40.77204, -73.93224)",MAIN AVENUE,30 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542648,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,18:13,,,40.77428,-73.957306,"(40.77428, -73.957306)",3 AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514666,Sedan,Bike,,, +06/23/2022,14:50,,,40.584324,-73.91604,"(40.584324, -73.91604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,10:18,BROOKLYN,11222,40.734882,-73.95791,"(40.734882, -73.95791)",,,68 EAGLE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543023,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,16:15,,,40.710983,-74.00052,"(40.710983, -74.00052)",PEARL STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4542073,Sedan,Sedan,,, +06/30/2022,5:24,BROOKLYN,11213,40.667316,-73.93683,"(40.667316, -73.93683)",TROY AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,19:50,STATEN ISLAND,10305,40.593918,-74.07091,"(40.593918, -74.07091)",,,27 CAMBRIA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542964,Sedan,,,, +06/30/2022,7:45,QUEENS,11385,40.706753,-73.91437,"(40.706753, -73.91437)",SENECA AVENUE,STANHOPE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542304,Hopper,Sedan,,, +06/26/2022,17:52,,,40.829956,-73.93009,"(40.829956, -73.93009)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542395,Sedan,Sedan,,, +06/28/2022,20:30,QUEENS,11105,40.771343,-73.905235,"(40.771343, -73.905235)",,,22-18 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542427,Sedan,UNKN,,, +06/30/2022,19:30,BROOKLYN,11233,40.68197,-73.92887,"(40.68197, -73.92887)",DECATUR STREET,REID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,1:10,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4541663,Sedan,Sedan,,, +07/01/2022,17:00,BROOKLYN,11203,40.638588,-73.92899,"(40.638588, -73.92899)",,,1392 UTICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4542568,Sedan,,,, +06/29/2022,7:38,QUEENS,11104,40.73974,-73.92319,"(40.73974, -73.92319)",42 STREET,48 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542093,Pick-up Truck,Sedan,Sedan,, +06/29/2022,10:00,BROOKLYN,11219,40.637894,-73.99838,"(40.637894, -73.99838)",FORT HAMILTON PARKWAY,50 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542360,MOPAD,Sedan,,, +07/01/2022,8:45,BROOKLYN,11209,40.617897,-74.02931,"(40.617897, -74.02931)",92 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542498,Sedan,,,, +06/21/2022,16:15,,,40.845837,-73.8255,"(40.845837, -73.8255)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542559,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,15:00,,,40.69757,-73.87144,"(40.69757, -73.87144)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542635,Station Wagon/Sport Utility Vehicle,,,, +06/25/2022,6:30,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",6 AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4542790,Sedan,Carry All,,, +06/30/2022,22:00,QUEENS,11418,40.700462,-73.83593,"(40.700462, -73.83593)",114 STREET,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4542388,Sedan,E-Bike,,, +07/01/2022,23:30,,,40.638744,-74.13535,"(40.638744, -74.13535)",,,71 FABER STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542886,Sedan,,,, +06/30/2022,8:10,QUEENS,11377,40.75221,-73.90443,"(40.75221, -73.90443)",BROADWAY,57 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542284,E-Bike,Box Truck,,, +06/27/2022,16:45,BROOKLYN,11233,40.678574,-73.916306,"(40.678574, -73.916306)",FULTON STREET,SARATOGA AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542765,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,0:30,MANHATTAN,10035,40.80142,-73.93446,"(40.80142, -73.93446)",EAST 123 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4541752,Taxi,,,, +06/30/2022,9:44,,,40.894054,-73.86248,"(40.894054, -73.86248)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542504,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,10:00,,,40.709064,-73.924194,"(40.709064, -73.924194)",JOHNSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542503,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/29/2022,17:15,QUEENS,11434,40.666397,-73.785,"(40.666397, -73.785)",153 LANE,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4541970,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/01/2022,21:30,,,40.64519,-73.948,"(40.64519, -73.948)",BEVERLEY ROAD,,,1,0,0,0,0,0,1,0,Following Too Closely,Turning Improperly,,,,4542659,Garbage or Refuse,Sedan,,, +09/18/2021,20:25,,,,,,EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460443,Sedan,Ambulance,,, +06/29/2022,16:30,BROOKLYN,11219,40.62336,-74.00336,"(40.62336, -74.00336)",,,1314 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542137,Sedan,,,, +06/29/2022,4:20,,,40.69255,-73.879875,"(40.69255, -73.879875)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542624,Sedan,,,, +07/01/2022,12:55,BROOKLYN,11201,40.696114,-73.98652,"(40.696114, -73.98652)",,,85 TILLARY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543074,Sedan,,,, +07/01/2022,23:16,MANHATTAN,10032,40.836555,-73.94306,"(40.836555, -73.94306)",BROADWAY,WEST 161 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4542944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,15:00,,,40.84474,-73.922585,"(40.84474, -73.922585)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542591,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/27/2022,6:40,MANHATTAN,10032,40.83806,-73.94665,"(40.83806, -73.94665)",RIVERSIDE DRIVE,WEST 161 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4543105,Sedan,Sedan,,, +07/01/2022,12:15,BRONX,10470,40.89845,-73.85431,"(40.89845, -73.85431)",NEREID AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542913,Sedan,Sedan,,, +07/01/2022,19:53,BROOKLYN,11230,40.631493,-73.971855,"(40.631493, -73.971855)",OCEAN PARKWAY,NEWKIRK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4542988,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/23/2022,13:16,,,40.726933,-73.99992,"(40.726933, -73.99992)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542459,Pick-up Truck,Taxi,,, +06/30/2022,8:25,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,31 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542665,Sedan,Sedan,,, +06/30/2022,8:00,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4542183,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2022,1:30,BRONX,10451,40.828594,-73.92173,"(40.828594, -73.92173)",GRAND CONCOURSE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4542869,Sedan,Sedan,,, +06/30/2022,13:00,BROOKLYN,11230,40.619396,-73.969574,"(40.619396, -73.969574)",AVENUE L,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543142,Sedan,E-Scooter,,, +06/30/2022,0:15,BROOKLYN,11212,40.662468,-73.9245,"(40.662468, -73.9245)",,,135 EAST 95 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4542228,Ambulance,Sedan,,, +06/30/2022,17:05,BROOKLYN,11235,40.58395,-73.93743,"(40.58395, -73.93743)",,,3035 EMMONS AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542523,Sedan,,,, +06/29/2022,22:15,,,40.702496,-73.81303,"(40.702496, -73.81303)",JAMAICA AVENUE,139 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542257,Sedan,,,, +06/29/2022,14:03,QUEENS,11426,40.72621,-73.717705,"(40.72621, -73.717705)",,,248-15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4541928,Carry All,Sedan,,, +06/25/2022,15:39,BROOKLYN,11213,40.66916,-73.93796,"(40.66916, -73.93796)",,,918 EASTERN PARKWAY,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4543047,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/30/2022,21:20,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542934,Sedan,Sedan,,, +06/25/2022,20:21,BROOKLYN,11203,40.64916,-73.94552,"(40.64916, -73.94552)",EAST 34 STREET,SNYDER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4542536,Sedan,Sedan,,, +06/29/2022,0:20,MANHATTAN,10013,40.721027,-74.00489,"(40.721027, -74.00489)",,,283 WEST BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4541831,Sedan,Box Truck,,, +06/30/2022,15:08,,,40.689217,-73.917656,"(40.689217, -73.917656)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542407,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,8:04,QUEENS,11367,40.72496,-73.82756,"(40.72496, -73.82756)",72 AVENUE,PARK DRIVE EAST,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542420,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,19:30,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4542439,Sedan,Sedan,,, +06/27/2022,1:40,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4542712,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/01/2022,17:11,,,40.765625,-73.7244,"(40.765625, -73.7244)",LITTLE NECK PARKWAY,NASSAU BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542555,Sedan,Sedan,,, +06/29/2022,17:00,BROOKLYN,11204,40.61226,-73.98152,"(40.61226, -73.98152)",,,1378 WEST 7 STREET,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4541923,E-Scooter,,,, +06/29/2022,0:16,MANHATTAN,10005,40.708797,-74.01086,"(40.708797, -74.01086)",BROADWAY,CEDAR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4541834,Taxi,,,, +06/27/2022,0:00,QUEENS,11368,40.74373,-73.85629,"(40.74373, -73.85629)",,,106-04 CORONA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542842,Sedan,Sedan,,, +06/30/2022,17:01,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542376,Sedan,Bus,,, +06/20/2022,8:12,BRONX,10474,40.808716,-73.88497,"(40.808716, -73.88497)",EAST BAY AVENUE,FAILE STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4542508,Sedan,Carry All,,, +06/29/2022,22:30,MANHATTAN,10017,40.751633,-73.972466,"(40.751633, -73.972466)",,,245 EAST 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4541956,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,10:20,,,40.67004,-73.93658,"(40.67004, -73.93658)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542957,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,9:50,BROOKLYN,11222,40.73222,-73.95459,"(40.73222, -73.95459)",,,970 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541769,Box Truck,Sedan,,, +06/18/2022,22:30,,,,,,WEST GUN HILL ROAD,MOSHOLU PARKWAY EXTENSION,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4542717,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,15:15,,,40.70644,-73.75973,"(40.70644, -73.75973)",HOLLIS AVENUE,198 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4542256,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2022,13:00,,,40.675053,-73.947235,"(40.675053, -73.947235)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542951,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2022,9:45,MANHATTAN,10035,40.80478,-73.936325,"(40.80478, -73.936325)",,,158 EAST 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543051,Station Wagon/Sport Utility Vehicle,,,, +06/24/2022,10:00,BROOKLYN,11232,40.661568,-73.9953,"(40.661568, -73.9953)",,,197 22 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542491,Bus,Sedan,,, +06/30/2022,8:50,,,40.7699,-73.91608,"(40.7699, -73.91608)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4542628,Taxi,Sedan,,, +06/30/2022,0:17,BROOKLYN,11207,40.669792,-73.8924,"(40.669792, -73.8924)",WYONA STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4542062,Taxi,,,, +07/01/2022,10:30,BRONX,10463,40.87847,-73.90363,"(40.87847, -73.90363)",WEST 231 STREET,ALBANY CRESCENT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542736,Sedan,,,, +06/29/2022,15:04,BROOKLYN,11233,40.674095,-73.911156,"(40.674095, -73.911156)",,,266 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542795,Sedan,,,, +06/29/2022,18:30,BRONX,10466,40.886295,-73.847916,"(40.886295, -73.847916)",EAST 228 STREET,LACONIA AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4542918,Bike,,,, +07/01/2022,22:30,BROOKLYN,11201,40.69985,-73.991035,"(40.69985, -73.991035)",MIDDAGH STREET,CADMAN PLAZA WEST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543000,Sedan,Motorcycle,,, +07/01/2022,2:59,,,40.830555,-73.832664,"(40.830555, -73.832664)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543082,Sedan,Tractor Truck Diesel,,, +06/30/2022,7:26,MANHATTAN,10007,40.71394,-74.01233,"(40.71394, -74.01233)",WASHINGTON STREET,BARCLAY STREET,,0,0,0,0,0,0,0,0,Glare,,,,,4542099,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,11:10,QUEENS,11418,40.703224,-73.82055,"(40.703224, -73.82055)",132 STREET,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542463,Sedan,Bike,,, +06/30/2022,9:44,QUEENS,11385,40.709393,-73.91406,"(40.709393, -73.91406)",,,1893 DE KALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542476,Sedan,,,, +06/30/2022,0:00,BRONX,10466,40.892452,-73.8435,"(40.892452, -73.8435)",,,4079 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,15:20,BROOKLYN,11226,40.651405,-73.95504,"(40.651405, -73.95504)",,,108 MARTENSE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542671,Sedan,Sedan,,, +07/01/2022,10:17,BROOKLYN,11215,40.6634,-73.97785,"(40.6634, -73.97785)",PROSPECT PARK WEST,11 STREET,,2,0,1,0,0,0,1,0,Driver Inexperience,,,,,4542579,Motorscooter,,,, +06/30/2022,9:00,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542187,Taxi,,,, +06/29/2022,22:43,,,40.66768,-73.961815,"(40.66768, -73.961815)",WASHINGTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543110,Station Wagon/Sport Utility Vehicle,Moped,,, +06/30/2022,11:45,BROOKLYN,11220,40.641987,-74.01724,"(40.641987, -74.01724)",58 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4542695,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2022,9:20,MANHATTAN,10027,40.81795,-73.95664,"(40.81795, -73.95664)",,,3270 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542827,Sedan,,,, +09/23/2021,22:30,,,,,,EAST TREMONT AVENUE,WESTCHESTER SQUARE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460502,Sedan,,,, +12/20/2021,12:50,,,40.58571,-73.91276,"(40.58571, -73.91276)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489281,Sedan,Sedan,,, +12/17/2021,12:30,QUEENS,11434,40.683483,-73.773506,"(40.683483, -73.773506)",120 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489277,Sedan,,,, +11/27/2021,2:29,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,,,4489290,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/17/2021,7:30,BROOKLYN,11217,40.679733,-73.97432,"(40.679733, -73.97432)",FLATBUSH AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489274,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,16:25,BROOKLYN,11222,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,APOLLO STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4489251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,19:53,BRONX,10468,0,0,"(0.0, 0.0)",GRAND CONCOURSE,EAST 188 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489286,Bike,,,, +12/21/2021,0:00,,,40.834133,-73.91665,"(40.834133, -73.91665)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489260,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,10:00,BROOKLYN,11211,40.714687,-73.94271,"(40.714687, -73.94271)",METROPOLITAN AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489267,Concrete Mixer,Sedan,,, +12/19/2021,21:47,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",UTICA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489285,Sedan,Sedan,,, +01/07/2022,15:00,QUEENS,11356,40.791653,-73.84546,"(40.791653, -73.84546)",COLLEGE POINT BOULEVARD,6 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494821,Sedan,,,, +02/17/2022,23:43,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504573,Sedan,Tractor Truck Diesel,,, +02/19/2022,8:00,QUEENS,11385,40.71282,-73.90378,"(40.71282, -73.90378)",60 PLACE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4504161,Sedan,Motorscooter,,, +02/19/2022,21:10,,,40.71709,-73.82631,"(40.71709, -73.82631)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504599,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,0:55,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",EAST 140 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4504450,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,18:00,BROOKLYN,11215,40.66696,-73.97822,"(40.66696, -73.97822)",8 AVENUE,7 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4503989,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,11:49,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504483,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,6:00,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4478429,Bus,,,, +06/29/2022,2:20,QUEENS,11412,40.70568,-73.77114,"(40.70568, -73.77114)",104 AVENUE,186 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542268,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2022,10:25,QUEENS,11357,40.77048,-73.83565,"(40.77048, -73.83565)",,,30-50 WHITESTONE EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4541821,Sedan,,,, +05/12/2021,1:00,,,40.81899,-73.89185,"(40.81899, -73.89185)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4415659,Sedan,,,, +06/27/2022,17:45,BRONX,10473,,,,,,338 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542540,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,23:30,BROOKLYN,11201,40.6867,-73.9982,"(40.6867, -73.9982)",KANE STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460518,Sedan,,,, +06/29/2022,14:20,,,40.770245,-73.815735,"(40.770245, -73.815735)",32 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4541946,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,3:37,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4542031,Sedan,,,, +03/10/2022,22:44,QUEENS,11423,40.708927,-73.77733,"(40.708927, -73.77733)",183 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4542779,Sedan,,,, +06/26/2022,17:53,,,40.87514,-73.90499,"(40.87514, -73.90499)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542403,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,13:00,,,,,,,,14 woodward avenue,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543033,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,22:00,BRONX,10463,40.888416,-73.909,"(40.888416, -73.909)",,,529 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515014,Sedan,,,, +12/21/2021,9:05,,,40.6742,-73.999985,"(40.6742, -73.999985)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488608,Sedan,Sedan,,, +12/21/2021,3:20,BRONX,10460,40.840866,-73.87281,"(40.840866, -73.87281)",MORRIS PARK AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488728,Van,Sedan,,, +12/21/2021,19:42,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",57 AVENUE,JUNCTION BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488661,Sedan,,,, +12/16/2021,19:20,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489187,Sedan,Sedan,,, +12/21/2021,6:40,BROOKLYN,11219,40.630924,-74.00356,"(40.630924, -74.00356)",61 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489116,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,0:20,QUEENS,11422,40.654297,-73.72629,"(40.654297, -73.72629)",,,147-37 HOOK CREEK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488261,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/21/2021,14:45,BROOKLYN,11229,40.60786,-73.9552,"(40.60786, -73.9552)",,,1721 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488637,Sedan,Sedan,,, +12/21/2021,15:23,BRONX,10469,40.875256,-73.84342,"(40.875256, -73.84342)",GIVAN AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4488862,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,17:10,QUEENS,11420,40.68259,-73.80614,"(40.68259, -73.80614)",,,114-02 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488680,Sedan,,,, +12/21/2021,6:22,MANHATTAN,10027,40.80641,-73.9502,"(40.80641, -73.9502)",7 AVENUE,WEST 121 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489073,Bus,Sedan,,, +12/21/2021,3:15,,,40.846443,-73.826004,"(40.846443, -73.826004)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4488358,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,15:30,STATEN ISLAND,10306,40.562134,-74.11819,"(40.562134, -74.11819)",HYLAN BOULEVARD,OAK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488687,Bus,Pick-up Truck,,, +12/16/2021,5:24,STATEN ISLAND,10301,40.634663,-74.10253,"(40.634663, -74.10253)",CASTLETON AVENUE,CONYINGHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489173,Sedan,Sedan,Sedan,, +12/19/2021,4:45,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,101 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489235,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,10:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489048,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,8:00,QUEENS,11373,40.74096,-73.88145,"(40.74096, -73.88145)",WHITNEY AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488380,Sedan,,,, +12/21/2021,11:49,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,18 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4488565,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/21/2021,15:15,QUEENS,11385,40.702396,-73.88593,"(40.702396, -73.88593)",,,71-54 67 PLACE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4488742,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,14:00,,,40.581055,-74.153366,"(40.581055, -74.153366)",RICHMOND HILL ROAD,GOLF VIEW COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488790,Sedan,Sedan,,, +12/21/2021,13:43,BROOKLYN,11203,40.65064,-73.94475,"(40.65064, -73.94475)",,,184 EAST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488877,Sedan,Sedan,,, +12/21/2021,18:00,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488985,Taxi,,,, +12/21/2021,19:00,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4488538,Sedan,Sedan,Sedan,Sedan, +12/21/2021,10:15,,,40.707966,-74.013596,"(40.707966, -74.013596)",GREENWICH STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488498,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,14:16,QUEENS,11436,40.6731,-73.79572,"(40.6731, -73.79572)",143 STREET,BASCOM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488532,Sedan,,,, +12/21/2021,13:46,MANHATTAN,10019,40.76023,-73.979256,"(40.76023, -73.979256)",,,75 WEST 51 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4488501,Bike,,,, +12/14/2021,12:00,BROOKLYN,11222,40.726112,-73.95415,"(40.726112, -73.95415)",,,160 GUERNSEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489216,Sedan,,,, +12/21/2021,9:10,BROOKLYN,11214,40.59039,-73.99155,"(40.59039, -73.99155)",26 AVENUE,CROPSEY AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4488560,Sedan,,,, +12/21/2021,13:20,,,,,,18 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488452,Sedan,Box Truck,,, +05/11/2021,13:45,,,,,,,,102 WEST DRIVE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4415677,Bike,Bike,,, +12/21/2021,7:10,,,40.66901,-73.99678,"(40.66901, -73.99678)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488979,Sedan,Tractor Truck Diesel,,, +12/21/2021,13:55,QUEENS,11417,40.680923,-73.83544,"(40.680923, -73.83544)",105 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4488672,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/21/2021,5:06,,,40.669544,-73.917145,"(40.669544, -73.917145)",SARATOGA AVENUE,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4488697,Taxi,,,, +12/17/2021,9:14,QUEENS,11434,,,,augusta ct,linden blvd,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489030,Box Truck,Sedan,,, +12/21/2021,6:02,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488814,Tractor Truck Diesel,Sedan,,, +12/19/2021,1:33,QUEENS,11103,40.76869,-73.91107,"(40.76869, -73.91107)",,,24-09 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489002,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,14:00,,,40.739574,-73.79167,"(40.739574, -73.79167)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488483,Sedan,,,, +12/21/2021,12:00,BROOKLYN,11207,40.67385,-73.90024,"(40.67385, -73.90024)",LIBERTY AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488550,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,10:00,BRONX,10454,40.81157,-73.914215,"(40.81157, -73.914215)",,,545 EAST 145 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488646,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,7:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488781,Sedan,Sedan,Sedan,, +12/16/2021,11:30,BROOKLYN,11212,,,,SUTTER AVENUE,TAPSCOTT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489094,Sedan,Sedan,Sedan,Sedan, +12/21/2021,7:35,,,40.781715,-73.823845,"(40.781715, -73.823845)",144 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488566,Sedan,,,, +12/20/2021,6:13,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489221,Sedan,,,, +12/21/2021,0:00,,,40.87772,-73.84179,"(40.87772, -73.84179)",TILLOTSON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488517,Sedan,Taxi,,, +12/17/2021,4:08,BROOKLYN,11228,40.60534,-74.01584,"(40.60534, -74.01584)",,,8908 15 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489070,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,15:27,BROOKLYN,11213,40.663555,-73.93162,"(40.663555, -73.93162)",EMPIRE BOULEVARD,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,20:30,BROOKLYN,11233,40.68442,-73.927155,"(40.68442, -73.927155)",,,635 HALSEY STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4488906,Sedan,Bus,,, +12/16/2021,14:32,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489059,Sedan,Sedan,,, +12/02/2021,22:24,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",BRONX RIVER PARKWAY,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489204,Taxi,,,, +12/21/2021,17:57,QUEENS,11420,40.67478,-73.806206,"(40.67478, -73.806206)",ROCKAWAY BOULEVARD,132 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inexperience,,,,4488667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,15:00,STATEN ISLAND,10301,40.641006,-74.08308,"(40.641006, -74.08308)",,,243 WESTERVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489130,Sedan,,,, +12/21/2021,8:26,BRONX,10453,40.850483,-73.922134,"(40.850483, -73.922134)",SEDGWICK AVENUE,WEST 176 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,8:45,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488629,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,0:32,MANHATTAN,10026,40.79896,-73.95191,"(40.79896, -73.95191)",,,20 LENOX AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4488754,Sedan,Sedan,Sedan,, +09/08/2022,8:45,,,40.735603,-73.77516,"(40.735603, -73.77516)",73 AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4562266,Bike,,,, +12/21/2021,13:30,BROOKLYN,11225,40.666733,-73.95079,"(40.666733, -73.95079)",,,877 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,1:00,QUEENS,11434,40.66362,-73.777176,"(40.66362, -73.777176)",ROCKAWAY BOULEVARD,144 TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489082,Sedan,,,, +12/21/2021,18:01,,,40.648243,-73.929,"(40.648243, -73.929)",TILDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,22:28,,,40.862442,-73.89715,"(40.862442, -73.89715)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542535,Sedan,Sedan,,, +09/23/2021,0:09,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460593,Stake or Rack,Box Truck,,, +12/21/2021,19:45,BRONX,10474,40.80801,-73.88961,"(40.80801, -73.88961)",TIFFANY STREET,EAST BAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488639,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,13:20,,,,,,49 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488719,Sedan,,,, +12/21/2021,12:30,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",118 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488681,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,10:15,BRONX,10466,40.893097,-73.85644,"(40.893097, -73.85644)",,,724 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489153,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,3:20,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4488322,Tow Truck / Wrecker,Sedan,,, +12/20/2021,15:00,,,,,,EAST 162 STREET,ELTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489228,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,19:35,BROOKLYN,11237,40.70297,-73.91822,"(40.70297, -73.91822)",,,325 STANHOPE STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4488613,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,6:45,BRONX,10461,40.83917,-73.83629,"(40.83917, -73.83629)",DUDLEY AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489053,Bus,,,, +12/21/2021,22:33,BROOKLYN,11218,40.63955,-73.974785,"(40.63955, -73.974785)",,,521 EAST 5 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,4489113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck +12/21/2021,0:49,MANHATTAN,10036,,,,42nd Street,6 avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488361,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,17:30,QUEENS,11433,40.704853,-73.791664,"(40.704853, -73.791664)",168 STREET,93 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489181,Sedan,,,, +12/21/2021,14:14,MANHATTAN,10002,40.71983,-73.98755,"(40.71983, -73.98755)",ESSEX STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488582,Sedan,Bike,,, +12/21/2021,19:35,QUEENS,11420,40.678257,-73.81522,"(40.678257, -73.81522)",124 STREET,115 AVENUE,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4488682,Box Truck,E-Bike,,, +12/14/2021,17:30,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489238,Carry All,Sedan,,, +12/21/2021,8:09,BROOKLYN,11237,40.705658,-73.93171,"(40.705658, -73.93171)",MORGAN AVENUE,GRATTAN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488630,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,12:50,,,40.716034,-73.80663,"(40.716034, -73.80663)",GRAND CENTRAL PARKWAY,159 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489046,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,6:00,QUEENS,11693,40.587692,-73.815346,"(40.587692, -73.815346)",,,303 BEACH 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489078,Pick-up Truck,,,, +12/21/2021,12:00,QUEENS,11373,40.740532,-73.87635,"(40.740532, -73.87635)",CORONA AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,11:45,BROOKLYN,11249,40.71727,-73.96286,"(40.71727, -73.96286)",WYTHE AVENUE,NORTH 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489220,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,18:02,QUEENS,11692,40.589108,-73.80101,"(40.589108, -73.80101)",BEACH 73 STREET,ROCKAWAY BEACH BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4488516,Sedan,,,, +12/21/2021,15:30,QUEENS,11364,40.73613,-73.755554,"(40.73613, -73.755554)",KINGSBURY AVENUE,STEWART ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488534,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,17:00,QUEENS,11691,40.603836,-73.76337,"(40.603836, -73.76337)",,,10-43 BAY 25 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4488822,Station Wagon/Sport Utility Vehicle,Ltrl,,, +12/21/2021,13:00,BROOKLYN,11231,40.687195,-74.00165,"(40.687195, -74.00165)",,,129 COLUMBIA STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488609,Station Wagon/Sport Utility Vehicle,Bike,,, +12/18/2021,23:59,,,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489014,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,16:00,QUEENS,11377,40.73688,-73.90564,"(40.73688, -73.90564)",,,50-16 59 PLACE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4488484,Box Truck,,,, +12/21/2021,21:00,,,40.71161,-73.95754,"(40.71161, -73.95754)",HAVEMEYER STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4488724,Sedan,Motorscooter,Station Wagon/Sport Utility Vehicle,, +12/21/2021,10:00,BROOKLYN,11204,40.615147,-73.98973,"(40.615147, -73.98973)",,,1925 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4488843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,12:10,,,40.7488,-73.96986,"(40.7488, -73.96986)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,7:50,BRONX,10451,40.81761,-73.920746,"(40.81761, -73.920746)",,,311 EAST 150 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4488644,Sedan,Sedan,,, +12/14/2021,11:25,MANHATTAN,10128,40.78389,-73.950294,"(40.78389, -73.950294)",EAST 94 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489098,Sedan,Bus,,, +12/21/2021,19:30,,,,,,LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489202,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/07/2021,16:47,MANHATTAN,10014,40.733807,-74.008514,"(40.733807, -74.008514)",,,677 WASHINGTON STREET,1,0,0,0,1,0,0,0,Lost Consciousness,Passing or Lane Usage Improper,,,,4489033,E-Bike,Sedan,,, +12/21/2021,15:45,,,40.608562,-74.1472,"(40.608562, -74.1472)",NORTH GANNON AVENUE,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488604,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,18:00,,,40.69764,-73.92932,"(40.69764, -73.92932)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4488654,Pick-up Truck,,,, +12/21/2021,17:32,BROOKLYN,11234,40.628002,-73.918175,"(40.628002, -73.918175)",RALPH AVENUE,EAST 72 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489089,Ambulance,Sedan,,, +12/21/2021,10:39,BRONX,10452,40.843037,-73.92167,"(40.843037, -73.92167)",,,1437 NELSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488810,Sedan,Sedan,,, +12/21/2021,9:00,,,40.748203,-73.84962,"(40.748203, -73.84962)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4488379,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,18:00,,,40.765224,-73.9317,"(40.765224, -73.9317)",21 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489001,Sedan,,,, +12/21/2021,6:51,,,40.583656,-73.98656,"(40.583656, -73.98656)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488561,Bus,Bus,,, +12/21/2021,14:00,BRONX,10466,40.88903,-73.86168,"(40.88903, -73.86168)",,,663 EAST 226 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488859,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,8:57,BROOKLYN,11210,40.619713,-73.94453,"(40.619713, -73.94453)",AVENUE M,EAST 31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488738,Sedan,Sedan,,, +12/21/2021,17:45,QUEENS,11368,40.74869,-73.85772,"(40.74869, -73.85772)",43 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488670,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,23:14,,,40.783386,-73.77232,"(40.783386, -73.77232)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,,,,,,4489212,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,14:30,BROOKLYN,11212,40.656544,-73.90546,"(40.656544, -73.90546)",OSBORN STREET,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488696,Sedan,,,, +12/16/2021,21:00,,,40.83711,-73.913734,"(40.83711, -73.913734)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4489090,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,16:01,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488617,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,7:00,,,40.65141,-73.913414,"(40.65141, -73.913414)",AVENUE B,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4489016,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,13:00,MANHATTAN,10033,40.852894,-73.93273,"(40.852894, -73.93273)",WADSWORTH AVENUE,WEST 186 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489064,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,0:00,BROOKLYN,11207,40.68746,-73.906494,"(40.68746, -73.906494)",MOFFAT STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4488652,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/21/2021,7:00,BRONX,10470,40.905113,-73.85253,"(40.905113, -73.85253)",,,4721 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488873,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,8:30,BRONX,10468,40.875587,-73.89408,"(40.875587, -73.89408)",GOULDEN AVENUE,WEST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4488451,Sedan,Sedan,,, +12/21/2021,19:05,BRONX,10457,40.848007,-73.88858,"(40.848007, -73.88858)",,,705 EAST 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488706,Sedan,E-Scooter,,, +12/21/2021,18:29,QUEENS,11385,40.713333,-73.91305,"(40.713333, -73.91305)",GRANDVIEW AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488537,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,8:00,BROOKLYN,11212,40.668095,-73.90371,"(40.668095, -73.90371)",,,414 SUTTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4488720,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,2:34,,,,,,EAST 165 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542444,Station Wagon/Sport Utility Vehicle,Moped,,, +12/21/2021,17:59,BRONX,10458,40.85579,-73.881,"(40.85579, -73.881)",,,2475 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488704,Bus,Sedan,,, +12/20/2021,20:35,BROOKLYN,11234,40.624546,-73.92945,"(40.624546, -73.92945)",,,1482 EAST 48 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489125,Sedan,,,, +12/21/2021,23:05,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4488666,Sedan,,,, +12/19/2021,7:25,,,40.6743,-73.93339,"(40.6743, -73.93339)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4489157,Sedan,Sedan,Sedan,, +12/21/2021,5:40,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488325,Sedan,Sedan,,, +12/18/2021,19:11,BROOKLYN,11222,40.728714,-73.95362,"(40.728714, -73.95362)",,,837 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489230,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,11:08,BRONX,10465,40.8262,-73.821686,"(40.8262, -73.821686)",EAST TREMONT AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,7:05,BROOKLYN,11223,40.606735,-73.980484,"(40.606735, -73.980484)",,,1660 WEST 7 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488844,Sedan,Sedan,,, +12/21/2021,10:45,QUEENS,11416,40.686497,-73.854645,"(40.686497, -73.854645)",,,87-12 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4488524,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,17:10,,,40.797916,-73.96385,"(40.797916, -73.96385)",COLUMBUS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488527,Bike,,,, +12/21/2021,23:20,MANHATTAN,10017,40.75578,-73.978455,"(40.75578, -73.978455)",,,10 EAST 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488758,Pick-up Truck,Sedan,,, +12/19/2021,17:00,BRONX,10457,40.838333,-73.9015,"(40.838333, -73.9015)",,,510 CLAREMONT PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489227,Sedan,,,, +12/21/2021,10:15,BROOKLYN,11207,40.67001,-73.899635,"(40.67001, -73.899635)",,,280 BELMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488548,Pick-up Truck,,,, +12/21/2021,10:40,QUEENS,11423,40.713207,-73.76688,"(40.713207, -73.76688)",,,193-30 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4488829,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,18:20,MANHATTAN,10032,40.844254,-73.9398,"(40.844254, -73.9398)",,,650 WEST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488596,Sedan,Station Wagon/Sport Utility Vehicle,Refrigerated Van,, +12/21/2021,23:30,BRONX,10451,40.8252,-73.91476,"(40.8252, -73.91476)",EAST 162 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488937,Sedan,Sedan,,, +12/21/2021,8:22,,,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4488460,Sedan,Sedan,,, +12/21/2021,16:00,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,7:30,BROOKLYN,11236,40.64093,-73.91842,"(40.64093, -73.91842)",,,8021 FOSTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4488892,Sedan,Sedan,,, +12/06/2021,0:55,,,40.84275,-73.924774,"(40.84275, -73.924774)",WEST 171 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489008,Sedan,,,, +12/21/2021,11:00,,,40.84216,-73.831024,"(40.84216, -73.831024)",GILLESPIE AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4488485,Tractor Truck Diesel,Sedan,,, +12/21/2021,7:30,BROOKLYN,11208,40.68873,-73.87136,"(40.68873, -73.87136)",,,69 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488547,Sedan,Sedan,,, +12/21/2021,15:49,,,40.75425,-73.96899,"(40.75425, -73.96899)",2 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4488581,Sedan,Box Truck,,, +12/21/2021,23:53,QUEENS,11417,40.677723,-73.849594,"(40.677723, -73.849594)",,,107-45 88 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4488683,Sedan,Sedan,Sedan,, +12/18/2021,15:10,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4489051,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,20:00,BROOKLYN,11222,40.72052,-73.94544,"(40.72052, -73.94544)",,,177 BAYARD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4489218,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +12/21/2021,17:30,,,40.761665,-73.97492,"(40.761665, -73.97492)",WEST 55 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488503,Bus,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,4:31,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4521625,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,9:50,BRONX,10475,40.885296,-73.82733,"(40.885296, -73.82733)",,,3550 CONNER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4488442,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,9:10,,,,,,SHELL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488562,Flat Bed,Sedan,,, +12/21/2021,12:00,,,40.68024,-73.946754,"(40.68024, -73.946754)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488746,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,19:19,,,40.615993,-74.031136,"(40.615993, -74.031136)",4 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488555,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,17:26,,,40.816803,-73.86575,"(40.816803, -73.86575)",RANDALL AVENUE,ROSEDALE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489119,Sedan,,,, +12/21/2021,16:58,MANHATTAN,10011,40.74459,-73.9968,"(40.74459, -73.9968)",,,237 WEST 23 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488938,Taxi,Taxi,,, +12/21/2021,17:50,BROOKLYN,11223,40.59609,-73.98129,"(40.59609, -73.98129)",AVENUE U,WEST 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488631,Sedan,Sedan,,, +12/21/2021,14:40,QUEENS,11367,40.726997,-73.81219,"(40.726997, -73.81219)",,,73-21 KISSENA BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488816,Station Wagon/Sport Utility Vehicle,,,, +11/30/2021,13:40,,,40.77392,-73.89809,"(40.77392, -73.89809)",46 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489000,Sedan,Box Truck,,, +12/21/2021,17:30,BROOKLYN,11214,40.606636,-74.00163,"(40.606636, -74.00163)",86 STREET,NEW UTRECHT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488872,Sedan,,,, +12/21/2021,23:44,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4488677,Taxi,Sedan,,, +12/16/2021,10:01,BROOKLYN,11225,40.659557,-73.95344,"(40.659557, -73.95344)",,,514 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489077,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,18:10,QUEENS,11416,40.68566,-73.84679,"(40.68566, -73.84679)",,,97-33 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4488622,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/17/2021,8:00,BRONX,10465,40.82104,-73.82834,"(40.82104, -73.82834)",BUTTRICK AVENUE,SCHLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489100,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/21/2021,4:35,QUEENS,11375,40.712303,-73.85508,"(40.712303, -73.85508)",69 AVENUE,OLCOTT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488616,Station Wagon/Sport Utility Vehicle,Van,,, +12/21/2021,3:42,BROOKLYN,11218,40.638733,-73.98468,"(40.638733, -73.98468)",40 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,0:29,MANHATTAN,10031,40.82269,-73.94947,"(40.82269, -73.94947)",WEST 141 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489158,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,11:38,,,40.60235,-74.189644,"(40.60235, -74.189644)",,,CHELSEA ROAD,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4488535,Sedan,,,, +12/21/2021,19:40,BROOKLYN,11237,40.697678,-73.916374,"(40.697678, -73.916374)",KNICKERBOCKER AVENUE,GROVE STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4488655,Sedan,Sedan,,, +12/12/2021,18:00,MANHATTAN,10040,40.857872,-73.93219,"(40.857872, -73.93219)",,,700 WEST 192 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489055,Sedan,,,, +12/21/2021,17:30,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488664,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,18:00,BRONX,10461,40.847416,-73.8448,"(40.847416, -73.8448)",,,1740 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488733,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,16:26,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4489066,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/21/2021,18:26,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488642,Pick-up Truck,Sedan,,, +12/21/2021,13:30,MANHATTAN,10035,40.799805,-73.92992,"(40.799805, -73.92992)",,,20 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488605,Station Wagon/Sport Utility Vehicle,,,, +12/01/2021,13:55,,,,,,NEW LOTS AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489138,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,16:30,BRONX,10471,40.895805,-73.89671,"(40.895805, -73.89671)",BROADWAY,WEST 251 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489201,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,8:35,BROOKLYN,11212,40.65641,-73.90638,"(40.65641, -73.90638)",HEGEMAN AVENUE,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415851,Sedan,,,, +12/21/2021,15:30,,,40.637745,-74.11082,"(40.637745, -74.11082)",HENDERSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4488807,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,9:30,,,,,,GRAND CENTRAL PARKWAY,PARSONS BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489037,Sedan,Sedan,,, +12/21/2021,21:15,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CATON AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488669,Sedan,Sedan,,, +12/21/2021,17:35,,,40.82383,-73.87624,"(40.82383, -73.87624)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488709,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,3:30,QUEENS,11422,40.67221,-73.734634,"(40.67221, -73.734634)",BROOKVILLE BOULEVARD,135 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489087,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,20:23,,,40.73736,-73.99685,"(40.73736, -73.99685)",WEST 14 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4488721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,15:07,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489091,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,5:03,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Oversized Vehicle,,,,,4488332,Box Truck,,,, +12/17/2021,23:00,QUEENS,11418,40.698734,-73.82374,"(40.698734, -73.82374)",,,89-27 126 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489231,Sedan,,,, +12/18/2021,15:26,BRONX,10462,40.832363,-73.85338,"(40.832363, -73.85338)",,,2121 ELLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489145,Sedan,,,, +12/21/2021,21:50,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,,4488621,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/21/2021,13:30,,,40.605328,-73.990295,"(40.605328, -73.990295)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488845,Bus,Sedan,,, +12/21/2021,19:00,MANHATTAN,10024,40.78722,-73.96793,"(40.78722, -73.96793)",CENTRAL PARK WEST,WEST 89 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488528,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,17:05,,,40.59359,-73.99613,"(40.59359, -73.99613)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,18:07,BRONX,10466,40.887867,-73.83236,"(40.887867, -73.83236)",SECOR AVENUE,LIGHT STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489211,Sedan,,,, +12/18/2021,21:23,,,40.859325,-73.93132,"(40.859325, -73.93132)",BROADWAY,NAGLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489056,Sedan,,,, +12/21/2021,20:06,MANHATTAN,10002,40.71738,-73.99131,"(40.71738, -73.99131)",ALLEN STREET,GRAND STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488675,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,14:15,QUEENS,11413,40.67759,-73.74479,"(40.67759, -73.74479)",225 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488691,Sedan,,,, +12/16/2021,12:02,QUEENS,11434,40.667934,-73.77507,"(40.667934, -73.77507)",,,160-05 NORTH CONDUIT AVENUE,3,0,0,0,0,0,3,0,Unsafe Speed,Unsafe Speed,,,,4489019,Sedan,Sedan,,, +12/21/2021,8:40,,,40.690483,-73.93954,"(40.690483, -73.93954)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4488747,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +12/21/2021,16:20,BROOKLYN,11228,40.613617,-74.01317,"(40.613617, -74.01317)",,,1327 86 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488554,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/21/2021,19:02,QUEENS,11385,40.693893,-73.89862,"(40.693893, -73.89862)",,,57-49 COOPER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4488589,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,10:20,,,40.7406,-73.81025,"(40.7406, -73.81025)",59 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,14:28,,,,,,GUY R BREWER BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,23:03,BROOKLYN,11217,40.679855,-73.976685,"(40.679855, -73.976685)",,,32 PROSPECT PLACE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4488650,Sedan,Sedan,,, +12/17/2021,9:15,BROOKLYN,11211,40.71759,-73.94995,"(40.71759, -73.94995)",LORIMER STREET,FROST STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489224,Sedan,Box Truck,,, +12/21/2021,15:01,QUEENS,11101,40.75244,-73.950905,"(40.75244, -73.950905)",43 ROAD,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488556,Sedan,Tractor Truck Gasoline,,, +05/11/2021,11:45,,,40.680798,-73.958405,"(40.680798, -73.958405)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415870,Sedan,,,, +12/21/2021,23:10,,,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4488606,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,12:46,QUEENS,11101,40.74885,-73.94711,"(40.74885, -73.94711)",21 STREET,44 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489039,Sedan,,,, +12/21/2021,13:45,QUEENS,11379,40.71231,-73.88954,"(40.71231, -73.88954)",,,67-29 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488897,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/21/2021,7:30,BROOKLYN,11229,40.601376,-73.94206,"(40.601376, -73.94206)",,,3395 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4488957,Bus,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,11:50,BROOKLYN,11223,40.595566,-73.96645,"(40.595566, -73.96645)",AVENUE V,EAST 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,15:36,,,40.83872,-73.91378,"(40.83872, -73.91378)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4488701,Sedan,,,, +12/21/2021,15:27,BROOKLYN,11232,40.650772,-74.01519,"(40.650772, -74.01519)",47 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488520,Sedan,,,, +12/21/2021,13:55,STATEN ISLAND,10304,40.63013,-74.07675,"(40.63013, -74.07675)",BAY STREET,CONGRESS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488806,Sedan,,,, +12/21/2021,11:00,QUEENS,11418,40.699326,-73.831566,"(40.699326, -73.831566)",,,87-29 118 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488392,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,18:20,QUEENS,11413,40.67912,-73.753975,"(40.67912, -73.753975)",,,134-35 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4488611,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,17:50,,,40.689228,-73.9847,"(40.689228, -73.9847)",ELM PLACE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488882,,,,, +12/21/2021,15:29,BROOKLYN,11234,40.62788,-73.93251,"(40.62788, -73.93251)",KINGS HIGHWAY,AVENUE J,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488743,Sedan,Sedan,,, +12/21/2021,6:50,BROOKLYN,11207,40.653454,-73.88466,"(40.653454, -73.88466)",FLATLANDS AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488540,Box Truck,Bus,,, +12/17/2021,20:37,,,40.877815,-73.868126,"(40.877815, -73.868126)",OLINVILLE AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489193,Sedan,Sedan,,, +12/19/2021,23:45,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489106,Sedan,,,, +12/21/2021,17:00,QUEENS,11373,40.746075,-73.89003,"(40.746075, -73.89003)",,,75-26 BROADWAY,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488657,Pick-up Truck,E-Bike,,, +12/21/2021,23:35,QUEENS,11429,40.71256,-73.732994,"(40.71256, -73.732994)",221 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488633,Sedan,,,, +12/06/2021,0:00,MANHATTAN,10033,40.851257,-73.935196,"(40.851257, -73.935196)",,,4295 BROADWAY,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,Unspecified,,,4489049,Bus,Sedan,Sedan,, +12/20/2021,13:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489075,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,18:30,QUEENS,11368,40.74975,-73.86383,"(40.74975, -73.86383)",,,102-14 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,0:00,,,,,,DAHLIA AVENUE,SAULL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488536,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,15:10,MANHATTAN,10022,40.760365,-73.97377,"(40.760365, -73.97377)",EAST 54 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4488502,Bike,Bus,,, +12/17/2021,12:06,BROOKLYN,11222,40.73115,-73.95179,"(40.73115, -73.95179)",KENT STREET,MC GUINNESS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489217,Station Wagon/Sport Utility Vehicle,Bike,,, +12/21/2021,12:25,QUEENS,11366,40.729748,-73.779236,"(40.729748, -73.779236)",,,190-21 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/28/2021,3:50,,,40.767735,-73.9185,"(40.767735, -73.9185)",33 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4488999,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +12/21/2021,18:00,,,,,,LINDEN PLACE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4488563,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/21/2021,23:50,,,40.801914,-73.95348,"(40.801914, -73.95348)",WEST 114 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488679,Sedan,Taxi,,, +12/21/2021,15:25,BRONX,10466,40.890945,-73.85992,"(40.890945, -73.85992)",EAST 229 STREET,LOWERRE PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488868,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,14:30,MANHATTAN,10038,40.709522,-74.00167,"(40.709522, -74.00167)",DOVER STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488729,Sedan,,,, +12/21/2021,8:33,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4488489,Sedan,Bike,,, +12/21/2021,6:30,STATEN ISLAND,10305,40.592697,-74.07182,"(40.592697, -74.07182)",HICKORY AVENUE,OLYMPIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488376,Sedan,,,, +12/21/2021,21:36,QUEENS,11101,,,,THOMPSON AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488614,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,20:35,,,40.60877,-73.74997,"(40.60877, -73.74997)",BRUNSWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488684,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,0:02,,,40.727833,-73.752914,"(40.727833, -73.752914)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4488574,Sedan,Sedan,,, +12/18/2021,15:51,BRONX,10473,40.819016,-73.84804,"(40.819016, -73.84804)",RANDALL AVENUE,CASTLE HILL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489117,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,21:00,BROOKLYN,11236,40.631207,-73.90819,"(40.631207, -73.90819)",EAST 80 STREET,PAERDEGAT 6 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489159,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,13:47,BRONX,10465,40.847794,-73.82183,"(40.847794, -73.82183)",,,3260 MIDDLETOWN ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4489054,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Motorcycle,Sedan,Sedan +12/21/2021,9:00,BROOKLYN,11211,40.716064,-73.939026,"(40.716064, -73.939026)",MASPETH AVENUE,OLIVE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488624,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,20:20,BROOKLYN,11214,40.611084,-73.99832,"(40.611084, -73.99832)",79 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4489068,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,19:00,,,40.824184,-73.93723,"(40.824184, -73.93723)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4488780,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,19:08,QUEENS,11413,40.67484,-73.7529,"(40.67484, -73.7529)",,,137-30 219 STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4488529,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,21:48,BROOKLYN,11204,40.616352,-73.98245,"(40.616352, -73.98245)",63 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4488853,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,8:30,BRONX,10456,40.827927,-73.90094,"(40.827927, -73.90094)",HOME STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489222,Bus,Bus,,, +12/21/2021,15:50,,,40.683018,-73.95885,"(40.683018, -73.95885)",PUTNAM AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488748,Sedan,E-Scooter,,, +12/21/2021,18:00,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,11:20,BROOKLYN,11235,40.577995,-73.95964,"(40.577995, -73.95964)",BRIGHTON BEACH AVENUE,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4488559,Ambulance,,,, +12/21/2021,12:55,BRONX,10457,40.848927,-73.88816,"(40.848927, -73.88816)",EAST 181 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489005,Station Wagon/Sport Utility Vehicle,Van,,, +12/21/2021,17:55,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488975,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,14:22,,,,,,CROSS ISLAND PARKWAY,160 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4488482,Pick-up Truck,Sedan,,, +12/18/2021,6:30,QUEENS,11368,40.752716,-73.86418,"(40.752716, -73.86418)",,,37-94 103 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489058,Sedan,,,, +12/21/2021,22:25,,,,,,SOUTH CONDUIT AVENUE,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488668,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,11:59,,,40.721806,-74.00643,"(40.721806, -74.00643)",VARICK STREET,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489135,Sedan,,,, +12/17/2021,15:40,QUEENS,11369,40.75898,-73.857086,"(40.75898, -73.857086)",,,32-26 112 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489147,Sedan,,,, +12/21/2021,6:10,BROOKLYN,11215,40.658443,-73.98929,"(40.658443, -73.98929)",,,596 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488338,Sedan,,,, +12/21/2021,9:20,BRONX,10452,40.8439,-73.9117,"(40.8439, -73.9117)",GRAND CONCOURSE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488700,Sedan,Sedan,,, +05/11/2021,18:25,,,,,,,,87 EAST DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415922,Bike,Bike,,, +09/17/2021,23:30,BRONX,10465,40.82723,-73.824905,"(40.82723, -73.824905)",,,2867 PHILIP AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460939,Sedan,,,, +12/21/2021,11:35,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488723,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,9:58,BROOKLYN,11222,40.723774,-73.93754,"(40.723774, -73.93754)",VANDERVORT AVENUE,CHERRY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489232,Sedan,Box Truck,,, +12/21/2021,19:23,,,,,,JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4488620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,19:00,,,40.755516,-73.98363,"(40.755516, -73.98363)",WEST 43 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489028,Sedan,,,, +12/21/2021,17:47,BROOKLYN,11217,40.68143,-73.978935,"(40.68143, -73.978935)",,,95 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4488647,van,Sedan,,, +12/21/2021,8:00,BROOKLYN,11212,40.661198,-73.92803,"(40.661198, -73.92803)",,,118 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488713,Convertible,,,, +12/21/2021,16:24,BROOKLYN,11209,40.629284,-74.02271,"(40.629284, -74.02271)",,,7515 5 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488553,Station Wagon/Sport Utility Vehicle,Bike,,, +12/21/2021,2:33,BRONX,10466,40.888325,-73.83444,"(40.888325, -73.83444)",,,3810 PRATT AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4488457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +12/21/2021,0:13,,,40.603424,-73.98869,"(40.603424, -73.98869)",81 STREET,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4488836,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/26/2021,1:02,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",MACOMBS PLACE,WEST 155 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489043,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,21:50,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4488607,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,22:22,QUEENS,11379,40.71445,-73.90111,"(40.71445, -73.90111)",,,61-11 FRESH POND ROAD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488587,Sedan,E-Scooter,,, +12/21/2021,9:20,MANHATTAN,10016,40.74854,-73.97315,"(40.74854, -73.97315)",2 AVENUE,EAST 40 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488899,Sedan,Sedan,,, +12/21/2021,18:15,BROOKLYN,11234,40.6073,-73.919716,"(40.6073, -73.919716)",FLATBUSH AVENUE,HENDRICKSON PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488641,Sedan,,,, +12/21/2021,8:36,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4488673,FIRE TRUCK,,,, +12/17/2021,0:00,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",2 AVENUE,EAST 58 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4489208,Sedan,Bike,,, +11/10/2021,19:30,QUEENS,11364,40.748802,-73.75655,"(40.748802, -73.75655)",,,61-29 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489092,Sedan,,,, +12/21/2021,16:58,BROOKLYN,11220,40.65104,-74.0111,"(40.65104, -74.0111)",44 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488689,Station Wagon/Sport Utility Vehicle,Van,,, +12/21/2021,19:21,,,40.74681,-73.89176,"(40.74681, -73.89176)",BROADWAY,,,1,1,0,1,0,0,1,0,Unspecified,,,,,4488625,Bus,,,, +12/17/2021,21:15,BROOKLYN,11204,40.60756,-73.984406,"(40.60756, -73.984406)",AVENUE P,WEST 11 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4489069,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,23:33,QUEENS,11434,40.656673,-73.76827,"(40.656673, -73.76827)",,,177-25 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489085,Sedan,,,, +12/13/2021,16:43,BROOKLYN,11218,40.647594,-73.97351,"(40.647594, -73.97351)",CATON AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489111,Station Wagon/Sport Utility Vehicle,Bike,,, +12/21/2021,14:20,MANHATTAN,10028,40.778416,-73.95301,"(40.778416, -73.95301)",,,241 EAST 86 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4488660,Station Wagon/Sport Utility Vehicle,Moped,,, +02/19/2022,18:15,BROOKLYN,11215,40.673973,-73.9857,"(40.673973, -73.9857)",4 AVENUE,3 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4504445,Sedan,Pick-up Truck,,, +02/19/2022,15:15,,,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4503976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,18:00,BROOKLYN,11203,40.644974,-73.92099,"(40.644974, -73.92099)",CLARENDON ROAD,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504026,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/18/2022,18:00,BROOKLYN,11218,40.6508,-73.97568,"(40.6508, -73.97568)",,,1329 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4504538,Sedan,,,, +09/23/2021,22:59,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460985,Sedan,Box Truck,,, +06/30/2022,9:46,MANHATTAN,10029,40.787117,-73.94793,"(40.787117, -73.94793)",EAST 99 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4542180,Station Wagon/Sport Utility Vehicle,Bus,,, +06/29/2022,20:23,BRONX,10459,40.825695,-73.89913,"(40.825695, -73.89913)",EAST 166 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542408,Sedan,,,, +07/01/2022,15:18,BROOKLYN,11219,40.62615,-74.00494,"(40.62615, -74.00494)",67 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,16:00,QUEENS,11422,40.656197,-73.74646,"(40.656197, -73.74646)",,,235-30 147 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541971,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,10:15,,,40.665024,-73.870575,"(40.665024, -73.870575)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542435,Sedan,,,, +06/29/2022,8:50,QUEENS,11417,40.6794,-73.8586,"(40.6794, -73.8586)",79 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4542005,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2022,4:10,,,40.714622,-73.829704,"(40.714622, -73.829704)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4542380,Sedan,Sedan,,, +06/29/2022,12:10,QUEENS,11426,40.742428,-73.72178,"(40.742428, -73.72178)",,,248-12 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,1:45,BRONX,10475,40.877068,-73.83638,"(40.877068, -73.83638)",,,3200 BAYCHESTER AVENUE,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4542303,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,19:34,BROOKLYN,11217,40.685226,-73.978294,"(40.685226, -73.978294)",,,123 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4542615,Sedan,E-Bike,,, +06/29/2022,14:15,,,40.61239,-74.13296,"(40.61239, -74.13296)",,,2084 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542208,Bus,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,21:33,BROOKLYN,11201,40.69728,-73.987045,"(40.69728, -73.987045)",JAY STREET,CHAPEL STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543012,Taxi,Bike,,, +06/30/2022,21:41,MANHATTAN,10029,40.796005,-73.93542,"(40.796005, -73.93542)",EAST 116 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4543055,Sedan,MOPED,,, +06/30/2022,5:42,BROOKLYN,11236,40.64359,-73.90471,"(40.64359, -73.90471)",GLENWOOD ROAD,EAST 94 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542239,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,16:50,BROOKLYN,11229,40.60547,-73.96074,"(40.60547, -73.96074)",AVENUE R,EAST 12 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4542740,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/01/2022,16:12,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",FARMERS BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4542562,Station Wagon/Sport Utility Vehicle,,,, +06/25/2022,16:55,BROOKLYN,11208,40.683933,-73.87119,"(40.683933, -73.87119)",FULTON STREET,HEMLOCK STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542440,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/30/2022,17:00,MANHATTAN,10012,40.72179,-73.99986,"(40.72179, -73.99986)",BROADWAY,BROOME STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542495,Sedan,Sedan,,, +06/24/2022,11:15,,,40.57397,-74.16992,"(40.57397, -74.16992)",INDEPENDENCE AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542803,Sedan,,,, +06/30/2022,17:54,BRONX,10466,40.898113,-73.85344,"(40.898113, -73.85344)",NEREID AVENUE,FURMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542298,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,15:53,,,,,,LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542837,Sedan,Sedan,,, +06/30/2022,12:40,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",EAST 180 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4542371,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2022,22:15,QUEENS,11434,40.66563,-73.76456,"(40.66563, -73.76456)",,,180-11 145 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4542606,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,0:00,,,40.830067,-73.92915,"(40.830067, -73.92915)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4543163,Sedan,Sedan,,, +03/23/2022,7:00,,,40.849308,-73.93192,"(40.849308, -73.93192)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515074,Sedan,,,, +06/29/2022,9:58,,,40.677155,-73.86887,"(40.677155, -73.86887)",CONDUIT BOULEVARD,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542058,Sedan,Carry All,,, +06/30/2022,16:10,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542351,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,18:18,,,40.73807,-73.93756,"(40.73807, -73.93756)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542094,Sedan,Sedan,,, +06/27/2022,0:00,QUEENS,11379,40.721058,-73.86753,"(40.721058, -73.86753)",,,84-49 64 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542638,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,13:00,,,40.829163,-73.93727,"(40.829163, -73.93727)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4542467,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2022,9:30,BRONX,10463,40.882896,-73.920296,"(40.882896, -73.920296)",,,2727 PALISADE AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4542723,Postal ser,,,, +07/01/2022,10:22,MANHATTAN,10021,40.76789,-73.95835,"(40.76789, -73.95835)",,,310 EAST 71 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4543087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,11:00,,,40.798615,-73.94375,"(40.798615, -73.94375)",PARK AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4542013,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/30/2022,16:04,MANHATTAN,10030,40.820328,-73.94191,"(40.820328, -73.94191)",,,233 WEST 142 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4542472,Sedan,,,, +06/29/2022,19:39,QUEENS,11106,40.75665,-73.9319,"(40.75665, -73.9319)",,,36-43 29 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543127,Taxi,,,, +07/01/2022,20:00,BRONX,10472,40.826656,-73.8739,"(40.826656, -73.8739)",WATSON AVENUE,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4542599,Sedan,Van,,, +06/30/2022,13:00,MANHATTAN,10003,40.72493,-73.99035,"(40.72493, -73.99035)",2 AVENUE,EAST 2 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542774,Box Truck,Bus,,, +06/30/2022,16:00,,,40.73068,-73.94923,"(40.73068, -73.94923)",PROVOST STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4543028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,7:00,BRONX,10455,40.81164,-73.903305,"(40.81164, -73.903305)",,,530 TIMPSON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542150,Sedan,,,, +06/30/2022,18:55,BROOKLYN,11203,40.643684,-73.92954,"(40.643684, -73.92954)",,,1182 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542516,Sedan,,,, +06/21/2022,19:52,,,40.664494,-73.93431,"(40.664494, -73.93431)",MONTGOMERY STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4542898,Sedan,Sedan,Sedan,Sedan,Sedan +06/29/2022,12:30,BRONX,10451,40.822697,-73.90937,"(40.822697, -73.90937)",,,3198 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542399,Ambulance,Bus,,, +06/29/2022,12:52,BROOKLYN,11223,40.606815,-73.98426,"(40.606815, -73.98426)",,,1633 WEST 11 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4541978,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,16:35,BROOKLYN,11201,40.684814,-73.98974,"(40.684814, -73.98974)",,,388 WARREN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542822,Sedan,Sedan,,, +06/30/2022,15:00,BROOKLYN,11213,40.664658,-73.9375,"(40.664658, -73.9375)",,,836 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542903,Sedan,Sedan,,, +06/30/2022,15:50,,,40.730644,-73.97329,"(40.730644, -73.97329)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542972,Sedan,Sedan,,, +06/29/2022,23:54,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",EAST 149 STREET,SAINT ANNS AVENUE,,0,1,0,0,0,1,0,0,Traffic Control Disregarded,Unspecified,,,,4542310,Sedan,E-Bike,,, +07/01/2022,0:05,QUEENS,11370,40.76151,-73.88361,"(40.76151, -73.88361)",85 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,17:53,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4542572,Station Wagon/Sport Utility Vehicle,Convertible,,, +06/29/2022,17:38,STATEN ISLAND,10301,40.63029,-74.08891,"(40.63029, -74.08891)",VICTORY BOULEVARD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542121,Sedan,,,, +07/01/2022,19:27,BROOKLYN,11234,40.63556,-73.922844,"(40.63556, -73.922844)",FARRAGUT ROAD,EAST 56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543037,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,13:50,,,40.691666,-73.76239,"(40.691666, -73.76239)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542515,Sedan,Sedan,,, +06/29/2022,2:00,BROOKLYN,11233,40.670547,-73.91982,"(40.670547, -73.91982)",,,503 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542022,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,2:10,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4416040,Sedan,,,, +06/30/2022,4:34,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542122,Sedan,Tractor Truck Diesel,,, +03/06/2022,8:30,QUEENS,11419,40.68514,-73.8206,"(40.68514, -73.8206)",107 AVENUE,122 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4507905,Sedan,Sedan,,, +03/14/2022,18:15,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",DE KALB AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4510195,Pick-up Truck,Pick-up Truck,,, +03/29/2022,17:25,STATEN ISLAND,10308,40.54783,-74.13952,"(40.54783, -74.13952)",HYLAN BOULEVARD,FIELDWAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515168,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,19:30,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,WALTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515271,Sedan,Sedan,,, +03/21/2022,15:21,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",86 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515210,Taxi,Sedan,,, +03/29/2022,14:34,,,40.77202,-73.956024,"(40.77202, -73.956024)",EAST 77 STREET,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4515226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,15:45,BROOKLYN,11233,40.66845,-73.9212,"(40.66845, -73.9212)",,,1413 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515185,Sedan,Sedan,,, +03/15/2022,14:55,QUEENS,11373,40.73943,-73.88385,"(40.73943, -73.88385)",,,79-55 ALBION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515257,Sedan,,,, +03/23/2022,12:15,,,40.66856,-73.75672,"(40.66856, -73.75672)",SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515222,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,23:40,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,Unspecified,4521653,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/24/2022,3:06,,,40.68836,-73.8915,"(40.68836, -73.8915)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4521506,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,15:40,,,40.73444,-74.00619,"(40.73444, -74.00619)",CHARLES STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4522355,USPS Truck,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,8:40,MANHATTAN,10035,0,0,"(0.0, 0.0)",EAST 119 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521985,E-Scooter,SKATBOARD,,, +04/24/2022,23:50,BROOKLYN,11209,40.62781,-74.02334,"(40.62781, -74.02334)",,,7710 5 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4521753,Garbage or Refuse,Sedan,,, +04/20/2022,12:35,,,40.823772,-73.87245,"(40.823772, -73.87245)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4522300,Sedan,Sedan,Sedan,, +04/24/2022,17:24,,,40.598343,-73.98172,"(40.598343, -73.98172)",AVENUE T,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4521628,Sedan,,,, +04/24/2022,22:27,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,TILLARY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4521664,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,14:45,QUEENS,11432,0,0,"(0.0, 0.0)",HILLSIDE AVENUE,168 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4522175,Sedan,,,, +04/19/2022,10:38,BROOKLYN,11215,40.672768,-73.98672,"(40.672768, -73.98672)",4 AVENUE,5 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522141,Pick-up Truck,Bike,,, +04/24/2022,13:00,MANHATTAN,10010,40.73873,-73.98496,"(40.73873, -73.98496)",,,133 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4522146,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,10:50,QUEENS,11369,0,0,"(0.0, 0.0)",,,92-17 25 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521501,Bike,,,, +04/24/2022,18:40,BRONX,10472,0,0,"(0.0, 0.0)",WESTCHESTER AVENUE,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521857,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2022,3:00,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521544,,,,, +04/24/2022,0:09,,,40.8781,-73.85339,"(40.8781, -73.85339)",LACONIA AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4522001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,10:20,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",77 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4521465,Sedan,Sedan,,, +04/24/2022,16:35,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4521678,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,16:59,,,40.828396,-73.945305,"(40.828396, -73.945305)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522138,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,16:16,BROOKLYN,11234,40.61607,-73.914604,"(40.61607, -73.914604)",,,2064 MILL AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4514650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +03/29/2022,19:50,,,40.58926,-73.98189,"(40.58926, -73.98189)",WEST 12 STREET,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4514808,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,10:15,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514707,Box Truck,Sedan,,, +03/25/2022,23:45,MANHATTAN,10010,40.73555,-73.979355,"(40.73555, -73.979355)",1 AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515133,Sedan,,,, +03/29/2022,0:20,,,40.656593,-73.857635,"(40.656593, -73.857635)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Obstruction/Debris,Obstruction/Debris,Unspecified,,4514345,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +03/29/2022,16:10,BROOKLYN,11222,40.72577,-73.95076,"(40.72577, -73.95076)",,,107 NORMAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514683,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/18/2022,15:39,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",WEST 178 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514968,Bus,Sedan,,, +03/29/2022,8:40,BRONX,10472,40.82842,-73.86068,"(40.82842, -73.86068)",WHITE PLAINS ROAD,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514735,Station Wagon/Sport Utility Vehicle,,,, +03/23/2022,4:40,,,40.761738,-73.90573,"(40.761738, -73.90573)",28 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4515088,PK,Station Wagon/Sport Utility Vehicle,Sedan,, +03/29/2022,8:26,QUEENS,11412,40.709652,-73.75417,"(40.709652, -73.75417)",,,104-22 205 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4514464,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/29/2022,17:28,MANHATTAN,10032,40.83866,-73.94224,"(40.83866, -73.94224)",,,615 WEST 164 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514757,Sedan,Sedan,,, +03/27/2022,13:30,STATEN ISLAND,10305,,,,LILY POND AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,19:00,MANHATTAN,10026,40.805267,-73.95336,"(40.805267, -73.95336)",,,264 WEST 118 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515055,Sedan,,,, +03/29/2022,7:40,BRONX,10454,40.807903,-73.92005,"(40.807903, -73.92005)",EAST 138 STREET,BROWN PLACE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514485,Station Wagon/Sport Utility Vehicle,Bike,,, +03/29/2022,5:44,,,40.721474,-73.98383,"(40.721474, -73.98383)",CLINTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514616,Bike,Sedan,,, +03/29/2022,18:30,BRONX,10472,40.83045,-73.86199,"(40.83045, -73.86199)",,,1886 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514842,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,14:30,QUEENS,11432,40.710857,-73.800255,"(40.710857, -73.800255)",,,86-32 164 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4514886,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,0:00,QUEENS,11694,40.586025,-73.8227,"(40.586025, -73.8227)",,,100-17 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514979,Sedan,,,, +03/29/2022,12:50,,,40.68524,-73.88002,"(40.68524, -73.88002)",ETNA STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4515004,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/29/2022,5:25,BROOKLYN,11226,40.64333,-73.95973,"(40.64333, -73.95973)",OCEAN AVENUE,CORTELYOU ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514582,Bus,Bike,,, +03/29/2022,11:32,QUEENS,11422,40.660664,-73.733635,"(40.660664, -73.733635)",MEMPHIS AVENUE,CANEY LANE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4514532,Sedan,Sedan,,, +03/29/2022,13:49,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514568,Sedan,Sedan,,, +03/29/2022,0:03,QUEENS,11691,40.602192,-73.75523,"(40.602192, -73.75523)",BEACH 22 STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4514533,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,16:38,,,40.752098,-73.94425,"(40.752098, -73.94425)",21 STREET,QUEENS PLAZA SOUTH,,1,0,0,0,0,0,1,0,Unspecified,,,,,4514602,Sedan,,,, +03/29/2022,7:23,BROOKLYN,11210,40.638966,-73.94251,"(40.638966, -73.94251)",FOSTER AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514501,Station Wagon/Sport Utility Vehicle,Bus,,, +03/29/2022,10:30,BROOKLYN,11207,40.663925,-73.89961,"(40.663925, -73.89961)",LIVONIA AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515001,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,15:00,BROOKLYN,11214,40.596474,-73.99228,"(40.596474, -73.99228)",,,8741 24 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514722,Sedan,,,, +04/24/2022,7:55,,,40.647346,-74.007996,"(40.647346, -74.007996)",46 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4521606,Sedan,Sedan,,, +03/29/2022,15:34,,,40.84603,-73.93034,"(40.84603, -73.93034)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514765,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +03/27/2022,22:50,BROOKLYN,11203,40.66119,-73.933586,"(40.66119, -73.933586)",,,806 MIDWOOD STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515034,Sedan,,,, +03/29/2022,21:21,MANHATTAN,10001,40.748512,-73.98872,"(40.748512, -73.98872)",WEST 32 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514910,Taxi,Taxi,,, +03/27/2022,1:34,BROOKLYN,11208,40.67452,-73.878044,"(40.67452, -73.878044)",PITKIN AVENUE,MONTAUK AVENUE,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4515015,Bus,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +03/29/2022,12:25,QUEENS,11104,40.74202,-73.92656,"(40.74202, -73.92656)",47 AVENUE,39 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514522,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,17:15,,,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4514595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +03/29/2022,6:25,BRONX,10461,40.843212,-73.83894,"(40.843212, -73.83894)",WATERS PLACE,FINK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514694,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,18:32,QUEENS,11432,40.70972,-73.80137,"(40.70972, -73.80137)",,,160-33 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514884,Sedan,,,, +03/29/2022,16:46,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515116,CON ED TRU,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,17:32,,,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514619,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,14:42,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514541,Station Wagon/Sport Utility Vehicle,,,, +03/23/2022,2:00,,,40.762012,-73.911,"(40.762012, -73.911)",45 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515084,PK,,,, +03/29/2022,18:53,MANHATTAN,10027,40.810993,-73.95429,"(40.810993, -73.95429)",HANCOCK PLACE,WEST 125 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514943,Bike,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,5:00,QUEENS,11368,40.75339,-73.87146,"(40.75339, -73.87146)",,,96-22 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514993,Sedan,,,, +03/14/2022,11:18,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515073,Box Truck,Pick-up Truck,,, +03/29/2022,0:45,BRONX,10465,40.84228,-73.824554,"(40.84228, -73.824554)",,,1407 KEARNEY AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4514715,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,11:40,,,40.68405,-73.98157,"(40.68405, -73.98157)",,,3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515149,Station Wagon/Sport Utility Vehicle,Bus,,, +03/29/2022,15:00,QUEENS,11412,40.69714,-73.759895,"(40.69714, -73.759895)",114 DRIVE,194 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4514759,Sedan,,,, +03/29/2022,11:05,,,40.71604,-73.80504,"(40.71604, -73.80504)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4514674,Sedan,Sedan,Sedan,Sedan, +03/29/2022,0:00,QUEENS,11103,40.758793,-73.91253,"(40.758793, -73.91253)",,,31-06 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514861,Sedan,,,, +03/29/2022,19:39,BROOKLYN,11231,40.680317,-73.996895,"(40.680317, -73.996895)",COURT STREET,1 PLACE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514624,Sedan,Bike,,, +03/29/2022,19:56,BROOKLYN,11215,40.669907,-73.97907,"(40.669907, -73.97907)",4 STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514791,Sedan,E-Scooter,,, +03/29/2022,16:20,MANHATTAN,10022,40.762287,-73.972374,"(40.762287, -73.972374)",EAST 57 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4514684,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,21:30,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",FLATBUSH AVENUE,BERGEN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4514792,Sedan,Sedan,,, +03/29/2022,13:49,BROOKLYN,11205,,,,,,105 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514736,Sedan,,,, +03/29/2022,12:30,STATEN ISLAND,10305,40.598415,-74.08239,"(40.598415, -74.08239)",,,1177 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515160,Sedan,Sedan,,, +03/29/2022,2:48,QUEENS,11417,40.67674,-73.843735,"(40.67674, -73.843735)",CROSS BAY BOULEVARD,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514357,Pick-up Truck,Sedan,,, +03/29/2022,12:05,MANHATTAN,10021,40.76521,-73.953896,"(40.76521, -73.953896)",,,535 EAST 70 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514661,Sedan,Sedan,,, +03/28/2022,8:08,QUEENS,11368,40.755997,-73.8634,"(40.755997, -73.8634)",105 STREET,34 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515061,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,16:41,STATEN ISLAND,10301,40.647255,-74.08046,"(40.647255, -74.08046)",,,224 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4515127,Sedan,Sedan,Sedan,, +03/29/2022,8:34,,,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514465,Sedan,,,, +03/29/2022,8:26,STATEN ISLAND,10306,40.569706,-74.144394,"(40.569706, -74.144394)",CLARKE AVENUE,SAINT PATRICK PLACE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4515167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/29/2022,11:45,STATEN ISLAND,10312,40.52809,-74.19204,"(40.52809, -74.19204)",,,100 LUTEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514622,Sedan,,,, +03/29/2022,19:17,QUEENS,11418,40.692234,-73.8392,"(40.692234, -73.8392)",,,92-03 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514745,Sedan,Garbage or Refuse,,, +03/29/2022,23:45,QUEENS,11373,40.734604,-73.864784,"(40.734604, -73.864784)",,,59-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514676,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,5:50,MANHATTAN,10026,40.80587,-73.95281,"(40.80587, -73.95281)",SAINT NICHOLAS AVENUE,WEST 119 STREET,,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4515054,E-Scooter,,,, +03/25/2022,7:11,QUEENS,11101,40.75372,-73.931885,"(40.75372, -73.931885)",,,31-05 38 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515091,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,14:38,BROOKLYN,11237,40.70854,-73.927414,"(40.70854, -73.927414)",JOHNSON AVENUE,VARICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4514709,Station Wagon/Sport Utility Vehicle,Bike,,, +03/29/2022,0:10,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4514540,Sedan,,,, +03/29/2022,11:26,,,40.637962,-74.01058,"(40.637962, -74.01058)",58 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514569,E-Bike,,,, +03/29/2022,8:05,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",ALBEMARLE ROAD,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514928,Sedan,Sedan,,, +03/29/2022,16:45,,,40.6845,-73.81428,"(40.6845, -73.81428)",109 AVENUE,128 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514652,Sedan,,,, +03/28/2022,23:26,BRONX,10451,40.829628,-73.92118,"(40.829628, -73.92118)",GRAND CONCOURSE,EAST 164 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515021,Sedan,Sedan,,, +03/29/2022,12:30,QUEENS,11418,40.69931,-73.83157,"(40.69931, -73.83157)",,,87-34 118 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514523,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,18:00,MANHATTAN,10013,40.71532,-73.99765,"(40.71532, -73.99765)",,,55A BAYARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514806,Sedan,,,, +03/29/2022,14:40,,,40.63406,-73.946815,"(40.63406, -73.946815)",GLENWOOD ROAD,,,1,0,1,0,0,0,0,0,,,,,,4514945,,,,, +03/29/2022,12:00,QUEENS,11433,40.692856,-73.78531,"(40.692856, -73.78531)",111 AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514550,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,15:00,BROOKLYN,11211,40.710587,-73.95511,"(40.710587, -73.95511)",RODNEY STREET,BORINQUEN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514691,Sedan,,,, +03/29/2022,15:00,BRONX,10466,40.895596,-73.85617,"(40.895596, -73.85617)",EAST 236 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4515118,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/24/2022,19:35,BROOKLYN,11212,40.66255,-73.90893,"(40.66255, -73.90893)",ROCKAWAY AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515184,Sedan,,,, +03/29/2022,7:20,BRONX,10452,40.840786,-73.9232,"(40.840786, -73.9232)",WEST 170 STREET,NELSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515036,Bus,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,18:34,,,40.756287,-73.860725,"(40.756287, -73.860725)",108 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514631,Sedan,,,, +03/29/2022,15:30,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",37 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514700,Sedan,Sedan,,, +03/28/2022,14:44,,,40.60719,-74.16243,"(40.60719, -74.16243)",RICHMOND AVENUE,VICTORY BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515111,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,22:27,,,0,0,"(0.0, 0.0)",SIMPSON STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4522264,Sedan,Sedan,,, +05/13/2021,5:15,,,,,,JEWEL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416154,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,15:00,QUEENS,11417,40.667557,-73.83726,"(40.667557, -73.83726)",,,95-23 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514908,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,8:39,BRONX,10473,40.822433,-73.85514,"(40.822433, -73.85514)",PUGSLEY AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4514480,Bus,Sedan,,, +03/29/2022,17:19,QUEENS,11377,40.753036,-73.90013,"(40.753036, -73.90013)",,,33-52 62 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514603,Sedan,,,, +03/18/2022,2:20,,,40.692776,-73.95769,"(40.692776, -73.95769)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514967,Sedan,Sedan,,, +03/29/2022,13:26,MANHATTAN,10018,40.756207,-73.99136,"(40.756207, -73.99136)",,,310 WEST 40 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4514828,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/29/2022,14:25,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514720,Station Wagon/Sport Utility Vehicle,Van,,, +03/29/2022,15:00,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4515207,Sedan,Taxi,Sedan,, +03/29/2022,15:30,,,40.838573,-73.93332,"(40.838573, -73.93332)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514763,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/23/2022,1:09,BRONX,10469,40.872124,-73.8594,"(40.872124, -73.8594)",,,3244 COLDEN AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4515113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,14:45,MANHATTAN,10075,40.77631,-73.96423,"(40.77631, -73.96423)",5 AVENUE,EAST 78 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514664,Taxi,Taxi,,, +03/29/2022,19:00,,,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4515022,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,20:44,BRONX,10467,40.88183,-73.87627,"(40.88183, -73.87627)",TRYON AVENUE,EAST 211 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514699,Station Wagon/Sport Utility Vehicle,,,, +03/22/2022,13:30,QUEENS,11375,40.720833,-73.84661,"(40.720833, -73.84661)",,,70-09 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,11:00,BRONX,10467,40.857723,-73.86955,"(40.857723, -73.86955)",PELHAM PARKWAY NORTH,BARKER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4542855,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/29/2022,23:15,MANHATTAN,10035,40.79706,-73.935844,"(40.79706, -73.935844)",,,336 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514778,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,14:54,MANHATTAN,10013,40.718098,-74.004974,"(40.718098, -74.004974)",,,91 FRANKLIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514581,Sedan,,,, +03/29/2022,15:35,BROOKLYN,11236,40.634678,-73.90609,"(40.634678, -73.90609)",,,1060 EAST 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514793,Sedan,,,, +03/29/2022,9:40,BROOKLYN,11229,40.6107,-73.9534,"(40.6107, -73.9534)",,,2000 KINGS HIGHWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4514659,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,18:03,BRONX,10473,40.823826,-73.86163,"(40.823826, -73.86163)",STORY AVENUE,LELAND AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4514774,Sedan,Sedan,,, +03/23/2022,16:46,BROOKLYN,11236,40.634758,-73.91247,"(40.634758, -73.91247)",,,916 EAST 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515148,Sedan,Sedan,Sedan,, +03/29/2022,16:10,BROOKLYN,11211,40.71092,-73.95142,"(40.71092, -73.95142)",,,494 GRAND STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514714,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/29/2022,7:35,STATEN ISLAND,10306,40.56878,-74.10661,"(40.56878, -74.10661)",MILL ROAD,NEW DORP LANE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4515162,Sedan,,,, +03/29/2022,3:45,BRONX,10454,40.807808,-73.92384,"(40.807808, -73.92384)",WILLIS AVENUE,EAST 136 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514407,Pick-up Truck,Sedan,,, +03/28/2022,6:25,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4515259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/02/2021,23:30,QUEENS,11372,40.75608,-73.8805,"(40.75608, -73.8805)",,,87-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515060,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +03/22/2022,14:00,BROOKLYN,11218,40.64008,-73.98541,"(40.64008, -73.98541)",,,1336 39 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514952,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,14:17,MANHATTAN,10035,40.801487,-73.936554,"(40.801487, -73.936554)",,,221 EAST 122 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514547,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,12:42,,,40.597733,-74.067406,"(40.597733, -74.067406)",MCCLEAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456518,Motorcycle,,,, +09/10/2021,15:30,QUEENS,11377,40.73698,-73.89417,"(40.73698, -73.89417)",GARFIELD AVENUE,70 STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Failure to Yield Right-of-Way,Unspecified,,,4456916,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/17/2021,0:00,QUEENS,11429,40.707554,-73.7503,"(40.707554, -73.7503)",HOLLIS AVENUE,207 STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4458418,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,5:40,,,40.66475,-73.89405,"(40.66475, -73.89405)",LIVONIA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459285,Sedan,,,, +09/12/2021,13:30,BROOKLYN,11234,40.612286,-73.92045,"(40.612286, -73.92045)",,,2031 EAST 55 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4459826,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/19/2021,20:35,MANHATTAN,10024,40.787655,-73.977066,"(40.787655, -73.977066)",WEST 85 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4459962,Sedan,,,, +09/20/2021,7:50,,,40.686996,-73.95685,"(40.686996, -73.95685)",FRANKLIN AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4461493,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,0:37,,,40.745266,-73.85596,"(40.745266, -73.85596)",108 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461492,Sedan,Open Body,,, +09/07/2021,0:23,MANHATTAN,10012,40.720623,-73.99498,"(40.720623, -73.99498)",KENMARE STREET,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461491,Sedan,,,, +09/21/2021,17:00,,,40.693413,-73.940125,"(40.693413, -73.940125)",MARCUS GARVEY BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461504,,,,, +09/10/2021,22:59,,,40.69423,-73.94608,"(40.69423, -73.94608)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461490,Sedan,,,, +09/11/2021,13:57,,,40.679634,-73.94959,"(40.679634, -73.94959)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461497,Sedan,Sedan,,, +03/29/2022,9:08,BROOKLYN,11216,40.674232,-73.948494,"(40.674232, -73.948494)",,,847 PROSPECT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/29/2022,17:46,QUEENS,11101,40.751953,-73.93938,"(40.751953, -73.93938)",,,41-10 CRESCENT STREET,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4514862,Sedan,,,, +03/29/2022,6:00,QUEENS,11368,40.745266,-73.85596,"(40.745266, -73.85596)",49 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515245,Sedan,,,, +03/29/2022,16:51,STATEN ISLAND,10304,40.62016,-74.076965,"(40.62016, -74.076965)",VANDERBILT AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,8:32,,,40.64269,-73.95764,"(40.64269, -73.95764)",CLARENDON ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514930,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,20:20,QUEENS,11422,40.659817,-73.73047,"(40.659817, -73.73047)",FRANCIS LEWIS BOULEVARD,255 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,15:20,,,40.67625,-73.88405,"(40.67625, -73.88405)",ELTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514994,Sedan,,,, +03/29/2022,5:45,QUEENS,11373,40.738598,-73.86804,"(40.738598, -73.86804)",,,94-14 54 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514517,Pick-up Truck,,,, +03/29/2022,19:00,BROOKLYN,11236,40.643127,-73.905426,"(40.643127, -73.905426)",GLENWOOD ROAD,EAST 93 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514868,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,14:20,,,40.755505,-73.96807,"(40.755505, -73.96807)",2 AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4485436,Motorbike,,,, +12/11/2021,13:00,QUEENS,11423,40.710213,-73.77152,"(40.710213, -73.77152)",,,187-30 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4485418,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,10:20,BROOKLYN,11236,,,,Foster Ave,East 105 street,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4485414,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/11/2021,0:00,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",EAST 48 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485439,Van,Bike,,, +12/11/2021,17:59,,,,,,Duke ellington parkway,broadway,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4485429,Taxi,Sedan,,, +03/22/2022,18:40,,,40.88661,-73.90704,"(40.88661, -73.90704)",RIVERDALE AVENUE,WEST 236 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514989,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,15:45,,,40.84065,-73.91902,"(40.84065, -73.91902)",WEST 170 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4515020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,11:22,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",UTICA AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460750,Sedan,,,, +09/23/2021,10:24,QUEENS,11365,40.740402,-73.80531,"(40.740402, -73.80531)",,,163-12 59 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461245,Sedan,Sedan,,, +09/22/2021,15:12,BROOKLYN,11230,40.6337,-73.96719,"(40.6337, -73.96719)",NEWKIRK AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4459950,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,19:14,,,40.678596,-73.882416,"(40.678596, -73.882416)",ATLANTIC AVENUE,ESSEX STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461068,Van,Sedan,,, +09/22/2021,22:20,BROOKLYN,11203,40.650642,-73.92161,"(40.650642, -73.92161)",EAST 59 STREET,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460727,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,8:57,,,40.86885,-73.907234,"(40.86885, -73.907234)",BAILEY AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460447,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/22/2021,6:45,STATEN ISLAND,10305,40.581814,-74.097725,"(40.581814, -74.097725)",HYLAN BOULEVARD,STOBE AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4460072,Bus,,,, +09/07/2021,17:00,,,40.582634,-73.96,"(40.582634, -73.96)",BRIGHTON 8 COURT,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461003,Sedan,,,, +09/22/2021,16:15,BROOKLYN,11206,,,,,,30 BARTLETT STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4460006,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/23/2021,15:58,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4460561,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,18:13,BRONX,10468,40.871246,-73.89284,"(40.871246, -73.89284)",,,10 EAST 198 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460429,Sedan,Box Truck,,, +09/19/2021,23:15,QUEENS,11694,40.579975,-73.855255,"(40.579975, -73.855255)",BEACH CHANNEL DRIVE,BEACH 134 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:12,QUEENS,11374,40.733433,-73.86418,"(40.733433, -73.86418)",,,61-35 JUNCTION BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4461281,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,16:10,,,40.696823,-73.91487,"(40.696823, -73.91487)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460415,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,9:00,,,40.63764,-73.94336,"(40.63764, -73.94336)",EAST 35 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460725,Sedan,,,, +09/22/2021,17:30,QUEENS,11385,,,,CYPRESS AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460276,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,17:40,,,40.67794,-73.96567,"(40.67794, -73.96567)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461250,Sedan,Sedan,,, +09/17/2021,12:41,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4460600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,16:05,BRONX,10455,40.819336,-73.9137,"(40.819336, -73.9137)",,,3012 3 AVENUE,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4461451,E-Bike,,,, +09/04/2021,20:25,BROOKLYN,11237,40.703712,-73.913895,"(40.703712, -73.913895)",,,1546 GREENE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4460550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/23/2021,10:40,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:09,STATEN ISLAND,10304,0,0,"(0.0, 0.0)",CLOVE ROAD,TARGEE STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4461397,Sedan,,,, +09/22/2021,0:55,QUEENS,11355,40.745632,-73.82931,"(40.745632, -73.82931)",136 STREET,58 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459596,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,20:09,QUEENS,11367,40.729107,-73.83022,"(40.729107, -73.83022)",,,68-11 136 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4461030,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/24/2021,14:31,,,40.738472,-73.931984,"(40.738472, -73.931984)",HUNTERS POINT AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460637,Box Truck,Sedan,,, +09/23/2021,7:49,,,40.666122,-73.93139,"(40.666122, -73.93139)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460802,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,14:28,BROOKLYN,11201,40.69193,-73.982475,"(40.69193, -73.982475)",,,295 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:43,BROOKLYN,11215,40.674805,-73.9784,"(40.674805, -73.9784)",6 AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460563,Sedan,Sedan,,, +09/18/2021,15:30,,,40.689365,-73.9058,"(40.689365, -73.9058)",COOPER STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460434,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,8:30,BROOKLYN,11215,40.6659,-73.98475,"(40.6659, -73.98475)",,,359 12 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460490,Van,,,, +09/09/2021,21:05,BROOKLYN,11238,40.689392,-73.95592,"(40.689392, -73.95592)",,,433 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461485,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,16:27,BRONX,10462,40.854263,-73.869385,"(40.854263, -73.869385)",BRONX PARK EAST,LYDIG AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4460132,Sedan,Moped,,, +03/29/2022,12:15,,,40.74089,-73.92201,"(40.74089, -73.92201)",GREENPOINT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514525,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,1:45,,,40.78694,-73.77558,"(40.78694, -73.77558)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4460672,Sedan,,,, +09/24/2021,17:23,STATEN ISLAND,10301,40.637756,-74.07682,"(40.637756, -74.07682)",,,41 VICTORY BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4461005,Sedan,,,, +09/22/2021,23:19,MANHATTAN,10003,40.73072,-73.98906,"(40.73072, -73.98906)",3 AVENUE,EAST 10 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4460025,Taxi,Motorbike,,, +09/23/2021,22:10,MANHATTAN,10021,40.770382,-73.95605,"(40.770382, -73.95605)",,,333 EAST 75 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460828,Motorcycle,,,, +09/22/2021,8:34,BROOKLYN,11236,40.646175,-73.88953,"(40.646175, -73.88953)",EAST 108 STREET,FLATLANDS 2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460204,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/23/2021,13:20,,,40.83942,-73.872925,"(40.83942, -73.872925)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460329,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,13:00,QUEENS,11420,40.679447,-73.815796,"(40.679447, -73.815796)",,,114-25 124 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460371,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,8:00,MANHATTAN,10027,40.809063,-73.951996,"(40.809063, -73.951996)",,,2289 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460962,Sedan,,,, +09/22/2021,0:00,,,40.745922,-73.97011,"(40.745922, -73.97011)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4459632,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/11/2021,22:01,,,40.688744,-73.90875,"(40.688744, -73.90875)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4461210,Bus,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,15:08,,,40.707294,-73.85064,"(40.707294, -73.85064)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460531,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,0:25,QUEENS,11373,40.748306,-73.87681,"(40.748306, -73.87681)",,,40-02 CASE STREET,1,0,1,0,0,0,0,0,,,,,,4460034,Sedan,,,, +09/23/2021,12:07,QUEENS,11379,40.71447,-73.87716,"(40.71447, -73.87716)",,,66-43 77 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460274,Sedan,Delivery t,,, +09/23/2021,23:35,BROOKLYN,11201,40.689583,-73.9974,"(40.689583, -73.9974)",,,83 AMITY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460461,AMBULANCE,,,, +09/02/2021,5:35,,,40.691265,-73.9051,"(40.691265, -73.9051)",DECATUR STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4461219,Firetruck,Station Wagon/Sport Utility Vehicle,Sedan,, +09/22/2021,7:43,BROOKLYN,11229,40.596302,-73.93334,"(40.596302, -73.93334)",,,2310 KNAPP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460522,Flat Bed,Sedan,Sedan,, +09/24/2021,23:10,,,40.763885,-73.84002,"(40.763885, -73.84002)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460772,Sedan,Sedan,,, +09/22/2021,9:20,QUEENS,11385,40.70541,-73.899826,"(40.70541, -73.899826)",,,66-90 60 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4460710,Station Wagon/Sport Utility Vehicle,Motorcycle,Pick-up Truck,, +09/23/2021,16:25,MANHATTAN,10002,40.716816,-73.986244,"(40.716816, -73.986244)",,,138 CLINTON STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460321,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/24/2021,15:00,BRONX,10454,40.8039,-73.92054,"(40.8039, -73.92054)",,,138 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460819,Sedan,,,, +09/23/2021,11:00,QUEENS,11105,40.773926,-73.913414,"(40.773926, -73.913414)",,,23-18 31 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4460184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,21:35,QUEENS,11379,40.72709,-73.87472,"(40.72709, -73.87472)",ELIOT AVENUE,84 STREET,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4460692,Sedan,Sedan,Sedan,Sedan, +08/30/2021,9:00,BROOKLYN,11201,40.690144,-73.98408,"(40.690144, -73.98408)",ELM PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461185,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/22/2021,7:45,QUEENS,11413,40.682987,-73.75459,"(40.682987, -73.75459)",LUCAS STREET,WILLIAMSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459686,Sedan,,,, +09/23/2021,17:12,BROOKLYN,11229,40.60084,-73.93812,"(40.60084, -73.93812)",AVENUE U,FORD STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4460467,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,7:00,BROOKLYN,11229,40.609043,-73.95643,"(40.609043, -73.95643)",,,1678 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460466,Sedan,,,, +09/22/2021,9:06,,,40.690758,-73.99624,"(40.690758, -73.99624)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4459919,Sedan,Motorcycle,,, +09/22/2021,14:22,BROOKLYN,11236,40.646034,-73.90742,"(40.646034, -73.90742)",,,959 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,21:12,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460632,Sedan,Sedan,,, +09/22/2021,5:06,MANHATTAN,10002,40.718174,-73.99495,"(40.718174, -73.99495)",,,123 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460081,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,14:00,MANHATTAN,10029,40.79766,-73.94231,"(40.79766, -73.94231)",,,1829 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460582,Sedan,Bike,,, +09/13/2021,14:00,BROOKLYN,11233,40.67101,-73.92239,"(40.67101, -73.92239)",STERLING PLACE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461054,Sedan,Box Truck,,, +09/24/2021,15:55,BROOKLYN,11206,40.702152,-73.94438,"(40.702152, -73.94438)",,,668 BROADWAY,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460885,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/23/2021,19:45,MANHATTAN,10001,40.752136,-74.00115,"(40.752136, -74.00115)",,,501 WEST 30 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460554,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,13:15,BROOKLYN,11207,40.65727,-73.88104,"(40.65727, -73.88104)",,,953 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461078,Sedan,,,, +09/20/2021,8:30,QUEENS,11102,40.771515,-73.93128,"(40.771515, -73.93128)",12 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460861,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,14:45,,,40.613415,-74.07006,"(40.613415, -74.07006)",CLIFTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460976,Bus,Sedan,,, +09/20/2021,16:46,,,,,,PARK CIRCLE,PROSPECT PARK SOUTHWEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461295,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/24/2021,0:00,BROOKLYN,11236,40.644436,-73.89507,"(40.644436, -73.89507)",AVENUE J,EAST 102 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461403,Sedan,Sedan,,, +09/23/2021,20:30,QUEENS,11419,40.688293,-73.83186,"(40.688293, -73.83186)",112 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460422,Sedan,,,, +09/24/2021,21:00,BROOKLYN,11228,40.616695,-74.00761,"(40.616695, -74.00761)",14 AVENUE,79 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4460620,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,2:35,QUEENS,11421,40.69171,-73.864746,"(40.69171, -73.864746)",JAMAICA AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460109,Sedan,Sedan,,, +04/24/2022,17:53,QUEENS,11385,40.704002,-73.85593,"(40.704002, -73.85593)",WOODHAVEN BOULEVARD,82 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522471,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/23/2021,18:50,,,40.784157,-73.98487,"(40.784157, -73.98487)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460808,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:05,BROOKLYN,11208,40.68327,-73.88165,"(40.68327, -73.88165)",HIGHLAND PLACE,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461119,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,15:22,MANHATTAN,10035,40.799976,-73.94274,"(40.799976, -73.94274)",PARK AVENUE,EAST 117 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460137,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,8:50,,,40.709633,-73.767815,"(40.709633, -73.767815)",99 AVENUE,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4460486,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,19:50,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461258,Sedan,Sedan,,, +09/22/2021,22:50,,,40.854763,-73.90765,"(40.854763, -73.90765)",DAVIDSON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4460150,box truck,,,, +09/22/2021,11:00,MANHATTAN,10001,40.74822,-73.98892,"(40.74822, -73.98892)",,,888 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459857,Tow Truck / Wrecker,Box Truck,,, +09/24/2021,11:45,MANHATTAN,10026,40.80435,-73.95732,"(40.80435, -73.95732)",MANHATTAN AVENUE,WEST 115 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4461035,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,18:05,MANHATTAN,10012,40.723022,-73.99882,"(40.723022, -73.99882)",SPRING STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460873,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +09/24/2021,23:45,,,40.89163,-73.85184,"(40.89163, -73.85184)",BRONXWOOD AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461139,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,11:40,MANHATTAN,10033,40.848736,-73.93234,"(40.848736, -73.93234)",AUDUBON AVENUE,WEST 181 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460499,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:30,QUEENS,11432,40.715958,-73.78555,"(40.715958, -73.78555)",DALNY ROAD,WAREHAM PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459776,Sedan,Sedan,,, +09/22/2021,11:00,BRONX,10461,40.851078,-73.84862,"(40.851078, -73.84862)",MORRIS PARK AVENUE,TENBROECK AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461476,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/13/2021,21:43,,,40.677715,-73.93587,"(40.677715, -73.93587)",TROY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461230,Sedan,Sedan,,, +09/23/2021,16:10,,,40.642254,-73.92742,"(40.642254, -73.92742)",EAST 52 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460347,Station Wagon/Sport Utility Vehicle,Bus,,, +09/23/2021,14:40,,,40.830845,-73.947235,"(40.830845, -73.947235)",BROADWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460363,Sedan,Sedan,,, +09/22/2021,23:28,BROOKLYN,11232,40.644825,-73.99628,"(40.644825, -73.99628)",9 AVENUE,41 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460395,E-Bike,,,, +09/24/2021,12:00,MANHATTAN,10031,40.825954,-73.94337,"(40.825954, -73.94337)",WEST 148 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460647,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:30,,,40.765266,-73.81517,"(40.765266, -73.81517)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4459844,,,,, +09/22/2021,7:00,BROOKLYN,11234,40.609364,-73.93195,"(40.609364, -73.93195)",,,3507 AVENUE S,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4459777,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,20:30,BROOKLYN,11203,40.64779,-73.94536,"(40.64779, -73.94536)",,,375 EAST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460759,Sedan,,,, +09/23/2021,14:55,,,40.744194,-73.97133,"(40.744194, -73.97133)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4460290,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,13:34,QUEENS,11377,,,,69 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460471,,,,, +09/24/2021,17:32,BROOKLYN,11226,,,,,,2 Parkside avenue,1,0,1,0,0,0,0,0,Unspecified,,,,,4460912,E-Bike,,,, +09/22/2021,8:00,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459715,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,18:30,,,40.608154,-74.13211,"(40.608154, -74.13211)",STATEN ISLAND EXPRESSWAY,BRADLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4460652,Motorcycle,,,, +09/22/2021,22:40,MANHATTAN,10019,40.75976,-73.977905,"(40.75976, -73.977905)",,,75 ROCKEFELLER PLAZA,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passenger Distraction,,,,4460149,Sedan,Sedan,,, +09/24/2021,22:07,BROOKLYN,11211,40.712704,-73.95233,"(40.712704, -73.95233)",AINSLIE STREET,KEAP STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4460896,Sedan,Box Truck,,, +09/10/2021,7:46,BROOKLYN,11221,40.68609,-73.93867,"(40.68609, -73.93867)",MADISON STREET,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461039,Carry All,Sedan,,, +09/23/2021,5:00,QUEENS,11373,40.73797,-73.873505,"(40.73797, -73.873505)",,,53-11 90 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4460454,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,6:53,QUEENS,11355,40.746887,-73.8347,"(40.746887, -73.8347)",COLLEGE POINT BOULEVARD,57 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4460586,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,22:15,BRONX,10455,40.815468,-73.905334,"(40.815468, -73.905334)",TINTON AVENUE,EAST 152 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460015,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/23/2021,7:39,BRONX,10460,40.834522,-73.88314,"(40.834522, -73.88314)",,,1725 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4460677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/23/2021,13:16,MANHATTAN,10010,40.73831,-73.98775,"(40.73831, -73.98775)",EAST 20 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460716,Sedan,Sedan,,, +05/13/2021,11:35,,,40.79423,-73.94695,"(40.79423, -73.94695)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416342,Sedan,,,, +09/22/2021,20:28,,,40.832607,-73.85752,"(40.832607, -73.85752)",CROSS BRONX EXPRESSWAY,PUGSLEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4461134,Taxi,,,, +09/17/2021,22:24,QUEENS,11434,40.667713,-73.77792,"(40.667713, -73.77792)",NORTH CONDUIT AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461314,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,19:54,MANHATTAN,10013,40.71745,-73.99914,"(40.71745, -73.99914)",,,217B CANAL STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460865,Sedan,Unknown,,, +09/13/2021,1:45,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460982,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,11:20,,,40.672516,-73.93356,"(40.672516, -73.93356)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461059,Sedan,,,, +09/22/2021,15:57,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",3 AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460047,Bus,Sedan,,, +09/23/2021,9:28,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4460426,Box Truck,Sedan,,, +09/17/2021,22:35,,,40.833588,-73.91498,"(40.833588, -73.91498)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461386,Taxi,,,, +09/24/2021,5:14,BROOKLYN,11234,40.62014,-73.92119,"(40.62014, -73.92119)",,,1459 EAST 56 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460439,Sedan,Sedan,Sedan,, +09/22/2021,12:20,QUEENS,11370,40.76705,-73.88841,"(40.76705, -73.88841)",GRAND CENTRAL PARKWAY,81 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4460174,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,18:40,,,40.603645,-74.077324,"(40.603645, -74.077324)",HYLAN BOULEVARD,STEUBEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,19:52,,,40.788948,-73.94057,"(40.788948, -73.94057)",1 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4460624,Moped,Sedan,,, +09/24/2021,8:00,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4460542,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,11:49,BROOKLYN,11215,40.674,-73.982285,"(40.674, -73.982285)",5 AVENUE,1 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4460115,Sedan,Sedan,,, +09/24/2021,12:45,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461088,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,20:59,BROOKLYN,11236,40.636383,-73.914276,"(40.636383, -73.914276)",,,756 EAST 80 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4461267,Sedan,,,, +09/24/2021,20:20,QUEENS,11377,40.735237,-73.89139,"(40.735237, -73.89139)",72 PLACE,51 DRIVE,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,10:00,BROOKLYN,11203,40.655094,-73.92589,"(40.655094, -73.92589)",,,121 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460739,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,0:00,QUEENS,11694,40.581184,-73.825096,"(40.581184, -73.825096)",BEACH 105 STREET,SHORE FRONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461167,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,14:30,MANHATTAN,10019,40.763954,-73.98425,"(40.763954, -73.98425)",,,242 WEST 53 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460161,Sedan,Box Truck,,, +09/22/2021,10:15,,,40.783157,-73.78544,"(40.783157, -73.78544)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459758,Sedan,Chassis Cab,,, +09/24/2021,8:26,,,,,,HUTCHINSON RIVER PARKWAY,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460503,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,7:48,MANHATTAN,10003,40.73579,-73.98537,"(40.73579, -73.98537)",3 AVENUE,EAST 18 STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4461204,Bike,Bus,,, +09/22/2021,8:30,,,40.708256,-73.78144,"(40.708256, -73.78144)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4459875,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +08/07/2021,13:15,,,40.678154,-73.94416,"(40.678154, -73.94416)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461467,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/22/2021,0:00,,,40.74088,-73.737015,"(40.74088, -73.737015)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459992,Sedan,Sedan,,, +09/24/2021,13:45,QUEENS,11385,40.702454,-73.874466,"(40.702454, -73.874466)",MYRTLE AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460701,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,10:00,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Aggressive Driving/Road Rage,,,,4460343,Sedan,Sedan,,, +09/19/2021,22:00,BROOKLYN,11222,40.728416,-73.943085,"(40.728416, -73.943085)",,,249 MONITOR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461018,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,23:00,BROOKLYN,11213,40.676743,-73.93316,"(40.676743, -73.93316)",SCHENECTADY AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461224,Sedan,,,, +09/21/2021,9:04,MANHATTAN,10033,40.853504,-73.93955,"(40.853504, -73.93955)",,,140 CABRINI BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460498,Garbage or Refuse,Pick-up Truck,,, +09/23/2021,14:20,BRONX,10460,40.84054,-73.87058,"(40.84054, -73.87058)",VANNEST AVENUE,ADAMS STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4460406,Sedan,,,, +09/22/2021,17:35,,,,,,PELHAM PARKWAY,NEW ENGLAND THRUWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4460107,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,15:30,,,40.67834,-73.883316,"(40.67834, -73.883316)",LINWOOD STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460225,Station Wagon/Sport Utility Vehicle,Dump,,, +09/23/2021,8:30,,,40.66366,-73.90146,"(40.66366, -73.90146)",JUNIUS STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460349,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,12:26,BROOKLYN,11234,40.6229,-73.91762,"(40.6229, -73.91762)",,,2265 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460530,Sedan,,,, +09/22/2021,13:50,QUEENS,11432,,,,,,82-80 168 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459920,Sedan,Sedan,,, +09/23/2021,0:40,BROOKLYN,11217,40.684856,-73.97805,"(40.684856, -73.97805)",4 AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460388,Sedan,,,, +09/22/2021,17:30,QUEENS,11354,40.77058,-73.84303,"(40.77058, -73.84303)",,,30-29 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459969,Sedan,,,, +09/23/2021,14:22,BROOKLYN,11211,40.713306,-73.95835,"(40.713306, -73.95835)",GRAND STREET,ROEBLING STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460308,,,,, +09/22/2021,9:30,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4459803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/23/2021,9:00,BROOKLYN,11235,40.58038,-73.967606,"(40.58038, -73.967606)",OCEAN PARKWAY,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460201,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,13:41,QUEENS,11421,40.688026,-73.85641,"(40.688026, -73.85641)",,,86-04 91 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4514586,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,14:10,BROOKLYN,11235,40.587246,-73.94912,"(40.587246, -73.94912)",,,3030 OCEAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,14:24,QUEENS,11361,40.767223,-73.7685,"(40.767223, -73.7685)",215 PLACE,38 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460574,Sedan,,,, +09/23/2021,5:15,BROOKLYN,11232,40.65431,-74.004425,"(40.65431, -74.004425)",4 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,9:00,STATEN ISLAND,10304,40.629143,-74.07957,"(40.629143, -74.07957)",,,372 VANDUZER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460994,Station Wagon/Sport Utility Vehicle,Bus,,, +09/22/2021,20:00,,,40.694363,-73.958,"(40.694363, -73.958)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4461045,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,8:00,QUEENS,11436,40.67819,-73.80144,"(40.67819, -73.80144)",FOCH BOULEVARD,140 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460143,Pick-up Truck,Convertible,,, +09/24/2021,21:24,QUEENS,11434,40.686443,-73.768295,"(40.686443, -73.768295)",BAISLEY BOULEVARD,119 ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4460681,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,16:37,BRONX,10458,40.85908,-73.898186,"(40.85908, -73.898186)",RYER AVENUE,EAST 184 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460525,Sedan,,,, +09/24/2021,6:04,QUEENS,11426,40.723083,-73.72817,"(40.723083, -73.72817)",JAMAICA AVENUE,239 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4460396,Sedan,,,, +09/22/2021,17:30,QUEENS,11373,40.732887,-73.87443,"(40.732887, -73.87443)",SEABURY STREET,57 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460458,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/24/2021,6:25,MANHATTAN,10010,40.7366,-73.98185,"(40.7366, -73.98185)",2 AVENUE,EAST 21 STREET,,1,0,1,0,0,0,0,0,,,,,,4460720,,,,, +09/22/2021,16:50,BROOKLYN,11207,40.66768,-73.896,"(40.66768, -73.896)",,,611 BLAKE AVENUE,1,0,1,0,0,0,0,0,,,,,,4460196,E-Bike,,,, +09/24/2021,8:38,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4460751,Sedan,Sedan,Sedan,, +09/23/2021,14:17,QUEENS,11413,40.65558,-73.76629,"(40.65558, -73.76629)",ROCKAWAY BOULEVARD,150 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460285,Sedan,Box Truck,,, +09/23/2021,14:30,,,40.752472,-73.87818,"(40.752472, -73.87818)",35 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460567,Sedan,,,, +09/23/2021,19:35,,,40.89487,-73.85657,"(40.89487, -73.85657)",EAST 235 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4461127,Sedan,,,, +09/22/2021,21:14,BROOKLYN,11229,40.6157,-73.94478,"(40.6157, -73.94478)",,,2810 NOSTRAND AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4460011,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,14:54,,,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,5:25,QUEENS,11368,,,,,,1 WORLDS FAIR MARINA,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460041,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,8:40,,,0,0,"(0.0, 0.0)",SOUTH STREET,JACKSON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460596,Sedan,,,, +09/24/2021,16:05,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4461393,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/23/2021,6:17,BRONX,10460,,,,boston road,louis Nine boulevard,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4460430,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/24/2021,22:23,BROOKLYN,11236,40.638138,-73.889275,"(40.638138, -73.889275)",,,1361 EAST 101 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460656,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,13:45,BROOKLYN,11208,40.67949,-73.87927,"(40.67949, -73.87927)",ATLANTIC AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461064,Sedan,Box Truck,,, +09/23/2021,6:00,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460435,Sedan,Chassis Cab,,, +09/20/2021,11:00,BRONX,10474,40.81899,-73.8867,"(40.81899, -73.8867)",SENECA AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461464,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,14:09,,,40.67594,-73.94715,"(40.67594, -73.94715)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4461100,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,18:45,,,40.67582,-73.930466,"(40.67582, -73.930466)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461273,,,,, +09/24/2021,12:45,,,40.682003,-73.9687,"(40.682003, -73.9687)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460562,Sedan,,,, +09/23/2021,11:30,QUEENS,11385,40.70806,-73.907104,"(40.70806, -73.907104)",,,2025 MENAHAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460697,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/21/2021,19:30,MANHATTAN,10036,40.756767,-73.98272,"(40.756767, -73.98272)",AVENUE OF THE AMERICAS,WEST 45 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461013,E-Scooter,,,, +09/22/2021,7:00,MANHATTAN,10014,40.73695,-74.00779,"(40.73695, -74.00779)",,,41 BETHUNE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460093,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,19:40,QUEENS,11368,40.75127,-73.85904,"(40.75127, -73.85904)",,,39-25 108 STREET,2,0,1,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4460479,E-Bike,,,, +09/24/2021,20:38,MANHATTAN,10028,40.77882,-73.953995,"(40.77882, -73.953995)",EAST 86 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460832,Sedan,,,, +09/23/2021,21:58,,,40.69593,-73.96548,"(40.69593, -73.96548)",PARK AVENUE,RYERSON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4460336,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/22/2021,16:00,MANHATTAN,10035,40.805576,-73.93623,"(40.805576, -73.93623)",,,137 EAST 127 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4459926,Sedan,,,, +09/22/2021,19:10,QUEENS,11362,40.756992,-73.72966,"(40.756992, -73.72966)",61 AVENUE,MARATHON PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460735,Sedan,,,, +09/24/2021,22:00,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,KNICKERBOCKER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461218,E-Bike,Sedan,,, +09/09/2021,8:00,,,,,,30 AVENUE,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460853,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2022,21:40,QUEENS,11103,40.757095,-73.915016,"(40.757095, -73.915016)",45 STREET,BROADWAY,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4561659,E-Bike,Bike,,, +09/24/2021,16:00,BROOKLYN,11223,40.586185,-73.98328,"(40.586185, -73.98328)",WEST 15 PLACE,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460944,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:55,MANHATTAN,10035,40.800827,-73.937935,"(40.800827, -73.937935)",,,2212 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460208,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,16:16,BROOKLYN,11230,40.625595,-73.9576,"(40.625595, -73.9576)",AVENUE J,EAST 19 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4460354,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/24/2021,15:05,MANHATTAN,10039,40.82293,-73.94184,"(40.82293, -73.94184)",,,2730 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,Other Vehicular,,,4461430,Motorcycle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/20/2021,15:28,MANHATTAN,10016,40.74102,-73.97862,"(40.74102, -73.97862)",EAST 28 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461197,Scooter,,,, +09/24/2021,8:20,,,40.58584,-73.93788,"(40.58584, -73.93788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4460535,Sedan,Sedan,,, +09/22/2021,17:00,QUEENS,11420,,,,,,128-15 152 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460062,Sedan,,,, +09/16/2021,13:58,MANHATTAN,10012,40.72639,-73.991806,"(40.72639, -73.991806)",EAST 3 STREET,BOWERY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461025,Sedan,UNK,,, +09/20/2021,14:00,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460478,Sedan,Sedan,,, +09/22/2021,16:00,QUEENS,11101,40.751,-73.94881,"(40.751, -73.94881)",43 ROAD,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459988,Motorcycle,,,, +09/22/2021,17:42,,,40.677032,-73.824684,"(40.677032, -73.824684)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460063,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,19:30,BROOKLYN,11221,40.69554,-73.91261,"(40.69554, -73.91261)",KNICKERBOCKER AVENUE,MADISON STREET,,1,0,1,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4460781,Moped,,,, +09/21/2021,14:15,STATEN ISLAND,10312,40.5595,-74.1667,"(40.5595, -74.1667)",GURLEY AVENUE,GETZ AVENUE,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,,,,4460493,Sedan,Sedan,,, +09/22/2021,15:50,QUEENS,11691,40.59663,-73.754196,"(40.59663, -73.754196)",,,271 BEACH 20 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460026,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,8:00,,,40.823257,-73.94293,"(40.823257, -73.94293)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4460248,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,13:00,QUEENS,11418,40.69453,-73.82588,"(40.69453, -73.82588)",121 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460510,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,0:29,BROOKLYN,11203,40.641586,-73.92548,"(40.641586, -73.92548)",KINGS HIGHWAY,JODIE COURT,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459599,Sedan,Sedan,,, +09/22/2021,10:30,QUEENS,11368,40.757034,-73.87133,"(40.757034, -73.87133)",97 STREET,NORTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4460313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/23/2021,18:54,,,40.8612,-73.93497,"(40.8612, -73.93497)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461161,Sedan,Sedan,,, +09/24/2021,10:22,BROOKLYN,11217,40.6791,-73.9874,"(40.6791, -73.9874)",UNION STREET,NEVINS STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460589,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,17:05,,,40.590046,-73.99302,"(40.590046, -73.99302)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460609,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/23/2021,16:45,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",3 AVENUE,EAST 149 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4460377,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,7:39,BROOKLYN,11203,40.6505,-73.94375,"(40.6505, -73.94375)",,,946 BROOKLYN AVENUE,4,0,0,0,0,0,4,0,Illnes,Unspecified,,,,4459959,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,23:20,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4460188,Sedan,Pick-up Truck,Sedan,, +09/23/2021,16:30,QUEENS,11417,40.67891,-73.86037,"(40.67891, -73.86037)",,,105-21 77 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460370,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,8:20,,,40.63174,-73.96793,"(40.63174, -73.96793)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4460353,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/22/2021,15:40,BROOKLYN,11208,40.68686,-73.87772,"(40.68686, -73.87772)",,,21 RICHMOND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460231,Bus,Sedan,,, +09/24/2021,2:15,,,,,,GOWANUS EXPY (BQE),,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4460534,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,6:20,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459652,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,20:25,,,40.7099,-73.786736,"(40.7099, -73.786736)",175 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4461335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/22/2021,17:33,,,,,,BROADWAY,LEWIS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460275,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,15:58,MANHATTAN,10040,40.85607,-73.930405,"(40.85607, -73.930405)",WADSWORTH AVENUE,WEST 191 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4459925,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2021,14:50,MANHATTAN,10019,40.76503,-73.98483,"(40.76503, -73.98483)",,,307 WEST 54 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4460462,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,3:58,BROOKLYN,11205,40.692707,-73.972755,"(40.692707, -73.972755)",,,163 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4460030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/23/2021,8:30,,,,,,,,399 South street,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4460594,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,14:50,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461398,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +09/24/2021,8:30,QUEENS,11413,40.68017,-73.748436,"(40.68017, -73.748436)",133 AVENUE,220 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460521,Sedan,,,, +09/20/2021,7:50,BRONX,10455,40.815975,-73.91102,"(40.815975, -73.91102)",EAGLE AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460820,Sedan,Bike,,, +09/23/2021,18:00,BROOKLYN,11238,40.68031,-73.96793,"(40.68031, -73.96793)",,,550 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460322,Box Truck,Sedan,,, +09/24/2021,15:43,,,40.685375,-73.77968,"(40.685375, -73.77968)",FOCH BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4460611,Ambulance,Sedan,,, +09/05/2021,12:45,BROOKLYN,11226,,,,ROGERS AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460784,Sedan,Sedan,,, +09/23/2021,12:30,BROOKLYN,11214,40.61107,-74.00131,"(40.61107, -74.00131)",81 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460628,Sedan,Sedan,,, +09/23/2021,9:23,,,40.685112,-73.94717,"(40.685112, -73.94717)",MADISON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461050,Sedan,Dump,,, +09/24/2021,20:30,,,,,,SHORE PARKWAY,KNAPP STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,6:02,,,40.77132,-73.84655,"(40.77132, -73.84655)",122 STREET,,,1,0,1,0,0,0,0,0,Lane Marking Improper/Inadequate,,,,,4459981,Pick-up Truck,,,, +09/23/2021,10:25,QUEENS,11106,40.760662,-73.93879,"(40.760662, -73.93879)",,,12-20 36 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460183,Sedan,Sedan,,, +09/24/2021,12:00,STATEN ISLAND,10301,,,,DANIEL LOW TERRACE,crescent avenue,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461004,Sedan,Sedan,,, +09/20/2021,17:45,BROOKLYN,11207,40.655983,-73.897575,"(40.655983, -73.897575)",DE WITT AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461069,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,10:05,QUEENS,11368,40.74729,-73.86496,"(40.74729, -73.86496)",,,99-26 42 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460463,Sedan,Sedan,,, +09/23/2021,10:00,BROOKLYN,11231,40.67918,-74.01424,"(40.67918, -74.01424)",,,150 SULLIVAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460207,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,15:22,BROOKLYN,11232,40.65021,-74.01577,"(40.65021, -74.01577)",48 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4460448,Sedan,Sedan,,, +09/24/2021,19:24,BROOKLYN,11205,40.698,-73.97479,"(40.698, -73.97479)",FLUSHING AVENUE,CUMBERLAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460616,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,15:40,,,40.710995,-73.78741,"(40.710995, -73.78741)",175 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460007,Sedan,Box Truck,,, +09/24/2021,19:52,MANHATTAN,10013,40.71875,-74.001,"(40.71875, -74.001)",,,264 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460880,Sedan,Box Truck,,, +09/14/2021,20:00,,,40.670662,-73.94765,"(40.670662, -73.94765)",LINCOLN PLACE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461055,Sedan,,,, +09/22/2021,18:31,BROOKLYN,11221,,,,BUSHWICK AVENUE,LINDEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460416,Sedan,Moped,,, +09/18/2021,10:00,,,,,,CROSS BAY BOULEVARD,JAMAICA BAY PARK,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,16:50,,,40.82154,-73.94287,"(40.82154, -73.94287)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4461431,Sedan,Bus,Sedan,, +09/23/2021,11:42,,,40.676243,-73.95269,"(40.676243, -73.95269)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461251,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,7:45,STATEN ISLAND,10301,,,,CRESCENT AVENUE,DANIEL LOW TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460973,Sedan,,,, +09/24/2021,23:25,,,40.767998,-73.830864,"(40.767998, -73.830864)",32 AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,,,4461110,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/23/2021,22:43,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4461031,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,22:14,,,40.8165,-73.946556,"(40.8165, -73.946556)",8 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4461421,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,14:00,BROOKLYN,11211,40.703396,-73.956505,"(40.703396, -73.956505)",,,167 PENN STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4460364,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,16:50,MANHATTAN,10025,40.792362,-73.96418,"(40.792362, -73.96418)",WEST 97 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,0:35,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461188,Sedan,Sedan,,, +09/23/2021,12:12,,,40.6975,-73.90952,"(40.6975, -73.90952)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Backing Unsafely,,,,4460431,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,7:14,MANHATTAN,10024,40.781837,-73.979294,"(40.781837, -73.979294)",AMSTERDAM AVENUE,WEST 77 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4459802,Dump,Bus,,, +09/22/2021,13:00,BROOKLYN,11201,40.69024,-73.99437,"(40.69024, -73.99437)",CLINTON STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4459847,Sedan,Pick-up Truck,,, +09/23/2021,8:30,,,40.72563,-73.89587,"(40.72563, -73.89587)",GRAND AVENUE,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460693,Station Wagon/Sport Utility Vehicle,Bus,,, +09/22/2021,21:30,,,40.811478,-73.950226,"(40.811478, -73.950226)",WEST 127 STREET,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4460121,Sedan,Bike,,, +09/24/2021,14:52,,,,,,FENTON AVENUE,LACONIA AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4461098,Sedan,E-Scooter,,, +09/24/2021,19:50,,,40.65505,-73.95631,"(40.65505, -73.95631)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460643,Sedan,Sedan,,, +09/23/2021,15:38,MANHATTAN,10039,40.826374,-73.93561,"(40.826374, -73.93561)",,,2645 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460474,Sedan,Sedan,,, +09/23/2021,18:45,QUEENS,11375,40.7244,-73.84981,"(40.7244, -73.84981)",68 DRIVE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4460358,Bus,Sedan,,, +09/22/2021,9:40,BROOKLYN,11226,40.643085,-73.951454,"(40.643085, -73.951454)",,,2709 CLARENDON ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459953,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/21/2021,13:12,BROOKLYN,11212,40.662457,-73.92012,"(40.662457, -73.92012)",DUMONT AVENUE,EAST 98 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4460506,Sedan,Bike,,, +09/23/2021,6:35,BROOKLYN,11229,40.603344,-73.93684,"(40.603344, -73.93684)",GERRITSEN AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460164,Sedan,,,, +09/23/2021,10:20,BROOKLYN,11215,40.673485,-73.97296,"(40.673485, -73.97296)",UNION STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460489,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/11/2021,4:35,QUEENS,11103,40.758144,-73.91723,"(40.758144, -73.91723)",,,42-11 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,17:50,QUEENS,11691,40.596195,-73.75412,"(40.596195, -73.75412)",,,242 BEACH 20 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460728,Sedan,,,, +09/13/2021,13:00,BROOKLYN,11237,40.708942,-73.92499,"(40.708942, -73.92499)",,,555 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460511,Box Truck,Box Truck,,, +09/23/2021,18:00,QUEENS,11429,40.705982,-73.73956,"(40.705982, -73.73956)",111 ROAD,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460327,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,7:30,,,40.68693,-73.95089,"(40.68693, -73.95089)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461043,Sedan,,,, +09/22/2021,10:22,BROOKLYN,11203,40.662487,-73.936005,"(40.662487, -73.936005)",,,805 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459765,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,20:50,BROOKLYN,11212,40.655197,-73.91354,"(40.655197, -73.91354)",,,560 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4460071,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,6:50,BROOKLYN,11210,40.62925,-73.9439,"(40.62925, -73.9439)",,,1684 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460126,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,22:25,,,40.760994,-73.82443,"(40.760994, -73.82443)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514621,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,0:00,BROOKLYN,11208,40.676167,-73.88225,"(40.676167, -73.88225)",,,319 ESSEX STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4461080,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:37,,,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4460922,Sedan,Sedan,,, +09/22/2021,11:22,,,40.82458,-73.870544,"(40.82458, -73.870544)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459813,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,16:15,QUEENS,11428,40.71579,-73.7522,"(40.71579, -73.7522)",209 STREET,94 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459991,Bus,Sedan,,, +09/19/2021,16:05,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",BAISLEY BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461312,Sedan,,,, +09/23/2021,18:50,BROOKLYN,11221,40.695156,-73.92002,"(40.695156, -73.92002)",CENTRAL AVENUE,MENAHAN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460549,Bike,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,11:00,BROOKLYN,11208,40.677166,-73.87775,"(40.677166, -73.87775)",LIBERTY AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460227,Sedan,,,, +09/23/2021,7:30,,,40.86446,-73.91895,"(40.86446, -73.91895)",10 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4461159,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,15:20,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460648,Refrigerated Van,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,15:02,,,40.584324,-73.91604,"(40.584324, -73.91604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,16:35,QUEENS,11428,40.722313,-73.74285,"(40.722313, -73.74285)",216 STREET,92 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460283,Dump,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,9:00,QUEENS,11102,40.77226,-73.92591,"(40.77226, -73.92591)",ASTORIA BOULEVARD,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460177,Sedan,Sedan,,, +09/22/2021,2:16,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,CLINTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459941,Sedan,Taxi,,, +09/24/2021,19:17,BROOKLYN,11215,40.66361,-73.98964,"(40.66361, -73.98964)",,,265 PROSPECT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4460722,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,16:23,,,40.700775,-73.91334,"(40.700775, -73.91334)",WYCKOFF AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,13:28,QUEENS,11694,40.58046,-73.83963,"(40.58046, -73.83963)",,,242 BEACH 118 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4461166,Sedan,Sedan,,, +09/22/2021,18:30,QUEENS,11104,40.747208,-73.91601,"(40.747208, -73.91601)",,,39-58 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460517,Sedan,Sedan,,, +09/23/2021,0:15,QUEENS,11418,40.70071,-73.81515,"(40.70071, -73.81515)",VANWYCK EXPRESSWAY,90 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4460002,Sedan,,,, +09/23/2021,22:45,BROOKLYN,11208,40.67898,-73.88107,"(40.67898, -73.88107)",ATLANTIC AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4460411,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/23/2021,13:32,QUEENS,11413,40.663216,-73.757835,"(40.663216, -73.757835)",221 STREET,145 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4460798,Convertible,,,, +09/24/2021,13:30,,,40.72752,-73.75879,"(40.72752, -73.75879)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4460673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/24/2021,16:15,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4460604,Sedan,Sedan,,, +09/24/2021,0:30,BRONX,10469,40.874702,-73.85803,"(40.874702, -73.85803)",EAST GUN HILL ROAD,PAULDING AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4461121,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,13:50,,,40.671925,-73.939186,"(40.671925, -73.939186)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4461239,Sedan,E-Bike,,, +09/20/2021,21:40,MANHATTAN,10018,40.75649,-73.997765,"(40.75649, -73.997765)",WEST 37 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460543,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,9:29,QUEENS,11361,40.760998,-73.771675,"(40.760998, -73.771675)",212 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460575,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,7:53,,,40.794132,-73.94282,"(40.794132, -73.94282)",EAST 110 STREET,,,2,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460996,Sedan,E-Scooter,,, +05/14/2021,22:10,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416542,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,23:04,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514752,Sedan,Pick-up Truck,,, +09/24/2021,12:49,,,40.598434,-73.99263,"(40.598434, -73.99263)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4460633,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/24/2021,22:20,MANHATTAN,10012,,,,EAST HOUSTON STREET,MULBERRY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,13:31,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",WEST 34 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460538,E-Bike,Taxi,,, +09/18/2021,10:20,QUEENS,11237,40.69285,-73.90355,"(40.69285, -73.90355)",IRVING AVENUE,DECATUR STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461144,Sedan,,,, +09/23/2021,20:27,BRONX,10474,40.81532,-73.88665,"(40.81532, -73.88665)",,,720 HUNTS POINT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460404,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,20:07,QUEENS,11368,40.74356,-73.85574,"(40.74356, -73.85574)",,,107-20 CORONA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4461477,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,17:13,BROOKLYN,11209,40.626156,-74.019035,"(40.626156, -74.019035)",,,7606 7 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460344,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,14:14,BRONX,10462,40.841187,-73.85459,"(40.841187, -73.85459)",,,1722 PURDY STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:45,,,40.749607,-73.966835,"(40.749607, -73.966835)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4460601,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/24/2021,18:45,BRONX,10458,40.86723,-73.88692,"(40.86723, -73.88692)",MARION AVENUE,EAST 198 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460963,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,20:15,,,,,,EAST 37 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460666,Station Wagon/Sport Utility Vehicle,Bus,,, +09/23/2021,11:15,,,40.721447,-73.997406,"(40.721447, -73.997406)",CLEVELAND PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460860,Station Wagon/Sport Utility Vehicle,Bike,,, +09/22/2021,18:00,,,40.70567,-73.92142,"(40.70567, -73.92142)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461211,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,0:40,,,40.702488,-73.98854,"(40.702488, -73.98854)",FRONT STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460389,Bike,,,, +09/24/2021,15:25,,,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460758,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,15:00,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461408,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,8:50,QUEENS,11421,40.690323,-73.8635,"(40.690323, -73.8635)",,,87-36 78 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4460114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,4:56,,,40.728474,-73.882614,"(40.728474, -73.882614)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460711,Sedan,,,, +09/24/2021,15:00,BROOKLYN,11206,40.704113,-73.94786,"(40.704113, -73.94786)",LORIMER STREET,BROADWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460917,Sedan,Bike,,, +09/22/2021,9:00,,,40.717155,-73.94924,"(40.717155, -73.94924)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4460485,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,0:00,,,,,,belt parkway,john f kennedy expressway,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4459679,Sedan,,,, +09/22/2021,14:30,QUEENS,11433,40.69375,-73.79038,"(40.69375, -73.79038)",,,109-55 UNION HALL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460159,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,14:05,BRONX,10460,40.843407,-73.885544,"(40.843407, -73.885544)",,,1987 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4460470,Bus,,,, +09/22/2021,5:00,BRONX,10466,40.894028,-73.8422,"(40.894028, -73.8422)",,,4120 WILDER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459913,Sedan,UNK,,, +09/23/2021,8:30,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460438,Sedan,Van,,, +09/22/2021,12:38,BRONX,10467,40.861294,-73.8646,"(40.861294, -73.8646)",WARING AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460131,Box Truck,Sedan,,, +09/06/2021,22:15,QUEENS,11368,40.757145,-73.86452,"(40.757145, -73.86452)",,,33-23 104 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460684,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,10:10,,,40.798832,-73.95203,"(40.798832, -73.95203)",WEST 111 STREET,,,1,0,1,0,0,0,0,0,,,,,,4515057,,,,, +09/22/2021,20:55,BROOKLYN,11203,40.65434,-73.94704,"(40.65434, -73.94704)",LENOX ROAD,NEW YORK AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,,4460080,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/14/2021,9:55,BROOKLYN,11216,40.6709,-73.95319,"(40.6709, -73.95319)",LINCOLN PLACE,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461203,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,10:26,BRONX,10458,40.868156,-73.89158,"(40.868156, -73.89158)",,,220 MIRIAM STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460705,Sedan,,,, +09/24/2021,0:50,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",MAIN STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461036,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,18:50,,,40.79162,-73.94885,"(40.79162, -73.94885)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460581,Sedan,,,, +09/24/2021,10:24,,,40.693604,-73.99275,"(40.693604, -73.99275)",REMSEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461177,Sedan,,,, +09/22/2021,21:45,,,40.809563,-73.92923,"(40.809563, -73.92923)",3 AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460014,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,22:47,,,40.67871,-73.86701,"(40.67871, -73.86701)",LIBERTY AVENUE,SHERIDAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460410,Sedan,,,, +09/23/2021,13:35,MANHATTAN,10001,40.753307,-74.0001,"(40.753307, -74.0001)",,,20 HUDSON YARDS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460553,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,13:00,BRONX,10462,40.83475,-73.85803,"(40.83475, -73.85803)",,,1343 PUGSLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460289,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,17:00,BROOKLYN,11238,40.67556,-73.96334,"(40.67556, -73.96334)",WASHINGTON AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461228,Sedan,Sedan,,, +09/24/2021,13:20,QUEENS,11372,40.755554,-73.885376,"(40.755554, -73.885376)",82 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4460570,Bike,,,, +09/22/2021,7:43,QUEENS,11691,40.599934,-73.75778,"(40.599934, -73.75778)",,,22-27 BROOKHAVEN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Speed,,,,4460046,Sedan,Sedan,,, +09/23/2021,10:00,,,40.849667,-73.90802,"(40.849667, -73.90802)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460218,Tanker,Sedan,,, +09/23/2021,16:03,,,40.837673,-73.91922,"(40.837673, -73.91922)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4460421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +09/24/2021,20:20,QUEENS,11417,40.68144,-73.83865,"(40.68144, -73.83865)",102 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461380,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,14:00,QUEENS,11355,40.75763,-73.82799,"(40.75763, -73.82799)",KISSENA BOULEVARD,BARCLAY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459967,Sedan,Sedan,,, +09/24/2021,17:15,QUEENS,11101,40.747665,-73.94506,"(40.747665, -73.94506)",44 DRIVE,23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460636,Bus,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,21:30,QUEENS,11370,40.7576,-73.890495,"(40.7576, -73.890495)",,,31-50 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460986,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,11:40,,,40.61282,-74.15896,"(40.61282, -74.15896)",,,1430 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460167,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,18:15,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,EAST 57 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4460619,Motorcycle,,,, +09/23/2021,17:30,MANHATTAN,10023,40.77622,-73.97596,"(40.77622, -73.97596)",WEST 72 STREET,CENTRAL PARK WEST,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460807,Sedan,E-Scooter,,, +09/23/2021,12:40,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461262,Sedan,Sedan,,, +09/24/2021,11:30,MANHATTAN,10028,40.781525,-73.96042,"(40.781525, -73.96042)",EAST 86 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4460831,Sedan,Taxi,,, +09/23/2021,18:40,BROOKLYN,11204,40.616096,-74.00046,"(40.616096, -74.00046)",,,1611 BAY RIDGE PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4460558,E-Bike,,,, +09/23/2021,9:45,BROOKLYN,11203,40.639507,-73.94445,"(40.639507, -73.94445)",EAST 34 STREET,VICTOR ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460745,Sedan,,,, +09/24/2021,0:35,QUEENS,11354,40.763798,-73.808235,"(40.763798, -73.808235)",NORTHERN BOULEVARD,157 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,21:58,BRONX,10451,0,0,"(0.0, 0.0)",,,2525 3 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4522552,Bike,,,, +09/24/2021,15:23,MANHATTAN,10029,40.797775,-73.94172,"(40.797775, -73.94172)",,,153 EAST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460738,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,14:00,QUEENS,11368,40.750725,-73.87037,"(40.750725, -73.87037)",,,37-38 JUNCTION BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4460571,Sedan,,,, +09/20/2021,0:37,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4460680,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/24/2021,9:55,BRONX,10455,40.81459,-73.9139,"(40.81459, -73.9139)",,,541 EAST 149 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460823,Sedan,Sedan,,, +09/24/2021,2:12,BRONX,10459,40.820545,-73.89663,"(40.820545, -73.89663)",,,915 DAWSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461473,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,8:52,,,40.60136,-73.97647,"(40.60136, -73.97647)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460629,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,21:00,,,,,,168 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,14:35,,,40.750965,-73.94027,"(40.750965, -73.94027)",QUEENS PLAZA NORTH,CRESCENT STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460869,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,1:35,QUEENS,11433,40.699802,-73.773964,"(40.699802, -73.773964)",180 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,23:30,MANHATTAN,10010,40.736885,-73.978546,"(40.736885, -73.978546)",1 AVENUE,EAST 23 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4460719,Motorcycle,Sedan,,, +09/24/2021,1:00,BRONX,10469,40.883152,-73.856285,"(40.883152, -73.856285)",EAST 221 STREET,BRONXWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461133,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,7:50,,,40.756405,-73.85349,"(40.756405, -73.85349)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4460475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,17:45,QUEENS,11385,40.70341,-73.862816,"(40.70341, -73.862816)",MYRTLE AVENUE,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460754,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,15:30,,,40.775383,-73.923035,"(40.775383, -73.923035)",21 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4460864,Bus,Box Truck,,, +09/16/2021,16:00,BRONX,10452,40.837673,-73.91922,"(40.837673, -73.91922)",EAST 169 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460597,Sedan,Sedan,,, +09/24/2021,22:30,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4460950,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/24/2021,17:07,BRONX,10461,40.85226,-73.852905,"(40.85226, -73.852905)",WILLIAMSBRIDGE ROAD,RHINELANDER AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460766,Convertible,Bike,,, +09/15/2021,13:15,MANHATTAN,10001,40.753387,-73.99631,"(40.753387, -73.99631)",9 AVENUE,WEST 34 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4460539,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,13:00,MANHATTAN,10035,,,,,,1831 Madison Avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4460136,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,14:00,,,40.68804,-73.947754,"(40.68804, -73.947754)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4461285,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +09/22/2021,4:51,MANHATTAN,10001,40.745148,-73.98839,"(40.745148, -73.98839)",,,15 WEST 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460901,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,5:40,,,40.754498,-73.834076,"(40.754498, -73.834076)",SANFORD AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4459705,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,10:20,BRONX,10459,40.824364,-73.89389,"(40.824364, -73.89389)",,,1018 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460059,Sedan,,,, +09/24/2021,19:45,,,40.601406,-74.131256,"(40.601406, -74.131256)",BRADLEY AVENUE,HAROLD STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460651,Sedan,,,, +09/22/2021,9:40,QUEENS,11413,40.681717,-73.74249,"(40.681717, -73.74249)",,,130-72 225 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4459852,Sedan,,,, +08/29/2021,5:10,,,40.713512,-73.79903,"(40.713512, -73.79903)",85 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4461032,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,19:00,QUEENS,11368,40.73856,-73.85524,"(40.73856, -73.85524)",OTIS AVENUE,GRANGER STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460453,Moped,Sedan,,, +09/23/2021,22:00,,,40.756317,-73.83369,"(40.756317, -73.83369)",COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4460585,Pick-up Truck,Sedan,,, +09/24/2021,8:12,QUEENS,11379,,,,,,67-54 80th Street,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460700,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,18:00,BROOKLYN,11213,,,,,,1685 PRESIDENT STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460064,Sedan,Pick-up Truck,,, +09/22/2021,14:24,BROOKLYN,11203,40.6532,-73.92952,"(40.6532, -73.92952)",,,347 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459958,Bus,Sedan,,, +09/22/2021,0:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:20,BRONX,10451,40.81523,-73.920166,"(40.81523, -73.920166)",,,485 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4460425,Tow Truck / Wrecker,Sedan,,, +09/22/2021,11:45,MANHATTAN,10003,40.73789,-73.98674,"(40.73789, -73.98674)",,,13 GRAMERCY PARK SOUTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460239,Sedan,3-Door,,, +09/22/2021,14:00,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460010,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,14:10,BROOKLYN,11208,40.67994,-73.88468,"(40.67994, -73.88468)",FULTON STREET,ELTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460249,Sedan,Sedan,,, +07/25/2021,15:00,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461049,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,1:05,,,40.788586,-73.95529,"(40.788586, -73.95529)",5 AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4459620,Sedan,,,, +09/08/2021,19:03,,,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON 5 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461394,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,15:08,,,40.74039,-73.789505,"(40.74039, -73.789505)",185 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460315,Sedan,Sedan,,, +09/21/2021,19:38,QUEENS,11364,40.749035,-73.75328,"(40.749035, -73.75328)",,,61-39 224 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460734,Sedan,,,, +09/23/2021,9:30,BROOKLYN,11207,40.691074,-73.908806,"(40.691074, -73.908806)",WILSON AVENUE,ELDERT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460442,Sedan,,,, +09/24/2021,9:45,BROOKLYN,11238,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,FRANKLIN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Other Vehicular,,,,4461062,Sedan,Box Truck,,, +09/22/2021,21:35,QUEENS,11435,40.686478,-73.80079,"(40.686478, -73.80079)",111 AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460187,Sedan,,,, +09/23/2021,0:00,BROOKLYN,11217,40.679745,-73.98697,"(40.679745, -73.98697)",NEVINS STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460590,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,19:15,,,40.804256,-73.9193,"(40.804256, -73.9193)",EAST 134 STREET,,,1,0,1,0,0,0,0,0,Other Lighting Defects,,,,,4460375,Station Wagon/Sport Utility Vehicle,,,, +09/12/2021,6:31,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4461338,Sedan,,,, +09/24/2021,19:30,MANHATTAN,10029,40.79507,-73.93919,"(40.79507, -73.93919)",2 AVENUE,EAST 113 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460623,Sedan,Moped,,, +08/31/2021,16:00,QUEENS,11373,40.743237,-73.88353,"(40.743237, -73.88353)",,,81-11 BROADWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460775,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,20:20,MANHATTAN,10016,40.74518,-73.982735,"(40.74518, -73.982735)",EAST 31 STREET,PARK AVENUE SOUTH,,1,0,1,0,0,0,0,0,,,,,,4461011,,,,, +09/24/2021,7:30,BROOKLYN,11217,40.679996,-73.97941,"(40.679996, -73.97941)",,,664 BALTIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460480,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:50,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460640,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,21:03,BRONX,10455,40.81544,-73.91619,"(40.81544, -73.91619)",,,438 EAST 149 STREET,1,0,1,0,0,0,0,0,,,,,,4460816,E-Bike,,,, +09/24/2021,8:00,QUEENS,11434,40.665127,-73.77703,"(40.665127, -73.77703)",,,144-45 166 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460612,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,15:25,STATEN ISLAND,10312,40.557346,-74.16622,"(40.557346, -74.16622)",BARLOW AVENUE,GETZ AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461423,Sedan,,,, +09/24/2021,20:30,,,40.717155,-73.94924,"(40.717155, -73.94924)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461021,Sedan,Box Truck,,, +09/20/2021,16:00,,,40.69479,-73.954315,"(40.69479, -73.954315)",WALWORTH STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461051,Sedan,,,, +09/24/2021,8:00,BRONX,10456,40.8291,-73.90554,"(40.8291, -73.90554)",EAST 167 STREET,FULTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460676,Sedan,,,, +09/15/2021,18:19,BROOKLYN,11212,40.65621,-73.914665,"(40.65621, -73.914665)",ROCKAWAY PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460786,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,20:25,MANHATTAN,10027,40.81371,-73.95602,"(40.81371, -73.95602)",,,1345 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460895,Bus,,,, +09/21/2021,17:52,BROOKLYN,11213,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,BUFFALO AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461238,E-Scooter,,,, +09/22/2021,15:00,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461361,Taxi,,,, +09/21/2021,14:04,MANHATTAN,10023,40.773872,-73.98223,"(40.773872, -73.98223)",WEST 66 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4461274,Sedan,Bus,,, +09/23/2021,19:30,BROOKLYN,11221,40.692783,-73.91181,"(40.692783, -73.91181)",WILSON AVENUE,JEFFERSON AVENUE,,3,0,0,0,0,0,3,0,Pavement Slippery,Pavement Slippery,,,,4460359,Sedan,Sedan,,, +09/23/2021,15:40,STATEN ISLAND,10304,40.59081,-74.10723,"(40.59081, -74.10723)",FOUR CORNERS ROAD,CROMWELL CIRCLE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460494,Sedan,Sedan,,, +09/20/2021,3:40,,,40.8444,-73.90159,"(40.8444, -73.90159)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461460,Sedan,,,, +09/24/2021,9:20,MANHATTAN,10026,40.806816,-73.95551,"(40.806816, -73.95551)",,,444 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,Unspecified,,,4460980,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,16:05,QUEENS,11375,40.723545,-73.85409,"(40.723545, -73.85409)",,,67-40 AUSTIN STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4460715,Sedan,,,, +09/24/2021,12:00,,,40.639977,-73.92623,"(40.639977, -73.92623)",EAST 53 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460507,Sedan,Sedan,,, +09/24/2021,16:47,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4460595,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/22/2021,14:45,BROOKLYN,11206,40.710453,-73.93734,"(40.710453, -73.93734)",WATERBURY STREET,MEADOW STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4460512,Box Truck,Sedan,,, +09/22/2021,10:00,,,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461105,Sedan,Sedan,,, +09/23/2021,5:05,,,40.664745,-73.74003,"(40.664745, -73.74003)",BROOKVILLE BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460127,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:40,QUEENS,11432,40.715202,-73.801575,"(40.715202, -73.801575)",164 PLACE,84 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459807,Sedan,Sedan,,, +09/22/2021,10:45,MANHATTAN,10001,,,,,,39 WEST 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459834,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,12:40,,,40.737064,-74.002144,"(40.737064, -74.002144)",BANK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460095,Box Truck,,,, +09/23/2021,11:47,BROOKLYN,11211,40.707623,-73.962135,"(40.707623, -73.962135)",DIVISION AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460311,Box Truck,Sedan,,, +09/22/2021,9:40,QUEENS,11432,,,,,,90-11 160 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4459873,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/24/2021,18:00,MANHATTAN,10033,40.847427,-73.931404,"(40.847427, -73.931404)",AMSTERDAM AVENUE,WEST 180 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4461171,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,13:45,BRONX,10463,40.882767,-73.8886,"(40.882767, -73.8886)",DICKINSON AVENUE,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460122,Sedan,,,, +03/29/2022,12:09,BRONX,10462,40.855118,-73.8677,"(40.855118, -73.8677)",,,2153 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4514538,Sedan,,,, +09/23/2021,10:02,,,40.68723,-73.941795,"(40.68723, -73.941795)",THROOP AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inexperience,,,,4460335,Sedan,E-Bike,,, +09/22/2021,7:45,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459934,Bus,,,, +09/24/2021,22:30,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460655,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,2:52,,,40.629745,-74.14834,"(40.629745, -74.14834)",,,344 PULASKI AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460144,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,17:30,,,40.656967,-73.90261,"(40.656967, -73.90261)",HEGEMAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460847,Sedan,,,, +09/22/2021,19:15,QUEENS,11375,40.73294,-73.84961,"(40.73294, -73.84961)",64 AVENUE,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4460357,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/22/2021,7:51,,,40.624912,-74.146706,"(40.624912, -74.146706)",FOREST AVENUE,WILLOW ROAD WEST,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4459727,Sedan,,,, +09/24/2021,6:00,,,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460526,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,15:00,,,,,,,,80 WELLINGTON COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460100,Sedan,,,, +09/23/2021,19:15,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460457,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,12:56,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460943,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,21:16,QUEENS,11379,40.71617,-73.882385,"(40.71617, -73.882385)",PLEASANTVIEW STREET,PENELOPE AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4460696,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/24/2021,7:40,BRONX,10460,40.838135,-73.88731,"(40.838135, -73.88731)",SOUTHERN BOULEVARD,CROTONA PARK EAST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:20,BRONX,10470,40.898876,-73.85539,"(40.898876, -73.85539)",NEREID AVENUE,RICHARDSON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4461096,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/20/2021,2:00,,,40.827103,-73.94996,"(40.827103, -73.94996)",BROADWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460644,3-Door,,,, +09/24/2021,22:35,BROOKLYN,11212,40.66367,-73.91213,"(40.66367, -73.91213)",BOYLAND STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461271,Sedan,Sedan,,, +08/26/2021,20:17,,,40.685436,-73.944336,"(40.685436, -73.944336)",MADISON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461481,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,23:40,MANHATTAN,10021,40.770424,-73.96222,"(40.770424, -73.96222)",EAST 72 STREET,LEXINGTON AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4460140,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/24/2021,8:48,BRONX,10475,40.87448,-73.83393,"(40.87448, -73.83393)",,,750 BAYCHESTER AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4460505,Bus,Bus,,, +09/12/2021,17:11,QUEENS,11105,40.774254,-73.910995,"(40.774254, -73.910995)",,,22-70 33 STREET,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460856,E-Scooter,Sedan,,, +03/29/2022,16:10,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514657,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,19:42,BROOKLYN,11217,40.678375,-73.97334,"(40.678375, -73.97334)",,,288 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460484,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/24/2021,17:40,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460942,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:00,MANHATTAN,10158,,,,,,605 THird Avenue,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459770,Van,Bus,,, +09/22/2021,13:15,BRONX,10472,40.826138,-73.88344,"(40.826138, -73.88344)",,,1120 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459866,Sedan,Sedan,,, +09/16/2021,13:00,STATEN ISLAND,10310,40.638462,-74.12141,"(40.638462, -74.12141)",,,28 ALASKA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461145,Sedan,,,, +09/24/2021,17:45,BROOKLYN,11249,40.721977,-73.959946,"(40.721977, -73.959946)",KENT AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4461020,Sedan,,,, +09/23/2021,23:11,BROOKLYN,11228,40.62313,-74.01525,"(40.62313, -74.01525)",77 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460345,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,18:00,BRONX,10467,40.877937,-73.88057,"(40.877937, -73.88057)",,,3239 ROCHAMBEAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460964,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,13:34,MANHATTAN,10016,40.742588,-73.980415,"(40.742588, -73.980415)",EAST 29 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4461216,E-Bike,,,, +09/24/2021,1:25,QUEENS,11358,40.771084,-73.80443,"(40.771084, -73.80443)",160 STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4461111,Sedan,Sedan,Sedan,Sedan,Sedan +09/24/2021,23:15,,,,,,WHITESTONE EXPRESSWAY,3 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4460663,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,18:30,,,40.76132,-73.9171,"(40.76132, -73.9171)",31 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460877,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,22:30,,,40.725685,-73.980774,"(40.725685, -73.980774)",AVENUE B,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416878,Taxi,,,, +09/23/2021,12:00,BRONX,10472,40.827168,-73.870125,"(40.827168, -73.870125)",CROES AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460669,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,11:08,BROOKLYN,11230,40.6127,-73.953926,"(40.6127, -73.953926)",,,2011 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460352,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,19:30,MANHATTAN,10027,40.81151,-73.94649,"(40.81151, -73.94649)",WEST 129 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461432,Tractor Truck Diesel,Taxi,,, +09/22/2021,18:10,,,,,,PARK AVENUE,SAINT EDWARDS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4459923,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,0:55,MANHATTAN,10016,40.748985,-73.979965,"(40.748985, -73.979965)",PARK AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460032,Sedan,Sedan,,, +09/22/2021,10:43,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4460338,E-Scooter,,,, +09/23/2021,9:00,QUEENS,11103,40.757042,-73.91488,"(40.757042, -73.91488)",,,45-03 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460186,DUMP,Sedan,,, +09/24/2021,8:50,BROOKLYN,11214,40.597267,-73.998665,"(40.597267, -73.998665)",CROPSEY AVENUE,BAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460627,Sedan,Sedan,,, +09/23/2021,15:02,,,40.71312,-73.83376,"(40.71312, -73.83376)",UNION TURNPIKE,AUSTIN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,9:54,,,40.830727,-73.83756,"(40.830727, -73.83756)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459794,Sedan,Sedan,,, +09/23/2021,19:30,MANHATTAN,10027,40.808006,-73.946075,"(40.808006, -73.946075)",,,76 WEST 125 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460495,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,17:20,BROOKLYN,11212,40.65463,-73.92201,"(40.65463, -73.92201)",REMSEN AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460744,Sedan,,,, +09/22/2021,17:49,BROOKLYN,11234,40.61868,-73.93143,"(40.61868, -73.93143)",,,4521 AVENUE N,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4459955,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,0:00,BRONX,10457,40.851654,-73.89611,"(40.851654, -73.89611)",,,455 EAST 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/22/2021,5:15,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459697,Sedan,Sedan,,, +09/24/2021,12:10,,,40.786594,-73.96839,"(40.786594, -73.96839)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460527,Box Truck,Sedan,,, +09/22/2021,3:47,STATEN ISLAND,10314,40.60642,-74.120316,"(40.60642, -74.120316)",,,275 WESTWOOD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4461391,Sedan,,,, +09/24/2021,8:23,QUEENS,11368,40.74198,-73.86119,"(40.74198, -73.86119)",CHRISTIE AVENUE,101 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460464,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/22/2021,18:00,MANHATTAN,10017,40.75462,-73.97374,"(40.75462, -73.97374)",LEXINGTON AVENUE,EAST 47 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459917,Sedan,Tractor Truck Diesel,,, +09/24/2021,19:10,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",50 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4460654,Sedan,Motorscooter,,, +09/23/2021,20:20,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4460379,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/24/2021,20:18,BRONX,10468,40.87627,-73.888084,"(40.87627, -73.888084)",JEROME AVENUE,WEST 205 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Turning Improperly,,,,4460706,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,15:20,BROOKLYN,11216,40.687668,-73.951035,"(40.687668, -73.951035)",LEXINGTON AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461042,Sedan,Convertible,,, +09/22/2021,15:00,MANHATTAN,10032,40.840744,-73.94286,"(40.840744, -73.94286)",,,161 FORT WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,11:40,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460879,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,0:00,,,40.79293,-73.94791,"(40.79293, -73.94791)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460580,Station Wagon/Sport Utility Vehicle,Bike,,, +09/22/2021,10:50,QUEENS,11378,40.7139,-73.90881,"(40.7139, -73.90881)",ANDREWS AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4459898,Sedan,Box Truck,,, +09/23/2021,7:35,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",WEST 42 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460548,Sedan,,,, +09/23/2021,20:20,BRONX,10456,40.832855,-73.909294,"(40.832855, -73.909294)",,,1230 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460417,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,0:00,QUEENS,11433,40.706345,-73.78921,"(40.706345, -73.78921)",,,92-15 170 STREET,1,0,1,0,0,0,0,0,Brakes Defective,,,,,4460237,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,23:45,,,40.693787,-73.81173,"(40.693787, -73.81173)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461321,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,18:10,BROOKLYN,11238,40.67556,-73.96334,"(40.67556, -73.96334)",WASHINGTON AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461061,Bus,Bus,,, +09/23/2021,8:25,,,40.607628,-74.15947,"(40.607628, -74.15947)",VICTORY BOULEVARD,GOLLER PLACE,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4460145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,10:49,MANHATTAN,10002,,,,,,145 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460867,PK,,,, +09/24/2021,10:55,STATEN ISLAND,10306,40.566494,-74.11377,"(40.566494, -74.11377)",HYLAN BOULEVARD,EBBITTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461406,Sedan,,,, +09/23/2021,9:18,BROOKLYN,11225,40.66536,-73.956985,"(40.66536, -73.956985)",,,1679 BEDFORD AVENUE,2,0,0,0,1,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460432,Sedan,E-Bike,,, +09/23/2021,14:20,MANHATTAN,10029,40.79167,-73.95093,"(40.79167, -73.95093)",MADISON AVENUE,EAST 103 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460622,Sedan,,,, +09/22/2021,16:02,BROOKLYN,11233,40.6715,-73.91505,"(40.6715, -73.91505)",PARK PLACE,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4459982,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,5:50,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4460117,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/24/2021,7:40,BRONX,10454,40.809696,-73.92428,"(40.809696, -73.92428)",,,353 EAST 138 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460814,Bus,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,22:27,MANHATTAN,10001,40.7522,-73.99348,"(40.7522, -73.99348)",,,243 WEST 34 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4461010,Sedan,Bike,,, +09/24/2021,0:05,QUEENS,11385,40.70444,-73.89374,"(40.70444, -73.89374)",,,64-02 CATALPA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460699,Sedan,Sedan,,, +09/23/2021,7:07,QUEENS,11435,40.685623,-73.80654,"(40.685623, -73.80654)",,,109-67 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4460158,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,15:11,,,40.672516,-73.93356,"(40.672516, -73.93356)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461261,Sedan,,,, +09/20/2021,8:05,,,,,,VAN WYCK EXPRESSWAY (CDR),,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460488,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,7:24,MANHATTAN,10035,40.798485,-73.93668,"(40.798485, -73.93668)",,,2304 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460135,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,16:46,BRONX,10469,40.874714,-73.84512,"(40.874714, -73.84512)",EASTCHESTER ROAD,GIVAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461122,Sedan,,,, +09/22/2021,10:00,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460022,Flat Bed,,,, +09/24/2021,23:00,BRONX,10455,40.816166,-73.914246,"(40.816166, -73.914246)",,,560 BROOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460825,Van,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,11:30,BROOKLYN,11231,40.677998,-74.00415,"(40.677998, -74.00415)",HICKS STREET,NELSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460206,Sedan,,,, +09/23/2021,15:15,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460326,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/12/2021,22:00,BROOKLYN,11206,40.700104,-73.94726,"(40.700104, -73.94726)",FLUSHING AVENUE,TOMPKINS AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461038,Sedan,Sedan,Sedan,, +09/24/2021,8:00,,,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460501,Sedan,,,, +09/22/2021,7:00,BROOKLYN,11233,40.683304,-73.917274,"(40.683304, -73.917274)",SARATOGA AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4459975,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,17:25,BROOKLYN,11214,40.586983,-73.98538,"(40.586983, -73.98538)",,,2475 WEST 16 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460948,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,21:55,BROOKLYN,11217,40.682056,-73.990875,"(40.682056, -73.990875)",HOYT STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460459,Sedan,,,, +09/22/2021,6:39,BROOKLYN,11239,40.652683,-73.87684,"(40.652683, -73.87684)",,,494 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460228,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,1:50,,,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460444,Sedan,,,, +09/17/2021,11:30,MANHATTAN,10018,40.75469,-73.99536,"(40.75469, -73.99536)",9 AVENUE,WEST 36 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460533,Dump,,,, +09/22/2021,16:23,MANHATTAN,10023,40.78108,-73.985374,"(40.78108, -73.985374)",RIVERSIDE DRIVE,WEST 73 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459963,Bus,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,22:06,,,40.696205,-73.91782,"(40.696205, -73.91782)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4460649,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/22/2021,4:15,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,NEW DORP LANE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459658,Ambulance,Bus,,, +09/23/2021,14:25,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",FULTON STREET,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4460252,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,13:15,,,40.836937,-73.927124,"(40.836937, -73.927124)",WEST 167 STREET,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4460949,Sedan,,,, +09/23/2021,8:00,BROOKLYN,11219,40.632366,-73.987724,"(40.632366, -73.987724)",15 AVENUE,49 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460393,Station Wagon/Sport Utility Vehicle,Bike,,, +09/21/2021,12:45,,,40.749725,-73.98363,"(40.749725, -73.98363)",EAST 36 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4460591,Pick-up Truck,,,, +08/27/2021,16:05,,,40.67828,-73.958855,"(40.67828, -73.958855)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461221,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,11:45,,,40.754314,-73.98687,"(40.754314, -73.98687)",WEST 40 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4459848,Sedan,Sedan,,, +09/23/2021,11:12,BROOKLYN,11226,40.643425,-73.94588,"(40.643425, -73.94588)",NEW YORK AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460756,Sedan,,,, +09/18/2021,16:19,QUEENS,11372,40.747135,-73.89242,"(40.747135, -73.89242)",73 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,19:45,BROOKLYN,11226,40.644035,-73.95765,"(40.644035, -73.95765)",,,2129 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4460003,Sedan,,,, +09/21/2021,21:10,,,40.72656,-73.83802,"(40.72656, -73.83802)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460713,Sedan,Sedan,,, +09/23/2021,14:07,QUEENS,11414,40.659172,-73.839874,"(40.659172, -73.839874)",CROSS BAY BOULEVARD,159 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460365,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,20:06,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460323,,,,, +09/23/2021,11:28,BROOKLYN,11222,40.720867,-73.94333,"(40.720867, -73.94333)",,,543 MEEKER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460192,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,18:00,QUEENS,11378,40.722237,-73.90133,"(40.722237, -73.90133)",,,57-37 64 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460694,Sedan,Box Truck,,, +09/24/2021,6:40,,,40.68773,-73.95699,"(40.68773, -73.95699)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461189,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +09/01/2021,8:00,,,40.67297,-73.96745,"(40.67297, -73.96745)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461242,Sedan,,,, +09/23/2021,19:25,BROOKLYN,11204,40.61879,-73.99426,"(40.61879, -73.99426)",17 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460559,Sedan,Sedan,,, +09/24/2021,22:20,,,40.68195,-73.89652,"(40.68195, -73.89652)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4461072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,20:30,BRONX,10455,40.812332,-73.904686,"(40.812332, -73.904686)",,,845 EAST 149 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4460469,Moped,,,, +09/24/2021,15:52,BROOKLYN,11234,40.611004,-73.91053,"(40.611004, -73.91053)",MILL AVENUE,EAST 60 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4460576,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,17:46,QUEENS,11418,40.702286,-73.82796,"(40.702286, -73.82796)",123 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4460730,Sedan,Sedan,Sedan,, +09/24/2021,15:15,QUEENS,11373,40.744358,-73.88597,"(40.744358, -73.88597)",,,79-01 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,14:10,BROOKLYN,11221,40.692356,-73.911064,"(40.692356, -73.911064)",HANCOCK STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460427,Sedan,Sedan,,, +09/24/2021,6:20,BRONX,10469,40.871334,-73.86139,"(40.871334, -73.86139)",BRONXWOOD AVENUE,BURKE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461180,,,,, +09/23/2021,8:00,BROOKLYN,11220,40.645096,-74.003174,"(40.645096, -74.003174)",,,4518 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460449,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,14:34,BROOKLYN,11233,40.6715,-73.91505,"(40.6715, -73.91505)",EASTERN PARKWAY,PARK PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460634,Taxi,,,, +09/24/2021,0:00,BROOKLYN,11211,40.712,-73.95652,"(40.712, -73.95652)",,,264 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,16:48,BRONX,10466,40.88221,-73.84658,"(40.88221, -73.84658)",EAST 224 STREET,SCHIEFELIN AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Traffic Control Disregarded,,,,4461087,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,15:17,QUEENS,11435,40.699287,-73.80408,"(40.699287, -73.80408)",95 AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460008,Sedan,,,, +09/19/2021,3:20,BRONX,10468,40.862225,-73.91116,"(40.862225, -73.91116)",,,2297 CEDAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460704,Sedan,,,, +09/23/2021,18:38,MANHATTAN,10025,40.7956,-73.97111,"(40.7956, -73.97111)",,,2587 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460400,Box Truck,Bike,,, +09/24/2021,18:30,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460687,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,7:12,,,40.57477,-74.097626,"(40.57477, -74.097626)",MIDLAND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,20:25,,,40.675663,-73.9277,"(40.675663, -73.9277)",DEAN STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4461056,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,16:53,BROOKLYN,11207,40.65802,-73.88248,"(40.65802, -73.88248)",,,300 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460198,Sedan,Taxi,,, +09/24/2021,13:06,BROOKLYN,11211,40.712914,-73.93667,"(40.712914, -73.93667)",,,942 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460919,Sedan,Van,Dump,, +09/23/2021,20:50,,,40.74087,-73.98799,"(40.74087, -73.98799)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460718,Sedan,,,, +09/22/2021,22:30,BROOKLYN,11201,40.68966,-74.00047,"(40.68966, -74.00047)",COLUMBIA STREET,CONGRESS STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4459990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:20,,,40.58839,-74.16793,"(40.58839, -74.16793)",,,2465 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460565,Sedan,Sedan,,, +09/24/2021,0:59,MANHATTAN,10033,40.8468,-73.931854,"(40.8468, -73.931854)",WEST 179 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4461160,Sedan,Sedan,Sedan,, +09/24/2021,13:25,,,40.759438,-73.91309,"(40.759438, -73.91309)",45 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460863,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,16:40,QUEENS,11413,40.682404,-73.75181,"(40.682404, -73.75181)",SPRINGFIELD BOULEVARD,LUCAS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460602,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,14:20,,,,,,CROSS ISLAND PARKWAY,BRADDOCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,23:50,,,40.688667,-73.87548,"(40.688667, -73.87548)",JAMAICA AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460245,Taxi,Sedan,,, +09/22/2021,19:54,STATEN ISLAND,10301,,,,GLEN AVE,CASTLETON AVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460281,Pick-up Truck,Sedan,Sedan,, +09/01/2021,19:09,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4461252,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,11:20,,,40.8464,-73.89338,"(40.8464, -73.89338)",EAST TREMONT AVENUE,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461459,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/24/2021,16:20,BROOKLYN,11218,40.650967,-73.97698,"(40.650967, -73.97698)",GREENWOOD AVENUE,EAST 5 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460723,Sedan,Sedan,,, +09/11/2021,0:00,,,40.723648,-73.99103,"(40.723648, -73.99103)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461300,Taxi,Van,,, +09/24/2021,15:54,,,40.72165,-73.94196,"(40.72165, -73.94196)",MEEKER AVENUE,MONITOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461017,Sedan,Sedan,,, +09/24/2021,14:22,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/16/2021,19:50,,,,,,WEST 85 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460806,Sedan,,,, +09/22/2021,10:50,BROOKLYN,11215,40.671177,-73.9747,"(40.671177, -73.9747)",8 AVENUE,GARFIELD PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460112,Sedan,Bus,,, +09/22/2021,16:30,,,40.76652,-73.92059,"(40.76652, -73.92059)",30 AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4460180,Bike,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,21:02,MANHATTAN,10075,,,,,,1007 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460013,Sedan,,,, +09/24/2021,6:18,BROOKLYN,11207,40.670326,-73.88878,"(40.670326, -73.88878)",HENDRIX STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460412,Sedan,,,, +09/21/2021,10:48,MANHATTAN,10018,40.75596,-73.99814,"(40.75596, -73.99814)",,,466 10 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4460544,Sedan,Bike,,, +09/24/2021,21:05,,,40.666332,-73.81056,"(40.666332, -73.81056)",130 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4461376,Sedan,,,, +09/18/2021,23:19,,,40.67417,-73.95671,"(40.67417, -73.95671)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461292,Sedan,Sedan,Sedan,, +09/24/2021,6:35,MANHATTAN,10028,40.779064,-73.956665,"(40.779064, -73.956665)",,,125 EAST 85 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4460830,Sedan,,,, +09/24/2021,17:59,QUEENS,11433,40.69597,-73.7766,"(40.69597, -73.7766)",SAYRES AVENUE,176 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4460603,Sedan,Sedan,,, +09/23/2021,6:05,BRONX,10474,40.814438,-73.89308,"(40.814438, -73.89308)",LONGWOOD AVENUE,BARRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460060,Bus,,,, +09/20/2021,21:30,QUEENS,11369,40.770226,-73.87062,"(40.770226, -73.87062)",,,100-15 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460481,Sedan,,,, +09/24/2020,22:00,MANHATTAN,10039,40.824757,-73.94052,"(40.824757, -73.94052)",8 AVENUE,WEST 148 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4461437,Sedan,Motorscooter,,, +09/23/2021,18:19,MANHATTAN,10018,40.752327,-73.987465,"(40.752327, -73.987465)",,,1375 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461016,Sedan,Bike,,, +09/19/2021,13:30,BRONX,10469,40.87336,-73.85157,"(40.87336, -73.85157)",,,3328 PEARSALL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461114,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,8:00,,,40.80751,-73.93413,"(40.80751, -73.93413)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460737,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,5:00,QUEENS,11105,40.771297,-73.90934,"(40.771297, -73.90934)",,,23-12 38 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4460857,Sedan,Sedan,Sedan,, +09/23/2021,6:40,,,40.531425,-74.21779,"(40.531425, -74.21779)",ENGLEWOOD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:59,BROOKLYN,11206,40.699112,-73.93771,"(40.699112, -73.93771)",,,17 LOCUST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461199,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,8:00,QUEENS,11432,40.712597,-73.79304,"(40.712597, -73.79304)",,,170-15 HIGHLAND AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Other Vehicular,,,,4461033,Sedan,Sedan,,, +09/18/2021,20:05,,,40.758305,-74.000145,"(40.758305, -74.000145)",11 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460537,Sedan,Motorscooter,,, +09/03/2021,14:30,,,40.676895,-73.93593,"(40.676895, -73.93593)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461227,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,13:24,BROOKLYN,11229,40.607433,-73.95295,"(40.607433, -73.95295)",,,2228 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:36,,,40.86187,-73.89178,"(40.86187, -73.89178)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4460703,3-Door,Pick-up Truck,,, +09/23/2021,20:08,QUEENS,11434,40.67036,-73.77779,"(40.67036, -73.77779)",158 STREET,137 AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4460476,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,10:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417199,Sedan,,,, +09/22/2021,23:29,QUEENS,11419,40.68811,-73.819336,"(40.68811, -73.819336)",125 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4460369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,20:05,BROOKLYN,11213,40.667164,-73.93407,"(40.667164, -73.93407)",SCHENECTADY AVENUE,PRESIDENT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460065,Sedan,,,, +09/21/2021,19:27,,,40.83022,-73.94769,"(40.83022, -73.94769)",WEST 151 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460645,E-Bike,Sedan,,, +09/23/2021,0:30,BROOKLYN,11225,40.662254,-73.94559,"(40.662254, -73.94559)",,,509 BROOKLYN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460361,Sedan,Sedan,,, +09/23/2021,12:56,QUEENS,11421,40.690456,-73.85379,"(40.690456, -73.85379)",89 AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460223,Sedan,Sedan,,, +09/22/2021,5:10,,,40.68843,-73.89132,"(40.68843, -73.89132)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Following Too Closely,Following Too Closely,Unspecified,,4459624,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/23/2021,14:20,QUEENS,11423,40.7194,-73.76336,"(40.7194, -73.76336)",,,199-23 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460316,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/14/2021,11:00,QUEENS,11692,40.597466,-73.80037,"(40.597466, -73.80037)",,,69-48 HILLMEYER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461165,Sedan,,,, +09/22/2021,8:40,MANHATTAN,10029,40.79147,-73.94684,"(40.79147, -73.94684)",,,1673 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4460587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,8:30,BROOKLYN,11235,40.590305,-73.95265,"(40.590305, -73.95265)",,,1710 AVENUE Y,0,0,0,0,0,0,0,0,Unspecified,,,,,4460520,Sedan,,,, +09/24/2021,7:45,BROOKLYN,11206,40.702713,-73.937325,"(40.702713, -73.937325)",BUSHWICK AVENUE,COOK STREET,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4460513,Bus,,,, +09/23/2021,9:15,BROOKLYN,11207,40.672657,-73.8848,"(40.672657, -73.8848)",,,395 ASHFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460246,Sedan,Sedan,,, +09/22/2021,12:28,BROOKLYN,11221,40.68781,-73.9237,"(40.68781, -73.9237)",MADISON STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4459974,Sedan,Sedan,Sedan,, +09/23/2021,6:00,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",MAURICE AVENUE,55 DRIVE,,1,0,1,0,0,0,0,0,,,,,,4460764,,,,, +09/24/2021,21:56,QUEENS,11420,40.679085,-73.82634,"(40.679085, -73.82634)",111 AVENUE,113 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461347,Sedan,Sedan,,, +09/23/2021,8:54,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4460128,Sedan,Sedan,,, +09/22/2021,8:40,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459840,Tanker,Sedan,,, +09/24/2021,19:30,QUEENS,11368,40.743298,-73.861374,"(40.743298, -73.861374)",,,50-10 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4460777,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/23/2021,16:30,MANHATTAN,10001,40.752644,-74.00428,"(40.752644, -74.00428)",WEST 29 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460555,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,15:00,BROOKLYN,11226,40.64242,-73.961754,"(40.64242, -73.961754)",CORTELYOU ROAD,EAST 18 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460904,Taxi,,,, +09/17/2021,13:22,,,40.66319,-73.93727,"(40.66319, -73.93727)",TROY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460572,Sedan,Box Truck,,, +09/19/2021,0:00,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4460817,Sedan,Pick-up Truck,,, +09/24/2021,9:40,,,40.62436,-74.15627,"(40.62436, -74.15627)",,,270 WILCOX STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4460508,Sedan,,,, +09/24/2021,18:40,QUEENS,11434,,,,BELT PARKWAY,ROCKAWAY BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/06/2020,5:30,,,,,,,,120 Huge Grant Circle,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4336560,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,0:00,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",ROCKAWAY PARKWAY,LENOX ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4408913,Sedan,Sedan,,, +04/26/2021,18:19,MANHATTAN,10028,40.77691,-73.95748,"(40.77691, -73.95748)",EAST 82 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4410853,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,15:26,,,40.860516,-73.9146,"(40.860516, -73.9146)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4460123,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,6:02,MANHATTAN,10027,40.815685,-73.9583,"(40.815685, -73.9583)",WEST 125 STREET,BROADWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4412460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,11:15,BRONX,10473,40.824085,-73.87622,"(40.824085, -73.87622)",BRUCKNER BOULEVARD,WARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4413211,Sedan,,,, +05/05/2021,6:55,QUEENS,11429,40.705128,-73.7466,"(40.705128, -73.7466)",COLFAX STREET,112 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4413717,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/07/2021,23:45,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unsafe Speed,,,,4414451,Tractor Truck Diesel,Sedan,,, +05/09/2021,11:20,QUEENS,11411,40.694546,-73.73828,"(40.694546, -73.73828)",,,222-14 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414679,Sedan,Bus,,, +05/02/2021,15:55,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415985,Taxi,,,, +05/12/2021,2:00,MANHATTAN,10013,40.72025,-74.003746,"(40.72025, -74.003746)",,,327 CHURCH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416232,Sedan,,,, +05/10/2021,7:30,,,40.78944,-73.82045,"(40.78944, -73.82045)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Following Too Closely,,,,4415186,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:19,,,40.607765,-73.98255,"(40.607765, -73.98255)",AVENUE P,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416717,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,7:32,BRONX,10468,40.861347,-73.897736,"(40.861347, -73.897736)",GRAND CONCOURSE,EAST 188 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416376,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,13:35,BROOKLYN,11219,40.640274,-73.99025,"(40.640274, -73.99025)",12 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417276,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/14/2021,19:36,,,40.68836,-73.8915,"(40.68836, -73.8915)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4417041,Sedan,,,, +05/12/2021,6:11,BROOKLYN,11236,40.639297,-73.91749,"(40.639297, -73.91749)",,,575 EAST 80 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416149,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,21:20,MANHATTAN,10012,40.722298,-73.99713,"(40.722298, -73.99713)",SPRING STREET,LAFAYETTE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416750,,,,, +05/05/2021,15:20,BROOKLYN,11205,40.697002,-73.95461,"(40.697002, -73.95461)",,,528 PARK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4416884,Sedan,Box Truck,,, +05/12/2021,14:50,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415969,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,17:40,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416364,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,13:15,,,40.6772,-73.94147,"(40.6772, -73.94147)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416987,Box Truck,Sedan,,, +05/11/2021,11:50,,,40.69969,-73.91557,"(40.69969, -73.91557)",IRVING AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415705,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,12:22,,,40.77039,-73.91771,"(40.77039, -73.91771)",HOYT AVENUE SOUTH,31 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416809,Sedan,Pick-up Truck,,, +05/10/2021,12:45,,,,,,30 AVENUE,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415366,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,14:46,QUEENS,11377,40.73725,-73.91799,"(40.73725, -73.91799)",50 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416530,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,15:19,QUEENS,11411,40.699043,-73.73812,"(40.699043, -73.73812)",,,115-50 220 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416508,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,23:15,,,40.68476,-73.78742,"(40.68476, -73.78742)",116 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416100,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,14:00,,,40.574593,-73.98764,"(40.574593, -73.98764)",WEST 21 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415241,Sedan,,,, +05/14/2021,19:26,BROOKLYN,11203,40.64491,-73.92192,"(40.64491, -73.92192)",CLARENDON ROAD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416965,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,18:35,,,40.873234,-73.86821,"(40.873234, -73.86821)",ROSEWOOD STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415819,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,11:40,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417192,Sedan,Bike,,, +05/13/2021,8:00,,,40.660755,-73.87611,"(40.660755, -73.87611)",LINWOOD STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4416445,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,13:30,,,40.839832,-73.92392,"(40.839832, -73.92392)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416584,Sedan,Bus,,, +05/12/2021,22:28,BROOKLYN,11239,40.64404,-73.877525,"(40.64404, -73.877525)",PENNSYLVANIA AVENUE,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416186,Sedan,Sedan,,, +05/13/2021,20:35,BROOKLYN,11225,40.66422,-73.95846,"(40.66422, -73.95846)",,,72 SULLIVAN PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416249,Sedan,,,, +05/11/2021,0:00,QUEENS,11370,40.76296,-73.887665,"(40.76296, -73.887665)",81 STREET,25 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4415671,Sedan,Sedan,,, +05/13/2021,2:37,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4415968,Sedan,,,, +05/10/2021,18:30,STATEN ISLAND,10305,40.588684,-74.09021,"(40.588684, -74.09021)",,,1661 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4415570,Pick-up Truck,,,, +05/13/2021,16:25,QUEENS,11423,40.71426,-73.77713,"(40.71426, -73.77713)",184 PLACE,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4416233,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,8:30,QUEENS,11427,40.720535,-73.75682,"(40.720535, -73.75682)",89 AVENUE,208 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460613,Sedan,Box Truck,,, +05/10/2021,18:00,STATEN ISLAND,10301,40.645924,-74.08603,"(40.645924, -74.08603)",WESTERVELT AVENUE,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4415858,Sedan,Sedan,Sedan,Sedan, +05/13/2021,22:00,,,,,,VANWYCK EXPRESSWAY service road,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4416423,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,7:00,MANHATTAN,10028,40.777874,-73.95175,"(40.777874, -73.95175)",EAST 86 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4416302,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,17:15,,,40.572754,-74.11404,"(40.572754, -74.11404)",10 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461401,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,12:13,QUEENS,11435,40.70058,-73.80775,"(40.70058, -73.80775)",ARCHER AVENUE,SUTPHIN BOULEVARD,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4415546,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:30,BRONX,10468,40.861988,-73.90285,"(40.861988, -73.90285)",,,2420 DAVIDSON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416281,Box Truck,Sedan,,, +05/10/2021,0:03,MANHATTAN,10032,40.83027,-73.94393,"(40.83027, -73.94393)",AMSTERDAM AVENUE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414796,Sedan,Bus,,, +09/24/2021,16:40,QUEENS,11365,40.73296,-73.80127,"(40.73296, -73.80127)",168 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461052,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,12:00,BRONX,10455,40.816555,-73.91677,"(40.816555, -73.91677)",3 AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416117,Bike,,,, +05/12/2021,18:15,QUEENS,11104,40.74359,-73.92242,"(40.74359, -73.92242)",42 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4415895,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,17:57,,,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416006,Sedan,,,, +05/14/2021,23:25,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,20:35,,,40.75372,-73.83283,"(40.75372, -73.83283)",MAPLE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415220,Station Wagon/Sport Utility Vehicle,,,, +05/06/2021,11:50,,,40.826492,-73.907745,"(40.826492, -73.907745)",3 AVENUE,EAST 165 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417155,Sedan,Bike,,, +05/14/2021,16:30,,,40.825428,-73.93631,"(40.825428, -73.93631)",WEST 151 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4417167,Sedan,,,, +05/14/2021,11:47,MANHATTAN,10028,40.778362,-73.955,"(40.778362, -73.955)",,,185 EAST 85 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416450,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/11/2021,0:00,BRONX,10468,40.871765,-73.891,"(40.871765, -73.891)",JEROME AVENUE,MINERVA PLACE,,1,0,0,0,0,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4415686,Bus,E-Bike,,, +05/13/2021,22:27,,,40.828316,-73.93118,"(40.828316, -73.93118)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4416371,Sedan,Taxi,,, +05/12/2021,1:17,BRONX,10469,40.873222,-73.83747,"(40.873222, -73.83747)",ELY AVENUE,HAMMERSLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415821,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,2:39,,,40.848625,-73.93425,"(40.848625, -73.93425)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4415692,Sedan,,,, +05/11/2021,16:34,BRONX,10459,40.828804,-73.88686,"(40.828804, -73.88686)",,,1028 FREEMAN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415748,Van,E-Bike,,, +05/13/2021,13:35,BRONX,10459,40.82244,-73.90199,"(40.82244, -73.90199)",EAST 163 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416317,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/14/2021,22:47,BROOKLYN,11236,40.641407,-73.91229,"(40.641407, -73.91229)",EAST 86 STREET,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,2:45,BRONX,10463,40.87351,-73.904076,"(40.87351, -73.904076)",,,2834 HEATH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4415863,Sedan,Taxi,,, +05/14/2021,17:05,QUEENS,11413,40.65835,-73.76471,"(40.65835, -73.76471)",,,149-09 183 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416498,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/10/2021,16:56,QUEENS,11434,40.68372,-73.78468,"(40.68372, -73.78468)",LONG STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4416102,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/11/2021,18:49,,,40.63612,-74.138245,"(40.63612, -74.138245)",CASTLETON AVENUE,TREADWELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416345,Sedan,,,, +05/13/2021,14:00,MANHATTAN,10003,40.727867,-73.99315,"(40.727867, -73.99315)",LAFAYETTE STREET,EAST 4 STREET,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4416875,Sedan,Bike,,, +05/10/2021,9:20,,,40.619083,-73.950264,"(40.619083, -73.950264)",AVENUE M,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415267,Station Wagon/Sport Utility Vehicle,Bike,,, +05/05/2021,12:21,BROOKLYN,11222,40.723938,-73.94136,"(40.723938, -73.94136)",,,202 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416023,Sedan,Sedan,,, +05/13/2021,0:32,BRONX,10459,40.82193,-73.88844,"(40.82193, -73.88844)",BRUCKNER BOULEVARD,BRYANT AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4416070,Bike,Sedan,,, +04/29/2021,17:09,,,40.76532,-73.771904,"(40.76532, -73.771904)",39 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416667,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,7:24,QUEENS,11430,,,,nassau expressway,north hangar road,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4415521,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/11/2021,14:40,,,40.78944,-73.82045,"(40.78944, -73.82045)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415601,Box Truck,Bus,,, +05/13/2021,17:00,BROOKLYN,11215,40.661594,-73.979355,"(40.661594, -73.979355)",PROSPECT PARK WEST,14 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416408,Sedan,Bike,,, +04/20/2021,13:50,BROOKLYN,11221,40.69006,-73.923615,"(40.69006, -73.923615)",,,890 QUINCY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417086,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,17:30,QUEENS,11373,40.72908,-73.88134,"(40.72908, -73.88134)",,,81-15 57 AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,13:40,,,40.60679,-73.97151,"(40.60679, -73.97151)",QUENTIN ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416334,Sedan,,,, +05/13/2021,15:55,MANHATTAN,10001,40.744984,-73.98992,"(40.744984, -73.98992)",,,57 WEST 27 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416864,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,17:39,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",JEROME AVENUE,WEST 192 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415640,E-Bike,,,, +05/14/2021,14:12,BROOKLYN,11239,40.64165,-73.879196,"(40.64165, -73.879196)",SEAVIEW AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417220,Sedan,Sedan,,, +05/12/2021,16:25,STATEN ISLAND,10305,40.59589,-74.085884,"(40.59589, -74.085884)",HYLAN BOULEVARD,OLD TOWN ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416081,Station Wagon/Sport Utility Vehicle,Bus,,, +05/14/2021,8:00,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4416413,Station Wagon/Sport Utility Vehicle,Bus,,, +05/12/2021,0:05,QUEENS,11208,40.68213,-73.865,"(40.68213, -73.865)",95 AVENUE,FORBELL STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,4417137,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck +05/10/2021,1:45,BRONX,10468,40.86067,-73.90681,"(40.86067, -73.90681)",,,2290 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Turning Improperly,,,,4414859,Sedan,Sedan,,, +05/12/2021,12:46,MANHATTAN,10026,40.80238,-73.954605,"(40.80238, -73.954605)",,,234 WEST 114 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416213,Sedan,,,, +05/14/2021,13:50,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416548,Sedan,Sedan,,, +05/06/2021,0:15,STATEN ISLAND,10304,40.610725,-74.08635,"(40.610725, -74.08635)",TARGEE STREET,STEUBEN STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4415789,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,18:40,,,40.656258,-73.87813,"(40.656258, -73.87813)",JEROME STREET,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4415312,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,15:48,,,40.78961,-73.97362,"(40.78961, -73.97362)",WEST 89 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415568,Bus,Sedan,,, +05/13/2021,16:26,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416482,Sedan,Pick-up Truck,,, +05/08/2021,11:20,BROOKLYN,11232,40.65799,-73.996925,"(40.65799, -73.996925)",27 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415719,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,20:35,BRONX,10454,40.80934,-73.91248,"(40.80934, -73.91248)",SAINT MARYS STREET,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416628,SANMEN COU,,,, +09/24/2021,17:10,BRONX,10454,40.810738,-73.92665,"(40.810738, -73.92665)",,,279 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460824,Sedan,,,, +05/11/2021,8:50,QUEENS,11370,40.75687,-73.89034,"(40.75687, -73.89034)",,,32-01 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415780,Sedan,,,, +05/12/2021,10:00,BROOKLYN,11206,40.70911,-73.93707,"(40.70911, -73.93707)",,,53 WATERBURY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415995,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,20:30,MANHATTAN,10032,40.83634,-73.94001,"(40.83634, -73.94001)",,,1045 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4417111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,17:41,BROOKLYN,11220,40.636288,-74.005165,"(40.636288, -74.005165)",,,5614 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,0:00,BROOKLYN,11205,40.69441,-73.97606,"(40.69441, -73.97606)",AUBURN PLACE,NORTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415593,Sedan,,,, +05/12/2021,14:45,BROOKLYN,11226,40.648643,-73.96075,"(40.648643, -73.96075)",OCEAN AVENUE,TENNIS COURT,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4416017,Taxi,Sedan,,, +05/11/2021,7:25,BROOKLYN,11236,40.646572,-73.89617,"(40.646572, -73.89617)",EAST 103 STREET,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416688,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,11:15,,,40.740875,-73.89962,"(40.740875, -73.89962)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415501,Sedan,,,, +05/12/2021,22:30,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415937,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,14:30,,,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416935,Bike,Sedan,,, +05/13/2021,23:50,BRONX,10460,40.841522,-73.87885,"(40.841522, -73.87885)",BOSTON ROAD,EAST 179 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4416381,Sedan,Sedan,,, +05/13/2021,4:20,,,40.664375,-73.92376,"(40.664375, -73.92376)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416201,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,14:50,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",WATTS STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416513,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/26/2021,23:20,MANHATTAN,10027,40.8073,-73.9444,"(40.8073, -73.9444)",,,72 WEST 125 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417012,Moped,Sedan,,, +05/14/2021,8:25,QUEENS,11364,40.746735,-73.74947,"(40.746735, -73.74947)",67 AVENUE,CLOVERDALE BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4417028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,0:50,BRONX,10458,40.867424,-73.89182,"(40.867424, -73.89182)",EAST 196 STREET,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4414965,Sedan,,,, +05/10/2021,0:05,,,40.669857,-73.95051,"(40.669857, -73.95051)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416418,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/07/2021,10:30,BROOKLYN,11221,40.689693,-73.92679,"(40.689693, -73.92679)",,,812 QUINCY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416921,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,22:08,MANHATTAN,10010,40.74147,-73.985435,"(40.74147, -73.985435)",PARK AVENUE SOUTH,EAST 25 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415725,Sedan,Taxi,,, +04/19/2021,18:00,,,40.57666,-73.965836,"(40.57666, -73.965836)",BRIGHTON 1 PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415724,PUMP,Sedan,,, +09/24/2021,8:12,BROOKLYN,11226,40.644344,-73.950806,"(40.644344, -73.950806)",CORTELYOU ROAD,EAST 28 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460789,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,11:52,,,40.615932,-73.95673,"(40.615932, -73.95673)",AVENUE N,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4416695,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Convertible, +05/11/2021,23:00,BRONX,10468,40.874474,-73.90031,"(40.874474, -73.90031)",RESERVOIR AVENUE,WEBB AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415873,Sedan,,,, +05/12/2021,17:20,BROOKLYN,11214,40.611324,-74.00602,"(40.611324, -74.00602)",84 STREET,16 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4415890,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,8:10,,,,,,ROEBLING AVENUE,HUTCHINSON RIVER PARKWAY EAST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415374,Sedan,,,, +05/10/2021,0:00,,,40.737785,-73.93496,"(40.737785, -73.93496)",VANDAM STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415840,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,22:30,,,40.74091,-73.83727,"(40.74091, -73.83727)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416504,Sedan,,,, +05/11/2021,14:40,,,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4416137,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/13/2021,0:03,,,40.730553,-74.010376,"(40.730553, -74.010376)",WEST STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4416055,Sedan,Sedan,,, +05/13/2021,18:30,BRONX,10454,40.810047,-73.92515,"(40.810047, -73.92515)",EAST 138 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416635,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,12:00,BRONX,10466,40.895912,-73.84863,"(40.895912, -73.84863)",BRUNER AVENUE,PITMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415812,Sedan,Pick-up Truck,,, +05/13/2021,18:00,,,40.83988,-73.916794,"(40.83988, -73.916794)",TOWNSEND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416580,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,15:30,BROOKLYN,11214,40.605556,-73.99369,"(40.605556, -73.99369)",82 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416723,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,7:10,BROOKLYN,11231,40.677505,-73.99979,"(40.677505, -73.99979)",,,136 LUQUER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4416616,Pick-up Truck,Sedan,Sedan,Sedan,Sedan +05/05/2021,14:23,STATEN ISLAND,10309,,,,,,3010 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4416038,Sedan,,,, +05/14/2021,14:00,MANHATTAN,10018,40.755997,-73.9944,"(40.755997, -73.9944)",,,502 9 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4416762,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/13/2021,20:40,,,40.800964,-73.971016,"(40.800964, -73.971016)",RIVERSIDE DRIVE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4416253,Sedan,Sedan,,, +05/13/2021,13:15,,,40.804745,-73.91194,"(40.804745, -73.91194)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416285,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:45,BROOKLYN,11217,40.681522,-73.983284,"(40.681522, -73.983284)",3 AVENUE,BALTIC STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416403,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,2:00,,,,,,JAMAICA AVENUE,ROBINSON PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4415679,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +05/12/2021,14:00,BROOKLYN,11213,40.668568,-73.94437,"(40.668568, -73.94437)",,,1378 UNION STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415878,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,14:30,,,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416791,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,8:13,BRONX,10467,40.86946,-73.87987,"(40.86946, -73.87987)",,,3016 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,17:38,BRONX,10452,40.8421,-73.92624,"(40.8421, -73.92624)",UNIVERSITY AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417049,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:00,BRONX,10474,40.806416,-73.887245,"(40.806416, -73.887245)",VIELE AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416567,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,0:15,,,40.862495,-73.9342,"(40.862495, -73.9342)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4416270,Sedan,,,, +05/12/2021,22:20,QUEENS,11417,40.679035,-73.83351,"(40.679035, -73.83351)",109 AVENUE,106 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416087,E-Bike,,,, +05/14/2021,11:36,BROOKLYN,11203,40.655334,-73.93077,"(40.655334, -73.93077)",UTICA AVENUE,LENOX ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416971,Bus,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,19:30,QUEENS,11420,40.66837,-73.80892,"(40.66837, -73.80892)",130 PLACE,135 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416010,Sedan,Sedan,,, +05/11/2021,13:13,BROOKLYN,11207,40.671165,-73.895676,"(40.671165, -73.895676)",,,265 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Following Too Closely,,,,4416169,Ambulance,Sedan,,, +05/10/2021,8:00,,,,,,RIVERSIDE DRIVE,WEST 168 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415448,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,0:07,QUEENS,11423,40.713398,-73.7704,"(40.713398, -73.7704)",190 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416435,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,12:00,QUEENS,11364,40.746155,-73.751595,"(40.746155, -73.751595)",67 AVENUE,224 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415744,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,21:45,QUEENS,11428,40.71758,-73.738625,"(40.71758, -73.738625)",,,216-26 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416536,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,18:10,QUEENS,11411,40.692616,-73.74447,"(40.692616, -73.74447)",119 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416238,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,20:00,,,40.675236,-73.97106,"(40.675236, -73.97106)",FLATBUSH AVENUE,PLAZA STREET EAST,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415473,Sedan,Sedan,,, +05/13/2021,20:45,,,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4416341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,11:24,BROOKLYN,11229,40.611683,-73.94694,"(40.611683, -73.94694)",AVENUE P,EAST 27 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4542530,Station Wagon/Sport Utility Vehicle,Bus,,, +05/14/2021,12:45,BROOKLYN,11220,40.63532,-74.02324,"(40.63532, -74.02324)",4 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416467,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,0:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415113,,,,, +05/10/2021,18:00,STATEN ISLAND,10301,40.646564,-74.08356,"(40.646564, -74.08356)",,,83 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4416851,Sedan,Sedan,Sedan,, +05/09/2021,0:30,,,40.828484,-73.83764,"(40.828484, -73.83764)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4417245,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,7:20,BRONX,10451,40.821438,-73.91807,"(40.821438, -73.91807)",,,346 EAST 156 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4416122,Taxi,,,, +04/29/2021,9:30,,,40.6835,-73.93516,"(40.6835, -73.93516)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416940,Box Truck,Sedan,,, +05/11/2021,23:30,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416049,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,21:17,BROOKLYN,11207,40.661835,-73.89311,"(40.661835, -73.89311)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Turning Improperly,,,,4416181,Sedan,Sedan,,, +05/06/2021,16:00,,,40.74463,-73.99898,"(40.74463, -73.99898)",WEST 22 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415757,Pick-up Truck,,,, +05/10/2021,0:00,BRONX,10459,40.823193,-73.90018,"(40.823193, -73.90018)",,,993 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4415041,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/13/2021,23:25,BRONX,10453,40.850494,-73.91546,"(40.850494, -73.91546)",UNIVERSITY AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4416313,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,8:50,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",HEMPSTEAD AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4416225,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,9:10,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4416386,Box Truck,Box Truck,,, +05/11/2021,23:06,QUEENS,11366,40.731102,-73.78809,"(40.731102, -73.78809)",,,73-41 182 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415614,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,17:49,BRONX,10466,40.90244,-73.842735,"(40.90244, -73.842735)",EAST 241 STREET,MONTICELLO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416797,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/13/2021,19:20,BROOKLYN,11204,40.626556,-73.99018,"(40.626556, -73.99018)",57 STREET,16 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416844,Taxi,,,, +05/11/2021,17:35,QUEENS,11420,40.673676,-73.81698,"(40.673676, -73.81698)",122 STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4415632,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/11/2021,18:55,,,40.58036,-73.96761,"(40.58036, -73.96761)",NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416999,Sedan,Bike,,, +05/11/2021,16:00,BRONX,10455,40.816246,-73.918304,"(40.816246, -73.918304)",,,387 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415653,Sedan,Bus,,, +05/12/2021,21:03,BROOKLYN,11212,40.654312,-73.90974,"(40.654312, -73.90974)",BOYLAND STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415905,Sedan,Motorbike,,, +05/14/2021,21:46,,,40.640034,-73.877945,"(40.640034, -73.877945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416806,Sedan,Sedan,,, +05/13/2021,15:00,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417103,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,18:00,,,40.727844,-73.98223,"(40.727844, -73.98223)",AVENUE A,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415776,Bike,Sedan,,, +05/10/2021,10:53,,,,,,BROOKLYN BRIDGE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415108,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,17:15,,,40.820404,-73.81482,"(40.820404, -73.81482)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4417077,Tractor Truck Diesel,Sedan,,, +05/14/2021,12:00,BRONX,10451,40.81768,-73.92975,"(40.81768, -73.92975)",GERARD AVENUE,EAST 146 STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4416624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,18:45,,,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4416575,Sedan,Sedan,,, +05/14/2021,20:56,MANHATTAN,10026,40.803894,-73.95204,"(40.803894, -73.95204)",7 AVENUE,WEST 117 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4417008,Sedan,E-Scooter,,, +05/10/2021,0:08,STATEN ISLAND,10307,40.515064,-74.242805,"(40.515064, -74.242805)",,,127 BARNARD AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4415047,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,9:30,,,40.829422,-73.9319,"(40.829422, -73.9319)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416606,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,18:03,BRONX,10461,40.843388,-73.82692,"(40.843388, -73.82692)",,,1526 JARVIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415991,Sedan,Sedan,,, +05/11/2021,16:49,QUEENS,11423,40.710938,-73.76654,"(40.710938, -73.76654)",WOODHULL AVENUE,193 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4415580,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,15:00,,,40.799717,-73.92991,"(40.799717, -73.92991)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415729,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/10/2021,10:30,QUEENS,11423,40.71148,-73.76418,"(40.71148, -73.76418)",,,195-14 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415137,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +05/14/2021,10:30,BROOKLYN,11215,40.666866,-73.97829,"(40.666866, -73.97829)",,,701 8 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416395,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,13:11,,,40.605595,-73.98404,"(40.605595, -73.98404)",KINGS HIGHWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416880,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,7:09,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416064,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,18:45,BRONX,10460,40.842148,-73.87186,"(40.842148, -73.87186)",,,516 MORRIS PARK AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4416664,Motorbike,Sedan,,, +09/23/2021,17:30,BROOKLYN,11217,40.68085,-73.97746,"(40.68085, -73.97746)",SAINT MARKS AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461365,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/12/2021,19:00,,,40.663727,-73.95386,"(40.663727, -73.95386)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415910,Sedan,,,, +05/14/2021,16:50,STATEN ISLAND,10309,40.542603,-74.20835,"(40.542603, -74.20835)",,,655 ROSSVILLE AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416925,Pick-up Truck,,,, +05/10/2021,10:10,BRONX,10466,40.893333,-73.861786,"(40.893333, -73.861786)",,,4160 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415472,Ambulance,,,, +05/14/2021,0:00,QUEENS,11356,40.78417,-73.84675,"(40.78417, -73.84675)",15 AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,17:30,,,40.824432,-73.873604,"(40.824432, -73.873604)",MORRISON AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416059,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,7:05,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",4 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416125,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,12:25,MANHATTAN,10034,40.867382,-73.926414,"(40.867382, -73.926414)",SEAMAN AVENUE,BEAK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415712,Sedan,,,, +05/10/2021,0:57,,,40.80322,-73.95253,"(40.80322, -73.95253)",7 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415844,Taxi,,,, +05/10/2021,18:00,MANHATTAN,10019,40.767918,-73.985725,"(40.767918, -73.985725)",WEST 57 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415255,Box Truck,Sedan,,, +05/14/2021,19:31,,,40.596703,-73.99803,"(40.596703, -73.99803)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416727,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,9:55,MANHATTAN,10038,40.712135,-74.0009,"(40.712135, -74.0009)",,,429 PEARL STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4416623,Sedan,,,, +05/11/2021,16:45,,,40.756035,-73.98695,"(40.756035, -73.98695)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415927,Van,Motorcycle,,, +04/29/2021,9:14,,,40.59813,-74.005,"(40.59813, -74.005)",20 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416719,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,22:35,,,,,,FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4415959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/12/2021,12:25,,,40.619736,-73.98958,"(40.619736, -73.98958)",18 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416178,Sedan,,,, +05/11/2021,22:30,QUEENS,11692,40.59412,-73.78899,"(40.59412, -73.78899)",,,59-14 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417061,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,13:50,BROOKLYN,11206,40.705994,-73.943,"(40.705994, -73.943)",,,121 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416257,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/09/2021,22:30,,,40.591755,-73.9083,"(40.591755, -73.9083)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416042,Sedan,Sedan,,, +04/30/2021,8:39,BROOKLYN,11207,40.66939,-73.89502,"(40.66939, -73.89502)",,,642 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,19:30,QUEENS,11385,40.698746,-73.89856,"(40.698746, -73.89856)",,,1837 SUMMERFIELD AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416142,Sedan,,,, +05/10/2021,9:00,BROOKLYN,11208,40.664192,-73.87759,"(40.664192, -73.87759)",ESSEX STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4415332,Sedan,Box Truck,,, +05/11/2021,20:30,BROOKLYN,11206,40.708305,-73.948425,"(40.708305, -73.948425)",LORIMER STREET,SCHOLES STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415683,Sedan,Bike,,, +05/12/2021,1:12,BROOKLYN,11210,40.62646,-73.94973,"(40.62646, -73.94973)",AVENUE J,EAST 27 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,21:40,,,40.80562,-73.97069,"(40.80562, -73.97069)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4416639,Sedan,Sedan,,, +09/23/2021,11:42,QUEENS,11368,40.74929,-73.86817,"(40.74929, -73.86817)",,,97-22 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460456,Box Truck,Bike,,, +04/27/2021,23:00,BROOKLYN,11238,40.677143,-73.96192,"(40.677143, -73.96192)",,,388 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416968,Sedan,,,, +05/13/2021,23:00,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",HOOK CREEK BOULEVARD,SUNRISE HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416274,Sedan,Sedan,,, +05/08/2021,14:30,QUEENS,11434,40.684982,-73.79062,"(40.684982, -73.79062)",155 STREET,115 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,12:00,,,40.750637,-73.94283,"(40.750637, -73.94283)",42 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416531,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,11:05,,,40.60855,-74.13216,"(40.60855, -74.13216)",NORTH GANNON AVENUE,BRADLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,DUMP,, +05/12/2021,21:29,MANHATTAN,10029,40.78858,-73.955284,"(40.78858, -73.955284)",5 AVENUE,EAST 97 STREET,,3,0,0,0,1,0,2,0,Following Too Closely,Passing or Lane Usage Improper,Unspecified,,,4416975,Taxi,Station Wagon/Sport Utility Vehicle,Bike,, +05/13/2021,22:00,BROOKLYN,11215,40.674,-73.982285,"(40.674, -73.982285)",1 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416399,Dump,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,22:56,BROOKLYN,11217,40.685413,-73.975105,"(40.685413, -73.975105)",,,62 HANSON PLACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4416472,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:12,,,40.675827,-73.817276,"(40.675827, -73.817276)",121 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416289,Sedan,,,, +05/12/2021,4:15,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",HILLSIDE AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415882,Bike,PK,,, +05/12/2021,9:30,MANHATTAN,10029,40.787075,-73.94503,"(40.787075, -73.94503)",,,1952 2 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4415800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,22:50,,,40.844864,-73.92256,"(40.844864, -73.92256)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415403,Sedan,,,, +05/14/2021,16:05,MANHATTAN,10025,40.794052,-73.970375,"(40.794052, -73.970375)",WEST 96 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417139,Sedan,Bus,,, +05/13/2021,10:00,MANHATTAN,10027,40.818386,-73.95632,"(40.818386, -73.95632)",,,3280 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4416157,Sedan,Unknown,,, +05/13/2021,13:45,,,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416242,Sedan,Sedan,,, +05/12/2021,12:37,BROOKLYN,11220,40.632633,-74.01254,"(40.632633, -74.01254)",65 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415899,Taxi,,,, +05/06/2021,20:00,QUEENS,11103,40.76548,-73.913704,"(40.76548, -73.913704)",28 AVENUE,STEINWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415978,Sedan,,,, +05/13/2021,8:20,BROOKLYN,11207,40.658226,-73.8893,"(40.658226, -73.8893)",,,879 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416193,Tractor Truck Diesel,Sedan,,, +05/14/2021,22:43,MANHATTAN,10027,40.817543,-73.95694,"(40.817543, -73.95694)",BROADWAY,WEST 131 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416819,Sedan,Sedan,,, +04/21/2021,1:21,,,40.821636,-73.93909,"(40.821636, -73.93909)",,,WEST 145 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416427,Taxi,Sedan,,, +05/14/2021,20:33,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417066,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,17:00,BROOKLYN,11215,40.66878,-73.9785,"(40.66878, -73.9785)",,,510 5 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415482,Sedan,,,, +05/10/2021,3:55,,,40.823772,-73.87245,"(40.823772, -73.87245)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415036,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,13:50,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416487,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,20:11,BROOKLYN,11231,40.677864,-73.99808,"(40.677864, -73.99808)",COURT STREET,4 PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416598,Sedan,,,, +05/14/2021,16:30,BROOKLYN,11210,40.633232,-73.95466,"(40.633232, -73.95466)",,,2310 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416706,Box Truck,Sedan,,, +05/03/2021,23:00,BRONX,10472,40.83363,-73.867744,"(40.83363, -73.867744)",,,1337 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415761,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,18:21,BRONX,10460,,,,ROSEDALE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416210,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,19:05,MANHATTAN,10026,40.798523,-73.94926,"(40.798523, -73.94926)",,,21 WEST 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417005,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,12:00,,,40.603874,-73.99544,"(40.603874, -73.99544)",85 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4415121,Sedan,Sedan,,, +05/14/2021,3:15,MANHATTAN,10019,40.763504,-73.97931,"(40.763504, -73.97931)",,,136 WEST 55 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416309,Sedan,,,, +05/10/2021,4:20,QUEENS,11358,40.75809,-73.795815,"(40.75809, -73.795815)",NORTHERN BOULEVARD,171 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4415229,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,12:40,BROOKLYN,11230,40.63524,-73.967636,"(40.63524, -73.967636)",CONEY ISLAND AVENUE,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415946,Sedan,,,, +05/14/2021,7:50,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416772,Sedan,Sedan,,, +05/14/2021,19:22,,,40.681885,-73.896645,"(40.681885, -73.896645)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417223,Sedan,,,, +05/13/2021,22:32,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4416353,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,19:20,QUEENS,11365,40.73468,-73.81062,"(40.73468, -73.81062)",,,67-11 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415610,Sedan,Sedan,,, +05/08/2021,2:11,MANHATTAN,10033,40.848625,-73.93425,"(40.848625, -73.93425)",WEST 180 STREET,SAINT NICHOLAS AVENUE,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4416110,Sedan,Sedan,,, +05/14/2021,13:40,STATEN ISLAND,10310,40.627384,-74.10955,"(40.627384, -74.10955)",HARVEST AVENUE,OAKLAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416859,Sedan,Sedan,,, +05/13/2021,5:00,QUEENS,11413,40.664043,-73.75019,"(40.664043, -73.75019)",,,143-75 228 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416221,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,8:50,MANHATTAN,10013,40.720432,-74.00675,"(40.720432, -74.00675)",,,16 ERICSSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415756,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,12:13,QUEENS,11355,40.751,-73.82571,"(40.751, -73.82571)",ELDER AVENUE,MAIN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416455,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,19:30,MANHATTAN,10037,40.811737,-73.936264,"(40.811737, -73.936264)",,,2155 MADISON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415393,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,2:15,BRONX,10460,40.840755,-73.876915,"(40.840755, -73.876915)",DEVOE AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417219,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,13:00,BRONX,10462,,,,HUGH GRANT CIRCLE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4415533,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,23:22,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415615,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/10/2021,20:11,STATEN ISLAND,10301,40.634274,-74.086296,"(40.634274, -74.086296)",,,12 CEBRA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415788,Sedan,Sedan,,, +04/09/2021,9:20,,,40.80333,-73.94873,"(40.80333, -73.94873)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417024,Sedan,,,, +05/10/2021,11:00,,,40.68218,-73.94659,"(40.68218, -73.94659)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415153,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,15:50,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415649,Pick-up Truck,,,, +05/13/2021,8:30,BRONX,10466,40.890648,-73.84875,"(40.890648, -73.84875)",EAST 233 STREET,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416802,Sedan,Sedan,,, +05/10/2021,15:00,QUEENS,11364,40.737255,-73.76269,"(40.737255, -73.76269)",210 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415198,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,12:20,,,40.738853,-73.952736,"(40.738853, -73.952736)",PULASKI BRIDGE,MC GUINNESS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416440,Sedan,Motorcycle,,, +05/11/2021,0:43,BROOKLYN,11215,40.66214,-73.98224,"(40.66214, -73.98224)",8 AVENUE,15 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4415584,Sedan,Ambulance,,, +05/13/2021,9:28,,,40.844883,-73.91028,"(40.844883, -73.91028)",SELWYN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416579,Chassis Cab,Sedan,,, +05/10/2021,10:53,QUEENS,11372,40.753925,-73.8721,"(40.753925, -73.8721)",,,34-43 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415080,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,7:23,,,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4415520,Sedan,Sedan,Sedan,, +05/14/2021,14:53,MANHATTAN,10026,40.797672,-73.94929,"(40.797672, -73.94929)",,,2 WEST 111 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417016,Sedan,Sedan,Sedan,, +05/12/2021,6:25,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,ATLANTIC AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416889,Bike,,,, +05/07/2021,8:54,MANHATTAN,10026,40.80455,-73.95276,"(40.80455, -73.95276)",,,147 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415815,Station Wagon/Sport Utility Vehicle,Bus,,, +05/13/2021,16:49,BROOKLYN,11204,40.611767,-73.97638,"(40.611767, -73.97638)",24 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4416264,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,7:55,BROOKLYN,11235,40.590714,-73.963684,"(40.590714, -73.963684)",,,2426 HUBBARD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415832,Garbage or Refuse,,,, +05/11/2021,9:07,QUEENS,11104,40.745438,-73.923,"(40.745438, -73.923)",41 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415421,Sedan,,,, +05/14/2021,9:20,BROOKLYN,11212,40.66283,-73.92615,"(40.66283, -73.92615)",EAST 94 STREET,RUTLAND ROAD,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416979,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,11:59,QUEENS,11365,40.74643,-73.80336,"(40.74643, -73.80336)",164 STREET,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4416685,Sedan,toolcat,,, +05/12/2021,17:15,MANHATTAN,10019,40.77006,-73.99078,"(40.77006, -73.99078)",,,555 WEST 57 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416096,Sedan,Sedan,,, +05/12/2021,19:45,,,40.800583,-73.960075,"(40.800583, -73.960075)",WEST 109 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416129,Sedan,,,, +05/11/2021,10:22,MANHATTAN,10035,40.799786,-73.94031,"(40.799786, -73.94031)",,,149 EAST 118 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415461,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,10:30,BROOKLYN,11236,40.64433,-73.919914,"(40.64433, -73.919914)",RALPH AVENUE,CANARSIE LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4416959,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/11/2021,10:50,,,40.766357,-73.7811,"(40.766357, -73.7811)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415931,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,11:00,QUEENS,11101,40.75529,-73.94603,"(40.75529, -73.94603)",,,41-13 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416813,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,10:45,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415783,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,12:40,BROOKLYN,11211,40.71558,-73.960144,"(40.71558, -73.960144)",NORTH 3 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416380,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/14/2021,11:30,MANHATTAN,10021,40.768803,-73.95837,"(40.768803, -73.95837)",2 AVENUE,EAST 72 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416449,Taxi,,,, +05/11/2021,15:50,,,40.586002,-73.97221,"(40.586002, -73.97221)",WEST 3 STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4415654,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/11/2021,18:23,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,14:14,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416898,Sedan,Sedan,,, +05/12/2021,15:25,QUEENS,11368,40.748066,-73.8574,"(40.748066, -73.8574)",108 STREET,44 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415963,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/14/2021,16:10,MANHATTAN,10002,40.71467,-73.98234,"(40.71467, -73.98234)",,,504 GRAND STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4416738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:16,BROOKLYN,11209,40.62389,-74.024025,"(40.62389, -74.024025)",,,523 82 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415514,Sedan,Sedan,,, +05/10/2021,21:57,QUEENS,11102,40.773205,-73.92334,"(40.773205, -73.92334)",,,25-13 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415986,Sedan,,,, +05/10/2021,20:00,,,40.63033,-73.93103,"(40.63033, -73.93103)",AVENUE I,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4415575,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,9:10,BRONX,10466,40.89481,-73.86183,"(40.89481, -73.86183)",BRONX RIVER PARKWAY,EAST 233 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4415825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,4:09,STATEN ISLAND,10305,40.586143,-74.07057,"(40.586143, -74.07057)",,,481 CAPODANNO BOULEVARD,3,0,0,0,0,0,3,0,Unspecified,,,,,4416476,Sedan,,,, +05/12/2021,19:00,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416174,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,16:00,,,40.67983,-74.00353,"(40.67983, -74.00353)",HAMILTON AVENUE,BROOKLYN QNS EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415247,Sedan,Sedan,,, +05/11/2021,11:40,BRONX,10468,40.872456,-73.90185,"(40.872456, -73.90185)",,,165 WEST 197 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415555,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/10/2021,22:15,BROOKLYN,11208,40.68022,-73.87121,"(40.68022, -73.87121)",CRESCENT STREET,WELDON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415313,Sedan,Sedan,,, +05/12/2021,10:26,BROOKLYN,11233,40.681602,-73.922485,"(40.681602, -73.922485)",,,233 RALPH AVENUE,2,0,0,0,0,0,2,0,Lost Consciousness,Other Vehicular,Unspecified,Unspecified,Unspecified,4415854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +05/14/2021,12:15,QUEENS,11040,40.749393,-73.708244,"(40.749393, -73.708244)",77 AVENUE,265 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4416491,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/13/2021,23:50,QUEENS,11411,40.694317,-73.737526,"(40.694317, -73.737526)",LINDEN BOULEVARD,223 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4416277,Sedan,Sedan,,, +05/12/2021,18:30,BROOKLYN,11218,40.636932,-73.97939,"(40.636932, -73.97939)",DAHILL ROAD,16 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4416836,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,17:45,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416360,Sedan,Sedan,,, +05/11/2021,23:00,,,40.86221,-73.89965,"(40.86221, -73.89965)",EAST FORDHAM ROAD,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4415688,Taxi,Sedan,,, +05/11/2021,18:03,BROOKLYN,11236,40.630306,-73.90389,"(40.630306, -73.90389)",,,8216 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,,,,,4415914,Sedan,,,, +04/30/2021,8:00,QUEENS,11385,40.703423,-73.87488,"(40.703423, -73.87488)",,,78-48 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416146,Sedan,,,, +05/11/2021,0:15,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4415211,Taxi,,,, +05/14/2021,10:00,BROOKLYN,11222,40.730473,-73.95885,"(40.730473, -73.95885)",,,58 KENT STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417255,Sedan,Box Truck,,, +05/12/2021,5:40,BRONX,10474,40.81099,-73.88652,"(40.81099, -73.88652)",,,538 COSTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415693,Bus,Sedan,,, +05/14/2021,4:25,BROOKLYN,11211,40.702526,-73.95934,"(40.702526, -73.95934)",BEDFORD AVENUE,HEWES STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4416306,Sedan,,,, +05/14/2021,15:00,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416523,Sedan,,,, +05/14/2021,19:15,,,40.73556,-73.915054,"(40.73556, -73.915054)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416651,Sedan,Sedan,Sedan,, +05/11/2021,17:30,BRONX,10460,40.84734,-73.88493,"(40.84734, -73.88493)",MAPES AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416391,Sedan,,,, +05/11/2021,23:55,MANHATTAN,10031,40.817593,-73.95319,"(40.817593, -73.95319)",AMSTERDAM AVENUE,WEST 133 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416161,Taxi,,,, +05/13/2021,19:00,BROOKLYN,11220,40.634563,-74.014114,"(40.634563, -74.014114)",7 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416245,Sedan,,,, +05/10/2021,15:00,BRONX,10466,40.8825,-73.847244,"(40.8825, -73.847244)",,,1187 EAST 224 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415820,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,0:55,QUEENS,11428,40.719215,-73.742256,"(40.719215, -73.742256)",,,93-40 215 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415942,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:24,,,40.83722,-73.859955,"(40.83722, -73.859955)",EAST AVENUE,PARKCHESTER ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416321,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,9:48,BRONX,10472,40.826656,-73.8739,"(40.826656, -73.8739)",MORRISON AVENUE,WATSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416106,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:45,QUEENS,11691,40.609108,-73.74685,"(40.609108, -73.74685)",CENTRAL AVENUE,BEACH 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415385,Sedan,Sedan,,, +05/14/2021,17:22,,,40.70722,-73.78957,"(40.70722, -73.78957)",170 STREET,JAMAICA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4416509,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,0:30,BRONX,10472,40.831875,-73.86636,"(40.831875, -73.86636)",WESTCHESTER AVENUE,BEACH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415737,Sedan,,,, +05/12/2021,11:10,BROOKLYN,11222,40.72821,-73.94933,"(40.72821, -73.94933)",MESEROLE AVENUE,NEWEL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416027,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,18:45,QUEENS,11106,40.760822,-73.921906,"(40.760822, -73.921906)",,,31-89 35 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416817,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,20:30,,,40.743336,-73.9511,"(40.743336, -73.9511)",11 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/27/2021,14:55,MANHATTAN,10019,40.76396,-73.98233,"(40.76396, -73.98233)",,,1700 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416560,Bike,E-Bike,,, +05/10/2021,14:51,MANHATTAN,10024,40.78288,-73.971664,"(40.78288, -73.971664)",,,2 WEST 82 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415165,Sedan,Van,,, +05/12/2021,12:10,,,,,,GRAND CONCOURSE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4415974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,15:40,,,40.80886,-73.95213,"(40.80886, -73.95213)",8 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416217,Sedan,Box Truck,,, +05/12/2021,11:10,,,40.720764,-73.99063,"(40.720764, -73.99063)",RIVINGTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416032,Sedan,Sedan,,, +05/13/2021,7:56,QUEENS,11369,40.76301,-73.87532,"(40.76301, -73.87532)",ASTORIA BOULEVARD,94 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416074,Box Truck,Concrete Mixer,,, +05/10/2021,9:10,BRONX,10457,40.847385,-73.88948,"(40.847385, -73.88948)",CROTONA AVENUE,OAKLAND PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415525,Sedan,Sedan,,, +05/13/2021,6:35,,,40.634293,-73.942986,"(40.634293, -73.942986)",GLENWOOD ROAD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4416955,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,13:50,,,40.760384,-73.76846,"(40.760384, -73.76846)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415620,Station Wagon/Sport Utility Vehicle,Van,,, +05/10/2021,10:00,BROOKLYN,11231,40.67671,-74.00477,"(40.67671, -74.00477)",HICKS STREET,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416296,Sedan,Tractor Truck Diesel,,, +05/12/2021,10:06,BROOKLYN,11219,40.623917,-74.00011,"(40.623917, -74.00011)",,,6614 14 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4416206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/05/2021,12:30,,,40.6229,-74.14943,"(40.6229, -74.14943)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416412,Sedan,Sedan,,, +05/05/2021,14:41,MANHATTAN,10026,40.802696,-73.949196,"(40.802696, -73.949196)",LENOX AVENUE,WEST 117 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415793,Convertible,Bus,,, +05/05/2021,13:20,MANHATTAN,10011,40.744034,-74.00313,"(40.744034, -74.00313)",WEST 19 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416459,Van,,,, +05/10/2021,16:00,BROOKLYN,11207,40.676826,-73.900185,"(40.676826, -73.900185)",,,2550 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415341,Bus,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,23:40,BRONX,10457,40.849106,-73.89495,"(40.849106, -73.89495)",EAST 179 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4416114,Station Wagon/Sport Utility Vehicle,Moped,,, +05/05/2021,17:50,MANHATTAN,10003,40.73447,-73.989944,"(40.73447, -73.989944)",EAST 14 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416854,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,16:30,BRONX,10473,40.821228,-73.8707,"(40.821228, -73.8707)",,,834 METCALF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4415736,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/13/2021,14:00,BROOKLYN,11225,40.663956,-73.95032,"(40.663956, -73.95032)",,,357 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4417098,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/10/2021,22:28,,,40.611034,-73.95258,"(40.611034, -73.95258)",AVENUE P,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415221,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,23:29,BRONX,10468,40.86248,-73.90958,"(40.86248, -73.90958)",,,212 WEST FORDHAM ROAD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4416778,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/10/2021,23:11,,,40.676495,-73.913704,"(40.676495, -73.913704)",,,ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415344,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:49,BRONX,10475,40.87044,-73.83101,"(40.87044, -73.83101)",,,99 ASCH LOOP,0,0,0,0,0,0,0,0,Unspecified,,,,,4416000,Sedan,,,, +05/13/2021,13:05,,,40.58987,-73.93699,"(40.58987, -73.93699)",AVENUE Z,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4416338,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/06/2021,18:00,,,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415751,Sedan,,,, +09/23/2021,11:50,MANHATTAN,10023,40.76889,-73.9821,"(40.76889, -73.9821)",BROADWAY,WEST 60 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460287,Bus,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,14:24,BROOKLYN,11229,40.603344,-73.93684,"(40.603344, -73.93684)",GERRITSEN AVENUE,AVENUE T,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416328,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,8:30,STATEN ISLAND,10312,,,,,,121 RUSSEK DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416929,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,15:20,BROOKLYN,11210,40.62573,-73.9564,"(40.62573, -73.9564)",OCEAN AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driverless/Runaway Vehicle,Unspecified,,,4415268,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/10/2021,18:50,STATEN ISLAND,10305,,,,FATHER CAPODANNO BLVD,ROBIN ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4415564,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/14/2021,12:54,BROOKLYN,11205,40.691544,-73.9685,"(40.691544, -73.9685)",CLINTON AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416874,Sedan,,,, +05/12/2021,0:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unsafe Speed,,,4415768,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,23:42,BROOKLYN,11232,40.650703,-74.00449,"(40.650703, -74.00449)",40 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416544,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,1:10,,,40.70904,-73.84146,"(40.70904, -73.84146)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414818,Tractor Truck Diesel,Sedan,,, +05/14/2021,9:10,BROOKLYN,11208,40.664192,-73.87759,"(40.664192, -73.87759)",LINDEN BOULEVARD,ESSEX STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416444,Station Wagon/Sport Utility Vehicle,Bus,,, +05/14/2021,19:20,QUEENS,11694,40.56805,-73.86334,"(40.56805, -73.86334)",,,190 BEACH 149 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416589,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,14:30,STATEN ISLAND,10305,40.583622,-74.09544,"(40.583622, -74.09544)",HYLAN BOULEVARD,SLATER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415589,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,9:52,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416189,Sedan,,,, +05/10/2021,12:58,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4417083,Station Wagon/Sport Utility Vehicle,van,,, +05/12/2021,9:23,QUEENS,11377,40.74089,-73.89581,"(40.74089, -73.89581)",69 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415847,Sedan,,,, +05/09/2021,0:30,QUEENS,11693,,,,ROCKAWAY BEACH BOULEVARD,CROSS BAY PARKWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415867,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,16:45,QUEENS,11373,40.740993,-73.882835,"(40.740993, -73.882835)",47 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415644,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,20:10,BROOKLYN,11226,40.653515,-73.9632,"(40.653515, -73.9632)",,,79 WOODRUFF AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415505,Sedan,Sedan,,, +05/02/2021,15:30,BROOKLYN,11207,40.657665,-73.89705,"(40.657665, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417207,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +05/11/2021,15:47,,,40.863556,-73.90755,"(40.863556, -73.90755)",ZEISER PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4415639,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +05/13/2021,14:40,,,40.864113,-73.92126,"(40.864113, -73.92126)",POST AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4416414,Station Wagon/Sport Utility Vehicle,Van,,, +05/11/2021,17:10,QUEENS,11413,40.663517,-73.758644,"(40.663517, -73.758644)",220 STREET,145 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415618,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,16:50,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",PROSPECT AVENUE,4 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4416549,Bike,,,, +05/11/2021,11:45,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,11:20,,,40.688778,-73.786446,"(40.688778, -73.786446)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415792,Sedan,Tractor Truck Diesel,,, +05/10/2021,4:40,,,40.86723,-73.88692,"(40.86723, -73.88692)",EAST 198 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414864,AMBULANCE,,,, +05/13/2021,20:45,BROOKLYN,11237,40.709393,-73.9219,"(40.709393, -73.9219)",FLUSHING AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416260,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/10/2021,13:25,STATEN ISLAND,10305,40.59589,-74.085884,"(40.59589, -74.085884)",HYLAN BOULEVARD,OLD TOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415569,Sedan,,,, +05/10/2021,12:40,,,40.68871,-73.95499,"(40.68871, -73.95499)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4415163,Sedan,E-SCOOTER,,, +05/11/2021,19:15,BROOKLYN,11220,40.644806,-74.00226,"(40.644806, -74.00226)",,,727 45 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415720,Sedan,,,, +05/10/2021,16:00,BROOKLYN,11208,40.678123,-73.87608,"(40.678123, -73.87608)",,,82 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415292,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,17:05,,,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4415852,Sedan,Sedan,,, +05/05/2021,20:19,BRONX,10454,40.808178,-73.93073,"(40.808178, -73.93073)",,,1 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4416282,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,13:25,QUEENS,11372,40.748352,-73.89174,"(40.748352, -73.89174)",,,37-18 74 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415779,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,15:44,BROOKLYN,11230,40.618206,-73.96103,"(40.618206, -73.96103)",CHESTNUT AVENUE,EAST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416018,Tractor Truck Diesel,Sedan,,, +05/11/2021,16:30,,,40.766357,-73.7811,"(40.766357, -73.7811)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415594,Box Truck,Sedan,,, +05/12/2021,12:33,BROOKLYN,11215,40.66899,-73.99641,"(40.66899, -73.99641)",15 STREET,2 AVENUE,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415869,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:35,BROOKLYN,11203,40.65454,-73.93363,"(40.65454, -73.93363)",,,770 SCHENECTADY AVENUE,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,Unspecified,,,4416936,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/12/2021,17:12,MANHATTAN,10021,40.767532,-73.953255,"(40.767532, -73.953255)",EAST 73 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416001,Sedan,Sedan,,, +05/08/2021,21:15,,,40.809574,-73.96805,"(40.809574, -73.96805)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,,,,4415886,Sedan,Sedan,,, +05/13/2021,8:50,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4416133,Van,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:30,BROOKLYN,11228,40.606842,-74.0155,"(40.606842, -74.0155)",CROPSEY AVENUE,BAY 8 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416265,Bike,,,, +05/10/2021,15:00,BROOKLYN,11209,40.620434,-74.024475,"(40.620434, -74.024475)",86 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415212,Sedan,Sedan,,, +05/13/2021,15:52,BROOKLYN,11218,40.63329,-73.97644,"(40.63329, -73.97644)",AVENUE F,EAST 2 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4416689,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,10:25,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4415500,Sedan,Sedan,,, +05/14/2021,18:40,,,40.655422,-73.95007,"(40.655422, -73.95007)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4416540,Station Wagon/Sport Utility Vehicle,Bike,,, +04/28/2021,15:00,,,40.77428,-73.97738,"(40.77428, -73.97738)",WEST 69 STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4416493,Sedan,Sedan,Sedan,Sedan, +05/06/2021,17:30,,,40.69577,-73.74746,"(40.69577, -73.74746)",205 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416101,Sedan,,,, +05/13/2021,10:35,BRONX,10458,,,,EAST BEDFORD PARK BOULEVARD,DECATUR AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416150,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,3:10,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4416752,Sedan,Motorcycle,,, +05/11/2021,5:55,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415721,Sedan,Pick-up Truck,,, +05/09/2021,21:15,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416992,Sedan,Sedan,,, +05/10/2021,19:08,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415524,Sedan,,,, +05/11/2021,14:30,BROOKLYN,11237,40.707027,-73.9236,"(40.707027, -73.9236)",JEFFERSON STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415706,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/12/2021,17:15,BROOKLYN,11230,40.618618,-73.96205,"(40.618618, -73.96205)",LOCUST AVENUE,EAST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416696,Sedan,Sedan,,, +05/12/2021,14:23,BRONX,10463,40.878284,-73.90803,"(40.878284, -73.90803)",KINGSBRIDGE AVENUE,WEST 230 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415874,Station Wagon/Sport Utility Vehicle,Bike,,, +05/10/2021,20:50,BRONX,10459,40.829037,-73.889015,"(40.829037, -73.889015)",,,1211 BRYANT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415242,Station Wagon/Sport Utility Vehicle,Van,Sedan,, +05/12/2021,13:01,BROOKLYN,11215,40.669594,-73.979355,"(40.669594, -73.979355)",,,244 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,15:00,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416054,,,,, +05/13/2021,20:40,,,,,,,,73 WEST DRIVE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416387,Bike,Bike,,, +05/06/2021,20:40,,,40.698433,-73.903366,"(40.698433, -73.903366)",CENTRE STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4416138,Sedan,Sedan,Sedan,, +04/06/2021,13:00,,,40.760494,-73.8614,"(40.760494, -73.8614)",ASTORIA BOULEVARD,108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416397,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,22:56,QUEENS,11435,40.714935,-73.81636,"(40.714935, -73.81636)",MAIN STREET,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416503,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/14/2021,15:45,BRONX,10455,40.812473,-73.90542,"(40.812473, -73.90542)",EAST 149 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416634,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,16:00,MANHATTAN,10036,40.757935,-73.98557,"(40.757935, -73.98557)",WEST 45 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415672,AMBULANCE,Sedan,,, +05/11/2021,20:00,,,40.74982,-73.94129,"(40.74982, -73.94129)",42 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416250,Carry All,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,16:30,MANHATTAN,10065,40.76624,-73.960236,"(40.76624, -73.960236)",2 AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416297,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/14/2021,13:45,BRONX,10459,40.82351,-73.89418,"(40.82351, -73.89418)",,,995 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416568,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,18:57,,,40.696117,-73.970436,"(40.696117, -73.970436)",VANDERBILT AVENUE,PARK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416234,PK,Bike,,, +05/12/2021,14:30,,,40.67818,-73.870705,"(40.67818, -73.870705)",LIBERTY AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4416086,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,9:05,,,40.88671,-73.81529,"(40.88671, -73.81529)",HUTCHINSON RIVER PARKWAY,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4416431,Sedan,Sedan,,, +05/13/2021,10:30,,,40.694794,-73.98246,"(40.694794, -73.98246)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416165,Pick-up Truck,Sedan,,, +05/14/2021,9:20,,,40.669704,-73.94774,"(40.669704, -73.94774)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416763,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,11:04,,,40.82317,-73.9275,"(40.82317, -73.9275)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4416361,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,5:00,BRONX,10455,40.81006,-73.90313,"(40.81006, -73.90313)",,,904 EAST 149 STREET,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4416118,Sedan,Taxi,Sedan,, +05/13/2021,19:29,BRONX,10460,40.84067,-73.88938,"(40.84067, -73.88938)",,,1809 MARMION AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416382,Sedan,Sedan,,, +05/10/2021,12:30,BRONX,10454,40.802933,-73.9123,"(40.802933, -73.9123)",EAST 136 STREET,WILLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416292,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,8:15,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4417081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,3:40,BRONX,10461,40.857365,-73.84657,"(40.857365, -73.84657)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416793,Station Wagon/Sport Utility Vehicle,ambulance,,, +05/13/2021,7:54,,,40.71406,-73.95292,"(40.71406, -73.95292)",METROPOLITAN AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417250,Tractor Truck Diesel,Sedan,,, +05/12/2021,11:27,,,40.84497,-73.9092,"(40.84497, -73.9092)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416607,Sedan,Sedan,,, +05/10/2021,14:29,BRONX,10452,40.844234,-73.92363,"(40.844234, -73.92363)",OGDEN AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415634,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,18:58,BROOKLYN,11225,40.65684,-73.96222,"(40.65684, -73.96222)",,,265 OCEAN AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4415583,Sedan,Sedan,,, +05/13/2021,23:51,BROOKLYN,11207,40.675785,-73.90269,"(40.675785, -73.90269)",ATLANTIC AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416463,Sedan,,,, +05/13/2021,10:00,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",KINGS HIGHWAY,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,15:10,BROOKLYN,11235,40.582542,-73.957214,"(40.582542, -73.957214)",NEPTUNE AVENUE,EAST 12 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415689,Sedan,Bike,,, +05/14/2021,16:36,BROOKLYN,11239,40.652477,-73.86798,"(40.652477, -73.86798)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417221,Sedan,Sedan,,, +05/14/2021,10:25,MANHATTAN,10007,40.71411,-74.00955,"(40.71411, -74.00955)",,,50 MURRAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416514,Sedan,,,, +05/10/2021,9:58,,,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4415079,Sedan,Pick-up Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +05/10/2021,14:22,QUEENS,11361,40.76283,-73.78473,"(40.76283, -73.78473)",201 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415109,Sedan,Sedan,,, +05/06/2021,11:36,MANHATTAN,10019,40.764572,-73.98072,"(40.764572, -73.98072)",,,871 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416562,Sedan,Motorcycle,,, +05/11/2021,23:15,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,6:43,MANHATTAN,10003,40.736546,-73.98905,"(40.736546, -73.98905)",EAST 17 STREET,UNION SQUARE EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415408,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,9:00,MANHATTAN,10024,40.783897,-73.97407,"(40.783897, -73.97407)",COLUMBUS AVENUE,WEST 82 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4417043,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,15:05,MANHATTAN,10029,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4416160,Sedan,Motorcycle,,, +05/12/2021,15:30,BRONX,10463,40.880398,-73.897606,"(40.880398, -73.897606)",,,3408 GILES PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415901,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,17:37,,,40.688652,-73.84709,"(40.688652, -73.84709)",96 STREET,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4415732,Sedan,Sedan,,, +04/28/2021,0:30,MANHATTAN,10026,40.799217,-73.952965,"(40.799217, -73.952965)",,,110 WEST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417013,Sedan,,,, +05/11/2021,14:46,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",NORTH CONDUIT AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4415628,Sedan,,,, +05/10/2021,15:30,BRONX,10473,40.822697,-73.87001,"(40.822697, -73.87001)",FTELEY AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415187,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,6:50,,,40.73986,-73.79012,"(40.73986, -73.79012)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,12:00,,,40.607555,-74.08711,"(40.607555, -74.08711)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Following Too Closely,,4415489,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/22/2021,6:00,QUEENS,11377,40.735085,-73.89692,"(40.735085, -73.89692)",MAURICE AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460755,Bus,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,0:13,,,40.861347,-73.897736,"(40.861347, -73.897736)",EAST 188 STREET,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4416033,Sedan,Moped,,, +05/12/2021,12:20,BRONX,10454,40.803677,-73.92209,"(40.803677, -73.92209)",EAST 132 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4415970,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +05/06/2021,18:21,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4415769,Sedan,Sedan,,, +05/10/2021,19:10,QUEENS,11427,40.720844,-73.75927,"(40.720844, -73.75927)",,,88-07 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4415600,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,6:40,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4416128,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/10/2021,6:27,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415037,Sedan,Sedan,,, +05/14/2021,8:45,QUEENS,11103,40.769485,-73.91503,"(40.769485, -73.91503)",,,34-16 ASTORIA BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,11:58,STATEN ISLAND,10304,40.631863,-74.07734,"(40.631863, -74.07734)",,,255 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415363,Sedan,,,, +05/11/2021,7:40,BRONX,10472,40.827354,-73.868706,"(40.827354, -73.868706)",,,1730 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415424,Sedan,,,, +05/09/2021,13:00,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4416155,Sedan,,,, +05/12/2021,15:11,BRONX,10459,40.822254,-73.88703,"(40.822254, -73.88703)",,,1340 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416069,Sedan,Pick-up Truck,,, +05/10/2021,11:07,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4415098,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,18:00,MANHATTAN,10012,40.725796,-73.99762,"(40.725796, -73.99762)",WEST HOUSTON STREET,MERCER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4416585,Taxi,Sedan,,, +05/10/2021,19:54,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415228,Beverage Truck,Sedan,,, +05/13/2021,15:40,QUEENS,11368,40.748154,-73.85403,"(40.748154, -73.85403)",111 STREET,46 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416918,Bike,,,, +05/13/2021,11:46,BROOKLYN,11206,40.701637,-73.942276,"(40.701637, -73.942276)",DEBEVOISE STREET,GRAHAM AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4416256,Box Truck,,,, +05/12/2021,13:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415807,Convertible,Sedan,,, +05/11/2021,13:25,BRONX,10462,,,,CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415534,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,17:30,BROOKLYN,11208,40.673252,-73.87773,"(40.673252, -73.87773)",BELMONT AVENUE,MONTAUK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4416187,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,1:33,MANHATTAN,10027,40.81722,-73.95228,"(40.81722, -73.95228)",CONVENT AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4460193,Sedan,Sedan,Sedan,, +05/12/2021,7:43,QUEENS,11422,40.666397,-73.73857,"(40.666397, -73.73857)",BROOKVILLE BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4415824,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,17:50,BRONX,10456,40.8375,-73.91061,"(40.8375, -73.91061)",COLLEGE AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416372,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,14:05,BROOKLYN,11219,40.638596,-73.992,"(40.638596, -73.992)",45 STREET,12 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4415574,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,8:24,QUEENS,11106,40.75694,-73.93464,"(40.75694, -73.93464)",CRESCENT STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415496,Sedan,,,, +05/04/2021,8:20,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415701,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/12/2021,8:01,QUEENS,11105,40.774357,-73.908195,"(40.774357, -73.908195)",DITMARS BOULEVARD,36 STREET,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4416805,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,15:33,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4415172,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +05/11/2021,21:30,STATEN ISLAND,10304,40.6199,-74.08571,"(40.6199, -74.08571)",,,1 LAUREL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415965,Sedan,,,, +05/09/2021,20:54,MANHATTAN,10027,40.80761,-73.95305,"(40.80761, -73.95305)",8 AVENUE,WEST 121 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4416219,Taxi,Sedan,,, +05/12/2021,8:39,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417168,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,16:15,MANHATTAN,10018,40.758377,-73.994385,"(40.758377, -73.994385)",WEST 41 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415775,Sedan,Bus,,, +05/10/2021,22:45,BROOKLYN,11233,40.673622,-73.9209,"(40.673622, -73.9209)",,,1423 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415236,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,13:30,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415663,Sedan,Sedan,,, +05/14/2021,17:23,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4416518,Station Wagon/Sport Utility Vehicle,Dump,,, +05/06/2021,8:00,QUEENS,11356,40.78168,-73.83857,"(40.78168, -73.83857)",,,130-07 20 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416677,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,20:33,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4416005,Sedan,,,, +05/14/2021,7:15,BROOKLYN,11226,40.652737,-73.94783,"(40.652737, -73.94783)",,,314 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416970,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:35,,,,,,,,65 EAST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4415923,Bike,,,, +04/29/2021,18:00,QUEENS,11413,40.672707,-73.758156,"(40.672707, -73.758156)",COOMBS STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415862,Sedan,,,, +05/11/2021,21:42,BROOKLYN,11208,40.668495,-73.86925,"(40.668495, -73.86925)",PINE STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Unspecified,,,4416170,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/12/2021,21:13,BROOKLYN,11208,40.674797,-73.867,"(40.674797, -73.867)",BELMONT AVENUE,LINCOLN AVENUE,,2,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416192,E-Bike,,,, +04/22/2021,14:33,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416229,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,0:00,,,40.77929,-73.98114,"(40.77929, -73.98114)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416499,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,11:40,,,40.722572,-73.851364,"(40.722572, -73.851364)",YELLOWSTONE BOULEVARD,AUSTIN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415801,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,9:30,,,40.59779,-73.946236,"(40.59779, -73.946236)",BEDFORD AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4415833,Sedan,Sedan,,, +05/14/2021,8:20,QUEENS,11691,40.606503,-73.75467,"(40.606503, -73.75467)",,,13-46 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,,,,4416555,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,5:30,BROOKLYN,11213,40.66573,-73.9404,"(40.66573, -73.9404)",,,555 CROWN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,18:23,BRONX,10451,40.819035,-73.92711,"(40.819035, -73.92711)",,,557 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416367,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,21:10,MANHATTAN,10036,40.758392,-73.981544,"(40.758392, -73.981544)",,,1211 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416097,Sedan,Sedan,,, +05/12/2021,16:23,BROOKLYN,11230,40.61891,-73.96116,"(40.61891, -73.96116)",LOCUST AVENUE,EAST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416022,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,2:15,QUEENS,11411,40.68867,-73.73138,"(40.68867, -73.73138)",119 AVENUE,232 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4416535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/13/2021,23:12,MANHATTAN,10009,40.723118,-73.98806,"(40.723118, -73.98806)",,,78 EAST 1 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Aggressive Driving/Road Rage,,,,4416876,Taxi,E-Bike,,, +05/12/2021,16:00,QUEENS,11435,40.714355,-73.82388,"(40.714355, -73.82388)",,,81-09 134 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415891,Box Truck,Bus,,, +05/14/2021,10:45,BROOKLYN,11209,40.61696,-74.02751,"(40.61696, -74.02751)",FORT HAMILTON PARKWAY,92 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416468,Tractor Truck Diesel,Sedan,,, +05/14/2021,18:00,QUEENS,11414,40.6575,-73.839455,"(40.6575, -73.839455)",CROSS BAY BOULEVARD,160 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4416641,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,14:15,STATEN ISLAND,10314,40.613075,-74.12257,"(40.613075, -74.12257)",MANOR ROAD,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4416852,Sedan,Sedan,,, +05/11/2021,7:05,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4416669,Sedan,Sedan,,, +05/13/2021,6:22,,,40.617382,-73.943474,"(40.617382, -73.943474)",AVENUE N,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416050,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/22/2021,19:10,QUEENS,11432,40.716007,-73.77948,"(40.716007, -73.77948)",,,183-21 DALNY ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4415796,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,0:15,,,40.669067,-73.86555,"(40.669067, -73.86555)",LINDEN BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416182,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,19:56,BRONX,10474,40.812828,-73.88894,"(40.812828, -73.88894)",,,643 BARRETTO STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415658,Ambulance,Van,,, +05/14/2021,23:36,,,40.67944,-73.89714,"(40.67944, -73.89714)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417224,Sedan,,,, +05/13/2021,23:29,BRONX,10467,40.86327,-73.87047,"(40.86327, -73.87047)",MACE AVENUE,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4416314,Sedan,Sedan,,, +05/13/2021,19:10,QUEENS,11434,40.671085,-73.77617,"(40.671085, -73.77617)",137 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4416352,Sedan,,,, +05/11/2021,18:19,,,40.726357,-73.76388,"(40.726357, -73.76388)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415611,Sedan,Sedan,,, +05/11/2021,11:30,QUEENS,11369,40.76318,-73.876335,"(40.76318, -73.876335)",ASTORIA BOULEVARD,93 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4415529,Tow Truck / Wrecker,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/14/2021,13:00,MANHATTAN,10025,40.792698,-73.97508,"(40.792698, -73.97508)",WEST END AVENUE,WEST 92 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416446,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,15:10,MANHATTAN,10012,40.72721,-73.99528,"(40.72721, -73.99528)",BROADWAY,BOND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416865,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,17:45,BRONX,10467,40.879524,-73.86053,"(40.879524, -73.86053)",,,827 EAST 215 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4416798,Sedan,Sedan,,, +05/14/2021,19:00,BRONX,10459,40.828587,-73.891304,"(40.828587, -73.891304)",,,960 HOME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416777,Sedan,,,, +05/12/2021,2:25,BROOKLYN,11212,40.668976,-73.90668,"(40.668976, -73.90668)",STONE AVENUE,BELMONT AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4415859,Sedan,Sedan,,, +05/13/2021,7:15,STATEN ISLAND,10306,40.57089,-74.1479,"(40.57089, -74.1479)",ARTHUR KILL ROAD,CLARKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416082,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/27/2021,6:50,,,40.64332,-74.01945,"(40.64332, -74.01945)",58 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415918,Bus,Sedan,,, +05/13/2021,3:35,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,3,0,0,0,0,0,3,0,Unspecified,,,,,4416037,Sedan,,,, +05/14/2021,2:15,,,40.81275,-73.94558,"(40.81275, -73.94558)",7 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4416429,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/14/2021,13:50,BRONX,10456,40.830536,-73.91571,"(40.830536, -73.91571)",MORRIS AVENUE,EAST 166 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416581,Bike,,,, +05/14/2021,23:30,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4417129,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +05/11/2021,16:51,MANHATTAN,10026,40.801235,-73.947845,"(40.801235, -73.947845)",,,36 WEST 116 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416214,Sedan,Sedan,,, +05/14/2021,13:40,MANHATTAN,10012,40.724236,-73.997795,"(40.724236, -73.997795)",BROADWAY,PRINCE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416483,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,13:00,QUEENS,11375,,,,70 ROAD,AUSTIN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416630,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,13:30,QUEENS,11370,40.758648,-73.89162,"(40.758648, -73.89162)",31 AVENUE,76 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460569,Taxi,E-Bike,,, +05/11/2021,15:33,BRONX,10454,40.80871,-73.92193,"(40.80871, -73.92193)",,,423 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415650,Box Truck,Bus,,, +05/05/2021,12:00,QUEENS,11370,40.767807,-73.89424,"(40.767807, -73.89424)",,,22-40 75 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415990,Sedan,,,, +05/14/2021,0:35,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416288,Sedan,Sedan,,, +05/14/2021,19:15,,,40.84554,-73.93278,"(40.84554, -73.93278)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417112,Sedan,Moped,,, +05/08/2021,16:49,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416357,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/10/2021,0:10,,,40.74223,-73.9933,"(40.74223, -73.9933)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415400,Sedan,Sedan,,, +05/11/2021,11:00,BROOKLYN,11218,40.642685,-73.99122,"(40.642685, -73.99122)",40 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415955,Station Wagon/Sport Utility Vehicle,Bus,,, +05/12/2021,13:15,,,40.610786,-73.976364,"(40.610786, -73.976364)",65 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416725,Sedan,,,, +05/14/2021,18:05,QUEENS,11106,40.761597,-73.9246,"(40.761597, -73.9246)",BROADWAY,32 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416815,Sedan,Moped,,, +05/14/2021,9:00,BROOKLYN,11249,40.720078,-73.95688,"(40.720078, -73.95688)",,,125 NORTH 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416461,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,20:35,BROOKLYN,11226,40.662407,-73.96516,"(40.662407, -73.96516)",EAST DRIVE,EAST LAKE DRIVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4416404,Bike,,,, +05/13/2021,7:03,MANHATTAN,10065,40.76221,-73.9601,"(40.76221, -73.9601)",,,1153 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416451,Sedan,,,, +05/12/2021,18:20,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416065,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,22:45,BRONX,10460,,,,ROSEDALE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416320,Sedan,Sedan,,, +05/08/2021,6:45,,,40.73002,-73.98355,"(40.73002, -73.98355)",EAST 12 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415743,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,0:00,,,40.689686,-73.89029,"(40.689686, -73.89029)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4417037,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,0:00,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",EAST 165 STREET,WALTON AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416573,Sedan,E-Scooter,,, +05/10/2021,3:40,,,40.88893,-73.86579,"(40.88893, -73.86579)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414949,Sedan,Sedan,,, +05/12/2021,10:51,BROOKLYN,11222,40.725433,-73.951744,"(40.725433, -73.951744)",NORMAN AVENUE,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4417277,Sedan,,,, +04/17/2021,1:10,QUEENS,11368,40.747158,-73.86286,"(40.747158, -73.86286)",102 STREET,43 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416920,E-Scooter,,,, +05/14/2021,8:35,,,40.712006,-73.75811,"(40.712006, -73.75811)",99 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416436,Station Wagon/Sport Utility Vehicle,Bike,,, +05/10/2021,9:41,BROOKLYN,11215,40.669987,-73.9932,"(40.669987, -73.9932)",,,145 12 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4415479,Box Truck,Sedan,,, +05/12/2021,7:02,MANHATTAN,10016,40.74892,-73.9779,"(40.74892, -73.9779)",LEXINGTON AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417127,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,8:00,,,40.688988,-73.84591,"(40.688988, -73.84591)",ATLANTIC AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416346,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,17:55,MANHATTAN,10035,40.79991,-73.93255,"(40.79991, -73.93255)",,,2396 1 AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4415728,Taxi,Taxi,,, +05/10/2021,14:00,,,40.680504,-73.92857,"(40.680504, -73.92857)",REID AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415145,Bus,Sedan,,, +05/13/2021,16:00,STATEN ISLAND,10306,40.564972,-74.13048,"(40.564972, -74.13048)",AMBOY ROAD,RIEDEL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416478,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,5:54,BRONX,10459,40.821415,-73.88933,"(40.821415, -73.88933)",BRUCKNER BOULEVARD,FAILE STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4415696,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,8:31,,,40.791557,-73.93866,"(40.791557, -73.93866)",EAST 109 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4415428,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,15:45,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4415933,Sedan,Sedan,Sedan,, +05/11/2021,5:20,,,40.764248,-73.92763,"(40.764248, -73.92763)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415370,Sedan,Van,,, +05/13/2021,11:45,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416209,Convertible,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,8:45,BROOKLYN,11218,40.646378,-73.97085,"(40.646378, -73.97085)",CONEY ISLAND AVENUE,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415950,Bike,,,, +05/12/2021,14:50,BRONX,10455,40.818672,-73.910835,"(40.818672, -73.910835)",,,726 SAINT ANNS AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4416123,Sedan,Sedan,,, +05/12/2021,9:17,MANHATTAN,10028,40.775425,-73.951965,"(40.775425, -73.951965)",,,351 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415760,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/09/2021,17:27,BROOKLYN,11212,40.665348,-73.922325,"(40.665348, -73.922325)",RALPH AVENUE,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416458,Sedan,Sedan,,, +05/12/2021,8:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415839,,,,, +05/14/2021,4:49,QUEENS,11691,40.6072,-73.74747,"(40.6072, -73.74747)",,,12-04 BEACH 12 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4416329,Sedan,Sedan,Sedan,, +05/12/2021,20:00,,,40.656784,-73.91379,"(40.656784, -73.91379)",CHURCH AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416197,Bike,Sedan,,, +05/07/2021,22:13,MANHATTAN,10003,40.727676,-73.98737,"(40.727676, -73.98737)",,,57 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416858,Sedan,Sedan,,, +05/10/2021,15:20,BRONX,10457,40.85185,-73.902725,"(40.85185, -73.902725)",EAST BURNSIDE AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4415254,Bus,Taxi,,, +05/11/2021,20:26,,,40.63962,-73.95477,"(40.63962, -73.95477)",NEWKIRK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415662,Bike,,,, +05/12/2021,23:38,BRONX,10458,40.857258,-73.88173,"(40.857258, -73.88173)",,,730 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417218,Sedan,Sedan,,, +09/22/2021,4:40,QUEENS,11373,40.739082,-73.88954,"(40.739082, -73.88954)",,,74-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460020,Sedan,Sedan,,, +05/10/2021,14:30,BROOKLYN,11232,40.651512,-74.00734,"(40.651512, -74.00734)",4 AVENUE,41 STREET,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4415579,Sedan,E-Bike,,, +05/11/2021,0:00,MANHATTAN,10027,40.80763,-73.94304,"(40.80763, -73.94304)",,,35 WEST 126 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4417021,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/08/2021,16:40,,,40.799458,-73.95154,"(40.799458, -73.95154)",WEST 112 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4416224,Sedan,FIRE TRUCK,,, +05/14/2021,8:00,,,40.60242,-73.99459,"(40.60242, -73.99459)",86 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4416726,Box Truck,Convertible,Sedan,, +05/13/2021,9:00,,,40.779922,-73.98068,"(40.779922, -73.98068)",WEST 74 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416500,Sedan,Bike,,, +05/08/2021,5:19,BRONX,10452,40.833916,-73.92702,"(40.833916, -73.92702)",WOODYCREST AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416368,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,8:45,,,40.66747,-73.9396,"(40.66747, -73.9396)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416422,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,22:00,BROOKLYN,11233,40.6811,-73.9224,"(40.6811, -73.9224)",,,245 RALPH AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4415828,Sedan,,,, +05/12/2021,19:11,BRONX,10469,40.870388,-73.8461,"(40.870388, -73.8461)",EAST GUN HILL ROAD,SEYMOUR AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,8:00,BROOKLYN,11207,40.67247,-73.90084,"(40.67247, -73.90084)",GLENMORE AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415331,Sedan,,,, +05/11/2021,14:00,QUEENS,11368,40.75646,-73.856865,"(40.75646, -73.856865)",,,34-48 112 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415530,Bus,Sedan,,, +05/11/2021,23:33,MANHATTAN,10019,40.765625,-73.98369,"(40.765625, -73.98369)",,,935 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415678,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/13/2021,15:30,QUEENS,11354,40.769493,-73.844315,"(40.769493, -73.844315)",,,124-04 31 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416670,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,6:30,BROOKLYN,11238,40.67983,-73.9583,"(40.67983, -73.9583)",CLASSON AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416273,Sedan,Pick-up Truck,,, +05/10/2021,16:30,QUEENS,11374,40.726463,-73.85943,"(40.726463, -73.85943)",65 ROAD,WETHEROLE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415197,Sedan,,,, +05/12/2021,17:50,BROOKLYN,11214,40.597923,-73.9872,"(40.597923, -73.9872)",86 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415894,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/12/2021,15:02,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416093,Dump,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,19:20,,,40.71527,-73.85857,"(40.71527, -73.85857)",YELLOWSTONE BOULEVARD,ALDERTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416522,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,18:15,,,40.586006,-74.16839,"(40.586006, -74.16839)",,,2485 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415491,Sedan,,,, +03/29/2022,9:00,QUEENS,11360,40.78643,-73.793274,"(40.78643, -73.793274)",CROSS ISLAND PARKWAY,201 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514495,Sedan,Sedan,,, +05/12/2021,17:30,BROOKLYN,11203,40.65764,-73.94162,"(40.65764, -73.94162)",,,554 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415877,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,19:50,,,40.611168,-74.1598,"(40.611168, -74.1598)",,,1526 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416009,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,16:47,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416241,Sedan,Sedan,,, +05/07/2021,18:45,MANHATTAN,10002,40.714005,-73.99749,"(40.714005, -73.99749)",DOYERS STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416026,Sedan,E-Bike,,, +05/14/2021,10:22,,,40.596935,-74.162254,"(40.596935, -74.162254)",,,2059 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416415,Pick-up Truck,Sedan,,, +05/06/2021,14:12,MANHATTAN,10027,40.805836,-73.94691,"(40.805836, -73.94691)",LENOX AVENUE,WEST 122 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415816,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,12:00,QUEENS,11368,40.735657,-73.85996,"(40.735657, -73.85996)",,,98-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416919,Sedan,,,, +09/24/2021,17:36,BROOKLYN,11219,40.63127,-74.002556,"(40.63127, -74.002556)",,,1105 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460979,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,15:10,,,40.693413,-73.940125,"(40.693413, -73.940125)",MARCUS GARVEY BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416888,Bike,,,, +05/12/2021,14:19,BRONX,10463,40.87684,-73.906334,"(40.87684, -73.906334)",,,5500 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4415866,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,16:00,BRONX,10454,40.799255,-73.91206,"(40.799255, -73.91206)",WALNUT AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415977,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,15:28,MANHATTAN,10027,40.81488,-73.95444,"(40.81488, -73.95444)",,,485 WEST 129 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417264,Sedan,,,, +05/10/2021,17:43,,,40.685234,-73.92654,"(40.685234, -73.92654)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4415829,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,7:25,,,40.62707,-74.01865,"(40.62707, -74.01865)",BAY RIDGE PARKWAY,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416559,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,15:00,MANHATTAN,10016,40.741863,-73.97677,"(40.741863, -73.97677)",,,334 EAST 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416953,Sedan,Sedan,,, +05/13/2021,17:40,QUEENS,11434,40.6878,-73.78949,"(40.6878, -73.78949)",MEYER AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416356,Sedan,Sedan,,, +05/14/2021,21:25,BROOKLYN,11215,40.660225,-73.99459,"(40.660225, -73.99459)",5 AVENUE,23 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4416550,Sedan,Bike,,, +05/11/2021,8:15,QUEENS,11362,40.757397,-73.72264,"(40.757397, -73.72264)",,,61-40 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4415930,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,7:05,,,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416019,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,10:50,BRONX,10457,40.84219,-73.89411,"(40.84219, -73.89411)",CROTONA AVENUE,CROTONA PARK NORTH,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416379,Taxi,,,, +05/13/2021,18:05,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416310,Sedan,,,, +05/14/2021,11:00,QUEENS,11422,40.65804,-73.737915,"(40.65804, -73.737915)",,,249-18 MAYDA ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4416495,Sedan,,,, +05/10/2021,8:18,MANHATTAN,10027,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415887,Sedan,,,, +05/11/2021,0:57,BRONX,10466,40.88923,-73.83517,"(40.88923, -73.83517)",,,1431 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415515,Dump,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/11/2021,11:00,BROOKLYN,11234,40.609264,-73.93209,"(40.609264, -73.93209)",AVENUE S,EAST 35 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4416046,Sedan,Sedan,Sedan,, +05/10/2021,16:55,QUEENS,11354,40.75895,-73.83192,"(40.75895, -73.83192)",ROOSEVELT AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415234,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,23:00,BROOKLYN,11216,40.68731,-73.94761,"(40.68731, -73.94761)",MARCY AVENUE,QUINCY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416901,Sedan,,,, +05/12/2021,12:30,QUEENS,11368,40.75013,-73.85509,"(40.75013, -73.85509)",,,42-01 111 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415962,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,18:20,BROOKLYN,11208,40.689293,-73.86979,"(40.689293, -73.86979)",,,59 NICHOLS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4416177,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/13/2021,10:05,BROOKLYN,11204,40.61483,-73.99838,"(40.61483, -73.99838)",BAY RIDGE PARKWAY,17 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,7:45,,,40.79926,-73.97489,"(40.79926, -73.97489)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415733,Sedan,,,, +05/14/2021,10:45,BROOKLYN,11238,40.683567,-73.96488,"(40.683567, -73.96488)",,,495 WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4416454,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/12/2021,12:00,,,40.586124,-73.990715,"(40.586124, -73.990715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415987,Convertible,Dump,,, +05/13/2021,17:35,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,9:30,BROOKLYN,11235,40.583652,-73.94356,"(40.583652, -73.94356)",EMMONS AVENUE,BEDFORD AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4416337,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,9:30,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417282,Ambulance,Sedan,,, +05/13/2021,10:59,QUEENS,11432,40.70742,-73.79716,"(40.70742, -73.79716)",164 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416439,Dump,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,14:15,QUEENS,11361,0,0,"(0.0, 0.0)",,,217-08 CORBETT ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416325,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,21:30,BROOKLYN,11234,40.63611,-73.926796,"(40.63611, -73.926796)",KINGS HIGHWAY,EAST 52 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416041,Sedan,Sedan,,, +05/10/2021,15:00,BROOKLYN,11233,40.67824,-73.91029,"(40.67824, -73.91029)",,,2160 FULTON STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4415855,Station Wagon/Sport Utility Vehicle,Van,,, +05/12/2021,13:50,QUEENS,11413,40.658203,-73.75397,"(40.658203, -73.75397)",147 AVENUE,228 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416490,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:00,MANHATTAN,10026,40.802902,-73.94965,"(40.802902, -73.94965)",,,103 WEST 117 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417004,Sedan,Sedan,,, +05/14/2021,23:15,,,40.799786,-73.968216,"(40.799786, -73.968216)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4416601,Sedan,Bike,,, +05/13/2021,0:00,QUEENS,11360,40.782444,-73.776535,"(40.782444, -73.776535)",23 AVENUE,BELL BOULEVARD,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416678,Sedan,Sedan,,, +05/14/2021,11:40,BROOKLYN,11203,40.642742,-73.92242,"(40.642742, -73.92242)",,,5702 AVENUE D,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416960,Sedan,Sedan,,, +05/12/2021,15:20,STATEN ISLAND,10306,40.577984,-74.100525,"(40.577984, -74.100525)",BEDFORD AVENUE,BOUNDARY AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4416078,Sedan,Sedan,,, +05/14/2021,0:00,,,40.877068,-73.906105,"(40.877068, -73.906105)",WEST 230 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4417104,Sedan,Box Truck,,, +05/07/2021,13:30,MANHATTAN,10010,40.739307,-73.98427,"(40.739307, -73.98427)",,,149 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417125,Sedan,,,, +05/07/2021,22:10,,,40.67342,-73.95017,"(40.67342, -73.95017)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416969,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,19:35,BRONX,10470,40.900486,-73.85411,"(40.900486, -73.85411)",RICHARDSON AVENUE,EAST 239 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416825,Dump,,,, +05/07/2021,5:00,BRONX,10454,40.802814,-73.90848,"(40.802814, -73.90848)",EAST 138 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416625,Sedan,,,, +05/14/2021,22:04,QUEENS,11436,40.67405,-73.79793,"(40.67405, -73.79793)",ROCKAWAY BOULEVARD,142 PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416578,Sedan,Sedan,,, +05/11/2021,23:34,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4416471,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,15:45,MANHATTAN,10007,40.715305,-74.0088,"(40.715305, -74.0088)",,,126 CHAMBERS STREET,0,0,0,0,0,0,0,0,,,,,,4415994,,,,, +05/16/2020,18:17,,,40.774166,-73.9031,"(40.774166, -73.9031)",41 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,12:00,QUEENS,11377,40.74538,-73.90131,"(40.74538, -73.90131)",,,39-56 63 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4416532,Box Truck,Sedan,,, +05/12/2021,10:00,QUEENS,11372,40.755917,-73.87317,"(40.755917, -73.87317)",,,33-47 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:40,BROOKLYN,11204,40.623367,-73.989494,"(40.623367, -73.989494)",17 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416390,Pick-up Truck,,,, +05/11/2021,16:36,QUEENS,11379,40.728935,-73.87455,"(40.728935, -73.87455)",85 STREET,60 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4415797,Sedan,Sedan,,, +05/14/2021,6:15,,,40.738605,-73.796425,"(40.738605, -73.796425)",FRESH MEADOW LANE,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4416324,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +05/11/2021,6:53,BRONX,10452,40.830143,-73.92858,"(40.830143, -73.92858)",JEROME AVENUE,ANDERSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415434,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,14:05,QUEENS,11363,40.77067,-73.7355,"(40.77067, -73.7355)",NORTHERN BOULEVARD,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416251,Bus,Sedan,,, +05/11/2021,11:40,,,40.737865,-74.00019,"(40.737865, -74.00019)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416061,Convertible,,,, +05/10/2021,7:25,,,40.78944,-73.82045,"(40.78944, -73.82045)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4414995,Sedan,,,, +05/10/2021,15:40,BROOKLYN,11208,40.672604,-73.87312,"(40.672604, -73.87312)",,,1215 SUTTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4415337,Sedan,,,, +05/09/2021,6:10,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,0,1,0,0,0,0,0,1,Driver Inattention/Distraction,,,,,4415909,Sedan,,,, +05/12/2021,21:35,STATEN ISLAND,10309,40.529728,-74.20477,"(40.529728, -74.20477)",PARKWOOD AVENUE,ASHLAND AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4416924,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,16:30,,,40.677605,-74.002754,"(40.677605, -74.002754)",NELSON STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416597,Sedan,,,, +05/10/2021,13:41,BRONX,10462,40.83789,-73.86322,"(40.83789, -73.86322)",,,1892 ARCHER STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4415112,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,15:50,,,40.852104,-73.88998,"(40.852104, -73.88998)",EAST 182 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4416119,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,1:30,BRONX,10458,40.85999,-73.89686,"(40.85999, -73.89686)",VALENTINE AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4415711,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/05/2021,18:35,MANHATTAN,10003,40.734695,-73.984566,"(40.734695, -73.984566)",,,235 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415843,Sedan,,,, +05/11/2021,5:15,,,40.608906,-74.03452,"(40.608906, -74.03452)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415945,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,1:34,STATEN ISLAND,10310,40.637745,-74.11082,"(40.637745, -74.11082)",HENDERSON AVENUE,PELTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416853,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/13/2021,11:35,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417091,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,22:20,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415347,Sedan,Pick-up Truck,,, +05/14/2021,3:00,,,40.61403,-73.974,"(40.61403, -73.974)",24 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416735,Sedan,,,, +04/27/2021,22:19,BROOKLYN,11203,40.65692,-73.926094,"(40.65692, -73.926094)",CLARKSON AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416930,Sedan,,,, +05/10/2021,18:30,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415192,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,19:10,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4415336,Sedan,Sedan,Sedan,, +05/11/2021,18:06,,,40.84707,-73.902054,"(40.84707, -73.902054)",CARTER AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415682,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,17:35,BROOKLYN,11230,40.619247,-73.97094,"(40.619247, -73.97094)",AVENUE L,EAST 5 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4415553,Bus,,,, +05/13/2021,8:57,,,,,,,,68 WESTMINISTER ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416705,Sedan,,,, +05/10/2021,18:30,BROOKLYN,11231,40.683655,-74.000404,"(40.683655, -74.000404)",,,174 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415245,Sedan,Sedan,,, +05/10/2021,20:21,,,,,,TIMBER RIDGE DRIVE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415565,Sedan,,,, +05/14/2021,8:41,BROOKLYN,11220,40.647903,-74.007416,"(40.647903, -74.007416)",45 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416545,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,8:30,BROOKLYN,11235,40.580482,-73.95984,"(40.580482, -73.95984)",CONEY ISLAND AVENUE,BRIGHTON 10 LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416132,Sedan,,,, +05/10/2021,0:12,,,40.716652,-73.8259,"(40.716652, -73.8259)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:30,,,40.819637,-73.93432,"(40.819637, -73.93432)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4416426,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:20,,,40.737785,-73.93496,"(40.737785, -73.93496)",BORDEN AVENUE,VANDAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/13/2021,15:57,QUEENS,11434,40.68111,-73.761185,"(40.68111, -73.761185)",FARMERS BOULEVARD,SIDWAY PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416588,Sedan,,,, +05/11/2021,11:46,,,40.662174,-73.953705,"(40.662174, -73.953705)",LEFFERTS AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4415590,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/02/2021,8:30,QUEENS,11101,40.7591,-73.94022,"(40.7591, -73.94022)",,,37-15 12 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415973,Sedan,,,, +05/11/2021,12:27,,,40.69733,-73.76202,"(40.69733, -73.76202)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4415700,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/10/2021,0:20,,,40.70362,-73.85628,"(40.70362, -73.85628)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416145,Sedan,,,, +05/11/2021,10:19,MANHATTAN,10007,40.714478,-74.01354,"(40.714478, -74.01354)",BARCLAY STREET,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415504,Sedan,Box Truck,,, +05/12/2021,12:45,,,40.74059,-73.94433,"(40.74059, -73.94433)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415848,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/11/2021,9:20,,,40.741234,-73.84573,"(40.741234, -73.84573)",G.C.P. / L.I.E (CDR),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415643,Sedan,,,, +05/13/2021,11:45,,,40.70636,-73.95192,"(40.70636, -73.95192)",BROADWAY,,,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4416261,Bike,,,, +05/11/2021,18:07,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",225 STREET,NORTH CONDUIT AVENUE,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4415881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,23:33,BRONX,10470,40.90304,-73.849556,"(40.90304, -73.849556)",FURMAN AVENUE,EAST 241 STREET,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4417205,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +05/12/2021,16:50,,,40.827866,-73.823586,"(40.827866, -73.823586)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4415997,Sedan,Moped,,, +05/12/2021,23:20,,,40.684452,-73.80662,"(40.684452, -73.80662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4416105,Sedan,Sedan,,, +05/13/2021,11:09,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",EAST 184 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416394,Sedan,Sedan,,, +05/11/2021,16:35,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4416510,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,18:00,,,,,,MAIN STREET,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,11:45,BRONX,10453,40.848846,-73.90831,"(40.848846, -73.90831)",MORRIS AVENUE,MOUNT HOPE PLACE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4415738,Sedan,,,, +05/14/2021,8:25,BRONX,10451,,,,E 138 st,Gerard ave,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416375,Dump,Sedan,,, +05/13/2021,13:00,MANHATTAN,10029,40.789066,-73.94285,"(40.789066, -73.94285)",,,312 EAST 104 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416981,Sedan,,,, +05/12/2021,8:35,BROOKLYN,11220,40.639446,-74.02696,"(40.639446, -74.02696)",RIDGE BOULEVARD,WAKEMAN PLACE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415898,Sedan,Bike,,, +05/14/2021,11:23,,,40.737785,-73.93496,"(40.737785, -73.93496)",BORDEN AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416411,Sedan,,,, +05/14/2021,15:25,MANHATTAN,10025,40.790928,-73.96893,"(40.790928, -73.96893)",WEST 93 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416527,Station Wagon/Sport Utility Vehicle,Bus,,, +05/11/2021,22:14,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416014,Sedan,,,, +09/17/2021,18:08,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",62 DRIVE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460714,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,18:05,,,40.82802,-73.93122,"(40.82802, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4416366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,16:13,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",167 STREET,HIGHLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416507,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,22:45,BRONX,10454,40.80723,-73.92055,"(40.80723, -73.92055)",BROWN PLACE,EAST 137 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416293,Sedan,Sedan,,, +05/14/2021,18:42,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416525,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,9:45,BRONX,10457,40.84764,-73.901,"(40.84764, -73.901)",WEBSTER AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416113,Sedan,PK,,, +05/13/2021,8:00,,,40.70083,-73.82635,"(40.70083, -73.82635)",124 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416134,Sedan,Sedan,,, +05/09/2021,20:55,,,40.7491,-73.984085,"(40.7491, -73.984085)",WEST 35 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4415926,,,,, +05/12/2021,9:37,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4416002,Box Truck,,,, +05/10/2021,11:35,MANHATTAN,10014,40.74026,-74.005875,"(40.74026, -74.005875)",9 AVENUE,WEST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416058,forklift,Box Truck,,, +05/06/2021,17:00,MANHATTAN,10016,40.789635,-73.94609,"(40.789635, -73.94609)",EAST 103 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4416228,Sedan,E-Bike,,, +05/13/2021,22:19,BROOKLYN,11204,40.616913,-73.98187,"(40.616913, -73.98187)",21 AVENUE,62 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4416266,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,21:36,,,40.673588,-73.73351,"(40.673588, -73.73351)",BROOKVILLE BOULEVARD,MERRICK BOULEVARD,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4416246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,15:26,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",EAST 149 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416638,Sedan,Sedan,,, +05/11/2021,16:30,,,40.679546,-73.82471,"(40.679546, -73.82471)",111 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415629,Sedan,Sedan,,, +05/13/2021,14:49,STATEN ISLAND,10306,40.569565,-74.11624,"(40.569565, -74.11624)",,,255 BEACH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,13:30,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",CHAMBERS STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415752,Sedan,,,, +05/13/2021,22:31,,,,,,FEATHERBED LANE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4416305,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:55,MANHATTAN,10035,40.79573,-73.93267,"(40.79573, -73.93267)",EAST 117 STREET,PLEASANT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416090,Sedan,Sedan,,, +05/11/2021,21:15,,,40.59307,-73.79233,"(40.59307, -73.79233)",BEACH CHANNEL DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4417060,Sedan,,,, +05/14/2021,7:00,BRONX,10452,40.83923,-73.92579,"(40.83923, -73.92579)",MERRIAM AVENUE,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416603,Sedan,,,, +05/12/2021,6:30,,,40.613075,-74.12257,"(40.613075, -74.12257)",VICTORY BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,12:15,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415765,Sedan,Sedan,,, +05/12/2021,9:00,MANHATTAN,10013,40.727028,-74.007385,"(40.727028, -74.007385)",,,333 HUDSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415853,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/12/2021,10:00,BROOKLYN,11228,40.61837,-74.00586,"(40.61837, -74.00586)",14 AVENUE,76 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4416486,Station Wagon/Sport Utility Vehicle,Bus,Sedan,Sedan,Sedan +05/11/2021,15:50,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4415770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,20:54,BROOKLYN,11207,40.67185,-73.8873,"(40.67185, -73.8873)",BELMONT AVENUE,BARBEY STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4416443,Pick-up Truck,Sedan,,, +05/14/2021,2:54,BRONX,10459,40.821865,-73.897385,"(40.821865, -73.897385)",,,931 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416564,Sedan,Sedan,,, +05/13/2021,9:00,QUEENS,11432,40.71314,-73.78179,"(40.71314, -73.78179)",181 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,14:06,BRONX,10456,40.833847,-73.91594,"(40.833847, -73.91594)",,,218 EAST 167 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460598,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:58,MANHATTAN,10026,40.80587,-73.95281,"(40.80587, -73.95281)",WEST 119 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417009,Sedan,,,, +05/10/2021,9:35,BRONX,10455,40.812267,-73.90843,"(40.812267, -73.90843)",,,514 CONCORD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415093,Ambulance,Box Truck,,, +05/10/2021,12:30,QUEENS,11375,40.714554,-73.83147,"(40.714554, -73.83147)",78 CRESCENT,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4415099,Sedan,,,, +05/14/2021,13:50,,,40.814934,-73.91496,"(40.814934, -73.91496)",BROOK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416633,Sedan,Box Truck,,, +05/11/2021,8:00,,,40.69519,-73.84296,"(40.69519, -73.84296)",104 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415388,Sedan,,,, +05/11/2021,0:00,BROOKLYN,11201,40.693783,-73.987206,"(40.693783, -73.987206)",JAY STREET,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4415588,Station Wagon/Sport Utility Vehicle,Bike,,, +05/14/2021,15:35,QUEENS,11415,40.706387,-73.832634,"(40.706387, -73.832634)",,,118-80 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4417147,Station Wagon/Sport Utility Vehicle,Bus,,, +05/10/2021,11:45,BROOKLYN,11223,40.59771,-73.96653,"(40.59771, -73.96653)",,,512 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415118,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/13/2021,12:53,,,40.601654,-74.01087,"(40.601654, -74.01087)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416196,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,0:25,,,40.828804,-73.84686,"(40.828804, -73.84686)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4415410,Sedan,,,, +09/18/2021,17:54,,,40.58061,-73.98565,"(40.58061, -73.98565)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461395,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,5:19,,,40.737785,-73.93496,"(40.737785, -73.93496)",VANDAM STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415604,Sedan,Dump,,, +05/10/2021,7:40,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415171,Carry All,Pick-up Truck,,, +05/14/2021,22:45,QUEENS,11356,40.785156,-73.84122,"(40.785156, -73.84122)",127 STREET,15 AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4416683,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,20:30,BROOKLYN,11228,40.618465,-74.02009,"(40.618465, -74.02009)",,,8523 10 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415913,Sedan,Sedan,,, +05/10/2021,9:34,BROOKLYN,11217,40.683464,-73.97569,"(40.683464, -73.97569)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4415466,Tractor Truck Gasoline,,,, +05/10/2021,18:07,,,40.716194,-73.996086,"(40.716194, -73.996086)",BOWERY,CANAL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416029,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,11:36,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",118 STREET,NORTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4415627,Sedan,Sedan,,, +05/10/2021,5:10,BROOKLYN,11223,40.60316,-73.98169,"(40.60316, -73.98169)",HIGHLAWN AVENUE,WEST 9 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4415031,Sedan,Sedan,Sedan,, +05/03/2021,11:15,QUEENS,11423,40.715736,-73.77181,"(40.715736, -73.77181)",,,190-05 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4415784,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,12:35,QUEENS,11101,40.75546,-73.92279,"(40.75546, -73.92279)",,,38-01 35 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416814,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/10/2021,15:45,,,40.705833,-73.81812,"(40.705833, -73.81812)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415390,Sedan,Box Truck,,, +05/12/2021,8:00,,,,,,RICHMOND ROAD,DONGAN HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415715,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,1:20,QUEENS,11369,40.757847,-73.876305,"(40.757847, -73.876305)",,,32-45 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416073,Sedan,,,, +05/12/2021,18:40,,,40.654163,-73.72637,"(40.654163, -73.72637)",HUNGRY HARBOR ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415941,Sedan,Sedan,,, +05/12/2021,18:35,MANHATTAN,10018,40.75591,-73.99448,"(40.75591, -73.99448)",9 AVENUE,WEST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415924,Sedan,Bike,,, +04/29/2021,0:00,,,40.665363,-73.73102,"(40.665363, -73.73102)",SOUTH CONDUIT AVENUE,247 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416494,Sedan,,,, +05/13/2021,12:50,MANHATTAN,10012,40.722298,-73.99713,"(40.722298, -73.99713)",LAFAYETTE STREET,SPRING STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416159,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,9:15,QUEENS,11356,40.781662,-73.833664,"(40.781662, -73.833664)",,,135-05 20 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415902,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,18:20,QUEENS,11385,40.705772,-73.863205,"(40.705772, -73.863205)",78 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,10:33,BROOKLYN,11222,40.729523,-73.95098,"(40.729523, -73.95098)",,,211 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4416315,Sedan,,,, +05/11/2021,7:04,MANHATTAN,10065,40.764107,-73.96682,"(40.764107, -73.96682)",LEXINGTON AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4415452,Sedan,,,, +05/12/2021,9:34,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4415763,Sedan,Taxi,,, +05/11/2021,13:00,,,40.625423,-74.15136,"(40.625423, -74.15136)",SANDERS STREET,FOREST AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416347,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,1:50,QUEENS,11369,40.759377,-73.87266,"(40.759377, -73.87266)",,,31-41 96 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4416034,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:00,BRONX,10475,40.882084,-73.83669,"(40.882084, -73.83669)",,,3870 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4415485,Sedan,,,, +04/29/2021,11:37,MANHATTAN,10009,40.72525,-73.97607,"(40.72525, -73.97607)",,,428 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415742,Sedan,,,, +05/11/2021,14:00,MANHATTAN,10013,40.716434,-74.00978,"(40.716434, -74.00978)",,,143 READE STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4416072,Bike,,,, +05/10/2021,8:00,BRONX,10472,40.833122,-73.86238,"(40.833122, -73.86238)",,,1885 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415038,Sedan,Pick-up Truck,,, +05/14/2021,18:40,,,40.639256,-73.968796,"(40.639256, -73.968796)",CONEY ISLAND AVENUE,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416848,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/10/2021,9:30,,,40.79021,-73.97504,"(40.79021, -73.97504)",WEST 89 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415115,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,2:30,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4416183,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +05/14/2021,13:25,BROOKLYN,11207,40.67734,-73.89909,"(40.67734, -73.89909)",,,1 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416465,Sedan,Sedan,,, +05/11/2021,9:42,,,,,,HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416112,Sedan,,,, +05/10/2021,20:00,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",HILLSIDE AVENUE,EDGERTON BOULEVARD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4415612,Sedan,,,, +05/14/2021,19:00,MANHATTAN,10001,40.74662,-73.99193,"(40.74662, -73.99193)",,,148 WEST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416847,Station Wagon/Sport Utility Vehicle,UNK,,, +05/12/2021,16:05,QUEENS,11417,40.68265,-73.8402,"(40.68265, -73.8402)",,,103-29 101 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416083,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/11/2021,8:45,MANHATTAN,10026,40.80629,-73.95773,"(40.80629, -73.95773)",MORNINGSIDE AVENUE,WEST 117 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416215,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/12/2021,13:30,BROOKLYN,11214,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416166,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,19:10,BROOKLYN,11236,40.649895,-73.90762,"(40.649895, -73.90762)",ROCKAWAY PARKWAY,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415917,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,17:32,BRONX,10457,40.846485,-73.89434,"(40.846485, -73.89434)",LAFONTAINE AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416051,Sedan,,,, +05/07/2021,11:30,,,40.650146,-74.00508,"(40.650146, -74.00508)",5 AVENUE,,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4415919,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,0:00,QUEENS,11426,40.725266,-73.7212,"(40.725266, -73.7212)",JAMAICA AVENUE,247 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,12:40,BRONX,10463,40.875042,-73.91228,"(40.875042, -73.91228)",WEST 225 STREET,JACOBUS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417116,Sedan,,,, +05/13/2021,15:25,,,,,,BAYCHESTER AVENUE,BAY PLAZA BLVD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,17:42,BRONX,10458,40.858788,-73.883835,"(40.858788, -73.883835)",,,2540 HUGHES AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4460424,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:00,BROOKLYN,11226,40.63995,-73.94915,"(40.63995, -73.94915)",,,2915 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Drugs (illegal),,,,4415157,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,10:00,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4415310,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,20:40,BROOKLYN,11205,40.693577,-73.96453,"(40.693577, -73.96453)",,,509 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417082,Sedan,Sedan,,, +05/13/2021,11:00,BROOKLYN,11208,40.665596,-73.87431,"(40.665596, -73.87431)",MONTAUK AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416464,Sedan,,,, +05/11/2021,9:45,,,40.751328,-73.94109,"(40.751328, -73.94109)",24 STREET,QUEENS PLAZA NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415606,Sedan,Box Truck,,, +05/11/2021,9:00,,,,,,,,224 Clinton b Fisk avenue,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415503,Sedan,Sedan,,, +05/11/2021,1:05,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416608,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:30,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4416572,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/08/2021,14:25,MANHATTAN,10025,40.8018,-73.96108,"(40.8018, -73.96108)",WEST 110 STREET,MORNINGSIDE DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4415885,,,,, +05/14/2021,20:50,,,40.805027,-73.95277,"(40.805027, -73.95277)",WEST 118 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417014,Sedan,Moped,,, +05/11/2021,19:43,,,40.73376,-73.93743,"(40.73376, -73.93743)",,,37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415582,Sedan,,,, +05/10/2021,6:00,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415074,Sedan,Sedan,,, +05/12/2021,6:12,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",HUDSON STREET,LAIGHT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415753,Sedan,Flat Bed,,, +05/09/2021,18:15,QUEENS,11106,40.761623,-73.93144,"(40.761623, -73.93144)",,,24-12 34 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415981,Bike,Sedan,,, +05/14/2021,22:20,QUEENS,11368,40.74841,-73.864914,"(40.74841, -73.864914)",,,40-48 100 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416923,Sedan,Sedan,,, +05/10/2021,13:26,,,40.673588,-73.73351,"(40.673588, -73.73351)",MERRICK BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415190,Bus,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,9:30,,,40.636242,-74.01237,"(40.636242, -74.01237)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415731,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,22:00,,,40.603832,-74.06895,"(40.603832, -74.06895)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4416479,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,10:22,,,40.785732,-73.97645,"(40.785732, -73.97645)",WEST 83 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417044,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,2:00,,,40.76616,-73.82091,"(40.76616, -73.82091)",35 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414993,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,10:00,MANHATTAN,10006,40.70971,-74.01285,"(40.70971, -74.01285)",CEDAR STREET,GREENWICH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415785,Dump,Sedan,,, +05/13/2021,22:50,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416276,Motorcycle,,,, +05/10/2021,22:00,,,40.84482,-73.837,"(40.84482, -73.837)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4415722,Station Wagon/Sport Utility Vehicle,Sedan,Flat Bed,, +05/10/2021,1:00,,,40.710762,-73.75855,"(40.710762, -73.75855)",201 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4415149,Sedan,Sedan,Van,, +05/12/2021,11:25,BROOKLYN,11220,40.637466,-74.02829,"(40.637466, -74.02829)",RIDGE BOULEVARD,68 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415912,Sedan,Bike,,, +05/10/2021,22:40,,,40.843136,-73.91097,"(40.843136, -73.91097)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,9:50,BRONX,10455,40.818954,-73.91404,"(40.818954, -73.91404)",EAST 154 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416631,Sedan,Box Truck,,, +05/13/2021,9:50,,,40.87683,-73.86472,"(40.87683, -73.86472)",TILDEN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416811,Sedan,Sedan,,, +05/14/2021,10:21,BROOKLYN,11210,40.628357,-73.95476,"(40.628357, -73.95476)",,,2201 AVENUE I,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4416697,Box Truck,Sedan,Sedan,, +05/04/2021,18:00,BROOKLYN,11218,40.642204,-73.973595,"(40.642204, -73.973595)",,,295 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415951,Bus,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,13:50,MANHATTAN,10001,40.74593,-73.988335,"(40.74593, -73.988335)",,,1200 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416127,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,9:00,BROOKLYN,11220,40.634617,-74.02353,"(40.634617, -74.02353)",4 AVENUE,BAY RIDGE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415377,Station Wagon/Sport Utility Vehicle,Bike,,, +05/07/2021,16:30,MANHATTAN,10012,40.728065,-73.99896,"(40.728065, -73.99896)",LAGUARDIA PLACE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416053,Sedan,UNK,,, +05/12/2021,11:59,MANHATTAN,10004,40.701576,-74.01215,"(40.701576, -74.01215)",,,5 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415838,Sedan,Box Truck,,, +05/02/2021,18:20,,,,,,WEST DRIVE,WEST LAKE DRIVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4416398,Bike,,,, +05/14/2021,9:01,,,40.743774,-73.886215,"(40.743774, -73.886215)",WOODSIDE AVENUE,79 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416447,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/14/2021,20:59,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4416586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,19:17,BROOKLYN,11214,40.60144,-74.00155,"(40.60144, -74.00155)",BATH AVENUE,20 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4416733,Sedan,Sedan,Sedan,Pick-up Truck, +05/10/2021,14:20,BROOKLYN,11201,40.691246,-73.98438,"(40.691246, -73.98438)",,,229 DUFFIELD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4415125,Sedan,Sedan,Sedan,, +05/11/2021,16:00,,,40.639324,-74.17128,"(40.639324, -74.17128)",,,38 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415806,Sedan,Sedan,,, +05/13/2021,21:35,MANHATTAN,10034,40.87043,-73.915115,"(40.87043, -73.915115)",BROADWAY,WEST 216 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416432,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,18:30,MANHATTAN,10036,40.76099,-73.99077,"(40.76099, -73.99077)",9 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415673,Sedan,Tow Truck / Wrecker,,, +05/13/2021,15:00,,,40.854084,-73.94109,"(40.854084, -73.94109)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416430,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,13:29,BROOKLYN,11212,40.667595,-73.90245,"(40.667595, -73.90245)",,,291 JUNIUS STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4415550,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,16:17,BROOKLYN,11206,40.704563,-73.94867,"(40.704563, -73.94867)",MIDDLETON STREET,BROADWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4416259,Box Truck,Sedan,,, +05/10/2021,9:33,MANHATTAN,10029,40.79162,-73.94885,"(40.79162, -73.94885)",PARK AVENUE,EAST 104 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416144,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/10/2021,5:00,MANHATTAN,10034,0,0,"(0.0, 0.0)",WEST 207 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4415467,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/14/2021,21:35,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4416610,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/10/2021,0:05,BROOKLYN,11234,40.62344,-73.92932,"(40.62344, -73.92932)",AVENUE L,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4416044,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +05/07/2021,21:25,BROOKLYN,11233,40.67704,-73.92241,"(40.67704, -73.92241)",,,1982 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4416978,Sedan,Sedan,,, +05/13/2021,18:00,,,,,,BRUCKNER BOULEVARD,EAST 135 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416287,Sedan,Box Truck,,, +05/14/2021,7:11,BRONX,10459,40.821415,-73.88933,"(40.821415, -73.88933)",FAILE STREET,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4416569,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,20:30,,,40.839478,-73.883896,"(40.839478, -73.883896)",BOSTON ROAD,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416794,scooter,,,, +05/09/2021,1:15,BROOKLYN,11205,40.695644,-73.9661,"(40.695644, -73.9661)",,,286 PARK AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,Other Vehicular,Other Vehicular,,4415690,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/12/2021,8:30,,,40.7499,-73.72802,"(40.7499, -73.72802)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:00,BROOKLYN,11205,40.697243,-73.967636,"(40.697243, -73.967636)",,,43 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415217,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,6:00,,,40.741455,-73.84258,"(40.741455, -73.84258)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4460045,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/11/2021,21:09,,,40.723454,-73.94033,"(40.723454, -73.94033)",SUTTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416012,Sedan,,,, +05/07/2021,5:00,QUEENS,11412,40.692524,-73.76355,"(40.692524, -73.76355)",,,188-21 DUNKIRK DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4416104,,,,, +05/13/2021,15:38,BRONX,10473,40.821228,-73.8707,"(40.821228, -73.8707)",,,834 METCALF AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416319,Sedan,MOPED,,, +05/10/2021,15:35,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415944,Sedan,Sedan,,, +05/14/2021,9:00,,,40.604618,-74.02771,"(40.604618, -74.02771)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416534,Sedan,Sedan,,, +05/11/2021,11:11,,,40.71314,-73.78179,"(40.71314, -73.78179)",HILLSIDE AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4415475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,9:09,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416554,Sedan,Sedan,,, +05/13/2021,6:30,QUEENS,11435,40.71606,-73.82334,"(40.71606, -73.82334)",,,135-10 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4416240,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,6:28,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4415746,Sedan,Flat Bed,,, +05/10/2021,16:45,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415433,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,10:50,BROOKLYN,11207,40.65478,-73.889984,"(40.65478, -73.889984)",WORTMAN AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416171,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,16:43,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,3,0,0,0,3,0,0,0,Unsafe Lane Changing,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,4415260,Bike,Bike,Bike,, +05/12/2021,15:05,QUEENS,11691,40.601723,-73.74904,"(40.601723, -73.74904)",,,14-41 GATEWAY BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4416021,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,19:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,11:30,,,40.690918,-73.846855,"(40.690918, -73.846855)",97 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415523,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,8:30,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4415598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/07/2021,15:40,MANHATTAN,10001,40.754807,-73.99966,"(40.754807, -73.99966)",,,505 WEST 34 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416124,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,8:55,QUEENS,11432,40.70715,-73.79299,"(40.70715, -73.79299)",168 STREET,91 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416457,Sedan,,,, +05/14/2021,23:55,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417225,Sedan,,,, +05/13/2021,15:50,QUEENS,11434,40.69225,-73.76669,"(40.69225, -73.76669)",LINDEN BOULEVARD,180 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4416351,Sedan,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,, +05/12/2021,0:45,,,40.738064,-73.83657,"(40.738064, -73.83657)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4415759,Sedan,,,, +05/10/2021,20:00,QUEENS,11101,40.748924,-73.937386,"(40.748924, -73.937386)",JACKSON AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,17:30,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417089,Dump,Sedan,,, +05/07/2021,18:50,QUEENS,11434,40.683777,-73.76975,"(40.683777, -73.76975)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416388,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,7:30,QUEENS,11372,40.752472,-73.87818,"(40.752472, -73.87818)",89 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4416076,Bus,Sedan,,, +05/14/2021,18:45,BRONX,10465,40.828075,-73.840065,"(40.828075, -73.840065)",,,2560 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416774,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,5:05,,,40.85102,-73.934105,"(40.85102, -73.934105)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415717,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,1:30,BRONX,10451,40.825455,-73.91317,"(40.825455, -73.91317)",MELROSE AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416330,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,16:42,MANHATTAN,10029,40.789032,-73.95241,"(40.789032, -73.95241)",,,55 EAST 99 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416336,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,20:30,MANHATTAN,10027,40.807148,-73.943985,"(40.807148, -73.943985)",,,55 WEST 125 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417020,Sedan,Sedan,,, +05/11/2021,14:10,BRONX,10473,40.817173,-73.861725,"(40.817173, -73.861725)",SOUND VIEW AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415535,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,23:40,QUEENS,11101,40.745712,-73.9277,"(40.745712, -73.9277)",,,43-02 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417130,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/12/2021,7:30,QUEENS,11412,40.701588,-73.7544,"(40.701588, -73.7544)",113 AVENUE,201 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415702,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,14:30,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415791,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,16:10,QUEENS,11374,40.727108,-73.859024,"(40.727108, -73.859024)",BOOTH STREET,65 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415196,Station Wagon/Sport Utility Vehicle,,,, +05/02/2021,12:30,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415907,Sedan,Sedan,,, +05/10/2021,1:00,,,40.86804,-73.879105,"(40.86804, -73.879105)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414873,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,7:20,QUEENS,11378,40.72015,-73.923164,"(40.72015, -73.923164)",58 ROAD,47 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416484,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,9:44,STATEN ISLAND,10305,40.595257,-74.062836,"(40.595257, -74.062836)",CAPODANNO BOULEVARD,OCEAN AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4415566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/08/2021,18:10,,,40.846657,-73.89619,"(40.846657, -73.89619)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416077,Sedan,,,, +05/11/2021,17:28,,,40.680477,-73.7921,"(40.680477, -73.7921)",FOCH BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415651,Sedan,Sedan,Sedan,, +05/12/2021,14:00,QUEENS,11373,0,0,"(0.0, 0.0)",,,78-01 51 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415849,Sedan,Sedan,,, +05/10/2021,16:43,MANHATTAN,10026,40.801666,-73.95677,"(40.801666, -73.95677)",,,297 WEST 112 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,,,,4416220,Sedan,Sedan,,, +05/10/2021,12:10,,,40.600945,-73.82037,"(40.600945, -73.82037)",CROSS BAY BOULEVARD,WEST 17 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415110,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:27,,,40.76663,-73.89605,"(40.76663, -73.89605)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4415989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,6:22,BROOKLYN,11211,40.717033,-73.95644,"(40.717033, -73.95644)",DRIGGS AVENUE,NORTH 7 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416383,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,2:30,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",7 AVENUE,WEST 23 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415774,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,8:40,BROOKLYN,11219,40.636703,-73.99038,"(40.636703, -73.99038)",13 AVENUE,46 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415956,Station Wagon/Sport Utility Vehicle,Bike,,, +05/10/2021,3:10,BRONX,10452,40.841133,-73.924,"(40.841133, -73.924)",PLIMPTON AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415635,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:00,BROOKLYN,11208,40.68732,-73.87105,"(40.68732, -73.87105)",,,124 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416462,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,20:49,BROOKLYN,11228,40.61579,-74.025246,"(40.61579, -74.025246)",,,636 92 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415595,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,10:30,,,40.828617,-73.84217,"(40.828617, -73.84217)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415509,Sedan,Sedan,,, +05/13/2021,20:00,BROOKLYN,11208,40.672688,-73.86935,"(40.672688, -73.86935)",,,612 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417222,Sedan,Pick-up Truck,,, +05/10/2021,9:45,,,40.638767,-74.02162,"(40.638767, -74.02162)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415939,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,17:35,,,40.75308,-73.93718,"(40.75308, -73.93718)",27 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416816,Sedan,Sedan,,, +05/14/2021,18:15,BROOKLYN,11221,40.68665,-73.920746,"(40.68665, -73.920746)",HOWARD AVENUE,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4416938,Sedan,,,, +05/14/2021,15:50,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAND STREET,GRAHAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416691,Sedan,,,, +05/13/2021,1:16,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416203,Bus,Sedan,,, +05/14/2021,13:42,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",CHAMBERS STREET,WEST BROADWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416515,Sedan,Bike,,, +05/13/2021,16:25,MANHATTAN,10018,40.754177,-73.984604,"(40.754177, -73.984604)",WEST 41 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416230,Station Wagon/Sport Utility Vehicle,Bike,,, +05/11/2021,14:00,QUEENS,11412,40.706177,-73.75735,"(40.706177, -73.75735)",,,200-09 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415817,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,8:46,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416151,Sedan,Bike,,, +05/12/2021,3:00,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4415727,Sedan,Carry All,,, +05/14/2021,20:30,BROOKLYN,11213,40.67145,-73.93037,"(40.67145, -73.93037)",,,1447 STERLING PLACE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4416993,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,12:00,BROOKLYN,11229,40.59846,-73.95987,"(40.59846, -73.95987)",,,1207 AVENUE U,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415834,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,14:00,,,40.665375,-73.95052,"(40.665375, -73.95052)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416420,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,8:28,BRONX,10454,40.80705,-73.91734,"(40.80705, -73.91734)",,,223 SAINT ANNS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415971,Sedan,Motorcycle,,, +05/08/2021,14:20,QUEENS,11430,40.665245,-73.80204,"(40.665245, -73.80204)",NASSAU EXPRESSWAY,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416098,Sedan,Sedan,,, +05/13/2021,14:12,BROOKLYN,11230,40.618385,-73.95669,"(40.618385, -73.95669)",,,1815 AVENUE M,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4416753,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,0:32,BROOKLYN,11206,40.70109,-73.94502,"(40.70109, -73.94502)",WHIPPLE STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4415684,Sedan,,,, +05/12/2021,17:39,BROOKLYN,11212,40.662544,-73.92023,"(40.662544, -73.92023)",,,196 EAST 98 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416198,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,14:26,BROOKLYN,11237,40.700356,-73.912575,"(40.700356, -73.912575)",WYCKOFF AVENUE,LINDEN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4415707,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,14:25,MANHATTAN,10039,40.824814,-73.93677,"(40.824814, -73.93677)",WEST 150 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417174,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,16:05,QUEENS,11366,40.733128,-73.783035,"(40.733128, -73.783035)",73 AVENUE,188 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415892,Bike,Station Wagon/Sport Utility Vehicle,Sedan,, +05/12/2021,17:30,BRONX,10463,40.87993,-73.89786,"(40.87993, -73.89786)",GILES PLACE,CANNON PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415875,Sedan,,,, +05/11/2021,8:40,QUEENS,11434,40.680294,-73.76282,"(40.680294, -73.76282)",MERRICK BOULEVARD,130 AVENUE,,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,,,,4416156,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,11:35,BRONX,10456,40.823334,-73.90574,"(40.823334, -73.90574)",EAST 163 STREET,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415243,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,11:25,BROOKLYN,11219,40.63395,-73.99184,"(40.63395, -73.99184)",,,1335 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415949,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,16:40,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,12:00,MANHATTAN,10002,40.71062,-73.98534,"(40.71062, -73.98534)",,,299 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415934,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,21:28,QUEENS,11105,40.77392,-73.89809,"(40.77392, -73.89809)",20 AVENUE,46 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,9:40,BRONX,10472,,,,CROSS BRONX EXPRESSWAY,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,10:30,BROOKLYN,11236,40.648777,-73.92039,"(40.648777, -73.92039)",RALPH AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415516,Sedan,,,, +05/13/2021,12:15,MANHATTAN,10024,40.784534,-73.9736,"(40.784534, -73.9736)",COLUMBUS AVENUE,WEST 83 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416502,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,1:16,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",EASTERN PARKWAY,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4416066,Sedan,Sedan,Sedan,, +05/12/2021,22:55,BRONX,10468,40.868385,-73.89416,"(40.868385, -73.89416)",EAST 196 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4415961,Sedan,Sedan,,, +05/11/2021,1:20,,,40.58375,-73.92345,"(40.58375, -73.92345)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4415223,Sedan,Sedan,,, +05/11/2021,5:30,BROOKLYN,11233,40.681744,-73.91976,"(40.681744, -73.91976)",,,195 HOWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415823,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/13/2021,0:30,,,40.670467,-73.8659,"(40.670467, -73.8659)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4416188,Sedan,,,, +05/12/2021,14:35,,,40.745724,-73.97813,"(40.745724, -73.97813)",EAST 34 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4415860,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,10:30,BROOKLYN,11221,40.695282,-73.92576,"(40.695282, -73.92576)",EVERGREEN AVENUE,STANHOPE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415177,Motorcycle,Sedan,,, +05/11/2021,16:00,MANHATTAN,10035,40.803757,-73.939995,"(40.803757, -73.939995)",EAST 123 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415560,Bus,Motorcycle,,, +05/11/2021,16:00,QUEENS,11357,40.7749,-73.803894,"(40.7749, -73.803894)",160 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,15:00,BROOKLYN,11223,40.597664,-73.97672,"(40.597664, -73.97672)",,,2054 WEST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416721,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/13/2021,9:40,BRONX,10452,0,0,"(0.0, 0.0)",UNIVERSITY AVENUE,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416369,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,15:50,QUEENS,11694,40.57981,-73.837204,"(40.57981, -73.837204)",ROCKAWAY BEACH BOULEVARD,BEACH 116 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416235,Sedan,,,, +05/14/2021,7:30,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",LIVONIA AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4416489,Sedan,Sedan,,, +05/13/2021,12:20,MANHATTAN,10019,40.765846,-73.97668,"(40.765846, -73.97668)",,,100 CENTRAL PARK SOUTH,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416304,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,9:09,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",1 AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415966,Sedan,Box Truck,,, +05/13/2021,14:00,,,40.700214,-73.94632,"(40.700214, -73.94632)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416255,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,23:40,,,40.66523,-73.931465,"(40.66523, -73.931465)",CROWN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416767,Sedan,,,, +05/14/2021,14:51,,,40.815693,-73.948685,"(40.815693, -73.948685)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,Oversized Vehicle,,,4417173,Bike,Bus,Station Wagon/Sport Utility Vehicle,, +05/13/2021,9:10,MANHATTAN,10029,40.79973,-73.94427,"(40.79973, -73.94427)",,,58 EAST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4416109,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/07/2021,8:23,,,40.676094,-73.94992,"(40.676094, -73.94992)",BERGEN STREET,,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4416973,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,14:50,BRONX,10451,40.818794,-73.92213,"(40.818794, -73.92213)",EAST 151 STREET,MORRIS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4416283,Sedan,Sedan,,, +05/09/2021,1:45,,,40.84091,-73.904755,"(40.84091, -73.904755)",WEBSTER AVENUE,CLAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4416362,Sedan,Sedan,Sedan,, +05/14/2021,11:00,,,40.76315,-73.81261,"(40.76315, -73.81261)",41 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416671,Sedan,,,, +04/19/2021,16:53,BROOKLYN,11201,40.68943,-73.99688,"(40.68943, -73.99688)",AMITY STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416008,Sedan,Bike,,, +05/10/2021,19:58,,,,,,BEACH 54 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4415397,Sedan,Sedan,,, +05/11/2021,12:15,BROOKLYN,11207,,,,jamaica avenue,alabama ave,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415497,Sedan,Sedan,,, +05/10/2021,12:18,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",WEST BROADWAY,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416517,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/14/2021,21:30,QUEENS,11105,40.776146,-73.904724,"(40.776146, -73.904724)",,,20-60 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416821,Sedan,,,, +09/24/2021,7:21,,,40.73204,-73.87034,"(40.73204, -73.87034)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460437,Station Wagon/Sport Utility Vehicle,Lift Boom,,, +05/11/2021,23:22,BROOKLYN,11210,40.623657,-73.95306,"(40.623657, -73.95306)",EAST 23 STREET,AVENUE K,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4415666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/11/2021,10:30,QUEENS,11375,40.711823,-73.83612,"(40.711823, -73.83612)",UNION TURNPIKE,MARKWOOD ROAD,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4415802,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,7:00,BROOKLYN,11205,40.689674,-73.96614,"(40.689674, -73.96614)",DE KALB AVENUE,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416272,Sedan,Sedan,,, +04/20/2021,13:50,QUEENS,11369,40.761143,-73.86434,"(40.761143, -73.86434)",ASTORIA BOULEVARD,105 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416401,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,13:39,BRONX,10468,40.86661,-73.90121,"(40.86661, -73.90121)",AQUEDUCT AVENUE,WEST 192 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416452,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,19:30,,,40.702484,-73.85981,"(40.702484, -73.85981)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416252,Tractor Truck Diesel,,,, +05/12/2021,22:50,,,40.768276,-73.86524,"(40.768276, -73.86524)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4416025,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/12/2021,16:15,,,40.787163,-73.97169,"(40.787163, -73.97169)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4415861,Sedan,Bike,,, +05/10/2021,16:20,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416511,Sedan,Pick-up Truck,,, +05/14/2021,4:35,BRONX,10462,40.83389,-73.85466,"(40.83389, -73.85466)",OLMSTEAD AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416323,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,0:00,BROOKLYN,11225,40.657425,-73.96231,"(40.657425, -73.96231)",,,231 OCEAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416539,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,17:30,,,40.666595,-73.87176,"(40.666595, -73.87176)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:00,STATEN ISLAND,10310,40.624912,-74.12549,"(40.624912, -74.12549)",,,90 EGBERT AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4416856,Sedan,Sedan,,, +05/10/2021,13:40,,,40.69558,-73.83949,"(40.69558, -73.83949)",JAMAICA AVENUE,108 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415739,Sedan,Bike,,, +05/11/2021,20:37,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4416997,Sedan,Tractor Truck Diesel,,, +09/13/2021,18:30,QUEENS,11368,40.757824,-73.86101,"(40.757824, -73.86101)",NORTHERN BOULEVARD,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4460988,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/13/2021,19:50,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416558,Sedan,Sedan,,, +05/13/2021,8:22,MANHATTAN,10000,40.787983,-73.955986,"(40.787983, -73.955986)",,,4 TRANSVERSE ROAD NUMBER FOUR,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4416108,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,12:12,,,40.67624,-73.866104,"(40.67624, -73.866104)",PITKIN AVENUE,CONDUIT BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4416167,Sedan,Sedan,Sedan,Sedan, +05/06/2021,12:40,QUEENS,11370,40.768562,-73.89328,"(40.768562, -73.89328)",,,76-11 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4415976,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,21:30,BRONX,10457,40.852787,-73.89663,"(40.852787, -73.89663)",PARK AVENUE,EAST 181 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4416384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,16:14,MANHATTAN,10002,40.712307,-73.99437,"(40.712307, -73.99437)",MARKET STREET,MADISON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4416035,Sedan,,,, +05/13/2021,7:30,BRONX,10453,40.849922,-73.905624,"(40.849922, -73.905624)",GRAND CONCOURSE,ECHO PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416594,Sedan,,,, +09/22/2021,17:45,BROOKLYN,11228,40.61696,-74.00505,"(40.61696, -74.00505)",,,1468 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460635,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,19:20,,,,,,WEST KINGSBRIDGE ROAD,SEDGWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415603,Sedan,Bike,,, +05/14/2021,16:00,BROOKLYN,11212,40.65432,-73.91788,"(40.65432, -73.91788)",EAST 93 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416952,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,15:50,BRONX,10463,40.87892,-73.90479,"(40.87892, -73.90479)",BROADWAY,WEST 231 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417102,Sedan,,,, +05/13/2021,10:00,,,40.72703,-73.85392,"(40.72703, -73.85392)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416208,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,0:00,BRONX,10472,40.84827,-73.88312,"(40.84827, -73.88312)",SOUTHERN BOULEVARD,EAST 182 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4416120,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,10:10,,,40.813385,-73.94511,"(40.813385, -73.94511)",WEST 132 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4415795,Sedan,Tanker,,, +05/08/2021,15:55,MANHATTAN,10026,40.803528,-73.95323,"(40.803528, -73.95323)",,,215 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416223,Sedan,,,, +05/13/2021,16:15,,,40.582287,-74.16907,"(40.582287, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4416355,Sedan,,,, +05/14/2021,14:00,MANHATTAN,10038,40.710102,-74.0075,"(40.710102, -74.0075)",,,129 FULTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416516,Sedan,Sedan,,, +05/10/2021,18:58,QUEENS,11369,40.760746,-73.862434,"(40.760746, -73.862434)",ASTORIA BOULEVARD,107 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4415528,Motorcycle,,,, +05/11/2021,17:20,BROOKLYN,11219,40.636703,-73.99038,"(40.636703, -73.99038)",46 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415948,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,8:00,BRONX,10455,40.814934,-73.89765,"(40.814934, -73.89765)",SOUTHERN BOULEVARD,EAST 156 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461466,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,10:53,,,40.828278,-73.907036,"(40.828278, -73.907036)",3 AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416326,Sedan,Sedan,,, +05/11/2021,12:50,,,40.812622,-73.92934,"(40.812622, -73.92934)",EAST 138 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4415638,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/10/2021,12:00,BROOKLYN,11212,,,,CHRISTOPHER AVE,Pitkin Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,5:48,,,40.830154,-73.93964,"(40.830154, -73.93964)",WEST 155 STREET,EDGECOMBE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416453,Sedan,Motorbike,,, +05/12/2021,10:18,QUEENS,11355,40.743366,-73.82765,"(40.743366, -73.82765)",60 AVENUE,138 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4415903,Sedan,Pick-up Truck,,, +05/14/2021,6:28,MANHATTAN,10029,40.7959,-73.938576,"(40.7959, -73.938576)",,,2224 2 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416340,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/13/2021,12:00,BROOKLYN,11203,40.639378,-73.93586,"(40.639378, -73.93586)",FOSTER AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416931,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,22:30,BRONX,10467,40.87419,-73.88035,"(40.87419, -73.88035)",,,3133 ROCHAMBEAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415630,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,21:30,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",UTICA AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417001,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,13:50,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415531,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,2:05,MANHATTAN,10010,40.73883,-73.983154,"(40.73883, -73.983154)",3 AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4414826,Sedan,Taxi,,, +05/01/2021,14:30,QUEENS,11103,40.76909,-73.91521,"(40.76909, -73.91521)",,,25-18 35 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416804,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,23:25,,,40.680477,-73.7921,"(40.680477, -73.7921)",FOCH BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416602,Sedan,Sedan,,, +05/13/2021,2:58,BROOKLYN,11233,40.678444,-73.92764,"(40.678444, -73.92764)",,,781 HERKIMER STREET,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4417026,Van,,,, +05/11/2021,10:45,BROOKLYN,11238,40.682693,-73.96317,"(40.682693, -73.96317)",,,944 FULTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,11:25,BROOKLYN,11207,40.674255,-73.89749,"(40.674255, -73.89749)",LIBERTY AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416191,Sedan,trailer,,, +05/14/2021,7:25,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416442,Station Wagon/Sport Utility Vehicle,Bus,,, +05/12/2021,7:00,,,40.735596,-73.89901,"(40.735596, -73.89901)",66 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415845,Sedan,,,, +05/04/2021,12:30,QUEENS,11368,40.75326,-73.864456,"(40.75326, -73.864456)",103 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415778,Sedan,,,, +05/08/2021,15:15,MANHATTAN,10001,40.753387,-73.99631,"(40.753387, -73.99631)",WEST 34 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415771,Sedan,Sedan,,, +05/11/2021,13:00,STATEN ISLAND,10306,40.567455,-74.11279,"(40.567455, -74.11279)",,,2636 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415561,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:05,QUEENS,11378,40.726406,-73.908485,"(40.726406, -73.908485)",,,59-15 MAURICE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415202,Sedan,,,, +05/12/2021,13:50,BRONX,10475,40.864464,-73.8245,"(40.864464, -73.8245)",,,4140 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415993,Bus,Sedan,,, +05/12/2021,10:55,,,40.65543,-74.003265,"(40.65543, -74.003265)",4 AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4416262,,,,, +05/10/2021,18:48,BRONX,10455,40.816593,-73.90042,"(40.816593, -73.90042)",,,937 EAST 156 STREET,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4415426,Taxi,Sedan,Sedan,, +05/10/2021,11:00,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4415101,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/12/2021,11:30,BROOKLYN,11206,40.70904,-73.94063,"(40.70904, -73.94063)",,,210 SCHOLES STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415998,Sedan,,,, +05/09/2021,5:30,BRONX,10470,40.901062,-73.86157,"(40.901062, -73.86157)",WEBSTER AVENUE,EAST 240 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4417203,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/07/2021,19:50,BROOKLYN,11216,40.68804,-73.947754,"(40.68804, -73.947754)",LEXINGTON AVENUE,MARCY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,9:00,,,,,,HARLEM RIVER DRIVE,1 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415813,Sedan,,,, +05/03/2021,11:24,BROOKLYN,11203,40.656494,-73.93271,"(40.656494, -73.93271)",,,781 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416416,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/10/2021,11:50,,,40.828075,-73.88543,"(40.828075, -73.88543)",SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416062,Sedan,,,, +05/13/2021,20:45,,,40.837425,-73.92037,"(40.837425, -73.92037)",JEROME AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Keep Right,,,,4416374,Sedan,Bike,,, +05/12/2021,12:43,BROOKLYN,11233,40.684788,-73.93037,"(40.684788, -73.93037)",,,636 HANCOCK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415830,Pick-up Truck,Sedan,,, +05/11/2021,16:10,,,40.719566,-73.94561,"(40.719566, -73.94561)",MEEKER AVENUE,GRAHAM AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4416015,Station Wagon/Sport Utility Vehicle,Moped,,, +09/19/2021,5:00,MANHATTAN,10001,40.75702,-74.00494,"(40.75702, -74.00494)",WEST 34 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4460540,Motorcycle,,,, +05/14/2021,22:45,QUEENS,11355,40.741947,-73.82119,"(40.741947, -73.82119)",60 AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416687,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,21:28,BROOKLYN,11215,40.67216,-73.98721,"(40.67216, -73.98721)",4 AVENUE,6 STREET,,4,0,0,0,1,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4415766,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +05/07/2021,20:28,,,40.705414,-73.78035,"(40.705414, -73.78035)",,,LIBERTY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4416506,Sedan,Sedan,Sedan,, +05/14/2021,7:45,BRONX,10467,40.883976,-73.88029,"(40.883976, -73.88029)",,,3550 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416546,Sedan,,,, +05/05/2021,13:30,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416553,Pick-up Truck,Pick-up Truck,,, +05/12/2021,17:58,,,40.75529,-73.99493,"(40.75529, -73.99493)",WEST 37 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415929,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/11/2021,3:00,BRONX,10472,40.833332,-73.86962,"(40.833332, -73.86962)",,,1329 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4415411,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/12/2021,14:45,BROOKLYN,11217,40.685375,-73.97556,"(40.685375, -73.97556)",,,55 HANSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:20,BRONX,10454,40.810352,-73.91761,"(40.810352, -73.91761)",EAST 142 STREET,BROOK AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4416284,Sedan,Sedan,Sedan,, +05/14/2021,8:30,MANHATTAN,10128,0,0,"(0.0, 0.0)",EAST 96 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416983,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:13,MANHATTAN,10029,40.793606,-73.94952,"(40.793606, -73.94952)",MADISON AVENUE,EAST 106 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4416135,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/12/2021,22:35,BROOKLYN,11222,40.72757,-73.95499,"(40.72757, -73.95499)",CALYER STREET,GUERNSEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416020,Sedan,Sedan,,, +05/12/2021,12:00,BROOKLYN,11206,40.70224,-73.94236,"(40.70224, -73.94236)",,,46 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416003,Sedan,,,, +05/10/2021,19:05,,,40.80704,-73.9698,"(40.80704, -73.9698)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415888,Dirt Bike,,,, +06/29/2022,14:40,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,,,,,4542077,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,16:45,BROOKLYN,11219,40.6433,-73.99427,"(40.6433, -73.99427)",10 AVENUE,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,23:03,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4416267,Sedan,Sedan,Sedan,, +05/11/2021,21:00,STATEN ISLAND,10306,40.582195,-74.1103,"(40.582195, -74.1103)",RICHMOND ROAD,MIDLAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4415714,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,18:15,QUEENS,11379,40.71799,-73.87144,"(40.71799, -73.87144)",82 STREET,FURMANVILLE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415577,Sedan,Sedan,,, +05/14/2021,8:40,BRONX,10454,40.808437,-73.91296,"(40.808437, -73.91296)",,,354 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416637,Sedan,,,, +05/13/2021,17:00,STATEN ISLAND,10312,40.53635,-74.151596,"(40.53635, -74.151596)",HYLAN BOULEVARD,LITTLEFIELD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4416474,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,16:50,,,,,,KNAPP STREET,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415988,Sedan,Motorcycle,,, +05/11/2021,11:00,BROOKLYN,11212,40.655533,-73.90518,"(40.655533, -73.90518)",,,659 OSBORN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415512,Sedan,,,, +04/30/2021,12:00,QUEENS,11375,40.72048,-73.83657,"(40.72048, -73.83657)",,,72-81 113 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415827,Sedan,,,, +05/10/2021,9:30,BROOKLYN,11206,40.70472,-73.940285,"(40.70472, -73.940285)",,,155 SEIGEL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415259,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/21/2021,9:20,QUEENS,11385,40.7056,-73.85822,"(40.7056, -73.85822)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416152,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,11:00,BRONX,10452,40.84177,-73.92549,"(40.84177, -73.92549)",MERRIAM AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417057,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,13:37,BROOKLYN,11216,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4416421,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike, +05/12/2021,15:30,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416089,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,19:50,STATEN ISLAND,10310,40.637585,-74.119934,"(40.637585, -74.119934)",CHAPPELL STREET,WAYNE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415957,Sedan,,,, +05/10/2021,12:01,MANHATTAN,10027,40.80647,-73.94644,"(40.80647, -73.94644)",WEST 123 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415856,Taxi,Bike,,, +05/13/2021,13:54,BRONX,10468,40.864326,-73.90661,"(40.864326, -73.90661)",,,2435 DEVOE TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416279,Sedan,,,, +05/14/2021,11:30,MANHATTAN,10036,40.760353,-73.99124,"(40.760353, -73.99124)",WEST 45 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416755,PK,,,, +05/11/2021,13:35,BROOKLYN,11205,40.699177,-73.955376,"(40.699177, -73.955376)",,,495 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4415681,Station Wagon/Sport Utility Vehicle,Dump,,, +05/10/2021,6:55,BROOKLYN,11207,40.676594,-73.89038,"(40.676594, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415330,Station Wagon/Sport Utility Vehicle,Pick-up Truck,PK,, +05/13/2021,20:30,,,40.579185,-73.96401,"(40.579185, -73.96401)",BRIGHTON 4 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416994,Taxi,,,, +05/12/2021,7:30,QUEENS,11378,40.731358,-73.89918,"(40.731358, -73.89918)",53 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416485,Bus,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:37,,,40.586765,-74.14617,"(40.586765, -74.14617)",,,1336 FOREST HILL ROAD,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4416358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,3:00,BRONX,10459,40.823483,-73.90005,"(40.823483, -73.90005)",EAST 164 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4415695,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/12/2021,0:16,BRONX,10458,40.85415,-73.88447,"(40.85415, -73.88447)",EAST 187 STREET,BEAUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416094,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,18:20,QUEENS,11366,40.724716,-73.79972,"(40.724716, -73.79972)",77 ROAD,169 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415893,Sedan,,,, +05/14/2021,0:37,MANHATTAN,10019,40.77226,-73.99364,"(40.77226, -73.99364)",,,840 12 AVENUE,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4416308,Sedan,Motorcycle,,, +05/07/2021,14:35,,,40.788532,-73.95322,"(40.788532, -73.95322)",EAST 98 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415798,Convertible,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,18:00,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",QUEENS BOULEVARD,77 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416521,Sedan,,,, +05/13/2021,10:35,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416163,Pick-up Truck,Sedan,,, +05/13/2021,0:32,BROOKLYN,11207,40.683243,-73.88672,"(40.683243, -73.88672)",,,438 JAMAICA AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4416176,Sedan,,,, +05/14/2021,23:33,MANHATTAN,10065,40.761173,-73.95789,"(40.761173, -73.95789)",YORK AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417160,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,10:28,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,HOYT AVENUE NORTH,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415492,Sedan,Sedan,,, +05/10/2021,16:40,QUEENS,11432,40.70752,-73.806435,"(40.70752, -73.806435)",,,150-71 87 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415383,Sedan,Sedan,,, +05/13/2021,22:35,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416389,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/14/2021,22:30,QUEENS,11419,40.69219,-73.82709,"(40.69219, -73.82709)",,,95-19 LEFFERTS BOULEVARD,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4417144,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,12:40,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4416116,Sedan,Sedan,,, +05/10/2021,13:50,,,40.672363,-73.93079,"(40.672363, -73.93079)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415124,Sedan,Sedan,,, +05/12/2021,16:35,BROOKLYN,11203,40.63905,-73.92593,"(40.63905, -73.92593)",,,5349 KINGS HIGHWAY,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4415865,Bike,Sedan,,, +05/06/2021,16:20,MANHATTAN,10011,40.73656,-74.0011,"(40.73656, -74.0011)",7 AVENUE SOUTH,WEST 11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416052,Sedan,Bike,,, +05/11/2021,9:30,,,40.815113,-73.95501,"(40.815113, -73.95501)",WEST 129 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415897,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,20:20,,,40.699207,-73.823,"(40.699207, -73.823)",89 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416343,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,22:22,QUEENS,11365,40.74217,-73.804436,"(40.74217, -73.804436)",164 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415920,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,11:40,BROOKLYN,11208,40.680893,-73.871376,"(40.680893, -73.871376)",GLEN STREET,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416195,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,9:50,MANHATTAN,10032,40.831818,-73.942825,"(40.831818, -73.942825)",,,1920 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416030,Bus,,,, +05/14/2021,14:19,BROOKLYN,11233,40.673237,-73.91402,"(40.673237, -73.91402)",SAINT MARKS AVENUE,BOYLAND STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4417071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,16:20,,,40.726376,-73.76624,"(40.726376, -73.76624)",GRAND CENTRAL PARKWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4415169,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,22:20,QUEENS,11105,40.769035,-73.905334,"(40.769035, -73.905334)",23 AVENUE,45 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4415980,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/06/2021,8:00,BRONX,10456,40.830536,-73.91571,"(40.830536, -73.91571)",MORRIS AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416365,Sedan,,,, +05/11/2021,18:10,BROOKLYN,11235,40.580166,-73.95254,"(40.580166, -73.95254)",,,74 AMHERST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415626,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,9:00,MANHATTAN,10022,40.762913,-73.96981,"(40.762913, -73.96981)",PARK AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415033,Station Wagon/Sport Utility Vehicle,Van,,, +05/14/2021,10:30,,,40.74478,-73.93262,"(40.74478, -73.93262)",QUEENS BOULEVARD,32 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416410,Sedan,Sedan,,, +05/11/2021,19:39,MANHATTAN,10027,40.807037,-73.949745,"(40.807037, -73.949745)",WEST 122 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4416212,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,16:40,,,40.618813,-73.93272,"(40.618813, -73.93272)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416045,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,23:34,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415607,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,15:50,,,40.667576,-73.72951,"(40.667576, -73.72951)",HOOK CREEK BOULEVARD,137 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4416496,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/14/2021,19:54,BROOKLYN,11235,40.583504,-73.95745,"(40.583504, -73.95745)",,,2775 EAST 12 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4416571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/10/2021,16:40,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4415391,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +05/14/2021,11:59,MANHATTAN,10016,40.742237,-73.97961,"(40.742237, -73.97961)",,,230 EAST 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416863,Bike,Sedan,,, +05/11/2021,15:00,BROOKLYN,11234,40.605072,-73.92988,"(40.605072, -73.92988)",AVENUE U,EAST 33 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416047,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,13:55,MANHATTAN,10027,40.809692,-73.950066,"(40.809692, -73.950066)",,,264 WEST 125 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4416227,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,8:20,QUEENS,11420,40.675518,-73.81088,"(40.675518, -73.81088)",127 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4415754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,17:35,QUEENS,11368,40.742096,-73.86748,"(40.742096, -73.86748)",CORONA AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416311,Bus,,,, +05/10/2021,18:20,QUEENS,11420,40.68354,-73.81065,"(40.68354, -73.81065)",111 AVENUE,132 STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415233,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +05/14/2021,23:00,BROOKLYN,11207,40.681427,-73.886955,"(40.681427, -73.886955)",,,57 ASHFORD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417209,Sedan,Pick-up Truck,,, +05/11/2021,15:45,BROOKLYN,11229,40.610504,-73.95767,"(40.610504, -73.95767)",AVENUE P,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415661,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/08/2021,0:15,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416294,Sedan,,,, +05/14/2021,13:22,BRONX,10456,40.835297,-73.91291,"(40.835297, -73.91291)",MORRIS AVENUE,EAST 169 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416604,Sedan,Bike,,, +05/13/2021,8:05,STATEN ISLAND,10305,,,,,,625 Father Capodanno Blvd,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416079,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,22:40,QUEENS,11101,40.755642,-73.93596,"(40.755642, -73.93596)",,,38-08 CRESCENT STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,16:20,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",EAST 134 STREET,BROOK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416626,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,10:37,,,,,,MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417108,Sedan,Sedan,,, +05/10/2021,12:40,,,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415749,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,19:25,QUEENS,11412,40.691803,-73.76375,"(40.691803, -73.76375)",LINDEN BOULEVARD,EVERITT PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416577,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,14:35,,,40.807667,-73.94929,"(40.807667, -73.94929)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417010,Sedan,Sedan,,, +05/11/2021,16:35,BROOKLYN,11236,40.63333,-73.89467,"(40.63333, -73.89467)",,,1600 CANARSIE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4415587,Sedan,,,, +05/13/2021,17:30,QUEENS,11433,40.70618,-73.786064,"(40.70618, -73.786064)",173 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,23:10,QUEENS,11373,40.745697,-73.88642,"(40.745697, -73.88642)",79 STREET,41 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415642,Sedan,,,, +05/13/2021,0:00,BROOKLYN,11235,40.585167,-73.958496,"(40.585167, -73.958496)",,,3163 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4416333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/10/2021,6:06,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415130,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,2:50,,,40.884396,-73.87998,"(40.884396, -73.87998)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4416393,Station Wagon/Sport Utility Vehicle,,,, +04/23/2021,13:50,QUEENS,11379,40.72762,-73.879074,"(40.72762, -73.879074)",,,58-06 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417038,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,3:00,QUEENS,11354,40.77452,-73.84824,"(40.77452, -73.84824)",120 STREET,26 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415184,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,12:52,QUEENS,11378,40.733204,-73.88838,"(40.733204, -73.88838)",74 STREET,52 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415498,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,14:10,QUEENS,11417,40.673374,-73.8565,"(40.673374, -73.8565)",NORTH CONDUIT AVENUE,80 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416013,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,6:25,BROOKLYN,11210,40.636627,-73.94226,"(40.636627, -73.94226)",FARRAGUT ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4416928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,20:19,QUEENS,11356,40.784916,-73.84213,"(40.784916, -73.84213)",15 AVENUE,126 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416682,Sedan,Sedan,,, +05/12/2021,21:10,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,2,0,2,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4416963,Sedan,,,, +05/11/2021,8:50,QUEENS,11385,40.703625,-73.87016,"(40.703625, -73.87016)",,,78-64 79 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415456,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,8:59,BRONX,10468,40.867496,-73.907425,"(40.867496, -73.907425)",,,2545 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4416131,Sedan,Sedan,,, +05/10/2021,11:33,BROOKLYN,11215,40.671955,-73.98153,"(40.671955, -73.98153)",,,421 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415469,Sedan,,,, +05/11/2021,12:11,QUEENS,11370,40.76325,-73.88488,"(40.76325, -73.88488)",84 STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415667,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,0:05,STATEN ISLAND,10310,40.6372,-74.125656,"(40.6372, -74.125656)",RICHMOND TERRACE,BODINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514606,Sedan,Sedan,,, +05/14/2021,19:00,QUEENS,11432,40.71234,-73.788605,"(40.71234, -73.788605)",WEXFORD TERRACE,KINGSTON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416526,Sedan,Sedan,,, +05/11/2021,13:36,QUEENS,11370,40.764915,-73.88599,"(40.764915, -73.88599)",,,83-03 24 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:30,MANHATTAN,10029,40.797802,-73.94015,"(40.797802, -73.94015)",,,2120 3 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416378,Bus,Motorcycle,,, +05/11/2021,7:00,MANHATTAN,10017,40.7528,-73.979294,"(40.7528, -73.979294)",EAST 42 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Other Vehicular,,,,4415925,Taxi,Bike,,, +05/11/2021,8:00,,,40.848736,-73.93234,"(40.848736, -73.93234)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415710,Pallet,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,15:01,MANHATTAN,10011,40.73739,-74.00104,"(40.73739, -74.00104)",,,209 WEST 12 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416057,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,10:15,QUEENS,11101,40.749676,-73.94372,"(40.749676, -73.94372)",23 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,10:15,BROOKLYN,11208,40.66302,-73.869125,"(40.66302, -73.869125)",,,700 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4416180,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,11:00,BRONX,10474,40.806923,-73.88392,"(40.806923, -73.88392)",,,1313 VIELE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416619,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/13/2021,16:26,QUEENS,11434,,,,Belt parkway,Rockaway boulevard,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416582,Sedan,,,, +05/11/2021,14:40,BROOKLYN,11203,40.651268,-73.93033,"(40.651268, -73.93033)",,,887 UTICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4415803,Sedan,Sedan,Sedan,Sedan, +05/10/2021,18:23,BROOKLYN,11207,40.67091,-73.89364,"(40.67091, -73.89364)",BELMONT AVENUE,VERMONT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415335,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,15:20,BROOKLYN,11218,40.63228,-73.97391,"(40.63228, -73.97391)",,,4001 18 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416704,Bus,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,11:45,BROOKLYN,11211,,,,VANDERVORT AVENUE,MASPETH AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416425,Sedan,Tow Truck / Wrecker,,, +05/12/2021,10:00,BRONX,10473,40.817787,-73.86237,"(40.817787, -73.86237)",,,605 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415810,Sedan,Sedan,Sedan,, +05/12/2021,18:30,MANHATTAN,10016,40.747845,-73.98111,"(40.747845, -73.98111)",,,16 PARK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415916,Sedan,Sedan,,, +05/12/2021,16:28,BROOKLYN,11234,40.63747,-73.91918,"(40.63747, -73.91918)",RALPH AVENUE,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4417124,Sedan,Sedan,,, +05/13/2021,19:10,BRONX,10455,40.812046,-73.910255,"(40.812046, -73.910255)",,,500 TRINITY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4416291,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,19:04,QUEENS,11379,40.709198,-73.87815,"(40.709198, -73.87815)",,,73-05 69 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416148,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/05/2021,10:00,QUEENS,11434,40.684856,-73.764046,"(40.684856, -73.764046)",179 STREET,LESLIE ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415699,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,15:00,MANHATTAN,10016,40.74357,-73.976715,"(40.74357, -73.976715)",,,585 2 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4416470,Sedan,,,, +05/11/2021,23:20,,,40.675507,-74.00075,"(40.675507, -74.00075)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417249,Sedan,Tow Truck / Wrecker,,, +05/14/2021,20:05,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416659,Sedan,Sedan,,, +05/11/2021,18:30,MANHATTAN,10031,40.824688,-73.95227,"(40.824688, -73.95227)",,,611 WEST 142 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416563,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,11:50,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416742,Sedan,Sedan,,, +05/11/2021,15:42,QUEENS,11102,40.774994,-73.93428,"(40.774994, -73.93428)",27 AVENUE,3 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4415983,Box Truck,Pick-up Truck,,, +05/14/2021,16:40,BRONX,10474,40.82102,-73.88725,"(40.82102, -73.88725)",GARRISON AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416565,Station Wagon/Sport Utility Vehicle,Bus,,, +05/12/2021,19:30,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415884,Sedan,,,, +05/13/2021,21:30,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4416247,Sedan,Sedan,Sedan,, +05/10/2021,12:30,BRONX,10456,40.819885,-73.90726,"(40.819885, -73.90726)",EAST 158 STREET,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415091,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,12:30,,,40.73072,-73.98906,"(40.73072, -73.98906)",EAST 10 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4416868,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,11:25,BRONX,10466,40.897175,-73.84293,"(40.897175, -73.84293)",,,2063 PITMAN AVENUE,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4416796,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,17:55,MANHATTAN,10001,40.745865,-73.99206,"(40.745865, -73.99206)",,,132 WEST 27 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416084,Box Truck,Sedan,,, +05/05/2021,0:10,QUEENS,11434,40.65761,-73.76756,"(40.65761, -73.76756)",,,149-34 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417136,4 dr sedan,,,, +09/24/2021,11:39,QUEENS,11354,40.764084,-73.83336,"(40.764084, -73.83336)",PRINCE STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,17:00,BRONX,10452,40.842773,-73.922806,"(40.842773, -73.922806)",GRANT HIGHWAY,PLIMPTON AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416609,Sedan,Sedan,,, +05/10/2021,0:26,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",UTICA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:44,QUEENS,11385,40.702778,-73.89457,"(40.702778, -73.89457)",CYPRESS HILLS STREET,70 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416481,Pick-up Truck,Fire truck,,, +05/12/2021,10:30,,,,,,PIDGEON MEADOW ROAD,46 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417121,Sedan,Sedan,,, +05/12/2021,21:20,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415996,Sedan,,,, +05/13/2021,2:30,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416363,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/11/2021,9:25,BROOKLYN,11218,40.640865,-73.9852,"(40.640865, -73.9852)",,,1312 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415953,Sedan,Taxi,,, +05/13/2021,19:31,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4416566,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/11/2021,4:05,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415396,Sedan,,,, +05/12/2021,18:30,BROOKLYN,11236,40.65144,-73.89539,"(40.65144, -73.89539)",,,620 EAST 108 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416656,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,8:22,BRONX,10459,40.83086,-73.88745,"(40.83086, -73.88745)",,,1447 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416790,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,14:00,QUEENS,11427,40.733093,-73.7387,"(40.733093, -73.7387)",,,231-10 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415940,Sedan,,,, +04/27/2021,16:28,,,40.80521,-73.94736,"(40.80521, -73.94736)",LENOX AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417011,Van,Sedan,,, +05/13/2021,18:30,BRONX,10467,40.879337,-73.87429,"(40.879337, -73.87429)",,,3520 PERRY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416392,Sedan,,,, +05/14/2021,10:00,BRONX,10451,40.82317,-73.9275,"(40.82317, -73.9275)",EAST 153 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417047,Sedan,,,, +05/08/2021,14:20,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",86 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416204,Station Wagon/Sport Utility Vehicle,Bike,,, +09/03/2021,14:40,BROOKLYN,11201,40.692192,-73.98628,"(40.692192, -73.98628)",WILLOUGHBY STREET,LAWRENCE STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4461131,Bus,Sedan,,, +05/14/2021,21:20,STATEN ISLAND,10312,40.54653,-74.180435,"(40.54653, -74.180435)",DRUMGOOLE ROAD EAST,ARDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416922,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,10:30,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4417045,Sedan,,,, +05/12/2021,0:00,,,40.82914,-73.90811,"(40.82914, -73.90811)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416067,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,17:30,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4415191,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,22:10,,,40.76663,-73.89605,"(40.76663, -73.89605)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4417268,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,10:39,MANHATTAN,10032,40.84103,-73.94463,"(40.84103, -73.94463)",WEST 165 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4415449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/14/2021,6:50,BROOKLYN,11236,40.633644,-73.907425,"(40.633644, -73.907425)",EAST 83 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416434,Bus,,,, +05/13/2021,13:28,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416318,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,15:55,STATEN ISLAND,10306,40.582195,-74.1103,"(40.582195, -74.1103)",RICHMOND ROAD,MIDLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416480,Sedan,Sedan,,, +05/11/2021,5:30,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4415726,Sedan,,,, +05/12/2021,17:09,QUEENS,11421,40.686207,-73.85569,"(40.686207, -73.85569)",ATLANTIC AVENUE,86 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4416348,Bike,,,, +05/11/2021,2:47,,,40.664993,-73.80229,"(40.664993, -73.80229)",VAN WYCK EXPWY,,,0,1,0,0,0,0,0,1,Unspecified,,,,,4415647,Motorcycle,,,, +05/10/2021,17:20,MANHATTAN,10022,40.762962,-73.97188,"(40.762962, -73.97188)",MADISON AVENUE,EAST 58 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415786,Bike,,,, +05/11/2021,22:16,,,,,,WATERSIDE PLAZA,EAST 25 STREET,,1,1,0,1,0,0,1,0,Alcohol Involvement,,,,,4415911,Sedan,,,, +05/14/2021,15:40,BRONX,10469,40.87467,-73.8392,"(40.87467, -73.8392)",BURKE AVENUE,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4416812,Sedan,,,, +05/12/2021,17:50,,,40.640034,-73.877945,"(40.640034, -73.877945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415935,Sedan,Sedan,,, +05/13/2021,21:00,BRONX,10454,40.808662,-73.921875,"(40.808662, -73.921875)",,,426 EAST 138 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416632,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,8:00,BROOKLYN,11218,40.638954,-73.98355,"(40.638954, -73.98355)",,,1414 39 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415952,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +09/23/2021,5:32,QUEENS,11435,40.70806,-73.8073,"(40.70806, -73.8073)",150 STREET,87 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4460172,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/11/2021,19:20,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",CLOVE ROAD,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415837,Sedan,Sedan,,, +05/10/2021,10:27,BRONX,10468,,,,WEST BEDFORD PARK BOULEVARD,GOULDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415114,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,16:30,MANHATTAN,10027,40.807205,-73.94412,"(40.807205, -73.94412)",,,61 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416216,Sedan,Pick-up Truck,,, +05/12/2021,16:30,BROOKLYN,11203,40.66186,-73.9344,"(40.66186, -73.9344)",SCHENECTADY AVENUE,MAPLE STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4416199,FIRETRUCK,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,20:20,MANHATTAN,10013,40.721996,-74.00298,"(40.721996, -74.00298)",GRAND STREET,WOOSTER STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4416587,Taxi,Taxi,,, +05/13/2021,13:41,,,40.586754,-73.95806,"(40.586754, -73.95806)",WILLIAMS COURT,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416331,Pick-up Truck,,,, +05/12/2021,14:12,BROOKLYN,11207,40.659515,-73.89135,"(40.659515, -73.89135)",,,734 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416185,Box Truck,Sedan,,, +05/13/2021,13:22,BROOKLYN,11230,40.62418,-73.97048,"(40.62418, -73.97048)",OCEAN PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416905,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,15:10,,,40.62368,-73.99772,"(40.62368, -73.99772)",65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,15:30,,,40.570877,-74.16984,"(40.570877, -74.16984)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415805,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,12:45,,,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415536,Sedan,Motorcycle,,, +05/12/2021,19:34,QUEENS,11373,40.741764,-73.8809,"(40.741764, -73.8809)",,,82-69 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415967,Sedan,E-Bike,,, +05/13/2021,14:14,BROOKLYN,11210,,,,,,1349 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4416703,Sedan,Sedan,,, +05/07/2021,12:57,,,,,,Hamilton Place,Queens Midtown Expwy,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4415790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,10:40,QUEENS,11432,40.708405,-73.797806,"(40.708405, -73.797806)",,,88-40 164 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416424,Sedan,Van,,, +05/02/2021,22:26,BROOKLYN,11216,40.671585,-73.95312,"(40.671585, -73.95312)",,,169 ROGERS AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416972,Bike,Sedan,,, +05/10/2021,12:40,BRONX,10456,40.83462,-73.90186,"(40.83462, -73.90186)",FULTON AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4415238,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/14/2021,18:30,QUEENS,11374,40.728474,-73.85174,"(40.728474, -73.85174)",102 STREET,66 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416520,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,0:29,QUEENS,11434,40.684483,-73.7726,"(40.684483, -73.7726)",MERRILL STREET,VICTORIA DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,10:00,BROOKLYN,11232,40.654133,-74.01169,"(40.654133, -74.01169)",41 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415896,Sedan,,,, +05/13/2021,20:18,BROOKLYN,11217,40.68435,-73.97404,"(40.68435, -73.97404)",,,171 SOUTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416271,Sedan,,,, +05/11/2021,21:42,,,40.729557,-73.740814,"(40.729557, -73.740814)",221 PLACE,BRADDOCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4415879,Sedan,Sedan,Sedan,, +05/11/2021,4:21,BROOKLYN,11238,40.685543,-73.97132,"(40.685543, -73.97132)",,,405 CARLTON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4417163,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,18:30,,,40.689674,-73.96614,"(40.689674, -73.96614)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415218,Station Wagon/Sport Utility Vehicle,Bike,,, +05/12/2021,6:30,QUEENS,11429,40.709713,-73.73027,"(40.709713, -73.73027)",225 STREET,105 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415822,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,8:20,QUEENS,11357,40.786476,-73.81628,"(40.786476, -73.81628)",149 STREET,15 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415502,Bus,Box Truck,,, +05/13/2021,1:35,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416011,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,16:50,QUEENS,11434,40.661198,-73.770966,"(40.661198, -73.770966)",FARMERS BOULEVARD,147 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416497,Sedan,Sedan,,, +05/14/2021,0:00,MANHATTAN,10002,0,0,"(0.0, 0.0)",,,408 GRAND STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,8:24,BRONX,10456,40.832672,-73.90939,"(40.832672, -73.90939)",,,1230 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,Unspecified,,,4416316,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/12/2021,21:00,QUEENS,11372,40.748653,-73.888985,"(40.748653, -73.888985)",,,37-16 77 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4416028,Sedan,Sedan,,, +05/13/2021,6:20,,,40.72773,-73.90674,"(40.72773, -73.90674)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416243,Carry All,Sedan,,, +05/12/2021,16:45,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4415864,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,7:00,BROOKLYN,11232,40.656708,-74.00537,"(40.656708, -74.00537)",3 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415921,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/11/2021,16:30,BROOKLYN,11221,40.69291,-73.93704,"(40.69291, -73.93704)",,,128 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415835,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,19:30,BROOKLYN,11206,0,0,"(0.0, 0.0)",NOSTRAND AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4416885,Sedan,Sedan,Sedan,, +05/13/2021,18:40,BROOKLYN,11212,40.65418,-73.91068,"(40.65418, -73.91068)",LINDEN BOULEVARD,EAST 98 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4417075,Station Wagon/Sport Utility Vehicle,Bike,,, +05/09/2021,2:00,QUEENS,11434,40.667778,-73.780846,"(40.667778, -73.780846)",,,154-05 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4416099,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,4:30,MANHATTAN,10022,40.75718,-73.97399,"(40.75718, -73.97399)",EAST 50 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416561,Sedan,,,, +05/11/2021,14:40,,,40.58056,-73.83459,"(40.58056, -73.83459)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,8:15,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415522,Sedan,Sedan,,, +05/14/2021,14:25,QUEENS,11374,40.732384,-73.86805,"(40.732384, -73.86805)",,,92-24 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,21:30,,,40.79676,-73.9451,"(40.79676, -73.9451)",EAST 112 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416957,Pick-up Truck,Sedan,,, +05/11/2021,1:16,,,40.623672,-73.8956,"(40.623672, -73.8956)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415244,Sedan,Sedan,,, +05/07/2021,20:43,QUEENS,11428,40.720554,-73.73604,"(40.720554, -73.73604)",SPRINGFIELD BOULEVARD,94 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416529,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,18:45,QUEENS,11412,40.700565,-73.76411,"(40.700565, -73.76411)",112 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416350,Sedan,,,, +05/13/2021,10:49,BROOKLYN,11220,40.6371,-74.00788,"(40.6371, -74.00788)",,,5703 8 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4416849,Sedan,,,, +05/13/2021,0:00,BRONX,10458,40.857826,-73.88688,"(40.857826, -73.88688)",EAST 189 STREET,HOFFMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417241,Sedan,,,, +04/29/2021,14:00,BROOKLYN,11220,40.6397,-74.019615,"(40.6397, -74.019615)",62 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416666,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:25,BRONX,10455,40.809162,-73.90377,"(40.809162, -73.90377)",,,467 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460090,Box Truck,Sedan,,, +05/12/2021,0:00,BROOKLYN,11207,40.66471,-73.89426,"(40.66471, -73.89426)",,,622 LIVONIA AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4416184,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,15:00,BROOKLYN,11203,40.65974,-73.9293,"(40.65974, -73.9293)",,,58 EAST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416964,Sedan,Dump,,, +05/11/2021,8:00,BRONX,10457,40.84219,-73.89411,"(40.84219, -73.89411)",CROTONA AVENUE,CROTONA PARK NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416111,Bus,E-Bike,,, +05/14/2021,10:25,BRONX,10457,40.845238,-73.900894,"(40.845238, -73.900894)",EAST 175 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4416448,Sedan,Sedan,,, +05/14/2021,2:00,BRONX,10455,40.820824,-73.91562,"(40.820824, -73.91562)",EAST 156 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4416636,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,14:55,MANHATTAN,10032,40.842808,-73.942024,"(40.842808, -73.942024)",FORT WASHINGTON AVENUE,WEST 169 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461028,Sedan,,,, +05/12/2021,11:08,BROOKLYN,11201,40.692696,-73.99198,"(40.692696, -73.99198)",,,185 JORALEMON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415928,Sedan,Sedan,,, +05/14/2021,10:03,,,40.84434,-73.91475,"(40.84434, -73.91475)",EAST MOUNT EDEN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416605,Box Truck,Sedan,,, +05/11/2021,13:50,,,40.603832,-74.06895,"(40.603832, -74.06895)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4416039,Sedan,,,, +05/11/2021,11:11,QUEENS,11375,40.72096,-73.84698,"(40.72096, -73.84698)",AUSTIN STREET,70 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4416153,Sedan,,,, +05/11/2021,22:22,,,40.69632,-73.960625,"(40.69632, -73.960625)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4416843,,,,, +05/05/2021,22:12,MANHATTAN,10021,40.76849,-73.95157,"(40.76849, -73.95157)",,,525 EAST 75 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4416303,Sedan,Sedan,Sedan,, +05/09/2021,23:25,STATEN ISLAND,10305,40.606853,-74.06744,"(40.606853, -74.06744)",,,175 FINGERBOARD ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415857,Sedan,Sedan,,, +05/11/2021,11:00,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4415652,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/14/2021,10:51,,,40.67312,-73.96072,"(40.67312, -73.96072)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417000,Pick-up Truck,Sedan,,, +05/13/2021,16:40,,,40.65487,-73.96191,"(40.65487, -73.96191)",OCEAN AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416759,Sedan,Bike,,, +05/13/2021,11:30,,,40.73366,-73.76652,"(40.73366, -73.76652)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,16:30,QUEENS,11417,0,0,"(0.0, 0.0)",80 STREET,NORTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4416088,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,13:40,BROOKLYN,11233,40.678314,-73.91358,"(40.678314, -73.91358)",,,178 BOYLAND STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4415111,Sedan,,,, +05/10/2021,23:03,,,40.84518,-73.91417,"(40.84518, -73.91417)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415636,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,0:00,QUEENS,11368,40.75232,-73.86796,"(40.75232, -73.86796)",,,99-14 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416402,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,8:04,,,40.80417,-73.966705,"(40.80417, -73.966705)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415066,Sedan,,,, +05/13/2021,18:25,,,40.757908,-73.9893,"(40.757908, -73.9893)",WEST 43 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417055,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,22:57,MANHATTAN,10027,40.80824,-73.95259,"(40.80824, -73.95259)",WEST 122 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4417007,Station Wagon/Sport Utility Vehicle,Bike,,, +05/13/2021,17:50,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416286,Sedan,Tractor Truck Diesel,,, +05/14/2021,0:10,BROOKLYN,11207,40.66852,-73.890175,"(40.66852, -73.890175)",BLAKE AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416441,Taxi,,,, +05/11/2021,15:50,BROOKLYN,11215,40.673546,-73.99537,"(40.673546, -73.99537)",,,53 9 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4415581,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,21:10,MANHATTAN,10025,40.79226,-73.96427,"(40.79226, -73.96427)",,,371 CENTRAL PARK WEST,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415404,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,14:00,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415992,Station Wagon/Sport Utility Vehicle,Flat Rack,,, +05/08/2021,2:54,MANHATTAN,10034,40.866024,-73.92588,"(40.866024, -73.92588)",BROADWAY,CUMMING STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4415691,Sedan,E-Bike,,, +05/11/2021,21:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415730,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,8:45,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4415474,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/10/2021,5:45,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415151,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/13/2021,22:53,MANHATTAN,10022,40.76023,-73.961525,"(40.76023, -73.961525)",EAST 60 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4416301,Van,Bike,,, +06/30/2022,17:30,BRONX,10458,40.869156,-73.884,"(40.869156, -73.884)",,,2965 MARION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542356,Sedan,Sedan,,, +05/10/2021,11:57,BROOKLYN,11211,40.70774,-73.95361,"(40.70774, -73.95361)",SOUTH 5 STREET,HOOPER STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4415263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,16:30,QUEENS,11435,40.697906,-73.80722,"(40.697906, -73.80722)",,,95-14 WALTHAM STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4459877,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/11/2021,18:40,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4415741,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/10/2021,19:01,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415431,Sedan,Sedan,,, +05/10/2021,18:05,QUEENS,11101,40.753284,-73.92049,"(40.753284, -73.92049)",NORTHERN BOULEVARD,42 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415367,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,22:20,,,40.666122,-73.93139,"(40.666122, -73.93139)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416593,Sedan,Sedan,,, +05/06/2021,21:30,,,40.691833,-73.92785,"(40.691833, -73.92785)",VAN BUREN STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417087,Sedan,,,, +05/12/2021,17:10,BRONX,10459,40.826786,-73.892944,"(40.826786, -73.892944)",EAST 167 STREET,EAST 169 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416071,Sedan,Moped,,, +05/05/2021,23:58,MANHATTAN,10018,40.758915,-73.9997,"(40.758915, -73.9997)",11 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415758,Sedan,Sedan,,, +05/13/2021,0:11,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416126,Taxi,Sedan,,, +09/24/2021,17:24,,,40.78884,-73.81381,"(40.78884, -73.81381)",150 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460607,Station Wagon/Sport Utility Vehicle,,,, +05/10/2021,8:31,BRONX,10473,40.82084,-73.87266,"(40.82084, -73.87266)",,,825 MORRISON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4415039,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/12/2021,21:54,,,40.78843,-73.94907,"(40.78843, -73.94907)",EAST 100 STREET,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4416335,Sedan,Taxi,,, +05/14/2021,17:39,,,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4417179,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/10/2021,0:56,BRONX,10470,40.903305,-73.8529,"(40.903305, -73.8529)",,,4626 MATILDA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414948,Sedan,,,, +05/10/2021,12:01,,,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415195,Sedan,Van,,, +05/13/2021,17:33,,,40.83988,-73.916794,"(40.83988, -73.916794)",TOWNSEND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416370,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,19:40,MANHATTAN,10026,40.799805,-73.956154,"(40.799805, -73.956154)",,,229 CENTRAL PARK NORTH,1,0,0,0,1,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4417018,Sedan,E-Bike,,, +05/12/2021,21:30,,,40.788986,-73.97407,"(40.788986, -73.97407)",WEST 88 STREET,,,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4415908,E-Bike,,,, +05/11/2021,8:45,BROOKLYN,11201,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4415616,Pick-up Truck,,,, +05/10/2021,10:20,BROOKLYN,11207,40.673573,-73.902084,"(40.673573, -73.902084)",LIBERTY AVENUE,SNEDIKER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4415311,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/10/2021,0:01,BROOKLYN,11210,40.637146,-73.94713,"(40.637146, -73.94713)",,,558 EAST 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415156,Sedan,,,, +05/13/2021,15:16,,,40.637997,-74.02136,"(40.637997, -74.02136)",65 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416254,Sedan,,,, +05/11/2021,17:05,,,40.85111,-73.93061,"(40.85111, -73.93061)",AUDUBON AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415718,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,1:20,QUEENS,11435,40.697556,-73.80498,"(40.697556, -73.80498)",147 PLACE,97 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4415548,Sedan,Sedan,Sedan,Sedan, +05/11/2021,16:45,,,40.830975,-73.85267,"(40.830975, -73.85267)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415567,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,16:23,MANHATTAN,10014,40.741222,-74.006004,"(40.741222, -74.006004)",,,413 WEST 14 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415773,Taxi,PK,,, +05/12/2021,0:25,,,40.671608,-73.91695,"(40.671608, -73.91695)",SARATOGA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415850,Sedan,Sedan,,, +05/11/2021,11:20,BROOKLYN,11212,40.66905,-73.91506,"(40.66905, -73.91506)",,,1581 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415506,Sedan,,,, +05/12/2021,17:15,,,40.632164,-74.166336,"(40.632164, -74.166336)",SOUTH AVENUE,BRABANT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416007,Sedan,,,, +05/14/2021,17:10,QUEENS,11357,40.780193,-73.80034,"(40.780193, -73.80034)",163 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4416672,Station Wagon/Sport Utility Vehicle,,,, +04/09/2021,8:45,,,40.679565,-73.93436,"(40.679565, -73.93436)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416939,Sedan,Bike,,, +05/13/2021,18:00,,,40.889927,-73.9084,"(40.889927, -73.9084)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4416269,Box Truck,,,, +05/14/2021,16:50,BROOKLYN,11206,40.706047,-73.94129,"(40.706047, -73.94129)",HUMBOLDT STREET,BOERUM STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416692,4 dr sedan,,,, +09/12/2021,13:00,MANHATTAN,10002,40.721733,-73.99114,"(40.721733, -73.99114)",,,184 FORSYTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460878,Station Wagon/Sport Utility Vehicle,Bike,,, +05/13/2021,9:25,,,40.669403,-73.94221,"(40.669403, -73.94221)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4416417,Box Truck,Sedan,,, +05/11/2021,12:48,BRONX,10469,40.873222,-73.83747,"(40.873222, -73.83747)",ELY AVENUE,HAMMERSLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415818,Sedan,Sedan,Sedan,, +05/14/2021,9:19,QUEENS,11691,40.60638,-73.754715,"(40.60638, -73.754715)",BEACH CHANNEL DRIVE,DIX AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4416557,AMBULANCE,,,, +05/10/2021,16:15,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416103,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,15:37,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,9:04,,,40.617123,-73.98524,"(40.617123, -73.98524)",64 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415723,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,21:11,BROOKLYN,11212,40.662556,-73.91963,"(40.662556, -73.91963)",TAPSCOTT STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417063,Sedan,,,, +05/13/2021,17:46,,,,,,HILLSIDE AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416239,Sedan,Sedan,,, +05/11/2021,17:15,BROOKLYN,11208,40.68319,-73.8663,"(40.68319, -73.8663)",ATLANTIC AVENUE,ELDERTS LANE,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4416172,Sedan,Sedan,,, +05/12/2021,22:33,,,40.715473,-73.95185,"(40.715473, -73.95185)",MEEKER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416024,Sedan,Sedan,,, +05/11/2021,11:40,BROOKLYN,11211,40.707848,-73.956276,"(40.707848, -73.956276)",SOUTH 9 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4415685,Box Truck,Taxi,Box Truck,, +05/14/2021,10:38,,,,,,whythe avenue,williamsburg street west,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416693,Sedan,Chassis Cab,,, +05/10/2021,21:10,MANHATTAN,10027,40.817543,-73.95694,"(40.817543, -73.95694)",BROADWAY,WEST 131 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415889,Station Wagon/Sport Utility Vehicle,,,, +04/15/2021,17:36,STATEN ISLAND,10301,40.642048,-74.07533,"(40.642048, -74.07533)",,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416948,Sedan,,,, +05/13/2021,13:15,BROOKLYN,11221,40.686836,-73.923515,"(40.686836, -73.923515)",,,92 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416941,Pick-up Truck,Box Truck,,, +05/11/2021,21:15,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4415876,Pick-up Truck,Sedan,,, +05/10/2021,15:00,QUEENS,11001,40.73223,-73.70934,"(40.73223, -73.70934)",,,86-35 257 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415209,Sedan,,,, +05/11/2021,18:50,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",9 AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,23:45,MANHATTAN,10014,40.734562,-74.00543,"(40.734562, -74.00543)",,,99 CHARLES STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416056,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,13:18,BROOKLYN,11226,40.64439,-73.94987,"(40.64439, -73.94987)",CORTELYOU ROAD,EAST 29 STREET,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4415518,Bike,Sedan,Station Wagon/Sport Utility Vehicle,, +05/11/2021,21:57,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,19:49,QUEENS,11378,40.71982,-73.90345,"(40.71982, -73.90345)",,,58-44 61 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416140,Station Wagon/Sport Utility Vehicle,Bike,,, +05/11/2021,0:51,,,,,,HORACE HARDING EXPRESSWAY,UTOPIA PARKWAY,,2,0,0,0,0,0,2,0,Passenger Distraction,,,,,4415613,Sedan,,,, +05/07/2021,13:00,BROOKLYN,11205,40.68866,-73.97096,"(40.68866, -73.97096)",,,295 ADELPHI STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416473,Sedan,,,, +05/10/2021,19:00,,,40.708324,-73.84314,"(40.708324, -73.84314)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415392,Sedan,Sedan,,, +05/12/2021,1:13,,,40.8281,-73.92021,"(40.8281, -73.92021)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4415631,E-Bike,Sedan,Station Wagon/Sport Utility Vehicle,, +05/14/2021,11:25,BRONX,10475,40.865574,-73.82314,"(40.865574, -73.82314)",,,140 EINSTEIN LOOP,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4416773,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/11/2021,16:10,,,40.704033,-73.81711,"(40.704033, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Reaction to Uninvolved Vehicle,,,,4416339,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,22:20,BRONX,10458,40.87294,-73.88534,"(40.87294, -73.88534)",VALENTINE AVENUE,EAST 202 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4415960,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/12/2021,21:54,MANHATTAN,10019,40.76713,-73.99373,"(40.76713, -73.99373)",WEST 52 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416092,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,7:28,BROOKLYN,11233,40.67655,-73.91484,"(40.67655, -73.91484)",,,2170 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417062,Sedan,,,, +05/11/2021,15:26,STATEN ISLAND,10301,40.61572,-74.09624,"(40.61572, -74.09624)",CAMPUS ROAD,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415787,Sedan,,,, +05/11/2021,12:00,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4415648,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,11:00,,,,,,BELT PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4416640,Sedan,Sedan,Sedan,, +05/05/2021,15:45,,,40.68969,-73.99237,"(40.68969, -73.99237)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417248,Sedan,Sedan,,, +05/10/2021,11:59,,,40.71906,-73.812126,"(40.71906, -73.812126)",UNION TURNPIKE,150 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415772,Sedan,,,, +05/12/2021,12:00,BROOKLYN,11207,40.66684,-73.899414,"(40.66684, -73.899414)",,,330 HINSDALE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416173,Sedan,Unknown,,, +05/11/2021,0:50,,,40.732346,-73.98495,"(40.732346, -73.98495)",EAST 14 STREET,,,3,0,0,0,0,0,3,0,Outside Car Distraction,Unspecified,,,,4415750,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,5:45,,,40.73572,-73.93677,"(40.73572, -73.93677)",STARR AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415103,Carry All,Tractor Truck Diesel,,, +05/13/2021,17:45,MANHATTAN,10019,40.768436,-73.98906,"(40.768436, -73.98906)",WEST 56 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416307,Sedan,Sedan,,, +05/08/2021,19:10,QUEENS,11417,40.680313,-73.842026,"(40.680313, -73.842026)",97 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416290,Sedan,,,, +05/14/2021,11:00,,,40.710114,-73.77859,"(40.710114, -73.77859)",182 PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416437,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/10/2021,6:00,QUEENS,11434,40.68074,-73.76963,"(40.68074, -73.76963)",127 AVENUE,174 PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4415427,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,20:15,BROOKLYN,11207,40.67961,-73.89831,"(40.67961, -73.89831)",,,70 HIGHLAND BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4416175,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,16:47,BROOKLYN,11232,40.6587,-73.999855,"(40.6587, -73.999855)",,,801 4 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4415586,Station Wagon/Sport Utility Vehicle,Bike,,, +05/10/2021,8:55,,,40.602592,-73.74969,"(40.602592, -73.74969)",CORNAGA AVENUE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4415384,Sedan,,,, +05/14/2021,14:00,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416576,Sedan,,,, +05/10/2021,9:30,,,40.851395,-73.94129,"(40.851395, -73.94129)",HAVEN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415087,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,21:55,,,40.706345,-73.85159,"(40.706345, -73.85159)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4417143,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/24/2021,22:30,QUEENS,11101,40.745235,-73.937706,"(40.745235, -73.937706)",THOMSON AVENUE,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460639,Sedan,Sedan,,, +05/10/2021,11:17,BRONX,10465,40.81503,-73.815125,"(40.81503, -73.815125)",,,4342 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415136,Sedan,,,, +09/23/2021,18:00,BRONX,10472,40.832413,-73.880844,"(40.832413, -73.880844)",,,1332 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460670,Sedan,,,, +09/24/2021,10:48,MANHATTAN,10040,40.862923,-73.92777,"(40.862923, -73.92777)",SHERMAN AVENUE,ARDEN STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4461170,Box Truck,Bike,,, +05/14/2021,23:40,QUEENS,11106,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4416820,Sedan,Sedan,,, +05/11/2021,8:45,BRONX,10456,40.832214,-73.90344,"(40.832214, -73.90344)",FULTON AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4415745,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,17:00,BROOKLYN,11208,40.66494,-73.87382,"(40.66494, -73.87382)",,,547 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416194,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,9:30,,,40.607864,-74.179184,"(40.607864, -74.179184)",SOUTH AVENUE,TELEPORT DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415483,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,11:00,QUEENS,11354,40.769096,-73.833664,"(40.769096, -73.833664)",31 ROAD,FARRINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416686,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,23:47,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417099,Sedan,Sedan,,, +05/10/2021,9:00,BRONX,10470,40.904957,-73.85371,"(40.904957, -73.85371)",EAST 241 STREET,BRONX BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4415471,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/10/2021,0:30,BRONX,10472,40.83265,-73.86366,"(40.83265, -73.86366)",WESTCHESTER AVENUE,LELAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415035,Sedan,Sedan,,, +05/13/2021,12:05,BROOKLYN,11212,40.662613,-73.908455,"(40.662613, -73.908455)",,,254 LIVONIA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4416488,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,7:00,QUEENS,11427,40.721977,-73.75972,"(40.721977, -73.75972)",,,206-23 WHITEHALL TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415762,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,16:00,BRONX,10458,40.872128,-73.88248,"(40.872128, -73.88248)",EAST MOSHOLU PARKWAY SOUTH,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416600,Sedan,,,, +05/08/2021,15:19,BRONX,10475,40.86879,-73.83168,"(40.86879, -73.83168)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416130,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,16:00,QUEENS,11435,40.69924,-73.80632,"(40.69924, -73.80632)",,,147-36 94 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416207,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,16:25,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",FRANCIS LEWIS BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415597,Sedan,,,, +05/03/2021,20:00,BROOKLYN,11219,40.62284,-74.00121,"(40.62284, -74.00121)",OVINGTON AVENUE,14 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4416205,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/06/2021,18:20,MANHATTAN,10027,40.810505,-73.95092,"(40.810505, -73.95092)",,,2338 8 AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4417006,Convertible,Sedan,,, +05/11/2021,20:41,BRONX,10468,40.86177,-73.89868,"(40.86177, -73.89868)",CRESTON AVENUE,EAST 188 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415713,,,,, +05/10/2021,6:00,,,40.58274,-73.97858,"(40.58274, -73.97858)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415943,Taxi,,,, +05/07/2021,12:50,QUEENS,11372,40.75595,-73.88165,"(40.75595, -73.88165)",NORTHERN BOULEVARD,86 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4416075,Sedan,,,, +05/12/2021,16:13,BROOKLYN,11233,40.683712,-73.913765,"(40.683712, -73.913765)",,,731 DECATUR STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415904,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,16:43,,,,,,JEROME AVE,WEST FRODHAM ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4415637,Motorcycle,,,, +05/14/2021,19:37,,,40.653774,-73.95617,"(40.653774, -73.95617)",LENOX ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416932,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,21:25,BRONX,10470,40.90195,-73.85043,"(40.90195, -73.85043)",,,4611 FURMAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4415513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/23/2021,17:55,,,40.58897,-73.90895,"(40.58897, -73.90895)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460848,Motorcycle,Sedan,,, +05/11/2021,20:00,MANHATTAN,10006,40.706635,-74.015785,"(40.706635, -74.015785)",,,20 MORRIS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415660,Bus,Sedan,,, +05/10/2021,16:30,QUEENS,11373,40.74096,-73.88145,"(40.74096, -73.88145)",83 STREET,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415248,Sedan,Box Truck,,, +05/11/2021,8:00,BRONX,10468,40.869274,-73.90135,"(40.869274, -73.90135)",CLAFLIN AVENUE,EAMES PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415558,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,0:00,BRONX,10462,40.83521,-73.85498,"(40.83521, -73.85498)",OLMSTEAD AVENUE,UNIONPORT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415562,Sedan,,,, +05/10/2021,2:00,BROOKLYN,11229,40.595955,-73.93326,"(40.595955, -73.93326)",,,2329 KNAPP STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4414835,Sedan,Sedan,,, +05/12/2021,2:55,QUEENS,11004,40.752777,-73.70743,"(40.752777, -73.70743)",,,269-01 76 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415624,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,14:55,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415333,Sedan,Sedan,,, +05/13/2021,15:55,BROOKLYN,11249,40.714703,-73.96182,"(40.714703, -73.96182)",,,158 GRAND STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,8:40,QUEENS,11385,40.695156,-73.89862,"(40.695156, -73.89862)",CYPRESS AVENUE,78 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416141,Sedan,,,, +05/10/2021,8:42,BROOKLYN,11212,40.65822,-73.90588,"(40.65822, -73.90588)",LOTT AVENUE,OSBORN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4415352,Sedan,Sedan,Sedan,, +05/11/2021,16:55,QUEENS,11106,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,36 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416803,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,21:45,,,40.58394,-73.91784,"(40.58394, -73.91784)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4416700,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,20:37,BRONX,10461,40.842945,-73.849205,"(40.842945, -73.849205)",,,2541 EAST TREMONT AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4415680,Sedan,Sedan,Sedan,, +05/04/2021,17:00,,,40.69012,-73.92318,"(40.69012, -73.92318)",BROADWAY,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4417025,Van,E-Bike,,, +05/12/2021,8:17,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",VANDAM STREET,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415846,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,16:00,,,40.76397,-73.72479,"(40.76397, -73.72479)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415592,Tanker,Sedan,,, +05/10/2021,13:10,QUEENS,11412,40.685776,-73.76095,"(40.685776, -73.76095)",120 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415698,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,16:20,BRONX,10454,40.810402,-73.92196,"(40.810402, -73.92196)",WILLIS AVENUE,EAST 140 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4415201,Bus,Sedan,Sedan,, +05/13/2021,12:32,,,40.703632,-73.85587,"(40.703632, -73.85587)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416147,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,8:50,QUEENS,11101,40.742123,-73.92745,"(40.742123, -73.92745)",47 AVENUE,38 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4415494,Station Wagon/Sport Utility Vehicle,Moped,,, +05/11/2021,10:00,QUEENS,11370,40.766705,-73.89024,"(40.766705, -73.89024)",ASTORIA BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415777,Sedan,,,, +05/14/2021,12:38,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4416740,Sedan,Sedan,Sedan,, +05/14/2021,10:50,BROOKLYN,11237,40.712288,-73.92731,"(40.712288, -73.92731)",STAGG STREET,STEWART AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417202,Box Truck,Van,,, +05/14/2021,12:50,MANHATTAN,10007,40.71165,-74.01039,"(40.71165, -74.01039)",,,55 CHURCH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416512,Sedan,Box Truck,,, +05/13/2021,11:45,QUEENS,11435,40.704082,-73.81641,"(40.704082, -73.81641)",HILLSIDE AVENUE,138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,4:00,BRONX,10467,,,,EAST 213 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415814,Sedan,,,, +05/13/2021,10:08,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416883,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,14:15,BROOKLYN,11209,40.631462,-74.0278,"(40.631462, -74.0278)",3 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416107,Sedan,Sedan,,, +05/13/2021,15:00,,,,,,LONG ISLAND EXPRESSWAY,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416396,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,18:35,BROOKLYN,11206,40.70739,-73.95054,"(40.70739, -73.95054)",UNION AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Alcohol Involvement,Unspecified,,,4416004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/12/2021,17:45,BRONX,10452,40.84479,-73.91587,"(40.84479, -73.91587)",WEST MOUNT EDEN AVENUE,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416373,Sedan,,,, +05/12/2021,23:05,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4416665,Sedan,Sedan,Sedan,, +05/09/2021,14:30,BRONX,10460,40.83887,-73.87811,"(40.83887, -73.87811)",EAST 177 STREET,DEVOE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4415740,Station Wagon/Sport Utility Vehicle,Bike,,, +05/14/2021,22:50,QUEENS,11422,40.63621,-73.74036,"(40.63621, -73.74036)",,,252-18 ROCKAWAY BOULEVARD,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4416537,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/13/2021,0:00,,,40.725204,-74.01005,"(40.725204, -74.01005)",CANAL STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416168,Sedan,Sedan,,, +05/11/2021,4:50,BROOKLYN,11231,40.678394,-74.01169,"(40.678394, -74.01169)",KING STREET,VAN BRUNT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4416300,Sedan,,,, +05/12/2021,12:10,BRONX,10454,40.805557,-73.91047,"(40.805557, -73.91047)",EAST 140 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4415975,Sedan,Box Truck,,, +05/14/2021,0:00,BROOKLYN,11224,40.574142,-73.997314,"(40.574142, -73.997314)",,,2940 WEST 31 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4416995,Sedan,,,, +05/12/2021,11:20,BROOKLYN,11212,40.66112,-73.920135,"(40.66112, -73.920135)",CLARKSON AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415872,Sedan,Sedan,,, +05/14/2021,8:10,QUEENS,11372,40.756355,-73.87511,"(40.756355, -73.87511)",,,33-04 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416405,Sedan,,,, +05/12/2021,14:05,QUEENS,11416,40.6872,-73.84245,"(40.6872, -73.84245)",101 STREET,97 AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4416036,Sedan,Sedan,,, +05/11/2021,18:20,BRONX,10462,40.854267,-73.869385,"(40.854267, -73.869385)",BRONX PARK EAST,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4416060,Station Wagon/Sport Utility Vehicle,Bus,,, +05/07/2021,20:15,QUEENS,11433,40.699802,-73.773964,"(40.699802, -73.773964)",180 STREET,110 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4416505,Sedan,Sedan,Sedan,, +05/13/2021,22:41,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416295,Sedan,,,, +05/08/2021,18:39,BRONX,10475,,,,,,290 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416771,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,18:10,QUEENS,11354,40.761166,-73.82938,"(40.761166, -73.82938)",138 STREET,38 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4415231,Sedan,,,, +05/13/2021,7:20,QUEENS,11414,40.652424,-73.83821,"(40.652424, -73.83821)",163 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4416136,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +05/11/2021,17:05,,,,,,LONG ISLAND EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415608,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,12:35,QUEENS,11422,40.683224,-73.72587,"(40.683224, -73.72587)",BROOKVILLE BOULEVARD,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,0:57,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4416268,Sedan,Taxi,Sedan,, +05/12/2021,9:00,QUEENS,11419,40.68595,-73.82571,"(40.68595, -73.82571)",,,117-10 LIBERTY AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4415755,Tractor Truck Diesel,,,, +05/14/2021,9:30,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416433,Tow Truck / Wrecker,Box Truck,,, +05/09/2021,2:15,,,40.83302,-73.862724,"(40.83302, -73.862724)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4415735,Sedan,MOPED,,, +05/12/2021,7:02,STATEN ISLAND,10301,40.62795,-74.090645,"(40.62795, -74.090645)",,,590 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4415964,Sedan,,,, +05/11/2021,14:10,BROOKLYN,11207,40.663094,-73.88431,"(40.663094, -73.88431)",HEGEMAN AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416179,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,15:34,BRONX,10458,40.855755,-73.88544,"(40.855755, -73.88544)",EAST 188 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416068,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2022,9:48,QUEENS,11379,40.71333,-73.88588,"(40.71333, -73.88588)",,,69-31 66 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4561339,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,14:10,QUEENS,11416,40.682106,-73.84584,"(40.682106, -73.84584)",94 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4416080,Station Wagon/Sport Utility Vehicle,Moped,,, +05/14/2021,22:28,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4416583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,9:50,BROOKLYN,11229,40.600536,-73.9409,"(40.600536, -73.9409)",AVENUE U,HARING STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416327,Ambulance,Sedan,,, +05/14/2021,21:45,BRONX,10459,40.826675,-73.90023,"(40.826675, -73.90023)",UNION AVENUE,EAST 167 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4416786,Van,Sedan,Sedan,, +05/11/2021,13:50,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4415804,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,7:00,QUEENS,11372,40.751102,-73.8912,"(40.751102, -73.8912)",75 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415668,Sedan,,,, +05/14/2021,14:53,BROOKLYN,11228,40.622234,-74.00901,"(40.622234, -74.00901)",12 AVENUE,74 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4416469,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,19:10,,,40.67681,-73.79405,"(40.67681, -73.79405)",120 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416618,Sedan,Box Truck,,, +05/14/2021,18:46,BRONX,10454,40.81307,-73.91998,"(40.81307, -73.91998)",,,416 WILLIS AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4416627,Sedan,Motorcycle,,, +05/10/2021,17:30,BROOKLYN,11236,40.63561,-73.9084,"(40.63561, -73.9084)",,,1004 EAST 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4415915,Sedan,,,, +09/22/2021,18:40,,,40.823658,-73.91206,"(40.823658, -73.91206)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459932,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,21:48,MANHATTAN,10018,40.757294,-73.99719,"(40.757294, -73.99719)",,,501 10 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415767,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,22:44,BROOKLYN,11201,40.690804,-73.98348,"(40.690804, -73.98348)",,,436 ALBEE SQUARE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417110,Sedan,Sedan,,, +05/12/2021,22:59,BROOKLYN,11212,40.657486,-73.92389,"(40.657486, -73.92389)",,,318 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416200,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,17:29,BROOKLYN,11218,40.642483,-73.97425,"(40.642483, -73.97425)",,,280 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,21:00,QUEENS,11363,40.76229,-73.75711,"(40.76229, -73.75711)",CROSS ISLAND PARKWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417122,Station Wagon/Sport Utility Vehicle,Convertible,,, +05/10/2021,4:28,BROOKLYN,11236,40.64188,-73.894684,"(40.64188, -73.894684)",AVENUE K,EAST 100 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4415936,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +05/14/2021,18:30,,,40.772953,-73.92028,"(40.772953, -73.92028)",HOYT AVENUE NORTH,26 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416818,Sedan,Sedan,,, +05/14/2021,21:05,,,40.808296,-73.96889,"(40.808296, -73.96889)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417257,Sedan,Sedan,,, +05/07/2021,14:24,,,40.835598,-73.9138,"(40.835598, -73.9138)",GRANT AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4416359,Pick-up Truck,Bus,,, +05/07/2021,18:05,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4415868,Sedan,Sedan,,, +05/02/2021,11:20,BROOKLYN,11224,40.57848,-73.98946,"(40.57848, -73.98946)",WEST 22 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415984,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,18:00,,,40.776318,-73.962135,"(40.776318, -73.962135)",EAST 79 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417159,Tractor Truck Diesel,Bike,,, +05/14/2021,19:49,,,40.827904,-73.91218,"(40.827904, -73.91218)",PARK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416795,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,10:30,QUEENS,11375,40.72145,-73.84399,"(40.72145, -73.84399)",QUEENS BOULEVARD,71 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415799,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,4:53,QUEENS,11377,40.740875,-73.89962,"(40.740875, -73.89962)",QUEENS BOULEVARD,65 PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,3:00,QUEENS,11378,40.725693,-73.892586,"(40.725693, -73.892586)",,,69-95 LONG ISLAND EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417040,Sedan,Pick-up Truck,,, +05/13/2021,14:30,,,,,,OCEAN AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416332,Sedan,E-Scooter,,, +04/29/2021,15:15,MANHATTAN,10027,40.811264,-73.95782,"(40.811264, -73.95782)",AMSTERDAM AVENUE,WEST 123 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Backing Unsafely,,,,4416162,Sedan,Sedan,,, +05/11/2021,0:00,BROOKLYN,11207,40.675632,-73.89878,"(40.675632, -73.89878)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4415339,Sedan,Motorscooter,,, +05/10/2021,11:10,,,40.670277,-73.92542,"(40.670277, -73.92542)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4415123,Sedan,Sedan,,, +05/10/2021,8:25,QUEENS,11432,40.720535,-73.776215,"(40.720535, -73.776215)",188 STREET,WICKLOW PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4415004,Pick-up Truck,Sedan,,, +09/18/2021,12:10,BROOKLYN,11210,40.631287,-73.945564,"(40.631287, -73.945564)",,,1623 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460743,Sedan,,,, +05/10/2021,23:20,MANHATTAN,10033,40.850166,-73.93576,"(40.850166, -73.93576)",BROADWAY,WEST 181 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4415499,Sedan,,,, +05/12/2021,22:10,,,40.810093,-73.95309,"(40.810093, -73.95309)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4416190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/10/2021,17:30,,,40.784702,-73.824615,"(40.784702, -73.824615)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415185,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,2:45,BRONX,10473,40.822235,-73.85088,"(40.822235, -73.85088)",,,2127 VIRGIL PLACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4416322,Sedan,Sedan,Sedan,, +05/10/2021,13:30,BRONX,10472,40.82864,-73.85344,"(40.82864, -73.85344)",BLACKROCK AVENUE,OLMSTEAD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4415168,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,10:30,,,,,,DRUMGOOLE ROAD EAST,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4416926,Sedan,,,, +05/13/2021,16:30,MANHATTAN,10001,40.74695,-73.99079,"(40.74695, -73.99079)",,,114 WEST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416344,Sedan,Bike,,, +05/11/2021,11:56,QUEENS,11374,40.726185,-73.87022,"(40.726185, -73.87022)",WOODHAVEN BOULEVARD,62 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,22:55,QUEENS,11357,40.782597,-73.82168,"(40.782597, -73.82168)",PARSONS BOULEVARD,19 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416680,Pick-up Truck,Bike,,, +05/11/2021,20:06,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415602,Sedan,,,, +05/12/2021,19:30,,,40.70153,-73.82341,"(40.70153, -73.82341)",129 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416031,Sedan,,,, +05/12/2021,8:15,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415782,Sedan,Sedan,,, +05/13/2021,14:20,BRONX,10472,40.829002,-73.859825,"(40.829002, -73.859825)",,,1120 VIRGINIA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,21:50,,,40.77958,-73.98183,"(40.77958, -73.98183)",WEST 73 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417046,Sedan,Motorscooter,,, +05/14/2021,20:15,STATEN ISLAND,10301,40.619415,-74.09428,"(40.619415, -74.09428)",,,11 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416861,Sedan,,,, +05/14/2021,9:00,BROOKLYN,11207,40.652714,-73.8906,"(40.652714, -73.8906)",COZINE AVENUE,MALTA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416460,Sedan,Sedan,,, +05/12/2021,8:35,QUEENS,11101,40.74198,-73.94643,"(40.74198, -73.94643)",49 AVENUE,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415841,School Bus,,,, +05/09/2021,16:42,,,,,,UNIVERSITY HEIGHTS BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415709,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,10:40,BROOKLYN,11204,40.61932,-73.97819,"(40.61932, -73.97819)",,,2128 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415947,Station Wagon/Sport Utility Vehicle,Bus,,, +05/10/2021,22:55,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415222,Sedan,,,, +05/10/2021,9:50,BROOKLYN,11206,40.708492,-73.93887,"(40.708492, -73.93887)",BUSHWICK PLACE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415258,Box Truck,Box Truck,,, +05/10/2021,5:27,,,40.7418,-73.72815,"(40.7418, -73.72815)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416729,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,10:27,BRONX,10456,40.829453,-73.90658,"(40.829453, -73.90658)",3 AVENUE,EAST 167 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416063,Tractor Truck Diesel,E-Bike,,, +05/10/2021,8:00,,,40.651054,-74.01112,"(40.651054, -74.01112)",44 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415576,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,14:00,MANHATTAN,10038,40.711617,-74.00752,"(40.711617, -74.00752)",,,25 PARK ROW,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415532,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,7:03,BRONX,10455,40.81633,-73.91865,"(40.81633, -73.91865)",,,375 EAST 149 STREET,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4415656,Motorscooter,,,, +05/12/2021,13:25,QUEENS,11374,40.73247,-73.86167,"(40.73247, -73.86167)",97 STREET,62 DRIVE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415826,Sedan,Bike,,, +05/11/2021,22:55,QUEENS,11379,40.71244,-73.89403,"(40.71244, -73.89403)",65 LANE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416143,Sedan,,,, +05/14/2021,16:34,MANHATTAN,10022,40.757988,-73.969185,"(40.757988, -73.969185)",,,885 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416711,Box Truck,Box Truck,,, +05/11/2021,9:50,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4415676,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,5:40,,,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4415314,,,,, +05/12/2021,7:36,,,40.668606,-73.78168,"(40.668606, -73.78168)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4415809,Sedan,Sedan,,, +05/08/2021,11:50,,,40.7614,-73.91149,"(40.7614, -73.91149)",45 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416807,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,0:00,BRONX,10458,40.865303,-73.89006,"(40.865303, -73.89006)",MARION AVENUE,EAST 195 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416280,Sedan,,,, +05/07/2021,15:26,BRONX,10474,40.80816,-73.88866,"(40.80816, -73.88866)",EAST BAY AVENUE,CASANOVA STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4415694,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,1:30,QUEENS,11422,40.665257,-73.73926,"(40.665257, -73.73926)",SOUTH CONDUIT AVENUE,MEMPHIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4415210,Sedan,,,, +05/13/2021,22:55,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4416275,Motorcycle,Sedan,Sedan,, +05/08/2021,11:20,,,40.620247,-74.14188,"(40.620247, -74.14188)",,,156 CRYSTAL AVENUE,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4416349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,1:19,,,40.74525,-73.95575,"(40.74525, -73.95575)",47 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416263,Sedan,,,, +05/14/2021,0:00,,,40.741074,-73.7258,"(40.741074, -73.7258)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416524,Sedan,Sedan,,, +05/11/2021,14:19,,,40.803844,-73.91444,"(40.803844, -73.91444)",BRUCKNER BOULEVARD,EAST 136 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415641,Flat Bed,Sedan,,, +05/12/2021,10:20,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416976,Sedan,Sedan,,, +05/12/2021,16:56,BROOKLYN,11211,,,,VANDERVORT AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415999,Sedan,,,, +05/14/2021,15:45,,,40.667118,-73.88889,"(40.667118, -73.88889)",DUMONT AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4417208,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/12/2021,12:30,QUEENS,11429,40.705765,-73.74181,"(40.705765, -73.74181)",112 AVENUE,DELEVAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415883,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,16:40,,,40.867767,-73.92593,"(40.867767, -73.92593)",SEAMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4415519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,9:40,MANHATTAN,10026,40.800537,-73.94836,"(40.800537, -73.94836)",,,40 WEST 115 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417017,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,18:16,MANHATTAN,10035,40.79793,-73.934,"(40.79793, -73.934)",EAST 119 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416377,Sedan,Sedan,,, +05/10/2021,14:15,BRONX,10460,40.839848,-73.874435,"(40.839848, -73.874435)",,,1181 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416115,Sedan,Box Truck,,, +05/12/2021,15:45,,,40.766357,-73.7811,"(40.766357, -73.7811)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4415900,Flat Bed,Carry All,,, +05/12/2021,15:10,BRONX,10460,40.83945,-73.88393,"(40.83945, -73.88393)",,,1880 BOSTON ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416891,Sedan,Sedan,,, +05/12/2021,18:16,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,13:40,MANHATTAN,10019,40.76701,-73.98637,"(40.76701, -73.98637)",,,856 9 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Obstruction/Debris,,,,4416095,Van,REFG,,, +05/12/2021,15:05,QUEENS,11417,40.670628,-73.84742,"(40.670628, -73.84742)",NORTH CONDUIT AVENUE,WHITELAW STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4416016,Sedan,,,, +05/12/2021,14:00,BRONX,10462,40.835648,-73.855545,"(40.835648, -73.855545)",,,1470 UNIONPORT ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4415831,Sedan,,,, +05/14/2021,7:00,,,40.820965,-73.939575,"(40.820965, -73.939575)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416428,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,16:02,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4416547,Sedan,,,, +05/14/2021,15:46,STATEN ISLAND,10301,40.61978,-74.10793,"(40.61978, -74.10793)",,,1050 CLOVE ROAD,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4416958,Sedan,Bike,,, +05/10/2021,11:45,BRONX,10457,40.84717,-73.89882,"(40.84717, -73.89882)",,,450 EAST TREMONT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415527,Sedan,Bike,,, +05/12/2021,14:30,,,40.74724,-73.73696,"(40.74724, -73.73696)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415932,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,9:40,,,40.668495,-73.925606,"(40.668495, -73.925606)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416986,Taxi,Taxi,,, +05/09/2021,15:30,,,,,,101 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4415836,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,7:30,QUEENS,11691,40.59951,-73.749794,"(40.59951, -73.749794)",CAFFREY AVENUE,NEW HAVEN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4415794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,9:40,BROOKLYN,11215,40.665863,-73.98122,"(40.665863, -73.98122)",,,570 10 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416409,Station Wagon/Sport Utility Vehicle,,,, +04/17/2021,0:03,,,40.700977,-73.91782,"(40.700977, -73.91782)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4415704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/12/2021,14:23,BROOKLYN,11234,40.619545,-73.91727,"(40.619545, -73.91727)",AVENUE N,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416048,Tow Truck / Wrecker,Sedan,,, +05/11/2021,10:30,QUEENS,11415,40.713745,-73.82613,"(40.713745, -73.82613)",,,126-01 82 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4415537,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,13:07,,,40.80886,-73.95213,"(40.80886, -73.95213)",WEST 123 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4416222,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +05/10/2021,21:00,,,,,,PARK AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415240,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/13/2021,12:15,,,40.595062,-74.15969,"(40.595062, -74.15969)",,,1325 ROCKLAND AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4416354,Sedan,Sedan,,, +05/11/2021,9:00,BROOKLYN,11205,40.6931,-73.95489,"(40.6931, -73.95489)",SPENCER STREET,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416896,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,2:06,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",MARION AVENUE,EAST 184 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416312,Sedan,Sedan,,, +09/23/2021,19:35,BROOKLYN,11210,40.636208,-73.94899,"(40.636208, -73.94899)",FARRAGUT ROAD,EAST 29 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460356,Sedan,,,, +09/22/2021,9:00,MANHATTAN,10032,40.844162,-73.93958,"(40.844162, -73.93958)",,,636 WEST 172 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459737,Ambulance,Sedan,,, +09/24/2021,20:20,,,40.68836,-73.91615,"(40.68836, -73.91615)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4461209,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/24/2021,16:15,,,40.77215,-73.929,"(40.77215, -73.929)",ASTORIA BOULEVARD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460868,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,23:02,,,40.664173,-73.9449,"(40.664173, -73.9449)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4460339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,18:35,,,40.62867,-74.1498,"(40.62867, -74.1498)",,,295 GRANITE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,20:20,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460870,Sedan,Sedan,,, +09/24/2021,22:00,BRONX,10472,40.827763,-73.8683,"(40.827763, -73.8683)",,,1082 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461237,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,9:23,MANHATTAN,10025,40.789886,-73.9684,"(40.789886, -73.9684)",,,71 WEST 92 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460496,Sedan,Bus,,, +08/19/2021,8:00,BROOKLYN,11206,40.698074,-73.94685,"(40.698074, -73.94685)",,,50 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461474,Sedan,,,, +09/22/2021,17:57,BROOKLYN,11220,40.635483,-74.01113,"(40.635483, -74.01113)",,,758 61 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4459999,Sedan,Bike,,, +09/23/2021,20:00,BROOKLYN,11208,40.673817,-73.86485,"(40.673817, -73.86485)",SUTTER AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460409,Sedan,Sedan,,, +09/24/2021,20:00,,,40.827633,-73.93577,"(40.827633, -73.93577)",MACOMBS DAM BRIDGE,HARLEM RIV PARK BRIDGE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,19:40,BROOKLYN,11212,40.65654,-73.90931,"(40.65654, -73.90931)",,,591 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460952,Sedan,,,, +09/23/2021,16:30,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460491,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,12:00,BRONX,10467,40.88185,-73.87024,"(40.88185, -73.87024)",,,3538 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460310,Sedan,E-Bike,,, +09/22/2021,15:05,,,,,,ATLANTIC AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459902,Sedan,,,, +09/22/2021,17:25,QUEENS,11422,40.670937,-73.73544,"(40.670937, -73.73544)",BROOKVILLE BOULEVARD,136 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4459943,Sedan,E-Bike,,, +09/22/2021,7:48,BROOKLYN,11212,40.662533,-73.92706,"(40.662533, -73.92706)",,,38 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460181,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,9:00,BRONX,10451,40.819355,-73.9307,"(40.819355, -73.9307)",MAJOR DEEGAN EXPRESSWAY,EAST 149 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4460815,Bus,Bus,Station Wagon/Sport Utility Vehicle,Dump, +09/23/2021,6:43,MANHATTAN,10017,40.753944,-73.972145,"(40.753944, -73.972145)",3 AVENUE,EAST 47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460141,Bus,Taxi,,, +07/27/2021,10:57,,,40.67132,-73.9281,"(40.67132, -73.9281)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4461048,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,9:52,BROOKLYN,11214,40.592403,-73.9954,"(40.592403, -73.9954)",,,1730 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4460147,Sedan,,,, +09/23/2021,15:18,QUEENS,11417,40.674503,-73.83773,"(40.674503, -73.83773)",LINDEN BOULEVARD,HAWTREE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460413,Sedan,,,, +09/24/2021,12:10,MANHATTAN,10017,40.753128,-73.968254,"(40.753128, -73.968254)",,,100 UN PLAZA,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4460523,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,7:45,QUEENS,11377,40.735657,-73.9096,"(40.735657, -73.9096)",58 STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4459726,Sedan,Flat Bed,,, +09/24/2021,7:53,BRONX,10457,40.840744,-73.89933,"(40.840744, -73.89933)",,,3970 3 AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4460675,Sedan,Sedan,,, +09/23/2021,23:50,,,40.63932,-74.02356,"(40.63932, -74.02356)",65 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460452,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,11:20,,,40.807335,-73.9644,"(40.807335, -73.9644)",WEST 115 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4460891,Taxi,Sedan,,, +09/23/2021,18:31,MANHATTAN,10029,40.78935,-73.94928,"(40.78935, -73.94928)",,,125 EAST 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460584,Sedan,,,, +09/24/2021,16:00,,,40.886185,-73.866974,"(40.886185, -73.866974)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4461138,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/22/2021,21:40,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",WEST 42 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460545,Sedan,Bus,,, +09/22/2021,11:57,BROOKLYN,11218,40.64138,-73.969406,"(40.64138, -73.969406)",CONEY ISLAND AVENUE,AVENUE C,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460056,Fire Truck,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,19:20,BRONX,10459,40.830463,-73.891815,"(40.830463, -73.891815)",,,1285 SOUTHERN BOULEVARD,1,0,0,0,0,0,0,0,Pavement Slippery,,,,,4460420,E-Scooter,,,, +09/23/2021,12:10,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing Too Closely,,,,4460552,Bike,Sedan,,, +09/20/2021,21:33,QUEENS,11411,40.68815,-73.72963,"(40.68815, -73.72963)",234 STREET,119 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4460660,Sedan,Sedan,,, +09/24/2021,15:00,,,40.822643,-73.88606,"(40.822643, -73.88606)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4461416,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,10:00,BROOKLYN,11239,40.646214,-73.876114,"(40.646214, -73.876114)",SEAVIEW AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461067,Sedan,,,, +09/22/2021,13:00,,,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4460441,Pick-up Truck,Box Truck,,, +09/24/2021,7:40,BROOKLYN,11210,40.632072,-73.940796,"(40.632072, -73.940796)",AVENUE H,EAST 37 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4460747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:08,,,40.608353,-73.99078,"(40.608353, -73.99078)",21 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460626,Sedan,Box Truck,,, +09/20/2021,15:00,MANHATTAN,10069,40.77954,-73.988,"(40.77954, -73.988)",RIVERSIDE BOULEVARD,WEST 70 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461276,Sedan,Sedan,,, +09/22/2021,9:20,QUEENS,11377,,,,QUEENS BOULEVARD,58 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4459806,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,21:22,BRONX,10468,40.86634,-73.90059,"(40.86634, -73.90059)",WEST 192 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,17:00,QUEENS,11418,40.702873,-73.817055,"(40.702873, -73.817055)",KEW GARDEN ROAD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460418,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:00,QUEENS,11106,40.761124,-73.9236,"(40.761124, -73.9236)",,,33-14 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4460866,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,17:35,QUEENS,11373,40.736652,-73.88754,"(40.736652, -73.88754)",,,51-03 JACOBUS STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4460773,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,19:40,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4460708,Sedan,Tractor Truck Diesel,,, +09/22/2021,6:15,,,40.708374,-73.84271,"(40.708374, -73.84271)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460111,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,21:25,QUEENS,11378,40.72702,-73.90765,"(40.72702, -73.90765)",,,59-36 MAURICE AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4460695,Sedan,,,, +09/22/2021,9:10,MANHATTAN,10010,40.741127,-73.99065,"(40.741127, -73.99065)",,,5 WEST 22 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461190,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/22/2021,1:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459688,Sedan,,,, +09/24/2021,14:25,BROOKLYN,11206,40.702713,-73.937325,"(40.702713, -73.937325)",BUSHWICK AVENUE,COOK STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460920,Sedan,,,, +09/22/2021,9:20,BRONX,10469,40.875343,-73.83859,"(40.875343, -73.83859)",,,3215 ELY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4459957,Sedan,Sedan,,, +09/23/2021,9:05,,,40.673992,-73.73508,"(40.673992, -73.73508)",LAURELTON PARKWAY,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460139,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,5:48,BROOKLYN,11220,40.630283,-74.01635,"(40.630283, -74.01635)",7 AVENUE,70 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460468,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,14:30,MANHATTAN,10128,40.77716,-73.94794,"(40.77716, -73.94794)",,,439 EAST 87 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460380,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,11:50,QUEENS,11421,40.690464,-73.857376,"(40.690464, -73.857376)",,,88-21 86 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4460528,Pick-up Truck,Sedan,Sedan,Sedan,Sedan +09/21/2021,13:40,BROOKLYN,11231,40.67447,-74.001976,"(40.67447, -74.001976)",CLINTON STREET,CENTRE MALL,,1,0,0,0,1,0,0,0,Obstruction/Debris,Unspecified,,,,4460653,Box Truck,Bike,,, +09/24/2021,16:29,BRONX,10453,40.854874,-73.916794,"(40.854874, -73.916794)",WEST 179 STREET,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460689,Sedan,Moped,,, +09/24/2021,16:05,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4460707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,17:20,MANHATTAN,10012,40.721573,-73.99735,"(40.721573, -73.99735)",,,225 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460084,Sedan,Bike,,, +09/23/2021,12:35,,,40.75727,-73.74765,"(40.75727, -73.74765)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460579,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,8:12,BROOKLYN,11222,40.73036,-73.952515,"(40.73036, -73.952515)",GREENPOINT AVENUE,ECKFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4459865,Sedan,,,, +09/15/2021,21:53,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461217,,,,, +09/12/2021,16:12,MANHATTAN,10002,,,,EAST BROADWAY,RUTGERS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4461181,Sedan,Sedan,,, +09/24/2021,16:10,BROOKLYN,11203,40.639378,-73.93586,"(40.639378, -73.93586)",FOSTER AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461149,Station Wagon/Sport Utility Vehicle,Bike,,, +09/22/2021,12:45,STATEN ISLAND,10301,40.640053,-74.08018,"(40.640053, -74.08018)",DANIEL LOW TERRACE,BENZIGER AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4460279,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/23/2021,2:30,MANHATTAN,10036,40.760155,-73.9988,"(40.760155, -73.9988)",11 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4460547,Sedan,Taxi,,, +09/22/2021,16:50,,,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4460229,Station Wagon/Sport Utility Vehicle,Bus,,, +09/24/2021,22:25,BROOKLYN,11220,40.646793,-74.013145,"(40.646793, -74.013145)",,,368 50 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460724,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/16/2021,14:40,,,,,,12 AVENUE,WEST 22 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460532,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,0:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4460004,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,11:00,QUEENS,11423,40.70911,-73.776054,"(40.70911, -73.776054)",184 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460445,Sedan,,,, +09/24/2021,1:07,QUEENS,11378,40.72621,-73.920525,"(40.72621, -73.920525)",56 ROAD,48 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4460638,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/24/2021,15:00,,,40.6557,-73.74486,"(40.6557, -73.74486)",BROOKVILLE BOULEVARD,147 DRIVE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4461374,Sedan,,,, +09/24/2021,18:37,,,40.64059,-73.95429,"(40.64059, -73.95429)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460621,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,4:26,BROOKLYN,11205,40.68945,-73.96809,"(40.68945, -73.96809)",CLINTON AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4459985,E-Scooter,Sedan,,, +09/17/2021,19:40,,,40.593155,-74.16262,"(40.593155, -74.16262)",RICHMOND AVENUE,TRAVIS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460564,Station Wagon/Sport Utility Vehicle,Bus,,, +09/23/2021,10:49,,,40.81969,-73.90161,"(40.81969, -73.90161)",EAST 160 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460185,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,22:24,,,,,,BROADWAY,BROADWAY,,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4460809,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/05/2021,10:30,BROOKLYN,11205,,,,WILLOUGHBY AVENUE,WALWORTH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461482,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,18:00,,,40.655853,-73.910126,"(40.655853, -73.910126)",BOYLAND STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460845,Sedan,Sedan,,, +09/13/2021,16:05,MANHATTAN,10023,0,0,"(0.0, 0.0)",WEST 60 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461268,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,16:56,QUEENS,11357,40.77846,-73.809135,"(40.77846, -73.809135)",154 STREET,22 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4460606,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/24/2021,23:30,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4460671,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/24/2021,11:15,QUEENS,11358,40.763622,-73.786964,"(40.763622, -73.786964)",,,35-09 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460577,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,21:30,QUEENS,11373,40.73602,-73.87954,"(40.73602, -73.87954)",VANLOON STREET,GRAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460998,Sedan,Sedan,,, +09/24/2021,16:00,QUEENS,11354,40.77045,-73.83421,"(40.77045, -73.83421)",WHITESTONE EXPRESSWAY,FARRINGTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461243,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/23/2021,10:19,BRONX,10451,40.826878,-73.91176,"(40.826878, -73.91176)",,,1000 BROOK AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4460205,Sedan,E-Bike,Sedan,, +09/22/2021,16:30,BRONX,10458,40.865997,-73.88802,"(40.865997, -73.88802)",,,364 EAST 197 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460450,Sedan,,,, +09/21/2021,11:56,STATEN ISLAND,10304,40.62665,-74.08222,"(40.62665, -74.08222)",GORDON STREET,GROVE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461147,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,12:15,BROOKLYN,11222,40.73569,-73.95696,"(40.73569, -73.95696)",,,80 DUPONT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461019,Sedan,,,, +09/24/2021,6:15,,,,,,LINDEN BLVD,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460678,Van,Sedan,,, +09/20/2021,14:00,QUEENS,11106,40.767014,-73.934944,"(40.767014, -73.934944)",12 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460862,Sedan,,,, +09/23/2021,9:30,BRONX,10455,40.820545,-73.91452,"(40.820545, -73.91452)",,,429 EAST 156 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461449,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +09/24/2021,16:00,BROOKLYN,11208,40.68192,-73.86603,"(40.68192, -73.86603)",ELDERTS LANE,95 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4461077,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,18:15,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4461453,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,6:30,,,40.85947,-73.915726,"(40.85947, -73.915726)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460599,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,18:30,BROOKLYN,11230,40.620304,-73.966286,"(40.620304, -73.966286)",,,1189 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460394,Sedan,Sedan,,, +09/20/2021,18:00,,,40.672516,-73.93356,"(40.672516, -73.93356)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461253,Bike,Sedan,,, +09/22/2021,19:30,BROOKLYN,11218,40.647297,-73.9803,"(40.647297, -73.9803)",MC DONALD AVENUE,CATON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460978,Sedan,,,, +09/22/2021,3:15,,,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4459849,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/23/2021,9:20,QUEENS,11420,40.680325,-73.82898,"(40.680325, -73.82898)",111 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460366,Sedan,,,, +09/22/2021,7:00,,,40.640015,-73.92575,"(40.640015, -73.92575)",KINGS HIGHWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4459780,Bus,Sedan,,, +09/23/2021,15:40,STATEN ISLAND,10304,40.608776,-74.090805,"(40.608776, -74.090805)",NARROWS ROAD SOUTH,RICHMOND ROAD,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4461405,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,18:00,MANHATTAN,10016,40.744728,-73.97579,"(40.744728, -73.97579)",,,300 EAST 34 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,15:00,BROOKLYN,11217,40.67947,-73.98469,"(40.67947, -73.98469)",,,214 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460116,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,2:54,QUEENS,11385,40.709305,-73.907005,"(40.709305, -73.907005)",BLEECKER STREET,GRANDVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4514854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/22/2021,14:45,BRONX,10457,40.847855,-73.895584,"(40.847855, -73.895584)",EAST 178 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4460433,Motorscooter,Sedan,,, +09/23/2021,21:23,BRONX,10458,40.858303,-73.892784,"(40.858303, -73.892784)",EAST 187 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4460472,Sedan,,,, +09/23/2021,8:00,,,40.85525,-73.91277,"(40.85525, -73.91277)",WEST 179 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460153,Sedan,Sedan,,, +09/22/2021,16:18,,,40.87091,-73.881,"(40.87091, -73.881)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4459918,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,21:07,MANHATTAN,10009,40.72059,-73.974884,"(40.72059, -73.974884)",,,691 FDR DRIVE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460023,Sedan,,,, +09/24/2021,20:20,MANHATTAN,10035,40.79732,-73.929306,"(40.79732, -73.929306)",,,50 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460731,Sedan,,,, +09/19/2021,10:29,QUEENS,11369,40.76542,-73.86467,"(40.76542, -73.86467)",,,106-17 27 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460483,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,10:40,,,40.768955,-73.82669,"(40.768955, -73.82669)",UNION STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416944,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,16:00,BRONX,10462,40.845776,-73.863464,"(40.845776, -73.863464)",MORRIS PARK AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460134,Sedan,,,, +09/22/2021,21:30,BROOKLYN,11203,40.654537,-73.943726,"(40.654537, -73.943726)",,,458 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4460073,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,1:48,BRONX,10461,40.844746,-73.84586,"(40.844746, -73.84586)",,,1610 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4460941,Sedan,,,, +09/24/2021,10:15,MANHATTAN,10065,40.764053,-73.96476,"(40.764053, -73.96476)",3 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460500,Sedan,Dump,,, +09/11/2021,16:45,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",MARCUS GARVEY BOULEVARD,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4461040,Sedan,Sedan,,, +09/19/2021,2:00,,,40.74035,-73.788345,"(40.74035, -73.788345)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461034,Sedan,,,, +09/22/2021,1:04,,,40.719177,-73.79223,"(40.719177, -73.79223)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4459774,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,2:39,BROOKLYN,11208,40.666958,-73.860245,"(40.666958, -73.860245)",,,903 DREW STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4459669,Sedan,,,, +09/22/2021,18:34,QUEENS,11354,40.76985,-73.8093,"(40.76985, -73.8093)",155 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Headlights Defective,Unspecified,,,,4459960,Sedan,SCOOTER,,, +09/24/2021,16:16,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,ADAMS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460650,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,16:46,BROOKLYN,11212,40.673985,-73.90697,"(40.673985, -73.90697)",EAST NEW YORK AVENUE,CHRISTOPHER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4460351,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,23:35,MANHATTAN,10016,40.74592,-73.986404,"(40.74592, -73.986404)",EAST 30 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4460033,Taxi,,,, +09/22/2021,11:30,,,40.77873,-73.977844,"(40.77873, -73.977844)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4459921,Taxi,,,, +09/23/2021,12:28,MANHATTAN,10009,40.72375,-73.97806,"(40.72375, -73.97806)",,,249 EAST 7 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461299,Pick-up Truck,Ambulance,,, +09/24/2021,0:01,QUEENS,11373,40.743793,-73.88472,"(40.743793, -73.88472)",BROADWAY,80 STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4460460,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,6:45,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4460236,Flat Bed,,,, +09/23/2021,7:58,,,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460271,Sedan,Box Truck,,, +09/22/2021,6:00,QUEENS,11377,40.73863,-73.90833,"(40.73863, -73.90833)",58 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460515,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,0:40,,,40.71664,-73.97561,"(40.71664, -73.97561)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460592,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,12:00,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460191,Sedan,Motorscooter,,, +09/22/2021,22:55,MANHATTAN,10002,40.711258,-73.989685,"(40.711258, -73.989685)",,,250 CHERRY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4460804,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/23/2021,18:53,BROOKLYN,11215,40.668293,-73.97924,"(40.668293, -73.97924)",,,506 6 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,15:50,BROOKLYN,11204,40.62058,-73.9964,"(40.62058, -73.9964)",16 AVENUE,67 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4460560,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/23/2021,20:05,STATEN ISLAND,10301,40.63155,-74.09493,"(40.63155, -74.09493)",,,173 FOREST AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4461006,Sedan,,,, +09/23/2021,1:53,,,40.651268,-73.97181,"(40.651268, -73.97181)",PARK CIRCLE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4460324,Sedan,,,, +03/29/2022,17:33,,,40.671085,-73.736275,"(40.671085, -73.736275)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4514599,Tractor Truck Diesel,,,, +09/22/2021,15:00,BROOKLYN,11217,40.68733,-73.98183,"(40.68733, -73.98183)",SCHERMERHORN STREET,NEVINS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461260,Pick-up Truck,,,, +09/22/2021,13:55,BRONX,10467,40.8753,-73.86813,"(40.8753, -73.86813)",MAGENTA STREET,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461123,Sedan,Sedan,,, +09/24/2021,20:37,,,40.76786,-73.96408,"(40.76786, -73.96408)",EAST 68 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460829,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,17:12,BRONX,10467,40.87397,-73.878876,"(40.87397, -73.878876)",,,266 EAST 205 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460428,Station Wagon/Sport Utility Vehicle,,,, +09/06/2022,9:03,MANHATTAN,10011,40.739826,-74.00054,"(40.739826, -74.00054)",,,247 WEST 15 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4562123,Sedan,Sedan,,, +09/20/2021,8:51,MANHATTAN,10000,40.781193,-73.96187,"(40.781193, -73.96187)",,,31 TRANSVERSE ROAD NUMBER THREE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460631,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:15,,,40.701008,-73.9424,"(40.701008, -73.9424)",BROADWAY,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460618,Sedan,Motorcycle,,, +09/22/2021,20:15,MANHATTAN,10038,40.70973,-74.00626,"(40.70973, -74.00626)",,,150 WILLIAM STREET,1,0,0,0,0,0,1,0,Other Vehicular,Vehicle Vandalism,,,,4459977,Sedan,Sedan,,, +09/23/2021,19:15,,,40.58855,-74.14629,"(40.58855, -74.14629)",,,854 ROCKLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460890,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,11:09,,,,,,,,LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4460199,Sedan,Sedan,Sedan,, +09/18/2021,0:32,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461057,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,17:15,,,40.76542,-73.98383,"(40.76542, -73.98383)",WEST 55 STREET,,,1,0,0,0,0,0,1,0,Animals Action,Unspecified,,,,4460346,Sedan,HORSE CARR,,, +09/22/2021,14:20,BRONX,10460,40.837673,-73.86548,"(40.837673, -73.86548)",THIERIOT AVENUE,ARCHER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460106,Sedan,,,, +09/22/2021,16:02,MANHATTAN,10031,,,,WEST 145 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Alcohol Involvement,,,,4460362,Sedan,Pick-up Truck,,, +09/20/2021,7:06,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460717,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/24/2021,7:12,BROOKLYN,11221,40.68957,-73.912605,"(40.68957, -73.912605)",,,138 WEIRFIELD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460529,Sedan,,,, +09/23/2021,8:10,MANHATTAN,10019,40.764683,-73.99179,"(40.764683, -73.99179)",WEST 50 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460386,Taxi,,,, +09/24/2021,10:28,BROOKLYN,11206,40.70621,-73.939606,"(40.70621, -73.939606)",BOERUM STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460514,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,15:50,BRONX,10466,40.89696,-73.854355,"(40.89696, -73.854355)",FURMAN AVENUE,EAST 237 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4461126,Multi-Wheeled Vehicle,,,, +09/22/2021,11:47,,,,,,7 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4460492,Bus,Bike,,, +09/22/2021,8:34,QUEENS,11355,40.75902,-73.82012,"(40.75902, -73.82012)",,,144-25 SANFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4459843,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,18:52,BROOKLYN,11206,40.69603,-73.943535,"(40.69603, -73.943535)",THROOP AVENUE,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461465,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/24/2021,6:50,BROOKLYN,11204,40.627975,-73.97753,"(40.627975, -73.97753)",PARKVILLE AVENUE,47 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461410,Station Wagon/Sport Utility Vehicle,Bike,,, +09/22/2021,13:00,BRONX,10461,40.843212,-73.83894,"(40.843212, -73.83894)",WATERS PLACE,FINK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460130,Sedan,Sedan,,, +09/22/2021,11:00,BRONX,10467,40.886448,-73.86663,"(40.886448, -73.86663)",,,3620 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4461128,Sedan,,,, +09/23/2021,20:30,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460309,Sedan,Sedan,,, +09/22/2021,9:20,BRONX,10451,40.82083,-73.9222,"(40.82083, -73.9222)",,,2980 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/22/2021,8:20,BRONX,10473,40.82282,-73.8691,"(40.82282, -73.8691)",STORY AVENUE,CROES AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4459804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,14:55,BROOKLYN,11209,,,,,,7201 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4459908,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,23:27,BROOKLYN,11208,40.66829,-73.8763,"(40.66829, -73.8763)",,,399 MONTAUK AVENUE,1,0,1,0,0,0,0,0,,,,,,4461090,,,,, +09/23/2021,15:10,,,40.667774,-73.77702,"(40.667774, -73.77702)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,1:25,,,40.859325,-73.93132,"(40.859325, -73.93132)",NAGLE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4461169,Sedan,,,, +09/23/2021,6:55,BROOKLYN,11223,40.590984,-73.97569,"(40.590984, -73.97569)",,,2911 86 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460162,Bus,Sedan,,, +09/23/2021,7:45,BRONX,10462,40.833702,-73.85631,"(40.833702, -73.85631)",,,2044 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460148,Bus,Sedan,,, +09/22/2021,0:20,MANHATTAN,10029,40.790905,-73.93914,"(40.790905, -73.93914)",1 AVENUE,EAST 108 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Other Vehicular,,,,4459741,Sedan,Sedan,,, +09/24/2021,8:56,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4460504,Bus,Sedan,,, +09/23/2021,12:50,BROOKLYN,11205,40.694363,-73.958,"(40.694363, -73.958)",MYRTLE AVENUE,FRANKLIN AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4461047,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,12:35,,,40.686203,-73.950745,"(40.686203, -73.950745)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461198,Bus,Sedan,,, +09/21/2021,21:50,,,40.735764,-73.97491,"(40.735764, -73.97491)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461192,Sedan,,,, +09/23/2021,0:00,,,40.73447,-73.86316,"(40.73447, -73.86316)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4460455,Sedan,Pick-up Truck,,, +09/24/2021,5:45,QUEENS,11378,40.72425,-73.894455,"(40.72425, -73.894455)",,,58-14 69 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4460698,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/24/2021,19:25,BRONX,10461,40.842793,-73.84749,"(40.842793, -73.84749)",,,2563 MACLAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,12:15,,,,,,WEST 144 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460646,Sedan,Sedan,,, +09/23/2021,22:00,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460368,Sedan,Sedan,,, +09/23/2021,5:50,QUEENS,11356,40.78566,-73.855095,"(40.78566, -73.855095)",14 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460195,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,16:49,BROOKLYN,11207,40.6646,-73.89502,"(40.6646, -73.89502)",LIVONIA AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460408,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,0:00,,,,,,KNAPP STREET,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4460012,Sedan,Moped,,, +09/22/2021,12:45,MANHATTAN,10003,40.734886,-73.98995,"(40.734886, -73.98995)",,,10 UNION SQUARE EAST,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4460242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,13:30,,,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4460247,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,2:00,,,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459627,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,21:40,BROOKLYN,11226,40.64944,-73.96308,"(40.64944, -73.96308)",EAST 18 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460355,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,7:00,,,40.70694,-73.91774,"(40.70694, -73.91774)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460050,Sedan,,,, +09/22/2021,9:30,,,,,,117 AVENUE,MONTAUK STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461319,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/18/2021,10:00,,,40.673588,-73.96296,"(40.673588, -73.96296)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,13:08,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460068,Sedan,Sedan,,, +09/23/2021,20:55,MANHATTAN,10025,40.795017,-73.97151,"(40.795017, -73.97151)",,,2568 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460423,Sedan,E-Bike,,, +09/22/2021,20:00,BROOKLYN,11234,40.610664,-73.93239,"(40.610664, -73.93239)",,,1940 EAST 36 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4460588,,,,, +03/21/2022,19:00,QUEENS,11435,40.695637,-73.80372,"(40.695637, -73.80372)",SUTPHIN BOULEVARD,105 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515138,,,,, +09/23/2021,14:50,BRONX,10458,40.867764,-73.89039,"(40.867764, -73.89039)",,,2770 BRIGGS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460440,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,10:53,BROOKLYN,11221,40.69482,-73.934425,"(40.69482, -73.934425)",HART STREET,STUYVESANT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459973,E-Scooter,Sedan,,, +09/18/2021,15:30,BROOKLYN,11207,40.67425,-73.88885,"(40.67425, -73.88885)",SCHENCK AVENUE,GLENMORE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4461066,Sedan,,,, +09/22/2021,6:18,QUEENS,11101,40.756474,-73.94727,"(40.756474, -73.94727)",VERNON BOULEVARD,41 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460173,Sedan,Bike,,, +09/23/2021,23:25,QUEENS,11413,40.67775,-73.75434,"(40.67775, -73.75434)",,,216-24 136 AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4460519,Sedan,Sedan,,, +09/21/2021,7:45,,,40.692123,-73.98904,"(40.692123, -73.98904)",ADAMS STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461256,Bike,Sedan,,, +09/23/2021,22:32,,,40.596542,-74.00247,"(40.596542, -74.00247)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460556,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,3:10,MANHATTAN,10018,40.751175,-73.98706,"(40.751175, -73.98706)",,,65 WEST 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461014,Sedan,,,, +09/23/2021,13:30,MANHATTAN,10002,40.71958,-73.98483,"(40.71958, -73.98483)",,,57 CLINTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460792,,,,, +09/21/2021,16:20,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460482,Sedan,Sedan,,, +09/21/2021,8:50,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461117,Sedan,,,, +09/19/2021,7:00,BRONX,10455,40.820553,-73.914604,"(40.820553, -73.914604)",,,432 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461438,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,7:00,,,,,,EAST 142 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460736,Sedan,,,, +09/24/2021,16:19,BROOKLYN,11236,40.64359,-73.90471,"(40.64359, -73.90471)",EAST 94 STREET,GLENWOOD ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460614,Station Wagon/Sport Utility Vehicle,Bike,,, +09/16/2021,14:35,QUEENS,11377,,,,,,32-55 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460858,Taxi,Box Truck,,, +09/24/2021,22:51,,,40.811203,-73.96158,"(40.811203, -73.96158)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460897,Sedan,Sedan,,, +09/23/2021,16:44,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461427,Sedan,Sedan,,, +09/22/2021,7:05,,,40.653854,-74.00817,"(40.653854, -74.00817)",39 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4459998,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/26/2021,23:30,BROOKLYN,11213,40.67019,-73.93935,"(40.67019, -73.93935)",ALBANY AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461053,Sedan,,,, +09/23/2021,21:49,,,,,,MANHATTAN BR UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4460342,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,20:00,,,40.67828,-73.958855,"(40.67828, -73.958855)",DEAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461236,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,22:27,,,40.764732,-73.96637,"(40.764732, -73.96637)",EAST 63 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4461368,Bike,Sedan,,, +09/24/2021,10:48,,,40.770565,-73.835495,"(40.770565, -73.835495)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4460497,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,3:15,QUEENS,11434,40.672844,-73.76405,"(40.672844, -73.76405)",FARMERS BOULEVARD,138 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4460477,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,16:50,QUEENS,11691,40.595863,-73.74822,"(40.595863, -73.74822)",,,217 BEACH 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460721,Sedan,,,, +09/25/2012,12:36,QUEENS,11385,40.700005,-73.90296,"(40.700005, -73.90296)",WEIRFIELD STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4461135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,18:40,BROOKLYN,11208,40.679737,-73.878395,"(40.679737, -73.878395)",ATLANTIC AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,19:54,,,40.674576,-73.92206,"(40.674576, -73.92206)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460956,Station Wagon/Sport Utility Vehicle,Motorbike,,, +09/24/2021,11:00,QUEENS,11418,40.70299,-73.82519,"(40.70299, -73.82519)",126 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),,,,,4460546,Sedan,,,, +09/23/2021,23:45,,,40.829376,-73.88562,"(40.829376, -73.88562)",SHERIDAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4460414,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +09/05/2021,22:50,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,130 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4460659,Sedan,Sedan,,, +05/11/2021,9:22,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417377,Sedan,Sedan,,, +09/23/2021,15:07,BRONX,10465,40.82767,-73.82937,"(40.82767, -73.82937)",BRINSMADE AVENUE,LAFAYETTE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460509,Sedan,,,, +09/24/2021,20:15,BROOKLYN,11238,40.675926,-73.95608,"(40.675926, -73.95608)",SAINT MARKS AVENUE,FRANKLIN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461182,Sedan,E-Bike,,, +09/24/2021,21:55,MANHATTAN,10025,40.799976,-73.958626,"(40.799976, -73.958626)",WEST 109 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460691,Taxi,,,, +09/24/2021,16:30,,,40.681118,-73.96443,"(40.681118, -73.96443)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4460610,Sedan,Sedan,,, +09/23/2021,23:10,QUEENS,11377,40.74425,-73.90142,"(40.74425, -73.90142)",WOODSIDE AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460748,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,11:00,MANHATTAN,10018,40.75587,-73.99822,"(40.75587, -73.99822)",WEST 36 STREET,10 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460541,E-Scooter,Pick-up Truck,,, +09/24/2021,16:00,BROOKLYN,11236,40.653183,-73.915016,"(40.653183, -73.915016)",,,9423 AVENUE A,0,0,0,0,0,0,0,0,,,,,,4461279,,,,, +09/17/2021,9:49,BROOKLYN,11226,40.654457,-73.960785,"(40.654457, -73.960785)",EAST 21 STREET,WOODRUFF AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4460905,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +09/23/2021,15:00,BRONX,10475,40.880535,-73.83212,"(40.880535, -73.83212)",REEDS MILL LANE,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461101,Sedan,Sedan,,, +09/22/2021,9:50,BROOKLYN,11225,0,0,"(0.0, 0.0)",,,501 MAPLE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460061,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,13:20,,,40.70722,-73.78957,"(40.70722, -73.78957)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4459876,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,7:22,,,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4459720,Station Wagon/Sport Utility Vehicle,Bike,,, +09/22/2021,18:40,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460124,Sedan,E-Bike,,, +09/23/2021,9:10,QUEENS,11102,40.770042,-73.93057,"(40.770042, -73.93057)",14 STREET,30 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460182,Sedan,Sedan,,, +09/23/2021,15:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461163,Sedan,Box Truck,,, +09/22/2021,12:45,BROOKLYN,11230,40.63144,-73.97027,"(40.63144, -73.97027)",,,224 PARKVILLE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459948,Sedan,,,, +09/22/2021,15:30,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4459929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,8:29,,,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,,,7,0,0,0,0,0,7,0,Following Too Closely,Unspecified,,,,4460142,Bus,Sedan,,, +09/23/2021,16:15,,,40.631615,-74.01698,"(40.631615, -74.01698)",BAY RIDGE AVENUE,7 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4460330,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,9:16,QUEENS,11377,40.761635,-73.90552,"(40.761635, -73.90552)",HOBART STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460852,Sedan,,,, +09/22/2021,8:58,MANHATTAN,10016,40.74285,-73.97721,"(40.74285, -73.97721)",2 AVENUE,EAST 31 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460524,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,9:30,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461205,Sedan,Sedan,Sedan,, +09/23/2021,11:15,QUEENS,11354,40.771854,-73.83179,"(40.771854, -73.83179)",WHITESTONE EXPRESSWAY,29 ROAD,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4460583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,6:15,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460451,Sedan,Tractor Truck Diesel,,, +09/18/2021,2:54,QUEENS,11378,40.729053,-73.90024,"(40.729053, -73.90024)",,,53-45 65 PLACE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460702,Sedan,Sedan,,, +09/22/2021,16:00,QUEENS,11378,40.723125,-73.92046,"(40.723125, -73.92046)",,,57-29 49 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4459989,Station Wagon/Sport Utility Vehicle,FORK LIFT,,, +09/22/2021,12:48,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4460019,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/22/2021,14:40,STATEN ISLAND,10310,40.63196,-74.1228,"(40.63196, -74.1228)",CARY AVENUE,TAYLOR STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460286,Bus,Sedan,,, +09/22/2021,13:36,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4460224,Sedan,,,, +09/23/2021,23:59,BROOKLYN,11203,40.646557,-73.92593,"(40.646557, -73.92593)",EAST 54 STREET,BEVERLEY ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460399,Sedan,Sedan,Sedan,, +09/21/2021,11:50,BROOKLYN,11225,40.663853,-73.95194,"(40.663853, -73.95194)",,,315 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460568,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,8:00,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4461060,Sedan,Sedan,,, +09/23/2021,17:10,QUEENS,11421,40.69366,-73.85217,"(40.69366, -73.85217)",WOODHAVEN BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4460419,Sedan,Bus,,, +09/23/2021,0:10,,,,,,WEBSTER AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4460042,Sedan,Bike,,, +09/24/2021,11:48,BROOKLYN,11237,40.701195,-73.91409,"(40.701195, -73.91409)",MENAHAN STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460551,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,14:45,STATEN ISLAND,10306,40.56094,-74.100815,"(40.56094, -74.100815)",CEDARGROVE COURT,CEDARGROVE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461396,Ambulance,,,, +09/21/2021,9:10,,,40.657997,-73.93591,"(40.657997, -73.93591)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460436,Ambulance,Bus,,, +09/22/2021,18:05,QUEENS,11357,40.78665,-73.8264,"(40.78665, -73.8264)",143 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4459978,Sedan,Sedan,Sedan,, +09/24/2021,12:19,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",LONGWOOD AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461389,Pick-up Truck,Sedan,,, +09/24/2021,10:45,QUEENS,11417,40.67801,-73.84975,"(40.67801, -73.84975)",107 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461350,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,21:21,QUEENS,11420,40.667118,-73.811165,"(40.667118, -73.811165)",,,129-03 NORTH CONDUIT AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460372,Taxi,,,, +09/24/2021,15:30,QUEENS,11372,40.74662,-73.89359,"(40.74662, -73.89359)",72 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460778,Sedan,Bike,,, +09/24/2021,6:00,BROOKLYN,11214,40.611607,-73.99916,"(40.611607, -73.99916)",,,1771 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460625,Pick-up Truck,,,, +09/22/2021,16:20,BROOKLYN,11208,,,,,,891 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460200,Sedan,Sedan,,, +09/07/2021,11:05,MANHATTAN,10003,40.730564,-73.99052,"(40.730564, -73.99052)",WANAMAKER PLACE,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4461026,Taxi,Armored Truck,,, +09/24/2021,21:30,QUEENS,11385,40.698814,-73.89215,"(40.698814, -73.89215)",75 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460642,Van,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,17:48,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460740,Sedan,Sedan,,, +09/24/2021,7:10,STATEN ISLAND,10305,40.608063,-74.06171,"(40.608063, -74.06171)",,,1466 BAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4460993,Sedan,Sedan,Pick-up Truck,Sedan, +09/24/2021,12:05,BRONX,10451,40.81572,-73.925064,"(40.81572, -73.925064)",EAST 144 STREET,RIDER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460818,Sedan,Sedan,,, +09/24/2021,15:07,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",EAST 73 STREET,RALPH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460573,Sedan,,,, +09/22/2021,10:00,QUEENS,11102,40.771515,-73.93128,"(40.771515, -73.93128)",12 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460211,Sedan,,,, +09/13/2021,1:00,QUEENS,11372,40.748775,-73.89348,"(40.748775, -73.89348)",,,72-10 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460683,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/24/2021,3:55,,,,,,LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4460578,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,16:40,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4460536,Flat Bed,Sedan,,, +09/23/2021,13:00,BROOKLYN,11220,,,,,,606 52 Street,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460446,Sedan,,,, +09/24/2021,15:15,,,40.753994,-73.94244,"(40.753994, -73.94244)",21 STREET,,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4460872,Sedan,,,, +09/22/2021,16:55,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4460230,Sedan,Sedan,,, +09/15/2021,2:40,,,40.67342,-73.95017,"(40.67342, -73.95017)",PARK PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461225,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,20:30,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,15:00,,,40.815662,-73.88702,"(40.815662, -73.88702)",FAILE STREET,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461475,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,17:30,QUEENS,11368,40.73619,-73.85806,"(40.73619, -73.85806)",,,99-25 HORACE HARDING EXPRESSWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514680,Sedan,Bike,,, +03/29/2022,12:00,QUEENS,11373,40.744965,-73.883705,"(40.744965, -73.883705)",,,42-17 KETCHAM STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514924,Sedan,,,, +03/25/2022,19:38,BRONX,10463,,,,,,3530 HENRY HUDSON PARKWAY E,0,0,0,0,0,0,0,0,Unspecified,,,,,4515007,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,23:06,QUEENS,11694,40.581604,-73.83077,"(40.581604, -73.83077)",BEACH 109 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514972,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,17:02,BRONX,10458,40.863163,-73.8942,"(40.863163, -73.8942)",BRIGGS AVENUE,EAST KINGSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Following Too Closely,,,,4514733,Station Wagon/Sport Utility Vehicle,Moped,,, +03/25/2022,4:10,QUEENS,11103,40.768528,-73.912346,"(40.768528, -73.912346)",,,24-40 38 STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4515090,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/29/2022,14:04,BRONX,10460,40.835716,-73.89205,"(40.835716, -73.89205)",EAST 172 STREET,BOSTON ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514669,Sedan,Moped,,, +03/27/2022,19:20,,,40.636818,-74.15794,"(40.636818, -74.15794)",RICHMOND TERRACE,UNION AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4515122,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,18:42,BROOKLYN,11235,40.580982,-73.954834,"(40.580982, -73.954834)",,,37 CORBIN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,6:55,BRONX,10472,40.823177,-73.88322,"(40.823177, -73.88322)",,,1415 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514477,Sedan,Tractor Truck Diesel,,, +03/24/2022,10:00,STATEN ISLAND,10301,40.641994,-74.07886,"(40.641994, -74.07886)",MONTGOMERY AVENUE,FORT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515163,Sedan,,,, +03/29/2022,11:50,MANHATTAN,10011,40.73988,-73.99872,"(40.73988, -73.99872)",7 AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514572,Bus,Sedan,,, +03/29/2022,15:47,BRONX,10453,40.85063,-73.91527,"(40.85063, -73.91527)",,,1800 UNIVERSITY AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4514701,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/29/2022,16:00,,,40.781025,-73.981316,"(40.781025, -73.981316)",WEST 75 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4515068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,21:20,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4514711,Sedan,Sedan,Tractor Truck Diesel,, +03/29/2022,5:10,BROOKLYN,11235,40.587303,-73.96036,"(40.587303, -73.96036)",AVENUE Z,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514813,Sedan,,,, +03/24/2022,6:00,,,40.85738,-73.92973,"(40.85738, -73.92973)",WADSWORTH TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515075,Sedan,,,, +03/29/2022,19:00,BROOKLYN,11219,40.625816,-73.99812,"(40.625816, -73.99812)",63 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514689,Sedan,,,, +03/29/2022,13:30,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4514646,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/29/2022,15:22,STATEN ISLAND,10305,40.601204,-74.06509,"(40.601204, -74.06509)",LILY POND AVENUE,NARROWS ROAD SOUTH,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4515153,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,18:45,BROOKLYN,11212,40.666096,-73.902084,"(40.666096, -73.902084)",,,350 JUNIUS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515180,Sedan,Sedan,,, +03/29/2022,21:47,QUEENS,11101,40.737537,-73.929955,"(40.737537, -73.929955)",HUNTERS POINT AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514897,Sedan,,,, +03/23/2022,10:48,BRONX,10451,40.824387,-73.91678,"(40.824387, -73.91678)",EAST 160 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515038,Ambulance,Sedan,,, +03/29/2022,14:00,,,40.60461,-73.99826,"(40.60461, -73.99826)",20 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514719,Sedan,Sedan,,, +03/29/2022,20:45,BRONX,10473,40.818844,-73.84941,"(40.818844, -73.84941)",,,2125 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514781,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,15:10,STATEN ISLAND,10306,40.57961,-74.109116,"(40.57961, -74.109116)",NORTH RAILROAD AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515105,3-Door,Sedan,,, +03/29/2022,19:30,BROOKLYN,11238,40.68031,-73.96793,"(40.68031, -73.96793)",,,550 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4514795,Sedan,Sedan,,, +03/23/2022,20:40,,,40.88144,-73.864,"(40.88144, -73.864)",EAST 216 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515114,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,5:28,,,40.762756,-73.82261,"(40.762756, -73.82261)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,23:50,BROOKLYN,11222,40.725033,-73.95153,"(40.725033, -73.95153)",,,685 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515262,Sedan,Sedan,E-Scooter,Sedan, +03/28/2022,6:40,STATEN ISLAND,10308,40.54642,-74.14141,"(40.54642, -74.14141)",HYLAN BOULEVARD,GREAT KILLS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4515154,Sedan,Sedan,,, +05/09/2021,15:18,QUEENS,11412,40.697285,-73.75645,"(40.697285, -73.75645)",115 AVENUE,197 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4415399,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,18:16,MANHATTAN,10003,40.729134,-73.98533,"(40.729134, -73.98533)",,,228 EAST 10 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4416866,Taxi,,,, +05/15/2021,23:44,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4417653,Sedan,Tow Truck / Wrecker,,, +05/15/2021,15:37,MANHATTAN,10033,40.851093,-73.93244,"(40.851093, -73.93244)",SAINT NICHOLAS AVENUE,WEST 184 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417596,Sedan,Motorcycle,,, +05/09/2021,23:40,QUEENS,11355,40.751453,-73.83228,"(40.751453, -73.83228)",COLLEGE POINT BOULEVARD,BLOSSOM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417616,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,16:20,QUEENS,11691,40.599163,-73.74934,"(40.599163, -73.74934)",,,15-26 NEW HAVEN AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4417656,Sedan,,,, +05/14/2021,17:46,MANHATTAN,10040,40.86361,-73.928215,"(40.86361, -73.928215)",ARDEN STREET,DONGAN PLACE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unsafe Speed,,,,4417582,Sedan,Taxi,,, +03/29/2022,8:20,BRONX,10456,40.82923,-73.90078,"(40.82923, -73.90078)",,,768 EAST 168 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514668,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,11:28,,,40.65806,-73.93497,"(40.65806, -73.93497)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417593,Tow Truck / Wrecker,Sedan,,, +05/15/2021,21:59,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",EAST 63 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417612,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,5:22,BROOKLYN,11236,40.642227,-73.90291,"(40.642227, -73.90291)",,,9413 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417587,Sedan,,,, +05/05/2021,14:30,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",SNEDIKER AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4415303,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,0:27,MANHATTAN,10036,40.756496,-73.988075,"(40.756496, -73.988075)",,,234 WEST 42 STREET,1,0,0,0,0,0,0,0,Other Electronic Device,Unspecified,,,,4417661,E-Scooter,Sedan,,, +03/26/2022,17:01,BROOKLYN,11217,,,,,,110 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514962,Sedan,Sedan,,, +03/29/2022,14:05,QUEENS,11356,40.78169,-73.841415,"(40.78169, -73.841415)",20 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514554,Sedan,,,, +03/29/2022,17:25,BROOKLYN,11218,40.638924,-73.965904,"(40.638924, -73.965904)",,,434 ARGYLE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514932,Sedan,Sedan,,, +03/25/2022,23:47,,,,,,TRANSVERSE ROAD NUMBER THREE,BRIDLE PATH EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515194,Sedan,Sedan,,, +03/31/2020,9:10,MANHATTAN,10003,40.73134,-73.99237,"(40.73134, -73.99237)",,,68 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515070,Bike,,,, +03/29/2022,8:55,BRONX,10468,40.860332,-73.8983,"(40.860332, -73.8983)",EAST 187 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4514725,Sedan,Sedan,,, +09/25/2021,3:45,,,40.716774,-73.821205,"(40.716774, -73.821205)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4460658,PK,,,, +04/25/2021,0:49,QUEENS,11368,40.7574419,-73.867464,"(40.7574419, -73.867464)",NORTHERN BOULEVARD,101 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4410381,Sedan,,,, +05/15/2021,15:50,MANHATTAN,10001,40.74843,-73.990456,"(40.74843, -73.990456)",,,142 WEST 31 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4416770,Sedan,,,, +05/15/2021,15:20,QUEENS,11368,40.745728,-73.86213,"(40.745728, -73.86213)",102 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417032,Sedan,Station Wagon/Sport Utility Vehicle,E-Bike,, +05/15/2021,21:05,MANHATTAN,10011,40.73986,-73.995026,"(40.73986, -73.995026)",WEST 18 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4416867,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/12/2021,19:31,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417581,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/15/2021,17:27,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Following Too Closely,,,4417386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,23:10,BRONX,10472,40.82537,-73.88348,"(40.82537, -73.88348)",,,1418 WATSON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4417355,Sedan,Pick-up Truck,,, +05/09/2021,7:30,,,,,,,,637 goethals road north,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4415481,Sedan,Sedan,,, +05/15/2021,21:00,QUEENS,11102,40.770275,-73.91887,"(40.770275, -73.91887)",,,30-03 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416829,Sedan,LIMO,,, +05/15/2021,18:30,BRONX,10454,40.805557,-73.91047,"(40.805557, -73.91047)",BRUCKNER BOULEVARD,EAST 140 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4417181,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,14:00,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",109 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416916,Sedan,Sedan,,, +05/10/2021,22:30,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417322,Sedan,Sedan,,, +05/15/2021,14:08,,,40.552948,-74.168106,"(40.552948, -74.168106)",RICHMOND AVENUE,GENESEE AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4417433,Station Wagon/Sport Utility Vehicle,,,, +05/05/2021,0:45,,,40.748436,-73.9962,"(40.748436, -73.9962)",8 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417508,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,4:31,BROOKLYN,11220,40.64763,-74.01298,"(40.64763, -74.01298)",,,345 49 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4416552,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +05/13/2021,14:50,,,40.757755,-73.79304,"(40.757755, -73.79304)",UTOPIA PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,12:30,QUEENS,11434,40.687046,-73.792114,"(40.687046, -73.792114)",LINDEN BOULEVARD,155 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417422,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,10:15,QUEENS,11370,40.759907,-73.89373,"(40.759907, -73.89373)",,,30-27 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417304,Pick-up Truck,,,, +05/15/2021,4:45,,,40.745148,-73.93348,"(40.745148, -73.93348)",VANDAM STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416595,Sedan,,,, +05/15/2021,0:00,,,40.65161,-74.01062,"(40.65161, -74.01062)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416739,Sedan,Sedan,,, +05/15/2021,20:30,,,40.77753,-73.975006,"(40.77753, -73.975006)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417050,Bike,Sedan,,, +05/15/2021,1:22,,,40.88809,-73.89254,"(40.88809, -73.89254)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417095,Sedan,,,, +05/15/2021,14:20,,,,,,ORCHARD BEACH ROAD,HUTCHINSON RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Turning Improperly,,,,4417200,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,15:44,,,40.720245,-73.9444,"(40.720245, -73.9444)",MEEKER AVENUE,HUMBOLDT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4417269,Motorcycle,Sedan,Van,, +05/15/2021,14:10,QUEENS,11354,40.765182,-73.81414,"(40.765182, -73.81414)",NORTHERN BOULEVARD,150 PLACE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4416681,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,2:00,BROOKLYN,11217,,,,4 AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Turning Improperly,,,,4416646,Sedan,Sedan,,, +05/14/2021,16:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417460,Station Wagon/Sport Utility Vehicle,Bus,,, +05/12/2021,15:29,BROOKLYN,11221,40.697998,-73.92606,"(40.697998, -73.92606)",MYRTLE AVENUE,CEDAR STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4417497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,22:07,BROOKLYN,11203,40.64638,-73.9288,"(40.64638, -73.9288)",BEVERLEY ROAD,EAST 51 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417530,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,4:21,BRONX,10469,40.86945,-73.844315,"(40.86945, -73.844315)",,,1442 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,,,4416662,Sedan,Sedan,Sedan,, +05/15/2021,16:54,BROOKLYN,11217,40.683125,-73.98744,"(40.683125, -73.98744)",BALTIC STREET,BOND STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Turning Improperly,,,,4416647,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,17:40,,,40.69815,-73.79241,"(40.69815, -73.79241)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417402,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,23:24,,,,,,ROCKAWAY BOULEVARD,225 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4416730,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,11:51,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,0:45,BROOKLYN,11222,40.720585,-73.94312,"(40.720585, -73.94312)",,,546 MEEKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417256,Sedan,,,, +05/15/2021,23:55,QUEENS,11422,40.662086,-73.73801,"(40.662086, -73.73801)",,,143-03 243 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416900,,,,, +05/15/2021,12:00,STATEN ISLAND,10314,40.61967,-74.11885,"(40.61967, -74.11885)",,,54 SLOSSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4416954,Sedan,Sedan,,, +05/13/2021,21:10,QUEENS,11368,40.7558,-73.86535,"(40.7558, -73.86535)",103 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4417297,Bike,,,, +05/15/2021,14:53,,,40.90347,-73.88628,"(40.90347, -73.88628)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417109,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,18:59,,,40.841835,-73.92243,"(40.841835, -73.92243)",GRANT HIGHWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417281,Sedan,Motorcycle,,, +05/15/2021,0:30,BRONX,10454,40.807213,-73.92841,"(40.807213, -73.92841)",,,26 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4416629,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,15:45,,,40.667683,-73.99608,"(40.667683, -73.99608)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416699,Sedan,Sedan,,, +05/15/2021,1:28,BROOKLYN,11216,40.681046,-73.94346,"(40.681046, -73.94346)",TOMPKINS AVENUE,MACDONOUGH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416839,Sedan,Taxi,,, +05/15/2021,22:00,STATEN ISLAND,10306,40.574627,-74.1056,"(40.574627, -74.1056)",,,2305 HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417452,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,5:00,QUEENS,11429,40.714703,-73.740555,"(40.714703, -73.740555)",,,217-27 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417557,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,14:55,BROOKLYN,11205,40.690346,-73.9603,"(40.690346, -73.9603)",DE KALB AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417094,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,19:02,BRONX,10472,40.831623,-73.86726,"(40.831623, -73.86726)",SAINT LAWRENCE AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417334,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,11:45,BROOKLYN,11212,40.67206,-73.9036,"(40.67206, -73.9036)",GLENMORE AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417466,Sedan,Sedan,Sedan,, +05/15/2021,22:20,,,40.789017,-73.81865,"(40.789017, -73.81865)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4416744,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,12:08,MANHATTAN,10012,40.72915,-73.999084,"(40.72915, -73.999084)",,,221 THOMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417522,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,0:00,BRONX,10460,40.838062,-73.88869,"(40.838062, -73.88869)",,,1724 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416787,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,18:16,QUEENS,11412,40.707962,-73.755424,"(40.707962, -73.755424)",203 STREET,109 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4417407,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,19:00,BRONX,10458,40.862064,-73.89484,"(40.862064, -73.89484)",EAST FORDHAM ROAD,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417321,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,15:30,BROOKLYN,11223,40.592304,-73.9739,"(40.592304, -73.9739)",AVENUE W,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417154,Sedan,Sedan,,, +05/15/2021,2:15,BROOKLYN,11208,40.673553,-73.87148,"(40.673553, -73.87148)",,,552 EUCLID AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4417226,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,19:20,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417534,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,6:00,QUEENS,11370,40.760338,-73.89477,"(40.760338, -73.89477)",73 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417315,Station Wagon/Sport Utility Vehicle,,,, +04/28/2021,7:00,QUEENS,11433,40.704033,-73.7938,"(40.704033, -73.7938)",165 STREET,ARCHER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,13:51,BROOKLYN,11204,40.610218,-73.98397,"(40.610218, -73.98397)",AVENUE O,WEST 10 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4416887,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/03/2021,11:27,,,40.795963,-73.97084,"(40.795963, -73.97084)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417368,Sedan,Sedan,,, +05/15/2021,5:13,QUEENS,11355,40.7609,-73.81314,"(40.7609, -73.81314)",150 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4416946,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,4:51,QUEENS,11106,40.757526,-73.92898,"(40.757526, -73.92898)",,,35-27 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416824,Sedan,Tractor Truck Diesel,,, +05/15/2021,20:15,BROOKLYN,11212,40.667366,-73.92274,"(40.667366, -73.92274)",UNION STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417067,Sedan,Bus,,, +05/11/2021,17:30,,,40.626835,-74.136894,"(40.626835, -74.136894)",,,43 CORNELL STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417440,Sedan,Sedan,,, +05/15/2021,1:05,,,40.710888,-73.9808,"(40.710888, -73.9808)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4416749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,15:51,BRONX,10473,40.82483,-73.85424,"(40.82483, -73.85424)",,,2045 STORY AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4417326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/13/2021,9:45,,,40.62707,-74.01865,"(40.62707, -74.01865)",7 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417472,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,16:05,QUEENS,11412,40.700657,-73.757965,"(40.700657, -73.757965)",113 AVENUE,197 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,8:49,QUEENS,11422,40.678417,-73.729225,"(40.678417, -73.729225)",BROOKVILLE BOULEVARD,130 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4416832,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,17:30,,,40.575413,-73.98347,"(40.575413, -73.98347)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416990,Sedan,,,, +05/15/2021,6:05,,,40.652554,-73.92078,"(40.652554, -73.92078)",RALPH AVENUE,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4416933,Station Wagon/Sport Utility Vehicle,COM,,, +05/15/2021,1:30,,,40.705982,-73.73956,"(40.705982, -73.73956)",SPRINGFIELD BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416538,Sedan,,,, +05/15/2021,9:00,QUEENS,11423,40.708973,-73.77689,"(40.708973, -73.77689)",,,183-16 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4417411,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,20:40,BRONX,10458,,,,EAST BEDFORD PARK BOULEVARD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416782,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,22:15,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417308,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,16:42,BRONX,10461,40.85226,-73.852905,"(40.85226, -73.852905)",WILLIAMSBRIDGE ROAD,RHINELANDER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417506,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,22:25,,,40.61358,-74.158325,"(40.61358, -74.158325)",,,1430 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417471,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,5:44,,,40.625103,-74.14877,"(40.625103, -74.14877)",MORNINGSTAR ROAD,FOREST AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417354,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,5:35,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4416570,Sedan,,,, +05/14/2021,22:00,,,,,,153 PLACE,CLINTONVILLE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417385,Sedan,,,, +05/15/2021,21:28,,,40.628567,-73.888794,"(40.628567, -73.888794)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416748,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,17:01,BROOKLYN,11212,40.654865,-73.92191,"(40.654865, -73.92191)",,,9013 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416934,Sedan,Sedan,,, +05/11/2021,18:00,QUEENS,11434,40.67824,-73.7711,"(40.67824, -73.7711)",BEDELL STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417423,Sedan,,,, +05/14/2021,15:16,,,40.75202,-74.00473,"(40.75202, -74.00473)",WEST 28 STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417515,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/28/2022,16:02,BROOKLYN,11213,40.669483,-73.94385,"(40.669483, -73.94385)",,,736 EASTERN PARKWAY,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4515027,PK,,,, +05/14/2021,14:30,QUEENS,11368,40.749264,-73.86847,"(40.749264, -73.86847)",97 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417303,Station Wagon/Sport Utility Vehicle,Bike,,, +03/30/2021,17:30,QUEENS,11373,40.739113,-73.88975,"(40.739113, -73.88975)",74 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4417325,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/15/2021,15:38,MANHATTAN,10010,40.744522,-73.99164,"(40.744522, -73.99164)",,,765 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4416877,Sedan,Sedan,Sedan,, +05/09/2021,13:32,BROOKLYN,11221,40.696045,-73.92996,"(40.696045, -73.92996)",,,741 BUSHWICK AVENUE,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,,,,4417498,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,23:00,QUEENS,11385,40.694275,-73.901855,"(40.694275, -73.901855)",DECATUR STREET,WYCKOFF AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514855,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,15:40,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416650,Sedan,Sedan,Sedan,, +05/15/2021,21:13,,,40.636574,-74.019196,"(40.636574, -74.019196)",5 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416668,Station Wagon/Sport Utility Vehicle,Bike,,, +05/15/2021,8:44,BRONX,10463,40.88716,-73.90858,"(40.88716, -73.90858)",,,3630 OXFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417115,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,18:40,BROOKLYN,11221,40.693142,-73.922,"(40.693142, -73.922)",MENAHAN STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4417487,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +05/15/2021,20:21,,,,,,CITY ISLAND ROAD,SHORE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416776,Sedan,Sedan,,, +05/15/2021,6:00,BRONX,10459,40.826065,-73.88786,"(40.826065, -73.88786)",,,1091 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4417285,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/15/2021,11:00,,,40.67931,-73.79172,"(40.67931, -73.79172)",119 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417430,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,13:00,QUEENS,11420,40.679005,-73.819595,"(40.679005, -73.819595)",120 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416643,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/15/2021,9:46,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417031,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/15/2021,8:20,MANHATTAN,10128,40.78519,-73.94934,"(40.78519, -73.94934)",EAST 96 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417157,Sedan,Sedan,,, +05/15/2021,16:30,BROOKLYN,11236,40.638435,-73.89898,"(40.638435, -73.89898)",,,1340 EAST 94 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4416657,Sedan,,,, +05/15/2021,18:30,,,40.68324,-73.9439,"(40.68324, -73.9439)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416838,Sedan,,,, +05/15/2021,13:35,,,40.82472,-73.87147,"(40.82472, -73.87147)",METCALF AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417335,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,7:30,,,40.680088,-73.80177,"(40.680088, -73.80177)",140 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417389,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,17:10,,,,,,111 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417298,Sedan,Sedan,,, +05/15/2021,15:38,,,,,,EAST 42 STREET,EAST 42 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416761,Station Wagon/Sport Utility Vehicle,Bike,,, +05/15/2021,16:30,BRONX,10466,40.88808,-73.8587,"(40.88808, -73.8587)",,,747 EAST 226 STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4416850,Taxi,Sedan,Sedan,Sedan, +05/13/2021,10:31,BROOKLYN,11212,40.65461,-73.922,"(40.65461, -73.922)",REMSEN AVENUE,KINGS HIGHWAY,,0,1,0,1,0,0,0,0,,,,,,4417575,,,,, +05/10/2021,18:25,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4417554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/12/2021,15:18,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4417455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,17:25,,,40.828938,-73.84559,"(40.828938, -73.84559)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4417329,Sedan,Tractor Truck Diesel,Tractor Truck Diesel,, +05/14/2021,18:42,MANHATTAN,10011,40.741932,-74.004654,"(40.741932, -74.004654)",,,76 9 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417525,LIMO,Sedan,,, +05/15/2021,13:45,MANHATTAN,10032,40.83089,-73.941376,"(40.83089, -73.941376)",WEST 155 STREET,SAINT NICHOLAS AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4417105,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,2:37,BRONX,10453,40.85537,-73.90473,"(40.85537, -73.90473)",EAST 181 STREET,WALTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416592,Sedan,Sedan,,, +05/15/2021,23:00,,,40.835297,-73.91291,"(40.835297, -73.91291)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4417280,Station Wagon/Sport Utility Vehicle,Moped,,, +05/15/2021,19:00,,,40.610447,-73.98497,"(40.610447, -73.98497)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416734,Sedan,,,, +05/15/2021,7:22,,,40.72619,-73.90409,"(40.72619, -73.90409)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417042,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,13:59,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416897,Sedan,Sedan,,, +05/14/2021,8:55,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4417573,Sedan,Bus,,, +05/13/2021,22:30,QUEENS,11435,40.690712,-73.79992,"(40.690712, -73.79992)",,,147-11 109 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4417401,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/15/2021,20:58,QUEENS,11354,40.763126,-73.83125,"(40.763126, -73.83125)",NORTHERN BOULEVARD,FARRINGTON STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4416951,Sedan,Sedan,Sedan,, +05/14/2021,22:30,BRONX,10462,40.83553,-73.86317,"(40.83553, -73.86317)",WOOD AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417330,Taxi,Sedan,,, +05/15/2021,22:12,,,40.831776,-73.82097,"(40.831776, -73.82097)",LAFAYETTE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416785,Sedan,Sedan,,, +05/14/2021,19:30,BRONX,10459,40.823437,-73.89044,"(40.823437, -73.89044)",,,1000 HOE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417290,Sedan,,,, +03/29/2022,15:00,,,40.700855,-73.86837,"(40.700855, -73.86837)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4514598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,4:56,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4416846,Sedan,,,, +05/15/2021,19:45,,,40.70987,-74.00706,"(40.70987, -74.00706)",FULTON STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4417196,Sedan,Bike,,, +05/15/2021,8:50,QUEENS,11428,40.72321,-73.74008,"(40.72321, -73.74008)",,,92-17 218 PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4416611,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/15/2021,20:40,QUEENS,11694,40.585835,-73.8204,"(40.585835, -73.8204)",,,319 BEACH 98 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416980,Sedan,,,, +05/15/2021,18:30,QUEENS,11416,40.679344,-73.859535,"(40.679344, -73.859535)",LIBERTY AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4416676,Pick-up Truck,Sedan,,, +05/15/2021,23:50,BROOKLYN,11224,40.57916,-73.98309,"(40.57916, -73.98309)",WEST 15 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416991,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,15:00,BRONX,10475,40.878475,-73.83305,"(40.878475, -73.83305)",DARROW PLACE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416781,Ambulance,Sedan,,, +05/15/2021,11:28,QUEENS,11693,40.59888,-73.820694,"(40.59888, -73.820694)",CROSS BAY BOULEVARD,EAST 20 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416977,Box Truck,,,, +05/15/2021,23:50,,,40.6306,-74.14399,"(40.6306, -74.14399)",WALKER STREET,TRANTOR PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417364,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,20:00,MANHATTAN,10009,40.730213,-73.979836,"(40.730213, -73.979836)",,,510 EAST 14 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4416882,4 dr sedan,,,, +05/14/2021,14:20,,,40.789383,-73.782326,"(40.789383, -73.782326)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4417378,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,3:00,MANHATTAN,10016,40.74325,-73.97694,"(40.74325, -73.97694)",,,577 2 AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4416541,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/15/2021,4:15,,,40.70616,-73.75747,"(40.70616, -73.75747)",HOLLIS AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4417412,Sedan,Sedan,,, +05/14/2021,17:45,QUEENS,11372,40.752174,-73.87338,"(40.752174, -73.87338)",,,35-35 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417307,Sedan,,,, +05/15/2021,14:36,,,40.80907,-73.94455,"(40.80907, -73.94455)",LENOX AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417180,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/11/2021,19:35,MANHATTAN,10001,40.75304,-74.003975,"(40.75304, -74.003975)",,,312 11 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4417513,MOPED,,,, +05/15/2021,22:45,,,40.700356,-73.912575,"(40.700356, -73.912575)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417491,Sedan,REVEL SCOO,,, +05/15/2021,16:05,MANHATTAN,10065,40.761173,-73.95789,"(40.761173, -73.95789)",EAST 63 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417158,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,18:55,BROOKLYN,11205,40.691658,-73.96177,"(40.691658, -73.96177)",,,241 EMERSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416655,Sedan,Sedan,,, +05/15/2021,18:40,BROOKLYN,11209,40.630814,-74.02508,"(40.630814, -74.02508)",4 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4416658,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/15/2021,0:01,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",EASTERN PARKWAY,BERGEN STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4417072,Sedan,Sedan,,, +05/15/2021,9:10,,,40.70942,-73.7749,"(40.70942, -73.7749)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417410,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,1:40,BROOKLYN,11211,40.714455,-73.935295,"(40.714455, -73.935295)",MORGAN AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416694,Sedan,,,, +05/15/2021,20:00,QUEENS,11419,40.695858,-73.81891,"(40.695858, -73.81891)",130 STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,16:10,,,,,,VICTORY BOULEVARD,WEST SERVICE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417439,Sedan,Sedan,,, +05/15/2021,13:34,BROOKLYN,11225,40.657513,-73.96032,"(40.657513, -73.96032)",,,650 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416760,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,12:40,,,40.645344,-73.87897,"(40.645344, -73.87897)",HORNELL LOOP,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417227,Sedan,,,, +05/14/2021,16:40,,,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417485,Sedan,Bus,,, +05/15/2021,7:35,,,,,,JEWEL AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416617,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,13:10,,,40.58273,-73.97494,"(40.58273, -73.97494)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4417073,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/15/2021,17:00,BROOKLYN,11239,40.652103,-73.86855,"(40.652103, -73.86855)",,,393 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417211,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/15/2021,22:25,BRONX,10459,40.825607,-73.89294,"(40.825607, -73.89294)",,,1086 SIMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417284,Sedan,,,, +05/15/2021,14:30,QUEENS,11420,40.665462,-73.81858,"(40.665462, -73.81858)",NORTH CONDUIT AVENUE,122 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,11:15,,,40.6489,-73.96968,"(40.6489, -73.96968)",CATON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416690,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,8:50,STATEN ISLAND,10306,40.582546,-74.10952,"(40.582546, -74.10952)",,,2016 RICHMOND ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4417456,Motorcycle,Sedan,,, +05/11/2021,11:43,,,40.62631,-74.15846,"(40.62631, -74.15846)",,,2079 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417470,Sedan,Sedan,,, +05/15/2021,9:05,BROOKLYN,11236,40.636024,-73.89506,"(40.636024, -73.89506)",AVENUE M,EAST 95 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4416747,Sedan,Sedan,,, +05/15/2021,21:30,BROOKLYN,11226,40.644344,-73.950645,"(40.644344, -73.950645)",,,2802 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4416937,Sedan,,,, +05/14/2021,13:00,QUEENS,11412,40.700565,-73.76411,"(40.700565, -73.76411)",112 AVENUE,FARMERS BOULEVARD,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4417445,,,,, +05/15/2021,10:00,QUEENS,11370,40.762016,-73.89656,"(40.762016, -73.89656)",,,73-01 25 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417306,Sedan,,,, +05/12/2021,6:30,QUEENS,11423,40.70969,-73.76755,"(40.70969, -73.76755)",,,190-32 99 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417404,Sedan,Sedan,,, +05/15/2021,16:40,QUEENS,11368,40.736317,-73.857605,"(40.736317, -73.857605)",,,99-49 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416649,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,9:36,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4416779,Sedan,Sedan,Sedan,, +05/15/2021,6:27,,,40.86906,-73.88914,"(40.86906, -73.88914)",BRIGGS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416599,Sedan,,,, +05/15/2021,8:30,BROOKLYN,11214,40.599052,-73.99808,"(40.599052, -73.99808)",BAY 29 STREET,BATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416736,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,13:35,,,40.74214,-74.00821,"(40.74214, -74.00821)",WEST 14 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417516,,,,, +05/15/2021,18:50,,,40.83142,-73.92644,"(40.83142, -73.92644)",JEROME AVENUE,,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4417056,Sedan,Bike,,, +06/30/2022,6:59,BRONX,10472,40.82789,-73.86162,"(40.82789, -73.86162)",,,1042 UNDERHILL AVENUE,1,0,0,0,0,0,0,0,Unsafe Speed,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4542547,Sedan,E-Bike,,, +05/13/2021,3:35,,,40.639988,-74.137665,"(40.639988, -74.137665)",RICHMOND TERRACE,TREADWELL AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4417358,Bus,Sedan,,, +05/15/2021,17:15,BROOKLYN,11208,40.675453,-73.88064,"(40.675453, -73.88064)",,,802 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4417228,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/15/2021,15:45,,,40.781578,-73.91547,"(40.781578, -73.91547)",21 STREET,21 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4416827,Sedan,Taxi,,, +05/15/2021,2:35,BRONX,10463,40.879807,-73.906586,"(40.879807, -73.906586)",KINGSBRIDGE AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417114,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,15:20,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,13:26,MANHATTAN,10027,40.812824,-73.94925,"(40.812824, -73.94925)",,,2411 8 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417190,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/15/2021,12:00,QUEENS,11417,40.67526,-73.85451,"(40.67526, -73.85451)",SUTTER AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4416910,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,14:00,BRONX,10472,40.83213,-73.86547,"(40.83213, -73.86547)",WESTCHESTER AVENUE,TAYLOR AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4417324,Sedan,Sedan,,, +05/15/2021,6:16,QUEENS,11434,40.686596,-73.79318,"(40.686596, -73.79318)",LINDEN BOULEVARD,AUGUST COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417428,Sedan,Sedan,,, +05/15/2021,15:05,BRONX,10456,40.82906,-73.91001,"(40.82906, -73.91001)",,,3400 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,20:02,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416784,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,1:36,,,40.84497,-73.9092,"(40.84497, -73.9092)",CROSS BRONX EXPY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unsafe Lane Changing,,,,4416574,Sedan,Sedan,,, +05/13/2021,6:00,QUEENS,11354,40.7716,-73.80907,"(40.7716, -73.80907)",29 AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417381,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,12:00,MANHATTAN,10011,40.74329,-74.00502,"(40.74329, -74.00502)",,,430 WEST 17 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4417526,Convertible,,,, +05/15/2021,12:50,QUEENS,11354,40.763447,-73.8153,"(40.763447, -73.8153)",149 PLACE,ROOSEVELT AVENUE,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4416674,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/15/2021,10:28,BROOKLYN,11204,40.614452,-73.99161,"(40.614452, -73.99161)",19 AVENUE,71 STREET,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4416857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,12:09,,,40.696335,-73.930504,"(40.696335, -73.930504)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417500,Sedan,Sedan,,, +05/15/2021,4:02,,,40.693726,-73.75485,"(40.693726, -73.75485)",197 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4417425,Sedan,,,, +05/15/2021,14:20,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",ASTORIA BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417310,Sedan,Sedan,,, +05/15/2021,18:00,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417631,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,10:00,MANHATTAN,10009,40.73002,-73.98355,"(40.73002, -73.98355)",EAST 12 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4416879,Sedan,,,, +05/08/2021,18:15,,,40.773045,-73.993416,"(40.773045, -73.993416)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417544,Sedan,Sedan,Sedan,, +05/15/2021,15:15,QUEENS,11434,40.681778,-73.78156,"(40.681778, -73.78156)",BREWER BOULEVARD,119 ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4417337,Sedan,E-Scooter,,, +05/15/2021,22:50,QUEENS,11373,40.7444,-73.88606,"(40.7444, -73.88606)",,,79-01 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417034,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,12:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416837,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,21:15,STATEN ISLAND,10304,40.615414,-74.0827,"(40.615414, -74.0827)",,,5 BOWEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417374,Sedan,,,, +05/15/2021,0:14,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417388,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,20:20,,,40.900288,-73.89704,"(40.900288, -73.89704)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417097,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,17:45,QUEENS,11368,40.75362,-73.87047,"(40.75362, -73.87047)",,,97-09 35 AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4417299,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,4:00,BRONX,10457,40.851753,-73.889435,"(40.851753, -73.889435)",,,611 EAST 182 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416894,Sedan,Sedan,,, +05/13/2021,1:03,,,40.634815,-73.88094,"(40.634815, -73.88094)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4417577,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,15:29,BROOKLYN,11203,40.64916,-73.94552,"(40.64916, -73.94552)",SNYDER AVENUE,EAST 34 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4416984,Sedan,Bike,,, +05/13/2021,3:00,,,40.586708,-74.15313,"(40.586708, -74.15313)",KLONDIKE AVENUE,BRIDGETOWN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417438,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,16:05,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417328,Sedan,Sedan,,, +05/15/2021,2:32,BROOKLYN,11238,40.676598,-73.96834,"(40.676598, -73.96834)",,,280 PARK PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417003,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,21:08,BROOKLYN,11237,40.70239,-73.924644,"(40.70239, -73.924644)",KNICKERBOCKER AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4417494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,11:40,BRONX,10462,40.837612,-73.86055,"(40.837612, -73.86055)",,,65 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,4:40,QUEENS,11368,40.749905,-73.86247,"(40.749905, -73.86247)",,,103-17 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4416543,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/14/2021,22:51,,,40.680325,-73.8009,"(40.680325, -73.8009)",141 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/04/2021,1:34,STATEN ISLAND,10310,40.637745,-74.11082,"(40.637745, -74.11082)",HENDERSON AVENUE,PELTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417375,Sedan,Sedan,Sedan,, +05/15/2021,5:22,BRONX,10460,40.834057,-73.88973,"(40.834057, -73.88973)",EAST 172 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4416789,Sedan,,,, +05/15/2021,12:30,MANHATTAN,10128,40.78211,-73.955795,"(40.78211, -73.955795)",PARK AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417161,Sedan,E-Bike,,, +05/15/2021,17:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4416660,Motorcycle,Sedan,,, +05/15/2021,14:27,QUEENS,11419,40.692585,-73.81327,"(40.692585, -73.81327)",,,102-02 134 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4417141,Sedan,,,, +05/15/2021,23:00,BROOKLYN,11207,40.66478,-73.8939,"(40.66478, -73.8939)",,,625 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417393,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,23:55,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417311,Sedan,Sedan,,, +05/15/2021,17:24,QUEENS,11420,40.666805,-73.8143,"(40.666805, -73.8143)",NORTH CONDUIT AVENUE,126 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,,,4416908,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,10:00,MANHATTAN,10128,40.78076,-73.94874,"(40.78076, -73.94874)",,,320 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417611,Sedan,,,, +12/23/2021,8:22,,,40.615383,-74.01613,"(40.615383, -74.01613)",86 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489254,Sedan,Bus,,, +02/19/2022,17:11,BROOKLYN,11203,40.65017,-73.92921,"(40.65017, -73.92921)",SNYDER AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504515,Sedan,Sedan,,, +02/19/2022,9:18,BROOKLYN,11234,40.624054,-73.919556,"(40.624054, -73.919556)",,,5801 AVENUE L,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4503937,Sedan,Sedan,,, +05/15/2021,14:33,STATEN ISLAND,10304,40.61678,-74.0898,"(40.61678, -74.0898)",,,170 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416950,Sedan,,,, +05/15/2021,20:52,,,40.794132,-73.94281,"(40.794132, -73.94281)",EAST 110 STREET,,,1,0,1,0,0,0,0,0,,,,,,4417295,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,12:33,BROOKLYN,11212,40.661537,-73.91907,"(40.661537, -73.91907)",,,255 EAST 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417058,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,18:40,,,40.773327,-73.76503,"(40.773327, -73.76503)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416707,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,10:43,,,40.66925,-73.93944,"(40.66925, -73.93944)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4416757,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/14/2021,11:58,BROOKLYN,11203,40.65642,-73.933815,"(40.65642, -73.933815)",CLARKSON AVENUE,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4417481,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,0:18,BROOKLYN,11228,40.617245,-74.02474,"(40.617245, -74.02474)",,,97 DAHLGREN PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4416621,Sedan,Sedan,,, +05/13/2021,19:48,MANHATTAN,10014,40.737595,-74.003204,"(40.737595, -74.003204)",,,269 WEST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417449,Sedan,Sedan,,, +05/15/2021,0:37,,,40.65622,-73.913155,"(40.65622, -73.913155)",STRAUSS STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4417076,AMBULANCE,Sedan,,, +05/15/2021,13:10,BRONX,10467,40.88105,-73.86272,"(40.88105, -73.86272)",,,740 EAST 216 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4416842,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/15/2021,16:00,QUEENS,11358,40.759445,-73.78964,"(40.759445, -73.78964)",192 STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4417572,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/10/2021,12:29,,,40.755795,-73.93581,"(40.755795, -73.93581)",38 AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4417409,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,16:30,,,,,,,,369 12 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417510,Sedan,DELV,,, +05/15/2021,0:50,BROOKLYN,11211,40.709904,-73.95224,"(40.709904, -73.95224)",,,390 HOOPER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,23:50,BROOKLYN,11225,40.663284,-73.96096,"(40.663284, -73.96096)",WASHINGTON AVENUE,EMPIRE BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416765,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,22:59,QUEENS,11372,40.751102,-73.8912,"(40.751102, -73.8912)",35 AVENUE,75 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417300,Sedan,Sedan,,, +05/15/2021,18:34,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417212,Sedan,,,, +05/15/2021,19:07,,,40.710262,-73.95802,"(40.710262, -73.95802)",BORINQUEN PLACE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417240,Sedan,Bike,,, +05/09/2021,21:10,MANHATTAN,10034,40.85894,-73.922935,"(40.85894, -73.922935)",10 AVENUE,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417579,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,10:00,QUEENS,11104,40.746353,-73.91617,"(40.746353, -73.91617)",SKILLMAN AVENUE,48 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416615,Box Truck,Bike,,, +05/15/2021,8:45,BROOKLYN,11212,40.658966,-73.9191,"(40.658966, -73.9191)",LENOX ROAD,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416966,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,19:00,,,40.65878,-73.960526,"(40.65878, -73.960526)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417591,Sedan,E-Bike,,, +05/15/2021,18:00,,,40.792095,-73.97366,"(40.792095, -73.97366)",WEST 92 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416654,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,13:45,BROOKLYN,11226,40.654892,-73.95901,"(40.654892, -73.95901)",,,9 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417589,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,0:00,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417096,Pick-up Truck,Sedan,,, +05/15/2021,4:24,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4416596,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,16:40,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4416780,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,2:37,,,,,,ELTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417210,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,4:30,,,40.731407,-73.99698,"(40.731407, -73.99698)",WASHINGTON SQUARE NORTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417519,Sedan,,,, +05/15/2021,18:05,QUEENS,11373,40.738934,-73.88012,"(40.738934, -73.88012)",SAINT JAMES AVENUE,POYER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,8:56,,,40.78933,-73.849754,"(40.78933, -73.849754)",9 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416684,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,14:30,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4417387,Sedan,Sedan,,, +05/15/2021,15:15,,,40.681736,-73.805305,"(40.681736, -73.805305)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,1:00,STATEN ISLAND,10304,40.619,-74.084785,"(40.619, -74.084785)",TARGEE STREET,OSGOOD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416860,Sedan,,,, +05/15/2021,18:57,,,40.77052,-73.91978,"(40.77052, -73.91978)",29 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4416828,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,20:24,QUEENS,11369,40.757893,-73.87539,"(40.757893, -73.87539)",,,32-40 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417305,Sedan,,,, +05/14/2021,0:00,BRONX,10472,40.823708,-73.87914,"(40.823708, -73.87914)",,,1499 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4417323,Sedan,,,, +05/15/2021,16:00,MANHATTAN,10009,40.72797,-73.98437,"(40.72797, -73.98437)",,,412 EAST 9 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4416881,Taxi,Bike,,, +05/15/2021,18:50,BROOKLYN,11237,40.693703,-73.90505,"(40.693703, -73.90505)",COVERT STREET,IRVING AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4417529,Sedan,Sedan,,, +05/15/2021,18:37,QUEENS,11417,40.679962,-73.83953,"(40.679962, -73.83953)",ROCKAWAY BOULEVARD,100 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4416675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/23/2021,13:50,,,40.697117,-73.93401,"(40.697117, -73.93401)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417501,Sedan,Sedan,,, +05/15/2021,16:18,QUEENS,11428,40.718754,-73.74082,"(40.718754, -73.74082)",215 PLACE,94 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416648,Sedan,Sedan,,, +05/14/2021,13:00,,,40.692463,-73.81082,"(40.692463, -73.81082)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417403,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,0:57,MANHATTAN,10032,40.842808,-73.942024,"(40.842808, -73.942024)",FORT WASHINGTON AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4417113,Sedan,Sedan,,, +05/15/2021,10:05,BROOKLYN,11222,40.720455,-73.9408,"(40.720455, -73.9408)",KINGSLAND AVENUE,HERBERT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417272,Box Truck,Sedan,,, +05/15/2021,17:53,BROOKLYN,11214,40.610455,-73.99576,"(40.610455, -73.99576)",78 STREET,19 AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4416737,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,20:10,,,40.68662,-73.82319,"(40.68662, -73.82319)",LIBERTY AVENUE,120 STREET,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416913,Sedan,Bike,,, +05/15/2021,21:45,,,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Driver Inexperience,Other Vehicular,,,,4417182,Sedan,E-Bike,,, +05/15/2021,18:00,QUEENS,11373,40.734604,-73.864784,"(40.734604, -73.864784)",,,59-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417033,Pick-up Truck,,,, +05/15/2021,8:20,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4416645,Sedan,Sedan,,, +05/15/2021,4:21,BRONX,10458,40.856243,-73.895584,"(40.856243, -73.895584)",WEBSTER AVENUE,EAST 183 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4416590,Motorcycle,Sedan,,, +05/15/2021,20:00,BRONX,10468,40.86431,-73.901474,"(40.86431, -73.901474)",,,30 WEST 190 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416783,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,7:40,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417469,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,9:00,QUEENS,11368,40.74593,-73.8563,"(40.74593, -73.8563)",108 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416943,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,22:30,,,,,,212 STREET,TOTTEN ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416745,Sedan,Sedan,,, +06/29/2022,0:59,,,,,,FDR DRIVE,EAST 53 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4541650,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +03/29/2022,17:20,QUEENS,11422,40.66352,-73.73135,"(40.66352, -73.73135)",139 AVENUE,249 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4514626,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,3:53,QUEENS,11355,40.760624,-73.81769,"(40.760624, -73.81769)",147 STREET,BARCLAY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4417382,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/14/2021,23:44,,,40.748066,-73.84918,"(40.748066, -73.84918)",GRAND CENTRAL PKWY,,,0,1,0,1,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4417309,Sedan,,,, +05/14/2021,13:00,QUEENS,11434,40.68676,-73.78449,"(40.68676, -73.78449)",116 AVENUE,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4417426,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/14/2021,16:08,,,40.667084,-73.78698,"(40.667084, -73.78698)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417641,Pick-up Truck,Sedan,,, +05/15/2021,20:14,,,,,,BROADWAY,WEST 118 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4416822,Sedan,Open Body,,, +05/11/2021,16:45,QUEENS,11372,40.75546,-73.88631,"(40.75546, -73.88631)",81 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417318,Sedan,Sedan,,, +05/14/2021,21:41,STATEN ISLAND,10306,40.558273,-74.13488,"(40.558273, -74.13488)",SPRATT AVENUE,NORTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417457,Pick-up Truck,Sedan,,, +05/15/2021,12:50,,,40.82458,-73.870544,"(40.82458, -73.870544)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417078,Sedan,Sedan,,, +05/06/2021,12:50,,,40.697124,-73.91106,"(40.697124, -73.91106)",IRVING AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417496,Station Wagon/Sport Utility Vehicle,Bike,,, +05/14/2021,16:22,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4417520,Station Wagon/Sport Utility Vehicle,Bus,,, +05/15/2021,0:20,BRONX,10460,40.84249,-73.868004,"(40.84249, -73.868004)",GARFIELD STREET,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416661,FDNY AMBUL,Sedan,,, +05/15/2021,2:20,,,40.823536,-73.93108,"(40.823536, -73.93108)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417177,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,2:00,QUEENS,11435,40.705746,-73.8097,"(40.705746, -73.8097)",HILLSIDE AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417408,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,16:30,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",HOWARD AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417064,Taxi,,,, +05/15/2021,20:10,QUEENS,11413,40.67699,-73.74308,"(40.67699, -73.74308)",MERRICK BOULEVARD,227 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,8:30,,,40.607655,-74.01703,"(40.607655, -74.01703)",14 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416724,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,23:22,,,40.82256,-73.88755,"(40.82256, -73.88755)",WHITLOCK AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4417283,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/15/2021,20:00,,,40.90316,-73.84599,"(40.90316, -73.84599)",CRANFORD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417252,Sedan,,,, +05/15/2021,12:33,BRONX,10457,40.852863,-73.90093,"(40.852863, -73.90093)",RYER AVENUE,EAST 180 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4416622,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Taxi, +05/15/2021,23:57,QUEENS,11434,40.68303,-73.782295,"(40.68303, -73.782295)",BREWER BOULEVARD,118 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417427,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,13:17,BRONX,10461,40.846405,-73.842896,"(40.846405, -73.842896)",WATERS PLACE,INDUSTRIAL STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417503,Sedan,Sedan,,, +05/15/2021,0:14,QUEENS,11369,40.761806,-73.86826,"(40.761806, -73.86826)",ASTORIA BOULEVARD,KEARNEY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417314,Sedan,,,, +05/13/2021,19:31,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417571,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,18:53,BRONX,10457,40.850834,-73.88577,"(40.850834, -73.88577)",CROTONA AVENUE,GARDEN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416890,Taxi,,,, +02/08/2021,5:02,MANHATTAN,10037,40.8116,-73.93849,"(40.8116, -73.93849)",,,2180 5 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4417369,Taxi,,,, +05/06/2021,14:55,,,0,0,"(0.0, 0.0)",VINE STREET,MC KENNY SQUARE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417376,Sedan,Sedan,,, +05/15/2021,0:13,BROOKLYN,11232,40.65168,-74.00915,"(40.65168, -74.00915)",,,326 42 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416551,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,21:30,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417479,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,17:13,,,40.65434,-73.94704,"(40.65434, -73.94704)",LENOX ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416956,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/06/2022,19:11,BRONX,10468,40.86634,-73.90059,"(40.86634, -73.90059)",GRAND AVENUE,WEST 192 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4561611,Sedan,Sedan,Sedan,, +03/29/2022,11:40,MANHATTAN,10001,40.749733,-73.99354,"(40.749733, -73.99354)",,,254 WEST 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514519,Taxi,Garbage or Refuse,,, +05/15/2021,0:46,QUEENS,11413,40.66016,-73.75579,"(40.66016, -73.75579)",225 STREET,146 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4417603,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/07/2021,19:00,QUEENS,11433,40.69001,-73.79204,"(40.69001, -73.79204)",157 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417421,Sedan,,,, +05/15/2021,13:57,,,40.860764,-73.87195,"(40.860764, -73.87195)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4416788,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/12/2021,7:17,MANHATTAN,10021,40.766594,-73.95317,"(40.766594, -73.95317)",,,520 EAST 72 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4417296,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,11:05,BRONX,10466,40.89408,-73.85951,"(40.89408, -73.85951)",,,635 EAST 233 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4416840,Sedan,Sedan,Sedan,, +05/08/2021,20:30,,,40.729046,-74.01073,"(40.729046, -74.01073)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417450,Sedan,,,, +05/10/2021,21:25,MANHATTAN,10033,40.849297,-73.93897,"(40.849297, -73.93897)",FORT WASHINGTON AVENUE,WEST 179 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Fatigued/Drowsy,,,,4417580,E-Bike,Sedan,,, +05/15/2021,3:32,,,40.583908,-73.98599,"(40.583908, -73.98599)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416988,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,6:00,BROOKLYN,11229,40.612946,-73.943756,"(40.612946, -73.943756)",AVENUE P,MADISON PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514870,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,9:15,QUEENS,11104,40.743374,-73.92056,"(40.743374, -73.92056)",44 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,22:35,BROOKLYN,11235,40.586258,-73.94893,"(40.586258, -73.94893)",OCEAN AVENUE,VOORHIES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417152,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,7:45,MANHATTAN,10065,40.760536,-73.95836,"(40.760536, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417302,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,17:35,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",WEST 44 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4416769,Bike,,,, +05/15/2021,21:25,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4416751,Station Wagon/Sport Utility Vehicle,Sedan,UNK,, +05/15/2021,23:20,,,40.668682,-73.89987,"(40.668682, -73.89987)",SUTTER AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417213,Sedan,Sedan,,, +05/15/2021,2:54,,,40.60099,-74.18089,"(40.60099, -74.18089)",,,1330 TRAVIS AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417435,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,1:13,BRONX,10466,40.88698,-73.84745,"(40.88698, -73.84745)",LACONIA AVENUE,EAST 229 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4416835,Sedan,Motorbike,,, +05/15/2021,9:10,BROOKLYN,11219,40.63335,-74.00292,"(40.63335, -74.00292)",,,1047 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416904,Sedan,,,, +04/17/2021,0:10,QUEENS,11435,40.68511,-73.79811,"(40.68511, -73.79811)",INWOOD STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4417392,Sedan,Sedan,Sedan,, +05/12/2021,10:30,BRONX,10462,40.841957,-73.85778,"(40.841957, -73.85778)",,,2150 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417333,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,22:25,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417541,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,13:57,BRONX,10474,40.81511,-73.88856,"(40.81511, -73.88856)",,,728 MANIDA STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4514698,Sedan,,,, +05/15/2021,0:47,BROOKLYN,11212,40.658966,-73.9191,"(40.658966, -73.9191)",LENOX ROAD,EAST 96 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4416949,Sedan,Taxi,,, +05/15/2021,0:59,QUEENS,11103,40.7633,-73.90994,"(40.7633, -73.90994)",,,28-59 45 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4416823,Sedan,Sedan,Sedan,, +05/14/2021,10:00,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417509,Bus,Box Truck,,, +05/11/2021,19:15,QUEENS,11372,40.75142,-73.88461,"(40.75142, -73.88461)",,,35-53 82 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417319,Sedan,PK,,, +09/06/2022,0:55,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4561563,Tractor Truck Diesel,,,, +05/14/2021,15:36,BRONX,10473,40.81317,-73.859146,"(40.81317, -73.859146)",PATTERSON AVENUE,LELAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417327,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,16:16,QUEENS,11434,40.68125,-73.764824,"(40.68125, -73.764824)",MERRICK BOULEVARD,ANDERSON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4417343,Sedan,Sedan,,, +05/15/2021,7:00,STATEN ISLAND,10310,40.62782,-74.12126,"(40.62782, -74.12126)",CLOVE ROAD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4416862,Sedan,,,, +03/17/2022,8:00,BROOKLYN,11221,40.695114,-73.911865,"(40.695114, -73.911865)",KNICKERBOCKER AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515236,Sedan,,,, +03/29/2022,17:00,,,40.76417,-73.83967,"(40.76417, -73.83967)",VAN WYCK EXPWY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4514600,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/29/2022,16:04,QUEENS,11414,40.669876,-73.84741,"(40.669876, -73.84741)",SOUTH CONDUIT AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514647,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,19:04,,,40.839832,-73.92392,"(40.839832, -73.92392)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4515040,Sedan,Box Truck,Taxi,, +03/25/2022,19:36,,,,,,,,4555 WEST HENRY HUDSON PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4514990,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/29/2022,20:35,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514999,Taxi,,,, +03/29/2022,9:23,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514515,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,1:31,MANHATTAN,10032,40.835686,-73.94102,"(40.835686, -73.94102)",,,518 WEST 161 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514769,Van,Sedan,,, +03/29/2022,11:40,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514543,Station Wagon/Sport Utility Vehicle,Dump,,, +03/29/2022,15:53,BROOKLYN,11209,40.622177,-74.0227,"(40.622177, -74.0227)",6 AVENUE,83 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4514890,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle, +03/29/2022,6:25,QUEENS,11355,40.75425,-73.81354,"(40.75425, -73.81354)",HOLLY AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514494,Bus,Sedan,,, +03/29/2022,7:19,BROOKLYN,11235,40.587543,-73.958206,"(40.587543, -73.958206)",AVENUE Z,EAST 12 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4514658,Sedan,MTA bus,,, +03/28/2022,15:25,BROOKLYN,11204,40.62945,-73.979866,"(40.62945, -73.979866)",47 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514987,Station Wagon/Sport Utility Vehicle,Bus,,, +03/29/2022,20:35,,,40.68532,-73.98071,"(40.68532, -73.98071)",,,ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,7:45,QUEENS,11418,40.7014,-73.816315,"(40.7014, -73.816315)",VANWYCK EXPRESSWAY,89 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514585,Sedan,Box Truck,,, +03/29/2022,17:00,,,40.55912,-74.15494,"(40.55912, -74.15494)",BARLOW AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515172,Trailer,Sedan,,, +03/26/2022,9:13,QUEENS,11378,40.72314,-73.906425,"(40.72314, -73.906425)",MASPETH AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4515123,Sedan,Sedan,Taxi,, +03/29/2022,18:00,BROOKLYN,11219,40.634605,-73.98539,"(40.634605, -73.98539)",15 AVENUE,45 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514702,Sedan,,,, +03/29/2022,9:45,BROOKLYN,11222,40.725582,-73.93584,"(40.725582, -73.93584)",,,857 MEEKER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514681,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +03/26/2022,20:00,MANHATTAN,10027,40.810104,-73.948975,"(40.810104, -73.948975)",,,230 WEST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515056,Sedan,Sedan,,, +03/23/2022,16:20,,,40.77247,-73.91959,"(40.77247, -73.91959)",27 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4515089,,,,, +03/29/2022,21:15,,,,,,CROSS BRONX EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4514712,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +03/29/2022,8:49,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4514579,Bus,Box Truck,,, +03/29/2022,7:50,,,,,,EAST 47 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514535,Bus,Sedan,,, +03/26/2022,10:10,,,,,,GRAND CENTRAL PARKWAY,HOME LAWN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515214,Sedan,Bus,,, +03/29/2022,12:30,,,40.70711,-73.95672,"(40.70711, -73.95672)",RODNEY STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514923,Sedan,,,, +06/30/2022,12:45,,,40.69595,-73.86237,"(40.69595, -73.86237)",PARK LANE SOUTH,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542384,Sedan,,,, +03/29/2022,14:35,,,,,,VICTORY BOULEVARD,SILVERLAKE PARK ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514614,Sedan,Sedan,,, +03/29/2022,14:08,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514734,Sedan,,,, +03/18/2022,11:17,,,40.71123,-73.85575,"(40.71123, -73.85575)",METROPOLITAN AVENUE,69 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514969,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,7:00,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4514811,Sedan,Sedan,,, +03/29/2022,0:16,,,40.71793,-73.73696,"(40.71793, -73.73696)",218 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4514531,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,8:20,BRONX,10473,40.81642,-73.85123,"(40.81642, -73.85123)",,,2075 LACOMBE AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4514478,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,18:15,QUEENS,11435,40.709343,-73.8178,"(40.709343, -73.8178)",MANTON STREET,84 DRIVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514662,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,15:00,QUEENS,11412,40.689537,-73.75813,"(40.689537, -73.75813)",119 AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514755,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,18:00,QUEENS,11355,0,0,"(0.0, 0.0)",58 AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514620,Station Wagon/Sport Utility Vehicle,,,, +03/24/2022,17:00,BROOKLYN,11204,40.60817,-73.98735,"(40.60817, -73.98735)",BAY PARKWAY,BAY RIDGE PARKWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4515134,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/28/2022,14:59,,,40.5559,-74.13979,"(40.5559, -74.13979)",AMBOY ROAD,TIMBER RIDGE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515165,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,7:40,,,40.808395,-73.95296,"(40.808395, -73.95296)",WEST 122 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4515067,Bike,,,, +03/29/2022,21:09,BRONX,10456,40.83472,-73.89846,"(40.83472, -73.89846)",CROTONA PARK SOUTH,CLINTON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4514670,Taxi,Sedan,Sedan,, +03/29/2022,9:55,MANHATTAN,10034,40.867363,-73.92211,"(40.867363, -73.92211)",,,4910 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515077,Sedan,Box Truck,,, +03/29/2022,17:00,QUEENS,11385,40.697346,-73.89081,"(40.697346, -73.89081)",64 PLACE,78 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4514882,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,12:30,,,40.768936,-73.834335,"(40.768936, -73.834335)",STRATTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514556,UTILITY,Box Truck,,, +03/29/2022,9:20,,,40.56757,-73.88277,"(40.56757, -73.88277)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514966,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,16:15,MANHATTAN,10128,40.78169,-73.94897,"(40.78169, -73.94897)",EAST 92 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515227,Bus,Sedan,,, +03/29/2022,12:25,,,,,,31 STREET,ASTORIA PARK SOUTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4514858,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,14:01,BROOKLYN,11208,40.67314,-73.86945,"(40.67314, -73.86945)",SUTTER AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4514542,Sedan,,,, +03/28/2022,16:30,QUEENS,11691,40.596416,-73.76474,"(40.596416, -73.76474)",,,331 BEACH 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4515019,Sedan,Sedan,,, +03/27/2022,19:00,BROOKLYN,11208,40.668278,-73.87825,"(40.668278, -73.87825)",,,884 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515000,Sedan,,,, +03/29/2022,8:03,BRONX,10454,40.802296,-73.92073,"(40.802296, -73.92073)",,,2 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514520,Tractor Truck Diesel,Van,,, +09/25/2021,19:43,,,40.711685,-73.74672,"(40.711685, -73.74672)",104 AVENUE,211 PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460822,Sedan,,,, +03/29/2022,14:20,BRONX,10462,40.83757,-73.85446,"(40.83757, -73.85446)",SAINT RAYMOND AVENUE,ODELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515072,Sedan,,,, +03/29/2022,22:20,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4514717,Sedan,Sedan,,, +03/28/2022,19:48,STATEN ISLAND,10306,40.57161,-74.09418,"(40.57161, -74.09418)",LINCOLN AVENUE,OLYMPIA BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4515152,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,14:50,,,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515159,Bus,Sedan,,, +03/29/2022,0:35,QUEENS,11435,40.694374,-73.803764,"(40.694374, -73.803764)",WALTHAM STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514461,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,21:55,QUEENS,11436,40.67169,-73.79121,"(40.67169, -73.79121)",SUTTER AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4514766,Sedan,Sedan,Sedan,Sedan,Sedan +03/29/2022,7:45,BRONX,10457,40.851143,-73.88534,"(40.851143, -73.88534)",,,2254 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514801,Sedan,,,, +03/29/2022,17:50,,,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4515269,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,5:00,BRONX,10459,40.824085,-73.9013,"(40.824085, -73.9013)",,,992 UNION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514667,Sedan,,,, +12/16/2021,18:30,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515033,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,17:00,BRONX,10467,40.879955,-73.87888,"(40.879955, -73.87888)",,,3415 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514696,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,8:46,BROOKLYN,11215,40.666134,-73.993805,"(40.666134, -73.993805)",,,145 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514782,Sedan,,,, +03/29/2022,18:15,BROOKLYN,11208,40.67134,-73.88195,"(40.67134, -73.88195)",SUTTER AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514596,Box Truck,Sedan,,, +03/29/2022,0:00,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",CROSS ISLAND PARKWAY,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4514511,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,15:00,BRONX,10461,40.845913,-73.84783,"(40.845913, -73.84783)",,,1551 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514940,Sedan,Motorcycle,,, +03/29/2022,1:03,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515043,commercial,Sedan,,, +03/29/2022,15:40,,,,,,,,1 KINGS PLAZA,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514649,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,22:06,,,40.750492,-73.751205,"(40.750492, -73.751205)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514625,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/19/2022,12:27,MANHATTAN,10027,40.809303,-73.94507,"(40.809303, -73.94507)",,,103 WEST 127 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4514991,Van,,,, +03/29/2022,21:10,,,40.76161,-73.97076,"(40.76161, -73.97076)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514685,Sedan,Sedan,,, +03/29/2022,16:20,QUEENS,11102,40.77187,-73.91481,"(40.77187, -73.91481)",24 AVENUE,32 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4514724,Bus,Sedan,,, +03/29/2022,16:40,BROOKLYN,11211,40.710587,-73.95511,"(40.710587, -73.95511)",RODNEY STREET,BORINQUEN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4515189,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/29/2022,19:35,BRONX,10466,40.8885,-73.84213,"(40.8885, -73.84213)",,,1220 EAST 233 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515115,Sedan,,,, +03/29/2022,10:41,,,40.836605,-73.93931,"(40.836605, -73.93931)",AMSTERDAM AVENUE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4514761,Sedan,,,, +03/29/2022,16:12,MANHATTAN,10017,40.753,-73.969894,"(40.753, -73.969894)",2 AVENUE,EAST 47 STREET,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4514671,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,11:40,,,40.738758,-74.00241,"(40.738758, -74.00241)",GREENWICH AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4515078,Bike,Box Truck,,, +03/23/2022,12:52,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515101,Sedan,Box Truck,,, +03/15/2022,18:20,,,40.64661,-74.0811,"(40.64661, -74.0811)",CARROLL PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515126,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,7:00,BROOKLYN,11211,40.708424,-73.95791,"(40.708424, -73.95791)",BROADWAY,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4514705,Flat Bed,Station Wagon/Sport Utility Vehicle,Bus,, +07/01/2022,14:45,QUEENS,11101,40.750244,-73.920135,"(40.750244, -73.920135)",43 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542631,Sedan,Sedan,,, +07/01/2022,18:40,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542653,Sedan,Moped,,, +06/25/2022,21:45,BRONX,10459,40.83209,-73.8898,"(40.83209, -73.8898)",JENNINGS STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542431,Sedan,Sedan,,, +06/30/2022,0:35,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4541996,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/30/2022,16:30,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",VANDAM STREET,THOMSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542291,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,13:30,QUEENS,11366,40.726887,-73.78826,"(40.726887, -73.78826)",UNION TURNPIKE,180 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542426,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,17:55,MANHATTAN,10022,40.758537,-73.97721,"(40.758537, -73.97721)",5 AVENUE,EAST 50 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4542411,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2022,11:45,MANHATTAN,10021,40.77012,-73.95741,"(40.77012, -73.95741)",2 AVENUE,EAST 74 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542345,Sedan,Moped,,, +06/30/2022,0:30,BROOKLYN,11215,40.67143,-73.98784,"(40.67143, -73.98784)",,,412 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542571,Garbage or Refuse,Sedan,,, +06/29/2022,4:07,,,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4541684,Station Wagon/Sport Utility Vehicle,Moped,,, +06/30/2022,20:14,,,40.63782,-73.98921,"(40.63782, -73.98921)",13 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542361,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2022,13:55,,,40.763042,-73.956535,"(40.763042, -73.956535)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4541977,PICK UP TR,,,, +07/01/2022,10:00,,,40.60459,-74.02212,"(40.60459, -74.02212)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542499,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,9:35,,,40.73448,-73.92243,"(40.73448, -73.92243)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542083,Sedan,Flat Bed,,, +06/14/2022,13:00,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",WOODWARD AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542636,Sedan,,,, +07/01/2022,15:00,,,40.784996,-73.824234,"(40.784996, -73.824234)",WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4542558,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,13:33,BROOKLYN,11225,40.658875,-73.94753,"(40.658875, -73.94753)",NEW YORK AVENUE,FENIMORE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,16:00,BRONX,10460,,,,,,1527 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542389,Sedan,Sedan,,, +06/28/2022,9:10,QUEENS,11101,40.748108,-73.947365,"(40.748108, -73.947365)",44 DRIVE,21 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542655,Sedan,E-Bike,,, +06/26/2022,14:55,,,40.73911,-73.89768,"(40.73911, -73.89768)",67 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542856,Sedan,,,, +07/01/2022,15:00,QUEENS,11105,40.778664,-73.90946,"(40.778664, -73.90946)",21 AVENUE,29 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4542675,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,16:16,MANHATTAN,10035,40.801918,-73.94344,"(40.801918, -73.94344)",MADISON AVENUE,EAST 119 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Backing Unsafely,,,,4543060,Sedan,Sedan,,, +06/29/2022,7:52,BROOKLYN,11232,40.645042,-73.99965,"(40.645042, -73.99965)",8 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542014,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,17:39,BROOKLYN,11209,40.620975,-74.02537,"(40.620975, -74.02537)",86 STREET,GELSTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542282,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/30/2022,11:48,BROOKLYN,11211,40.715702,-73.940506,"(40.715702, -73.940506)",,,59 MASPETH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543022,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/16/2022,9:00,MANHATTAN,10028,40.776867,-73.955414,"(40.776867, -73.955414)",3 AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543094,Tractor Truck Gasoline,Sedan,,, +06/16/2022,15:00,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542500,Sedan,Sedan,,, +09/25/2021,9:03,,,,,,PLAZA DRIVE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460974,Pick-up Truck,Sedan,,, +06/30/2022,17:45,BROOKLYN,11234,40.621563,-73.939125,"(40.621563, -73.939125)",KINGS HIGHWAY,EAST 37 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Following Too Closely,,,,4542308,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2022,14:10,BROOKLYN,11232,,,,,,902 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542485,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,14:15,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",CHURCH AVENUE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4542660,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,19:14,BROOKLYN,11208,40.673542,-73.86668,"(40.673542, -73.86668)",SUTTER AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542054,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2022,18:45,MANHATTAN,10032,40.84394,-73.93903,"(40.84394, -73.93903)",WEST 172 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542943,Motorcycle,Sedan,,, +06/27/2022,14:20,,,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4543076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,8:55,,,40.74273,-73.95412,"(40.74273, -73.95412)",VERNON BOULEVARD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4542453,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,14:15,,,40.63311,-73.97217,"(40.63311, -73.97217)",18 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542987,Sedan,,,, +06/30/2022,9:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,17:55,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",178 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,13:47,QUEENS,11416,40.68232,-73.86433,"(40.68232, -73.86433)",,,74-19 95 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542379,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2022,23:42,,,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4542468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/29/2022,0:00,BROOKLYN,11228,40.62461,-74.00841,"(40.62461, -74.00841)",,,1147 71 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541863,Sedan,Box Truck,,, +06/29/2022,16:18,,,40.74942,-73.940544,"(40.74942, -73.940544)",42 ROAD,,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4541924,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,22:00,QUEENS,11435,40.7042,-73.815254,"(40.7042, -73.815254)",HILLSIDE AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542767,Sedan,E-Bike,,, +06/29/2022,2:25,QUEENS,11427,40.72407,-73.76122,"(40.72407, -73.76122)",,,86-61 208 STREET,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4542197,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,19:00,QUEENS,11101,40.756874,-73.94436,"(40.756874, -73.94436)",10 STREET,40 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543125,,,,, +07/01/2022,23:20,QUEENS,11426,40.750675,-73.72698,"(40.750675, -73.72698)",,,245-10 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4542701,ambulance,,,, +07/01/2022,6:10,BRONX,10474,40.81636,-73.891815,"(40.81636, -73.891815)",TIFFANY STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542511,Box Truck,Motorcycle,,, +06/26/2022,14:58,BRONX,10460,40.836414,-73.88936,"(40.836414, -73.88936)",,,1674 BOSTON ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542416,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,12:35,QUEENS,11434,40.675842,-73.78305,"(40.675842, -73.78305)",BAISLEY BOULEVARD,157 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4541991,Sedan,Motorcycle,,, +06/29/2022,14:15,,,40.830902,-73.84765,"(40.830902, -73.84765)",HAVEMEYER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4542543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/29/2022,20:14,QUEENS,11423,40.71178,-73.75898,"(40.71178, -73.75898)",99 AVENUE,201 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4542272,Sedan,Pick-up Truck,,, +07/01/2022,6:26,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4542526,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/19/2022,14:21,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542905,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,21:45,,,40.666935,-73.782715,"(40.666935, -73.782715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417133,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,21:41,,,40.721275,-73.9778,"(40.721275, -73.9778)",AVENUE D,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4542814,Sedan,,,, +06/30/2022,10:00,BRONX,10460,40.836384,-73.87039,"(40.836384, -73.87039)",,,1719 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542548,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2022,17:07,BROOKLYN,11231,40.68048,-73.99336,"(40.68048, -73.99336)",,,322 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542394,Sedan,,,, +06/30/2022,14:00,MANHATTAN,10035,40.799713,-73.938156,"(40.799713, -73.938156)",,,207 EAST 119 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543054,Pick-up Truck,Concrete Mixer,,, +06/29/2022,7:30,,,40.766743,-73.83272,"(40.766743, -73.83272)",FARRINGTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4541822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,13:00,STATEN ISLAND,10304,40.6228,-74.08526,"(40.6228, -74.08526)",VANDUZER STREET,BROAD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542129,Sedan,Sedan,,, +06/30/2022,8:15,,,40.59038,-74.19295,"(40.59038, -74.19295)",VICTORY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2022,0:27,,,40.735283,-73.85984,"(40.735283, -73.85984)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543108,Sedan,Sedan,,, +06/30/2022,17:35,MANHATTAN,10016,40.74217,-73.9828,"(40.74217, -73.9828)",,,101 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542963,Station Wagon/Sport Utility Vehicle,Bus,,, +06/29/2022,15:45,BROOKLYN,11209,40.62152,-74.027916,"(40.62152, -74.027916)",,,436 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541900,Sedan,,,, +06/29/2022,18:19,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542029,Sedan,,,, +06/29/2022,23:10,BRONX,10465,40.8183,-73.81894,"(40.8183, -73.81894)",CALHOUN AVENUE,MILES AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542586,Sedan,MOPED,,, +06/30/2022,15:10,MANHATTAN,10002,40.718002,-73.98659,"(40.718002, -73.98659)",DELANCEY STREET,SUFFOLK STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542339,Sedan,Chassis Cab,,, +05/22/2022,5:22,QUEENS,11411,40.691948,-73.730675,"(40.691948, -73.730675)",231 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542605,Sedan,,,, +06/30/2022,10:59,BRONX,10457,40.852837,-73.89232,"(40.852837, -73.89232)",,,550 EAST 182 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542369,Sedan,,,, +06/30/2022,14:16,BROOKLYN,11220,40.632633,-74.01254,"(40.632633, -74.01254)",65 STREET,8 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542278,Motorcycle,Sedan,,, +06/30/2022,8:35,QUEENS,11385,40.6991,-73.906075,"(40.6991, -73.906075)",,,1680 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4542480,Sedan,,,, +06/29/2022,16:00,BROOKLYN,11211,40.714737,-73.95276,"(40.714737, -73.95276)",MEEKER AVENUE,NORTH 7 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4541984,Sedan,Tractor Truck Diesel,,, +06/23/2022,18:45,BROOKLYN,11203,40.6577,-73.94058,"(40.6577, -73.94058)",,,560 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542806,Sedan,Sedan,,, +07/01/2022,14:53,BRONX,10472,40.82923,-73.87551,"(40.82923, -73.87551)",WESTCHESTER AVENUE,STRATFORD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4542554,Sedan,Box Truck,,, +06/29/2022,20:23,BROOKLYN,11226,40.651226,-73.95855,"(40.651226, -73.95855)",,,12 MARTENSE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4542043,Sedan,,,, +06/24/2022,23:38,QUEENS,11412,40.691418,-73.75795,"(40.691418, -73.75795)",193 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542448,Sedan,Sedan,,, +06/29/2022,11:45,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,,,,4542861,Sedan,Sedan,,, +06/23/2022,9:30,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4542732,Bus,Sedan,Sedan,Sedan, +07/01/2022,15:24,MANHATTAN,10029,40.788692,-73.93787,"(40.788692, -73.93787)",FDR DRIVE,EAST 106 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4542647,Sedan,Sedan,,, +06/20/2022,10:25,,,,,,LIBERTY AVENUE,170 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543152,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,14:20,,,40.68556,-73.90719,"(40.68556, -73.90719)",CHAUNCEY STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489418,Sedan,Sedan,,, +09/25/2021,6:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461263,Van,Sedan,,, +07/01/2022,15:14,BROOKLYN,11215,40.67045,-73.98193,"(40.67045, -73.98193)",6 AVENUE,5 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542580,Sedan,,,, +07/01/2022,20:21,QUEENS,11377,40.74539,-73.90559,"(40.74539, -73.90559)",59 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542616,Taxi,,,, +06/30/2022,6:15,BROOKLYN,11201,40.69625,-73.99118,"(40.69625, -73.99118)",CADMAN PLAZA WEST,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543013,Sedan,,,, +06/28/2022,11:30,BRONX,10466,40.888176,-73.831314,"(40.888176, -73.831314)",,,3817 DYRE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542893,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,0:00,BROOKLYN,11220,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,60 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,19:28,BROOKLYN,11236,40.632725,-73.90017,"(40.632725, -73.90017)",AVENUE M,EAST 88 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4542935,Sedan,Sedan,Sedan,, +07/01/2022,0:56,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542575,Taxi,,,, +07/01/2022,2:07,BROOKLYN,11207,40.677395,-73.89897,"(40.677395, -73.89897)",,,15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542443,Sedan,Sedan,,, +06/30/2022,13:19,,,40.687782,-73.91907,"(40.687782, -73.91907)",BROADWAY,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4542404,E-Bike,,,, +06/29/2022,17:30,MANHATTAN,10016,40.745113,-73.98067,"(40.745113, -73.98067)",EAST 32 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542313,Taxi,Bike,,, +06/27/2022,0:43,QUEENS,11385,40.703247,-73.90844,"(40.703247, -73.90844)",GATES AVENUE,SENECA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542643,Sedan,Bike,,, +06/26/2022,3:15,,,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542982,Sedan,Sedan,,, +06/24/2022,15:15,,,40.585117,-73.91429,"(40.585117, -73.91429)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542727,Sedan,Sedan,,, +07/01/2022,10:40,BRONX,10469,40.87645,-73.848175,"(40.87645, -73.848175)",BOSTON ROAD,FENTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542912,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,12:35,,,40.66041,-73.87693,"(40.66041, -73.87693)",WORTMAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542436,Pick-up Truck,,,, +06/27/2022,0:00,QUEENS,11368,40.739952,-73.854454,"(40.739952, -73.854454)",,,106-08 OTIS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542841,Sedan,Garbage or Refuse,,, +12/24/2021,18:20,,,,,,PELHAM PARKWAY,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489452,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,0:00,BRONX,10468,,,,W KINGSBRIDGE ROAD,DAVIDSON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514916,Sedan,Sedan,,, +09/25/2021,22:20,BROOKLYN,11223,40.60455,-73.9691,"(40.60455, -73.9691)",EAST 4 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461360,Pick-up Truck,Sedan,,, +11/22/2021,18:10,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4481718,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,12:10,BROOKLYN,11231,40.67468,-74.016045,"(40.67468, -74.016045)",VAN BRUNT STREET,REED STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486389,Tractor Truck Gasoline,,,, +10/21/2021,8:48,BROOKLYN,11203,,,,ALBANY AVENUE,LENOX ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470263,Station Wagon/Sport Utility Vehicle,,,, +12/04/2021,21:56,MANHATTAN,10007,40.710888,-74.00907,"(40.710888, -74.00907)",BROADWAY,FULTON STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4487160,Taxi,E-Bike,,, +12/12/2021,12:00,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485660,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/03/2021,18:20,BRONX,10465,40.836758,-73.81813,"(40.836758, -73.81813)",,,1130 STADIUM AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4487161,Sedan,,,, +10/18/2021,12:30,,,,,,NASSAU BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469210,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,4:20,,,40.666225,-73.80086,"(40.666225, -73.80086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4485487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/14/2021,5:55,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4487165,Sedan,,,, +12/14/2021,12:28,QUEENS,11101,40.75199,-73.931274,"(40.75199, -73.931274)",NORTHERN BOULEVARD,33 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4487170,Sedan,E-Bike,,, +06/30/2022,10:00,QUEENS,11413,40.6611,-73.748924,"(40.6611, -73.748924)",230 PLACE,145 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,23:55,BROOKLYN,11233,40.67584,-73.91655,"(40.67584, -73.91655)",SARATOGA AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542791,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,17:16,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542958,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2022,21:40,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,Unspecified,,,4542522,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2022,1:45,MANHATTAN,10022,40.76253,-73.966995,"(40.76253, -73.966995)",,,166 EAST 60 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4541718,Bulk Agriculture,Sedan,,, +06/29/2022,0:45,QUEENS,11435,40.694965,-73.80835,"(40.694965, -73.80835)",101 AVENUE,BRISBIN STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542267,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,15:50,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",VANDAM STREET,REVIEW AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542507,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,6:20,BROOKLYN,11207,40.66127,-73.896065,"(40.66127, -73.896065)",NEWPORT STREET,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4541959,Sedan,,,, +06/30/2022,7:14,QUEENS,11378,40.724224,-73.89542,"(40.724224, -73.89542)",,,68-20 58 AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4542475,Sedan,Bike,,, +06/29/2022,11:42,MANHATTAN,10001,40.749405,-73.99658,"(40.749405, -73.99658)",,,321 WEST 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542215,Sedan,Pick-up Truck,,, +07/01/2022,15:30,,,40.660114,-73.96391,"(40.660114, -73.96391)",EAST LAKE DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542745,E-Bike,Bike,,, +06/29/2022,1:15,STATEN ISLAND,10304,40.60113,-74.09704,"(40.60113, -74.09704)",DUNCAN STREET,SPARKHILL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4542136,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,19:00,QUEENS,11432,40.71664,-73.801605,"(40.71664, -73.801605)",,,164-37 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4542783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/29/2022,13:40,QUEENS,11375,40.728954,-73.847565,"(40.728954, -73.847565)",108 STREET,67 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543048,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/29/2022,9:25,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4542539,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +07/01/2022,17:45,BROOKLYN,11229,40.611683,-73.94694,"(40.611683, -73.94694)",AVENUE P,EAST 27 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542623,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,15:45,BROOKLYN,11208,40.68528,-73.87735,"(40.68528, -73.87735)",,,88 RICHMOND STREET,1,0,1,0,0,0,0,0,,,,,,4542061,,,,, +06/30/2022,20:38,QUEENS,11421,40.69366,-73.85217,"(40.69366, -73.85217)",WOODHAVEN BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542447,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,15:30,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542590,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,21:00,BRONX,10457,40.852863,-73.90093,"(40.852863, -73.90093)",RYER AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542375,Sedan,Ambulance,,, +07/01/2022,18:56,,,40.676834,-74.00146,"(40.676834, -74.00146)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,22:55,,,,,,GOWANUS RAMP,,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inexperience,,,,4542098,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,18:51,QUEENS,11354,40.763798,-73.808235,"(40.763798, -73.808235)",NORTHERN BOULEVARD,157 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4542314,Sedan,Sedan,,, +07/01/2022,3:15,QUEENS,11412,40.70233,-73.76613,"(40.70233, -73.76613)",FARMERS BOULEVARD,110 ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4542458,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,0:58,BRONX,10458,40.86675,-73.888885,"(40.86675, -73.888885)",EAST 197 STREET,POND PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542001,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2022,12:45,BROOKLYN,11230,40.619396,-73.969574,"(40.619396, -73.969574)",OCEAN PARKWAY,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4542689,Sedan,Sedan,Sedan,, +07/01/2022,15:00,BROOKLYN,11234,40.632847,-73.928375,"(40.632847, -73.928375)",UTICA AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543003,Sedan,,,, +06/30/2022,17:25,QUEENS,11372,40.75657,-73.87585,"(40.75657, -73.87585)",,,92-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542273,Sedan,Sedan,,, +06/25/2022,4:20,,,40.768887,-73.90691,"(40.768887, -73.90691)",43 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4542663,Sedan,,,, +07/01/2022,8:41,BRONX,10457,40.838707,-73.90989,"(40.838707, -73.90989)",EAST 171 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4542868,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,17:30,BRONX,10470,40.90146,-73.86267,"(40.90146, -73.86267)",EAST 240 STREET,VIREO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542897,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,14:18,BROOKLYN,11234,40.611603,-73.91971,"(40.611603, -73.91971)",EAST 55 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4542595,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +07/01/2022,7:45,MANHATTAN,10027,40.8203,-73.95967,"(40.8203, -73.95967)",MARGINAL STREET,WEST 133 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542831,Sedan,Sedan,,, +06/28/2022,13:30,QUEENS,11105,40.76964,-73.91,"(40.76964, -73.91)",,,23-66 STEINWAY STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542652,Tractor Truck Diesel,Sedan,,, +06/10/2022,17:55,BROOKLYN,11225,40.66387,-73.94271,"(40.66387, -73.94271)",,,437 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542826,Van,Sedan,,, +06/30/2022,8:00,BROOKLYN,11231,40.676514,-74.01576,"(40.676514, -74.01576)",,,221 CONOVER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542612,Sedan,Van,,, +06/03/2022,14:00,BROOKLYN,11223,40.602108,-73.96629,"(40.602108, -73.96629)",,,1901 OCEAN PARKWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542739,Sedan,Sedan,,, +06/28/2022,18:50,,,40.666122,-73.93139,"(40.666122, -73.93139)",CARROLL STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4542890,E-Bike,,,, +06/30/2022,21:50,QUEENS,11101,40.755253,-73.919815,"(40.755253, -73.919815)",,,34-41 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542676,Sedan,,,, +06/30/2022,15:30,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542299,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,22:50,BROOKLYN,11206,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,ARION PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4542926,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/29/2022,12:15,BROOKLYN,11226,40.648556,-73.957565,"(40.648556, -73.957565)",,,20 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542041,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,17:54,,,40.631336,-74.1478,"(40.631336, -74.1478)",WALKER STREET,PULASKI AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542802,Sedan,Sedan,,, +06/29/2022,16:47,,,40.68126,-73.76483,"(40.68126, -73.76483)",MERRICK BOULEVARD,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4542512,Sedan,,,, +06/29/2022,10:00,,,40.691017,-73.954475,"(40.691017, -73.954475)",SPENCER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542838,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/26/2022,23:35,BRONX,10466,40.89487,-73.85657,"(40.89487, -73.85657)",WHITE PLAINS ROAD,EAST 235 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4542917,Sedan,Sedan,,, +07/01/2022,9:15,BRONX,10466,40.89911,-73.84675,"(40.89911, -73.84675)",,,1955 NEREID AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542976,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/30/2022,8:20,,,,,,Roosevelt Avenue,Stadium Place North,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542845,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2022,17:33,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4542576,Taxi,Motorcycle,Sedan,Sedan, +06/29/2022,9:33,BROOKLYN,11210,40.63447,-73.94012,"(40.63447, -73.94012)",EAST 38 STREET,GLENWOOD ROAD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4542225,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2022,20:10,,,40.6752,-73.950005,"(40.6752, -73.950005)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542954,Sedan,,,, +06/29/2022,6:00,QUEENS,11432,40.689735,-73.89033,"(40.689735, -73.89033)",VERMONT PLACE,ROBINSON PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4541766,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,9:10,MANHATTAN,10033,40.847683,-73.94221,"(40.847683, -73.94221)",HAVEN AVENUE,WEST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542116,Sedan,,,, +07/01/2022,16:30,,,40.776016,-73.78441,"(40.776016, -73.78441)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4542716,Box Truck,Sedan,,, +06/29/2022,17:00,QUEENS,11434,40.664173,-73.77031,"(40.664173, -73.77031)",,,177-10 145 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4541927,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2022,23:21,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543044,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/25/2022,10:00,BROOKLYN,11220,40.642864,-74.01266,"(40.642864, -74.01266)",54 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542490,Sedan,E-Bike,,, +06/24/2022,15:40,QUEENS,11378,40.72214,-73.902275,"(40.72214, -73.902275)",FLUSHING AVENUE,63 STREET,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4542627,Motorcycle,Sedan,,, +06/25/2022,8:20,QUEENS,11433,40.701557,-73.790276,"(40.701557, -73.790276)",MERRICK BOULEVARD,104 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542777,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,17:20,STATEN ISLAND,10306,40.57902,-74.10661,"(40.57902, -74.10661)",,,64 EDISON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542125,Sedan,Sedan,,, +06/29/2022,15:45,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4541995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/29/2022,7:15,BRONX,10461,40.854675,-73.84366,"(40.854675, -73.84366)",EASTCHESTER ROAD,SEMINOLE STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4542108,Sedan,Sedan,,, +06/25/2022,0:15,BRONX,10451,40.821877,-73.92071,"(40.821877, -73.92071)",,,720 MORRIS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542462,Sedan,Sedan,,, +07/01/2022,0:18,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4542350,Sedan,,,, +06/30/2022,6:19,BROOKLYN,11226,40.644016,-73.95819,"(40.644016, -73.95819)",,,2118 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542057,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,5:39,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4542357,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,16:25,MANHATTAN,10035,40.8032,-73.934616,"(40.8032, -73.934616)",,,255 EAST 125 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543059,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,2:10,QUEENS,11004,40.749535,-73.70493,"(40.749535, -73.70493)",,,78-15 268 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4541651,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,5:35,BROOKLYN,11231,40.677437,-73.99648,"(40.677437, -73.99648)",SMITH STREET,4 PLACE,,2,0,0,0,0,0,2,0,Obstruction/Debris,View Obstructed/Limited,,,,4542385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2022,17:00,,,40.66041,-73.93424,"(40.66041, -73.93424)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4542821,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,12:06,,,40.71507,-73.91327,"(40.71507, -73.91327)",FLUSHING AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542479,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,20:40,BRONX,10475,40.869633,-73.82653,"(40.869633, -73.82653)",,,2063 BARTOW AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543086,Sedan,Sedan,,, +06/30/2022,15:28,,,40.580627,-73.96622,"(40.580627, -73.96622)",NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4542290,Sedan,Bike,,, +06/18/2022,1:38,QUEENS,11106,40.755398,-73.93182,"(40.755398, -73.93182)",37 AVENUE,30 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542632,4 dr sedan,Sedan,,, +06/27/2022,14:44,BRONX,10460,40.836655,-73.88215,"(40.836655, -73.88215)",,,1817 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542430,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,21:38,BROOKLYN,11203,40.64957,-73.93887,"(40.64957, -73.93887)",SNYDER AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542670,Sedan,,,, +06/29/2022,15:59,,,,,,PELHAM PARKWAY SOUTH,WILLIAMSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542851,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/30/2022,14:30,BROOKLYN,11211,40.717033,-73.95644,"(40.717033, -73.95644)",NORTH 7 STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543026,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,19:01,,,40.726448,-73.75632,"(40.726448, -73.75632)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542517,Sedan,,,, +06/30/2022,7:30,BROOKLYN,11220,40.64759,-74.01142,"(40.64759, -74.01142)",4 AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4542694,Sedan,Dump,,, +06/28/2022,15:00,BROOKLYN,11237,40.70455,-73.91662,"(40.70455, -73.91662)",STANHOPE STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542882,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/25/2022,3:31,BRONX,10452,40.830345,-73.92328,"(40.830345, -73.92328)",EAST 164 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4542656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,2:13,BROOKLYN,11211,40.71594,-73.94462,"(40.71594, -73.94462)",GRAHAM AVENUE,SKILLMAN AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4543036,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/01/2022,13:30,BROOKLYN,11219,40.625576,-74.003975,"(40.625576, -74.003975)",,,1241 67 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4543066,Sedan,,,, +06/29/2022,2:28,,,40.86157,-73.913185,"(40.86157, -73.913185)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4542735,Tractor Truck Gasoline,Sedan,,, +06/16/2022,23:30,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,,,,,,4542857,,,,, +06/29/2022,10:13,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4542948,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/27/2022,13:40,QUEENS,11432,40.709953,-73.8014,"(40.709953, -73.8014)",,,160-05 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4542417,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/30/2022,17:29,BROOKLYN,11235,40.587723,-73.93564,"(40.587723, -73.93564)",VOORHIES AVENUE,FORD STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4542531,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,8:05,,,40.713234,-73.873604,"(40.713234, -73.873604)",79 STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542997,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +06/25/2022,22:50,,,40.66451,-73.91723,"(40.66451, -73.91723)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542794,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,15:06,BRONX,10472,40.828453,-73.84929,"(40.828453, -73.84929)",,,2222 CHATTERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542544,AMBULANCE,Sedan,,, +06/25/2022,18:00,QUEENS,11385,40.70029,-73.889534,"(40.70029, -73.889534)",65 STREET,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542637,Sedan,,,, +06/30/2022,12:38,BRONX,10472,40.827507,-73.85634,"(40.827507, -73.85634)",CHATTERTON AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4542549,Sedan,,,, +06/23/2022,19:00,QUEENS,11377,40.758324,-73.90848,"(40.758324, -73.90848)",,,30-78 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543130,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,7:30,,,40.637142,-74.16616,"(40.637142, -74.16616)",,,134 SOUTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542211,Sedan,,,, +06/29/2022,15:53,BROOKLYN,11238,40.68293,-73.964226,"(40.68293, -73.964226)",,,969 FULTON STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541892,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2022,9:40,BROOKLYN,11222,40.719078,-73.94353,"(40.719078, -73.94353)",,,490 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542153,Station Wagon/Sport Utility Vehicle,,,, +06/25/2022,15:10,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",ROOSEVELT AVENUE,69 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542383,Sedan,E-Scooter,,, +06/29/2022,13:00,BROOKLYN,11210,40.629047,-73.94369,"(40.629047, -73.94369)",,,1696 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,11:30,,,,,,188 STREET,186 LANE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4542198,Sedan,Sedan,,, +06/24/2022,8:10,BROOKLYN,11230,,,,,,2065 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542986,Station Wagon/Sport Utility Vehicle,,,, +06/20/2022,22:22,QUEENS,11106,40.76178,-73.92226,"(40.76178, -73.92226)",,,31-64 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542398,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,14:26,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4541983,Station Wagon/Sport Utility Vehicle,Van,,, +06/30/2022,19:08,BRONX,10468,40.868694,-73.90237,"(40.868694, -73.90237)",WEBB AVENUE,WEST KINGSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542720,Sedan,Motorcycle,,, +03/31/2022,9:25,,,40.586437,-74.16322,"(40.586437, -74.16322)",,,153 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4515125,Sedan,,,, +05/13/2021,22:20,,,,,,BELT PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,Following Too Closely,Unspecified,,,4417789,Sedan,Sedan,Sedan,, +08/27/2021,1:54,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451334,Sedan,Sedan,,, +09/11/2021,22:15,,,,,,SEDGWICK AVENUE,sedgwick avenue,,1,0,1,0,0,0,0,0,,,,,,4461734,,,,, +09/19/2021,3:40,,,40.585228,-73.94155,"(40.585228, -73.94155)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4458849,Sedan,Sedan,,, +06/29/2022,10:45,,,40.62764,-73.89022,"(40.62764, -73.89022)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4542240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2022,3:45,,,40.66733,-73.95353,"(40.66733, -73.95353)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542900,Sedan,Sedan,,, +06/30/2022,17:57,MANHATTAN,10014,40.727665,-74.00318,"(40.727665, -74.00318)",AVENUE OF THE AMERICAS,KING STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542415,Sedan,Bike,,, +06/29/2022,6:30,,,40.770706,-73.86925,"(40.770706, -73.86925)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4541793,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,14:06,,,40.635853,-74.16619,"(40.635853, -74.16619)",SOUTH AVENUE,ARLINGTON PLACE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4542563,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,9:00,QUEENS,11416,40.6867,-73.84811,"(40.6867, -73.84811)",,,95-34 94 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542164,Sedan,,,, +06/30/2022,16:39,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4542494,Sedan,Sedan,Sedan,Sedan, +07/01/2022,15:47,,,40.738503,-73.973526,"(40.738503, -73.973526)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4542969,Sedan,,,, +06/30/2022,22:21,,,40.7082,-73.7669,"(40.7082, -73.7669)",191 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,Unspecified,,4542772,Sedan,Sedan,Pick-up Truck,Sedan, +06/29/2022,8:25,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542733,Sedan,Box Truck,,, +06/28/2022,19:00,QUEENS,11101,40.756874,-73.94436,"(40.756874, -73.94436)",10 STREET,40 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543119,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,8:35,QUEENS,11385,40.704594,-73.90826,"(40.704594, -73.90826)",LINDEN STREET,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542706,Sedan,Sedan,,, +06/30/2022,7:47,BRONX,10474,40.810596,-73.88834,"(40.810596, -73.88834)",,,531 BARRETTO STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2022,20:32,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542542,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,21:30,,,40.665718,-73.95687,"(40.665718, -73.95687)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542906,Sedan,E-Bike,,, +06/29/2022,17:00,QUEENS,11433,40.70761,-73.78369,"(40.70761, -73.78369)",,,92-15 177 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542270,Sedan,Sedan,,, +06/30/2022,16:47,QUEENS,11361,40.758118,-73.78248,"(40.758118, -73.78248)",201 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542521,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,11:35,MANHATTAN,10016,40.738514,-73.97644,"(40.738514, -73.97644)",,,421 EAST 26 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542968,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,5:45,QUEENS,11354,40.775093,-73.846634,"(40.775093, -73.846634)",GRAHAM COURT,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4541823,Sedan,Sedan,,, +06/29/2022,15:10,QUEENS,11354,40.773113,-73.82786,"(40.773113, -73.82786)",28 AVENUE,141 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4541941,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +07/01/2022,16:05,,,40.715076,-73.95189,"(40.715076, -73.95189)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543035,Motorcycle,Sedan,,, +06/26/2022,21:16,,,40.70183,-73.91933,"(40.70183, -73.91933)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542405,Sedan,Ambulance,,, +06/30/2022,8:52,,,40.618427,-73.956245,"(40.618427, -73.956245)",EAST 19 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542983,Bike,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,9:00,BROOKLYN,11219,40.635258,-74.00456,"(40.635258, -74.00456)",,,945 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543136,Sedan,,,, +06/16/2022,9:00,,,40.60481,-74.023964,"(40.60481, -74.023964)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542726,Sedan,Convertible,,, +06/30/2022,20:00,,,40.839176,-73.94114,"(40.839176, -73.94114)",WEST 165 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4542940,Ambulance,Sedan,,, +03/30/2022,15:30,STATEN ISLAND,10305,,,,macfarland avenue,sand lane,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515156,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,15:43,MANHATTAN,10014,40.736343,-74.007195,"(40.736343, -74.007195)",,,110 BANK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460839,Sedan,,,, +09/25/2021,15:50,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",108 STREET,34 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460990,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,11:24,BROOKLYN,11210,40.632565,-73.94664,"(40.632565, -73.94664)",,,777 EAST 31 STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4460909,Sedan,Sedan,,, +09/23/2021,9:00,MANHATTAN,10038,40.709667,-74.0101,"(40.709667, -74.0101)",,,170 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461780,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/25/2021,18:00,QUEENS,11372,40.750145,-73.88045,"(40.750145, -73.88045)",,,86-02 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461747,Sedan,,,, +09/25/2021,14:35,BRONX,10461,40.845306,-73.83114,"(40.845306, -73.83114)",ROBERTS AVENUE,CROSBY AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4461450,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,22:22,BROOKLYN,11217,40.67821,-73.97323,"(40.67821, -73.97323)",,,296 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461363,Sedan,Sedan,,, +09/25/2021,0:05,BROOKLYN,11210,40.632885,-73.94771,"(40.632885, -73.94771)",NOSTRAND AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460657,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,12:15,,,,,,Rockland Ave,Briel Ave,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460887,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,14:00,MANHATTAN,10006,40.709076,-74.01406,"(40.709076, -74.01406)",WASHINGTON STREET,CARLISLE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461786,PK,,,, +09/25/2021,17:00,BRONX,10475,40.889313,-73.82127,"(40.889313, -73.82127)",,,4300 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461106,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,16:45,,,40.606422,-74.0147,"(40.606422, -74.0147)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460932,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,12:00,QUEENS,11435,40.70447,-73.81418,"(40.70447, -73.81418)",,,139-40 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461323,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,13:30,BROOKLYN,11228,40.624474,-74.00668,"(40.624474, -74.00668)",70 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,6:50,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4461658,Bus,,,, +09/25/2021,3:40,,,40.751583,-73.74571,"(40.751583, -73.74571)",WEST ALLEY ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,10:30,BROOKLYN,11204,40.618523,-73.99081,"(40.618523, -73.99081)",66 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460937,Sedan,,,, +04/24/2021,11:34,QUEENS,11419,40.685074,-73.83029,"(40.685074, -73.83029)",112 STREET,LIBERTY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4410232,Sedan,,,, +09/25/2021,17:28,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461447,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,19:30,BRONX,10466,,,,EAST 224 STREET,SCHIEFELIN AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4417261,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +05/16/2021,16:50,BROOKLYN,11233,40.67752,-73.91082,"(40.67752, -73.91082)",ROCKAWAY AVENUE,HERKIMER STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4417992,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,9:50,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4417894,Sedan,Sedan,,, +05/15/2021,11:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417956,Sedan,Sedan,,, +05/14/2021,3:30,BRONX,10451,40.817585,-73.9235,"(40.817585, -73.9235)",,,255 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417971,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,0:58,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4417993,Sedan,Sedan,,, +09/25/2021,23:26,STATEN ISLAND,10305,40.604397,-74.069,"(40.604397, -74.069)",FINGERBOARD ROAD,NARROWS ROAD NORTH,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4461527,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,19:39,BROOKLYN,11236,40.631207,-73.911545,"(40.631207, -73.911545)",PAERDEGAT AVENUE NORTH,PAERDEGAT 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461265,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,2:10,QUEENS,11370,40.758533,-73.8859,"(40.758533, -73.8859)",,,31-43 82 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460686,Sedan,Sedan,,, +05/16/2021,13:26,BROOKLYN,11220,40.632633,-74.01254,"(40.632633, -74.01254)",65 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417079,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,16:13,,,40.84492,-73.90552,"(40.84492, -73.90552)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417242,Ambulance,Sedan,Sedan,, +05/16/2021,13:55,,,40.758904,-73.9012,"(40.758904, -73.9012)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417164,Sedan,Sedan,,, +05/16/2021,19:44,MANHATTAN,10019,40.762165,-73.98002,"(40.762165, -73.98002)",,,126 WEST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417697,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,21:31,BRONX,10468,40.859604,-73.90778,"(40.859604, -73.90778)",WEST 183 STREET,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417652,Sedan,Motorcycle,,, +05/16/2021,1:25,QUEENS,11422,40.6722,-73.734604,"(40.6722, -73.734604)",BROOKVILLE BOULEVARD,135 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4416709,Sedan,,,, +05/16/2021,22:45,QUEENS,11101,40.748276,-73.93918,"(40.748276, -73.93918)",JACKSON AVENUE,42 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417131,Sedan,Sedan,,, +05/16/2021,3:50,BRONX,10462,,,,CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4417341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,10:40,,,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460810,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/16/2021,7:45,MANHATTAN,10012,40.731518,-74.000595,"(40.731518, -74.000595)",,,150 WEST 4 STREET,0,0,0,0,0,0,0,0,,,,,,4417521,,,,, +05/15/2021,21:30,QUEENS,11433,40.696323,-73.79109,"(40.696323, -73.79109)",,,108-10 BREWER BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4417771,Taxi,,,, +05/16/2021,12:50,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417831,Station Wagon/Sport Utility Vehicle,Bus,,, +05/16/2021,0:21,BROOKLYN,11204,40.61913,-73.99019,"(40.61913, -73.99019)",65 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416718,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,18:05,,,40.849247,-73.82739,"(40.849247, -73.82739)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4417198,Sedan,Tractor Truck Diesel,,, +05/15/2021,23:15,MANHATTAN,10019,40.768436,-73.98906,"(40.768436, -73.98906)",WEST 56 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4417695,Sedan,Sedan,Sedan,, +05/16/2021,11:10,STATEN ISLAND,10301,40.6398,-74.082954,"(40.6398, -74.082954)",,,147 BENZIGER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417739,Sedan,,,, +05/16/2021,11:02,STATEN ISLAND,10305,40.58632,-74.07043,"(40.58632, -74.07043)",,,465 CAPODANNO BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4417453,Bus,Sedan,,, +05/16/2021,2:00,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",GRAND CENTRAL PARKWAY,150 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4416743,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,16:38,QUEENS,11004,40.736553,-73.71194,"(40.736553, -73.71194)",256 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417030,Sedan,Sedan,,, +05/16/2021,9:10,,,40.682037,-74.00232,"(40.682037, -74.00232)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417251,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/16/2021,13:40,BRONX,10462,40.83207,-73.84993,"(40.83207, -73.84993)",,,2230 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417346,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,17:00,MANHATTAN,10005,40.705795,-74.00987,"(40.705795, -74.00987)",WILLIAM STREET,EXCHANGE PLACE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4417366,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,13:12,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAPLE AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4416947,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,8:30,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,1:10,BROOKLYN,11232,40.64974,-73.998314,"(40.64974, -73.998314)",37 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417797,,,,, +09/25/2021,22:35,QUEENS,11373,40.740074,-73.871475,"(40.740074, -73.871475)",92 STREET,51 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461000,Sedan,,,, +05/16/2021,13:50,QUEENS,11373,40.74226,-73.868996,"(40.74226, -73.868996)",,,94-43 CORONA AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417271,E-Scooter,,,, +09/25/2021,2:10,MANHATTAN,10014,40.727154,-74.005554,"(40.727154, -74.005554)",VARICK STREET,CHARLTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461765,Sedan,Sedan,,, +04/26/2021,18:30,,,40.83936,-73.87281,"(40.83936, -73.87281)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4417862,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/16/2021,7:45,BROOKLYN,11236,40.63277,-73.89766,"(40.63277, -73.89766)",,,1589 REMSEN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4416914,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/16/2021,2:15,BROOKLYN,11204,40.608795,-73.973175,"(40.608795, -73.973175)",65 STREET,AVENUE P,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4416871,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/15/2021,22:17,BROOKLYN,11230,40.61181,-73.969536,"(40.61181, -73.969536)",AVENUE O,EAST 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417714,Sedan,Sedan,,, +05/16/2021,16:20,QUEENS,11355,40.75194,-73.832306,"(40.75194, -73.832306)",FOWLER AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing Too Closely,,,,4417022,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,1:45,BROOKLYN,11225,40.658234,-73.95791,"(40.658234, -73.95791)",,,143 FENIMORE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416758,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/16/2021,12:30,QUEENS,11413,40.67767,-73.74066,"(40.67767, -73.74066)",229 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417365,Sedan,FIRETRUCK,,, +05/16/2021,7:46,BRONX,10451,40.815113,-73.92978,"(40.815113, -73.92978)",EAST 140 STREET,WALTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417184,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,9:15,BROOKLYN,11207,40.65768,-73.887794,"(40.65768, -73.887794)",STANLEY AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461063,Pick-up Truck,Sedan,,, +05/16/2021,22:00,,,40.68121,-73.773,"(40.68121, -73.773)",171 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417419,Sedan,,,, +05/16/2021,23:33,BRONX,10469,40.879887,-73.85513,"(40.879887, -73.85513)",,,3736 PAULDING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,0:50,QUEENS,11354,40.760254,-73.83493,"(40.760254, -73.83493)",37 AVENUE,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4417384,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/16/2021,7:30,QUEENS,11106,40.76127,-73.92044,"(40.76127, -73.92044)",,,31-55 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416831,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,12:10,QUEENS,11692,40.594944,-73.79637,"(40.594944, -73.79637)",THURSBY AVENUE,BEACH 67 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416982,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,2:00,QUEENS,11418,40.69707,-73.84119,"(40.69707, -73.84119)",,,86-17 107 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417142,Sedan,Sedan,,, +05/15/2021,7:21,BROOKLYN,11234,40.632095,-73.91861,"(40.632095, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417792,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/26/2021,1:45,,,40.67549,-73.93885,"(40.67549, -73.93885)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417884,Sedan,Sedan,,, +05/16/2021,9:00,BROOKLYN,11249,40.71727,-73.96286,"(40.71727, -73.96286)",WYTHE AVENUE,NORTH 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417270,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,15:05,MANHATTAN,10128,40.783936,-73.95235,"(40.783936, -73.95235)",EAST 93 STREET,LEXINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417609,Sedan,Motorcycle,,, +05/13/2021,9:35,BROOKLYN,11234,40.615795,-73.93937,"(40.615795, -73.93937)",AVENUE P,EAST 35 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,11:00,QUEENS,11373,40.7346,-73.86481,"(40.7346, -73.86481)",,,60-08 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417035,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,18:10,,,,,,WILLIAMSBURG STREET WEST,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417855,Sedan,Sedan,,, +05/16/2021,16:20,BROOKLYN,11217,40.687176,-73.98545,"(40.687176, -73.98545)",,,389 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4417101,Sedan,Motorbike,,, +05/11/2021,15:48,BRONX,10462,40.85366,-73.86774,"(40.85366, -73.86774)",WHITE PLAINS ROAD,MARAN PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417720,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,7:30,,,40.600735,-73.98218,"(40.600735, -73.98218)",AVENUE S,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416893,Sedan,,,, +05/16/2021,20:38,,,40.729168,-74.0012,"(40.729168, -74.0012)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417512,Sedan,Sedan,,, +05/16/2021,0:15,QUEENS,11372,40.750885,-73.87144,"(40.750885, -73.87144)",,,37-69 WARREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417301,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,1:28,MANHATTAN,10037,40.810207,-73.93951,"(40.810207, -73.93951)",5 AVENUE,EAST 131 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417353,Sedan,,,, +05/15/2021,20:20,,,40.610256,-74.0973,"(40.610256, -74.0973)",CLOVE ROAD,EMERSON DRIVE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,22:25,,,40.69782,-73.927826,"(40.69782, -73.927826)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4417493,Sedan,,,, +05/14/2021,23:54,QUEENS,11101,40.756687,-73.94455,"(40.756687, -73.94455)",,,40-15 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417704,Sedan,Sedan,,, +05/16/2021,17:53,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4417171,Sedan,Sedan,,, +05/16/2021,21:00,QUEENS,11691,40.59512,-73.751595,"(40.59512, -73.751595)",,,17-39 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4417664,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,2:00,BROOKLYN,11226,40.648643,-73.959694,"(40.648643, -73.959694)",,,240 EAST 21 STREET,0,0,0,0,0,0,0,0,,,,,,4417201,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:51,QUEENS,11358,40.755955,-73.798935,"(40.755955, -73.798935)",45 AVENUE,168 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417120,Bike,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,3:20,,,40.6775,-73.94701,"(40.6775, -73.94701)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461120,Sedan,Sedan,,, +05/16/2021,20:20,QUEENS,11368,40.751713,-73.85535,"(40.751713, -73.85535)",,,111-36 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4417260,Station Wagon/Sport Utility Vehicle,Bike,,, +05/13/2021,15:20,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4417788,Sedan,Sedan,,, +05/16/2021,18:40,QUEENS,11004,40.745052,-73.71022,"(40.745052, -73.71022)",80 AVENUE,261 STREET,,5,0,0,0,0,0,5,0,Alcohol Involvement,,,,,4417051,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,15:00,BRONX,10463,40.88258,-73.889984,"(40.88258, -73.889984)",,,3965 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417550,Sedan,,,, +05/12/2021,20:30,STATEN ISLAND,10301,40.639015,-74.08745,"(40.639015, -74.08745)",,,382 JERSEY STREET,2,0,0,0,0,0,2,0,Turning Improperly,,,,,4417812,Sedan,,,, +05/16/2021,15:00,BROOKLYN,11208,40.666183,-73.86866,"(40.666183, -73.86866)",,,773 PINE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417234,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,5:45,,,40.70083,-73.82635,"(40.70083, -73.82635)",124 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417132,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,15:25,BROOKLYN,11207,40.671165,-73.895676,"(40.671165, -73.895676)",,,265 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417235,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,18:45,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4417191,Sedan,Sedan,,, +05/15/2021,18:25,MANHATTAN,10019,,,,WEST 55 STREET,12 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417690,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,3:00,QUEENS,11413,40.674923,-73.73694,"(40.674923, -73.73694)",MERRICK BOULEVARD,233 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4416710,Sedan,,,, +04/26/2021,15:24,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417735,Sedan,Taxi,,, +03/29/2021,12:31,,,40.666275,-73.93415,"(40.666275, -73.93415)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417848,Sedan,,,, +05/16/2021,11:25,BROOKLYN,11203,40.650486,-73.92425,"(40.650486, -73.92425)",,,5611 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417090,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,16:00,BROOKLYN,11226,40.652706,-73.94873,"(40.652706, -73.94873)",,,275 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4417480,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/16/2021,13:20,BROOKLYN,11203,40.661808,-73.93533,"(40.661808, -73.93533)",,,761 MAPLE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417830,Sedan,,,, +05/13/2021,14:00,MANHATTAN,10006,40.70983,-74.01468,"(40.70983, -74.01468)",WEST STREET,ALBANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417811,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,17:28,,,0,0,"(0.0, 0.0)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4417650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,2:25,QUEENS,11429,40.71172,-73.746284,"(40.71172, -73.746284)",212 STREET,104 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4416728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/15/2021,10:20,,,,,,BOSTON ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417696,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,17:18,MANHATTAN,10024,40.785065,-73.97489,"(40.785065, -73.97489)",,,142 WEST 83 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417048,Sedan,Sedan,,, +05/16/2021,12:25,,,40.703316,-74.007774,"(40.703316, -74.007774)",SOUTH STREET,OLD SLIP,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,18:36,STATEN ISLAND,10301,40.616734,-74.1028,"(40.616734, -74.1028)",,,1164 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417740,Sedan,,,, +05/16/2021,17:45,BROOKLYN,11236,40.64856,-73.90535,"(40.64856, -73.90535)",ROCKAWAY AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417123,Sedan,moped,,, +05/16/2021,23:45,,,,,,horace harding expressway,college point boulevard,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417451,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:20,MANHATTAN,10001,40.752052,-74.000984,"(40.752052, -74.000984)",WEST 30 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417528,Sedan,Sedan,,, +05/16/2021,15:56,,,40.76496,-73.90532,"(40.76496, -73.90532)",25 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417165,Sedan,Sedan,,, +05/16/2021,19:35,BROOKLYN,11213,40.671337,-73.9448,"(40.671337, -73.9448)",BROOKLYN AVENUE,SAINT JOHNS PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417895,Sedan,,,, +05/10/2021,9:10,MANHATTAN,10017,40.754684,-73.9797,"(40.754684, -73.9797)",,,535 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417823,Sedan,,,, +05/12/2021,21:12,BROOKLYN,11219,40.63275,-74.00348,"(40.63275, -74.00348)",,,1048 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417717,Station Wagon/Sport Utility Vehicle,Van,,, +05/16/2021,22:00,BROOKLYN,11226,40.64242,-73.961754,"(40.64242, -73.961754)",EAST 18 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418001,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,10:00,QUEENS,11434,0,0,"(0.0, 0.0)",,,167-02 BAISLEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4416892,Chassis Cab,,,, +05/16/2021,1:55,,,40.66503,-73.81863,"(40.66503, -73.81863)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416915,Sedan,Sedan,,, +05/16/2021,14:25,,,40.815685,-73.9583,"(40.815685, -73.9583)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417288,Sedan,Sedan,,, +05/02/2021,16:30,MANHATTAN,10001,40.74931,-73.98456,"(40.74931, -73.98456)",,,372 5 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4417818,Sedan,Bike,,, +05/16/2021,13:30,,,40.637096,-74.03742,"(40.637096, -74.03742)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417080,Sedan,,,, +05/16/2021,11:00,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",ALBEMARLE ROAD,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417414,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,19:00,,,40.84698,-73.91065,"(40.84698, -73.91065)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417767,Sedan,,,, +05/16/2021,2:10,,,40.7699,-73.91608,"(40.7699, -73.91608)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4416833,Sedan,,,, +05/16/2021,0:15,BROOKLYN,11207,40.67244,-73.89702,"(40.67244, -73.89702)",,,197 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417239,Sedan,,,, +05/16/2021,14:10,,,40.70904,-73.84146,"(40.70904, -73.84146)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417312,Sedan,Motorcycle,Sedan,, +05/16/2021,1:37,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416907,Sedan,Sedan,,, +05/16/2021,7:00,QUEENS,11427,40.722927,-73.75346,"(40.722927, -73.75346)",89 AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417135,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,18:30,BRONX,10458,40.863255,-73.89512,"(40.863255, -73.89512)",,,2540 VALENTINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417623,Ambulance,,,, +04/20/2021,8:57,QUEENS,11103,40.7607,-73.91762,"(40.7607, -73.91762)",,,31-14 STEINWAY STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417703,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,11:00,QUEENS,11436,40.679096,-73.79822,"(40.679096, -73.79822)",143 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417420,Sedan,,,, +05/16/2021,16:45,QUEENS,11354,40.769722,-73.83473,"(40.769722, -73.83473)",,,30-25 STRATTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417065,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,22:21,BRONX,10456,40.8325,-73.9044,"(40.8325, -73.9044)",,,540 EAST 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417150,Box Truck,Sedan,,, +05/14/2021,17:25,,,40.671925,-73.939186,"(40.671925, -73.939186)",ALBANY AVENUE,,,3,0,0,0,0,0,3,0,Obstruction/Debris,Following Too Closely,Following Too Closely,,,4417889,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/25/2021,23:13,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461154,Bus,Sedan,Sedan,, +05/15/2021,9:10,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417793,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,12:54,QUEENS,11361,,,,203RD STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417564,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,21:30,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4417857,Sedan,Station Wagon/Sport Utility Vehicle,Ambulance,, +05/16/2021,18:30,BROOKLYN,11222,40.727757,-73.94186,"(40.727757, -73.94186)",,,268 NORMAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417278,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,1:10,QUEENS,11423,40.717022,-73.7745,"(40.717022, -73.7745)",,,87-25 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4416741,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,11:10,STATEN ISLAND,10301,40.6398,-74.082954,"(40.6398, -74.082954)",,,147 BENZIGER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417379,Sedan,,,, +05/16/2021,16:50,MANHATTAN,10010,40.739506,-73.98476,"(40.739506, -73.98476)",EAST 23 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417023,Sedan,,,, +05/16/2021,4:10,BRONX,10462,,,,CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417340,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,10:45,BROOKLYN,11226,40.643326,-73.94759,"(40.643326, -73.94759)",,,3111 CLARENDON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4460787,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,1:34,BRONX,10455,40.812046,-73.910255,"(40.812046, -73.910255)",,,500 TRINITY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4417183,,,,, +05/11/2021,14:40,,,40.677483,-73.93033,"(40.677483, -73.93033)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417887,Bus,E-Bike,,, +05/16/2021,6:00,BROOKLYN,11218,40.638832,-73.97654,"(40.638832, -73.97654)",,,547 EAST 3 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4417713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,4:00,BROOKLYN,11208,40.6864,-73.87541,"(40.6864, -73.87541)",,,225 ETNA STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4417214,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/16/2021,13:16,BROOKLYN,11220,40.63007,-74.01446,"(40.63007, -74.01446)",,,808 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417566,Sedan,Sedan,,, +05/15/2021,19:20,MANHATTAN,10016,40.74409,-73.97636,"(40.74409, -73.97636)",2 AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417954,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/16/2021,10:04,BRONX,10463,40.883987,-73.89638,"(40.883987, -73.89638)",,,3855 ORLOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417100,Sedan,,,, +05/16/2021,9:05,BRONX,10462,40.84,-73.851364,"(40.84, -73.851364)",,,1709 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417415,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/16/2021,20:20,,,40.69666,-73.93109,"(40.69666, -73.93109)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417495,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,18:00,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4417149,Sedan,Motorcycle,,, +05/16/2021,6:00,BRONX,10472,40.82886,-73.86185,"(40.82886, -73.86185)",,,1116 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417345,Sedan,,,, +05/16/2021,4:00,BROOKLYN,11226,40.64425,-73.96114,"(40.64425, -73.96114)",,,214 EAST 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416756,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,10:00,BROOKLYN,11207,40.67677,-73.88949,"(40.67677, -73.88949)",SCHENCK AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417231,Sedan,,,, +05/16/2021,11:45,,,40.788303,-73.81699,"(40.788303, -73.81699)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4416945,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,13:00,BROOKLYN,11208,40.675404,-73.87192,"(40.675404, -73.87192)",PITKIN AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4417236,Sedan,Motorcycle,,, +05/16/2021,14:00,BROOKLYN,11210,40.636776,-73.94615,"(40.636776, -73.94615)",,,585 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417088,Sedan,,,, +05/16/2021,3:55,BROOKLYN,11207,40.67099,-73.88802,"(40.67099, -73.88802)",,,400 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417230,Sedan,,,, +03/13/2021,1:00,MANHATTAN,10022,40.76161,-73.97076,"(40.76161, -73.97076)",PARK AVENUE,EAST 57 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417968,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,11:30,,,40.696117,-73.905014,"(40.696117, -73.905014)",WYCKOFF AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4417663,Sedan,,,, +05/16/2021,16:00,MANHATTAN,10030,40.818222,-73.93884,"(40.818222, -73.93884)",,,117 WEST 141 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417170,Sedan,,,, +05/15/2021,12:45,,,40.767185,-73.98997,"(40.767185, -73.98997)",10 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417692,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/16/2021,2:10,BROOKLYN,11206,40.70191,-73.93699,"(40.70191, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416713,Sedan,,,, +05/02/2021,19:38,MANHATTAN,10009,40.722073,-73.97592,"(40.722073, -73.97592)",,,888 EAST 6 STREET,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4417736,Sedan,Sedan,,, +05/16/2021,15:40,,,40.70722,-73.78957,"(40.70722, -73.78957)",JAMAICA AVENUE,170 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4417476,Station Wagon/Sport Utility Vehicle,Moped,,, +04/28/2021,8:15,BROOKLYN,11236,40.642002,-73.898834,"(40.642002, -73.898834)",ROCKAWAY PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4417842,Station Wagon/Sport Utility Vehicle,Bus,,, +05/11/2021,14:02,MANHATTAN,10001,40.74724,-73.99143,"(40.74724, -73.99143)",,,147 WEST 29 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417819,Bike,Taxi,,, +05/16/2021,23:00,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4417320,Taxi,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +05/16/2021,11:40,MANHATTAN,10001,40.753525,-73.994545,"(40.753525, -73.994545)",,,357 WEST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,3:10,QUEENS,11417,40.678173,-73.85749,"(40.678173, -73.85749)",GLENMORE AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4416909,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/16/2021,19:18,BRONX,10457,40.846394,-73.89137,"(40.846394, -73.89137)",,,1980 BELMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417262,Sedan,Bike,,, +05/16/2021,12:10,,,40.627827,-73.89021,"(40.627827, -73.89021)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417730,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,13:15,BROOKLYN,11210,40.635494,-73.94603,"(40.635494, -73.94603)",,,634 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416967,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,20:48,BROOKLYN,11214,40.59521,-73.99239,"(40.59521, -73.99239)",BAY 37 STREET,BATH AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4417291,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/23/2021,19:25,BROOKLYN,11234,40.622658,-73.93641,"(40.622658, -73.93641)",,,3860 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417787,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,9:40,BROOKLYN,11212,40.667027,-73.911026,"(40.667027, -73.911026)",SUTTER AVENUE,CHESTER STREET,,1,0,0,0,0,0,1,0,Steering Failure,Driver Inattention/Distraction,Unspecified,Unspecified,,4417059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/16/2021,14:37,MANHATTAN,10029,40.794968,-73.93294,"(40.794968, -73.93294)",,,501 EAST 116 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417357,Taxi,Sedan,,, +05/10/2021,11:45,MANHATTAN,10018,40.75495,-73.99145,"(40.75495, -73.99145)",,,580 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417816,Sedan,Sedan,,, +05/16/2021,4:15,,,,,,LAURELTON PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416800,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,14:18,BROOKLYN,11211,40.714214,-73.94773,"(40.714214, -73.94773)",LEONARD STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417263,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,14:30,BRONX,10473,40.825912,-73.857124,"(40.825912, -73.857124)",,,1994 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417350,Sedan,,,, +05/16/2021,21:00,BROOKLYN,11207,40.66701,-73.9004,"(40.66701, -73.9004)",SNEDIKER AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417396,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,8:16,QUEENS,11101,40.753998,-73.94244,"(40.753998, -73.94244)",21 STREET,41 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4416834,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,10:25,,,40.792435,-73.934265,"(40.792435, -73.934265)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4416962,Sedan,Sedan,,, +05/14/2021,0:47,BROOKLYN,11234,40.621357,-73.92714,"(40.621357, -73.92714)",UTICA AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417795,Sedan,Sedan,Sedan,, +05/14/2021,13:45,STATEN ISLAND,10304,40.62016,-74.076965,"(40.62016, -74.076965)",VANDERBILT AVENUE,TOMPKINS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,4417810,Sedan,Bike,Station Wagon/Sport Utility Vehicle,Bus, +05/16/2021,6:28,QUEENS,11385,40.708637,-73.91127,"(40.708637, -73.91127)",,,1923 HIMROD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417039,Sedan,,,, +05/16/2021,6:45,BRONX,10452,40.84065,-73.91902,"(40.84065, -73.91902)",WEST 170 STREET,INWOOD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417195,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,3:32,BROOKLYN,11203,40.65315,-73.94117,"(40.65315, -73.94117)",EAST 39 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/15/2021,15:00,BROOKLYN,11230,40.623188,-73.9689,"(40.623188, -73.9689)",,,1140 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417716,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,5:00,,,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4416873,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/14/2021,20:25,,,40.71154,-73.83624,"(40.71154, -73.83624)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4486532,Sedan,Sedan,,, +05/16/2021,0:45,BROOKLYN,11230,40.624893,-73.96394,"(40.624893, -73.96394)",,,1214 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416754,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,12:30,MANHATTAN,10002,40.717926,-73.98568,"(40.717926, -73.98568)",DELANCEY STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,15:00,BROOKLYN,11225,40.657677,-73.96235,"(40.657677, -73.96235)",,,150 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417849,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/16/2021,1:00,BRONX,10453,40.853336,-73.9196,"(40.853336, -73.9196)",WEST TREMONT AVENUE,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417254,Motorbike,Sedan,,, +05/16/2021,16:20,,,40.692097,-73.988976,"(40.692097, -73.988976)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4416998,4 dr sedan,Bus,,, +05/14/2021,17:30,,,40.715763,-73.74654,"(40.715763, -73.74654)",JAMAICA AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417897,Sedan,Bus,,, +05/16/2021,16:05,QUEENS,11691,40.60822,-73.750496,"(40.60822, -73.750496)",,,13-29 BRUNSWICK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4417662,Bus,Dump,,, +05/16/2021,14:00,MANHATTAN,10035,40.799984,-73.94275,"(40.799984, -73.94275)",EAST 117 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417359,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/16/2021,10:30,QUEENS,11365,40.7381,-73.80364,"(40.7381, -73.80364)",HORACE HARDING EXPRESSWAY,165 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418011,Bus,,,, +05/16/2021,15:10,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417126,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:02,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4417287,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,22:50,QUEENS,11355,40.74957,-73.817474,"(40.74957, -73.817474)",,,140-30 LABURNUM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,10:00,BRONX,10473,40.82229,-73.85617,"(40.82229, -73.85617)",,,1980 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417344,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,1:00,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417187,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,16:01,MANHATTAN,10011,40.745293,-73.9985,"(40.745293, -73.9985)",WEST 23 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417527,Sedan,Motorcycle,,, +05/13/2021,17:26,BRONX,10461,40.85582,-73.84006,"(40.85582, -73.84006)",,,1634 STILLWELL AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4417756,Sedan,Ambulance,,, +05/16/2021,12:46,MANHATTAN,10032,40.84215,-73.94228,"(40.84215, -73.94228)",FORT WASHINGTON AVENUE,WEST 168 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417117,Station Wagon/Sport Utility Vehicle,Bike,,, +05/16/2021,21:25,BROOKLYN,11225,40.66487,-73.95375,"(40.66487, -73.95375)",,,345 ROGERS AVENUE,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4417093,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:50,QUEENS,11368,,,,99 STREET,60 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4417632,Sedan,,,, +05/16/2021,4:05,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4416731,Sedan,,,, +05/15/2021,18:35,MANHATTAN,10036,40.756767,-73.98272,"(40.756767, -73.98272)",WEST 45 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417693,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,19:05,,,40.62459,-74.15895,"(40.62459, -74.15895)",WILCOX STREET,DOREEN DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417859,Sedan,Motorcycle,,, +05/16/2021,11:20,QUEENS,11422,40.66979,-73.731995,"(40.66979, -73.731995)",136 AVENUE,244 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416917,Pick-up Truck,,,, +05/16/2021,1:50,QUEENS,11420,40.68083,-73.827194,"(40.68083, -73.827194)",109 AVENUE,113 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4417151,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/16/2021,5:30,MANHATTAN,10036,40.757908,-73.9893,"(40.757908, -73.9893)",8 AVENUE,WEST 43 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417824,Sedan,Sedan,,, +05/14/2021,20:26,BROOKLYN,11222,40.720795,-73.94496,"(40.720795, -73.94496)",MC GUINNESS BLVD SOUTH,BAYARD STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4417741,Pick-up Truck,Sedan,,, +05/16/2021,21:00,BROOKLYN,11203,40.650948,-73.94668,"(40.650948, -73.94668)",CHURCH AVENUE,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417484,Sedan,Motorbike,,, +05/14/2021,17:32,MANHATTAN,10128,40.78357,-73.94759,"(40.78357, -73.94759)",EAST 95 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417979,Sedan,Sedan,,, +05/16/2021,16:52,,,40.76623,-73.915306,"(40.76623, -73.915306)",,,37 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4417166,Sedan,Bike,,, +05/14/2021,13:00,BROOKLYN,11203,40.650406,-73.9254,"(40.650406, -73.9254)",SNYDER AVENUE,EAST 55 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417880,,,,, +05/16/2021,16:00,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417244,Sedan,Sedan,,, +05/16/2021,7:00,BRONX,10461,40.845524,-73.85251,"(40.845524, -73.85251)",,,1035 PIERCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417502,Sedan,Sedan,,, +05/16/2021,16:20,QUEENS,11422,40.66492,-73.73504,"(40.66492, -73.73504)",FRANCIS LEWIS BOULEVARD,245 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417134,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,0:30,,,40.642666,-74.02001,"(40.642666, -74.02001)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417069,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,15:20,,,,,,1 RUPPERT PLACE,EAST 161 STREET,,1,0,1,0,0,0,0,0,,,,,,4417667,Motorbike,,,, +05/07/2021,7:35,,,40.755516,-73.98363,"(40.755516, -73.98363)",WEST 43 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417701,Van,Box Truck,,, +05/16/2021,0:17,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4417275,Taxi,,,, +05/16/2021,12:20,QUEENS,11434,40.679653,-73.77724,"(40.679653, -73.77724)",BAISLEY BOULEVARD,166 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4417424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,1:45,BRONX,10454,40.80213,-73.9073,"(40.80213, -73.9073)",EAST 138 STREET,LOCUST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,7:39,,,40.669857,-73.95051,"(40.669857, -73.95051)",EASTERN PARKWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4417890,Sedan,Bike,,, +05/16/2021,12:14,BROOKLYN,11207,40.66006,-73.89707,"(40.66006, -73.89707)",,,238 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417232,Sedan,,,, +05/16/2021,17:22,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",RALPH AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4417784,Motorcycle,,,, +05/16/2021,19:00,QUEENS,11427,40.72994,-73.74481,"(40.72994, -73.74481)",SPRINGFIELD BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417558,Sedan,,,, +05/08/2021,2:30,,,40.66235,-73.95082,"(40.66235, -73.95082)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4417829,Sedan,,,, +05/16/2021,16:12,MANHATTAN,10013,40.71825,-73.996864,"(40.71825, -73.996864)",,,124 MOTT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417237,Sedan,Sedan,,, +09/25/2021,11:45,BROOKLYN,11212,40.661686,-73.92211,"(40.661686, -73.92211)",,,193 EAST 96 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460753,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/16/2021,15:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417568,Sedan,Sedan,,, +09/06/2021,19:29,QUEENS,11372,40.75191,-73.89324,"(40.75191, -73.89324)",,,34-14 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461589,Sedan,,,, +05/16/2021,2:00,QUEENS,11374,40.73345,-73.86421,"(40.73345, -73.86421)",,,61-10 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416714,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,22:05,STATEN ISLAND,10304,40.628242,-74.08336,"(40.628242, -74.08336)",,,417 SAINT PAULS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4417737,Sedan,Sedan,Sedan,, +05/16/2021,14:59,BRONX,10467,40.869995,-73.86337,"(40.869995, -73.86337)",,,3016 BARNES AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4417671,Pick-up Truck,Sedan,,, +05/16/2021,20:13,,,40.751457,-73.978165,"(40.751457, -73.978165)",EAST 41 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417107,Sedan,Bus,,, +05/16/2021,0:15,BRONX,10473,40.81963,-73.87614,"(40.81963, -73.87614)",LAFAYETTE AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4417336,Sedan,Sedan,,, +05/16/2021,5:55,QUEENS,11104,40.745117,-73.92021,"(40.745117, -73.92021)",43 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4416911,Sedan,,,, +05/16/2021,11:30,QUEENS,11419,40.68453,-73.82129,"(40.68453, -73.82129)",,,107-33 121 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4417293,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +05/15/2021,2:00,QUEENS,11105,40.781574,-73.9136,"(40.781574, -73.9136)",21 AVENUE,23 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4417708,Sedan,Bike,,, +05/16/2021,2:12,BROOKLYN,11207,40.685795,-73.911644,"(40.685795, -73.911644)",SCHAEFER STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417486,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,21:00,BRONX,10460,,,,SHERIDAN EXPRESSWAY,EAST 177 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Brakes Defective,Unspecified,,,4417186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/16/2021,13:52,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4417960,Pick-up Truck,Sedan,Sedan,Sedan, +05/16/2021,12:25,BRONX,10466,40.884727,-73.84897,"(40.884727, -73.84897)",,,3989 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417206,Sedan,Pick-up Truck,,, +05/16/2021,8:59,BRONX,10465,40.82378,-73.836426,"(40.82378, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4417416,Sedan,,,, +05/16/2021,17:00,BROOKLYN,11249,40.72209,-73.957146,"(40.72209, -73.957146)",,,107 NORTH 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,15:02,BROOKLYN,11226,40.650562,-73.96006,"(40.650562, -73.96006)",,,172 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416996,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,0:18,,,40.842968,-73.90773,"(40.842968, -73.90773)",EAST MOUNT EDEN AVENUE,WEEKS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417054,Sedan,,,, +05/09/2021,19:30,MANHATTAN,10018,40.75495,-73.990265,"(40.75495, -73.990265)",,,275 WEST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417815,Sedan,Sedan,,, +05/16/2021,0:48,QUEENS,11411,40.684322,-73.7296,"(40.684322, -73.7296)",236 STREET,121 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/16/2021,17:00,BRONX,10468,,,,,,131 W Kingsbridge Rd,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461649,Sedan,,,, +07/24/2021,7:00,BROOKLYN,11221,40.68676,-73.9358,"(40.68676, -73.9358)",,,267 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461683,Sedan,,,, +05/16/2021,20:20,QUEENS,11419,40.68971,-73.826866,"(40.68971, -73.826866)",118 STREET,101 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4417148,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +05/09/2021,21:33,,,40.677845,-73.95282,"(40.677845, -73.95282)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4417886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,12:00,QUEENS,11421,40.693954,-73.84933,"(40.693954, -73.84933)",,,87-69 96 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417728,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,23:51,BROOKLYN,11236,40.631104,-73.907936,"(40.631104, -73.907936)",,,1169 EAST 80 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4417837,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/16/2021,10:15,,,40.732937,-73.920395,"(40.732937, -73.920395)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417002,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,10:45,BROOKLYN,11233,40.675446,-73.92152,"(40.675446, -73.92152)",,,719 KINGSBOROUGH 7 WALK,0,0,0,0,0,0,0,0,Unspecified,,,,,4417070,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,17:41,,,40.685646,-73.80324,"(40.685646, -73.80324)",141 STREET,,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417429,Sedan,Sedan,,, +09/25/2021,13:15,BROOKLYN,11226,40.65474,-73.95628,"(40.65474, -73.95628)",,,2042 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4460779,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/16/2021,10:00,QUEENS,11434,40.687237,-73.7651,"(40.687237, -73.7651)",179 STREET,119 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417351,Sedan,Pick-up Truck,,, +05/16/2021,17:05,MANHATTAN,10035,40.797962,-73.937065,"(40.797962, -73.937065)",,,2288 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,22:30,BROOKLYN,11213,40.668495,-73.925606,"(40.668495, -73.925606)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417891,Sedan,,,, +05/16/2021,0:46,BRONX,10463,40.871956,-73.90445,"(40.871956, -73.90445)",,,212 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416775,Sedan,Sedan,,, +05/16/2021,0:20,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417229,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,16:03,QUEENS,11694,40.58037,-73.8352,"(40.58037, -73.8352)",,,113-73 ROCKAWAY BEACH BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417934,Sedan,Van,,, +05/16/2021,12:02,QUEENS,11413,40.67767,-73.74066,"(40.67767, -73.74066)",229 STREET,133 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4416899,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,21:00,QUEENS,11432,40.71421,-73.794205,"(40.71421, -73.794205)",170 STREET,GOTHIC DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417915,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:33,BRONX,10466,40.892754,-73.85774,"(40.892754, -73.85774)",WHITE PLAINS ROAD,EAST 232 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417274,Sedan,,,, +05/16/2021,2:45,,,40.646328,-73.91276,"(40.646328, -73.91276)",REMSEN AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416746,Sedan,,,, +05/16/2021,3:20,BROOKLYN,11233,40.68308,-73.91928,"(40.68308, -73.91928)",,,591 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4417085,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/16/2021,17:54,QUEENS,11434,40.6707,-73.77366,"(40.6707, -73.77366)",BREWER BOULEVARD,140 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417349,Sedan,Motorcycle,,, +05/15/2021,20:20,QUEENS,11372,40.747692,-73.89381,"(40.747692, -73.89381)",BROADWAY,72 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417850,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,13:50,BROOKLYN,11231,40.677547,-73.99138,"(40.677547, -73.99138)",2 STREET,BOND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417253,Sedan,Sedan,,, +05/16/2021,7:00,BROOKLYN,11203,40.639996,-73.94261,"(40.639996, -73.94261)",,,1357 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4416961,Sedan,,,, +05/16/2021,23:00,MANHATTAN,10019,40.76542,-73.98383,"(40.76542, -73.98383)",8 AVENUE,WEST 55 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4417698,Sedan,Sedan,,, +05/16/2021,22:00,,,40.74766,-73.86346,"(40.74766, -73.86346)",NATIONAL STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4417634,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,12:21,BROOKLYN,11235,40.585934,-73.9519,"(40.585934, -73.9519)",SHEEPSHEAD BAY ROAD,VOORHIES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417153,Sedan,,,, +05/16/2021,19:55,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,12:45,STATEN ISLAND,10304,40.599136,-74.09937,"(40.599136, -74.09937)",OLD FARMERS LANE,RIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417454,SHUTTLE BU,FIRE TRUCK,,, +05/16/2021,16:00,,,40.726524,-73.99585,"(40.726524, -73.99585)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417524,Sedan,Ambulance,,, +05/16/2021,19:10,,,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4417169,Taxi,,,, +05/15/2021,23:15,,,40.588924,-74.167625,"(40.588924, -74.167625)",RICHMOND AVENUE,RICHMOND HILL ROAD,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inattention/Distraction,,,,4417860,Convertible,Sedan,,, +05/16/2021,10:38,STATEN ISLAND,10307,40.49971,-74.23892,"(40.49971, -74.23892)",,,714 ROCKAWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4416927,Sedan,,,, +04/19/2021,22:15,BROOKLYN,11213,40.66928,-73.94013,"(40.66928, -73.94013)",,,860 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,1:39,BRONX,10475,40.875965,-73.83581,"(40.875965, -73.83581)",BAYCHESTER AVENUE,EAST 222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416872,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,16:28,BROOKLYN,11218,40.64134,-73.981445,"(40.64134, -73.981445)",,,1406 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417715,Box Truck,,,, +05/16/2021,17:25,BRONX,10474,40.816788,-73.88709,"(40.816788, -73.88709)",LAFAYETTE AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417286,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/10/2021,19:08,STATEN ISLAND,10309,40.53691,-74.22503,"(40.53691, -74.22503)",SHARROTTS ROAD,VETERANS ROAD WEST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418021,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,7:48,QUEENS,11354,40.763958,-73.82814,"(40.763958, -73.82814)",NORTHERN BOULEVARD,UNION STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4417371,Sedan,Sedan,,, +05/16/2021,14:20,QUEENS,11422,40.677845,-73.729744,"(40.677845, -73.729744)",BROOKVILLE BOULEVARD,130 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417029,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,9:50,BRONX,10455,40.819885,-73.91477,"(40.819885, -73.91477)",,,441 EAST 155 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,9:40,,,40.82383,-73.87624,"(40.82383, -73.87624)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417342,Pick-up Truck,,,, +05/16/2021,4:00,BROOKLYN,11217,40.68459,-73.989136,"(40.68459, -73.989136)",WARREN STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4417243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,4:06,BRONX,10467,40.882233,-73.8602,"(40.882233, -73.8602)",,,3767 BARNES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4416869,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/16/2021,3:10,,,40.666225,-73.80086,"(40.666225, -73.80086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4416732,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,19:53,,,40.765392,-73.9182,"(40.765392, -73.9182)",30 AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4417092,Station Wagon/Sport Utility Vehicle,Bike,,, +05/13/2021,22:30,BROOKLYN,11203,40.653324,-73.93829,"(40.653324, -73.93829)",LINDEN BOULEVARD,EAST 42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,10:50,BRONX,10461,40.841995,-73.84692,"(40.841995, -73.84692)",,,2552 SAINT RAYMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417197,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/16/2021,15:00,QUEENS,11368,40.749264,-73.86847,"(40.749264, -73.86847)",ROOSEVELT AVENUE,97 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4417036,Station Wagon/Sport Utility Vehicle,Bike,,, +05/16/2021,14:30,,,40.597706,-73.784805,"(40.597706, -73.784805)",BEACH 54 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4417660,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:40,,,40.762234,-73.98987,"(40.762234, -73.98987)",9 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417694,Box Truck,Taxi,,, +05/16/2021,0:30,BROOKLYN,11236,40.652626,-73.91066,"(40.652626, -73.91066)",,,677 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4417482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,11:50,STATEN ISLAND,10301,40.613552,-74.10069,"(40.613552, -74.10069)",CLOVE ROAD,OSWEGO STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4417748,Sedan,Motorbike,,, +05/12/2021,18:30,,,40.582382,-73.9837,"(40.582382, -73.9837)",WEST 15 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417981,Sedan,,,, +05/16/2021,21:20,BROOKLYN,11221,40.687496,-73.93297,"(40.687496, -73.93297)",MONROE STREET,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417118,Sedan,,,, +05/16/2021,2:09,BRONX,10469,40.867702,-73.856514,"(40.867702, -73.856514)",,,1077 ARNOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417504,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,16:06,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417796,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,21:00,QUEENS,11368,40.74353,-73.85403,"(40.74353, -73.85403)",,,108-18 52 AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4417266,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +05/05/2021,20:35,,,40.7517,-73.986404,"(40.7517, -73.986404)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417821,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/11/2021,17:55,BROOKLYN,11212,40.664726,-73.92413,"(40.664726, -73.92413)",,,71 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4417853,Sedan,,,, +05/16/2021,11:35,QUEENS,11377,40.742683,-73.89566,"(40.742683, -73.89566)",WOODSIDE AVENUE,69 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4416912,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,0:15,,,,,,CROSS BRONX EXPRESSWAY,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417338,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,10:20,BROOKLYN,11209,40.631462,-74.0278,"(40.631462, -74.0278)",BAY RIDGE PARKWAY,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460757,Station Wagon/Sport Utility Vehicle,Van,,, +05/16/2021,16:50,MANHATTAN,10027,40.803772,-73.945915,"(40.803772, -73.945915)",,,42 WEST 120 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,11:21,QUEENS,11367,40.72508,-73.82099,"(40.72508, -73.82099)",,,72-72 MAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416895,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,1:11,,,40.807087,-73.94178,"(40.807087, -73.94178)",WEST 126 STREET,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4417019,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,14:01,,,40.64385,-73.87576,"(40.64385, -73.87576)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417395,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,13:53,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4417362,Sedan,Sedan,Sedan,, +05/16/2021,0:48,,,40.779747,-73.915825,"(40.779747, -73.915825)",23 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4416830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,23:10,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417754,Sedan,Sedan,,, +04/22/2021,18:30,BROOKLYN,11225,40.661053,-73.959114,"(40.661053, -73.959114)",,,101 LINCOLN ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417828,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:00,,,40.699436,-73.91229,"(40.699436, -73.91229)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4417489,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,22:00,BRONX,10466,40.89538,-73.85227,"(40.89538, -73.85227)",,,4309 DIGNEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461506,Sedan,,,, +05/16/2021,2:15,BRONX,10455,40.81286,-73.909225,"(40.81286, -73.909225)",,,535 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417175,Van,Sedan,Sedan,, +05/15/2021,17:02,BRONX,10457,40.843777,-73.90947,"(40.843777, -73.90947)",MORRIS AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4417666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,3:10,MANHATTAN,10006,40.70777,-74.01297,"(40.70777, -74.01297)",TRINITY PLACE,RECTOR STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417689,Sedan,Sedan,,, +05/16/2021,0:10,,,40.7238,-73.8367,"(40.7238, -73.8367)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4416715,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,10:00,MANHATTAN,10018,40.754944,-73.99218,"(40.754944, -73.99218)",,,307 WEST 38 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417814,Sedan,Sedan,,, +05/16/2021,13:39,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417217,Sedan,Sedan,,, +05/16/2021,21:29,BROOKLYN,11208,40.664074,-73.86052,"(40.664074, -73.86052)",,,1050 FORBELL STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4417238,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck +05/11/2021,20:30,MANHATTAN,10016,40.73993,-73.972626,"(40.73993, -73.972626)",,,500 EAST 30 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417958,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:55,BRONX,10466,40.889072,-73.85979,"(40.889072, -73.85979)",,,4021 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417738,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,11:10,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417106,Sedan,Sedan,,, +05/16/2021,10:29,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417417,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/16/2021,5:35,BRONX,10468,40.863457,-73.90055,"(40.863457, -73.90055)",,,2487 JEROME AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4417145,Sedan,,,, +05/14/2021,23:08,BROOKLYN,11234,40.61735,-73.92868,"(40.61735, -73.92868)",,,1772 EAST 48 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417791,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,19:04,BROOKLYN,11213,40.67405,-73.92896,"(40.67405, -73.92896)",,,1230 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417892,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,13:05,BROOKLYN,11207,40.67349,-73.89403,"(40.67349, -73.89403)",,,441 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417233,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,2:10,BROOKLYN,11226,40.652676,-73.94901,"(40.652676, -73.94901)",,,264 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4416985,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,5:15,QUEENS,11692,40.59052,-73.805336,"(40.59052, -73.805336)",ROCKAWAY FREEWAY,BEACH 79 STREET,,2,0,0,0,0,0,2,0,Animals Action,,,,,4416766,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,23:56,BROOKLYN,11212,40.666374,-73.92259,"(40.666374, -73.92259)",,,672 RALPH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417294,Taxi,Sedan,,, +05/16/2021,16:10,,,40.603275,-73.99606,"(40.603275, -73.99606)",21 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417444,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,18:01,QUEENS,11693,40.58884,-73.805244,"(40.58884, -73.805244)",,,244 BEACH 79 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4417074,Station Wagon/Sport Utility Vehicle,Bike,,, +05/16/2021,16:18,BRONX,10452,40.838383,-73.91902,"(40.838383, -73.91902)",JEROME AVENUE,EAST CLARKE PLACE,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4417052,E-Bike,Sedan,,, +05/16/2021,15:30,,,40.68704,-73.780525,"(40.68704, -73.780525)",167 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417352,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,7:00,QUEENS,11435,40.699627,-73.80529,"(40.699627, -73.80529)",94 AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417773,Sedan,,,, +05/16/2021,12:15,,,40.802914,-73.92029,"(40.802914, -73.92029)",EAST 132 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417185,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,23:54,QUEENS,11101,40.756687,-73.94455,"(40.756687, -73.94455)",,,40-15 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417705,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,13:19,BROOKLYN,11225,40.664227,-73.94547,"(40.664227, -73.94547)",BROOKLYN AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417588,Station Wagon/Sport Utility Vehicle,Bike,,, +05/14/2021,17:00,BRONX,10472,40.82457,-73.87825,"(40.82457, -73.87825)",,,1027 ELDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417879,Station Wagon/Sport Utility Vehicle,PK,Tow Truck / Wrecker,, +05/13/2021,23:11,QUEENS,11374,40.73479,-73.86082,"(40.73479, -73.86082)",98 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4417917,Sedan,Sedan,Sedan,, +05/16/2021,19:07,,,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417204,Station Wagon/Sport Utility Vehicle,Bus,,, +05/16/2021,18:35,MANHATTAN,10002,40.718674,-73.986275,"(40.718674, -73.986275)",,,99 SUFFOLK STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417119,Sedan,Sedan,,, +05/11/2021,13:00,,,40.65626,-73.950165,"(40.65626, -73.950165)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Driver Inexperience,,,4417832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,13:30,BRONX,10462,40.85553,-73.86052,"(40.85553, -73.86052)",,,2168 PAULDING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417511,Sedan,Sedan,Sedan,, +05/16/2021,23:20,QUEENS,11413,40.665493,-73.756615,"(40.665493, -73.756615)",,,221-12 SOUTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417556,Sedan,,,, +05/16/2021,20:33,,,40.75218,-73.85201,"(40.75218, -73.85201)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4417638,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/16/2021,20:15,QUEENS,11414,40.670254,-73.857124,"(40.670254, -73.857124)",,,78-06 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417156,Sedan,,,, +09/25/2021,14:05,,,40.7342,-73.74434,"(40.7342, -73.74434)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460800,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,2:37,BRONX,10473,40.819798,-73.85843,"(40.819798, -73.85843)",,,1905 SEWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4460712,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +09/25/2021,4:10,BROOKLYN,11203,40.651905,-73.92749,"(40.651905, -73.92749)",,,314 EAST 53 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4461153,Bike,,,, +09/25/2021,8:45,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4460926,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,12:10,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",PELHAM PARKWAY,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460958,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +09/21/2021,18:00,,,40.725006,-73.99935,"(40.725006, -73.99935)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461773,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,19:30,MANHATTAN,10035,40.80607,-73.9404,"(40.80607, -73.9404)",,,1961 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461232,Sedan,,,, +09/25/2021,12:41,BRONX,10466,40.886795,-73.86254,"(40.886795, -73.86254)",,,664 EAST 223 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4461073,Sedan,Sedan,Sedan,, +09/25/2021,21:57,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461183,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,8:00,,,40.68865,-73.84711,"(40.68865, -73.84711)",96 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4460742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,9:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460793,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,0:27,QUEENS,11375,40.72364,-73.84223,"(40.72364, -73.84223)",110 STREET,70 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4460894,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,1:27,,,40.841274,-73.91762,"(40.841274, -73.91762)",MACOMBS ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4461568,Sedan,Tractor Truck Diesel,,, +09/25/2021,0:28,,,40.827057,-73.95202,"(40.827057, -73.95202)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4461731,Bus,,,, +09/25/2021,20:15,MANHATTAN,10011,40.73708,-73.998344,"(40.73708, -73.998344)",,,128 WEST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461041,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,10:40,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LEFFERTS BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461351,Bus,Sedan,,, +09/25/2021,15:17,QUEENS,11372,40.754807,-73.87482,"(40.754807, -73.87482)",93 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461591,Sedan,Station Wagon/Sport Utility Vehicle,Convertible,, +09/25/2021,17:33,,,40.689003,-73.829346,"(40.689003, -73.829346)",101 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4460811,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,11:50,,,40.677563,-73.93309,"(40.677563, -73.93309)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461676,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,16:27,,,40.790813,-73.976456,"(40.790813, -73.976456)",WEST END AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4460851,Box Truck,Bike,,, +09/24/2021,18:33,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4461514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,10:30,BRONX,10469,40.86851,-73.85091,"(40.86851, -73.85091)",,,2950 THROOP AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460765,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,21:54,,,40.695934,-73.761604,"(40.695934, -73.761604)",FARMERS BOULEVARD,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4461320,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,1:10,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461089,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,14:13,,,40.712856,-73.9049,"(40.712856, -73.9049)",METROPOLITAN AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461143,Sedan,Sedan,,, +09/23/2021,2:41,MANHATTAN,10031,40.824223,-73.95208,"(40.824223, -73.95208)",,,3471 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461692,Sedan,Sedan,,, +09/25/2021,15:51,MANHATTAN,10003,40.725433,-73.992134,"(40.725433, -73.992134)",,,319 BOWERY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4461301,Sedan,Sedan,,, +09/25/2021,10:40,STATEN ISLAND,10308,40.55163,-74.14774,"(40.55163, -74.14774)",,,3879 AMBOY ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461487,Sedan,,,, +09/25/2021,5:00,BROOKLYN,11237,40.707928,-73.93113,"(40.707928, -73.93113)",,,424 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460916,Sedan,,,, +09/25/2021,4:45,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4461381,Sedan,,,, +09/25/2021,23:15,,,40.606674,-73.99252,"(40.606674, -73.99252)",80 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460938,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,14:35,MANHATTAN,10013,40.72173,-74.00432,"(40.72173, -74.00432)",,,311 WEST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461781,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,15:00,QUEENS,11106,40.76038,-73.921974,"(40.76038, -73.921974)",,,35-19 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460881,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,19:43,MANHATTAN,10038,40.709557,-74.00644,"(40.709557, -74.00644)",WILLIAM STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461787,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/25/2021,0:30,BROOKLYN,11222,40.730198,-73.954254,"(40.730198, -73.954254)",MANHATTAN AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461022,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,6:00,BRONX,10451,40.821003,-73.92462,"(40.821003, -73.92462)",CONCOURSE VILLAGE WEST,EAST 153 STREET,,2,0,0,0,0,0,2,0,Pavement Defective,,,,,4461563,Sedan,,,, +09/25/2021,16:04,,,40.67973,-73.76162,"(40.67973, -73.76162)",MERRICK BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461330,Sedan,Sedan,,, +09/24/2021,14:40,BRONX,10454,40.806587,-73.91041,"(40.806587, -73.91041)",,,745 EAST 141 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4461606,Multi-Wheeled Vehicle,,,, +09/25/2021,16:00,,,40.633854,-74.13334,"(40.633854, -74.13334)",,,285 HEBERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460888,Sedan,,,, +09/25/2021,15:15,BRONX,10452,40.834415,-73.92854,"(40.834415, -73.92854)",WEST 165 STREET,OGDEN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4460975,Moped,,,, +09/25/2021,14:40,,,40.60957,-74.00267,"(40.60957, -74.00267)",84 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Passing Too Closely,,,,4460933,Sedan,Sedan,,, +09/25/2021,22:00,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461404,Tractor Truck Diesel,,,, +09/24/2021,11:15,BRONX,10457,40.842987,-73.900345,"(40.842987, -73.900345)",WASHINGTON AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461520,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,21:50,BROOKLYN,11233,40.681633,-73.9318,"(40.681633, -73.9318)",STUYVESANT AVENUE,DECATUR STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4461669,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,20:00,QUEENS,11385,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460844,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,18:45,QUEENS,11385,40.707363,-73.90089,"(40.707363, -73.90089)",,,66-30 60 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461283,Sedan,Sedan,,, +09/23/2021,15:22,BRONX,10463,40.88073,-73.9073,"(40.88073, -73.9073)",,,3120 CORLEAR AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461657,Station Wagon/Sport Utility Vehicle,Bus,,, +09/25/2021,12:19,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4461603,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,1:17,QUEENS,11361,40.762184,-73.76416,"(40.762184, -73.76416)",,,43-21 218 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4460667,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/25/2021,0:30,BRONX,10455,40.81361,-73.913345,"(40.81361, -73.913345)",EAST 148 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,11:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4460821,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,19:10,,,40.61913,-73.99019,"(40.61913, -73.99019)",65 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460934,Station Wagon/Sport Utility Vehicle,Bike,,, +09/25/2021,21:50,QUEENS,11691,40.596207,-73.768745,"(40.596207, -73.768745)",BEACH 36 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461529,Sedan,Sedan,,, +09/25/2021,19:18,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460882,Sedan,Sedan,,, +09/25/2021,0:00,QUEENS,11432,40.704834,-73.79645,"(40.704834, -73.79645)",,,163-28 JAMAICA AVENUE,1,0,0,0,0,0,0,0,Passenger Distraction,Passing or Lane Usage Improper,,,,4461329,Sedan,E-Bike,,, +09/25/2021,13:45,BROOKLYN,11210,40.633957,-73.94853,"(40.633957, -73.94853)",,,2915 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4460910,Sedan,,,, +09/25/2021,18:50,MANHATTAN,10029,40.794365,-73.9397,"(40.794365, -73.9397)",,,2176 2 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4461753,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +09/25/2021,12:52,,,40.8827,-73.892845,"(40.8827, -73.892845)",SEDGWICK AVENUE,STEVENSON PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461650,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,9:30,,,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Cell Phone (hand-Held),,,,4461512,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,19:26,MANHATTAN,10004,40.702957,-74.01151,"(40.702957, -74.01151)",WATER STREET,BROAD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461782,,,,, +09/25/2021,10:04,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",ROOSEVELT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460763,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,11:57,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",2 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4460780,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,16:27,BROOKLYN,11208,40.674133,-73.871605,"(40.674133, -73.871605)",BELMONT AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461081,Sedan,Sedan,,, +09/25/2021,17:00,BROOKLYN,11203,40.65915,-73.92924,"(40.65915, -73.92924)",,,74 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461622,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,17:33,QUEENS,11101,40.742443,-73.93023,"(40.742443, -73.93023)",47 AVENUE,35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460840,Sedan,Sedan,,, +09/25/2021,22:40,,,40.74017,-73.97615,"(40.74017, -73.97615)",EAST 28 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4461191,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,13:04,MANHATTAN,10128,40.779346,-73.95317,"(40.779346, -73.95317)",,,200 EAST 87 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4461542,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,12:50,BROOKLYN,11222,40.7252,-73.93968,"(40.7252, -73.93968)",,,611 MORGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460746,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,1:25,QUEENS,11372,40.752567,-73.87726,"(40.752567, -73.87726)",35 AVENUE,90 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4460987,Motorcycle,Sedan,,, +09/25/2021,9:40,BROOKLYN,11207,40.677578,-73.88602,"(40.677578, -73.88602)",ATLANTIC AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4461091,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,4:23,,,40.76417,-73.83967,"(40.76417, -73.83967)",VAN WYCK EXPWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460770,Sedan,Sedan,Sedan,, +09/25/2021,0:18,QUEENS,11375,40.72364,-73.84223,"(40.72364, -73.84223)",110 STREET,70 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4460893,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,16:40,QUEENS,11420,40.67951,-73.81784,"(40.67951, -73.81784)",122 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461352,Moped,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,4:00,,,40.694557,-73.94325,"(40.694557, -73.94325)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461462,Sedan,,,, +09/25/2021,19:28,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461233,Sedan,,,, +09/25/2021,18:22,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4460835,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +09/25/2021,21:00,MANHATTAN,10010,40.73864,-73.98752,"(40.73864, -73.98752)",,,260 PARK AVENUE SOUTH,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Reaction to Uninvolved Vehicle,,,,4460902,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:10,BRONX,10465,40.844246,-73.824104,"(40.844246, -73.824104)",GRISWOLD AVENUE,DWIGHT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461735,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,14:09,BRONX,10459,40.822697,-73.886444,"(40.822697, -73.886444)",,,1361 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461717,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/24/2021,13:10,BROOKLYN,11220,40.637196,-74.00779,"(40.637196, -74.00779)",57 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461579,Taxi,Station Wagon/Sport Utility Vehicle,Box Truck,, +09/25/2021,22:30,QUEENS,11435,40.70381,-73.81364,"(40.70381, -73.81364)",,,139-39 88 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461340,Sedan,,,, +09/24/2021,14:15,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4461677,Sedan,Box Truck,,, +09/25/2021,19:30,BROOKLYN,11207,40.65978,-73.88292,"(40.65978, -73.88292)",SCHENCK AVENUE,STANLEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4461071,Taxi,,,, +09/25/2021,0:00,,,40.753937,-73.8603,"(40.753937, -73.8603)",108 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460685,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,1:50,,,40.695965,-73.96642,"(40.695965, -73.96642)",PARK AVENUE,HALL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461174,Pick-up Truck,Sedan,,, +09/25/2021,15:55,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4460801,Sedan,,,, +09/25/2021,10:55,BRONX,10467,40.87384,-73.86286,"(40.87384, -73.86286)",BARNES AVENUE,BARTHOLDI STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,,,4461104,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/25/2021,23:50,QUEENS,11372,40.747356,-73.88649,"(40.747356, -73.88649)",,,79-14 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4460999,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,18:15,BROOKLYN,11217,40.686085,-73.982666,"(40.686085, -73.982666)",NEVINS STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460924,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,21:05,STATEN ISLAND,10304,40.62165,-74.085495,"(40.62165, -74.085495)",VANDUZER STREET,MAXIE COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461503,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,23:47,BROOKLYN,11212,40.658672,-73.90019,"(40.658672, -73.90019)",NEW LOTS AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4460953,Sedan,Sedan,,, +09/25/2021,0:50,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461341,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,21:10,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461764,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,16:40,,,40.792015,-73.98051,"(40.792015, -73.98051)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4460850,Sedan,Motor home,,, +09/25/2021,23:30,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4461201,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2022,0:50,BRONX,10462,40.837784,-73.852486,"(40.837784, -73.852486)",CASTLE HILL AVENUE,SAINT RAYMOND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4561476,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/25/2021,11:00,QUEENS,11426,40.72787,-73.72576,"(40.72787, -73.72576)",89 AVENUE,242 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4461307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/25/2021,13:50,MANHATTAN,10010,40.735744,-73.976105,"(40.735744, -73.976105)",,,510 EAST 23 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4460900,Sedan,PK,,, +09/25/2021,3:15,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461116,Sedan,Sedan,,, +09/25/2021,6:30,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",WEST GUN HILL ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4460709,Sedan,Sedan,,, +09/25/2021,14:15,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460966,Sedan,Box Truck,,, +09/25/2021,14:00,BROOKLYN,11249,40.709915,-73.96854,"(40.709915, -73.96854)",,,420 KENT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460785,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,1:52,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",OCEAN PARKWAY,AVENUE C,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4460977,Taxi,,,, +09/25/2021,9:00,BROOKLYN,11212,40.661293,-73.90667,"(40.661293, -73.90667)",OSBORN STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460843,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,20:55,BRONX,10465,40.816597,-73.8181,"(40.816597, -73.8181)",,,249 CALHOUN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4460961,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,17:57,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461772,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,5:31,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461370,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,17:18,BROOKLYN,11211,40.715557,-73.92636,"(40.715557, -73.92636)",,,1247 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460915,Dump,Sedan,,, +09/25/2021,15:50,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BARRETTO STREET,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,,,,4461417,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,3:50,QUEENS,11429,40.710167,-73.73207,"(40.710167, -73.73207)",223 STREET,105 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460661,Sedan,Sedan,,, +06/28/2021,17:59,BRONX,10457,40.84144,-73.89282,"(40.84144, -73.89282)",,,739 CROTONA PARK NORTH,2,0,1,0,0,0,0,0,Other Vehicular,,,,,4461521,E-Scooter,,,, +09/25/2021,19:10,BROOKLYN,11233,40.67339,-73.91678,"(40.67339, -73.91678)",SARATOGA AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461272,Sedan,Sedan,,, +09/25/2021,17:01,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4461665,Station Wagon/Sport Utility Vehicle,,,, +04/29/2021,12:00,BROOKLYN,11226,40.652412,-73.95423,"(40.652412, -73.95423)",,,123 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461623,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,7:40,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Glare,,,,,4461097,Sedan,,,, +06/25/2022,18:45,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542728,Sedan,Sedan,,, +09/25/2021,12:10,QUEENS,11368,40.74884,-73.86296,"(40.74884, -73.86296)",41 AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460771,Box Truck,Dump,,, +06/28/2022,13:25,BROOKLYN,11212,40.66255,-73.90893,"(40.66255, -73.90893)",ROCKAWAY AVENUE,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4542410,PK,Sedan,Sedan,Box Truck, +09/15/2021,14:18,BRONX,10473,40.821136,-73.86587,"(40.821136, -73.86587)",,,800 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4461518,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/25/2021,8:00,,,40.666363,-73.95223,"(40.666363, -73.95223)",DEARBORN COURT,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460791,Sedan,,,, +09/25/2021,14:28,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461082,Sedan,,,, +09/17/2021,9:00,,,40.675884,-73.75577,"(40.675884, -73.75577)",SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4461555,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,14:00,MANHATTAN,10021,40.766968,-73.95617,"(40.766968, -73.95617)",,,400 EAST 71 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460834,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,14:00,STATEN ISLAND,10301,,,,DANIEL LOW TERRACE,VINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461146,,,,, +08/27/2021,19:30,BROOKLYN,11236,40.64851,-73.89572,"(40.64851, -73.89572)",,,671 EAST 105 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461618,,,,, +09/25/2021,0:00,,,40.776016,-73.78441,"(40.776016, -73.78441)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4460732,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/25/2021,23:30,QUEENS,11692,40.59903,-73.79704,"(40.59903, -73.79704)",,,67-16 BAYFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,12:34,MANHATTAN,10029,40.78717,-73.94999,"(40.78717, -73.94999)",EAST 98 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4461125,Pick-up Truck,Bus,,, +09/25/2021,23:36,QUEENS,11432,40.713264,-73.79638,"(40.713264, -73.79638)",,,85-14 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461187,Convertible,,,, +09/25/2021,8:55,,,40.79273,-73.9771,"(40.79273, -73.9771)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,11:04,BROOKLYN,11211,40.70512,-73.95268,"(40.70512, -73.95268)",,,57 HARRISON AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460790,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/25/2021,20:41,BRONX,10461,40.8431,-73.84778,"(40.8431, -73.84778)",EAST TREMONT AVENUE,SILVER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461583,Sedan,Sedan,,, +09/25/2021,18:45,QUEENS,11372,40.752285,-73.88004,"(40.752285, -73.88004)",87 STREET,35 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461595,E-Bike,,,, +09/25/2021,0:15,MANHATTAN,10014,40.730442,-74.00464,"(40.730442, -74.00464)",,,28 7 AVENUE SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460813,Sedan,Sedan,,, +09/25/2021,0:00,BROOKLYN,11219,40.62643,-73.996925,"(40.62643, -73.996925)",,,6120 NEW UTRECHT AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4460935,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/24/2021,18:46,BRONX,10452,40.8398,-73.928665,"(40.8398, -73.928665)",WEST 167 STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4461564,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,13:40,BROOKLYN,11212,40.66384,-73.92166,"(40.66384, -73.92166)",EAST 98 STREET,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461270,Sedan,Sedan,,, +09/24/2021,8:20,,,40.76685,-73.95376,"(40.76685, -73.95376)",YORK AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4461511,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/25/2021,12:00,,,40.688553,-73.962845,"(40.688553, -73.962845)",GRAND AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4460761,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,14:25,BROOKLYN,11234,40.61913,-73.92398,"(40.61913, -73.92398)",AVENUE N,EAST 53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460841,Sedan,Pick-up Truck,,, +09/25/2021,3:10,BROOKLYN,11206,40.705994,-73.94298,"(40.705994, -73.94298)",,,132 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460690,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,11:37,MANHATTAN,10002,40.715775,-73.97939,"(40.715775, -73.97939)",,,292 DELANCEY STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4460803,E-Bike,,,, +09/20/2021,10:00,BROOKLYN,11233,40.678303,-73.92527,"(40.678303, -73.92527)",,,834 HERKIMER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461671,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,18:00,BROOKLYN,11211,40.71429,-73.94266,"(40.71429, -73.94266)",,,355 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461009,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,1:35,BROOKLYN,11211,40.70914,-73.950836,"(40.70914, -73.950836)",HEWES STREET,SOUTH 2 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4460796,Bike,,,, +09/22/2021,2:30,MANHATTAN,10005,40.706013,-74.00882,"(40.706013, -74.00882)",WALL STREET,HANOVER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461756,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,16:12,BROOKLYN,11215,40.678757,-73.98649,"(40.678757, -73.98649)",,,569 UNION STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461367,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,15:52,BROOKLYN,11205,40.693436,-73.97784,"(40.693436, -73.97784)",SAINT EDWARDS STREET,MYRTLE AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4461148,Sedan,Sedan,Taxi,, +09/25/2021,13:45,MANHATTAN,10013,40.723976,-74.00831,"(40.723976, -74.00831)",CANAL STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461783,Sedan,,,, +09/25/2021,12:51,QUEENS,11103,40.759365,-73.914276,"(40.759365, -73.914276)",44 STREET,NEWTOWN ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460883,Bike,,,, +09/25/2021,1:15,BROOKLYN,11208,40.668503,-73.869255,"(40.668503, -73.869255)",PINE STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461079,Sedan,,,, +09/25/2021,19:05,BROOKLYN,11207,40.68111,-73.88784,"(40.68111, -73.88784)",,,126 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461172,Station Wagon/Sport Utility Vehicle,Van,,, +09/25/2021,12:50,QUEENS,11356,40.781693,-73.839615,"(40.781693, -73.839615)",20 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,20:50,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",MERRICK BOULEVARD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460929,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,5:30,QUEENS,11435,40.68729,-73.807274,"(40.68729, -73.807274)",,,138-14 109 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4461328,Sedan,Sedan,Taxi,, +09/21/2021,11:30,,,40.6217,-74.12403,"(40.6217, -74.12403)",MANOR ROAD,COLLEGE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461536,Sedan,Sedan,,, +09/25/2021,18:34,QUEENS,11103,40.756718,-73.91422,"(40.756718, -73.91422)",BROADWAY,46 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460871,Sedan,E-Bike,,, +09/25/2021,21:30,,,40.78176,-73.944145,"(40.78176, -73.944145)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,,4461354,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/29/2022,14:40,MANHATTAN,10075,40.773335,-73.95506,"(40.773335, -73.95506)",2 AVENUE,EAST 79 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4541974,Sedan,Bike,,, +09/25/2021,1:54,,,40.663902,-73.93993,"(40.663902, -73.93993)",EMPIRE BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4460668,Sedan,,,, +09/25/2021,14:30,BRONX,10456,40.828384,-73.90283,"(40.828384, -73.90283)",JACKSON AVENUE,HOME STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4461422,Sedan,Sedan,,, +09/22/2021,18:50,BROOKLYN,11213,40.677563,-73.93309,"(40.677563, -73.93309)",ATLANTIC AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4461678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,16:04,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",EAST 34 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460782,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,23:59,BROOKLYN,11226,40.652145,-73.95916,"(40.652145, -73.95916)",FLATBUSH AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4460906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,17:45,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461651,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/23/2021,14:40,BROOKLYN,11228,40.617325,-74.0177,"(40.617325, -74.0177)",11 AVENUE,85 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461530,Sedan,Pick-up Truck,,, +06/30/2022,8:00,QUEENS,11377,40.74377,-73.91383,"(40.74377, -73.91383)",ROOSEVELT AVENUE,51 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542085,Sedan,Bike,,, +09/19/2021,0:00,,,40.820538,-73.930855,"(40.820538, -73.930855)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4461778,Sedan,,,, +09/25/2021,8:00,BROOKLYN,11226,40.65469,-73.96015,"(40.65469, -73.96015)",,,181 WOODRUFF AVENUE,2,0,0,0,2,0,0,0,Passing Too Closely,Unspecified,,,,4460911,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/23/2021,16:30,MANHATTAN,10009,40.72912,-73.98343,"(40.72912, -73.98343)",,,416 EAST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,6:40,MANHATTAN,10029,40.798412,-73.939705,"(40.798412, -73.939705)",,,2095 3 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4460995,Bus,Sedan,Sedan,, +09/25/2021,0:07,,,40.5953,-74.1619,"(40.5953, -74.1619)",RICHMOND AVENUE,ROCKLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461308,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,22:02,QUEENS,11375,40.725616,-73.851036,"(40.725616, -73.851036)",68 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4460892,Sedan,Sedan,Sedan,Sedan, +09/25/2021,7:25,,,40.782734,-73.955345,"(40.782734, -73.955345)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4460836,Sedan,Sedan,,, +05/17/2021,16:15,,,,,,MEEKER AVENUE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417742,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/25/2021,16:20,QUEENS,11420,40.672203,-73.80873,"(40.672203, -73.80873)",130 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461384,Sedan,,,, +09/25/2021,20:00,BROOKLYN,11216,40.6884,-73.95118,"(40.6884, -73.95118)",NOSTRAND AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461461,Sedan,,,, +09/25/2021,2:05,BROOKLYN,11207,40.660217,-73.89675,"(40.660217, -73.89675)",NEW LOTS AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461070,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,15:00,,,40.791416,-73.829285,"(40.791416, -73.829285)",POINT CRESCENT,BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4461240,Sedan,,,, +09/25/2021,19:40,BROOKLYN,11201,40.693146,-73.99509,"(40.693146, -73.99509)",JORALEMON STREET,HENRY STREET,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4460923,Sedan,Bike,Bike,, +09/11/2021,11:55,BRONX,10452,40.83057,-73.93072,"(40.83057, -73.93072)",OGDEN AVENUE,WEST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461742,Sedan,,,, +09/25/2021,9:35,MANHATTAN,10027,40.81019,-73.953,"(40.81019, -73.953)",,,280 SAINT NICHOLAS AVENUE,2,0,0,0,2,0,0,0,Other Vehicular,Passing or Lane Usage Improper,Unspecified,,,4460968,Bike,Bike,Sedan,, +09/25/2021,12:26,MANHATTAN,10011,40.733067,-73.9983,"(40.733067, -73.9983)",,,40 WEST 8 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461550,Pick-up Truck,Bike,,, +09/25/2021,4:00,QUEENS,11421,40.690662,-73.85206,"(40.690662, -73.85206)",,,89-32 92 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4461332,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,14:28,,,40.889137,-73.88885,"(40.889137, -73.88885)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4461656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,12:16,BRONX,10452,40.842335,-73.91619,"(40.842335, -73.91619)",JEROME AVENUE,EAST 172 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4460981,Sedan,E-Bike,,, +09/25/2021,10:20,,,40.65021,-74.01577,"(40.65021, -74.01577)",48 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461638,Station Wagon/Sport Utility Vehicle,Crane truc,,, +09/25/2021,18:30,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",84 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4461342,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,1:32,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4460662,Sedan,Sedan,Sedan,, +09/25/2021,4:03,BRONX,10457,40.84414,-73.900536,"(40.84414, -73.900536)",,,450 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461523,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,4:50,BRONX,10474,40.813885,-73.885185,"(40.813885, -73.885185)",,,673 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461387,Sedan,Sedan,,, +09/25/2021,19:14,MANHATTAN,10012,40.723022,-73.99882,"(40.723022, -73.99882)",BROADWAY,SPRING STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460859,Sedan,Sedan,,, +09/25/2021,8:40,QUEENS,11356,40.780144,-73.84876,"(40.780144, -73.84876)",119 STREET,22 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461099,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,9:00,QUEENS,11373,40.736088,-73.87179,"(40.736088, -73.87179)",,,90-29 56 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4460774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/25/2021,16:20,BROOKLYN,11208,40.67314,-73.86945,"(40.67314, -73.86945)",SUTTER AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461083,Sedan,Taxi,,, +09/25/2021,6:50,,,40.747894,-73.989174,"(40.747894, -73.989174)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461502,Sedan,Sedan,,, +09/25/2021,19:00,QUEENS,11237,40.699936,-73.91181,"(40.699936, -73.91181)",GATES AVENUE,WYCKOFF AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461293,Pick-up Truck,,,, +09/25/2021,21:50,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460928,Sedan,,,, +09/09/2021,18:00,MANHATTAN,10013,40.723278,-74.00799,"(40.723278, -74.00799)",HUDSON STREET,DESBROSSES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461771,Sedan,Bike,,, +09/25/2021,22:40,BROOKLYN,11235,40.58343,-73.96049,"(40.58343, -73.96049)",SHORE PARKWAY,GUIDER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Reaction to Uninvolved Vehicle,Unspecified,,,4460951,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,16:04,,,40.77052,-73.91978,"(40.77052, -73.91978)",29 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461794,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,7:35,BROOKLYN,11237,40.703403,-73.917786,"(40.703403, -73.917786)",STANHOPE STREET,WYCKOFF AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4461206,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,9:15,MANHATTAN,10018,40.75457,-73.99325,"(40.75457, -73.99325)",,,336 WEST 37 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461012,Van,Box Truck,,, +09/25/2021,16:45,,,40.657837,-73.95033,"(40.657837, -73.95033)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Reaction to Uninvolved Vehicle,,,,4460795,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,2:20,,,40.77904,-73.9435,"(40.77904, -73.9435)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4460833,Sedan,Sedan,,, +09/17/2021,7:45,BROOKLYN,11201,40.70009,-73.987785,"(40.70009, -73.987785)",PEARL STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461616,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,7:55,,,40.69592,-73.83865,"(40.69592, -73.83865)",109 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4460733,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,17:20,,,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461565,Box Truck,Sedan,,, +09/25/2021,15:59,,,40.73789,-73.76794,"(40.73789, -73.76794)",HOLLIS HILLS TERRACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461029,Sedan,Sedan,,, +09/25/2021,22:03,BROOKLYN,11236,40.637505,-73.914185,"(40.637505, -73.914185)",EAST 81 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460899,Taxi,Sedan,,, +09/23/2021,8:00,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461733,Sedan,Sedan,,, +09/24/2021,17:40,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",CLINTON AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4461517,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,5:25,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",LENOX ROAD,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4461664,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/25/2021,14:25,,,40.70547,-73.95024,"(40.70547, -73.95024)",UNION AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460797,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,18:45,MANHATTAN,10021,40.768322,-73.95933,"(40.768322, -73.95933)",,,249 EAST 71 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,6:30,,,40.74939,-73.8178,"(40.74939, -73.8178)",KISSENA BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461246,Sedan,,,, +09/25/2021,10:35,BROOKLYN,11211,40.717907,-73.94666,"(40.717907, -73.94666)",MANHATTAN AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4461136,Sedan,Motorscooter,,, +09/25/2021,2:20,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",LINDEN BOULEVARD,CHURCH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461150,,,,, +09/20/2021,6:25,QUEENS,11415,40.703655,-73.822464,"(40.703655, -73.822464)",METROPOLITAN AVENUE,130 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461743,Sedan,,,, +09/25/2021,11:45,QUEENS,11362,40.75238,-73.73883,"(40.75238, -73.73883)",,,240-11 66 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460729,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,23:00,BRONX,10465,40.823315,-73.81178,"(40.823315, -73.81178)",,,89D EDGEWATER PARK,0,0,0,0,0,0,0,0,Unspecified,,,,,4460960,Sedan,,,, +09/22/2021,14:20,MANHATTAN,10281,40.71154,-74.01574,"(40.71154, -74.01574)",,,200 LIBERTY STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4461763,Box Truck,,,, +09/25/2021,14:25,,,40.7343,-73.7552,"(40.7343, -73.7552)",UNION TURNPIKE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4460768,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,12:34,MANHATTAN,10007,40.713135,-74.00407,"(40.713135, -74.00407)",CHAMBERS STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461761,PK,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,9:00,BROOKLYN,11207,40.65342,-73.88898,"(40.65342, -73.88898)",COZINE AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461065,Sedan,Sedan,,, +09/25/2021,6:42,QUEENS,11372,40.74945,-73.88711,"(40.74945, -73.88711)",79 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460688,Sedan,Sedan,,, +09/25/2021,15:45,,,40.77402,-73.79277,"(40.77402, -73.79277)",UTOPIA PARKWAY,26 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4460842,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/25/2021,13:11,BRONX,10466,40.88731,-73.86412,"(40.88731, -73.86412)",EAST 223 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4461124,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,21:30,,,40.68896,-73.93326,"(40.68896, -73.93326)",QUINCY STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4461672,Sedan,Bike,,, +04/27/2021,19:58,,,,,,,,17030 103th avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4418054,Sedan,,,, +09/25/2021,13:30,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",WOODSTOCK AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461007,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/25/2021,16:20,,,40.640648,-73.953316,"(40.640648, -73.953316)",AVENUE D,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4460788,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/25/2021,16:20,BRONX,10459,40.8233,-73.8993,"(40.8233, -73.8993)",,,868 EAST 164 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461456,Sedan,Sedan,,, +09/25/2021,23:30,MANHATTAN,10021,40.768795,-73.958374,"(40.768795, -73.958374)",2 AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461355,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,22:05,BROOKLYN,11210,40.63719,-73.952286,"(40.63719, -73.952286)",,,1377 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4460907,Sedan,,,, +09/25/2021,4:15,BROOKLYN,11217,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,SOUTH PORTLAND AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4460884,Taxi,Taxi,,, +09/25/2021,22:00,MANHATTAN,10024,40.78205,-73.97982,"(40.78205, -73.97982)",,,210 WEST 77 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461269,Van,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,0:10,,,40.7099,-73.786736,"(40.7099, -73.786736)",175 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461327,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,14:30,MANHATTAN,10016,40.74437,-73.98752,"(40.74437, -73.98752)",,,241 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460913,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,21:40,BROOKLYN,11221,40.689568,-73.934586,"(40.689568, -73.934586)",,,651 LEXINGTON AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4461682,LIMO,Box Truck,,, +09/25/2021,14:15,BROOKLYN,11236,40.6391,-73.90092,"(40.6391, -73.90092)",,,1299 EAST 93 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460783,Sedan,,,, +09/25/2021,10:20,,,40.879307,-73.90295,"(40.879307, -73.90295)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461653,Sedan,,,, +09/25/2021,12:26,BROOKLYN,11219,40.627117,-74.00181,"(40.627117, -74.00181)",,,1262 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460760,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,10:00,BRONX,10468,40.862297,-73.89842,"(40.862297, -73.89842)",EAST FORDHAM ROAD,CRESTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461507,Sedan,,,, +09/25/2021,20:35,BROOKLYN,11208,40.668266,-73.88116,"(40.668266, -73.88116)",DUMONT AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461075,Sedan,Sedan,,, +09/14/2021,15:16,MANHATTAN,10013,40.723118,-74.00624,"(40.723118, -74.00624)",VARICK STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461785,Sedan,Sedan,,, +09/25/2021,13:49,BROOKLYN,11212,40.66865,-73.91762,"(40.66865, -73.91762)",,,1518 PITKIN AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4461168,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,4:38,MANHATTAN,10002,40.721222,-73.98301,"(40.721222, -73.98301)",EAST HOUSTON STREET,ATTORNEY STREET,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4460805,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,12:00,BROOKLYN,11214,40.59398,-73.996185,"(40.59398, -73.996185)",24 AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460931,Sedan,,,, +09/25/2021,0:00,,,40.788193,-73.79059,"(40.788193, -73.79059)",CLEARVIEW EXPRESSWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461107,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,21:30,QUEENS,11372,40.747692,-73.89381,"(40.747692, -73.89381)",BROADWAY,72 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460991,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,10:30,,,40.794735,-73.96988,"(40.794735, -73.96988)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4460752,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,0:15,QUEENS,11368,40.7553,-73.87009,"(40.7553, -73.87009)",98 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460682,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,12:00,BROOKLYN,11212,40.66446,-73.91234,"(40.66446, -73.91234)",,,662 BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460846,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,16:06,QUEENS,11368,40.75763,-73.865685,"(40.75763, -73.865685)",NORTHERN BOULEVARD,103 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461594,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,8:00,,,40.61971,-73.99729,"(40.61971, -73.99729)",BAY RIDGE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460936,Sedan,,,, +09/25/2021,16:47,,,,,,,,104 WEST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4460812,Bike,,,, +09/25/2021,0:30,BROOKLYN,11217,40.681095,-73.97533,"(40.681095, -73.97533)",,,218 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461366,Station Wagon/Sport Utility Vehicle,Stake or Rack,,, +09/25/2021,5:10,,,,,,SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461436,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,22:26,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",SNEDIKER AVENUE,LINDEN BOULEVARD,,0,1,0,0,0,1,0,0,Unspecified,Unspecified,,,,4461286,E-Bike,,,, +09/18/2021,17:55,BROOKLYN,11218,40.655666,-73.979485,"(40.655666, -73.979485)",,,601 18 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4461534,Sedan,Bike,,, +09/23/2021,10:10,MANHATTAN,10013,40.723454,-74.007965,"(40.723454, -74.007965)",,,205 HUDSON STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461779,Sedan,Sedan,,, +09/25/2021,15:45,,,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460874,Motorcycle,Sedan,,, +09/25/2021,13:30,,,40.680218,-73.775505,"(40.680218, -73.775505)",BAISLEY BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4461316,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,22:30,QUEENS,11372,,,,73 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461588,Sedan,Sedan,,, +09/25/2021,22:00,,,40.73518,-73.83629,"(40.73518, -73.83629)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4461037,Sedan,Sedan,,, +09/23/2021,19:15,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461639,Bus,Sedan,,, +09/24/2021,16:25,BROOKLYN,11233,40.683754,-73.91737,"(40.683754, -73.91737)",,,88 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4461675,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/25/2021,9:30,QUEENS,11355,,,,Roosevelt avenue,Shea Road,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4460776,Sedan,Bus,,, +09/25/2021,12:55,QUEENS,11358,40.755733,-73.796135,"(40.755733, -73.796135)",45 AVENUE,171 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4461103,Sedan,,,, +09/25/2021,22:45,,,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,,,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4461515,E-Bike,,,, +09/25/2021,11:25,,,40.620647,-74.14051,"(40.620647, -74.14051)",MULLER AVENUE,GARRISON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,12:37,BROOKLYN,11205,40.694206,-73.97312,"(40.694206, -73.97312)",,,93 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460767,Sedan,,,, +09/25/2021,9:15,QUEENS,11434,40.663788,-73.76554,"(40.663788, -73.76554)",145 DRIVE,180 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4460799,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/25/2021,7:30,,,40.683342,-74.001976,"(40.683342, -74.001976)",HICKS STREET,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461186,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,23:20,BROOKLYN,11203,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4461152,Sedan,,,, +09/25/2021,4:04,,,40.71412,-73.83152,"(40.71412, -73.83152)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4460741,Sedan,,,, +09/23/2021,19:00,BROOKLYN,11219,40.62284,-74.00121,"(40.62284, -74.00121)",68 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461535,Sedan,Sedan,,, +08/05/2021,9:07,BRONX,10471,40.912827,-73.90251,"(40.912827, -73.90251)",,,6301 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,16:21,QUEENS,11413,40.666405,-73.74538,"(40.666405, -73.74538)",NORTH CONDUIT AVENUE,230 PLACE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4461298,Sedan,Sedan,,, +09/18/2021,8:30,BRONX,10475,40.867054,-73.82174,"(40.867054, -73.82174)",,,4200 HUTCHINSON RIVER PARKWAY EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461732,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,5:40,BROOKLYN,11201,40.692497,-73.98896,"(40.692497, -73.98896)",,,345 ADAMS STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4460918,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,17:42,QUEENS,11420,40.67854,-73.807205,"(40.67854, -73.807205)",133 STREET,116 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4461383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,12:58,,,40.8385,-73.90598,"(40.8385, -73.90598)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4461388,Sedan,,,, +09/25/2021,1:56,BROOKLYN,11236,40.64236,-73.91971,"(40.64236, -73.91971)",,,1414 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,14:00,QUEENS,11435,40.697872,-73.802376,"(40.697872, -73.802376)",150 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461609,Sedan,Van,,, +09/25/2021,19:18,BRONX,10475,40.86938,-73.825455,"(40.86938, -73.825455)",,,2136 BARTOW AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4460959,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,13:00,QUEENS,11372,40.75033,-73.87874,"(40.75033, -73.87874)",37 AVENUE,88 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460984,Sedan,Bike,,, +09/25/2021,20:02,MANHATTAN,10038,40.707806,-74.00159,"(40.707806, -74.00159)",PECK SLIP,FRONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461766,Box Truck,Sedan,,, +09/25/2021,15:13,QUEENS,11691,40.603626,-73.749084,"(40.603626, -73.749084)",,,10-44 NAMEOKE STREET,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4461524,Motorbike,,,, +09/25/2021,22:37,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460854,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,14:20,,,40.693142,-73.922,"(40.693142, -73.922)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461212,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/25/2021,1:27,,,,,,HENRY HUDSON PARKWAY,WEST 134 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4460898,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,11:50,,,40.830067,-73.92915,"(40.830067, -73.92915)",EAST 161 STREET,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4461566,Taxi,,,, +09/23/2021,23:17,BROOKLYN,11212,40.658783,-73.91283,"(40.658783, -73.91283)",NEWPORT STREET,HERZL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461744,Sedan,,,, +09/25/2021,1:30,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4460969,Sedan,Sedan,,, +09/25/2021,16:18,MANHATTAN,10002,40.714184,-73.98871,"(40.714184, -73.98871)",JEFFERSON STREET,EAST BROADWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4460794,Sedan,Bike,,, +09/25/2021,2:34,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",4 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460726,Tractor Truck Diesel,Sedan,,, +09/25/2021,23:35,,,40.65766,-73.89705,"(40.65766, -73.89705)",HINSDALE STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4461084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,21:29,BROOKLYN,11238,40.68088,-73.9633,"(40.68088, -73.9633)",ATLANTIC AVENUE,SAINT JAMES PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461249,ambulance,Sedan,,, +09/25/2021,14:30,QUEENS,11377,40.740273,-73.89586,"(40.740273, -73.89586)",QUEENS BOULEVARD,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460838,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,10:30,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460826,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,16:38,BRONX,10466,40.887497,-73.84649,"(40.887497, -73.84649)",,,1053 EAST 230 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4461140,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,15:20,BRONX,10467,40.87129,-73.88024,"(40.87129, -73.88024)",HULL AVENUE,EAST MOSHOLU PARKWAY NORTH,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4461549,Taxi,Taxi,,, +09/25/2021,7:30,,,40.628662,-74.15552,"(40.628662, -74.15552)",VANPELT AVENUE,NETHERLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460889,Sedan,Sedan,,, +09/25/2021,11:18,BROOKLYN,11201,40.69716,-73.996895,"(40.69716, -73.996895)",,,200 COLUMBIA HEIGHTS,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4460927,Sedan,Dump,,, +09/25/2021,0:13,,,40.7162,-73.99191,"(40.7162, -73.99191)",ALLEN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461499,Motorbike,Taxi,,, +09/25/2021,20:00,,,,,,,,49 west 7th ave,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461349,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,13:35,,,40.725285,-73.97798,"(40.725285, -73.97798)",AVENUE C,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4461694,Flat Bed,Sedan,,, +09/20/2021,15:20,MANHATTAN,10038,40.706707,-74.002335,"(40.706707, -74.002335)",BEEKMAN STREET,SOUTH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461762,Sedan,Bike,,, +09/25/2021,4:25,BROOKLYN,11214,40.602356,-74.01263,"(40.602356, -74.01263)",SHORE PARKWAY,BAY 14 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4460940,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,13:25,MANHATTAN,10006,40.709686,-74.01168,"(40.709686, -74.01168)",TRINITY PLACE,LIBERTY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461788,Pick-up Truck,,,, +09/25/2021,15:15,,,40.753284,-73.92049,"(40.753284, -73.92049)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4460875,Station Wagon/Sport Utility Vehicle,Bike,,, +09/25/2021,12:15,BRONX,10471,40.904892,-73.906334,"(40.904892, -73.906334)",,,5620 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461663,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,22:40,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461317,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,20:08,QUEENS,11433,40.69952,-73.78355,"(40.69952, -73.78355)",,,172-06 108 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461331,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,1:30,BROOKLYN,11229,40.6055,-73.93793,"(40.6055, -73.93793)",AVENUE S,STUART STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461359,Pick-up Truck,,,, +09/25/2021,8:05,,,40.629166,-73.947334,"(40.629166, -73.947334)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460908,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,13:50,BRONX,10456,40.83419,-73.90019,"(40.83419, -73.90019)",EAST 170 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542400,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,8:00,QUEENS,11377,40.742836,-73.91592,"(40.742836, -73.91592)",QUEENS BOULEVARD,49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542289,Sedan,Box Truck,,, +07/01/2022,11:28,QUEENS,11377,40.762875,-73.90376,"(40.762875, -73.90376)",,,25-44 BOROUGH PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542674,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/01/2022,0:30,MANHATTAN,10029,40.794792,-73.938576,"(40.794792, -73.938576)",,,310 EAST 113 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542378,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,5:00,QUEENS,11363,40.772457,-73.74048,"(40.772457, -73.74048)",,,41-04 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4541843,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,23:10,QUEENS,11385,40.69832,-73.90011,"(40.69832, -73.90011)",SENECA AVENUE,NORMAN STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4415811,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +06/30/2022,14:50,BROOKLYN,11229,40.59851,-73.93957,"(40.59851, -73.93957)",BROWN STREET,AVENUE V,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542532,Sedan,Sedan,,, +05/16/2021,20:00,,,,,,,,222-000 CARSON STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4417084,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/17/2021,17:10,,,40.692562,-73.80891,"(40.692562, -73.80891)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417540,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,5:10,,,40.675682,-74.00119,"(40.675682, -74.00119)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4417649,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/17/2021,14:30,QUEENS,11366,40.736073,-73.77356,"(40.736073, -73.77356)",73 AVENUE,199 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,15:15,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416492,Sedan,Sedan,Sedan,, +05/15/2021,3:20,BROOKLYN,11221,,,,Malcolm X Boulevard,Quincy street,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4418299,Sedan,,,, +05/15/2021,22:51,BROOKLYN,11217,40.68306,-73.973785,"(40.68306, -73.973785)",ATLANTIC AVENUE,6 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418103,Sedan,,,, +05/17/2021,17:55,,,40.667706,-73.90636,"(40.667706, -73.90636)",STONE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4418068,Sedan,Sedan,,, +05/17/2021,0:00,,,40.803566,-73.96715,"(40.803566, -73.96715)",BROADWAY,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4417140,Taxi,Bike,,, +05/17/2021,20:12,,,40.624256,-74.02006,"(40.624256, -74.02006)",79 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417569,Sedan,Sedan,,, +05/17/2021,17:00,,,40.673107,-73.99959,"(40.673107, -73.99959)",GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417731,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,17:29,BRONX,10468,40.86275,-73.904305,"(40.86275, -73.904305)",,,83 WEST FORDHAM ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417619,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,11:45,BROOKLYN,11233,40.676514,-73.91413,"(40.676514, -73.91413)",,,2182 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,,,,,,4417988,,,,, +05/12/2021,0:00,,,40.82831,-73.94315,"(40.82831, -73.94315)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418151,Taxi,Sedan,,, +05/17/2021,0:00,BROOKLYN,11238,40.679375,-73.96408,"(40.679375, -73.96408)",DEAN STREET,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4418242,E-Bike,Sedan,,, +05/17/2021,5:40,,,40.6778,-73.87331,"(40.6778, -73.87331)",LIBERTY AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417216,Sedan,Sedan,,, +05/06/2021,14:02,STATEN ISLAND,10307,40.505527,-74.23819,"(40.505527, -74.23819)",HYLAN BOULEVARD,SPRAGUE AVENUE,,0,1,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4415906,E-Bike,Pick-up Truck,,, +05/17/2021,9:40,BRONX,10454,40.803677,-73.92209,"(40.803677, -73.92209)",EAST 132 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417625,Station Wagon/Sport Utility Vehicle,UNKNOW,,, +05/15/2021,3:21,QUEENS,11421,40.685894,-73.86524,"(40.685894, -73.86524)",ROCKAWAY BOULEVARD,91 AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4418099,Sedan,,,, +05/09/2021,17:30,BROOKLYN,11238,40.68668,-73.95958,"(40.68668, -73.95958)",LEXINGTON AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418130,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/17/2021,23:40,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,KENMARE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417844,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,3:05,BROOKLYN,11221,40.68796,-73.94194,"(40.68796, -73.94194)",THROOP AVENUE,QUINCY STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4417331,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,16:30,BRONX,10473,40.82399,-73.85876,"(40.82399, -73.85876)",,,845 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417507,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,14:30,BROOKLYN,11206,40.70472,-73.940285,"(40.70472, -73.940285)",,,155 SEIGEL STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4417657,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,6:50,BRONX,10474,40.816864,-73.882744,"(40.816864, -73.882744)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4418387,Ambulance,,,, +05/17/2021,19:00,,,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4417678,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,20:50,STATEN ISLAND,10305,40.612957,-74.065315,"(40.612957, -74.065315)",,,1244 BAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417745,Sedan,,,, +05/17/2021,22:30,BRONX,10457,40.85407,-73.89932,"(40.85407, -73.89932)",VALENTINE AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4417774,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,11:00,BROOKLYN,11223,40.60853,-73.96211,"(40.60853, -73.96211)",,,2004 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,10:30,BROOKLYN,11208,40.68541,-73.87274,"(40.68541, -73.87274)",CRESCENT STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417400,Sedan,,,, +04/30/2021,13:30,MANHATTAN,10011,40.744644,-74.00639,"(40.744644, -74.00639)",WEST 18 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418185,Van,Bike,,, +05/17/2021,17:49,,,40.638878,-74.00605,"(40.638878, -74.00605)",54 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,0:00,QUEENS,11385,40.71142,-73.91794,"(40.71142, -73.91794)",,,1889 TROUTMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418260,Sedan,Sedan,,, +05/17/2021,11:48,QUEENS,11432,40.713886,-73.78273,"(40.713886, -73.78273)",,,87-01 MIDLAND PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4417448,Motorcycle,,,, +05/17/2021,9:40,,,40.757755,-73.79304,"(40.757755, -73.79304)",UTOPIA PARKWAY,,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4417405,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/15/2021,21:15,BROOKLYN,11215,40.664158,-73.98469,"(40.664158, -73.98469)",,,370 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418114,Sedan,,,, +05/17/2021,14:30,BROOKLYN,11207,40.690453,-73.91176,"(40.690453, -73.91176)",CENTRAL AVENUE,WEIRFIELD STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417488,Sedan,Sedan,,, +05/17/2021,4:30,,,40.666786,-73.78452,"(40.666786, -73.78452)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417363,Sedan,Sedan,,, +05/17/2021,17:42,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",48 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417770,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/17/2021,23:20,,,40.764084,-73.83336,"(40.764084, -73.83336)",35 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417613,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,19:40,BRONX,10455,40.81197,-73.91428,"(40.81197, -73.91428)",,,450 SAINT ANNS AVENUE,1,0,1,0,0,0,0,0,,,,,,4417630,E-Bike,,,, +05/06/2021,8:30,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4414055,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,18:24,BRONX,10466,40.89099,-73.86211,"(40.89099, -73.86211)",,,4055 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417805,Sedan,Sedan,,, +05/17/2021,19:57,QUEENS,11436,40.67681,-73.79405,"(40.67681, -73.79405)",120 AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,Unspecified,Unspecified,,4417683,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/17/2021,8:23,,,,,,QUEENSBORO BRIDGE LOWER,,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417780,E-Bike,E-Bike,,, +05/17/2021,1:25,,,40.881504,-73.879364,"(40.881504, -73.879364)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4417394,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/17/2021,9:32,BROOKLYN,11212,40.665844,-73.908295,"(40.665844, -73.908295)",,,325 BLAKE AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,Unspecified,,,4417468,Station Wagon/Sport Utility Vehicle,Bike,Pick-up Truck,, +05/17/2021,6:00,BROOKLYN,11236,40.63947,-73.902756,"(40.63947, -73.902756)",AVENUE J,EAST 92 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4417583,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/14/2021,18:33,QUEENS,11106,40.765224,-73.9317,"(40.765224, -73.9317)",BROADWAY,21 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418163,,,,, +05/16/2021,19:10,QUEENS,11385,40.693436,-73.8962,"(40.693436, -73.8962)",,,80-44 CYPRESS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4418269,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,18:40,,,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,23:40,BRONX,10469,40.866573,-73.83876,"(40.866573, -73.83876)",EAST GUN HILL ROAD,BARTOW AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418059,Sedan,Sedan,,, +05/16/2021,21:28,QUEENS,11378,,,,,,69-95 QUEENS MIDTOWN EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418186,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,13:23,MANHATTAN,10029,40.790623,-73.942444,"(40.790623, -73.942444)",EAST 106 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417514,Sedan,Pick-up Truck,,, +05/16/2021,10:00,BROOKLYN,11238,40.673294,-73.96066,"(40.673294, -73.96066)",,,792 CLASSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418254,Sedan,,,, +05/17/2021,13:00,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4417552,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,12:27,,,,,,THROGS NECK BRIDGE,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4418118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,8:00,,,40.8439,-73.91171,"(40.8439, -73.91171)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417434,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,18:59,MANHATTAN,10027,40.80875,-73.959656,"(40.80875, -73.959656)",WEST 119 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542830,Sedan,Sedan,,, +06/29/2022,12:15,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,197 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4541992,Sedan,Sedan,Sedan,, +05/17/2021,17:15,STATEN ISLAND,10305,40.618187,-74.06915,"(40.618187, -74.06915)",BAY STREET,LYNHURST AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417752,Sedan,Sedan,,, +05/12/2021,18:20,BROOKLYN,11226,40.655754,-73.958015,"(40.655754, -73.958015)",,,388 PARKSIDE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418263,Sedan,Sedan,,, +05/17/2021,18:10,,,40.676403,-73.96287,"(40.676403, -73.96287)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417898,Station Wagon/Sport Utility Vehicle,OTHER,,, +05/14/2021,13:00,BROOKLYN,11217,40.675385,-73.97485,"(40.675385, -73.97485)",,,70 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418109,Box Truck,Sedan,,, +05/17/2021,15:29,BROOKLYN,11235,40.592216,-73.946175,"(40.592216, -73.946175)",,,2442 EAST 24 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417606,Station Wagon/Sport Utility Vehicle,Bike,,, +05/17/2021,17:50,MANHATTAN,10033,40.84439,-73.933624,"(40.84439, -73.933624)",,,2318 AMSTERDAM AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4418076,Bike,,,, +05/17/2021,12:00,BRONX,10451,,,,Third Ave,E 143 St,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417626,Sedan,Sedan,,, +05/17/2021,16:00,QUEENS,11411,40.701885,-73.73824,"(40.701885, -73.73824)",114 AVENUE,219 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417562,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,14:35,BROOKLYN,11221,40.69407,-73.91406,"(40.69407, -73.91406)",WILSON AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417672,Sedan,Chassis Cab,,, +05/17/2021,11:58,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,WEST 145 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418155,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,17:46,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4417531,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,22:40,QUEENS,11413,40.659355,-73.75005,"(40.659355, -73.75005)",230 PLACE,146 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4416528,E-Scooter,,,, +05/17/2021,9:17,,,40.528374,-74.20203,"(40.528374, -74.20203)",VALDEMAR AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,15:35,QUEENS,11385,40.706158,-73.907845,"(40.706158, -73.907845)",GROVE STREET,WOODWARD AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418199,Sedan,Bike,,, +05/17/2021,21:30,QUEENS,11434,40.67665,-73.780655,"(40.67665, -73.780655)",128 AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417642,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,22:02,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4417570,Sedan,Sedan,Sedan,, +05/17/2021,17:50,BROOKLYN,11231,40.678654,-74.01629,"(40.678654, -74.01629)",DIKEMAN STREET,FERRIS STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417643,Sedan,,,, +05/17/2021,23:50,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417620,Sedan,Sedan,,, +05/14/2021,20:58,MANHATTAN,10009,40.7259,-73.97941,"(40.7259, -73.97941)",,,635 EAST 9 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4418088,Sedan,Sedan,,, +05/17/2021,1:48,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417146,Sedan,,,, +05/16/2021,16:00,BROOKLYN,11215,40.6754,-73.9887,"(40.6754, -73.9887)",,,214 3 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418123,Sedan,,,, +05/16/2021,0:00,,,40.676132,-73.921906,"(40.676132, -73.921906)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/17/2021,17:35,,,,,,BARTOW CIRCLE,SHORE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417547,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,18:20,STATEN ISLAND,10312,40.54534,-74.160576,"(40.54534, -74.160576)",,,4343 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417868,Sedan,Sedan,,, +05/03/2021,11:00,BROOKLYN,11213,40.67221,-73.92802,"(40.67221, -73.92802)",PARK PLACE,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418239,PK,Sedan,,, +03/26/2021,21:53,,,40.697216,-73.872955,"(40.697216, -73.872955)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418191,Sedan,Sedan,,, +05/17/2021,17:56,,,40.669117,-73.905716,"(40.669117, -73.905716)",BELMONT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4418067,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/17/2021,4:30,,,40.74766,-73.86346,"(40.74766, -73.86346)",NATIONAL STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4417267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/09/2021,16:35,MANHATTAN,10011,40.731705,-74.00096,"(40.731705, -74.00096)",AVENUE OF THE AMERICAS,WEST 4 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418102,Sedan,,,, +05/17/2021,16:20,MANHATTAN,10010,40.73978,-73.97952,"(40.73978, -73.97952)",EAST 26 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417523,Sedan,Sedan,,, +05/17/2021,19:20,BROOKLYN,11211,40.71045,-73.95687,"(40.71045, -73.95687)",SOUTH 3 STREET,MARCY AVENUE,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4417621,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +05/11/2021,17:21,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,ARLINGTON PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418132,Sedan,,,, +05/17/2021,17:18,,,40.741074,-73.7258,"(40.741074, -73.7258)",UNION TURNPIKE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417563,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,12:14,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CENTRE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417840,Sedan,,,, +05/17/2021,14:00,,,40.60645,-73.974594,"(40.60645, -73.974594)",,,QUENTIN ROAD,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418027,Sedan,Bike,,, +05/17/2021,18:55,,,40.71658,-73.80124,"(40.71658, -73.80124)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417599,Sedan,Sedan,,, +05/16/2021,16:15,QUEENS,11357,40.78835,-73.83079,"(40.78835, -73.83079)",11 AVENUE,138 PLACE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4418316,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/15/2021,16:50,BROOKLYN,11220,40.64424,-74.01042,"(40.64424, -74.01042)",,,510 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418222,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/17/2021,18:20,BRONX,10467,40.865505,-73.863525,"(40.865505, -73.863525)",ALLERTON AVENUE,BARNES AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418117,E-Bike,,,, +06/30/2022,16:46,BRONX,10459,40.822117,-73.89689,"(40.822117, -73.89689)",INTERVALE AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4542510,Sedan,Sedan,,, +06/29/2022,7:42,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541765,Sedan,Bike,,, +05/17/2021,9:30,,,40.746296,-73.93041,"(40.746296, -73.93041)",43 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4417432,Sedan,Sedan,Sedan,, +05/17/2021,1:46,STATEN ISLAND,10304,40.607197,-74.09393,"(40.607197, -74.09393)",,,344 DOUGLAS ROAD,0,0,0,0,0,0,0,0,Animals Action,,,,,4417458,Sedan,,,, +05/17/2021,3:20,MANHATTAN,10036,40.758392,-73.981544,"(40.758392, -73.981544)",,,1211 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4417699,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,20:30,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418214,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,15:30,,,40.703835,-73.778496,"(40.703835, -73.778496)",180 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4417542,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/17/2021,13:56,BROOKLYN,11234,40.633472,-73.92042,"(40.633472, -73.92042)",GLENWOOD ROAD,PAERDEGAT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417798,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,20:50,MANHATTAN,10031,40.8284,-73.9453,"(40.8284, -73.9453)",AMSTERDAM AVENUE,WEST 150 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418150,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,8:35,BRONX,10458,40.87624,-73.88457,"(40.87624, -73.88457)",,,186 SAINT GEORGES CRESCENT,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417397,Dump,Sedan,,, +05/17/2021,1:15,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417648,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,16:51,QUEENS,11106,40.75774,-73.92315,"(40.75774, -73.92315)",,,36-12 34 AVENUE,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417709,Station Wagon/Sport Utility Vehicle,Bike,,, +05/17/2021,9:12,BRONX,10454,40.806076,-73.92564,"(40.806076, -73.92564)",,,85 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417442,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,22:20,,,40.664642,-73.93708,"(40.664642, -73.93708)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,16:22,,,40.599117,-73.97472,"(40.599117, -73.97472)",VAN SICKLEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4418060,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Sedan, +05/17/2021,20:56,BROOKLYN,11215,40.663284,-73.9846,"(40.663284, -73.9846)",15 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418106,Sedan,Sedan,,, +05/17/2021,21:35,BRONX,10466,40.88263,-73.839516,"(40.88263, -73.839516)",BAYCHESTER AVENUE,NEEDHAM AVENUE,,1,0,1,0,0,0,0,0,,,,,,4417825,,,,, +05/17/2021,17:00,,,40.877068,-73.906105,"(40.877068, -73.906105)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,22:30,BROOKLYN,11213,40.665115,-73.92931,"(40.665115, -73.92931)",CROWN STREET,FORD STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4417592,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,23:30,MANHATTAN,10025,40.80584,-73.96176,"(40.80584, -73.96176)",,,1111 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418284,Ambulance,Ambulance,,, +05/17/2021,19:55,QUEENS,11368,40.752464,-73.859085,"(40.752464, -73.859085)",,,108-64 38 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418267,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,15:27,,,40.69822,-73.943954,"(40.69822, -73.943954)",THROOP AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418169,,,,, +05/17/2021,14:30,,,40.53284,-74.20726,"(40.53284, -74.20726)",LENEVAR AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418034,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/17/2021,9:45,MANHATTAN,10018,40.758976,-73.99394,"(40.758976, -73.99394)",WEST 42 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418257,Box Truck,Lift Boom,,, +05/17/2021,21:10,BROOKLYN,11237,40.70499,-73.91736,"(40.70499, -73.91736)",STOCKHOLM STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417681,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/17/2021,8:30,,,,,,GRAND CENTRAL PARKWAY,111 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4417313,Motorcycle,,,, +05/17/2021,11:40,BRONX,10466,40.88601,-73.82776,"(40.88601, -73.82776)",,,4101 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417779,Tractor Truck Diesel,Sedan,,, +05/17/2021,15:36,QUEENS,11433,40.70241,-73.79253,"(40.70241, -73.79253)",165 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417490,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,5:26,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",EAST 36 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542564,Sedan,,,, +05/17/2021,15:00,,,40.691315,-73.86722,"(40.691315, -73.86722)",DEXTER COURT,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417729,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,20:20,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417655,Sedan,,,, +05/17/2021,10:51,MANHATTAN,10065,40.760536,-73.95836,"(40.760536, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417610,Taxi,,,, +05/13/2021,14:15,MANHATTAN,10025,40.805508,-73.96201,"(40.805508, -73.96201)",WEST 114 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4418283,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,21:50,BROOKLYN,11215,40.672794,-73.98329,"(40.672794, -73.98329)",5 AVENUE,3 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418113,Bike,,,, +05/17/2021,14:25,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",QUEENS BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4417629,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,12:00,QUEENS,11434,40.68111,-73.761185,"(40.68111, -73.761185)",SIDWAY PLACE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418051,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,18:39,BRONX,10459,40.82719,-73.887,"(40.82719, -73.887)",,,1280 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4418386,Sedan,Bike,,, +05/17/2021,17:05,QUEENS,11375,40.733604,-73.84995,"(40.733604, -73.84995)",108 STREET,63 DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417551,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,18:36,BROOKLYN,11234,40.63336,-73.92928,"(40.63336, -73.92928)",,,4901 KINGS HIGHWAY,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,Unspecified,,,4417799,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/17/2021,15:30,BROOKLYN,11216,40.672142,-73.94752,"(40.672142, -73.94752)",,,236 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417899,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,3:00,BROOKLYN,11236,40.63531,-73.9005,"(40.63531, -73.9005)",REMSEN AVENUE,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417586,Sedan,Sedan,,, +05/17/2021,15:55,STATEN ISLAND,10304,40.629284,-74.083885,"(40.629284, -74.083885)",OCCIDENT AVENUE,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417744,Sedan,Sedan,,, +05/17/2021,8:37,,,40.79465,-73.971794,"(40.79465, -73.971794)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417361,Sedan,Pick-up Truck,,, +05/17/2021,8:00,QUEENS,11368,40.73862,-73.8508,"(40.73862, -73.8508)",WALDRON STREET,SAULTELL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417637,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,9:20,BROOKLYN,11223,40.595673,-73.96838,"(40.595673, -73.96838)",,,2238 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/17/2021,21:43,BRONX,10453,40.84782,-73.90756,"(40.84782, -73.90756)",GRAND CONCOURSE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417644,Sedan,Motorbike,,, +05/17/2021,14:00,BROOKLYN,11206,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,VERNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417546,,,,, +05/17/2021,21:15,QUEENS,11368,40.746593,-73.85664,"(40.746593, -73.85664)",108 STREET,47 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417636,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/15/2021,1:40,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4418419,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,17:18,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418075,Sedan,,,, +05/17/2021,15:10,,,,,,BELT PARKWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4417605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/01/2022,6:55,,,40.85512,-73.872215,"(40.85512, -73.872215)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4542501,Sedan,,,, +05/17/2021,0:30,QUEENS,11102,40.768272,-73.921165,"(40.768272, -73.921165)",,,30-07 NEWTOWN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417172,Sedan,Sedan,,, +05/15/2021,13:05,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",FLATBUSH AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418125,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,14:40,BRONX,10463,,,,,,66 Van cortlandt park south,1,0,0,0,0,0,1,0,Illnes,,,,,4417863,Station Wagon/Sport Utility Vehicle,,,, +04/22/2021,10:48,,,40.67238,-73.94749,"(40.67238, -73.94749)",,,STERLING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418246,Van,Convertible,,, +05/07/2021,8:30,QUEENS,11361,40.755623,-73.778275,"(40.755623, -73.778275)",46 AVENUE,204 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418215,Sedan,Sedan,,, +05/17/2021,16:20,BRONX,10473,40.818142,-73.844696,"(40.818142, -73.844696)",,,535 HAVEMEYER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417711,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,13:00,,,40.610954,-74.00877,"(40.610954, -74.00877)",86 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417441,Pick-up Truck,Sedan,,, +05/17/2021,0:15,BROOKLYN,11233,40.682823,-73.93441,"(40.682823, -73.93441)",,,404 MACON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/17/2021,13:25,,,40.70476,-73.91996,"(40.70476, -73.91996)",HART STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4417673,Van,Sedan,,, +04/14/2021,2:30,BROOKLYN,11215,40.675133,-73.97721,"(40.675133, -73.97721)",,,766 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418122,Sedan,,,, +05/17/2021,9:30,BROOKLYN,11233,40.67502,-73.91579,"(40.67502, -73.91579)",,,2163 DEAN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4417467,Tow Truck / Wrecker,Sedan,,, +05/17/2021,9:25,,,40.595932,-73.75963,"(40.595932, -73.75963)",BEACH 26 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4417700,Beverage Truck,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,15:25,MANHATTAN,10022,40.75895,-73.96849,"(40.75895, -73.96849)",3 AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418154,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,15:59,BROOKLYN,11201,40.693592,-73.98222,"(40.693592, -73.98222)",,,168 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417535,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/17/2021,7:00,,,40.71016,-73.98854,"(40.71016, -73.98854)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,Unspecified,,,4417753,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/17/2021,6:30,BRONX,10466,40.889503,-73.85802,"(40.889503, -73.85802)",,,742 EAST 228 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418206,Sedan,,,, +05/17/2021,9:50,MANHATTAN,10029,40.79094,-73.947235,"(40.79094, -73.947235)",LEXINGTON AVENUE,EAST 104 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417373,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,18:30,,,40.85667,-73.86569,"(40.85667, -73.86569)",PELHAM PARKWAY SOUTH,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417674,Sedan,,,, +05/17/2021,7:25,STATEN ISLAND,10301,40.644848,-74.08308,"(40.644848, -74.08308)",,,170 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417749,Sedan,,,, +05/17/2021,16:47,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",AVENUE J,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417794,Sedan,,,, +05/17/2021,11:20,BRONX,10462,40.83351,-73.85809,"(40.83351, -73.85809)",,,1990 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417398,Sedan,,,, +05/17/2021,14:30,,,40.710876,-74.01439,"(40.710876, -74.01439)",LIBERTY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417465,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,23:25,BRONX,10466,40.897625,-73.85625,"(40.897625, -73.85625)",EAST 237 STREET,RICHARDSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Alcohol Involvement,Unspecified,,,4418173,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/11/2021,11:12,BROOKLYN,11214,40.610455,-73.99576,"(40.610455, -73.99576)",19 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418190,Sedan,,,, +05/17/2021,0:00,BRONX,10462,40.84361,-73.86631,"(40.84361, -73.86631)",VICTOR STREET,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417518,Sedan,,,, +05/17/2021,22:50,BRONX,10468,40.86913,-73.89582,"(40.86913, -73.89582)",EAST 196 STREET,PARKVIEW TERRACE,,1,0,1,0,0,0,0,0,,,,,,4417622,,,,, +05/07/2021,11:30,,,40.709156,-73.84107,"(40.709156, -73.84107)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418157,Box Truck,Sedan,,, +05/17/2021,18:45,BROOKLYN,11203,40.63944,-73.93489,"(40.63944, -73.93489)",FOSTER AVENUE,TROY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417858,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,19:44,BRONX,10475,40.865025,-73.82187,"(40.865025, -73.82187)",,,100 EINSTEIN LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418116,Sedan,Sedan,,, +05/17/2021,8:44,BROOKLYN,11222,40.72537,-73.95473,"(40.72537, -73.95473)",,,95 DOBBIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417431,Sedan,,,, +05/17/2021,15:30,BROOKLYN,11232,40.659912,-73.998604,"(40.659912, -73.998604)",26 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417543,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,5:04,,,40.834595,-73.861015,"(40.834595, -73.861015)",MCGRAW AVENUE,,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4417348,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/17/2021,0:50,,,40.69953,-73.91104,"(40.69953, -73.91104)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417492,Tractor Truck Diesel,Sedan,,, +05/16/2021,8:30,BROOKLYN,11216,40.670456,-73.956924,"(40.670456, -73.956924)",,,353 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418249,Sedan,,,, +05/17/2021,18:00,BROOKLYN,11211,40.711903,-73.96295,"(40.711903, -73.96295)",BEDFORD AVENUE,SOUTH 4 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4417659,E-Bike,Taxi,,, +05/17/2021,13:40,QUEENS,11435,40.68633,-73.80696,"(40.68633, -73.80696)",,,109-39 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417477,Sedan,Sedan,,, +05/15/2021,15:00,MANHATTAN,10002,40.71528,-73.97648,"(40.71528, -73.97648)",DELANCEY STREET,FDR DRIVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418341,Bike,E-Bike,,, +05/14/2021,20:02,QUEENS,11374,40.730137,-73.862366,"(40.730137, -73.862366)",QUEENS BOULEVARD,63 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4418071,Sedan,Sedan,Sedan,, +05/17/2021,13:10,STATEN ISLAND,10304,40.632275,-74.08345,"(40.632275, -74.08345)",CEBRA AVENUE,WARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417755,Sedan,Sedan,,, +05/17/2021,7:40,,,40.7462,-73.73563,"(40.7462, -73.73563)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,0:00,BRONX,10451,40.823376,-73.90912,"(40.823376, -73.90912)",3 AVENUE,EAST 162 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417691,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,23:30,QUEENS,11432,40.70636,-73.792534,"(40.70636, -73.792534)",JAMAICA AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417776,Sedan,Sedan,,, +05/17/2021,8:47,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417743,Van,Sedan,,, +05/17/2021,16:45,BRONX,10467,40.885216,-73.87937,"(40.885216, -73.87937)",JEROME AVENUE,EAST 213 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4417617,Sedan,Motorcycle,,, +05/14/2021,14:30,,,40.52864,-74.21685,"(40.52864, -74.21685)",BLOOMINGDALE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418026,Sedan,,,, +05/05/2021,15:21,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,DYRE AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4418149,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/17/2021,10:20,QUEENS,11429,40.706303,-73.74789,"(40.706303, -73.74789)",111 AVENUE,COLFAX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,7:50,,,40.824574,-73.87255,"(40.824574, -73.87255)",BRONX RIVER PARKWAY,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,12:20,BRONX,10475,40.86772,-73.83122,"(40.86772, -73.83122)",,,340 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,,,,,,4417549,,,,, +05/17/2021,3:39,BRONX,10474,,,,,,800 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417289,Tractor Truck Diesel,Tractor Truck Diesel,,, +05/16/2021,15:30,MANHATTAN,10009,40.72547,-73.98396,"(40.72547, -73.98396)",AVENUE A,EAST 6 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418091,Station Wagon/Sport Utility Vehicle,Bike,,, +05/11/2021,23:00,QUEENS,11385,40.70091,-73.88787,"(40.70091, -73.88787)",,,72-31 66 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418258,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,13:50,MANHATTAN,10005,40.705936,-74.01029,"(40.705936, -74.01029)",,,40 EXCHANGE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417459,Sedan,,,, +05/17/2021,11:58,BROOKLYN,11203,40.661266,-73.93234,"(40.661266, -73.93234)",,,844 MIDWOOD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417594,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,10:38,BROOKLYN,11206,40.696198,-73.94212,"(40.696198, -73.94212)",,,995 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418134,Pick-up Truck,,,, +05/17/2021,2:00,,,40.580734,-74.09776,"(40.580734, -74.09776)",BOUNDARY AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417871,Sedan,,,, +05/17/2021,20:55,QUEENS,11432,40.7164,-73.80797,"(40.7164, -73.80797)",,,82-85 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417600,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,23:15,QUEENS,11385,40.703262,-73.86132,"(40.703262, -73.86132)",,,87-01 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4418266,Sedan,,,, +05/17/2021,16:23,BROOKLYN,11230,40.631348,-73.95966,"(40.631348, -73.95966)",,,800 EAST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417654,Sedan,,,, +05/17/2021,21:45,MANHATTAN,10002,40.71741,-73.984,"(40.71741, -73.984)",DELANCEY STREET,RIDGE STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Following Too Closely,,,,4417969,E-Bike,Sedan,,, +05/17/2021,13:36,,,,,,EAST 14 STREET,UNION SQUARE EAST,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417576,Box Truck,,,, +05/17/2021,15:00,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,,,1,0,1,0,0,0,0,0,Brakes Defective,,,,,4417537,Motorcycle,,,, +05/17/2021,8:46,MANHATTAN,10039,40.823566,-73.93768,"(40.823566, -73.93768)",7 AVENUE,WEST 148 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4418082,Sedan,Taxi,Sedan,, +05/14/2021,17:18,BRONX,10469,40.867733,-73.85861,"(40.867733, -73.85861)",ARNOW AVENUE,PAULDING AVENUE,,4,0,0,0,0,0,4,0,Other Vehicular,View Obstructed/Limited,,,,4418105,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,18:35,,,40.693874,-73.91777,"(40.693874, -73.91777)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417680,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/17/2021,10:20,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417833,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,21:50,,,40.58369,-73.92157,"(40.58369, -73.92157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417608,Sedan,,,, +05/14/2021,14:52,,,40.81574,-73.95456,"(40.81574, -73.95456)",WEST 130 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4418286,Pick-up Truck,E-Bike,,, +05/17/2021,14:30,BRONX,10475,40.879948,-73.82339,"(40.879948, -73.82339)",COOP CITY BOULEVARD,PEARTREE AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4417639,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,13:48,,,40.625515,-74.15226,"(40.625515, -74.15226)",EUNICE PLACE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418153,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,17:45,STATEN ISLAND,10309,40.527668,-74.230225,"(40.527668, -74.230225)",VETERANS ROAD WEST,TYRELLAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418033,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/11/2021,15:30,BROOKLYN,11216,40.674313,-73.95009,"(40.674313, -73.95009)",NOSTRAND AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418238,Sedan,,,, +05/17/2021,12:45,BROOKLYN,11226,40.63679,-73.95744,"(40.63679, -73.95744)",FOSTER AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417646,FDNY,Sedan,,, +05/16/2021,17:20,QUEENS,11385,40.70284,-73.90529,"(40.70284, -73.90529)",MADISON STREET,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418216,Station Wagon/Sport Utility Vehicle,Bus,,, +05/17/2021,2:00,BRONX,10454,40.808132,-73.916595,"(40.808132, -73.916595)",EAST 140 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417178,Sedan,Sedan,,, +05/16/2021,18:40,BROOKLYN,11215,40.66975,-73.98749,"(40.66975, -73.98749)",,,275 9 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418126,Sedan,Sedan,,, +05/05/2021,13:39,MANHATTAN,10027,,,,Frederick Douglass Blvd,W 131 st,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418083,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,11:10,BRONX,10463,40.885944,-73.90988,"(40.885944, -73.90988)",,,3520 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417555,Sedan,,,, +05/17/2021,9:00,BROOKLYN,11205,40.697918,-73.9728,"(40.697918, -73.9728)",FLUSHING AVENUE,ADELPHI STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4417723,Motorcycle,Sedan,,, +05/17/2021,14:30,BRONX,10472,40.831215,-73.85628,"(40.831215, -73.85628)",,,2040 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417446,Sedan,,,, +05/17/2021,12:45,,,40.59527,-73.781845,"(40.59527, -73.781845)",BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4417702,Sedan,Box Truck,,, +05/15/2021,6:29,BRONX,10461,40.842094,-73.84836,"(40.842094, -73.84836)",MACLAY AVENUE,MONTGOMERY PLACE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4418111,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/17/2021,16:30,STATEN ISLAND,10304,40.59703,-74.09337,"(40.59703, -74.09337)",RICHMOND ROAD,OLD TOWN ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417873,Sedan,Sedan,,, +05/17/2021,22:25,,,40.86268,-73.90905,"(40.86268, -73.90905)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417615,Sedan,Motorbike,,, +05/17/2021,12:13,BROOKLYN,11249,40.712055,-73.96615,"(40.712055, -73.96615)",WYTHE AVENUE,SOUTH 5 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418417,Sedan,Bike,,, +05/17/2021,7:50,BRONX,10451,40.817738,-73.924164,"(40.817738, -73.924164)",,,234 EAST 149 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417628,Sedan,,,, +05/17/2021,16:30,BROOKLYN,11234,40.624893,-73.934326,"(40.624893, -73.934326)",KINGS HIGHWAY,HUBBARD PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417800,,,,, +05/17/2021,18:05,BRONX,10452,40.843204,-73.91196,"(40.843204, -73.91196)",EAST MOUNT EDEN AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417668,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,7:30,QUEENS,11423,40.709476,-73.76393,"(40.709476, -73.76393)",195 STREET,100 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4417475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,16:20,MANHATTAN,10031,40.827835,-73.94786,"(40.827835, -73.94786)",,,560 WEST 148 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417533,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,12:58,QUEENS,11385,40.702976,-73.85876,"(40.702976, -73.85876)",MYRTLE AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418205,Station Wagon/Sport Utility Vehicle,MOPED,,, +06/29/2022,15:36,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,BROADWAY,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4541966,Station Wagon/Sport Utility Vehicle,Motorcycle,Pick-up Truck,, +05/12/2021,16:30,QUEENS,11101,40.753304,-73.91476,"(40.753304, -73.91476)",,,34-51 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418159,Sedan,,,, +05/17/2021,12:50,BROOKLYN,11207,40.674114,-73.88975,"(40.674114, -73.88975)",HENDRIX STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417675,Sedan,,,, +05/17/2021,15:22,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417585,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,9:30,QUEENS,11372,40.75595,-73.88165,"(40.75595, -73.88165)",NORTHERN BOULEVARD,86 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418275,Sedan,,,, +05/02/2021,1:27,BROOKLYN,11215,40.664486,-73.98359,"(40.664486, -73.98359)",7 AVENUE,13 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4418121,Sedan,Taxi,,, +05/13/2021,11:00,BRONX,10469,40.86786,-73.84123,"(40.86786, -73.84123)",EAST GUN HILL ROAD,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418244,NYS Ambula,Uhaul Truc,,, +05/17/2021,11:40,BROOKLYN,11210,40.631847,-73.94435,"(40.631847, -73.94435)",,,3320 AVENUE H,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417478,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,17:40,QUEENS,11354,40.769684,-73.82165,"(40.769684, -73.82165)",146 STREET,32 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417538,Sedan,Sedan,,, +05/17/2021,22:27,BROOKLYN,11203,40.641563,-73.938736,"(40.641563, -73.938736)",,,4017 AVENUE D,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4417834,Sedan,Van,Van,, +05/17/2021,12:30,STATEN ISLAND,10304,40.609108,-74.08799,"(40.609108, -74.08799)",,,755 TARGEE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417750,Sedan,Sedan,,, +05/17/2021,17:08,BRONX,10457,40.84985,-73.892334,"(40.84985, -73.892334)",EAST 180 STREET,LAFONTAINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417759,Sedan,E-Bike,,, +05/13/2021,13:50,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,4:30,QUEENS,11365,40.738613,-73.80241,"(40.738613, -73.80241)",,,166-15 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4417370,Sedan,Tractor Truck Diesel,,, +05/17/2021,0:00,BRONX,10465,40.8485,-73.820496,"(40.8485, -73.820496)",MIDDLETOWN ROAD,STADIUM AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4417635,Sedan,Bike,,, +05/17/2021,15:50,,,40.829506,-73.93177,"(40.829506, -73.93177)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4418366,Tractor Truck Diesel,Sedan,,, +05/17/2021,0:40,,,40.597878,-74.137856,"(40.597878, -74.137856)",,,187 FIELDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417437,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,0:34,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4418344,Dump,Sedan,Sedan,, +05/17/2021,16:32,BROOKLYN,11207,40.671715,-73.8882,"(40.671715, -73.8882)",BELMONT AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417679,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,5:30,MANHATTAN,10003,40.727757,-73.985664,"(40.727757, -73.985664)",,,83 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417347,Sedan,Sedan,,, +05/17/2021,16:12,MANHATTAN,10024,40.784534,-73.9736,"(40.784534, -73.9736)",COLUMBUS AVENUE,WEST 83 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,,,4417545,Box Truck,Sedan,Sedan,, +05/17/2021,14:00,,,40.580616,-74.152534,"(40.580616, -74.152534)",RICHMOND HILL ROAD,FOREST HILL ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417746,Station Wagon/Sport Utility Vehicle,Bike,,, +05/08/2021,17:22,,,40.674145,-73.93062,"(40.674145, -73.93062)",UTICA AVENUE,,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4418251,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +05/17/2021,15:30,BROOKLYN,11226,40.655514,-73.959854,"(40.655514, -73.959854)",,,724 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4417658,Station Wagon/Sport Utility Vehicle,Bike,,, +05/17/2021,14:52,BROOKLYN,11235,40.588253,-73.95053,"(40.588253, -73.95053)",,,2602 EAST 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417464,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,13:30,BROOKLYN,11215,40.66696,-73.97645,"(40.66696, -73.97645)",,,589 6 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418104,Pick-up Truck,Sedan,,, +05/17/2021,23:50,,,40.718857,-73.946236,"(40.718857, -73.946236)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418064,Sedan,Sedan,,, +05/17/2021,15:52,BROOKLYN,11225,40.663124,-73.96244,"(40.663124, -73.96244)",OCEAN AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417595,Bus,Sedan,,, +05/17/2021,0:00,BROOKLYN,11219,40.630547,-74.00934,"(40.630547, -74.00934)",,,6501 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417567,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,18:45,QUEENS,11369,40.76605,-73.87587,"(40.76605, -73.87587)",94 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4417852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/17/2021,12:53,BROOKLYN,11214,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,BATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418024,Sedan,Sedan,,, +05/17/2021,18:05,BROOKLYN,11209,40.631687,-74.02174,"(40.631687, -74.02174)",72 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417601,MOPED,Sedan,,, +05/06/2021,15:00,QUEENS,11379,40.714436,-73.8871,"(40.714436, -73.8871)",,,66-15 69 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418259,Box Truck,,,, +05/17/2021,7:05,STATEN ISLAND,10308,40.542423,-74.14592,"(40.542423, -74.14592)",HYLAN BOULEVARD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417461,Bus,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,15:41,BROOKLYN,11236,40.645874,-73.892845,"(40.645874, -73.892845)",AVENUE J,EAST 105 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418230,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,6:21,BROOKLYN,11229,40.610138,-73.9611,"(40.610138, -73.9611)",,,1223 AVENUE P,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4417413,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,16:40,,,,,,FLATBUSH AVENUE,EASTERN PARKWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4418115,Station Wagon/Sport Utility Vehicle,Bike,,, +05/17/2021,14:40,QUEENS,11434,40.68022,-73.775505,"(40.68022, -73.775505)",BAISLEY BOULEVARD,168 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4417686,E-Bike,Sedan,,, +05/17/2021,21:55,QUEENS,11423,40.710484,-73.75845,"(40.710484, -73.75845)",,,100-42 201 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417775,Sedan,,,, +05/17/2021,14:00,,,40.70128,-73.93951,"(40.70128, -73.93951)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417499,Station Wagon/Sport Utility Vehicle,School Bus,,, +05/17/2021,7:55,,,40.868748,-73.89497,"(40.868748, -73.89497)",EAST 196 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417618,Sedan,,,, +05/17/2021,0:00,BROOKLYN,11230,40.620525,-73.95929,"(40.620525, -73.95929)",,,1600 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,,,,,4417651,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,10:35,BROOKLYN,11207,40.66701,-73.9004,"(40.66701, -73.9004)",SNEDIKER AVENUE,BLAKE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4417399,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,7:10,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",118 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417292,Taxi,Bike,,, +05/17/2021,14:00,,,40.689354,-73.936325,"(40.689354, -73.936325)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417548,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,21:59,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418187,Sedan,Bike,,, +05/17/2021,16:10,BRONX,10458,40.867424,-73.89182,"(40.867424, -73.89182)",VALENTINE AVENUE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417624,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,10:26,MANHATTAN,10014,40.730103,-74.0048,"(40.730103, -74.0048)",,,21 7 AVENUE SOUTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417517,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,16:35,MANHATTAN,10001,40.748093,-73.993454,"(40.748093, -73.993454)",,,207 WEST 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418070,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,8:34,,,,,,ALBEE SQUARE MALL,ALBEE SQUARE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4418098,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,20:50,STATEN ISLAND,10308,40.54101,-74.14711,"(40.54101, -74.14711)",HYLAN BOULEVARD,WIMAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,13:10,BROOKLYN,11211,40.71558,-73.960144,"(40.71558, -73.960144)",NORTH 3 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4418144,Box Truck,,,, +05/17/2021,12:49,QUEENS,11422,40.658974,-73.744225,"(40.658974, -73.744225)",EDGEWOOD AVENUE,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417560,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,18:06,,,40.8059,-73.92523,"(40.8059, -73.92523)",WILLIS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417973,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,22:15,BRONX,10466,40.893303,-73.85706,"(40.893303, -73.85706)",,,703 EAST 233 STREET,1,0,0,0,1,0,0,0,Alcohol Involvement,,,,,4418184,Bike,,,, +05/17/2021,14:11,BROOKLYN,11207,40.664146,-73.88186,"(40.664146, -73.88186)",HEGEMAN AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417676,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,12:40,,,40.818424,-73.94515,"(40.818424, -73.94515)",8 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,,,,4418218,Taxi,Motorcycle,,, +05/14/2021,20:30,BROOKLYN,11221,40.687828,-73.943184,"(40.687828, -73.943184)",,,425A QUINCY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418253,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,8:20,QUEENS,11427,40.72168,-73.75858,"(40.72168, -73.75858)",,,207-05 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417447,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,20:00,BRONX,10451,40.821274,-73.91743,"(40.821274, -73.91743)",EAST 156 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417727,Sedan,,,, +05/17/2021,7:15,BROOKLYN,11217,40.680775,-73.97448,"(40.680775, -73.97448)",,,65 6 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4418120,Tractor Truck Diesel,Sedan,Sedan,, +05/17/2021,22:00,,,40.841618,-73.91448,"(40.841618, -73.91448)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417669,Sedan,,,, +05/17/2021,9:47,,,40.75831,-73.96294,"(40.75831, -73.96294)",1 AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417436,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/27/2022,0:00,BRONX,10463,40.884033,-73.89797,"(40.884033, -73.89797)",WEST 238 STREET,BAILEY AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542719,Sedan,E-Scooter,,, +05/17/2021,17:40,BROOKLYN,11210,40.634354,-73.94202,"(40.634354, -73.94202)",GLENWOOD ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417785,PK,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,15:34,BRONX,10460,40.839798,-73.873604,"(40.839798, -73.873604)",MORRIS PARK AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417761,Sedan,Sedan,,, +05/17/2021,9:05,,,40.723503,-73.97929,"(40.723503, -73.97929)",EAST 6 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417390,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,12:10,BROOKLYN,11211,40.715813,-73.95892,"(40.715813, -73.95892)",,,155 NORTH 4 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418145,Van,Sedan,,, +04/28/2021,16:35,BROOKLYN,11238,40.677513,-73.95913,"(40.677513, -73.95913)",CLASSON AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418237,Bike,,,, +05/17/2021,14:22,,,,,,ELLINGTON PARKWAY,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4417882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,22:13,BROOKLYN,11213,40.67533,-73.93609,"(40.67533, -73.93609)",BERGEN STREET,TROY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418272,Sedan,Sedan,,, +05/17/2021,6:00,,,,,,HOMECREST AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417607,Sedan,,,, +05/17/2021,8:15,,,,,,WEST 155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418081,Sedan,,,, +05/11/2021,20:00,MANHATTAN,10009,40.723278,-73.98253,"(40.723278, -73.98253)",EAST 4 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418087,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,5:57,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE EXTENSION,FULTON STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4417194,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,23:00,QUEENS,11385,40.692585,-73.90265,"(40.692585, -73.90265)",,,15-20 COOPER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418200,Sedan,,,, +05/17/2021,13:25,QUEENS,11368,40.739048,-73.852776,"(40.739048, -73.852776)",,,59-14 108 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,15:30,BRONX,10452,40.845142,-73.91106,"(40.845142, -73.91106)",GRAND CONCOURSE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417647,Sedan,Sedan,,, +05/14/2021,0:00,,,40.88031,-73.91854,"(40.88031, -73.91854)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4418400,Sedan,,,, +05/08/2021,10:09,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418127,Sedan,Sedan,,, +05/17/2021,18:00,QUEENS,11422,40.668186,-73.74111,"(40.668186, -73.74111)",139 AVENUE,233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417553,Sedan,,,, +05/17/2021,23:00,BROOKLYN,11220,40.642174,-74.02064,"(40.642174, -74.02064)",60 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4417801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,12:40,BROOKLYN,11236,40.638165,-73.90476,"(40.638165, -73.90476)",,,8904 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,,,,,4417584,Sedan,,,, +05/02/2021,0:06,,,40.773415,-73.89338,"(40.773415, -73.89338)",77 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418160,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,8:57,,,40.819378,-73.96035,"(40.819378, -73.96035)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418289,Sedan,,,, +05/17/2021,15:25,BRONX,10461,40.840263,-73.84717,"(40.840263, -73.84717)",SAINT PETERS AVENUE,GLEBE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417640,Sedan,Sedan,,, +05/17/2021,13:10,BROOKLYN,11203,40.650467,-73.92443,"(40.650467, -73.92443)",SNYDER AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417474,Sedan,,,, +05/17/2021,0:30,MANHATTAN,10035,40.80447,-73.93735,"(40.80447, -73.93735)",,,2067 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417367,Sedan,Sedan,,, +05/17/2021,17:20,,,40.595802,-73.76762,"(40.595802, -73.76762)",BEACH 35 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417706,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,23:05,,,40.68418,-73.983955,"(40.68418, -73.983955)",NEVINS STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4417838,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,16:30,QUEENS,11354,40.762226,-73.834076,"(40.762226, -73.834076)",BUD PLACE,36 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417539,Sedan,,,, +05/17/2021,13:00,BROOKLYN,11201,40.688614,-73.989174,"(40.688614, -73.989174)",ATLANTIC AVENUE,SMITH STREET,,2,0,0,0,1,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417532,Motorcycle,Bike,,, +05/17/2021,16:30,,,40.625404,-74.13528,"(40.625404, -74.13528)",,,1376 FOREST AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4417751,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,22:15,BRONX,10466,40.890354,-73.84175,"(40.890354, -73.84175)",DEREIMER AVENUE,STRANG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418152,TOW TRUCK,Sedan,,, +05/17/2021,9:30,QUEENS,11362,40.75166,-73.74273,"(40.75166, -73.74273)",WEST ALLEY ROAD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417574,Box Truck,Convertible,,, +05/17/2021,23:30,QUEENS,11429,40.71232,-73.73202,"(40.71232, -73.73202)",HEMPSTEAD AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417614,Sedan,Tractor Truck Diesel,,, +05/17/2021,11:00,BROOKLYN,11215,40.67087,-73.974945,"(40.67087, -73.974945)",,,181 8 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418110,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,15:10,QUEENS,11355,40.7527,-73.83139,"(40.7527, -73.83139)",,,132-35 AVERY AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4418055,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,15:40,MANHATTAN,10011,40.741264,-74.00198,"(40.741264, -74.00198)",,,301 WEST 16 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418264,Station Wagon/Sport Utility Vehicle,Bike,,, +05/15/2021,11:15,BRONX,10456,40.83279,-73.91439,"(40.83279, -73.91439)",,,1185 MORRIS AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418359,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,19:25,BRONX,10455,40.809456,-73.909454,"(40.809456, -73.909454)",EAST 144 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417627,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,13:00,QUEENS,11422,40.654804,-73.726364,"(40.654804, -73.726364)",,,147-73 HOOK CREEK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417561,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,15:28,BROOKLYN,11233,40.676445,-73.92762,"(40.676445, -73.92762)",ROCHESTER AVENUE,PACIFIC STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418243,Station Wagon/Sport Utility Vehicle,Bike,,, +05/17/2021,13:30,,,40.575565,-73.98121,"(40.575565, -73.98121)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417982,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,0:08,,,40.557568,-74.207,"(40.557568, -74.207)",VETERANS ROAD WEST,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4418031,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,18:03,BROOKLYN,11215,40.67267,-73.99002,"(40.67267, -73.99002)",3 AVENUE,7 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4418065,Sedan,Taxi,,, +05/17/2021,14:10,QUEENS,11367,,,,MAIN STREET,78 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417597,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,6:00,BRONX,10457,40.84084,-73.901566,"(40.84084, -73.901566)",,,1647 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542432,Ambulance,,,, +07/01/2022,21:40,QUEENS,11432,40.715023,-73.80765,"(40.715023, -73.80765)",PARSONS BOULEVARD,COOLIDGE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542784,E-Bike,Sedan,,, +06/25/2022,14:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4543053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,15:15,,,40.690884,-73.912506,"(40.690884, -73.912506)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542140,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,0:40,,,,,,HARLEM RIVER DRIVE,WEST 159 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542942,Sedan,,,, +06/30/2022,22:30,,,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542621,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,22:26,BROOKLYN,11203,40.65692,-73.926094,"(40.65692, -73.926094)",CLARKSON AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4541952,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/30/2022,14:30,BRONX,10465,40.82457,-73.8391,"(40.82457, -73.8391)",BRUSH AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542585,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,9:00,QUEENS,11418,40.70236,-73.81854,"(40.70236, -73.81854)",,,134-12 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,18:15,QUEENS,11429,40.708405,-73.730835,"(40.708405, -73.730835)",107 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542348,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,12:30,MANHATTAN,10028,40.77719,-73.95225,"(40.77719, -73.95225)",2 AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543084,Box Truck,Sedan,,, +06/30/2022,12:40,,,40.786,-73.84574,"(40.786, -73.84574)",COLLEGE POINT BOULEVARD,14 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4542245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,4:17,BROOKLYN,11236,40.630016,-73.89715,"(40.630016, -73.89715)",,,1459 EAST 88 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542921,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,16:04,MANHATTAN,10030,40.81937,-73.937706,"(40.81937, -73.937706)",,,103 WEST 143 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542469,Station Wagon/Sport Utility Vehicle,PK,,, +07/01/2022,19:55,,,40.657173,-73.921074,"(40.657173, -73.921074)",EAST 93 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542669,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,13:10,,,,,,,,102 WEST DRIVE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542016,Bike,E-Bike,,, +06/29/2022,21:45,BROOKLYN,11222,40.721924,-73.93681,"(40.721924, -73.93681)",VANDERVORT AVENUE,BEADEL STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542189,Sedan,Motorcycle,,, +07/01/2022,20:15,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",WYCKOFF AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542878,Van,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,16:20,,,40.731422,-73.94641,"(40.731422, -73.94641)",GREENPOINT AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543025,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/01/2022,3:00,QUEENS,11435,40.703293,-73.806984,"(40.703293, -73.806984)",,,148-09 90 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,15:00,QUEENS,11432,40.70616,-73.79882,"(40.70616, -73.79882)",,,89-35 162 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542260,Sedan,,,, +06/30/2022,6:25,BROOKLYN,11235,40.585556,-73.94881,"(40.585556, -73.94881)",,,3100 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542525,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/30/2022,14:13,BROOKLYN,11226,40.646885,-73.94916,"(40.646885, -73.94916)",TILDEN AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4542224,Sedan,Taxi,Taxi,, +06/29/2022,16:56,BROOKLYN,11230,40.623516,-73.976585,"(40.623516, -73.976585)",,,15 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543155,Sedan,Box Truck,,, +06/29/2022,17:30,BROOKLYN,11229,40.592915,-73.95528,"(40.592915, -73.95528)",,,2375 EAST 15 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542071,Sedan,Sedan,,, +06/25/2022,1:28,BRONX,10466,40.893646,-73.84393,"(40.893646, -73.84393)",,,4120 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4542892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,16:51,BROOKLYN,11234,40.620335,-73.938896,"(40.620335, -73.938896)",AVENUE M,EAST 37 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4542307,Sedan,Sedan,,, +06/30/2022,15:50,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542393,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,8:55,,,40.73632,-73.85631,"(40.73632, -73.85631)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4543049,Box Truck,Sedan,,, +05/18/2021,4:56,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4417682,Taxi,Tractor Truck Diesel,,, +03/31/2022,17:30,MANHATTAN,10025,,,,,,243 Riverside drive,0,0,0,0,0,0,0,0,Unspecified,,,,,4515232,Sedan,,,, +06/21/2022,17:33,BROOKLYN,11204,40.61747,-73.98129,"(40.61747, -73.98129)",21 AVENUE,61 STREET,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542538,E-Bike,,,, +06/29/2022,17:00,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",NORTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542009,Sedan,,,, +07/01/2022,14:12,BRONX,10461,40.851856,-73.843864,"(40.851856, -73.843864)",,,1916 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542974,Sedan,,,, +06/25/2022,19:35,MANHATTAN,10002,40.717754,-73.99406,"(40.717754, -73.99406)",,,95 CHRYSTIE STREET,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4542496,Sedan,Sedan,,, +06/30/2022,16:00,MANHATTAN,10065,40.764988,-73.96116,"(40.764988, -73.96116)",2 AVENUE,EAST 66 STREET,,1,0,0,0,1,0,0,0,Outside Car Distraction,Unspecified,,,,4542342,Bike,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,15:00,QUEENS,11385,40.706184,-73.91256,"(40.706184, -73.91256)",,,1814 HARMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542481,Sedan,,,, +06/24/2022,16:00,BROOKLYN,11217,40.6798,-73.985085,"(40.6798, -73.985085)",,,580 DE GRAW STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542570,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,2:30,,,40.734993,-73.83644,"(40.734993, -73.83644)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542000,Pick-up Truck,,,, +04/25/2022,4:10,BRONX,10463,40.886528,-73.89979,"(40.886528, -73.89979)",WEST 240 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4542714,Sedan,,,, +06/29/2022,0:04,,,,,,,,27 NAVY STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4541685,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +06/27/2022,10:00,BRONX,10466,40.889008,-73.85642,"(40.889008, -73.85642)",EAST 228 STREET,BARNES AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4542975,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,14:22,BROOKLYN,11207,40.66545,-73.88939,"(40.66545, -73.88939)",LIVONIA AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4542437,,,,, +06/22/2022,17:10,QUEENS,11101,40.752403,-73.92442,"(40.752403, -73.92442)",NORTHERN BOULEVARD,STEINWAY STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542633,Bike,Sedan,,, +06/29/2022,19:30,,,40.734337,-73.91025,"(40.734337, -73.91025)",58 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4541925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,13:15,BROOKLYN,11238,40.68333,-73.95612,"(40.68333, -73.95612)",FRANKLIN AVENUE,PUTNAM AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542840,Bike,,,, +07/01/2022,4:14,BRONX,10473,40.811913,-73.856445,"(40.811913, -73.856445)",,,320 SOUND VIEW AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4542553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/29/2022,4:06,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Shoulders Defective/Improper,Driver Inattention/Distraction,,,,4542047,Sedan,,,, +06/20/2022,13:40,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4542792,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/30/2022,18:11,,,40.730015,-73.82348,"(40.730015, -73.82348)",MAIN STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542422,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,0:00,,,40.776356,-73.90445,"(40.776356, -73.90445)",37 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542390,Sedan,Pick-up Truck,,, +06/29/2022,22:00,QUEENS,11370,40.765377,-73.88906,"(40.765377, -73.88906)",80 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4542295,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,15:35,,,40.726658,-73.81152,"(40.726658, -73.81152)",75 AVENUE,KISSENA BOULEVARD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4542768,Motorcycle,,,, +06/24/2022,13:00,,,40.625683,-73.93344,"(40.625683, -73.93344)",KINGS HIGHWAY,AVENUE K,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4542596,Sedan,,,, +06/21/2022,17:01,MANHATTAN,10065,40.75991,-73.95882,"(40.75991, -73.95882)",EAST 61 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543095,Sedan,Sedan,,, +06/30/2022,17:10,BRONX,10451,40.819057,-73.92923,"(40.819057, -73.92923)",EAST 149 STREET,GERARD AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4542506,Sedan,Bike,,, +06/29/2022,23:00,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",VANDAM STREET,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542617,Sedan,,,, +03/31/2022,14:10,,,40.885517,-73.894684,"(40.885517, -73.894684)",VANCORTLANDT AVENUE WEST,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515279,Sedan,Sedan,,, +12/10/2021,12:14,,,40.63916,-74.0874,"(40.63916, -74.0874)",JERSEY STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4485376,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,21:59,QUEENS,11369,40.76401,-73.881226,"(40.76401, -73.881226)",88 STREET,ASTORIA BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4487264,Sedan,Sedan,,, +12/23/2021,19:20,BRONX,10454,40.801624,-73.90968,"(40.801624, -73.90968)",EAST 136 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489883,Sedan,Snow Plow,,, +12/23/2021,20:17,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489903,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,13:45,,,,,,ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489892,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,0:55,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4489880,Sedan,,,, +12/20/2021,8:30,,,40.63265,-74.14177,"(40.63265, -74.14177)",,,294 NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489899,Sedan,Sedan,,, +12/20/2021,8:39,BRONX,10454,40.80484,-73.912796,"(40.80484, -73.912796)",EAST 138 STREET,JACKSON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489891,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,21:43,BRONX,10454,40.80843,-73.92338,"(40.80843, -73.92338)",EAST 137 STREET,WILLIS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4489887,,,,, +12/23/2021,7:20,,,,,,LEONARD AVENUE,CLINTON B FISK AVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489897,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:15,,,40.597603,-74.18136,"(40.597603, -74.18136)",,,3767 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489898,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,11:18,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489900,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,14:00,MANHATTAN,10035,40.802486,-73.9367,"(40.802486, -73.9367)",,,2265 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489885,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,13:40,BRONX,10454,,,,SAINT ANNS AVENUE,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489895,Sedan,,,, +05/18/2021,8:45,STATEN ISLAND,10308,40.54456,-74.15292,"(40.54456, -74.15292)",SYCAMORE STREET,ACACIA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417881,Station Wagon/Sport Utility Vehicle,Bus,,, +12/24/2021,13:25,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489879,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,21:58,MANHATTAN,10034,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,DYCKMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489902,Taxi,Sedan,,, +02/19/2022,18:49,BROOKLYN,11208,40.672688,-73.86935,"(40.672688, -73.86935)",,,612 CRESCENT STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4504576,Sedan,Sedan,,, +02/19/2022,12:00,MANHATTAN,10024,40.788357,-73.97453,"(40.788357, -73.97453)",WEST 87 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504283,E-Scooter,,,, +02/10/2022,15:45,QUEENS,11367,40.727272,-73.81718,"(40.727272, -73.81718)",150 STREET,72 ROAD,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4502505,Sedan,,,, +02/19/2022,3:50,QUEENS,11378,40.732655,-73.92297,"(40.732655, -73.92297)",53 AVENUE,44 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4503867,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,23:05,BROOKLYN,11204,40.615433,-73.99775,"(40.615433, -73.99775)",74 STREET,17 AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4504396,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/18/2022,10:35,,,40.82764,-73.84791,"(40.82764, -73.84791)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,22:00,BROOKLYN,11209,40.631268,-74.03081,"(40.631268, -74.03081)",,,7603 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4504156,Station Wagon/Sport Utility Vehicle,,,, +02/17/2022,16:00,BROOKLYN,11207,40.65892,-73.889824,"(40.65892, -73.889824)",LINDEN BOULEVARD,NEW JERSEY AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4504557,Sedan,E-Scooter,,, +02/19/2022,0:03,BROOKLYN,11213,40.67004,-73.93658,"(40.67004, -73.93658)",TROY AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504223,Sedan,Sedan,,, +02/19/2022,21:20,BRONX,10465,40.828518,-73.84119,"(40.828518, -73.84119)",BRUSH AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,9:15,MANHATTAN,10009,40.732906,-73.975204,"(40.732906, -73.975204)",,,610 EAST 20 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504021,Pick-up Truck,Sedan,,, +12/16/2021,19:09,,,40.877106,-73.90616,"(40.877106, -73.90616)",WEST 230 STREET,BROADWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4489715,Sedan,Bus,,, +12/22/2021,16:40,,,40.788357,-73.97453,"(40.788357, -73.97453)",WEST 87 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4488900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,21:30,BROOKLYN,11214,40.591667,-73.986534,"(40.591667, -73.986534)",BATH AVENUE,27 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489679,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,18:03,,,40.677067,-73.899666,"(40.677067, -73.899666)",JAMAICA AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,,,,,,4489330,,,,, +12/23/2021,3:45,,,40.655334,-73.93077,"(40.655334, -73.93077)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489017,Sedan,,,, +12/22/2021,15:23,BROOKLYN,11223,40.597477,-73.96871,"(40.597477, -73.96871)",AVENUE U,EAST 3 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488958,Sedan,Sedan,,, +12/23/2021,9:30,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489312,Sedan,Sedan,,, +12/23/2021,15:20,QUEENS,11691,40.60308,-73.75317,"(40.60308, -73.75317)",,,1037 BEACH 20 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489298,Station Wagon/Sport Utility Vehicle,Bus,,, +12/15/2021,6:00,BRONX,10466,40.902126,-73.844124,"(40.902126, -73.844124)",,,962 EAST 241 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4489678,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/23/2021,15:30,,,40.68468,-74.001335,"(40.68468, -74.001335)",HICKS STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489183,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,1:06,BROOKLYN,11219,40.63782,-73.98921,"(40.63782, -73.98921)",13 AVENUE,44 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489508,Sedan,Sedan,,, +12/21/2021,12:17,,,40.837673,-73.91922,"(40.837673, -73.91922)",EAST 169 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,15:30,BROOKLYN,11201,40.68852,-73.984856,"(40.68852, -73.984856)",,,233 SCHERMERHORN STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4489166,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,2:12,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488615,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,16:27,BROOKLYN,11210,40.634655,-73.94786,"(40.634655, -73.94786)",,,2092 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489570,Sedan,,,, +12/24/2021,12:10,QUEENS,11433,40.697407,-73.78736,"(40.697407, -73.78736)",167 STREET,108 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489764,Ambulance,Sedan,,, +12/22/2021,8:44,,,40.66523,-73.931465,"(40.66523, -73.931465)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4488930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +12/24/2021,19:50,BROOKLYN,11236,40.644917,-73.894325,"(40.644917, -73.894325)",AVENUE J,EAST 103 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4489454,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/22/2021,18:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,19:45,,,40.667076,-73.99508,"(40.667076, -73.99508)",3 AVENUE,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489373,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,10:35,BROOKLYN,11214,40.609333,-73.996925,"(40.609333, -73.996925)",80 STREET,19 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489072,Sedan,,,, +12/24/2021,13:25,QUEENS,11421,40.68904,-73.85874,"(40.68904, -73.85874)",84 STREET,89 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4489519,,,,, +12/23/2021,17:31,STATEN ISLAND,10301,40.614853,-74.107956,"(40.614853, -74.107956)",VICTORY BOULEVARD,RENWICK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489601,Sedan,Sedan,,, +12/22/2021,20:45,MANHATTAN,10003,40.727814,-73.99116,"(40.727814, -73.99116)",,,25 COOPER SQUARE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488976,Sedan,Sedan,,, +12/23/2021,18:43,QUEENS,11419,40.68369,-73.83278,"(40.68369, -73.83278)",,,104-39 109 STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4489794,Sedan,Sedan,Sedan,, +12/23/2021,9:00,BROOKLYN,11208,40.68404,-73.8809,"(40.68404, -73.8809)",,,48 HALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489143,Sedan,,,, +12/23/2021,0:00,BRONX,10456,40.822807,-73.90597,"(40.822807, -73.90597)",,,920 TRINITY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489225,Bus,Van,,, +12/23/2021,12:04,BROOKLYN,11211,40.713955,-73.94259,"(40.713955, -73.94259)",DEVOE STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489266,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,2:48,QUEENS,11422,40.670937,-73.73544,"(40.670937, -73.73544)",BROOKVILLE BOULEVARD,136 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4488634,Sedan,,,, +12/22/2021,7:05,,,40.859608,-73.90778,"(40.859608, -73.90778)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4488988,Sedan,,,, +12/22/2021,20:45,QUEENS,11433,40.703712,-73.78752,"(40.703712, -73.78752)",LIBERTY AVENUE,171 STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4489180,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/22/2021,17:00,QUEENS,11421,40.686737,-73.85384,"(40.686737, -73.85384)",,,88-07 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4489344,Station Wagon/Sport Utility Vehicle,Tow Truck,,, +12/24/2021,19:10,,,,,,CLEARVIEW EXPRESSWAY,LONG ISLAND EXPRESSWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4489406,Sedan,Sedan,,, +11/16/2021,6:50,,,,,,,,1900 SCHIEFELIN PLACE,0,0,0,0,0,0,0,0,Animals Action,,,,,4489736,Sedan,,,, +12/24/2021,13:25,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4489501,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/24/2021,21:02,BRONX,10466,40.88851,-73.86009,"(40.88851, -73.86009)",EAST 226 STREET,WHITE PLAINS ROAD,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489650,Sedan,,,, +12/23/2021,20:16,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489209,AMBULANCE,,,, +12/24/2021,15:05,BRONX,10456,40.829918,-73.90185,"(40.829918, -73.90185)",,,1216 BOSTON ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4489783,Sedan,Sedan,,, +12/23/2021,12:49,BRONX,10462,40.854164,-73.867714,"(40.854164, -73.867714)",,,2128 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489124,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/29/2021,7:37,QUEENS,11379,40.709793,-73.87692,"(40.709793, -73.87692)",,,68-73 75 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489627,Sedan,Pick-up Truck,,, +07/01/2022,0:00,BROOKLYN,11231,40.67784,-73.99374,"(40.67784, -73.99374)",HOYT STREET,3 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542819,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,22:41,QUEENS,11370,40.755722,-73.89393,"(40.755722, -73.89393)",,,32-51 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489350,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,14:00,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",JUNCTION BOULEVARD,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489349,Pick-up Truck,,,, +12/22/2021,16:50,,,40.788418,-73.97077,"(40.788418, -73.97077)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,8:55,BROOKLYN,11217,40.679733,-73.97432,"(40.679733, -73.97432)",FLATBUSH AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489543,Bus,Sedan,,, +12/14/2021,7:00,MANHATTAN,10027,40.808125,-73.94634,"(40.808125, -73.94634)",,,118 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489565,Bus,,,, +12/22/2021,6:55,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",WOODHAVEN BOULEVARD,91 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489022,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,8:52,BRONX,10474,40.81813,-73.89101,"(40.81813, -73.89101)",GARRISON AVENUE,BARRETTO STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4489481,Sedan,Sedan,,, +12/24/2021,11:42,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4489843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,20:05,BROOKLYN,11236,40.642002,-73.898834,"(40.642002, -73.898834)",AVENUE J,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489444,Sedan,Van,,, +12/24/2021,7:20,MANHATTAN,10028,40.779495,-73.95559,"(40.779495, -73.95559)",EAST 86 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4489820,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,14:00,BRONX,10451,40.822838,-73.928764,"(40.822838, -73.928764)",RIVER AVENUE,EAST 151 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489305,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,13:00,QUEENS,11102,40.769787,-73.92758,"(40.769787, -73.92758)",,,21-33 30 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489548,Sedan,,,, +12/22/2021,10:19,MANHATTAN,10037,40.811565,-73.942726,"(40.811565, -73.942726)",WEST 131 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4489036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:00,,,40.71401,-73.92405,"(40.71401, -73.92405)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489773,Sedan,,,, +12/22/2021,0:00,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489080,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,17:23,BROOKLYN,11223,40.590298,-73.97239,"(40.590298, -73.97239)",,,290 AVENUE X,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:40,,,40.69756,-73.85275,"(40.69756, -73.85275)",WOODHAVEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489101,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,10:40,BROOKLYN,11214,40.599403,-73.99285,"(40.599403, -73.99285)",,,8666 23 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4488832,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,7:00,QUEENS,11420,40.682507,-73.81431,"(40.682507, -73.81431)",111 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489834,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,10:41,QUEENS,11369,40.763817,-73.880104,"(40.763817, -73.880104)",ASTORIA BOULEVARD,89 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4489382,Bike,,,, +12/22/2021,6:37,QUEENS,11418,40.69142,-73.83736,"(40.69142, -73.83736)",,,108-11 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4488761,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,13:44,,,40.712307,-73.99437,"(40.712307, -73.99437)",MADISON STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4489244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,18:50,QUEENS,11413,40.672325,-73.74681,"(40.672325, -73.74681)",,,226-09 138 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489258,Sedan,,,, +12/23/2021,17:14,BRONX,10460,40.8396,-73.86922,"(40.8396, -73.86922)",EAST TREMONT AVENUE,COMMONWLTH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489282,,,,, +05/25/2021,17:25,,,40.66961,-73.77613,"(40.66961, -73.77613)",159 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489582,Sedan,,,, +12/24/2021,20:35,BROOKLYN,11209,40.634792,-74.032326,"(40.634792, -74.032326)",72 STREET,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489401,Sedan,,,, +12/22/2021,5:50,,,40.70453,-73.817245,"(40.70453, -73.817245)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4488818,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/22/2021,10:45,,,40.60895,-74.14715,"(40.60895, -74.14715)",,,654 WILLOWBROOK ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488763,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,8:00,BROOKLYN,11201,40.69631,-73.997086,"(40.69631, -73.997086)",PIERREPONT STREET,PIERREPONT PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4489729,Dump,,,, +12/23/2021,15:36,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489192,Sedan,Sedan,,, +12/12/2021,18:42,QUEENS,11372,40.75331,-73.88498,"(40.75331, -73.88498)",,,34-06 82 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489354,Sedan,Sedan,,, +12/22/2021,10:30,BROOKLYN,11214,40.61165,-73.99774,"(40.61165, -73.99774)",18 AVENUE,78 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488863,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,6:50,BRONX,10457,40.848698,-73.89001,"(40.848698, -73.89001)",,,654 EAST 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489863,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,4:00,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",JACKSON AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4488698,Tanker,,,, +12/21/2021,14:00,BROOKLYN,11223,40.600735,-73.98218,"(40.600735, -73.98218)",AVENUE S,WEST 10 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489589,Sedan,Bike,,, +12/23/2021,9:49,BRONX,10475,40.86617,-73.822975,"(40.86617, -73.822975)",,,4160 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489099,Station Wagon/Sport Utility Vehicle,Bus,,, +12/24/2021,19:25,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4489854,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,23:50,,,40.853477,-73.82622,"(40.853477, -73.82622)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4489337,Sedan,,,, +12/22/2021,13:30,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4489487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/22/2021,17:00,BRONX,10451,40.816856,-73.92076,"(40.816856, -73.92076)",,,310 EAST 149 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4488968,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,11:25,MANHATTAN,10016,40.745796,-73.982285,"(40.745796, -73.982285)",EAST 32 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489609,Bike,Taxi,,, +12/23/2021,17:44,BROOKLYN,11210,40.617645,-73.94517,"(40.617645, -73.94517)",,,2750 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489656,Sedan,,,, +12/24/2021,0:52,QUEENS,11419,40.684387,-73.83094,"(40.684387, -73.83094)",,,104-25 111 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489825,Sedan,,,, +12/22/2021,17:22,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488996,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,3:30,QUEENS,11103,40.76379,-73.914795,"(40.76379, -73.914795)",NEWTOWN ROAD,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489309,Sedan,Pick-up Truck,,, +12/24/2021,6:58,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4489322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,7:50,BROOKLYN,11219,40.630016,-73.9959,"(40.630016, -73.9959)",NEW UTRECHT AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4489115,Sedan,LIMO,Station Wagon/Sport Utility Vehicle,, +12/23/2021,19:35,BROOKLYN,11226,40.646004,-73.95808,"(40.646004, -73.95808)",,,1027 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489555,Sedan,Sedan,,, +12/19/2021,2:45,QUEENS,11105,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,SOUND STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489430,Sedan,Sedan,,, +12/23/2021,9:15,MANHATTAN,10003,40.732754,-73.99004,"(40.732754, -73.99004)",EAST 12 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489042,Pick-up Truck,van,,, +12/24/2021,16:20,BROOKLYN,11203,40.641304,-73.94276,"(40.641304, -73.94276)",BROOKLYN AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489575,Sedan,Sedan,,, +12/23/2021,2:02,MANHATTAN,10033,40.845158,-73.93591,"(40.845158, -73.93591)",,,571 WEST 175 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489700,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,0:30,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4489105,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/22/2021,2:12,,,40.608868,-74.15755,"(40.608868, -74.15755)",,,5 RICHARD LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488727,Sedan,,,, +12/24/2021,15:00,BROOKLYN,11231,40.68558,-74.00048,"(40.68558, -74.00048)",,,519 HICKS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4489386,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/22/2021,12:28,BROOKLYN,11207,40.66448,-73.88709,"(40.66448, -73.88709)",,,590 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4488848,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,7:12,,,40.74614,-73.81417,"(40.74614, -73.81417)",KISSENA BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488936,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,18:10,BRONX,10469,40.87999,-73.84531,"(40.87999, -73.84531)",,,1265 EAST 222 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489641,Sedan,Sedan,,, +12/23/2021,21:35,BROOKLYN,11217,40.685524,-73.98125,"(40.685524, -73.98125)",,,510 ATLANTIC AVENUE,5,0,0,0,0,0,5,0,Other Vehicular,Driver Inattention/Distraction,,,,4489240,12 passage,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,9:35,QUEENS,11104,40.743046,-73.91776,"(40.743046, -73.91776)",QUEENS BOULEVARD,47 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489381,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,0:45,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4489289,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/23/2021,4:16,BROOKLYN,11201,40.689243,-73.98873,"(40.689243, -73.98873)",SMITH STREET,STATE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489035,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,10:48,BROOKLYN,11236,40.635803,-73.90734,"(40.635803, -73.90734)",,,1014 EAST 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489160,Bus,Sedan,Sedan,, +12/22/2021,11:15,MANHATTAN,10013,40.715427,-74.00268,"(40.715427, -74.00268)",,,125 WORTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489245,Sedan,,,, +12/24/2021,4:10,QUEENS,11375,40.731155,-73.84282,"(40.731155, -73.84282)",66 ROAD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4489417,LIMO,,,, +12/22/2021,13:58,BROOKLYN,11235,40.579758,-73.96131,"(40.579758, -73.96131)",OCEANVIEW AVENUE,BRIGHTON 7 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488884,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,0:29,BROOKLYN,11215,40.66528,-73.98696,"(40.66528, -73.98696)",,,309 14 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4489276,Station Wagon/Sport Utility Vehicle,E-Scooter,Sedan,, +12/22/2021,17:10,QUEENS,11365,40.733097,-73.804985,"(40.733097, -73.804985)",164 STREET,69 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4488917,Sedan,,,, +09/26/2021,18:42,MANHATTAN,10035,40.80282,-73.944885,"(40.80282, -73.944885)",,,1485 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4461601,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,20:05,BRONX,10459,40.82051,-73.89189,"(40.82051, -73.89189)",,,932 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489197,Taxi,Sedan,,, +12/22/2021,11:00,BROOKLYN,11212,40.665627,-73.909706,"(40.665627, -73.909706)",BLAKE AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488768,Sedan,Sedan,,, +12/22/2021,10:53,,,40.720554,-74.00352,"(40.720554, -74.00352)",CANAL STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489142,Sedan,Sedan,,, +12/24/2021,19:15,BROOKLYN,11236,40.632122,-73.894424,"(40.632122, -73.894424)",,,1644 EAST 92 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4489447,Sedan,Sedan,Sedan,Sedan, +12/24/2021,0:35,BRONX,10455,40.813084,-73.90419,"(40.813084, -73.90419)",PROSPECT AVENUE,FOX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489473,Van,Sedan,,, +12/22/2021,11:34,BRONX,10465,40.8174,-73.83866,"(40.8174, -73.83866)",BRUSH AVENUE,YZNAGA PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489061,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,19:30,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4489088,Sedan,Sedan,Sedan,, +12/20/2021,20:45,,,40.619507,-74.15036,"(40.619507, -74.15036)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489618,Sedan,,,, +12/24/2021,6:00,BROOKLYN,11206,40.69907,-73.93548,"(40.69907, -73.93548)",BUSHWICK AVENUE,ARION PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489411,Sedan,Sedan,,, +12/23/2021,15:54,BRONX,10462,40.835026,-73.858086,"(40.835026, -73.858086)",MCGRAW AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489283,Bus,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,8:45,QUEENS,11418,40.700935,-73.84022,"(40.700935, -73.84022)",MYRTLE AVENUE,110 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4489341,Bus,Sedan,Sedan,, +12/24/2021,18:50,QUEENS,11368,40.7404,-73.86343,"(40.7404, -73.86343)",,,53-42 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489668,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,15:48,MANHATTAN,10007,40.714447,-74.01148,"(40.714447, -74.01148)",,,255 GREENWICH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489136,Sedan,,,, +12/13/2021,22:10,BRONX,10466,40.897404,-73.85184,"(40.897404, -73.85184)",,,4397 BARNES AVENUE,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4489716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,14:28,QUEENS,11101,40.736874,-73.935646,"(40.736874, -73.935646)",VANDAM STREET,BRADLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489188,Box Truck,Sedan,,, +12/24/2021,11:15,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489459,Sedan,Sedan,,, +12/22/2021,7:00,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488963,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,20:22,BRONX,10466,40.88839,-73.84666,"(40.88839, -73.84666)",EAST 231 STREET,LACONIA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4489170,Sedan,Sedan,Sedan,, +12/22/2021,20:10,BRONX,10462,40.8478,-73.86513,"(40.8478, -73.86513)",RHINELANDER AVENUE,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4488990,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,22:00,BROOKLYN,11201,40.687576,-73.99261,"(40.687576, -73.99261)",,,17 BERGEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489504,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,20:05,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,20:00,STATEN ISLAND,10305,40.614307,-74.06572,"(40.614307, -74.06572)",,,71 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4489593,Sedan,,,, +12/22/2021,18:20,QUEENS,11363,40.765358,-73.74429,"(40.765358, -73.74429)",NORTHERN BOULEVARD,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488923,Tractor Truck Diesel,Sedan,,, +12/24/2021,5:20,BROOKLYN,11236,40.643135,-73.90422,"(40.643135, -73.90422)",,,1112 EAST 94 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4489318,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/24/2021,20:50,BRONX,10469,40.860424,-73.85747,"(40.860424, -73.85747)",WILLIAMSBRIDGE ROAD,STELL PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489453,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/24/2021,17:10,QUEENS,11368,40.740192,-73.85335,"(40.740192, -73.85335)",108 STREET,VANDOREN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489633,Sedan,Sedan,,, +12/22/2021,16:40,BRONX,10460,40.849075,-73.88289,"(40.849075, -73.88289)",SOUTHERN BOULEVARD,GARDEN STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489027,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,23:30,,,,,,,,79 EAST DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461820,Sedan,,,, +12/24/2021,15:00,,,40.63417,-74.0178,"(40.63417, -74.0178)",6 AVENUE,67 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489362,Bike,,,, +12/24/2021,14:20,QUEENS,11417,40.67332,-73.8464,"(40.67332, -73.8464)",SITKA STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4489798,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/23/2021,19:55,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489234,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,16:30,MANHATTAN,10002,40.718468,-73.99005,"(40.718468, -73.99005)",,,96 ORCHARD STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4488888,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/24/2021,0:08,,,40.67828,-73.958855,"(40.67828, -73.958855)",DEAN STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489692,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,18:39,,,40.836937,-73.927124,"(40.836937, -73.927124)",OGDEN AVENUE,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4489813,Sedan,Ambulance,,, +12/22/2021,7:47,QUEENS,11372,40.749516,-73.8947,"(40.749516, -73.8947)",71 STREET,35 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489149,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,21:58,BROOKLYN,11236,40.63693,-73.91109,"(40.63693, -73.91109)",FLATLANDS AVENUE,EAST 83 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4489249,Sedan,Sedan,,, +12/24/2021,3:10,,,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4489422,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,9:00,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489009,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,12:17,MANHATTAN,10036,40.761383,-73.9956,"(40.761383, -73.9956)",,,511 WEST 44 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4489361,Moped,Taxi,,, +12/22/2021,8:15,BROOKLYN,11226,40.655544,-73.956345,"(40.655544, -73.956345)",,,2015 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488932,Sedan,,,, +12/22/2021,14:15,STATEN ISLAND,10306,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,MIDLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489010,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,15:19,,,40.710243,-73.9584,"(40.710243, -73.9584)",HAVEMEYER STREET,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4489749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/24/2021,19:23,QUEENS,11357,40.781998,-73.81411,"(40.781998, -73.81411)",150 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4489376,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,1:00,,,40.700478,-73.92534,"(40.700478, -73.92534)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,,4488977,Sedan,Pick-up Truck,Sedan,, +12/23/2021,13:26,,,40.738895,-73.70099,"(40.738895, -73.70099)",268 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489176,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,22:10,,,40.74233,-73.83764,"(40.74233, -73.83764)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489393,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,1:02,QUEENS,11375,40.7079,-73.851105,"(40.7079, -73.851105)",UNION TURNPIKE,71 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4488618,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,16:46,BROOKLYN,11234,40.632545,-73.92638,"(40.632545, -73.92638)",,,1115 EAST 52 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4489203,Sedan,FDNY TRUCK,,, +12/24/2021,9:16,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4489490,Sedan,,,, +12/24/2021,0:04,BROOKLYN,11233,40.679516,-73.91109,"(40.679516, -73.91109)",ROCKAWAY AVENUE,HULL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489530,Sedan,Sedan,,, +12/22/2021,12:06,QUEENS,11434,40.684277,-73.78302,"(40.684277, -73.78302)",FOCH BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489271,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,18:24,QUEENS,11356,40.781662,-73.83366,"(40.781662, -73.83366)",,,135-05 20 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488911,Sedan,Pick-up Truck,,, +12/22/2021,20:52,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Alcohol Involvement,,,,4489129,Sedan,Sedan,,, +12/23/2021,10:00,BROOKLYN,11211,40.712616,-73.94146,"(40.712616, -73.94146)",,,238 POWERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4489265,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,E-Scooter,Station Wagon/Sport Utility Vehicle +09/21/2021,15:20,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4461906,Box Truck,,,, +12/23/2021,15:34,BROOKLYN,11236,40.641945,-73.916626,"(40.641945, -73.916626)",EAST 83 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4489248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/23/2021,16:00,QUEENS,11370,40.760044,-73.89756,"(40.760044, -73.89756)",30 AVENUE,70 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4489165,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,15:35,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,0:05,,,,,,BROOKVILLE BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4488635,Sedan,,,, +12/22/2021,3:40,QUEENS,11423,40.708927,-73.77733,"(40.708927, -73.77733)",JAMAICA AVENUE,183 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489182,Bus,,,, +12/22/2021,17:40,MANHATTAN,10002,40.71376,-73.98556,"(40.71376, -73.98556)",,,243 HENRY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4488887,Sedan,Sedan,,, +12/17/2021,13:17,,,40.691868,-73.863846,"(40.691868, -73.863846)",JAMAICA AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489345,Sedan,E-Bike,,, +12/22/2021,7:00,QUEENS,11102,40.77396,-73.91777,"(40.77396, -73.91777)",24 AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,7:50,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,DELANCEY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489502,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,23:30,QUEENS,11419,40.688927,-73.83635,"(40.688927, -73.83635)",97 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4489404,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/24/2021,21:45,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",109 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4489784,Sedan,Sedan,,, +12/23/2021,17:01,,,,,,KINGS HIGHWAY,EAST 34 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489210,Sedan,,,, +12/24/2021,23:53,BROOKLYN,11212,40.66549,-73.91063,"(40.66549, -73.91063)",BLAKE AVENUE,CHESTER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489532,Sedan,Sedan,,, +12/01/2021,1:50,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489752,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/23/2021,14:30,BROOKLYN,11226,40.653435,-73.95278,"(40.653435, -73.95278)",,,728 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489560,Sedan,,,, +12/22/2021,19:15,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4488924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/23/2021,10:27,,,40.654003,-73.979935,"(40.654003, -73.979935)",20 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489123,Sedan,,,, +12/24/2021,11:27,BROOKLYN,11206,40.70164,-73.938034,"(40.70164, -73.938034)",,,849 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489346,Sedan,,,, +12/23/2021,8:15,,,40.68969,-73.99237,"(40.68969, -73.99237)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Following Too Closely,,,,4489148,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,7:00,BROOKLYN,11207,40.655605,-73.89259,"(40.655605, -73.89259)",,,416 STANLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489331,Sedan,,,, +12/16/2021,0:57,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489544,Sedan,Sedan,,, +12/22/2021,21:02,BROOKLYN,11235,40.587307,-73.93939,"(40.587307, -73.93939)",NOSTRAND AVENUE,VOORHIES AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4488959,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,21:50,BRONX,10456,40.82474,-73.90842,"(40.82474, -73.90842)",3 AVENUE,BOSTON ROAD,,3,0,0,0,0,0,3,0,Unspecified,,,,,4489842,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,16:30,BROOKLYN,11221,40.688824,-73.91451,"(40.688824, -73.91451)",,,1074 HANCOCK STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489299,Sedan,,,, +12/22/2021,19:45,BRONX,10451,40.825443,-73.91808,"(40.825443, -73.91808)",,,260 EAST 161 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4489259,Sedan,,,, +12/23/2021,18:35,BRONX,10459,40.822903,-73.89289,"(40.822903, -73.89289)",,,984 SIMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489196,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,12:45,,,40.608253,-74.08879,"(40.608253, -74.08879)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,6:30,BROOKLYN,11233,,,,Thomas s boyland street,Decatur street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488767,Sedan,,,, +05/18/2021,9:15,QUEENS,11372,40.749157,-73.86943,"(40.749157, -73.86943)",ROOSEVELT AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418368,Ambulance,,,, +12/22/2021,9:50,QUEENS,11365,40.729927,-73.810936,"(40.729927, -73.810936)",,,71-01 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:08,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",METROPOLITAN AVENUE,FRESH POND ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489628,Bus,Box Truck,,, +12/23/2021,9:00,QUEENS,11366,40.721687,-73.80932,"(40.721687, -73.80932)",,,158-13 78 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489047,Sedan,,,, +12/24/2021,21:10,BROOKLYN,11203,40.64916,-73.94537,"(40.64916, -73.94537)",,,3400 SNYDER AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4489578,Sedan,,,, +12/24/2021,9:30,QUEENS,11377,40.74216,-73.90119,"(40.74216, -73.90119)",64 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489357,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,17:30,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",ELIOT AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,21:24,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",UNION AVENUE,METROPOLITAN AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4489389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,19:23,BROOKLYN,11226,40.643127,-73.950676,"(40.643127, -73.950676)",CLARENDON ROAD,EAST 28 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4489109,Sedan,E-Scooter,,, +12/24/2021,18:00,STATEN ISLAND,10304,40.61026,-74.097496,"(40.61026, -74.097496)",MILFORD DRIVE,CLOVE ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489372,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,2:24,MANHATTAN,10065,40.763363,-73.95925,"(40.763363, -73.95925)",EAST 65 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489814,Sedan,Bike,,, +12/24/2021,11:30,,,40.585976,-73.98799,"(40.585976, -73.98799)",BAY 49 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489680,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,1:07,BROOKLYN,11222,40.722095,-73.94139,"(40.722095, -73.94139)",,,625 MEEKER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4489394,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,17:00,BRONX,10459,40.826008,-73.90051,"(40.826008, -73.90051)",EAST 166 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489223,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,8:58,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",SPRINGFIELD BOULEVARD,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4488740,Bus,,,, +12/23/2021,7:14,QUEENS,11434,40.690685,-73.78161,"(40.690685, -73.78161)",168 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489015,Sedan,Bus,,, +12/22/2021,17:05,QUEENS,11368,40.756428,-73.869354,"(40.756428, -73.869354)",,,33-11 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:33,,,40.76788,-73.9815,"(40.76788, -73.9815)",CENTRAL PARK SOUTH,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4488788,Sedan,Suburban,,, +12/22/2021,11:45,QUEENS,11418,40.70293,-73.81903,"(40.70293, -73.81903)",,,132-50 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,View Obstructed/Limited,Unspecified,,,4488935,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/24/2021,15:15,,,40.724686,-73.77241,"(40.724686, -73.77241)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:00,QUEENS,11370,40.756165,-73.88739,"(40.756165, -73.88739)",,,32-66 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489161,Sedan,,,, +12/18/2021,1:00,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4489584,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,18:34,QUEENS,11434,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489457,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,15:40,,,40.666695,-73.961624,"(40.666695, -73.961624)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489186,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,14:40,,,40.73264,-74.008644,"(40.73264, -74.008644)",WASHINGTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489118,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,16:50,BROOKLYN,11208,40.673008,-73.87038,"(40.673008, -73.87038)",SUTTER AVENUE,PINE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489326,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,15:00,QUEENS,11426,40.726837,-73.71356,"(40.726837, -73.71356)",,,251-21 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461981,Sedan,,,, +09/02/2021,11:56,MANHATTAN,10039,40.827965,-73.93844,"(40.827965, -73.93844)",,,307 WEST 153 STREET,1,0,1,0,0,0,0,0,,,,,,4453336,Sedan,,,, +09/20/2021,17:21,BROOKLYN,11236,40.646626,-73.90399,"(40.646626, -73.90399)",FARRAGUT ROAD,ROCKAWAY PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4459243,Sedan,,,, +09/20/2021,17:30,MANHATTAN,10006,40.709354,-74.013,"(40.709354, -74.013)",GREENWICH STREET,THAMES STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4462071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,11:50,MANHATTAN,10018,40.754055,-73.99583,"(40.754055, -73.99583)",9 AVENUE,WEST 35 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454269,Tractor Truck Diesel,Sedan,,, +12/11/2021,13:35,,,40.66807,-73.950676,"(40.66807, -73.950676)",PRESIDENT STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485734,,,,, +09/26/2021,6:50,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4462079,Sedan,,,, +09/26/2021,11:00,,,40.829956,-73.93009,"(40.829956, -73.93009)",WOODYCREST AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462077,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,21:55,,,40.590332,-73.9084,"(40.590332, -73.9084)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485754,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,16:20,QUEENS,11378,40.7300068,-73.9118706,"(40.7300068, -73.9118706)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4458850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/22/2021,13:00,,,40.809563,-73.92923,"(40.809563, -73.92923)",3 AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,16:20,BROOKLYN,11223,40.58406,-73.96901,"(40.58406, -73.96901)",SHORE PARKWAY,WEST STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inexperience,Unspecified,,,4489675,Sedan,Sedan,Sedan,, +12/24/2021,19:15,BROOKLYN,11228,40.616184,-74.011734,"(40.616184, -74.011734)",,,8220 13 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489400,Sedan,Sedan,,, +12/22/2021,20:38,BROOKLYN,11249,40.699482,-73.96104,"(40.699482, -73.96104)",CLASSON AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:30,,,40.734978,-73.8614,"(40.734978, -73.8614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,5:40,QUEENS,11433,,,,Archer Avenue,158 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489763,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,9:30,STATEN ISLAND,10304,40.61208,-74.08527,"(40.61208, -74.08527)",TARGEE STREET,PALMA DRIVE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4489602,Sedan,Sedan,,, +12/24/2021,10:37,BROOKLYN,11230,40.61308,-73.96839,"(40.61308, -73.96839)",,,1464 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489514,Sedan,,,, +12/11/2021,2:40,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485710,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,13:20,QUEENS,11379,40.712727,-73.875465,"(40.712727, -73.875465)",,,67-14 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485712,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,22:50,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485720,Sedan,Box Truck,Sedan,, +12/11/2021,1:00,QUEENS,11377,40.736427,-73.91911,"(40.736427, -73.91911)",,,50-44 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485748,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,14:30,QUEENS,11379,40.712578,-73.88088,"(40.712578, -73.88088)",,,72-41 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,18:56,QUEENS,11102,40.77229,-73.915405,"(40.77229, -73.915405)",31 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489431,Sedan,Sedan,,, +12/24/2021,4:40,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489474,Taxi,,,, +06/30/2022,17:10,,,40.69977,-73.98294,"(40.69977, -73.98294)",GOLD STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543015,Sedan,Bike,,, +11/20/2021,15:00,MANHATTAN,10027,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4489566,Sedan,Moped,,, +12/21/2021,15:15,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489836,Station Wagon/Sport Utility Vehicle,Bus,,, +09/26/2021,19:38,,,40.824085,-73.874344,"(40.824085, -73.874344)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461235,Sedan,,,, +09/26/2021,6:18,MANHATTAN,10030,40.822834,-73.941925,"(40.822834, -73.941925)",8 AVENUE,WEST 145 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Alcohol Involvement,,,,4461426,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,3:20,QUEENS,11435,40.69121,-73.80694,"(40.69121, -73.80694)",,,106-10 PINEGROVE STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461324,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,13:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,2:30,QUEENS,11372,40.748093,-73.87947,"(40.748093, -73.87947)",,,86-24 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,22:50,MANHATTAN,10032,40.8429,-73.93843,"(40.8429, -73.93843)",WEST 171 STREET,SAINT NICHOLAS AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4461808,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,0:05,QUEENS,11377,40.74248,-73.9129,"(40.74248, -73.9129)",52 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4460886,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/26/2021,1:01,BRONX,10475,40.88588,-73.82282,"(40.88588, -73.82282)",,,2417 HOLLERS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461291,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,14:40,,,,,,AVENUE OF THE AMERICAS,UNITED NATIONS AVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461500,E-Bike,,,, +09/26/2021,13:30,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461362,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,5:15,,,40.810287,-73.90172,"(40.810287, -73.90172)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,4461720,Sedan,Sedan,Sedan,Sedan,Sedan +09/23/2021,21:15,,,40.606327,-74.07994,"(40.606327, -74.07994)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461903,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:09,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461958,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/23/2021,0:00,,,40.755405,-73.97949,"(40.755405, -73.97949)",5 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4401168,Bike,Taxi,,, +05/11/2021,0:50,,,40.83328,-73.86097,"(40.83328, -73.86097)",CROSS BRONX EXPY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4415412,Sedan,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Tractor Truck Diesel, +05/14/2021,17:50,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4416845,Sedan,,,, +05/15/2021,0:15,,,40.57944,-73.979614,"(40.57944, -73.979614)",NEPTUNE AVENUE,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4416989,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,22:00,QUEENS,11426,40.74359,-73.72561,"(40.74359, -73.72561)",,,247-47 76 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418647,Sedan,Sedan,,, +05/18/2021,22:00,,,40.81782,-73.915276,"(40.81782, -73.915276)",EAST 152 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417976,Sedan,,,, +05/18/2021,19:11,,,40.61212,-73.919014,"(40.61212, -73.919014)",AVENUE U,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417930,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,1:55,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418595,Pick-up Truck,Sedan,,, +05/18/2021,0:00,BROOKLYN,11233,40.677364,-73.90798,"(40.677364, -73.90798)",EASTERN PARKWAY,HERKIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418558,Sedan,Bike,,, +05/18/2021,19:04,BRONX,10457,40.84434,-73.892044,"(40.84434, -73.892044)",CROTONA AVENUE,FAIRMOUNT PLACE,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4418228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:47,BROOKLYN,11223,40.609905,-73.9632,"(40.609905, -73.9632)",,,1005 AVENUE P,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418189,Sedan,,,, +05/18/2021,1:04,QUEENS,11411,40.696217,-73.7436,"(40.696217, -73.7436)",SPRINGFIELD BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417602,Sedan,,,, +05/18/2021,17:45,BROOKLYN,11212,40.65994,-73.92195,"(40.65994, -73.92195)",,,1095 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417916,Motorcycle,Sedan,,, +04/29/2021,13:45,QUEENS,11385,40.69597,-73.90472,"(40.69597, -73.90472)",,,989 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418612,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,10:50,QUEENS,11419,40.688168,-73.809944,"(40.688168, -73.809944)",135 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418022,Sedan,,,, +05/18/2021,5:40,,,40.808296,-73.96889,"(40.808296, -73.96889)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417945,Sedan,Pick-up Truck,,, +05/18/2021,20:09,BROOKLYN,11218,40.633152,-73.97762,"(40.633152, -73.97762)",AVENUE F,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418136,Sedan,,,, +05/18/2021,12:27,BROOKLYN,11204,40.609463,-73.97419,"(40.609463, -73.97419)",65 STREET,DAHILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418484,Sedan,Box Truck,,, +05/18/2021,14:30,BROOKLYN,11236,40.638447,-73.90872,"(40.638447, -73.90872)",,,8610 FLATLANDS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4417950,Bus,,,, +05/18/2021,5:00,BROOKLYN,11220,40.638165,-74.006805,"(40.638165, -74.006805)",,,5518 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418223,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +05/18/2021,22:09,,,,,,,,372 BEACH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418323,Sedan,,,, +05/18/2021,20:00,,,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4418084,Ambulance,Sedan,,, +05/18/2021,8:15,,,40.70711,-73.95672,"(40.70711, -73.95672)",RODNEY STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417710,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,0:57,BROOKLYN,11233,40.679527,-73.916534,"(40.679527, -73.916534)",,,194 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417854,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,20:25,MANHATTAN,10029,40.79162,-73.94885,"(40.79162, -73.94885)",EAST 104 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417983,AMB,Sedan,,, +05/16/2021,15:15,BRONX,10458,40.853348,-73.882904,"(40.853348, -73.882904)",,,2367 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418574,Sedan,,,, +05/18/2021,12:05,,,40.650387,-73.95872,"(40.650387, -73.95872)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,23:49,MANHATTAN,10010,40.736855,-73.97853,"(40.736855, -73.97853)",1 AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418030,Sedan,,,, +05/18/2021,16:26,BROOKLYN,11208,40.679863,-73.878,"(40.679863, -73.878)",,,3183 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418045,Bus,Sedan,,, +05/18/2021,12:50,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4417807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/18/2021,5:35,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417760,Tractor Truck Diesel,,,, +05/18/2021,12:00,QUEENS,11692,40.590885,-73.786125,"(40.590885, -73.786125)",,,141 BEACH 56 PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4418428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,22:55,BROOKLYN,11237,40.702255,-73.92008,"(40.702255, -73.92008)",IRVING AVENUE,STOCKHOLM STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418471,Station Wagon/Sport Utility Vehicle,Moped,,, +05/13/2021,11:22,QUEENS,11385,40.704845,-73.892136,"(40.704845, -73.892136)",65 STREET,CATALPA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418518,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,9:35,BRONX,10460,40.840855,-73.86547,"(40.840855, -73.86547)",EAST TREMONT AVENUE,LELAND AVENUE,,2,0,2,0,0,0,0,0,Driver Inexperience,,,,,4417783,Sedan,,,, +05/18/2021,9:35,QUEENS,11412,40.695255,-73.75554,"(40.695255, -73.75554)",116 AVENUE,197 STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4417762,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,14:40,,,40.87802,-73.90241,"(40.87802, -73.90241)",WEST 231 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418280,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,10:00,,,40.693657,-73.983604,"(40.693657, -73.983604)",DUFFIELD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417845,Sedan,,,, +05/18/2021,8:02,,,40.720436,-74.00671,"(40.720436, -74.00671)",VARICK STREET,,,0,0,0,0,0,0,0,0,Cell Phone (hands-free),Unspecified,,,,4417722,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,22:28,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418044,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,18:34,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4418705,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,8:20,QUEENS,11355,40.74766,-73.81163,"(40.74766, -73.81163)",ROSE AVENUE,BOWNE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4417940,Sedan,,,, +05/18/2021,20:42,MANHATTAN,10017,40.75112,-73.97127,"(40.75112, -73.97127)",2 AVENUE,EAST 44 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417957,Sedan,Bike,,, +05/17/2021,23:45,,,40.793186,-73.94057,"(40.793186, -73.94057)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/14/2021,10:55,,,40.677525,-73.963715,"(40.677525, -73.963715)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4418630,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/18/2021,6:30,BROOKLYN,11233,40.681713,-73.91152,"(40.681713, -73.91152)",ROCKAWAY AVENUE,MARION STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418069,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,15:15,MANHATTAN,10036,0,0,"(0.0, 0.0)",8 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418003,Sedan,Bike,,, +05/18/2021,14:15,,,40.75858,-73.82562,"(40.75858, -73.82562)",UNION STREET,BARCLAY AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing or Lane Usage Improper,,,,4418049,Box Truck,Sedan,,, +05/18/2021,9:31,QUEENS,11418,40.70277,-73.82608,"(40.70277, -73.82608)",HILLSIDE AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:10,BROOKLYN,11225,40.663303,-73.960625,"(40.663303, -73.960625)",EMPIRE BOULEVARD,FRANKLIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417826,Sedan,Sedan,,, +05/18/2021,16:50,,,40.880753,-73.90048,"(40.880753, -73.90048)",BAILEY AVENUE,BAILEY PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417922,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,6:25,BRONX,10474,40.813805,-73.89112,"(40.813805, -73.89112)",TIFFANY STREET,SPOFFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418394,Sedan,,,, +05/08/2021,14:50,,,40.727287,-74.00064,"(40.727287, -74.00064)",WEST HOUSTON STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418529,Taxi,Bike,,, +05/18/2021,8:35,BROOKLYN,11226,40.63718,-73.95856,"(40.63718, -73.95856)",,,1033 OCEAN AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4417997,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,9:18,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418167,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,19:18,BRONX,10456,40.83394,-73.9087,"(40.83394, -73.9087)",EAST 169 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418436,Sedan,,,, +05/18/2021,4:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417856,,,,, +05/17/2021,5:20,,,40.706684,-73.86427,"(40.706684, -73.86427)",77 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418513,Sedan,Pick-up Truck,,, +05/18/2021,13:05,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417905,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:10,BROOKLYN,11220,40.639854,-74.0122,"(40.639854, -74.0122)",6 AVENUE,57 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4418297,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,11:00,MANHATTAN,10022,40.75906,-73.97262,"(40.75906, -73.97262)",PARK AVENUE,EAST 53 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417766,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,0:25,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460946,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,21:30,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4418015,Ambulance,Sedan,,, +05/18/2021,14:20,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4418039,Sedan,Sedan,,, +05/14/2021,0:00,QUEENS,11378,40.723705,-73.90446,"(40.723705, -73.90446)",56 DRIVE,61 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418519,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/16/2021,0:40,BRONX,10465,40.818707,-73.82019,"(40.818707, -73.82019)",,,344 QUINCY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418731,Sedan,Sedan,Sedan,, +05/18/2021,6:20,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,,4418107,Sedan,Sedan,Sedan,Sedan, +05/18/2021,22:40,,,40.694363,-73.958,"(40.694363, -73.958)",FRANKLIN AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4418255,Sedan,Bike,,, +05/18/2021,9:33,QUEENS,11377,40.744556,-73.91126,"(40.744556, -73.91126)",,,53-11 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417936,Sedan,,,, +05/18/2021,12:30,QUEENS,11362,40.76878,-73.73042,"(40.76878, -73.73042)",,,49-34 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418201,Sedan,PK,,, +05/18/2021,20:35,,,40.720245,-73.9444,"(40.720245, -73.9444)",MEEKER AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4417951,Tractor Truck Diesel,Sedan,,, +05/15/2021,17:00,MANHATTAN,10029,40.792015,-73.949814,"(40.792015, -73.949814)",,,60 EAST 104 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418597,Sedan,Sedan,,, +05/18/2021,7:20,QUEENS,11366,40.733448,-73.77413,"(40.733448, -73.77413)",197 STREET,75 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4417911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/16/2021,20:30,QUEENS,11385,40.69368,-73.89507,"(40.69368, -73.89507)",,,80-42 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418613,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/26/2021,22:48,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4461377,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,19:22,BRONX,10465,40.828075,-73.840065,"(40.828075, -73.840065)",,,2560 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,0:00,QUEENS,11420,40.6778,-73.823845,"(40.6778, -73.823845)",LINDEN BOULEVARD,115 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4417866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/18/2021,19:10,MANHATTAN,10029,40.797943,-73.94213,"(40.797943, -73.94213)",LEXINGTON AVENUE,EAST 115 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418142,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,14:20,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4418445,Station Wagon/Sport Utility Vehicle,Sedan,Tow Truck / Wrecker,Tractor Truck Diesel, +05/18/2021,15:47,BRONX,10453,40.858994,-73.90573,"(40.858994, -73.90573)",GRAND AVENUE,WEST 183 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4417966,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,2:58,,,40.740326,-73.97312,"(40.740326, -73.97312)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4417918,Sedan,Sedan,,, +05/18/2021,21:00,,,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:00,QUEENS,11422,40.653316,-73.74594,"(40.653316, -73.74594)",,,238-59 148 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4417946,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,19:20,BRONX,10466,40.88611,-73.86033,"(40.88611, -73.86033)",,,725 EAST 223 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:16,QUEENS,11373,40.73088,-73.871635,"(40.73088, -73.871635)",WOODHAVEN BOULEVARD,60 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418314,,,,, +05/15/2021,19:02,BRONX,10460,40.840927,-73.868645,"(40.840927, -73.868645)",,,1628 MELVILLE STREET,1,0,1,0,0,0,0,0,,,,,,4418501,Sedan,,,, +05/18/2021,18:48,,,40.574158,-74.11669,"(40.574158, -74.11669)",NEW DORP PLAZA,NEW DORP LANE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417901,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,17:29,BRONX,10457,40.846825,-73.89705,"(40.846825, -73.89705)",EAST TREMONT AVENUE,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4418092,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,12:20,,,40.59607,-73.98413,"(40.59607, -73.98413)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,0:50,QUEENS,11368,40.753807,-73.866745,"(40.753807, -73.866745)",,,35-35 101 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4418444,Sedan,Sedan,Sedan,, +05/18/2021,17:00,BRONX,10465,40.81848,-73.82394,"(40.81848, -73.82394)",,,2731 SAMPSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418183,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,4:45,QUEENS,11433,40.695286,-73.77957,"(40.695286, -73.77957)",111 AVENUE,173 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4417684,Sedan,Sedan,Sedan,, +05/18/2021,8:40,,,40.65626,-73.950165,"(40.65626, -73.950165)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418226,Sedan,E-SCOOTER,,, +05/18/2021,8:55,BRONX,10463,40.875427,-73.906166,"(40.875427, -73.906166)",,,2880 EXTERIOR STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417865,Sedan,Box Truck,,, +05/18/2021,22:00,QUEENS,11004,40.73765,-73.71138,"(40.73765, -73.71138)",,,83-50 257 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417947,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,10:31,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418331,Sedan,Box Truck,,, +05/18/2021,0:45,BROOKLYN,11222,40.720795,-73.94496,"(40.720795, -73.94496)",MC GUINNESS BLVD SOUTH,BAYARD STREET,,0,1,0,1,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4417604,Sedan,,,, +09/23/2021,11:55,MANHATTAN,10016,40.7431,-73.974014,"(40.7431, -73.974014)",1 AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461830,Sedan,Bike,,, +05/18/2021,11:35,QUEENS,11435,40.717953,-73.811874,"(40.717953, -73.811874)",,,81-26 150 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4417912,Sedan,,,, +05/18/2021,18:35,MANHATTAN,10033,40.846104,-73.93609,"(40.846104, -73.93609)",WEST 176 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4418080,Motorcycle,,,, +05/18/2021,14:31,BRONX,10457,40.85233,-73.889244,"(40.85233, -73.889244)",,,2238 ADAMS PLACE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4418139,Bus,Sedan,,, +05/09/2021,21:20,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418654,Sedan,,,, +05/18/2021,17:50,BROOKLYN,11201,40.69768,-73.98703,"(40.69768, -73.98703)",JAY STREET,CONCORD STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417931,Taxi,,,, +05/17/2021,21:48,,,,,,CONVENT AVENUE,WEST 136 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418561,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,16:55,,,,,,PELHAM PARKWAY SOUTH,BOSTON ROAD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4418474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:00,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4418294,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/25/2021,8:49,QUEENS,11385,40.705894,-73.891624,"(40.705894, -73.891624)",,,68-16 65 PLACE,1,0,1,0,0,0,0,0,Unspecified,,,,,4461890,Sedan,,,, +05/18/2021,8:00,BRONX,10459,40.82691,-73.887596,"(40.82691, -73.887596)",,,1255 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4417765,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +05/18/2021,5:04,BROOKLYN,11203,40.653683,-73.93255,"(40.653683, -73.93255)",LINDEN BOULEVARD,EAST 48 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Traffic Control Disregarded,,,,4417786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:08,BROOKLYN,11231,40.672615,-74.0006,"(40.672615, -74.0006)",LORRAINE STREET,COURT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418008,Sedan,Sedan,,, +05/18/2021,20:15,BROOKLYN,11218,40.63555,-73.97803,"(40.63555, -73.97803)",DITMAS AVENUE,MC DONALD AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418456,Station Wagon/Sport Utility Vehicle,Bike,,, +05/18/2021,15:30,QUEENS,11422,40.663788,-73.734024,"(40.663788, -73.734024)",FRANCIS LEWIS BOULEVARD,247 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4417888,Sedan,Sedan,,, +05/18/2021,17:25,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4418057,Station Wagon/Sport Utility Vehicle,Bike,,, +05/18/2021,10:30,BROOKLYN,11249,40.700233,-73.95988,"(40.700233, -73.95988)",WYTHE AVENUE,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4418367,Stake or Rack,Bus,,, +05/18/2021,11:16,BROOKLYN,11222,40.726578,-73.95241,"(40.726578, -73.95241)",,,753 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417747,Sedan,Sedan,,, +05/18/2021,17:40,,,40.8065,-73.90803,"(40.8065, -73.90803)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4417975,Sedan,,,, +05/18/2021,3:00,,,40.713474,-73.75923,"(40.713474, -73.75923)",199 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417777,Tractor Truck Diesel,,,, +05/18/2021,10:52,,,40.74026,-73.990524,"(40.74026, -73.990524)",5 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417921,Sedan,Sedan,,, +05/18/2021,11:42,,,40.695377,-73.94921,"(40.695377, -73.94921)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4418171,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/18/2021,11:45,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418248,Sedan,,,, +05/18/2021,20:03,,,40.84364,-73.930534,"(40.84364, -73.930534)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4418072,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/14/2021,0:25,,,40.67164,-73.95034,"(40.67164, -73.95034)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4418635,Sedan,Sedan,Sedan,, +05/18/2021,15:50,STATEN ISLAND,10306,40.57725,-74.10298,"(40.57725, -74.10298)",HYLAN BOULEVARD,ZWICKY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417875,Sedan,Motorcycle,,, +05/18/2021,19:57,,,,,,136 street,35 avenue,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417926,Sedan,Sedan,,, +05/11/2021,16:00,BROOKLYN,11213,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:15,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4418016,Sedan,E-Bike,,, +05/18/2021,19:50,,,40.730057,-73.999374,"(40.730057, -73.999374)",WEST 3 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4418528,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,10:00,BRONX,10474,40.812305,-73.89637,"(40.812305, -73.89637)",GARRISON AVENUE,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418395,Box Truck,Sedan,,, +09/26/2021,6:10,MANHATTAN,10027,40.80761,-73.95305,"(40.80761, -73.95305)",8 AVENUE,WEST 121 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4460965,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/18/2021,7:50,BRONX,10466,40.89635,-73.85857,"(40.89635, -73.85857)",,,633 EAST 236 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418515,Sedan,Sedan,,, +05/18/2021,23:40,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418002,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,0:50,BRONX,10459,40.826168,-73.89893,"(40.826168, -73.89893)",,,1111 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/18/2021,19:00,BROOKLYN,11208,40.678925,-73.88441,"(40.678925, -73.88441)",,,191 ELTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418048,Sedan,Sedan,,, +05/18/2021,6:00,,,40.805805,-73.97075,"(40.805805, -73.97075)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4417846,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/26/2021,0:43,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4461200,Station Wagon/Sport Utility Vehicle,moped,,, +05/18/2021,19:00,,,,,,LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418020,Station Wagon/Sport Utility Vehicle,Van,,, +05/18/2021,21:15,MANHATTAN,10128,40.78519,-73.94934,"(40.78519, -73.94934)",EAST 96 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4417980,Sedan,Pick-up Truck,Bike,, +05/18/2021,17:50,QUEENS,11358,40.769337,-73.802765,"(40.769337, -73.802765)",162 STREET,32 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4417939,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,4:00,BRONX,10451,40.814713,-73.9202,"(40.814713, -73.9202)",,,2773 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418543,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,15:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418271,Sedan,,,, +05/18/2021,15:24,MANHATTAN,10016,40.745724,-73.97813,"(40.745724, -73.97813)",3 AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4417955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,13:00,QUEENS,11106,40.76691,-73.93837,"(40.76691, -73.93837)",9 STREET,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418164,Sedan,Box Truck,,, +05/16/2021,15:45,,,40.720436,-74.00671,"(40.720436, -74.00671)",ERICSSON PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418569,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,15:40,BRONX,10459,40.822254,-73.88703,"(40.822254, -73.88703)",,,1340 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417904,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,21:55,BRONX,10472,40.828846,-73.860886,"(40.828846, -73.860886)",,,1109 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418058,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,16:34,,,40.866158,-73.82363,"(40.866158, -73.82363)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418112,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,13:30,,,40.789467,-73.784225,"(40.789467, -73.784225)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4417925,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,7:10,MANHATTAN,10065,40.764614,-73.95833,"(40.764614, -73.95833)",EAST 67 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418028,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/18/2021,8:10,,,40.865314,-73.836365,"(40.865314, -73.836365)",EAST GUN HILL ROAD,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417719,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,15:49,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417963,Bus,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,10:15,BROOKLYN,11207,40.670437,-73.896774,"(40.670437, -73.896774)",,,356 BELMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417806,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,9:22,BROOKLYN,11222,40.732716,-73.95807,"(40.732716, -73.95807)",FRANKLIN STREET,HURON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418697,Sedan,,,, +05/18/2021,23:40,,,40.6656,-73.74648,"(40.6656, -73.74648)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4417970,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/18/2021,7:10,QUEENS,11429,40.707306,-73.75122,"(40.707306, -73.75122)",HOLLIS AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:16,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",CONEY ISLAND AVENUE,AVENUE P,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,14:50,MANHATTAN,10016,40.747917,-73.9736,"(40.747917, -73.9736)",EAST 39 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418581,Sedan,Bike,,, +05/18/2021,12:20,BRONX,10466,40.886223,-73.82712,"(40.886223, -73.82712)",,,4127 BOSTON ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4418198,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +05/18/2021,4:00,QUEENS,11694,40.583893,-73.81916,"(40.583893, -73.81916)",,,161 BEACH 98 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417935,Sedan,Sedan,,, +05/18/2021,16:52,BRONX,10466,40.89,-73.849106,"(40.89, -73.849106)",PAULDING AVENUE,EAST 232 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4418211,Sedan,Sedan,,, +05/18/2021,2:41,,,40.859642,-73.90534,"(40.859642, -73.90534)",EVELYN PLACE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4417645,Moped,Sedan,,, +05/18/2021,19:05,BROOKLYN,11230,40.627674,-73.96092,"(40.627674, -73.96092)",AVENUE I,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4418319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/16/2021,11:00,,,40.669434,-73.9255,"(40.669434, -73.9255)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418634,Sedan,,,, +05/18/2021,16:47,QUEENS,11365,40.740524,-73.77847,"(40.740524, -73.77847)",,,196-05 65 CRESCENT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418089,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,13:46,BROOKLYN,11213,40.669205,-73.93873,"(40.669205, -73.93873)",,,886 EASTERN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4418498,Pick-up Truck,,,, +05/18/2021,8:06,BRONX,10460,40.838505,-73.8751,"(40.838505, -73.8751)",MORRIS PARK AVENUE,WYATT STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4418458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,11:00,QUEENS,11691,40.59707,-73.77759,"(40.59707, -73.77759)",,,460 BEACH 46 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4418017,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,5:35,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417772,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,7:30,QUEENS,11432,40.709854,-73.7842,"(40.709854, -73.7842)",,,90-61 178 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417778,Dump,Sedan,,, +05/18/2021,14:55,QUEENS,11373,40.7452,-73.88426,"(40.7452, -73.88426)",BAXTER AVENUE,KETCHAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417991,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/18/2021,17:15,QUEENS,11428,40.717667,-73.74351,"(40.717667, -73.74351)",94 ROAD,214 PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418313,Sedan,Pick-up Truck,,, +05/18/2021,13:10,MANHATTAN,10016,40.749725,-73.98363,"(40.749725, -73.98363)",WEST 36 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4417817,Sedan,E-Bike,,, +05/18/2021,23:04,BROOKLYN,11212,40.658672,-73.90019,"(40.658672, -73.90019)",JUNIUS STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418010,Sedan,Sedan,,, +05/18/2021,23:37,BROOKLYN,11224,40.57522,-73.997505,"(40.57522, -73.997505)",WEST 31 STREET,MERMAID AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4418376,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,14:10,,,40.538326,-74.14937,"(40.538326, -74.14937)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4417874,Sedan,,,, +05/18/2021,16:40,BROOKLYN,11208,40.66796,-73.87009,"(40.66796, -73.87009)",LINDEN BOULEVARD,EUCLID AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418040,,,,, +05/18/2021,13:29,BROOKLYN,11222,40.722775,-73.94707,"(40.722775, -73.94707)",MC GUINNESS BOULEVARD,DRIGGS AVENUE,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4418452,Convertible,Dump,,, +05/18/2021,3:03,,,40.846687,-73.905594,"(40.846687, -73.905594)",TOPPING AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417726,Sedan,AMBULANCE,,, +05/18/2021,14:30,,,40.575542,-73.96487,"(40.575542, -73.96487)",BRIGHTON 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417994,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,9:30,,,40.823566,-73.93768,"(40.823566, -73.93768)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418717,Sedan,,,, +05/18/2021,18:27,STATEN ISLAND,10312,40.526566,-74.169106,"(40.526566, -74.169106)",HYLAN BOULEVARD,LIPSETT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4418035,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,17:05,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418056,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,8:15,,,40.667038,-73.7682,"(40.667038, -73.7682)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4417757,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,8:30,,,40.676132,-73.81924,"(40.676132, -73.81924)",ROCKAWAY BOULEVARD,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417813,Sedan,Bike,,, +05/15/2021,13:07,QUEENS,11370,40.764675,-73.88513,"(40.764675, -73.88513)",ASTORIA BOULEVARD,84 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4418441,E-Bike,,,, +05/18/2021,14:02,BRONX,10463,40.886642,-73.90967,"(40.886642, -73.90967)",WEST 236 STREET,JOHNSON AVENUE,,1,0,1,0,0,0,0,0,,,,,,4417864,,,,, +05/18/2021,20:47,BROOKLYN,11236,40.64224,-73.89912,"(40.64224, -73.89912)",,,1584 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417948,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,15:20,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,View Obstructed/Limited,,,,4418378,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/18/2021,21:29,,,40.810318,-73.943634,"(40.810318, -73.943634)",WEST 129 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4418086,Taxi,,,, +05/18/2021,20:57,,,,,,FDR DRIVE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4418291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,7:44,BROOKLYN,11229,40.596237,-73.94211,"(40.596237, -73.94211)",,,2295 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417764,Sedan,E-Bike,,, +05/18/2021,7:05,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4417893,Sedan,,,, +05/18/2021,1:07,MANHATTAN,10037,40.812744,-73.937645,"(40.812744, -73.937645)",EAST 135 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4417718,Station Wagon/Sport Utility Vehicle,Convertible,,, +05/18/2021,6:25,BRONX,10466,40.88371,-73.85281,"(40.88371, -73.85281)",EAST 223 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417847,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,22:15,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4418502,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,6:15,BROOKLYN,11223,40.586517,-73.967575,"(40.586517, -73.967575)",EAST 2 STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417985,Sedan,Sedan,,, +05/18/2021,9:10,BROOKLYN,11206,40.69998,-73.94064,"(40.69998, -73.94064)",,,790 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417839,Sedan,Bus,Sedan,, +05/18/2021,22:20,BROOKLYN,11217,40.682842,-73.9766,"(40.682842, -73.9766)",,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418562,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,0:50,QUEENS,11101,,,,HUNTERS POINT AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418196,Sedan,,,, +09/26/2021,7:00,,,40.75253,-73.94384,"(40.75253, -73.94384)",QUEENS PLAZA NORTH,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461434,Sedan,Sedan,,, +05/14/2021,22:15,QUEENS,11374,40.723663,-73.86864,"(40.723663, -73.86864)",,,63-32 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418609,Sedan,,,, +05/18/2021,9:16,BROOKLYN,11212,40.6612,-73.924324,"(40.6612, -73.924324)",EAST 94 STREET,WINTHROP STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4417913,Sedan,Bike,,, +05/18/2021,10:34,,,40.687317,-74.00006,"(40.687317, -74.00006)",HICKS STREET,KANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418006,Sedan,,,, +05/18/2021,6:00,,,40.652714,-73.8906,"(40.652714, -73.8906)",COZINE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418047,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,14:25,,,40.61368,-73.98882,"(40.61368, -73.98882)",70 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418025,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,22:00,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4417943,Sedan,Sedan,,, +05/18/2021,14:45,BRONX,10460,40.845028,-73.880394,"(40.845028, -73.880394)",,,941 EAST 181 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4418138,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,12:20,BRONX,10452,40.836304,-73.92518,"(40.836304, -73.92518)",WEST 167 STREET,WOODYCREST AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418363,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,21:48,BROOKLYN,11230,40.631832,-73.95755,"(40.631832, -73.95755)",,,1245 OCEAN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418402,E-Bike,,,, +09/26/2021,3:19,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,BEDFORD AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4461454,Sedan,Sedan,,, +05/18/2021,17:38,MANHATTAN,10030,40.81812,-73.942474,"(40.81812, -73.942474)",,,211 WEST 139 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,19:05,MANHATTAN,10031,40.82664,-73.94306,"(40.82664, -73.94306)",WEST 149 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4418740,Sedan,,,, +05/18/2021,12:04,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418172,Station Wagon/Sport Utility Vehicle,Bike,,, +05/18/2021,12:30,BROOKLYN,11385,40.703434,-73.91181,"(40.703434, -73.91181)",CYPRESS AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418636,Sedan,Sedan,,, +05/18/2021,16:45,,,40.671337,-73.9448,"(40.671337, -73.9448)",SAINT JOHNS PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417903,Sedan,,,, +05/18/2021,1:25,QUEENS,11436,40.673676,-73.79376,"(40.673676, -73.79376)",145 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417685,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:00,QUEENS,11358,40.768932,-73.79191,"(40.768932, -73.79191)",FRANCIS LEWIS BOULEVARD,32 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418212,Sedan,,,, +05/17/2021,9:26,BRONX,10470,40.90304,-73.849556,"(40.90304, -73.849556)",EAST 241 STREET,FURMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418516,Sedan,Sedan,,, +05/18/2021,6:52,,,,,,HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417802,Dump,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:15,QUEENS,11358,40.75406,-73.808624,"(40.75406, -73.808624)",158 STREET,46 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4417927,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,12:30,MANHATTAN,10031,40.819763,-73.95163,"(40.819763, -73.95163)",,,1540 AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4418475,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/18/2021,22:21,MANHATTAN,10002,40.72247,-73.987144,"(40.72247, -73.987144)",EAST HOUSTON STREET,LUDLOW STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418340,Sedan,,,, +05/18/2021,16:40,,,,,,109 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4418095,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,8:35,,,40.78459,-73.94198,"(40.78459, -73.94198)",EAST 99 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418590,Sedan,,,, +05/18/2021,22:40,BROOKLYN,11215,,,,hamilton place,hamilton avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418658,Tractor Truck Gasoline,Sedan,,, +09/26/2021,22:30,BROOKLYN,11231,40.67563,-74.00351,"(40.67563, -74.00351)",HENRY STREET,MILL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461509,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,19:30,,,40.736668,-73.997345,"(40.736668, -73.997345)",AVENUE OF THE AMERICAS,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4418527,Sedan,E-Bike,,, +05/18/2021,11:40,,,40.68587,-73.76349,"(40.68587, -73.76349)",180 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4418128,Sedan,Sedan,,, +05/18/2021,19:30,MANHATTAN,10016,40.743862,-73.9873,"(40.743862, -73.9873)",,,6 EAST 27 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4417920,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/18/2021,14:41,QUEENS,11417,40.678852,-73.834114,"(40.678852, -73.834114)",109 AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417876,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,19:54,QUEENS,11364,0,0,"(0.0, 0.0)",58 AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418204,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,17:00,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",CHURCH AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,,,,4418240,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,14:52,BROOKLYN,11226,40.649597,-73.958534,"(40.649597, -73.958534)",,,908 FLATBUSH AVENUE,3,0,2,0,0,0,1,0,Driver Inattention/Distraction,,,,,4418000,Taxi,,,, +05/18/2021,22:06,,,40.815693,-73.948685,"(40.815693, -73.948685)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4418077,Sedan,,,, +05/18/2021,22:11,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417938,Sedan,Sedan,,, +05/17/2021,14:55,,,40.68986,-73.95147,"(40.68986, -73.95147)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4418552,Station Wagon/Sport Utility Vehicle,Bus,,, +05/18/2021,16:25,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417964,Van,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:20,,,,,,WESTCHESTER AVENUE,HEGNEY PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417978,Sedan,E-Scooter,,, +05/18/2021,14:50,BROOKLYN,11224,40.579052,-73.98415,"(40.579052, -73.98415)",NEPTUNE AVENUE,WEST 16 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418374,Sedan,,,, +05/18/2021,13:50,,,40.588886,-73.965645,"(40.588886, -73.965645)",AVENUE Y,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418161,Sedan,Bike,,, +05/16/2021,12:00,,,40.615692,-73.99366,"(40.615692, -73.99366)",71 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418481,Sedan,,,, +05/18/2021,11:55,BRONX,10454,40.809265,-73.90854,"(40.809265, -73.90854)",EAST 144 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417972,Sedan,Tractor Truck Gasoline,,, +05/18/2021,13:12,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4418460,Sedan,Box Truck,,, +05/18/2021,14:51,QUEENS,11105,40.771145,-73.89882,"(40.771145, -73.89882)",21 AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418165,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,4:30,BRONX,10452,40.83767,-73.91921,"(40.83767, -73.91921)",EAST 169 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417665,Sedan,Sedan,,, +05/18/2021,1:33,STATEN ISLAND,10304,40.630486,-74.07829,"(40.630486, -74.07829)",,,305 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418320,Sedan,Sedan,,, +09/26/2021,21:26,BRONX,10463,40.8678,-73.90814,"(40.8678, -73.90814)",,,2500 BAILEY AVENUE,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4461557,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,9:45,BROOKLYN,11215,40.666134,-73.99225,"(40.666134, -73.99225)",16 STREET,4 AVENUE,,2,0,0,0,1,0,1,0,Unsafe Speed,Unspecified,,,,4417907,Sedan,Bike,,, +05/18/2021,12:15,BRONX,10456,40.829266,-73.90085,"(40.829266, -73.90085)",,,769 EAST 168 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418018,Sedan,,,, +05/18/2021,10:45,QUEENS,11101,40.74411,-73.95364,"(40.74411, -73.95364)",48 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417781,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,0:00,QUEENS,11370,40.759384,-73.896484,"(40.759384, -73.896484)",,,30-35 71 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418012,Sedan,,,, +05/07/2021,20:40,BROOKLYN,11204,40.607662,-73.98348,"(40.607662, -73.98348)",AVENUE P,WEST 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418713,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,22:18,BROOKLYN,11209,40.6167,-74.03085,"(40.6167, -74.03085)",94 STREET,4 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4418261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +05/18/2021,13:25,QUEENS,11417,40.674576,-73.84844,"(40.674576, -73.84844)",133 AVENUE,88 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4418096,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,23:00,QUEENS,11101,40.750645,-73.94566,"(40.750645, -73.94566)",43 AVENUE,21 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4417942,Sedan,,,, +05/18/2021,18:05,BROOKLYN,11212,40.655827,-73.91034,"(40.655827, -73.91034)",,,51 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4418580,Sedan,,,, +05/18/2021,18:00,,,40.6374,-73.919174,"(40.6374, -73.919174)",EAST 77 STREET,RALPH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4417953,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/17/2021,12:50,,,,,,62 avenue,queens blvd,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418624,Station Wagon/Sport Utility Vehicle,Bike,,, +05/18/2021,21:16,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418063,Sedan,,,, +05/18/2021,21:55,QUEENS,11373,40.736057,-73.87669,"(40.736057, -73.87669)",,,86-35 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4417986,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,11:15,BRONX,10461,40.84301,-73.83877,"(40.84301, -73.83877)",,,1250 WATERS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417836,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:34,,,40.554493,-74.13978,"(40.554493, -74.13978)",SOUTH RAILROAD AVENUE,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4417872,Sedan,,,, +05/16/2021,10:35,QUEENS,11102,40.770264,-73.92143,"(40.770264, -73.92143)",,,26-42 28 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418448,Motorcycle,,,, +05/18/2021,8:31,,,40.880135,-73.873085,"(40.880135, -73.873085)",EAST 211 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4417732,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,11:45,,,40.67578,-74.0014,"(40.67578, -74.0014)",HAMILTON AVENUE,WEST 9 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4418379,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:40,BROOKLYN,11206,40.703762,-73.94262,"(40.703762, -73.94262)",GRAHAM AVENUE,MOORE STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417995,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,10:30,QUEENS,11354,40.7662,-73.812996,"(40.7662, -73.812996)",MURRAY STREET,35 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4417924,,,,, +05/17/2021,22:20,BROOKLYN,11203,40.644955,-73.92113,"(40.644955, -73.92113)",,,5814 CLARENDON ROAD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418539,Sedan,Van,,, +05/18/2021,0:00,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418308,Sedan,Sedan,Sedan,, +05/18/2021,13:29,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418491,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,4:48,,,40.64123,-73.90841,"(40.64123, -73.90841)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417841,Station Wagon/Sport Utility Vehicle,,,, +08/28/2022,18:00,QUEENS,11385,40.708153,-73.910576,"(40.708153, -73.910576)",,,1911 HARMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4561337,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,15:10,,,40.70376,-73.98662,"(40.70376, -73.98662)",PLYMOUTH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4417877,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,23:30,,,40.538532,-74.19224,"(40.538532, -74.19224)",IONIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418036,Sedan,,,, +05/18/2021,16:30,BROOKLYN,11208,40.665478,-73.87747,"(40.665478, -73.87747)",,,766 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418042,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,13:18,BROOKLYN,11226,40.643425,-73.94588,"(40.643425, -73.94588)",NEW YORK AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418553,Bike,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,8:50,QUEENS,11105,40.777756,-73.89871,"(40.777756, -73.89871)",19 AVENUE,41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417725,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,16:45,,,40.639725,-74.03605,"(40.639725, -74.03605)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,22:59,,,40.752445,-73.96461,"(40.752445, -73.96461)",FDR DRIVE,EAST 49 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4417961,Convertible,Sedan,,, +05/18/2021,16:14,,,40.816883,-73.96265,"(40.816883, -73.96265)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4418567,Bus,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,8:26,,,40.677525,-73.963715,"(40.677525, -73.963715)",WASHINGTON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418633,Sedan,,,, +05/18/2021,3:20,,,40.8504,-73.90697,"(40.8504, -73.90697)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4417769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,1:17,,,40.680584,-73.9809,"(40.680584, -73.9809)",4 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4418565,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/18/2021,12:45,BROOKLYN,11226,40.649513,-73.96292,"(40.649513, -73.96292)",,,1807 CHURCH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4417999,Sedan,Tractor Truck Gasoline,,, +05/18/2021,2:42,BRONX,10462,,,,CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4417712,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,7:50,QUEENS,11422,40.663223,-73.73351,"(40.663223, -73.73351)",FRANCIS LEWIS BOULEVARD,248 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417896,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,16:20,QUEENS,11691,40.599823,-73.75398,"(40.599823, -73.75398)",,,520 BEACH 20 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4418032,Sedan,Bike,,, +05/18/2021,23:55,,,40.850822,-73.90147,"(40.850822, -73.90147)",RYER AVENUE,EAST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4418510,Sedan,E-Bike,,, +05/18/2021,22:14,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Driver Inexperience,,,4417984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/18/2021,12:19,,,40.865685,-73.823425,"(40.865685, -73.823425)",EINSTEIN LOOP,HUTCHINSON RIVER PARKWAY EAST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417808,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,19:17,BROOKLYN,11236,40.63947,-73.902756,"(40.63947, -73.902756)",EAST 92 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418231,Sedan,Sedan,,, +05/18/2021,15:30,,,40.7466,-73.76503,"(40.7466, -73.76503)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418178,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/18/2021,15:35,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417928,Box Truck,TOW TRUCK,,, +05/17/2021,15:50,BROOKLYN,11221,40.693447,-73.917015,"(40.693447, -73.917015)",CENTRAL AVENUE,PALMETTO STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418640,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,17:30,,,40.73949,-73.8369,"(40.73949, -73.8369)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4417914,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/18/2021,18:12,,,40.8122,-73.94226,"(40.8122, -73.94226)",WEST 132 STREET,,,1,0,0,0,0,0,1,0,Physical Disability,Driver Inexperience,Unspecified,,,4418085,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/18/2021,6:20,BROOKLYN,11218,,,,OCEAN PARKWAY,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418137,Van,Sedan,,, +05/18/2021,9:27,,,,,,BEACH CHANNEL DRIVE,BEACH 84 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417933,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,16:53,,,40.586746,-73.81712,"(40.586746, -73.81712)",BEACH 94 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418662,Sedan,,,, +09/26/2021,4:49,,,40.64503,-73.91998,"(40.64503, -73.91998)",RALPH AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461157,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,8:48,BROOKLYN,11234,40.62788,-73.93251,"(40.62788, -73.93251)",AVENUE J,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4417803,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/17/2021,1:20,MANHATTAN,10010,40.740356,-73.99046,"(40.740356, -73.99046)",,,162 5 AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4418476,Bike,,,, +05/18/2021,2:00,QUEENS,11412,40.69467,-73.76343,"(40.69467, -73.76343)",MEXICO STREET,TIOGA DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417763,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,20:47,,,40.663227,-73.93159,"(40.663227, -73.93159)",EAST NEW YORK AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418285,Sedan,Sedan,,, +05/18/2021,3:50,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418005,TOW TRUCK,Sedan,,, +05/16/2021,9:58,QUEENS,11385,40.699024,-73.9039,"(40.699024, -73.9039)",,,1704 WEIRFIELD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418611,Sedan,Sedan,,, +05/18/2021,11:57,,,40.84944,-73.906006,"(40.84944, -73.906006)",EAST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4418046,Moped,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/18/2021,13:04,QUEENS,11369,40.76301,-73.87532,"(40.76301, -73.87532)",94 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417851,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,17:00,,,40.881958,-73.816605,"(40.881958, -73.816605)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4417944,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,6:05,,,40.81286,-73.96341,"(40.81286, -73.96341)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461086,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/18/2021,20:30,BRONX,10451,40.8216,-73.91211,"(40.8216, -73.91211)",,,3103 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4417977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/18/2021,8:40,BRONX,10467,40.88052,-73.875725,"(40.88052, -73.875725)",,,3530 KINGS COLLEGE PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4417758,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,2:35,,,40.689407,-73.913956,"(40.689407, -73.913956)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4417687,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/18/2021,15:46,,,40.672703,-73.93635,"(40.672703, -73.93635)",PARK PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417902,Bus,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,17:00,,,40.771576,-73.87616,"(40.771576, -73.87616)",94 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418440,Sedan,Sedan,,, +05/18/2021,22:41,BROOKLYN,11236,40.639286,-73.89869,"(40.639286, -73.89869)",EAST 95 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417949,,,,, +05/18/2021,10:40,,,40.626335,-74.174965,"(40.626335, -74.174965)",,,2501 FOREST AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4417861,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,14:25,MANHATTAN,10032,40.83561,-73.94668,"(40.83561, -73.94668)",,,640 WEST 158 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418741,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,21:35,STATEN ISLAND,10314,40.608017,-74.116066,"(40.608017, -74.116066)",SLOSSON AVENUE,MOTLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4418192,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/18/2021,10:07,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418217,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,10:00,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",COHANCY STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418094,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,17:22,BROOKLYN,11211,40.71665,-73.94474,"(40.71665, -73.94474)",GRAHAM AVENUE,JACKSON STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4418343,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,20:50,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",LINDEN BOULEVARD,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418592,Sedan,Sedan,,, +05/18/2021,8:00,,,40.701458,-73.80414,"(40.701458, -73.80414)",150 STREET,ARCHER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4417909,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,15:00,QUEENS,11436,40.67057,-73.800644,"(40.67057, -73.800644)",131 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418129,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,12:30,BROOKLYN,11249,40.700233,-73.95988,"(40.700233, -73.95988)",RUTLEDGE STREET,WYTHE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418412,Sedan,,,, +05/18/2021,17:44,,,40.576157,-73.98902,"(40.576157, -73.98902)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4417996,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/27/2021,13:40,,,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,18:50,QUEENS,11385,,,,,,79-03 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418512,Sedan,,,, +05/18/2021,12:08,QUEENS,11436,40.666946,-73.79712,"(40.666946, -73.79712)",142 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417782,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,15:39,,,40.852386,-73.90369,"(40.852386, -73.90369)",EAST BURNSIDE AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418019,Sedan,Sedan,,, +05/18/2021,8:31,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418301,Sedan,,,, +05/18/2021,5:00,BROOKLYN,11212,40.66395,-73.920975,"(40.66395, -73.920975)",UNION STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4417989,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,8:51,BRONX,10457,40.85185,-73.902725,"(40.85185, -73.902725)",EAST BURNSIDE AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417768,Sedan,Sedan,,, +05/18/2021,12:45,,,40.699955,-73.98682,"(40.699955, -73.98682)",JAY STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417843,Sedan,Sedan,,, +05/18/2021,20:15,QUEENS,11436,40.67247,-73.79987,"(40.67247, -73.79987)",140 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4418053,Taxi,Pick-up Truck,Sedan,, +05/18/2021,22:30,BROOKLYN,11208,40.662544,-73.87652,"(40.662544, -73.87652)",,,891 STANLEY AVENUE,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4418043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/18/2021,9:55,MANHATTAN,10035,40.80582,-73.93848,"(40.80582, -73.93848)",,,1841 PARK AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4417733,Sedan,,,, +05/18/2021,18:50,BROOKLYN,11229,40.600426,-73.941895,"(40.600426, -73.941895)",NOSTRAND AVENUE,AVENUE U,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418347,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,11:00,,,40.716976,-73.98229,"(40.716976, -73.98229)",DELANCEY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418708,Sedan,,,, +05/09/2021,16:20,,,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418478,Sedan,,,, +05/18/2021,20:20,BRONX,10467,40.87595,-73.86189,"(40.87595, -73.86189)",,,801 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4418532,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,9:10,QUEENS,11370,40.757397,-73.88836,"(40.757397, -73.88836)",,,79-08 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461915,Sedan,,,, +05/18/2021,19:30,BRONX,10466,40.88756,-73.863976,"(40.88756, -73.863976)",,,3930 CARPENTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418203,E-Scooter,,,, +05/18/2021,12:32,QUEENS,11362,40.756035,-73.73069,"(40.756035, -73.73069)",,,245-69 62 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418209,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,3:17,BRONX,10452,40.834503,-73.93037,"(40.834503, -73.93037)",UNIVERSITY AVENUE,WEST 165 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4417670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/11/2021,16:37,,,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,WOODSIDE AVENUE,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418446,Sedan,Bike,,, +05/18/2021,16:45,MANHATTAN,10025,,,,CENTRAL PARK WEST,WEST 106 street,,0,0,0,0,0,0,0,0,Outside Car Distraction,Traffic Control Disregarded,,,,4418097,Station Wagon/Sport Utility Vehicle,Bike,,, +12/24/2021,15:30,MANHATTAN,10036,40.764317,-73.99579,"(40.764317, -73.99579)",,,653 11 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489425,Sedan,Van,,, +05/18/2021,21:20,,,40.66223,-73.93997,"(40.66223, -73.93997)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417959,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:00,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,17:53,BROOKLYN,11236,40.64077,-73.90913,"(40.64077, -73.90913)",EAST 88 STREET,GLENWOOD ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4461942,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/18/2021,10:30,STATEN ISLAND,10314,40.612747,-74.12712,"(40.612747, -74.12712)",VICTORY BOULEVARD,WESTCOTT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418321,Sedan,,,, +05/18/2021,8:15,BROOKLYN,11216,40.675957,-73.95273,"(40.675957, -73.95273)",,,22 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418631,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,19:21,QUEENS,11422,40.656338,-73.72906,"(40.656338, -73.72906)",,,259-20 147 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417906,Sedan,Sedan,,, +05/18/2021,15:25,MANHATTAN,10018,40.754177,-73.984604,"(40.754177, -73.984604)",WEST 41 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4418066,Sedan,Garbage or Refuse,,, +05/18/2021,8:30,QUEENS,11357,40.780224,-73.80255,"(40.780224, -73.80255)",WILLETS POINT BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417923,Ambulance,Bus,,, +05/18/2021,23:45,,,40.68623,-74.00046,"(40.68623, -74.00046)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418380,Box Truck,Sedan,,, +05/18/2021,18:30,,,40.70625,-74.00314,"(40.70625, -74.00314)",SOUTH STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4418557,Bike,,,, +05/18/2021,16:53,BRONX,10468,40.8606,-73.91102,"(40.8606, -73.91102)",SEDGWICK AVENUE,WEST 183 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4417965,Sedan,,,, +05/18/2021,11:55,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,3,0,0,0,1,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4417835,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +05/18/2021,8:15,,,40.75117,-73.9152,"(40.75117, -73.9152)",48 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4417724,Station Wagon/Sport Utility Vehicle,Carry All,,, +05/18/2021,17:38,BRONX,10459,40.8339,-73.883514,"(40.8339, -73.883514)",WEST FARMS ROAD,EAST 173 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418014,Sedan,Sedan,,, +05/18/2021,13:05,QUEENS,11375,40.71164,-73.85851,"(40.71164, -73.85851)",,,91-10 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418079,Sedan,,,, +05/18/2021,14:00,BRONX,10473,40.817173,-73.861725,"(40.817173, -73.861725)",SOUND VIEW AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4417878,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:27,BRONX,10463,40.8816,-73.90484,"(40.8816, -73.90484)",KINGSBRIDGE AVENUE,WEST 233 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4417867,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,14:25,QUEENS,11433,40.6932,-73.7845,"(40.6932, -73.7845)",167 STREET,111 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418038,Sedan,,,, +05/18/2021,6:30,,,40.83639,-73.91588,"(40.83639, -73.91588)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4418371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/18/2021,17:40,BROOKLYN,11215,40.665318,-73.98882,"(40.665318, -73.98882)",,,222 15 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418678,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,14:30,,,,,,STUYVESANT OVAL,OVAL CENTER,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4417919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,22:24,,,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417941,Sedan,Sedan,,, +05/18/2021,13:30,BROOKLYN,11225,40.65597,-73.959946,"(40.65597, -73.959946)",,,703 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418256,FORD,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,22:10,QUEENS,11105,40.77731,-73.91239,"(40.77731, -73.91239)",28 STREET,DITMARS BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418166,Taxi,Bike,,, +05/15/2021,13:55,MANHATTAN,10014,40.73876,-74.00973,"(40.73876, -74.00973)",WEST STREET,HORATIO STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4418526,Sedan,Bike,,, +04/22/2021,20:18,BROOKLYN,11215,40.666885,-73.98159,"(40.666885, -73.98159)",7 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418566,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,18:45,BROOKLYN,11236,40.63045,-73.909874,"(40.63045, -73.909874)",PAERDEGAT AVENUE NORTH,PAERDEGAT 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417952,Sedan,Sedan,,, +05/12/2021,11:05,QUEENS,11435,40.698242,-73.80635,"(40.698242, -73.80635)",,,95-01 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418618,Sedan,Sedan,,, +05/18/2021,16:05,QUEENS,11432,40.707466,-73.7887,"(40.707466, -73.7887)",171 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4417910,Sedan,Sedan,,, +05/17/2021,16:40,QUEENS,11378,40.72299,-73.91069,"(40.72299, -73.91069)",MASPETH AVENUE,58 PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418488,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,1:30,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418131,Pick-up Truck,,,, +05/18/2021,9:00,,,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4418158,Sedan,Taxi,,, +05/18/2021,16:00,QUEENS,11426,40.73757,-73.71632,"(40.73757, -73.71632)",83 AVENUE,252 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418646,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,17:54,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4418180,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,13:50,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417929,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/17/2021,21:13,BROOKLYN,11203,40.647007,-73.946266,"(40.647007, -73.946266)",NEW YORK AVENUE,TILDEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4461986,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,13:40,,,40.735504,-73.95264,"(40.735504, -73.95264)",PULASKI BRIDGE,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461137,Sedan,,,, +09/26/2021,1:50,BROOKLYN,11207,40.663055,-73.885345,"(40.663055, -73.885345)",,,709 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461092,Sedan,Pick-up Truck,,, +09/22/2021,10:05,MANHATTAN,10019,40.769005,-73.992355,"(40.769005, -73.992355)",WEST 55 STREET,11 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4461860,PICK UP,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,17:05,BROOKLYN,11206,40.704395,-73.9502,"(40.704395, -73.9502)",,,150 UNION AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461193,Sedan,E-Bike,,, +09/26/2021,1:40,QUEENS,11369,40.75835,-73.869705,"(40.75835, -73.869705)",,,32-35 99 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4460989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/26/2021,14:15,MANHATTAN,10026,40.802475,-73.94935,"(40.802475, -73.94935)",,,136 LENOX AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4461551,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,1:30,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Passenger Distraction,,,,4461345,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,8:30,,,40.86235,-73.89997,"(40.86235, -73.89997)",MORRIS AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461390,Sedan,Sedan,,, +09/26/2021,16:20,BRONX,10460,40.839996,-73.86832,"(40.839996, -73.86832)",EAST TREMONT AVENUE,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461586,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,1:30,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461463,Sedan,,,, +09/26/2021,22:25,QUEENS,11367,40.732037,-73.814926,"(40.732037, -73.814926)",JEWEL AVENUE,KISSENA BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461570,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,14:20,,,40.75999,-73.751945,"(40.75999, -73.751945)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4461044,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,3:00,,,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4461173,Sedan,Taxi,,, +09/26/2021,22:14,QUEENS,11411,40.702957,-73.74332,"(40.702957, -73.74332)",MURDOCK AVENUE,212 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4461304,Sedan,Sedan,,, +09/25/2021,16:10,QUEENS,11368,40.753113,-73.86,"(40.753113, -73.86)",108 STREET,37 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461911,Sedan,Sedan,,, +09/25/2021,17:11,STATEN ISLAND,10309,40.52786,-74.19985,"(40.52786, -74.19985)",AMBOY ROAD,HAYNES STREET,,3,0,0,0,0,0,3,0,Using On Board Navigation Device,Unspecified,,,,4462007,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,21:15,BRONX,10454,,,,third ave bridge,major deegan expressway,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4461452,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,2:52,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",150 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461796,Sedan,Pick-up Truck,,, +09/21/2021,15:30,MANHATTAN,10022,40.762913,-73.96981,"(40.762913, -73.96981)",PARK AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461916,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,4:00,BROOKLYN,11207,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,COOPER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461202,Sedan,,,, +09/25/2021,11:32,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",QUEENS BOULEVARD,62 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461972,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,17:00,BROOKLYN,11236,40.63501,-73.914055,"(40.63501, -73.914055)",FLATLANDS AVENUE,EAST 79 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,19:06,MANHATTAN,10012,40.72407,-74.00013,"(40.72407, -74.00013)",,,92 GREENE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461872,Sedan,Sedan,,, +09/26/2021,3:45,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4461108,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,15:00,,,40.730442,-73.98035,"(40.730442, -73.98035)",EAST 14 STREET,,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4461696,Taxi,Bike,,, +09/26/2021,15:00,QUEENS,11368,40.748158,-73.85406,"(40.748158, -73.85406)",111 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461484,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,12:29,,,,,,SEDGWICK AVENUE,WEST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4461525,Sedan,Sedan,Sedan,, +09/26/2021,20:20,,,40.654045,-73.92673,"(40.654045, -73.92673)",EAST 54 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461989,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,14:50,BROOKLYN,11215,40.66079,-73.99401,"(40.66079, -73.99401)",5 AVENUE,22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461659,E scooter,Sedan,,, +09/26/2021,17:06,MANHATTAN,10035,40.79566,-73.93249,"(40.79566, -73.93249)",,,509 EAST 117 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4461850,,,,, +09/26/2021,4:20,QUEENS,11435,40.70253,-73.8143,"(40.70253, -73.8143)",QUEENS BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461337,Taxi,,,, +09/23/2021,9:01,MANHATTAN,10036,40.764904,-73.998146,"(40.764904, -73.998146)",12 AVENUE,WEST 47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461815,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,2:40,QUEENS,11413,40.675507,-73.74186,"(40.675507, -73.74186)",,,134-54 229 STREET,0,0,0,0,0,0,0,0,,,,,,4461378,,,,, +09/26/2021,17:30,,,,,,KINGS HIGHWAY,TAPSCOTT AVEUNUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461284,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,17:40,BRONX,10455,40.81388,-73.91182,"(40.81388, -73.91182)",EAST 149 STREET,EAGLE AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4461442,Sedan,E-Scooter,,, +09/22/2021,8:30,,,40.61022,-74.09389,"(40.61022, -74.09389)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461907,Sedan,Dump,,, +09/26/2021,17:29,BROOKLYN,11221,40.696003,-73.9299,"(40.696003, -73.9299)",LAWTON STREET,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,20:45,BROOKLYN,11214,40.610306,-73.994,"(40.610306, -73.994)",,,1955 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461737,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,12:04,QUEENS,11435,40.705746,-73.8097,"(40.705746, -73.8097)",SUTPHIN BOULEVARD,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4461923,Sedan,,,, +09/26/2021,12:32,BROOKLYN,11204,40.617195,-73.97794,"(40.617195, -73.97794)",,,5901 BAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461413,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,14:25,,,40.69024,-73.99437,"(40.69024, -73.99437)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461294,Sedan,Sedan,,, +09/26/2021,11:06,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461414,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,19:30,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461364,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,0:00,BRONX,10460,40.83986,-73.888145,"(40.83986, -73.888145)",EAST 175 STREET,WATERLOO PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461822,Sedan,,,, +09/26/2021,1:40,QUEENS,11375,40.71512,-73.83224,"(40.71512, -73.83224)",78 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4460903,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,6:00,,,,,,CROSS ISLAND PARKWAY,35 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inexperience,,,,4461879,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,12:34,,,40.858635,-73.846466,"(40.858635, -73.846466)",PELHAM PARKWAY NORTH,SEYMOUR AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461965,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,20:45,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461254,Sedan,,,, +09/26/2021,23:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461615,Station Wagon/Sport Utility Vehicle,LIMO,,, +09/25/2021,20:00,QUEENS,11379,40.72477,-73.885124,"(40.72477, -73.885124)",,,75-21 CALDWELL AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4461954,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,15:21,QUEENS,11434,40.675842,-73.78305,"(40.675842, -73.78305)",BAISLEY BOULEVARD,157 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461921,Sedan,,,, +12/23/2021,12:50,BRONX,10453,40.850857,-73.90765,"(40.850857, -73.90765)",EAST TREMONT AVENUE,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4489288,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,2:05,BROOKLYN,11217,40.68627,-73.97812,"(40.68627, -73.97812)",,,300 ASHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4460947,Sedan,,,, +09/20/2021,22:26,,,40.700977,-73.91782,"(40.700977, -73.91782)",IRVING AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461831,Moped,Moped,,, +09/26/2021,17:55,,,40.692623,-73.923676,"(40.692623, -73.923676)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461213,Sedan,Sedan,,, +09/26/2021,6:42,QUEENS,11413,40.65908,-73.7513,"(40.65908, -73.7513)",,,146-29 230 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4461372,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/26/2021,17:18,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4461893,Sedan,Motorcycle,,, +09/26/2021,1:21,BROOKLYN,11228,40.62082,-74.009895,"(40.62082, -74.009895)",,,1203 76 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4461287,Sedan,Sedan,,, +09/26/2021,16:00,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461598,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,23:11,MANHATTAN,10032,40.83174,-73.94342,"(40.83174, -73.94342)",,,500 WEST 155 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461728,E-Bike,,,, +09/26/2021,17:50,,,40.688988,-73.84591,"(40.688988, -73.84591)",ATLANTIC AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461325,Sedan,,,, +09/24/2021,10:40,MANHATTAN,10009,40.725876,-73.97754,"(40.725876, -73.97754)",EAST 10 STREET,AVENUE C,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462040,Sedan,Sedan,,, +09/24/2021,16:16,MANHATTAN,10065,40.762974,-73.96217,"(40.762974, -73.96217)",,,307 EAST 63 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4461943,Bus,Sedan,,, +09/15/2021,17:45,QUEENS,11385,40.704403,-73.88202,"(40.704403, -73.88202)",CENTRAL AVENUE,70 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4461870,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,8:04,BROOKLYN,11208,40.66729,-73.88176,"(40.66729, -73.88176)",,,635 ELTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,12:45,BRONX,10467,40.879677,-73.861015,"(40.879677, -73.861015)",,,803 EAST 215 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461141,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,22:41,BROOKLYN,11207,40.657036,-73.89383,"(40.657036, -73.89383)",DE WITT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461471,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,5:40,MANHATTAN,10001,40.747875,-73.99107,"(40.747875, -73.99107)",,,150 WEST 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461929,Sedan,,,, +09/26/2021,8:59,,,40.769352,-73.83258,"(40.769352, -73.83258)",LINDEN PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461241,Sedan,Pick-up Truck,,, +09/26/2021,21:57,QUEENS,11377,40.746906,-73.90161,"(40.746906, -73.90161)",62 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4461578,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/22/2021,15:35,,,40.609505,-74.181885,"(40.609505, -74.181885)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4461902,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,11:30,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461046,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,2:43,BRONX,10459,40.82723,-73.88999,"(40.82723, -73.88999)",,,1129 VYSE AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461425,Sedan,Sedan,,, +09/26/2021,9:00,QUEENS,11368,40.737286,-73.85595,"(40.737286, -73.85595)",OTIS AVENUE,CALLOWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461486,Sedan,,,, +09/26/2021,15:50,BROOKLYN,11239,40.65256,-73.876686,"(40.65256, -73.876686)",,,550 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461118,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,11:00,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461302,Station Wagon/Sport Utility Vehicle,Bike,,, +09/13/2021,12:25,MANHATTAN,10019,40.766502,-73.99418,"(40.766502, -73.99418)",WEST 51 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4461799,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,15:56,BROOKLYN,11219,40.629215,-74.0069,"(40.629215, -74.0069)",,,1058 65 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461847,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,14:45,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",BROADWAY,37 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4461587,Sedan,E-Scooter,,, +09/26/2021,19:00,MANHATTAN,10036,40.75889,-73.98968,"(40.75889, -73.98968)",,,321 WEST 44 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4461226,Taxi,Bike,,, +09/26/2021,18:05,BROOKLYN,11211,40.707623,-73.962135,"(40.707623, -73.962135)",DIVISION AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,10:00,STATEN ISLAND,10307,40.511368,-74.24251,"(40.511368, -74.24251)",,,261 WOOD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462011,Sedan,,,, +09/21/2021,17:10,,,40.557568,-74.207,"(40.557568, -74.207)",ARTHUR KILL ROAD,WEST SERVICE ROAD,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4462006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,10:20,QUEENS,11372,40.747585,-73.89351,"(40.747585, -73.89351)",,,72-09 BROADWAY,1,0,0,0,0,0,1,0,Unspecified,,,,,4461912,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,23:54,QUEENS,11105,40.777252,-73.89799,"(40.777252, -73.89799)",42 STREET,19 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461752,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,13:50,,,40.71983,-73.98755,"(40.71983, -73.98755)",ESSEX STREET,,,1,0,0,0,1,0,0,0,Passenger Distraction,Passing Too Closely,,,,4461976,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,8:26,BRONX,10459,40.82746,-73.89838,"(40.82746, -73.89838)",,,1224 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461458,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,5:00,BROOKLYN,11212,40.673996,-73.90408,"(40.673996, -73.90408)",,,51 JUNIUS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4460957,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,14:00,QUEENS,11691,40.602276,-73.76554,"(40.602276, -73.76554)",,,1017 HARTMAN LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461567,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,17:10,BROOKLYN,11239,40.653736,-73.86563,"(40.653736, -73.86563)",,,409 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Glare,,,,,4461194,Sedan,,,, +09/26/2021,2:53,,,40.716812,-73.99777,"(40.716812, -73.99777)",CANAL STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4461498,Motorbike,Sedan,Sedan,, +09/26/2021,5:03,QUEENS,11106,40.763573,-73.92189,"(40.763573, -73.92189)",33 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4461433,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,0:25,,,40.687008,-73.82219,"(40.687008, -73.82219)",121 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4461344,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/25/2021,5:00,BROOKLYN,11216,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461858,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,18:05,BRONX,10452,40.83862,-73.92708,"(40.83862, -73.92708)",UNIVERSITY AVENUE,WEST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461385,Sedan,,,, +09/26/2021,14:14,BROOKLYN,11214,40.60309,-73.99262,"(40.60309, -73.99262)",BAY PARKWAY,84 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461770,4 dr sedan,Bike,,, +09/16/2021,16:30,,,,,,METROPOLITAN AVENUE,69 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462068,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,18:59,BROOKLYN,11228,40.613895,-74.01051,"(40.613895, -74.01051)",84 STREET,14 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4461259,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,14:09,BROOKLYN,11230,40.6139,-73.969925,"(40.6139, -73.969925)",EAST 5 STREET,RYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461580,Sedan,E-Bike,,, +09/26/2021,10:41,BRONX,10463,40.888145,-73.90603,"(40.888145, -73.90603)",,,3636 FIELDSTON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461660,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,23:30,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486643,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,21:00,QUEENS,11101,40.751,-73.94881,"(40.751, -73.94881)",43 ROAD,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461309,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,4:30,BRONX,10453,40.858387,-73.90279,"(40.858387, -73.90279)",WALTON AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461508,Sedan,Sedan,,, +09/26/2021,4:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4460983,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,21:43,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,3:39,BROOKLYN,11203,40.655575,-73.926895,"(40.655575, -73.926895)",LENOX ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,1:12,MANHATTAN,10029,40.79625,-73.94591,"(40.79625, -73.94591)",,,64 EAST 111 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461415,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,5:00,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",35 AVENUE,UNION STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4461248,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,20:42,BROOKLYN,11214,40.583656,-73.98656,"(40.583656, -73.98656)",BAY 52 STREET,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461402,Sedan,Sedan,,, +09/21/2021,15:45,MANHATTAN,10036,40.757393,-73.9803,"(40.757393, -73.9803)",,,55 WEST 47 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461814,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,23:15,QUEENS,11421,40.688946,-73.85322,"(40.688946, -73.85322)",90 STREET,91 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4461336,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/17/2021,18:05,BRONX,10460,40.83928,-73.886604,"(40.83928, -73.886604)",SOUTHERN BOULEVARD,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461826,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,3:10,,,40.714073,-73.95534,"(40.714073, -73.95534)",HAVEMEYER STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4460914,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,21:00,,,40.748848,-73.759026,"(40.748848, -73.759026)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,13:24,,,40.60353,-74.01863,"(40.60353, -74.01863)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461611,Motorcycle,Sedan,,, +09/19/2021,22:40,QUEENS,11385,40.70747,-73.91007,"(40.70747, -73.91007)",WOODWARD AVENUE,GREENE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4461963,Motorcycle,,,, +09/22/2021,9:30,BRONX,10474,40.814594,-73.88588,"(40.814594, -73.88588)",SPOFFORD AVENUE,HUNTS POINT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461936,Box Truck,Pick-up Truck,,, +09/26/2021,4:05,QUEENS,11373,40.745636,-73.88395,"(40.745636, -73.88395)",,,81-20 BAXTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4461488,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,0:00,BRONX,10469,40.86805,-73.83401,"(40.86805, -73.83401)",BARTOW AVENUE,GRACE AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Following Too Closely,Unspecified,,,4461115,Sedan,Sedan,Sedan,, +09/26/2021,14:31,STATEN ISLAND,10301,40.634,-74.097275,"(40.634, -74.097275)",CASTLETON AVENUE,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461129,Sedan,Ambulance,,, +12/23/2021,11:00,MANHATTAN,10013,40.718544,-74.00072,"(40.718544, -74.00072)",,,254 CANAL STREET,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4489241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,19:21,,,40.774544,-73.78454,"(40.774544, -73.78454)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461877,Sedan,Sedan,,, +09/26/2021,17:30,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",HUNTERS POINT AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Turning Improperly,,,,4461164,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,16:21,BRONX,10469,40.865143,-73.83981,"(40.865143, -73.83981)",ALLERTON AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461478,Sedan,,,, +09/26/2021,15:00,BROOKLYN,11216,40.684,-73.95031,"(40.684, -73.95031)",NOSTRAND AVENUE,PUTNAM AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461223,Sedan,,,, +09/26/2021,0:40,QUEENS,11691,40.603863,-73.7561,"(40.603863, -73.7561)",REGINA AVENUE,BEACH CHANNEL DRIVE,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4461531,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,15:29,,,40.704853,-73.791664,"(40.704853, -73.791664)",168 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461927,Sedan,,,, +09/26/2021,4:30,QUEENS,11368,40.7433,-73.8675,"(40.7433, -73.8675)",JUNCTION BOULEVARD,ALSTYNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461002,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,18:50,QUEENS,11103,40.764355,-73.91131,"(40.764355, -73.91131)",43 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461444,Sedan,E-Bike,,, +09/26/2021,11:20,,,40.61226,-74.13605,"(40.61226, -74.13605)",VICTORY BOULEVARD,INGRAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461516,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,3:44,,,40.594585,-73.90858,"(40.594585, -73.90858)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4461577,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,5:23,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461076,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,17:00,,,40.58388,-73.82305,"(40.58388, -73.82305)",BEACH 102 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4461162,Station Wagon/Sport Utility Vehicle,,,, +09/11/2021,16:45,QUEENS,11369,40.76121,-73.86723,"(40.76121, -73.86723)",102 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461913,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,20:30,QUEENS,11368,40.75349,-73.86359,"(40.75349, -73.86359)",104 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461919,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,5:49,BROOKLYN,11237,40.70404,-73.91358,"(40.70404, -73.91358)",,,1529 GREENE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461208,Sedan,Sedan,,, +09/26/2021,6:08,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,2,0,0,0,0,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4461373,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,10:20,,,40.61054,-74.103455,"(40.61054, -74.103455)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4461908,Sedan,Sedan,Pick-up Truck,, +09/26/2021,19:26,,,40.804066,-73.93267,"(40.804066, -73.93267)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461610,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/25/2021,11:00,QUEENS,11413,40.67246,-73.7595,"(40.67246, -73.7595)",THURSTON STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461868,Sedan,,,, +09/26/2021,8:48,BROOKLYN,11239,,,,,,1461 Geneva loop,0,0,0,0,0,0,0,0,Unspecified,,,,,4461094,Sedan,,,, +09/26/2021,1:25,QUEENS,11356,40.780148,-73.84603,"(40.780148, -73.84603)",COLLEGE POINT BOULEVARD,22 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4461244,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,1:30,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460972,Sedan,,,, +09/26/2021,17:25,,,,,,HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4461195,Sedan,,,, +09/24/2021,16:55,,,40.708782,-73.9123,"(40.708782, -73.9123)",WOODWARD AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461966,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,1:00,BRONX,10460,40.834915,-73.894135,"(40.834915, -73.894135)",BOSTON ROAD,WILKENS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461439,Sedan,Ambulance,,, +09/26/2021,16:00,BRONX,10466,40.888878,-73.843216,"(40.888878, -73.843216)",,,1199 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4461178,Sedan,Sedan,,, +09/26/2021,18:19,QUEENS,11419,40.68297,-73.82824,"(40.68297, -73.82824)",113 STREET,107 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4462053,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +09/24/2021,22:27,MANHATTAN,10022,40.762383,-73.97229,"(40.762383, -73.97229)",,,595 MADISON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,,,,4461811,Sedan,Sedan,,, +09/26/2021,0:00,,,40.63277,-74.09004,"(40.63277, -74.09004)",CASTLETON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461537,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,19:00,,,40.701588,-73.98863,"(40.701588, -73.98863)",YORK STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4461289,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/26/2021,2:50,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461470,Sedan,Sedan,,, +09/26/2021,7:43,QUEENS,11428,40.720303,-73.732346,"(40.720303, -73.732346)",JAMAICA AVENUE,222 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4461561,Sedan,,,, +09/26/2021,14:11,,,,,,WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4461505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,6:40,MANHATTAN,10065,40.763893,-73.96436,"(40.763893, -73.96436)",,,205 EAST 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,19:58,BRONX,10469,40.871254,-73.84355,"(40.871254, -73.84355)",HAMMERSLEY AVENUE,EASTCHESTER ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489152,,,,, +09/26/2021,16:55,BRONX,10455,40.818226,-73.916794,"(40.818226, -73.916794)",EAST 152 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4461727,Station Wagon/Sport Utility Vehicle,Moped,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/21/2021,6:28,,,40.61022,-74.09389,"(40.61022, -74.09389)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461901,Sedan,,,, +09/26/2021,18:26,BROOKLYN,11203,40.653206,-73.94024,"(40.653206, -73.94024)",LINDEN BOULEVARD,EAST 40 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461277,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,12:24,MANHATTAN,10032,40.838207,-73.93723,"(40.838207, -73.93723)",,,457 WEST 166 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461803,Sedan,Taxi,Sedan,, +09/26/2021,0:00,BROOKLYN,11208,40.673542,-73.86668,"(40.673542, -73.86668)",SUTTER AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4461257,Sedan,Motorcycle,,, +09/26/2021,0:04,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",PACIFIC STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460954,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,2:25,BROOKLYN,11211,40.716667,-73.95206,"(40.716667, -73.95206)",UNION AVENUE,WITHERS STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461827,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,17:15,,,40.828938,-73.84559,"(40.828938, -73.84559)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461979,Sedan,,,, +09/26/2021,5:20,QUEENS,11385,40.702995,-73.86806,"(40.702995, -73.86806)",,,80-07 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461142,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,15:06,,,40.71582,-73.80799,"(40.71582, -73.80799)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4461313,Sedan,Sedan,Sedan,, +09/22/2021,19:04,MANHATTAN,10037,40.810856,-73.939026,"(40.810856, -73.939026)",WEST 132 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4461944,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,7:00,QUEENS,11418,40.697083,-73.83048,"(40.697083, -73.83048)",118 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461895,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,13:34,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",BEDFORD AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461628,Motorscooter,Sedan,,, +09/26/2021,13:20,QUEENS,11433,40.698055,-73.7877,"(40.698055, -73.7877)",,,167-04 108 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461333,Sedan,Sedan,,, +09/24/2021,14:50,BROOKLYN,11203,40.651512,-73.93521,"(40.651512, -73.93521)",CHURCH AVENUE,EAST 45 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4462005,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/26/2021,21:40,,,40.793552,-73.945335,"(40.793552, -73.945335)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461429,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,0:34,,,40.856625,-73.8319,"(40.856625, -73.8319)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4461661,Sedan,,,, +09/26/2021,11:40,,,40.69099,-73.99175,"(40.69099, -73.99175)",SCHERMERHORN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461297,Sedan,,,, +09/26/2021,18:30,,,40.835194,-73.874054,"(40.835194, -73.874054)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461229,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,14:15,MANHATTAN,10022,40.76156,-73.974686,"(40.76156, -73.974686)",,,2 EAST 55 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461819,Bike,Bike,,, +09/26/2021,22:10,,,,,,OLCOTT STREET,Shea Road,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461840,Sedan,,,, +09/26/2021,10:31,,,40.818974,-73.89145,"(40.818974, -73.89145)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4461457,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,20:07,QUEENS,11369,40.76065,-73.86713,"(40.76065, -73.86713)",,,31-23 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461590,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,7:13,,,40.684845,-73.81338,"(40.684845, -73.81338)",130 STREET,109 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4461343,Sedan,Sedan,Sedan,, +09/26/2021,0:00,STATEN ISLAND,10309,40.525227,-74.20962,"(40.525227, -74.20962)",AMBOY ROAD,MAGUIRE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462012,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,4:30,BROOKLYN,11218,40.636063,-73.96789,"(40.636063, -73.96789)",,,876 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4461411,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/05/2021,3:22,,,40.61806,-74.151505,"(40.61806, -74.151505)",MARTIN LUTHER KING JR,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4461905,Motorcycle,,,, +09/26/2021,20:00,BROOKLYN,11214,40.601357,-73.99284,"(40.601357, -73.99284)",,,2233 86 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4461740,Bus,,,, +09/20/2021,18:42,MANHATTAN,10038,40.707855,-74.00684,"(40.707855, -74.00684)",GOLD STREET,PLATT STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461953,Sedan,E-Scooter,,, +09/26/2021,9:28,QUEENS,11374,40.73565,-73.856155,"(40.73565, -73.856155)",62 AVENUE,102 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,14:55,,,40.684082,-73.90864,"(40.684082, -73.90864)",BUSHWICK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461938,Sedan,,,, +09/26/2021,8:14,MANHATTAN,10280,40.71008,-74.01639,"(40.71008, -74.01639)",ALBANY STREET,SOUTH END AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461774,Sedan,,,, +09/26/2021,3:31,BROOKLYN,11226,40.644325,-73.95994,"(40.644325, -73.95994)",,,750 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460925,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,20:30,BROOKLYN,11217,40.683117,-73.987366,"(40.683117, -73.987366)",,,423 BALTIC STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4461881,Taxi,,,, +09/26/2021,14:33,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461275,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,22:14,BROOKLYN,11206,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,GARDEN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461489,Sedan,Motorscooter,,, +09/26/2021,15:15,BROOKLYN,11211,40.706997,-73.96137,"(40.706997, -73.96137)",LEE AVENUE,TAYLOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,12:50,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461480,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,12:11,MANHATTAN,10038,40.70767,-74.00577,"(40.70767, -74.00577)",,,111 JOHN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461852,Sedan,Sedan,,, +09/26/2021,22:00,MANHATTAN,10032,40.836834,-73.94567,"(40.836834, -73.94567)",,,655 WEST 160 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,0:30,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4461348,Sedan,,,, +09/26/2021,2:19,QUEENS,11420,40.674454,-73.82547,"(40.674454, -73.82547)",,,132-35 114 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461382,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,17:19,BROOKLYN,11204,40.618294,-73.98107,"(40.618294, -73.98107)",,,2047 60 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461581,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/26/2021,10:55,QUEENS,11105,40.777004,-73.91661,"(40.777004, -73.91661)",CRESCENT STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461440,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/26/2021,2:45,BROOKLYN,11217,40.686928,-73.98484,"(40.686928, -73.98484)",ATLANTIC AVENUE,BOND STREET,,1,0,1,0,0,0,0,0,,,,,,4461176,,,,, +09/26/2021,12:25,,,40.702488,-73.98854,"(40.702488, -73.98854)",,,ADAMS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,16:30,MANHATTAN,10001,40.748287,-73.99008,"(40.748287, -73.99008)",,,125 WEST 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461925,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,8:57,BRONX,10472,40.830425,-73.86221,"(40.830425, -73.86221)",UNDERHILL AVENUE,GLEASON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461008,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,14:54,MANHATTAN,10003,40.724068,-73.988396,"(40.724068, -73.988396)",,,67 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461909,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,18:25,BRONX,10464,40.84237,-73.78538,"(40.84237, -73.78538)",,,103 PELL PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461445,Sedan,Sedan,,, +09/26/2021,6:57,,,40.705578,-73.744316,"(40.705578, -73.744316)",,,112 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461306,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,11:45,STATEN ISLAND,10312,40.539898,-74.16103,"(40.539898, -74.16103)",RICHMOND AVENUE,SYCAMORE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462009,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,4:36,,,,,,LIE OUTER ROADWAY (CDR),,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461875,Station Wagon/Sport Utility Vehicle,PK,,, +08/15/2021,6:20,,,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4461962,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,18:00,,,40.888454,-73.84197,"(40.888454, -73.84197)",BAYCHESTER AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4461179,Sedan,,,, +09/26/2021,17:35,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461231,Sedan,Motorcycle,,, +09/26/2021,20:05,QUEENS,11372,40.748318,-73.87742,"(40.748318, -73.87742)",89 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461592,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/26/2021,13:50,BRONX,10458,40.856274,-73.89039,"(40.856274, -73.89039)",,,2377 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,16:18,STATEN ISLAND,10314,40.609573,-74.12391,"(40.609573, -74.12391)",GOWER STREET,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461539,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,16:57,,,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462018,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/26/2021,0:45,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4461001,Sedan,,,, +09/26/2021,0:40,,,40.852146,-73.91741,"(40.852146, -73.91741)",WEST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4461399,Sedan,Sedan,,, +09/22/2021,17:00,MANHATTAN,10021,40.76721,-73.95867,"(40.76721, -73.95867)",,,318 EAST 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462065,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,8:10,BRONX,10469,40.873222,-73.83747,"(40.873222, -73.83747)",ELY AVENUE,HAMMERSLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461113,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,20:57,BRONX,10451,40.80884,-73.92889,"(40.80884, -73.92889)",,,230 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462062,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,9:07,BRONX,10474,40.808437,-73.88682,"(40.808437, -73.88682)",MANIDA STREET,EAST BAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461455,Sedan,,,, +09/26/2021,6:17,,,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4460971,Sedan,Sedan,,, +09/26/2021,20:43,QUEENS,11355,40.747833,-73.83301,"(40.747833, -73.83301)",LAWRENCE STREET,BOOTH MEMORIAL AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Passing or Lane Usage Improper,,,,4461247,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/26/2021,19:42,MANHATTAN,10022,40.759617,-73.961975,"(40.759617, -73.961975)",1 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461510,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,14:10,QUEENS,11385,40.6997,-73.9055,"(40.6997, -73.9055)",JEFFERSON AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461967,Convertible,,,, +09/26/2021,20:30,QUEENS,11102,40.77204,-73.93224,"(40.77204, -73.93224)",30 AVENUE,MAIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461435,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,15:30,BROOKLYN,11226,40.64295,-73.95356,"(40.64295, -73.95356)",EAST 25 STREET,CLARENDON ROAD,,6,0,0,0,0,0,6,0,Unspecified,Unspecified,,,,4461158,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,18:04,BRONX,10457,40.851936,-73.8885,"(40.851936, -73.8885)",,,2265 HUGHES AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4461837,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,0:25,MANHATTAN,10032,40.836555,-73.94306,"(40.836555, -73.94306)",WEST 161 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4461805,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,17:32,QUEENS,11434,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461318,Sedan,Garbage or Refuse,,, +09/26/2021,18:12,BRONX,10466,40.88893,-73.83644,"(40.88893, -73.83644)",EAST 233 STREET,SETON AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4461290,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/26/2021,6:15,QUEENS,11435,40.691822,-73.80783,"(40.691822, -73.80783)",,,105-18 PINEGROVE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461608,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,7:33,,,,,,MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4461726,Sedan,Sedan,,, +09/26/2021,19:50,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4461334,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,1:10,BROOKLYN,11226,40.641586,-73.95341,"(40.641586, -73.95341)",,,363 EAST 25 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461155,Sedan,Sedan,,, +09/25/2021,19:26,BRONX,10466,40.88002,-73.84179,"(40.88002, -73.84179)",,,3663 BOSTON ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461949,Sedan,,,, +09/26/2021,7:11,BROOKLYN,11207,40.66884,-73.89511,"(40.66884, -73.89511)",,,348 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461093,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/15/2021,19:30,BRONX,10465,40.818993,-73.82244,"(40.818993, -73.82244)",BRINSMADE AVENUE,SAMPSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461863,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,1:34,BROOKLYN,11207,40.66841,-73.90167,"(40.66841, -73.90167)",SUTTER AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461468,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,14:15,MANHATTAN,10037,40.814358,-73.94067,"(40.814358, -73.94067)",,,506 LENOX AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4461559,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,8:45,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4489510,Box Truck,,,, +09/26/2021,9:00,,,,,,LINDEN BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461356,Sedan,Sedan,,, +09/26/2021,20:50,QUEENS,11373,40.74314,-73.88334,"(40.74314, -73.88334)",,,81-21 BROADWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461501,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/26/2021,4:00,QUEENS,11101,40.756874,-73.94436,"(40.756874, -73.94436)",40 AVENUE,10 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461428,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,8:18,BROOKLYN,11207,40.670506,-73.89451,"(40.670506, -73.89451)",,,360 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4461085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,0:15,BROOKLYN,11212,40.664097,-73.90932,"(40.664097, -73.90932)",DUMONT AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460955,Sedan,Sedan,,, +09/26/2021,21:10,BROOKLYN,11207,40.67567,-73.89785,"(40.67567, -73.89785)",ATLANTIC AVENUE,SHEFFIELD AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461255,Sedan,E-Scooter,,, +09/15/2021,6:58,,,40.76036,-73.85688,"(40.76036, -73.85688)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4461917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,11:00,QUEENS,11428,40.720303,-73.732346,"(40.720303, -73.732346)",JAMAICA AVENUE,222 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4461375,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,2:23,BROOKLYN,11237,40.69934,-73.92336,"(40.69934, -73.92336)",,,190 WILSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461207,Sedan,Sedan,,, +09/26/2021,23:27,,,40.72948,-73.9721,"(40.72948, -73.9721)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4461809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,13:20,BRONX,10457,40.84536,-73.89684,"(40.84536, -73.89684)",3 AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461829,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,22:30,BROOKLYN,11213,40.667316,-73.93683,"(40.667316, -73.93683)",TROY AVENUE,PRESIDENT STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461617,E-Scooter,,,, +09/24/2021,9:20,QUEENS,11370,40.760727,-73.89106,"(40.760727, -73.89106)",30 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461899,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/26/2021,18:39,MANHATTAN,10016,40.742252,-73.97769,"(40.742252, -73.97769)",2 AVENUE,EAST 30 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461278,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,9:52,,,40.730915,-73.91546,"(40.730915, -73.91546)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,9:45,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4461914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,3:42,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461446,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,12:15,MANHATTAN,10065,40.76614,-73.97166,"(40.76614, -73.97166)",5 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461939,Bike,Sedan,,, +09/21/2021,17:40,,,,,,20 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461971,Pick-up Truck,Tractor Truck Diesel,,, +09/26/2021,13:19,,,40.830624,-73.85206,"(40.830624, -73.85206)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461132,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/26/2021,2:33,MANHATTAN,10012,40.722355,-73.99327,"(40.722355, -73.99327)",BOWERY,PRINCE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461494,Moped,Sedan,,, +09/26/2021,19:30,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,,,,,,4461873,,,,, +09/26/2021,3:00,BRONX,10455,40.819195,-73.912506,"(40.819195, -73.912506)",,,704 BROOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461441,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/26/2021,14:30,QUEENS,11356,40.78015,-73.84511,"(40.78015, -73.84511)",22 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,19:25,BROOKLYN,11201,40.691456,-73.98735,"(40.691456, -73.98735)",JAY STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4461184,Taxi,,,, +09/25/2021,18:50,QUEENS,11434,40.68121,-73.773,"(40.68121, -73.773)",BAISLEY BOULEVARD,171 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4461571,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/26/2021,23:40,BROOKLYN,11204,40.627922,-73.978874,"(40.627922, -73.978874)",,,1872 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461543,Sedan,Pick-up Truck,,, +12/22/2021,14:00,STATEN ISLAND,10301,40.630806,-74.10369,"(40.630806, -74.10369)",FOREST AVENUE,KISSEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489597,Sedan,Pick-up Truck,,, +09/25/2021,8:00,QUEENS,11368,40.753895,-73.862114,"(40.753895, -73.862114)",106 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461900,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,8:00,MANHATTAN,10007,40.7158,-74.00989,"(40.7158, -74.00989)",,,146 CHURCH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461951,Sedan,,,, +09/26/2021,21:45,QUEENS,11374,40.724903,-73.85777,"(40.724903, -73.85777)",66 AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461641,Sedan,Sedan,,, +09/17/2021,11:30,STATEN ISLAND,10309,40.549362,-74.220955,"(40.549362, -74.220955)",,,960 BLOOMINGDALE ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4462008,Pick-up Truck,,,, +09/26/2021,7:29,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4461339,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,15:24,,,,,,,,106 WEST DRIVE,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4461818,E-Scooter,,,, +09/26/2021,16:00,MANHATTAN,10019,40.766735,-73.992775,"(40.766735, -73.992775)",,,535 WEST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461821,Sedan,,,, +09/26/2021,2:34,QUEENS,11413,40.66419,-73.76159,"(40.66419, -73.76159)",145 ROAD,184 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460930,Sedan,Pick-up Truck,,, +09/25/2021,8:51,MANHATTAN,10018,40.75538,-73.99485,"(40.75538, -73.99485)",,,484 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461924,Sedan,,,, +09/26/2021,7:25,STATEN ISLAND,10306,40.564705,-74.12721,"(40.564705, -74.12721)",GUYON AVENUE,NORTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461392,Sedan,,,, +09/26/2021,3:57,MANHATTAN,10029,40.795273,-73.94406,"(40.795273, -73.94406)",,,1787 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4461419,Taxi,Tanker,,, +09/20/2021,22:40,BROOKLYN,11220,40.645973,-74.01631,"(40.645973, -74.01631)",53 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461888,Sedan,,,, +09/26/2021,17:20,QUEENS,11367,40.730286,-73.815056,"(40.730286, -73.815056)",,,70-30 KISSENA BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461266,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/26/2021,16:45,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",MERRICK BOULEVARD,SPRINGFIELD BOULEVARD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4461584,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,1:16,QUEENS,11426,40.725643,-73.72818,"(40.725643, -73.72818)",,,92-67 240 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461305,Pick-up Truck,Taxi,Station Wagon/Sport Utility Vehicle,, +09/24/2021,12:30,MANHATTAN,10003,40.727684,-73.98833,"(40.727684, -73.98833)",,,110 2 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4461910,Sedan,Bike,,, +08/31/2021,8:15,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462023,Sedan,Sedan,,, +09/26/2021,15:15,STATEN ISLAND,10308,40.54924,-74.15338,"(40.54924, -74.15338)",AMBOY ROAD,SEELEY LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4461412,Motorcycle,,,, +09/26/2021,14:33,,,40.859325,-73.93132,"(40.859325, -73.93132)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461175,Sedan,,,, +09/26/2021,9:00,QUEENS,11358,40.75361,-73.78901,"(40.75361, -73.78901)",192 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,19:20,MANHATTAN,10036,40.758327,-73.98899,"(40.758327, -73.98899)",,,692 8 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461483,Sedan,Moped,,, +09/26/2021,21:40,QUEENS,11372,40.74906,-73.870384,"(40.74906, -73.870384)",ROOSEVELT AVENUE,WARREN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461596,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,15:35,MANHATTAN,10035,40.79971,-73.94017,"(40.79971, -73.94017)",,,152 EAST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461234,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,16:52,,,40.878483,-73.86163,"(40.878483, -73.86163)",EAST 213 STREET,BARNES AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461215,Sedan,,,, +09/26/2021,19:30,QUEENS,11379,40.721485,-73.86658,"(40.721485, -73.86658)",WOODHAVEN BOULEVARD,64 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461522,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,16:00,MANHATTAN,10019,40.761055,-73.98434,"(40.761055, -73.98434)",,,1619 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461904,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,17:00,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",39 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461296,Sedan,Bike,,, +09/26/2021,19:30,QUEENS,11417,40.676556,-73.860756,"(40.676556, -73.860756)",,,106-26 76 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461346,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,15:15,QUEENS,11375,40.736355,-73.84877,"(40.736355, -73.84877)",62 DRIVE,110 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4461851,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,1:00,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461795,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,21:00,QUEENS,11362,40.74677,-73.73009,"(40.74677, -73.73009)",244 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462003,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/18/2021,1:33,,,40.69383,-73.758156,"(40.69383, -73.758156)",116 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462063,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/26/2021,2:45,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4461379,Sedan,,,, +09/26/2021,18:30,MANHATTAN,10023,40.77936,-73.97737,"(40.77936, -73.97737)",WEST 75 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4461280,Sedan,,,, +09/25/2021,8:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461959,Convertible,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,2:18,BROOKLYN,11221,40.689102,-73.93194,"(40.689102, -73.93194)",,,690 QUINCY STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4461670,Sedan,Sedan,,, +09/26/2021,19:45,BRONX,10451,40.825115,-73.92541,"(40.825115, -73.92541)",EAST 157 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461738,Ambulance,Sedan,,, +09/25/2021,18:20,MANHATTAN,10032,40.841805,-73.93552,"(40.841805, -73.93552)",,,2236 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461806,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,23:43,BROOKLYN,11226,40.650345,-73.966,"(40.650345, -73.966)",,,1502 CATON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4461322,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,20:00,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",BOSTON ROAD,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4489819,,,,, +12/23/2021,8:45,QUEENS,11412,40.694534,-73.74783,"(40.694534, -73.74783)",118 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489278,Sedan,Pick-up Truck,,, +12/23/2021,7:40,,,40.68783,-73.93004,"(40.68783, -73.93004)",MONROE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489723,Sedan,Bus,,, +12/22/2021,22:50,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4489041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/23/2021,6:32,BRONX,10467,40.881,-73.86254,"(40.881, -73.86254)",,,747 EAST 216 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489651,Sedan,Sedan,,, +11/26/2021,0:19,MANHATTAN,10030,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,WEST 144 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489865,Sedan,Sedan,,, +12/16/2021,17:55,BROOKLYN,11235,40.57982,-73.95449,"(40.57982, -73.95449)",,,91 CORBIN PLACE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489368,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,2:40,BROOKLYN,11206,40.70154,-73.93837,"(40.70154, -73.93837)",FLUSHING AVENUE,GARDEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488656,Sedan,Taxi,,, +12/23/2021,8:30,,,40.716114,-73.824905,"(40.716114, -73.824905)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,4489104,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/20/2021,5:30,,,40.665142,-73.99669,"(40.665142, -73.99669)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418677,Sedan,,,, +12/11/2021,2:10,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489353,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,13:00,BRONX,10469,40.868095,-73.83383,"(40.868095, -73.83383)",,,1930 BARTOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488865,Sedan,,,, +12/21/2021,14:00,BROOKLYN,11236,40.647106,-73.89927,"(40.647106, -73.89927)",GLENWOOD ROAD,EAST 101 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489321,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,8:34,,,40.606842,-74.0155,"(40.606842, -74.0155)",BAY 8 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489071,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,1:18,QUEENS,11385,40.711285,-73.90618,"(40.711285, -73.90618)",,,2231 GREENE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,14:00,QUEENS,11418,40.70381,-73.820145,"(40.70381, -73.820145)",,,132-18 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489021,Sedan,,,, +12/18/2021,1:15,BRONX,10466,40.89134,-73.84688,"(40.89134, -73.84688)",,,4070 BRUNER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,,4489646,Sedan,Sedan,Sedan,Sedan, +12/18/2021,15:30,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",114 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489385,Sedan,,,, +12/24/2021,14:55,BRONX,10474,40.819508,-73.88683,"(40.819508, -73.88683)",,,880 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,18:48,QUEENS,11373,40.734875,-73.88212,"(40.734875, -73.88212)",GRAND AVENUE,HASPEL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488967,Bike,,,, +12/23/2021,15:14,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4489293,Sedan,Sedan,,, +12/19/2021,13:10,,,40.830067,-73.92915,"(40.830067, -73.92915)",JEROME AVENUE,EAST 161 STREET,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489443,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/23/2021,20:00,,,40.691227,-73.98214,"(40.691227, -73.98214)",FLEET STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4489191,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/22/2021,10:20,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489465,Flat Bed,Box Truck,,, +12/22/2021,19:45,,,40.85447,-73.91008,"(40.85447, -73.91008)",WEST BURNSIDE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488994,Sedan,Bike,,, +12/23/2021,10:47,BRONX,10469,40.87637,-73.84846,"(40.87637, -73.84846)",,,3455 BOSTON ROAD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4489154,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,22:00,BRONX,10465,40.81294,-73.802055,"(40.81294, -73.802055)",,,2 LONGSTREET AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4489304,Sedan,,,, +12/22/2021,18:45,QUEENS,11365,40.73567,-73.78423,"(40.73567, -73.78423)",,,67-11 188 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,0:40,,,40.64495,-73.9249,"(40.64495, -73.9249)",CLARENDON ROAD,KINGS HIGHWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4489569,Sedan,Sedan,,, +12/23/2021,10:30,BRONX,10454,40.805557,-73.91453,"(40.805557, -73.91453)",EAST 138 STREET,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4489110,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,14:44,BROOKLYN,11218,40.6496,-73.96792,"(40.6496, -73.96792)",ARGYLE ROAD,CATON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489547,Sedan,NYCFIREDEP,,, +12/14/2021,9:55,BROOKLYN,11211,40.713345,-73.96017,"(40.713345, -73.96017)",SOUTH 1 STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489770,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,15:00,QUEENS,11420,40.67875,-73.8205,"(40.67875, -73.8205)",LINDEN BOULEVARD,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489797,Bike,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,23:07,BROOKLYN,11236,40.647106,-73.89927,"(40.647106, -73.89927)",GLENWOOD ROAD,EAST 101 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489449,Sedan,Van,Sedan,, +12/19/2021,19:00,MANHATTAN,10032,40.838364,-73.9438,"(40.838364, -73.9438)",,,97 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489705,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,6:05,BROOKLYN,11212,40.67024,-73.907005,"(40.67024, -73.907005)",PITKIN AVENUE,STONE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489528,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,23:15,,,40.835484,-73.9494,"(40.835484, -73.9494)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489698,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,2:36,,,40.58501,-73.954575,"(40.58501, -73.954575)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4461553,Sedan,,,, +12/24/2021,12:00,BROOKLYN,11235,40.583782,-73.959984,"(40.583782, -73.959984)",,,2981 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489469,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,10:45,STATEN ISLAND,10308,40.551254,-74.13457,"(40.551254, -74.13457)",HYLAN BOULEVARD,REDGRAVE AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,,,4489615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/24/2021,0:00,BRONX,10459,40.83209,-73.8898,"(40.83209, -73.8898)",JENNINGS STREET,HOE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489788,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/15/2021,18:45,BROOKLYN,11203,40.656097,-73.929855,"(40.656097, -73.929855)",,,242 EAST 51 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4489561,Sedan,Sedan,Sedan,, +12/23/2021,0:00,,,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489137,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,3:20,QUEENS,11420,40.675186,-73.81554,"(40.675186, -73.81554)",,,117-35 122 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,14:50,BROOKLYN,11206,40.709484,-73.94861,"(40.709484, -73.94861)",,,422 LORIMER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488945,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,15:00,QUEENS,11373,40.735497,-73.869705,"(40.735497, -73.869705)",57 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489667,Bus,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,12:00,MANHATTAN,10010,40.73934,-73.98433,"(40.73934, -73.98433)",,,145 EAST 23 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,12:00,BROOKLYN,11206,40.694542,-73.93691,"(40.694542, -73.93691)",,,333 HART STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489718,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,9:20,QUEENS,11417,40.670776,-73.84788,"(40.670776, -73.84788)",88 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489824,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,3:16,BROOKLYN,11218,40.646378,-73.97085,"(40.646378, -73.97085)",CONEY ISLAND AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489505,Sedan,Sedan,,, +12/23/2021,16:10,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,2:10,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4489426,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,9:35,QUEENS,11432,40.717285,-73.792274,"(40.717285, -73.792274)",HOME LAWN STREET,84 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Driver Inattention/Distraction,,,,4489079,Sedan,Sedan,,, +12/24/2021,1:51,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4489856,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,1:05,,,40.69383,-73.758156,"(40.69383, -73.758156)",116 ROAD,194 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4488690,Sedan,,,, +12/22/2021,6:35,QUEENS,11433,40.692528,-73.79096,"(40.692528, -73.79096)",160 STREET,110 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489004,Sedan,,,, +12/23/2021,10:30,BROOKLYN,11223,40.601593,-73.97437,"(40.601593, -73.97437)",AVENUE S,VAN SICKLEN STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4489588,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,13:27,BROOKLYN,11214,40.611008,-73.995186,"(40.611008, -73.995186)",77 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,13:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489336,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,21:30,,,40.87016,-73.89099,"(40.87016, -73.89099)",EAST 198 STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489485,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/19/2021,13:00,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4489640,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,15:55,STATEN ISLAND,10306,40.57274,-74.13847,"(40.57274, -74.13847)",RICHMOND ROAD,KENSICO STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489011,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:15,BROOKLYN,11221,40.689224,-73.93094,"(40.689224, -73.93094)",,,669 QUINCY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488908,Bus,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,0:20,MANHATTAN,10010,40.73817,-73.97761,"(40.73817, -73.97761)",EAST 25 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4489003,Ambulance,Sedan,Sedan,, +12/24/2021,4:30,QUEENS,11106,40.76351,-73.92413,"(40.76351, -73.92413)",,,31-29 31 STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4489308,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:18,,,40.743954,-73.87423,"(40.743954, -73.87423)",LAMONT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418729,Sedan,Sedan,,, +12/23/2021,13:37,BROOKLYN,11229,40.604137,-73.95126,"(40.604137, -73.95126)",AVENUE S,EAST 21 STREET,,1,0,1,0,0,0,0,0,,,,,,4489169,E-Bike,,,, +12/22/2021,6:13,BROOKLYN,11229,40.60455,-73.94752,"(40.60455, -73.94752)",BEDFORD AVENUE,AVENUE S,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488962,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,15:30,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489177,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,0:20,BROOKLYN,11211,40.711323,-73.94725,"(40.711323, -73.94725)",GRAND STREET,LEONARD STREET,,1,0,0,0,1,0,0,0,Pavement Slippery,,,,,4488626,Bike,,,, +12/22/2021,18:00,,,40.766403,-73.8153,"(40.766403, -73.8153)",150 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489205,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,13:15,,,40.681118,-73.96443,"(40.681118, -73.96443)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489691,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,11:34,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,SOUTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489325,FDNY AMBUL,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,11:00,BROOKLYN,11204,40.62822,-73.98108,"(40.62822, -73.98108)",,,4905 18 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489128,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,9:05,,,40.769188,-73.837296,"(40.769188, -73.837296)",31 AVENUE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489492,dump truck,Pick-up Truck,,, +12/23/2021,9:57,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4489270,Sedan,Sedan,Sedan,, +12/22/2021,20:00,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,BEVERLEY ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489554,Station Wagon/Sport Utility Vehicle,Bike,,, +12/22/2021,6:43,BRONX,10461,40.850742,-73.83478,"(40.850742, -73.83478)",,,1948 MULFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489740,Sedan,,,, +12/24/2021,15:35,,,40.604694,-74.02583,"(40.604694, -74.02583)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4489363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/24/2021,17:52,BROOKLYN,11203,40.642597,-73.94291,"(40.642597, -73.94291)",,,1258 BROOKLYN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489574,Sedan,,,, +12/23/2021,19:20,QUEENS,11417,40.680183,-73.8459,"(40.680183, -73.8459)",LIBERTY AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489779,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,16:45,BROOKLYN,11238,40.6864,-73.9685,"(40.6864, -73.9685)",VANDERBILT AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489537,Sedan,,,, +12/24/2021,20:00,STATEN ISLAND,10310,40.63097,-74.12953,"(40.63097, -74.12953)",,,858 POST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489607,Sedan,,,, +12/23/2021,19:50,QUEENS,11433,40.704422,-73.792854,"(40.704422, -73.792854)",ARCHER AVENUE,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489758,,,,, +12/20/2021,12:40,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489852,Sedan,Sedan,,, +12/23/2021,23:59,BROOKLYN,11228,40.619003,-74.01596,"(40.619003, -74.01596)",11 AVENUE,82 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,15:00,BROOKLYN,11222,40.734924,-73.94317,"(40.734924, -73.94317)",,,460 KINGSLAND AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489377,Sedan,Flat Bed,,, +12/20/2021,9:00,BROOKLYN,11212,40.673996,-73.90408,"(40.673996, -73.90408)",,,51 JUNIUS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489654,Sedan,,,, +12/23/2021,14:33,BROOKLYN,11222,40.727753,-73.95725,"(40.727753, -73.95725)",FRANKLIN STREET,OAK STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,19:33,,,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4489503,Sedan,Bike,,, +12/23/2021,16:00,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489395,Tanker,Sedan,,, +12/23/2021,4:20,,,40.76036,-73.85688,"(40.76036, -73.85688)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489063,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/22/2021,10:34,BROOKLYN,11208,40.681347,-73.86865,"(40.681347, -73.86865)",,,355 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488785,Sedan,3-Door,,, +09/27/2021,15:27,,,,,,MACOMBS DAM BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461642,Bus,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,12:07,MANHATTAN,10019,40.76902,-73.98621,"(40.76902, -73.98621)",,,429 WEST 58 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4488789,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/22/2021,12:00,,,40.66786,-73.76656,"(40.66786, -73.76656)",144 ROAD,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4489029,Sedan,,,, +12/23/2021,10:25,BRONX,10467,40.885216,-73.87937,"(40.885216, -73.87937)",JEROME AVENUE,EAST 213 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4489200,Tractor Truck Diesel,,,, +12/22/2021,12:00,,,40.66585,-73.88392,"(40.66585, -73.88392)",WARWICK STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488847,Sedan,Bus,,, +12/22/2021,19:00,QUEENS,11691,40.60555,-73.75629,"(40.60555, -73.75629)",,,22-30 MOTT AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4489050,Sedan,Sedan,,, +12/23/2021,14:00,,,40.71111,-73.831375,"(40.71111, -73.831375)",AUSTIN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489233,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,6:42,BROOKLYN,11207,40.651352,-73.89275,"(40.651352, -73.89275)",GLENWOOD ROAD,WILLIAMS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488891,Sedan,,,, +12/21/2021,16:40,STATEN ISLAND,10301,40.638134,-74.078064,"(40.638134, -74.078064)",,,50 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489592,Station Wagon/Sport Utility Vehicle,Carry All,,, +12/22/2021,11:00,QUEENS,11361,40.76049,-73.767525,"(40.76049, -73.767525)",215 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489093,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,8:00,QUEENS,11420,40.6785,-73.821365,"(40.6785, -73.821365)",118 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489804,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/23/2021,22:20,,,,,,VERRAZANO BRIDGE UPPER,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4489253,Motorcycle,Motorcycle,Motorcycle,, +12/22/2021,4:57,BRONX,10472,40.829548,-73.87449,"(40.829548, -73.87449)",,,1621 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488710,Sedan,Sedan,,, +12/24/2021,19:45,BROOKLYN,11237,40.69945,-73.92283,"(40.69945, -73.92283)",,,158 STOCKHOLM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489412,Box Truck,,,, +12/22/2021,15:11,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489031,Sedan,Sedan,,, +12/23/2021,19:59,,,40.68605,-73.831726,"(40.68605, -73.831726)",103 AVENUE,,,2,0,1,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4489340,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/23/2021,13:22,,,40.726433,-73.88945,"(40.726433, -73.88945)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489631,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,18:00,STATEN ISLAND,10304,40.62981,-74.07468,"(40.62981, -74.07468)",FRONT STREET,WAVE STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4489603,Sedan,Sedan,,, +12/21/2021,8:10,BROOKLYN,11203,40.65249,-73.92179,"(40.65249, -73.92179)",CHURCH AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489579,Convertible,,,, +07/01/2022,9:08,MANHATTAN,10013,40.717075,-74.006256,"(40.717075, -74.006256)",CHURCH STREET,WORTH STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542464,Bus,Sedan,,, +12/24/2021,2:38,,,40.738213,-73.80107,"(40.738213, -73.80107)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489388,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,8:40,BRONX,10457,40.847385,-73.88948,"(40.847385, -73.88948)",CROTONA AVENUE,OAKLAND PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4489815,Sedan,Sedan,,, +12/22/2021,19:36,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489108,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,22:00,QUEENS,11357,40.785927,-73.818405,"(40.785927, -73.818405)",147 STREET,15 DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489367,Bus,Pick-up Truck,,, +12/22/2021,8:25,,,40.685368,-73.9109,"(40.685368, -73.9109)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4488744,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/22/2021,12:48,QUEENS,11355,40.75425,-73.827835,"(40.75425, -73.827835)",MAIN STREET,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488835,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,12:00,MANHATTAN,10038,40.71218,-73.99929,"(40.71218, -73.99929)",,,35 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489242,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,22:00,STATEN ISLAND,10305,40.613205,-74.062645,"(40.613205, -74.062645)",,,79 NEW LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489596,Sedan,,,, +05/20/2021,14:41,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418806,Box Truck,Sedan,,, +09/27/2021,8:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461722,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/24/2021,17:35,BRONX,10458,40.854496,-73.88543,"(40.854496, -73.88543)",EAST 187 STREET,CAMBRELENG AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489837,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,7:15,STATEN ISLAND,10304,40.620533,-74.07727,"(40.620533, -74.07727)",,,155 TOMPKINS AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489598,Sedan,,,, +12/23/2021,15:05,BROOKLYN,11209,40.628685,-74.02131,"(40.628685, -74.02131)",,,559 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489247,Sedan,Van,,, +12/22/2021,17:55,MANHATTAN,10002,40.718204,-73.98838,"(40.718204, -73.98838)",,,88 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,0:32,,,40.85668,-73.90811,"(40.85668, -73.90811)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4488982,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:55,BROOKLYN,11222,40.732323,-73.95461,"(40.732323, -73.95461)",MANHATTAN AVENUE,INDIA STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4489236,Sedan,Motorscooter,,, +12/22/2021,20:21,BROOKLYN,11204,40.619053,-73.98233,"(40.619053, -73.98233)",,,2015 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489127,Sedan,Sedan,,, +12/24/2021,21:20,BROOKLYN,11203,40.652714,-73.93048,"(40.652714, -73.93048)",,,837 UTICA AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4489559,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/23/2021,6:07,BRONX,10455,40.81772,-73.90243,"(40.81772, -73.90243)",,,750 PROSPECT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4489195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/22/2021,10:45,,,40.656685,-73.90454,"(40.656685, -73.90454)",HEGEMAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488766,Dump,,,, +12/22/2021,15:31,,,40.716965,-73.949005,"(40.716965, -73.949005)",WITHERS STREET,MEEKER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4489378,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,1:24,MANHATTAN,10033,40.848667,-73.939186,"(40.848667, -73.939186)",WEST 178 STREET,FORT WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489703,Sedan,Sedan,,, +12/22/2021,16:59,QUEENS,11372,40.75367,-73.873665,"(40.75367, -73.873665)",94 STREET,34 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488902,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,8:52,,,40.763588,-73.97142,"(40.763588, -73.97142)",EAST 59 STREET,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4489356,E-Bike,,,, +12/22/2021,5:34,BRONX,10453,40.85396,-73.90944,"(40.85396, -73.90944)",GRAND AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488678,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,19:45,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489413,Sedan,,,, +12/23/2021,12:25,BROOKLYN,11201,40.699776,-73.98264,"(40.699776, -73.98264)",,,177 SANDS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489347,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,10:15,BROOKLYN,11201,,,,MC KENNY STREET,vine street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488879,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/18/2021,17:47,STATEN ISLAND,10301,40.626556,-74.0916,"(40.626556, -74.0916)",VICTORY BOULEVARD,EDDY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4489591,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,14:43,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,5:50,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",EAST 233 STREET,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,,,,,,4489647,,,,, +12/23/2021,4:10,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",111 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489024,Sedan,,,, +12/24/2021,22:30,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489839,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,20:56,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4489479,Sedan,,,, +12/22/2021,12:17,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",EAST 125 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4488856,Sedan,Sedan,,, +12/24/2021,11:25,,,40.719124,-73.791405,"(40.719124, -73.791405)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489437,Sedan,,,, +12/23/2021,11:03,,,40.692,-73.92646,"(40.692, -73.92646)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489300,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,3:20,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4418836,Motorcycle,,,, +12/23/2021,11:55,BROOKLYN,11235,40.587437,-73.95908,"(40.587437, -73.95908)",,,1112 AVENUE Z,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489168,Sedan,E-Scooter,,, +12/23/2021,9:43,MANHATTAN,10065,40.764362,-73.96162,"(40.764362, -73.96162)",EAST 65 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489095,Sedan,Bike,,, +12/20/2021,22:00,QUEENS,11420,40.67392,-73.813065,"(40.67392, -73.813065)",,,125-04 125 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489827,Sedan,,,, +12/20/2021,19:45,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4489315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,1:50,,,40.65217,-73.96141,"(40.65217, -73.96141)",CATON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489553,Sedan,Sedan,,, +12/22/2021,17:20,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488927,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:20,QUEENS,11101,40.745235,-73.937706,"(40.745235, -73.937706)",THOMSON AVENUE,SKILLMAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489045,Taxi,Sedan,,, +12/24/2021,20:21,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",EAST 163 STREET,TINTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489776,Sedan,,,, +12/24/2021,9:15,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",COOPER AVENUE,CYPRESS AVENUE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4489635,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/23/2021,4:10,,,40.702454,-73.859406,"(40.702454, -73.859406)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4489103,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,6:15,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,,,,,,4489371,,,,, +12/23/2021,9:28,,,40.7615,-73.997826,"(40.7615, -73.997826)",11 AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4489076,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,17:53,BRONX,10454,40.80694,-73.91376,"(40.80694, -73.91376)",EAST 140 STREET,CYPRESS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4488972,Sedan,Taxi,,, +12/24/2021,17:20,BRONX,10451,40.824493,-73.91256,"(40.824493, -73.91256)",,,443 EAST 162 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489791,Sedan,,,, +12/22/2021,16:00,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",WESTCHESTER AVENUE,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4489146,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,13:18,BRONX,10457,40.842678,-73.899376,"(40.842678, -73.899376)",EAST 174 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4489219,Chassis Cab,Sedan,,, +12/24/2021,18:08,QUEENS,11368,40.753735,-73.86025,"(40.753735, -73.86025)",,,37-05 108 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4489384,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,7:00,QUEENS,11362,40.753647,-73.7444,"(40.753647, -73.7444)",CROSS ISLAND PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488920,Sedan,,,, +12/23/2021,13:00,MANHATTAN,10016,40.745728,-73.97813,"(40.745728, -73.97813)",EAST 34 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Turning Improperly,,,,4489342,Bike,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,12:45,QUEENS,11372,40.75218,-73.88097,"(40.75218, -73.88097)",35 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489162,Sedan,Sedan,,, +12/23/2021,14:53,BROOKLYN,11207,40.66626,-73.88679,"(40.66626, -73.88679)",,,579 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489327,Sedan,Sedan,Taxi,, +12/24/2021,16:00,BROOKLYN,11220,40.64759,-74.01142,"(40.64759, -74.01142)",4 AVENUE,48 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489420,Sedan,,,, +12/22/2021,18:15,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488915,Sedan,,,, +12/19/2021,17:45,BROOKLYN,11228,40.612007,-74.00889,"(40.612007, -74.00889)",15 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4489585,Sedan,,,, +12/22/2021,1:33,BROOKLYN,11229,40.60965,-73.95624,"(40.60965, -73.95624)",,,1720 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488638,Sedan,Sedan,,, +12/22/2021,23:00,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4489178,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,17:08,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",FLATBUSH AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489279,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,20:12,QUEENS,11385,40.70891,-73.87005,"(40.70891, -73.87005)",,,70-10 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461874,Sedan,,,, +12/24/2021,20:45,,,40.771477,-73.8173,"(40.771477, -73.8173)",BAYSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489493,Sedan,,,, +12/22/2021,11:10,,,40.72537,-73.82366,"(40.72537, -73.82366)",72 ROAD,,,1,0,1,0,0,0,0,0,,,,,,4488820,,,,, +12/09/2021,9:30,BROOKLYN,11221,40.69051,-73.926384,"(40.69051, -73.926384)",,,853 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489721,Sedan,Flat Bed,,, +12/24/2021,15:45,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4489399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,23:55,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WYTHE AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488947,Sedan,Sedan,,, +12/18/2021,11:00,BRONX,10475,40.881916,-73.83029,"(40.881916, -73.83029)",,,2193 NEW ENGLAND THRUWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4489652,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,11:50,BROOKLYN,11215,40.668102,-73.980576,"(40.668102, -73.980576)",7 STREET,7 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4489261,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/23/2021,3:00,,,40.775856,-73.76687,"(40.775856, -73.76687)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489213,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,12:49,MANHATTAN,10065,40.762104,-73.960144,"(40.762104, -73.960144)",1 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489132,Sedan,Bus,,, +12/23/2021,11:47,QUEENS,11378,40.729973,-73.88853,"(40.729973, -73.88853)",,,73-50 GRAND AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4489629,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,18:45,,,40.638527,-73.87853,"(40.638527, -73.87853)",BELT PARKWAY,,,6,0,0,0,0,0,6,0,Unspecified,Unspecified,Unspecified,Unspecified,,4489450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/23/2021,23:15,QUEENS,11368,40.756447,-73.856865,"(40.756447, -73.856865)",,,34-08 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,18:30,BRONX,10474,40.815804,-73.885864,"(40.815804, -73.885864)",,,750 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489475,Sedan,,,, +12/24/2021,18:41,,,40.58038,-73.967606,"(40.58038, -73.967606)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4489683,Sedan,,,, +12/22/2021,17:28,BRONX,10452,40.832916,-73.92939,"(40.832916, -73.92939)",OGDEN AVENUE,WEST 164 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4489310,,,,, +12/23/2021,19:15,QUEENS,11368,40.751064,-73.87055,"(40.751064, -73.87055)",,,37-15 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4489332,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,17:59,BROOKLYN,11226,40.65519,-73.95006,"(40.65519, -73.95006)",,,1298 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/21/2021,16:00,,,40.63665,-73.96805,"(40.63665, -73.96805)",DITMAS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489545,Sedan,Sedan,,, +12/22/2021,17:20,BROOKLYN,11229,40.594143,-73.95857,"(40.594143, -73.95857)",,,1194 GRAVESEND NECK ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488960,Sedan,Sedan,,, +12/24/2021,15:20,BRONX,10466,40.889297,-73.82135,"(40.889297, -73.82135)",,,4215 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4489645,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,20:00,QUEENS,11377,40.74081,-73.8989,"(40.74081, -73.8989)",QUEENS BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489287,Pick-up Truck,Sedan,Sedan,, +12/17/2021,7:30,QUEENS,11385,40.707333,-73.90336,"(40.707333, -73.90336)",,,66-11 FOREST AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489624,Sedan,,,, +12/22/2021,19:20,STATEN ISLAND,10312,40.553192,-74.164345,"(40.553192, -74.164345)",RIDGEWOOD AVENUE,GENESEE AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4489020,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,22:28,BROOKLYN,11207,40.663296,-73.88979,"(40.663296, -73.88979)",NEW LOTS AVENUE,BRADFORD STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4489139,Sedan,,,, +12/24/2021,13:12,MANHATTAN,10035,40.804005,-73.93652,"(40.804005, -73.93652)",,,175 EAST 125 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489875,Bus,Ambulance,,, +12/17/2021,6:40,QUEENS,11368,40.741104,-73.85382,"(40.741104, -73.85382)",OTIS AVENUE,108 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489666,Pick-up Truck,,,, +12/22/2021,7:48,QUEENS,11354,40.767498,-73.83302,"(40.767498, -73.83302)",FARRINGTON STREET,32 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4488934,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,8:06,,,40.70694,-74.01353,"(40.70694, -74.01353)",TRINITY PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4503921,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,8:50,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4489456,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/21/2021,12:13,MANHATTAN,10065,40.762802,-73.965675,"(40.762802, -73.965675)",EAST 61 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4489823,Sedan,,,, +12/24/2021,21:50,BROOKLYN,11218,40.64076,-73.97502,"(40.64076, -73.97502)",AVENUE C,EAST 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489511,Sedan,,,, +12/22/2021,18:10,QUEENS,11428,40.71588,-73.74603,"(40.71588, -73.74603)",,,212-23 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4488895,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/23/2021,12:00,BRONX,10474,40.81187,-73.88813,"(40.81187, -73.88813)",,,1250 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489172,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,17:30,,,40.66326,-73.99512,"(40.66326, -73.99512)",4 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489185,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,16:50,,,40.579803,-73.97184,"(40.579803, -73.97184)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4489676,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,7:00,QUEENS,11435,40.68699,-73.802185,"(40.68699, -73.802185)",143 STREET,GLASSBORO AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4489766,Sedan,,,, +12/23/2021,9:15,BROOKLYN,11211,40.70431,-73.955086,"(40.70431, -73.955086)",MARCY AVENUE,PENN STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4489040,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,11:52,MANHATTAN,10002,40.718704,-73.98526,"(40.718704, -73.98526)",,,80 CLINTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489120,Sedan,,,, +12/22/2021,8:28,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",EAST 144 STREET,GRAND CONCOURSE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4488966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,12:50,,,,,,WHITESTONE EXPRESSWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4489295,Sedan,,,, +12/23/2021,16:00,,,40.76306,-73.90236,"(40.76306, -73.90236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489432,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,23:37,QUEENS,11417,40.674557,-73.859604,"(40.674557, -73.859604)",NORTH CONDUIT AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4489796,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,22:50,BROOKLYN,11219,40.629597,-74.00136,"(40.629597, -74.00136)",61 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489513,Sedan,,,, +12/22/2021,10:45,BRONX,10458,40.856323,-73.883896,"(40.856323, -73.883896)",EAST 189 STREET,CAMBRELENG AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4489006,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,21:35,MANHATTAN,10036,40.75866,-73.98715,"(40.75866, -73.98715)",,,239 WEST 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489364,Sedan,Bike,,, +12/24/2021,16:00,BROOKLYN,11216,40.6752,-73.950005,"(40.6752, -73.950005)",NOSTRAND AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489694,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,9:00,BRONX,10458,40.85688,-73.89387,"(40.85688, -73.89387)",,,4581 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4489816,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/23/2021,17:55,QUEENS,11416,40.68435,-73.84568,"(40.68435, -73.84568)",,,95-10 101 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4489229,Sedan,Pick-up Truck,,, +12/22/2021,18:30,MANHATTAN,10020,,,,49st,6th avenue,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489424,Taxi,,,, +12/23/2021,14:30,QUEENS,11369,40.758995,-73.87459,"(40.758995, -73.87459)",JACKSON MILL ROAD,94 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489151,E-Bike,Sedan,Sedan,, +12/24/2021,23:00,BRONX,10466,40.886513,-73.85378,"(40.886513, -73.85378)",,,907 EAST 226 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489644,Sedan,,,, +12/23/2021,12:23,MANHATTAN,10011,40.738686,-73.99588,"(40.738686, -73.99588)",WEST 16 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489359,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,21:10,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4489264,AMBULETTE,Sedan,Station Wagon/Sport Utility Vehicle,, +12/23/2021,7:15,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489012,Sedan,Sedan,,, +12/17/2021,7:45,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4489580,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/23/2021,22:20,QUEENS,11413,40.678783,-73.74412,"(40.678783, -73.74412)",133 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489256,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,6:47,,,40.877815,-73.868126,"(40.877815, -73.868126)",OLINVILLE AVENUE,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489155,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,2:15,,,40.842922,-73.90957,"(40.842922, -73.90957)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4488627,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,15:34,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",UNION STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,7:30,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2022,13:20,BROOKLYN,11220,40.647675,-74.014595,"(40.647675, -74.014595)",50 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542486,Station Wagon/Sport Utility Vehicle,Ambulance,,, +12/24/2021,23:17,,,,,,GRAND CENTRAL PARKWAY,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489396,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,18:13,BROOKLYN,11234,40.614,-73.9161,"(40.614, -73.9161)",AVENUE U,EAST 59 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489174,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,14:25,,,40.766552,-73.77255,"(40.766552, -73.77255)",BELL BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4488919,Sedan,,,, +12/20/2021,15:33,,,40.72545,-73.892654,"(40.72545, -73.892654)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489733,Van,Sedan,,, +12/23/2021,9:00,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",HILLSIDE AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4489065,Sedan,,,, +12/22/2021,8:00,,,40.818336,-73.934265,"(40.818336, -73.934265)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4488791,Sedan,Van,,, +12/23/2021,15:15,BRONX,10475,40.870014,-73.832436,"(40.870014, -73.832436)",BAYCHESTER AVENUE,ALDRICH STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4489742,Sedan,,,, +12/24/2021,13:33,BRONX,10451,40.82406,-73.92815,"(40.82406, -73.92815)",RIVER AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4489445,Station Wagon/Sport Utility Vehicle,Bike,,, +12/23/2021,15:54,,,40.859623,-73.88747,"(40.859623, -73.88747)",EAST FORDHAM ROAD,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4489860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,13:30,,,40.797215,-73.969925,"(40.797215, -73.969925)",BROADWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4489471,Sedan,Sedan,Pick-up Truck,, +12/21/2021,6:40,BRONX,10457,40.843124,-73.89796,"(40.843124, -73.89796)",,,4068 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489780,Sedan,Sedan,,, +12/23/2021,15:00,QUEENS,11365,40.734756,-73.80025,"(40.734756, -73.80025)",67 AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489391,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:00,MANHATTAN,10017,40.75437,-73.97815,"(40.75437, -73.97815)",,,350 MADISON AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4489611,FIRE TRUCK,Box Truck,,, +12/23/2021,8:20,QUEENS,11691,40.596256,-73.76684,"(40.596256, -73.76684)",SEAGIRT BOULEVARD,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4489057,Sedan,Dump,,, +12/22/2021,23:30,BROOKLYN,11236,40.63145,-73.887085,"(40.63145, -73.887085)",ROCKAWAY PARKWAY,SCHENCK STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4489538,Sedan,Sedan,,, +12/19/2021,20:00,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",BOSTON ROAD,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4489790,Sedan,Sedan,,, +12/23/2021,20:45,,,40.707664,-73.78772,"(40.707664, -73.78772)",JAMAICA AVENUE,172 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4489759,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,12:10,QUEENS,11411,40.695065,-73.73988,"(40.695065, -73.73988)",,,220-21 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4489339,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,16:25,BROOKLYN,11201,40.7033,-73.99206,"(40.7033, -73.99206)",,,55 WATER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489190,E-Bike,UPS,,, +12/23/2021,16:25,BROOKLYN,11233,40.682278,-73.9226,"(40.682278, -73.9226)",,,215 RALPH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4489720,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,10:15,,,40.71443,-73.83315,"(40.71443, -73.83315)",KEW FOREST LANE,78 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489133,Sedan,,,, +12/20/2021,1:10,MANHATTAN,10002,40.715904,-73.990906,"(40.715904, -73.990906)",,,71 HESTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489464,Sedan,,,, +12/22/2021,19:00,,,40.807434,-73.92619,"(40.807434, -73.92619)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488971,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,15:55,BROOKLYN,11226,40.63604,-73.96225,"(40.63604, -73.96225)",,,1616 NEWKIRK AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4489653,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/21/2021,17:45,BROOKLYN,11230,40.623722,-73.97463,"(40.623722, -73.97463)",EAST 2 STREET,AVENUE J,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4489506,Bike,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,0:00,,,40.828243,-73.832146,"(40.828243, -73.832146)",BARKLEY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,0:50,BRONX,10461,40.85059,-73.851616,"(40.85059, -73.851616)",,,1801 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488992,4 dr sedan,,,, +12/09/2021,8:49,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4489320,Sedan,,,, +12/23/2021,19:31,BROOKLYN,11210,40.636448,-73.94513,"(40.636448, -73.94513)",NEW YORK AVENUE,FARRAGUT ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4489568,Sedan,Bike,,, +12/23/2021,18:30,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489427,Box Truck,Sedan,,, +12/23/2021,7:47,BROOKLYN,11209,40.618225,-74.03022,"(40.618225, -74.03022)",,,9201 4 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4489112,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,19:50,,,40.684494,-73.86169,"(40.684494, -73.86169)",ATLANTIC AVENUE,78 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4489025,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/22/2021,8:40,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488855,Box Truck,Sedan,,, +12/23/2021,13:05,BROOKLYN,11212,40.669262,-73.91356,"(40.669262, -73.91356)",BOYLAND STREET,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,4489527,Sedan,Sedan,Sedan,Sedan, +12/24/2021,19:28,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,20:15,,,40.631897,-73.943665,"(40.631897, -73.943665)",AVENUE H,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489572,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,9:15,,,40.646446,-74.07884,"(40.646446, -74.07884)",RICHMOND TERRACE,STUYVESANT PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4489599,Sedan,Sedan,Sedan,Sedan, +12/24/2021,16:45,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489809,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,18:30,QUEENS,11428,40.71746,-73.74341,"(40.71746, -73.74341)",,,94-26 214 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4488890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/20/2021,0:00,MANHATTAN,10032,40.839176,-73.94114,"(40.839176, -73.94114)",BROADWAY,WEST 165 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489702,Station Wagon/Sport Utility Vehicle,Bus,,, +12/23/2021,15:50,MANHATTAN,10010,40.736237,-73.9772,"(40.736237, -73.9772)",,,423 EAST 23 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489252,Sedan,Sedan,,, +12/22/2021,0:18,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488716,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,20:00,QUEENS,11417,40.670776,-73.84788,"(40.670776, -73.84788)",NORTH CONDUIT AVENUE,88 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4489828,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,20:52,BRONX,10459,40.819313,-73.901245,"(40.819313, -73.901245)",,,853 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489237,Tractor Truck Diesel,,,, +12/22/2021,18:16,MANHATTAN,10034,40.86535,-73.92119,"(40.86535, -73.92119)",,,199 SHERMAN AVENUE,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4489032,Sedan,Motorcycle,,, +12/23/2021,23:00,,,40.683804,-73.833534,"(40.683804, -73.833534)",108 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489832,,,,, +12/19/2021,19:30,BROOKLYN,11226,40.6559,-73.95585,"(40.6559, -73.95585)",,,512 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4489379,Sedan,,,, +12/22/2021,1:36,,,40.63552,-74.0167,"(40.63552, -74.0167)",,,65 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488943,Sedan,Tractor Truck Diesel,,, +05/21/2021,18:30,MANHATTAN,10005,40.70899,-74.01068,"(40.70899, -74.01068)",,,136 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4419022,Sedan,,,, +12/22/2021,19:40,,,,,,42 AVENUE,74 Street,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489292,Sedan,,,, +12/20/2021,8:00,BROOKLYN,11215,40.662807,-73.987175,"(40.662807, -73.987175)",,,25 WEBSTER PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489374,Sedan,,,, +12/23/2021,18:26,BRONX,10468,40.863907,-73.902435,"(40.863907, -73.902435)",,,2474 GRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489199,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:30,BROOKLYN,11206,40.704563,-73.94867,"(40.704563, -73.94867)",BROADWAY,MIDDLETON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489269,Sedan,Sedan,,, +12/22/2021,15:55,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488858,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,19:49,,,40.663387,-73.72941,"(40.663387, -73.72941)",HOOK CREEK BOULEVARD,CANEY LANE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4488896,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/31/2021,2:39,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",HICKS STREET,ATLANTIC AVENUE,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,,,,4452542,Sedan,Tractor Truck Diesel,,, +09/21/2021,8:50,,,40.859623,-73.88747,"(40.859623, -73.88747)",BATHGATE AVENUE,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462387,Sedan,,,, +09/26/2021,10:40,BROOKLYN,11233,40.676132,-73.921906,"(40.676132, -73.921906)",PACIFIC STREET,RALPH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4462343,Sedan,Sedan,,, +09/10/2021,20:14,QUEENS,11385,40.69622,-73.89988,"(40.69622, -73.89988)",CYPRESS AVENUE,DECATUR STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462418,Sedan,Sedan,,, +09/17/2021,0:00,QUEENS,11372,40.754776,-73.892815,"(40.754776, -73.892815)",NORTHERN BOULEVARD,74 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462397,Sedan,,,, +09/27/2021,1:36,QUEENS,11106,40.76042,-73.928856,"(40.76042, -73.928856)",34 AVENUE,29 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462386,Station Wagon/Sport Utility Vehicle,Bike,,, +09/22/2021,17:00,QUEENS,11420,40.67222,-73.80637,"(40.67222, -73.80637)",132 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462349,Sedan,,,, +09/08/2021,11:30,QUEENS,11369,40.768127,-73.87625,"(40.768127, -73.87625)",94 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462394,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,7:25,BRONX,10460,40.840992,-73.873184,"(40.840992, -73.873184)",,,1178 EAST 180 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462403,E-Bike,,,, +09/27/2021,17:00,BROOKLYN,11229,40.61314,-73.948975,"(40.61314, -73.948975)",,,2502 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4462355,Sedan,,,, +09/27/2021,18:51,MANHATTAN,10128,40.779434,-73.94752,"(40.779434, -73.94752)",EAST 90 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462379,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,23:02,QUEENS,11385,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462392,Sedan,Sedan,,, +06/26/2022,12:30,STATEN ISLAND,10306,40.55514,-74.130005,"(40.55514, -74.130005)",,,218 SPRATT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,10:34,BRONX,10456,40.836834,-73.90381,"(40.836834, -73.90381)",,,1451 WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4489777,Sedan,,,, +12/23/2021,9:00,,,40.663723,-73.75926,"(40.663723, -73.75926)",SPRINGFIELD BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4489084,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:50,BROOKLYN,11233,40.676624,-73.91597,"(40.676624, -73.91597)",,,2001 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489096,Sedan,Box Truck,,, +11/06/2021,21:50,,,40.695114,-73.911865,"(40.695114, -73.911865)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4489296,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,14:30,,,40.70219,-73.928345,"(40.70219, -73.928345)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489409,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,2:03,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4488703,Sedan,,,, +12/24/2021,12:54,,,40.607212,-74.07682,"(40.607212, -74.07682)",HYLAN BOULEVARD,NARROWS ROAD NORTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489604,Sedan,Sedan,,, +12/24/2021,8:45,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4489335,Sedan,Sedan,,, +12/24/2021,17:04,MANHATTAN,10128,40.78169,-73.94897,"(40.78169, -73.94897)",EAST 92 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489849,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/27/2021,21:20,,,40.642666,-74.02001,"(40.642666, -74.02001)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4461647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,18:22,MANHATTAN,10017,40.754726,-73.97788,"(40.754726, -73.97788)",EAST 45 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461793,Taxi,Taxi,,, +09/27/2021,20:42,BROOKLYN,11229,40.607426,-73.94301,"(40.607426, -73.94301)",,,2929 AVENUE R,0,0,0,0,0,0,0,0,Unspecified,,,,,4461711,Taxi,,,, +09/26/2021,13:30,BRONX,10475,40.88226,-73.82782,"(40.88226, -73.82782)",TILLOTSON AVENUE,DELAVALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462171,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/19/2021,18:44,STATEN ISLAND,10304,40.626663,-74.07565,"(40.626663, -74.07565)",CANAL STREET,BAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462140,Sedan,Bike,,, +09/27/2021,1:00,BROOKLYN,11216,40.67934,-73.944336,"(40.67934, -73.944336)",,,280 HERKIMER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,9:19,MANHATTAN,10003,40.730995,-73.988846,"(40.730995, -73.988846)",,,55 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461695,Taxi,,,, +09/27/2021,19:24,,,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4461864,Station Wagon/Sport Utility Vehicle,DIRT BIKE,,, +09/27/2021,16:00,BRONX,10465,40.830338,-73.82401,"(40.830338, -73.82401)",LAFAYETTE AVENUE,EDISON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461739,Sedan,Sedan,,, +09/02/2021,16:30,QUEENS,11385,40.698753,-73.89726,"(40.698753, -73.89726)",DECATUR STREET,FOREST AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4462107,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,17:30,BROOKLYN,11212,40.661995,-73.9196,"(40.661995, -73.9196)",EAST 98 STREET,KINGS HIGHWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462253,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,2:45,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",ALABAMA AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4461469,Sedan,Sedan,,, +09/27/2021,10:30,QUEENS,11372,40.752304,-73.873405,"(40.752304, -73.873405)",,,35-25 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461749,Sedan,,,, +09/24/2021,0:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462166,Sedan,Sedan,,, +09/26/2021,0:45,,,40.867634,-73.916595,"(40.867634, -73.916595)",WEST 212 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Passing Too Closely,,,,4462244,Taxi,Sedan,,, +09/27/2021,17:00,BROOKLYN,11201,40.699738,-73.98212,"(40.699738, -73.98212)",,,192 SANDS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462026,Sedan,Sedan,,, +09/27/2021,3:02,MANHATTAN,10011,40.738552,-73.99969,"(40.738552, -73.99969)",7 AVENUE,WEST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461513,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,12:10,BROOKLYN,11226,40.64893,-73.949135,"(40.64893, -73.949135)",,,3014 SNYDER AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461630,E-Scooter,Sedan,,, +09/27/2021,14:08,BRONX,10460,40.84708,-73.88359,"(40.84708, -73.88359)",,,2137 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461801,Bus,Sedan,,, +09/27/2021,19:27,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,22:00,BRONX,10459,40.82519,-73.88866,"(40.82519, -73.88866)",,,1115 EAST 165 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461935,Sedan,,,, +09/27/2021,8:20,BRONX,10454,40.807766,-73.91023,"(40.807766, -73.91023)",EAST 142 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461604,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,9:48,BRONX,10467,40.873783,-73.87786,"(40.873783, -73.87786)",,,3156 PERRY AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4461554,Sedan,,,, +09/27/2021,14:01,QUEENS,11385,,,,,,79-03 60 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462289,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,5:50,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",35 AVENUE,UNION STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4461593,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,6:05,,,40.69652,-73.78155,"(40.69652, -73.78155)",110 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Turning Improperly,,,,4461556,Taxi,Sedan,,, +09/23/2021,7:50,,,40.839447,-73.88384,"(40.839447, -73.88384)",BOSTON ROAD,VYSE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4462188,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,8:00,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461625,Sedan,Bus,,, +05/18/2021,16:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419107,Sedan,Sedan,,, +09/27/2021,8:15,,,40.60426,-73.75286,"(40.60426, -73.75286)",MOTT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,16:00,QUEENS,11355,40.762066,-73.80753,"(40.762066, -73.80753)",158 STREET,STATION ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461931,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,10:31,,,40.7044,-73.92384,"(40.7044, -73.92384)",IRVING AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4461723,Box Truck,Sedan,Sedan,, +09/27/2021,7:10,QUEENS,11377,40.75529,-73.90847,"(40.75529, -73.90847)",32 AVENUE,51 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461758,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,17:00,BROOKLYN,11212,40.654755,-73.92082,"(40.654755, -73.92082)",,,459 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461987,Sedan,Sedan,UNK,, +09/27/2021,6:25,,,,,,L.I.E / G.C.P (CDR),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461839,Sedan,,,, +09/27/2021,5:50,BRONX,10466,40.88877,-73.864334,"(40.88877, -73.864334)",,,3960 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461946,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,2:02,,,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461547,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,8:03,MANHATTAN,10010,40.73849,-73.982376,"(40.73849, -73.982376)",,,228 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461613,Bus,Sedan,,, +09/27/2021,8:30,QUEENS,11417,40.67626,-73.85261,"(40.67626, -73.85261)",84 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461703,Sedan,,,, +09/25/2021,22:45,BRONX,10463,40.876575,-73.91286,"(40.876575, -73.91286)",,,2 TEUNISSEN PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4462273,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,12:51,,,40.742836,-73.97214,"(40.742836, -73.97214)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4461832,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,11:05,BROOKLYN,11218,40.642796,-73.97945,"(40.642796, -73.97945)",MC DONALD AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462130,Sedan,Van,,, +09/27/2021,17:25,QUEENS,11694,40.581764,-73.8383,"(40.581764, -73.8383)",BEACH 116 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,16:55,BROOKLYN,11210,40.63465,-73.93727,"(40.63465, -73.93727)",GLENWOOD ROAD,ALBANY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461631,,,,, +09/27/2021,22:40,BROOKLYN,11221,40.691948,-73.93983,"(40.691948, -73.93983)",MARCUS GARVEY BOULEVARD,KOSCIUSZKO STREET,,2,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4461680,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/26/2021,14:02,,,40.587784,-74.165565,"(40.587784, -74.165565)",,,77B RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462200,Sedan,,,, +09/27/2021,12:00,MANHATTAN,10038,40.71125,-74.0003,"(40.71125, -74.0003)",,,388 PEARL STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4461569,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,19:14,MANHATTAN,10038,40.71347,-73.99859,"(40.71347, -73.99859)",MOTT STREET,CHATHAM SQUARE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462104,Sedan,,,, +09/27/2021,20:45,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4461853,Sedan,Sedan,Sedan,, +09/27/2021,9:30,BROOKLYN,11217,40.680218,-73.97789,"(40.680218, -73.97789)",5 AVENUE,WARREN STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4461896,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/27/2021,22:30,BRONX,10460,40.834087,-73.89515,"(40.834087, -73.89515)",,,1458 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,15:00,QUEENS,11101,,,,VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4462176,Sedan,Tractor Truck Diesel,,, +09/27/2021,21:30,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461716,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,2:00,QUEENS,11433,40.6962,-73.78611,"(40.6962, -73.78611)",,,167-31 109 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462146,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,18:50,,,40.605057,-73.999,"(40.605057, -73.999)",86 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461751,Sedan,Bike,,, +09/27/2021,23:53,QUEENS,11004,40.752777,-73.70743,"(40.752777, -73.70743)",,,269-01 76 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461688,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,17:47,MANHATTAN,10003,40.73624,-73.984604,"(40.73624, -73.984604)",,,201 EAST 19 STREET,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4461813,Sedan,E-Bike,,, +09/24/2021,19:00,,,40.519722,-74.22867,"(40.519722, -74.22867)",AMBOY ROAD,RICHMOND VALLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462266,Sedan,Sedan,,, +09/27/2021,15:20,QUEENS,11354,40.761047,-73.82709,"(40.761047, -73.82709)",,,138-35 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461636,Sedan,,,, +09/07/2021,9:25,,,40.768875,-73.90852,"(40.768875, -73.90852)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4462117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,9:00,QUEENS,11375,40.708317,-73.846664,"(40.708317, -73.846664)",UNION TURNPIKE,72 DRIVE,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4462308,Pick-up Truck,Sedan,,, +09/27/2021,12:00,QUEENS,11101,40.755745,-73.943115,"(40.755745, -73.943115)",,,40-05 12 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461776,Sedan,COMMERCIAL,,, +09/27/2021,9:20,QUEENS,11420,40.665657,-73.81518,"(40.665657, -73.81518)",SOUTH CONDUIT AVENUE,150 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4461698,Box Truck,Dump,,, +09/27/2021,13:41,,,40.7067,-73.95292,"(40.7067, -73.95292)",HEWES STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4461777,Station Wagon/Sport Utility Vehicle,Bike,,, +09/27/2021,19:50,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4461741,Sedan,Sedan,,, +09/24/2021,13:20,MANHATTAN,10128,40.783466,-73.94523,"(40.783466, -73.94523)",,,321 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,0:05,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4461311,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/27/2021,5:21,,,40.706085,-73.8085,"(40.706085, -73.8085)",HILLSIDE AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462224,Sedan,,,, +09/27/2021,21:45,BROOKLYN,11203,40.654575,-73.943214,"(40.654575, -73.943214)",EAST 37 STREET,LENOX ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461667,Sedan,Ambulance,,, +09/27/2021,0:01,BROOKLYN,11229,40.6093,-73.95328,"(40.6093, -73.95328)",,,2157 OCEAN AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4462051,Sedan,,,, +09/27/2021,21:00,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4462306,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/20/2021,14:37,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462139,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +09/27/2021,5:05,BROOKLYN,11207,40.675495,-73.88916,"(40.675495, -73.88916)",LIBERTY AVENUE,SCHENCK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4461472,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,20:00,QUEENS,11373,40.736706,-73.88235,"(40.736706, -73.88235)",,,51-15 VANKLEECK STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462167,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,16:50,,,40.762566,-73.818596,"(40.762566, -73.818596)",147 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461635,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,20:14,QUEENS,11369,40.765278,-73.86822,"(40.765278, -73.86822)",25 AVENUE,GILLMORE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461745,Sedan,Sedan,,, +12/24/2021,12:02,BRONX,10458,40.86723,-73.88692,"(40.86723, -73.88692)",EAST 198 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489484,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,23:59,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4461689,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/27/2021,17:40,BROOKLYN,11201,40.695377,-73.98421,"(40.695377, -73.98421)",FLATBUSH AVENUE EXTENSION,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462024,Sedan,Sedan,,, +09/27/2021,14:12,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462116,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:55,QUEENS,11415,40.71113,-73.82837,"(40.71113, -73.82837)",KEW GARDEN ROAD,MOWBRAY DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461712,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,21:30,,,40.62903,-74.16476,"(40.62903, -74.16476)",,,461 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462199,Sedan,,,, +09/27/2021,7:40,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461562,Sedan,Sedan,,, +07/01/2022,14:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542661,Sedan,Sedan,,, +05/16/2021,7:30,,,40.607147,-74.01157,"(40.607147, -74.01157)",BAY 11 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419234,Sedan,,,, +09/27/2021,8:45,,,40.794296,-73.84482,"(40.794296, -73.84482)",POWELLS COVE BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461597,Sedan,Sedan,,, +09/27/2021,20:05,MANHATTAN,10029,40.796074,-73.94349,"(40.796074, -73.94349)",EAST 112 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4461844,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/21/2021,19:40,,,40.668224,-73.953445,"(40.668224, -73.953445)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4462326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,23:00,BRONX,10463,40.880108,-73.902275,"(40.880108, -73.902275)",WEST 233 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461648,Sedan,,,, +09/27/2021,12:31,QUEENS,11385,40.710987,-73.86457,"(40.710987, -73.86457)",,,88-02 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461956,Sedan,Flat Bed,,, +09/25/2021,18:20,BROOKLYN,11212,40.654358,-73.91916,"(40.654358, -73.91916)",LINDEN BOULEVARD,EAST 92 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4462251,Sedan,,,, +09/27/2021,8:00,,,40.788357,-73.97453,"(40.788357, -73.97453)",WEST 87 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,,,,4461548,Dump,Pick-up Truck,,, +09/27/2021,23:13,,,40.60864,-74.00095,"(40.60864, -74.00095)",18 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461792,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,13:55,,,40.840927,-73.912704,"(40.840927, -73.912704)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461855,Sedan,E-Scooter,,, +09/27/2021,8:45,BROOKLYN,11234,40.622272,-73.93377,"(40.622272, -73.93377)",FLATLANDS AVENUE,EAST 40 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461575,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,5:50,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4461702,Station Wagon/Sport Utility Vehicle,Bike,,, +09/26/2021,15:50,BROOKLYN,11230,40.622837,-73.973526,"(40.622837, -73.973526)",BAY PARKWAY,EAST 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462131,Bus,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,16:19,,,,,,UNION STREET,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462174,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,9:45,,,40.76323,-73.90891,"(40.76323, -73.90891)",46 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489434,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,11:51,BROOKLYN,11228,40.61405,-74.013916,"(40.61405, -74.013916)",86 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461643,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:20,QUEENS,11420,40.670208,-73.81902,"(40.670208, -73.81902)",135 AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461707,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,13:08,,,,,,EAST 37 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462275,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,17:00,BROOKLYN,11204,40.633278,-73.983185,"(40.633278, -73.983185)",16 AVENUE,45 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,0:00,BRONX,10458,40.854015,-73.88149,"(40.854015, -73.88149)",,,2405 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461838,Sedan,,,, +09/27/2021,5:25,MANHATTAN,10013,40.721626,-73.99951,"(40.721626, -73.99951)",,,435 BROOME STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461496,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,21:38,BRONX,10467,40.871353,-73.8624,"(40.871353, -73.8624)",MATTHEWS AVENUE,BURKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461945,Sedan,Sedan,,, +09/27/2021,4:30,BROOKLYN,11226,40.64443,-73.94864,"(40.64443, -73.94864)",,,3016 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461626,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,14:10,,,40.68731,-73.94761,"(40.68731, -73.94761)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461862,Van,,,, +09/27/2021,8:54,BRONX,10460,40.847878,-73.886024,"(40.847878, -73.886024)",PROSPECT AVENUE,EAST 181 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461800,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,17:00,QUEENS,11412,40.688236,-73.76196,"(40.688236, -73.76196)",119 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,0:25,,,40.723305,-74.00299,"(40.723305, -74.00299)",WEST BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461757,Bike,Sedan,,, +09/27/2021,21:18,BROOKLYN,11230,40.623974,-73.96504,"(40.623974, -73.96504)",,,1380 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462127,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,16:30,QUEENS,11429,40.712162,-73.737366,"(40.712162, -73.737366)",,,104-10 218 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461679,Sedan,,,, +09/27/2021,15:00,QUEENS,11385,40.6974,-73.901024,"(40.6974, -73.901024)",,,1707 NORMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461961,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/27/2021,4:30,MANHATTAN,10032,40.83948,-73.93604,"(40.83948, -73.93604)",JUMEL PLACE,WEST 168 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,Unspecified,Unspecified,,4462092,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/27/2021,20:55,QUEENS,11417,40.680668,-73.836334,"(40.680668, -73.836334)",104 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461706,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,9:00,,,40.67801,-73.94138,"(40.67801, -73.94138)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461867,Sedan,,,, +09/27/2021,6:00,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461532,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,10:00,,,40.71291,-73.95505,"(40.71291, -73.95505)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4461768,Garbage tr,,,, +09/27/2021,7:01,QUEENS,11412,40.70553,-73.779205,"(40.70553, -73.779205)",,,180-12 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4461602,Pick-up Truck,Taxi,,, +09/27/2021,17:30,,,40.65488,-73.96189,"(40.65488, -73.96189)",PARKSIDE AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4461789,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,9:30,BROOKLYN,11212,40.66223,-73.92274,"(40.66223, -73.92274)",EAST 96 STREET,WINTHROP STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4461666,Sedan,,,, +09/27/2021,8:30,BROOKLYN,11211,40.71414,-73.96152,"(40.71414, -73.96152)",,,285 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461767,Station Wagon/Sport Utility Vehicle,Van Camper,,, +09/27/2021,0:00,STATEN ISLAND,10301,40.638103,-74.077934,"(40.638103, -74.077934)",VICTORY BOULEVARD,MONTGOMERY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4462144,Sedan,Sedan,,, +09/27/2021,12:05,BROOKLYN,11235,40.581013,-73.95484,"(40.581013, -73.95484)",,,35 CORBIN PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461715,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,12:20,,,40.7613,-73.86527,"(40.7613, -73.86527)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462158,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/27/2021,3:00,,,40.825756,-73.95094,"(40.825756, -73.95094)",BROADWAY,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4461315,Station Wagon/Sport Utility Vehicle,Bike,,, +09/27/2021,9:00,QUEENS,11367,40.72788,-73.8175,"(40.72788, -73.8175)",150 STREET,72 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462229,Bus,Sedan,,, +09/27/2021,9:20,,,40.738445,-73.939835,"(40.738445, -73.939835)",BORDEN AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,19:45,BROOKLYN,11217,40.681606,-73.985565,"(40.681606, -73.985565)",,,233 BUTLER STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462335,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,18:25,MANHATTAN,10011,40.73649,-73.99747,"(40.73649, -73.99747)",,,502 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4461856,Garbage or Refuse,,,, +09/27/2021,5:50,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",KINGS HIGHWAY,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,10:42,,,40.575542,-73.96487,"(40.575542, -73.96487)",BRIGHTON 2 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461576,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,11:00,MANHATTAN,10019,40.762638,-73.975266,"(40.762638, -73.975266)",,,15 WEST 56 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461823,Sedan,Box Truck,,, +09/24/2021,22:30,,,,,,188 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462221,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,15:30,STATEN ISLAND,10304,40.62036,-74.08166,"(40.62036, -74.08166)",,,101 WARREN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4461612,Sedan,Station Wagon/Sport Utility Vehicle,Bus,, +09/27/2021,14:35,,,40.62557,-74.176575,"(40.62557, -74.176575)",GOETHALS ROAD NORTH,FOREST AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4461845,Flat Bed,,,, +09/24/2021,20:41,BRONX,10463,40.88398,-73.89789,"(40.88398, -73.89789)",,,136 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462264,Sedan,,,, +09/27/2021,11:26,BROOKLYN,11215,40.669678,-73.98732,"(40.669678, -73.98732)",,,279 9 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4461897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/22/2021,23:14,,,40.75657,-73.93397,"(40.75657, -73.93397)",27 STREET,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,,,4488998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/27/2021,8:56,,,40.826538,-73.8727,"(40.826538, -73.8727)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461541,Station Wagon/Sport Utility Vehicle,Bus,,, +09/27/2021,21:30,MANHATTAN,10019,40.76271,-73.98127,"(40.76271, -73.98127)",,,159 WEST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461824,Pick-up Truck,,,, +09/27/2021,0:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461889,Pick-up Truck,,,, +09/27/2021,23:00,BRONX,10469,40.871254,-73.84355,"(40.871254, -73.84355)",EASTCHESTER ROAD,HAMMERSLEY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461950,Sedan,Sedan,,, +09/27/2021,8:22,BRONX,10467,40.87573,-73.87956,"(40.87573, -73.87956)",EAST 207 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461552,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,12:40,,,40.809044,-73.92856,"(40.809044, -73.92856)",LINCOLN AVENUE,EAST 135 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461607,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,22:13,BROOKLYN,11234,40.632755,-73.92984,"(40.632755, -73.92984)",KINGS HIGHWAY,AVENUE H,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462284,Sedan,Sedan,,, +09/10/2021,17:27,QUEENS,11378,40.723183,-73.90059,"(40.723183, -73.90059)",GRAND AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462293,Sedan,Bike,,, +09/27/2021,13:00,BROOKLYN,11225,40.664677,-73.94266,"(40.664677, -73.94266)",,,396 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461634,Box Truck,,,, +09/27/2021,19:02,,,,,,ASTORIA BOULEVARD,103 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/26/2021,23:51,STATEN ISLAND,10312,40.52352,-74.187416,"(40.52352, -74.187416)",,,5433 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462267,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,13:00,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,Unspecified,,,4462036,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/27/2021,22:16,MANHATTAN,10002,40.711536,-73.98675,"(40.711536, -73.98675)",CLINTON STREET,CHERRY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4462194,Sedan,E-Bike,,, +09/27/2021,8:09,QUEENS,11426,40.73679,-73.719925,"(40.73679, -73.719925)",83 AVENUE,248 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4461560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,13:50,,,40.63347,-74.02102,"(40.63347, -74.02102)",BAY RIDGE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461652,LIMO,,,, +09/27/2021,8:30,BROOKLYN,11209,40.62435,-74.021805,"(40.62435, -74.021805)",6 AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4461528,E-Scooter,,,, +09/27/2021,7:50,BROOKLYN,11226,40.65272,-73.94845,"(40.65272, -73.94845)",,,287 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461627,Taxi,Tractor Truck Diesel,,, +09/27/2021,8:00,MANHATTAN,10032,40.83948,-73.93604,"(40.83948, -73.93604)",WEST 168 STREET,JUMEL PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461804,Sedan,,,, +09/27/2021,16:00,QUEENS,11101,40.74198,-73.94643,"(40.74198, -73.94643)",SKILLMAN AVENUE,49 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461620,Sedan,Refrigerated Van,,, +09/24/2021,13:55,STATEN ISLAND,10301,40.636246,-74.08911,"(40.636246, -74.08911)",BRIGHTON AVENUE,KINGSLEY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462143,Sedan,Sedan,,, +09/27/2021,9:30,BROOKLYN,11215,40.66996,-73.985664,"(40.66996, -73.985664)",,,420 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461898,Sedan,Box Truck,,, +09/27/2021,16:59,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4461690,Convertible,Sedan,,, +09/27/2021,12:15,,,40.581257,-74.1628,"(40.581257, -74.1628)",MARSH AVENUE,ELMWOOD PARK DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461843,Motorcycle,Sedan,,, +09/27/2021,19:00,QUEENS,11355,40.745167,-73.82139,"(40.745167, -73.82139)",BOOTH MEMORIAL AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461941,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,13:25,BRONX,10461,40.84273,-73.85114,"(40.84273, -73.85114)",,,2467 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461866,Station Wagon/Sport Utility Vehicle,Moped,,, +09/27/2021,3:00,,,40.583656,-73.98656,"(40.583656, -73.98656)",BAY 52 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4461729,Sedan,,,, +09/26/2021,19:40,QUEENS,11421,40.687412,-73.851456,"(40.687412, -73.851456)",91 STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Passing Too Closely,,,,4462115,Multi-Wheeled Vehicle,Minicycle,,, +09/19/2021,18:45,BROOKLYN,11210,40.636803,-73.939415,"(40.636803, -73.939415)",FARRAGUT ROAD,EAST 39 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462249,Sedan,Bike,,, +09/27/2021,11:00,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4461685,Sedan,Sedan,Sedan,, +09/27/2021,15:30,BROOKLYN,11204,40.617287,-73.97786,"(40.617287, -73.97786)",BAY PARKWAY,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462132,Sedan,Sedan,,, +09/27/2021,20:09,BROOKLYN,11236,40.648266,-73.90581,"(40.648266, -73.90581)",FOSTER AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461673,Station Wagon/Sport Utility Vehicle,Bike,,, +09/27/2021,4:45,BROOKLYN,11211,40.70507,-73.96217,"(40.70507, -73.96217)",,,535 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4461479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:30,MANHATTAN,10002,40.713615,-73.9956,"(40.713615, -73.9956)",,,56 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462159,Sedan,Sedan,,, +09/27/2021,9:15,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461599,Sedan,Box Truck,,, +09/27/2021,12:00,QUEENS,11419,40.686592,-73.82232,"(40.686592, -73.82232)",,,104-10 121 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461708,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,19:10,BROOKLYN,11203,40.648182,-73.93001,"(40.648182, -73.93001)",UTICA AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4462246,Sedan,Bus,,, +09/11/2021,15:45,QUEENS,11385,40.704544,-73.90187,"(40.704544, -73.90187)",,,66-97 FOREST AVENUE,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4462084,Sedan,,,, +09/27/2021,11:25,BROOKLYN,11229,40.6118,-73.94403,"(40.6118, -73.94403)",,,2970 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461713,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,18:10,BRONX,10457,40.847366,-73.899506,"(40.847366, -73.899506)",PARK AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461798,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/27/2021,4:31,MANHATTAN,10033,40.845432,-73.93658,"(40.845432, -73.93658)",WEST 175 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462093,Sedan,Sedan,,, +09/27/2021,11:30,QUEENS,11419,40.68795,-73.82502,"(40.68795, -73.82502)",103 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461701,Sedan,,,, +09/27/2021,13:30,BROOKLYN,11209,40.632496,-74.03219,"(40.632496, -74.03219)",,,130 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4461644,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,9:30,STATEN ISLAND,10304,40.630806,-74.08082,"(40.630806, -74.08082)",,,291 SAINT PAULS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462148,Sedan,Bus,,, +09/19/2021,20:05,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462173,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,21:45,,,40.625908,-74.15577,"(40.625908, -74.15577)",FOREST AVENUE,VANPELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461836,Sedan,Sedan,,, +09/27/2021,23:50,,,40.719547,-73.9749,"(40.719547, -73.9749)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461998,Sedan,Sedan,,, +09/27/2021,15:00,BRONX,10454,40.80906,-73.90755,"(40.80906, -73.90755)",EAST 144 STREET,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4461721,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,15:07,BROOKLYN,11206,40.702477,-73.94065,"(40.702477, -73.94065)",,,24 HUMBOLDT STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461769,E-Bike,,,, +09/12/2021,18:30,BROOKLYN,11203,40.64491,-73.92192,"(40.64491, -73.92192)",CLARENDON ROAD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,7:41,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462120,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,11:25,MANHATTAN,10004,40.70503,-74.013336,"(40.70503, -74.013336)",BROADWAY,BEAVER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461790,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/24/2021,7:00,BROOKLYN,11225,40.663334,-73.960236,"(40.663334, -73.960236)",,,57 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462338,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,16:59,BROOKLYN,11204,40.632717,-73.98377,"(40.632717, -73.98377)",16 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,2:10,QUEENS,11419,40.690434,-73.83293,"(40.690434, -73.83293)",,,95-36 112 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461326,Sedan,Sedan,,, +09/25/2021,14:00,QUEENS,11365,0,0,"(0.0, 0.0)",,,65-96 160 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,14:40,STATEN ISLAND,10301,40.64466,-74.09847,"(40.64466, -74.09847)",RICHMOND TERRACE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462149,Sedan,,,, +09/27/2021,12:35,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",HOOK CREEK BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461684,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,9:20,BRONX,10461,40.85615,-73.84395,"(40.85615, -73.84395)",EASTCHESTER ROAD,RHINELANDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461857,Bus,Sedan,,, +09/27/2021,10:50,BRONX,10461,40.840576,-73.83799,"(40.840576, -73.83799)",,,3000 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4461582,Sedan,Sedan,,, +09/27/2021,16:40,BRONX,10473,40.82384,-73.87128,"(40.82384, -73.87128)",,,872 METCALF AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4461848,Sedan,,,, +09/27/2021,19:15,,,40.717175,-74.01288,"(40.717175, -74.01288)",CHAMBERS STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4462182,Station Wagon/Sport Utility Vehicle,Bike,,, +09/08/2021,11:50,QUEENS,11378,40.72659,-73.90822,"(40.72659, -73.90822)",,,59-24 MAURICE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462087,Sedan,Bike,,, +09/27/2021,17:00,BRONX,10454,40.80484,-73.912796,"(40.80484, -73.912796)",JACKSON AVENUE,EAST 138 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4461725,Sedan,Moped,,, +09/27/2021,16:25,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461755,Sedan,Sedan,,, +09/27/2021,13:40,BRONX,10467,40.862797,-73.865486,"(40.862797, -73.865486)",,,2456 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4461964,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,21:00,MANHATTAN,10019,40.770542,-73.99198,"(40.770542, -73.99198)",,,606 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461810,Sedan,,,, +09/27/2021,6:34,BROOKLYN,11236,40.64178,-73.903564,"(40.64178, -73.903564)",,,9320 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461619,Lift Boom,Sedan,,, +09/27/2021,19:08,,,40.713398,-73.7704,"(40.713398, -73.7704)",190 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461640,Bus,Sedan,,, +09/27/2021,7:45,QUEENS,11434,40.666393,-73.764465,"(40.666393, -73.764465)",SOUTH CONDUIT AVENUE,180 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462318,Sedan,Sedan,,, +09/27/2021,10:00,MANHATTAN,10028,40.77931,-73.961464,"(40.77931, -73.961464)",,,1016 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4461544,Station Wagon/Sport Utility Vehicle,BOX TRUCK,,, +09/09/2021,20:30,BRONX,10463,40.870445,-73.904274,"(40.870445, -73.904274)",,,2678 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462270,Sedan,,,, +09/27/2021,18:55,BROOKLYN,11222,40.73676,-73.95035,"(40.73676, -73.95035)",,,53 PAIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461825,Station Wagon/Sport Utility Vehicle,Van,,, +09/27/2021,8:45,QUEENS,11420,40.669556,-73.82605,"(40.669556, -73.82605)",114 PLACE,149 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Keep Right,,,,4461705,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,22:35,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462211,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,13:48,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461621,Sedan,Pick-up Truck,,, +09/27/2021,21:51,BROOKLYN,11219,40.629646,-74.010704,"(40.629646, -74.010704)",67 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461645,Sedan,Motorcycle,,, +09/27/2021,5:25,BROOKLYN,11236,40.632717,-73.89138,"(40.632717, -73.89138)",SEAVIEW AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462013,Sedan,,,, +09/27/2021,11:00,BROOKLYN,11238,40.672832,-73.96908,"(40.672832, -73.96908)",,,10 GRAND ARMY PLAZA,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461892,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,11:55,,,40.693264,-73.824066,"(40.693264, -73.824066)",95 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4461928,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,9:28,BRONX,10472,40.82907,-73.86189,"(40.82907, -73.86189)",,,1130 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461540,Sedan,Sedan,,, +09/27/2021,18:08,,,40.755657,-73.94569,"(40.755657, -73.94569)",10 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4461760,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,13:00,MANHATTAN,10003,40.73599,-73.98946,"(40.73599, -73.98946)",UNION SQUARE EAST,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4461573,Sedan,Bike,,, +09/27/2021,8:30,QUEENS,11373,40.738853,-73.8884,"(40.738853, -73.8884)",76 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461835,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +09/27/2021,7:20,BRONX,10467,40.879242,-73.86536,"(40.879242, -73.86536)",WHITE PLAINS ROAD,EAST 213 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4461526,Bus,Sedan,,, +09/27/2021,14:00,QUEENS,11361,40.756996,-73.78081,"(40.756996, -73.78081)",,,45-04 202 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461654,Sedan,,,, +09/27/2021,15:18,BROOKLYN,11232,40.654133,-74.01169,"(40.654133, -74.01169)",41 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4461884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/27/2021,18:00,,,40.70711,-73.95672,"(40.70711, -73.95672)",RODNEY STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462409,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,13:57,MANHATTAN,10019,40.76479,-73.98429,"(40.76479, -73.98429)",8 AVENUE,WEST 54 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4461802,Taxi,,,, +09/27/2021,10:20,,,40.8133,-73.930405,"(40.8133, -73.930405)",GRAND CONCOURSE,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461605,Sedan,,,, +08/12/2021,23:45,,,40.68085,-73.97112,"(40.68085, -73.97112)",CARLTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462172,Sedan,,,, +09/27/2021,7:00,MANHATTAN,10002,40.72017,-73.98357,"(40.72017, -73.98357)",,,145 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462136,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,23:00,QUEENS,11420,0,0,"(0.0, 0.0)",,,133-14 SUTTER AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4461709,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +09/27/2021,21:02,QUEENS,11429,40.705765,-73.74181,"(40.705765, -73.74181)",DELEVAN STREET,112 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461691,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:30,,,40.814297,-73.95308,"(40.814297, -73.95308)",WEST 129 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4462029,Bus,Sedan,,, +09/26/2021,5:25,MANHATTAN,10002,40.720108,-73.99333,"(40.720108, -73.99333)",,,14 DELANCEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462109,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,12:18,BROOKLYN,11229,40.615364,-73.94575,"(40.615364, -73.94575)",KINGS HIGHWAY,EAST 29 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4461714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,0:15,,,40.633038,-74.039314,"(40.633038, -74.039314)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4461600,Sedan,Sedan,Sedan,, +09/24/2021,13:30,QUEENS,11414,40.668247,-73.84602,"(40.668247, -73.84602)",89 STREET,151 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,9:45,,,40.86135,-73.89774,"(40.86135, -73.89774)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4461558,Sedan,Van,Sedan,Beverage Truck, +09/27/2021,16:48,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462191,Sedan,Van,,, +09/27/2021,16:55,,,40.73574,-73.872665,"(40.73574, -73.872665)",90 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461841,Pick-up Truck,,,, +09/27/2021,15:41,,,40.624813,-73.89446,"(40.624813, -73.89446)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461940,Sedan,Sedan,,, +09/27/2021,8:45,BROOKLYN,11203,40.6537,-73.932106,"(40.6537, -73.932106)",,,710 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4461629,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,8:30,,,40.583656,-73.98656,"(40.583656, -73.98656)",BAY 52 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461730,Sedan,,,, +09/27/2021,13:38,,,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461865,Pick-up Truck,Sedan,,, +09/27/2021,18:27,,,40.75857,-73.985054,"(40.75857, -73.985054)",WEST 46 STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461797,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/27/2021,2:39,MANHATTAN,10001,40.74778,-73.98924,"(40.74778, -73.98924)",,,866 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4461495,Motorscooter,Box Truck,,, +09/27/2021,1:00,,,,,,ROCKAWAY BOULEVARD,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4461668,Sedan,,,, +09/24/2021,20:55,QUEENS,11385,40.70003,-73.90698,"(40.70003, -73.90698)",MYRTLE AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462292,Bus,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,17:30,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",76 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461748,Sedan,,,, +09/27/2021,9:02,QUEENS,11103,40.769974,-73.91206,"(40.769974, -73.91206)",,,37-07 24 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461632,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,21:45,STATEN ISLAND,10305,40.609768,-74.06969,"(40.609768, -74.06969)",TOMPKINS AVENUE,SAINT JOHNS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462142,Sedan,Sedan,,, +09/27/2021,15:45,,,40.715443,-73.95185,"(40.715443, -73.95185)",MEEKER AVENUE,UNION AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462164,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,16:40,MANHATTAN,10031,40.827774,-73.945755,"(40.827774, -73.945755)",AMSTERDAM AVENUE,WEST 149 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462064,Sedan,E-Bike,,, +09/26/2021,16:41,,,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4462247,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,9:40,QUEENS,11377,40.748493,-73.89793,"(40.748493, -73.89793)",37 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489303,Sedan,,,, +09/25/2021,21:30,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",WEST 157 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462095,Taxi,,,, +09/18/2021,15:11,QUEENS,11379,40.720154,-73.87531,"(40.720154, -73.87531)",80 STREET,JUNIPER BOULEVARD SOUTH,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4462287,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,9:05,,,40.71786,-73.948326,"(40.71786, -73.948326)",LEONARD STREET,MEEKER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4461828,Sedan,Box Truck,,, +09/26/2021,11:00,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4462342,Sedan,Tractor Truck Gasoline,,, +09/27/2021,7:27,BRONX,10473,40.82201,-73.85827,"(40.82201, -73.85827)",LAFAYETTE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461585,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,23:10,BRONX,10469,40.86229,-73.83104,"(40.86229, -73.83104)",,,1990 EAST GUN HILL ROAD,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4461859,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,10:35,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462209,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,12:24,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",GRAND CONCOURSE,EAST 158 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inexperience,,,,4489442,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,5:15,BROOKLYN,11226,40.653774,-73.95617,"(40.653774, -73.95617)",BEDFORD AVENUE,LENOX ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4461624,Sedan,,,, +09/27/2021,19:18,BRONX,10469,40.871265,-73.857834,"(40.871265, -73.857834)",,,1038 BURKE AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4461948,Sedan,Motorcycle,,, +09/27/2021,0:10,,,,,,STADIUM PLACE SOUTH,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461930,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,0:16,BROOKLYN,11220,40.635494,-74.00957,"(40.635494, -74.00957)",8 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461546,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,17:33,MANHATTAN,10027,40.807667,-73.94929,"(40.807667, -73.94929)",WEST 123 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4462248,Bike,,,, +09/24/2021,23:00,BRONX,10455,40.816166,-73.914246,"(40.816166, -73.914246)",,,560 BROOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462373,Van,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,22:52,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4462088,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan,, +09/27/2021,19:20,BRONX,10459,40.823536,-73.8939,"(40.823536, -73.8939)",,,1000 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461719,Sedan,,,, +09/14/2021,20:13,MANHATTAN,10029,40.794617,-73.943924,"(40.794617, -73.943924)",,,139 EAST 110 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462147,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,17:30,STATEN ISLAND,10304,40.622463,-74.07254,"(40.622463, -74.07254)",VANDERBILT AVENUE,BAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462150,Sedan,Sedan,,, +09/27/2021,1:13,QUEENS,11375,40.71619,-73.857056,"(40.71619, -73.857056)",KESSEL STREET,SELFRIDGE STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4461420,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +09/27/2021,11:00,BROOKLYN,11217,40.6852713,-73.9801384,"(40.6852713, -73.9801384)",,,525 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461572,Sedan,,,, +09/24/2021,4:00,QUEENS,11430,40.6652473,-73.8020331,"(40.6652473, -73.8020331)",VANWYCK EXPRESSWAY,NASSAU EXPRESSWAY,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4462412,Sedan,Sedan,,, +05/21/2021,14:40,,,,,,,,624 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419585,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,16:50,QUEENS,11427,40.722065,-73.75407,"(40.722065, -73.75407)",,,89-07 211 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462315,Sedan,,,, +09/27/2021,8:17,QUEENS,11102,40.772736,-73.92746,"(40.772736, -73.92746)",,,27-04 18 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4461759,Sedan,,,, +09/27/2021,15:20,BROOKLYN,11230,40.619656,-73.95745,"(40.619656, -73.95745)",,,1270 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:33,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4462238,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,23:30,,,40.666157,-73.79904,"(40.666157, -73.79904)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4461681,Sedan,Sedan,,, +09/27/2021,7:55,STATEN ISLAND,10306,40.5748,-74.10542,"(40.5748, -74.10542)",,,2297 HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4461968,Sedan,Dump,Sedan,Station Wagon/Sport Utility Vehicle, +09/27/2021,23:45,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4461704,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,16:21,MANHATTAN,10019,40.772877,-73.993416,"(40.772877, -73.993416)",WEST 59 STREET,12 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4462271,Van,E-Bike,,, +09/27/2021,9:36,QUEENS,11106,40.768818,-73.93346,"(40.768818, -73.93346)",12 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4461775,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,13:30,,,40.68668,-73.97937,"(40.68668, -73.97937)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461614,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,8:00,STATEN ISLAND,10304,40.611507,-74.08318,"(40.611507, -74.08318)",,,140 PALMA DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461538,Sedan,Sedan,,, +09/27/2021,13:57,BRONX,10451,40.824215,-73.909195,"(40.824215, -73.909195)",,,514 EAST 163 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461849,Sedan,Sedan,,, +09/27/2021,16:57,QUEENS,11357,40.795612,-73.80217,"(40.795612, -73.80217)",159 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462017,Sedan,,,, +09/27/2021,22:45,,,40.70481,-73.93932,"(40.70481, -73.93932)",BUSHWICK AVENUE,SEIGEL STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4461646,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,11:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4461637,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/27/2021,22:00,,,,,,GOWANUS RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4461894,Sedan,Sedan,,, +09/27/2021,15:20,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",UTICA AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,22:17,,,40.665245,-73.80204,"(40.665245, -73.80204)",NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4461699,Sedan,Sedan,,, +09/27/2021,16:08,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461724,4 dr sedan,Sedan,,, +09/18/2021,15:45,MANHATTAN,10007,40.714523,-74.0071,"(40.714523, -74.0071)",,,86 CHAMBERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462180,Tow Truck / Wrecker,Beverage Truck,,, +09/27/2021,16:41,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",OCEAN PARKWAY,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462129,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,19:30,,,40.787064,-73.94194,"(40.787064, -73.94194)",EAST 102 STREET,EAST RIVER,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461754,Sedan,,,, +09/27/2021,15:45,QUEENS,11004,40.740376,-73.70847,"(40.740376, -73.70847)",,,82-49 261 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461687,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/19/2021,4:00,QUEENS,11372,40.749107,-73.878525,"(40.749107, -73.878525)",,,37-60 88 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462391,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,16:07,,,,,,EAST 170 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,22:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462119,Sedan,Sedan,,, +09/26/2021,20:29,MANHATTAN,10029,40.788994,-73.94656,"(40.788994, -73.94656)",EAST 102 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Passing Too Closely,,,,4462137,Station Wagon/Sport Utility Vehicle,Moped,,, +09/27/2021,16:00,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4461710,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/22/2021,23:07,STATEN ISLAND,10304,40.619,-74.084785,"(40.619, -74.084785)",TARGEE STREET,OSGOOD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489595,Sedan,Sedan,,, +12/24/2021,0:15,BROOKLYN,11208,40.672855,-73.87131,"(40.672855, -73.87131)",SUTTER AVENUE,EUCLID AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4489324,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,8:31,BRONX,10469,40.86112,-73.85472,"(40.86112, -73.85472)",,,1127 WARING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,4489711,Sedan,Sedan,Sedan,Sedan, +12/24/2021,18:40,,,40.62636,-73.95067,"(40.62636, -73.95067)",EAST 26 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4489557,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,3:00,MANHATTAN,10011,40.737675,-73.99346,"(40.737675, -73.99346)",,,15 WEST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488777,Sedan,,,, +12/23/2021,21:43,BROOKLYN,11237,40.703667,-73.9269,"(40.703667, -73.9269)",KNICKERBOCKER AVENUE,JEFFERSON STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4489301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,15:54,BRONX,10457,40.852486,-73.88724,"(40.852486, -73.88724)",EAST 183 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4411625,Station Wagon/Sport Utility Vehicle,Bus,,, +05/04/2021,18:10,,,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414066,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,13:03,BROOKLYN,11211,40.705334,-73.95951,"(40.705334, -73.95951)",LEE AVENUE,RODNEY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4414146,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,16:15,,,40.698154,-73.86969,"(40.698154, -73.86969)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4418517,Sedan,Sedan,Sedan,, +05/18/2021,15:05,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4418600,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Pick-up Truck,, +05/20/2021,19:25,MANHATTAN,10038,40.711655,-74.00584,"(40.711655, -74.00584)",NASSAU STREET,SPRUCE STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4419019,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:28,,,40.678165,-73.962234,"(40.678165, -73.962234)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4419429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:10,,,40.755505,-73.96807,"(40.755505, -73.96807)",2 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4418292,Moped,,,, +05/18/2021,20:23,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,VERMONT PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419287,Motorbike,,,, +05/21/2021,22:30,QUEENS,11369,40.761063,-73.873886,"(40.761063, -73.873886)",30 AVENUE,95 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418993,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,13:01,BROOKLYN,11214,40.60118,-73.99098,"(40.60118, -73.99098)",85 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418714,Sedan,Sedan,,, +05/19/2021,14:00,BROOKLYN,11233,40.67165,-73.9176,"(40.67165, -73.9176)",,,1813 PARK PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4418393,Sedan,Sedan,,, +05/13/2021,18:33,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4419217,Sedan,,,, +05/20/2021,0:10,,,40.742985,-73.79268,"(40.742985, -73.79268)",UTOPIA PARKWAY,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418337,Sedan,Sedan,,, +05/20/2021,14:55,BRONX,10457,40.851967,-73.897095,"(40.851967, -73.897095)",PARK AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418832,Sedan,,,, +05/20/2021,16:30,BRONX,10472,40.82573,-73.88087,"(40.82573, -73.88087)",,,1471 WATSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418692,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,9:30,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419348,Sedan,Box Truck,,, +05/16/2021,13:13,,,40.633327,-74.016136,"(40.633327, -74.016136)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419461,Sedan,Sedan,,, +05/20/2021,11:15,BROOKLYN,11220,40.64777,-74.01474,"(40.64777, -74.01474)",3 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418676,Box Truck,Sedan,,, +05/20/2021,22:50,BROOKLYN,11231,40.675842,-73.99905,"(40.675842, -73.99905)",HUNTINGTON STREET,COURT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4418991,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/15/2021,5:08,QUEENS,11368,40.757652,-73.8654,"(40.757652, -73.8654)",,,103-13 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Illnes,,,,,4417316,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,15:29,MANHATTAN,10128,0,0,"(0.0, 0.0)",EAST 89 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418555,Sedan,,,, +05/21/2021,19:05,QUEENS,11436,40.669823,-73.78883,"(40.669823, -73.78883)",150 STREET,130 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Turning Improperly,Unspecified,,,4419430,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,23:39,BROOKLYN,11201,40.702564,-73.99175,"(40.702564, -73.99175)",FRONT STREET,YORK STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4418871,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,9:30,BROOKLYN,11239,,,,,,590 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419583,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,9:45,,,40.719734,-73.78652,"(40.719734, -73.78652)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,12:20,,,40.624763,-73.96518,"(40.624763, -73.96518)",AVENUE J,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,19:30,MANHATTAN,10032,40.845596,-73.94244,"(40.845596, -73.94244)",,,138 HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4419535,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/19/2021,1:20,MANHATTAN,10036,40.756767,-73.98272,"(40.756767, -73.98272)",AVENUE OF THE AMERICAS,WEST 45 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418004,Sedan,Sedan,,, +05/21/2021,7:20,QUEENS,11106,40.763412,-73.93344,"(40.763412, -73.93344)",,,33-56 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,16:15,QUEENS,11385,40.705734,-73.89449,"(40.705734, -73.89449)",68 AVENUE,64 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418908,Sedan,Motorcycle,,, +05/21/2021,13:30,QUEENS,11697,40.560825,-73.91322,"(40.560825, -73.91322)",ROCKAWAY POINT BOULEVARD,BEACH 204 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419060,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,11:00,STATEN ISLAND,10301,40.643677,-74.08435,"(40.643677, -74.08435)",,,166 WESTERVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418322,Sedan,,,, +05/18/2021,23:23,BRONX,10458,,,,EAST FORDHAM ROAD,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4418834,Sedan,Sedan,,, +05/20/2021,16:20,BROOKLYN,11222,40.722637,-73.95419,"(40.722637, -73.95419)",NASSAU AVENUE,BANKER STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4418698,Box Truck,Pick-up Truck,,, +05/20/2021,19:20,STATEN ISLAND,10309,40.525227,-74.20962,"(40.525227, -74.20962)",MAGUIRE AVENUE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418761,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,15:53,BROOKLYN,11229,40.59861,-73.938644,"(40.59861, -73.938644)",AVENUE V,BATCHELDER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419620,Sedan,,,, +05/19/2021,11:35,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418433,Taxi,Taxi,,, +05/21/2021,14:05,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419221,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,0:13,MANHATTAN,10033,40.850506,-73.93287,"(40.850506, -73.93287)",SAINT NICHOLAS AVENUE,WEST 183 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419732,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,21:20,BRONX,10456,40.821552,-73.90567,"(40.821552, -73.90567)",EAST 161 STREET,JACKSON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418356,Sedan,Box Truck,,, +05/20/2021,20:15,,,40.747833,-73.83301,"(40.747833, -73.83301)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Tow Hitch Defective,Unspecified,,,,4419102,Pick-up Truck,Motorcycle,,, +05/19/2021,12:40,STATEN ISLAND,10301,40.620686,-74.11002,"(40.620686, -74.11002)",CLOVE ROAD,BARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419171,Sedan,,,, +05/20/2021,3:19,BRONX,10462,40.83362,-73.8571,"(40.83362, -73.8571)",,,2008 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),,,,,4418505,Sedan,,,, +05/19/2021,15:00,STATEN ISLAND,10306,40.575184,-74.1278,"(40.575184, -74.1278)",RICHMOND ROAD,CRANFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418599,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,9:30,MANHATTAN,10036,40.7591,-73.99215,"(40.7591, -73.99215)",9 AVENUE,WEST 43 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419684,,,,, +05/20/2021,14:00,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4418648,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,21:00,QUEENS,11378,40.728653,-73.895584,"(40.728653, -73.895584)",,,54-20 69 STREET,2,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418935,E-Scooter,,,, +05/21/2021,20:00,STATEN ISLAND,10310,40.6271,-74.12514,"(40.6271, -74.12514)",MANOR ROAD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4419189,,,,, +05/19/2021,2:00,QUEENS,11356,40.79276,-73.848434,"(40.79276, -73.848434)",POPPENHUSEN AVENUE,COLLEGE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,20:30,,,40.747143,-74.000854,"(40.747143, -74.000854)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419390,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,16:00,,,40.859974,-73.900795,"(40.859974, -73.900795)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418802,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,15:50,QUEENS,11368,40.741825,-73.85418,"(40.741825, -73.85418)",,,54-17 108 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418362,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,17:21,,,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,,,1,0,1,0,0,0,0,0,Unsafe Lane Changing,,,,,4418550,E-Scooter,,,, +05/21/2021,16:12,BROOKLYN,11221,40.690563,-73.94536,"(40.690563, -73.94536)",LAFAYETTE AVENUE,TOMPKINS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419397,,,,, +05/20/2021,9:45,BROOKLYN,11207,40.662807,-73.89646,"(40.662807, -73.89646)",RIVERDALE AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418793,Station Wagon/Sport Utility Vehicle,Trailer,,, +05/21/2021,19:12,BRONX,10454,40.80375,-73.920135,"(40.80375, -73.920135)",,,147 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4419035,Taxi,,,, +05/18/2021,22:47,BROOKLYN,11236,40.636326,-73.89893,"(40.636326, -73.89893)",EAST 92 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418864,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/22/2021,12:25,QUEENS,11419,40.690044,-73.81481,"(40.690044, -73.81481)",131 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489826,Sedan,,,, +05/20/2021,3:37,MANHATTAN,10029,40.794758,-73.94235,"(40.794758, -73.94235)",EAST 111 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4418588,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/21/2021,20:00,QUEENS,11366,40.73191,-73.7784,"(40.73191, -73.7784)",,,75-43 193 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419094,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,4:09,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418485,Sedan,,,, +05/21/2021,11:30,QUEENS,11693,40.588554,-73.80641,"(40.588554, -73.80641)",,,221 BEACH 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418950,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,11:30,BROOKLYN,11203,40.65699,-73.92901,"(40.65699, -73.92901)",,,180 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419365,Sedan,,,, +05/19/2021,4:29,MANHATTAN,10009,40.726147,-73.97735,"(40.726147, -73.97735)",,,169 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,,,,,4418093,Sedan,Sedan,,, +05/20/2021,9:15,BROOKLYN,11211,40.71162,-73.96219,"(40.71162, -73.96219)",,,146 SOUTH 4 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4418736,Van,,,, +05/19/2021,13:50,MANHATTAN,10028,40.77333,-73.95098,"(40.77333, -73.95098)",,,426 EAST 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418735,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,16:00,QUEENS,11416,40.684597,-73.84482,"(40.684597, -73.84482)",,,96-10 101 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418265,Sedan,Sedan,,, +05/21/2021,13:00,BROOKLYN,11225,40.663418,-73.95865,"(40.663418, -73.95865)",,,104 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418886,Sedan,Sedan,,, +05/21/2021,16:20,,,40.79292,-73.94579,"(40.79292, -73.94579)",EAST 107 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418903,Sedan,Box Truck,,, +05/19/2021,14:14,MANHATTAN,10021,40.767803,-73.95601,"(40.767803, -73.95601)",EAST 72 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418399,Sedan,,,, +05/20/2021,14:53,BROOKLYN,11237,40.699436,-73.91229,"(40.699436, -73.91229)",MYRTLE AVENUE,GATES AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4418853,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/16/2021,13:15,BRONX,10466,40.89193,-73.848076,"(40.89193, -73.848076)",WICKHAM AVENUE,EDENWALD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419269,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,22:45,BROOKLYN,11221,40.693863,-73.92971,"(40.693863, -73.92971)",BROADWAY,DE KALB AVENUE,,1,0,1,0,0,0,0,0,,,,,,4419151,,,,, +05/15/2021,2:30,BROOKLYN,11236,,,,,,899 BANK STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4418825,Sedan,Carry All,,, +05/19/2021,23:50,MANHATTAN,10026,40.806355,-73.953964,"(40.806355, -73.953964)",8 AVENUE,WEST 119 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,12:18,,,40.599453,-74.0072,"(40.599453, -74.0072)",19 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419128,Sedan,Sedan,,, +05/20/2021,10:26,,,40.676758,-73.917404,"(40.676758, -73.917404)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419197,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:00,BROOKLYN,11236,40.646435,-73.893456,"(40.646435, -73.893456)",,,973 EAST 105 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4419471,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,13:00,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419540,Sedan,Dump,,, +05/20/2021,17:05,BROOKLYN,11237,0,0,"(0.0, 0.0)",JOHNSON AVENUE,PORTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4418684,Sedan,,,, +05/21/2021,12:52,STATEN ISLAND,10304,40.60645,-74.08733,"(40.60645, -74.08733)",CLOVE ROAD,HANOVER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418891,Pick-up Truck,ambulance,,, +05/19/2021,23:56,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",2 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4418413,Taxi,Sedan,,, +05/20/2021,19:15,,,40.773502,-73.79653,"(40.773502, -73.79653)",FRANCIS LEWIS BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,15:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4419066,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +05/20/2021,16:45,BROOKLYN,11218,40.638523,-73.98131,"(40.638523, -73.98131)",15 AVENUE,38 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4419318,Sedan,Sedan,,, +05/19/2021,15:30,,,40.83354,-73.89631,"(40.83354, -73.89631)",BOSTON ROAD,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418438,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,15:35,BRONX,10452,40.838158,-73.92324,"(40.838158, -73.92324)",SHAKESPEARE AVENUE,WEST 168 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4418757,Pick-up Truck,Bike,,, +05/21/2021,12:15,,,40.68161,-73.77221,"(40.68161, -73.77221)",BAISLEY BOULEVARD,172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419438,Sedan,,,, +05/19/2021,18:00,BRONX,10458,40.858433,-73.885124,"(40.858433, -73.885124)",EAST FORDHAM ROAD,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418457,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,0:00,BROOKLYN,11211,40.711903,-73.96295,"(40.711903, -73.96295)",BEDFORD AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419705,Sedan,Bike,,, +05/19/2021,8:35,BROOKLYN,11218,40.649525,-73.98072,"(40.649525, -73.98072)",MC DONALD AVENUE,GREENWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418221,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,17:15,STATEN ISLAND,10312,40.535736,-74.16379,"(40.535736, -74.16379)",WOODS OF ARDEN ROAD,KOCH BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419249,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,17:10,BROOKLYN,11210,40.63472,-73.9497,"(40.63472, -73.9497)",,,1480 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419141,Sedan,Sedan,,, +05/18/2021,13:55,MANHATTAN,10026,40.798344,-73.95243,"(40.798344, -73.95243)",,,55 CENTRAL PARK NORTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4419337,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,2:15,BRONX,10460,40.833447,-73.887955,"(40.833447, -73.887955)",EAST 172 STREET,VYSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418770,Sedan,,,, +05/19/2021,7:44,BRONX,10454,40.809265,-73.90854,"(40.809265, -73.90854)",EAST 144 STREET,WALES AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4418168,Sedan,E-Bike,,, +12/24/2021,12:13,,,,,,ORCHARD BEACH ROAD,HUTCHINSON RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489739,Sedan,Sedan,,, +05/21/2021,18:14,QUEENS,11436,40.67551,-73.79246,"(40.67551, -73.79246)",123 AVENUE,146 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4419413,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/19/2021,15:18,QUEENS,11419,40.689445,-73.808716,"(40.689445, -73.808716)",VANWYCK EXPRESSWAY,106 AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,Unspecified,,,4418616,Sedan,Sedan,Tractor Truck Diesel,, +05/20/2021,12:15,QUEENS,11413,40.66298,-73.753975,"(40.66298, -73.753975)",225 STREET,145 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418638,Sedan,,,, +05/20/2021,15:00,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",39 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418663,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/16/2021,19:00,QUEENS,11385,,,,,,1639 Summerfield Street,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/19/2021,15:00,BROOKLYN,11239,,,,,,360 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418789,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,8:14,QUEENS,11377,40.74094,-73.91725,"(40.74094, -73.91725)",47 AVENUE,48 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4418197,Sedan,Sedan,,, +05/19/2021,9:54,,,40.681137,-73.95567,"(40.681137, -73.95567)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418170,Dump,Sedan,,, +05/18/2021,23:20,,,,,,WILLIS AVE BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4419029,Convertible,Sedan,,, +05/20/2021,11:10,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",ROSEDALE AVENUE,STORY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418571,Station Wagon/Sport Utility Vehicle,Bike,,, +05/19/2021,20:00,QUEENS,11691,40.597824,-73.78255,"(40.597824, -73.78255)",,,51-49 ALMEDA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4418742,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,4:57,,,40.676094,-73.94992,"(40.676094, -73.94992)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4418245,Ambulance,Station Wagon/Sport Utility Vehicle,Sedan,, +05/21/2021,14:59,,,40.840675,-73.838394,"(40.840675, -73.838394)",EAST TREMONT AVENUE,HUTCHINSON RIVER PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419163,Sedan,,,, +12/24/2021,16:30,BRONX,10467,40.871407,-73.86474,"(40.871407, -73.86474)",,,755 BURKE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4489649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,10:52,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418923,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,16:34,BRONX,10472,40.84827,-73.88312,"(40.84827, -73.88312)",EAST 182 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418455,Station Wagon/Sport Utility Vehicle,MOPED,,, +05/20/2021,10:20,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4419156,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,17:35,,,40.899815,-73.85781,"(40.899815, -73.85781)",NEREID AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419253,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,18:40,QUEENS,11373,40.735497,-73.869705,"(40.735497, -73.869705)",57 AVENUE,92 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418722,Taxi,,,, +05/20/2021,22:27,,,40.70183,-73.91933,"(40.70183, -73.91933)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4418857,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/19/2021,12:30,BRONX,10467,0,0,"(0.0, 0.0)",EAST GUN HILL ROAD,RESERVOIR PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418351,Sedan,Sedan,,, +05/21/2021,16:04,QUEENS,11367,40.728077,-73.81272,"(40.728077, -73.81272)",,,155-15 AGUILAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418940,Sedan,,,, +05/21/2021,9:45,BRONX,10457,40.85391,-73.89109,"(40.85391, -73.89109)",,,4422 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418979,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/20/2021,13:13,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CATON AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4419333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,14:41,,,40.81751,-73.96069,"(40.81751, -73.96069)",SAINT CLAIR PLACE,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419477,Sedan,,,, +05/20/2021,16:25,BROOKLYN,11210,40.624454,-73.95509,"(40.624454, -73.95509)",,,1189 EAST 21 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4419132,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,8:40,,,40.66423,-73.919106,"(40.66423, -73.919106)",BLAKE AVENUE,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,Other Vehicular,,4419201,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/21/2021,16:20,BRONX,10466,40.889133,-73.835556,"(40.889133, -73.835556)",EAST 233 STREET,AMUNDSON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4419276,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/19/2021,21:29,BRONX,10455,40.815186,-73.90306,"(40.815186, -73.90306)",,,649 KELLY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4418372,Ambulance,Sedan,,, +05/21/2021,0:41,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418689,Sedan,Stake or Rack,,, +05/19/2021,6:07,QUEENS,11356,40.789253,-73.85182,"(40.789253, -73.85182)",115 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4419523,Tractor Truck Diesel,Sedan,,, +05/21/2021,1:30,,,40.678165,-73.746506,"(40.678165, -73.746506)",MERRICK BOULEVARD,223 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418703,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/19/2021,14:40,BROOKLYN,11237,40.695847,-73.908806,"(40.695847, -73.908806)",IRVING AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418472,Sedan,,,, +05/15/2021,17:01,,,40.534813,-74.194115,"(40.534813, -74.194115)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4419546,Sedan,,,, +05/21/2021,15:00,,,40.853245,-73.84325,"(40.853245, -73.84325)",EASTCHESTER ROAD,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4418895,Station Wagon/Sport Utility Vehicle,Bus,,, +05/20/2021,20:35,MANHATTAN,10031,40.824078,-73.94889,"(40.824078, -73.94889)",WEST 143 STREET,HAMILTON PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418813,E-Bike,,,, +05/19/2021,17:05,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",AMSTERDAM AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418418,Ambulance,Sedan,,, +05/21/2021,11:55,QUEENS,11377,40.753265,-73.91229,"(40.753265, -73.91229)",,,50-01 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419295,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,16:08,BROOKLYN,11236,40.64563,-73.88891,"(40.64563, -73.88891)",EAST 108 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,15:30,MANHATTAN,10024,40.782703,-73.97123,"(40.782703, -73.97123)",WEST 82 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4418912,Sedan,Bus,,, +05/21/2021,8:30,BROOKLYN,11217,40.680496,-73.98098,"(40.680496, -73.98098)",,,126 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419004,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,0:09,BROOKLYN,11226,40.64513,-73.948975,"(40.64513, -73.948975)",BEVERLEY ROAD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419356,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,23:00,,,40.667076,-73.78091,"(40.667076, -73.78091)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418464,Sedan,,,, +05/19/2021,9:38,BROOKLYN,11222,40.73148,-73.94628,"(40.73148, -73.94628)",,,329 GREENPOINT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4418146,Sedan,,,, +05/19/2021,17:10,MANHATTAN,10031,40.822643,-73.953224,"(40.822643, -73.953224)",BROADWAY,WEST 139 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418774,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,18:00,MANHATTAN,10001,40.7509,-73.99812,"(40.7509, -73.99812)",WEST 30 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419378,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/19/2021,0:00,BRONX,10473,40.813133,-73.857506,"(40.813133, -73.857506)",,,345 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418232,Sedan,Sedan,,, +05/21/2021,9:02,BROOKLYN,11207,40.652752,-73.88629,"(40.652752, -73.88629)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419592,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,23:20,,,40.66807,-73.950676,"(40.66807, -73.950676)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4418328,Sedan,Fire Truck,,, +05/19/2021,17:50,BROOKLYN,11232,40.65543,-74.003265,"(40.65543, -74.003265)",34 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418961,Box Truck,Sedan,,, +05/21/2021,15:50,BRONX,10475,40.868645,-73.82239,"(40.868645, -73.82239)",,,2270 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419747,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,16:30,,,40.78961,-73.97362,"(40.78961, -73.97362)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418608,Sedan,Sedan,,, +04/15/2021,19:45,,,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4419406,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,21:03,MANHATTAN,10040,40.85558,-73.93427,"(40.85558, -73.93427)",BENNETT AVENUE,WEST 189 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4418769,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,19:55,QUEENS,11104,40.737896,-73.92355,"(40.737896, -73.92355)",50 AVENUE,42 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418668,Sedan,,,, +05/20/2021,1:05,BROOKLYN,11211,40.710735,-73.961815,"(40.710735, -73.961815)",SOUTH 5 STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4418411,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,19:15,,,40.68484,-73.80607,"(40.68484, -73.80607)",VANWYCK EXPRESSWAY,111 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,,,,4418524,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,8:40,QUEENS,11433,,,,Liberty ave,Guy r brewer blvd,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418617,Sedan,Sedan,,, +05/20/2021,6:30,,,40.851936,-73.91078,"(40.851936, -73.91078)",GRAND AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4418801,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,16:15,,,40.8115,-73.93481,"(40.8115, -73.93481)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418268,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,18:00,BROOKLYN,11209,40.61696,-74.02751,"(40.61696, -74.02751)",92 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418657,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,11:05,QUEENS,11101,40.747124,-73.94239,"(40.747124, -73.94239)",44 DRIVE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418305,Bus,Taxi,,, +05/19/2021,18:14,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4418576,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/19/2021,8:31,,,,,,belt parkway,180 street,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4418177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/07/2021,13:50,,,40.73873,-73.7573,"(40.73873, -73.7573)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418828,Sedan,Pick-up Truck,,, +05/20/2021,15:00,MANHATTAN,10065,40.766666,-73.96707,"(40.766666, -73.96707)",EAST 65 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419501,Sedan,Motorcycle,,, +05/21/2021,8:30,BROOKLYN,11236,40.64725,-73.89691,"(40.64725, -73.89691)",,,757 EAST 103 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418845,Sedan,,,, +05/19/2021,7:15,,,,,,,,105-37 VANSICLEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418426,Sedan,,,, +05/20/2021,11:15,BROOKLYN,11233,40.67346,-73.91822,"(40.67346, -73.91822)",,,1492 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419209,Sedan,,,, +05/10/2021,19:09,BROOKLYN,11228,40.612007,-74.00889,"(40.612007, -74.00889)",85 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419259,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,0:35,,,40.76553,-73.94028,"(40.76553, -73.94028)",VERNON BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418449,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:00,,,40.673588,-73.73351,"(40.673588, -73.73351)",MERRICK BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418944,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,2:40,BROOKLYN,11207,40.657173,-73.88743,"(40.657173, -73.88743)",,,920 VERMONT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4418796,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/20/2021,16:00,,,40.58176,-73.85029,"(40.58176, -73.85029)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418664,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +05/20/2021,15:26,BRONX,10465,40.8275,-73.8408,"(40.8275, -73.8408)",,,999 BRUSH AVENUE,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4418726,Sedan,Sedan,Sedan,, +12/22/2021,9:00,BROOKLYN,11222,40.72771,-73.942474,"(40.72771, -73.942474)",,,261 NORMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489038,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,12:28,,,40.598522,-73.98657,"(40.598522, -73.98657)",25 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418496,Sedan,Sedan,,, +05/21/2021,17:30,MANHATTAN,10013,40.71995,-74.00859,"(40.71995, -74.00859)",HUDSON STREET,NORTH MOORE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419020,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,9:00,BROOKLYN,11215,40.666878,-73.99164,"(40.666878, -73.99164)",,,546 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418563,Sedan,,,, +05/20/2021,14:00,QUEENS,11415,40.71338,-73.82874,"(40.71338, -73.82874)",,,120-55 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418838,Sedan,,,, +05/07/2021,19:41,,,40.696354,-73.94071,"(40.696354, -73.94071)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419328,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,10:07,,,40.585934,-73.9519,"(40.585934, -73.9519)",SHEEPSHEAD BAY ROAD,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4418346,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,9:45,BROOKLYN,11210,40.636627,-73.94226,"(40.636627, -73.94226)",FARRAGUT ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418540,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,11:30,BROOKLYN,11249,40.699924,-73.96171,"(40.699924, -73.96171)",KENT AVENUE,PENN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418364,Sedan,Box Truck,,, +05/21/2021,8:03,BROOKLYN,11209,40.620434,-74.024475,"(40.620434, -74.024475)",86 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418867,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,19:25,MANHATTAN,10032,40.835358,-73.94022,"(40.835358, -73.94022)",WEST 161 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419530,Sedan,Sedan,,, +05/20/2021,13:07,QUEENS,11434,40.67711,-73.78129,"(40.67711, -73.78129)",BAISLEY BOULEVARD,161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419770,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,18:30,BRONX,10462,40.833183,-73.85267,"(40.833183, -73.85267)",,,2160 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418693,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,6:30,QUEENS,11427,40.72466,-73.74654,"(40.72466, -73.74654)",,,89-81 215 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418927,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/20/2021,1:00,,,40.841045,-73.8531,"(40.841045, -73.8531)",CASTLE HILL AVENUE,ZEREGA AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4418504,E-Bike,,,, +12/23/2021,15:30,QUEENS,11385,40.706158,-73.907845,"(40.706158, -73.907845)",WOODWARD AVENUE,GROVE STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4489630,Sedan,,,, +05/18/2021,14:23,,,40.80949,-73.95167,"(40.80949, -73.95167)",8 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4419284,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,13:51,QUEENS,11426,40.741398,-73.717735,"(40.741398, -73.717735)",252 STREET,81 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418312,Sedan,Sedan,,, +05/20/2021,5:00,BROOKLYN,11222,40.72168,-73.9448,"(40.72168, -73.9448)",HUMBOLDT STREET,ENGERT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418699,Sedan,Sedan,,, +05/21/2021,17:35,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4419587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/19/2021,20:37,MANHATTAN,10026,40.80155,-73.95002,"(40.80155, -73.95002)",,,104 LENOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419304,Sedan,Sedan,,, +05/20/2021,0:00,BROOKLYN,11232,40.66284,-73.99894,"(40.66284, -73.99894)",23 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4419455,Bus,Sedan,,, +05/17/2021,15:05,BRONX,10457,40.84772,-73.89668,"(40.84772, -73.89668)",,,1946 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418833,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,15:45,QUEENS,11413,40.667973,-73.750824,"(40.667973, -73.750824)",225 STREET,PROSPECT COURT,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418955,Sedan,Sedan,,, +12/22/2021,0:20,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4488671,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,8:30,,,40.756718,-73.91422,"(40.756718, -73.91422)",46 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419230,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,10:40,BROOKLYN,11211,40.711166,-73.9489,"(40.711166, -73.9489)",GRAND STREET,LORIMER STREET,,1,0,0,0,1,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4418406,Carry All,Bike,,, +05/20/2021,17:00,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418750,Sedan,Bus,,, +05/20/2021,11:03,,,40.769188,-73.837296,"(40.769188, -73.837296)",WHITESTONE EXPRESSWAY,31 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4419108,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,15:00,STATEN ISLAND,10305,40.59552,-74.08378,"(40.59552, -74.08378)",LEDYARD PLACE,QUINTARD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418604,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,11:50,QUEENS,11004,40.744026,-73.717636,"(40.744026, -73.717636)",LITTLE NECK PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418276,Sedan,Sedan,,, +05/21/2021,2:30,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418999,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,18:50,MANHATTAN,10018,40.75873,-73.99612,"(40.75873, -73.99612)",,,550 10 AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419395,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,13:00,QUEENS,11358,40.753838,-73.805824,"(40.753838, -73.805824)",46 AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419114,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,18:00,BRONX,10460,40.83715,-73.887115,"(40.83715, -73.887115)",,,934 EAST 174 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419177,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,11:25,MANHATTAN,10065,40.76597,-73.96932,"(40.76597, -73.96932)",,,28 EAST 63 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4418509,E-Scooter,,,, +05/20/2021,14:05,QUEENS,11367,40.718426,-73.817505,"(40.718426, -73.817505)",,,79-09 MAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418622,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,9:49,BROOKLYN,11207,40.653088,-73.88655,"(40.653088, -73.88655)",,,1130 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419570,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,13:30,BROOKLYN,11224,40.57545,-73.99539,"(40.57545, -73.99539)",MERMAID AVENUE,WEST 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419373,Sedan,Sedan,,, +05/19/2021,11:26,BRONX,10474,40.818623,-73.88908,"(40.818623, -73.88908)",,,1200 SENECA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418385,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,10:31,QUEENS,11103,40.76673,-73.91712,"(40.76673, -73.91712)",,,28-18 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419238,Station Wagon/Sport Utility Vehicle,PK,,, +05/20/2021,14:45,,,40.726933,-73.99992,"(40.726933, -73.99992)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418749,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,15:00,QUEENS,11422,40.659595,-73.72765,"(40.659595, -73.72765)",HOOK CREEK BOULEVARD,257 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418324,Sedan,,,, +12/24/2021,4:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4489876,Sedan,,,, +05/19/2021,13:00,BROOKLYN,11231,40.673107,-73.99972,"(40.673107, -73.99972)",HAMILTON AVENUE,BUSH STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Oversized Vehicle,,,,4418388,Sedan,Tractor Truck Gasoline,,, +05/20/2021,20:37,QUEENS,11369,40.76018,-73.86008,"(40.76018, -73.86008)",,,110-24 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4419046,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,22:32,,,40.69168,-73.99965,"(40.69168, -73.99965)",ATLANTIC AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419689,Sedan,Sedan,,, +05/14/2021,18:44,,,40.852894,-73.93273,"(40.852894, -73.93273)",WADSWORTH AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4418764,Carry All,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,19:55,MANHATTAN,10039,40.829155,-73.93728,"(40.829155, -73.93728)",WEST 155 STREET,8 AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4419669,Sedan,Sedan,,, +05/20/2021,1:00,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418357,Sedan,Sedan,,, +05/19/2021,12:55,BROOKLYN,11205,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,PULASKI STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418546,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,10:30,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4418781,Bus,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,4:45,,,40.86987,-73.88283,"(40.86987, -73.88283)",MARION AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4418007,Sedan,Sedan,Sedan,, +05/19/2021,14:20,BRONX,10462,40.84503,-73.86708,"(40.84503, -73.86708)",,,671 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418583,Sedan,Sedan,Sedan,, +05/20/2021,18:00,BROOKLYN,11212,40.657276,-73.914345,"(40.657276, -73.914345)",,,466 EAST 98 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419352,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,5:55,,,40.73031,-73.810905,"(40.73031, -73.810905)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,12:10,MANHATTAN,10003,40.73652,-73.99073,"(40.73652, -73.99073)",EAST 16 STREET,UNION SQUARE WEST,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4418880,Bike,Sedan,,, +05/19/2021,21:45,BROOKLYN,11220,40.63965,-74.03033,"(40.63965, -74.03033)",COLONIAL ROAD,67 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418652,Sedan,Sedan,,, +05/19/2021,8:12,,,40.68377,-73.92625,"(40.68377, -73.92625)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418300,Station Wagon/Sport Utility Vehicle,Bus,,, +05/19/2021,10:30,,,40.838886,-73.921646,"(40.838886, -73.921646)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418490,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/19/2021,1:55,,,40.66573,-73.75376,"(40.66573, -73.75376)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418645,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,13:00,,,40.70918,-73.81916,"(40.70918, -73.81916)",QUEENS BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418621,Pick-up Truck,,,, +05/20/2021,12:37,BRONX,10468,40.868385,-73.89416,"(40.868385, -73.89416)",EAST 196 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418534,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,10:50,,,40.856625,-73.93936,"(40.856625, -73.93936)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,8:01,QUEENS,11434,40.67091,-73.771,"(40.67091, -73.771)",140 AVENUE,169 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418052,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,19:00,QUEENS,11355,40.75806,-73.81402,"(40.75806, -73.81402)",CHERRY AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419486,Ambulance,Sedan,,, +05/19/2021,16:55,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,REMSEN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418554,Sedan,Bike,,, +05/19/2021,11:45,QUEENS,11378,40.725388,-73.90884,"(40.725388, -73.90884)",59 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418274,Sedan,,,, +05/20/2021,17:30,,,,,,BARTOW CIRCLE,SHORE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418730,Pick-up Truck,Taxi,,, +05/19/2021,10:20,BROOKLYN,11211,40.71404,-73.92634,"(40.71404, -73.92634)",GARDNER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418358,Tractor Truck Diesel,Box Truck,,, +05/19/2021,16:47,MANHATTAN,10032,40.83907,-73.94353,"(40.83907, -73.94353)",,,115 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418865,Sedan,,,, +05/20/2021,18:00,,,40.846466,-73.87123,"(40.846466, -73.87123)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419536,Sedan,Sedan,,, +05/20/2021,6:50,BROOKLYN,11207,40.660988,-73.889206,"(40.660988, -73.889206)",HEGEMAN AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418792,Tractor Truck Diesel,Sedan,,, +05/12/2021,17:05,,,40.74181,-73.783005,"(40.74181, -73.783005)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,0:01,MANHATTAN,10029,40.788742,-73.94785,"(40.788742, -73.94785)",,,173 EAST 101 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418589,Sedan,,,, +12/22/2021,8:05,,,40.681633,-73.9318,"(40.681633, -73.9318)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488907,Tow Truck / Wrecker,Sedan,,, +05/21/2021,18:30,QUEENS,11427,40.72469,-73.7528,"(40.72469, -73.7528)",,,88-35 212 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419050,Sedan,,,, +05/21/2021,8:25,BROOKLYN,11214,40.598648,-74.004456,"(40.598648, -74.004456)",20 AVENUE,20 LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418899,Sedan,,,, +05/20/2021,13:40,,,40.899246,-73.84609,"(40.899246, -73.84609)",BAYCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,15:55,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419504,Sedan,Sedan,,, +05/19/2021,2:00,QUEENS,11356,,,,,,120-45 SUNRISE COURT,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418315,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,20:37,QUEENS,11415,40.703655,-73.822464,"(40.703655, -73.822464)",METROPOLITAN AVENUE,HILLSIDE AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4418483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,2:00,QUEENS,11434,40.666397,-73.785,"(40.666397, -73.785)",SOUTH CONDUIT AVENUE,153 LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4489081,Sedan,,,, +05/19/2021,13:17,,,40.802696,-73.949196,"(40.802696, -73.949196)",WEST 117 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Turning Improperly,,,,4419288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,8:37,MANHATTAN,10021,40.767532,-73.95535,"(40.767532, -73.95535)",,,419 EAST 72 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418732,Motorcycle,,,, +05/19/2021,15:00,,,40.663727,-73.95386,"(40.663727, -73.95386)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418508,Box Truck,Box Truck,,, +05/20/2021,13:15,,,40.61913,-73.99019,"(40.61913, -73.99019)",65 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418715,Station Wagon/Sport Utility Vehicle,,,, +04/30/2021,23:00,QUEENS,11416,40.685184,-73.854225,"(40.685184, -73.854225)",87 STREET,95 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4418887,Sedan,,,, +12/22/2021,15:30,QUEENS,11368,40.752556,-73.86515,"(40.752556, -73.86515)",,,37-41 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489351,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,19:50,MANHATTAN,10009,40.72267,-73.98297,"(40.72267, -73.98297)",EAST 3 STREET,AVENUE B,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4419150,Station Wagon/Sport Utility Vehicle,Bike,,, +05/20/2021,10:30,BROOKLYN,11224,40.578823,-73.98628,"(40.578823, -73.98628)",NEPTUNE AVENUE,WEST 19 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4419270,Van,Bike,,, +05/21/2021,0:11,MANHATTAN,10013,40.723118,-74.00624,"(40.723118, -74.00624)",VARICK STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419463,Sedan,Sedan,,, +05/21/2021,17:30,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419571,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2021,16:50,BROOKLYN,11238,40.677692,-73.95602,"(40.677692, -73.95602)",,,1029 DEAN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419431,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,18:09,MANHATTAN,10038,40.712357,-74.0009,"(40.712357, -74.0009)",,,1 POLICE PLAZA,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4419196,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:25,BROOKLYN,11230,40.62445,-73.968025,"(40.62445, -73.968025)",AVENUE J,EAST 8 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419311,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,17:45,BROOKLYN,11212,40.65473,-73.90692,"(40.65473, -73.90692)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4419771,Sedan,Sedan,,, +05/21/2021,10:15,QUEENS,11411,40.69326,-73.73098,"(40.69326, -73.73098)",,,116-51 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,7:50,BROOKLYN,11226,40.654045,-73.951866,"(40.654045, -73.951866)",,,223 LENOX ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4419555,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,9:00,,,40.701077,-73.94043,"(40.701077, -73.94043)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4418639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:24,QUEENS,11418,40.699154,-73.833206,"(40.699154, -73.833206)",,,116-10 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418575,Sedan,Bus,,, +05/20/2021,17:49,BROOKLYN,11203,40.652946,-73.92373,"(40.652946, -73.92373)",,,132 EAST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419366,Sedan,Sedan,,, +05/20/2021,23:30,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",WESTCHESTER AVENUE,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418694,Pick-up Truck,Sedan,,, +05/19/2021,12:40,QUEENS,11434,40.686646,-73.78471,"(40.686646, -73.78471)",116 AVENUE,BEDELL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418176,Sedan,Sedan,,, +05/19/2021,10:56,BRONX,10462,40.831333,-73.84774,"(40.831333, -73.84774)",,,1148 HAVEMEYER AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4418202,Sedan,,,, +05/21/2021,22:23,BROOKLYN,11217,40.68962,-73.97313,"(40.68962, -73.97313)",WASHINGTON PARK,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418951,Sedan,,,, +05/20/2021,1:16,BROOKLYN,11212,40.66081,-73.90996,"(40.66081, -73.90996)",,,179 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418422,Sedan,Sedan,,, +05/17/2021,8:00,,,40.798832,-73.95203,"(40.798832, -73.95203)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419303,Sedan,Beverage Truck,,, +05/13/2021,14:40,QUEENS,11379,40.712204,-73.88638,"(40.712204, -73.88638)",METROPOLITAN AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418914,Sedan,,,, +05/20/2021,8:45,QUEENS,11691,40.59955,-73.76129,"(40.59955, -73.76129)",BROOKHAVEN AVENUE,BEACH 25 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Reaction to Uninvolved Vehicle,,,,4418745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,12:46,,,,,,QUEENS BOULEVARD,,,2,0,0,0,0,0,2,0,Following Too Closely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418628,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,15:15,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4418293,Van Camper,Sedan,,, +05/20/2021,11:37,MANHATTAN,10031,40.824127,-73.954834,"(40.824127, -73.954834)",WEST 140 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418777,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,23:24,BROOKLYN,11223,40.595253,-73.97348,"(40.595253, -73.97348)",MC DONALD AVENUE,GRAVESEND NECK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418467,Sedan,Sedan,,, +05/20/2021,16:45,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418760,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,15:30,QUEENS,11354,40.76316,-73.8164,"(40.76316, -73.8164)",149 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419115,,,,, +05/21/2021,13:04,BRONX,10462,40.856606,-73.868355,"(40.856606, -73.868355)",,,640 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418995,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/20/2021,9:30,BROOKLYN,11208,40.67089,-73.88184,"(40.67089, -73.88184)",,,582 LINWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418782,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,14:32,,,,,,ROCKLAND AVENUE,MACE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418598,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,20:35,QUEENS,11413,40.665634,-73.758156,"(40.665634, -73.758156)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419258,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,8:45,,,40.69958,-73.9278,"(40.69958, -73.9278)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418147,Sedan,Sedan,,, +05/19/2021,12:30,BROOKLYN,11212,40.66974,-73.91043,"(40.66974, -73.91043)",,,1699 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418392,Dump,,,, +05/19/2021,19:35,QUEENS,11417,40.68424,-73.83808,"(40.68424, -73.83808)",104 STREET,103 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418427,Bike,Sedan,,, +05/21/2021,19:40,BRONX,10469,40.879246,-73.85148,"(40.879246, -73.85148)",,,1410 OAKLEY STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419293,Station Wagon/Sport Utility Vehicle,Bike,,, +05/20/2021,11:20,STATEN ISLAND,10310,40.62894,-74.116196,"(40.62894, -74.116196)",FOREST AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419170,Sedan,,,, +05/19/2021,11:55,QUEENS,11355,40.75866,-73.82909,"(40.75866, -73.82909)",,,136-18 41 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4418188,Sedan,,,, +05/19/2021,22:30,MANHATTAN,10002,40.718216,-73.99051,"(40.718216, -73.99051)",,,266 BROOME STREET,3,0,3,0,0,0,0,0,,,,,,4418327,Sedan,,,, +05/15/2021,21:44,,,40.808002,-73.96391,"(40.808002, -73.96391)",BROADWAY,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419475,Sedan,Bike,,, +05/20/2021,22:11,,,40.63926,-73.93777,"(40.63926, -73.93777)",ALBANY AVENUE,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4418820,Sedan,,,, +05/20/2021,6:35,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418525,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,15:55,,,40.694214,-73.95932,"(40.694214, -73.95932)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419349,Sedan,,,, +05/17/2021,3:00,QUEENS,11378,,,,BORDEN AVENUE,55 DRIVE,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4418919,Sedan,,,, +05/21/2021,8:25,,,40.685894,-73.86524,"(40.685894, -73.86524)",75 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418837,Bus,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,13:00,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4418560,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,6:50,BROOKLYN,11207,40.689365,-73.9058,"(40.689365, -73.9058)",COOPER STREET,WILSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418473,Taxi,,,, +05/19/2021,16:12,MANHATTAN,10002,40.71829,-73.987434,"(40.71829, -73.987434)",DELANCEY STREET,NORFOLK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418709,Sedan,,,, +05/19/2021,14:12,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:15,BROOKLYN,11231,40.685062,-74.00269,"(40.685062, -74.00269)",COLUMBIA STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418988,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,15:31,BROOKLYN,11216,40.681633,-73.95133,"(40.681633, -73.95133)",HALSEY STREET,ARLINGTON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4419399,Sedan,Sedan,,, +05/21/2021,13:21,,,40.64975,-73.936,"(40.64975, -73.936)",SNYDER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419355,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,20:00,,,40.678955,-73.86516,"(40.678955, -73.86516)",ELDERTS LANE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418788,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,20:54,BROOKLYN,11236,40.63345,-73.91645,"(40.63345, -73.91645)",,,6080 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418333,Pick-up Truck,Motorcycle,,, +05/20/2021,21:57,QUEENS,11422,40.670223,-73.72855,"(40.670223, -73.72855)",HOOK CREEK BOULEVARD,135 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418672,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,17:50,QUEENS,11692,40.594673,-73.800865,"(40.594673, -73.800865)",BEACH 72 STREET,THURSBY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4419059,Sedan,Sedan,Sedan,, +05/20/2021,18:15,BROOKLYN,11201,40.696198,-73.98869,"(40.696198, -73.98869)",ADAMS STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418936,Sedan,Sedan,,, +05/21/2021,12:10,,,40.795456,-73.96564,"(40.795456, -73.96564)",COLUMBUS AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418875,Sedan,Bike,,, +05/17/2021,15:59,BROOKLYN,11220,40.637547,-74.003845,"(40.637547, -74.003845)",9 AVENUE,54 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419319,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,13:20,MANHATTAN,10029,40.7952,-73.94623,"(40.7952, -73.94623)",,,1505 PARK AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419421,Sedan,Bike,,, +05/20/2021,13:55,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4418814,Sedan,Pick-up Truck,Sedan,, +04/30/2021,11:45,,,40.742405,-73.75348,"(40.742405, -73.75348)",SPRINGFIELD BOULEVARD,,,1,0,0,0,0,0,1,0,Passing Too Closely,Backing Unsafely,Unspecified,,,4418846,Bus,Sedan,4 dr sedan,, +05/21/2021,12:45,BROOKLYN,11236,40.65453,-73.90688,"(40.65453, -73.90688)",,,1022 ROCKAWAY AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419210,Sedan,,,, +05/21/2021,23:30,,,40.73491,-73.92057,"(40.73491, -73.92057)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419101,Motorcycle,Sedan,,, +05/21/2021,9:58,,,40.78654,-73.95044,"(40.78654, -73.95044)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418904,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,18:00,,,40.668976,-73.90668,"(40.668976, -73.90668)",BELMONT AVENUE,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4419142,Sedan,Sedan,,, +05/20/2021,20:21,,,40.82394,-73.94856,"(40.82394, -73.94856)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418809,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/19/2021,20:46,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Headlights Defective,Unspecified,,,,4418667,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,20:36,QUEENS,11418,40.701706,-73.83655,"(40.701706, -73.83655)",114 STREET,85 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4419614,Taxi,Sedan,,, +05/19/2021,4:00,BRONX,10475,40.872837,-73.82628,"(40.872837, -73.82628)",,,99 BELLAMY LOOP,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4419746,Sedan,Sedan,,, +12/23/2021,23:00,QUEENS,11434,40.678394,-73.78862,"(40.678394, -73.78862)",,,153-24 120 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489273,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,7:45,BRONX,10467,40.88065,-73.86494,"(40.88065, -73.86494)",EAST 215 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418520,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/27/2021,1:24,BROOKLYN,11201,40.698376,-73.983055,"(40.698376, -73.983055)",NASSAU STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418872,Sedan,Sedan,,, +05/19/2021,12:00,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4419192,Bike,,,, +05/06/2021,21:40,,,40.697166,-73.893364,"(40.697166, -73.893364)",COOPER AVENUE,SAINT FELIX AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418931,Sedan,,,, +05/16/2021,10:13,,,40.599854,-73.98878,"(40.599854, -73.98878)",24 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419125,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,21:47,MANHATTAN,10001,40.752686,-74.000534,"(40.752686, -74.000534)",10 AVENUE,WEST 31 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419392,Taxi,Sedan,,, +05/20/2021,17:31,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:20,BRONX,10455,40.80992,-73.90722,"(40.80992, -73.90722)",SOUTHERN BOULEVARD,EAST 145 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4419028,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,21:05,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419544,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/21/2021,0:00,QUEENS,11420,40.668552,-73.8205,"(40.668552, -73.8205)",149 AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419761,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,18:45,BROOKLYN,11206,40.70109,-73.94502,"(40.70109, -73.94502)",WHIPPLE STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4418416,Station Wagon/Sport Utility Vehicle,Bike,,, +05/14/2021,15:48,BROOKLYN,11207,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4418973,Sedan,Box Truck,,, +05/21/2021,17:45,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4419164,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,18:20,BROOKLYN,11223,40.593327,-73.964645,"(40.593327, -73.964645)",OCEAN PARKWAY,AVENUE W,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419629,Sedan,Sedan,,, +05/18/2021,16:50,STATEN ISLAND,10307,40.51703,-74.233795,"(40.51703, -74.233795)",,,250 PAGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418756,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,8:20,,,40.71443,-73.83315,"(40.71443, -73.83315)",78 AVENUE,KEW FOREST LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418074,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,11:39,BROOKLYN,11218,40.635334,-73.9723,"(40.635334, -73.9723)",,,525 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418463,Sedan,,,, +05/21/2021,14:00,BROOKLYN,11205,40.699173,-73.95543,"(40.699173, -73.95543)",,,493 FLUSHING AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4419733,Sedan,,,, +05/21/2021,1:05,BROOKLYN,11217,40.67995,-73.98133,"(40.67995, -73.98133)",BUTLER STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4418739,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:22,,,40.78911,-73.96656,"(40.78911, -73.96656)",WEST 92 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4418250,Sedan,Bus,,, +05/20/2021,16:24,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418702,Chassis Cab,Sedan,,, +05/19/2021,14:40,BRONX,10456,40.82534,-73.910194,"(40.82534, -73.910194)",,,962 WASHINGTON AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418432,Sedan,Bike,,, +05/19/2021,20:30,BROOKLYN,11236,40.643875,-73.89812,"(40.643875, -73.89812)",,,935 EAST 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418946,Sedan,,,, +05/19/2021,12:13,BRONX,10471,,,,,,237 W 254th St,0,0,0,0,0,0,0,0,Unspecified,,,,,4418398,Sedan,,,, +05/21/2021,23:10,,,40.741936,-73.97263,"(40.741936, -73.97263)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4419376,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,18:16,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4418966,Sedan,Sedan,,, +05/20/2021,1:45,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4419250,Sedan,,,, +05/15/2021,0:25,,,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4418773,Sedan,Sedan,,, +05/21/2021,10:30,BRONX,10454,40.80661,-73.921,"(40.80661, -73.921)",EAST 136 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418852,Sedan,,,, +05/20/2021,20:00,MANHATTAN,10039,40.82147,-73.93663,"(40.82147, -73.93663)",,,122 WEST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419671,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,18:36,BROOKLYN,11203,40.6526,-73.939186,"(40.6526, -73.939186)",,,865 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419361,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,0:00,,,,,,NORTH CHANNEL BRIDGE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418671,Sedan,Motorcycle,,, +05/21/2021,10:00,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4418824,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,4:30,BROOKLYN,11221,40.697075,-73.93185,"(40.697075, -73.93185)",BUSHWICK AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489414,Sedan,Sedan,,, +05/20/2021,22:20,BROOKLYN,11216,40.67765,-73.949776,"(40.67765, -73.949776)",PACIFIC STREET,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419412,Sedan,,,, +05/21/2021,8:15,QUEENS,11368,40.73721,-73.86393,"(40.73721, -73.86393)",,,97-05A 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418841,Sedan,,,, +05/19/2021,16:30,BRONX,10451,40.82292,-73.91206,"(40.82292, -73.91206)",,,462 EAST 160 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418370,Sedan,,,, +05/19/2021,11:10,BRONX,10469,0,0,"(0.0, 0.0)",,,3323 WICKHAM AVENUE,2,0,0,0,0,0,2,0,Backing Unsafely,Unsafe Speed,Unspecified,,,4418521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/20/2021,0:30,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",GRAND STREET,UNION AVENUE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Alcohol Involvement,,,,4418683,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/21/2021,17:55,QUEENS,11354,40.762306,-73.82745,"(40.762306, -73.82745)",,,37-05 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419522,Sedan,Sedan,,, +05/19/2021,7:20,,,40.702232,-73.98118,"(40.702232, -73.98118)",FRONT STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418304,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,12:00,QUEENS,11101,40.74049,-73.92967,"(40.74049, -73.92967)",36 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418907,Sedan,,,, +05/20/2021,17:10,BROOKLYN,11212,,,,NEW LOTS AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419204,Sedan,Sedan,,, +05/20/2021,8:00,,,40.724495,-73.72469,"(40.724495, -73.72469)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,Unspecified,,,4418468,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +05/21/2021,9:05,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4418890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,8:00,QUEENS,11414,40.664192,-73.841125,"(40.664192, -73.841125)",CROSS BAY BOULEVARD,156 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4419064,Sedan,Sedan,,, +05/21/2021,21:09,BROOKLYN,11238,40.683952,-73.96498,"(40.683952, -73.96498)",,,500 WASHINGTON AVENUE,2,0,0,0,0,0,2,0,View Obstructed/Limited,Aggressive Driving/Road Rage,,,,4419449,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,14:25,BRONX,10457,40.848606,-73.8898,"(40.848606, -73.8898)",EAST 180 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418829,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/21/2021,23:14,,,40.692722,-73.72673,"(40.692722, -73.72673)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419009,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,14:35,BROOKLYN,11236,40.64,-73.90194,"(40.64, -73.90194)",AVENUE J,EAST 93 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,14:30,BROOKLYN,11217,40.68122,-73.97542,"(40.68122, -73.97542)",,,212 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4419003,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,14:07,BROOKLYN,11234,40.615513,-73.91377,"(40.615513, -73.91377)",,,6201 AVENUE U,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4418842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/21/2021,8:03,,,40.63195,-74.14667,"(40.63195, -74.14667)",MORNINGSTAR ROAD,HOOKER PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4419757,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,7:45,,,40.696865,-73.83717,"(40.696865, -73.83717)",111 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461883,Bus,,,, +05/18/2021,20:00,MANHATTAN,10023,40.770527,-73.98012,"(40.770527, -73.98012)",CENTRAL PARK WEST,WEST 63 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418943,Sedan,,,, +05/19/2021,11:02,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419098,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,20:00,BROOKLYN,11208,40.68912,-73.8686,"(40.68912, -73.8686)",,,86 GRANT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419599,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,0:45,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4418900,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,3:40,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418497,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:00,BRONX,10458,40.864506,-73.8909,"(40.864506, -73.8909)",,,2644 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419138,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,15:30,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418332,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,11:36,MANHATTAN,10029,40.78717,-73.94999,"(40.78717, -73.94999)",EAST 98 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4418983,Station Wagon/Sport Utility Vehicle,Bus,,, +05/21/2021,23:42,BROOKLYN,11217,40.68777,-73.98701,"(40.68777, -73.98701)",ATLANTIC AVENUE,HOYT STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4419331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,16:49,MANHATTAN,10035,40.797062,-73.93463,"(40.797062, -73.93463)",,,2288 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418746,Bus,,,, +05/20/2021,9:45,MANHATTAN,10001,40.750317,-73.99112,"(40.750317, -73.99112)",WEST 33 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419688,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,21:53,BRONX,10458,40.867218,-73.885544,"(40.867218, -73.885544)",,,2833 DECATUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419658,Ambulance,Sedan,,, +05/20/2021,15:22,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",CONEY ISLAND AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4419131,Sedan,Sedan,,, +05/20/2021,12:31,MANHATTAN,10021,40.76687,-73.959785,"(40.76687, -73.959785)",2 AVENUE,EAST 69 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418868,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:00,STATEN ISLAND,10305,40.611237,-74.06049,"(40.611237, -74.06049)",,,20 CLIFF STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419185,Sedan,Sedan,,, +12/23/2021,13:51,,,40.612286,-74.01098,"(40.612286, -74.01098)",86 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4489590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/21/2021,7:40,BRONX,10467,40.872116,-73.88048,"(40.872116, -73.88048)",PERRY AVENUE,EAST MOSHOLU PARKWAY NORTH,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4418810,Station Wagon/Sport Utility Vehicle,Bus,,, +05/21/2021,17:00,BROOKLYN,11211,40.718403,-73.949036,"(40.718403, -73.949036)",,,75 RICHARDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419651,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,17:48,BRONX,10453,40.848606,-73.91397,"(40.848606, -73.91397)",WEST 176 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418437,Station Wagon/Sport Utility Vehicle,,,, +05/09/2021,3:25,BROOKLYN,11236,40.632473,-73.9049,"(40.632473, -73.9049)",AVENUE L,EAST 84 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4419469,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/21/2021,13:15,MANHATTAN,10013,40.71762,-74.00028,"(40.71762, -74.00028)",WALKER STREET,CENTRE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419158,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,7:55,BRONX,10461,40.850845,-73.851814,"(40.850845, -73.851814)",,,1819 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418108,Sedan,Bus,,, +05/19/2021,0:25,BROOKLYN,11201,40.694946,-73.9921,"(40.694946, -73.9921)",PIERREPONT STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4418382,Sedan,Sedan,,, +05/21/2021,15:50,BROOKLYN,11206,40.703934,-73.9348,"(40.703934, -73.9348)",WHITE STREET,VARET STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419710,Sedan,Tractor Truck Diesel,,, +05/13/2021,10:15,QUEENS,11426,40.740074,-73.72386,"(40.740074, -73.72386)",,,245-16 81 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418922,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,9:32,BROOKLYN,11232,40.654705,-74.00731,"(40.654705, -74.00731)",,,976 3 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4418220,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,10:20,QUEENS,11103,40.765663,-73.91879,"(40.765663, -73.91879)",,,34-24 30 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4419244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,10:45,,,40.805073,-73.92331,"(40.805073, -73.92331)",BRUCKNER BOULEVARD,WILLIS AVENUE BRIDGE APPROACH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418721,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,20:30,QUEENS,11369,,,,DITMARS BOULEVARD,102 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4418856,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,22:00,,,40.660225,-73.99459,"(40.660225, -73.99459)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418960,Sedan,,,, +05/19/2021,15:42,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418389,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,17:36,BROOKLYN,11232,40.64741,-74.018684,"(40.64741, -74.018684)",53 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418298,Garbage or Refuse,Sedan,,, +05/19/2021,4:30,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418381,Sedan,Sedan,,, +05/19/2021,15:00,BROOKLYN,11211,40.70915,-73.9591,"(40.70915, -73.9591)",,,225 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418688,Station Wagon/Sport Utility Vehicle,Unk,,, +05/19/2021,23:28,BROOKLYN,11236,40.646923,-73.92019,"(40.646923, -73.92019)",RALPH AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418538,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,15:14,,,,,,MC GUINNESS BOULEVARD,bayard street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418345,Sedan,Sedan,,, +05/19/2021,17:30,BROOKLYN,11206,40.698643,-73.94697,"(40.698643, -73.94697)",ELLERY STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418547,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/20/2021,8:38,BRONX,10469,40.878475,-73.851395,"(40.878475, -73.851395)",NEEDHAM AVENUE,FISH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,4:00,QUEENS,11369,40.76883,-73.869606,"(40.76883, -73.869606)",23 AVENUE,101 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4418009,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,19:40,,,40.575375,-74.18999,"(40.575375, -74.18999)",WEST SHORE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,,,,,4419532,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,10:00,BROOKLYN,11229,40.598198,-73.94249,"(40.598198, -73.94249)",EAST 29 STREET,AVENUE V,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418584,Sedan,Sedan,,, +05/20/2021,7:30,QUEENS,11370,40.75699,-73.89227,"(40.75699, -73.89227)",32 AVENUE,75 STREET,,1,0,1,0,0,0,0,0,,,,,,4418998,,,,, +05/20/2021,21:10,QUEENS,11420,40.68079,-73.806305,"(40.68079, -73.806305)",115 AVENUE,135 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418707,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,6:14,,,40.741936,-73.97263,"(40.741936, -73.97263)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419282,Sedan,Sedan,,, +05/19/2021,16:02,BRONX,10456,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418489,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,8:09,QUEENS,11367,40.729717,-73.8193,"(40.729717, -73.8193)",,,147-42 70 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4418861,Sedan,,,, +05/20/2021,17:30,,,40.676884,-73.91923,"(40.676884, -73.91923)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418651,Bike,Vanette,,, +05/21/2021,18:00,QUEENS,11385,40.708767,-73.91467,"(40.708767, -73.91467)",,,1856 DE KALB AVENUE,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,Unspecified,,,4419489,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/21/2021,11:30,,,40.5415,-74.16254,"(40.5415, -74.16254)",RICHMOND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4418894,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,17:42,BRONX,10454,40.805367,-73.9219,"(40.805367, -73.9219)",BROWN PLACE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419037,,,,, +05/07/2021,20:30,QUEENS,11105,40.785458,-73.914444,"(40.785458, -73.914444)",,,18-12 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419229,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,14:29,MANHATTAN,10035,40.796997,-73.9347,"(40.796997, -73.9347)",,,2285 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418751,Sedan,Box Truck,,, +05/13/2021,6:45,MANHATTAN,10023,40.77383,-73.9861,"(40.77383, -73.9861)",,,216 WEST 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418911,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,0:00,MANHATTAN,10013,40.716003,-73.99734,"(40.716003, -73.99734)",,,19 ELIZABETH STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4419079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,12:54,,,40.715813,-73.91212,"(40.715813, -73.91212)",FLUSHING AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489625,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,12:55,MANHATTAN,10025,40.7966,-73.97039,"(40.7966, -73.97039)",WEST 99 STREET,BROADWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4418883,Sedan,Box Truck,,, +05/20/2021,15:50,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419563,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,8:45,QUEENS,11102,40.7671,-73.9258,"(40.7671, -73.9258)",,,30-49 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419237,Sedan,Sedan,,, +05/19/2021,3:00,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419265,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,2:35,,,40.78809,-73.98271,"(40.78809, -73.98271)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4418939,Taxi,Sedan,,, +05/16/2021,13:20,QUEENS,11426,40.741386,-73.72489,"(40.741386, -73.72489)",UNION TURNPIKE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419053,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,13:52,BRONX,10465,40.81505,-73.82437,"(40.81505, -73.82437)",,,260 BUTTRICK AVENUE,1,0,1,0,0,0,0,0,,,,,,4419155,,,,, +03/29/2021,20:39,,,40.674,-73.960396,"(40.674, -73.960396)",STERLING PLACE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419419,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/21/2021,20:16,,,40.74751,-73.87679,"(40.74751, -73.87679)",DENMAN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419511,Sedan,,,, +05/17/2021,15:43,QUEENS,11377,40.73555,-73.894226,"(40.73555, -73.894226)",70 STREET,51 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419457,Sedan,,,, +05/20/2021,0:00,BROOKLYN,11238,40.686287,-73.9695,"(40.686287, -73.9695)",CLERMONT AVENUE,GREENE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4418629,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:50,STATEN ISLAND,10309,40.549297,-74.22287,"(40.549297, -74.22287)",,,2790 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418765,Sedan,,,, +05/21/2021,16:20,BROOKLYN,11208,40.668034,-73.85766,"(40.668034, -73.85766)",,,421 AMBER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,19:55,BROOKLYN,11233,40.680676,-73.91404,"(40.680676, -73.91404)",SUMPTER STREET,BOYLAND STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419200,Sedan,Sedan,,, +05/21/2021,7:00,BRONX,10457,40.848923,-73.899254,"(40.848923, -73.899254)",,,422 EAST 178 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418978,Sedan,,,, +05/18/2021,9:20,BROOKLYN,11208,40.6787,-73.867134,"(40.6787, -73.867134)",,,1145 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418778,Sedan,,,, +05/20/2021,14:10,MANHATTAN,10032,40.842915,-73.9366,"(40.842915, -73.9366)",AUDUBON AVENUE,WEST 172 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4418866,Bike,Sedan,,, +05/19/2021,17:00,BROOKLYN,11208,40.678524,-73.882645,"(40.678524, -73.882645)",,,3032 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418783,Sedan,Sedan,,, +05/19/2021,10:00,,,40.60461,-73.99826,"(40.60461, -73.99826)",20 AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419310,Bike,,,, +05/19/2021,16:53,BRONX,10457,40.841938,-73.89978,"(40.841938, -73.89978)",,,1700 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418429,Sedan,Tractor Truck Diesel,,, +05/19/2021,12:10,BRONX,10458,40.867832,-73.886,"(40.867832, -73.886)",,,2840 MARION AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4418182,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,5:14,STATEN ISLAND,10305,40.59567,-74.073685,"(40.59567, -74.073685)",MCCLEAN AVENUE,HICKORY AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4418193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:00,,,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418407,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,10:22,,,40.833206,-73.82797,"(40.833206, -73.82797)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418582,LIMO,Carry All,,, +05/19/2021,12:39,BROOKLYN,11214,40.596745,-73.985275,"(40.596745, -73.985275)",86 STREET,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418229,Sedan,,,, +05/20/2021,19:12,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",CHURCH AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419360,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,17:00,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418423,Tractor Truck Diesel,Tractor Truck Diesel,,, +05/17/2021,0:20,BROOKLYN,11233,40.682854,-73.9343,"(40.682854, -73.9343)",,,427 MACON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419195,Sedan,,,, +05/19/2021,14:24,,,40.57333,-74.117836,"(40.57333, -74.117836)",NEW DORP PLAZA,ROSE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418603,Pick-up Truck,Bike,,, +05/19/2021,17:44,,,,,,EAST LAKE DRIVE,LINCOLN ROAD DRIVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4418279,Bike,Bike,,, +05/21/2021,1:40,QUEENS,11429,40.71053,-73.75157,"(40.71053, -73.75157)",207 STREET,104 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418926,Sedan,Pick-up Truck,,, +05/19/2021,20:47,QUEENS,11103,40.767963,-73.91169,"(40.767963, -73.91169)",STEINWAY STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,8:45,,,,,,CROSS ISLAND PARKWAY,150 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419110,,,,, +05/20/2021,16:00,,,40.736275,-73.772865,"(40.736275, -73.772865)",73 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418626,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,9:55,BRONX,10462,40.831924,-73.85104,"(40.831924, -73.85104)",CASTLE HILL AVENUE,GLEASON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418140,Moped,,,, +05/20/2021,8:33,,,40.796795,-73.94718,"(40.796795, -73.94718)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418797,Sedan,,,, +05/19/2021,18:14,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",3 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418408,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,7:50,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:30,BRONX,10456,40.83259,-73.9047,"(40.83259, -73.9047)",,,530 EAST 169 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419176,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,2:50,QUEENS,11411,40.69779,-73.73165,"(40.69779, -73.73165)",,,115-21 227 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418954,Pick-up Truck,,,, +05/20/2021,8:05,,,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418937,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/18/2021,20:45,MANHATTAN,10027,40.808395,-73.95296,"(40.808395, -73.95296)",SAINT NICHOLAS AVENUE,WEST 122 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419298,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/19/2021,18:22,MANHATTAN,10023,40.768562,-73.981575,"(40.768562, -73.981575)",,,1 CENTRAL PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418915,Sedan,Pick-up Truck,,, +12/18/2021,13:00,BRONX,10466,40.89417,-73.856964,"(40.89417, -73.856964)",EAST 234 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489648,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,18:00,,,40.730198,-73.954254,"(40.730198, -73.954254)",MANHATTAN AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4419617,Pick-up Truck,Bike,,, +05/19/2021,23:50,QUEENS,11369,,,,23 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418442,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/20/2021,10:30,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418776,Sedan,Sedan,,, +05/14/2021,4:45,,,40.63836,-74.139534,"(40.63836, -74.139534)",,,60 NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419734,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,19:10,QUEENS,11354,40.762566,-73.81859,"(40.762566, -73.81859)",147 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419118,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,0:20,,,40.73738,-73.7235,"(40.73738, -73.7235)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418466,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,5:20,STATEN ISLAND,10312,40.530632,-74.19575,"(40.530632, -74.19575)",,,136 HAWLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418755,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,19:48,BRONX,10459,40.829422,-73.897575,"(40.829422, -73.897575)",EAST 169 STREET,PROSPECT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4419175,E-Bike,Motorbike,,, +05/19/2021,7:50,BROOKLYN,11206,40.70128,-73.93951,"(40.70128, -73.93951)",FLUSHING AVENUE,BEAVER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418148,Sedan,E-Bike,,, +05/19/2021,10:14,BROOKLYN,11225,40.65735,-73.9581,"(40.65735, -73.9581)",,,70 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418227,Sedan,,,, +05/17/2021,8:00,MANHATTAN,10011,40.74044,-74.00203,"(40.74044, -74.00203)",8 AVENUE,WEST 15 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4419344,Sedan,Box Truck,,, +05/19/2021,14:00,,,40.755795,-73.93581,"(40.755795, -73.93581)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419236,Sedan,E-Bike,,, +05/20/2021,16:40,BROOKLYN,11203,40.657303,-73.92998,"(40.657303, -73.92998)",,,200 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418614,Sedan,Sedan,,, +05/20/2021,10:30,MANHATTAN,10012,40.72129,-73.996544,"(40.72129, -73.996544)",,,195 MULBERRY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419193,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,10:59,,,40.749638,-73.99905,"(40.749638, -73.99905)",9 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419393,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:00,BRONX,10470,40.90304,-73.849556,"(40.90304, -73.849556)",EAST 241 STREET,FURMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419313,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,18:00,,,40.798626,-73.93953,"(40.798626, -73.93953)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489023,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +05/21/2021,12:50,QUEENS,11428,0,0,"(0.0, 0.0)",,,91-06 217 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4418932,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/20/2021,14:35,QUEENS,11432,40.7146,-73.77573,"(40.7146, -73.77573)",CHELSEA STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418620,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,17:44,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4419572,Station Wagon/Sport Utility Vehicle,Bike,,, +05/19/2021,16:17,MANHATTAN,10035,40.798935,-73.93637,"(40.798935, -73.93637)",EAST 119 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418273,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,13:45,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",WALLABOUT STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4418360,Bus,Tractor Truck Diesel,,, +05/19/2021,18:10,STATEN ISLAND,10306,,,,DONGAN HILLS AVENUE,Richmond road,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418605,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,14:58,BROOKLYN,11219,40.621258,-73.9984,"(40.621258, -73.9984)",NEW UTRECHT AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418487,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,17:00,BROOKLYN,11234,40.639774,-73.920166,"(40.639774, -73.920166)",,,5916 FOSTER AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4418898,Sedan,,,, +05/20/2021,8:08,BRONX,10451,40.816956,-73.92296,"(40.816956, -73.92296)",,,528 MORRIS AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4418573,Sedan,Bike,,, +05/19/2021,12:07,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418175,Box Truck,Sedan,,, +05/13/2021,13:45,BROOKLYN,11220,40.63896,-74.03061,"(40.63896, -74.03061)",COLONIAL ROAD,SENATOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418766,Sedan,,,, +05/21/2021,17:35,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419008,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,15:30,,,40.74791,-73.96806,"(40.74791, -73.96806)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,15:00,QUEENS,11412,40.69643,-73.75106,"(40.69643, -73.75106)",116 AVENUE,202 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418744,Sedan,Sedan,,, +05/19/2021,1:00,,,40.66573,-73.75376,"(40.66573, -73.75376)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Alcohol Involvement,Unspecified,,,4418101,Sedan,Sedan,Sedan,, +05/20/2021,21:45,BROOKLYN,11225,40.661568,-73.95073,"(40.661568, -73.95073)",LINCOLN ROAD,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4418798,,,,, +05/21/2021,6:17,,,40.78694,-73.77558,"(40.78694, -73.77558)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4419529,Pick-up Truck,Sedan,,, +05/20/2021,18:45,,,40.81777,-73.81446,"(40.81777, -73.81446)",LAWTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418733,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:40,BROOKLYN,11216,40.691147,-73.94689,"(40.691147, -73.94689)",,,203 KOSCIUSZKO STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418252,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,10:00,QUEENS,11385,40.712715,-73.92198,"(40.712715, -73.92198)",,,75 ONDERDONK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418925,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:00,,,40.634964,-74.0204,"(40.634964, -74.0204)",SENATOR STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4418653,Sedan,Sedan,Sedan,, +05/21/2021,7:45,,,40.691,-73.989334,"(40.691, -73.989334)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418967,Sedan,Sedan,,, +05/21/2021,20:25,BROOKLYN,11226,40.640583,-73.95573,"(40.640583, -73.95573)",FLATBUSH AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419143,Sedan,E-Bike,,, +05/21/2021,13:00,,,40.524,-74.186104,"(40.524, -74.186104)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,9:16,,,40.58401,-73.98587,"(40.58401, -73.98587)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4418403,Sedan,Sedan,Sedan,, +05/21/2021,18:27,BRONX,10460,40.8369,-73.89058,"(40.8369, -73.89058)",EAST 173 STREET,CROTONA PARK EAST,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419146,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,10:30,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",EAST 144 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4418851,Tow Truck / Wrecker,Sedan,,, +05/19/2021,9:54,BROOKLYN,11236,40.64108,-73.91817,"(40.64108, -73.91817)",FOSTER AVENUE,EAST 81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418235,Pick-up Truck,Bus,,, +05/18/2021,22:34,,,40.859943,-73.926796,"(40.859943, -73.926796)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418819,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,20:15,BROOKLYN,11220,40.64927,-74.009674,"(40.64927, -74.009674)",4 AVENUE,45 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4418679,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,4:59,BROOKLYN,11236,40.65179,-73.908264,"(40.65179, -73.908264)",,,758 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418537,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,12:18,QUEENS,11378,40.722263,-73.90207,"(40.722263, -73.90207)",,,63-12 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419482,Moped,Pick-up Truck,,, +05/19/2021,18:17,MANHATTAN,10026,40.80322,-73.95253,"(40.80322, -73.95253)",WEST 116 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419281,Sedan,Sedan,,, +05/19/2021,22:50,QUEENS,11101,40.75304,-73.934906,"(40.75304, -73.934906)",,,39-39 29 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4418451,Sedan,,,, +05/20/2021,17:50,BROOKLYN,11226,40.63939,-73.95699,"(40.63939, -73.95699)",,,530 EAST 22 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419135,Sedan,Sedan,,, +05/21/2021,17:30,,,40.603832,-74.06895,"(40.603832, -74.06895)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419543,Sedan,Bus,,, +05/20/2021,15:17,QUEENS,11374,40.728657,-73.863266,"(40.728657, -73.863266)",63 DRIVE,BOOTH STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418695,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,23:10,,,40.603188,-74.06724,"(40.603188, -74.06724)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4418893,Tractor Truck Diesel,Sedan,,, +05/19/2021,17:00,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418317,Sedan,,,, +05/19/2021,13:24,QUEENS,11691,40.608818,-73.75393,"(40.608818, -73.75393)",,,14-22 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418421,Sedan,Sedan,,, +05/21/2021,19:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4419071,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,6:30,QUEENS,11101,40.75172,-73.936134,"(40.75172, -73.936134)",29 STREET,40 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419228,Sedan,,,, +05/16/2021,13:37,BROOKLYN,11229,40.589096,-73.92097,"(40.589096, -73.92097)",GERRITSEN AVENUE,SEBA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419628,Sedan,Motorcycle,,, +05/21/2021,13:15,,,40.643875,-74.01887,"(40.643875, -74.01887)",3 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4418959,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/19/2021,15:15,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4418462,Pick-up Truck,Sedan,,, +05/10/2021,17:00,QUEENS,11374,40.73426,-73.862595,"(40.73426, -73.862595)",HORACE HARDING EXPRESSWAY,97 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419444,Bus,Sedan,,, +05/20/2021,18:00,BROOKLYN,11235,40.59095,-73.94687,"(40.59095, -73.94687)",AVENUE Y,EAST 23 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4418759,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/19/2021,15:30,BRONX,10457,40.838577,-73.89947,"(40.838577, -73.89947)",,,1591 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418435,Sedan,,,, +05/14/2021,14:46,BROOKLYN,11230,40.627472,-73.97225,"(40.627472, -73.97225)",,,505 ELMWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419320,Sedan,,,, +05/20/2021,0:56,BRONX,10454,40.80321,-73.91892,"(40.80321, -73.91892)",BRUCKNER BOULEVARD,SAINT ANNS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418354,Sedan,,,, +05/21/2021,20:20,QUEENS,11356,40.781647,-73.8367,"(40.781647, -73.8367)",20 AVENUE,132 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,9:15,,,40.663727,-73.95386,"(40.663727, -73.95386)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418507,Sedan,Sedan,,, +05/19/2021,17:00,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418596,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,11:30,,,40.5861,-73.97128,"(40.5861, -73.97128)",WEST 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419251,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,7:35,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4419742,Sedan,,,, +05/20/2021,12:20,BRONX,10456,40.83501,-73.90353,"(40.83501, -73.90353)",EAST 170 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4418772,Moped,,,, +05/19/2021,14:35,QUEENS,11361,40.757755,-73.77912,"(40.757755, -73.77912)",,,204-08 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418309,Pick-up Truck,Sedan,,, +05/20/2021,20:00,STATEN ISLAND,10304,40.611347,-74.08856,"(40.611347, -74.08856)",,,629 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419183,Sedan,,,, +05/20/2021,18:17,,,40.734188,-73.874,"(40.734188, -73.874)",57 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,7:05,MANHATTAN,10037,40.8178,-73.93596,"(40.8178, -73.93596)",CHISUM PLACE,WEST 142 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419672,Bus,Sedan,,, +05/21/2021,19:00,,,40.82815,-73.93491,"(40.82815, -73.93491)",WEST 155 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4419686,Sedan,Taxi,,, +05/20/2021,11:50,MANHATTAN,10016,,,,35 street,1st avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418530,PK,Sedan,,, +05/20/2021,13:20,BROOKLYN,11201,40.68755,-73.98847,"(40.68755, -73.98847)",,,305 PACIFIC STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418710,Bus,Sedan,,, +05/20/2021,23:34,,,40.844795,-73.92445,"(40.844795, -73.92445)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4418804,Sedan,Box Truck,,, +05/19/2021,13:45,,,40.689144,-73.99071,"(40.689144, -73.99071)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418303,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/20/2021,12:15,QUEENS,11385,40.70703,-73.909325,"(40.70703, -73.909325)",WOODWARD AVENUE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418920,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,1:55,BROOKLYN,11204,40.61578,-73.99995,"(40.61578, -73.99995)",NEW UTRECHT AVENUE,BAY RIDGE PARKWAY,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4418062,Sedan,Sedan,,, +05/19/2021,21:00,QUEENS,11364,40.75679,-73.74959,"(40.75679, -73.74959)",56 AVENUE,EAST HAMPTON BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4418548,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,10:35,BRONX,10457,40.838707,-73.90989,"(40.838707, -73.90989)",EAST 171 STREET,COLLEGE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4419184,Sedan,Sedan,,, +05/20/2021,20:41,BROOKLYN,11201,40.686707,-73.98841,"(40.686707, -73.98841)",,,126 DEAN STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418660,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,11:05,BROOKLYN,11209,40.620384,-74.029335,"(40.620384, -74.029335)",,,8901 4 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4418862,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,13:20,,,40.693413,-73.940125,"(40.693413, -73.940125)",PULASKI STREET,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4419402,Taxi,,,, +05/19/2021,11:20,,,40.74629,-73.766945,"(40.74629, -73.766945)",HORACE HARDING EXPRESSWAY,210 STREET,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4418208,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,17:45,BRONX,10454,40.80719,-73.92431,"(40.80719, -73.92431)",WILLIS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419027,TOW TRUCK,Sedan,,, +05/19/2021,10:56,BROOKLYN,11207,40.658257,-73.88072,"(40.658257, -73.88072)",,,996 BARBEY STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418787,Sedan,,,, +05/20/2021,1:32,MANHATTAN,10029,40.798622,-73.94163,"(40.798622, -73.94163)",LEXINGTON AVENUE,EAST 116 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418334,Taxi,Sedan,,, +05/15/2021,17:34,BROOKLYN,11237,40.690834,-73.90435,"(40.690834, -73.90435)",KNICKERBOCKER AVENUE,COOPER STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418974,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,14:30,QUEENS,11426,40.739895,-73.71579,"(40.739895, -73.71579)",LITTLE NECK PARKWAY,82 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418641,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,18:52,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418591,Taxi,,,, +05/19/2021,12:50,BROOKLYN,11213,40.665344,-73.933815,"(40.665344, -73.933815)",,,712 CROWN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418493,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,16:45,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,19:41,BROOKLYN,11226,40.65264,-73.949776,"(40.65264, -73.949776)",NOSTRAND AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4419367,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/22/2021,13:30,MANHATTAN,10011,40.73927,-73.99545,"(40.73927, -73.99545)",AVENUE OF THE AMERICAS,WEST 17 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4419422,Sedan,,,, +05/19/2021,0:00,BRONX,10458,40.858433,-73.885124,"(40.858433, -73.885124)",EAST FORDHAM ROAD,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418830,Sedan,Sedan,,, +05/21/2021,9:05,MANHATTAN,10010,40.739235,-73.98414,"(40.739235, -73.98414)",,,156 EAST 23 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4419289,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,16:05,,,,,,FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418738,Bus,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,10:55,QUEENS,11361,40.758865,-73.77968,"(40.758865, -73.77968)",43 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,18:50,BRONX,10462,40.849957,-73.86468,"(40.849957, -73.86468)",,,1991 BRONXDALE AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4418996,Sedan,Moped,,, +05/21/2021,9:55,,,40.65501,-73.90506,"(40.65501, -73.90506)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419211,AMBULANCE,,,, +05/19/2021,21:51,,,40.788692,-73.93787,"(40.788692, -73.93787)",EAST 106 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4418690,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,15:15,,,40.641003,-73.94755,"(40.641003, -73.94755)",AVENUE D,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419362,Bus,E-Bike,,, +05/20/2021,15:20,,,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4418716,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/21/2021,14:16,BROOKLYN,11238,40.686172,-73.970474,"(40.686172, -73.970474)",GREENE AVENUE,ADELPHI STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418905,Station Wagon/Sport Utility Vehicle,Bike,,, +05/15/2021,23:00,QUEENS,11419,40.693127,-73.83134,"(40.693127, -73.83134)",ATLANTIC AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418888,Sedan,,,, +05/19/2021,12:15,,,40.613552,-73.98176,"(40.613552, -73.98176)",WEST 7 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419294,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,6:30,BROOKLYN,11201,40.69051,-73.97872,"(40.69051, -73.97872)",,,161 ASHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418339,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,18:16,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418965,Sedan,Sedan,,, +05/20/2021,14:40,,,,,,Edkoch queensboro bridge,21 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418666,Sedan,,,, +05/21/2021,16:49,,,40.644226,-73.899796,"(40.644226, -73.899796)",,,FLATLANDS AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4418947,Sedan,Sedan,,, +05/19/2021,18:41,MANHATTAN,10065,40.763893,-73.960526,"(40.763893, -73.960526)",,,344 EAST 65 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4418397,Van,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,19:18,BROOKLYN,11214,40.59143,-73.99037,"(40.59143, -73.99037)",26 AVENUE,HARWAY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419271,Station Wagon/Sport Utility Vehicle,Bus,,, +05/19/2021,15:50,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418499,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,9:20,BRONX,10468,40.86231,-73.909874,"(40.86231, -73.909874)",WEST FORDHAM ROAD,LANDING ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Oversized Vehicle,Unspecified,,,4419165,Station Wagon/Sport Utility Vehicle,PK,Tractor Truck Diesel,, +05/21/2021,20:38,QUEENS,11691,40.597557,-73.76511,"(40.597557, -73.76511)",,,518 BEACH 32 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418982,Sedan,,,, +05/19/2021,23:00,,,40.694195,-73.81597,"(40.694195, -73.81597)",132 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418326,Sedan,,,, +05/21/2021,9:50,BROOKLYN,11203,40.64433,-73.94309,"(40.64433, -73.94309)",,,1190 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4419351,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,19:35,BRONX,10468,,,,UNIVERSITY HEIGHTS BRIDGE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419130,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,19:59,BROOKLYN,11201,40.687363,-73.99004,"(40.687363, -73.99004)",SMITH STREET,DEAN STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4418873,Sedan,Sedan,Sedan,, +05/19/2021,15:37,BRONX,10471,40.9102,-73.896614,"(40.9102, -73.896614)",BROADWAY,WEST 262 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4418282,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,10:05,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418542,Sedan,,,, +05/20/2021,12:45,BRONX,10472,40.8305,-73.861626,"(40.8305, -73.861626)",WHITE PLAINS ROAD,GLEASON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2021,2:15,BROOKLYN,11213,40.670376,-73.939316,"(40.670376, -73.939316)",,,299 ALBANY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4419434,Sedan,Sedan,Sedan,Sedan,Sedan +05/14/2021,18:30,BROOKLYN,11217,40.683125,-73.98744,"(40.683125, -73.98744)",BALTIC STREET,BOND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418989,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,9:06,,,40.8188,-73.95603,"(40.8188, -73.95603)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,Unspecified,,,4419474,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +05/15/2021,6:32,QUEENS,11105,40.783573,-73.91829,"(40.783573, -73.91829)",SHORE BOULEVARD,21 ROAD,,1,0,1,0,0,0,0,0,Fatigued/Drowsy,,,,,4419233,Sedan,,,, +05/19/2021,11:35,,,40.592686,-74.19292,"(40.592686, -74.19292)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4419538,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,23:30,QUEENS,11422,40.659714,-73.739815,"(40.659714, -73.739815)",243 STREET,145 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419062,Sedan,Sedan,,, +05/19/2021,15:00,QUEENS,11368,40.748737,-73.85438,"(40.748737, -73.85438)",111 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418415,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/19/2021,17:10,,,40.582092,-74.16253,"(40.582092, -74.16253)",,,77 MARSH AVENUE,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4418477,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,0:39,BRONX,10452,40.84128,-73.91366,"(40.84128, -73.91366)",WYTHE PLACE,EAST 172 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4418349,Motorcycle,,,, +05/20/2021,17:45,,,40.899895,-73.90668,"(40.899895, -73.90668)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4418673,Sedan,Sedan,,, +05/21/2021,7:20,BRONX,10459,40.825306,-73.89067,"(40.825306, -73.89067)",HOE AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418815,Sedan,Sedan,,, +05/21/2021,15:00,,,40.757183,-73.83396,"(40.757183, -73.83396)",40 ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419521,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,14:30,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419470,Sedan,Sedan,,, +05/21/2021,3:40,QUEENS,11356,40.786255,-73.83587,"(40.786255, -73.83587)",,,132-28 14 AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4419105,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,12:40,,,,,,,,61 CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418874,E-Scooter,,,, +05/20/2021,14:30,,,40.72706,-73.95695,"(40.72706, -73.95695)",CALYER STREET,FRANKLIN STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4419647,Sedan,Motorscooter,,, +05/19/2021,17:40,,,40.764053,-73.99225,"(40.764053, -73.99225)",WEST 49 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418383,Box Truck,Van,,, +05/15/2021,10:00,BRONX,10452,,,,,,240 WEST 167 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418752,Sedan,,,, +05/21/2021,0:00,BROOKLYN,11207,40.659702,-73.8786,"(40.659702, -73.8786)",WORTMAN AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419573,Sedan,Sedan,,, +05/14/2021,21:00,QUEENS,11101,40.757492,-73.93911,"(40.757492, -73.93911)",38 AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4419232,Ambulance,,,, +05/16/2021,16:08,BROOKLYN,11218,40.642685,-73.99122,"(40.642685, -73.99122)",40 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419315,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,13:30,BROOKLYN,11217,40.681156,-73.97615,"(40.681156, -73.97615)",,,447 BERGEN STREET,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419002,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,17:50,QUEENS,11358,40.769337,-73.802765,"(40.769337, -73.802765)",162 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,1:36,STATEN ISLAND,10308,40.562576,-74.157196,"(40.562576, -74.157196)",,,496 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4418602,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,13:20,,,40.58196,-73.959946,"(40.58196, -73.959946)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4419375,Sedan,Sedan,,, +05/14/2021,19:00,BRONX,10466,40.8913,-73.8507,"(40.8913, -73.8507)",EAST 233 STREET,DIGNEY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419245,Sedan,Sedan,,, +05/18/2021,19:16,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,WEST 204 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418808,Sedan,Moped,,, +05/14/2021,1:25,MANHATTAN,10009,40.73136,-73.98257,"(40.73136, -73.98257)",EAST 14 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4419410,,,,, +05/21/2021,14:45,BROOKLYN,11206,40.706863,-73.94021,"(40.706863, -73.94021)",,,222 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4419754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,17:10,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418514,Sedan,Box Truck,,, +05/21/2021,18:30,,,40.753407,-73.79243,"(40.753407, -73.79243)",46 AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4418963,Sedan,Sedan,,, +05/10/2021,14:19,BRONX,10451,40.82406,-73.92815,"(40.82406, -73.92815)",EAST 153 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418747,Sedan,Motorbike,,, +05/10/2021,18:40,QUEENS,11103,40.767532,-73.912025,"(40.767532, -73.912025)",,,25-71 STEINWAY STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419664,Sedan,,,, +05/20/2021,19:00,QUEENS,11040,40.750767,-73.708954,"(40.750767, -73.708954)",,,76-22 266 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4418644,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/19/2021,19:20,BRONX,10461,40.843376,-73.8369,"(40.843376, -73.8369)",WESTCHESTER AVENUE,MIDDLETOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,9:11,MANHATTAN,10023,40.77361,-73.98356,"(40.77361, -73.98356)",,,151 WEST 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418916,Stake or Rack,Sedan,,, +05/21/2021,14:40,MANHATTAN,10016,40.746475,-73.9839,"(40.746475, -73.9839)",MADISON AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419699,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/20/2021,1:30,,,40.671772,-73.93641,"(40.671772, -73.93641)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418632,Sedan,Sedan,Sedan,, +05/20/2021,12:20,,,40.6207,-74.14601,"(40.6207, -74.14601)",,,131 VEDDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418522,Sedan,Pick-up Truck,,, +05/19/2021,0:40,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4418013,Sedan,Sedan,Sedan,, +05/19/2021,12:00,,,40.786438,-73.942406,"(40.786438, -73.942406)",1 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418586,Sedan,,,, +05/17/2021,9:53,BRONX,10467,40.8797,-73.864525,"(40.8797, -73.864525)",,,707 EAST 214 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419354,Bus,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,11:10,BROOKLYN,11221,40.689922,-73.92281,"(40.689922, -73.92281)",LINDEN STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418858,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/20/2021,1:37,BROOKLYN,11207,40.657753,-73.89612,"(40.657753, -73.89612)",LINDEN BOULEVARD,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418791,Sedan,Sedan,,, +05/20/2021,17:51,BROOKLYN,11207,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,LIVONIA AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4418784,Sedan,Sedan,,, +05/19/2021,11:50,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418544,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,19:46,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418307,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,18:06,,,40.806477,-73.908455,"(40.806477, -73.908455)",BRUCKNER BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419033,Sedan,Sedan,,, +05/21/2021,18:32,MANHATTAN,10075,40.77618,-73.96178,"(40.77618, -73.96178)",,,41 EAST 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419493,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,18:10,BRONX,10460,40.83421,-73.8844,"(40.83421, -73.8844)",BOONE AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418430,Sedan,,,, +05/19/2021,8:23,,,,,,NAVY STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418194,Sedan,Sedan,,, +05/18/2021,14:15,BRONX,10461,40.849777,-73.84496,"(40.849777, -73.84496)",,,1820 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419041,Sedan,Sedan,,, +05/20/2021,14:00,BRONX,10467,40.86795,-73.8705,"(40.86795, -73.8705)",ARNOW AVENUE,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418826,Sedan,,,, +05/20/2021,12:58,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4419159,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/10/2021,14:18,BROOKLYN,11236,40.64563,-73.88891,"(40.64563, -73.88891)",EAST 108 STREET,AVENUE K,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4418843,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,18:40,BROOKLYN,11236,40.634552,-73.91477,"(40.634552, -73.91477)",FLATLANDS AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419080,Sedan,Sedan,,, +05/19/2021,12:55,BROOKLYN,11208,40.68857,-73.8757,"(40.68857, -73.8757)",JAMAICA AVENUE,CYPRESS HILL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418779,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:15,QUEENS,11367,40.72592,-73.8191,"(40.72592, -73.8191)",72 DRIVE,147 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418942,Bus,Sedan,,, +05/20/2021,1:27,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4418424,Taxi,,,, +05/21/2021,9:15,,,40.660297,-73.947685,"(40.660297, -73.947685)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418884,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,23:30,,,40.608253,-74.08879,"(40.608253, -74.08879)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419539,Sedan,Box Truck,,, +05/19/2021,20:01,,,40.588036,-73.96041,"(40.588036, -73.96041)",CONEY ISLAND AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,Unspecified,,,4419266,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/21/2021,12:46,QUEENS,11355,40.755524,-73.833405,"(40.755524, -73.833405)",COLLEGE POINT BOULEVARD,41 ROAD,,1,0,0,0,0,0,1,0,Passing Too Closely,Driver Inattention/Distraction,,,,4419099,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,13:55,QUEENS,11434,40.664467,-73.76831,"(40.664467, -73.76831)",FARMERS BOULEVARD,145 DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419055,Pick-up Truck,Sedan,,, +05/20/2021,17:56,QUEENS,11372,40.747036,-73.88958,"(40.747036, -73.88958)",76 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418901,Sedan,E-Bike,,, +05/21/2021,9:20,,,40.73113,-73.87361,"(40.73113, -73.87361)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419514,Pick-up Truck,Pick-up Truck,,, +05/19/2021,18:37,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4418724,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/20/2021,13:46,MANHATTAN,10016,40.74775,-73.98086,"(40.74775, -73.98086)",PARK AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418568,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/21/2021,9:50,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4419026,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/20/2021,8:12,BRONX,10456,40.82839,-73.916916,"(40.82839, -73.916916)",EAST 164 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,22:40,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4418840,Box Truck,,,, +05/19/2021,16:08,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418353,Box Truck,,,, +05/17/2021,17:20,,,40.80072,-73.950645,"(40.80072, -73.950645)",WEST 114 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419290,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/18/2021,21:00,BROOKLYN,11221,40.68877,-73.92832,"(40.68877, -73.92832)",,,898 GATES AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4419199,Sedan,Sedan,Sedan,, +05/17/2021,16:09,BROOKLYN,11207,40.68223,-73.90928,"(40.68223, -73.90928)",BROADWAY,PILLING STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4418975,E-Bike,E-Bike,,, +05/21/2021,0:59,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418869,Sedan,Sedan,Sedan,, +05/18/2021,16:25,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4419533,Bus,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,23:15,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418687,Taxi,,,, +05/19/2021,17:34,BROOKLYN,11206,40.69976,-73.956665,"(40.69976, -73.956665)",,,160 WALLABOUT STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4418369,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,16:34,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419763,Sedan,,,, +05/19/2021,12:47,BROOKLYN,11222,40.726814,-73.95355,"(40.726814, -73.95355)",LORIMER STREET,MESEROLE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418701,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/17/2021,17:40,BROOKLYN,11233,40.675274,-73.90621,"(40.675274, -73.90621)",SACKMAN STREET,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419207,Sedan,,,, +05/21/2021,16:20,STATEN ISLAND,10306,40.572754,-74.11404,"(40.572754, -74.11404)",NEW DORP LANE,10 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418906,Sedan,,,, +05/21/2021,21:16,,,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419589,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,10:30,MANHATTAN,10027,40.81106,-73.95119,"(40.81106, -73.95119)",,,315 WEST 126 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,0:45,BROOKLYN,11219,40.641247,-73.99337,"(40.641247, -73.99337)",FORT HAMILTON PARKWAY,43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419330,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,15:00,BROOKLYN,11204,40.615356,-73.976234,"(40.615356, -73.976234)",60 STREET,23 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418469,Bike,,,, +05/19/2021,15:08,BROOKLYN,11226,40.64033,-73.96428,"(40.64033, -73.96428)",,,400 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418404,Sedan,,,, +05/20/2021,19:33,QUEENS,11101,40.75379,-73.91548,"(40.75379, -73.91548)",47 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4419240,Sedan,Motorcycle,,, +05/19/2021,10:27,BROOKLYN,11223,40.604954,-73.96543,"(40.604954, -73.96543)",AVENUE R,EAST 7 STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4418234,Sedan,,,, +05/20/2021,23:08,,,40.639866,-73.87788,"(40.639866, -73.87788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4418878,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/20/2021,20:00,BROOKLYN,11233,40.671608,-73.91695,"(40.671608, -73.91695)",PARK PLACE,SARATOGA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419145,Sedan,E-Bike,,, +05/19/2021,17:20,MANHATTAN,10024,40.788506,-73.98107,"(40.788506, -73.98107)",WEST 84 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4418910,Motorcycle,Moped,,, +05/17/2021,17:10,BRONX,10469,40.875458,-73.85485,"(40.875458, -73.85485)",LACONIA AVENUE,EAST 212 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419711,Sedan,,,, +05/21/2021,15:39,QUEENS,11429,40.7061,-73.74711,"(40.7061, -73.74711)",,,111-09 209 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418933,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,8:00,QUEENS,11377,40.737244,-73.92083,"(40.737244, -73.92083)",,,50-05 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,9:00,,,40.786785,-73.80971,"(40.786785, -73.80971)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4419112,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,9:49,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4418278,Sedan,,,, +05/21/2021,18:30,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4419007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,10:27,QUEENS,11367,40.72924,-73.8152,"(40.72924, -73.8152)",,,71-16 KISSENA BOULEVARD,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4418625,Sedan,Sedan,,, +05/19/2021,6:15,,,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4418141,Sedan,Refrigerated Van,,, +12/22/2021,11:25,QUEENS,11358,40.765358,-73.80237,"(40.765358, -73.80237)",35 AVENUE,163 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,9:59,BROOKLYN,11230,40.61891,-73.96116,"(40.61891, -73.96116)",LOCUST AVENUE,EAST 14 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419136,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,15:45,,,40.598503,-74.091934,"(40.598503, -74.091934)",RICHMOND ROAD,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4418606,Sedan,,,, +05/20/2021,4:48,BROOKLYN,11230,40.62416,-73.956116,"(40.62416, -73.956116)",,,1562 OCEAN AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4418409,Sedan,Sedan,,, +05/21/2021,12:35,BROOKLYN,11210,40.624382,-73.94643,"(40.624382, -73.94643)",NOSTRAND AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419139,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,22:00,,,40.686863,-73.757965,"(40.686863, -73.757965)",120 ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419415,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,13:40,BROOKLYN,11235,40.59392,-73.93965,"(40.59392, -73.93965)",AVENUE X,HARING STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418767,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,18:30,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419604,Sedan,,,, +05/19/2021,7:21,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418330,Sedan,Tractor Truck Diesel,,, +05/21/2021,7:57,BRONX,10468,40.865997,-73.89981,"(40.865997, -73.89981)",WEST 192 STREET,DAVIDSON AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4418811,Sedan,E-Scooter,,, +05/20/2021,11:45,BROOKLYN,11232,40.657818,-74.004196,"(40.657818, -74.004196)",32 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4418670,Pick-up Truck,Sedan,,, +05/21/2021,9:30,STATEN ISLAND,10310,40.627922,-74.110855,"(40.627922, -74.110855)",,,5 JONES PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419187,,,,, +05/20/2021,20:35,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,AVENUE U,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,,,,4418762,E-Bike,Sedan,,, +05/19/2021,23:20,BROOKLYN,11212,40.658394,-73.91557,"(40.658394, -73.91557)",EAST 98 STREET,NEWPORT STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4418579,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/20/2021,1:00,BROOKLYN,11233,40.677174,-73.924774,"(40.677174, -73.924774)",BUFFALO AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418650,Sedan,,,, +05/21/2021,19:05,MANHATTAN,10001,40.753525,-73.994545,"(40.753525, -73.994545)",,,357 WEST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419683,Sedan,,,, +05/19/2021,12:00,BROOKLYN,11203,40.65101,-73.94553,"(40.65101, -73.94553)",,,3406 CHURCH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418236,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,11:00,,,,,,MAIN STREET,141 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,7:36,BROOKLYN,11235,40.587303,-73.96036,"(40.587303, -73.96036)",CONEY ISLAND AVENUE,AVENUE Z,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418479,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,15:00,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419077,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,21:20,BRONX,10468,40.861347,-73.897736,"(40.861347, -73.897736)",EAST 188 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418443,Motorcycle,Sedan,,, +05/18/2021,8:00,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4419261,Sedan,Station Wagon/Sport Utility Vehicle,TRAILER,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/19/2021,16:48,BRONX,10460,40.844337,-73.881874,"(40.844337, -73.881874)",,,2095 DALY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4418453,Sedan,Sedan,,, +05/20/2021,8:09,,,40.8854,-73.89723,"(40.8854, -73.89723)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418674,Sedan,Sedan,,, +05/20/2021,12:58,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4418794,Sedan,Sedan,,, +05/19/2021,10:07,QUEENS,11102,40.771347,-73.92285,"(40.771347, -73.92285)",CRESCENT STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418135,Sedan,Sedan,,, +05/18/2021,13:10,MANHATTAN,10024,40.783146,-73.97833,"(40.783146, -73.97833)",AMSTERDAM AVENUE,WEST 79 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4418938,Sedan,Sedan,,, +05/20/2021,18:50,,,40.80405,-73.91737,"(40.80405, -73.91737)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418720,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,15:18,,,40.818314,-73.836,"(40.818314, -73.836)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419154,Box Truck,Sedan,,, +05/20/2021,19:00,,,40.69328,-73.9043,"(40.69328, -73.9043)",SCHAEFER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418855,Sedan,,,, +05/19/2021,14:26,MANHATTAN,10027,40.80682,-73.95114,"(40.80682, -73.95114)",,,229 WEST 121 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4419336,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/20/2021,17:30,QUEENS,11419,40.688858,-73.82832,"(40.688858, -73.82832)",,,101-57 116 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4418816,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/19/2021,16:30,BRONX,10474,40.814842,-73.88752,"(40.814842, -73.88752)",,,708 COSTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4418375,Sedan,,,, +05/21/2021,0:15,QUEENS,11429,40.712055,-73.75319,"(40.712055, -73.75319)",FRANCIS LEWIS BOULEVARD,100 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4418682,Sedan,Sedan,,, +05/20/2021,15:00,BRONX,10462,40.845985,-73.866394,"(40.845985, -73.866394)",,,1826 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Glare,Unspecified,Unspecified,,,4418823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +05/21/2021,17:30,QUEENS,11422,40.657406,-73.74507,"(40.657406, -73.74507)",BROOKVILLE BOULEVARD,147 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418929,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,12:00,BROOKLYN,11214,40.59055,-73.98891,"(40.59055, -73.98891)",HARWAY AVENUE,BAY 44 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4419550,Van,,,, +05/20/2021,9:45,,,40.73201,-73.98203,"(40.73201, -73.98203)",1 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4419286,Sedan,Bike,,, +05/20/2021,19:50,BRONX,10453,40.858994,-73.90573,"(40.858994, -73.90573)",WEST 183 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418706,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,20:00,MANHATTAN,10017,40.75112,-73.97127,"(40.75112, -73.97127)",2 AVENUE,EAST 44 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419012,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,17:28,QUEENS,11421,40.692535,-73.85897,"(40.692535, -73.85897)",,,85-01 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418897,Sedan,Sedan,,, +05/21/2021,17:30,MANHATTAN,10069,40.78024,-73.98761,"(40.78024, -73.98761)",RIVERSIDE BOULEVARD,WEST 71 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4419458,Sedan,Pick-up Truck,,, +05/19/2021,9:30,MANHATTAN,10035,40.802837,-73.93646,"(40.802837, -73.93646)",,,2276 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418181,Sedan,,,, +05/21/2021,15:44,BROOKLYN,11206,40.69745,-73.93611,"(40.69745, -73.93611)",,,924 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419194,Motorcycle,Sedan,,, +05/20/2021,22:30,,,40.712673,-73.80139,"(40.712673, -73.80139)",164 STREET,85 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418680,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/07/2021,22:44,,,40.679276,-73.92906,"(40.679276, -73.92906)",UTICA AVENUE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4419133,Sedan,Sedan,,, +05/21/2021,18:17,BRONX,10454,,,,BRUCKNER EXPRESSWAY,EAST 138 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419036,Sedan,Sedan,,, +05/21/2021,18:10,BRONX,10469,40.864506,-73.8587,"(40.864506, -73.8587)",,,2552 PAULDING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418970,Ambulance,Sedan,,, +05/19/2021,14:14,BROOKLYN,11211,40.70801,-73.95673,"(40.70801, -73.95673)",RODNEY STREET,BROADWAY,,1,0,0,0,1,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4418414,School Bus,Bike,,, +12/22/2021,14:30,QUEENS,11432,40.70975,-73.79562,"(40.70975, -73.79562)",167 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489184,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,18:30,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419368,Sedan,,,, +05/19/2021,7:45,MANHATTAN,10025,40.79799,-73.96199,"(40.79799, -73.96199)",WEST 105 STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4418100,Bus,Sedan,,, +05/21/2021,23:56,,,40.86165,-73.91076,"(40.86165, -73.91076)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4419166,Taxi,Sedan,,, +05/19/2021,20:13,,,40.797188,-73.97181,"(40.797188, -73.97181)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4418296,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/19/2021,14:46,,,40.60129,-73.76822,"(40.60129, -73.76822)",DWIGHT AVENUE,BAY 32 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4418439,Sedan,unknown,,, +05/18/2021,16:59,BRONX,10460,40.836704,-73.8912,"(40.836704, -73.8912)",,,1600 CROTONA PARK EAST,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4419621,Bike,,,, +05/21/2021,0:50,BROOKLYN,11206,40.70518,-73.94272,"(40.70518, -73.94272)",,,136 MC KIBBIN STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418737,,,,, +05/17/2021,6:23,,,40.866333,-73.92501,"(40.866333, -73.92501)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Turning Improperly,Unspecified,,,4419736,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +05/20/2021,10:35,,,40.618793,-74.03698,"(40.618793, -74.03698)",MARINE AVENUE,94 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4418655,Sedan,,,, +05/20/2021,13:30,,,40.66762,-73.94237,"(40.66762, -73.94237)",KINGSTON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418799,,,,, +05/21/2021,18:30,QUEENS,11429,40.715626,-73.741394,"(40.715626, -73.741394)",217 STREET,100 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418924,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,1:20,BROOKLYN,11236,40.63466,-73.91462,"(40.63466, -73.91462)",,,7811 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4418948,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,23:30,BROOKLYN,11201,,,,WATER STREET,OLD FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418969,GOLF CAR,Taxi,,, +05/19/2021,13:55,BROOKLYN,11210,40.635815,-73.95343,"(40.635815, -73.95343)",FARRAGUT ROAD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418401,Sedan,,,, +05/20/2021,22:00,BRONX,10454,40.81099,-73.914856,"(40.81099, -73.914856)",SAINT ANNS AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418850,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,13:44,,,40.824837,-73.87053,"(40.824837, -73.87053)",BRUCKNER BOULEVARD,FTELEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418225,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,14:30,,,,,,12 AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4419394,Sedan,Sedan,,, +05/20/2021,17:52,BROOKLYN,11226,40.651546,-73.95257,"(40.651546, -73.95257)",ROGERS AVENUE,MARTENSE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419363,Bus,Box Truck,,, +05/20/2021,21:40,MANHATTAN,10001,40.751522,-73.99396,"(40.751522, -73.99396)",8 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419674,Taxi,Taxi,,, +05/20/2021,6:00,,,40.7509,-73.99812,"(40.7509, -73.99812)",WEST 30 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419346,Sedan,Sedan,,, +05/19/2021,12:14,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418556,Sedan,Sedan,,, +05/06/2021,11:00,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418818,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,16:20,,,40.736958,-74.00651,"(40.736958, -74.00651)",BETHUNE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418531,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/21/2021,15:00,,,40.771576,-73.87616,"(40.771576, -73.87616)",GRAND CENTRAL PARKWAY,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418990,Bus,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,10:38,,,40.855133,-73.93688,"(40.855133, -73.93688)",FORT WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418803,Sedan,,,, +05/19/2021,23:17,,,40.619152,-74.14388,"(40.619152, -74.14388)",LEONARD AVENUE,,,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4418335,Sedan,,,, +05/20/2021,16:45,,,40.61312,-73.9894,"(40.61312, -73.9894)",20 AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4418711,Sedan,Bike,,, +05/18/2021,15:08,MANHATTAN,10023,40.77548,-73.98021,"(40.77548, -73.98021)",WEST 69 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418909,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,17:42,,,40.75555,-73.79375,"(40.75555, -73.79375)",45 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:00,STATEN ISLAND,10304,40.59198,-74.10829,"(40.59198, -74.10829)",FOUR CORNERS ROAD,GARDEN COURT,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418892,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,20:20,QUEENS,11354,40.763588,-73.83603,"(40.763588, -73.83603)",COLLEGE POINT BOULEVARD,35 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418318,,,,, +05/20/2021,6:00,BRONX,10462,40.855324,-73.86572,"(40.855324, -73.86572)",,,2160 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4418835,Station Wagon/Sport Utility Vehicle,Van,Sedan,, +05/19/2021,11:39,QUEENS,11420,40.67298,-73.802704,"(40.67298, -73.802704)",,,124-54 135 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418486,Sedan,,,, +05/21/2021,11:22,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4419067,Tractor Truck Gasoline,,,, +05/18/2021,15:35,,,40.76363,-73.9533,"(40.76363, -73.9533)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419619,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,13:04,,,40.776756,-73.82764,"(40.776756, -73.82764)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4419109,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +05/17/2021,19:00,BROOKLYN,11215,40.66359,-73.9911,"(40.66359, -73.9911)",17 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419451,Sedan,,,, +05/11/2021,19:35,MANHATTAN,10065,40.768024,-73.97029,"(40.768024, -73.97029)",5 AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418877,Sedan,Box Truck,,, +05/21/2021,5:00,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4418934,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,11:22,BRONX,10467,40.885216,-73.87937,"(40.885216, -73.87937)",JEROME AVENUE,EAST 213 STREET,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4418848,Tractor Truck Diesel,,,, +12/23/2021,21:45,QUEENS,11106,40.76282,-73.92029,"(40.76282, -73.92029)",31 AVENUE,35 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489436,Sedan,E-Scooter,,, +05/19/2021,17:35,MANHATTAN,10002,40.711945,-73.98985,"(40.711945, -73.98985)",,,45 RUTGERS STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4419427,Bike,,,, +05/19/2021,23:40,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418506,Flat Bed,,,, +12/23/2021,14:30,,,40.61871,-73.93076,"(40.61871, -73.93076)",AVENUE N,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489163,Sedan,,,, +05/19/2021,10:15,MANHATTAN,10002,40.714264,-73.980934,"(40.714264, -73.980934)",GRAND STREET,JACKSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418342,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,22:00,BRONX,10460,40.842655,-73.89052,"(40.842655, -73.89052)",EAST 176 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419740,Sedan,,,, +05/20/2021,16:55,BRONX,10456,40.820232,-73.906204,"(40.820232, -73.906204)",,,820 JACKSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4418718,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,9:05,MANHATTAN,10011,40.742226,-73.99702,"(40.742226, -73.99702)",7 AVENUE,WEST 20 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419345,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,1:00,QUEENS,11377,40.75536,-73.90775,"(40.75536, -73.90775)",,,53-16 32 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419235,Sedan,Sedan,,, +05/21/2021,16:43,BROOKLYN,11219,40.625286,-73.997246,"(40.625286, -73.997246)",63 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418941,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:48,BRONX,10453,40.858994,-73.90573,"(40.858994, -73.90573)",WEST 183 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419129,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,18:30,BROOKLYN,11207,40.68016,-73.893196,"(40.68016, -73.893196)",JAMAICA AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419582,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,14:45,MANHATTAN,10009,40.73157,-73.98238,"(40.73157, -73.98238)",,,240 1 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4419291,Sedan,,,, +05/21/2021,14:58,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419584,Sedan,,,, +05/21/2021,0:20,MANHATTAN,10032,40.83569,-73.93739,"(40.83569, -73.93739)",EDGECOMBE AVENUE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418870,Sedan,,,, +05/20/2021,15:30,,,40.694885,-73.98515,"(40.694885, -73.98515)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418661,Sedan,,,, +05/21/2021,21:54,QUEENS,11434,40.683556,-73.7619,"(40.683556, -73.7619)",180 STREET,ZOLLER ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4419435,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,19:55,BROOKLYN,11221,40.6863,-73.93025,"(40.6863, -73.93025)",,,796 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419198,Sedan,,,, +05/19/2021,9:02,,,40.757355,-73.73887,"(40.757355, -73.73887)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418213,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,15:16,BROOKLYN,11225,40.666603,-73.95655,"(40.666603, -73.95655)",BEDFORD AVENUE,CROWN STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4418642,Sedan,Sedan,,, +05/19/2021,11:15,,,,,,,,1 SURF CIRCLE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418174,Sedan,,,, +05/19/2021,18:15,,,40.61517,-74.159935,"(40.61517, -74.159935)",,,70 LAMBERTS LANE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419542,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,8:30,QUEENS,11377,40.744167,-73.91248,"(40.744167, -73.91248)",52 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418572,Sedan,Sedan,,, +05/19/2021,9:15,BROOKLYN,11206,40.70162,-73.938126,"(40.70162, -73.938126)",,,849 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418420,Pick-up Truck,,,, +05/20/2021,15:46,BRONX,10451,40.81769,-73.92392,"(40.81769, -73.92392)",,,239 EAST 149 STREET,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4419032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/21/2021,0:00,,,40.749172,-73.967026,"(40.749172, -73.967026)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418696,Sedan,,,, +05/20/2021,11:42,QUEENS,11413,40.675884,-73.75577,"(40.675884, -73.75577)",SPRINGFIELD BOULEVARD,EAST GATE PLAZA,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418743,Sedan,Sedan,,, +05/19/2021,15:30,,,40.81691,-73.934006,"(40.81691, -73.934006)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418459,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,13:33,BROOKLYN,11209,40.63512,-74.02736,"(40.63512, -74.02736)",,,265 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418262,Sedan,,,, +12/24/2021,12:25,,,40.586002,-73.97221,"(40.586002, -73.97221)",AVENUE Z,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,Unspecified,,,4489677,Sedan,Sedan,Sedan,, +05/20/2021,11:24,QUEENS,11370,40.76635,-73.88756,"(40.76635, -73.88756)",23 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418997,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,0:20,,,40.736958,-74.00826,"(40.736958, -74.00826)",WASHINGTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418754,Sedan,,,, +05/19/2021,18:40,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4418434,Sedan,,,, +05/19/2021,8:59,BROOKLYN,11212,40.6733,-73.90392,"(40.6733, -73.90392)",JUNIUS STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4418396,Sedan,Sedan,,, +05/07/2021,13:00,,,40.843975,-73.913864,"(40.843975, -73.913864)",TOWNSEND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419172,Sedan,Ambulance,,, +05/17/2021,10:30,BRONX,10460,40.837124,-73.89018,"(40.837124, -73.89018)",,,1660 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418771,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,17:26,,,40.576275,-73.98796,"(40.576275, -73.98796)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419254,Sedan,,,, +05/16/2021,23:15,BRONX,10470,40.901028,-73.85116,"(40.901028, -73.85116)",,,4573 FURMAN AVENUE,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4419248,Taxi,,,, +05/19/2021,8:21,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",PARK AVENUE,EAST 36 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4418156,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,8:35,,,40.690308,-73.99881,"(40.690308, -73.99881)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4419685,Sedan,Sedan,,, +05/19/2021,0:23,,,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418073,Sedan,Sedan,,, +05/19/2021,17:45,BROOKLYN,11233,40.677166,-73.92445,"(40.677166, -73.92445)",,,1845 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418302,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,16:00,QUEENS,11375,40.720165,-73.844795,"(40.720165, -73.844795)",71 AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,10:30,BROOKLYN,11217,40.682644,-73.97175,"(40.682644, -73.97175)",ATLANTIC AVENUE,CUMBERLAND STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4418619,Station Wagon/Sport Utility Vehicle,cat payloa,,, +05/19/2021,17:00,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418361,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/19/2021,15:30,,,40.650772,-74.01519,"(40.650772, -74.01519)",47 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418270,Sedan,Bike,,, +05/21/2021,2:18,QUEENS,11368,40.748924,-73.86726,"(40.748924, -73.86726)",98 STREET,40 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,18:13,,,40.643604,-73.94301,"(40.643604, -73.94301)",BROOKLYN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418536,Sedan,Sedan,,, +05/20/2021,12:55,QUEENS,11363,40.772926,-73.74207,"(40.772926, -73.74207)",,,249-15 40 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4418549,Sedan,Bus,,, +05/21/2021,5:22,BROOKLYN,11207,40.65204,-73.887955,"(40.65204, -73.887955)",FLATLANDS AVENUE,GEORGIA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418786,3-Door,,,, +05/20/2021,18:00,,,40.706085,-73.8085,"(40.706085, -73.8085)",148 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4418863,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,16:25,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Tire Failure/Inadequate,,,,4418492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,15:30,QUEENS,11417,40.672295,-73.84381,"(40.672295, -73.84381)",PITKIN AVENUE,REDDING STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419061,Sedan,Sedan,,, +05/19/2021,23:25,QUEENS,11358,40.761543,-73.805466,"(40.761543, -73.805466)",,,160-23 STATION ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4419516,Sedan,,,, +05/19/2021,16:48,BRONX,10458,40.85657,-73.8837,"(40.85657, -73.8837)",,,2467 CAMBRELENG AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418831,Ambulance,,,, +05/17/2021,14:30,,,40.77132,-73.80721,"(40.77132, -73.80721)",157 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419223,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,14:50,,,40.789204,-73.95483,"(40.789204, -73.95483)",5 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Keep Right,Unsafe Lane Changing,,,,4418593,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,20:30,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4418734,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:36,BROOKLYN,11236,40.63421,-73.915276,"(40.63421, -73.915276)",,,7718 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419443,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,15:50,BROOKLYN,11220,40.637547,-74.003845,"(40.637547, -74.003845)",54 STREET,9 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419473,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/19/2021,17:00,BROOKLYN,11201,40.69602,-73.99548,"(40.69602, -73.99548)",,,187 HICKS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4419325,Sedan,Sedan,Sedan,Sedan, +05/20/2021,7:35,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419103,Sedan,Sedan,,, +05/20/2021,14:00,BRONX,10473,40.824005,-73.87383,"(40.824005, -73.87383)",,,1630 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4418691,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,13:34,QUEENS,11369,40.760674,-73.86216,"(40.760674, -73.86216)",,,107-10 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4418902,Sedan,,,, +05/17/2021,13:08,MANHATTAN,10017,40.75462,-73.97374,"(40.75462, -73.97374)",LEXINGTON AVENUE,EAST 47 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418889,Taxi,Sedan,,, +05/19/2021,10:15,QUEENS,11434,40.66705,-73.77411,"(40.66705, -73.77411)",176 STREET,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4418310,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/21/2021,0:35,,,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,11:09,QUEENS,11385,40.700836,-73.90854,"(40.700836, -73.90854)",,,1683 WOODBINE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4418500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/20/2021,18:50,BRONX,10466,40.90244,-73.842735,"(40.90244, -73.842735)",EAST 241 STREET,MONTICELLO AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419272,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,17:45,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",RUTLAND ROAD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418615,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,5:43,BROOKLYN,11210,40.636086,-73.95091,"(40.636086, -73.95091)",FLATBUSH AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418410,Sedan,Sedan,,, +05/20/2021,8:33,BROOKLYN,11221,40.688213,-73.919815,"(40.688213, -73.919815)",BROADWAY,MADISON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418637,Sedan,,,, +05/18/2021,9:55,BRONX,10465,40.816338,-73.83697,"(40.816338, -73.83697)",HUTCHINSON RIVER PARKWAY,SCHLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419692,Sedan,Flat Bed,,, +05/20/2021,8:52,QUEENS,11691,40.60869,-73.75174,"(40.60869, -73.75174)",,,14-20 REDFERN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4418981,Sedan,Sedan,,, +05/20/2021,14:33,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419202,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,14:41,,,40.84631,-73.91947,"(40.84631, -73.91947)",NELSON AVENUE,FEATHERBED LANE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418800,Station Wagon/Sport Utility Vehicle,Bike,,, +05/20/2021,9:36,BROOKLYN,11201,40.691597,-73.98438,"(40.691597, -73.98438)",,,216 DUFFIELD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418656,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,19:50,BROOKLYN,11239,40.652477,-73.86798,"(40.652477, -73.86798)",,,339 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4418785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +12/23/2021,0:54,,,40.739964,-73.89424,"(40.739964, -73.89424)",70 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4488949,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/18/2021,21:00,BRONX,10451,40.82572,-73.92716,"(40.82572, -73.92716)",RIVER AVENUE,EAST 157 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418763,Bike,,,, +05/19/2021,11:28,BROOKLYN,11238,40.68798,-73.9678,"(40.68798, -73.9678)",CLINTON AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418195,Sedan,Courier,,, +05/21/2021,14:40,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419588,Tow Truck / Wrecker,Sedan,,, +05/20/2021,14:40,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419548,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,10:30,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",ATKINS AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489328,Sedan,Sedan,Sedan,, +05/20/2021,11:46,BROOKLYN,11204,40.628494,-73.98282,"(40.628494, -73.98282)",50 STREET,OLD NEW UTRECHT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,10:41,MANHATTAN,10016,40.748863,-73.97584,"(40.748863, -73.97584)",3 AVENUE,EAST 39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418577,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,16:27,BROOKLYN,11230,40.613056,-73.95816,"(40.613056, -73.95816)",AVENUE O,EAST 16 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4418405,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,10:30,BROOKLYN,11201,,,,FLUSHING AVENUE,NAVY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418179,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,7:29,BROOKLYN,11203,40.644844,-73.92964,"(40.644844, -73.92964)",,,1149 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418241,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,2:30,,,40.52858,-74.22184,"(40.52858, -74.22184)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418758,Sedan,,,, +05/21/2021,17:00,BROOKLYN,11226,40.645622,-73.95405,"(40.645622, -73.95405)",,,175 LOTT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419357,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,3:10,,,40.71444,-73.83127,"(40.71444, -73.83127)",UNION TURNPIKE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418465,Tractor Truck Gasoline,Sedan,,, +05/19/2021,19:25,BROOKLYN,11204,40.63127,-73.9829,"(40.63127, -73.9829)",,,1662 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418454,Sedan,,,, +05/19/2021,4:12,,,,,,Harlem River Dr N,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418143,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,23:45,BRONX,10456,40.832035,-73.901665,"(40.832035, -73.901665)",,,1293 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418775,Sedan,,,, +05/19/2021,9:05,BRONX,10465,40.87831,-73.870155,"(40.87831, -73.870155)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419260,Sedan,,,, +05/20/2021,18:55,MANHATTAN,10018,40.757668,-73.99483,"(40.757668, -73.99483)",WEST 40 STREET,DYER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419374,Sedan,Sedan,,, +12/04/2021,20:30,MANHATTAN,10026,40.80648,-73.95621,"(40.80648, -73.95621)",,,357 WEST 118 STREET,1,0,0,0,0,0,1,0,Passenger Distraction,,,,,4489571,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,22:13,BROOKLYN,11212,40.663113,-73.92573,"(40.663113, -73.92573)",,,1025 RUTLAND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419372,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,14:15,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418723,Station Wagon/Sport Utility Vehicle,Van,,, +05/21/2021,7:10,,,40.654957,-74.007034,"(40.654957, -74.007034)",37 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418958,Sedan,Box Truck,,, +05/20/2021,13:30,BRONX,10459,40.832344,-73.89269,"(40.832344, -73.89269)",JENNINGS STREET,WILKENS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,13:20,QUEENS,11379,40.712727,-73.87935,"(40.712727, -73.87935)",METROPOLITAN AVENUE,73 PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4418917,Sedan,,,, +05/20/2021,14:45,QUEENS,11413,40.65853,-73.764206,"(40.65853, -73.764206)",184 STREET,149 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418643,Sedan,Pick-up Truck,,, +05/20/2021,8:15,,,40.84196,-73.915306,"(40.84196, -73.915306)",TOWNSEND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418495,Sedan,,,, +05/20/2021,17:56,QUEENS,11377,40.740784,-73.89893,"(40.740784, -73.89893)",BROOKLYN QUEENS EXPRESSWAY,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418669,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,18:00,BROOKLYN,11229,40.600426,-73.941895,"(40.600426, -73.941895)",NOSTRAND AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418348,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,9:22,MANHATTAN,10035,40.79876,-73.93598,"(40.79876, -73.93598)",,,300 EAST 119 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418541,Motorcycle,,,, +05/20/2021,1:09,BRONX,10454,40.80879,-73.91619,"(40.80879, -73.91619)",SAINT ANNS AVENUE,EAST 141 STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,,,4418545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/19/2021,6:13,,,,,,BRONX RIVER PARKWAY,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418037,Sedan,E-Bike,,, +05/20/2021,16:00,,,40.71585,-73.81183,"(40.71585, -73.81183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418623,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,8:00,BRONX,10474,40.822533,-73.88509,"(40.822533, -73.88509)",BRUCKNER BOULEVARD,EDGEWATER ROAD,,2,0,0,0,0,0,2,0,Accelerator Defective,,,,,4418373,Sedan,,,, +05/21/2021,7:59,,,40.691914,-73.88363,"(40.691914, -73.88363)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4419481,Sedan,,,, +05/20/2021,17:48,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4419273,Sedan,Sedan,Sedan,, +05/21/2021,14:22,QUEENS,11102,40.769886,-73.92781,"(40.769886, -73.92781)",21 STREET,30 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419296,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/19/2021,22:41,BRONX,10461,40.84137,-73.826096,"(40.84137, -73.826096)",BRUCKNER BOULEVARD,CODDINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418391,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,18:00,BROOKLYN,11237,40.70912,-73.92764,"(40.70912, -73.92764)",RANDOLPH STREET,VARICK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418685,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,18:30,QUEENS,11366,40.726116,-73.79063,"(40.726116, -73.79063)",,,177-21 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418859,Sedan,,,, +05/19/2021,22:50,,,40.794758,-73.94235,"(40.794758, -73.94235)",EAST 111 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4418587,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,7:32,MANHATTAN,10002,40.720654,-73.984276,"(40.720654, -73.984276)",,,23 CLINTON STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4418704,Taxi,Bike,,, +05/19/2021,16:20,QUEENS,11101,40.74413,-73.927055,"(40.74413, -73.927055)",QUEENS BOULEVARD,38 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,17:19,MANHATTAN,10010,40.737503,-73.98,"(40.737503, -73.98)",,,333 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419285,Sedan,,,, +05/20/2021,7:39,MANHATTAN,10010,40.742466,-73.99311,"(40.742466, -73.99311)",,,700 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418470,Sedan,Bus,,, +05/19/2021,18:45,,,40.66968,-73.88237,"(40.66968, -73.88237)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418790,Sedan,Sedan,,, +05/20/2021,23:30,QUEENS,11375,40.721333,-73.85593,"(40.721333, -73.85593)",,,67-25 DARTMOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419437,Sedan,Sedan,,, +05/21/2021,8:40,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418827,Bus,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,7:00,QUEENS,11377,40.754276,-73.90902,"(40.754276, -73.90902)",51 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419231,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,0:00,,,40.58698,-73.8201,"(40.58698, -73.8201)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419056,Sedan,Sedan,,, +05/19/2021,19:30,MANHATTAN,10012,40.728573,-73.998535,"(40.728573, -73.998535)",,,536 LAGUARDIA PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418753,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,9:33,BROOKLYN,11218,40.641537,-73.98245,"(40.641537, -73.98245)",CHESTER AVENUE,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,19:00,BROOKLYN,11208,40.67217,-73.88301,"(40.67217, -73.88301)",,,440 ELTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419576,Sedan,Sedan,,, +05/21/2021,20:18,BROOKLYN,11217,40.67947,-73.98009,"(40.67947, -73.98009)",,,400 BUTLER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419000,Sedan,Sedan,,, +05/21/2021,12:20,BROOKLYN,11225,40.663334,-73.960236,"(40.663334, -73.960236)",,,57 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418885,Sedan,,,, +05/21/2021,18:00,BRONX,10461,40.856712,-73.84961,"(40.856712, -73.84961)",,,1291 NEILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419121,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,10:30,,,40.873695,-73.824394,"(40.873695, -73.824394)",BELLAMY LOOP,COOP CITY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419157,Sedan,Sedan,,, +05/18/2021,17:09,,,40.827984,-73.84329,"(40.827984, -73.84329)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419567,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,22:20,BROOKLYN,11225,40.666733,-73.95079,"(40.666733, -73.95079)",,,877 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4418329,Sedan,Taxi,Sedan,, +05/20/2021,16:03,BRONX,10469,40.881744,-73.85706,"(40.881744, -73.85706)",EAST 219 STREET,BRONXWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4419267,SCHOOL BUS,Sedan,,, +05/19/2021,18:30,STATEN ISLAND,10312,40.5604,-74.16975,"(40.5604, -74.16975)",,,3231 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418607,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,21:07,,,40.706768,-73.75373,"(40.706768, -73.75373)",HOLLIS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419414,Station Wagon/Sport Utility Vehicle,Moped,,, +05/20/2021,12:00,QUEENS,11357,40.778885,-73.81454,"(40.778885, -73.81454)",150 STREET,22 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419515,Pick-up Truck,Pick-up Truck,,, +05/20/2021,13:10,,,40.596756,-73.93342,"(40.596756, -73.93342)",KNAPP STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4418768,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/23/2021,20:00,QUEENS,11106,40.763645,-73.940414,"(40.763645, -73.940414)",,,34-58 9 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489549,Sedan,Sedan,,, +05/20/2021,14:29,MANHATTAN,10035,40.796772,-73.934845,"(40.796772, -73.934845)",,,2276 1 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418748,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/21/2021,0:00,BROOKLYN,11217,40.683414,-73.98816,"(40.683414, -73.98816)",,,427 BALTIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418987,Sedan,,,, +05/21/2021,16:20,,,40.693306,-73.95311,"(40.693306, -73.95311)",SANDFORD STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419334,Pick-up Truck,,,, +05/15/2021,23:55,STATEN ISLAND,10304,40.619,-74.084785,"(40.619, -74.084785)",OSGOOD AVENUE,TARGEE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419169,Sedan,,,, +05/21/2021,19:00,,,,,,HYLAN BOULEVARD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4419188,Sedan,Sedan,,, +05/21/2021,16:10,,,40.817898,-73.938095,"(40.817898, -73.938095)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419668,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:25,QUEENS,11418,40.70122,-73.83144,"(40.70122, -73.83144)",,,86-15 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418817,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,17:58,BRONX,10463,40.882385,-73.90408,"(40.882385, -73.90408)",WEST 234 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418675,Pick-up Truck,Chassis Cab,,, +05/20/2021,13:22,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4418928,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/20/2021,0:15,,,40.655827,-73.898605,"(40.655827, -73.898605)",DE WITT AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418780,LIMO,,,, +05/19/2021,0:00,BROOKLYN,11203,,,,UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419364,Sedan,Sedan,,, +05/20/2021,11:39,QUEENS,11104,40.74916,-73.92035,"(40.74916, -73.92035)",43 STREET,BARNETT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418949,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,13:22,QUEENS,11434,40.684097,-73.76465,"(40.684097, -73.76465)",178 PLACE,LESLIE ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419768,Sedan,,,, +05/21/2021,13:30,BROOKLYN,11229,40.60106,-73.93427,"(40.60106, -73.93427)",,,2245 GERRITSEN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418881,Sedan,Sedan,,, +05/21/2021,14:32,BROOKLYN,11201,40.69198,-73.98731,"(40.69198, -73.98731)",,,387 JAY STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4419013,Bike,,,, +05/21/2021,8:03,BRONX,10473,40.816456,-73.86683,"(40.816456, -73.86683)",,,1710 RANDALL AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418812,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +05/13/2021,19:00,,,40.789444,-73.98212,"(40.789444, -73.98212)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,9:30,MANHATTAN,10037,40.811405,-73.94283,"(40.811405, -73.94283)",,,416 LENOX AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4419678,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,12:45,,,40.824932,-73.82431,"(40.824932, -73.82431)",CROSS BRONX EXPRESSWAY,RANDALL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419162,Sedan,Sedan,,, +05/17/2021,9:55,MANHATTAN,10027,40.811623,-73.95061,"(40.811623, -73.95061)",,,310 WEST 127 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419306,Sedan,Dump,,, +05/20/2021,1:55,MANHATTAN,10036,40.757935,-73.98557,"(40.757935, -73.98557)",7 AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4418384,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,18:30,,,40.581062,-74.00071,"(40.581062, -74.00071)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488929,Sedan,,,, +05/19/2021,6:20,,,40.799698,-73.96997,"(40.799698, -73.96997)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418124,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,13:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,18:45,MANHATTAN,10001,40.753525,-73.994545,"(40.753525, -73.994545)",,,357 WEST 35 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418480,Sedan,Bike,,, +05/21/2021,13:45,BROOKLYN,11212,40.66283,-73.92615,"(40.66283, -73.92615)",EAST 94 STREET,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419353,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/19/2021,10:00,,,40.71582,-73.81759,"(40.71582, -73.81759)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4418290,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,14:30,BROOKLYN,11222,40.727684,-73.95304,"(40.727684, -73.95304)",,,795 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419645,Sedan,Box Truck,,, +05/19/2021,17:20,,,,,,HILLSIDE AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418277,Sedan,Sedan,,, +05/17/2021,15:00,BRONX,10470,40.89687,-73.87645,"(40.89687, -73.87645)",VANCORTLANDT PARK EAST,EAST 235 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419722,Sedan,,,, +05/19/2021,8:20,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418447,Taxi,Sedan,,, +05/19/2021,16:15,STATEN ISLAND,10306,40.56067,-74.13489,"(40.56067, -74.13489)",,,3295 AMBOY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418601,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,16:00,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419113,Sedan,Sedan,,, +05/20/2021,17:13,BROOKLYN,11208,40.683907,-73.880844,"(40.683907, -73.880844)",,,59 HALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418795,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +05/21/2021,15:55,STATEN ISLAND,10312,40.537678,-74.1652,"(40.537678, -74.1652)",SYCAMORE STREET,WOODS OF ARDEN ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419385,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,7:00,QUEENS,11368,40.757072,-73.85492,"(40.757072, -73.85492)",114 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4418854,Sedan,Pick-up Truck,,, +05/20/2021,0:00,BRONX,10454,40.80623,-73.91206,"(40.80623, -73.91206)",EAST 140 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4418719,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,23:10,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,20:49,,,40.70509,-73.85261,"(40.70509, -73.85261)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418325,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,2:30,BRONX,10451,40.8216,-73.91211,"(40.8216, -73.91211)",,,3103 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418352,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,10:30,,,40.69053,-73.7585,"(40.69053, -73.7585)",118 ROAD,192 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489455,Sedan,,,, +05/19/2021,23:35,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4418523,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,18:30,,,,,,GRAND CENTRAL PARKWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418665,Sedan,,,, +05/21/2021,9:39,,,,,,L.I.E / G.C.P (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418839,Sedan,Dump,,, +05/19/2021,19:52,MANHATTAN,10026,40.798107,-73.950325,"(40.798107, -73.950325)",,,46 WEST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419280,Sedan,,,, +05/20/2021,19:55,QUEENS,11411,40.691715,-73.73483,"(40.691715, -73.73483)",118 AVENUE,227 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418681,Sedan,Sedan,,, +05/19/2021,12:00,,,40.827904,-73.91218,"(40.827904, -73.91218)",PARK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418365,Sedan,,,, +05/19/2021,4:41,,,40.856606,-73.92841,"(40.856606, -73.92841)",WADSWORTH AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4418822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,19:05,MANHATTAN,10032,40.842453,-73.93552,"(40.842453, -73.93552)",,,506 WEST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419534,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,18:40,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418700,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,9:48,,,40.6656,-73.74648,"(40.6656, -73.74648)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4418311,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/20/2021,15:20,MANHATTAN,10032,40.842514,-73.93566,"(40.842514, -73.93566)",,,512 WEST 172 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419527,Taxi,Van,,, +05/21/2021,15:55,BROOKLYN,11237,40.707153,-73.93149,"(40.707153, -73.93149)",KNICKERBOCKER AVENUE,INGRAHAM STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4419738,Sedan,Motorcycle,,, +05/21/2021,14:44,MANHATTAN,10028,40.77882,-73.953995,"(40.77882, -73.953995)",EAST 86 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419496,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/20/2021,16:09,BROOKLYN,11225,40.657837,-73.95033,"(40.657837, -73.95033)",NOSTRAND AVENUE,HAWTHORNE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418649,Sedan,,,, +05/21/2021,18:05,QUEENS,11368,40.753017,-73.87165,"(40.753017, -73.87165)",,,35-26 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4419044,Station Wagon/Sport Utility Vehicle,Bike,,, +12/23/2021,9:20,BROOKLYN,11210,40.629124,-73.94336,"(40.629124, -73.94336)",,,1103 EAST 34 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4489126,Sedan,Sedan,Sedan,Sedan, +05/20/2021,7:00,BROOKLYN,11201,40.69977,-73.98294,"(40.69977, -73.98294)",SANDS STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418896,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,21:50,BRONX,10472,40.8283,-73.88281,"(40.8283, -73.88281)",,,1440 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4418503,MOPED,Sedan,,, +05/20/2021,13:20,QUEENS,11101,40.759308,-73.944176,"(40.759308, -73.944176)",38 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4419239,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,13:19,QUEENS,11378,40.71736,-73.9064,"(40.71736, -73.9064)",59 DRIVE,60 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4418913,Van,Pick-up Truck,,, +05/20/2021,20:45,BROOKLYN,11217,,,,GREGORY PLACE,BUTLER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419005,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,17:00,BROOKLYN,11212,40.665348,-73.91157,"(40.665348, -73.91157)",BRISTOL STREET,BLAKE AVENUE,,2,0,1,0,0,0,1,0,Unspecified,,,,,4419208,Sedan,,,, +05/15/2021,20:05,BROOKLYN,11236,40.631996,-73.8877,"(40.631996, -73.8877)",,,2094 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419081,Sedan,,,, +05/20/2021,5:20,BROOKLYN,11236,40.64119,-73.90703,"(40.64119, -73.90703)",,,1161 REMSEN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4418844,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/20/2021,5:40,BRONX,10453,40.856403,-73.9073,"(40.856403, -73.9073)",WEST 181 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4418511,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,15:35,,,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4418945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/01/2021,21:00,BRONX,10461,40.842644,-73.85181,"(40.842644, -73.85181)",EAST TREMONT AVENUE,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4418849,Sedan,,,, +05/20/2021,16:19,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",WEST BURNSIDE AVENUE,JEROME AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4418807,Bus,Sedan,,, +05/20/2021,17:05,,,40.609005,-73.97304,"(40.609005, -73.97304)",65 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4418712,Sedan,Bike,,, +05/21/2021,14:53,BROOKLYN,11226,40.648403,-73.96288,"(40.648403, -73.96288)",EAST 18 STREET,TENNIS COURT,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4419140,Sedan,Sedan,,, +05/19/2021,19:50,BRONX,10469,40.87911,-73.84325,"(40.87911, -73.84325)",BOSTON ROAD,EAST 222 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4418533,Sedan,Sedan,,, +05/20/2021,16:20,MANHATTAN,10021,40.765472,-73.956505,"(40.765472, -73.956505)",,,436 EAST 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419409,Box Truck,Motorcycle,,, +05/19/2021,23:19,BROOKLYN,11236,40.62897,-73.90323,"(40.62897, -73.90323)",EAST 80 STREET,PAERDEGAT 12 STREET,,0,1,0,1,0,0,0,0,,,,,,4418336,,,,, +05/21/2021,17:41,BROOKLYN,11249,40.70812,-73.964325,"(40.70812, -73.964325)",,,460 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,0:00,,,40.86808,-73.90858,"(40.86808, -73.90858)",MAJOR DEEGAN EXPRESSWAY,,,0,2,0,0,0,0,0,2,Unsafe Speed,Unspecified,,,,4419608,Refrigerated Van,Sedan,,, +12/21/2021,0:00,BRONX,10456,40.826977,-73.90256,"(40.826977, -73.90256)",,,1102 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489775,Sedan,Sedan,,, +12/17/2021,21:17,BROOKLYN,11221,40.690266,-73.91546,"(40.690266, -73.91546)",CORNELIA STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489803,Sedan,,,, +12/18/2021,22:30,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4489525,Sedan,Sedan,,, +12/20/2021,7:28,STATEN ISLAND,10310,40.628365,-74.12206,"(40.628365, -74.12206)",MYRTLE AVENUE,CLOVE ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4489600,Sedan,Sedan,,, +12/24/2021,1:00,BRONX,10459,40.82634,-73.89194,"(40.82634, -73.89194)",,,1111 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4489476,Sedan,,,, +12/23/2021,13:00,BROOKLYN,11233,40.67506,-73.916626,"(40.67506, -73.916626)",SARATOGA AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489144,Sedan,,,, +12/22/2021,19:05,BRONX,10455,40.817513,-73.91712,"(40.817513, -73.91712)",MELROSE AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4488961,Sedan,,,, +12/23/2021,17:40,BROOKLYN,11207,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,0:00,MANHATTAN,10001,40.748512,-73.98872,"(40.748512, -73.98872)",WEST 32 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4489610,Taxi,Moped,,, +09/28/2021,17:11,BRONX,10462,,,,ELLIS AVENUE,SEABURY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461984,Sedan,,,, +12/24/2021,17:05,BRONX,10460,40.840527,-73.88952,"(40.840527, -73.88952)",EAST 175 STREET,MARMION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489822,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,17:55,BROOKLYN,11220,40.635303,-74.00617,"(40.635303, -74.00617)",58 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489507,Sedan,,,, +12/23/2021,14:20,BRONX,10475,40.882538,-73.82697,"(40.882538, -73.82697)",MERRITT AVENUE,TILLOTSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489280,Sedan,Sedan,,, +12/22/2021,12:33,,,,,,GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488821,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/24/2021,2:30,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4489262,Taxi,Sedan,,, +12/22/2021,8:20,BROOKLYN,11212,40.661217,-73.917984,"(40.661217, -73.917984)",,,7 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488765,Sedan,,,, +12/23/2021,19:57,,,40.79323,-73.979515,"(40.79323, -73.979515)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489194,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:00,QUEENS,11691,40.605003,-73.74954,"(40.605003, -73.74954)",,,11-27 NAMEOKE STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489044,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,22:35,BROOKLYN,11234,40.63176,-73.92629,"(40.63176, -73.92629)",,,1159 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489732,Sedan,,,, +12/22/2021,15:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489316,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,13:50,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489355,Tractor Truck Diesel,Sedan,,, +12/22/2021,8:15,QUEENS,11419,40.690838,-73.822876,"(40.690838, -73.822876)",101 AVENUE,123 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4489102,Sedan,,,, +12/22/2021,17:50,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4488880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,2:00,QUEENS,11356,40.781437,-73.841446,"(40.781437, -73.841446)",,,20-24 127 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4488973,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,22:14,,,40.587326,-73.99173,"(40.587326, -73.99173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489684,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,11:55,MANHATTAN,10019,,,,,,33 W 56 street,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489366,Box Truck,Taxi,,, +12/22/2021,17:15,MANHATTAN,10027,40.809097,-73.95194,"(40.809097, -73.95194)",,,2296 8 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4489074,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,6:30,,,40.677414,-73.7588,"(40.677414, -73.7588)",BELKNAP STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489018,Sedan,,,, +12/24/2021,17:40,QUEENS,11372,40.75314,-73.87262,"(40.75314, -73.87262)",95 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,8:18,QUEENS,11421,40.684753,-73.86077,"(40.684753, -73.86077)",ROCKAWAY BOULEVARD,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4488757,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,4:34,,,40.810287,-73.90172,"(40.810287, -73.90172)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4488640,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,19:15,BROOKLYN,11205,40.69133,-73.95177,"(40.69133, -73.95177)",DE KALB AVENUE,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488914,Sedan,,,, +12/20/2021,21:24,BROOKLYN,11204,40.62051,-73.99248,"(40.62051, -73.99248)",65 STREET,17 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4489587,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/23/2021,12:57,BROOKLYN,11228,40.61606,-74.02576,"(40.61606, -74.02576)",92 STREET,DAHLGREN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4489246,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,23:15,BRONX,10462,40.84499,-73.867195,"(40.84499, -73.867195)",,,666 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488987,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,15:00,BROOKLYN,11224,40.578823,-73.98628,"(40.578823, -73.98628)",NEPTUNE AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488885,Station Wagon/Sport Utility Vehicle,Bus,,, +12/22/2021,19:38,,,,,,METROPOLITAN AVENUE,FOREST PARK DRIVE EAST,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4489343,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/23/2021,9:58,BROOKLYN,11229,40.59682,-73.92957,"(40.59682, -73.92957)",GERRITSEN AVENUE,AVENUE X,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489167,Pick-up Truck,Sedan,,, +12/23/2021,18:45,,,40.654003,-73.979935,"(40.654003, -73.979935)",TERRACE PLACE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489179,Sedan,Sedan,,, +12/24/2021,22:33,,,40.735504,-73.95264,"(40.735504, -73.95264)",MC GUINNESS BOULEVARD,PULASKI BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489398,Sedan,Sedan,Sedan,, +12/21/2021,12:31,BROOKLYN,11238,40.68782,-73.9627,"(40.68782, -73.9627)",GRAND AVENUE,CLIFTON PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4489499,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +12/22/2021,14:55,,,40.610725,-74.08635,"(40.610725, -74.08635)",TARGEE STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,2:40,QUEENS,11423,40.71874,-73.75887,"(40.71874, -73.75887)",,,89-25 205 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4489765,Sedan,Sedan,Sedan,Sedan,Sedan +12/20/2021,17:30,BRONX,10460,40.840378,-73.86923,"(40.840378, -73.86923)",,,1606 VANBUREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489451,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,20:33,,,40.690987,-73.80087,"(40.690987, -73.80087)",ARLINGTON TERRACE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4489214,Sedan,,,, +12/24/2021,9:40,,,,,,METROPOLITAN AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489348,Sedan,Box Truck,,, +12/23/2021,13:00,QUEENS,11414,40.66252,-73.84071,"(40.66252, -73.84071)",CROSS BAY BOULEVARD,157 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489795,Sedan,,,, +12/24/2021,3:55,BRONX,10458,40.8619,-73.89124,"(40.8619, -73.89124)",,,379 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4489311,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,23:40,MANHATTAN,10027,40.81096,-73.950935,"(40.81096, -73.950935)",,,303 WEST 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489564,Sedan,,,, +12/22/2021,15:03,BROOKLYN,11230,40.61874,-73.957275,"(40.61874, -73.957275)",BAY AVENUE,EAST 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489546,Bus,Sedan,,, +12/22/2021,19:30,,,,,,MARATHON PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4488921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,16:30,BRONX,10457,40.8477,-73.90097,"(40.8477, -73.90097)",WEBSTER AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489844,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,23:15,BROOKLYN,11207,40.6552,-73.893555,"(40.6552, -73.893555)",STANLEY AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489140,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,3:20,MANHATTAN,10013,40.720802,-73.998436,"(40.720802, -73.998436)",,,188 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4489243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,7:01,,,40.773335,-73.94421,"(40.773335, -73.94421)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4489034,Sedan,Sedan,,, +12/22/2021,4:50,BRONX,10474,40.812817,-73.89198,"(40.812817, -73.89198)",TRUXTON STREET,WORTHEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489257,Sedan,,,, +12/24/2021,14:00,BROOKLYN,11210,40.636326,-73.958405,"(40.636326, -73.958405)",FOSTER AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4489657,Convertible,Pick-up Truck,,, +12/23/2021,19:30,,,,,,HARLEM RIVER DRIVE RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4489416,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,9:00,BROOKLYN,11215,40.67079,-73.9949,"(40.67079, -73.9949)",2 AVENUE,12 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489275,Garbage or Refuse,Box Truck,,, +12/23/2021,12:00,QUEENS,11432,40.71321,-73.79351,"(40.71321, -73.79351)",HOME LAWN STREET,HENLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489397,Sedan,,,, +12/20/2021,13:18,,,40.72514,-73.93381,"(40.72514, -73.93381)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489375,Sedan,Tractor Truck Diesel,,, +12/22/2021,10:20,MANHATTAN,10029,40.79814,-73.94051,"(40.79814, -73.94051)",,,186 EAST 116 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4488808,,,,, +12/23/2021,5:20,MANHATTAN,10019,40.76351,-73.98898,"(40.76351, -73.98898)",,,345 WEST 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489067,Sedan,,,, +12/23/2021,17:18,BRONX,10458,40.867256,-73.88363,"(40.867256, -73.88363)",WEBSTER AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489198,Sedan,Sedan,,, +12/22/2021,15:30,BRONX,10460,40.840656,-73.874504,"(40.840656, -73.874504)",,,1160 LEBANON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489026,Sedan,,,, +02/18/2022,21:45,QUEENS,11419,40.69166,-73.82971,"(40.69166, -73.82971)",116 STREET,95 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4504471,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,4:00,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462052,Sedan,,,, +12/22/2021,5:55,QUEENS,11372,40.747475,-73.89329,"(40.747475, -73.89329)",,,72-32 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:40,BRONX,10466,40.8852,-73.83562,"(40.8852, -73.83562)",,,3628 PRATT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4488861,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,14:24,BROOKLYN,11225,40.668034,-73.950096,"(40.668034, -73.950096)",,,1204 PRESIDENT STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489370,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,7:30,BROOKLYN,11236,40.63931,-73.89432,"(40.63931, -73.89432)",EAST 98 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489107,Sedan,,,, +12/23/2021,10:10,,,40.84299,-73.82625,"(40.84299, -73.82625)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489097,Sedan,Sedan,,, +12/22/2021,4:35,BROOKLYN,11237,40.71399,-73.92455,"(40.71399, -73.92455)",METROPOLITAN AVENUE,SCOTT AVENUE,,1,0,0,0,0,0,1,0,Prescription Medication,,,,,4488722,Sedan,,,, +12/23/2021,20:35,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489387,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,18:00,QUEENS,11432,40.707226,-73.804504,"(40.707226, -73.804504)",HILLSIDE AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489215,Sedan,Sedan,,, +12/23/2021,17:30,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4489338,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +12/24/2021,18:42,QUEENS,11368,40.74861,-73.86709,"(40.74861, -73.86709)",,,40-28 98 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489634,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,23:00,BROOKLYN,11204,40.607243,-73.98726,"(40.607243, -73.98726)",STILLWELL AVENUE,AVENUE P,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489581,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,11:56,BROOKLYN,11218,40.64534,-73.97778,"(40.64534, -73.97778)",EAST 3 STREET,ALBEMARLE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4489263,Sedan,Sedan,Sedan,, +12/22/2021,16:00,QUEENS,11691,40.593945,-73.75913,"(40.593945, -73.75913)",,,155 BEACH 26 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4489134,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,20:35,QUEENS,11373,40.744358,-73.88597,"(40.744358, -73.88597)",,,79-01 BROADWAY,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4489291,Sedan,Sedan,,, +12/22/2021,20:25,BRONX,10456,40.820747,-73.906006,"(40.820747, -73.906006)",EAST 160 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4488965,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,17:09,,,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489171,Station Wagon/Sport Utility Vehicle,Van,,, +12/23/2021,17:04,BROOKLYN,11234,40.627983,-73.92493,"(40.627983, -73.92493)",EAST 53 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489175,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,2:40,,,40.680855,-74.00305,"(40.680855, -74.00305)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4488628,Sedan,Tractor Truck Diesel,,, +12/23/2021,17:05,BROOKLYN,11236,40.64275,-73.90378,"(40.64275, -73.90378)",CONKLIN AVENUE,EAST 94 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489250,Sedan,Pick-up Truck,,, +12/22/2021,4:04,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4488997,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,15:00,STATEN ISLAND,10306,40.56895,-74.12491,"(40.56895, -74.12491)",AMBOY ROAD,TYSENS LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489013,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,6:50,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489306,Pick-up Truck,,,, +12/24/2021,19:07,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4489489,Sedan,,,, +12/23/2021,13:56,,,40.78459,-73.77337,"(40.78459, -73.77337)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4489207,Sedan,Sedan,,, +12/24/2021,10:20,,,40.75425,-73.827835,"(40.75425, -73.827835)",MAIN STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4489323,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +12/22/2021,16:40,BROOKLYN,11205,40.698463,-73.960205,"(40.698463, -73.960205)",FLUSHING AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488918,Sedan,Van,,, +12/23/2021,7:00,BROOKLYN,11218,40.638523,-73.97319,"(40.638523, -73.97319)",OCEAN PARKWAY,CORTELYOU ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489114,Sedan,Bike,,, +12/24/2021,23:35,,,40.699654,-73.74227,"(40.699654, -73.74227)",SPRINGFIELD BOULEVARD,115 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489402,Sedan,Sedan,,, +12/24/2021,17:58,,,40.844173,-73.91746,"(40.844173, -73.91746)",MACOMBS ROAD,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4489446,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,19:00,QUEENS,11433,40.702168,-73.7924,"(40.702168, -73.7924)",LIBERTY AVENUE,165 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489761,Sedan,,,, +12/19/2021,0:30,BROOKLYN,11220,40.644863,-74.01748,"(40.644863, -74.01748)",55 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,21:00,BROOKLYN,11213,40.672062,-73.925255,"(40.672062, -73.925255)",PARK PLACE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489693,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,6:50,MANHATTAN,10002,40.713688,-73.99459,"(40.713688, -73.99459)",MARKET STREET,EAST BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489542,,,,, +12/23/2021,14:35,BRONX,10457,40.850307,-73.88644,"(40.850307, -73.88644)",EAST 182 STREET,CROTONA AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4489818,Sedan,E-Bike,,, +12/24/2021,1:15,,,40.81632,-73.89622,"(40.81632, -73.89622)",LONGWOOD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489855,Sedan,Taxi,,, +12/22/2021,16:30,BROOKLYN,11234,40.61698,-73.920555,"(40.61698, -73.920555)",,,5622 AVENUE O,0,0,0,0,0,0,0,0,Unspecified,,,,,4488942,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,20:30,BRONX,10459,40.820137,-73.899864,"(40.820137, -73.899864)",,,852 HEWITT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489239,Sedan,,,, +12/20/2021,14:54,MANHATTAN,10016,40.747295,-73.97405,"(40.747295, -73.97405)",2 AVENUE,EAST 38 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489380,Station Wagon/Sport Utility Vehicle,Bike,,, +12/24/2021,13:30,BROOKLYN,11220,40.645424,-74.01689,"(40.645424, -74.01689)",3 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489360,Station Wagon/Sport Utility Vehicle,Dump,,, +12/24/2021,17:46,QUEENS,11373,40.748684,-73.873985,"(40.748684, -73.873985)",ASKE STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489671,Station Wagon/Sport Utility Vehicle,Bike,,, +12/20/2021,11:12,,,40.764103,-73.93277,"(40.764103, -73.93277)",21 STREET,33 ROAD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4489435,Station Wagon/Sport Utility Vehicle,Moped,,, +12/11/2021,4:05,BROOKLYN,11221,40.69835,-73.92275,"(40.69835, -73.92275)",MYRTLE AVENUE,STANHOPE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489297,,,,, +12/21/2021,0:20,STATEN ISLAND,10310,40.63542,-74.12406,"(40.63542, -74.12406)",,,24 DEGROOT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489594,Sedan,Pick-up Truck,,, +12/23/2021,20:40,QUEENS,11365,40.737984,-73.790085,"(40.737984, -73.790085)",,,183-19 64 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489392,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,0:05,QUEENS,11378,,,,,,69-27 59TH ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489626,Motorcycle,Sedan,,, +12/19/2021,5:42,,,40.669544,-73.917145,"(40.669544, -73.917145)",SARATOGA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489531,Sedan,,,, +12/22/2021,10:59,,,40.845425,-73.84492,"(40.845425, -73.84492)",EASTCHESTER ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4489713,Van,Sedan,,, +12/18/2021,1:53,QUEENS,11102,40.77365,-73.93121,"(40.77365, -73.93121)",,,26-45 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489428,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,0:00,BRONX,10458,40.856266,-73.88301,"(40.856266, -73.88301)",,,705 EAST 189 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489862,Sedan,,,, +12/22/2021,16:48,STATEN ISLAND,10304,40.605713,-74.09459,"(40.605713, -74.09459)",DOUGLAS ROAD,WILSONVIEW PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489007,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,9:20,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",PACIFIC STREET,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,Unspecified,,,4488854,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/22/2021,2:10,BRONX,10457,40.848927,-73.88816,"(40.848927, -73.88816)",EAST 181 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4488702,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/22/2021,20:49,QUEENS,11372,40.75546,-73.88631,"(40.75546, -73.88631)",81 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489060,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:30,BRONX,10473,40.81996,-73.862656,"(40.81996, -73.862656)",,,727 TAYLOR AVENUE,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4489122,E-Bike,,,, +12/22/2021,14:03,MANHATTAN,10016,,,,38 street,park avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4488898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,10:10,,,,,,GRAND CENTRAL PARKWAY,188 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462234,Sedan,Pick-up Truck,,, +12/22/2021,18:20,,,40.729855,-74.00396,"(40.729855, -74.00396)",BEDFORD STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4488889,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,9:08,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Lane Changing,Unspecified,,,4489086,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/23/2021,17:14,BRONX,10459,40.82681,-73.889984,"(40.82681, -73.889984)",EAST 167 STREET,VYSE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489226,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,15:05,BRONX,10460,40.83285,-73.8852,"(40.83285, -73.8852)",,,1524 BOONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489811,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,19:15,,,40.694065,-73.85106,"(40.694065, -73.85106)",94 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489410,E-Bike,,,, +12/15/2021,23:00,QUEENS,11375,40.723724,-73.85455,"(40.723724, -73.85455)",AUSTIN STREET,67 ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,2:00,BROOKLYN,11208,40.67908,-73.880684,"(40.67908, -73.880684)",,,3104 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489334,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,21:02,BROOKLYN,11212,40.65613,-73.90825,"(40.65613, -73.90825)",HEGEMAN AVENUE,CHESTER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489643,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,18:20,,,40.676193,-74.001335,"(40.676193, -74.001335)",HAMILTON AVENUE,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4488933,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,10:05,BRONX,10451,40.815556,-73.92441,"(40.815556, -73.92441)",,,255 EAST 144 STREET,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,Unspecified,,,4488969,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/22/2021,22:47,,,40.73958,-73.90082,"(40.73958, -73.90082)",65 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489189,Sedan,,,, +12/23/2021,5:44,BRONX,10467,40.881783,-73.86536,"(40.881783, -73.86536)",EAST 216 STREET,WILLETT AVENUE,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4489156,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/23/2021,19:40,BROOKLYN,11234,40.632755,-73.92984,"(40.632755, -73.92984)",KINGS HIGHWAY,AVENUE H,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4489284,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,16:00,BROOKLYN,11210,40.628086,-73.94422,"(40.628086, -73.94422)",,,1828 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489460,Sedan,Sedan,,, +12/24/2021,5:46,BROOKLYN,11237,40.701614,-73.914856,"(40.701614, -73.914856)",BLEECKER STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,23:05,,,40.738552,-73.98043,"(40.738552, -73.98043)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4488991,Sedan,,,, +12/24/2021,23:45,QUEENS,11101,40.74547,-73.94655,"(40.74547, -73.94655)",JACKSON AVENUE,CRANE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489440,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,13:00,QUEENS,11377,40.74074,-73.90779,"(40.74074, -73.90779)",47 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489319,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,10:54,QUEENS,11365,40.744072,-73.78353,"(40.744072, -73.78353)",UNDERHILL AVENUE,194 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4488922,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,14:30,BROOKLYN,11206,40.703148,-73.94938,"(40.703148, -73.94938)",,,147 LORIMER STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489268,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,14:22,BRONX,10475,40.8695,-73.82619,"(40.8695, -73.82619)",COOP CITY BOULEVARD,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489744,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,19:30,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489556,Sedan,Box Truck,,, +12/23/2021,11:22,BROOKLYN,11207,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489141,Taxi,Pick-up Truck,,, +12/24/2021,18:15,BROOKLYN,11226,40.64469,-73.949905,"(40.64469, -73.949905)",,,214 EAST 29 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4489576,Bus,Station Wagon/Sport Utility Vehicle,Sedan,E-Bike, +12/24/2021,21:05,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4489701,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,16:30,QUEENS,11417,40.681263,-73.83954,"(40.681263, -73.83954)",101 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489782,Sedan,Sedan,,, +12/20/2021,14:00,BROOKLYN,11222,40.721096,-73.94001,"(40.721096, -73.94001)",DEBEVOISE AVENUE,BEADEL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489472,Sedan,Bus,,, +12/22/2021,7:50,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489150,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,9:45,QUEENS,11366,40.723457,-73.80626,"(40.723457, -73.80626)",162 STREET,77 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4489620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,17:06,BROOKLYN,11206,40.703,-73.94425,"(40.703, -73.94425)",,,21 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489477,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,11:40,,,40.753994,-73.9742,"(40.753994, -73.9742)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4489423,Sedan,Sedan,Ambulance,, +12/24/2021,9:00,BROOKLYN,11208,40.666725,-73.86977,"(40.666725, -73.86977)",EUCLID AVENUE,LORING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489329,Sedan,,,, +12/23/2021,0:13,QUEENS,11414,40.669235,-73.845314,"(40.669235, -73.845314)",SOUTH CONDUIT AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4489833,Sedan,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +12/23/2021,15:00,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489164,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,23:45,,,40.584755,-73.94712,"(40.584755, -73.94712)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4488950,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,13:30,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504563,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/19/2022,14:11,STATEN ISLAND,10304,40.61692,-74.0833,"(40.61692, -74.0833)",,,86 IRVING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504105,Sedan,,,, +02/19/2022,17:30,BRONX,10456,40.83872,-73.91378,"(40.83872, -73.91378)",GRAND CONCOURSE,EAST 170 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504094,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,18:38,,,40.68578,-73.9544,"(40.68578, -73.9544)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504504,Sedan,Taxi,,, +02/19/2022,19:40,BROOKLYN,11235,40.58117,-73.95989,"(40.58117, -73.95989)",CONEY ISLAND AVENUE,BRIGHTON 10 PATH,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504194,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,20:24,,,40.614685,-74.15805,"(40.614685, -74.15805)",RICHMOND AVENUE,LAMBERTS LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4504311,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,21:18,MANHATTAN,10019,40.767918,-73.985725,"(40.767918, -73.985725)",WEST 57 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504655,Taxi,,,, +02/19/2022,13:47,,,40.815826,-73.947044,"(40.815826, -73.947044)",8 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504390,Sedan,Moped,,, +02/19/2022,6:30,QUEENS,11373,40.73826,-73.87928,"(40.73826, -73.87928)",VANLOON STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4504167,Sedan,,,, +02/18/2022,16:53,,,40.60809,-74.14093,"(40.60809, -74.14093)",WOOLLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504601,Sedan,Sedan,,, +01/20/2022,19:00,QUEENS,11435,40.714653,-73.81639,"(40.714653, -73.81639)",,,82-35 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504634,Station Wagon/Sport Utility Vehicle,,,, +02/18/2022,9:00,MANHATTAN,10128,40.78326,-73.950745,"(40.78326, -73.950745)",3 AVENUE,EAST 93 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504669,Sedan,,,, +02/19/2022,18:28,,,40.757442,-73.86747,"(40.757442, -73.86747)",101 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504247,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,14:20,BRONX,10460,40.838726,-73.87768,"(40.838726, -73.87768)",,,1101 EAST 177 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4505191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,11:13,BROOKLYN,11207,40.65624,-73.89872,"(40.65624, -73.89872)",,,817 VAN SIDERIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504795,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,1:30,BROOKLYN,11236,40.645397,-73.91893,"(40.645397, -73.91893)",DITMAS AVENUE,BRANTON STREET,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,Unspecified,,,4504805,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +02/22/2022,7:00,QUEENS,11368,40.752777,-73.86627,"(40.752777, -73.86627)",101 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505065,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,19:05,,,40.843678,-73.871956,"(40.843678, -73.871956)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4504827,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,19:58,MANHATTAN,10033,40.849213,-73.9338,"(40.849213, -73.9338)",,,1420 SAINT NICHOLAS AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4543109,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,18:10,BROOKLYN,11205,40.692883,-73.95678,"(40.692883, -73.95678)",SKILLMAN STREET,WILLOUGHBY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542055,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,14:20,QUEENS,11435,40.706852,-73.81459,"(40.706852, -73.81459)",,,139-44 87 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,22:30,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542442,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,16:50,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542747,Sedan,Sedan,,, +06/29/2022,14:15,,,40.835777,-73.91648,"(40.835777, -73.91648)",GRAND CONCOURSE,,,5,0,0,0,0,0,5,0,Lost Consciousness,Unspecified,Unspecified,,,4542132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/30/2022,10:30,MANHATTAN,10021,40.76861,-73.95189,"(40.76861, -73.95189)",,,506 EAST 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543077,,,,, +06/30/2022,0:55,,,40.89675,-73.85988,"(40.89675, -73.85988)",EAST 236 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4542300,Sedan,Sedan,,, +06/11/2022,21:50,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542960,,,,, +06/22/2022,6:58,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542799,Sedan,,,, +06/29/2022,19:55,,,40.799976,-73.94274,"(40.799976, -73.94274)",PARK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542028,Bike,Sedan,,, +07/01/2022,22:39,QUEENS,11434,40.692112,-73.77729,"(40.692112, -73.77729)",LINDEN BOULEVARD,173 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4542602,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,21:45,,,,,,BRONX RIVER PARKWAY,,,5,0,0,0,0,0,5,0,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,4542916,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/24/2022,15:02,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,31 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542645,Sedan,Van,,, +06/29/2022,0:35,,,40.700836,-73.98594,"(40.700836, -73.98594)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541985,Sedan,Tractor Truck Diesel,,, +07/01/2022,4:00,QUEENS,11429,40.712166,-73.74211,"(40.712166, -73.74211)",,,216-16 104 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4542353,Sedan,,,, +06/30/2022,9:14,BRONX,10462,40.85678,-73.86192,"(40.85678, -73.86192)",PELHAM PARKWAY SOUTH,MULINER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542366,Station Wagon/Sport Utility Vehicle,Van,,, +06/29/2022,17:20,BROOKLYN,11225,,,,Bedford Avenue,Lefferts avenue,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4542807,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2022,16:20,BROOKLYN,11222,40.732677,-73.95203,"(40.732677, -73.95203)",,,302 MC GUINNESS BOULEVARD,3,0,1,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4543031,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,10:00,,,40.829136,-73.9114,"(40.829136, -73.9114)",WEBSTER AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542867,E-Bike,Sedan,,, +06/30/2022,8:00,QUEENS,11422,40.636787,-73.74057,"(40.636787, -73.74057)",ROCKAWAY BOULEVARD,1 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4542185,Dump,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,17:45,BROOKLYN,11209,40.632328,-74.02147,"(40.632328, -74.02147)",,,7119 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542279,Sedan,Sedan,,, +06/29/2022,16:00,BROOKLYN,11207,40.67564,-73.898315,"(40.67564, -73.898315)",,,2600 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542060,Sedan,FORKLIFT,,, +07/01/2022,9:18,QUEENS,11367,40.72537,-73.82366,"(40.72537, -73.82366)",141 STREET,72 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542449,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,17:17,BROOKLYN,11217,40.680454,-73.97323,"(40.680454, -73.97323)",,,502 BERGEN STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542581,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/28/2022,22:30,BRONX,10466,,,,EAST 236 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542896,Sedan,,,, +06/25/2022,10:20,QUEENS,11105,40.777195,-73.909424,"(40.777195, -73.909424)",,,21-38 31 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542646,4 dr sedan,,,, +06/29/2022,13:00,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542117,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/22/2021,15:45,,,,,,,,63 WEST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4419569,Bike,,,, +07/01/2022,13:00,,,40.746883,-73.76348,"(40.746883, -73.76348)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4542518,Flat Bed,Sedan,,, +06/30/2022,15:41,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543030,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,20:24,,,40.639256,-73.968796,"(40.639256, -73.968796)",CONEY ISLAND AVENUE,CORTELYOU ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543139,Sedan,Bike,,, +06/17/2022,7:00,BROOKLYN,11213,40.66669,-73.941925,"(40.66669, -73.941925)",,,1398 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542825,Sedan,,,, +07/01/2022,9:30,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4542908,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2022,21:18,,,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,,,4,0,3,0,0,0,1,0,Alcohol Involvement,,,,,4542397,Taxi,,,, +06/26/2022,11:45,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,11:25,BROOKLYN,11215,40.66877,-73.976715,"(40.66877, -73.976715)",8 AVENUE,4 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542574,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/29/2022,20:22,MANHATTAN,10016,40.747932,-73.9794,"(40.747932, -73.9794)",,,120 EAST 36 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542312,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,20:20,QUEENS,11432,40.712593,-73.782486,"(40.712593, -73.782486)",,,88-42 180 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542781,FIRETRUCK,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,4:48,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",160 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542513,Station Wagon/Sport Utility Vehicle,,,, +06/20/2022,1:45,QUEENS,11432,40.71071,-73.793045,"(40.71071, -73.793045)",HILLSIDE AVENUE,HOME LAWN STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4542425,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,8:55,STATEN ISLAND,10310,40.63431,-74.12008,"(40.63431, -74.12008)",,,1085 CASTLETON AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542126,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2022,12:53,QUEENS,11385,40.70202,-73.87975,"(40.70202, -73.87975)",,,71-08 MYRTLE AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542708,Sedan,Bike,,, +06/30/2022,20:35,QUEENS,11366,40.72634,-73.79309,"(40.72634, -73.79309)",,,176-23 77 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4542418,Sedan,,,, +06/29/2022,0:22,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",FRANCIS LEWIS BOULEVARD,MERRICK BOULEVARD,,2,0,2,0,0,0,0,0,Unspecified,,,,,4541653,Sedan,,,, +06/21/2022,19:15,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,19:40,QUEENS,11103,40.76502,-73.9174,"(40.76502, -73.9174)",30 AVENUE,36 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4542629,Sedan,Motorscooter,,, +07/01/2022,14:58,QUEENS,11360,40.77861,-73.77585,"(40.77861, -73.77585)",26 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542557,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,12:50,BRONX,10473,40.82138,-73.86298,"(40.82138, -73.86298)",TAYLOR AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4542550,Sedan,,,, +06/30/2022,15:50,,,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542354,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,5:00,,,40.809563,-73.92923,"(40.809563, -73.92923)",3 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542008,Tow Truck / Wrecker,Sedan,,, +06/30/2022,20:55,QUEENS,11373,40.74618,-73.87529,"(40.74618, -73.87529)",,,90-31 WHITNEY AVENUE,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4542844,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,5:40,,,40.885426,-73.897446,"(40.885426, -73.897446)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4542212,Motorcycle,Sedan,,, +06/29/2022,8:57,BRONX,10469,40.868008,-73.84073,"(40.868008, -73.84073)",MICKLE AVENUE,ARNOW AVENUE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4541909,Sedan,Sedan,,, +12/25/2021,23:28,,,40.65133,-73.90607,"(40.65133, -73.90607)",ROCKAWAY AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489536,Sedan,,,, +06/30/2022,15:10,BRONX,10461,40.855286,-73.855705,"(40.855286, -73.855705)",,,1133 LYDIG AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542852,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,9:30,,,40.882095,-73.86878,"(40.882095, -73.86878)",BRONX RIVER PARKWAY,,,6,0,0,0,0,0,6,0,Obstruction/Debris,Obstruction/Debris,,,,4542592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2022,3:00,BROOKLYN,11238,40.678577,-73.958755,"(40.678577, -73.958755)",,,626 CLASSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542955,Sedan,,,, +07/01/2022,22:58,BROOKLYN,11201,40.68966,-74.00047,"(40.68966, -74.00047)",COLUMBIA STREET,CONGRESS STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4542613,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/28/2022,23:30,,,40.65807,-73.960434,"(40.65807, -73.960434)",FENIMORE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542883,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/29/2022,16:44,,,40.82764,-73.84791,"(40.82764, -73.84791)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542545,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,17:30,STATEN ISLAND,10312,40.557106,-74.17385,"(40.557106, -74.17385)",DRUMGOOLE ROAD EAST,MACON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4542738,Sedan,Sedan,Pick-up Truck,, +06/29/2022,18:21,,,40.87004,-73.8997,"(40.87004, -73.8997)",WEST 195 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542201,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2022,14:23,QUEENS,11106,40.762768,-73.94096,"(40.762768, -73.94096)",,,35-32 9 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542657,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2022,4:50,,,40.66925,-73.93944,"(40.66925, -73.93944)",ALBANY AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543071,E-Bike,,,, +06/10/2022,0:31,BRONX,10467,40.885693,-73.86165,"(40.885693, -73.86165)",EAST 222 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542891,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,14:10,QUEENS,11428,40.727676,-73.732544,"(40.727676, -73.732544)",,,224-42 BRADDOCK AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4542858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Dump,, +07/01/2022,14:15,QUEENS,11101,40.75325,-73.9237,"(40.75325, -73.9237)",,,36-20 STEINWAY STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542677,Bike,Sedan,,, +06/29/2022,20:22,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4542493,Sedan,Tow Truck / Wrecker,,, +06/30/2022,20:26,QUEENS,11414,40.672947,-73.85987,"(40.672947, -73.85987)",76 STREET,BLAKE AVENUE,,3,0,0,0,0,0,3,0,Pavement Defective,Passing or Lane Usage Improper,,,,4542374,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,14:39,BROOKLYN,11206,40.699604,-73.95154,"(40.699604, -73.95154)",,,536 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542839,Sedan,Sedan,,, +06/30/2022,17:55,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542296,Sedan,E-Bike,,, +07/01/2022,10:25,BROOKLYN,11231,40.686375,-73.99836,"(40.686375, -73.99836)",,,426 HENRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542610,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/29/2022,18:41,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4542070,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2022,2:10,,,40.860527,-73.91939,"(40.860527, -73.91939)",9 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4543101,Sedan,,,, +06/30/2022,13:10,,,,,,SANDS STREET,JAY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542995,Sedan,Sedan,,, +06/22/2022,15:40,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542793,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,0:20,QUEENS,11385,40.710777,-73.86502,"(40.710777, -73.86502)",COOPER AVENUE,88 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542640,Bike,,,, +06/30/2022,13:45,STATEN ISLAND,10304,40.591034,-74.10127,"(40.591034, -74.10127)",FOUR CORNERS ROAD,FLAGG PLACE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4542461,Sedan,Sedan,,, +06/29/2022,20:58,BROOKLYN,11232,40.663845,-73.994514,"(40.663845, -73.994514)",4 AVENUE,19 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542096,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,12:53,BRONX,10472,,,,CROSS BRONX EXPRESSWAY,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419815,Sedan,Sedan,,, +12/25/2021,3:30,,,,,,NEW ENGLAND THRUWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489743,Sedan,,,, +09/19/2021,10:30,QUEENS,11429,40.704082,-73.73813,"(40.704082, -73.73813)",219 STREET,113 AVENUE,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,,,,4458679,Sedan,Sedan,,, +09/28/2021,22:30,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462027,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,21:20,BROOKLYN,11215,40.66569,-73.98259,"(40.66569, -73.98259)",7 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462157,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,8:16,MANHATTAN,10065,40.76739,-73.97073,"(40.76739, -73.97073)",5 AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4462078,Bike,,,, +09/25/2021,23:30,MANHATTAN,10018,40.758377,-73.994385,"(40.758377, -73.994385)",WEST 41 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4462533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,10:53,BROOKLYN,11218,40.638523,-73.97319,"(40.638523, -73.97319)",OCEAN PARKWAY,CORTELYOU ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4462507,Station Wagon/Sport Utility Vehicle,Bike,,, +09/28/2021,0:40,BROOKLYN,11236,40.62771,-73.90307,"(40.62771, -73.90307)",,,6 PAERDEGAT 13 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4461674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,17:54,QUEENS,11419,40.68899,-73.81707,"(40.68899, -73.81707)",LIBERTY AVENUE,128 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4462055,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/28/2021,8:53,MANHATTAN,10029,40.790627,-73.942444,"(40.790627, -73.942444)",2 AVENUE,EAST 106 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462272,Sedan,Bus,,, +09/28/2021,16:00,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462101,Sedan,Sedan,,, +09/27/2021,11:33,,,40.67773,-74.00234,"(40.67773, -74.00234)",NELSON STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462476,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,13:05,MANHATTAN,10034,40.868763,-73.92325,"(40.868763, -73.92325)",,,128 SEAMAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462594,Sedan,Sedan,,, +09/27/2021,15:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462688,Sedan,Sedan,,, +09/28/2021,5:19,BRONX,10461,40.844193,-73.82932,"(40.844193, -73.82932)",MIDDLETOWN ROAD,HOBART AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4461750,Sedan,,,, +09/28/2021,10:10,,,40.615993,-74.031136,"(40.615993, -74.031136)",95 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4462110,,,,, +09/28/2021,11:50,QUEENS,11377,40.75119,-73.90203,"(40.75119, -73.90203)",BROADWAY,60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462530,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,7:00,MANHATTAN,10033,40.850067,-73.93136,"(40.850067, -73.93136)",,,359 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462577,Sedan,,,, +09/27/2021,9:06,,,40.63546,-74.1662,"(40.63546, -74.1662)",,,173 SOUTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462435,Pick-up Truck,Bus,,, +09/28/2021,7:50,BROOKLYN,11222,40.726814,-73.95355,"(40.726814, -73.95355)",LORIMER STREET,MESEROLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461846,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,14:43,BROOKLYN,11219,,,,,,1074 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,10:30,QUEENS,11101,40.75148,-73.93567,"(40.75148, -73.93567)",,,29-27 40 ROAD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462177,Sedan,E-Scooter,,, +09/28/2021,11:30,QUEENS,11422,40.635643,-73.74013,"(40.635643, -73.74013)",ROCKAWAY BOULEVARD,3 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462205,Sedan,Sedan,,, +09/28/2021,17:12,BROOKLYN,11236,40.63753,-73.90297,"(40.63753, -73.90297)",,,1339 REMSEN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462297,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/28/2021,23:30,,,40.6733,-73.90392,"(40.6733, -73.90392)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4462346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/28/2021,12:00,,,40.8264,-73.87581,"(40.8264, -73.87581)",MANOR AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461978,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,10:00,,,40.69304,-73.924446,"(40.69304, -73.924446)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4461920,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:00,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",WHITE PLAINS ROAD,EAST 241 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4462614,Sedan,CITY VEHIC,Station Wagon/Sport Utility Vehicle,, +09/28/2021,12:30,BROOKLYN,11232,40.652946,-74.002174,"(40.652946, -74.002174)",5 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4462667,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/22/2021,19:30,BRONX,10455,40.816032,-73.90809,"(40.816032, -73.90809)",EAST 152 STREET,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462748,Taxi,Bike,,, +09/28/2021,15:00,,,40.780502,-73.825905,"(40.780502, -73.825905)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461970,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,11:30,QUEENS,11434,40.68158,-73.76548,"(40.68158, -73.76548)",MERRICK BOULEVARD,127 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461922,Sedan,,,, +09/26/2021,20:15,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",10 AVENUE,WEST 29 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462547,Sedan,,,, +09/28/2021,9:35,BROOKLYN,11217,40.674755,-73.97211,"(40.674755, -73.97211)",LINCOLN PLACE,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461994,Bus,Sedan,,, +09/28/2021,0:13,,,40.693203,-73.953995,"(40.693203, -73.953995)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461871,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,22:33,BROOKLYN,11212,40.66843,-73.91919,"(40.66843, -73.91919)",PITKIN AVENUE,GRAFTON STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462344,Pick-up Truck,Sedan,,, +09/28/2021,8:02,MANHATTAN,10016,40.748436,-73.984566,"(40.748436, -73.984566)",WEST 34 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4462094,Bus,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,19:12,BRONX,10462,40.833572,-73.849785,"(40.833572, -73.849785)",,,2252 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462121,Sedan,Sedan,,, +09/28/2021,17:00,BROOKLYN,11220,40.637394,-74.00664,"(40.637394, -74.00664)",,,816 56 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462420,Sedan,Sedan,,, +09/28/2021,12:50,,,40.768795,-73.958374,"(40.768795, -73.958374)",EAST 72 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462380,van,Taxi,,, +09/28/2021,7:00,,,40.643215,-74.008705,"(40.643215, -74.008705)",6 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461886,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,21:56,BRONX,10474,40.812634,-73.88313,"(40.812634, -73.88313)",RANDALL AVENUE,WHITTIER STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462060,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,20:50,BRONX,10470,40.899185,-73.8562,"(40.899185, -73.8562)",NEREID AVENUE,MATILDA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462606,Convertible,,,, +09/28/2021,10:54,,,40.692844,-73.99311,"(40.692844, -73.99311)",CLINTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462768,Motorcycle,Sedan,,, +09/28/2021,15:30,BRONX,10462,40.855953,-73.86766,"(40.855953, -73.86766)",,,2187 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462202,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,10:00,,,40.575714,-73.96301,"(40.575714, -73.96301)",BRIGHTWATER COURT,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462498,,,,, +09/24/2021,22:38,,,,,,THROGS NECK BRIDGE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4462622,Sedan,Box Truck,,, +09/28/2021,1:40,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462000,Sedan,,,, +09/23/2021,22:20,,,40.771286,-73.9467,"(40.771286, -73.9467)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4462732,Taxi,Sedan,,, +09/28/2021,16:29,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462041,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,7:57,BROOKLYN,11215,40.677063,-73.98328,"(40.677063, -73.98328)",,,223 4 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462552,Beverage Truck,Sedan,,, +09/28/2021,9:40,BRONX,10459,40.82403,-73.89189,"(40.82403, -73.89189)",,,1039 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461934,Station Wagon/Sport Utility Vehicle,Revel Mo'e,,, +09/27/2021,18:48,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",EAST 176 STREET,GRAND CONCOURSE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4462475,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,10:45,BROOKLYN,11203,40.64148,-73.939766,"(40.64148, -73.939766)",,,3902 AVENUE D,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462250,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,23:55,QUEENS,11422,40.659092,-73.74029,"(40.659092, -73.74029)",MAYDA ROAD,243 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462330,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,14:00,BRONX,10455,40.819035,-73.91395,"(40.819035, -73.91395)",,,2996 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4462750,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/26/2021,12:10,BRONX,10468,40.867035,-73.896324,"(40.867035, -73.896324)",EAST KINGSBRIDGE ROAD,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462463,Sedan,,,, +09/25/2021,5:00,,,,,,11 AVENUE,11th Ave,,1,0,0,0,0,0,1,0,Unspecified,,,,,4462539,Moped,,,, +09/28/2021,19:00,QUEENS,11385,40.699604,-73.90108,"(40.699604, -73.90108)",,,1826 GEORGE STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4462085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,10:45,BRONX,10458,40.867657,-73.882996,"(40.867657, -73.882996)",,,2971 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462515,Sedan,Sedan,,, +09/28/2021,14:00,BROOKLYN,11209,40.633335,-74.021065,"(40.633335, -74.021065)",,,6901 5 AVENUE,2,0,2,0,0,0,0,0,,,,,,4462111,,,,, +09/28/2021,15:05,,,40.61111,-73.9526,"(40.61111, -73.9526)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462049,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/28/2021,18:10,MANHATTAN,10035,40.806717,-73.94087,"(40.806717, -73.94087)",,,23 EAST 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462190,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/25/2021,21:00,,,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4462598,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,15:15,,,40.712727,-73.77666,"(40.712727, -73.77666)",184 PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462014,Sedan,Pick-up Truck,,, +09/28/2021,8:00,BROOKLYN,11238,40.684544,-73.96509,"(40.684544, -73.96509)",WASHINGTON AVENUE,GATES AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462483,Sedan,,,, +09/28/2021,23:29,,,40.715046,-73.964806,"(40.715046, -73.964806)",WYTHE AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4462638,Sedan,Sedan,,, +09/28/2021,7:43,,,,,,BEACH 17 STREET,SEAGRIT BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4462141,Bus,,,, +09/28/2021,14:40,BRONX,10474,40.80524,-73.882095,"(40.80524, -73.882095)",,,1341 RYAWA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462056,Tractor Truck Diesel,Tractor Truck Diesel,,, +09/28/2021,20:00,,,40.68484,-73.80607,"(40.68484, -73.80607)",111 AVENUE,VANWYCK EXPRESSWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462145,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,17:00,BRONX,10458,40.858303,-73.892784,"(40.858303, -73.892784)",EAST 187 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4462102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,15:07,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462522,Sedan,Trailer,,, +09/28/2021,2:35,,,40.64644,-73.91289,"(40.64644, -73.91289)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461693,Tractor Truck Diesel,,,, +09/23/2021,15:36,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462562,Sedan,Sedan,,, +08/24/2021,23:30,BROOKLYN,11201,40.6985,-73.98698,"(40.6985, -73.98698)",JAY STREET,NASSAU STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462703,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,15:51,BROOKLYN,11212,40.655148,-73.91094,"(40.655148, -73.91094)",,,601 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462034,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,18:48,BRONX,10474,40.810608,-73.88356,"(40.810608, -73.88356)",OAK POINT AVENUE,LONGFELLOW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462442,Sedan,3-Door,,, +09/22/2021,6:10,,,40.682507,-73.94375,"(40.682507, -73.94375)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462687,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,15:50,BROOKLYN,11249,40.700848,-73.96193,"(40.700848, -73.96193)",WILLIAMSBURG STREET WEST,HEWES STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462633,Bike,Sedan,,, +09/28/2021,9:43,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462506,Sedan,,,, +09/28/2021,6:45,QUEENS,11368,40.756207,-73.8577,"(40.756207, -73.8577)",,,34-76 111 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461784,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,19:40,,,40.762913,-73.96981,"(40.762913, -73.96981)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462532,Taxi,,,, +09/28/2021,13:00,,,,,,CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462004,Sedan,,,, +09/28/2021,18:40,,,40.84028,-73.92741,"(40.84028, -73.92741)",UNIVERSITY AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4462103,Sedan,Bike,,, +09/16/2021,7:45,,,40.69366,-73.983795,"(40.69366, -73.983795)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462581,Sedan,Van,,, +09/28/2021,18:15,BROOKLYN,11235,40.59019,-73.94576,"(40.59019, -73.94576)",,,2537 EAST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462050,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,15:55,BROOKLYN,11221,40.68915,-73.924995,"(40.68915, -73.924995)",,,974 GATES AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4462433,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,12:10,,,40.859623,-73.88747,"(40.859623, -73.88747)",EAST FORDHAM ROAD,BATHGATE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462482,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/28/2021,8:45,BRONX,10463,40.886528,-73.89979,"(40.886528, -73.89979)",BROADWAY,WEST 240 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462080,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,20:40,BROOKLYN,11236,,,,,,8725 Avenue D,1,0,1,0,0,0,0,0,,,,,,4462669,,,,, +09/22/2021,14:00,MANHATTAN,10019,40.765877,-73.98883,"(40.765877, -73.98883)",,,440 WEST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462551,Sedan,,,, +09/28/2021,7:10,BRONX,10474,40.815964,-73.88688,"(40.815964, -73.88688)",,,750 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4461933,Sedan,,,, +09/28/2021,12:50,,,40.770683,-73.79598,"(40.770683, -73.79598)",169 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461973,Sedan,,,, +09/17/2021,17:36,,,40.66095,-73.92906,"(40.66095, -73.92906)",REMSEN AVENUE,RUTLAND ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462654,Pick-up Truck,,,, +09/28/2021,12:00,MANHATTAN,10026,40.801155,-73.959656,"(40.801155, -73.959656)",MANHATTAN AVENUE,WEST 110 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,8:50,BROOKLYN,11222,40.731422,-73.94641,"(40.731422, -73.94641)",GREENPOINT AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462408,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +09/18/2021,15:00,QUEENS,11694,40.58393,-73.83093,"(40.58393, -73.83093)",BEACH 108 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4462593,Sedan,,,, +09/28/2021,8:40,,,40.642864,-74.01266,"(40.642864, -74.01266)",54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461887,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,12:20,MANHATTAN,10036,40.760117,-73.98484,"(40.760117, -73.98484)",BROADWAY,WEST 48 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462155,Sedan,Taxi,,, +09/28/2021,18:23,BROOKLYN,11203,40.644592,-73.944084,"(40.644592, -73.944084)",CORTELYOU ROAD,EAST 35 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462254,Motorcycle,Sedan,,, +09/28/2021,11:17,QUEENS,11385,40.693665,-73.89658,"(40.693665, -73.89658)",,,80-23 CYPRESS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461955,Box Truck,Sedan,,, +09/28/2021,20:00,BRONX,10451,40.82294,-73.91451,"(40.82294, -73.91451)",EAST 159 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462059,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,9:20,,,40.589043,-73.98381,"(40.589043, -73.98381)",AVENUE X,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462499,Sedan,Bus,,, +09/26/2021,2:00,MANHATTAN,10018,40.757107,-73.99731,"(40.757107, -73.99731)",WEST 38 STREET,10 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4462538,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,12:40,BROOKLYN,11222,0,0,"(0.0, 0.0)",,,14 MONITOR STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462421,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,13:03,MANHATTAN,10022,,,,1 AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462020,Sedan,Chassis Cab,,, +09/28/2021,14:30,QUEENS,11420,40.67224,-73.805145,"(40.67224, -73.805145)",,,133-18 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462069,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/25/2021,19:59,BROOKLYN,11235,40.593807,-73.94062,"(40.593807, -73.94062)",NOSTRAND AVENUE,AVENUE X,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4462763,E-Scooter,,,, +09/28/2021,14:25,BRONX,10466,40.88777,-73.857735,"(40.88777, -73.857735)",,,771 EAST 226 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462610,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,19:35,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462488,Taxi,Sedan,,, +09/23/2021,14:00,BROOKLYN,11211,40.71409,-73.9556,"(40.71409, -73.9556)",,,377 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462733,3-Door,,,, +09/28/2021,1:20,QUEENS,11365,40.736526,-73.77947,"(40.736526, -73.77947)",,,193-15 69 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462230,Taxi,Sedan,,, +09/28/2021,1:10,,,40.60228,-74.140366,"(40.60228, -74.140366)",,,835 FOREST HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4461842,Sedan,,,, +09/28/2021,12:20,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,Unsafe Lane Changing,,4462378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/28/2021,14:03,BROOKLYN,11217,,,,,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4461995,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,0:00,STATEN ISLAND,10304,40.604084,-74.08521,"(40.604084, -74.08521)",GRASMERE AVENUE,MOSEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416477,Sedan,Sedan,,, +05/21/2021,14:00,MANHATTAN,10128,40.780125,-73.95304,"(40.780125, -73.95304)",3 AVENUE,EAST 88 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4418876,Moped,,,, +09/28/2021,18:30,BROOKLYN,11203,40.66323,-73.93161,"(40.66323, -73.93161)",REMSEN AVENUE,UTICA AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,Unspecified,,,4462263,Bike,Sedan,,, +09/28/2021,15:25,QUEENS,11368,,,,,,126-02 NORTHERN BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462169,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,17:13,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4462090,Sedan,,,, +09/25/2021,1:28,,,40.74561,-73.84785,"(40.74561, -73.84785)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4462780,Sedan,,,, +09/26/2021,19:00,,,40.748356,-74.00369,"(40.748356, -74.00369)",10 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4462543,Bike,E-Scooter,,, +09/28/2021,16:23,BRONX,10472,40.82989,-73.873276,"(40.82989, -73.873276)",WESTCHESTER AVENUE,BRONX RIVER PARKWAY,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4462118,Sedan,Bus,,, +09/27/2021,13:03,,,40.5763,-73.96854,"(40.5763, -73.96854)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462493,Sedan,Ambulance,,, +09/28/2021,8:45,,,40.74622,-73.94553,"(40.74622, -73.94553)",23 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4462039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +09/28/2021,17:00,BROOKLYN,11211,40.713955,-73.94259,"(40.713955, -73.94259)",HUMBOLDT STREET,DEVOE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4462410,Pick-up Truck,Sedan,,, +09/28/2021,15:00,BRONX,10467,40.884857,-73.87848,"(40.884857, -73.87848)",EAST 213 STREET,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462464,Sedan,,,, +09/28/2021,17:52,MANHATTAN,10028,40.773975,-73.948555,"(40.773975, -73.948555)",EAST 83 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462067,Dump,Sedan,,, +09/28/2021,8:18,QUEENS,11418,40.701447,-73.83743,"(40.701447, -73.83743)",85 AVENUE,113 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4462282,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,7:50,QUEENS,11434,40.679752,-73.77857,"(40.679752, -73.77857)",122 AVENUE,SMITH STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461869,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,14:28,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462134,Sedan,Van,,, +09/28/2021,7:55,,,40.834606,-73.863976,"(40.834606, -73.863976)",CROSS BRONX EXPRESSWAY,LELAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4461977,Tractor Truck Diesel,Sedan,,, +09/28/2021,21:06,STATEN ISLAND,10301,40.6127,-74.112915,"(40.6127, -74.112915)",WINDSOR ROAD,LITTLE CLOVE ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462151,Sedan,Sedan,,, +09/28/2021,12:30,MANHATTAN,10027,,,,,,3280 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4462033,Sedan,,,, +09/28/2021,11:16,BROOKLYN,11220,40.638313,-74.00663,"(40.638313, -74.00663)",8 AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,23:30,BROOKLYN,11220,40.637066,-74.00606,"(40.637066, -74.00606)",,,853 56 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462514,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/28/2021,16:30,QUEENS,11385,40.700718,-73.9017,"(40.700718, -73.9017)",70 AVENUE,ONDERDONK AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462083,E-Scooter,Sedan,,, +09/27/2021,13:00,,,0,0,"(0.0, 0.0)",BAYARD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462526,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,0:00,QUEENS,11430,40.66615,-73.80575,"(40.66615, -73.80575)",SOUTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Following Too Closely,,,,4461700,Sedan,Sedan,,, +09/28/2021,15:45,MANHATTAN,10001,40.74628,-73.98921,"(40.74628, -73.98921)",,,54 WEST 29 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462567,Box Truck,Ambulance,,, +09/24/2021,11:10,STATEN ISLAND,10305,40.619297,-74.06999,"(40.619297, -74.06999)",,,951 BAY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462441,Sedan,Tractor Truck Diesel,,, +09/28/2021,19:00,BROOKLYN,11210,40.62919,-73.94707,"(40.62919, -73.94707)",,,3016 AVENUE I,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462696,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,23:35,,,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,,,1,0,0,0,0,0,0,0,Glare,Reaction to Uninvolved Vehicle,,,,4462659,Sedan,E-Bike,,, +09/28/2021,22:43,BROOKLYN,11203,0,0,"(0.0, 0.0)",LENOX ROAD,EAST 45 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4462255,Sedan,Ambulance,Station Wagon/Sport Utility Vehicle,, +05/22/2021,5:05,,,40.865303,-73.89006,"(40.865303, -73.89006)",EAST 195 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419127,Sedan,,,, +05/19/2021,15:55,MANHATTAN,10031,40.82451,-73.95186,"(40.82451, -73.95186)",WEST 142 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4420084,Moped,Sedan,,, +05/22/2021,2:40,,,40.6862,-73.950745,"(40.6862, -73.950745)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419403,Tractor Truck Diesel,Sedan,,, +05/22/2021,8:30,BROOKLYN,11228,40.617813,-74.00644,"(40.617813, -74.00644)",14 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,0:23,QUEENS,11429,40.712128,-73.736404,"(40.712128, -73.736404)",104 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420008,Sedan,Sedan,,, +05/15/2021,20:27,QUEENS,11416,40.680183,-73.86034,"(40.680183, -73.86034)",,,77-16 101 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419972,,,,, +05/22/2021,15:00,BROOKLYN,11211,40.711536,-73.94494,"(40.711536, -73.94494)",,,690 GRAND STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4419804,Bike,Sedan,,, +05/15/2021,17:10,MANHATTAN,10034,40.86674,-73.92873,"(40.86674, -73.92873)",DYCKMAN STREET,PAYSON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4419780,Sedan,Moped,,, +05/22/2021,0:40,,,40.715763,-73.74654,"(40.715763, -73.74654)",JAMAICA AVENUE,212 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418956,,,,, +05/22/2021,19:39,BROOKLYN,11212,40.66599,-73.9225,"(40.66599, -73.9225)",,,692 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419206,Sedan,,,, +05/22/2021,19:30,,,40.679276,-73.92906,"(40.679276, -73.92906)",FULTON STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420018,Sedan,,,, +09/28/2021,12:00,MANHATTAN,10005,40.704823,-74.006905,"(40.704823, -74.006905)",WALL STREET,FRONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461952,Box Truck,PK,,, +05/22/2021,12:30,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419332,Sedan,Sedan,,, +05/22/2021,18:47,BRONX,10457,40.84697,-73.89304,"(40.84697, -73.89304)",EAST 178 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419676,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,20:39,BRONX,10454,40.807766,-73.91974,"(40.807766, -73.91974)",,,494 EAST 138 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4419860,E-Bike,,,, +05/05/2021,7:00,QUEENS,11411,40.686268,-73.73062,"(40.686268, -73.73062)",,,120-04 234 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419919,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,1:30,BROOKLYN,11221,40.69687,-73.923035,"(40.69687, -73.923035)",CENTRAL AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4418976,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,13:34,BRONX,10466,40.890877,-73.858765,"(40.890877, -73.858765)",,,4106 WHITE PLAINS ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419343,Sedan,Bike,,, +05/22/2021,2:18,BROOKLYN,11206,40.70162,-73.938126,"(40.70162, -73.938126)",,,849 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419801,Sedan,,,, +05/19/2021,15:10,MANHATTAN,10022,40.763588,-73.97142,"(40.763588, -73.97142)",EAST 59 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420110,Sedan,E-Scooter,,, +05/21/2021,22:53,STATEN ISLAND,10308,40.54783,-74.13952,"(40.54783, -74.13952)",HYLAN BOULEVARD,FIELDWAY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419846,Convertible,Pick-up Truck,,, +05/22/2021,18:05,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419625,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,5:59,QUEENS,11372,40.75159,-73.88655,"(40.75159, -73.88655)",80 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4418992,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,21:20,MANHATTAN,10036,40.760593,-73.98795,"(40.760593, -73.98795)",,,302 WEST 47 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4420120,Sedan,Sedan,,, +05/22/2021,1:55,MANHATTAN,10036,40.757385,-73.98226,"(40.757385, -73.98226)",WEST 46 STREET,AVENUE OF THE AMERICAS,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4420119,Sedan,Sedan,,, +05/22/2021,8:12,BROOKLYN,11236,40.637775,-73.896675,"(40.637775, -73.896675)",,,9510 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419087,Sedan,Pick-up Truck,,, +05/22/2021,17:52,MANHATTAN,10128,40.77723,-73.946175,"(40.77723, -73.946175)",YORK AVENUE,EAST 88 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419408,Sedan,,,, +05/22/2021,17:00,BROOKLYN,11221,40.692593,-73.91551,"(40.692593, -73.91551)",CENTRAL AVENUE,MADISON STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4419989,Sedan,Sedan,,, +05/22/2021,15:48,,,40.673008,-73.78809,"(40.673008, -73.78809)",SUTPHIN BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419442,Sedan,Sedan,Sedan,, +05/22/2021,3:45,,,40.756325,-73.803604,"(40.756325, -73.803604)",45 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4419519,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/22/2021,4:20,,,40.661106,-73.87529,"(40.661106, -73.87529)",WORTMAN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,13:45,QUEENS,11417,40.676727,-73.85984,"(40.676727, -73.85984)",PITKIN AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4419068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,1:02,BRONX,10455,40.81257,-73.905914,"(40.81257, -73.905914)",,,814 EAST 149 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4419030,Sedan,Sedan,,, +05/18/2021,13:00,,,,,,MATTHEWSON ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419886,Sedan,Sedan,,, +05/21/2021,16:45,,,40.703075,-73.79064,"(40.703075, -73.79064)",168 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4419911,Sedan,Bus,,, +05/21/2021,22:00,BRONX,10453,40.846954,-73.91863,"(40.846954, -73.91863)",NELSON AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4419935,Sedan,,,, +05/22/2021,9:14,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,130 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4419054,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/22/2021,3:45,BRONX,10454,40.806263,-73.92017,"(40.806263, -73.92017)",EAST 136 STREET,BROOK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419031,Tractor Truck Diesel,Sedan,,, +05/22/2021,2:30,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419819,Flat Rack,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,22:20,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",WEST 180 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420130,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,3:47,BRONX,10468,40.861526,-73.908516,"(40.861526, -73.908516)",,,2292 LORING PLACE NORTH,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4419083,Sedan,Sedan,Taxi,, +05/22/2021,1:08,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4419010,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,16:00,,,40.840874,-73.91979,"(40.840874, -73.91979)",CROMWELL AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4420100,Tanker,Sedan,Sedan,, +05/22/2021,17:20,BROOKLYN,11219,40.637894,-73.99989,"(40.637894, -73.99989)",51 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419317,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,9:10,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,15:20,,,40.753082,-73.72459,"(40.753082, -73.72459)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,23:40,,,40.7238,-73.8367,"(40.7238, -73.8367)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4420025,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/22/2021,18:45,,,40.668964,-73.87666,"(40.668964, -73.87666)",MONTAUK AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4419596,Sedan,Sedan,,, +05/22/2021,23:03,,,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419460,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,17:30,,,40.665493,-73.88475,"(40.665493, -73.88475)",NEW LOTS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419579,Sedan,Sedan,,, +05/22/2021,14:30,,,40.62305,-74.02114,"(40.62305, -74.02114)",81 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419018,Sedan,,,, +05/22/2021,18:19,QUEENS,11420,40.68665,-73.80918,"(40.68665, -73.80918)",135 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419073,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,18:00,BRONX,10452,40.84518,-73.91417,"(40.84518, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419222,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:30,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4419873,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/16/2021,8:30,STATEN ISLAND,10308,40.563774,-74.15586,"(40.563774, -74.15586)",GIFFORDS LANE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4419941,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,12:20,QUEENS,11434,40.668026,-73.77343,"(40.668026, -73.77343)",NORTH CONDUIT AVENUE,LATHAM LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419441,Sedan,Sedan,,, +05/22/2021,13:00,BROOKLYN,11237,40.70688,-73.92865,"(40.70688, -73.92865)",PORTER AVENUE,HARRISON PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419755,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/22/2021,19:40,STATEN ISLAND,10304,40.618515,-74.08609,"(40.618515, -74.08609)",VANDUZER STREET,WAVERLY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419891,Sedan,Sedan,,, +05/22/2021,10:59,BROOKLYN,11236,40.6408,-73.88332,"(40.6408, -73.88332)",,,10802 AVENUE N,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419088,Sedan,,,, +05/22/2021,8:00,QUEENS,11417,40.6794,-73.8586,"(40.6794, -73.8586)",79 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419927,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,11:05,BRONX,10456,40.831417,-73.899864,"(40.831417, -73.899864)",,,1307 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419174,Sedan,,,, +05/22/2021,20:55,,,40.82364,-73.87994,"(40.82364, -73.87994)",BRUCKNER BOULEVARD,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4419823,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,DELIVERY T, +05/22/2021,13:30,BRONX,10469,40.872803,-73.85428,"(40.872803, -73.85428)",,,3260 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419042,Sedan,,,, +05/22/2021,22:45,,,40.820293,-73.94378,"(40.820293, -73.94378)",WEST 141 STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4419675,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,10:29,QUEENS,11373,40.729942,-73.88749,"(40.729942, -73.88749)",,,54-40 74 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,23:00,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419556,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,6:40,BRONX,10458,40.85908,-73.898186,"(40.85908, -73.898186)",RYER AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419936,Sedan,Sedan,,, +05/22/2021,15:35,MANHATTAN,10036,40.75883,-73.981766,"(40.75883, -73.981766)",,,1221 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420105,Sedan,E-Bike,,, +09/28/2021,7:52,MANHATTAN,10035,40.800663,-73.94436,"(40.800663, -73.94436)",EAST 117 STREET,MADISON AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4461957,Sedan,Sedan,,, +05/22/2021,12:55,QUEENS,11105,40.784622,-73.91648,"(40.784622, -73.91648)",SHORE BOULEVARD,20 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,15:53,BROOKLYN,11206,40.70321,-73.94626,"(40.70321, -73.94626)",MOORE STREET,BROADWAY,,8,0,0,0,0,0,8,0,Passing or Lane Usage Improper,Unspecified,,,,4419786,Sedan,Sedan,,, +05/22/2021,12:30,BRONX,10469,40.870483,-73.84324,"(40.870483, -73.84324)",,,3040 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419347,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,5:58,,,,,,SOUTHERN STATE PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420009,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,21:42,,,40.66241,-73.90987,"(40.66241, -73.90987)",CHESTER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419190,Sedan,Sedan,,, +05/22/2021,10:45,,,40.83863,-73.93348,"(40.83863, -73.93348)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420020,Moped,Sedan,,, +05/22/2021,0:05,QUEENS,11434,40.672848,-73.76405,"(40.672848, -73.76405)",FARMERS BOULEVARD,138 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,20:35,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",GRAND CONCOURSE,EAST 144 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419865,E-Bike,,,, +05/22/2021,23:25,,,40.72713,-73.81248,"(40.72713, -73.81248)",73 AVENUE,KISSENA BOULEVARD,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4419096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,21:30,,,40.714073,-73.95534,"(40.714073, -73.95534)",HAVEMEYER STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,15:30,BROOKLYN,11228,40.618168,-74.01455,"(40.618168, -74.01455)",,,1169 82 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419900,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,20:00,,,40.71717,-73.73543,"(40.71717, -73.73543)",SPRINGFIELD BOULEVARD,97 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419384,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,17:20,BROOKLYN,11212,40.663006,-73.90594,"(40.663006, -73.90594)",,,315 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419212,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/22/2021,10:55,,,40.54397,-74.21196,"(40.54397, -74.21196)",MASON BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419386,Pick-up Truck,,,, +05/22/2021,13:00,BROOKLYN,11218,40.63544,-73.97912,"(40.63544, -73.97912)",DITMAS AVENUE,DAHILL ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419335,Sedan,Sedan,,, +05/20/2021,2:53,,,40.851696,-73.932,"(40.851696, -73.932)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419793,Dump,Sedan,,, +05/22/2021,1:57,BROOKLYN,11220,40.6446,-74.02161,"(40.6446, -74.02161)",58 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418957,Sedan,,,, +05/20/2021,14:45,BROOKLYN,11222,40.73046,-73.9515,"(40.73046, -73.9515)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Following Too Closely,,,,4419835,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/10/2021,0:35,,,40.678238,-73.94415,"(40.678238, -73.94415)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4419923,Sedan,Sedan,Sedan,, +05/22/2021,22:30,BRONX,10459,40.821518,-73.90237,"(40.821518, -73.90237)",,,896 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419149,Sedan,,,, +05/22/2021,19:10,BROOKLYN,11222,40.727104,-73.9572,"(40.727104, -73.9572)",,,49 FRANKLIN STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,10:40,QUEENS,11427,40.724693,-73.7541,"(40.724693, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419918,Sedan,,,, +05/04/2021,23:50,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419898,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,15:45,MANHATTAN,10033,40.851322,-73.94029,"(40.851322, -73.94029)",CABRINI BOULEVARD,WEST 181 STREET,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Passing or Lane Usage Improper,,,,4419779,Moped,Bike,,, +05/22/2021,3:05,BROOKLYN,11237,40.6967,-73.91031,"(40.6967, -73.91031)",PUTNAM AVENUE,IRVING AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4418977,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,8:50,MANHATTAN,10034,40.869316,-73.91674,"(40.869316, -73.91674)",WEST 214 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4419802,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,9:48,QUEENS,11427,40.724476,-73.758316,"(40.724476, -73.758316)",,,209-35 86 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,9:21,MANHATTAN,10019,40.764694,-73.97807,"(40.764694, -73.97807)",,,123 WEST 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420111,Taxi,Sedan,,, +05/22/2021,3:45,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419340,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:30,MANHATTAN,10029,40.789684,-73.95446,"(40.789684, -73.95446)",,,1176 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419848,Sedan,,,, +05/22/2021,5:45,STATEN ISLAND,10304,40.62962,-74.07667,"(40.62962, -74.07667)",BAY STREET,WAVE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419191,Sedan,Sedan,,, +05/22/2021,11:00,,,40.607258,-73.96727,"(40.607258, -73.96727)",QUENTIN ROAD,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4419624,Sedan,Bike,,, +05/21/2021,17:20,MANHATTAN,10036,40.763123,-73.99666,"(40.763123, -73.99666)",,,617 11 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420112,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,11:42,BROOKLYN,11206,40.7042,-73.9427,"(40.7042, -73.9427)",,,77 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,14:05,MANHATTAN,10031,40.829597,-73.94814,"(40.829597, -73.94814)",BROADWAY,WEST 150 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,16:05,QUEENS,11355,40.755886,-73.83044,"(40.755886, -73.83044)",,,133-38 SANFORD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419283,Sedan,,,, +05/16/2021,9:16,MANHATTAN,10029,40.792538,-73.943985,"(40.792538, -73.943985)",,,1954 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419974,Sedan,,,, +05/21/2021,19:04,,,40.639053,-73.9213,"(40.639053, -73.9213)",EAST 58 STREET,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4419912,Motorcycle,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/22/2021,15:40,BRONX,10473,40.821198,-73.876495,"(40.821198, -73.876495)",,,880 BOYNTON AVENUE,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4419822,Sedan,Box Truck,,, +09/28/2021,8:20,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462192,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,17:23,QUEENS,11428,40.716587,-73.74294,"(40.716587, -73.74294)",214 PLACE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420010,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,11:09,,,,,,32 AVENUE,CLEARVIEW EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419040,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,15:00,QUEENS,11411,40.6973,-73.727875,"(40.6973, -73.727875)",115 AVENUE,231 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419057,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,11:40,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",SEAVIEW AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4419472,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,13:52,,,40.862495,-73.9342,"(40.862495, -73.9342)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420134,Sedan,,,, +05/18/2021,12:30,QUEENS,11374,40.73611,-73.85639,"(40.73611, -73.85639)",HORACE HARDING EXPRESSWAY,102 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419907,Sedan,Sedan,,, +05/22/2021,0:30,,,40.86157,-73.913185,"(40.86157, -73.913185)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419137,Sedan,Sedan,,, +05/22/2021,2:51,,,40.67312,-73.878654,"(40.67312, -73.878654)",BELMONT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4419591,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/19/2021,22:00,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4419857,Station Wagon/Sport Utility Vehicle,Convertible,,, +05/22/2021,9:50,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,WEST HOUSTON STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419023,Bike,,,, +05/22/2021,22:11,BROOKLYN,11236,40.653378,-73.90658,"(40.653378, -73.90658)",ROCKAWAY AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419401,Sedan,,,, +05/22/2021,16:14,,,40.78024,-73.961365,"(40.78024, -73.961365)",5 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419491,Bike,,,, +05/22/2021,17:50,,,40.7597,-73.80031,"(40.7597, -73.80031)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419048,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,20:00,BROOKLYN,11212,40.66489,-73.91731,"(40.66489, -73.91731)",,,167 LEGION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419216,Sedan,,,, +05/22/2021,15:00,QUEENS,11420,40.67576,-73.81,"(40.67576, -73.81)",128 STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419762,Sedan,Sedan,,, +05/20/2021,16:10,,,40.858273,-73.93182,"(40.858273, -73.93182)",WEST 193 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4419814,Bus,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,21:00,BROOKLYN,11208,40.684082,-73.874344,"(40.684082, -73.874344)",,,183 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419603,Sedan,,,, +05/21/2021,21:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4420065,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/22/2021,13:48,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419120,Sedan,Sedan,,, +05/22/2021,22:15,MANHATTAN,10011,40.73982,-73.9931,"(40.73982, -73.9931)",,,55 WEST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419262,Sedan,,,, +05/22/2021,12:30,QUEENS,11423,40.713696,-73.75481,"(40.713696, -73.75481)",,,205-09 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4419955,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,11:35,STATEN ISLAND,10306,40.569927,-74.09108,"(40.569927, -74.09108)",LINCOLN AVENUE,CAPODANNO BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419940,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,19:00,QUEENS,11432,40.71354,-73.809875,"(40.71354, -73.809875)",,,150-30 84 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4419874,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,0:00,QUEENS,11429,40.71256,-73.732994,"(40.71256, -73.732994)",HEMPSTEAD AVENUE,221 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4419718,Sedan,Sedan,,, +05/22/2021,22:48,BRONX,10468,40.859303,-73.89884,"(40.859303, -73.89884)",EAST 184 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4419928,E-Scooter,,,, +05/22/2021,19:11,BRONX,10452,40.832623,-73.92537,"(40.832623, -73.92537)",EAST 165 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4419453,Sedan,Sedan,Sedan,, +05/22/2021,7:40,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418985,Sedan,,,, +05/22/2021,17:00,BROOKLYN,11207,40.662067,-73.892555,"(40.662067, -73.892555)",,,408 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419578,Station Wagon/Sport Utility Vehicle,,,, +05/15/2021,20:11,,,,,,14 AVENUE,WHITESTONE EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420125,Pick-up Truck,,,, +05/22/2021,23:00,STATEN ISLAND,10301,40.60057,-74.11339,"(40.60057, -74.11339)",TODT HILL ROAD,MERRICK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4419084,Sedan,,,, +05/21/2021,15:00,QUEENS,11375,40.720966,-73.8429,"(40.720966, -73.8429)",QUEENS BOULEVARD,71 ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4420024,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,20:55,QUEENS,11368,40.750225,-73.85515,"(40.750225, -73.85515)",111 STREET,42 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419505,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,18:56,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4419407,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/22/2021,6:54,BROOKLYN,11204,40.63067,-73.97732,"(40.63067, -73.97732)",,,4401 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419312,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,9:30,,,40.691933,-73.79829,"(40.691933, -73.79829)",109 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4419954,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/21/2021,23:15,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419818,AMBULANCE,Sedan,,, +05/22/2021,23:56,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4419370,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,22:30,BRONX,10460,40.83887,-73.87811,"(40.83887, -73.87811)",EAST 177 STREET,DEVOE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419719,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,22:30,,,40.697605,-73.92962,"(40.697605, -73.92962)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4419987,Motorcycle,Sedan,,, +05/22/2021,18:15,,,,,,BOWERY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419168,Station Wagon/Sport Utility Vehicle,Freight,,, +05/22/2021,9:32,BROOKLYN,11207,40.67212,-73.89594,"(40.67212, -73.89594)",,,234 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419593,Pick-up Truck,Sedan,,, +05/22/2021,13:16,BRONX,10458,40.872585,-73.88128,"(40.872585, -73.88128)",BAINBRIDGE AVENUE,MOSHOLU PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419650,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,16:50,,,40.740025,-73.97626,"(40.740025, -73.97626)",EAST 28 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4419256,Moped,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,10:50,QUEENS,11385,40.693844,-73.89692,"(40.693844, -73.89692)",CABOT ROAD,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542474,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,16:45,QUEENS,11368,40.750893,-73.855484,"(40.750893, -73.855484)",111 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419512,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,8:20,,,40.623657,-74.02064,"(40.623657, -74.02064)",7 AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4419006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,8:45,,,40.736988,-73.97489,"(40.736988, -73.97489)",EAST 25 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419381,Sedan,,,, +05/22/2021,14:50,QUEENS,11420,40.666138,-73.82589,"(40.666138, -73.82589)",,,115-13 NORTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4419065,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/22/2021,5:00,BRONX,10452,40.843643,-73.91303,"(40.843643, -73.91303)",WALTON AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420099,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,12:01,STATEN ISLAND,10312,40.524,-74.186104,"(40.524, -74.186104)",HYLAN BOULEVARD,HUGUENOT AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4419387,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,4:49,BROOKLYN,11233,40.683235,-73.92429,"(40.683235, -73.92429)",,,556 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4419148,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/22/2021,0:00,MANHATTAN,10018,40.757294,-73.99719,"(40.757294, -73.99719)",,,501 10 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4419380,Bike,Sedan,,, +05/09/2021,17:40,BROOKLYN,11205,40.696323,-73.975784,"(40.696323, -73.975784)",,,101 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,10:40,BROOKLYN,11206,40.70024,-73.94782,"(40.70024, -73.94782)",,,11 BARTLETT STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419785,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,14:55,QUEENS,11105,40.784622,-73.91648,"(40.784622, -73.91648)",SHORE BOULEVARD,20 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419300,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,14:43,MANHATTAN,10035,40.806408,-73.94016,"(40.806408, -73.94016)",EAST 126 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,1:05,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418964,Sedan,Sedan,,, +05/21/2021,10:30,,,40.577168,-74.11804,"(40.577168, -74.11804)",BURBANK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419836,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,14:00,BROOKLYN,11222,40.725895,-73.95501,"(40.725895, -73.95501)",,,130 DOBBIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419632,Station Wagon/Sport Utility Vehicle,Van,,, +05/19/2021,15:40,,,40.676548,-73.96354,"(40.676548, -73.96354)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4419922,Sedan,Sedan,,, +05/16/2021,16:15,,,40.71958,-73.83978,"(40.71958, -73.83978)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,11:00,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",ELIOT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419494,Sedan,Sedan,,, +09/17/2021,11:40,QUEENS,11379,40.712227,-73.88436,"(40.712227, -73.88436)",METROPOLITAN AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4462561,Sedan,Bike,,, +05/22/2021,16:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419049,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,21:55,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,RALPH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419423,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,0:50,MANHATTAN,10033,40.85306,-73.931,"(40.85306, -73.931)",SAINT NICHOLAS AVENUE,WEST 187 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419834,Sedan,Sedan,,, +05/22/2021,18:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419072,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,14:47,,,40.813377,-73.96542,"(40.813377, -73.96542)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419476,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,17:30,BRONX,10454,40.80623,-73.91206,"(40.80623, -73.91206)",JACKSON AVENUE,EAST 140 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419864,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,14:15,,,40.789032,-73.78797,"(40.789032, -73.78797)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419117,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,0:31,,,40.836605,-73.93931,"(40.836605, -73.93931)",WEST 163 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,13:15,QUEENS,11433,40.69755,-73.79756,"(40.69755, -73.79756)",,,106-20 157 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419906,Ambulance,Sedan,,, +05/22/2021,11:49,,,40.845253,-73.90935,"(40.845253, -73.90935)",CROSS BRONX EXPRESSWAY,MORRIS AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4419015,Sedan,Sedan,,, +05/22/2021,14:30,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419428,Sedan,,,, +05/21/2021,6:00,MANHATTAN,10036,40.758476,-73.98287,"(40.758476, -73.98287)",,,133 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420104,Sedan,,,, +05/22/2021,8:15,MANHATTAN,10032,40.83384,-73.940475,"(40.83384, -73.940475)",,,475 WEST 159 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419531,Sedan,,,, +05/22/2021,3:00,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",HINSDALE STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419590,Sedan,E-Bike,,, +05/22/2021,14:10,BRONX,10469,40.86949,-73.84439,"(40.86949, -73.84439)",,,1432 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419024,Sedan,Pick-up Truck,,, +05/22/2021,6:45,QUEENS,11420,40.66611,-73.82712,"(40.66611, -73.82712)",NORTH CONDUIT AVENUE,114 PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4419070,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,17:50,MANHATTAN,10011,40.743423,-73.999855,"(40.743423, -73.999855)",WEST 20 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419881,Sedan,Bike,,, +05/19/2021,13:30,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419896,Sedan,Sedan,,, +05/22/2021,21:43,QUEENS,11372,40.748615,-73.8952,"(40.748615, -73.8952)",,,70-11 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/21/2021,23:30,QUEENS,11420,40.66901,-73.80265,"(40.66901, -73.80265)",133 AVENUE,135 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,,,,4420058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,2:06,BRONX,10466,40.889988,-73.85426,"(40.889988, -73.85426)",,,847 EAST 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419341,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,8:55,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419867,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/22/2021,15:12,BROOKLYN,11229,40.597057,-73.94126,"(40.597057, -73.94126)",,,3566 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419631,Sedan,Minibike,,, +05/22/2021,9:15,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419821,Tractor Truck Diesel,Sedan,,, +05/22/2021,13:00,BRONX,10454,40.806263,-73.92017,"(40.806263, -73.92017)",EAST 136 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419039,Sedan,,,, +05/22/2021,7:10,BROOKLYN,11226,40.63522,-73.96399,"(40.63522, -73.96399)",,,1419 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4419144,Sedan,Sedan,Sedan,, +05/22/2021,12:03,,,40.85214,-73.92071,"(40.85214, -73.92071)",CEDAR AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420132,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,1:30,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419001,Sedan,,,, +05/08/2021,17:00,,,40.859543,-73.927986,"(40.859543, -73.927986)",ELLWOOD STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4420116,Sedan,Box Truck,,, +05/22/2021,23:10,QUEENS,11104,40.745438,-73.923,"(40.745438, -73.923)",43 AVENUE,41 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4419085,Sedan,Sedan,Sedan,Sedan,Sedan +04/28/2021,22:10,BROOKLYN,11216,40.678238,-73.94415,"(40.678238, -73.94415)",ATLANTIC AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4419924,Sedan,,,, +05/22/2021,14:00,,,40.67632,-73.763435,"(40.67632, -73.763435)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419416,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,19:40,QUEENS,11372,40.75587,-73.88234,"(40.75587, -73.88234)",,,85-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419076,Sedan,Pick-up Truck,,, +05/22/2021,15:00,,,40.70183,-73.91933,"(40.70183, -73.91933)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419976,Sedan,,,, +05/17/2021,13:21,BROOKLYN,11219,40.642376,-73.99524,"(40.642376, -73.99524)",43 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419784,E-Scooter,,,, +05/22/2021,3:12,MANHATTAN,10032,40.83692,-73.93909,"(40.83692, -73.93909)",,,2092 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419560,Taxi,Sedan,,, +05/17/2021,18:40,MANHATTAN,10029,40.79704,-73.9428,"(40.79704, -73.9428)",,,1830 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Prescription Medication,Unspecified,Unspecified,,,4420016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/22/2021,1:33,BROOKLYN,11212,40.659275,-73.91294,"(40.659275, -73.91294)",,,433 HERZL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419203,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,10:00,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4419467,Sedan,Sedan,,, +05/22/2021,14:50,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419577,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,17:55,,,,,,ROOSEVELT AVENUE,SUBWAY QUEENS YARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419509,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,22:50,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419323,Taxi,Sedan,,, +05/22/2021,5:42,,,40.828953,-73.837,"(40.828953, -73.837)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419698,Sedan,Sedan,,, +05/21/2021,22:20,,,40.682537,-73.95002,"(40.682537, -73.95002)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419854,Sedan,Bike,,, +05/22/2021,6:32,MANHATTAN,10007,40.713135,-74.00407,"(40.713135, -74.00407)",CENTRE STREET,CHAMBERS STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419181,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,8:54,,,40.82873,-73.914734,"(40.82873, -73.914734)",FINDLAY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420106,Taxi,,,, +05/22/2021,19:20,MANHATTAN,10029,40.7963,-73.93829,"(40.7963, -73.93829)",EAST 115 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419769,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/22/2021,15:40,BROOKLYN,11204,40.60933,-73.98614,"(40.60933, -73.98614)",73 STREET,BAY PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420066,Bike,,,, +05/22/2021,23:05,,,40.72025,-73.834305,"(40.72025, -73.834305)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4419160,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +05/22/2021,2:32,QUEENS,11691,40.598976,-73.754234,"(40.598976, -73.754234)",,,431 BEACH 20 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4418980,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,16:40,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419795,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,1:45,,,40.844795,-73.92445,"(40.844795, -73.92445)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4419929,Sedan,,,, +05/22/2021,15:33,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419058,Sedan,Sedan,,, +05/22/2021,19:53,MANHATTAN,10010,,,,lexington avenue,24 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419268,Bus,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,14:50,,,40.709476,-73.76393,"(40.709476, -73.76393)",100 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419914,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,8:00,,,,,,RICHMOND ROAD,DONGAN HILL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419850,Sedan,,,, +05/22/2021,0:00,BROOKLYN,11235,40.593426,-73.944145,"(40.593426, -73.944145)",,,2621 AVENUE X,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4419636,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,19:47,BROOKLYN,11228,40.616047,-74.025734,"(40.616047, -74.025734)",DAHLGREN PLACE,92 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420124,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,8:00,QUEENS,11375,40.71837,-73.84057,"(40.71837, -73.84057)",ASCAN AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420001,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,21:20,MANHATTAN,10030,40.823257,-73.94293,"(40.823257, -73.94293)",BRADHURST AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420086,RV,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,11:20,,,40.76464,-73.916595,"(40.76464, -73.916595)",30 AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4419297,Sedan,Bike,,, +05/22/2021,1:30,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419938,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/22/2021,1:10,,,40.67312,-73.96072,"(40.67312, -73.96072)",CLASSON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419405,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,21:33,QUEENS,11420,40.682503,-73.82131,"(40.682503, -73.82131)",109 AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Headlights Defective,Unspecified,,,4419659,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/22/2021,17:59,,,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419215,Sedan,,,, +05/22/2021,0:53,BRONX,10467,40.865444,-73.86689,"(40.865444, -73.86689)",,,711 ALLERTON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4419122,Sedan,,,, +05/22/2021,16:22,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,14:20,MANHATTAN,10040,40.85618,-73.92872,"(40.85618, -73.92872)",SAINT NICHOLAS AVENUE,WEST 192 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4419811,Sedan,Motorscooter,,, +05/22/2021,13:27,,,40.82998,-73.913994,"(40.82998, -73.913994)",FINDLAY AVENUE,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4419452,Sedan,,,, +05/22/2021,2:04,QUEENS,11416,40.687916,-73.83989,"(40.687916, -73.83989)",104 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4419612,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/22/2021,22:58,QUEENS,11106,40.764538,-73.92736,"(40.764538, -73.92736)",,,31-40 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419309,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/22/2021,7:00,QUEENS,11435,40.68982,-73.80296,"(40.68982, -73.80296)",,,108-24 INWOOD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419961,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,2:05,MANHATTAN,10011,40.7442,-73.99558,"(40.7442, -73.99558)",,,224 7 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,,,4419382,Sedan,Sedan,Sedan,, +05/22/2021,13:51,BRONX,10451,40.819786,-73.91216,"(40.819786, -73.91216)",BROOK AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419863,Sedan,Sedan,,, +05/22/2021,20:50,BRONX,10467,40.86095,-73.866936,"(40.86095, -73.866936)",,,2407 BOSTON ROAD,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,18:00,,,40.701237,-73.79465,"(40.701237, -73.79465)",BREWER BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419917,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,13:00,,,40.680088,-73.94398,"(40.680088, -73.94398)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419396,E-Scooter,Motorbike,,, +05/20/2021,17:19,QUEENS,11374,40.7323,-73.85828,"(40.7323, -73.85828)",98 PLACE,63 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419909,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,6:46,,,40.70022,-73.96219,"(40.70022, -73.96219)",KENT AVENUE,WILLIAMSBURG STREET WEST,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419723,Sedan,Sedan,,, +05/22/2021,0:25,,,40.730434,-73.875595,"(40.730434, -73.875595)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4418968,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,19:45,STATEN ISLAND,10305,40.584106,-74.08723,"(40.584106, -74.08723)",,,475 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419837,Sedan,,,, +05/22/2021,0:43,,,40.792015,-73.98051,"(40.792015, -73.98051)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419791,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/22/2021,2:30,BRONX,10460,40.8309,-73.88638,"(40.8309, -73.88638)",BOONE AVENUE,JENNINGS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419179,Taxi,,,, +05/22/2021,23:00,QUEENS,11434,40.660248,-73.77236,"(40.660248, -73.77236)",,,147-65 FARMERS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4419497,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,3:00,QUEENS,11422,40.6713,-73.73916,"(40.6713, -73.73916)",,,137-07 233 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4419051,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +05/22/2021,0:00,,,40.728516,-73.88428,"(40.728516, -73.88428)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419479,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,11:53,MANHATTAN,10019,40.767185,-73.98997,"(40.767185, -73.98997)",WEST 54 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420103,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:56,BRONX,10462,40.834522,-73.86186,"(40.834522, -73.86186)",VIRGINIA AVENUE,MCGRAW AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419817,Sedan,Sedan,,, +05/22/2021,22:23,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419637,Sedan,Sedan,,, +05/22/2021,19:00,BROOKLYN,11236,40.637196,-73.88445,"(40.637196, -73.88445)",SEAVIEW AVENUE,EAST 104 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419322,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,22:30,BROOKLYN,11221,40.691307,-73.91326,"(40.691307, -73.91326)",CENTRAL AVENUE,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4419993,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/22/2021,13:00,BROOKLYN,11212,40.663715,-73.92712,"(40.663715, -73.92712)",,,35 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419369,Sedan,,,, +05/21/2021,12:00,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420023,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/22/2021,16:00,BROOKLYN,11207,40.675785,-73.90269,"(40.675785, -73.90269)",ATLANTIC AVENUE,WILLIAMS PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4419594,Sedan,,,, +05/22/2021,18:00,QUEENS,11412,40.69483,-73.750854,"(40.69483, -73.750854)",201 PLACE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419417,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,19:30,QUEENS,11420,40.67013,-73.80938,"(40.67013, -73.80938)",133 AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419075,Sedan,,,, +05/22/2021,8:45,QUEENS,11354,40.764454,-73.83178,"(40.764454, -73.83178)",FARRINGTON STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,,,,4419116,Station Wagon/Sport Utility Vehicle,fork lift,,, +05/17/2021,14:15,QUEENS,11435,40.702145,-73.81084,"(40.702145, -73.81084)",JAMAICA AVENUE,144 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419905,Sedan,,,, +05/22/2021,1:30,QUEENS,11375,40.71512,-73.83224,"(40.71512, -73.83224)",QUEENS BOULEVARD,78 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4419016,Sedan,,,, +05/21/2021,19:54,BRONX,10454,40.80682,-73.91749,"(40.80682, -73.91749)",EAST 138 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419869,Motorcycle,Dump,,, +05/22/2021,18:40,QUEENS,11413,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,150 STREET,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4419432,Sedan,Sedan,Sedan,, +05/22/2021,22:50,QUEENS,11426,40.73444,-73.72179,"(40.73444, -73.72179)",HILLSIDE AVENUE,COMMONWEALTH BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419243,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,16:39,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4419946,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,2:01,,,40.861256,-73.925674,"(40.861256, -73.925674)",THAYER STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419826,Sedan,Sedan,,, +05/16/2021,12:55,QUEENS,11422,40.67816,-73.72708,"(40.67816, -73.72708)",,,244-25 130 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419921,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,20:00,QUEENS,11004,40.739338,-73.7081,"(40.739338, -73.7081)",261 STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419078,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,23:31,MANHATTAN,10022,40.760925,-73.96705,"(40.760925, -73.96705)",EAST 58 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419124,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,20:20,QUEENS,11419,40.692802,-73.815994,"(40.692802, -73.815994)",,,131-09 101 AVENUE,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4419616,Taxi,Motorcycle,Motorcycle,, +05/22/2021,12:15,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4419545,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,4:46,,,40.738457,-73.93981,"(40.738457, -73.93981)",BORDEN AVENUE,,,0,3,0,0,0,0,0,3,Unsafe Speed,,,,,4419561,Sedan,,,, +05/22/2021,22:30,QUEENS,11423,40.708836,-73.76625,"(40.708836, -73.76625)",,,192-02 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4419962,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,11:25,BRONX,10460,40.84224,-73.87178,"(40.84224, -73.87178)",,,520 MORRIS PARK AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4419014,Tow Truck / Wrecker,,,, +05/22/2021,2:35,MANHATTAN,10019,,,,WEST 56 STREET,12 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,15:18,,,40.816338,-73.83697,"(40.816338, -73.83697)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419379,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,13:07,,,40.703976,-73.92309,"(40.703976, -73.92309)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419984,Sedan,Box Truck,,, +05/22/2021,1:51,BROOKLYN,11236,40.642994,-73.91284,"(40.642994, -73.91284)",,,562 EAST 87 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4420029,Sedan,,,, +05/22/2021,16:20,QUEENS,11372,40.754776,-73.892815,"(40.754776, -73.892815)",74 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419045,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,0:20,,,40.693832,-73.909615,"(40.693832, -73.909615)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419977,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,19:25,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",REMSEN AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419445,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,0:45,,,40.76657,-73.888466,"(40.76657, -73.888466)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418994,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,15:00,,,40.653774,-73.95617,"(40.653774, -73.95617)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419147,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,4:30,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4419526,PK,Sedan,,, +05/22/2021,8:40,,,40.76588,-73.99464,"(40.76588, -73.99464)",11 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420121,Station Wagon/Sport Utility Vehicle,Bike,,, +05/19/2021,3:40,QUEENS,11411,40.696217,-73.7436,"(40.696217, -73.7436)",LINDEN BOULEVARD,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4419925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/22/2021,8:50,MANHATTAN,10028,40.777634,-73.961174,"(40.777634, -73.961174)",EAST 81 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4419411,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,18:40,QUEENS,11417,40.67887,-73.83419,"(40.67887, -73.83419)",ROCKAWAY BOULEVARD,CENTREVILLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419069,Pick-up Truck,Sedan,,, +05/22/2021,22:19,BROOKLYN,11206,40.704483,-73.9488,"(40.704483, -73.9488)",MIDDLETON STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419810,Sedan,,,, +05/22/2021,14:10,BROOKLYN,11234,40.627926,-73.93175,"(40.627926, -73.93175)",AVENUE J,EAST 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419774,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,21:29,MANHATTAN,10027,40.80852,-73.94327,"(40.80852, -73.94327)",,,64 WEST 127 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419274,Ambulance,Sedan,,, +05/22/2021,3:23,,,,,,MEEKER AVENUE,MC GUINNESS BLVD SOUTH,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4420074,Sedan,,,, +05/22/2021,16:28,BROOKLYN,11212,40.66728,-73.91891,"(40.66728, -73.91891)",,,44 GRAFTON STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419205,Sedan,Sedan,,, +05/22/2021,18:47,BROOKLYN,11229,40.598972,-73.93064,"(40.598972, -73.93064)",STUART STREET,WHITNEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,Unspecified,,,4419626,Motorbike,Motorcycle,Sedan,, +05/22/2021,5:55,,,,,,WEST 155 STREET BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4419679,MOPED,Sedan,,, +05/22/2021,12:50,QUEENS,11103,40.766083,-73.907715,"(40.766083, -73.907715)",45 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,17:35,MANHATTAN,10020,40.76029,-73.98016,"(40.76029, -73.98016)",,,1271 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420092,Sedan,Tractor Truck Diesel,,, +05/22/2021,14:20,STATEN ISLAND,10305,40.579357,-74.08716,"(40.579357, -74.08716)",SLATER BOULEVARD,OLYMPIA BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419931,Sedan,Sedan,,, +05/22/2021,15:00,QUEENS,11422,40.657265,-73.743004,"(40.657265, -73.743004)",147 AVENUE,EDGEWOOD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419063,Sedan,Sedan,,, +05/22/2021,1:35,,,40.69113,-73.81008,"(40.69113, -73.81008)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419915,Sedan,,,, +05/22/2021,0:56,,,40.814686,-73.93085,"(40.814686, -73.93085)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419038,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,20:00,,,40.559963,-74.10634,"(40.559963, -74.10634)",HETT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,8:15,,,40.777973,-73.98216,"(40.777973, -73.98216)",WEST 71 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419464,Sedan,,,, +09/28/2021,16:30,,,40.667385,-73.77546,"(40.667385, -73.77546)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4461983,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,17:48,BRONX,10457,40.846733,-73.90649,"(40.846733, -73.90649)",EAST 175 STREET,MONROE AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4420131,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/22/2021,4:55,BROOKLYN,11208,40.679535,-73.87914,"(40.679535, -73.87914)",,,3143 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419575,Sedan,Sedan,,, +05/22/2021,17:46,QUEENS,11363,40.776066,-73.74864,"(40.776066, -73.74864)",HOLLYWOOD AVENUE,EAST DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419086,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,23:31,BROOKLYN,11219,0,0,"(0.0, 0.0)",,,1321 60 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419326,Sedan,Sedan,,, +05/22/2021,8:00,QUEENS,11368,40.740562,-73.85001,"(40.740562, -73.85001)",SAULTELL AVENUE,CORONA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4419508,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,11:25,MANHATTAN,10128,40.784096,-73.958565,"(40.784096, -73.958565)",5 AVENUE,EAST 90 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419404,Station Wagon/Sport Utility Vehicle,Van,,, +09/28/2021,0:00,,,40.726326,-73.7662,"(40.726326, -73.7662)",GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4462235,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +05/22/2021,5:35,,,40.76963,-73.915855,"(40.76963, -73.915855)",34 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4418984,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,0:00,,,40.844524,-73.902725,"(40.844524, -73.902725)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419152,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,17:14,,,40.68553,-73.95656,"(40.68553, -73.95656)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4419894,Sedan,Bus,,, +05/22/2021,10:59,BRONX,10466,40.891823,-73.86266,"(40.891823, -73.86266)",EAST 229 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419342,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,20:48,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,14:07,,,40.865475,-73.933235,"(40.865475, -73.933235)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420109,Sedan,,,, +05/22/2021,12:29,BRONX,10457,40.845142,-73.898,"(40.845142, -73.898)",,,1841 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419781,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,14:10,BROOKLYN,11211,40.715767,-73.92556,"(40.715767, -73.92556)",,,1301 GRAND STREET,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419800,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,20:00,BROOKLYN,11235,40.589756,-73.957695,"(40.589756, -73.957695)",,,1230 AVENUE Y,0,0,0,0,0,0,0,0,Unspecified,,,,,4419635,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,23:15,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",NEW DORP LANE,HYLAN BOULEVARD,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,Unspecified,,,4419851,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/21/2021,0:00,MANHATTAN,10036,40.759068,-73.98521,"(40.759068, -73.98521)",,,1561 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4420118,Motorcycle,,,, +05/22/2021,0:00,QUEENS,11426,40.724068,-73.7256,"(40.724068, -73.7256)",,,242-09 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4420005,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/26/2021,20:10,,,40.862213,-73.9297,"(40.862213, -73.9297)",ELLWOOD STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4462597,Station Wagon/Sport Utility Vehicle,Garage,,, +05/22/2021,18:45,QUEENS,11420,40.675007,-73.81272,"(40.675007, -73.81272)",,,117-18 125 STREET,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,,,,,4419660,Sedan,,,, +05/18/2021,16:14,,,,,,BARTOW CIRCLE,SHORE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419882,Sedan,Sedan,,, +05/22/2021,20:23,QUEENS,11436,40.685856,-73.79548,"(40.685856, -73.79548)",LINDEN BOULEVARD,148 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4419436,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/18/2021,15:35,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",PARSONS BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4419910,Bus,Sedan,Box Truck,, +05/21/2021,17:30,BROOKLYN,11213,40.67295,-73.92517,"(40.67295, -73.92517)",BUFFALO AVENUE,PROSPECT PLACE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4419926,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,6:21,QUEENS,11413,40.67063,-73.75643,"(40.67063, -73.75643)",SPRINGFIELD BOULEVARD,141 ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419052,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,3:05,,,40.737907,-73.877174,"(40.737907, -73.877174)",BROADWAY,JUSTICE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419503,Sedan,,,, +05/22/2021,15:10,,,40.828407,-73.84392,"(40.828407, -73.84392)",BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Alcohol Involvement,,,,4419825,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,16:50,,,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4419418,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,14:27,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419043,Sedan,Bus,,, +05/22/2021,18:40,,,40.73718,-73.932014,"(40.73718, -73.932014)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419082,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,20:56,BROOKLYN,11207,40.65542,-73.88237,"(40.65542, -73.88237)",,,1006 VAN SICLEN AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419580,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,21:44,BROOKLYN,11233,40.678425,-73.92744,"(40.678425, -73.92744)",HERKIMER STREET,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543005,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,9:15,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419017,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,20:10,STATEN ISLAND,10308,40.55195,-74.15064,"(40.55195, -74.15064)",GIFFORDS LANE,BALTIMORE STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4419852,Station Wagon/Sport Utility Vehicle,Bus,,, +05/19/2021,13:21,,,,,,THROGS NECK EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,2:00,QUEENS,11435,40.700256,-73.81493,"(40.700256, -73.81493)",,,90-35 VANWYCK EXPRESSWAY,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4419916,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/22/2021,16:18,BRONX,10458,40.86404,-73.89245,"(40.86404, -73.89245)",BAINBRIDGE AVENUE,EAST 193 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419642,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,10:48,BROOKLYN,11222,40.726578,-73.95241,"(40.726578, -73.95241)",,,753 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,,,,,,4419942,,,,, +09/28/2021,20:32,,,40.75247,-73.96456,"(40.75247, -73.96456)",EAST 49 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462019,Sedan,,,, +05/21/2021,14:00,MANHATTAN,10035,40.799747,-73.93269,"(40.799747, -73.93269)",,,2385 1 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419788,Sedan,Sedan,,, +05/22/2021,13:05,,,40.796528,-73.97412,"(40.796528, -73.97412)",WEST 97 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4419792,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,4:45,,,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4418972,Sedan,Sedan,,, +05/21/2021,9:30,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",EAST BURNSIDE AVENUE,JEROME AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419902,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,11:13,BROOKLYN,11223,40.59783,-73.96549,"(40.59783, -73.96549)",OCEAN PARKWAY,AVENUE U,,1,1,1,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462331,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,18:30,,,40.69024,-73.9482,"(40.69024, -73.9482)",MARCY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419398,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/22/2021,15:10,STATEN ISLAND,10312,40.560474,-74.16689,"(40.560474, -74.16689)",ARTHUR KILL ROAD,GETZ AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419992,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,13:18,MANHATTAN,10029,40.792545,-73.94104,"(40.792545, -73.94104)",EAST 109 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4419842,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,17:55,,,40.784992,-73.98261,"(40.784992, -73.98261)",RIVERSIDE DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4420028,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/22/2021,12:30,BRONX,10457,40.838406,-73.90429,"(40.838406, -73.90429)",,,3802 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419178,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,20:10,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",SUTTER AVENUE,FORBELL STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4419595,Sedan,,,, +05/22/2021,15:00,,,40.822838,-73.928764,"(40.822838, -73.928764)",EAST 151 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419226,Sedan,,,, +05/21/2021,13:00,,,40.815872,-73.9257,"(40.815872, -73.9257)",EAST 144 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419871,Pick-up Truck,,,, +05/20/2021,23:10,QUEENS,11433,40.708424,-73.780556,"(40.708424, -73.780556)",180 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4419970,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/22/2021,15:00,MANHATTAN,10011,40.73961,-73.99893,"(40.73961, -73.99893)",,,90 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4419383,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,14:20,QUEENS,11417,40.673374,-73.8565,"(40.673374, -73.8565)",NORTH CONDUIT AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4419074,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/22/2021,11:51,,,,,,FDR SERVICE ROAD,FDR DRIVE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419011,Sedan,Sedan,,, +05/22/2021,16:00,QUEENS,11385,40.711403,-73.916756,"(40.711403, -73.916756)",WOODWARD AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,10:55,,,40.593807,-73.94062,"(40.593807, -73.94062)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419623,Sedan,,,, +05/22/2021,17:08,MANHATTAN,10005,40.70523,-74.00476,"(40.70523, -74.00476)",MAIDEN LANE,SOUTH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419126,Sedan,Bike,,, +05/22/2021,14:00,,,,,,WILLETS POINT BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,0:00,BROOKLYN,11203,40.641838,-73.93402,"(40.641838, -73.93402)",,,4502 AVENUE D,3,0,1,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4419551,Sedan,Sedan,Pick-up Truck,, +05/21/2021,2:40,,,40.80929,-73.90313,"(40.80929, -73.90313)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Obstruction/Debris,,,,4419862,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:30,MANHATTAN,10019,40.76873,-73.985115,"(40.76873, -73.985115)",,,910 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420096,Taxi,FDNY TRUCK,,, +05/22/2021,15:55,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",ATLANTIC AVENUE,BOYLAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419214,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,5:50,BROOKLYN,11230,40.61196,-73.96816,"(40.61196, -73.96816)",OCEAN PARKWAY,AVENUE O,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4419321,Sedan,,,, +05/21/2021,14:30,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",BRONX RIVER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419816,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,17:15,QUEENS,11372,40.75034,-73.8786,"(40.75034, -73.8786)",,,88-06 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419726,Sedan,,,, +05/22/2021,17:00,STATEN ISLAND,10308,40.538326,-74.14937,"(40.538326, -74.14937)",HYLAN BOULEVARD,WILLIAM AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4419937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/22/2021,10:40,,,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419983,Box Truck,Sedan,,, +09/26/2021,0:00,,,40.652554,-73.92078,"(40.652554, -73.92078)",RALPH AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462652,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:58,MANHATTAN,10026,40.79964,-73.95577,"(40.79964, -73.95577)",,,207 CENTRAL PARK NORTH,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4420022,Sedan,Bike,,, +05/22/2021,2:50,BROOKLYN,11221,40.6871,-73.92989,"(40.6871, -73.92989)",REID AVENUE,MADISON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419186,Sedan,Sedan,,, +04/28/2021,22:45,QUEENS,11004,40.7379,-73.714775,"(40.7379, -73.714775)",LITTLE NECK PARKWAY,83 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419920,Sedan,,,, +05/22/2021,1:05,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4419663,Sedan,Sedan,,, +05/22/2021,23:36,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419713,Sedan,,,, +05/21/2021,11:35,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4419776,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,17:19,,,40.57937,-73.959755,"(40.57937, -73.959755)",CONEY ISLAND AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4419275,Sedan,Sedan,,, +05/18/2021,16:45,MANHATTAN,10031,40.827103,-73.94997,"(40.827103, -73.94997)",BROADWAY,WEST 146 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420083,E-Scooter,E-Bike,,, +09/28/2021,8:30,QUEENS,11417,40.67172,-73.850975,"(40.67172, -73.850975)",NORTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4461882,Sedan,Sedan,Sedan,Sedan, +09/28/2021,15:39,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462193,Sedan,Sedan,,, +09/28/2021,20:50,QUEENS,11355,40.758415,-73.80991,"(40.758415, -73.80991)",156 STREET,DELAWARE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462321,Sedan,,,, +09/28/2021,9:20,BROOKLYN,11222,40.732586,-73.95933,"(40.732586, -73.95933)",,,60 HURON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462407,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,9:00,MANHATTAN,10065,40.764053,-73.96476,"(40.764053, -73.96476)",EAST 63 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461891,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/01/2022,17:58,,,40.631157,-74.14692,"(40.631157, -74.14692)",MORNINGSTAR ROAD,WALKER STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542688,Sedan,,,, +09/27/2021,23:00,BRONX,10466,,,,,,2062 EDENWALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462611,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,11:00,BROOKLYN,11206,40.704346,-73.940956,"(40.704346, -73.940956)",,,50 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Animals Action,,,,,4462632,,,,, +09/28/2021,20:10,BROOKLYN,11207,40.68097,-73.8915,"(40.68097, -73.8915)",JAMAICA AVENUE,HENDRIX STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462002,Sedan,,,, +09/28/2021,17:54,MANHATTAN,10017,40.75338,-73.97888,"(40.75338, -73.97888)",,,330 MADISON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462105,Station Wagon/Sport Utility Vehicle,E-Bike,Van,, +09/28/2021,21:30,QUEENS,11693,40.589893,-73.80755,"(40.589893, -73.80755)",,,81-05 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462599,Sedan,,,, +09/15/2021,11:45,,,,,,,,2485 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462439,Sedan,,,, +09/24/2021,12:20,MANHATTAN,10128,40.780506,-73.94425,"(40.780506, -73.94425)",EAST 93 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4462549,Ambulance,,,, +09/28/2021,11:40,,,40.746555,-73.82621,"(40.746555, -73.82621)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4461932,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,17:39,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462031,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,4:00,,,40.797367,-73.96053,"(40.797367, -73.96053)",,,WEST 105 STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461861,E-Bike,Taxi,,, +09/28/2021,10:05,BROOKLYN,11215,40.673485,-73.97296,"(40.673485, -73.97296)",UNION STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4461996,Dump,Sedan,,, +08/21/2021,19:35,BROOKLYN,11236,40.637108,-73.89338,"(40.637108, -73.89338)",AVENUE M,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462705,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,19:48,QUEENS,11102,40.774048,-73.92449,"(40.774048, -73.92449)",21 STREET,25 ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4462179,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,15:56,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,UNION AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461991,Sedan,Bike,,, +09/28/2021,12:15,,,40.879215,-73.885284,"(40.879215, -73.885284)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4462513,Sedan,,,, +09/28/2021,21:40,,,40.8337,-73.879845,"(40.8337, -73.879845)",BRONX RIVER AVENUE,,,1,1,0,1,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4462333,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/28/2021,2:30,QUEENS,11435,40.717754,-73.81445,"(40.717754, -73.81445)",,,144-67 CHARTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462233,Ambulance,Sedan,,, +09/28/2021,23:00,BROOKLYN,11230,40.618244,-73.958,"(40.618244, -73.958)",,,1703 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462375,Sedan,,,, +09/28/2021,19:13,BRONX,10467,40.865467,-73.86541,"(40.865467, -73.86541)",ALLERTON AVENUE,HOLLAND AVENUE,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4462281,Sedan,Bike,,, +09/28/2021,11:30,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462098,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,12:25,BRONX,10461,40.84467,-73.83554,"(40.84467, -73.83554)",,,1621 MULFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462591,Sedan,,,, +09/28/2021,15:51,,,,,,EAST 1 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462044,Sedan,Sedan,,, +09/26/2021,1:40,BRONX,10458,40.867603,-73.88488,"(40.867603, -73.88488)",,,2850 DECATUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462500,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,15:30,BROOKLYN,11212,40.66989,-73.913734,"(40.66989, -73.913734)",,,445 BOYLAND STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,2:56,,,40.74137,-73.97252,"(40.74137, -73.97252)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4461816,Sedan,,,, +09/15/2021,10:59,,,,,,,,2456 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4462528,Tractor Truck Diesel,,,, +09/27/2021,0:00,,,,,,G.C.P. / L.I.E (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462744,Sedan,Sedan,Sedan,, +09/28/2021,8:00,BROOKLYN,11230,,,,,,665 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461974,Sedan,,,, +09/28/2021,17:01,,,40.65569,-73.84004,"(40.65569, -73.84004)",92 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462070,Sedan,,,, +09/23/2021,7:30,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462681,Sedan,,,, +09/27/2021,0:48,MANHATTAN,10027,40.81569,-73.958305,"(40.81569, -73.958305)",WEST 125 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Unspecified,,,,,4462583,E-Bike,,,, +09/28/2021,5:19,,,,,,EAST TREMONT AVENUE,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462450,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,7:05,BRONX,10457,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,BELMONT STREET,,3,0,0,0,0,0,3,0,Turning Improperly,,,,,4462081,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,13:40,QUEENS,11368,40.742832,-73.85391,"(40.742832, -73.85391)",,,108-17 53 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462758,Sedan,Bike,,, +09/28/2021,17:30,BRONX,10475,40.86505,-73.83001,"(40.86505, -73.83001)",,,200 BAYCHESTER AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462168,Station Wagon/Sport Utility Vehicle,Bike,,, +09/28/2021,16:02,BROOKLYN,11237,40.697678,-73.916374,"(40.697678, -73.916374)",KNICKERBOCKER AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462467,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,16:28,BRONX,10451,40.817085,-73.92156,"(40.817085, -73.92156)",,,281 EAST 149 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462058,Sedan,,,, +09/28/2021,13:52,MANHATTAN,10017,40.74958,-73.97373,"(40.74958, -73.97373)",,,222 EAST 41 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462021,LIMO,,,, +09/26/2021,8:15,QUEENS,11370,40.762856,-73.888596,"(40.762856, -73.888596)",25 AVENUE,80 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462517,Sedan,,,, +09/27/2021,11:40,MANHATTAN,10002,40.719067,-73.99336,"(40.719067, -73.99336)",CHRYSTIE STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462536,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/28/2021,10:15,QUEENS,11365,40.735664,-73.78425,"(40.735664, -73.78425)",,,67-02C 188 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462222,Sedan,,,, +09/28/2021,0:00,BROOKLYN,11222,40.730595,-73.950005,"(40.730595, -73.950005)",,,250 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462424,Tanker,,,, +09/28/2021,9:00,BRONX,10452,40.84328,-73.92492,"(40.84328, -73.92492)",UNIVERSITY AVENUE,WEST 171 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462089,Sedan,,,, +09/28/2021,16:42,MANHATTAN,10030,40.816376,-73.948364,"(40.816376, -73.948364)",SAINT NICHOLAS AVENUE,WEST 134 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4462135,Sedan,Motorcycle,,, +03/29/2022,19:15,QUEENS,11429,40.71479,-73.741516,"(40.71479, -73.741516)",,,217-04 99 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515384,Sedan,Sedan,,, +05/23/2021,0:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419173,Sedan,Sedan,,, +09/28/2021,7:45,QUEENS,11693,40.588997,-73.81629,"(40.588997, -73.81629)",BEACH CHANNEL DRIVE,BEACH 91 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462596,Sedan,Sedan,,, +09/17/2021,18:00,BRONX,10468,40.862137,-73.91344,"(40.862137, -73.91344)",UNIVERSITY HEIGHTS BRIDGE,WEST FORDHAM ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462485,Sedan,Bike,,, +09/16/2021,21:15,,,40.69645,-73.946495,"(40.69645, -73.946495)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462685,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/28/2021,13:34,,,,,,WEST 51 STREET,WEST STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462153,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,12:10,,,40.649918,-74.01226,"(40.649918, -74.01226)",3 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,0:00,,,40.576744,-73.98372,"(40.576744, -73.98372)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,3:15,BRONX,10474,40.809628,-73.890045,"(40.809628, -73.890045)",TIFFANY STREET,OAK POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,21:00,,,40.599117,-73.97472,"(40.599117, -73.97472)",AVENUE T,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462575,Station Wagon/Sport Utility Vehicle,Bike,,, +09/24/2021,15:08,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462519,Sedan,Sedan,,, +09/28/2021,15:48,MANHATTAN,10009,40.728157,-73.98296,"(40.728157, -73.98296)",,,279 EAST 10 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4462043,Sedan,PK,,, +09/28/2021,21:00,MANHATTAN,10010,40.73722,-73.9814,"(40.73722, -73.9814)",EAST 22 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462259,Station Wagon/Sport Utility Vehicle,Bike,,, +09/28/2021,13:30,,,40.79856,-73.96336,"(40.79856, -73.96336)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4461960,Sedan,Van,,, +09/28/2021,16:40,,,40.740837,-73.78656,"(40.740837, -73.78656)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462239,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,13:00,QUEENS,11422,40.675255,-73.73207,"(40.675255, -73.73207)",BROOKVILLE BOULEVARD,133 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462541,Sedan,,,, +09/27/2021,11:02,,,40.84521,-73.90845,"(40.84521, -73.90845)",EASTBURN AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462451,,,,, +09/28/2021,14:40,BRONX,10451,,,,,,99 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462097,Sedan,,,, +09/28/2021,10:29,BRONX,10458,40.85768,-73.88232,"(40.85768, -73.88232)",,,696 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,6:35,QUEENS,11412,40.69501,-73.745705,"(40.69501, -73.745705)",118 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4462415,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,18:50,QUEENS,11421,40.694603,-73.853935,"(40.694603, -73.853935)",,,91-12 86 ROAD,1,0,1,0,0,0,0,0,,,,,,4462183,,,,, +09/28/2021,10:47,BROOKLYN,11212,,,,,,404 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4461990,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/28/2021,18:50,QUEENS,11355,40.752007,-73.809845,"(40.752007, -73.809845)",157 STREET,LABURNUM AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,17:12,BRONX,10466,40.89445,-73.850945,"(40.89445, -73.850945)",,,4246 BOYD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462651,Sedan,Sedan,Sedan,Sedan, +09/27/2021,20:00,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4462600,Sedan,,,, +09/28/2021,9:09,,,40.712498,-73.97776,"(40.712498, -73.97776)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4462195,Motorscooter,,,, +07/01/2022,11:00,BROOKLYN,11215,40.678345,-73.985435,"(40.678345, -73.985435)",3 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542577,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,6:39,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462779,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,14:50,MANHATTAN,10002,40.711132,-73.99043,"(40.711132, -73.99043)",,,227 CHERRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462556,Sedan,,,, +09/27/2021,12:10,,,40.68617,-73.94448,"(40.68617, -73.94448)",MONROE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462691,Sedan,,,, +09/28/2021,16:00,BROOKLYN,11206,,,,GRAHAM AVENUE,BOERUM STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4461992,Station Wagon/Sport Utility Vehicle,Bike,,, +09/28/2021,17:35,,,40.70066,-73.98775,"(40.70066, -73.98775)",PROSPECT STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462022,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,12:50,BROOKLYN,11211,40.71511,-73.95486,"(40.71511, -73.95486)",,,266 NORTH 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462427,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/28/2021,4:25,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4462327,Box Truck,,,, +09/28/2021,23:30,BROOKLYN,11201,40.6867,-73.9982,"(40.6867, -73.9982)",HENRY STREET,KANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462334,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/28/2021,9:20,QUEENS,11361,,,,35th avenue,208th street,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461878,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,14:15,STATEN ISLAND,10306,40.569256,-74.11098,"(40.569256, -74.11098)",,,2556 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462123,Sedan,,,, +09/28/2021,2:17,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",EAST 233 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,4461947,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/28/2021,14:15,,,40.627144,-74.00032,"(40.627144, -74.00032)",13 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462220,Sedan,Sedan,,, +09/28/2021,6:40,,,40.732822,-73.8684,"(40.732822, -73.8684)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,12:57,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,MORNINGSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462032,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,0:15,,,40.675255,-73.73207,"(40.675255, -73.73207)",BROOKVILLE BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462316,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,22:30,BROOKLYN,11212,40.666298,-73.91379,"(40.666298, -73.91379)",,,163 AMBOY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462717,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/28/2021,17:53,QUEENS,11101,40.752136,-73.92564,"(40.752136, -73.92564)",NORTHERN BOULEVARD,38 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462178,Motorcycle,Sedan,,, +09/28/2021,6:22,QUEENS,11422,40.654526,-73.73979,"(40.654526, -73.73979)",HUXLEY STREET,148 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461980,Sedan,,,, +09/25/2021,11:21,MANHATTAN,10011,40.739243,-73.99919,"(40.739243, -73.99919)",7 AVENUE,WEST 15 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462535,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,19:10,,,40.585976,-73.98799,"(40.585976, -73.98799)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462501,Taxi,Sedan,,, +09/28/2021,20:16,BROOKLYN,11210,40.623455,-73.95491,"(40.623455, -73.95491)",AVENUE K,EAST 21 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462072,Taxi,,,, +09/28/2021,8:48,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462054,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,17:07,QUEENS,11419,40.691193,-73.821594,"(40.691193, -73.821594)",,,124-16 101 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462437,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/23/2021,18:00,MANHATTAN,10128,40.781223,-73.95373,"(40.781223, -73.95373)",,,150 EAST 89 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462479,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,13:12,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4462082,Sedan,,,, +09/20/2021,14:45,MANHATTAN,10035,40.80162,-73.93733,"(40.80162, -73.93733)",,,2239 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462747,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,15:00,BROOKLYN,11226,,,,,,369 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461975,Sedan,Sedan,,, +09/28/2021,17:00,,,40.681446,-73.94644,"(40.681446, -73.94644)",MACON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462682,Sedan,,,, +09/28/2021,9:18,QUEENS,11433,40.699013,-73.79573,"(40.699013, -73.79573)",SOUTH ROAD,160 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4461926,Sedan,Pick-up Truck,,, +09/27/2021,15:50,,,40.750828,-74.00189,"(40.750828, -74.00189)",WEST 28 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462548,Sedan,,,, +09/28/2021,0:00,,,40.823647,-73.87843,"(40.823647, -73.87843)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462232,Sedan,Tractor Truck Diesel,,, +05/23/2021,9:10,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4419605,Box Truck,,,, +09/28/2021,9:30,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462360,Sedan,,,, +09/28/2021,15:07,,,40.63695,-74.022484,"(40.63695, -74.022484)",4 AVENUE,67 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4461997,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/28/2021,15:18,,,,,,EAST 150 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462100,Ambulance,Sedan,,, +09/28/2021,18:51,BROOKLYN,11203,40.640343,-73.94266,"(40.640343, -73.94266)",BROOKLYN AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462280,Sedan,Sedan,,, +09/28/2021,14:30,QUEENS,11372,,,,91 STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462160,Sedan,,,, +09/28/2021,9:25,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4461918,Pick-up Truck,Sedan,,, +09/28/2021,5:45,BROOKLYN,11233,40.684723,-73.91755,"(40.684723, -73.91755)",,,55 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4461817,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,21:21,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",FULTON STREET,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462035,Taxi,,,, +09/25/2021,4:05,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462626,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/28/2021,12:30,BRONX,10457,40.853813,-73.89584,"(40.853813, -73.89584)",,,4452 PARK AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4462106,Sedan,Sedan,,, +09/28/2021,15:15,,,40.84226,-73.87228,"(40.84226, -73.87228)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,Unspecified,,,4462001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,5:57,BRONX,10468,40.869656,-73.898926,"(40.869656, -73.898926)",WEST 195 STREET,RESERVOIR AVENUE,,1,0,1,0,0,0,0,0,,,,,,4462512,,,,, +09/20/2021,16:39,QUEENS,11377,,,,39rd,52 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462529,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,10:35,MANHATTAN,10032,40.83037,-73.94015,"(40.83037, -73.94015)",WEST 155 STREET,SAINT NICHOLAS PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462447,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,1:55,BRONX,10452,40.840786,-73.9232,"(40.840786, -73.9232)",WEST 170 STREET,NELSON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,17:25,MANHATTAN,10003,40.732914,-73.98631,"(40.732914, -73.98631)",,,234 EAST 14 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462045,Station Wagon/Sport Utility Vehicle,Bike,,, +08/13/2021,14:20,,,40.815327,-73.93576,"(40.815327, -73.93576)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4462469,Sedan,,,, +09/26/2021,20:20,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",EAST 233 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4462612,Sedan,Sedan,,, +09/28/2021,22:30,MANHATTAN,10031,40.821144,-73.95753,"(40.821144, -73.95753)",RIVERSIDE DRIVE,WEST 135 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462198,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,13:00,BROOKLYN,11232,40.66288,-73.99292,"(40.66288, -73.99292)",,,221 19 STREET,1,0,1,0,0,0,0,0,,,,,,4462666,,,,, +09/27/2021,9:05,,,,,,QUEENS MIDTOWN TUNNEL,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4462727,Sedan,Taxi,,, +09/28/2021,14:59,QUEENS,11375,40.71345,-73.851715,"(40.71345, -73.851715)",70 AVENUE,LOUBET STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4461969,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,11:20,,,40.74017,-73.97615,"(40.74017, -73.97615)",1 AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4462262,Box Truck,Sedan,,, +09/28/2021,9:56,BROOKLYN,11217,40.681736,-73.97531,"(40.681736, -73.97531)",,,461 DEAN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462553,Box Truck,Box Truck,,, +09/28/2021,19:40,,,40.729355,-73.86023,"(40.729355, -73.86023)",QUEENS BOULEVARD,64 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462185,E-Bike,,,, +09/28/2021,8:45,QUEENS,11427,40.727577,-73.74843,"(40.727577, -73.74843)",216 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461937,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,11:13,BROOKLYN,11217,40.67645,-73.97411,"(40.67645, -73.97411)",7 AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4461993,4 dr sedan,,,, +09/28/2021,7:50,BROOKLYN,11206,40.707653,-73.93984,"(40.707653, -73.93984)",BUSHWICK AVENUE,MONTROSE AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462404,Sedan,Sedan,Sedan,, +09/28/2021,0:33,BROOKLYN,11212,40.662506,-73.90929,"(40.662506, -73.90929)",,,233 LIVONIA AVENUE,2,0,0,0,0,0,2,0,Outside Car Distraction,Aggressive Driving/Road Rage,,,,4462339,Sedan,Sedan,,, +09/28/2021,9:05,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4461885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/27/2021,19:53,MANHATTAN,10001,40.74373,-73.98801,"(40.74373, -73.98801)",,,224 5 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4462590,Sedan,,,, +09/15/2021,16:19,,,40.69045,-73.959435,"(40.69045, -73.959435)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4462684,Bus,Tanker,,, +09/27/2021,15:48,BROOKLYN,11207,40.680504,-73.90629,"(40.680504, -73.90629)",DE SALES PLACE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462460,Sedan,Sedan,,, +09/24/2021,13:33,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462769,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,7:30,BRONX,10460,40.83436,-73.889565,"(40.83436, -73.889565)",,,1527 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462086,Bus,Sedan,,, +09/19/2021,13:58,MANHATTAN,10036,40.759678,-73.99559,"(40.759678, -73.99559)",,,501 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4462516,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,12:26,,,40.693726,-73.75485,"(40.693726, -73.75485)",LINDEN BOULEVARD,197 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4462521,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/28/2021,5:20,,,40.73718,-73.932014,"(40.73718, -73.932014)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4461736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:22,,,40.783333,-73.94368,"(40.783333, -73.94368)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462643,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,16:24,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462122,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,15:00,MANHATTAN,10019,,,,,,150 WEST 59 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462154,Bus,Sedan,,, +09/24/2021,18:13,,,40.729824,-74.010605,"(40.729824, -74.010605)",CLARKSON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462576,Taxi,Bike,,, +09/28/2021,22:15,QUEENS,11101,40.746876,-73.95272,"(40.746876, -73.95272)",46 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462042,Sedan,,,, +09/28/2021,16:55,,,40.702747,-73.86242,"(40.702747, -73.86242)",FOREST PARK DRIVE,ROBINSON PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462419,Pick-up Truck,Taxi,,, +09/28/2021,16:30,BRONX,10451,40.818047,-73.92246,"(40.818047, -73.92246)",EAST 150 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4462061,Pick-up Truck,Sedan,,, +09/28/2021,18:23,,,40.8468,-73.931854,"(40.8468, -73.931854)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462602,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,12:00,MANHATTAN,10002,40.711246,-73.98446,"(40.711246, -73.98446)",,,605 WATER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462138,Sedan,,,, +09/28/2021,9:13,BROOKLYN,11205,,,,CLINTON AVENUE,FLUSHING AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4461985,Sedan,Bike,,, +09/28/2021,9:00,,,40.757755,-73.79304,"(40.757755, -73.79304)",UTOPIA PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4461876,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,15:00,,,40.74132,-73.78478,"(40.74132, -73.78478)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4462241,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,14:00,BROOKLYN,11231,40.680443,-73.99196,"(40.680443, -73.99196)",,,317 HOYT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4462431,Sedan,,,, +09/28/2021,8:45,,,40.697506,-73.982285,"(40.697506, -73.982285)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462025,Box Truck,Sedan,,, +09/28/2021,16:56,BROOKLYN,11225,40.66849,-73.95588,"(40.66849, -73.95588)",,,1590 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462015,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,5:47,,,40.836178,-73.884254,"(40.836178, -73.884254)",EAST 174 STREET,,,3,0,0,0,0,0,3,0,Unsafe Speed,Turning Improperly,,,,4462328,Motorcycle,Taxi,,, +09/24/2021,7:55,,,40.858273,-73.93182,"(40.858273, -73.93182)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4462595,Tractor Truck Diesel,Sedan,,, +09/28/2021,16:00,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462057,Sedan,Moped,,, +09/28/2021,15:45,BRONX,10460,40.835705,-73.888756,"(40.835705, -73.888756)",EAST 173 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462096,Sedan,PK,,, +05/23/2021,13:20,BRONX,10466,40.88698,-73.84745,"(40.88698, -73.84745)",EAST 229 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419725,Sedan,,,, +09/26/2021,8:16,MANHATTAN,10001,40.75449,-74.006744,"(40.75449, -74.006744)",12 AVENUE,WEST 30 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462540,Sedan,Sedan,,, +09/27/2021,9:19,BRONX,10458,40.86404,-73.89245,"(40.86404, -73.89245)",BAINBRIDGE AVENUE,EAST 193 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462497,Station Wagon/Sport Utility Vehicle,,,, +09/13/2021,9:12,,,,,,GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4462754,Motorcycle,,,, +09/28/2021,18:10,QUEENS,11378,40.727757,-73.89229,"(40.727757, -73.89229)",GRAND AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462112,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,20:41,BROOKLYN,11229,40.596233,-73.938194,"(40.596233, -73.938194)",AVENUE W,BATCHELDER STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4462048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,9:15,,,40.692627,-73.959,"(40.692627, -73.959)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462690,Bus,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,13:22,BROOKLYN,11234,40.617825,-73.943085,"(40.617825, -73.943085)",,,3131 KINGS HIGHWAY,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,,,4462474,Sedan,Sedan,Sedan,, +09/27/2021,19:56,,,40.878056,-73.892136,"(40.878056, -73.892136)",GOULDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462484,Sedan,,,, +09/27/2021,14:46,BRONX,10467,40.87255,-73.87538,"(40.87255, -73.87538)",,,3177 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462503,Sedan,,,, +09/28/2021,8:00,BRONX,10456,40.833286,-73.914085,"(40.833286, -73.914085)",MORRIS AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462076,Sedan,Sedan,,, +07/01/2022,16:00,QUEENS,11377,40.75716,-73.90818,"(40.75716, -73.90818)",,,50-27 31 AVENUE,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4543129,E-Scooter,,,, +06/25/2022,1:00,QUEENS,11413,40.670887,-73.76078,"(40.670887, -73.76078)",183 STREET,141 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543170,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,17:05,QUEENS,11435,40.70107,-73.80787,"(40.70107, -73.80787)",,,91-06 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542274,Station Wagon/Sport Utility Vehicle,Bus,,, +06/29/2022,14:50,,,40.68949,-73.92207,"(40.68949, -73.92207)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542141,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,15:35,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543041,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +06/29/2022,5:00,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541949,Sedan,,,, +07/01/2022,7:02,,,40.742043,-73.95436,"(40.742043, -73.95436)",51 AVENUE,VERNON BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542651,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,23:42,MANHATTAN,10032,40.833378,-73.94328,"(40.833378, -73.94328)",,,540 WEST 157 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542941,Sedan,,,, +07/01/2022,2:50,STATEN ISLAND,10308,40.541874,-74.15155,"(40.541874, -74.15155)",HILLCREST STREET,OSBORNE AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4542693,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2022,23:20,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4542729,Sedan,Sedan,Sedan,, +07/01/2022,7:50,,,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542901,E-Bike,,,, +06/29/2022,16:43,BROOKLYN,11222,40.732014,-73.94475,"(40.732014, -73.94475)",,,370 GREENPOINT AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4541982,Dump,Bike,,, +06/29/2022,0:25,BROOKLYN,11213,40.666115,-73.9311,"(40.666115, -73.9311)",,,1651 CARROLL STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542829,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,10:50,MANHATTAN,10019,40.76723,-73.98412,"(40.76723, -73.98412)",,,340 WEST 57 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542414,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2022,9:49,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541816,Bus,Taxi,,, +06/30/2022,6:20,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,2,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542923,E-Scooter,Bike,,, +06/29/2022,10:02,,,40.768024,-73.91912,"(40.768024, -73.91912)",32 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542401,Sedan,,,, +06/30/2022,3:52,QUEENS,11370,40.756794,-73.894135,"(40.756794, -73.894135)",73 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4542169,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/29/2022,11:00,,,40.748077,-73.76066,"(40.748077, -73.76066)",217 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542928,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,14:25,BROOKLYN,11229,40.60448,-73.95237,"(40.60448, -73.95237)",,,2355 OCEAN AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4542533,Sedan,,,, +06/29/2022,7:00,BROOKLYN,11226,40.65153,-73.96303,"(40.65153, -73.96303)",SAINT PAULS PLACE,CATON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542037,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,9:53,,,40.794178,-73.94487,"(40.794178, -73.94487)",EAST 109 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4542446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2022,8:26,MANHATTAN,10033,40.849396,-73.93891,"(40.849396, -73.93891)",,,427 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542977,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,11:50,BROOKLYN,11229,40.602913,-73.943375,"(40.602913, -73.943375)",,,1971 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542528,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,4:48,QUEENS,11101,40.75416,-73.94941,"(40.75416, -73.94941)",QUEENS PLAZA SOUTH,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4542382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,15:00,BRONX,10452,40.834324,-73.919914,"(40.834324, -73.919914)",TUDOR PLACE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542429,Sedan,,,, +06/29/2022,10:21,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",3 AVENUE,EAST 36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,22:50,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4541986,Pick-up Truck,,,, +06/30/2022,7:50,BROOKLYN,11204,40.6087,-73.97404,"(40.6087, -73.97404)",AVENUE P,DAHILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542280,Station Wagon/Sport Utility Vehicle,,,, +06/08/2022,17:30,,,,,,BROOKLYN QNS EXPRESSWAY,COLES STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542880,Sedan,,,, +06/29/2022,11:27,BROOKLYN,11207,40.650024,-73.89126,"(40.650024, -73.89126)",FLATLANDS AVENUE,WILLIAMS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4542237,Sedan,Sedan,,, +07/01/2022,13:52,MANHATTAN,10029,40.799305,-73.94324,"(40.799305, -73.94324)",EAST 116 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543057,Box Truck,,,, +06/30/2022,15:00,QUEENS,11354,40.76595,-73.80984,"(40.76595, -73.80984)",155 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4542246,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/30/2022,23:30,,,40.68484,-73.79281,"(40.68484, -73.79281)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4542450,Sedan,Sedan,,, +06/24/2022,17:06,BRONX,10461,40.84086,-73.84239,"(40.84086, -73.84239)",,,75 WESTCHESTER SQUARE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542560,Sedan,Sedan,,, +06/29/2022,7:50,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541789,Sedan,Bus,,, +06/26/2022,12:00,,,,,,PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542734,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,10:00,BROOKLYN,11232,,,,,,4102 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542489,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,13:15,,,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542947,PK,,,, +07/01/2022,23:16,QUEENS,11378,40.722244,-73.90133,"(40.722244, -73.90133)",,,57-29 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2022,19:50,QUEENS,11429,40.70281,-73.74387,"(40.70281, -73.74387)",MURDOCK AVENUE,COLFAX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542582,Sedan,Box Truck,,, +06/30/2022,7:13,BRONX,10456,40.83312,-73.912155,"(40.83312, -73.912155)",EAST 168 STREET,FINDLAY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542102,Sedan,,,, +06/30/2022,10:30,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,15:27,BRONX,10465,40.83153,-73.81894,"(40.83153, -73.81894)",,,859 VINCENT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4542589,Sedan,,,, +12/23/2021,20:54,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489923,Sedan,,,, +09/29/2021,9:34,,,,,,VANWYCK EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4462165,Sedan,Tractor Truck Diesel,,, +06/26/2022,0:40,,,40.638695,-73.87859,"(40.638695, -73.87859)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542725,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2022,10:00,BROOKLYN,11214,40.60923,-73.997025,"(40.60923, -73.997025)",,,8005 19 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,20:47,QUEENS,11378,0,0,"(0.0, 0.0)",,,65-23 GRAND AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542478,Bike,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,14:55,BROOKLYN,11203,40.660145,-73.94768,"(40.660145, -73.94768)",,,588 NEW YORK AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542832,Sedan,E-Bike,,, +07/01/2022,19:00,BROOKLYN,11226,40.647568,-73.95276,"(40.647568, -73.95276)",,,108 VERONICA PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542673,Sedan,Van,,, +06/29/2022,14:03,,,,,,PARK AVENUE,NAVY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4541889,Sedan,Box Truck,,, +07/01/2022,5:03,BROOKLYN,11218,40.631916,-73.97738,"(40.631916, -73.97738)",,,905 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542984,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,6:58,QUEENS,11101,,,,,,30 30 Thomson Avenue,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542455,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,8:40,,,40.69979,-73.950096,"(40.69979, -73.950096)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,21:21,BRONX,10460,40.842052,-73.868706,"(40.842052, -73.868706)",TAYLOR AVENUE,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4542850,Tanker,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/01/2022,17:50,BROOKLYN,11204,40.61536,-73.987076,"(40.61536, -73.987076)",20 AVENUE,67 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4542789,Sedan,Bike,,, +06/30/2022,9:18,QUEENS,11419,40.691395,-73.82093,"(40.691395, -73.82093)",101 AVENUE,125 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4542184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,18:34,MANHATTAN,10016,40.747513,-73.9688,"(40.747513, -73.9688)",FDR DRIVE,EAST 41 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542769,Sedan,Pick-up Truck,,, +06/29/2022,9:40,,,40.784996,-73.824234,"(40.784996, -73.824234)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4541761,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +06/17/2022,19:45,MANHATTAN,10040,40.85715,-73.92741,"(40.85715, -73.92741)",FORT GEORGE AVENUE,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542961,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,12:41,QUEENS,11373,40.734497,-73.88315,"(40.734497, -73.88315)",KNEELAND AVENUE,CODWISE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541994,Sedan,,,, +06/30/2022,7:35,,,40.58604,-74.16859,"(40.58604, -74.16859)",,,2500 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542230,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2022,4:00,BROOKLYN,11226,40.652687,-73.95603,"(40.652687, -73.95603)",,,2101 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4542505,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,23:40,BRONX,10459,40.825695,-73.89913,"(40.825695, -73.89913)",PROSPECT AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542433,Sedan,Sedan,,, +06/30/2022,16:41,,,40.680374,-73.80445,"(40.680374, -73.80445)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542565,Taxi,Sedan,,, +06/27/2022,23:00,BRONX,10463,40.87975,-73.90144,"(40.87975, -73.90144)",WEST 233 STREET,ALBANY CRESCENT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542718,Sedan,,,, +06/30/2022,8:00,QUEENS,11435,40.711037,-73.814445,"(40.711037, -73.814445)",,,142-20 84 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542750,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,17:52,QUEENS,11366,40.72867,-73.79196,"(40.72867, -73.79196)",177 STREET,75 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542785,Sedan,Sedan,,, +06/30/2022,9:45,BROOKLYN,11209,40.622513,-74.03441,"(40.622513, -74.03441)",,,8814 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4542139,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,17:30,,,40.725727,-73.84809,"(40.725727, -73.84809)",68 ROAD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542620,Bus,Sedan,,, +06/29/2022,13:35,QUEENS,11354,40.77022,-73.83055,"(40.77022, -73.83055)",138 STREET,31 ROAD,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4541940,Sedan,Bike,,, +06/30/2022,6:30,,,40.73319,-73.866875,"(40.73319, -73.866875)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4542365,Sedan,Box Truck,,, +09/29/2021,8:23,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462227,Sedan,Bike,,, +07/01/2022,15:00,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542584,Sedan,Sedan,,, +06/30/2022,19:10,MANHATTAN,10028,40.778584,-73.95552,"(40.778584, -73.95552)",,,159 EAST 85 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4542343,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/25/2022,17:05,BROOKLYN,11225,,,,,,403 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542808,Sedan,,,, +06/30/2022,0:17,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4542569,Sedan,Sedan,,, +06/29/2022,11:50,BROOKLYN,11207,40.671165,-73.895676,"(40.671165, -73.895676)",,,265 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542049,Sedan,Carry All,,, +06/29/2022,19:35,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4542482,Motorcycle,Sedan,,, +06/30/2022,13:22,BROOKLYN,11220,40.641987,-74.01724,"(40.641987, -74.01724)",4 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542692,Sedan,,,, +06/30/2022,15:18,QUEENS,11101,40.75056,-73.93932,"(40.75056, -73.93932)",,,27-01 QUEENS PLAZA NORTH,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542666,Pick-up Truck,Sedan,,, +06/30/2022,0:10,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542019,Sedan,,,, +07/01/2022,19:10,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4542601,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/30/2022,14:55,,,40.725033,-73.91981,"(40.725033, -73.91981)",49 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542286,Van,E-Bike,,, +06/29/2022,2:26,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542872,Sedan,,,, +06/11/2022,14:30,BROOKLYN,11225,40.661964,-73.95705,"(40.661964, -73.95705)",BEDFORD AVENUE,LEFFERTS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542899,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2022,22:49,QUEENS,11103,40.760567,-73.9155,"(40.760567, -73.9155)",42 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4542649,Station Wagon/Sport Utility Vehicle,Moped,,, +06/29/2022,11:00,,,40.583733,-73.91969,"(40.583733, -73.91969)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4542730,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,16:20,QUEENS,11377,40.738354,-73.89591,"(40.738354, -73.89591)",69 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542618,Ambulance,,,, +07/01/2022,15:15,BROOKLYN,11217,40.68405,-73.98157,"(40.68405, -73.98157)",3 AVENUE,DEAN STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4543016,Moped,Sedan,,, +06/29/2022,18:00,BROOKLYN,11234,40.628387,-73.92431,"(40.628387, -73.92431)",AVENUE J,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542306,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,23:00,BROOKLYN,11207,40.661335,-73.8884,"(40.661335, -73.8884)",HEGEMAN AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542056,Taxi,,,, +07/01/2022,4:00,,,40.6532,-74.005585,"(40.6532, -74.005585)",38 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4542487,Tractor Truck Diesel,Sedan,Sedan,Sedan, +06/30/2022,16:45,BROOKLYN,11222,40.720795,-73.94496,"(40.720795, -73.94496)",HUMBOLDT STREET,MC GUINNESS BLVD SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543034,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,13:24,BRONX,10467,40.879578,-73.875374,"(40.879578, -73.875374)",EAST GUN HILL ROAD,PUTNAM PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542737,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2022,6:12,BRONX,10466,40.896854,-73.85882,"(40.896854, -73.85882)",,,4305 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4542915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,0:26,,,40.864807,-73.91937,"(40.864807, -73.91937)",POST AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Aggressive Driving/Road Rage,,,,4543103,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,1:05,,,40.698154,-73.86969,"(40.698154, -73.86969)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542641,Sedan,,,, +06/30/2022,16:10,BROOKLYN,11239,40.65516,-73.867714,"(40.65516, -73.867714)",,,881 ERSKINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542438,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,15:40,,,,,,DE KALB AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462320,Sedan,,,, +06/30/2022,21:00,BROOKLYN,11226,40.656082,-73.953064,"(40.656082, -73.953064)",ROGERS AVENUE,PARKSIDE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4542992,Sedan,Sedan,,, +06/29/2022,18:43,QUEENS,11411,40.70003,-73.745895,"(40.70003, -73.745895)",208 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4541926,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/30/2022,18:00,QUEENS,11432,40.71461,-73.80255,"(40.71461, -73.80255)",164 STREET,84 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542423,Moped,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,13:51,QUEENS,11416,40.680283,-73.85471,"(40.680283, -73.85471)",102 ROAD,84 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4474481,Sedan,,,, +09/13/2021,20:25,,,40.808445,-73.945,"(40.808445, -73.945)",WEST 126 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490119,Sedan,,,, +12/22/2021,9:15,,,40.694263,-73.95235,"(40.694263, -73.95235)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490117,Pick-up Truck,,,, +12/24/2021,10:00,,,,,,,,273 Mountain View Ave,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4490103,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/09/2021,9:25,BRONX,10452,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490124,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,17:00,BROOKLYN,11218,40.645817,-73.97068,"(40.645817, -73.97068)",,,485 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490094,Sedan,Sedan,,, +12/24/2021,19:40,BRONX,10453,40.856045,-73.90079,"(40.856045, -73.90079)",EAST 182 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490123,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,16:05,,,40.68005,-73.94327,"(40.68005, -73.94327)",FULTON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490108,Sedan,E-Bike,,, +12/23/2021,18:00,QUEENS,11691,40.600956,-73.75877,"(40.600956, -73.75877)",OCEAN CREST BOULEVARD,NASBY PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490121,Sedan,,,, +12/22/2021,16:45,BROOKLYN,11205,40.696995,-73.95475,"(40.696995, -73.95475)",PARK AVENUE,WALWORTH STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4490099,Sedan,Sedan,,, +12/23/2021,8:00,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490109,Carry All,Station Wagon/Sport Utility Vehicle,,, +11/23/2021,12:33,,,40.67973,-73.9374,"(40.67973, -73.9374)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4490100,Sedan,Sedan,,, +12/21/2021,11:30,BROOKLYN,11215,40.67543,-73.98352,"(40.67543, -73.98352)",,,12 GARFIELD PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490120,Sedan,,,, +12/15/2021,15:30,,,40.68651,-73.954544,"(40.68651, -73.954544)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490095,Box Truck,Sedan,,, +06/29/2022,10:11,MANHATTAN,10013,40.71766,-74.007545,"(40.71766, -74.007545)",WEST BROADWAY,WORTH STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4541836,Sedan,,,, +06/30/2022,7:45,MANHATTAN,10029,40.793995,-73.94251,"(40.793995, -73.94251)",,,174 EAST 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4542377,Carry All,Sedan,,, +06/30/2022,12:00,BROOKLYN,11206,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,VERNON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542188,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,13:44,QUEENS,11373,40.740074,-73.871475,"(40.740074, -73.871475)",92 STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542843,Sedan,Motorscooter,,, +06/21/2022,12:00,MANHATTAN,10039,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4542470,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,4:50,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542509,Box Truck,Sedan,,, +06/30/2022,13:32,QUEENS,11423,40.711136,-73.764854,"(40.711136, -73.764854)",,,195-06 SAGAMORE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542259,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/29/2022,21:05,,,0,0,"(0.0, 0.0)",CONWAY STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4541968,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,4:00,BROOKLYN,11235,40.591305,-73.963425,"(40.591305, -73.963425)",,,609 AVENUE X,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542072,Sedan,,,, +06/29/2022,17:40,BROOKLYN,11225,40.66626,-73.95957,"(40.66626, -73.95957)",MONTGOMERY STREET,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542820,Sedan,,,, +12/25/2021,21:30,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4489685,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,19:00,BROOKLYN,11219,40.62373,-73.99617,"(40.62373, -73.99617)",,,1501 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489943,Sedan,E-Scooter,,, +12/25/2021,22:37,BRONX,10456,40.827755,-73.9117,"(40.827755, -73.9117)",MELROSE AVENUE,BROOK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489817,Sedan,Sedan,,, +12/25/2021,2:08,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4489405,Sedan,,,, +12/25/2021,21:30,QUEENS,11433,40.699543,-73.78353,"(40.699543, -73.78353)",,,172-11 108 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489756,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,21:13,QUEENS,11422,40.66685,-73.73672,"(40.66685, -73.73672)",241 STREET,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489996,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,23:03,BRONX,10454,40.8092,-73.92281,"(40.8092, -73.92281)",,,244 WILLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489894,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,1:20,,,40.696167,-73.97721,"(40.696167, -73.97721)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489433,Sedan,Sedan,,, +12/25/2021,21:38,MANHATTAN,10018,40.75469,-73.99536,"(40.75469, -73.99536)",WEST 36 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489908,Sedan,,,, +12/25/2021,10:39,BROOKLYN,11236,40.636463,-73.9118,"(40.636463, -73.9118)",FLATLANDS AVENUE,EAST 82 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490073,Sedan,Sedan,,, +12/25/2021,11:24,BRONX,10469,40.859406,-73.84187,"(40.859406, -73.84187)",ASTOR AVENUE,WOODHULL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489462,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,12:00,QUEENS,11378,40.725166,-73.89928,"(40.725166, -73.89928)",,,56-38 HAMILTON PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489636,Station Wagon/Sport Utility Vehicle,,,, +11/29/2021,12:00,QUEENS,11369,40.76942,-73.880295,"(40.76942, -73.880295)",DITMARS BOULEVARD,90 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489947,Sedan,,,, +12/21/2021,19:45,MANHATTAN,10001,40.752056,-74.00099,"(40.752056, -74.00099)",WEST 30 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489965,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,18:50,,,40.82816,-73.91297,"(40.82816, -73.91297)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4490004,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,8:37,,,40.788906,-73.93765,"(40.788906, -73.93765)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490024,Sedan,Sedan,,, +12/25/2021,15:00,,,40.76595,-73.80984,"(40.76595, -73.80984)",155 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Backing Unsafely,Unspecified,,,4489551,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/25/2021,1:20,,,,,,MANHATTAN BR LOWER,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489500,Sedan,Sedan,Flat Bed,, +12/25/2021,7:02,BROOKLYN,11232,40.646717,-73.99789,"(40.646717, -73.99789)",8 AVENUE,40 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4489509,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,1:17,,,40.759678,-73.97216,"(40.759678, -73.97216)",EAST 54 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489612,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,11:30,BROOKLYN,11237,40.69862,-73.920135,"(40.69862, -73.920135)",MYRTLE AVENUE,HARMAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489468,,,,, +12/24/2021,22:35,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490023,Sedan,,,, +12/25/2021,20:24,BRONX,10455,40.813282,-73.898,"(40.813282, -73.898)",,,719 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4489857,Sedan,Taxi,Taxi,, +12/23/2021,22:25,MANHATTAN,10036,40.75766,-73.99084,"(40.75766, -73.99084)",,,330 WEST 42 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4489914,Sedan,,,, +12/25/2021,17:45,,,,,,HOME LAWN STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490056,Sedan,Sedan,,, +12/23/2021,18:25,MANHATTAN,10011,40.748356,-74.00369,"(40.748356, -74.00369)",WEST 24 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489974,Sedan,,,, +12/19/2021,18:00,,,40.604027,-73.89875,"(40.604027, -73.89875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490030,Sedan,Sedan,,, +12/25/2021,16:55,QUEENS,11415,40.7038,-73.82345,"(40.7038, -73.82345)",METROPOLITAN AVENUE,129 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4489495,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,0:48,MANHATTAN,10026,40.80132,-73.95763,"(40.80132, -73.95763)",,,2050 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489573,Taxi,Sedan,,, +12/25/2021,8:40,BRONX,10459,40.826862,-73.88769,"(40.826862, -73.88769)",,,1251 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4489785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,12:10,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489964,Sedan,Sedan,,, +12/25/2021,10:58,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489637,Pick-up Truck,,,, +12/25/2021,19:46,BRONX,10467,40.863194,-73.86642,"(40.863194, -73.86642)",MACE AVENUE,CRUGER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489712,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,19:09,,,40.67376,-73.73431,"(40.67376, -73.73431)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4489518,Sedan,Sedan,Sedan,, +12/24/2021,21:46,BRONX,10473,40.82332,-73.86816,"(40.82332, -73.86816)",,,912 SOUND VIEW AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Turning Improperly,,,,4489986,Sedan,Sedan,,, +12/22/2021,19:58,,,40.610146,-74.15127,"(40.610146, -74.15127)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4490015,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/25/2021,13:44,,,,,,QUEENSBORO BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4489840,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/07/2021,23:00,MANHATTAN,10065,40.765358,-73.96007,"(40.765358, -73.96007)",,,317 EAST 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489909,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,17:48,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4489957,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/25/2021,11:00,BROOKLYN,11226,40.64374,-73.9598,"(40.64374, -73.9598)",,,781 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4489658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,E-Scooter,Station Wagon/Sport Utility Vehicle, +12/22/2021,9:08,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489933,Sedan,,,, +12/25/2021,6:10,,,40.71405,-73.77801,"(40.71405, -73.77801)",184 STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4489767,Sedan,,,, +12/09/2021,22:40,QUEENS,11365,40.74847,-73.792305,"(40.74847, -73.792305)",UTOPIA PARKWAY,48 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489934,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,22:30,,,40.84932,-73.93374,"(40.84932, -73.93374)",SAINT NICHOLAS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489904,,,,, +12/25/2021,0:54,QUEENS,11365,40.73649,-73.80478,"(40.73649, -73.80478)",,,65-08 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,DELIVERY T,, +12/25/2021,18:50,,,40.838497,-73.939835,"(40.838497, -73.939835)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489704,Sedan,,,, +12/25/2021,4:28,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489441,Sedan,,,, +12/25/2021,17:00,BROOKLYN,11212,40.662964,-73.90614,"(40.662964, -73.90614)",LIVONIA AVENUE,WATKINS STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Passing Too Closely,,4489655,Sedan,Sedan,Sedan,Sedan, +12/04/2020,15:05,BROOKLYN,11212,40.655487,-73.90287,"(40.655487, -73.90287)",,,1555 LINDEN BOULEVARD,4,0,0,0,0,0,4,0,Other Vehicular,Other Vehicular,,,,4374781,Sedan,Sedan,,, +05/22/2021,15:36,,,40.68587,-73.76349,"(40.68587, -73.76349)",120 AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4419047,Sedan,Bike,,, +05/19/2021,0:00,BRONX,10474,40.8118,-73.88865,"(40.8118, -73.88865)",BARRETTO STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420455,Sedan,,,, +05/22/2021,20:36,BROOKLYN,11211,40.713173,-73.95968,"(40.713173, -73.95968)",,,199 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420467,Motorcycle,,,, +05/22/2021,0:20,,,40.82802,-73.93122,"(40.82802, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4420416,Sedan,Sedan,,, +05/22/2021,1:49,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420433,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,17:35,BROOKLYN,11233,40.677635,-73.91083,"(40.677635, -73.91083)",,,164 ROCKAWAY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420487,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,18:13,,,40.86769,-73.92122,"(40.86769, -73.92122)",WEST 207 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4489905,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,15:40,QUEENS,11102,40.775906,-73.920525,"(40.775906, -73.920525)",24 AVENUE,23 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4489751,Sedan,E-Bike,,, +05/23/2021,20:15,MANHATTAN,10033,40.847248,-73.93687,"(40.847248, -73.93687)",WADSWORTH AVENUE,WEST 177 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4419554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/23/2021,17:49,BRONX,10469,40.87395,-73.85278,"(40.87395, -73.85278)",EAST 211 STREET,BOSTON ROAD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4419731,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,21:00,,,40.697155,-73.96282,"(40.697155, -73.96282)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,,,,4420362,Sedan,Sedan,,, +05/22/2021,21:14,,,40.869846,-73.915886,"(40.869846, -73.915886)",BROADWAY,WEST 215 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420168,Station Wagon/Sport Utility Vehicle,Bike,,, +05/23/2021,14:56,BROOKLYN,11212,,,,THOMAS S BOYLAND STREET,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4420137,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,2:15,QUEENS,11101,40.74288,-73.951164,"(40.74288, -73.951164)",49 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419091,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +05/23/2021,21:30,BROOKLYN,11229,40.609344,-73.94355,"(40.609344, -73.94355)",GERRITSEN AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4419627,Sedan,,,, +05/23/2021,0:30,,,40.8279,-73.8459,"(40.8279, -73.8459)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419824,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:43,BROOKLYN,11201,40.68969,-73.99237,"(40.68969, -73.99237)",ATLANTIC AVENUE,COURT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419691,Sedan,Sedan,,, +05/23/2021,8:12,BROOKLYN,11221,40.690884,-73.912506,"(40.690884, -73.912506)",CENTRAL AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419994,Sedan,,,, +05/19/2021,0:32,MANHATTAN,10038,40.71207,-73.996956,"(40.71207, -73.996956)",CATHERINE STREET,MADISON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420231,Sedan,Sedan,,, +05/12/2021,0:00,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",BRONX RIVER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420296,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,1:14,BRONX,10460,40.841846,-73.870834,"(40.841846, -73.870834)",,,1751 VANBUREN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419123,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,22:10,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4419697,Sedan,,,, +04/02/2021,1:08,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420163,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,21:15,,,40.811565,-73.942726,"(40.811565, -73.942726)",LENOX AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4420208,Bus,Multi-Wheeled Vehicle,,, +05/23/2021,10:00,STATEN ISLAND,10306,40.563503,-74.13265,"(40.563503, -74.13265)",AMBOY ROAD,MONTREAL AVENUE,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4419945,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,6:10,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419219,Sedan,Sedan,,, +05/23/2021,9:00,QUEENS,11373,40.731815,-73.87569,"(40.731815, -73.87569)",,,57-29 VANHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419506,Sedan,,,, +05/23/2021,16:10,BRONX,10457,40.844368,-73.88902,"(40.844368, -73.88902)",EAST TREMONT AVENUE,PROSPECT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4419741,Bike,E-Bike,,, +05/23/2021,18:20,BROOKLYN,11212,40.661003,-73.904655,"(40.661003, -73.904655)",,,720 STONE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4419764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/23/2021,18:00,BRONX,10473,40.822117,-73.863174,"(40.822117, -73.863174)",,,827 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419830,Sedan,,,, +05/23/2021,1:49,BROOKLYN,11216,40.687244,-73.95469,"(40.687244, -73.95469)",BEDFORD AVENUE,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419859,Sedan,Bike,,, +05/23/2021,13:35,,,,,,,,1 POLY PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419466,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,2:20,MANHATTAN,10027,40.809452,-73.94949,"(40.809452, -73.94949)",,,236 WEST 125 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419324,Sedan,Sedan,,, +05/20/2021,0:50,QUEENS,11436,40.673298,-73.789894,"(40.673298, -73.789894)",ROCKAWAY BOULEVARD,148 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4420256,Box Truck,Sedan,,, +09/29/2021,21:15,,,40.69874,-73.926315,"(40.69874, -73.926315)",CENTRAL AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4462468,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,2:30,QUEENS,11378,40.726444,-73.90317,"(40.726444, -73.90317)",BORDEN AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420282,Tractor Truck Diesel,Sedan,,, +05/19/2021,14:29,BRONX,10461,40.85234,-73.84355,"(40.85234, -73.84355)",,,1964 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4420325,Sedan,Sedan,Sedan,, +05/23/2021,12:59,BROOKLYN,11203,40.64993,-73.93312,"(40.64993, -73.93312)",SNYDER AVENUE,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419447,Sedan,,,, +05/23/2021,7:15,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Lane Marking Improper/Inadequate,Unspecified,Unspecified,Unspecified,,4419338,Sedan,Sedan,Sedan,Sedan, +05/23/2021,21:00,QUEENS,11691,40.60374,-73.76332,"(40.60374, -73.76332)",,,10-24 BAY 25 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4420182,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,16:30,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419498,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,6:15,BRONX,10460,40.838062,-73.88869,"(40.838062, -73.88869)",,,1724 CROTONA PARK EAST,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419227,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,23:24,BROOKLYN,11208,40.684242,-73.877396,"(40.684242, -73.877396)",,,310 RIDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419858,Pick-up Truck,,,, +05/23/2021,7:37,,,40.82815,-73.93491,"(40.82815, -73.93491)",MACOMBS PLACE,,,3,0,0,0,0,0,3,0,Other Vehicular,Unsafe Speed,,,,4419677,Sedan,Sedan,,, +05/23/2021,12:45,,,40.754154,-73.9804,"(40.754154, -73.9804)",5 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419704,Station Wagon/Sport Utility Vehicle,Bus,,, +05/23/2021,11:19,STATEN ISLAND,10310,40.6358,-74.11743,"(40.6358, -74.11743)",BROADWAY,WINEGAR LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419889,Sedan,,,, +05/23/2021,20:25,QUEENS,11420,40.675003,-73.82435,"(40.675003, -73.82435)",SUTTER AVENUE,114 PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4419772,Sedan,Sedan,,, +05/23/2021,10:30,QUEENS,11367,40.73291,-73.81487,"(40.73291, -73.81487)",,,69-46 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419876,Sedan,Sedan,,, +05/23/2021,4:50,BROOKLYN,11232,40.66225,-73.99495,"(40.66225, -73.99495)",,,192 21 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4419278,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/23/2021,0:46,BROOKLYN,11236,40.64092,-73.902954,"(40.64092, -73.902954)",,,1205 EAST 93 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419484,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:20,,,40.734222,-73.94981,"(40.734222, -73.94981)",PROVOST STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419641,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,20:32,,,40.675236,-73.97106,"(40.675236, -73.97106)",FLATBUSH AVENUE,PLAZA STREET WEST,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4420248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,17:34,MANHATTAN,10035,40.804676,-73.93223,"(40.804676, -73.93223)",2 AVENUE,EAST 128 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4420336,Sedan,Sedan,Sedan,Sedan, +05/23/2021,2:00,MANHATTAN,10029,40.798958,-73.94244,"(40.798958, -73.94244)",,,120 EAST 116 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4419758,Sedan,Sedan,,, +05/23/2021,15:45,,,,,,SHORE PARKWAY,BAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420070,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,22:03,QUEENS,11436,40.679413,-73.79984,"(40.679413, -73.79984)",116 ROAD,142 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4420258,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,, +05/23/2021,7:00,QUEENS,11368,40.73989,-73.857056,"(40.73989, -73.857056)",MARTENSE AVENUE,PENROD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,23:15,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420308,Sedan,Sedan,,, +05/23/2021,12:30,BROOKLYN,11208,40.683132,-73.88259,"(40.683132, -73.88259)",RIDGEWOOD AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419600,Sedan,Sedan,,, +05/23/2021,19:50,MANHATTAN,10034,40.865364,-73.92439,"(40.865364, -73.92439)",VERMILYEA AVENUE,ACADEMY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420188,Sedan,Sedan,,, +05/23/2021,10:45,BROOKLYN,11212,40.658504,-73.914696,"(40.658504, -73.914696)",SARATOGA AVENUE,NEWPORT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419400,Sedan,Sedan,,, +05/23/2021,19:05,STATEN ISLAND,10306,40.56763,-74.11263,"(40.56763, -74.11263)",HYLAN BOULEVARD,BEACH AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419991,Sedan,Sedan,,, +05/23/2021,14:30,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419803,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,23:43,,,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419841,Taxi,,,, +05/19/2021,19:38,,,40.86682,-73.83923,"(40.86682, -73.83923)",EAST GUN HILL ROAD,KINGSLAND AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4420326,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,23:00,QUEENS,11412,40.70537,-73.775826,"(40.70537, -73.775826)",LIBERTY AVENUE,183 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419969,Sedan,,,, +05/15/2021,21:20,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,0:10,QUEENS,11101,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,51 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4419666,Sedan,Motorcycle,,, +05/19/2021,17:25,QUEENS,11103,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,BROADWAY,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4420150,Bike,,,, +05/23/2021,15:00,BROOKLYN,11226,40.644657,-73.95664,"(40.644657, -73.95664)",EAST 22 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419700,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,20:35,BRONX,10459,40.823124,-73.89101,"(40.823124, -73.89101)",,,957 ALDUS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,20:00,QUEENS,11421,40.69068,-73.85306,"(40.69068, -73.85306)",89 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419613,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,17:25,MANHATTAN,10021,40.770245,-73.959694,"(40.770245, -73.959694)",,,206 EAST 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420471,Sedan,Box Truck,,, +05/23/2021,22:00,BRONX,10461,40.844437,-73.83283,"(40.844437, -73.83283)",,,1649 EDISON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4419749,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/23/2021,19:10,BROOKLYN,11215,40.6634,-73.97785,"(40.6634, -73.97785)",PROSPECT PARK WEST,11 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420242,E-Bike,,,, +05/23/2021,14:32,,,40.789116,-73.82259,"(40.789116, -73.82259)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,Unsafe Speed,,,4419525,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/23/2021,4:43,BROOKLYN,11220,40.64113,-74.008286,"(40.64113, -74.008286)",,,680 53 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420003,Sedan,Sedan,Sedan,, +05/11/2021,13:50,QUEENS,11385,40.71392,-73.92241,"(40.71392, -73.92241)",,,46-55 METROPOLITAN AVENUE,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420264,Sedan,Bike,,, +05/23/2021,8:18,QUEENS,11372,40.750725,-73.87502,"(40.750725, -73.87502)",92 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419724,Refrigerated Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/23/2021,10:25,BROOKLYN,11223,40.600105,-73.96568,"(40.600105, -73.96568)",,,602 AVENUE T,0,0,0,0,0,0,0,0,Unspecified,,,,,4419634,Sedan,,,, +05/23/2021,20:04,BROOKLYN,11231,40.684326,-74.00551,"(40.684326, -74.00551)",VAN BRUNT STREET,PRESIDENT STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419693,Bus,Bike,,, +05/22/2021,4:00,,,40.592083,-73.78571,"(40.592083, -73.78571)",EDGEMERE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420155,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,2:12,,,,,,QUEENSBORO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Pavement Defective,Driver Inexperience,,,,4419092,Sedan,Sedan,,, +05/19/2021,12:00,QUEENS,11101,40.75172,-73.936134,"(40.75172, -73.936134)",29 STREET,40 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420194,Sedan,Sedan,,, +05/22/2021,22:50,MANHATTAN,10013,40.715588,-74.00917,"(40.715588, -74.00917)",,,95 WEST BROADWAY,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4420301,Sedan,Taxi,,, +05/23/2021,5:50,,,40.706215,-73.75648,"(40.706215, -73.75648)",HOLLIS AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4419958,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/23/2021,13:55,QUEENS,11435,40.698822,-73.80477,"(40.698822, -73.80477)",,,95-01 148 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420291,Sedan,,,, +05/17/2021,17:20,,,40.703632,-73.85587,"(40.703632, -73.85587)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4420261,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,15:21,QUEENS,11361,,,,CORPORAL KENNEDY STREET,43 avenue,,0,1,0,1,0,0,0,0,Unspecified,,,,,4419568,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,8:00,BROOKLYN,11211,40.714417,-73.96107,"(40.714417, -73.96107)",,,173 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420122,Sedan,,,, +05/23/2021,4:00,BRONX,10458,40.87538,-73.883446,"(40.87538, -73.883446)",EAST MOSHOLU PARKWAY SOUTH,EAST 205 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419134,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,13:00,QUEENS,11106,40.763905,-73.926025,"(40.763905, -73.926025)",,,31-43 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420164,Sedan,,,, +05/23/2021,17:00,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419524,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,15:50,BROOKLYN,11230,40.631405,-73.97379,"(40.631405, -73.97379)",,,184 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4419694,Sedan,,,, +05/08/2021,14:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420212,Sedan,PK,,, +05/23/2021,0:50,QUEENS,11418,40.70081,-73.84016,"(40.70081, -73.84016)",,,84-10 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419615,Sedan,Sedan,,, +05/23/2021,19:45,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419934,Sedan,,,, +05/23/2021,21:10,BROOKLYN,11232,40.659668,-73.99518,"(40.659668, -73.99518)",24 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4420002,Motorcycle,Bike,,, +05/23/2021,11:20,QUEENS,11420,40.668804,-73.82723,"(40.668804, -73.82723)",,,149-43 114 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4419657,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/20/2021,11:21,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420378,Sedan,,,, +05/11/2021,13:30,QUEENS,11433,40.69897,-73.7844,"(40.69897, -73.7844)",,,108-15 171 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420284,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,18:00,,,40.75475,-73.93678,"(40.75475, -73.93678)",39 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420187,Taxi,Van,,, +05/22/2021,0:01,,,40.81328,-73.89749,"(40.81328, -73.89749)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4420461,Tow Truck / Wrecker,Sedan,Sedan,, +05/23/2021,13:40,,,40.726376,-73.76624,"(40.726376, -73.76624)",FRANCIS LEWIS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419391,Sedan,,,, +05/23/2021,2:25,BROOKLYN,11218,40.652637,-73.97269,"(40.652637, -73.97269)",PROSPECT PARK SOUTHWEST,GREENWOOD AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4419448,,,,, +05/23/2021,19:17,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4419777,Motorcycle,Sedan,,, +05/18/2021,19:19,BRONX,10456,40.83072,-73.91354,"(40.83072, -73.91354)",,,1128 FINDLAY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420277,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,21:09,,,40.789055,-73.94861,"(40.789055, -73.94861)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,15:40,QUEENS,11366,40.729908,-73.7876,"(40.729908, -73.7876)",75 AVENUE,182 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4419879,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,9:40,BROOKLYN,11218,40.635902,-73.97813,"(40.635902, -73.97813)",,,760 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420227,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,7:45,QUEENS,11370,40.77061,-73.8919,"(40.77061, -73.8919)",21 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4419302,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/23/2021,17:20,BRONX,10466,40.884075,-73.85394,"(40.884075, -73.85394)",,,961 EAST 223 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419730,Sedan,Sedan,Sedan,, +05/23/2021,22:35,,,,,,Shea Road,Stadium Place North,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4419806,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/23/2021,10:15,,,40.67151,-73.76455,"(40.67151, -73.76455)",FARMERS BOULEVARD,140 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419433,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,13:41,BRONX,10468,40.877365,-73.88533,"(40.877365, -73.88533)",GRAND CONCOURSE,VANCORTLANDT AVENUE EAST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419640,Sedan,,,, +05/23/2021,17:25,,,40.603848,-74.00264,"(40.603848, -74.00264)",19 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420073,Station Wagon/Sport Utility Vehicle,POSTAL TRU,,, +05/15/2021,21:45,QUEENS,11691,40.59831,-73.74827,"(40.59831, -73.74827)",,,14-10 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4420172,Sedan,Sedan,Sedan,, +12/25/2021,17:43,MANHATTAN,10017,40.753,-73.969894,"(40.753, -73.969894)",2 AVENUE,EAST 47 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4490071,Sedan,Moped,,, +05/23/2021,20:15,BROOKLYN,11234,40.623856,-73.92257,"(40.623856, -73.92257)",EAST 55 STREET,AVENUE L,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4419893,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/23/2021,13:00,BROOKLYN,11224,40.579197,-73.98195,"(40.579197, -73.98195)",NEPTUNE AVENUE,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4419547,Sedan,Sedan,,, +05/23/2021,2:05,BROOKLYN,11211,40.71748,-73.938965,"(40.71748, -73.938965)",,,310 JACKSON STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4419652,Sedan,Pick-up Truck,,, +05/22/2021,0:30,BROOKLYN,11201,40.6982,-73.99571,"(40.6982, -73.99571)",,,15 CLARK STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420352,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,1:51,MANHATTAN,10037,40.809715,-73.935684,"(40.809715, -73.935684)",,,1960 PARK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420332,Sedan,Sedan,,, +05/22/2021,19:30,BROOKLYN,11215,40.673275,-73.98431,"(40.673275, -73.98431)",,,340 3 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420249,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/23/2021,12:15,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420038,Sedan,Sedan,,, +05/17/2021,0:00,,,40.803566,-73.96715,"(40.803566, -73.96715)",BROADWAY,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4420322,Taxi,Bike,,, +05/23/2021,0:00,,,,,,109 AVENUE,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4419767,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,22:00,BRONX,10454,40.806366,-73.924324,"(40.806366, -73.924324)",,,400 EAST 134 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419872,Taxi,,,, +05/23/2021,14:55,QUEENS,11422,40.675255,-73.73207,"(40.675255, -73.73207)",133 AVENUE,BROOKVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,23:17,MANHATTAN,10028,40.77882,-73.953995,"(40.77882, -73.953995)",3 AVENUE,EAST 86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420481,Sedan,Sedan,,, +05/23/2021,0:36,MANHATTAN,10035,40.80256,-73.943,"(40.80256, -73.943)",EAST 120 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4419813,Sedan,Sedan,,, +05/23/2021,20:30,BRONX,10466,40.89628,-73.84975,"(40.89628, -73.84975)",,,4311 WICKHAM AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4419739,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,13:17,,,40.823566,-73.93768,"(40.823566, -73.93768)",7 AVENUE,,,1,0,0,0,1,0,0,0,Listening/Using Headphones,Unspecified,,,,4419673,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,10:30,,,,,,HYLAN BOULEVARD,NARROWS ROAD SOUTH,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4420342,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,21:00,QUEENS,11103,40.767994,-73.913864,"(40.767994, -73.913864)",,,25-95 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420179,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:07,BROOKLYN,11210,40.62147,-73.95072,"(40.62147, -73.95072)",AVENUE L,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419703,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,2:50,,,40.695114,-73.93194,"(40.695114, -73.93194)",HART STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4420043,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/14/2021,0:15,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420402,Sedan,Tractor Truck Gasoline,,, +05/23/2021,1:30,BROOKLYN,11208,40.685696,-73.87161,"(40.685696, -73.87161)",RIDGEWOOD AVENUE,HEMLOCK STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419598,Sedan,Sedan,,, +05/23/2021,15:50,QUEENS,11436,40.67819,-73.80144,"(40.67819, -73.80144)",FOCH BOULEVARD,140 STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4419880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:00,BRONX,10473,40.82399,-73.85876,"(40.82399, -73.85876)",,,845 WHITE PLAINS ROAD,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4419971,Sedan,Sedan,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle +05/23/2021,2:36,,,40.71682,-73.94924,"(40.71682, -73.94924)",MEEKER AVENUE,WITHERS STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419646,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:55,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419829,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,8:09,QUEENS,11358,40.771324,-73.79401,"(40.771324, -73.79401)",FRANCIS LEWIS BOULEVARD,171 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4419225,Sedan,Bike,,, +05/23/2021,22:20,BRONX,10467,40.87809,-73.86045,"(40.87809, -73.86045)",,,850 EAST 213 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419716,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,17:43,BROOKLYN,11209,40.628265,-74.032036,"(40.628265, -74.032036)",,,8019 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419465,Sedan,Sedan,,, +05/23/2021,11:35,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419727,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,16:47,BROOKLYN,11236,40.63408,-73.88926,"(40.63408, -73.88926)",,,9718 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419566,Sedan,,,, +05/23/2021,21:55,,,,,,FOSTER AVENUE,FOSTER AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419712,Sedan,Bike,,, +12/25/2021,4:00,BRONX,10451,40.824917,-73.9139,"(40.824917, -73.9139)",,,390 EAST 162 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489821,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,20:10,MANHATTAN,10034,40.86674,-73.92873,"(40.86674, -73.92873)",DYCKMAN STREET,PAYSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420149,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,0:54,BRONX,10457,40.851467,-73.89557,"(40.851467, -73.89557)",EAST 180 STREET,WASHINGTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419665,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,22:00,QUEENS,11103,40.76497,-73.91727,"(40.76497, -73.91727)",,,36-03 30 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420160,Sedan,,,, +05/23/2021,3:18,QUEENS,11377,40.74668,-73.90072,"(40.74668, -73.90072)",63 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419093,Sedan,,,, +05/19/2021,18:56,,,40.776833,-73.911705,"(40.776833, -73.911705)",DITMARS BOULEVARD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420195,Sedan,Bike,,, +05/23/2021,17:40,QUEENS,11433,40.704422,-73.792854,"(40.704422, -73.792854)",ARCHER AVENUE,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,0:05,QUEENS,11378,40.731335,-73.89719,"(40.731335, -73.89719)",,,53-06 68 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420299,Sedan,,,, +05/22/2021,13:05,BROOKLYN,11214,40.60891,-73.990204,"(40.60891, -73.990204)",21 AVENUE,76 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420278,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,4:45,QUEENS,11372,40.74675,-73.89233,"(40.74675, -73.89233)",73 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419807,Sedan,,,, +05/23/2021,14:26,BROOKLYN,11222,40.721703,-73.95065,"(40.721703, -73.95065)",LORIMER STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419426,Dump,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,0:18,QUEENS,11434,40.6707,-73.77366,"(40.6707, -73.77366)",140 AVENUE,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4419439,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,9:00,,,40.58902,-74.13867,"(40.58902, -74.13867)",ROCKLAND AVENUE,BRIELLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4419751,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,18:00,,,40.857166,-73.92824,"(40.857166, -73.92824)",FORT GEORGE HILL,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420192,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,4:40,QUEENS,11385,40.695747,-73.899315,"(40.695747, -73.899315)",CYPRESS AVENUE,CODY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4419483,Sedan,Sedan,Sedan,, +05/23/2021,1:22,MANHATTAN,10025,,,,Amsterdam Avenue,w 109 Street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420239,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,4:30,BROOKLYN,11234,40.6082,-73.920715,"(40.6082, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489516,Sedan,,,, +05/23/2021,3:00,STATEN ISLAND,10308,40.54387,-74.14445,"(40.54387, -74.14445)",HYLAN BOULEVARD,CLEVELAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419843,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,23:38,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,COOPER AVENUE,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4420270,Sedan,Sedan,,, +05/23/2021,8:00,QUEENS,11422,40.660233,-73.73941,"(40.660233, -73.73941)",,,144-05 243 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419252,Sedan,Sedan,,, +05/23/2021,23:15,BRONX,10465,40.87831,-73.870155,"(40.87831, -73.870155)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4419752,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,19:24,,,40.66049,-73.962814,"(40.66049, -73.962814)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4419838,Sedan,Sedan,,, +05/23/2021,15:35,QUEENS,11432,40.71368,-73.78746,"(40.71368, -73.78746)",DALNY ROAD,HIGHLAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419878,Sedan,,,, +05/23/2021,0:35,,,40.799976,-73.958626,"(40.799976, -73.958626)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419308,Bike,Bike,,, +05/23/2021,19:40,BROOKLYN,11237,40.710667,-73.93361,"(40.710667, -73.93361)",MORGAN AVENUE,STAGG STREET,,2,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4419787,E-Scooter,Bike,,, +05/23/2021,17:25,BROOKLYN,11232,40.65431,-74.004425,"(40.65431, -74.004425)",4 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419478,Pick-up Truck,Sedan,,, +05/22/2021,23:55,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",6 AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420250,Sedan,,,, +12/25/2021,4:30,BROOKLYN,11236,40.637505,-73.9142,"(40.637505, -73.9142)",,,648 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489539,Sedan,,,, +05/23/2021,1:40,QUEENS,11355,40.76147,-73.818085,"(40.76147, -73.818085)",147 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419518,E-Bike,,,, +05/23/2021,21:00,QUEENS,11429,40.71036,-73.72999,"(40.71036, -73.72999)",225 STREET,104 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419695,Sedan,Sedan,,, +05/21/2021,11:30,BROOKLYN,11215,40.665146,-73.98494,"(40.665146, -73.98494)",,,355 13 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420243,Sedan,Sedan,,, +05/23/2021,14:30,QUEENS,11435,40.704216,-73.8073,"(40.704216, -73.8073)",,,148-12 89 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4419956,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/17/2021,21:30,QUEENS,11103,40.759365,-73.914276,"(40.759365, -73.914276)",NEWTOWN ROAD,44 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4420184,Convertible,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/23/2021,9:18,,,40.610157,-74.01203,"(40.610157, -74.01203)",BAY 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419388,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:05,,,40.766308,-73.8197,"(40.766308, -73.8197)",147 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4419558,Sedan,,,, +12/11/2021,14:38,BRONX,10472,40.82701,-73.86142,"(40.82701, -73.86142)",,,1010 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489978,Sedan,Sedan,,, +05/23/2021,20:30,QUEENS,11429,40.713303,-73.73586,"(40.713303, -73.73586)",SPRINGFIELD BOULEVARD,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419500,Sedan,Motorcycle,,, +05/21/2021,16:20,MANHATTAN,10012,40.72398,-74.00243,"(40.72398, -74.00243)",,,390 WEST BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4420303,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,0:28,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4419744,Sedan,,,, +05/23/2021,13:00,QUEENS,11356,40.783215,-73.8448,"(40.783215, -73.8448)",,,123-06 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419488,Sedan,,,, +05/22/2021,20:30,,,,,,HARDING EXPRESSWAY,MARATHON PARKWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4420379,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,14:53,,,40.618523,-73.99081,"(40.618523, -73.99081)",18 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420148,Sedan,Sedan,Sedan,, +05/23/2021,12:20,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419844,Sedan,Sedan,,, +05/22/2021,6:17,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4420462,Taxi,Chassis Cab,,, +05/23/2021,17:05,QUEENS,11415,40.713913,-73.83009,"(40.713913, -73.83009)",QUEENS BOULEVARD,80 ROAD,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4419618,Sedan,Sedan,,, +05/23/2021,7:00,QUEENS,11420,40.678032,-73.82302,"(40.678032, -73.82302)",LINDEN BOULEVARD,116 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4419775,Sedan,Sedan,Sedan,, +05/23/2021,12:40,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",SAINT ANNS AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419868,Sedan,,,, +05/23/2021,6:10,,,40.827595,-73.85004,"(40.827595, -73.85004)",BRUCKNER BOULEVARD,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,23:42,,,40.827198,-73.93668,"(40.827198, -73.93668)",MACOMBS PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4419682,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,22:00,,,40.75369,-73.74445,"(40.75369, -73.74445)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419998,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,17:30,BROOKLYN,11218,40.64558,-73.98574,"(40.64558, -73.98574)",,,3437 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4420224,Van,,,, +05/23/2021,18:40,MANHATTAN,10020,40.75927,-73.980896,"(40.75927, -73.980896)",WEST 49 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420093,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,4:27,BROOKLYN,11207,40.669518,-73.89424,"(40.669518, -73.89424)",SUTTER AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419597,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,3:45,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4419161,Sedan,,,, +05/21/2021,21:00,QUEENS,11691,40.595127,-73.75921,"(40.595127, -73.75921)",,,25-11 SEAGIRT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4420161,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,20:00,STATEN ISLAND,10312,40.547215,-74.19735,"(40.547215, -74.19735)",ROSEDALE AVENUE,BOULDER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420323,Sedan,,,, +05/23/2021,17:00,QUEENS,11101,,,,VAN DAM STREET,THOMSON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419456,Sedan,Sedan,Sedan,, +05/23/2021,13:43,BROOKLYN,11211,40.7159,-73.94508,"(40.7159, -73.94508)",,,153 SKILLMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4419653,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,12:45,QUEENS,11432,40.702164,-73.8043,"(40.702164, -73.8043)",,,150-14 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420285,Sedan,,,, +05/23/2021,9:45,BROOKLYN,11218,40.633488,-73.97459,"(40.633488, -73.97459)",EAST 4 STREET,AVENUE F,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420213,Sedan,Box Truck,,, +05/23/2021,2:04,QUEENS,11435,40.69114,-73.80488,"(40.69114, -73.80488)",INWOOD STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419965,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,18:20,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",37 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420440,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,18:48,QUEENS,11414,40.652424,-73.83821,"(40.652424, -73.83821)",CROSS BAY BOULEVARD,163 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419661,Sedan,,,, +05/23/2021,18:15,MANHATTAN,10035,40.799473,-73.94157,"(40.799473, -73.94157)",,,140 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420331,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,11:10,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419737,Sedan,Sedan,,, +05/23/2021,17:00,QUEENS,11418,40.697327,-73.82961,"(40.697327, -73.82961)",LEFFERTS BOULEVARD,89 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419973,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,11:00,BROOKLYN,11211,40.71686,-73.94255,"(40.71686, -73.94255)",,,201 JACKSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419639,Sedan,,,, +05/23/2021,16:00,,,40.57699,-73.98153,"(40.57699, -73.98153)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4419549,Bus,Sedan,,, +05/22/2021,13:32,,,40.761265,-73.9094,"(40.761265, -73.9094)",47 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420152,Sedan,,,, +12/25/2021,18:15,BROOKLYN,11235,40.588722,-73.960464,"(40.588722, -73.960464)",GERALD COURT,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,,,,,,4489687,,,,, +05/23/2021,19:00,BRONX,10460,40.836338,-73.88727,"(40.836338, -73.88727)",,,1695 HOE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419766,Sedan,,,, +05/23/2021,20:00,QUEENS,11365,40.728226,-73.80131,"(40.728226, -73.80131)",168 STREET,73 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419901,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,17:09,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4419670,Sedan,E-Bike,,, +05/22/2021,2:40,STATEN ISLAND,10304,40.62036,-74.08166,"(40.62036, -74.08166)",,,101 WARREN STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4420353,Sedan,Sedan,,, +05/23/2021,23:45,BRONX,10458,40.851757,-73.88473,"(40.851757, -73.88473)",EAST 183 STREET,CROTONA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419720,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,12:38,BRONX,10469,40.86451,-73.83494,"(40.86451, -73.83494)",,,1750 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4420238,Sedan,Sedan,,, +05/23/2021,13:55,QUEENS,11373,40.73088,-73.871635,"(40.73088, -73.871635)",60 AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4420027,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/23/2021,10:21,QUEENS,11435,40.68955,-73.79897,"(40.68955, -73.79897)",,,109-43 LIVERPOOL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420290,Sedan,,,, +05/23/2021,20:50,QUEENS,11368,40.753025,-73.870544,"(40.753025, -73.870544)",,,35-40 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4419728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/02/2021,11:34,BRONX,10456,40.830914,-73.92047,"(40.830914, -73.92047)",EAST 165 STREET,GRAND CONCOURSE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4420279,Sedan,Bike,,, +05/23/2021,22:00,MANHATTAN,10002,40.713932,-73.99157,"(40.713932, -73.99157)",,,133 EAST BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4420045,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,1:50,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4419106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,11:40,QUEENS,11102,40.76818,-73.92417,"(40.76818, -73.92417)",,,25-40 30 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4420198,Sedan,,,, +05/23/2021,0:17,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4420153,Sedan,Sedan,Sedan,, +05/23/2021,15:45,BROOKLYN,11207,40.67974,-73.89213,"(40.67974, -73.89213)",VAN SICLEN AVENUE,ARLINGTON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419602,Sedan,Sedan,,, +05/23/2021,20:00,QUEENS,11368,40.738674,-73.84897,"(40.738674, -73.84897)",,,110-35 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,12:20,BROOKLYN,11236,40.639812,-73.90662,"(40.639812, -73.90662)",,,8902 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419440,Sedan,,,, +05/23/2021,15:40,BROOKLYN,11214,40.59521,-73.99239,"(40.59521, -73.99239)",BATH AVENUE,BAY 37 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419789,Sedan,,,, +05/22/2021,23:30,,,40.601955,-73.745415,"(40.601955, -73.745415)",BEACH 9 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420178,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,22:55,MANHATTAN,10036,40.75547,-73.9856,"(40.75547, -73.9856)",,,151 WEST 42 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419681,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,21:30,BRONX,10455,40.811398,-73.90777,"(40.811398, -73.90777)",EAST 147 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4420427,Station Wagon/Sport Utility Vehicle,Van,Sedan,, +05/23/2021,21:30,BRONX,10462,40.836994,-73.847,"(40.836994, -73.847)",,,1409 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4419702,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +05/23/2021,10:00,,,40.788906,-73.93765,"(40.788906, -73.93765)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420480,Sedan,Sedan,,, +05/23/2021,14:00,,,,,,SHORE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,5:45,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419745,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,13:52,QUEENS,11385,40.70051,-73.898315,"(40.70051, -73.898315)",,,59-40 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4419487,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,16:30,,,,,,BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4419537,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,15:08,BROOKLYN,11203,40.647377,-73.92993,"(40.647377, -73.92993)",,,1044 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420266,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,5:10,STATEN ISLAND,10309,40.519623,-74.220146,"(40.519623, -74.220146)",AMBOY ROAD,GEORGIA COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419257,Pick-up Truck,,,, +05/22/2021,12:55,BROOKLYN,11215,40.67146,-73.99103,"(40.67146, -73.99103)",3 AVENUE,9 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420245,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,19:00,BRONX,10466,,,,,,1891 SCHIEFELIN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419753,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,3:39,BROOKLYN,11229,40.600964,-73.94685,"(40.600964, -73.94685)",,,4142 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4419644,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/21/2021,16:58,,,40.725796,-73.99762,"(40.725796, -73.99762)",MERCER STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4420341,Sedan,Dump,,, +05/19/2021,9:00,QUEENS,11101,40.75114,-73.9345,"(40.75114, -73.9345)",,,30-30 NORTHERN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4420191,Taxi,,,, +05/23/2021,13:45,MANHATTAN,10007,40.71493,-74.01155,"(40.71493, -74.01155)",,,88 MURRAY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420298,Sedan,Sedan,,, +05/23/2021,1:50,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419492,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,22:17,MANHATTAN,10003,40.726505,-73.9883,"(40.726505, -73.9883)",,,321 EAST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419552,UHAL,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,0:00,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4419966,Sedan,,,, +05/23/2021,22:55,BRONX,10457,40.852516,-73.90001,"(40.852516, -73.90001)",VALENTINE AVENUE,EAST 180 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419932,Sedan,E-Scooter,,, +12/22/2021,19:23,QUEENS,11415,40.703022,-73.83125,"(40.703022, -73.83125)",120 STREET,85 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490044,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,5:45,BROOKLYN,11213,40.66427,-73.9306,"(40.66427, -73.9306)",,,1024 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4419839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/23/2021,12:00,STATEN ISLAND,10306,40.556534,-74.12813,"(40.556534, -74.12813)",HYLAN BOULEVARD,BUFFALO STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419847,Sedan,,,, +05/21/2021,15:45,BROOKLYN,11233,40.67903,-73.9246,"(40.67903, -73.9246)",FULTON STREET,BUFFALO AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420359,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,2:35,STATEN ISLAND,10312,40.546688,-74.18591,"(40.546688, -74.18591)",JEFFERSON BOULEVARD,SINCLAIR AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4419247,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,19:15,BROOKLYN,11210,40.634663,-73.94786,"(40.634663, -73.94786)",,,2092 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4419709,Sedan,Sedan,Sedan,, +05/23/2021,17:45,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420401,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/23/2021,15:00,,,40.744526,-73.77161,"(40.744526, -73.77161)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4419425,Sedan,,,, +05/22/2021,3:55,BROOKLYN,11223,40.603,-73.97241,"(40.603, -73.97241)",,,2036 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420389,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,23:34,BRONX,10451,40.824707,-73.91552,"(40.824707, -73.91552)",EAST 161 STREET,COURTLANDT AVENUE,,2,0,0,0,1,0,1,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4419765,Bike,,,, +05/23/2021,7:00,,,40.743504,-73.83567,"(40.743504, -73.83567)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4419220,Box Truck,,,, +05/23/2021,22:06,,,40.638527,-73.87853,"(40.638527, -73.87853)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419562,Sedan,Sedan,,, +05/23/2021,22:00,BRONX,10472,40.8337,-73.879845,"(40.8337, -73.879845)",BRONX RIVER AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419832,Motorbike,,,, +05/23/2021,0:00,STATEN ISLAND,10312,40.5433,-74.16424,"(40.5433, -74.16424)",RICHMOND AVENUE,AMBOY ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420306,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,20:31,,,40.892708,-73.84455,"(40.892708, -73.84455)",EDSON AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4419743,Sedan,Sedan,,, +05/23/2021,17:13,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419468,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/15/2021,20:40,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420169,Sedan,,,, +05/23/2021,19:16,,,40.580616,-74.152534,"(40.580616, -74.152534)",RICHMOND HILL ROAD,FOREST HILL ROAD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4420101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,19:19,,,40.72706,-73.95695,"(40.72706, -73.95695)",FRANKLIN STREET,CALYER STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4419654,Sedan,Sedan,,, +05/23/2021,18:50,BROOKLYN,11229,40.59928,-73.93285,"(40.59928, -73.93285)",,,2212 PLUMB 1 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4419622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/23/2021,15:00,,,,,,ASTORIA BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419950,Sedan,Sedan,,, +05/23/2021,14:25,BROOKLYN,11385,40.701046,-73.91068,"(40.701046, -73.91068)",SAINT NICHOLAS AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419995,Carry All,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,18:30,BROOKLYN,11224,40.575565,-73.98121,"(40.575565, -73.98121)",STILLWELL AVENUE,SURF AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419662,Sedan,Sedan,,, +05/18/2021,20:55,BROOKLYN,11210,40.634354,-73.94202,"(40.634354, -73.94202)",GLENWOOD ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420324,Sedan,Sedan,,, +05/23/2021,15:00,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4419462,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/17/2021,14:00,QUEENS,11378,40.72861,-73.88721,"(40.72861, -73.88721)",57 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420287,Sedan,,,, +05/23/2021,6:00,BROOKLYN,11203,40.653767,-73.931076,"(40.653767, -73.931076)",,,736 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419359,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,23:45,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,14:10,,,40.61107,-74.00131,"(40.61107, -74.00131)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,10:00,BRONX,10474,40.814102,-73.8912,"(40.814102, -73.8912)",,,754 TIFFANY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420463,Sedan,,,, +12/25/2021,16:27,QUEENS,11363,40.766193,-73.740265,"(40.766193, -73.740265)",,,246-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489496,Sedan,,,, +05/23/2021,20:35,MANHATTAN,10128,40.778168,-73.95036,"(40.778168, -73.95036)",,,332 EAST 87 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4419502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,11:30,BROOKLYN,11231,40.678993,-73.99296,"(40.678993, -73.99296)",1 STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419690,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,4:29,BRONX,10462,40.83389,-73.85466,"(40.83389, -73.85466)",WESTCHESTER AVENUE,OLMSTEAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419827,Bus,PK,,, +05/23/2021,1:00,,,40.665916,-73.81528,"(40.665916, -73.81528)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4419735,Sedan,,,, +05/23/2021,1:00,BRONX,10466,40.889835,-73.85116,"(40.889835, -73.85116)",,,939 EAST 231 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419314,Ambulance,Sedan,,, +05/23/2021,6:34,BRONX,10458,,,,MARION AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419167,Sedan,,,, +05/23/2021,11:45,BROOKLYN,11207,40.67007,-73.89927,"(40.67007, -73.89927)",WILLIAMS AVENUE,BELMONT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4419581,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,15:00,BRONX,10465,40.823177,-73.82396,"(40.823177, -73.82396)",,,2830 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420259,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,22:25,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,3,0,0,0,0,0,3,0,Fell Asleep,Unspecified,,,,4419696,Sedan,Sedan,,, +05/23/2021,8:00,QUEENS,11373,40.744167,-73.88904,"(40.744167, -73.88904)",,,41-58 76 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4419513,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/16/2021,0:15,,,40.782513,-73.91976,"(40.782513, -73.91976)",DITMARS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420147,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/12/2021,16:00,,,40.75582,-73.93259,"(40.75582, -73.93259)",37 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420162,Sedan,,,, +05/23/2021,21:20,BROOKLYN,11228,40.607655,-74.01703,"(40.607655, -74.01703)",14 AVENUE,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4419960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/21/2021,8:00,BRONX,10466,40.89322,-73.86086,"(40.89322, -73.86086)",,,4154 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420222,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,21:18,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420447,Sedan,,,, +05/23/2021,16:50,,,40.795326,-73.971306,"(40.795326, -73.971306)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Turning Improperly,,,,4419606,Sedan,Bike,,, +05/23/2021,21:40,BROOKLYN,11237,40.699818,-73.920135,"(40.699818, -73.920135)",KNICKERBOCKER AVENUE,HIMROD STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4419978,Sedan,Sedan,,, +05/22/2021,17:45,MANHATTAN,10001,40.74782,-73.99665,"(40.74782, -73.99665)",WEST 27 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4420253,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,0:30,BROOKLYN,11211,40.712265,-73.95548,"(40.712265, -73.95548)",MARCY AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4419756,Sedan,Sedan,Sedan,Sedan, +05/16/2021,12:15,,,,,,Highland Blvd,Vermont Place,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420281,Sedan,Bike,,, +05/22/2021,6:30,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",VARICK STREET,WATTS STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4420307,Taxi,Sedan,Sedan,, +05/23/2021,13:30,BROOKLYN,11203,40.65017,-73.92921,"(40.65017, -73.92921)",SNYDER AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,17:42,BROOKLYN,11211,40.712482,-73.95057,"(40.712482, -73.95057)",,,95 AINSLIE STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4419812,Sedan,FIRETRUCK,,, +05/19/2021,9:00,,,,,,GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4420190,Sedan,Sedan,Sedan,, +05/23/2021,7:20,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,View Obstructed/Limited,Following Too Closely,,,4419748,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/23/2021,1:00,BROOKLYN,11207,40.663643,-73.89084,"(40.663643, -73.89084)",WYONA STREET,RIVERDALE AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4419424,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +05/23/2021,13:23,QUEENS,11379,40.71626,-73.88151,"(40.71626, -73.88151)",,,73-35 PENELOPE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419495,Sedan,,,, +05/23/2021,12:30,BROOKLYN,11236,40.649387,-73.90841,"(40.649387, -73.90841)",AVENUE D,EAST 96 STREET,,1,0,1,0,0,0,0,0,,,,,,4419877,,,,, +05/23/2021,0:00,,,40.682835,-73.94092,"(40.682835, -73.94092)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419856,Sedan,,,, +12/23/2021,14:45,STATEN ISLAND,10309,40.53774,-74.20876,"(40.53774, -74.20876)",SHELDON AVENUE,LENEVAR AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489942,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,22:57,BROOKLYN,11230,40.627155,-73.96563,"(40.627155, -73.96563)",AVENUE I,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420223,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,11:55,,,40.578873,-74.15547,"(40.578873, -74.15547)",,,1742B FOREST HILL ROAD,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4420289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/23/2021,6:25,QUEENS,11433,40.699757,-73.79359,"(40.699757, -73.79359)",BREWER BOULEVARD,SOUTH ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4419967,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:37,,,40.729046,-74.01073,"(40.729046, -74.01073)",WEST STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420338,Sedan,Bike,,, +05/23/2021,12:30,QUEENS,11102,40.77204,-73.93224,"(40.77204, -73.93224)",MAIN AVENUE,30 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4419667,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/23/2021,1:00,,,40.769703,-73.914,"(40.769703, -73.914)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420151,Taxi,Sedan,,, +05/23/2021,13:00,QUEENS,11106,40.75679,-73.9274,"(40.75679, -73.9274)",,,35-32 33 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420154,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,1:15,,,40.714592,-73.97652,"(40.714592, -73.97652)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419111,Sedan,,,, +05/16/2021,8:55,,,40.656742,-73.92897,"(40.656742, -73.92897)",CLARKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420265,Sedan,,,, +05/23/2021,23:40,BRONX,10464,40.85114,-73.788475,"(40.85114, -73.788475)",,,459 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419706,Sedan,,,, +05/23/2021,17:30,BRONX,10466,40.89667,-73.85451,"(40.89667, -73.85451)",,,4350 FURMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419729,Ambulance,,,, +05/07/2021,8:04,BRONX,10454,40.807903,-73.92005,"(40.807903, -73.92005)",EAST 138 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420424,Sedan,Bike,,, +05/23/2021,20:00,,,40.593544,-73.77716,"(40.593544, -73.77716)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4420201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,17:07,BROOKLYN,11212,40.66785,-73.92103,"(40.66785, -73.92103)",EAST NEW YORK AVENUE,TAPSCOTT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420490,Sedan,Sedan,,, +05/23/2021,11:30,BROOKLYN,11207,40.663925,-73.89961,"(40.663925, -73.89961)",SNEDIKER AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419601,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,11:40,,,40.637516,-74.166145,"(40.637516, -74.166145)",,,114 SOUTH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419888,Station Wagon/Sport Utility Vehicle,PK,,, +05/23/2021,23:50,,,40.875,-73.87471,"(40.875, -73.87471)",DECATUR AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419643,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,21:30,,,40.675236,-73.97106,"(40.675236, -73.97106)",FLATBUSH AVENUE,PLAZA STREET EAST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420246,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,18:00,,,40.696144,-73.97834,"(40.696144, -73.97834)",PARK AVENUE,SAINT EDWARDS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Turning Improperly,,,,4420361,Sedan,,,, +05/23/2021,20:25,BRONX,10458,40.851593,-73.88419,"(40.851593, -73.88419)",,,744 EAST 183 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419721,Sedan,Sedan,,, +05/23/2021,13:07,,,40.775234,-73.829025,"(40.775234, -73.829025)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4419485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/23/2021,2:00,,,40.666115,-73.79358,"(40.666115, -73.79358)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419246,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,3:34,MANHATTAN,10035,40.799297,-73.94113,"(40.799297, -73.94113)",EAST 117 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4419796,Sedan,,,, +05/23/2021,17:25,,,40.850132,-73.91162,"(40.850132, -73.91162)",DAVIDSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419933,Sedan,,,, +05/23/2021,14:25,MANHATTAN,10027,40.808407,-73.95248,"(40.808407, -73.95248)",,,2271 8 AVENUE,2,0,1,0,1,0,0,0,Unspecified,,,,,4419528,Bike,,,, +05/23/2021,17:50,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,16:06,,,,,,PELHAM PARKWAY SOUTH,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420235,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,2:00,,,40.601734,-73.935036,"(40.601734, -73.935036)",AVENUE U,GERRITSEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4419638,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,16:11,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4419680,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,19:01,QUEENS,11106,40.766563,-73.92822,"(40.766563, -73.92822)",,,23-23 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420177,Sedan,,,, +05/23/2021,5:35,,,,,,STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4420067,Sedan,,,, +05/22/2021,6:42,MANHATTAN,10035,40.79811,-73.92964,"(40.79811, -73.92964)",,,80 PALADINO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4420330,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/23/2021,20:20,,,40.64937,-74.012955,"(40.64937, -74.012955)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420390,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/23/2021,17:50,,,40.666283,-73.78995,"(40.666283, -73.78995)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4419701,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/23/2021,19:30,BRONX,10474,40.812214,-73.885895,"(40.812214, -73.885895)",FAILE STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420475,Sedan,,,, +05/23/2021,21:20,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",EAST 36 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419607,Station Wagon/Sport Utility Vehicle,,,, +05/13/2021,11:40,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420297,Box Truck,Tractor Truck Diesel,,, +05/23/2021,22:29,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419982,Sedan,,,, +05/23/2021,23:47,,,40.69122,-73.93969,"(40.69122, -73.93969)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420019,Taxi,Bike,,, +05/23/2021,0:00,BRONX,10452,40.84029,-73.91436,"(40.84029, -73.91436)",WYTHE PLACE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420113,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,1:00,QUEENS,11417,40.680164,-73.84095,"(40.680164, -73.84095)",ROCKAWAY BOULEVARD,98 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4419655,Sedan,Sedan,,, +05/23/2021,18:27,,,,,,CROSS BAY BOULEVARD,JAMAICA BAY WILD LIFE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419553,E-Bike,,,, +12/11/2021,11:15,QUEENS,11422,40.671947,-73.73384,"(40.671947, -73.73384)",241 STREET,135 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,17:40,QUEENS,11416,40.686153,-73.85083,"(40.686153, -73.85083)",95 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489523,Sedan,Pick-up Truck,,, +12/25/2021,4:25,BRONX,10456,40.83626,-73.90267,"(40.83626, -73.90267)",,,3716 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489778,Sedan,,,, +12/25/2021,16:10,QUEENS,11378,40.726677,-73.90736,"(40.726677, -73.90736)",,,59-40 55 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490058,Sedan,Sedan,,, +12/25/2021,2:45,QUEENS,11373,40.744358,-73.88597,"(40.744358, -73.88597)",,,79-01 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,13:30,BROOKLYN,11237,40.699265,-73.91482,"(40.699265, -73.91482)",GROVE STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489801,Sedan,,,, +12/23/2021,9:20,MANHATTAN,10001,40.753925,-73.99761,"(40.753925, -73.99761)",WEST 34 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4489973,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,4:16,BROOKLYN,11234,40.630238,-73.93246,"(40.630238, -73.93246)",KINGS HIGHWAY,AVENUE I,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4489461,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,15:00,BROOKLYN,11234,40.611614,-73.92847,"(40.611614, -73.92847)",AVENUE S,KIMBALL STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490028,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,9:52,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462486,Sedan,Sedan,,, +12/25/2021,17:20,MANHATTAN,10017,40.75337,-73.974655,"(40.75337, -73.974655)",EAST 45 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489613,Sedan,,,, +12/24/2021,20:25,QUEENS,11411,40.697765,-73.744865,"(40.697765, -73.744865)",,,116-09 208 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4489995,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,0:32,BRONX,10465,40.825726,-73.82112,"(40.825726, -73.82112)",,,3775 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489946,Sedan,Sedan,,, +12/25/2021,13:10,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4489853,Sedan,,,, +12/24/2021,8:20,MANHATTAN,10018,40.75294,-73.99291,"(40.75294, -73.99291)",,,500 8 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489913,Station Wagon/Sport Utility Vehicle,self insur,,, +12/25/2021,15:20,BRONX,10462,40.848644,-73.861275,"(40.848644, -73.861275)",,,1900 BRONXDALE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489709,Multi-Wheeled Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,14:00,QUEENS,11429,40.705704,-73.74437,"(40.705704, -73.74437)",212 STREET,112 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4490047,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,13:15,,,40.69889,-73.91753,"(40.69889, -73.91753)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4489800,Sedan,Sedan,,, +12/23/2021,14:17,QUEENS,11411,40.686028,-73.73074,"(40.686028, -73.73074)",,,120-20 234 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490003,Sedan,,,, +12/23/2021,9:29,STATEN ISLAND,10312,40.561092,-74.16984,"(40.561092, -74.16984)",ARTHUR KILL ROAD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,16:30,,,40.774612,-73.92399,"(40.774612, -73.92399)",HOYT AVENUE SOUTH,21 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489550,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,18:30,BROOKLYN,11214,40.608723,-74.00182,"(40.608723, -74.00182)",,,8430 NEW UTRECHT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489935,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,17:25,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",WEST 178 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4489699,Sedan,,,, +12/25/2021,2:52,,,40.678406,-73.832214,"(40.678406, -73.832214)",ROCKAWAY BOULEVARD,107 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489835,Taxi,Sedan,,, +12/25/2021,2:03,,,40.704063,-73.85444,"(40.704063, -73.85444)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4489408,Sedan,,,, +12/20/2021,18:50,QUEENS,11373,40.744297,-73.88724,"(40.744297, -73.88724)",,,41-50 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490089,Station Wagon/Sport Utility Vehicle,Van,,, +12/25/2021,10:55,,,40.824425,-73.87271,"(40.824425, -73.87271)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4489988,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,12:45,,,40.69773,-73.81409,"(40.69773, -73.81409)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489522,Sedan,Sedan,,, +12/25/2021,15:00,QUEENS,11416,40.68335,-73.8412,"(40.68335, -73.8412)",103 AVENUE,100 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489524,Sedan,,,, +12/24/2021,13:35,MANHATTAN,10128,40.785297,-73.955574,"(40.785297, -73.955574)",EAST 93 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489958,LIMO,,,, +12/25/2021,16:33,BROOKLYN,11226,40.641064,-73.94662,"(40.641064, -73.94662)",EAST 32 STREET,AVENUE D,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489562,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,14:40,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",ROSEDALE AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489980,Sedan,,,, +12/25/2021,16:44,BROOKLYN,11223,40.59616,-73.96104,"(40.59616, -73.96104)",AVENUE V,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489662,Sedan,Sedan,,, +12/25/2021,15:32,BROOKLYN,11236,40.636635,-73.918304,"(40.636635, -73.918304)",,,617 EAST 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490019,Sedan,,,, +12/25/2021,3:08,,,40.86455,-73.901955,"(40.86455, -73.901955)",WEST 190 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4489486,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/22/2021,19:35,BROOKLYN,11201,40.68984,-73.97863,"(40.68984, -73.97863)",DE KALB AVENUE,ASHLAND PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4489959,Van,,,, +12/20/2021,7:00,BROOKLYN,11222,40.72722,-73.93221,"(40.72722, -73.93221)",,,570 GARDNER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490006,Tractor Truck Diesel,Box Truck,,, +12/23/2021,19:40,QUEENS,11418,40.701187,-73.824776,"(40.701187, -73.824776)",126 STREET,JAMAICA AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490041,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,18:30,,,,,,14 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4489497,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/25/2021,18:38,BROOKLYN,11226,40.646656,-73.96035,"(40.646656, -73.96035)",,,659 OCEAN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4489558,,,,, +12/25/2021,23:53,,,40.76684,-73.838264,"(40.76684, -73.838264)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,15:19,MANHATTAN,10027,40.812008,-73.951515,"(40.812008, -73.951515)",SAINT NICHOLAS AVENUE,WEST 127 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489906,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,17:09,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490086,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/25/2021,17:00,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4489515,Sedan,AMBU,,, +12/25/2021,21:59,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4489695,Sedan,Sedan,,, +12/25/2021,13:00,QUEENS,11001,40.73754,-73.70322,"(40.73754, -73.70322)",,,265-15 EAST WILLISTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,19:19,BROOKLYN,11234,40.634483,-73.91886,"(40.634483, -73.91886)",RALPH AVENUE,GLENWOOD ROAD,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4489616,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,4:05,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",76 STREET,NORTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4489949,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/25/2021,6:50,QUEENS,11361,40.75759,-73.78108,"(40.75759, -73.78108)",NORTHERN BOULEVARD,202 STREET,,1,0,0,0,1,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4489586,E-Bike,Sedan,,, +12/22/2021,7:07,QUEENS,11385,40.712948,-73.90693,"(40.712948, -73.90693)",56 STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490020,Sedan,,,, +12/25/2021,13:10,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4489753,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,8:30,QUEENS,11372,40.753536,-73.8869,"(40.753536, -73.8869)",34 AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489977,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,14:50,BROOKLYN,11234,40.62571,-73.92956,"(40.62571, -73.92956)",AVENUE K,EAST 48 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490027,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/22/2021,7:20,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",2 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489998,Sedan,Sedan,,, +12/25/2021,0:28,MANHATTAN,10035,,,,PARK AVENUE,EAST 121 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489881,Sedan,Sedan,,, +12/25/2021,23:00,,,,,,,,103-25 70 avenue,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,18:20,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489708,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,5:40,BRONX,10456,40.83501,-73.91206,"(40.83501, -73.91206)",EAST 169 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4489448,Sedan,Sedan,,, +12/25/2021,13:03,MANHATTAN,10016,40.747295,-73.97405,"(40.747295, -73.97405)",EAST 38 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489540,Sedan,Sedan,,, +12/25/2021,17:49,BROOKLYN,11207,40.68789,-73.90724,"(40.68789, -73.90724)",COOPER STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489802,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,18:20,QUEENS,11420,40.666332,-73.81056,"(40.666332, -73.81056)",SOUTH CONDUIT AVENUE,130 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489830,Sedan,,,, +12/24/2021,17:00,BROOKLYN,11214,40.607605,-73.99706,"(40.607605, -73.99706)",,,1945 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,21:28,,,40.7067,-73.95292,"(40.7067, -73.95292)",HEWES STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489771,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,4:50,QUEENS,11368,40.74357,-73.862755,"(40.74357, -73.862755)",ALSTYNE AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489670,Station Wagon/Sport Utility Vehicle,,,, +12/04/2021,8:00,QUEENS,11369,40.758167,-73.87541,"(40.758167, -73.87541)",,,32-15 93 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4489967,Sedan,,,, +12/24/2021,22:01,QUEENS,11375,40.731087,-73.85327,"(40.731087, -73.85327)",64 ROAD,102 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490060,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/25/2021,16:30,,,40.827656,-73.8861,"(40.827656, -73.8861)",SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489851,Sedan,Sedan,,, +12/20/2021,20:05,,,40.75369,-73.74445,"(40.75369, -73.74445)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489931,Sedan,Sedan,,, +12/25/2021,9:05,BROOKLYN,11204,40.618595,-73.99847,"(40.618595, -73.99847)",71 STREET,16 AVENUE,,1,0,0,0,1,0,0,0,Pavement Slippery,Unspecified,,,,4489936,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/25/2021,0:50,BROOKLYN,11221,40.694427,-73.924255,"(40.694427, -73.924255)",EVERGREEN AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489415,Sedan,Sedan,,, +12/25/2021,13:50,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Steering Failure,,,,,4489730,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,12:54,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4489990,Sedan,,,, +12/25/2021,13:20,BROOKLYN,11212,40.65794,-73.907745,"(40.65794, -73.907745)",ROCKAWAY AVENUE,LOTT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489533,Sedan,,,, +12/22/2021,11:39,QUEENS,11372,40.750137,-73.8806,"(40.750137, -73.8806)",37 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489981,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,6:22,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4489866,Bus,Sedan,,, +12/24/2021,6:00,MANHATTAN,10030,40.81748,-73.94098,"(40.81748, -73.94098)",,,118 WEST 139 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489912,Sedan,,,, +12/09/2021,23:30,,,40.72656,-73.972046,"(40.72656, -73.972046)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4490049,Sedan,Sedan,,, +12/24/2021,17:00,,,40.725616,-73.851036,"(40.725616, -73.851036)",68 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489950,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,22:50,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4489583,Sedan,Sedan,Sedan,, +12/25/2021,20:04,BRONX,10475,40.883553,-73.83476,"(40.883553, -73.83476)",BOSTON ROAD,NEEDHAM AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,,,4489661,Sedan,Sedan,Chassis Cab,, +12/25/2021,7:20,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4489491,Sedan,,,, +12/24/2021,16:13,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4489961,Sedan,,,, +12/25/2021,11:28,,,40.694138,-73.92649,"(40.694138, -73.92649)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489799,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,8:30,STATEN ISLAND,10301,40.634007,-74.07516,"(40.634007, -74.07516)",,,331 BAY STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4489605,Sedan,,,, +12/25/2021,8:40,,,40.741676,-73.86756,"(40.741676, -73.86756)",50 AVENUE,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4489672,Taxi,,,, +12/12/2021,1:00,MANHATTAN,10003,40.727867,-73.99315,"(40.727867, -73.99315)",LAFAYETTE STREET,EAST 4 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490066,Sedan,Sedan,,, +12/23/2021,14:35,BROOKLYN,11222,40.725433,-73.951744,"(40.725433, -73.951744)",MANHATTAN AVENUE,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490007,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/23/2021,20:28,,,40.68717,-73.89231,"(40.68717, -73.89231)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4490021,Sedan,,,, +12/25/2021,16:28,BRONX,10467,40.874897,-73.88043,"(40.874897, -73.88043)",EAST 206 STREET,ROCHAMBEAU AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,4489483,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +12/18/2021,20:25,,,40.79944,-73.95531,"(40.79944, -73.95531)",WEST 110 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4489921,Bus,,,, +12/25/2021,5:00,QUEENS,11421,40.692013,-73.84738,"(40.692013, -73.84738)",,,89-17 97 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4489521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/24/2021,17:46,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4489966,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,1:20,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",EAST HOUSTON STREET,ESSEX STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489463,Sedan,,,, +05/24/2021,21:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420032,Sedan,,,, +12/25/2021,21:46,BROOKLYN,11213,40.66955,-73.94497,"(40.66955, -73.94497)",BROOKLYN AVENUE,EASTERN PARKWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4489696,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/29/2021,6:00,,,40.82503,-73.93122,"(40.82503, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490005,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/25/2021,17:27,QUEENS,11369,40.75969,-73.863914,"(40.75969, -73.863914)",,,105-04 32 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4489948,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,1:00,QUEENS,11355,40.762794,-73.83558,"(40.762794, -73.83558)",NORTHERN BOULEVARD,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4489552,Sedan,,,, +12/25/2021,18:05,QUEENS,11417,40.6762,-73.84003,"(40.6762, -73.84003)",133 AVENUE,97 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489805,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,13:30,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489754,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,17:50,,,40.649895,-73.90762,"(40.649895, -73.90762)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490074,Sedan,,,, +12/25/2021,3:15,QUEENS,11420,40.683056,-73.81939,"(40.683056, -73.81939)",,,122-07 109 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4489831,Sedan,Sedan,Sedan,Sedan,Sedan +12/25/2021,16:34,,,40.749172,-73.967026,"(40.749172, -73.967026)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4489541,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,4:30,BROOKLYN,11204,40.62353,-73.98215,"(40.62353, -73.98215)",19 AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489512,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/19/2021,16:50,BRONX,10462,40.836945,-73.86342,"(40.836945, -73.86342)",,,1465 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4489976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/17/2021,13:50,,,40.78832,-73.941025,"(40.78832, -73.941025)",1 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4490025,Sedan,Bike,,, +12/25/2021,6:30,,,40.880657,-73.877625,"(40.880657, -73.877625)",EAST GUN HILL ROAD,,,1,0,1,0,0,0,0,0,,,,,,4489621,,,,, +12/25/2021,4:20,MANHATTAN,10035,40.807087,-73.94178,"(40.807087, -73.94178)",5 AVENUE,EAST 126 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4489884,Sedan,Sedan,,, +12/21/2021,14:48,,,40.684006,-74.001656,"(40.684006, -74.001656)",HICKS STREET,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489997,Sedan,,,, +12/17/2021,14:25,QUEENS,11366,40.727013,-73.81079,"(40.727013, -73.81079)",,,73-15 PARSONS BOULEVARD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4489944,Sedan,Sedan,,, +12/25/2021,14:38,,,40.637096,-74.03742,"(40.637096, -74.03742)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4489498,Sedan,Sedan,,, +12/25/2021,4:45,QUEENS,11434,40.683655,-73.78266,"(40.683655, -73.78266)",BREWER BOULEVARD,118 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,Unspecified,4489458,Sedan,Sedan,Sedan,Sedan,Sedan +12/25/2021,22:01,,,40.740784,-73.815,"(40.740784, -73.815)",59 AVENUE,KISSENA BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489707,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,14:40,MANHATTAN,10001,40.75045,-73.9873,"(40.75045, -73.9873)",WEST 35 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4489907,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,6:23,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489638,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,1:50,BRONX,10465,,,,,,3775 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489738,Sedan,,,, +12/21/2021,12:00,,,40.69122,-73.93969,"(40.69122, -73.93969)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490110,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,19:20,BRONX,10459,40.826675,-73.90023,"(40.826675, -73.90023)",UNION AVENUE,EAST 167 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4489963,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,10:35,BROOKLYN,11236,40.642242,-73.910774,"(40.642242, -73.910774)",FARRAGUT ROAD,EAST 88 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4489535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,9:00,QUEENS,11378,40.724255,-73.91251,"(40.724255, -73.91251)",58 STREET,56 DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4489993,Dump,,,, +12/23/2021,6:45,QUEENS,11372,40.7523,-73.87627,"(40.7523, -73.87627)",,,35-44 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489953,Sedan,Sedan,,, +12/25/2021,10:45,QUEENS,11419,40.689114,-73.82753,"(40.689114, -73.82753)",,,101-44 117 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,14:08,STATEN ISLAND,10304,40.625774,-74.08338,"(40.625774, -74.08338)",,,56 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489606,Sedan,,,, +11/20/2021,15:35,BROOKLYN,11218,40.654728,-73.97879,"(40.654728, -73.97879)",PROSPECT EXPRESSWAY,11 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490035,Sedan,,,, +11/02/2021,16:00,MANHATTAN,10029,40.790627,-73.942444,"(40.790627, -73.942444)",2 AVENUE,EAST 106 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4490022,Sedan,Bike,,, +12/25/2021,12:15,QUEENS,11354,40.76616,-73.82091,"(40.76616, -73.82091)",35 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489494,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,7:18,,,40.68723,-73.941795,"(40.68723, -73.941795)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490101,Sedan,Pick-up Truck,,, +12/25/2021,22:00,BRONX,10459,40.823284,-73.88762,"(40.823284, -73.88762)",LONGFELLOW AVENUE,ALDUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489845,Sedan,Sedan,,, +12/25/2021,3:15,,,40.768875,-73.90852,"(40.768875, -73.90852)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4489429,Sedan,Sedan,,, +12/24/2021,20:26,,,40.854244,-73.91557,"(40.854244, -73.91557)",WEST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489918,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,21:00,BROOKLYN,11204,40.61156,-73.98382,"(40.61156, -73.98382)",BAY PARKWAY,BAY RIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,19:00,,,40.71312,-73.83376,"(40.71312, -73.83376)",UNION TURNPIKE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4489726,Sedan,,,, +12/25/2021,14:05,MANHATTAN,10009,40.727592,-73.9853,"(40.727592, -73.9853)",SAINT MARKS PLACE,1 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490050,Sedan,Bike,,, +12/25/2021,4:24,BRONX,10451,40.824917,-73.9139,"(40.824917, -73.9139)",,,390 EAST 162 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489789,Sedan,Sedan,Sedan,, +12/17/2021,7:00,QUEENS,11364,40.73337,-73.760605,"(40.73337, -73.760605)",,,210-10 UNION TURNPIKE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4489932,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,20:30,BROOKLYN,11203,40.65619,-73.930855,"(40.65619, -73.930855)",,,701 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489577,Sedan,Sedan,,, +12/25/2021,10:35,BROOKLYN,11235,40.588512,-73.949356,"(40.588512, -73.949356)",OCEAN AVENUE,AVENUE Z,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489470,Taxi,,,, +12/17/2021,10:28,QUEENS,11372,40.747734,-73.883,"(40.747734, -73.883)",ROOSEVELT AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489982,Station Wagon/Sport Utility Vehicle,Ambulance,,, +12/25/2021,3:45,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490069,Sedan,Sedan,,, +12/25/2021,17:53,BROOKLYN,11236,40.642708,-73.91006,"(40.642708, -73.91006)",FARRAGUT ROAD,EAST 89 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489674,Sedan,Sedan,,, +12/25/2021,18:26,BROOKLYN,11223,40.604393,-73.96532,"(40.604393, -73.96532)",,,1885 EAST 7 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4489659,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/24/2021,23:25,,,40.55554,-74.17562,"(40.55554, -74.17562)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490014,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,8:00,QUEENS,11433,40.7055,-73.78886,"(40.7055, -73.78886)",170 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489768,Sedan,,,, +12/25/2021,15:00,,,40.65142,-73.93716,"(40.65142, -73.93716)",EAST 43 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489858,Sedan,,,, +12/14/2021,15:45,MANHATTAN,10018,40.751232,-73.983406,"(40.751232, -73.983406)",,,10 WEST 38 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4489910,Sedan,ambulance,,, +12/25/2021,22:10,BRONX,10461,40.84297,-73.84877,"(40.84297, -73.84877)",,,2554 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489741,Sedan,Bus,,, +12/23/2021,13:40,,,40.679035,-73.938515,"(40.679035, -73.938515)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490114,Sedan,Sedan,,, +12/25/2021,16:28,BRONX,10456,40.828262,-73.909065,"(40.828262, -73.909065)",,,1085 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489812,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,16:58,,,,,,WEST 9TH STREET,HAMILTON AVE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462724,Sedan,Box Truck,,, +05/24/2021,14:22,,,40.684006,-74.001656,"(40.684006, -74.001656)",UNION STREET,HICKS STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420165,Pick-up Truck,Bike,,, +06/30/2022,17:50,QUEENS,11363,40.7684,-73.73755,"(40.7684, -73.73755)",NORTHERN BOULEVARD,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542520,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,8:00,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542223,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,23:45,STATEN ISLAND,10306,40.575813,-74.11979,"(40.575813, -74.11979)",RICHMOND ROAD,NEW DORP LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542131,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2022,16:12,BROOKLYN,11213,40.679665,-73.93634,"(40.679665, -73.93634)",,,1610 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542967,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,21:48,BRONX,10461,40.84955,-73.85305,"(40.84955, -73.85305)",MORRIS PARK AVENUE,HAIGHT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542537,E-Scooter,Sedan,,, +06/29/2022,19:47,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4543052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2022,15:00,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543046,Sedan,Sedan,,, +06/29/2022,11:45,QUEENS,11101,40.75406,-73.9186,"(40.75406, -73.9186)",,,34-24 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4541827,Sedan,,,, +06/29/2022,0:15,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA OVAL,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4541713,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,22:29,QUEENS,11373,40.745365,-73.88834,"(40.745365, -73.88834)",BROADWAY,77 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4541998,Sedan,E-Bike,,, +06/17/2022,8:06,BRONX,10463,,,,,,5959 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542715,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,13:59,BRONX,10456,40.825623,-73.90481,"(40.825623, -73.90481)",,,1019 TRINITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542409,Sedan,,,, +06/29/2022,12:31,QUEENS,11104,40.74169,-73.923744,"(40.74169, -73.923744)",41 STREET,47 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542088,Sedan,,,, +06/29/2022,21:50,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4541972,Sedan,Sedan,,, +06/30/2022,15:00,,,,,,CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4542497,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,0:12,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542347,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,10:05,BROOKLYN,11219,40.626904,-73.99225,"(40.626904, -73.99225)",,,1525 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542359,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,21:51,BRONX,10473,40.817146,-73.84573,"(40.817146, -73.84573)",,,2225 LACOMBE AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542552,Sedan,E-Scooter,,, +06/27/2022,7:51,QUEENS,11385,40.713062,-73.90891,"(40.713062, -73.90891)",METROPOLITAN AVENUE,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542634,Sedan,Dump,,, +06/30/2022,17:15,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",VANDAM STREET,REVIEW AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542292,Sedan,Sedan,,, +07/01/2022,17:30,QUEENS,11373,40.742477,-73.87314,"(40.742477, -73.87314)",,,91-20 CORONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542865,Sedan,E-Bike,,, +07/01/2022,23:29,BROOKLYN,11210,40.623875,-73.93547,"(40.623875, -73.93547)",KINGS HIGHWAY,EAST 40 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4542597,Sedan,,,, +06/29/2022,12:00,,,40.717155,-73.94924,"(40.717155, -73.94924)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unspecified,,,,,4543024,Sedan,,,, +06/29/2022,20:45,QUEENS,11374,40.733433,-73.86418,"(40.733433, -73.86418)",,,61-35 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542391,Sedan,Sedan,,, +07/01/2022,8:41,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4542502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2022,12:00,BROOKLYN,11217,,,,4 AVENUE,SAINT MARKS PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543157,Sedan,Bike,,, +06/30/2022,4:13,BRONX,10469,40.87485,-73.84935,"(40.87485, -73.84935)",,,3357 FISH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542895,Station Wagon/Sport Utility Vehicle,GARBAGE TR,,, +06/28/2022,12:00,MANHATTAN,10029,40.790417,-73.95184,"(40.790417, -73.95184)",EAST 101 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542465,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +09/29/2021,18:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462753,Sedan,,,, +07/01/2022,12:00,BROOKLYN,11203,40.65108,-73.94459,"(40.65108, -73.94459)",,,3507 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542679,Sedan,,,, +07/01/2022,15:47,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542662,Sedan,Sedan,,, +06/29/2022,18:00,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542010,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,11:45,BROOKLYN,11233,40.674736,-73.925,"(40.674736, -73.925)",BUFFALO AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4542946,Sedan,Sedan,,, +06/30/2022,17:28,QUEENS,11372,40.75657,-73.87585,"(40.75657, -73.87585)",,,92-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542301,Sedan,Sedan,,, +06/29/2022,17:58,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4543078,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2022,5:30,BRONX,10456,40.826256,-73.90166,"(40.826256, -73.90166)",TINTON AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542406,Sedan,Pick-up Truck,,, +06/29/2022,14:45,QUEENS,11385,40.70678,-73.85472,"(40.70678, -73.85472)",,,89-89 UNION TURNPIKE,2,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4542176,Sedan,E-Bike,,, +06/29/2022,18:30,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4542419,Sedan,Sedan,,, +06/26/2022,22:28,BROOKLYN,11212,40.656044,-73.90724,"(40.656044, -73.90724)",,,985 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542796,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,10:59,BROOKLYN,11234,40.61146,-73.92437,"(40.61146, -73.92437)",FLATBUSH AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543001,Sedan,Sedan,,, +07/01/2022,17:04,BROOKLYN,11219,40.62671,-74.00436,"(40.62671, -74.00436)",66 STREET,12 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542566,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/30/2022,9:49,BROOKLYN,11207,40.659702,-73.8786,"(40.659702, -73.8786)",ASHFORD STREET,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542434,Sedan,,,, +06/30/2022,17:25,BRONX,10472,40.82833,-73.85021,"(40.82833, -73.85021)",CASTLE HILL AVENUE,CHATTERTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542551,Tractor Truck Diesel,Sedan,,, +06/29/2022,22:34,,,40.644447,-73.984406,"(40.644447, -73.984406)",12 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543158,Sedan,,,, +06/29/2022,8:54,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542529,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,13:30,BROOKLYN,11214,40.607117,-73.98843,"(40.607117, -73.98843)",BAY PARKWAY,AVENUE P,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4541922,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,9:00,QUEENS,11364,40.7524,-73.777985,"(40.7524, -73.777985)",202 STREET,48 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2022,16:36,,,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4543165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/01/2022,4:24,,,,,,ED KOCH BRIDGE UPPER ROADWAY,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,8:03,BRONX,10451,40.821484,-73.91218,"(40.821484, -73.91218)",EAST 158 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542145,Sedan,Sedan,,, +06/29/2022,8:25,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4541875,Sedan,Sedan,,, +06/29/2022,12:20,,,40.76025,-73.96753,"(40.76025, -73.96753)",3 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4541955,Flat Bed,Flat Bed,,, +06/28/2022,19:16,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543117,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2022,7:15,BROOKLYN,11235,40.581924,-73.95395,"(40.581924, -73.95395)",,,40 SHORE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4542524,Taxi,,,, +06/29/2022,7:00,,,,,,Wood hill avenue,Sagamore avenue,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4542269,Sedan,Sedan,Bus,, +06/29/2022,18:33,QUEENS,11412,40.70457,-73.76871,"(40.70457, -73.76871)",,,105-27 188 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4542248,Sedan,Sedan,,, +12/26/2021,8:13,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4489769,Sedan,,,, +06/29/2022,10:54,BROOKLYN,11217,40.68876,-73.98085,"(40.68876, -73.98085)",FLATBUSH AVENUE,NEVINS STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4541819,Pick-up Truck,,,, +06/26/2022,10:20,BRONX,10472,40.83228,-73.871315,"(40.83228, -73.871315)",EAST 172 STREET,CROES AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542541,E-Bike,,,, +07/01/2022,2:35,,,,,,HARLEM RIVER DRIVE RAMP,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4543056,Sedan,Sedan,,, +06/30/2022,8:27,BROOKLYN,11231,40.6774,-73.994545,"(40.6774, -73.994545)",,,55 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542392,Station Wagon/Sport Utility Vehicle,,,, +06/22/2022,9:00,BROOKLYN,11228,40.61185,-74.010254,"(40.61185, -74.010254)",86 STREET,BAY 8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542492,Bus,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,23:40,QUEENS,11432,40.70663,-73.806595,"(40.70663, -73.806595)",150 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,11:00,MANHATTAN,10009,40.728985,-73.97696,"(40.728985, -73.97696)",,,615 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542973,Sedan,,,, +06/29/2022,14:40,,,,,,LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4542709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/28/2022,12:45,QUEENS,11366,40.729004,-73.79781,"(40.729004, -73.79781)",172 STREET,73 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4542424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,15:13,,,40.706264,-73.75866,"(40.706264, -73.75866)",HOLLIS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542297,Sedan,Sedan,,, +07/01/2022,9:00,,,40.65269,-73.86382,"(40.65269, -73.86382)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4542445,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,16:00,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,21:00,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542352,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,0:00,BRONX,10463,40.87078,-73.90686,"(40.87078, -73.90686)",BAILEY AVENUE,WEST 193 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542355,Sedan,Sedan,,, +06/29/2022,0:25,QUEENS,11361,40.761993,-73.75849,"(40.761993, -73.75849)",223 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4541657,Sedan,Sedan,Sedan,, +06/24/2022,16:00,QUEENS,11372,40.75053,-73.89298,"(40.75053, -73.89298)",,,35-55 73 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542413,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,4:06,BRONX,10458,40.85551,-73.89289,"(40.85551, -73.89289)",,,2302 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,1:00,,,40.764614,-73.95833,"(40.764614, -73.95833)",1 AVENUE,,,2,0,0,0,2,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4543079,E-Bike,Bike,,, +06/29/2022,9:05,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4542127,Station Wagon/Sport Utility Vehicle,Bus,,, +06/29/2022,9:55,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4542460,PK,Tractor Truck Diesel,,, +07/01/2022,12:40,QUEENS,11362,40.757637,-73.73976,"(40.757637, -73.73976)",54 AVENUE,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542630,Carry All,Sedan,,, +06/30/2022,12:06,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542387,Sedan,Ems,,, +07/01/2022,10:18,BRONX,10457,40.847324,-73.90375,"(40.847324, -73.90375)",EAST 176 STREET,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542477,Station Wagon/Sport Utility Vehicle,Bus,,, +06/29/2022,14:20,QUEENS,11419,40.685936,-73.82594,"(40.685936, -73.82594)",117 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,18:30,BRONX,10464,40.85084,-73.78825,"(40.85084, -73.78825)",CITY ISLAND AVENUE,BOWNE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543091,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,9:50,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420567,Ambulance,Sedan,,, +09/27/2021,15:00,,,40.69597,-73.91337,"(40.69597, -73.91337)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462818,Sedan,,,, +06/30/2022,16:15,QUEENS,11358,40.757874,-73.788506,"(40.757874, -73.788506)",NORTHERN BOULEVARD,193 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542275,Sedan,Motorcycle,,, +07/01/2022,10:00,,,40.79148,-73.81133,"(40.79148, -73.81133)",12 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4542556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/30/2022,18:30,,,40.804054,-73.91369,"(40.804054, -73.91369)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4542593,Tractor Truck Diesel,Sedan,,, +07/01/2022,5:23,,,40.71437,-73.946075,"(40.71437, -73.946075)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543029,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,11:50,,,40.6674,-73.773636,"(40.6674, -73.773636)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4542860,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,12:45,,,40.753395,-73.79243,"(40.753395, -73.79243)",UTOPIA PARKWAY,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4542519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,9:01,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4543141,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/13/2022,1:15,BROOKLYN,11223,40.599262,-73.96577,"(40.599262, -73.96577)",,,2030 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542824,Sedan,,,, +06/28/2022,16:30,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",36 AVENUE,VERNON BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4542658,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,14:40,,,40.66323,-73.93161,"(40.66323, -73.93161)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542910,Van,Sedan,,, +06/22/2022,15:35,,,40.67794,-73.96567,"(40.67794, -73.96567)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542953,Sedan,Box Truck,,, +06/29/2022,6:30,,,40.77677,-73.93453,"(40.77677, -73.93453)",26 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542032,Sedan,,,, +06/27/2022,13:56,,,40.771103,-73.96383,"(40.771103, -73.96383)",PARK AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543073,Bike,Sedan,,, +06/27/2022,18:26,BRONX,10452,40.843975,-73.913864,"(40.843975, -73.913864)",TOWNSEND AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542402,Sedan,Sedan,,, +06/26/2022,1:30,BROOKLYN,11229,40.588863,-73.92454,"(40.588863, -73.92454)",CYRUS AVENUE,NOEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542534,Sedan,,,, +07/01/2022,11:54,QUEENS,11412,40.70024,-73.7538,"(40.70024, -73.7538)",201 STREET,MURDOCK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542514,Sedan,,,, +07/01/2022,13:50,,,40.637196,-74.14953,"(40.637196, -74.14953)",RICHMOND TERRACE,WRIGHT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542805,Motorcycle,,,, +06/22/2022,0:20,,,40.683037,-73.9261,"(40.683037, -73.9261)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542962,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,9:06,BROOKLYN,11221,40.691772,-73.934944,"(40.691772, -73.934944)",,,937 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542978,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,18:00,QUEENS,11429,40.70281,-73.74387,"(40.70281, -73.74387)",COLFAX STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542583,Station Wagon/Sport Utility Vehicle,School Bus,,, +06/30/2022,23:45,QUEENS,11435,40.688656,-73.79562,"(40.688656, -73.79562)",SUTPHIN BOULEVARD,111 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Device Improper/Non-Working,,,,,4542451,Sedan,,,, +06/18/2022,15:02,BRONX,10463,40.878498,-73.90646,"(40.878498, -73.90646)",,,3033 GODWIN TERRACE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542724,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,2:40,,,40.835472,-73.8669,"(40.835472, -73.8669)",CROSS BRONX EXPRESSWAY,BEACH AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4542546,Sedan,Sedan,Sedan,Sedan, +07/01/2022,14:55,,,40.75426,-73.74334,"(40.75426, -73.74334)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4542762,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,10:30,,,40.73736,-73.934074,"(40.73736, -73.934074)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542654,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2022,18:46,QUEENS,11374,40.718494,-73.86096,"(40.718494, -73.86096)",FITCHETT STREET,66 ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4542833,Sedan,Sedan,Sedan,, +07/01/2022,17:43,,,,,,,,70 WEST DRIVE,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4542578,E-Scooter,,,, +06/30/2022,15:00,BROOKLYN,11233,40.676376,-73.92622,"(40.676376, -73.92622)",,,1891 PACIFIC STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542956,Sedan,,,, +06/23/2022,20:00,QUEENS,11101,40.75644,-73.94356,"(40.75644, -73.94356)",11 STREET,40 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543128,Sedan,,,, +06/29/2022,23:40,,,40.840473,-73.9353,"(40.840473, -73.9353)",JUMEL PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542118,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,21:37,QUEENS,11355,40.748775,-73.80977,"(40.748775, -73.80977)",PARSONS BOULEVARD,ROSE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4541947,Sedan,,,, +06/29/2022,6:57,MANHATTAN,10002,40.713608,-73.99571,"(40.713608, -73.99571)",,,52 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4541780,Sedan,Box Truck,,, +06/29/2022,13:45,,,40.62307,-74.149315,"(40.62307, -74.149315)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542203,Sedan,Sedan,,, +06/29/2022,22:10,QUEENS,11385,40.70559,-73.85824,"(40.70559, -73.85824)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4542281,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,14:28,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Other Vehicular,,,,4541987,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +06/30/2022,2:39,BROOKLYN,11217,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,SOUTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4541979,Sedan,,,, +06/30/2022,1:28,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",AVENUE M,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4542238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,13:40,,,40.703857,-73.91851,"(40.703857, -73.91851)",WYCKOFF AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4542396,,,,, +07/01/2022,9:02,,,40.663902,-73.93993,"(40.663902, -73.93993)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4542902,Sedan,Box Truck,,, +06/18/2022,6:42,BRONX,10465,40.823963,-73.80771,"(40.823963, -73.80771)",,,49B EDGEWATER PARK,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542561,Pick-up Truck,Box Truck,,, +07/01/2022,19:35,MANHATTAN,10038,40.70571,-74.00541,"(40.70571, -74.00541)",,,151 MAIDEN LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542625,Bike,Sedan,,, +06/24/2022,18:30,BROOKLYN,11232,40.656643,-74.00527,"(40.656643, -74.00527)",34 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4542488,Sedan,,,, +07/01/2022,15:19,,,40.74128,-73.82159,"(40.74128, -73.82159)",148 STREET,HORACE HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542780,Sedan,,,, +06/30/2022,0:27,,,,,,Rockaway avenue,watkins street,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542025,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/29/2022,15:14,BROOKLYN,11229,40.60954,-73.956505,"(40.60954, -73.956505)",KINGS HIGHWAY,EAST 17 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542067,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,16:40,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542372,Sedan,,,, +06/29/2022,22:00,,,,,,GLEN STREET,SOUTH AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4542322,Sedan,ICE CREAM,,, +06/25/2022,20:05,BROOKLYN,11208,40.682205,-73.87173,"(40.682205, -73.87173)",,,295 CRESCENT STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542441,Sedan,Bike,,, +07/01/2022,6:20,MANHATTAN,10028,40.778946,-73.96231,"(40.778946, -73.96231)",5 AVENUE,EAST 82 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4543083,Sedan,,,, +06/30/2022,17:42,QUEENS,11436,40.66996,-73.78979,"(40.66996, -73.78979)",149 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4542456,Station Wagon/Sport Utility Vehicle,TRAILER,,, +06/29/2022,16:28,QUEENS,11109,40.744316,-73.958466,"(40.744316, -73.958466)",CENTER BOULEVARD,49 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542095,Station Wagon/Sport Utility Vehicle,,,, +06/23/2022,12:30,BRONX,10465,40.814144,-73.82592,"(40.814144, -73.82592)",,,235 ROBINSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542588,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,16:30,MANHATTAN,10027,40.810276,-73.94738,"(40.810276, -73.94738)",WEST 127 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542473,Taxi,Sedan,,, +06/29/2022,19:52,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542011,Sedan,Sedan,,, +06/24/2022,20:45,,,,,,48 STREET,NORTHERN BOULEVARD,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4542428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,20:15,BRONX,10469,40.86774,-73.85955,"(40.86774, -73.85955)",ARNOW AVENUE,COLDEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542853,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,7:43,BROOKLYN,11236,40.651703,-73.92071,"(40.651703, -73.92071)",,,936 RALPH AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4542672,Bike,,,, +06/29/2022,18:27,BRONX,10466,40.89276,-73.85256,"(40.89276, -73.85256)",BUSSING AVENUE,EAST 234 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4542302,Sedan,Moped,,, +07/01/2022,15:00,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4543038,Tractor Truck Diesel,Sedan,,, +06/28/2022,8:00,QUEENS,11101,40.75509,-73.94099,"(40.75509, -73.94099)",,,21-16 40 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542697,Station Wagon/Sport Utility Vehicle,,,, +06/24/2022,12:40,MANHATTAN,10027,,,,,,1455 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542828,Station Wagon/Sport Utility Vehicle,Flat Rack,,, +06/13/2022,7:15,BROOKLYN,11206,40.698696,-73.93477,"(40.698696, -73.93477)",MELROSE STREET,BUSHWICK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543010,Sedan,,,, +06/28/2022,9:50,BROOKLYN,11203,40.6578,-73.93928,"(40.6578, -73.93928)",,,599 WINTHROP STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542884,Sedan,Van,,, +07/01/2022,9:45,BROOKLYN,11231,40.682972,-73.999985,"(40.682972, -73.999985)",,,532 HENRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542614,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,14:29,BROOKLYN,11219,40.633083,-74.00558,"(40.633083, -74.00558)",FORT HAMILTON PARKWAY,60 STREET,,0,1,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4542311,Tractor Truck Diesel,Sedan,E-Scooter,, +06/11/2022,15:10,QUEENS,11411,40.69151,-73.7299,"(40.69151, -73.7299)",232 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542741,Sedan,,,, +07/01/2022,8:00,QUEENS,11375,,,,GRAND CENTRAL PARKWAY,64 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542619,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,18:33,BROOKLYN,11215,40.66931,-73.97957,"(40.66931, -73.97957)",5 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542573,Sedan,Bike,,, +06/25/2022,18:25,QUEENS,11691,40.607285,-73.752975,"(40.607285, -73.752975)",,,14-20 REDFERN AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4542483,Sedan,E-Bike,,, +06/24/2022,8:00,,,40.82406,-73.92815,"(40.82406, -73.92815)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4542930,Sedan,Box Truck,,, +06/30/2022,20:57,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4542344,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,11:09,,,40.657814,-73.89613,"(40.657814, -73.89613)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4542050,Sedan,,,, +07/10/2022,0:35,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4546070,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,15:30,,,40.801155,-73.959656,"(40.801155, -73.959656)",WEST 110 STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4546037,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/12/2022,10:50,QUEENS,11373,40.74726,-73.87445,"(40.74726, -73.87445)",WHITNEY AVENUE,CASE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545649,Sedan,,,, +07/12/2022,21:45,MANHATTAN,10017,40.753242,-73.96662,"(40.753242, -73.96662)",EAST 49 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4545724,Motorcycle,,,, +07/12/2022,5:54,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4546096,Sedan,Tractor Truck Diesel,,, +04/01/2022,5:25,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Lost Consciousness,,,,,4515807,Sedan,,,, +05/23/2021,19:09,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",3 AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4419541,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,8:40,QUEENS,11375,40.71523,-73.84791,"(40.71523, -73.84791)",HARROW STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420026,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,20:30,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420075,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,0:01,,,40.76747,-73.75961,"(40.76747, -73.75961)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4420585,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/23/2021,1:30,QUEENS,11385,40.694477,-73.89647,"(40.694477, -73.89647)",COOPER AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420552,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,3:00,,,40.73448,-73.92243,"(40.73448, -73.92243)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419610,Sedan,,,, +05/22/2021,1:48,,,40.826397,-73.92116,"(40.826397, -73.92116)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4420737,Sedan,,,, +09/30/2021,15:19,,,,,,6 avenue,100,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462924,E-Bike,,,, +05/24/2021,13:39,BROOKLYN,11223,40.593765,-73.96056,"(40.593765, -73.96056)",,,1014 AVENUE W,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420053,Sedan,Sedan,,, +05/24/2021,16:28,,,40.842564,-73.83842,"(40.842564, -73.83842)",WESTCHESTER AVENUE,WATERS PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4420234,Sedan,Sedan,,, +05/24/2021,21:45,,,40.59981,-74.178246,"(40.59981, -74.178246)",VICTORY BOULEVARD,TRAVIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420108,Sedan,Sedan,,, +05/24/2021,18:35,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420488,Chassis Cab,,,, +05/22/2021,10:00,BROOKLYN,11206,40.693924,-73.93577,"(40.693924, -73.93577)",,,375 PULASKI STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420642,Sedan,,,, +05/24/2021,16:00,BROOKLYN,11234,40.62362,-73.93561,"(40.62362, -73.93561)",,,3931 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420699,Sedan,,,, +05/24/2021,2:11,BROOKLYN,11226,40.652927,-73.95708,"(40.652927, -73.95708)",,,2201 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4419715,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/24/2021,16:05,,,40.710197,-73.95843,"(40.710197, -73.95843)",HAVEMEYER STREET,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4420127,Sedan,Box Truck,,, +05/24/2021,17:24,BROOKLYN,11219,40.637325,-73.991394,"(40.637325, -73.991394)",,,1255 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420576,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,11:41,BROOKLYN,11234,40.637497,-73.92386,"(40.637497, -73.92386)",,,5502 FOSTER AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420633,Sedan,Sedan,,, +05/24/2021,13:40,BROOKLYN,11204,40.607307,-73.9866,"(40.607307, -73.9866)",,,50 AVENUE P,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420384,Bus,Sedan,,, +05/24/2021,5:55,,,40.761353,-73.935394,"(40.761353, -73.935394)",21 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419783,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,15:08,STATEN ISLAND,10305,40.584106,-74.08723,"(40.584106, -74.08723)",,,475 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419988,AMBULANCE,FDNY AMBUL,,, +05/24/2021,16:45,BRONX,10470,40.89624,-73.86785,"(40.89624, -73.86785)",,,285 EAST 233 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4420244,Van,Sedan,,, +05/24/2021,9:30,QUEENS,11385,40.712215,-73.91117,"(40.712215, -73.91117)",GRANDVIEW AVENUE,RENE COURT,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4420302,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/24/2021,9:00,QUEENS,11435,40.70861,-73.817,"(40.70861, -73.817)",,,85-15 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4419949,Sedan,,,, +05/24/2021,3:30,,,40.622643,-73.8965,"(40.622643, -73.8965)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Driver Inattention/Distraction,,,,4419875,Sedan,Sedan,,, +05/20/2021,8:22,BRONX,10470,40.895725,-73.87482,"(40.895725, -73.87482)",EAST 233 STREET,NAPIER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420655,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,13:15,BROOKLYN,11234,40.624382,-73.92551,"(40.624382, -73.92551)",,,1449 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420685,Sedan,,,, +05/22/2021,4:27,,,40.703472,-73.9306,"(40.703472, -73.9306)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4420783,Sedan,Sedan,,, +05/24/2021,11:20,BROOKLYN,11233,40.67007,-73.92176,"(40.67007, -73.92176)",,,1682 SAINT JOHNS PLACE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4419939,Sedan,,,, +05/24/2021,9:18,BRONX,10475,40.869213,-73.82495,"(40.869213, -73.82495)",,,2130 BARTOW AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4419884,Sedan,Sedan,,, +05/23/2021,22:30,BRONX,10463,40.87722,-73.90905,"(40.87722, -73.90905)",MARBLE HILL AVENUE,WEST 228 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420603,Sedan,,,, +05/24/2021,7:36,,,40.864254,-73.85872,"(40.864254, -73.85872)",WILLIAMSBRIDGE ROAD,PAULDING AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419980,Sedan,,,, +05/24/2021,0:20,QUEENS,11368,40.750843,-73.858315,"(40.750843, -73.858315)",,,108-30 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419805,Sedan,,,, +05/24/2021,1:40,MANHATTAN,10033,40.848038,-73.93285,"(40.848038, -73.93285)",WEST 180 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420293,Sedan,Sedan,,, +05/24/2021,16:22,BROOKLYN,11210,40.616295,-73.953354,"(40.616295, -73.953354)",,,2110 AVENUE N,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420088,Station Wagon/Sport Utility Vehicle,Bus,,, +05/24/2021,9:00,BROOKLYN,11212,40.66366,-73.90146,"(40.66366, -73.90146)",JUNIUS STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420136,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,16:38,,,40.71107,-73.79204,"(40.71107, -73.79204)",170 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4420345,Sedan,Sedan,Sedan,, +05/24/2021,14:45,,,40.81977,-73.93673,"(40.81977, -73.93673)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4420210,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,15:10,,,40.802444,-73.938835,"(40.802444, -73.938835)",LEXINGTON AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4420327,Station Wagon/Sport Utility Vehicle,Bike,,, +05/24/2021,2:00,,,,,,VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4419853,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,7:05,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4419959,Sedan,Sedan,,, +05/24/2021,21:30,MANHATTAN,10027,40.804214,-73.94696,"(40.804214, -73.94696)",,,70 WEST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420060,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,11:30,BROOKLYN,11234,40.619446,-73.91901,"(40.619446, -73.91901)",,,5811 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4420651,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,17:34,BROOKLYN,11225,40.660355,-73.95061,"(40.660355, -73.95061)",,,1122 NOSTRAND AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4420819,Bike,Sedan,,, +05/24/2021,20:26,BRONX,10458,40.855927,-73.89478,"(40.855927, -73.89478)",PARK AVENUE,EAST 183 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420204,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,14:32,,,40.80608,-73.96532,"(40.80608, -73.96532)",WEST 113 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420527,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,16:57,BROOKLYN,11234,40.628166,-73.92787,"(40.628166, -73.92787)",UTICA AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4420656,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/24/2021,13:19,,,40.56494,-74.15512,"(40.56494, -74.15512)",ARTHUR KILL ROAD,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4419990,Sedan,Bike,,, +05/24/2021,1:00,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4420039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,0:30,QUEENS,11435,40.69145,-73.79793,"(40.69145, -73.79793)",,,109-10 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4420610,Sedan,,,, +05/24/2021,10:00,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419892,Sedan,Dump,,, +05/24/2021,13:56,BROOKLYN,11233,40.674503,-73.906586,"(40.674503, -73.906586)",,,2446 DEAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420485,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,17:45,BROOKLYN,11204,40.621326,-73.98609,"(40.621326, -73.98609)",,,1855 60 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420225,,,,, +05/24/2021,16:10,BROOKLYN,11203,40.652462,-73.922516,"(40.652462, -73.922516)",,,5824 CHURCH AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4420269,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +05/24/2021,16:00,BROOKLYN,11204,40.627975,-73.97753,"(40.627975, -73.97753)",PARKVILLE AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420465,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,9:40,,,,,,BROADWAY,BORO LINE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420595,Sedan,Box Truck,,, +05/24/2021,14:43,BRONX,10455,40.813046,-73.914024,"(40.813046, -73.914024)",,,550 EAST 147 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420080,Sedan,Sedan,,, +05/24/2021,9:30,BRONX,10463,40.88424,-73.90114,"(40.88424, -73.90114)",,,5791 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420559,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,18:49,BROOKLYN,11212,40.654457,-73.90878,"(40.654457, -73.90878)",LINDEN BOULEVARD,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420128,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/24/2021,22:30,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",HOOK CREEK BOULEVARD,SUNRISE HIGHWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420048,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,22:10,,,40.832233,-73.85427,"(40.832233, -73.85427)",ELLIS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420196,Sedan,,,, +05/20/2021,17:49,BROOKLYN,11234,40.629143,-73.923134,"(40.629143, -73.923134)",EAST 55 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4420647,Sedan,Sedan,Sedan,, +05/24/2021,15:50,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,10:15,MANHATTAN,10036,40.758533,-73.98885,"(40.758533, -73.98885)",8 AVENUE,WEST 44 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,10:10,BROOKLYN,11234,40.601204,-73.91303,"(40.601204, -73.91303)",,,2859 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420660,Sedan,Sedan,,, +05/24/2021,15:38,BRONX,10457,40.843525,-73.89667,"(40.843525, -73.89667)",FULTON AVENUE,CROTONA PARK NORTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420145,Box Truck,Sedan,,, +05/24/2021,22:49,BROOKLYN,11229,40.604027,-73.9523,"(40.604027, -73.9523)",OCEAN AVENUE,AVENUE S,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4420054,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,15:11,BRONX,10457,40.843525,-73.89667,"(40.843525, -73.89667)",FULTON AVENUE,CROTONA PARK NORTH,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4420146,Sedan,Van,,, +05/24/2021,23:15,BRONX,10452,40.841614,-73.91248,"(40.841614, -73.91248)",GRAND CONCOURSE,ROCKWOOD STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4420114,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,16:55,,,40.579975,-73.97464,"(40.579975, -73.97464)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4420566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,4:50,,,40.70242,-73.9867,"(40.70242, -73.9867)",JAY STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4419611,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,19:50,,,40.85447,-73.91008,"(40.85447, -73.91008)",HARRISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420615,Moped,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,23:19,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4420710,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,17:04,QUEENS,11428,40.723198,-73.73358,"(40.723198, -73.73358)",93 AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420034,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,19:40,BROOKLYN,11235,40.590572,-73.93999,"(40.590572, -73.93999)",,,3823 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420412,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,14:54,BROOKLYN,11234,40.621418,-73.92614,"(40.621418, -73.92614)",EAST 51 STREET,AVENUE M,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4420698,Sedan,,,, +05/23/2021,0:00,BROOKLYN,11234,40.616398,-73.920784,"(40.616398, -73.920784)",,,1595 EAST 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420659,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,10:00,,,40.830845,-73.947235,"(40.830845, -73.947235)",WEST 152 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420547,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,3:20,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4419759,Sedan,,,, +05/21/2021,6:40,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4420582,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/24/2021,0:00,,,40.64332,-74.01945,"(40.64332, -74.01945)",58 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420004,Sedan,,,, +05/24/2021,16:56,,,40.608242,-74.138115,"(40.608242, -74.138115)",NORTH GANNON AVENUE,SHERADEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420115,Sedan,Sedan,,, +05/19/2021,0:45,BROOKLYN,11234,40.623657,-73.935234,"(40.623657, -73.935234)",,,1307 EAST 40 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420634,Sedan,,,, +05/24/2021,8:00,QUEENS,11411,40.689655,-73.744,"(40.689655, -73.744)",,,120-55 219 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420049,Sedan,,,, +05/24/2021,19:35,BROOKLYN,11213,40.664597,-73.93605,"(40.664597, -73.93605)",,,863 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420367,Sedan,Sedan,,, +05/24/2021,15:40,QUEENS,11691,40.595802,-73.76762,"(40.595802, -73.76762)",ROCKAWAY FREEWAY,BEACH 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420498,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,14:50,BRONX,10454,40.805557,-73.91047,"(40.805557, -73.91047)",BRUCKNER BOULEVARD,EAST 140 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,14:35,BROOKLYN,11234,40.609978,-73.92664,"(40.609978, -73.92664)",AVENUE T,KIMBALL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,16:15,,,40.877068,-73.906105,"(40.877068, -73.906105)",BROADWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420608,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,1:52,,,40.697536,-73.87106,"(40.697536, -73.87106)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4419890,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck, +05/24/2021,10:44,BROOKLYN,11249,40.72035,-73.96178,"(40.72035, -73.96178)",,,34 NORTH 7 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4419943,Station Wagon/Sport Utility Vehicle,Van,,, +05/24/2021,0:00,,,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420217,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,15:20,BRONX,10469,40.86749,-73.840515,"(40.86749, -73.840515)",,,1529 EAST GUN HILL ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420675,Bike,,,, +05/24/2021,16:40,QUEENS,11422,40.650658,-73.73683,"(40.650658, -73.73683)",,,149-87 253 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420030,Sedan,Sedan,,, +05/24/2021,0:55,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420335,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,8:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420641,Sedan,Sedan,,, +05/24/2021,9:35,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,15:00,,,40.76399,-73.93288,"(40.76399, -73.93288)",33 ROAD,21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420159,Sedan,Sedan,,, +05/24/2021,9:35,MANHATTAN,10002,40.719524,-73.99315,"(40.719524, -73.99315)",,,135 CHRYSTIE STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4420226,Pick-up Truck,Bike,,, +05/24/2021,8:43,,,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419903,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/24/2021,12:20,QUEENS,11420,40.677498,-73.8276,"(40.677498, -73.8276)",ROCKAWAY BOULEVARD,111 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Traffic Control Disregarded,,,,4420059,Sedan,,,, +05/25/2020,12:38,BRONX,10457,40.851665,-73.89175,"(40.851665, -73.89175)",QUARRY ROAD,OAK TREE PLACE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4420539,Station Wagon/Sport Utility Vehicle,Moped,,, +05/22/2021,17:38,,,40.877068,-73.906105,"(40.877068, -73.906105)",BROADWAY,WEST 230 STREET,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4420594,Sedan,,,, +05/24/2021,12:35,,,40.696117,-73.970436,"(40.696117, -73.970436)",VANDERBILT AVENUE,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420346,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,17:40,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420013,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/24/2021,15:05,,,40.60309,-73.99262,"(40.60309, -73.99262)",84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,19:46,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420842,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,18:19,,,40.658234,-73.9321,"(40.658234, -73.9321)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4420818,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/22/2021,14:11,BROOKLYN,11234,40.617382,-73.943474,"(40.617382, -73.943474)",KINGS HIGHWAY,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420652,Sedan,,,, +05/19/2021,23:45,,,40.696003,-73.9299,"(40.696003, -73.9299)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420521,Sedan,Sedan,,, +05/24/2021,17:30,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420209,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,6:23,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419782,Sedan,,,, +05/24/2021,10:45,QUEENS,11421,40.69256,-73.86352,"(40.69256, -73.86352)",,,86-41 79 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420314,Sedan,,,, +05/24/2021,14:20,QUEENS,11101,40.744892,-73.93495,"(40.744892, -73.93495)",,,31-10 THOMSON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419981,Pick-up Truck,,,, +05/24/2021,17:15,,,40.89163,-73.85184,"(40.89163, -73.85184)",EAST 233 STREET,BRONXWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420232,PK,Sedan,,, +05/24/2021,9:30,QUEENS,11373,40.744503,-73.8845,"(40.744503, -73.8845)",,,42-02 LAYTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420175,Sedan,Sedan,,, +05/24/2021,15:34,BROOKLYN,11226,40.64107,-73.95932,"(40.64107, -73.95932)",,,870 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420087,Sedan,E-Bike,,, +09/29/2021,9:00,BROOKLYN,11220,40.640064,-74.01557,"(40.640064, -74.01557)",5 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462929,Sedan,,,, +05/19/2021,9:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4420841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/24/2021,18:49,BROOKLYN,11218,40.647728,-73.97634,"(40.647728, -73.97634)",EAST 5 STREET,CATON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420602,Sedan,,,, +05/24/2021,18:45,BROOKLYN,11212,40.669403,-73.912605,"(40.669403, -73.912605)",PITKIN AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420135,Sedan,,,, +05/15/2021,4:30,,,40.610703,-74.14114,"(40.610703, -74.14114)",,,515 WOOLLEY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420524,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/24/2021,20:35,QUEENS,11361,40.760563,-73.76707,"(40.760563, -73.76707)",,,215-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420037,Sedan,Sedan,,, +05/24/2021,2:01,MANHATTAN,10014,,,,11 AVENUE,14 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420339,Sedan,,,, +05/24/2021,10:00,BROOKLYN,11219,40.628006,-73.99586,"(40.628006, -73.99586)",,,5902 14 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4420469,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,13:13,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,108 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4420064,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/24/2021,15:00,BRONX,10466,40.889923,-73.85931,"(40.889923, -73.85931)",WHITE PLAINS ROAD,EAST 228 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,5:45,BROOKLYN,11239,40.64844,-73.88242,"(40.64844, -73.88242)",PENNSYLVANIA AVENUE,TWIN PINES DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419799,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,12:50,,,40.833195,-73.895134,"(40.833195, -73.895134)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420142,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,2:35,,,40.72839,-73.83302,"(40.72839, -73.83302)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419948,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,12:05,,,40.752155,-73.928955,"(40.752155, -73.928955)",38 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420156,Moped,Box Truck,Sedan,, +05/24/2021,15:38,,,40.607643,-74.03375,"(40.607643, -74.03375)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4420033,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,15:59,BRONX,10456,40.8331,-73.90092,"(40.8331, -73.90092)",,,1368 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420140,Sedan,PK,,, +05/18/2021,11:05,,,40.69193,-73.91031,"(40.69193, -73.91031)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420557,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,16:25,,,,,,BRUCKNER BOULEVARD,EAST 135 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420079,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,0:40,,,,,,EAST BEDFORD PARK BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419648,Sedan,Sedan,,, +05/20/2021,16:05,QUEENS,11432,40.70924,-73.78635,"(40.70924, -73.78635)",175 STREET,91 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4420622,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,19:34,BROOKLYN,11229,40.60476,-73.945625,"(40.60476, -73.945625)",AVENUE S,EAST 27 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4420406,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,15:02,BRONX,10469,40.869583,-73.86043,"(40.869583, -73.86043)",ADEE AVENUE,RADCLIFF AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420709,Sedan,Sedan,,, +05/19/2021,20:25,MANHATTAN,10031,40.828976,-73.9486,"(40.828976, -73.9486)",BROADWAY,WEST 149 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420676,E-Bike,Motorcycle,,, +05/24/2021,9:59,BROOKLYN,11230,40.61967,-73.967125,"(40.61967, -73.967125)",AVENUE L,EAST 8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420228,Bus,Sedan,,, +05/24/2021,7:44,BROOKLYN,11220,40.637203,-74.0222,"(40.637203, -74.0222)",SHORE ROAD DRIVE,4 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419899,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,12:38,,,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419904,Sedan,E-Bike,,, +05/24/2021,20:30,BRONX,10460,40.83887,-73.87811,"(40.83887, -73.87811)",EAST 177 STREET,DEVOE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420197,Sedan,Van,,, +05/24/2021,21:00,,,40.891033,-73.88585,"(40.891033, -73.88585)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420614,Sedan,Sedan,,, +05/24/2021,14:15,BRONX,10472,40.83256,-73.86943,"(40.83256, -73.86943)",ROSEDALE AVENUE,EAST 172 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419953,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,19:15,MANHATTAN,10039,40.826324,-73.93565,"(40.826324, -73.93565)",,,2651 7 AVENUE,1,0,1,0,0,0,0,0,,,,,,4420219,Sedan,,,, +05/20/2021,19:14,BROOKLYN,11234,40.63501,-73.93132,"(40.63501, -73.93132)",,,4710 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4420646,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,15:55,QUEENS,11422,40.67294,-73.73711,"(40.67294, -73.73711)",234 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420012,Sedan,Sedan,,, +05/24/2021,9:30,BROOKLYN,11203,40.648945,-73.92236,"(40.648945, -73.92236)",,,266 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420271,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,3:45,BRONX,10472,40.833084,-73.86954,"(40.833084, -73.86954)",,,1312 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4419833,Sedan,,,, +05/24/2021,17:46,,,,,,BRUCKNER EXPRESSWAY,STRATFORD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420199,Sedan,Sedan,,, +05/24/2021,20:15,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420262,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,7:30,QUEENS,11433,40.699368,-73.77825,"(40.699368, -73.77825)",,,109-15 177 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420334,Bus,Pick-up Truck,,, +05/24/2021,2:13,,,40.68397,-73.944046,"(40.68397, -73.944046)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4419861,Bus,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,10:10,QUEENS,11419,40.69407,-73.82802,"(40.69407, -73.82802)",LEFFERTS BOULEVARD,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4419952,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,16:00,BROOKLYN,11234,40.6107,-73.92113,"(40.6107, -73.92113)",EAST 53 PLACE,AVENUE U,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4420653,Sedan,,,, +05/23/2021,0:25,BROOKLYN,11234,40.592636,-73.90362,"(40.592636, -73.90362)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420658,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,15:25,QUEENS,11363,40.77067,-73.7355,"(40.77067, -73.7355)",NORTHERN BOULEVARD,LITTLE NECK PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4419999,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,16:09,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420123,Station Wagon/Sport Utility Vehicle,,,, +05/17/2021,12:00,BROOKLYN,11210,40.624905,-73.94169,"(40.624905, -73.94169)",AVENUE K,EAST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420648,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,21:35,,,40.637363,-73.87927,"(40.637363, -73.87927)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420400,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,17:40,BRONX,10473,40.819016,-73.84804,"(40.819016, -73.84804)",CASTLE HILL AVENUE,RANDALL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420607,Sedan,Sedan,,, +05/24/2021,8:40,,,40.624958,-74.145775,"(40.624958, -74.145775)",WILLOW ROAD EAST,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,19:00,QUEENS,11413,40.65853,-73.764206,"(40.65853, -73.764206)",149 AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420031,Sedan,,,, +05/24/2021,5:50,BROOKLYN,11207,40.667786,-73.88442,"(40.667786, -73.88442)",WARWICK STREET,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,,,4419798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/24/2021,10:30,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",EAST TREMONT AVENUE,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4419985,Sedan,,,, +05/21/2021,12:50,,,,,,QUEENS MIDTOWN TUNNEL,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4420718,Sedan,Sedan,Sedan,, +05/24/2021,8:00,BROOKLYN,11211,40.716362,-73.94783,"(40.716362, -73.94783)",,,85 JACKSON STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420185,Sedan,,,, +05/24/2021,7:50,QUEENS,11432,40.707363,-73.792336,"(40.707363, -73.792336)",,,168-46 91 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419968,Pick-up Truck,Sedan,,, +05/23/2021,19:55,,,40.69089,-73.94253,"(40.69089, -73.94253)",THROOP AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4420555,Sedan,Sedan,,, +05/24/2021,16:35,,,40.645027,-73.91998,"(40.645027, -73.91998)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,18:33,BRONX,10458,40.867676,-73.88625,"(40.867676, -73.88625)",MARION AVENUE,OLIVER PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420051,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,4:56,BROOKLYN,11218,40.637745,-73.97334,"(40.637745, -73.97334)",,,438 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Passenger Distraction,Drugs (illegal),Unspecified,Unspecified,,4420216,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/24/2021,22:24,MANHATTAN,10006,40.70983,-74.01468,"(40.70983, -74.01468)",ALBANY STREET,WEST STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420305,Sedan,,,, +05/24/2021,19:31,BRONX,10467,40.86717,-73.87048,"(40.86717, -73.87048)",,,2837 BRONX PARK EAST,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4420237,Sedan,Sedan,,, +05/24/2021,13:25,BRONX,10462,40.835724,-73.847946,"(40.835724, -73.847946)",,,2300 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420098,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,11:45,,,40.6765,-73.88234,"(40.6765, -73.88234)",LIBERTY AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4546089,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,0:00,BROOKLYN,11234,40.617924,-73.93174,"(40.617924, -73.93174)",FLATBUSH AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420638,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,18:00,QUEENS,11354,40.76758,-73.83185,"(40.76758, -73.83185)",,,32-05 LINDEN PLACE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4420042,Sedan,,,, +05/22/2021,1:40,QUEENS,11106,40.75855,-73.924866,"(40.75855, -73.924866)",34 STREET,34 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4420542,,,,, +05/24/2021,19:15,QUEENS,11040,40.749584,-73.70714,"(40.749584, -73.70714)",UNION TURNPIKE,266 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420036,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,3:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419760,Sedan,,,, +05/23/2021,23:00,BROOKLYN,11221,40.690563,-73.94536,"(40.690563, -73.94536)",TOMPKINS AVENUE,LAFAYETTE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420570,Bike,,,, +05/24/2021,16:30,MANHATTAN,10029,40.789894,-73.94801,"(40.789894, -73.94801)",,,1620 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420750,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,11:30,BROOKLYN,11222,40.734135,-73.9583,"(40.734135, -73.9583)",FRANKLIN STREET,FREEMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419944,Sedan,Tractor Truck Diesel,,, +05/24/2021,17:15,,,40.616825,-73.992516,"(40.616825, -73.992516)",BAY RIDGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420069,Sedan,Sedan,,, +05/23/2021,18:37,,,40.604027,-73.89875,"(40.604027, -73.89875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420689,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,2:54,BROOKLYN,11234,40.622593,-73.931175,"(40.622593, -73.931175)",,,1547 EAST 46 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4420635,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/24/2021,10:15,BROOKLYN,11231,40.683067,-73.99557,"(40.683067, -73.99557)",SACKETT STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420442,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,17:50,BRONX,10455,40.811863,-73.91437,"(40.811863, -73.91437)",,,443 SAINT ANNS AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420077,Sedan,E-Bike,,, +05/24/2021,8:30,BROOKLYN,11213,40.666866,-73.92853,"(40.666866, -73.92853)",ROCHESTER AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4420817,Pick-up Truck,,,, +05/24/2021,10:45,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4420174,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,0:00,BRONX,10459,40.823135,-73.89489,"(40.823135, -73.89489)",WESTCHESTER AVENUE,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420476,Motorbike,Sedan,,, +05/24/2021,22:00,BRONX,10458,40.876163,-73.881516,"(40.876163, -73.881516)",EAST MOSHOLU PARKWAY NORTH,VANCORTLANDT AVENUE EAST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420057,Sedan,,,, +05/24/2021,19:04,,,40.79911,-73.96856,"(40.79911, -73.96856)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4420014,Pick-up Truck,Sedan,Sedan,Sedan, +05/20/2021,17:20,,,40.678963,-73.94965,"(40.678963, -73.94965)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4420562,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/21/2021,12:17,BRONX,10468,40.87168,-73.90019,"(40.87168, -73.90019)",,,2809 CLAFLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420593,Sedan,,,, +05/24/2021,9:49,QUEENS,11370,40.766785,-73.893105,"(40.766785, -73.893105)",ASTORIA BOULEVARD,76 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,12:44,BROOKLYN,11217,40.689697,-73.97511,"(40.689697, -73.97511)",SOUTH PORTLAND AVENUE,DE KALB AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420347,Station Wagon/Sport Utility Vehicle,Bike,,, +05/24/2021,21:35,,,40.638382,-74.03668,"(40.638382, -74.03668)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420082,Sedan,Sedan,,, +05/21/2021,8:40,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420843,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,7:58,BRONX,10456,40.83442,-73.898674,"(40.83442, -73.898674)",,,1419 CLINTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420143,Station Wagon/Sport Utility Vehicle,,,, +05/04/2021,21:30,,,40.686497,-73.94164,"(40.686497, -73.94164)",THROOP AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420645,Motorbike,Bike,,, +05/22/2021,21:45,MANHATTAN,10018,40.75229,-73.983986,"(40.75229, -73.983986)",,,54 WEST 39 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420520,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,15:56,BROOKLYN,11236,40.636593,-73.89418,"(40.636593, -73.89418)",AVENUE M,EAST 96 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420695,Sedan,Sedan,,, +05/24/2021,1:48,QUEENS,11102,40.766895,-73.921394,"(40.766895, -73.921394)",31 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420157,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,18:30,BRONX,10467,40.86995,-73.87054,"(40.86995, -73.87054)",,,3000 BRONX PARK EAST,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4420679,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,16:59,BROOKLYN,11221,40.6981,-73.92517,"(40.6981, -73.92517)",CENTRAL AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420525,Ambulance,Sedan,,, +05/24/2021,2:50,,,40.82929,-73.93501,"(40.82929, -73.93501)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4419687,Sedan,,,, +05/16/2021,14:50,BRONX,10469,40.858677,-73.83309,"(40.858677, -73.83309)",STILLWELL AVENUE,ASTOR AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4420629,Sedan,,,, +05/24/2021,20:40,BROOKLYN,11205,40.690796,-73.95637,"(40.690796, -73.95637)",DE KALB AVENUE,SKILLMAN STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Aggressive Driving/Road Rage,Unspecified,,,4420563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,14:40,BRONX,10466,40.89591,-73.8448,"(40.89591, -73.8448)",,,4232 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420229,Sedan,,,, +05/24/2021,12:37,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419913,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,23:50,MANHATTAN,10039,40.82947,-73.93705,"(40.82947, -73.93705)",,,2931 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420220,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,23:38,,,40.892223,-73.88464,"(40.892223, -73.88464)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4420599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/24/2021,7:15,BROOKLYN,11231,40.673836,-74.0023,"(40.673836, -74.0023)",BUSH STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420443,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,23:30,,,40.879578,-73.879,"(40.879578, -73.879)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420090,Ambulance,Ambulance,,, +05/24/2021,9:50,BROOKLYN,11249,40.70542,-73.96666,"(40.70542, -73.96666)",,,541 WYTHE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420133,Station Wagon/Sport Utility Vehicle,Bus,,, +05/24/2021,21:44,MANHATTAN,10012,40.727287,-74.00064,"(40.727287, -74.00064)",WEST HOUSTON STREET,THOMPSON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420340,Taxi,Sedan,,, +05/24/2021,18:00,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420186,Bus,Sedan,,, +05/24/2021,13:20,,,40.712006,-73.75811,"(40.712006, -73.75811)",99 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419964,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,15:58,QUEENS,11429,40.70302,-73.727776,"(40.70302, -73.727776)",MURDOCK AVENUE,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420011,Sedan,Sedan,,, +05/13/2021,21:30,QUEENS,11372,40.754627,-73.87643,"(40.754627, -73.87643)",,,91-16 34 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420669,Sedan,Motorcycle,,, +05/24/2021,8:45,BROOKLYN,11233,40.671875,-73.91414,"(40.671875, -73.91414)",BOYLAND STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4419845,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:40,BROOKLYN,11234,40.62973,-73.922226,"(40.62973, -73.922226)",FLATLANDS AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420649,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,13:00,QUEENS,11436,40.682343,-73.800835,"(40.682343, -73.800835)",115 AVENUE,142 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4420200,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,22:21,QUEENS,11365,40.735703,-73.78427,"(40.735703, -73.78427)",,,67-50A 188 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4420062,Sedan,,,, +05/24/2021,0:16,BROOKLYN,11207,40.68746,-73.906494,"(40.68746, -73.906494)",CENTRAL AVENUE,MOFFAT STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420833,Motorcycle,,,, +05/23/2021,18:47,,,40.879307,-73.90295,"(40.879307, -73.90295)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420613,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/13/2021,16:16,BRONX,10470,40.90389,-73.85139,"(40.90389, -73.85139)",EAST 241 STREET,RICHARDSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420708,Sedan,Bus,,, +05/24/2021,10:27,BROOKLYN,11201,,,,,,15 bridge park drive,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4419975,Box Truck,,,, +05/24/2021,5:14,MANHATTAN,10027,40.808098,-73.94629,"(40.808098, -73.94629)",,,118 WEST 125 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420015,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,8:45,BROOKLYN,11201,40.69192,-73.97896,"(40.69192, -73.97896)",ASHLAND PLACE,WILLOUGHBY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420348,Sedan,Sedan,,, +05/24/2021,23:47,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4420263,Taxi,Convertible,,, +05/24/2021,20:40,BROOKLYN,11226,40.648792,-73.95228,"(40.648792, -73.95228)",ROGERS AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420273,Sedan,Box Truck,,, +05/21/2021,4:04,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4420844,Sedan,Sedan,,, +05/24/2021,2:30,BRONX,10472,40.827145,-73.858986,"(40.827145, -73.858986)",VIRGINIA AVENUE,CHATTERTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4419831,Sedan,,,, +05/24/2021,19:49,,,40.846893,-73.92055,"(40.846893, -73.92055)",UNIVERSITY AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4420139,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,10:20,,,40.716194,-73.996086,"(40.716194, -73.996086)",BOWERY,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419897,Van,Sedan,,, +05/24/2021,14:30,BRONX,10458,40.855244,-73.89314,"(40.855244, -73.89314)",WASHINGTON AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420206,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,2:06,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419797,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,10:24,BROOKLYN,11215,40.67136,-73.98559,"(40.67136, -73.98559)",,,322 6 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Other Vehicular,,,,4420251,Tow Truck / Wrecker,Sedan,,, +05/12/2021,9:30,,,40.744503,-73.975235,"(40.744503, -73.975235)",EAST 34 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420720,Bus,Taxi,,, +05/24/2021,17:40,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420180,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,9:10,QUEENS,11421,40.692947,-73.86115,"(40.692947, -73.86115)",FOREST PARKWAY,86 ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4419951,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,20:03,BRONX,10463,40.881866,-73.91115,"(40.881866, -73.91115)",,,3047 JOHNSON AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4420592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,5:10,QUEENS,11385,40.706974,-73.90921,"(40.706974, -73.90921)",,,551 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420545,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,15:50,,,40.76555,-73.83911,"(40.76555, -73.83911)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420071,Sedan,,,, +05/24/2021,13:50,,,40.870842,-73.88115,"(40.870842, -73.88115)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4420052,Sedan,Taxi,,, +05/24/2021,11:00,BROOKLYN,11220,40.64689,-74.017815,"(40.64689, -74.017815)",,,235 53 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420391,Sedan,Sedan,,, +05/24/2021,11:50,,,40.66423,-73.919106,"(40.66423, -73.919106)",BLAKE AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420491,Sedan,,,, +05/24/2021,17:50,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420078,Sedan,Sedan,,, +05/24/2021,15:03,MANHATTAN,10029,40.795437,-73.943954,"(40.795437, -73.943954)",EAST 111 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4420768,Station Wagon/Sport Utility Vehicle,Bike,,, +05/24/2021,4:30,,,40.719124,-73.791405,"(40.719124, -73.791405)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4419947,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,22:50,BROOKLYN,11221,40.689243,-73.93736,"(40.689243, -73.93736)",,,603 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420690,Sedan,Sedan,,, +05/24/2021,11:00,BRONX,10461,,,,FINK AVENUE,WESTCHESTER SQUARE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4419885,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,23:59,BRONX,10471,40.897232,-73.89692,"(40.897232, -73.89692)",,,6241 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420606,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,20:15,,,40.8165,-73.946556,"(40.8165, -73.946556)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4420214,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,8:15,STATEN ISLAND,10312,40.532604,-74.19051,"(40.532604, -74.19051)",,,5411 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,15:56,,,40.79395,-73.97417,"(40.79395, -73.97417)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419986,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/24/2021,18:40,,,40.830334,-73.91895,"(40.830334, -73.91895)",EAST 165 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420107,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,19:33,BRONX,10469,40.869442,-73.84736,"(40.869442, -73.84736)",,,2794 SEXTON PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420236,Sedan,,,, +05/24/2021,11:32,BROOKLYN,11231,40.682693,-73.99043,"(40.682693, -73.99043)",HOYT STREET,DOUGLASS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420166,Carry All,,,, +05/24/2021,7:45,,,40.808243,-73.92785,"(40.808243, -73.92785)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4419870,Sedan,Sedan,,, +05/24/2021,6:00,BRONX,10460,,,,EAST 177 STREET,SHERIDAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4419778,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/24/2021,17:45,BROOKLYN,11214,40.60122,-74.01014,"(40.60122, -74.01014)",SHORE PARKWAY,BAY 17 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4420035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/23/2021,18:19,BRONX,10467,40.878563,-73.86574,"(40.878563, -73.86574)",WHITE PLAINS ROAD,EAST 212 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4420657,Sedan,Sedan,,, +05/24/2021,14:45,BROOKLYN,11206,40.703854,-73.95128,"(40.703854, -73.95128)",HARRISON AVENUE,LYNCH STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420126,Station Wagon/Sport Utility Vehicle,Bus,,, +05/24/2021,14:40,QUEENS,11361,40.75826,-73.76829,"(40.75826, -73.76829)",46 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419997,Sedan,Sedan,,, +05/23/2021,14:40,BROOKLYN,11216,40.685112,-73.94717,"(40.685112, -73.94717)",MARCY AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420554,Sedan,,,, +05/24/2021,15:51,MANHATTAN,10031,40.82465,-73.94623,"(40.82465, -73.94623)",WEST 145 STREET,CONVENT AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420572,Sedan,Sedan,,, +05/24/2021,4:37,BRONX,10455,40.81608,-73.917694,"(40.81608, -73.917694)",3 AVENUE,EAST 149 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4420430,Sedan,,,, +05/20/2021,11:22,,,,,,,,1 KINGS PLAZA,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420636,PK,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,16:08,MANHATTAN,10002,40.715797,-73.99144,"(40.715797, -73.99144)",,,37 ORCHARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420046,Sedan,,,, +05/24/2021,0:00,,,40.81328,-73.89749,"(40.81328, -73.89749)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4420478,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +05/22/2021,18:34,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",FLATLANDS AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420654,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,17:05,,,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420203,Sedan,E-Bike,,, +05/23/2021,18:35,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420682,Sedan,Sedan,,, +05/18/2021,8:11,BRONX,10456,40.8375,-73.91061,"(40.8375, -73.91061)",EAST 170 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4420735,Bus,Sedan,,, +05/24/2021,5:05,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",EAST BURNSIDE AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419930,Sedan,,,, +05/24/2021,16:45,BROOKLYN,11218,40.638065,-73.97735,"(40.638065, -73.97735)",EAST 2 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4420230,Concrete Mixer,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,16:50,QUEENS,11433,40.700363,-73.784966,"(40.700363, -73.784966)",107 AVENUE,171 PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420612,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,13:15,,,40.77344,-73.92097,"(40.77344, -73.92097)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420189,Bike,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,12:10,,,40.624683,-74.14193,"(40.624683, -74.14193)",,,1605 FOREST AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4419895,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,0:38,,,40.7013,-73.93674,"(40.7013, -73.93674)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4419979,Sedan,Sedan,,, +05/24/2021,14:40,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420329,Sedan,Sedan,,, +05/24/2021,9:46,BRONX,10469,40.861225,-73.83993,"(40.861225, -73.83993)",,,2408 WESTERVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420286,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,6:20,,,40.7879,-73.95368,"(40.7879, -73.95368)",EAST 97 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419849,Sedan,,,, +05/20/2021,12:50,,,,,,KINGS HIGHWAY,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4420637,Sedan,,,, +05/19/2021,9:11,BROOKLYN,11236,40.64378,-73.89804,"(40.64378, -73.89804)",,,944 EAST 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420694,Garbage or Refuse,Sedan,,, +05/24/2021,17:40,MANHATTAN,10028,,,,East 86 Street,2 Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420453,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,5:29,BROOKLYN,11213,40.667927,-73.93321,"(40.667927, -73.93321)",,,1666 UNION STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4420823,Sedan,Sedan,,, +05/24/2021,18:00,BRONX,10451,40.81854,-73.921165,"(40.81854, -73.921165)",,,288 EAST 151 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420081,Taxi,,,, +05/22/2021,11:25,,,40.57944,-73.979614,"(40.57944, -73.979614)",NEPTUNE AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4420560,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,1:20,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4420564,Sedan,Taxi,,, +05/24/2021,1:00,QUEENS,11413,40.680958,-73.75262,"(40.680958, -73.75262)",,,133-15 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419714,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,16:05,BROOKLYN,11234,40.62667,-73.9248,"(40.62667, -73.9248)",,,1320 EAST 53 STREET,2,0,0,0,0,0,2,0,Failure to Keep Right,Unspecified,,,,4420663,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,13:59,BRONX,10456,40.830006,-73.908264,"(40.830006, -73.908264)",,,459 EAST 167 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4420138,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,8:45,,,40.751328,-73.94109,"(40.751328, -73.94109)",QUEENS PLAZA NORTH,QUEENS PLAZA,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4420158,Sedan,Sedan,Sedan,Sedan, +05/14/2021,18:20,BRONX,10469,40.88302,-73.85325,"(40.88302, -73.85325)",PAULDING AVENUE,EAST 222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420632,Sedan,Sedan,,, +05/24/2021,17:20,MANHATTAN,10016,40.747856,-73.97348,"(40.747856, -73.97348)",,,300 EAST 39 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4420040,USPS TRUCK,,,, +05/24/2021,16:39,,,40.71107,-73.79204,"(40.71107, -73.79204)",170 STREET,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4420344,Sedan,,,, +05/24/2021,17:05,QUEENS,11366,40.72717,-73.78739,"(40.72717, -73.78739)",181 STREET,UNION TURNPIKE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420061,Sedan,Bike,,, +05/21/2021,18:54,,,,,,EAST 33 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420650,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,9:00,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,4420845,Station Wagon/Sport Utility Vehicle,Taxi,Convertible,Station Wagon/Sport Utility Vehicle,C3 +05/24/2021,14:52,BRONX,10457,40.840694,-73.89937,"(40.840694, -73.89937)",,,3966 3 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420144,Bus,Bus,,, +05/24/2021,11:41,BROOKLYN,11229,40.6104,-73.9586,"(40.6104, -73.9586)",AVENUE P,EAST 15 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419963,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,8:09,BROOKLYN,11206,40.70115,-73.94013,"(40.70115, -73.94013)",,,811 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419809,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,12:23,BROOKLYN,11219,40.64029,-73.994804,"(40.64029, -73.994804)",FORT HAMILTON PARKWAY,45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420221,Sedan,Taxi,,, +05/24/2021,18:05,STATEN ISLAND,10301,40.64481,-74.09598,"(40.64481, -74.09598)",RICHMOND TERRACE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420354,Sedan,,,, +05/24/2021,14:10,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420021,Sedan,Pick-up Truck,,, +05/24/2021,17:00,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4420007,Sedan,,,, +05/24/2021,11:15,BROOKLYN,11226,40.643303,-73.9478,"(40.643303, -73.9478)",CLARENDON ROAD,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420268,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,7:40,BROOKLYN,11221,40.691383,-73.938194,"(40.691383, -73.938194)",,,864 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,16:13,,,40.629986,-73.97157,"(40.629986, -73.97157)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420089,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,18:05,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420598,Sedan,,,, +05/17/2021,20:17,,,40.692146,-73.919464,"(40.692146, -73.919464)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420526,Sedan,Sedan,,, +05/22/2021,22:00,BROOKLYN,11211,40.707737,-73.95837,"(40.707737, -73.95837)",,,190 MARCY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420809,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,2:22,,,40.8479,-73.919685,"(40.8479, -73.919685)",UNIVERSITY AVENUE,WEST 175 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4420129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,5:40,QUEENS,11377,40.74135,-73.89189,"(40.74135, -73.89189)",,,72-16 44 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/11/2021,22:53,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420704,Sedan,,,, +05/24/2021,22:40,BRONX,10459,40.82341,-73.89585,"(40.82341, -73.89585)",,,1012 KELLY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420479,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,18:15,,,40.86024,-73.92843,"(40.86024, -73.92843)",ELLWOOD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420517,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,1:50,,,40.692345,-73.88179,"(40.692345, -73.88179)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4420546,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/24/2021,18:30,,,40.59255,-73.9946,"(40.59255, -73.9946)",SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420072,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,19:28,BRONX,10468,40.862743,-73.90357,"(40.862743, -73.90357)",,,53 WEST FORDHAM ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420056,Sedan,,,, +03/26/2022,6:30,,,,,,GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4515916,Sedan,Taxi,Taxi,Sedan, +12/09/2021,3:04,,,,,,MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490304,Sedan,,,, +11/09/2021,6:05,,,40.681515,-73.90412,"(40.681515, -73.90412)",EASTERN PARKWAY,BUSHWICK AVENUE,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4475564,Sedan,,,, +10/27/2021,20:22,BRONX,10467,40.861404,-73.87059,"(40.861404, -73.87059)",BRONX PARK EAST,WARING AVENUE,,0,1,0,0,0,0,0,1,Driver Inattention/Distraction,,,,,4476009,Motorscooter,,,, +12/11/2021,19:30,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",225 STREET,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4485491,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,16:52,QUEENS,11385,40.7104,-73.86663,"(40.7104, -73.86663)",COOPER AVENUE,83 STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4486552,Sedan,,,, +12/20/2021,2:35,,,,,,,,90-18 VANERVEER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4487876,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/22/2021,14:54,,,,,,G.C.P / L.I.E. (CDR),,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4489083,Sedan,Pick-up Truck,Sedan,, +03/17/2022,20:51,QUEENS,11385,40.702,-73.88009,"(40.702, -73.88009)",71 STREET,MYRTLE AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4512305,Sedan,Sedan,Pick-up Truck,, +12/22/2021,21:00,QUEENS,11101,40.753372,-73.93126,"(40.753372, -73.93126)",38 AVENUE,32 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4490359,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,8:49,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490369,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,19:30,,,40.664993,-73.80229,"(40.664993, -73.80229)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490379,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,20:58,QUEENS,11426,40.725018,-73.72205,"(40.725018, -73.72205)",JAMAICA AVENUE,246 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4487106,Sedan,,,, +12/21/2021,22:44,QUEENS,11426,40.725266,-73.7212,"(40.725266, -73.7212)",JAMAICA AVENUE,247 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unsafe Speed,,,,4488612,Sedan,Sedan,,, +12/09/2021,18:23,BRONX,10454,40.807507,-73.92701,"(40.807507, -73.92701)",EAST 134 STREET,ALEXANDER AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4490364,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,7:16,BRONX,10451,40.822628,-73.916695,"(40.822628, -73.916695)",,,785 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490361,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,17:35,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420357,Sedan,Sedan,,, +03/27/2022,1:03,BROOKLYN,11210,40.638824,-73.94492,"(40.638824, -73.94492)",,,3305 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4514064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/28/2022,14:02,QUEENS,11001,40.738297,-73.70177,"(40.738297, -73.70177)",267 STREET,EAST WILLISTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514325,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,6:55,QUEENS,11691,40.59346,-73.777985,"(40.59346, -73.777985)",BEACH 47 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515995,Sedan,Sedan,,, +03/29/2022,9:33,QUEENS,11413,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Unsafe Speed,,,4515095,Sedan,Sedan,Sedan,, +03/29/2022,15:45,QUEENS,11691,40.609097,-73.756615,"(40.609097, -73.756615)",,,14-43 MCBRIDE STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4515997,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,18:24,,,40.82092,-73.94333,"(40.82092, -73.94333)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515985,Sedan,,,, +04/23/2022,16:07,,,40.800087,-73.9511,"(40.800087, -73.9511)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4522236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/24/2022,8:00,BROOKLYN,11212,40.669422,-73.91744,"(40.669422, -73.91744)",,,1373 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4521764,Sedan,,,, +04/24/2022,13:40,,,0,0,"(0.0, 0.0)",107 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,4:00,,,,,,GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4522181,Sedan,,,, +04/24/2022,0:00,,,40.821945,-73.9281,"(40.821945, -73.9281)",EAST 151 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4522216,Station Wagon/Sport Utility Vehicle,UHAUL TRUC,,, +04/24/2022,21:10,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",WEST FORDHAM ROAD,LORING PLACE NORTH,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4521774,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/24/2022,12:51,,,40.73448,-73.92243,"(40.73448, -73.92243)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4521588,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,16:17,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489878,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,17:30,QUEENS,11385,40.70063,-73.904015,"(40.70063, -73.904015)",,,907 SENECA AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4490159,Sedan,Sedan,Sedan,, +12/26/2021,21:24,BRONX,10460,40.84044,-73.86687,"(40.84044, -73.86687)",,,1820 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489992,Sedan,Motorcycle,,, +12/26/2021,0:04,BROOKLYN,11210,40.624798,-73.94265,"(40.624798, -73.94265)",EAST 34 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4489517,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,23:15,QUEENS,11365,40.732323,-73.810776,"(40.732323, -73.810776)",PARSONS BOULEVARD,JEWEL AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4489939,Sedan,Sedan,,, +12/26/2021,20:30,BROOKLYN,11223,40.592304,-73.9739,"(40.592304, -73.9739)",MC DONALD AVENUE,AVENUE W,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4490203,Sedan,Motorcycle,,, +12/26/2021,21:30,BRONX,10456,40.819324,-73.90661,"(40.819324, -73.90661)",,,789 JACKSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4490105,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,14:00,,,40.863884,-73.91069,"(40.863884, -73.91069)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4490303,Sedan,Sedan,,, +12/26/2021,11:30,,,40.759163,-73.97675,"(40.759163, -73.97675)",EAST 51 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489614,Station Wagon/Sport Utility Vehicle,Ambulance,,, +12/22/2021,14:00,MANHATTAN,10012,40.722797,-74.00013,"(40.722797, -74.00013)",,,82 MERCER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490131,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,19:37,BROOKLYN,11222,40.73189,-73.95921,"(40.73189, -73.95921)",,,33 INDIA STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4490259,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/26/2021,7:00,BROOKLYN,11212,40.663235,-73.90442,"(40.663235, -73.90442)",,,305 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489639,Sedan,,,, +12/26/2021,11:34,BROOKLYN,11204,40.618065,-73.9807,"(40.618065, -73.9807)",,,2071 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489847,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/13/2021,13:46,QUEENS,11378,40.72552,-73.9018,"(40.72552, -73.9018)",,,55-54 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490163,Sedan,,,, +12/24/2021,6:30,QUEENS,11370,40.773808,-73.8929,"(40.773808, -73.8929)",HAZEN STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490177,Sedan,,,, +04/01/2022,19:10,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515663,Sedan,Sedan,,, +12/23/2021,14:20,BROOKLYN,11212,40.66859,-73.90659,"(40.66859, -73.90659)",,,424 STONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490234,Bus,BLUE CHEVY,,, +12/26/2021,19:00,QUEENS,11433,40.704697,-73.79433,"(40.704697, -73.79433)",,,92-26 165 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489762,Sedan,,,, +12/26/2021,18:40,BRONX,10466,40.891228,-73.84115,"(40.891228, -73.84115)",,,4015 WILDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489710,Sedan,Sedan,,, +12/26/2021,22:30,QUEENS,11428,40.728615,-73.73858,"(40.728615, -73.73858)",90 AVENUE,BORKEL PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4489748,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/26/2021,20:00,BRONX,10475,40.883553,-73.83476,"(40.883553, -73.83476)",BOSTON ROAD,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489714,Tractor Truck Diesel,unk,,, +12/26/2021,16:00,,,40.707027,-73.9236,"(40.707027, -73.9236)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489808,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,12:48,MANHATTAN,10016,40.742645,-73.98246,"(40.742645, -73.98246)",EAST 28 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489665,FIRE TRUCK,Sedan,,, +12/21/2021,18:00,,,40.700497,-73.962555,"(40.700497, -73.962555)",WILLIAMSBURG STREET WEST,KENT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4490229,Armored Truck,,,, +12/26/2021,20:25,MANHATTAN,10012,40.72639,-73.991806,"(40.72639, -73.991806)",GREAT JONES STREET,BOWERY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490051,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/06/2021,12:06,,,40.75733,-73.93136,"(40.75733, -73.93136)",29 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490138,Sedan,Sedan,,, +12/26/2021,19:00,MANHATTAN,10065,40.76256,-73.96125,"(40.76256, -73.96125)",,,330 EAST 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490249,Sedan,,,, +12/25/2021,8:51,BRONX,10465,40.81709,-73.81827,"(40.81709, -73.81827)",,,2837 LAWTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490183,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,4:55,STATEN ISLAND,10312,40.56345,-74.169754,"(40.56345, -74.169754)",RICHMOND AVENUE,DRUMGOOLE ROAD WEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490240,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,11:00,,,40.66434,-73.93155,"(40.66434, -73.93155)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489689,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,21:05,,,40.73487,-73.92331,"(40.73487, -73.92331)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4489781,Sedan,,,, +12/26/2021,15:40,BROOKLYN,11212,40.66293,-73.920616,"(40.66293, -73.920616)",,,169 EAST 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4489969,Sedan,,,, +12/24/2021,14:01,STATEN ISLAND,10312,40.549477,-74.17044,"(40.549477, -74.17044)",,,80 LAREDO AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4490176,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/19/2021,8:16,BROOKLYN,11230,40.630646,-73.973595,"(40.630646, -73.973595)",,,154 LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490341,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,22:48,MANHATTAN,10065,40.762104,-73.960144,"(40.762104, -73.960144)",EAST 63 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4489848,Sedan,Sedan,,, +12/26/2021,12:20,MANHATTAN,10018,40.75066,-73.987785,"(40.75066, -73.987785)",WEST 35 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489911,,,,, +12/26/2021,18:30,QUEENS,11373,40.74459,-73.884674,"(40.74459, -73.884674)",LAYTON STREET,BAXTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489724,Ambulance,,,, +12/18/2021,16:17,QUEENS,11412,40.69012,-73.756424,"(40.69012, -73.756424)",119 AVENUE,194 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4490298,Sedan,Sedan,,, +12/20/2021,13:12,,,,,,PELHAM PARKWAY NORTH,WILLIAMSBRIDGE ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490196,Sedan,,,, +12/09/2021,2:00,BROOKLYN,11232,40.663345,-73.99829,"(40.663345, -73.99829)",3 AVENUE,22 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490219,Sedan,,,, +12/24/2021,1:00,STATEN ISLAND,10306,40.57521,-74.11528,"(40.57521, -74.11528)",,,1349 NORTH RAILROAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490286,Sedan,,,, +12/26/2021,16:55,STATEN ISLAND,10314,40.611744,-74.12203,"(40.611744, -74.12203)",MANOR ROAD,WINDSOR ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490017,Sedan,Sedan,,, +12/20/2021,0:15,,,40.67994,-73.941216,"(40.67994, -73.941216)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490133,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,23:00,BROOKLYN,11214,40.609764,-73.99914,"(40.609764, -73.99914)",,,1803 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489926,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/19/2021,23:30,BRONX,10452,40.83533,-73.927,"(40.83533, -73.927)",NELSON AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490169,Sedan,,,, +12/26/2021,20:07,BRONX,10455,40.813488,-73.89935,"(40.813488, -73.89935)",SOUTHERN BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489864,Sedan,Sedan,Sedan,, +12/23/2021,19:25,QUEENS,11354,40.75896,-73.82985,"(40.75896, -73.82985)",40 ROAD,MAIN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,10:30,QUEENS,11106,40.75892,-73.92566,"(40.75892, -73.92566)",33 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4490152,Bike,,,, +12/26/2021,21:07,,,40.852818,-73.90476,"(40.852818, -73.90476)",CRESTON AVENUE,EAST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489952,Tractor Truck Diesel,Sedan,,, +12/25/2021,14:48,QUEENS,11378,40.721714,-73.902145,"(40.721714, -73.902145)",,,57-39 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490153,Sedan,Sedan,,, +12/26/2021,18:38,,,40.6843,-73.94121,"(40.6843, -73.94121)",THROOP AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4490115,Sedan,Sedan,Sedan,Sedan, +12/26/2021,0:05,,,40.612453,-74.037735,"(40.612453, -74.037735)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489526,Sedan,,,, +12/26/2021,11:15,MANHATTAN,10035,40.806293,-73.93603,"(40.806293, -73.93603)",EAST 128 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489890,Sedan,,,, +12/15/2021,4:10,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",ROOSEVELT AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490357,Sedan,Sedan,,, +12/26/2021,2:20,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4489617,Sedan,,,, +05/25/2021,17:00,BROOKLYN,11230,40.624683,-73.961296,"(40.624683, -73.961296)",,,1009 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420448,Sedan,,,, +12/26/2021,1:20,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489861,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,16:20,,,40.71407,-73.99751,"(40.71407, -73.99751)",BOWERY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514894,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,12:11,BRONX,10456,40.83091,-73.92047,"(40.83091, -73.92047)",GRAND CONCOURSE,EAST 165 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4489927,Sedan,,,, +12/23/2021,21:10,,,40.547108,-74.16621,"(40.547108, -74.16621)",RICHMOND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490257,Sedan,,,, +12/13/2021,17:15,BROOKLYN,11236,40.635223,-73.89751,"(40.635223, -73.89751)",,,1481 EAST 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490307,Sedan,,,, +12/26/2021,11:15,MANHATTAN,10038,40.70882,-73.99898,"(40.70882, -73.99898)",,,180 SOUTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489994,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,17:34,BROOKLYN,11233,40.68313,-73.922775,"(40.68313, -73.922775)",,,194 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489722,Sedan,,,, +12/26/2021,17:45,QUEENS,11101,40.751736,-73.939575,"(40.751736, -73.939575)",,,41-34 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489750,Ambulance,Sedan,,, +12/17/2021,13:38,BROOKLYN,11205,40.69133,-73.95177,"(40.69133, -73.95177)",DE KALB AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490188,Pick-up Truck,Tractor Truck Gasoline,,, +12/26/2021,16:00,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",LINDEN BOULEVARD,NEWBURG STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,Unspecified,,,4489882,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,8:30,,,40.525932,-74.221924,"(40.525932, -74.221924)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4490243,Sedan,,,, +12/26/2021,15:36,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",QUEENS BOULEVARD,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489690,Sedan,E-Scooter,,, +12/23/2021,20:00,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490158,Sedan,,,, +12/20/2021,13:06,QUEENS,11102,40.77445,-73.918465,"(40.77445, -73.918465)",26 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490197,Sedan,,,, +12/26/2021,18:54,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,,,,4489731,Sedan,,,, +12/26/2021,14:43,BROOKLYN,11233,40.67398,-73.911156,"(40.67398, -73.911156)",ROCKAWAY AVENUE,BERGEN STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4489968,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,13:33,BRONX,10455,40.814934,-73.89765,"(40.814934, -73.89765)",SOUTHERN BOULEVARD,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490347,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,16:18,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",3 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490250,Sedan,Sedan,,, +12/26/2021,23:47,,,40.641895,-73.93324,"(40.641895, -73.93324)",AVENUE D,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489871,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,21:20,BROOKLYN,11233,40.676006,-73.91933,"(40.676006, -73.91933)",,,2041 PACIFIC STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489975,Sedan,Sedan,,, +12/24/2021,2:30,,,40.73973,-73.81762,"(40.73973, -73.81762)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4490318,Sedan,Sedan,,, +12/25/2021,7:00,BRONX,10465,40.826767,-73.81602,"(40.826767, -73.81602)",,,610 ELLSWORTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490182,Sedan,,,, +12/26/2021,12:44,BROOKLYN,11234,40.630238,-73.93246,"(40.630238, -73.93246)",KINGS HIGHWAY,AVENUE I,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4489632,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,14:30,,,40.53062,-74.19455,"(40.53062, -74.19455)",CHISHOLM STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4490239,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,18:25,BRONX,10460,40.836353,-73.88837,"(40.836353, -73.88837)",,,1716 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4489810,MOPED,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,8:25,,,40.60455,-73.9691,"(40.60455, -73.9691)",KINGS HIGHWAY,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4490202,Bus,Bike,,, +12/19/2021,19:00,,,40.697933,-73.892006,"(40.697933, -73.892006)",64 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,15:00,QUEENS,11421,40.697678,-73.851845,"(40.697678, -73.851845)",PARK LANE SOUTH,94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490042,Sedan,Sedan,,, +12/22/2021,20:00,QUEENS,11106,40.763775,-73.94034,"(40.763775, -73.94034)",,,34-48 9 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490136,Sedan,Sedan,,, +11/24/2021,8:10,,,40.657658,-73.953224,"(40.657658, -73.953224)",HAWTHORNE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,17:30,MANHATTAN,10022,40.76156,-73.974686,"(40.76156, -73.974686)",,,2 EAST 55 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489901,Convertible,Taxi,,, +12/19/2021,12:30,,,40.520916,-74.235115,"(40.520916, -74.235115)",PAGE AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4490244,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,7:00,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490287,Van,Box Truck,,, +12/26/2021,15:50,BROOKLYN,11212,40.671684,-73.912224,"(40.671684, -73.912224)",EAST NEW YORK AVENUE,CHESTER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489972,Sedan,Sedan,,, +12/22/2021,19:45,STATEN ISLAND,10312,40.5528,-74.191444,"(40.5528, -74.191444)",,,260 ARDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,9:30,BROOKLYN,11223,40.6048,-73.966805,"(40.6048, -73.966805)",OCEAN PARKWAY,AVENUE R,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4489664,Sedan,Sedan,,, +12/09/2021,18:12,QUEENS,11105,40.771454,-73.897095,"(40.771454, -73.897095)",,,20-55 49 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490144,Station Wagon/Sport Utility Vehicle,Motorbike,,, +12/26/2021,15:26,QUEENS,11433,40.700512,-73.796776,"(40.700512, -73.796776)",LIBERTY AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4489760,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,21:45,,,40.758972,-73.91901,"(40.758972, -73.91901)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490154,Sedan,,,, +12/26/2021,1:30,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489889,Sedan,Sedan,,, +12/25/2021,5:41,BRONX,10453,40.85078,-73.91222,"(40.85078, -73.91222)",WEST TREMONT AVENUE,WEST 177 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4490142,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/26/2021,16:55,,,40.613678,-74.07817,"(40.613678, -74.07817)",CIRCLE LOOP,SKYLINE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490016,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,1:00,BROOKLYN,11212,40.6649,-73.90403,"(40.6649, -73.90403)",,,393 DUMONT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4489529,Sedan,Sedan,Sedan,Sedan, +12/21/2021,0:00,QUEENS,11377,40.760975,-73.89773,"(40.760975, -73.89773)",70 STREET,BOODY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490275,Sedan,,,, +12/22/2021,15:35,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY SOUTH,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4490198,Sedan,E-Scooter,,, +12/26/2021,5:35,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4489728,Sedan,,,, +12/26/2021,17:07,BROOKLYN,11220,40.636517,-74.022736,"(40.636517, -74.022736)",,,6717 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489745,Sedan,Sedan,,, +12/20/2021,16:32,,,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490171,Bus,Sedan,,, +12/26/2021,7:20,,,40.658703,-73.854904,"(40.658703, -73.854904)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4489774,Sedan,,,, +12/23/2021,15:30,,,40.681446,-73.94644,"(40.681446, -73.94644)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490189,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,0:01,BROOKLYN,11226,40.64226,-73.95156,"(40.64226, -73.95156)",,,1131 ROGERS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4489869,Sedan,,,, +12/14/2021,12:16,QUEENS,11365,40.749966,-73.786804,"(40.749966, -73.786804)",,,193-08 48 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490220,Station Wagon/Sport Utility Vehicle,Dump,,, +12/26/2021,14:06,QUEENS,11426,40.725853,-73.719025,"(40.725853, -73.719025)",,,247-77 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4489682,Sedan,,,, +03/29/2022,23:00,BROOKLYN,11203,40.653862,-73.9296,"(40.653862, -73.9296)",LINDEN BOULEVARD,EAST 51 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4515638,Sedan,Sedan,,, +12/20/2021,14:30,STATEN ISLAND,10312,40.56222,-74.17935,"(40.56222, -74.17935)",,,52 TYNAN STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490215,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,9:15,,,40.50918,-74.24344,"(40.50918, -74.24344)",YETMAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490242,Station Wagon/Sport Utility Vehicle,Bus,,, +10/01/2021,9:30,QUEENS,11368,40.749866,-73.86273,"(40.749866, -73.86273)",ROOSEVELT AVENUE,103 STREET,,1,0,1,0,0,0,0,0,,,,,,4463152,,,,, +12/26/2021,1:20,,,,,,DOUGLASTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489697,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,23:17,QUEENS,11417,40.672947,-73.84745,"(40.672947, -73.84745)",,,88-16 SPRITZ ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4489772,Sedan,Sedan,,, +12/26/2021,12:30,,,40.654213,-73.91776,"(40.654213, -73.91776)",CHURCH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489859,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,21:30,MANHATTAN,10038,40.709522,-74.00167,"(40.709522, -74.00167)",PEARL STREET,DOVER STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4490126,Bike,,,, +11/19/2021,22:40,QUEENS,11369,40.768127,-73.87625,"(40.768127, -73.87625)",94 STREET,23 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490274,Sedan,,,, +12/26/2021,4:10,BROOKLYN,11233,40.67715,-73.92559,"(40.67715, -73.92559)",,,1825 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4489719,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,5:45,,,40.67329,-73.76585,"(40.67329, -73.76585)",175 STREET,137 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489886,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,2:33,,,40.58571,-73.91276,"(40.58571, -73.91276)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4489663,Sedan,,,, +12/26/2021,11:34,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4489841,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,12:30,QUEENS,11385,40.701454,-73.90181,"(40.701454, -73.90181)",,,58-37 69 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490165,Sedan,Bus,,, +12/26/2021,14:00,BROOKLYN,11215,40.675175,-73.98471,"(40.675175, -73.98471)",1 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4489792,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,15:00,STATEN ISLAND,10312,40.54653,-74.180435,"(40.54653, -74.180435)",ARDEN AVENUE,DRUMGOOLE ROAD EAST,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490221,Sedan,Sedan,,, +12/26/2021,20:05,,,40.837303,-73.90785,"(40.837303, -73.90785)",EAST 170 STREET,CLAY AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4489929,Bike,,,, +12/23/2021,5:28,,,40.728466,-73.90871,"(40.728466, -73.90871)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4490186,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/18/2021,13:21,,,40.52634,-74.22344,"(40.52634, -74.22344)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490238,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,23:52,BRONX,10469,40.860588,-73.857506,"(40.860588, -73.857506)",,,2325 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490207,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,13:03,BROOKLYN,11226,40.655354,-73.951355,"(40.655354, -73.951355)",,,257 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4490079,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/26/2021,21:30,,,40.86609,-73.88268,"(40.86609, -73.88268)",SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490305,Sedan,,,, +12/26/2021,17:00,,,40.808804,-73.95589,"(40.808804, -73.95589)",WEST 121 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4489920,Station Wagon/Sport Utility Vehicle,Moped,,, +12/04/2021,20:31,MANHATTAN,10009,40.723648,-73.98529,"(40.723648, -73.98529)",EAST 3 STREET,AVENUE A,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490349,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,17:30,BRONX,10454,40.808857,-73.93014,"(40.808857, -73.93014)",EAST 134 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4489896,Sedan,Sedan,,, +12/26/2021,10:20,,,,,,40th street and Dyer avenue,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489619,Sedan,Sedan,,, +12/26/2021,3:01,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489755,Sedan,,,, +12/26/2021,13:15,QUEENS,11426,40.740818,-73.72044,"(40.740818, -73.72044)",81 AVENUE,249 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489983,Station Wagon/Sport Utility Vehicle,,,, +12/03/2021,18:30,BROOKLYN,11223,40.584366,-73.98292,"(40.584366, -73.98292)",,,2603 STILLWELL AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490278,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +12/26/2021,19:50,BRONX,10452,40.836937,-73.927124,"(40.836937, -73.927124)",OGDEN AVENUE,WEST 167 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490002,Sedan,,,, +12/24/2021,19:30,BRONX,10456,40.828262,-73.909065,"(40.828262, -73.909065)",,,1085 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4490161,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,20:24,,,40.715263,-73.976326,"(40.715263, -73.976326)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490290,Sedan,Sedan,,, +12/26/2021,10:59,MANHATTAN,10040,40.856808,-73.92827,"(40.856808, -73.92827)",SAINT NICHOLAS AVENUE,WEST 193 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489962,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,17:43,,,40.73866,-73.81027,"(40.73866, -73.81027)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489872,Sedan,Sedan,,, +12/23/2021,10:10,MANHATTAN,10016,40.74608,-73.974945,"(40.74608, -73.974945)",EAST 36 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4490374,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +12/21/2021,17:25,QUEENS,11422,40.66061,-73.728455,"(40.66061, -73.728455)",,,142-37 HOOK CREEK BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4488610,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/25/2021,12:30,,,,,,VERRAZANO BRIDGE UPPER,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4490179,Sedan,Sedan,,, +12/24/2021,13:45,MANHATTAN,10065,40.764614,-73.95833,"(40.764614, -73.95833)",EAST 67 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490251,Sedan,Sedan,,, +12/26/2021,22:15,,,40.584003,-73.92157,"(40.584003, -73.92157)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4490039,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/24/2021,20:30,QUEENS,11420,40.67213,-73.802666,"(40.67213, -73.802666)",,,129-07 135 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490147,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,5:25,,,40.756397,-73.804535,"(40.756397, -73.804535)",162 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4490316,Taxi,Sedan,Sedan,, +12/23/2021,8:21,QUEENS,11378,40.719555,-73.92287,"(40.719555, -73.92287)",,,57-47 47 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490155,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,17:00,MANHATTAN,10002,40.721233,-73.98778,"(40.721233, -73.98778)",STANTON STREET,LUDLOW STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4490332,Sedan,,,, +12/26/2021,1:20,BROOKLYN,11233,40.674908,-73.91386,"(40.674908, -73.91386)",BOYLAND STREET,DEAN STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4489534,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/13/2021,17:30,QUEENS,11434,40.672844,-73.76405,"(40.672844, -73.76405)",FARMERS BOULEVARD,182 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490377,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,12:00,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489916,Sedan,Sedan,,, +12/20/2021,12:00,BRONX,10473,40.811817,-73.85693,"(40.811817, -73.85693)",,,327 BOLTON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490199,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,21:00,BROOKLYN,11209,40.633724,-74.02389,"(40.633724, -74.02389)",4 AVENUE,OVINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489746,Sedan,,,, +12/15/2021,8:35,,,40.68086,-73.95441,"(40.68086, -73.95441)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Traffic Control Disregarded,,,,4490191,Motorbike,Sedan,,, +12/13/2021,19:30,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4490282,Pick-up Truck,,,, +12/26/2021,17:20,,,,,,3 avenue,3 avenue,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490072,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,14:51,BROOKLYN,11205,40.689445,-73.95513,"(40.689445, -73.95513)",BEDFORD AVENUE,LAFAYETTE AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490135,Sedan,Bike,,, +12/19/2021,12:30,STATEN ISLAND,10312,40.538334,-74.18327,"(40.538334, -74.18327)",,,174 ALBEE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490246,Sedan,,,, +12/26/2021,8:05,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490166,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,21:30,QUEENS,11419,40.68884,-73.8219,"(40.68884, -73.8219)",103 AVENUE,123 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4489787,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,7:10,,,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4489868,Sedan,Sedan,,, +12/26/2021,11:10,,,,,,OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4489686,Sedan,Taxi,Sedan,, +12/26/2021,18:43,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,9:10,,,,,,ASTORIA BLVD,77 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489971,Sedan,Sedan,,, +12/26/2021,13:51,,,40.684513,-73.909386,"(40.684513, -73.909386)",MOFFAT STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4489806,Sedan,,,, +12/26/2021,23:38,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4489873,Sedan,Tractor Truck Diesel,,, +12/18/2021,18:30,,,40.88205,-73.83224,"(40.88205, -73.83224)",BIVONA STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490255,Sedan,,,, +12/25/2021,13:05,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490217,Sedan,Sedan,,, +12/24/2021,9:21,MANHATTAN,10065,40.762802,-73.965675,"(40.762802, -73.965675)",EAST 61 STREET,3 AVENUE,,0,2,0,1,0,1,0,0,Unspecified,Unspecified,Unspecified,,,4490224,Box Truck,Station Wagon/Sport Utility Vehicle,E-Bike,, +12/26/2021,10:45,QUEENS,11422,40.673798,-73.73179,"(40.673798, -73.73179)",MERRICK BOULEVARD,242 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,19:00,,,40.77613,-73.910706,"(40.77613, -73.910706)",31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490140,Sedan,ambulance,,, +12/26/2021,4:45,QUEENS,11418,40.689873,-73.84282,"(40.689873, -73.84282)",ATLANTIC AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4489727,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,16:45,QUEENS,11102,40.766884,-73.921394,"(40.766884, -73.921394)",31 STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490178,Station Wagon/Sport Utility Vehicle,Bike,,, +12/26/2021,10:59,BROOKLYN,11229,40.603203,-73.937584,"(40.603203, -73.937584)",AVENUE T,COYLE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4489660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,2:15,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",2 AVENUE,EAST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489888,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,17:20,,,,,,union street,Prospect Park West,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490214,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,23:30,,,40.72556,-73.89849,"(40.72556, -73.89849)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490164,Pick-up Truck,Sedan,,, +12/20/2021,21:30,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4488260,Station Wagon/Sport Utility Vehicle,DOT VEHICL,,, +12/24/2021,10:35,,,40.68888,-73.960014,"(40.68888, -73.960014)",,,LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490353,Sedan,,,, +12/26/2021,14:00,QUEENS,11411,40.69108,-73.72911,"(40.69108, -73.72911)",LINDEN BOULEVARD,233 STREET,,3,0,0,0,0,0,3,0,Lost Consciousness,Unspecified,Unspecified,,,4489984,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/26/2021,11:00,,,40.718815,-73.793274,"(40.718815, -73.793274)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4489938,Sedan,,,, +12/07/2021,14:40,QUEENS,11369,40.760746,-73.862434,"(40.760746, -73.862434)",ASTORIA BOULEVARD,107 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490264,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,19:10,,,,,,MEEKER AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490012,Sedan,,,, +12/26/2021,7:40,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",WILLIAMSBURG STREET WEST,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Passenger Distraction,,,,4489757,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,14:09,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489717,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,17:36,,,40.828915,-73.83841,"(40.828915, -73.83841)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490184,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,3:35,,,40.67657,-73.94431,"(40.67657, -73.94431)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490237,Sedan,Sedan,,, +12/26/2021,16:20,MANHATTAN,10021,40.76843,-73.961555,"(40.76843, -73.961555)",3 AVENUE,EAST 70 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4489846,Sedan,Sedan,,, +12/26/2021,23:35,BROOKLYN,11226,40.638733,-73.95665,"(40.638733, -73.95665)",,,2210 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490081,Sedan,Sedan,,, +12/26/2021,2:03,BROOKLYN,11223,40.60536,-73.96174,"(40.60536, -73.96174)",CONEY ISLAND AVENUE,AVENUE R,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490205,Sedan,Sedan,,, +12/17/2021,11:45,QUEENS,11102,40.77485,-73.93387,"(40.77485, -73.93387)",,,3-20 27 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,View Obstructed/Limited,,,,4490160,Pick-up Truck,ESCAVATER,,, +12/26/2021,18:00,QUEENS,11374,40.734272,-73.8626,"(40.734272, -73.8626)",HORACE HARDING EXPRESSWAY,97 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489706,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,3:05,,,40.862686,-73.91187,"(40.862686, -73.91187)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4489622,Sedan,,,, +05/25/2021,21:41,BROOKLYN,11208,40.670807,-73.87468,"(40.670807, -73.87468)",,,1159 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420874,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,10:15,,,,,,,,1587 CARROLL,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4463297,Sedan,,,, +12/26/2021,2:22,BRONX,10459,40.81969,-73.90161,"(40.81969, -73.90161)",WESTCHESTER AVENUE,PROSPECT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489893,Sedan,Bike,,, +12/23/2021,9:40,,,40.692627,-73.959,"(40.692627, -73.959)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490130,Pick-up Truck,,,, +12/26/2021,18:16,BRONX,10458,40.852417,-73.8844,"(40.852417, -73.8844)",,,2315 CROTONA AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4489850,Van,Sedan,Sedan,Sedan, +12/20/2021,16:00,,,,,,31 STREET,ASTORIA BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4490360,Sedan,Tractor Truck Diesel,,, +12/25/2021,12:00,BRONX,10466,40.89304,-73.85863,"(40.89304, -73.85863)",,,681 EAST 232 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490277,Sedan,,,, +12/26/2021,23:48,BROOKLYN,11236,40.639286,-73.89869,"(40.639286, -73.89869)",EAST 95 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489922,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,9:39,MANHATTAN,10002,40.718292,-73.98248,"(40.718292, -73.98248)",RIVINGTON STREET,PITT STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4490291,Sedan,Box Truck,,, +12/18/2021,18:03,,,,,,33 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,20:58,BROOKLYN,11209,40.626213,-74.03872,"(40.626213, -74.03872)",85 STREET,NARROWS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4489747,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,15:07,,,,,,49 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490201,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +12/26/2021,22:30,QUEENS,11103,40.759277,-73.919685,"(40.759277, -73.919685)",,,38-18 BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4490167,Bike,Sedan,,, +12/26/2021,20:23,QUEENS,11373,40.742393,-73.87116,"(40.742393, -73.87116)",,,93-04 CORONA AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489725,Station Wagon/Sport Utility Vehicle,Bike,,, +12/26/2021,16:00,,,40.700245,-73.92089,"(40.700245, -73.92089)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4489807,Sedan,,,, +12/24/2021,13:30,,,40.556343,-74.203705,"(40.556343, -74.203705)",ARTHUR KILL ROAD,HUGUENOT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490241,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2022,8:45,QUEENS,11368,40.75357,-73.85539,"(40.75357, -73.85539)",112 STREET,38 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4545618,Sedan,Sedan,,, +12/26/2021,15:40,BROOKLYN,11224,40.57997,-73.97466,"(40.57997, -73.97466)",NEPTUNE AVENUE,WEST 6 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,16:39,QUEENS,11434,40.688362,-73.77663,"(40.688362, -73.77663)",MERRICK BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490283,Sedan,,,, +12/26/2021,13:00,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",MAIN STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490031,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/25/2021,21:30,BRONX,10457,40.848175,-73.88734,"(40.848175, -73.88734)",,,2115 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4490373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/22/2021,21:50,QUEENS,11436,40.686104,-73.794586,"(40.686104, -73.794586)",149 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490378,Sedan,Sedan,,, +12/26/2021,7:42,,,40.711006,-74.003624,"(40.711006, -74.003624)",GOLD STREET,FRANKFORT STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4489608,Sedan,,,, +12/26/2021,20:50,BRONX,10457,40.85252,-73.90002,"(40.85252, -73.90002)",EAST 180 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4490139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/18/2021,17:30,QUEENS,11379,40.712597,-73.88073,"(40.712597, -73.88073)",,,72-49 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,4:19,STATEN ISLAND,10304,40.622463,-74.07254,"(40.622463, -74.07254)",BAY STREET,VANDERBILT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4489915,Sedan,Sedan,,, +12/26/2021,10:55,,,,,,ASPEN KNOLL WAY,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,20:27,QUEENS,11369,40.770496,-73.87481,"(40.770496, -73.87481)",DITMARS BOULEVARD,96 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4489970,Taxi,Sedan,,, +12/24/2021,14:15,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",ANTHONY AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490151,Ambulance,Taxi,,, +12/26/2021,1:59,,,,,,FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4489786,Sedan,Sedan,,, +12/26/2021,15:00,,,40.748955,-73.87136,"(40.748955, -73.87136)",ROOSEVELT AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489673,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,22:30,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490193,Sedan,Sedan,,, +12/22/2021,18:30,STATEN ISLAND,10309,40.527874,-74.23353,"(40.527874, -74.23353)",,,2750 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4490256,Sedan,,,, +12/26/2021,15:22,,,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4489877,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,11:45,BROOKLYN,11226,40.650066,-73.94853,"(40.650066, -73.94853)",,,30 EAST 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489867,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,12:32,,,40.566715,-74.13769,"(40.566715, -74.13769)",AMBER STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490218,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,13:47,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4489960,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/26/2021,15:56,,,40.7304,-73.815056,"(40.7304, -73.815056)",71 AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490057,Sedan,,,, +12/25/2021,9:25,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4489467,Sedan,,,, +12/26/2021,23:52,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490337,Sedan,,,, +12/16/2021,8:24,,,,,,GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4490134,Sedan,Sedan,,, +12/26/2021,22:30,BROOKLYN,11219,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489925,Sedan,Sedan,,, +12/26/2021,22:20,QUEENS,11435,40.688957,-73.79824,"(40.688957, -73.79824)",LIVERPOOL STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490294,Sedan,,,, +12/24/2021,6:39,,,40.75388,-73.822815,"(40.75388, -73.822815)",KISSENA BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490315,Sedan,,,, +12/25/2021,11:46,QUEENS,11373,40.740967,-73.88146,"(40.740967, -73.88146)",,,45-20 83 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490354,Sedan,Box Truck,,, +12/26/2021,15:15,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,20:05,,,,,,Queens plaza s,Jackson ave,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515311,Station Wagon/Sport Utility Vehicle,Bus,,, +03/31/2022,0:30,QUEENS,11370,40.757805,-73.88464,"(40.757805, -73.88464)",,,83-09 32 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514995,Sedan,,,, +03/27/2022,2:00,QUEENS,11103,40.767574,-73.91202,"(40.767574, -73.91202)",,,25-22 STEINWAY STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515915,Sedan,Sedan,,, +03/31/2022,0:14,,,40.738792,-73.8075,"(40.738792, -73.8075)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4514936,Sedan,Sedan,,, +04/01/2022,23:30,QUEENS,11370,40.764507,-73.88416,"(40.764507, -73.88416)",ASTORIA BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,19:35,,,40.852383,-73.92048,"(40.852383, -73.92048)",SEDGWICK AVENUE,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4515293,Sedan,Sedan,,, +03/31/2022,23:31,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",NEW YORK AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4515637,Sedan,Sedan,Sedan,, +03/31/2022,17:28,,,,,,GOWANUS RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4515176,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/17/2022,8:00,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4515468,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/01/2022,6:32,STATEN ISLAND,10304,40.60668,-74.085976,"(40.60668, -74.085976)",NECKAR AVENUE,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515414,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +03/31/2022,18:30,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515147,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,1:47,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514651,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,0:00,QUEENS,11423,40.712906,-73.771095,"(40.712906, -73.771095)",,,90-04 189 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515958,Sedan,Sedan,,, +05/12/2021,14:53,STATEN ISLAND,10301,40.63387,-74.10439,"(40.63387, -74.10439)",,,406 KISSEL AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4416855,Sedan,Sedan,Sedan,, +05/24/2021,17:26,MANHATTAN,10028,40.77307,-73.94836,"(40.77307, -73.94836)",,,519 EAST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421201,van,van,,, +05/25/2021,20:50,BROOKLYN,11236,40.645027,-73.91998,"(40.645027, -73.91998)",CLARENDON ROAD,RALPH AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4421141,Sedan,Sedan,,, +05/24/2021,23:00,BRONX,10461,40.851852,-73.83376,"(40.851852, -73.83376)",WILKINSON AVENUE,MAYFLOWER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421196,Sedan,,,, +05/23/2021,20:30,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,WINTHROP STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4421143,Sedan,Sedan,,, +05/23/2021,20:15,MANHATTAN,10128,40.78017,-73.9551,"(40.78017, -73.9551)",LEXINGTON AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421183,Sedan,Bike,,, +05/17/2021,1:00,BROOKLYN,11203,40.637455,-73.92886,"(40.637455, -73.92886)",UTICA AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421144,Sedan,,,, +05/18/2021,19:30,,,40.830536,-73.91571,"(40.830536, -73.91571)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421205,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,7:00,,,40.81404,-73.9367,"(40.81404, -73.9367)",5 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4421154,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,12:04,QUEENS,11366,40.73197,-73.78651,"(40.73197, -73.78651)",184 STREET,73 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515518,Sedan,Sedan,,, +04/01/2022,1:34,BRONX,10457,40.847366,-73.899506,"(40.847366, -73.899506)",EAST TREMONT AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515694,Sedan,Sedan,,, +03/30/2022,17:26,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514917,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,17:50,BROOKLYN,11209,40.611385,-74.033005,"(40.611385, -74.033005)",,,453 101 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515427,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,9:05,MANHATTAN,10012,40.726887,-74.00095,"(40.726887, -74.00095)",,,150 THOMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515298,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/31/2022,0:00,BRONX,10462,40.83419,-73.84525,"(40.83419, -73.84525)",ZEREGA AVENUE,NEWBOLD AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4515354,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,7:45,MANHATTAN,10002,40.718567,-73.9834,"(40.718567, -73.9834)",RIDGE STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515047,Sedan,,,, +04/01/2022,0:00,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515473,Bus,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,8:55,MANHATTAN,10018,40.74946,-73.98383,"(40.74946, -73.98383)",,,384 5 AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4515570,Bus,Bike,,, +03/27/2022,11:40,BROOKLYN,11237,40.712692,-73.925735,"(40.712692, -73.925735)",GARDNER AVENUE,STAGG STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515921,Box Truck,Tractor Truck Gasoline,,, +03/30/2022,21:16,BROOKLYN,11218,40.633667,-73.978775,"(40.633667, -73.978775)",17 AVENUE,DAHILL ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514958,Sedan,,,, +03/31/2022,22:01,,,40.67341,-73.93348,"(40.67341, -73.93348)",PROSPECT PLACE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4515725,Sedan,Taxi,,, +04/01/2022,22:20,STATEN ISLAND,10305,40.59808,-74.081474,"(40.59808, -74.081474)",KERMIT AVENUE,NORWAY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515808,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,8:40,,,40.71713,-73.7986,"(40.71713, -73.7986)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515209,Sedan,Sedan,,, +03/31/2022,19:00,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515249,Sedan,Tractor Truck Gasoline,,, +03/26/2022,16:26,BROOKLYN,11213,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4515844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,7:52,BROOKLYN,11235,40.583668,-73.94843,"(40.583668, -73.94843)",EMMONS AVENUE,OCEAN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514739,Pick-up Truck,Bike,,, +03/31/2022,22:55,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,12:45,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",MERRICK BOULEVARD,FRANCIS LEWIS BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420374,Sedan,Sedan,,, +05/25/2021,16:40,QUEENS,11411,40.69424,-73.74534,"(40.69424, -73.74534)",NASHVILLE BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420496,Sedan,,,, +05/25/2021,13:15,QUEENS,11358,40.753895,-73.80661,"(40.753895, -73.80661)",,,160-12 46 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,2:41,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",CLARKSON AVENUE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4421140,Taxi,,,, +05/24/2021,23:30,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420884,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,16:30,BROOKLYN,11239,40.64404,-73.877525,"(40.64404, -73.877525)",PENNSYLVANIA AVENUE,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420858,Sedan,Sedan,Sedan,, +05/22/2021,9:50,MANHATTAN,10004,40.705914,-74.01343,"(40.705914, -74.01343)",,,1 MORRIS STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419021,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,18:18,,,40.701527,-73.98957,"(40.701527, -73.98957)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420403,Box Truck,Sedan,,, +05/25/2021,15:16,QUEENS,11418,40.696865,-73.815346,"(40.696865, -73.815346)",ATLANTIC AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4420565,Station Wagon/Sport Utility Vehicle,Bus,,, +05/25/2021,18:00,QUEENS,11373,40.73787,-73.877075,"(40.73787, -73.877075)",,,86-15 JUSTICE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420789,Bike,,,, +05/25/2021,17:00,BROOKLYN,11236,40.641502,-73.91211,"(40.641502, -73.91211)",,,8617 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4420977,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,13:25,,,40.67597,-73.933235,"(40.67597, -73.933235)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421056,Sedan,Sedan,,, +05/25/2021,6:25,BRONX,10458,40.869335,-73.88641,"(40.869335, -73.88641)",,,2889 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420091,Taxi,,,, +05/25/2021,22:30,,,40.646378,-73.97085,"(40.646378, -73.97085)",CHURCH AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4420454,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/25/2021,16:45,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4420951,Motorcycle,,,, +05/25/2021,8:50,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4420707,Sedan,Sedan,Sedan,, +05/25/2021,7:30,QUEENS,11375,,,,HORACE HARDING EXPRESSWAY,CORONA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420171,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,20:00,BROOKLYN,11238,40.674664,-73.97025,"(40.674664, -73.97025)",,,10 GRAND ARMY PLAZA,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420502,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/30/2022,19:30,BRONX,10462,40.841618,-73.86076,"(40.841618, -73.86076)",,,1950 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514964,Sedan,Motorcycle,,, +05/25/2021,4:43,BROOKLYN,11228,40.62199,-74.010216,"(40.62199, -74.010216)",,,1183 BAY RIDGE PARKWAY,1,0,1,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420586,Sedan,Taxi,Taxi,, +05/25/2021,16:50,MANHATTAN,10002,40.716965,-73.99443,"(40.716965, -73.99443)",CHRYSTIE STREET,HESTER STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4420640,Bike,,,, +05/25/2021,14:16,BROOKLYN,11226,40.634476,-73.963196,"(40.634476, -73.963196)",,,632 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420317,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,10:10,,,40.78941,-73.847984,"(40.78941, -73.847984)",9 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4420267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,12:51,QUEENS,11101,40.75401,-73.948395,"(40.75401, -73.948395)",QUEENS PLAZA SOUTH,9 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421010,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,20:55,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4421041,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,16:20,BROOKLYN,11213,40.679523,-73.93382,"(40.679523, -73.93382)",,,1670 FULTON STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421075,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/25/2021,10:40,QUEENS,11374,40.73011,-73.86509,"(40.73011, -73.86509)",SAUNDERS STREET,63 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420311,Sedan,Van,,, +05/25/2021,0:21,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",NOSTRAND AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420274,Sedan,,,, +03/31/2022,19:30,MANHATTAN,10019,40.765354,-73.9856,"(40.765354, -73.9856)",,,345 WEST 54 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515174,Sedan,Sedan,,, +05/25/2021,16:45,MANHATTAN,10011,40.7423,-74.00809,"(40.7423, -74.00809)",,,60 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420350,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,8:09,MANHATTAN,10010,40.737377,-73.9813,"(40.737377, -73.9813)",,,383B 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420211,Bus,Bus,,, +05/25/2021,22:28,MANHATTAN,10007,40.714947,-74.00969,"(40.714947, -74.00969)",WEST BROADWAY,WARREN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4420639,Sedan,Sedan,,, +05/25/2021,18:20,BRONX,10468,40.862404,-73.89799,"(40.862404, -73.89799)",EAST FORDHAM ROAD,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420437,Sedan,,,, +05/25/2021,11:00,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",UNION AVENUE,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420464,,,,, +05/25/2021,18:33,BROOKLYN,11234,40.623318,-73.93126,"(40.623318, -73.93126)",AVENUE L,EAST 46 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,9:30,,,40.749054,-73.99576,"(40.749054, -73.99576)",WEST 29 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420529,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,2:47,BRONX,10466,40.884777,-73.85877,"(40.884777, -73.85877)",EAST 222 STREET,BARNES AVENUE,,3,0,0,0,0,0,3,0,Pavement Slippery,Driver Inattention/Distraction,,,,4515325,Sedan,Sedan,,, +05/25/2021,8:10,BROOKLYN,11225,40.663483,-73.9627,"(40.663483, -73.9627)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420252,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,13:00,BROOKLYN,11210,40.626263,-73.95147,"(40.626263, -73.95147)",,,2502 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,20:34,BROOKLYN,11235,40.590294,-73.952866,"(40.590294, -73.952866)",AVENUE Y,EAST 17 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420410,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,1:00,MANHATTAN,10012,40.724205,-73.9953,"(40.724205, -73.9953)",,,273 MULBERRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421005,Sedan,,,, +05/25/2021,14:20,STATEN ISLAND,10305,40.61216,-74.06991,"(40.61216, -74.06991)",,,234 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421119,Sedan,CO,,, +05/25/2021,18:00,QUEENS,11691,40.606373,-73.760506,"(40.606373, -73.760506)",,,23-40 MOTT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420516,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,13:40,,,,,,JAMAICA AVENUE,JACKIE ROBINSON PKWY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420852,Sedan,,,, +05/25/2021,11:00,QUEENS,11104,40.74954,-73.918396,"(40.74954, -73.918396)",45 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421012,Sedan,Sedan,,, +05/25/2021,14:45,,,40.67918,-73.92736,"(40.67918, -73.92736)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420358,Sedan,Minibike,,, +05/20/2021,10:10,BROOKLYN,11238,40.68061,-73.96608,"(40.68061, -73.96608)",,,856 PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421068,Sedan,Bike,,, +05/25/2021,16:40,BROOKLYN,11223,40.598907,-73.98567,"(40.598907, -73.98567)",STILLWELL AVENUE,84 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4420386,Station Wagon/Sport Utility Vehicle,Bike,,, +05/25/2021,1:20,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4420283,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,23:02,QUEENS,11368,40.749866,-73.86273,"(40.749866, -73.86273)",NATIONAL STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4420785,Sedan,Bike,,, +05/25/2021,12:20,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",EAST TREMONT AVENUE,CLINTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420538,Sedan,,,, +05/25/2021,18:20,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4420616,Sedan,Sedan,,, +05/26/2020,15:20,,,40.65183,-74.003334,"(40.65183, -74.003334)",38 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421077,Sedan,,,, +05/25/2021,8:30,,,,,,164 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420766,Pick-up Truck,Sedan,,, +05/25/2021,16:05,QUEENS,11370,40.760822,-73.88727,"(40.760822, -73.88727)",,,30-13 81 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420899,Sedan,Sedan,,, +03/29/2022,10:00,BRONX,10454,40.805866,-73.915276,"(40.805866, -73.915276)",,,600 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515386,Sedan,Sedan,,, +05/25/2021,21:22,,,40.863705,-73.87207,"(40.863705, -73.87207)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420428,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,14:30,BROOKLYN,11207,40.666008,-73.8886,"(40.666008, -73.8886)",,,559 VAN SICLEN AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420862,Bike,,,, +05/25/2021,9:00,,,40.7024,-73.9605,"(40.7024, -73.9605)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420457,Sedan,Sedan,,, +05/25/2021,15:00,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420395,Sedan,Sedan,,, +05/25/2021,19:35,QUEENS,11691,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,HORTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420509,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,23:16,QUEENS,11434,40.671825,-73.774506,"(40.671825, -73.774506)",BREWER BOULEVARD,137 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4420986,Sedan,,,, +05/25/2021,18:45,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,13:50,BROOKLYN,11249,40.717022,-73.96527,"(40.717022, -73.96527)",KENT AVENUE,NORTH 1 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420837,Sedan,,,, +05/25/2021,10:22,BRONX,10460,,,,ROSEDALE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421023,Carry All,Sedan,,, +05/25/2021,20:50,MANHATTAN,10065,40.762142,-73.96214,"(40.762142, -73.96214)",,,329 EAST 62 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420483,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,21:30,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4420404,Sedan,Sedan,Sedan,Sedan, +05/25/2021,17:50,BRONX,10469,40.871452,-73.851776,"(40.871452, -73.851776)",,,3207 PEARSALL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4420484,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,15:55,,,,,,ALBEMARLE ROAD,WESTMINISTER ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420449,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,11:16,BROOKLYN,11208,40.67567,-73.87008,"(40.67567, -73.87008)",PITKIN AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420870,Sedan,E-Bike,,, +05/25/2021,0:35,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4420044,Taxi,Bike,,, +05/22/2021,16:15,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4420939,Sedan,,,, +05/24/2021,8:20,,,40.677353,-73.94424,"(40.677353, -73.94424)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421064,Sedan,Sedan,,, +05/25/2021,22:20,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4420381,Station Wagon/Sport Utility Vehicle,Bike,,, +05/25/2021,11:00,,,40.687008,-73.82219,"(40.687008, -73.82219)",121 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,16:55,BROOKLYN,11216,40.67625,-73.95308,"(40.67625, -73.95308)",BEDFORD AVENUE,BERGEN STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4421053,Motorcycle,Sedan,,, +04/01/2022,10:15,,,40.66922,-73.801094,"(40.66922, -73.801094)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,23:08,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420857,Sedan,Pick-up Truck,,, +05/25/2021,2:15,,,,,,LONG ISLAND EXPRESSWAY,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420094,Tractor Truck Diesel,Sedan,,, +05/25/2021,23:45,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420875,Sedan,,,, +05/25/2021,15:44,QUEENS,11358,40.75796,-73.78567,"(40.75796, -73.78567)",NORTHERN BOULEVARD,196 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4420364,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,16:40,MANHATTAN,10075,40.771076,-73.947586,"(40.771076, -73.947586)",EAST 80 STREET,EAST END AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4420450,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,15:00,QUEENS,11378,40.727634,-73.8955,"(40.727634, -73.8955)",,,55-02 69 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420952,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,16:00,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420396,Sedan,Box Truck,,, +03/31/2022,19:57,,,40.820827,-73.950836,"(40.820827, -73.950836)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515461,Sedan,,,, +05/25/2021,21:00,QUEENS,11422,40.661396,-73.741806,"(40.661396, -73.741806)",,,240-12 144 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420705,Sedan,Sedan,,, +05/25/2021,8:48,BRONX,10459,40.828236,-73.88602,"(40.828236, -73.88602)",WHITLOCK AVENUE,FREEMAN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4420831,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,14:10,QUEENS,11357,40.787247,-73.820564,"(40.787247, -73.820564)",14 AVENUE,146 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420422,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/09/2021,12:01,,,40.67034,-73.942116,"(40.67034, -73.942116)",LINCOLN PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421045,Sedan,,,, +05/25/2021,7:15,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4420917,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +05/25/2021,12:15,,,40.611404,-74.00952,"(40.611404, -74.00952)",15 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420280,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,11:40,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",EAST 57 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420312,Sedan,Bus,,, +05/25/2021,12:00,MANHATTAN,10016,40.749996,-73.98238,"(40.749996, -73.98238)",,,10 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420532,Box Truck,Sedan,,, +05/24/2021,0:24,,,40.81122,-73.90067,"(40.81122, -73.90067)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421031,Sedan,,,, +05/25/2021,18:30,QUEENS,11429,40.705982,-73.73956,"(40.705982, -73.73956)",111 ROAD,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420375,,,,, +05/25/2021,22:27,BRONX,10469,40.87191,-73.83491,"(40.87191, -73.83491)",EDSON AVENUE,ADEE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420668,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,12:05,BRONX,10475,40.869076,-73.830666,"(40.869076, -73.830666)",,,2021 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420963,Box Truck,Tow Truck / Wrecker,,, +05/25/2021,6:30,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420254,Sedan,Box Truck,,, +05/25/2021,16:11,QUEENS,11412,40.691666,-73.76239,"(40.691666, -73.76239)",FARMERS BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4420495,Sedan,Sedan,,, +05/25/2021,22:45,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4420540,Sedan,Sedan,,, +05/25/2021,8:16,,,40.70191,-73.829475,"(40.70191, -73.829475)",HILLSIDE AVENUE,121 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4420295,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,14:15,BROOKLYN,11235,40.593384,-73.94442,"(40.593384, -73.94442)",AVENUE X,EAST 26 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420409,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,16:00,BROOKLYN,11239,,,,,,360 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420853,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,22:40,QUEENS,11370,40.75719,-73.89041,"(40.75719, -73.89041)",77 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420898,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,19:28,BROOKLYN,11234,40.608864,-73.92146,"(40.608864, -73.92146)",,,2530 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420683,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,1:05,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4420370,Sedan,Sedan,,, +05/25/2021,16:00,QUEENS,11356,40.787914,-73.841965,"(40.787914, -73.841965)",126 STREET,11 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4420417,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,11:55,BROOKLYN,11212,40.657627,-73.90767,"(40.657627, -73.90767)",,,894 ROCKAWAY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515616,Sedan,Sedan,,, +05/23/2021,13:20,BROOKLYN,11203,40.637455,-73.92886,"(40.637455, -73.92886)",UTICA AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421110,Sedan,Sedan,,, +03/31/2022,9:25,,,40.734783,-73.79323,"(40.734783, -73.79323)",UTOPIA PARKWAY,67 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515201,Station Wagon/Sport Utility Vehicle,Dump,,, +05/23/2021,20:20,MANHATTAN,10040,40.856712,-73.93264,"(40.856712, -73.93264)",BROADWAY,FAIRVIEW AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4420848,Sedan,Bike,,, +04/24/2021,15:30,BROOKLYN,11216,40.671787,-73.95311,"(40.671787, -73.95311)",SAINT JOHNS PLACE,ROGERS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421069,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,22:14,,,40.69003,-73.911,"(40.69003, -73.911)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Other Vehicular,,,,4420528,Sedan,Sedan,,, +05/25/2021,6:47,BRONX,10468,40.871494,-73.88868,"(40.871494, -73.88868)",EAST 199 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420167,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/25/2021,17:11,BRONX,10470,40.904366,-73.84713,"(40.904366, -73.84713)",,,814 PENFIELD STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420662,Sedan,,,, +05/25/2021,16:49,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:33,STATEN ISLAND,10314,40.61324,-74.12045,"(40.61324, -74.12045)",VICTORY BOULEVARD,BEECHWOOD PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420553,Sedan,Sedan,,, +05/25/2021,18:30,BRONX,10453,40.84782,-73.90756,"(40.84782, -73.90756)",GRAND CONCOURSE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4420501,Sedan,,,, +05/25/2021,0:00,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420434,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,13:00,,,40.672752,-73.95432,"(40.672752, -73.95432)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421124,Sedan,Sedan,,, +05/17/2021,9:00,QUEENS,11102,40.770416,-73.92553,"(40.770416, -73.92553)",,,28-05 23 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420906,Sedan,,,, +05/25/2021,23:35,,,40.769005,-73.992355,"(40.769005, -73.992355)",WEST 55 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420460,Bike,,,, +05/19/2021,13:20,BROOKLYN,11201,40.68942,-73.99157,"(40.68942, -73.99157)",,,228 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420849,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,22:15,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,2,0,0,0,Aggressive Driving/Road Rage,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,4420385,Sedan,Bike,Bike,, +05/25/2021,19:15,QUEENS,11375,40.720066,-73.84086,"(40.720066, -73.84086)",QUEENS BOULEVARD,72 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420672,,,,, +05/25/2021,9:15,QUEENS,11373,40.744766,-73.884544,"(40.744766, -73.884544)",,,80-32 BAXTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,9:00,BRONX,10455,40.815166,-73.90641,"(40.815166, -73.90641)",,,640 WALES AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4420415,Sedan,Dump,,, +05/25/2021,17:28,BROOKLYN,11204,40.623367,-73.989494,"(40.623367, -73.989494)",17 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420583,Sedan,,,, +05/25/2021,6:55,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420474,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,11:11,BROOKLYN,11226,40.64858,-73.959564,"(40.64858, -73.959564)",,,2101 ALBEMARLE TERRACE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4420316,Taxi,,,, +05/25/2021,16:56,BROOKLYN,11212,40.666187,-73.916664,"(40.666187, -73.916664)",SUTTER AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420489,Sedan,,,, +05/25/2021,6:07,,,40.66411,-73.96034,"(40.66411, -73.96034)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420380,Sedan,,,, +03/30/2022,22:40,MANHATTAN,10011,40.74083,-74.00173,"(40.74083, -74.00173)",,,114 8 AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4515715,Sedan,Sedan,,, +05/25/2021,13:20,BROOKLYN,11207,40.651688,-73.88877,"(40.651688, -73.88877)",FLATLANDS AVENUE,ALABAMA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420861,Bus,,,, +05/25/2021,16:40,QUEENS,11354,0,0,"(0.0, 0.0)",32 AVENUE,LINDEN PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420426,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,15:00,BROOKLYN,11208,40.68178,-73.87879,"(40.68178, -73.87879)",,,3145 FULTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,0:35,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420050,Sedan,,,, +05/25/2021,7:05,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4420941,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,15:10,QUEENS,11420,40.67543,-73.81343,"(40.67543, -73.81343)",,,124-06 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420727,,,,, +05/25/2021,8:00,BRONX,10462,40.83415,-73.85226,"(40.83415, -73.85226)",,,2175 WESTCHESTER AVENUE,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4420202,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/13/2021,1:30,,,40.78809,-73.98271,"(40.78809, -73.98271)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4463496,Sedan,,,, +05/23/2021,0:11,BRONX,10459,40.81969,-73.90161,"(40.81969, -73.90161)",WESTCHESTER AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421032,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,16:35,,,40.81728,-73.938545,"(40.81728, -73.938545)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,12:24,BROOKLYN,11236,40.63038,-73.90379,"(40.63038, -73.90379)",AVENUE M,EAST 83 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420294,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,12:25,MANHATTAN,10011,40.73927,-73.99545,"(40.73927, -73.99545)",AVENUE OF THE AMERICAS,WEST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420300,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,15:00,BRONX,10472,40.834675,-73.87891,"(40.834675, -73.87891)",,,1420 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420510,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,20:00,BROOKLYN,11222,40.726803,-73.94655,"(40.726803, -73.94655)",,,50 JEWEL STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420937,Sedan,Box Truck,,, +05/25/2021,11:15,,,40.59506,-73.927605,"(40.59506, -73.927605)",GERRITSEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420320,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,21:30,,,40.75108,-73.98686,"(40.75108, -73.98686)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420533,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/25/2021,22:25,,,,,,FARMERS BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4420984,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +05/25/2021,15:30,MANHATTAN,10026,40.8066,-73.95457,"(40.8066, -73.95457)",,,318 WEST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420369,Sedan,,,, +05/25/2021,20:08,BRONX,10468,40.86247,-73.90029,"(40.86247, -73.90029)",EAST FORDHAM ROAD,WALTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420618,Bus,Convertible,,, +05/21/2021,2:37,BRONX,10459,40.82193,-73.88844,"(40.82193, -73.88844)",BRUCKNER BOULEVARD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421030,Sedan,Dump,,, +05/25/2021,8:15,BRONX,10466,40.88845,-73.841965,"(40.88845, -73.841965)",BAYCHESTER AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420233,Station Wagon/Sport Utility Vehicle,Dump,,, +05/25/2021,19:26,BRONX,10460,40.835438,-73.86412,"(40.835438, -73.86412)",LELAND AVENUE,WOOD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420511,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,9:28,,,40.88736,-73.89426,"(40.88736, -73.89426)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420604,Sedan,,,, +05/25/2021,8:30,,,40.886364,-73.84554,"(40.886364, -73.84554)",EAST 229 STREET,EAST 229 DRIVE SOUTH,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420666,Van,,,, +05/25/2021,6:30,,,,,,QUEENSBORO BRIDGE,28 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420255,Concrete Mixer,Sedan,,, +05/25/2021,10:20,,,40.579887,-73.94772,"(40.579887, -73.94772)",HAMPTON AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4420319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,0:45,BROOKLYN,11207,40.66531,-73.890305,"(40.66531, -73.890305)",LIVONIA AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4421007,Garbage or Refuse,Pick-up Truck,,, +04/27/2021,9:32,,,40.67625,-73.95308,"(40.67625, -73.95308)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421021,Sedan,Sedan,,, +05/25/2021,20:00,,,,,,,,85 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420363,Bike,Bike,,, +05/25/2021,17:03,BROOKLYN,11218,40.631126,-73.97639,"(40.631126, -73.97639)",,,4320 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420451,Sedan,Bike,,, +05/21/2021,10:15,,,40.71594,-73.94462,"(40.71594, -73.94462)",GRAHAM AVENUE,,,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4420994,Sedan,,,, +05/25/2021,15:00,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420723,Sedan,Motorbike,,, +05/24/2021,6:29,,,40.852306,-73.89811,"(40.852306, -73.89811)",EAST 180 STREET,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4420916,Sedan,,,, +05/25/2021,10:25,,,,,,SHORE PARKWAY,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:50,QUEENS,11426,40.73444,-73.72179,"(40.73444, -73.72179)",HILLSIDE AVENUE,COMMONWEALTH BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4420376,Sedan,Bike,,, +05/25/2021,7:35,QUEENS,11412,,,,114 ROAD,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420193,Sedan,Sedan,,, +05/25/2021,5:20,STATEN ISLAND,10304,40.627167,-74.07601,"(40.627167, -74.07601)",,,63 WATER STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420355,Sedan,Sedan,,, +05/20/2021,13:28,,,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4421065,Sedan,,,, +05/25/2021,9:45,QUEENS,11691,40.602997,-73.747894,"(40.602997, -73.747894)",,,13-15 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420506,Sedan,,,, +05/25/2021,12:59,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420337,Bus,Sedan,,, +05/24/2021,23:24,BROOKLYN,11208,40.681686,-73.871574,"(40.681686, -73.871574)",ATLANTIC AVENUE,CRESCENT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4420860,Sedan,Sedan,,, +05/25/2021,19:14,QUEENS,11435,40.687508,-73.80666,"(40.687508, -73.80666)",139 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420620,Sedan,Sedan,,, +05/25/2021,21:15,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420398,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,13:45,BRONX,10460,40.83969,-73.88147,"(40.83969, -73.88147)",BOSTON ROAD,LONGFELLOW AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4420531,Sedan,Sedan,,, +05/25/2021,14:13,BRONX,10466,40.884777,-73.85877,"(40.884777, -73.85877)",EAST 222 STREET,BARNES AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420661,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,10:54,BROOKLYN,11238,40.68553,-73.95656,"(40.68553, -73.95656)",GATES AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420569,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,0:01,BROOKLYN,11222,40.72017,-73.943886,"(40.72017, -73.943886)",,,504 MEEKER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420444,Sedan,Sedan,,, +05/25/2021,16:00,STATEN ISLAND,10312,40.54534,-74.160576,"(40.54534, -74.160576)",,,4343 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420799,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,18:15,BRONX,10461,40.84261,-73.82868,"(40.84261, -73.82868)",MERRY AVENUE,ZULETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420962,Pick-up Truck,Taxi,,, +05/25/2021,22:25,,,40.752888,-73.96374,"(40.752888, -73.96374)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,Obstruction/Debris,,,4420392,Sedan,Sedan,Sedan,, +05/24/2021,19:50,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4420854,Sedan,Sedan,Sedan,, +05/25/2021,6:41,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4420383,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/25/2021,5:00,BRONX,10461,40.8394,-73.83658,"(40.8394, -73.83658)",,,3044 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420095,Pick-up Truck,,,, +05/25/2021,0:00,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4420872,Sedan,Sedan,,, +05/25/2021,0:25,BROOKLYN,11238,40.671627,-73.96263,"(40.671627, -73.96263)",WASHINGTON AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421071,FIRE TRUCK,Sedan,,, +05/25/2021,14:32,,,40.589977,-73.99313,"(40.589977, -73.99313)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420313,Sedan,,,, +05/25/2021,17:28,BRONX,10452,40.843204,-73.91196,"(40.843204, -73.91196)",GRAND CONCOURSE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420418,Motorcycle,,,, +05/24/2021,9:00,QUEENS,11432,40.709316,-73.79191,"(40.709316, -73.79191)",,,169-15 89 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421049,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,2:40,QUEENS,11385,40.6947,-73.90141,"(40.6947, -73.90141)",,,1610 DECATUR STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4420955,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,13:45,BROOKLYN,11236,40.647224,-73.911766,"(40.647224, -73.911766)",EAST 92 STREET,AVENUE D,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515100,Station Wagon/Sport Utility Vehicle,Bike,,, +05/25/2021,13:48,QUEENS,11358,40.758743,-73.804214,"(40.758743, -73.804214)",162 STREET,43 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420423,Station Wagon/Sport Utility Vehicle,Bike,,, +05/24/2021,10:20,,,,,,,,82-000 SHORE FRONT PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421100,Sedan,Sedan,,, +05/25/2021,17:30,,,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420500,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:15,QUEENS,11373,40.739388,-73.87121,"(40.739388, -73.87121)",92 STREET,52 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4420774,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,17:20,BROOKLYN,11223,40.60676,-73.96373,"(40.60676, -73.96373)",KINGS HIGHWAY,EAST 9 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420408,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,15:12,,,,,,BRONX RIVER PARKWAY RAMP,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4420371,Sedan,Sedan,,, +05/24/2021,13:18,BROOKLYN,11208,40.675804,-73.869156,"(40.675804, -73.869156)",HEMLOCK STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420867,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,14:50,,,40.86795,-73.92701,"(40.86795, -73.92701)",PAYSON AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420887,Bike,,,, +05/25/2021,8:34,,,40.696205,-73.91782,"(40.696205, -73.91782)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4420523,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/01/2022,0:00,,,40.72877,-74.007095,"(40.72877, -74.007095)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4515589,Bike,Taxi,,, +05/25/2021,19:05,BRONX,10454,40.806774,-73.92332,"(40.806774, -73.92332)",,,435 EAST 135 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420432,Sedan,Sedan,,, +05/25/2021,9:15,BROOKLYN,11211,40.70786,-73.959854,"(40.70786, -73.959854)",,,255 HAVEMEYER STREET,2,0,0,0,1,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4420477,Motorcycle,Bike,,, +05/25/2021,21:30,QUEENS,11434,40.692543,-73.77553,"(40.692543, -73.77553)",LINDEN BOULEVARD,175 STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4420983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,9:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4420846,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/23/2021,22:15,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,UTICA AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4421052,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,9:10,BRONX,10459,40.824387,-73.901184,"(40.824387, -73.901184)",EAST 165 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420492,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,3:41,BRONX,10459,40.826256,-73.88881,"(40.826256, -73.88881)",WESTCHESTER AVENUE,BRYANT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4421033,Sedan,Sedan,Sedan,Sedan, +05/24/2021,11:26,BROOKLYN,11208,40.66881,-73.873436,"(40.66881, -73.873436)",,,446 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4420850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/25/2021,0:38,,,40.58552,-73.95578,"(40.58552, -73.95578)",SHORE PARKWAY,EAST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420055,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/23/2021,16:45,,,,,,FDR DRIVE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:05,BROOKLYN,11207,40.662663,-73.88729,"(40.662663, -73.88729)",,,695 VAN SICLEN AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4420868,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,18:18,,,40.61501,-73.99102,"(40.61501, -73.99102)",70 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420388,Bike,Sedan,,, +05/25/2021,23:07,,,40.69625,-73.894295,"(40.69625, -73.894295)",COOPER AVENUE,60 LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420544,Sedan,Sedan,,, +05/25/2021,11:50,,,40.716015,-74.00883,"(40.716015, -74.00883)",WEST BROADWAY,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4420309,Station Wagon/Sport Utility Vehicle,Bike,,, +05/25/2021,22:10,BRONX,10461,40.84477,-73.846565,"(40.84477, -73.846565)",,,1515 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420534,Tractor Truck Diesel,Sedan,,, +05/22/2021,10:15,QUEENS,11369,40.763256,-73.88205,"(40.763256, -73.88205)",,,25-24 87 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420902,Sedan,,,, +05/25/2021,21:00,BRONX,10455,40.810486,-73.905075,"(40.810486, -73.905075)",EAST 147 STREET,TIMPSON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420752,Sedan,,,, +05/25/2021,16:30,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",VARICK STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420441,Sedan,,,, +05/25/2021,12:15,MANHATTAN,10019,40.767296,-73.98424,"(40.767296, -73.98424)",,,347 WEST 57 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420459,Sedan,Box Truck,,, +05/25/2021,21:30,,,,,,VANWYCK EXPRESSWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Tinted Windows,Passing or Lane Usage Improper,,,,4420673,Sedan,,,, +05/25/2021,16:04,BRONX,10472,40.827297,-73.86919,"(40.827297, -73.86919)",WATSON AVENUE,NOBLE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420507,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,11:25,QUEENS,11433,40.693005,-73.789856,"(40.693005, -73.789856)",UNION HALL STREET,110 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4420333,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,0:05,BROOKLYN,11226,40.652794,-73.946884,"(40.652794, -73.946884)",LINDEN BOULEVARD,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421132,Sedan,Sedan,,, +05/25/2021,17:45,BROOKLYN,11216,40.669704,-73.94774,"(40.669704, -73.94774)",EASTERN PARKWAY,NEW YORK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4420368,Taxi,Taxi,,, +05/25/2021,13:33,BRONX,10459,40.822456,-73.88728,"(40.822456, -73.88728)",SHERIDAN EXPRESSWAY,BRUCKNER EXPRESSWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4421027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,8:14,,,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420240,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,13:48,,,40.83569,-73.86857,"(40.83569, -73.86857)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4420997,Carry All,Carry All,,, +05/25/2021,17:49,,,40.82677,-73.856155,"(40.82677, -73.856155)",BRUCKNER BOULEVARD,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420512,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,19:03,,,40.82929,-73.91642,"(40.82929, -73.91642)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4420414,Sedan,E-Bike,Bus,, +05/23/2021,15:08,BROOKLYN,11213,40.675907,-73.931946,"(40.675907, -73.931946)",,,1687 DEAN STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421122,Station Wagon/Sport Utility Vehicle,Bus,,, +05/11/2021,2:15,MANHATTAN,10019,40.762966,-73.973976,"(40.762966, -73.973976)",5 AVENUE,EAST 57 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420927,Station Wagon/Sport Utility Vehicle,Bike,,, +05/21/2021,16:30,BRONX,10473,40.824207,-73.858795,"(40.824207, -73.858795)",WHITE PLAINS ROAD,STORY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421061,Sedan,Bus,,, +05/25/2021,14:54,STATEN ISLAND,10305,40.58618,-74.08989,"(40.58618, -74.08989)",GARRETSON AVENUE,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420343,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,14:05,BROOKLYN,11232,40.649654,-74.01635,"(40.649654, -74.01635)",49 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420372,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,17:12,,,40.647526,-73.89469,"(40.647526, -73.89469)",FLATLANDS AVENUE,,,2,0,1,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420692,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,13:45,QUEENS,11435,40.692753,-73.80866,"(40.692753, -73.80866)",,,144-20 LIBERTY AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4420609,Sedan,Box Truck,,, +05/25/2021,10:09,QUEENS,11432,40.706257,-73.80034,"(40.706257, -73.80034)",,,160-11 89 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420621,Sedan,,,, +05/11/2021,22:48,,,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421133,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,8:00,,,40.8166,-73.942764,"(40.8166, -73.942764)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420218,Sedan,,,, +05/25/2021,10:00,QUEENS,11102,40.773273,-73.92512,"(40.773273, -73.92512)",21 STREET,26 ROAD,,3,0,0,0,0,0,3,0,Backing Unsafely,Unspecified,Unspecified,,,4420472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,11:30,BROOKLYN,11225,40.658512,-73.953316,"(40.658512, -73.953316)",FENIMORE STREET,ROGERS AVENUE,,4,0,0,0,0,0,4,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4420292,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,21:33,BRONX,10468,40.857418,-73.899956,"(40.857418, -73.899956)",EAST 183 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420519,Station Wagon/Sport Utility Vehicle,Bus,,, +03/30/2022,9:50,MANHATTAN,10019,40.76689,-73.99017,"(40.76689, -73.99017)",,,800 10 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514749,Box Truck,Box Truck,,, +05/25/2021,17:45,QUEENS,11004,40.745388,-73.71508,"(40.745388, -73.71508)",,,256-03 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420377,Sedan,,,, +05/25/2021,14:45,BRONX,10463,40.884144,-73.90224,"(40.884144, -73.90224)",,,3607 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420600,Van,Sedan,,, +04/10/2021,19:57,BROOKLYN,11213,40.67607,-73.93043,"(40.67607, -73.93043)",,,83 UTICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421066,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/25/2021,16:17,BROOKLYN,11217,40.681927,-73.97611,"(40.681927, -73.97611)",,,450 DEAN STREET,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,,,,,4420504,Sedan,,,, +05/25/2021,8:10,BROOKLYN,11229,40.610382,-73.950554,"(40.610382, -73.950554)",,,1636 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420318,Garbage or Refuse,Sedan,,, +05/25/2021,6:15,,,40.66626,-73.884026,"(40.66626, -73.884026)",LIVONIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420885,Sedan,,,, +05/24/2021,22:40,BROOKLYN,11207,40.680584,-73.88649,"(40.680584, -73.88649)",,,221 ARLINGTON AVENUE,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,,,,4420855,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,20:20,BRONX,10452,40.835052,-73.92615,"(40.835052, -73.92615)",WEST 166 STREET,WOODYCREST AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420419,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,15:50,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,19:00,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420713,Sedan,Tractor Truck Diesel,,, +05/25/2021,18:30,STATEN ISLAND,10306,,,,SAINT PATRICK PLACE,CENTER STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4420798,Sedan,Bike,,, +05/25/2021,13:36,BRONX,10451,40.82246,-73.91478,"(40.82246, -73.91478)",,,803 MELROSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,15:49,BROOKLYN,11216,40.676853,-73.949326,"(40.676853, -73.949326)",,,1201 DEAN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4421072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/25/2021,8:45,QUEENS,11423,40.715973,-73.77111,"(40.715973, -73.77111)",HILLSIDE AVENUE,191 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4420315,Bus,,,, +05/24/2021,12:48,,,40.67556,-73.96334,"(40.67556, -73.96334)",WASHINGTON AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421050,Station Wagon/Sport Utility Vehicle,Bike,,, +05/25/2021,0:30,BROOKLYN,11203,40.647007,-73.946266,"(40.647007, -73.946266)",NEW YORK AVENUE,TILDEN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420275,Sedan,Sedan,,, +05/25/2021,19:30,,,40.71699,-73.82402,"(40.71699, -73.82402)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420914,Sedan,Motorcycle,,, +05/25/2021,14:10,BRONX,10458,40.85796,-73.89208,"(40.85796, -73.89208)",,,452 EAST 187 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4420530,AMBULANCE,Tow Truck,,, +05/25/2021,23:04,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420644,Sedan,Sedan,,, +05/25/2021,13:30,BROOKLYN,11204,40.616707,-73.97846,"(40.616707, -73.97846)",60 STREET,BAY PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,17:29,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420445,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,8:05,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420568,Bus,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,21:40,,,40.6229,-74.14943,"(40.6229, -74.14943)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420499,Sedan,,,, +05/25/2021,0:00,QUEENS,11412,40.691994,-73.76111,"(40.691994, -73.76111)",LINDEN BOULEVARD,190 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420257,Sedan,Sedan,,, +05/25/2021,3:25,BROOKLYN,11209,40.631905,-74.03349,"(40.631905, -74.03349)",,,7603 COLONIAL ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420117,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/25/2021,17:50,BROOKLYN,11213,40.667976,-73.93399,"(40.667976, -73.93399)",SCHENECTADY AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420382,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/13/2021,16:35,MANHATTAN,10010,40.737385,-73.98373,"(40.737385, -73.98373)",,,202 EAST 21 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421017,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,10:33,MANHATTAN,10028,40.778812,-73.95609,"(40.778812, -73.95609)",EAST 85 STREET,LEXINGTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:01,BROOKLYN,11203,40.651226,-73.94096,"(40.651226, -73.94096)",CHURCH AVENUE,EAST 39 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420360,Sedan,Motorcycle,,, +05/24/2021,15:37,BROOKLYN,11208,40.68086,-73.864685,"(40.68086, -73.864685)",FORBELL STREET,MC KINLEY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4420859,Bus,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,21:48,BROOKLYN,11234,,,,Belt Parkway,Erskine Street,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420873,Sedan,Sedan,,, +05/25/2021,15:55,BRONX,10456,40.83282,-73.91825,"(40.83282, -73.91825)",MCCLELLAN STREET,CARROLL PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420739,Taxi,,,, +05/23/2021,22:26,BRONX,10465,40.82378,-73.836426,"(40.82378, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,11:34,QUEENS,11101,40.73555,-73.934784,"(40.73555, -73.934784)",BRADLEY AVENUE,GREENPOINT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420393,Sedan,,,, +05/25/2021,18:25,MANHATTAN,10002,40.713947,-73.98354,"(40.713947, -73.98354)",,,280 HENRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420775,Sedan,,,, +05/24/2021,12:00,,,40.577503,-73.95522,"(40.577503, -73.95522)",BRIGHTON 15 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421008,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,19:40,,,40.83008,-73.85377,"(40.83008, -73.85377)",OLMSTEAD AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4420514,Sedan,Sedan,Sedan,Sedan, +05/24/2021,20:20,MANHATTAN,10025,40.802437,-73.96805,"(40.802437, -73.96805)",,,2781 BROADWAY,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421034,E-Bike,,,, +05/25/2021,5:34,,,40.842514,-73.871544,"(40.842514, -73.871544)",MORRIS PARK AVENUE,,,1,1,0,0,0,0,1,1,Traffic Control Disregarded,Unspecified,,,,4420310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,11:50,STATEN ISLAND,10310,40.63573,-74.10675,"(40.63573, -74.10675)",BARD AVENUE,SOUTH SAINT AUSTINS PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420549,Sedan,Sedan,,, +05/11/2021,12:45,,,40.854687,-73.890396,"(40.854687, -73.890396)",EAST 184 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4420925,Box Truck,Sedan,,, +05/25/2021,17:00,QUEENS,11691,40.606873,-73.75954,"(40.606873, -73.75954)",,,13-78 EGGERT PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4420508,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,10:50,BRONX,10469,40.866,-73.84327,"(40.866, -73.84327)",,,2730 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4420288,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/25/2021,15:30,,,40.691544,-73.9685,"(40.691544, -73.9685)",WILLOUGHBY AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4420349,Bus,Bike,,, +05/25/2021,22:00,BRONX,10467,40.874928,-73.86498,"(40.874928, -73.86498)",MAGENTA STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4420665,Sedan,,,, +05/25/2021,15:40,,,40.90347,-73.88628,"(40.90347, -73.88628)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4420623,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,7:50,MANHATTAN,10019,40.763184,-73.97452,"(40.763184, -73.97452)",,,4 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420247,Sedan,,,, +05/23/2021,14:00,BRONX,10465,40.815098,-73.821144,"(40.815098, -73.821144)",,,224 HUNTINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420961,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,19:05,,,40.67342,-73.95017,"(40.67342, -73.95017)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421051,Bike,,,, +05/25/2021,23:15,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4420755,Sedan,Sedan,Sedan,Sedan,Sedan +05/25/2021,15:40,STATEN ISLAND,10301,40.619698,-74.10771,"(40.619698, -74.10771)",CLOVE ROAD,FAIRWAY LANE,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4421120,Sedan,Sedan,,, +05/25/2021,8:15,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4420429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,18:30,BROOKLYN,11239,40.649483,-73.880714,"(40.649483, -73.880714)",,,155 ELMIRA LOOP,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4420863,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,15:00,BROOKLYN,11208,40.6789,-73.86574,"(40.6789, -73.86574)",,,1181 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420869,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,0:03,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420063,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/23/2021,21:55,,,40.671032,-73.93927,"(40.671032, -73.93927)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421026,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,16:12,BROOKLYN,11211,40.706673,-73.95443,"(40.706673, -73.95443)",HOOPER STREET,HARRISON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420466,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/25/2021,16:40,BRONX,10457,40.838875,-73.90266,"(40.838875, -73.90266)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420493,Scooter,Bike,,, +05/25/2021,17:00,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4420948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,13:15,,,40.621994,-73.99493,"(40.621994, -73.99493)",65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420387,Tractor Truck Diesel,Sedan,,, +05/25/2021,18:30,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420680,Sedan,E-Bike,,, +05/25/2021,15:10,BRONX,10457,40.83945,-73.91209,"(40.83945, -73.91209)",EAST 171 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4420413,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/20/2021,15:00,BROOKLYN,11223,40.594257,-73.97361,"(40.594257, -73.97361)",,,2383 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421003,Sedan,,,, +05/25/2021,18:10,,,40.644753,-73.92493,"(40.644753, -73.92493)",KINGS HIGHWAY,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421135,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,18:45,MANHATTAN,10022,40.76023,-73.961525,"(40.76023, -73.961525)",1 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420482,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,8:00,,,40.800663,-73.946465,"(40.800663, -73.946465)",EAST 116 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420328,Taxi,Bus,,, +05/25/2021,8:20,,,40.825897,-73.93936,"(40.825897, -73.93936)",WEST 150 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420215,Sedan,,,, +05/25/2021,22:39,,,40.71328,-73.83311,"(40.71328, -73.83311)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4420536,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,13:30,BROOKLYN,11234,40.609974,-73.93534,"(40.609974, -73.93534)",FILLMORE AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420700,Bike,,,, +05/25/2021,18:40,,,40.792183,-73.968025,"(40.792183, -73.968025)",WEST 95 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,9:20,,,40.60485,-74.02559,"(40.60485, -74.02559)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4420366,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,17:12,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",LIBERTY AVENUE,SUTPHIN BOULEVARD,,5,0,2,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4420611,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/24/2021,6:45,QUEENS,11354,40.769283,-73.82445,"(40.769283, -73.82445)",PARSONS BOULEVARD,32 AVENUE,,0,1,0,0,0,1,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420981,Pick-up Truck,E-Bike,,, +05/25/2021,10:00,QUEENS,11422,40.67481,-73.73672,"(40.67481, -73.73672)",,,233-14 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4420405,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +05/25/2021,18:31,MANHATTAN,10013,40.71889,-74.002335,"(40.71889, -74.002335)",,,407 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420438,Sedan,,,, +05/25/2021,23:15,QUEENS,11372,40.75663,-73.875145,"(40.75663, -73.875145)",NORTHERN BOULEVARD,93 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420901,Sedan,,,, +05/24/2021,13:20,BROOKLYN,11208,40.679653,-73.88556,"(40.679653, -73.88556)",FULTON STREET,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420851,Sedan,Sedan,Sedan,, +05/23/2021,1:25,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4421097,Motorcycle,,,, +05/25/2021,12:24,BROOKLYN,11206,40.702984,-73.94586,"(40.702984, -73.94586)",LEONARD STREET,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420458,Bus,Sedan,,, +05/25/2021,14:45,QUEENS,11101,40.743645,-73.94045,"(40.743645, -73.94045)",47 AVENUE,27 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:18,MANHATTAN,10002,40.71918,-73.99029,"(40.71918, -73.99029)",ALLEN STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420776,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,17:15,STATEN ISLAND,10308,40.56094,-74.14973,"(40.56094, -74.14973)",BARLOW AVENUE,GREAVES AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420839,Sedan,Sedan,,, +05/25/2021,23:15,BROOKLYN,11207,40.656944,-73.88082,"(40.656944, -73.88082)",COZINE AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4420856,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/25/2021,11:50,BRONX,10454,40.810856,-73.92455,"(40.810856, -73.92455)",,,278 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,7:27,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421059,Bus,E-Scooter,,, +03/31/2022,19:30,QUEENS,11429,40.713985,-73.73812,"(40.713985, -73.73812)",HEMPSTEAD AVENUE,218 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/23/2022,20:50,QUEENS,11373,40.735115,-73.87524,"(40.735115, -73.87524)",,,88-01 QUEENS BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515330,,,,, +03/30/2022,12:00,QUEENS,11433,40.706947,-73.7829,"(40.706947, -73.7829)",93 AVENUE,178 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514873,Sedan,,,, +03/27/2022,22:53,QUEENS,11378,40.732655,-73.92297,"(40.732655, -73.92297)",53 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515488,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,14:00,QUEENS,11375,40.732277,-73.84927,"(40.732277, -73.84927)",64 ROAD,108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515512,Sedan,Sedan,,, +03/30/2022,16:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515003,Sedan,,,, +03/30/2022,15:40,,,40.66186,-73.9344,"(40.66186, -73.9344)",SCHENECTADY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unsafe Lane Changing,,,,4515447,Station Wagon/Sport Utility Vehicle,Van,,, +02/02/2022,7:40,BROOKLYN,11221,40.689274,-73.930466,"(40.689274, -73.930466)",,,714 QUINCY STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4515784,Bus,E-Bike,,, +04/01/2022,14:35,QUEENS,11362,40.757156,-73.73643,"(40.757156, -73.73643)",,,244-02 57 DRIVE,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4515418,Sedan,,,, +03/30/2022,21:05,QUEENS,11378,40.72462,-73.894554,"(40.72462, -73.894554)",69 STREET,58 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4515755,Taxi,Taxi,Sedan,, +03/30/2022,14:00,BROOKLYN,11221,40.695023,-73.93262,"(40.695023, -73.93262)",,,460 HART STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515851,Sedan,,,, +03/23/2022,12:00,BROOKLYN,11229,40.60899,-73.96118,"(40.60899, -73.96118)",,,1652 EAST 12 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515286,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,1:57,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515493,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,8:00,BRONX,10456,40.827557,-73.914764,"(40.827557, -73.914764)",EAST 164 STREET,TELLER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515023,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/09/2022,2:45,,,40.676243,-73.95269,"(40.676243, -73.95269)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515701,PK,Box Truck,,, +03/30/2022,12:21,,,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4515051,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,13:17,BRONX,10473,40.822933,-73.85731,"(40.822933, -73.85731)",,,1945 TURNBULL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/31/2022,6:54,,,40.82519,-73.87276,"(40.82519, -73.87276)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,13:04,BROOKLYN,11225,40.65878,-73.960526,"(40.65878, -73.960526)",FLATBUSH AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514843,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/31/2022,14:40,QUEENS,11435,40.69515,-73.80774,"(40.69515, -73.80774)",,,143-19 101 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4515965,LIMO,,,, +03/31/2022,11:56,,,40.760464,-73.826546,"(40.760464, -73.826546)",UNION STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515770,Sedan,Sedan,,, +03/24/2022,6:30,,,40.733685,-73.92396,"(40.733685, -73.92396)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4515363,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/30/2022,7:25,BRONX,10468,40.864376,-73.9021,"(40.864376, -73.9021)",,,2497 GRAND AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4514810,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,13:10,,,40.668003,-73.76346,"(40.668003, -73.76346)",181 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515225,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,20:30,BROOKLYN,11218,40.65159,-73.98112,"(40.65159, -73.98112)",MC DONALD AVENUE,VANDERBILT STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4515241,Bus,Sedan,,, +03/31/2022,18:25,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515264,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/01/2022,9:55,BRONX,10459,40.828648,-73.898445,"(40.828648, -73.898445)",,,821 EAST 168 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515547,Garbage or Refuse,Sedan,,, +03/29/2022,16:00,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4515382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,11:30,QUEENS,11354,40.764988,-73.82067,"(40.764988, -73.82067)",NORTHERN BOULEVARD,146 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514836,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +03/30/2022,5:45,,,40.769646,-73.91425,"(40.769646, -73.91425)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,8:19,,,40.68238,-73.90565,"(40.68238, -73.90565)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4515673,Sedan,Box Truck,,, +03/31/2022,15:10,BROOKLYN,11205,40.693172,-73.9711,"(40.693172, -73.9711)",,,378 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515187,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,7:46,BRONX,10452,40.830143,-73.92858,"(40.830143, -73.92858)",ANDERSON AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4515335,Bus,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:00,BROOKLYN,11236,40.64038,-73.90871,"(40.64038, -73.90871)",,,730 EAST 88 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514864,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/15/2022,1:00,STATEN ISLAND,10310,40.634075,-74.12308,"(40.634075, -74.12308)",CASTLETON AVENUE,TAYLOR STREET,,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,,,,4515800,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,0:40,QUEENS,11433,40.70618,-73.786064,"(40.70618, -73.786064)",93 AVENUE,173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514776,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,17:07,BROOKLYN,11218,40.633488,-73.97459,"(40.633488, -73.97459)",EAST 4 STREET,AVENUE F,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515553,Station Wagon/Sport Utility Vehicle,Bike,,, +03/31/2022,6:20,,,40.835968,-73.87,"(40.835968, -73.87)",ROSEDALE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,7:55,BROOKLYN,11224,40.575573,-73.99432,"(40.575573, -73.99432)",WEST 28 STREET,MERMAID AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515793,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,23:41,,,,,,,,130-57 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515974,Taxi,,,, +03/26/2022,21:45,QUEENS,11102,40.769157,-73.92626,"(40.769157, -73.92626)",,,23-16 30 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515318,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,22:34,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515454,Sedan,Sedan,,, +03/30/2022,20:16,BROOKLYN,11236,40.644707,-73.90183,"(40.644707, -73.90183)",,,1455 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514953,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,0:12,BROOKLYN,11218,40.635513,-73.98085,"(40.635513, -73.98085)",16 AVENUE,41 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515575,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,14:28,BROOKLYN,11237,40.698837,-73.91407,"(40.698837, -73.91407)",LINDEN STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515624,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,18:35,QUEENS,11385,40.704002,-73.85593,"(40.704002, -73.85593)",WOODHAVEN BOULEVARD,82 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4515759,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/01/2022,1:30,QUEENS,11432,40.71602,-73.79671,"(40.71602, -73.79671)",168 PLACE,84 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515858,Sedan,,,, +03/30/2022,18:27,,,40.730118,-73.86232,"(40.730118, -73.86232)",63 DRIVE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514974,Sedan,Bus,,, +03/30/2022,17:15,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515290,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,3:16,,,40.71958,-73.83978,"(40.71958, -73.83978)",72 DRIVE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,10:50,BROOKLYN,11207,40.67513,-73.89773,"(40.67513, -73.89773)",,,90 SHEFFIELD AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4515093,Sedan,,,, +03/23/2022,17:25,MANHATTAN,10029,40.791843,-73.94447,"(40.791843, -73.94447)",,,1931 3 AVENUE,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4515500,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,16:50,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515406,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,18:00,,,40.707573,-73.8362,"(40.707573, -73.8362)",116 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4515028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/30/2022,18:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515532,Box Truck,Dump,,, +04/01/2022,16:45,BROOKLYN,11203,40.6462,-73.93175,"(40.6462, -73.93175)",BEVERLEY ROAD,EAST 48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,19:48,QUEENS,11354,0,0,"(0.0, 0.0)",37 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Texting,Unspecified,,,,4420696,Sedan,Sedan,,, +12/27/2021,21:30,,,,,,EAST 125 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490112,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,6:47,MANHATTAN,10011,40.733974,-73.9993,"(40.733974, -73.9993)",,,414 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515081,Sedan,,,, +03/30/2022,10:57,BROOKLYN,11215,40.6758,-73.98742,"(40.6758, -73.98742)",,,338 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,10:28,BROOKLYN,11207,40.6848,-73.9138,"(40.6848, -73.9138)",BROADWAY,COVERT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515367,Sedan,Sedan,,, +03/30/2022,0:00,QUEENS,11426,40.73444,-73.72179,"(40.73444, -73.72179)",HILLSIDE AVENUE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514849,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,22:19,QUEENS,11373,40.747295,-73.87815,"(40.747295, -73.87815)",,,40-60 ELBERTSON STREET,1,0,1,0,0,0,0,0,,,,,,4514922,,,,, +04/01/2022,16:15,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515599,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,15:50,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4515220,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/31/2022,9:47,QUEENS,11103,0,0,"(0.0, 0.0)",,,24-49 47 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515935,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,12:10,BROOKLYN,11229,40.594646,-73.956566,"(40.594646, -73.956566)",EAST 14 STREET,GRAVESEND NECK ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515362,Sedan,Ambulance,,, +03/31/2022,21:29,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",EAST 174 STREET,JEROME AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4515270,Station Wagon/Sport Utility Vehicle,Bike,,, +03/31/2022,8:00,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515018,Sedan,PK,,, +03/31/2022,16:20,QUEENS,11101,40.7362,-73.9352,"(40.7362, -73.9352)",BRADLEY AVENUE,35 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515141,Sedan,Sedan,,, +03/31/2022,22:48,MANHATTAN,10065,40.763893,-73.96436,"(40.763893, -73.96436)",,,205 EAST 63 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515228,Sedan,Sedan,,, +04/01/2022,18:30,QUEENS,11413,40.678646,-73.75432,"(40.678646, -73.75432)",,,134-49 SPRINGFIELD BOULEVARD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4515394,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,17:30,,,40.698254,-73.86939,"(40.698254, -73.86939)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,Unspecified,4514874,Sedan,Sedan,Sedan,Sedan,Sedan +03/31/2022,6:30,,,,,,BRUCKNER EXPRESSWAY,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515258,Tractor Truck Diesel,,,, +03/30/2022,9:00,,,40.81915,-73.93062,"(40.81915, -73.93062)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4514904,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,5:38,BROOKLYN,11206,40.706825,-73.93501,"(40.706825, -73.93501)",,,318 BOERUM STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515192,Livestock Rack,,,, +03/30/2022,7:30,BROOKLYN,11201,40.687164,-73.99727,"(40.687164, -73.99727)",,,177 BALTIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514822,Sedan,,,, +03/31/2022,11:30,,,40.631798,-74.13224,"(40.631798, -74.13224)",,,939 POST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515124,Sedan,,,, +04/01/2022,21:19,QUEENS,11428,40.723198,-73.73358,"(40.723198, -73.73358)",222 STREET,93 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4515421,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/01/2022,23:53,QUEENS,11434,40.679974,-73.77622,"(40.679974, -73.77622)",,,167-02 BAISLEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515438,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,10:11,BRONX,10451,40.826397,-73.92116,"(40.826397, -73.92116)",EAST 161 STREET,CONCOURSE VILLAGE WEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515039,Sedan,Sedan,,, +04/01/2022,12:05,,,40.793377,-73.97086,"(40.793377, -73.97086)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4515887,Sedan,Dump,,, +03/29/2022,15:00,BROOKLYN,11211,40.71848,-73.94824,"(40.71848, -73.94824)",,,87 RICHARDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515978,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,0:00,BRONX,10461,40.854767,-73.83128,"(40.854767, -73.83128)",,,2138 CONTINENTAL AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4515062,Tow Truck / Wrecker,Sedan,,, +04/01/2022,16:18,BROOKLYN,11204,40.620304,-73.97981,"(40.620304, -73.97981)",,,2063 57 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4515580,Sedan,,,, +04/01/2022,15:45,BRONX,10455,40.815662,-73.90624,"(40.815662, -73.90624)",EAST 152 STREET,WALES AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515389,MOTOR SCOO,,,, +03/31/2022,16:40,BROOKLYN,11222,40.72482,-73.948265,"(40.72482, -73.948265)",,,46 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515265,Pick-up Truck,,,, +03/24/2022,6:45,QUEENS,11428,40.72066,-73.7472,"(40.72066, -73.7472)",213 STREET,92 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4515322,Sedan,Sedan,,, +03/28/2022,15:11,BROOKLYN,11203,40.64231,-73.93327,"(40.64231, -73.93327)",,,787 EAST 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515631,Bus,Sedan,,, +03/31/2022,3:33,QUEENS,11372,40.756172,-73.87961,"(40.756172, -73.87961)",,,88-09 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515112,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/24/2022,8:20,MANHATTAN,10026,40.80016,-73.946846,"(40.80016, -73.946846)",,,1400 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515664,Bus,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,6:30,BROOKLYN,11212,40.665257,-73.92291,"(40.665257, -73.92291)",,,6 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515181,Sedan,,,, +03/28/2022,23:40,BROOKLYN,11220,40.64316,-74.01922,"(40.64316, -74.01922)",3 AVENUE,58 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515431,Sedan,,,, +03/30/2022,0:00,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514947,Sedan,Tractor Truck Diesel,,, +03/31/2022,6:06,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4514965,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,22:39,BRONX,10468,40.862297,-73.89842,"(40.862297, -73.89842)",EAST FORDHAM ROAD,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515464,Sedan,Sedan,,, +04/01/2022,8:40,,,40.638264,-74.021095,"(40.638264, -74.021095)",4 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515294,Dump,Sedan,,, +02/10/2022,9:45,MANHATTAN,10003,40.733707,-73.9882,"(40.733707, -73.9882)",,,142 EAST 14 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515560,Box Truck,,,, +03/30/2022,15:00,BRONX,10454,40.801,-73.91371,"(40.801, -73.91371)",EAST 133 STREET,WILLOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514913,Pick-up Truck,,,, +03/31/2022,12:40,MANHATTAN,10039,40.82676,-73.937584,"(40.82676, -73.937584)",MACOMBS PLACE,WEST 152 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4515299,Sedan,Taxi,,, +04/01/2022,12:49,MANHATTAN,10003,40.736103,-73.99354,"(40.736103, -73.99354)",,,69 5 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515426,Sedan,Pick-up Truck,,, +04/01/2022,15:55,MANHATTAN,10018,40.7517,-73.986404,"(40.7517, -73.986404)",AVENUE OF THE AMERICAS,WEST 37 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515595,Taxi,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,11:56,QUEENS,11101,40.755234,-73.941246,"(40.755234, -73.941246)",21 STREET,40 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4515928,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/30/2022,16:46,,,40.65978,-73.88292,"(40.65978, -73.88292)",SCHENCK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515011,Sedan,Sedan,,, +03/26/2022,15:10,,,40.570835,-74.16983,"(40.570835, -74.16983)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515343,Sedan,Sedan,,, +03/30/2022,18:00,BROOKLYN,11230,40.63529,-73.958206,"(40.63529, -73.958206)",OCEAN AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515730,Bus,,,, +03/31/2022,23:30,,,40.717033,-73.8221,"(40.717033, -73.8221)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4515216,Sedan,,,, +03/30/2022,12:40,QUEENS,11101,40.744236,-73.92798,"(40.744236, -73.92798)",37 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514878,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/31/2022,18:00,BROOKLYN,11236,40.648335,-73.91366,"(40.648335, -73.91366)",,,789 EAST 91 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515644,Sedan,,,, +03/31/2022,10:16,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4515737,Sedan,Tow Truck / Wrecker,,, +04/01/2022,1:30,STATEN ISLAND,10304,40.62884,-74.07428,"(40.62884, -74.07428)",,,7 NAVY PIER COURT,0,0,0,0,0,0,0,0,,,,,,4515817,,,,, +03/31/2022,6:40,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515131,Sedan,,,, +04/01/2022,14:20,STATEN ISLAND,10314,40.593796,-74.135445,"(40.593796, -74.135445)",,,460 BRIELLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515399,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,12:40,BROOKLYN,11237,40.696823,-73.91487,"(40.696823, -73.91487)",GATES AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514983,Sedan,Flat Bed,,, +12/26/2021,17:00,,,,,,,,W45 10 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4490412,Sedan,,,, +03/31/2022,16:30,,,40.633343,-74.13655,"(40.633343, -74.13655)",PORT RICHMOND AVENUE,PALMER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515342,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,23:12,BROOKLYN,11223,40.609024,-73.96763,"(40.609024, -73.96763)",,,1622 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514918,Sedan,,,, +03/30/2022,18:00,BROOKLYN,11237,40.702255,-73.92008,"(40.702255, -73.92008)",IRVING AVENUE,STOCKHOLM STREET,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514984,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/29/2022,18:29,MANHATTAN,10001,40.75175,-74.007935,"(40.75175, -74.007935)",WEST 26 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4515686,Sedan,Motorcycle,,, +03/31/2022,17:00,BRONX,10473,40.822704,-73.86755,"(40.822704, -73.86755)",,,849 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515357,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,1:50,BROOKLYN,11218,40.634575,-73.97246,"(40.634575, -73.97246)",,,570 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4514959,Sedan,,,, +03/31/2022,12:52,STATEN ISLAND,10306,40.569218,-74.111015,"(40.569218, -74.111015)",,,2562 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4515169,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/14/2022,17:20,MANHATTAN,10027,40.814144,-73.95571,"(40.814144, -73.95571)",WEST 126 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515374,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +03/30/2022,6:00,,,40.77146,-73.994354,"(40.77146, -73.994354)",12 AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4514686,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,20:58,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP N/B,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515197,Sedan,Sedan,,, +03/26/2022,17:09,QUEENS,11375,40.721363,-73.84808,"(40.721363, -73.84808)",69 ROAD,AUSTIN STREET,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4515457,E-Bike,,,, +04/01/2022,7:01,,,40.69632,-73.960625,"(40.69632, -73.960625)",PARK AVENUE,,,8,0,0,0,0,0,8,0,Driver Inattention/Distraction,Failure to Keep Right,Unspecified,Unspecified,Unspecified,4515478,Bus,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +03/30/2022,6:35,QUEENS,11368,40.73868,-73.85793,"(40.73868, -73.85793)",,,57-48 XENIA STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4515253,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/30/2022,10:45,,,40.731693,-73.72301,"(40.731693, -73.72301)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514900,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,11:36,,,40.6087,-73.97404,"(40.6087, -73.97404)",DAHILL ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515106,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,15:22,MANHATTAN,10038,40.71162,-74.007225,"(40.71162, -74.007225)",,,15 PARK ROW,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4515248,Box Truck,,,, +03/30/2022,20:30,,,40.795456,-73.96564,"(40.795456, -73.96564)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515231,Sedan,,,, +03/30/2022,12:20,,,40.66555,-73.74239,"(40.66555, -73.74239)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4515146,Sedan,,,, +04/01/2022,18:15,MANHATTAN,10013,40.7247,-74.00932,"(40.7247, -74.00932)",GREENWICH STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Driver Inattention/Distraction,,,,4515398,Sedan,Sedan,,, +03/30/2022,6:15,BRONX,10462,40.839405,-73.858574,"(40.839405, -73.858574)",,,1511 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4514740,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,14:10,BROOKLYN,11231,40.68372,-74.00334,"(40.68372, -74.00334)",COLUMBIA STREET,PRESIDENT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515175,Sedan,Sedan,,, +03/30/2022,18:53,QUEENS,11104,40.74743,-73.925476,"(40.74743, -73.925476)",SKILLMAN AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514877,Sedan,,,, +03/25/2022,20:00,MANHATTAN,10002,40.710903,-73.992096,"(40.710903, -73.992096)",CHERRY STREET,PIKE SLIP,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515326,Sedan,,,, +03/30/2022,23:43,,,40.872322,-73.90659,"(40.872322, -73.90659)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4514960,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +04/01/2022,15:45,,,,,,PELHAM PARKWAY,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515462,E-Scooter,,,, +09/29/2021,11:15,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,1,0,1,0,0,0,0,0,,,,,,4463797,,,,, +04/01/2022,10:20,,,40.71143,-73.72845,"(40.71143, -73.72845)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4515385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/01/2022,12:30,MANHATTAN,10011,40.744747,-73.99717,"(40.744747, -73.99717)",,,255 WEST 23 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515716,Sedan,Sedan,,, +03/31/2022,18:28,QUEENS,11435,40.7042,-73.815254,"(40.7042, -73.815254)",HILLSIDE AVENUE,QUEENS BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515202,Station Wagon/Sport Utility Vehicle,Bike,,, +04/01/2022,15:20,,,40.69831,-73.9498,"(40.69831, -73.9498)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515480,.,Sedan,Sedan,, +04/01/2022,17:48,,,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4515687,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,16:00,QUEENS,11101,40.754807,-73.91688,"(40.754807, -73.91688)",45 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/20/2022,3:51,MANHATTAN,10030,40.81447,-73.94577,"(40.81447, -73.94577)",,,230 WEST 133 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515984,Sedan,Sedan,,, +03/30/2022,13:58,BROOKLYN,11212,40.669777,-73.910065,"(40.669777, -73.910065)",,,1712 PITKIN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514914,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,14:00,,,,,,VANDAM STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4515099,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/22/2021,10:37,,,40.830624,-73.85206,"(40.830624, -73.85206)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4489121,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,18:30,BRONX,10468,40.87004,-73.8997,"(40.87004, -73.8997)",UNIVERSITY AVENUE,WEST 195 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490561,Station Wagon/Sport Utility Vehicle,,,, +11/27/2021,21:20,MANHATTAN,10009,40.729084,-73.97828,"(40.729084, -73.97828)",,,225 AVENUE B,2,0,2,0,0,0,0,0,,,,,,4490533,Station Wagon/Sport Utility Vehicle,,,, +12/21/2021,12:35,BRONX,10469,40.87125,-73.85662,"(40.87125, -73.85662)",LURTING AVENUE,BURKE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4490496,Sedan,Sedan,,, +12/15/2021,16:38,MANHATTAN,10065,40.764614,-73.95833,"(40.764614, -73.95833)",1 AVENUE,EAST 67 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490560,Sedan,E-Scooter,,, +11/01/2021,18:18,MANHATTAN,10027,40.812134,-73.95178,"(40.812134, -73.95178)",,,349 WEST 127 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490505,Sedan,Bike,,, +12/27/2021,10:45,MANHATTAN,10009,40.72972,-73.980865,"(40.72972, -73.980865)",EAST 13 STREET,AVENUE A,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490534,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,16:03,MANHATTAN,10027,40.814167,-73.947,"(40.814167, -73.947)",,,268 WEST 132 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490506,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/19/2021,12:57,BRONX,10457,,,,EAST TREMONT AVENUE,PARK AVENUE,,0,1,0,1,0,0,0,0,Glare,,,,,4469149,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,6:15,,,40.736916,-73.85429,"(40.736916, -73.85429)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515327,Tractor Truck Diesel,Sedan,,, +03/30/2022,15:20,STATEN ISLAND,10301,40.61292,-74.099884,"(40.61292, -74.099884)",MARTHA STREET,CLOVE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515130,Sedan,Sedan,,, +05/27/2021,1:55,BROOKLYN,11207,40.657753,-73.89612,"(40.657753, -73.89612)",LINDEN BOULEVARD,WILLIAMS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4420880,Sedan,Sedan,,, +11/09/2020,21:38,BRONX,10460,40.8399,-73.87562,"(40.8399, -73.87562)",BRONX PARK AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4366097,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,17:51,BROOKLYN,11205,40.694687,-73.95521,"(40.694687, -73.95521)",MYRTLE AVENUE,SPENCER STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4428626,Sedan,Bike,Station Wagon/Sport Utility Vehicle,, +10/01/2021,13:50,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463849,Chassis Cab,,,, +04/01/2022,0:02,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4515312,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,22:03,QUEENS,11377,40.752155,-73.89995,"(40.752155, -73.89995)",34 AVENUE,62 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515489,Sedan,E-Bike,,, +03/31/2022,5:00,BROOKLYN,11222,40.73136,-73.95708,"(40.73136, -73.95708)",,,94 JAVA STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514937,Sedan,,,, +09/16/2021,19:57,,,40.71582,-73.80799,"(40.71582, -73.80799)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4458163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,14:10,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4458600,Sedan,Sedan,,, +09/24/2021,17:00,,,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4460921,Sedan,Sedan,,, +12/27/2021,19:40,BRONX,10455,40.815975,-73.91102,"(40.815975, -73.91102)",EAGLE AVENUE,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4490106,Bike,,,, +12/25/2021,1:45,,,40.59654,-73.76748,"(40.59654, -73.76748)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490401,Ambulance,Sedan,,, +12/27/2021,23:30,,,40.66968,-73.91075,"(40.66968, -73.91075)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4490232,Sedan,Sedan,,, +12/27/2021,1:35,,,40.74833,-73.896095,"(40.74833, -73.896095)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4489737,Sedan,,,, +12/27/2021,12:15,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490181,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,9:00,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,2:20,QUEENS,11433,40.69248,-73.785034,"(40.69248, -73.785034)",MATHIAS AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490297,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,8:50,,,40.673965,-73.99998,"(40.673965, -73.99998)",HAMILTON AVENUE,CENTRE STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4489924,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/27/2021,23:00,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4490310,Sedan,Sedan,,, +12/27/2021,0:09,QUEENS,11416,40.684204,-73.85858,"(40.684204, -73.85858)",ROCKAWAY BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4489954,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,17:49,BROOKLYN,11226,40.6419,-73.95946,"(40.6419, -73.95946)",,,855 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/20/2021,5:54,BRONX,10463,40.882465,-73.915794,"(40.882465, -73.915794)",HENRY HUDSON PARKWAY,WEST 230 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490408,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,17:00,QUEENS,11693,40.586353,-73.815674,"(40.586353, -73.815674)",,,92-09 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490425,Sedan,Sedan,,, +12/27/2021,0:32,BROOKLYN,11210,40.622665,-73.95478,"(40.622665, -73.95478)",,,1252 EAST 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490467,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/25/2021,3:30,BROOKLYN,11219,40.62368,-73.99772,"(40.62368, -73.99772)",65 STREET,NEW UTRECHT AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490490,Sedan,E-Bike,,, +12/27/2021,21:30,QUEENS,11421,40.69142,-73.866516,"(40.69142, -73.866516)",75 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4490059,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/27/2021,2:09,,,,,,VICTORY BOULEVARD,,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4490018,Sedan,,,, +12/27/2021,17:55,QUEENS,11427,40.729034,-73.74387,"(40.729034, -73.74387)",89 AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4490048,Convertible,,,, +12/27/2021,13:47,BRONX,10469,40.861115,-73.85491,"(40.861115, -73.85491)",WARING AVENUE,YATES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4490026,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/27/2021,22:35,,,40.66618,-73.74059,"(40.66618, -73.74059)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490076,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,10:45,QUEENS,11422,40.661705,-73.73456,"(40.661705, -73.73456)",,,249-03 MEMPHIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4489985,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,8:20,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490483,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,14:53,BRONX,10467,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,PARKSIDE PLACE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4490269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,15:37,BROOKLYN,11220,40.637356,-74.03127,"(40.637356, -74.03127)",BAY RIDGE AVENUE,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490335,Sedan,E-Scooter,,, +10/01/2021,15:05,QUEENS,11101,40.746338,-73.95291,"(40.746338, -73.95291)",,,46-18 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463055,,,,, +09/27/2021,8:21,,,40.678165,-73.962234,"(40.678165, -73.962234)",BERGEN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463478,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,18:35,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462300,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,13:20,,,40.656616,-73.89027,"(40.656616, -73.89027)",STANLEY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463786,van,van,,, +10/01/2021,21:40,BRONX,10452,40.835037,-73.928185,"(40.835037, -73.928185)",,,1080 OGDEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463328,Sedan,AMBULANCE,,, +10/01/2021,13:30,STATEN ISLAND,10306,40.55968,-74.1066,"(40.55968, -74.1066)",HETT AVENUE,NAVESINK PLACE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4463039,Van,,,, +12/22/2021,10:00,QUEENS,11375,40.72083,-73.855316,"(40.72083, -73.855316)",,,71-76 YELLOWSTONE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490432,Station Wagon/Sport Utility Vehicle,Carry All,,, +09/29/2021,17:05,,,40.707893,-73.84889,"(40.707893, -73.84889)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4462411,Box Truck,,,, +09/28/2021,13:00,,,40.685112,-73.94717,"(40.685112, -73.94717)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463230,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,16:30,QUEENS,11421,40.69242,-73.85151,"(40.69242, -73.85151)",WOODHAVEN BOULEVARD,88 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462354,Sedan,Sedan,,, +09/30/2021,9:50,,,40.8594,-73.87257,"(40.8594, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4462889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,7:42,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462749,Bus,,,, +10/01/2021,0:20,BROOKLYN,11210,40.61415,-73.94817,"(40.61415, -73.94817)",,,2607 AVENUE O,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463406,Dump,Sedan,,, +10/01/2021,21:43,BRONX,10469,40.87617,-73.84904,"(40.87617, -73.84904)",BOSTON ROAD,SEYMOUR AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4463502,Sedan,Sedan,,, +09/30/2021,21:19,MANHATTAN,10017,40.750694,-73.971565,"(40.750694, -73.971565)",,,810 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,10:00,STATEN ISLAND,10306,40.56572,-74.129425,"(40.56572, -74.129425)",AMBOY ROAD,CEDARVIEW AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463038,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,16:00,BROOKLYN,11208,40.670074,-73.86581,"(40.670074, -73.86581)",,,765 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4463781,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/29/2021,22:00,,,40.71603,-73.81637,"(40.71603, -73.81637)",MAIN STREET,141 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462619,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,9:30,MANHATTAN,10002,40.72402,-73.992256,"(40.72402, -73.992256)",,,95 EAST HOUSTON STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4463479,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/28/2021,6:10,MANHATTAN,10065,40.76591,-73.96341,"(40.76591, -73.96341)",EAST 66 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462928,Sedan,,,, +09/30/2021,22:15,BROOKLYN,11211,40.71791,-73.95341,"(40.71791, -73.95341)",NORTH 10 STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463875,Sedan,Motorcycle,,, +10/01/2021,5:45,BRONX,10474,40.811512,-73.89053,"(40.811512, -73.89053)",RANDALL AVENUE,TIFFANY STREET,,1,0,0,0,1,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4463615,Bike,,,, +10/01/2021,7:20,,,40.841274,-73.91762,"(40.841274, -73.91762)",JEROME AVENUE,MACOMBS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462878,Carry All,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,8:25,,,,,,PELHAM PARKWAY,BOSTON ROAD,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4462588,BOX TRUCK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/01/2021,18:29,,,40.83472,-73.93517,"(40.83472, -73.93517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4463555,PK,Sedan,,, +09/04/2021,1:40,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454051,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,17:15,BROOKLYN,11207,40.6762804,-73.8921621,"(40.6762804, -73.8921621)",ATLANTIC AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463766,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,17:37,QUEENS,11373,40.734234,-73.86881,"(40.734234, -73.86881)",,,92-10 59 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463266,Sedan,Sedan,,, +08/14/2021,0:00,BRONX,10463,40.874435,-73.91006,"(40.874435, -73.91006)",,,5193 BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4462965,,,,, +09/08/2021,8:00,BRONX,10471,40.90799,-73.90381,"(40.90799, -73.90381)",,,5977 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463085,Sedan,,,, +09/29/2021,14:34,,,40.63367,-74.12945,"(40.63367, -74.12945)",JEWETT AVENUE,,,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4462329,E-Bike,,,, +09/30/2021,23:25,QUEENS,11412,40.703835,-73.757416,"(40.703835, -73.757416)",199 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4462891,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,19:00,QUEENS,11355,40.746887,-73.8347,"(40.746887, -73.8347)",COLLEGE POINT BOULEVARD,57 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462756,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,16:59,,,40.67897,-73.75985,"(40.67897, -73.75985)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463653,Sedan,Sedan,,, +09/30/2021,1:31,BRONX,10456,40.821712,-73.90646,"(40.821712, -73.90646)",TRINITY AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4462462,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/26/2021,15:33,MANHATTAN,10014,40.734245,-74.00756,"(40.734245, -74.00756)",,,129 CHARLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462933,Sedan,Sedan,,, +10/01/2021,0:00,QUEENS,11370,40.759132,-73.88697,"(40.759132, -73.88697)",81 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462992,Sedan,Dump,,, +09/30/2021,16:40,,,40.75052,-73.940636,"(40.75052, -73.940636)",QUEENS PLAZA SOUTH,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463232,Station Wagon/Sport Utility Vehicle,Moped,,, +09/30/2021,18:46,BROOKLYN,11207,40.675232,-73.88723,"(40.675232, -73.88723)",,,271 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463733,Sedan,,,, +09/29/2021,10:35,,,,,,BRUCKNER BOULEVARD,WILLIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462371,Box Truck,Sedan,,, +10/01/2021,7:30,,,,,,GRAND STREET,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463106,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,23:00,,,40.78468,-73.80911,"(40.78468, -73.80911)",CLINTONVILLE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463174,Pick-up Truck,,,, +09/29/2021,22:16,QUEENS,11362,40.76317,-73.743195,"(40.76317, -73.743195)",,,46-49 DOUGLASTON PARKWAY,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4462564,Sedan,,,, +09/30/2021,14:20,QUEENS,11365,40.73561,-73.79023,"(40.73561, -73.79023)",67 AVENUE,182 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4462655,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,0:22,BROOKLYN,11230,40.622723,-73.96163,"(40.622723, -73.96163)",,,1417 AVENUE K,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4463840,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,20:42,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463714,Sedan,Sedan,Sedan,, +09/29/2021,14:20,QUEENS,11422,40.663967,-73.740105,"(40.663967, -73.740105)",,,240-11 142 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462701,Sedan,,,, +09/24/2021,12:08,,,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463186,Sedan,Sedan,,, +10/01/2021,16:40,MANHATTAN,10004,40.704758,-74.01497,"(40.704758, -74.01497)",BATTERY PLACE,GREENWICH STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463847,Sedan,Bus,,, +09/29/2021,5:45,QUEENS,11420,40.673874,-73.819855,"(40.673874, -73.819855)",,,130-50 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462075,Sedan,Sedan,,, +09/29/2021,19:00,,,40.57526,-73.968895,"(40.57526, -73.968895)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4463445,Taxi,Taxi,Sedan,, +10/01/2021,9:07,,,40.79913,-73.96667,"(40.79913, -73.96667)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462859,,,,, +09/29/2021,21:10,MANHATTAN,10028,40.779495,-73.95559,"(40.779495, -73.95559)",EAST 86 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462381,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,15:48,QUEENS,11367,40.72725,-73.81085,"(40.72725, -73.81085)",,,156-11 AGUILAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462617,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,0:00,,,40.636024,-74.13477,"(40.636024, -74.13477)",PORT RICHMOND AVENUE,CASTLETON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462789,Sedan,,,, +09/03/2021,19:24,,,40.674904,-73.94447,"(40.674904, -73.94447)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463456,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,6:12,,,40.671787,-73.90544,"(40.671787, -73.90544)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,11:27,BRONX,10463,,,,,,3611 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463072,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,18:10,MANHATTAN,10026,40.803623,-73.94747,"(40.803623, -73.94747)",,,85 WEST 119 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4462921,Sedan,Sedan,,, +10/01/2021,17:01,,,40.624813,-73.89446,"(40.624813, -73.89446)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463024,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,0:00,BROOKLYN,11211,40.712162,-73.95907,"(40.712162, -73.95907)",ROEBLING STREET,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4462645,Pick-up Truck,,,, +10/01/2021,9:00,QUEENS,11378,40.729885,-73.8915,"(40.729885, -73.8915)",,,53-46 72 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463098,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,14:10,QUEENS,11101,40.73687,-73.928505,"(40.73687, -73.928505)",HUNTERS POINT AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,18:46,BROOKLYN,11237,40.70933,-73.92249,"(40.70933, -73.92249)",SCOTT AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463007,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,22:24,,,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,,,,,,4463430,,,,, +09/29/2021,8:00,MANHATTAN,10009,40.72335,-73.97525,"(40.72335, -73.97525)",,,390 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:30,,,40.720238,-73.94441,"(40.720238, -73.94441)",MEEKER AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463854,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,7:00,MANHATTAN,10025,40.799896,-73.96656,"(40.799896, -73.96656)",,,150 WEST 105 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462795,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:15,MANHATTAN,10002,40.71431,-73.987175,"(40.71431, -73.987175)",EAST BROADWAY,CLINTON STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4462794,Moped,,,, +09/29/2021,8:25,,,,,,EAST 14 STREET,EMMONS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,8:05,QUEENS,11377,40.73725,-73.91799,"(40.73725, -73.91799)",50 AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4462943,Sedan,Sedan,,, +08/31/2021,22:49,BRONX,10463,40.88559,-73.91498,"(40.88559, -73.91498)",,,3223 INDEPENDENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462960,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,13:30,BROOKLYN,11211,40.714687,-73.94271,"(40.714687, -73.94271)",HUMBOLDT STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462417,Sedan,Box Truck,,, +12/27/2021,9:00,BROOKLYN,11211,40.717884,-73.94114,"(40.717884, -73.94114)",,,128 WOODPOINT ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490009,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,8:47,MANHATTAN,10026,,,,ST NICHOLAS AVENUE,WEST 115 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4463311,Taxi,MOPED,,, +10/01/2021,8:10,MANHATTAN,10016,40.748985,-73.979965,"(40.748985, -73.979965)",EAST 37 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462882,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/23/2021,23:04,MANHATTAN,10001,40.746174,-73.9947,"(40.746174, -73.9947)",,,200 WEST 26 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463341,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/01/2021,21:30,,,40.64891,-73.89256,"(40.64891, -73.89256)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463123,Sedan,,,, +10/01/2021,7:53,BRONX,10454,40.807903,-73.92005,"(40.807903, -73.92005)",EAST 138 STREET,BROWN PLACE,,3,0,2,0,1,0,0,0,Driver Inattention/Distraction,,,,,4463198,E-Bike,,,, +09/28/2021,8:00,BROOKLYN,11206,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,VERNON AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4463508,Sedan,,,, +10/01/2021,20:20,,,,,,GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463564,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,22:17,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463831,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,14:45,,,40.680923,-73.83544,"(40.680923, -73.83544)",105 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462739,Sedan,,,, +09/23/2021,13:05,,,40.736053,-73.911385,"(40.736053, -73.911385)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462948,Sedan,Sedan,,, +05/27/2021,2:47,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421078,Sedan,,,, +09/29/2021,23:11,MANHATTAN,10029,40.79423,-73.94695,"(40.79423, -73.94695)",EAST 108 STREET,PARK AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4462438,Sedan,E-Bike,,, +09/26/2021,20:19,MANHATTAN,10024,40.784973,-73.98264,"(40.784973, -73.98264)",WEST 79 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463533,Sedan,Sedan,,, +09/08/2021,21:15,,,,,,WEST 254 STREET,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463090,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:40,BROOKLYN,11218,40.633766,-73.977715,"(40.633766, -73.977715)",,,841 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463374,Station Wagon/Sport Utility Vehicle,Van,,, +09/29/2021,13:48,MANHATTAN,10039,40.82598,-73.93591,"(40.82598, -73.93591)",7 AVENUE,WEST 152 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4462470,Station Wagon/Sport Utility Vehicle,Bike,,, +10/01/2021,12:20,BRONX,10470,40.897854,-73.8647,"(40.897854, -73.8647)",,,370 EAST 235 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463908,Sedan,,,, +09/17/2021,23:17,,,40.708057,-73.92255,"(40.708057, -73.92255)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,17:15,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,BUFFALO AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463486,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,7:00,MANHATTAN,10009,40.724083,-73.97887,"(40.724083, -73.97887)",EAST 7 STREET,AVENUE C,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462491,Sedan,Garbage or Refuse,,, +09/29/2021,8:35,BROOKLYN,11207,40.67674,-73.88969,"(40.67674, -73.88969)",,,2835 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4463729,Pick-up Truck,Pick-up Truck,,, +09/29/2021,12:45,QUEENS,11361,40.755623,-73.778275,"(40.755623, -73.778275)",46 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462228,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,15:43,BROOKLYN,11217,40.68178,-73.97415,"(40.68178, -73.97415)",,,38 6 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4463280,Sedan,Pick-up Truck,,, +10/01/2021,14:43,BRONX,10471,40.891685,-73.9056,"(40.891685, -73.9056)",,,4441 FIELDSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4463143,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,17:20,,,40.619156,-73.99388,"(40.619156, -73.99388)",17 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463395,Sedan,,,, +09/29/2021,8:05,,,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,VANDERVORT AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4462827,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,7:56,BROOKLYN,11203,40.662617,-73.93365,"(40.662617, -73.93365)",,,870 EAST NEW YORK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4462203,Sedan,,,, +09/30/2021,22:05,,,40.68378,-73.789734,"(40.68378, -73.789734)",116 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463649,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/21/2021,9:59,MANHATTAN,10002,40.713757,-73.993706,"(40.713757, -73.993706)",,,89 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463465,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,16:09,BROOKLYN,11208,40.67452,-73.878044,"(40.67452, -73.878044)",MONTAUK AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463802,Sedan,,,, +09/30/2021,10:30,,,40.854687,-73.890396,"(40.854687, -73.890396)",EAST 184 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Turning Improperly,,,,4462672,Sedan,Sedan,,, +09/30/2021,20:49,QUEENS,11367,40.73077,-73.82619,"(40.73077, -73.82619)",69 AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462693,Sedan,,,, +09/30/2021,12:30,BROOKLYN,11231,40.681725,-73.996216,"(40.681725, -73.996216)",PRESIDENT STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462715,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:05,STATEN ISLAND,10304,40.600136,-74.113014,"(40.600136, -74.113014)",TODT HILL ROAD,WHITWELL PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462975,Sedan,Station Wagon/Sport Utility Vehicle,Convertible,, +09/27/2021,22:45,MANHATTAN,10019,40.761093,-73.98327,"(40.761093, -73.98327)",WEST 50 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462846,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,11:30,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",BRONX RIVER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462219,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,10:30,QUEENS,11372,40.750153,-73.8768,"(40.750153, -73.8768)",,,37-05 90 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462204,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,14:00,BROOKLYN,11201,40.687542,-73.99046,"(40.687542, -73.99046)",,,69 DEAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463063,Motorbike,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,20:30,,,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4462629,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,23:50,MANHATTAN,10002,40.71448,-73.99137,"(40.71448, -73.99137)",,,144 DIVISION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462799,Convertible,Box Truck,,, +09/29/2021,3:00,,,40.75087,-73.74939,"(40.75087, -73.74939)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462268,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/01/2021,11:00,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463818,Sedan,,,, +10/01/2021,11:20,,,40.767498,-73.83302,"(40.767498, -73.83302)",FARRINGTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463166,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,11:39,BROOKLYN,11234,40.633377,-73.920074,"(40.633377, -73.920074)",,,5721 AVENUE H,0,0,0,0,0,0,0,0,Unspecified,,,,,4462980,Van,,,, +12/27/2021,5:50,BROOKLYN,11211,40.707485,-73.96186,"(40.707485, -73.96186)",,,2 LEE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490064,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,11:42,BROOKLYN,11234,40.6229,-73.91762,"(40.6229, -73.91762)",,,2265 RALPH AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4463159,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,16:04,MANHATTAN,10003,40.73035,-73.983284,"(40.73035, -73.983284)",,,209 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,6:48,QUEENS,11423,40.710938,-73.76654,"(40.710938, -73.76654)",193 STREET,WOODHULL AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462782,Sedan,Sedan,,, +12/27/2021,12:40,BROOKLYN,11217,40.68085,-73.97746,"(40.68085, -73.97746)",5 AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4490195,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,9:20,QUEENS,11368,40.73631,-73.85766,"(40.73631, -73.85766)",,,99-45 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462366,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,16:50,,,40.733177,-73.74571,"(40.733177, -73.74571)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,19:42,BROOKLYN,11226,40.648792,-73.95228,"(40.648792, -73.95228)",ROGERS AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463029,Sedan,Sedan,,, +10/01/2021,15:55,,,40.753113,-73.93371,"(40.753113, -73.93371)",30 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4463389,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,12:18,BRONX,10466,40.89757,-73.84112,"(40.89757, -73.84112)",,,2115 PITMAN AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4463514,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +10/01/2021,11:00,,,,,,JEROME AVENUE,1,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,,,,4463131,Motorscooter,Sedan,,, +10/01/2021,16:50,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",BRUCKNER BOULEVARD,EAST 141 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463202,Garbage or Refuse,Sedan,,, +10/01/2021,18:45,MANHATTAN,10003,40.733456,-73.9855,"(40.733456, -73.9855)",,,210 EAST 15 STREET,1,0,0,0,0,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4463320,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/29/2021,15:35,MANHATTAN,10022,40.762226,-73.96819,"(40.762226, -73.96819)",EAST 59 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462388,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,8:30,QUEENS,11373,40.735634,-73.87602,"(40.735634, -73.87602)",QUEENS BOULEVARD,55 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462743,Bus,Sedan,Box Truck,, +10/01/2021,13:10,,,40.692547,-73.990974,"(40.692547, -73.990974)",COURT STREET,,,1,0,0,0,1,0,0,0,Outside Car Distraction,Unspecified,,,,4463541,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,15:00,BROOKLYN,11229,40.605286,-73.94085,"(40.605286, -73.94085)",AVENUE S,BROWN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462762,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,4:00,QUEENS,11369,40.770226,-73.87062,"(40.770226, -73.87062)",,,100-15 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4462518,Sedan,Sedan,Sedan,, +09/16/2021,21:30,BRONX,10465,40.83765,-73.82389,"(40.83765, -73.82389)",,,1224 FAIRFAX AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,8:55,BROOKLYN,11206,40.695362,-73.9405,"(40.695362, -73.9405)",,,103A MARCUS GARVEY BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463573,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,22:13,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",MAJOR DEEGAN EXPRESSWAY,WEST 230 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4462952,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Pick-up Truck, +08/27/2021,17:27,BROOKLYN,11224,40.576042,-73.99008,"(40.576042, -73.99008)",MERMAID AVENUE,WEST 23 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4462870,PICKUP,,,, +09/29/2021,7:10,BROOKLYN,11208,40.66696,-73.87533,"(40.66696, -73.87533)",HEGEMAN AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462445,Sedan,Pick-up Truck,,, +09/30/2021,16:42,MANHATTAN,10001,40.745396,-73.99472,"(40.745396, -73.99472)",,,252 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463344,Bus,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,16:28,MANHATTAN,10024,40.783844,-73.979996,"(40.783844, -73.979996)",WEST 79 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463492,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,12:15,,,,,,FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462969,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,22:35,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463048,Sedan,Sedan,,, +10/01/2021,16:28,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463418,Sedan,Sedan,,, +09/25/2021,21:45,BRONX,10454,0,0,"(0.0, 0.0)",,,280 EAST 134 STREET,0,0,0,0,0,0,0,0,Vehicle Vandalism,Vehicle Vandalism,,,,4463882,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,8:45,,,40.585335,-73.98749,"(40.585335, -73.98749)",CROPSEY AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4462502,Bus,Sedan,,, +09/29/2021,9:35,BRONX,10458,40.853462,-73.88939,"(40.853462, -73.88939)",ARTHUR AVENUE,CRESCENT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462189,Sedan,,,, +09/30/2021,10:00,,,40.852383,-73.90365,"(40.852383, -73.90365)",GRAND CONCOURSE,,,1,0,0,0,0,0,0,0,Passing Too Closely,Failure to Keep Right,,,,4462831,Sedan,E-Scooter,,, +10/01/2021,16:25,STATEN ISLAND,10304,40.607464,-74.085144,"(40.607464, -74.085144)",NARROWS ROAD NORTH,NECKAR AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463441,Sedan,Sedan,,, +09/29/2021,12:50,,,40.795456,-73.96564,"(40.795456, -73.96564)",WEST 100 STREET,,,2,0,1,0,1,0,0,0,Unspecified,,,,,4462243,Bike,,,, +12/22/2021,12:00,QUEENS,11368,40.751793,-73.86996,"(40.751793, -73.86996)",37 AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490424,Sedan,E-Bike,,, +09/29/2021,8:00,BROOKLYN,11212,40.65794,-73.907745,"(40.65794, -73.907745)",ROCKAWAY AVENUE,LOTT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462341,Sedan,,,, +10/01/2021,9:10,QUEENS,11364,40.735405,-73.74867,"(40.735405, -73.74867)",UNION TURNPIKE,222 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463016,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,21:00,BROOKLYN,11208,40.67012,-73.8583,"(40.67012, -73.8583)",,,2857 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4463748,Sedan,,,, +09/30/2021,0:00,,,40.73796,-73.93588,"(40.73796, -73.93588)",BORDEN AVENUE,31 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462665,Motorcycle,Sedan,,, +09/16/2021,9:00,QUEENS,11375,40.72032,-73.84054,"(40.72032, -73.84054)",72 ROAD,110 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463250,Sedan,,,, +09/20/2021,15:00,MANHATTAN,10013,40.71755,-73.99932,"(40.71755, -73.99932)",CANAL STREET,BAXTER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463460,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,9:00,BROOKLYN,11222,40.73038,-73.94657,"(40.73038, -73.94657)",,,335 CALYER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462826,Sedan,,,, +09/29/2021,14:05,,,40.601265,-74.19402,"(40.601265, -74.19402)",,,1900 SOUTH AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462436,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,22:03,BROOKLYN,11204,40.61234,-73.98809,"(40.61234, -73.98809)",,,2063 71 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/30/2021,16:05,QUEENS,11361,40.758465,-73.77648,"(40.758465, -73.77648)",NORTHERN BOULEVARD,207 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,20:45,QUEENS,11373,40.745564,-73.87076,"(40.745564, -73.87076)",,,94-24 42 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462858,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/29/2021,11:37,,,40.606346,-73.95273,"(40.606346, -73.95273)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462278,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/30/2021,16:24,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462711,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,13:50,BROOKLYN,11238,40.683723,-73.96797,"(40.683723, -73.96797)",VANDERBILT AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462311,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,17:00,BROOKLYN,11249,40.7094,-73.96703,"(40.7094, -73.96703)",,,441 WYTHE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4462635,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +09/29/2021,8:40,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,101 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4462210,Sedan,Sedan,,, +09/30/2021,11:30,BROOKLYN,11215,40.673397,-73.98279,"(40.673397, -73.98279)",2 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462563,Carry All,Sedan,,, +09/28/2021,17:00,MANHATTAN,10037,40.80918,-73.93605,"(40.80918, -73.93605)",,,1948 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462885,Station Wagon/Sport Utility Vehicle,,,, +01/03/2021,13:00,QUEENS,11370,0,0,"(0.0, 0.0)",,,83-00 23 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463526,Tractor Truck Diesel,,,, +09/30/2021,11:30,MANHATTAN,10038,40.71174,-74.006996,"(40.71174, -74.006996)",BEEKMAN STREET,PARK ROW,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462902,,,,, +09/29/2021,13:04,BRONX,10467,40.865715,-73.86735,"(40.865715, -73.86735)",,,2714 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462455,Sedan,Sedan,,, +09/22/2021,13:30,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463213,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:27,MANHATTAN,10065,40.763363,-73.95925,"(40.763363, -73.95925)",1 AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462478,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,17:47,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",SPRINGFIELD BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463001,Sedan,,,, +09/29/2021,17:20,,,40.824924,-73.86985,"(40.824924, -73.86985)",BRUCKNER BOULEVARD,SOUND VIEW AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4462853,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,7:10,,,40.6765,-73.88234,"(40.6765, -73.88234)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463796,Sedan,,,, +09/30/2021,0:19,BROOKLYN,11212,40.65794,-73.907745,"(40.65794, -73.907745)",ROCKAWAY AVENUE,LOTT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4462716,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,17:35,,,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462786,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,8:25,BROOKLYN,11236,40.65102,-73.914024,"(40.65102, -73.914024)",,,9301 AVENUE B,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463033,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,13:45,BROOKLYN,11238,40.67766,-73.968864,"(40.67766, -73.968864)",PROSPECT PLACE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462555,Sedan,Tanker,,, +10/01/2021,21:13,QUEENS,11413,40.676693,-73.74221,"(40.676693, -73.74221)",228 STREET,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463057,Sedan,,,, +09/30/2021,10:14,BROOKLYN,11213,40.66719,-73.93129,"(40.66719, -73.93129)",,,318 UTICA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462624,Bus,Box Truck,,, +09/30/2021,8:30,,,0,0,"(0.0, 0.0)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462895,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,16:37,,,,,,AMSTERDAM AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Unsafe Speed,,,4463380,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/29/2021,12:38,QUEENS,11101,40.748108,-73.947365,"(40.748108, -73.947365)",21 STREET,44 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462362,Flat Rack,Sedan,,, +09/29/2021,15:40,QUEENS,11432,40.71001,-73.79474,"(40.71001, -73.79474)",168 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462603,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,15:22,MANHATTAN,10005,40.70734,-74.00865,"(40.70734, -74.00865)",WILLIAM STREET,CEDAR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462382,Sedan,Sedan,,, +09/16/2021,23:00,,,40.607212,-74.07682,"(40.607212, -74.07682)",HYLAN BOULEVARD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463548,Sedan,,,, +10/01/2021,21:00,QUEENS,11414,40.659172,-73.839874,"(40.659172, -73.839874)",CROSS BAY BOULEVARD,159 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463755,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,14:30,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462751,Sedan,Sedan,,, +09/29/2021,14:45,,,40.72417,-74.004585,"(40.72417, -74.004585)",BROOME STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462984,Sedan,Sedan,,, +09/17/2021,22:00,BRONX,10456,40.83639,-73.91588,"(40.83639, -73.91588)",EAST 169 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463325,E-Bike,,,, +09/30/2021,21:00,QUEENS,11356,40.77861,-73.836365,"(40.77861, -73.836365)",LINDEN PLACE,23 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,,,,,4462757,Sedan,,,, +09/27/2021,16:02,BROOKLYN,11203,40.65739,-73.945595,"(40.65739, -73.945595)",,,444 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463627,Sedan,Sedan,,, +09/30/2021,22:30,BROOKLYN,11208,40.67513,-73.88291,"(40.67513, -73.88291)",LINWOOD STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463809,Sedan,Sedan,,, +10/01/2021,8:45,,,40.72857,-73.991135,"(40.72857, -73.991135)",COOPER SQUARE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4463350,Moped,,,, +09/30/2021,16:17,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462890,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,11:00,QUEENS,11361,,,,,,213-37 39avenue,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4463012,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:00,QUEENS,11433,40.704872,-73.79443,"(40.704872, -73.79443)",,,92-23 165 STREET,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4463675,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/01/2021,23:54,,,40.82311,-73.88076,"(40.82311, -73.88076)",BRUCKNER EXPRESSWAY,COLGATE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463241,Sedan,Sedan,,, +09/29/2021,0:00,MANHATTAN,10017,40.757286,-73.97812,"(40.757286, -73.97812)",EAST 48 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4462428,Taxi,,,, +09/30/2021,10:45,MANHATTAN,10019,40.764297,-73.98835,"(40.764297, -73.98835)",,,766 9 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4462807,Sedan,Box Truck,,, +10/01/2021,12:00,QUEENS,11366,40.724262,-73.800545,"(40.724262, -73.800545)",,,77-33 168 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463110,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,11:05,,,40.686497,-73.94164,"(40.686497, -73.94164)",THROOP AVENUE,,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4462660,Sedan,Sedan,,, +09/29/2021,13:15,BROOKLYN,11215,40.66563,-73.985954,"(40.66563, -73.985954)",6 AVENUE,13 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Outside Car Distraction,,,,4462286,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,9:30,STATEN ISLAND,10306,40.57002,-74.11021,"(40.57002, -74.11021)",,,2530 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4463044,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,17:09,MANHATTAN,10002,40.714615,-73.9971,"(40.714615, -73.9971)",PELL STREET,BOWERY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463455,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,6:55,QUEENS,11385,40.70196,-73.90381,"(40.70196, -73.90381)",ONDERDONK AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4463117,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,23:00,,,40.607754,-74.13205,"(40.607754, -74.13205)",BRADLEY AVENUE,SOUTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463178,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,22:55,MANHATTAN,10016,40.744255,-73.986275,"(40.744255, -73.986275)",,,15 EAST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462569,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,16:30,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462677,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,8:15,BROOKLYN,11203,40.64491,-73.92192,"(40.64491, -73.92192)",EAST 58 STREET,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463590,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,18:50,STATEN ISLAND,10310,40.6354,-74.106674,"(40.6354, -74.106674)",,,355 BARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463437,Sedan,,,, +10/01/2021,12:00,BRONX,10465,40.819683,-73.80961,"(40.819683, -73.80961)",PRENTISS AVENUE,THROGS NECK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463846,Sedan,Bike,,, +09/30/2021,8:55,BRONX,10473,40.8223,-73.873,"(40.8223, -73.873)",STORY AVENUE,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4462863,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +09/30/2021,1:05,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",85 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,18:00,,,40.639977,-73.92623,"(40.639977, -73.92623)",FOSTER AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4463258,Sedan,Sedan,,, +09/30/2021,18:28,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462806,Box Truck,Sedan,,, +05/28/2021,0:10,,,,,,FLATBUSH AVENUE,FLATBUSH AVENUE,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421249,Bike,,,, +09/29/2021,16:30,BROOKLYN,11210,40.61682,-73.944984,"(40.61682, -73.944984)",,,2771 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4462332,Station Wagon/Sport Utility Vehicle,Bus,,, +09/29/2021,16:05,BROOKLYN,11211,0,0,"(0.0, 0.0)",ROEBLING STREET,SOUTH 2 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4462400,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/25/2021,23:00,MANHATTAN,10020,40.75927,-73.980896,"(40.75927, -73.980896)",WEST 49 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,,,,,,4463077,,,,, +09/30/2021,11:56,BROOKLYN,11208,40.66839,-73.88032,"(40.66839, -73.88032)",DUMONT AVENUE,ESSEX STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463718,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,7:00,,,40.7065,-73.91701,"(40.7065, -73.91701)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462821,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,17:00,BROOKLYN,11204,40.616127,-73.98986,"(40.616127, -73.98986)",19 AVENUE,68 STREET,,2,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463705,E-Bike,Bike,,, +09/29/2021,11:45,BRONX,10456,40.820564,-73.905235,"(40.820564, -73.905235)",EAST 160 STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462372,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,17:58,QUEENS,11694,0,0,"(0.0, 0.0)",ROCKAWAY BEACH BOULEVARD,BEACH 118 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462609,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,11:03,BRONX,10459,40.82443,-73.890526,"(40.82443, -73.890526)",,,1050 HOE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4462838,Sedan,,,, +09/29/2021,2:20,BROOKLYN,11217,40.68631,-73.97445,"(40.68631, -73.97445)",SOUTH PORTLAND AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462046,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,10:15,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462640,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,18:22,BROOKLYN,11233,,,,Fulton Street,Thomas S Boyland Street,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463413,Sedan,,,, +09/29/2021,16:40,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",PROSPECT AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4462917,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,11:50,,,40.65133,-73.90607,"(40.65133, -73.90607)",ROCKAWAY AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4462937,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/01/2021,0:00,,,40.67435,-73.906105,"(40.67435, -73.906105)",EAST NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462707,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,17:10,QUEENS,11434,0,0,"(0.0, 0.0)",119 AVENUE,152 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4462305,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,7:40,,,40.71122,-73.72827,"(40.71122, -73.72827)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462544,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,16:00,QUEENS,11413,40.67608,-73.740326,"(40.67608, -73.740326)",,,230-01 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462700,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,16:05,,,40.846443,-73.826004,"(40.846443, -73.826004)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463848,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,0:00,QUEENS,11428,40.723644,-73.73813,"(40.723644, -73.73813)",SPRINGFIELD BOULEVARD,DAVENPORT AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4462676,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:55,BRONX,10452,40.83955,-73.91595,"(40.83955, -73.91595)",EAST 170 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462587,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,19:20,BRONX,10473,40.815296,-73.86058,"(40.815296, -73.86058)",,,500 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462862,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,7:35,BRONX,10460,40.839996,-73.87713,"(40.839996, -73.87713)",,,1101 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4462108,Sedan,Bus,,, +10/01/2021,19:15,BRONX,10466,40.893127,-73.8495,"(40.893127, -73.8495)",,,4169 GUNTHER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463517,Station Wagon/Sport Utility Vehicle,PK,,, +09/29/2021,17:00,,,40.726097,-73.76198,"(40.726097, -73.76198)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,Unspecified,,,4462618,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/29/2021,13:10,,,40.61855,-73.9395,"(40.61855, -73.9395)",EAST 36 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462285,Sedan,Sedan,,, +09/27/2021,12:00,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,MORGAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462790,Box Truck,,,, +09/29/2021,15:21,BRONX,10454,40.8077,-73.92955,"(40.8077, -73.92955)",LINCOLN AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462374,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +08/19/2021,14:15,MANHATTAN,10027,40.80589,-73.945114,"(40.80589, -73.945114)",,,8 WEST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462922,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,16:43,,,40.582584,-73.83022,"(40.582584, -73.83022)",ROCKAWAY FREEWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4463556,Sedan,,,, +09/30/2021,23:46,BROOKLYN,11212,40.66037,-73.90208,"(40.66037, -73.90208)",,,346 NEWPORT STREET,0,0,0,0,0,0,0,0,Animals Action,,,,,4462849,Sedan,,,, +09/30/2021,11:30,QUEENS,11378,40.727432,-73.89106,"(40.727432, -73.89106)",,,54-40 72 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463100,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,17:20,BROOKLYN,11206,40.700214,-73.94632,"(40.700214, -73.94632)",FLUSHING AVENUE,WHIPPLE STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462646,Sedan,E-Bike,,, +10/01/2021,13:10,MANHATTAN,10025,40.79209,-73.973656,"(40.79209, -73.973656)",WEST 92 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4462939,Pick-up Truck,Sedan,,, +10/01/2021,13:55,MANHATTAN,10036,40.757874,-73.981895,"(40.757874, -73.981895)",,,1196 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,,,,,4463078,Taxi,Tow Truck / Wrecker,,, +09/23/2021,10:30,BRONX,10463,40.875145,-73.91216,"(40.875145, -73.91216)",,,1 JACOBUS PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462956,Dump,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,21:40,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463307,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,16:35,MANHATTAN,10024,40.784973,-73.98264,"(40.784973, -73.98264)",WEST 79 STREET,RIVERSIDE DRIVE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4463527,Bike,Sedan,,, +09/29/2021,14:19,,,40.792362,-73.96418,"(40.792362, -73.96418)",,,WEST 97 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462322,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,19:40,,,40.57777,-74.1637,"(40.57777, -74.1637)",MARSH AVENUE,WINDHAM LOOP,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4462527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/27/2021,22:07,MANHATTAN,10065,40.763042,-73.956535,"(40.763042, -73.956535)",YORK AVENUE,EAST 66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4490083,Sedan,Sedan,,, +10/01/2021,10:38,MANHATTAN,10029,40.791904,-73.94151,"(40.791904, -73.94151)",2 AVENUE,EAST 108 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,14:20,,,40.60809,-74.14093,"(40.60809, -74.14093)",NORTH GANNON AVENUE,WOOLLEY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462791,Sedan,,,, +09/29/2021,17:44,MANHATTAN,10010,40.737804,-73.98276,"(40.737804, -73.98276)",,,235 EAST 22 STREET,1,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4462568,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/30/2021,14:50,QUEENS,11420,40.667614,-73.81888,"(40.667614, -73.81888)",,,149-26 122 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462774,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,15:20,QUEENS,11101,40.743484,-73.95809,"(40.743484, -73.95809)",,,2-26 50 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462944,Sedan,,,, +09/30/2021,1:30,QUEENS,11418,40.69717,-73.843925,"(40.69717, -73.843925)",,,85-57 104 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462356,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,19:00,BROOKLYN,11230,40.6185,-73.96014,"(40.6185, -73.96014)",CHESTNUT AVENUE,EAST 15 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463838,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,0:00,,,40.877106,-73.90616,"(40.877106, -73.90616)",BROADWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463150,Sedan,Sedan,,, +09/27/2021,15:31,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4463805,Sedan,,,, +09/26/2021,20:58,MANHATTAN,10027,40.80755,-73.95291,"(40.80755, -73.95291)",WEST 121 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463312,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,0:28,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463823,Sedan,Sedan,,, +09/29/2021,12:13,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462731,Sedan,Sedan,,, +09/24/2021,13:46,MANHATTAN,10024,40.785095,-73.97691,"(40.785095, -73.97691)",AMSTERDAM AVENUE,WEST 82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463504,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,8:50,BROOKLYN,11203,0,0,"(0.0, 0.0)",,,345 EAST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463591,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,1:25,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",NOSTRAND AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463480,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,16:36,BRONX,10454,40.812893,-73.92013,"(40.812893, -73.92013)",WILLIS AVENUE,EAST 144 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463196,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/01/2021,11:50,QUEENS,11420,40.67702,-73.80444,"(40.67702, -73.80444)",,,117-30 135 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463896,Sedan,,,, +10/01/2021,20:06,BROOKLYN,11219,40.636288,-73.99273,"(40.636288, -73.99273)",,,1244 48 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4463369,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/01/2021,10:25,QUEENS,11432,40.70763,-73.803055,"(40.70763, -73.803055)",,,158-50 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,Unspecified,4463757,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/01/2021,12:40,MANHATTAN,10010,40.74087,-73.98799,"(40.74087, -73.98799)",EAST 23 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463268,Bus,Box Truck,,, +09/29/2021,16:59,BROOKLYN,11208,40.67213,-73.876495,"(40.67213, -73.876495)",SUTTER AVENUE,MILFORD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463798,Sedan,,,, +09/23/2021,1:20,BROOKLYN,11233,40.67916,-73.927155,"(40.67916, -73.927155)",,,1802 FULTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4463578,Sedan,,,, +09/30/2021,19:45,QUEENS,11423,0,0,"(0.0, 0.0)",188 STREET,ABERDEEN ROAD,,3,0,1,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4462694,Sedan,Sedan,Sedan,, +09/30/2021,17:51,,,40.785973,-73.96886,"(40.785973, -73.96886)",WEST 87 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4462634,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,12:30,MANHATTAN,10025,40.804394,-73.96518,"(40.804394, -73.96518)",,,529 WEST 111 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463433,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,20:05,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462752,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,7:38,QUEENS,11429,40.70302,-73.727776,"(40.70302, -73.727776)",CROSS ISLAND PARKWAY,MURDOCK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462208,Sedan,Sedan,,, +09/29/2021,7:45,,,40.72691,-73.80692,"(40.72691, -73.80692)",75 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4462223,Station Wagon/Sport Utility Vehicle,Bus,,, +09/30/2021,6:15,BROOKLYN,11209,40.62149,-74.028885,"(40.62149, -74.028885)",,,8721 4 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463008,Motorcycle,,,, +09/29/2021,14:10,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462449,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,19:07,,,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463347,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/28/2021,2:36,QUEENS,11385,40.712864,-73.90478,"(40.712864, -73.90478)",METROPOLITAN AVENUE,ELIOT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462971,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,19:29,STATEN ISLAND,10305,40.595596,-74.063126,"(40.595596, -74.063126)",OCEAN AVENUE,ROBIN ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4462802,Sedan,Sedan,Sedan,, +09/30/2021,14:45,,,40.743397,-73.9384,"(40.743397, -73.9384)",29 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462683,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/29/2021,14:25,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462301,Sedan,Van,,, +09/30/2021,12:30,QUEENS,11369,40.76199,-73.86934,"(40.76199, -73.86934)",ASTORIA BOULEVARD,100 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4462834,Sedan,Bike,,, +09/30/2021,8:45,MANHATTAN,10025,40.797344,-73.968254,"(40.797344, -73.968254)",,,201 WEST 101 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462508,Sedan,,,, +09/29/2021,16:25,,,,,,33 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,14:35,,,40.738884,-73.79367,"(40.738884, -73.79367)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463118,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,7:54,BROOKLYN,11201,40.69549,-73.98713,"(40.69549, -73.98713)",,,285 JAY STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463040,Box Truck,,,, +09/30/2021,21:37,BRONX,10459,40.822235,-73.88746,"(40.822235, -73.88746)",SHERIDAN EXPRESSWAY,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462839,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,15:50,BROOKLYN,11226,,,,CLARENDON ROAD,EAST 26 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462653,E-SCOOTER,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,23:10,,,40.760292,-73.90158,"(40.760292, -73.90158)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463294,Sedan,,,, +09/29/2021,11:13,,,0,0,"(0.0, 0.0)",172 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462196,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/29/2021,16:10,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462406,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/30/2021,9:15,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462456,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,21:15,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",WEST 42 STREET,12 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463342,Sedan,,,, +10/01/2021,6:00,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,PRINCE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463172,Sedan,,,, +09/29/2021,8:20,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462215,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,9:30,BROOKLYN,11233,0,0,"(0.0, 0.0)",SARATOGA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462340,Sedan,,,, +09/30/2021,13:20,BRONX,10469,40.87167,-73.8486,"(40.87167, -73.8486)",EAST GUN HILL ROAD,BURKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463513,Sedan,Motorbike,,, +09/29/2021,8:00,,,40.826283,-73.92566,"(40.826283, -73.92566)",EAST 158 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462877,Sedan,Sedan,,, +09/30/2021,14:35,MANHATTAN,10001,40.751522,-73.99396,"(40.751522, -73.99396)",8 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4462580,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:00,BROOKLYN,11218,40.63265,-73.97536,"(40.63265, -73.97536)",,,783 EAST 3 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463408,Sedan,,,, +10/01/2021,17:00,,,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462976,Sedan,Pick-up Truck,,, +09/30/2021,12:30,,,40.611336,-73.89728,"(40.611336, -73.89728)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4462894,Sedan,,,, +09/28/2021,2:10,BROOKLYN,11207,40.67821,-73.89552,"(40.67821, -73.89552)",,,80 VERMONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463782,Pick-up Truck,,,, +09/30/2021,12:45,QUEENS,11354,40.769352,-73.83258,"(40.769352, -73.83258)",31 ROAD,LINDEN PLACE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462623,Sedan,E-Scooter,,, +09/30/2021,9:23,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST END AVENUE,,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4462520,Sedan,Sedan,Sedan,, +09/30/2021,8:30,,,40.59514,-73.754,"(40.59514, -73.754)",BEACH 20 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,14:30,MANHATTAN,10002,40.72166,-73.98659,"(40.72166, -73.98659)",,,166 ESSEX STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4462295,Sedan,Bike,,, +09/28/2021,15:55,BROOKLYN,11226,40.650944,-73.95249,"(40.650944, -73.95249)",,,813 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463035,Station Wagon/Sport Utility Vehicle,Bus,,, +09/25/2021,9:24,BROOKLYN,11213,40.671474,-73.93088,"(40.671474, -73.93088)",UTICA AVENUE,STERLING PLACE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4463457,Sedan,Sedan,Sedan,Sedan, +09/26/2021,10:40,BROOKLYN,11233,40.677032,-73.90993,"(40.677032, -73.90993)",,,11 PLEASANT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463417,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,15:06,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490132,Station Wagon/Sport Utility Vehicle,Dump,,, +09/29/2021,16:00,QUEENS,11419,40.691902,-73.83562,"(40.691902, -73.83562)",,,110-04 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462350,Sedan,Sedan,,, +09/30/2021,19:00,,,40.715263,-73.976326,"(40.715263, -73.976326)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4462725,Ambulance,Sedan,Station Wagon/Sport Utility Vehicle,, +09/30/2021,9:15,,,40.88647,-73.89603,"(40.88647, -73.89603)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4463083,Sedan,,,, +09/30/2021,8:45,QUEENS,11427,0,0,"(0.0, 0.0)",HOLLIS COURT BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462993,Sedan,Tractor Truck Diesel,,, +09/08/2021,7:38,MANHATTAN,10019,,,,,,55 WEST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462932,PK,Van,,, +10/01/2021,10:30,BROOKLYN,11218,40.644093,-73.97635,"(40.644093, -73.97635)",,,416 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463375,Sedan,,,, +09/27/2021,17:30,,,40.675186,-73.933304,"(40.675186, -73.933304)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4463472,Sedan,Sedan,,, +09/21/2021,11:00,,,40.741394,-73.8848,"(40.741394, -73.8848)",45 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462871,Sedan,,,, +09/23/2021,13:00,MANHATTAN,10019,40.762074,-73.98628,"(40.762074, -73.98628)",,,825 8 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462903,Bike,,,, +10/01/2021,20:10,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",UNION AVENUE,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463860,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,17:35,BROOKLYN,11208,40.66704,-73.86984,"(40.66704, -73.86984)",,,795 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463769,Sedan,,,, +10/01/2021,14:42,BROOKLYN,11218,40.64881,-73.97749,"(40.64881, -73.97749)",EAST 4 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4463221,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,13:25,,,,,,,,WEST 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4463105,Sedan,Sedan,Sedan,Sedan, +09/11/2021,6:44,,,40.88736,-73.89426,"(40.88736, -73.89426)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462961,Tractor Truck Diesel,Sedan,,, +10/01/2021,16:59,BROOKLYN,11235,40.583687,-73.94487,"(40.583687, -73.94487)",EMMONS AVENUE,DOOLEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463144,Sedan,Sedan,,, +09/28/2021,8:40,BROOKLYN,11212,40.663754,-73.9115,"(40.663754, -73.9115)",,,220 DUMONT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462866,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,23:20,,,40.718456,-73.99482,"(40.718456, -73.99482)",BOWERY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463399,Sedan,,,, +09/30/2021,16:10,STATEN ISLAND,10304,40.58296,-74.112114,"(40.58296, -74.112114)",,,424 FLAGG PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4462720,Station Wagon/Sport Utility Vehicle,,,, +09/23/2021,19:25,QUEENS,11434,40.685276,-73.77241,"(40.685276, -73.77241)",MERRICK BOULEVARD,VICTORIA ROAD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4463650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,0:31,BROOKLYN,11208,40.66999,-73.85912,"(40.66999, -73.85912)",LINDEN BOULEVARD,EMERALD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463747,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,9:30,BROOKLYN,11215,40.662468,-73.99226,"(40.662468, -73.99226)",19 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4462668,Bike,,,, +09/29/2021,0:00,,,40.732323,-74.00362,"(40.732323, -74.00362)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462572,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,7:30,QUEENS,11101,40.753075,-73.92139,"(40.753075, -73.92139)",,,42-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463187,Sedan,Sedan,,, +09/30/2021,17:40,,,40.85306,-73.931,"(40.85306, -73.931)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4462988,Station Wagon/Sport Utility Vehicle,Ambulance,,, +10/01/2021,19:00,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",MAIN STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463122,Sedan,Sedan,,, +10/01/2021,20:40,QUEENS,11420,40.676025,-73.80905,"(40.676025, -73.80905)",130 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4463889,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/01/2021,15:26,,,40.576042,-73.99008,"(40.576042, -73.99008)",MERMAID AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463446,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,0:00,BROOKLYN,11212,40.65588,-73.90999,"(40.65588, -73.90999)",,,55 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462712,Station Wagon/Sport Utility Vehicle,Beverage Truck,,, +09/30/2021,21:40,,,40.680977,-74.00498,"(40.680977, -74.00498)",COLUMBIA STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463062,Sedan,Sedan,,, +09/30/2021,20:27,BROOKLYN,11233,40.681297,-73.93472,"(40.681297, -73.93472)",DECATUR STREET,LEWIS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4463571,Bike,,,, +10/01/2021,0:00,BROOKLYN,11208,40.678444,-73.86886,"(40.678444, -73.86886)",LIBERTY AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463752,E-Bike,Sedan,,, +09/30/2021,6:46,BROOKLYN,11209,40.634865,-74.02639,"(40.634865, -74.02639)",OVINGTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462444,Sedan,,,, +10/01/2021,18:16,BROOKLYN,11221,40.69706,-73.91933,"(40.69706, -73.91933)",WILSON AVENUE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463025,Ambulance,,,, +10/01/2021,22:50,BRONX,10458,40.854836,-73.88319,"(40.854836, -73.88319)",,,2431 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463832,Sedan,Sedan,,, +10/01/2021,14:39,QUEENS,11354,40.766724,-73.83636,"(40.766724, -73.83636)",32 AVENUE,HIGGINS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463167,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,9:30,BROOKLYN,11237,40.708687,-73.92657,"(40.708687, -73.92657)",,,517 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463674,Garbage or Refuse,,,, +09/04/2021,16:20,,,40.693703,-73.90505,"(40.693703, -73.90505)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4462813,Open Body,Sedan,,, +09/29/2021,7:45,,,,,,BOSTON ROAD,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,9:20,MANHATTAN,10009,40.725094,-73.98305,"(40.725094, -73.98305)",,,535 EAST 6 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4462495,Dump,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:05,BRONX,10453,40.85132,-73.90842,"(40.85132, -73.90842)",EAST TREMONT AVENUE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463734,Motorscooter,Sedan,,, +09/30/2021,17:30,,,40.718075,-73.97511,"(40.718075, -73.97511)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462798,Bus,Sedan,,, +09/29/2021,11:30,,,40.801342,-73.94598,"(40.801342, -73.94598)",EAST 117 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462269,Sedan,,,, +09/30/2021,17:02,,,40.681202,-73.78019,"(40.681202, -73.78019)",164 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4462761,Sedan,Sedan,,, +09/29/2021,17:50,BRONX,10460,40.83583,-73.89068,"(40.83583, -73.89068)",,,1600 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462461,Ambulance,Sedan,,, +10/01/2021,20:25,QUEENS,11369,40.766647,-73.87018,"(40.766647, -73.87018)",100 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463003,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,3:40,MANHATTAN,10034,40.86676,-73.920616,"(40.86676, -73.920616)",WEST 207 STREET,VERMILYEA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515782,Sedan,,,, +09/30/2021,13:00,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",CLOVE ROAD,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4463440,Sedan,Sedan,,, +10/01/2021,18:30,,,40.790813,-73.976456,"(40.790813, -73.976456)",WEST 89 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463020,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,6:08,BROOKLYN,11231,40.682274,-73.99349,"(40.682274, -73.99349)",SACKETT STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463281,Bus,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,9:16,QUEENS,11434,40.659584,-73.76785,"(40.659584, -73.76785)",148 AVENUE,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462830,Sedan,Motorcycle,,, +09/29/2021,23:15,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAHAM AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462909,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/29/2021,19:41,BRONX,10458,40.857605,-73.89124,"(40.857605, -73.89124)",EAST 187 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,10:35,,,40.634506,-73.949455,"(40.634506, -73.949455)",GLENWOOD ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463424,Sedan,Bus,,, +09/30/2021,0:11,QUEENS,11415,40.71164,-73.83591,"(40.71164, -73.83591)",UNION TURNPIKE,PARK LANE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4462365,Sedan,,,, +07/30/2021,17:00,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",12 AVENUE,WEST 56 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4462881,Sedan,Sedan,,, +09/30/2021,7:00,BROOKLYN,11206,40.701862,-73.94383,"(40.701862, -73.94383)",BROADWAY,WHIPPLE STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4462628,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/30/2021,18:07,,,40.672825,-73.93908,"(40.672825, -73.93908)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,18:00,BROOKLYN,11207,40.66401,-73.88996,"(40.66401, -73.88996)",,,609 BRADFORD STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463770,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,15:54,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490446,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,21:15,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421432,Sedan,Sedan,,, +09/16/2021,20:33,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,View Obstructed/Limited,,,,4462898,Bike,Sedan,,, +09/30/2021,5:34,QUEENS,11416,40.680412,-73.85953,"(40.680412, -73.85953)",,,78-06 101 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4462385,Sedan,,,, +09/30/2021,0:00,MANHATTAN,10035,40.805058,-73.93904,"(40.805058, -73.93904)",EAST 125 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4462573,Sedan,Motorcycle,,, +09/30/2021,19:17,QUEENS,11420,40.669243,-73.80679,"(40.669243, -73.80679)",133 AVENUE,132 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4462738,Sedan,Garbage or Refuse,,, +10/01/2021,9:00,BROOKLYN,11217,40.68777,-73.98701,"(40.68777, -73.98701)",ATLANTIC AVENUE,HOYT STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4463539,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,19:35,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462310,Sedan,Bike,,, +09/30/2021,20:10,QUEENS,11379,40.72028,-73.86548,"(40.72028, -73.86548)",WOODHAVEN BOULEVARD,FURMANVILLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462964,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/01/2021,16:59,BRONX,10455,40.815468,-73.905334,"(40.815468, -73.905334)",EAST 152 STREET,TINTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463204,Taxi,,,, +09/29/2021,7:50,,,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,,,2,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462509,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/01/2021,11:45,BRONX,10459,40.821003,-73.89787,"(40.821003, -73.89787)",ROGERS PLACE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462947,Sedan,Flat Bed,,, +09/30/2021,19:28,MANHATTAN,10031,40.82217,-73.95625,"(40.82217, -73.95625)",,,596 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463089,Sedan,FIRE TRUCK,,, +09/28/2021,20:10,,,40.677574,-73.95548,"(40.677574, -73.95548)",DEAN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463489,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,11:25,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463109,Sedan,,,, +08/02/2021,23:55,,,40.76428,-73.99859,"(40.76428, -73.99859)",12 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462886,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,20:37,QUEENS,11378,40.731472,-73.91922,"(40.731472, -73.91922)",53 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463052,Sedan,Sedan,,, +09/19/2021,14:30,,,40.81467,-73.93622,"(40.81467, -73.93622)",EAST 138 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462936,Sedan,Bike,,, +12/27/2021,9:29,,,40.835094,-73.88697,"(40.835094, -73.88697)",EAST 173 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490473,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,17:00,QUEENS,11375,40.71729,-73.83208,"(40.71729, -73.83208)",77 AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,4:09,,,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463751,Sedan,,,, +10/01/2021,16:20,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463000,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,15:00,,,40.719177,-73.79223,"(40.719177, -73.79223)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463101,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,22:30,BROOKLYN,11208,40.659412,-73.8708,"(40.659412, -73.8708)",FLATLANDS AVENUE,ATKINS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463789,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,0:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463641,Sedan,Sedan,,, +09/15/2021,0:00,BRONX,10463,40.880398,-73.907646,"(40.880398, -73.907646)",CORLEAR AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462957,Sedan,Sedan,,, +09/30/2021,13:23,QUEENS,11379,40.713993,-73.880295,"(40.713993, -73.880295)",,,66-41 73 PLACE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462557,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,8:30,QUEENS,11104,40.7418,-73.924675,"(40.7418, -73.924675)",40 STREET,47 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463139,Garbage or Refuse,,,, +12/27/2021,19:05,,,40.535355,-74.15594,"(40.535355, -74.15594)",RICHMOND AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4490258,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,14:53,BROOKLYN,11226,40.64479,-73.9546,"(40.64479, -73.9546)",,,2407 BEVERLEY ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463032,Sedan,Sedan,,, +10/01/2021,6:30,QUEENS,11101,40.75303,-73.92163,"(40.75303, -73.92163)",NORTHERN BOULEVARD,42 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463388,Station Wagon/Sport Utility Vehicle,Bike,,, +10/01/2021,1:00,,,40.850735,-73.902824,"(40.850735, -73.902824)",EAST 179 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4462803,Sedan,Sedan,,, +09/25/2021,3:16,BROOKLYN,11233,40.67614,-73.907166,"(40.67614, -73.907166)",ATLANTIC AVENUE,SHERLOCK PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,8:10,BRONX,10458,40.859055,-73.88795,"(40.859055, -73.88795)",,,2492 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463717,Dump,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,10:25,,,,,,FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463697,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,11:42,MANHATTAN,10032,40.83806,-73.94665,"(40.83806, -73.94665)",WEST 161 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463129,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,12:18,MANHATTAN,10128,40.780437,-73.94989,"(40.780437, -73.94989)",EAST 90 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4462925,Bike,,,, +09/30/2021,2:16,,,40.640858,-74.16833,"(40.640858, -74.16833)",,,3365 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463182,Sedan,,,, +09/30/2021,7:28,,,40.88521,-73.88716,"(40.88521, -73.88716)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,6:42,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463827,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,10:00,BROOKLYN,11207,40.674625,-73.88893,"(40.674625, -73.88893)",,,263 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463808,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,17:00,,,40.82843,-73.88105,"(40.82843, -73.88105)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462867,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,11:00,BROOKLYN,11223,40.58939,-73.97189,"(40.58939, -73.97189)",,,2443 WEST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463683,Sedan,,,, +08/03/2021,16:25,,,40.866703,-73.83815,"(40.866703, -73.83815)",BARTOW AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4463505,Bus,Sedan,,, +10/01/2021,11:00,BROOKLYN,11205,,,,NORTH PORTLAND AVENUE,AUBURN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463163,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,2:23,BROOKLYN,11249,40.722458,-73.95479,"(40.722458, -73.95479)",NASSAU AVENUE,NORTH 14 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4462163,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,0:50,QUEENS,11370,40.765423,-73.89001,"(40.765423, -73.89001)",ASTORIA BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462395,Sedan,,,, +09/30/2021,10:50,BROOKLYN,11207,40.669518,-73.89424,"(40.669518, -73.89424)",SUTTER AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463730,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,5:00,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462979,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,21:35,MANHATTAN,10003,40.736336,-73.98301,"(40.736336, -73.98301)",,,235 EAST 20 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463271,Bike,Sedan,,, +09/30/2021,16:30,QUEENS,11691,40.59518,-73.76198,"(40.59518, -73.76198)",,,210 BEACH 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462781,Sedan,,,, +09/30/2021,14:42,,,40.595325,-74.15986,"(40.595325, -74.15986)",,,9 COOPER TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462913,FDNY,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:30,QUEENS,11361,40.76259,-73.78547,"(40.76259, -73.78547)",FRANCIS LEWIS BOULEVARD,38 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463015,Sedan,Sedan,,, +09/29/2021,7:00,BROOKLYN,11211,40.703747,-73.954445,"(40.703747, -73.954445)",MARCY AVENUE,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462401,Sedan,,,, +09/29/2021,16:43,STATEN ISLAND,10314,40.602474,-74.12064,"(40.602474, -74.12064)",MANOR ROAD,BOLIVAR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462304,Sedan,Sedan,,, +09/29/2021,15:55,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462393,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,11:10,BROOKLYN,11233,40.680157,-73.9119,"(40.680157, -73.9119)",,,220 MACDOUGAL STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4462742,Sedan,Sedan,,, +09/30/2021,9:45,,,40.739162,-73.78556,"(40.739162, -73.78556)",188 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462601,Sedan,,,, +09/30/2021,4:10,QUEENS,11364,40.755657,-73.76717,"(40.755657, -73.76717)",BELL BOULEVARD,48 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462361,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,8:25,,,40.894054,-73.86248,"(40.894054, -73.86248)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462613,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,19:40,MANHATTAN,10038,40.711975,-73.99782,"(40.711975, -73.99782)",,,51 MADISON STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463305,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,1:05,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4462047,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,20:30,BROOKLYN,11211,40.71546,-73.94961,"(40.71546, -73.94961)",LORIMER STREET,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463879,Sedan,Sedan,,, +09/29/2021,11:25,QUEENS,11693,40.58539,-73.81466,"(40.58539, -73.81466)",BEACH 92 STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463551,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,14:35,,,40.87926,-73.86962,"(40.87926, -73.86962)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4462641,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +10/01/2021,14:34,,,40.56274,-74.11755,"(40.56274, -74.11755)",HYLAN BOULEVARD,MALDEN PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463043,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,6:30,BROOKLYN,11222,40.724636,-73.94818,"(40.724636, -73.94818)",NASSAU AVENUE,MC GUINNESS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462766,,,,, +10/01/2021,13:30,,,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463324,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,12:30,,,40.66652,-73.73645,"(40.66652, -73.73645)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462542,Sedan,Sedan,,, +09/30/2021,11:45,BROOKLYN,11232,40.650948,-74.00793,"(40.650948, -74.00793)",42 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462918,Sedan,Box Truck,,, +09/30/2021,7:40,BROOKLYN,11212,40.66157,-73.91548,"(40.66157, -73.91548)",LIVONIA AVENUE,SARATOGA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462706,Sedan,,,, +09/25/2021,10:00,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463520,Sedan,Sedan,,, +10/01/2021,15:35,,,40.79926,-73.97489,"(40.79926, -73.97489)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462951,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,18:10,MANHATTAN,10036,40.75708,-73.97956,"(40.75708, -73.97956)",,,23 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463074,Sedan,,,, +10/01/2021,5:17,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463240,Sedan,Box Truck,,, +10/01/2021,11:30,BRONX,10460,40.838844,-73.87817,"(40.838844, -73.87817)",EAST 177 STREET,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463816,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,10:50,BRONX,10457,40.850067,-73.90281,"(40.850067, -73.90281)",EAST 178 STREET,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462808,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/28/2021,23:40,,,,,,EAST NEW YORK AVENUE,SNEDIKER AENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463785,Sedan,,,, +07/29/2021,14:57,BRONX,10471,40.909866,-73.89662,"(40.909866, -73.89662)",,,6629 BROADWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462968,Sedan,Moped,,, +10/01/2021,13:36,BRONX,10465,40.831146,-73.82236,"(40.831146, -73.82236)",LAFAYETTE AVENUE,HOLLYWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463843,Sedan,Sedan,,, +10/01/2021,22:44,BROOKLYN,11210,40.6247,-73.94358,"(40.6247, -73.94358)",NEW YORK AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463094,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,22:00,,,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463768,Sedan,Sedan,,, +10/01/2021,5:20,,,40.740776,-73.89862,"(40.740776, -73.89862)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462940,Sedan,,,, +10/01/2021,10:55,,,40.67327,-73.9474,"(40.67327, -73.9474)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463583,Sedan,Motorcycle,,, +09/29/2021,14:01,BROOKLYN,11234,40.614643,-73.936806,"(40.614643, -73.936806)",QUENTIN ROAD,EAST 36 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463256,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,16:30,BROOKLYN,11214,40.60058,-73.99161,"(40.60058, -73.99161)",86 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463308,Sedan,Box Truck,,, +10/01/2021,0:00,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:30,MANHATTAN,10022,,,,,,721 fifth avenue,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463079,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,18:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463158,Sedan,Sedan,,, +09/27/2021,11:30,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,RALPH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463468,Sedan,,,, +08/17/2021,14:47,BROOKLYN,11201,40.69631,-73.997086,"(40.69631, -73.997086)",PIERREPONT PLACE,PIERREPONT STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4463529,E-Bike,,,, +10/01/2021,21:29,BRONX,10466,40.888798,-73.85316,"(40.888798, -73.85316)",BRONXWOOD AVENUE,EAST 229 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463497,Sedan,Sedan,,, +09/29/2021,12:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4462686,Sedan,Sedan,Sedan,, +09/30/2021,13:00,BROOKLYN,11207,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462822,Sedan,,,, +09/21/2021,19:30,BRONX,10474,0,0,"(0.0, 0.0)",,,1321 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463621,Sedan,,,, +04/01/2021,16:07,BRONX,10454,40.80662,-73.91762,"(40.80662, -73.91762)",,,201 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463201,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,3:00,,,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463028,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,6:36,MANHATTAN,10016,40.74568,-73.97213,"(40.74568, -73.97213)",EAST 37 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4462835,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/29/2021,12:40,BROOKLYN,11218,40.658722,-73.97517,"(40.658722, -73.97517)",PROSPECT PARK SOUTHWEST,11 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462923,Sedan,Bus,,, +08/30/2021,17:30,BRONX,10472,40.82866,-73.87824,"(40.82866, -73.87824)",BOYNTON AVENUE,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462840,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,21:10,BROOKLYN,11220,40.642796,-74.00197,"(40.642796, -74.00197)",8 AVENUE,47 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4490324,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,17:00,BRONX,10456,0,0,"(0.0, 0.0)",,,3463 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462457,Pick-up Truck,,,, +09/29/2021,8:25,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462214,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,6:22,BROOKLYN,11226,40.6492,-73.95841,"(40.6492, -73.95841)",,,927 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4462216,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,20:21,MANHATTAN,10019,40.766502,-73.99418,"(40.766502, -73.99418)",11 AVENUE,WEST 51 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462429,Sedan,,,, +09/29/2021,6:45,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4462639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,6:40,,,40.72839,-73.83302,"(40.72839, -73.83302)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462242,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,10:35,BROOKLYN,11210,40.61929,-73.94837,"(40.61929, -73.94837)",AVENUE M,EAST 27 STREET,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4463422,Sedan,Sedan,,, +09/29/2021,11:10,BRONX,10475,40.876022,-73.83387,"(40.876022, -73.83387)",DONIZETTI PLACE,BAYCHESTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462452,Motorcycle,Sedan,Sedan,, +10/01/2021,9:51,BRONX,10454,40.806786,-73.92335,"(40.806786, -73.92335)",,,435 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463195,PK,,,, +09/30/2021,11:25,,,40.681805,-73.94987,"(40.681805, -73.94987)",HALSEY STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462658,Sedan,E-Bike,,, +09/29/2021,17:20,BROOKLYN,11203,40.65362,-73.93352,"(40.65362, -73.93352)",LINDEN BOULEVARD,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462294,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,18:30,,,40.725674,-74.00578,"(40.725674, -74.00578)",VARICK STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462983,Sedan,,,, +09/29/2021,11:53,MANHATTAN,10065,40.768646,-73.96983,"(40.768646, -73.96983)",5 AVENUE,EAST 66 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462481,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/01/2021,22:30,QUEENS,11432,40.71001,-73.79474,"(40.71001, -73.79474)",168 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463112,Pick-up Truck,Sedan,,, +09/30/2021,15:00,BROOKLYN,11234,40.619247,-73.92208,"(40.619247, -73.92208)",AVENUE N,EAST 55 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462680,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,7:23,QUEENS,11415,40.704426,-73.82577,"(40.704426, -73.82577)",85 AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4462181,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,17:49,BRONX,10472,40.82322,-73.882996,"(40.82322, -73.882996)",,,1419 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,6:11,,,40.54443,-74.165405,"(40.54443, -74.165405)",RICHMOND AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Oversized Vehicle,,,,4462430,Bus,Tractor Truck Diesel,,, +09/30/2021,9:30,QUEENS,11415,40.712357,-73.8263,"(40.712357, -73.8263)",,,125-01 QUEENS BOULEVARD,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4462785,Sedan,,,, +10/01/2021,19:19,QUEENS,11358,40.762955,-73.793274,"(40.762955, -73.793274)",,,36-10 UTOPIA PARKWAY,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4463177,Sedan,excavator,,, +10/01/2021,19:08,QUEENS,11375,40.721676,-73.835976,"(40.721676, -73.835976)",GRAND CENTRAL PARKWAY,72 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4463011,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,12:30,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462994,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/01/2021,8:20,MANHATTAN,10018,40.757732,-73.99686,"(40.757732, -73.99686)",10 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4463346,Box Truck,Tow Truck / Wrecker,,, +09/29/2021,21:15,,,40.703083,-73.85766,"(40.703083, -73.85766)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4462972,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,15:24,BRONX,10466,40.89121,-73.86076,"(40.89121, -73.86076)",,,652 EAST 229 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4463494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/12/2021,3:50,QUEENS,11434,40.689915,-73.7779,"(40.689915, -73.7779)",MERRICK BOULEVARD,115 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4463651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,1:15,BROOKLYN,11221,40.70029,-73.92904,"(40.70029, -73.92904)",CENTRAL AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462472,Sedan,Sedan,,, +09/30/2021,16:15,QUEENS,11377,40.757885,-73.898926,"(40.757885, -73.898926)",,,68-21 31 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462833,Station Wagon/Sport Utility Vehicle,Bike,,, +10/01/2021,13:45,,,40.857327,-73.904526,"(40.857327, -73.904526)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463735,Sedan,,,, +10/01/2021,7:30,QUEENS,11365,40.740463,-73.78193,"(40.740463, -73.78193)",,,194-01 64 CIRCLE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463119,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,10:30,QUEENS,11423,40.709217,-73.77562,"(40.709217, -73.77562)",,,184-10 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4462505,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,16:20,,,40.6992,-73.92309,"(40.6992, -73.92309)",STOCKHOLM STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462812,Sedan,Bike,,, +09/30/2021,20:01,,,40.628445,-74.15413,"(40.628445, -74.15413)",VANNAME AVENUE,NETHERLAND AVENUE,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,,,,4463176,Sedan,Sedan,,, +09/29/2021,12:50,QUEENS,11375,40.728954,-73.847565,"(40.728954, -73.847565)",67 AVENUE,108 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4462197,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,8:05,QUEENS,11423,40.726074,-73.77865,"(40.726074, -73.77865)",189 STREET,ABERDEEN ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,16:09,,,,,,MOTHER GASTON BOULEVARD,East NY Avenue,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463401,Sedan,,,, +09/25/2021,19:20,MANHATTAN,10022,,,,EAST 55 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passenger Distraction,,,,4463254,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,11:45,BROOKLYN,11236,40.63796,-73.89435,"(40.63796, -73.89435)",,,1802 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4462670,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/18/2021,2:00,QUEENS,11102,40.770306,-73.91901,"(40.770306, -73.91901)",30 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463189,Sedan,,,, +09/29/2021,11:10,STATEN ISLAND,10310,40.629345,-74.127205,"(40.629345, -74.127205)",GREENLEAF AVENUE,MARION STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing Too Closely,,,,4463447,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,16:16,BROOKLYN,11204,40.624855,-73.99195,"(40.624855, -73.99195)",60 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463370,Station Wagon/Sport Utility Vehicle,Bus,,, +09/16/2021,6:35,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462987,Taxi,,,, +10/01/2021,15:40,,,40.58751,-73.95234,"(40.58751, -73.95234)",EAST 17 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4463145,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/30/2021,20:28,MANHATTAN,10034,40.87022,-73.9147,"(40.87022, -73.9147)",WEST 216 STREET,10 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4462989,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,17:15,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462675,Sedan,Sedan,,, +09/29/2021,10:00,BROOKLYN,11203,40.653442,-73.93639,"(40.653442, -73.93639)",LINDEN BOULEVARD,TROY AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4463594,Tow Truck / Wrecker,Tractor Truck Diesel,,, +09/29/2021,13:50,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462283,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:00,BROOKLYN,11230,40.612846,-73.9552,"(40.612846, -73.9552)",,,1518 EAST 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4462376,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/30/2021,14:47,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4462661,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/30/2021,8:15,MANHATTAN,10026,40.798225,-73.9524,"(40.798225, -73.9524)",,,55 WEST 110 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462537,Bus,,,, +09/29/2021,16:20,BRONX,10463,40.88437,-73.90105,"(40.88437, -73.90105)",BROADWAY,WEST 237 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4462955,Tractor Truck Diesel,,,, +09/30/2021,0:00,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462631,Box Truck,Box Truck,,, +09/29/2021,9:15,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",SOUTH CONDUIT AVENUE,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,22:48,BROOKLYN,11221,40.693455,-73.913506,"(40.693455, -73.913506)",,,1309 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462823,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,16:33,MANHATTAN,10016,40.7463,-73.971664,"(40.7463, -73.971664)",1 AVENUE,EAST 38 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463051,Bike,Sedan,,, +09/29/2021,7:45,,,40.790253,-73.94564,"(40.790253, -73.94564)",EAST 104 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462302,Sedan,,,, +09/29/2021,10:00,BROOKLYN,11211,40.714214,-73.94773,"(40.714214, -73.94773)",LEONARD STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462801,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,7:45,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462162,Sedan,,,, +09/29/2021,16:49,,,40.829754,-73.87374,"(40.829754, -73.87374)",HARROD AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4462855,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,12:15,,,0,0,"(0.0, 0.0)",GOLD STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463546,Sedan,,,, +09/30/2021,15:55,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",ESSEX STREET,DELANCEY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462792,Sedan,,,, +09/29/2021,8:29,MANHATTAN,10016,40.74616,-73.97913,"(40.74616, -73.97913)",,,155 EAST 34 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4462274,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/01/2021,10:02,,,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462982,,,,, +09/30/2021,7:28,BROOKLYN,11233,40.674496,-73.90629,"(40.674496, -73.90629)",SACKMAN STREET,DEAN STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462708,Sedan,Sedan,,, +10/01/2021,17:40,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463021,Sedan,Sedan,,, +09/29/2021,21:30,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463293,Bike,,,, +09/29/2021,22:25,QUEENS,11378,40.718273,-73.90219,"(40.718273, -73.90219)",FRESH POND ROAD,61 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4462423,Moped,Sedan,,, +12/27/2021,13:15,,,40.84664,-73.92568,"(40.84664, -73.92568)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490157,Sedan,Van,,, +03/31/2022,13:50,BROOKLYN,11229,40.600224,-73.96032,"(40.600224, -73.96032)",,,2009 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515280,Tractor Truck Gasoline,Sedan,,, +09/30/2021,13:50,BROOKLYN,11215,40.668102,-73.980576,"(40.668102, -73.980576)",7 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,0:00,BRONX,10464,40.85221,-73.78818,"(40.85221, -73.78818)",BEACH STREET,MINNIEFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463824,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,11:45,MANHATTAN,10003,40.735085,-73.98735,"(40.735085, -73.98735)",,,138 EAST 16 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462258,Sedan,Carry All,,, +09/29/2021,10:00,,,40.83639,-73.91588,"(40.83639, -73.91588)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462876,Taxi,,,, +10/01/2021,9:30,QUEENS,11417,40.67215,-73.843185,"(40.67215, -73.843185)",CROSS BAY BOULEVARD,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4463898,Sedan,,,, +09/30/2021,13:40,BROOKLYN,11222,40.725906,-73.9354,"(40.725906, -73.9354)",MEEKER AVENUE,VARICK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462734,Sedan,Box Truck,,, +10/01/2021,12:30,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4463891,Sedan,Sedan,Sedan,, +09/29/2021,19:50,BRONX,10461,40.842876,-73.844734,"(40.842876, -73.844734)",,,1416 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462592,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,14:35,QUEENS,11385,40.70922,-73.90588,"(40.70922, -73.90588)",,,2118 MENAHAN STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463516,E-Bike,,,, +12/27/2021,13:30,QUEENS,11377,40.757847,-73.89922,"(40.757847, -73.89922)",68 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490417,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,16:56,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463134,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,14:00,BROOKLYN,11206,40.69496,-73.93978,"(40.69496, -73.93978)",,,721 WILLOUGHBY AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463570,Sedan,,,, +10/01/2021,8:40,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",SUTPHIN BOULEVARD,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462950,Sedan,,,, +09/29/2021,18:13,QUEENS,11361,40.760105,-73.77013,"(40.760105, -73.77013)",,,213-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462324,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,14:20,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4462448,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/27/2021,7:23,,,,,,65 STREET,74 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4463092,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/01/2021,14:49,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463239,Sedan,Sedan,,, +09/25/2021,5:30,QUEENS,11433,,,,,,106-13 GUY R BREWER BLVD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463672,Sedan,,,, +10/01/2021,15:04,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463014,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/29/2021,8:40,,,40.723835,-73.97357,"(40.723835, -73.97357)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4462494,Sedan,Sedan,,, +09/30/2021,10:05,,,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unsafe Lane Changing,Unspecified,,,4463488,Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,16:02,QUEENS,11106,40.763035,-73.924515,"(40.763035, -73.924515)",,,31-57 31 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4462816,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/30/2021,1:07,BRONX,10459,40.830933,-73.89156,"(40.830933, -73.89156)",,,1294 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462466,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,8:36,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463376,Tractor Truck Diesel,,,, +09/29/2021,15:20,,,40.7406,-73.879326,"(40.7406, -73.879326)",DONGAN AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462369,Station Wagon/Sport Utility Vehicle,Bike,,, +10/01/2021,12:55,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHAMBERS STREET,CHURCH STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463103,Sedan,,,, +09/30/2021,5:30,,,40.75426,-73.74334,"(40.75426, -73.74334)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4462566,Tractor Truck Diesel,Tractor Truck Diesel,Tractor Truck Diesel,, +09/29/2021,8:35,BRONX,10469,40.87746,-73.853745,"(40.87746, -73.853745)",EAST 215 STREET,LACONIA AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4462650,,,,, +09/15/2021,16:09,MANHATTAN,10003,40.725693,-73.989784,"(40.725693, -73.989784)",,,50 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463290,Bike,Sedan,,, +09/26/2021,20:00,BROOKLYN,11208,40.6767,-73.86747,"(40.6767, -73.86747)",LINCOLN AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463746,Sedan,,,, +10/01/2021,8:47,,,40.819424,-73.955574,"(40.819424, -73.955574)",WEST 134 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462829,Sedan,Sedan,,, +09/29/2021,14:30,QUEENS,11413,40.682106,-73.74126,"(40.682106, -73.74126)",,,130-26 226 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4462314,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/29/2021,13:24,,,40.66618,-73.88316,"(40.66618, -73.88316)",ASHFORD STREET,NEW LOTS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463806,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,17:59,QUEENS,11103,40.76527,-73.90729,"(40.76527, -73.90729)",,,25-86 46 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463180,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,9:00,BROOKLYN,11211,40.708496,-73.96234,"(40.708496, -73.96234)",,,156 SOUTH 9 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,23:32,MANHATTAN,10128,40.778046,-73.94808,"(40.778046, -73.94808)",,,401 EAST 88 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463707,Sedan,Sedan,,, +09/27/2021,7:53,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463716,Sedan,Sedan,,, +09/30/2021,5:04,,,40.683086,-73.85416,"(40.683086, -73.85416)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462582,Sedan,Sedan,,, +09/29/2021,13:34,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4462770,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +09/30/2021,8:40,BRONX,10472,40.827297,-73.86919,"(40.827297, -73.86919)",WATSON AVENUE,NOBLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462861,Sedan,Sedan,,, +09/29/2021,15:30,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Following Too Closely,,,,4462309,Sedan,Sedan,,, +10/01/2021,15:10,MANHATTAN,10002,40.711483,-73.987404,"(40.711483, -73.987404)",,,282 CHERRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462977,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,6:30,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462114,,,,, +09/30/2021,1:00,BRONX,10470,40.897404,-73.86262,"(40.897404, -73.86262)",WEBSTER AVENUE,EAST 234 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4462615,Sedan,,,, +12/27/2021,17:35,QUEENS,11368,40.743095,-73.867485,"(40.743095, -73.867485)",,,47-29 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4490091,Ambulance,,,, +09/29/2021,17:44,BROOKLYN,11212,40.668415,-73.91042,"(40.668415, -73.91042)",BELMONT AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462713,Station Wagon/Sport Utility Vehicle,Van,,, +10/01/2021,11:57,MANHATTAN,10017,40.75457,-73.97169,"(40.75457, -73.97169)",EAST 48 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462919,Bike,Sedan,,, +09/29/2021,12:55,,,0,0,"(0.0, 0.0)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463459,Sedan,Sedan,,, +12/24/2021,18:32,MANHATTAN,10001,40.745876,-73.992035,"(40.745876, -73.992035)",,,127 WEST 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490380,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:27,BROOKLYN,11231,40.679943,-73.98956,"(40.679943, -73.98956)",BOND STREET,UNION STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463061,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,17:40,BROOKLYN,11207,40.6598,-73.88516,"(40.6598, -73.88516)",,,816 VAN SICLEN AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4463799,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,1:00,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4462844,Sedan,Sedan,,, +09/29/2021,17:30,QUEENS,11419,40.687706,-73.82588,"(40.687706, -73.82588)",118 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4462351,Sedan,Sedan,,, +10/01/2021,17:40,,,40.685127,-73.90643,"(40.685127, -73.90643)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4463026,Station Wagon/Sport Utility Vehicle,Bus,,, +09/30/2021,14:06,BROOKLYN,11234,40.61649,-73.92857,"(40.61649, -73.92857)",AVENUE O,EAST 48 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4462695,Sedan,Sedan,Sedan,, +09/29/2021,17:55,BROOKLYN,11206,40.710587,-73.94711,"(40.710587, -73.94711)",LEONARD STREET,MAUJER STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462647,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,11:30,QUEENS,11422,40.67888,-73.728905,"(40.67888, -73.728905)",,,129-33 BROOKVILLE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4462546,Sedan,,,, +10/01/2021,17:25,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463009,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/30/2021,8:30,STATEN ISLAND,10301,40.640686,-74.09538,"(40.640686, -74.09538)",,,91 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463434,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,15:55,MANHATTAN,10013,0,0,"(0.0, 0.0)",WALKER STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4463473,Beverage Truck,Sedan,,, +09/14/2021,16:45,MANHATTAN,10036,40.76161,-73.99032,"(40.76161, -73.99032)",9 AVENUE,WEST 47 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4462887,Bike,,,, +09/06/2021,16:57,MANHATTAN,10038,40.71192,-73.99833,"(40.71192, -73.99833)",,,33 MADISON STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4463332,Sedan,,,, +09/29/2021,0:00,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",DELANCEY STREET,ORCHARD STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462797,E-Scooter,,,, +10/01/2021,8:32,BRONX,10461,40.853806,-73.855286,"(40.853806, -73.855286)",NEILL AVENUE,TOMLINSON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462904,Sedan,E-Scooter,,, +09/29/2021,9:00,BROOKLYN,11222,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,APOLLO STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463862,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,7:12,BROOKLYN,11212,40.67079,-73.903275,"(40.67079, -73.903275)",PITKIN AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463041,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,16:30,,,40.64316,-74.01922,"(40.64316, -74.01922)",3 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463222,Sedan,Sedan,,, +10/01/2021,2:18,QUEENS,11368,40.7366,-73.856674,"(40.7366, -73.856674)",,,98-17 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4462745,,,,, +09/30/2021,17:11,BROOKLYN,11226,40.642944,-73.95862,"(40.642944, -73.95862)",,,460 EAST 21 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463426,Sedan,Moped,,, +09/30/2021,0:00,,,40.711384,-73.8366,"(40.711384, -73.8366)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462775,Box Truck,,,, +09/29/2021,22:30,QUEENS,11377,40.73446,-73.900024,"(40.73446, -73.900024)",,,51-39 65 PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462962,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,15:00,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",VANDAM STREET,REVIEW AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462945,Sedan,Sedan,,, +09/27/2021,17:26,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463343,Sedan,Box Truck,,, +09/29/2021,14:30,,,40.6893,-73.81629,"(40.6893, -73.81629)",129 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,22:00,QUEENS,11004,40.74545,-73.70838,"(40.74545, -73.70838)",263 STREET,80 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463019,Sedan,Sedan,,, +09/29/2021,9:49,QUEENS,11372,40.755753,-73.883514,"(40.755753, -73.883514)",84 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Passing Too Closely,Driver Inattention/Distraction,,,,4462719,Motorcycle,Sedan,,, +09/30/2021,16:30,QUEENS,11372,40.749687,-73.88147,"(40.749687, -73.88147)",,,37-52 85 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463004,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,17:40,BROOKLYN,11211,40.707684,-73.96275,"(40.707684, -73.96275)",DRIGGS AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462414,Sedan,Sedan,,, +10/01/2021,2:25,,,40.60478,-73.97711,"(40.60478, -73.97711)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463315,Sedan,Sedan,,, +09/29/2021,20:30,MANHATTAN,10281,40.714527,-74.015686,"(40.714527, -74.015686)",,,250 VESEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462558,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,20:00,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4463169,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,18:19,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463031,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,15:00,,,40.66626,-73.99596,"(40.66626, -73.99596)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462337,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/11/2021,1:15,MANHATTAN,10019,40.767395,-73.99634,"(40.767395, -73.99634)",12 AVENUE,WEST 51 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462893,Sedan,Sedan,,, +09/08/2021,17:00,BROOKLYN,11212,40.667095,-73.92276,"(40.667095, -73.92276)",EAST NEW YORK AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463410,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,16:20,BRONX,10460,40.843548,-73.87031,"(40.843548, -73.87031)",MORRIS PARK AVENUE,TAYLOR AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463128,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +10/01/2021,7:10,QUEENS,11435,40.704483,-73.81419,"(40.704483, -73.81419)",,,139-29 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4462930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,15:49,QUEENS,11432,40.70612,-73.79882,"(40.70612, -73.79882)",,,89-74 162 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462296,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,11:22,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",MAIN STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:47,,,0,0,"(0.0, 0.0)",VANDERBILT AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4462621,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,0:00,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463771,Sedan,Sedan,,, +10/01/2021,21:31,MANHATTAN,10010,40.73722,-73.9814,"(40.73722, -73.9814)",EAST 22 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463481,Bike,Taxi,,, +10/01/2021,20:12,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463619,Sedan,Sedan,,, +10/01/2021,17:40,,,40.64934,-73.94264,"(40.64934, -73.94264)",SNYDER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463036,Sedan,Motorcycle,,, +09/25/2021,10:55,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4463512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/17/2021,0:00,BRONX,10472,40.830227,-73.8748,"(40.830227, -73.8748)",,,1225 MORRISON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463246,Station Wagon/Sport Utility Vehicle,Bus,,, +10/01/2021,17:45,,,40.839825,-73.93257,"(40.839825, -73.93257)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463557,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,14:33,,,40.84528,-73.83453,"(40.84528, -73.83453)",WESTCHESTER AVENUE,MAYFLOWER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490185,Sedan,,,, +07/26/2021,10:10,,,40.88385,-73.89438,"(40.88385, -73.89438)",CANNON PLACE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463087,Dump,,,, +09/29/2021,19:25,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4462443,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/30/2021,0:00,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462523,Bus,Sedan,,, +09/29/2021,17:40,QUEENS,11373,40.7455,-73.87952,"(40.7455, -73.87952)",,,41-35 HAMPTON STREET,1,0,0,0,1,0,0,0,Unsafe Speed,View Obstructed/Limited,,,,4462364,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,1:28,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4462726,Sedan,,,, +09/11/2021,21:59,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462872,Station Wagon/Sport Utility Vehicle,Bike,,, +09/30/2021,15:10,BROOKLYN,11201,40.70206,-73.99262,"(40.70206, -73.99262)",CADMAN PLAZA WEST,HICKS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463536,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,15:30,BRONX,10460,,,,ittner place,washington avenue,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463829,Pick-up Truck,,,, +09/30/2021,22:00,BROOKLYN,11201,40.69099,-73.99175,"(40.69099, -73.99175)",COURT STREET,SCHERMERHORN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463507,Sedan,Sedan,,, +09/23/2021,9:00,,,40.86794,-73.87221,"(40.86794, -73.87221)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463108,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,7:00,BRONX,10458,40.86663,-73.88647,"(40.86663, -73.88647)",EAST 198 STREET,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462931,Sedan,,,, +09/17/2021,14:59,QUEENS,11102,40.77226,-73.92591,"(40.77226, -73.92591)",ASTORIA BOULEVARD,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463679,Sedan,,,, +09/29/2021,16:00,QUEENS,11372,40.754646,-73.88143,"(40.754646, -73.88143)",,,33-46 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462396,Sedan,,,, +09/29/2021,19:00,QUEENS,11101,40.753456,-73.941414,"(40.753456, -73.941414)",41 AVENUE,22 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462809,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/01/2021,16:07,,,40.829697,-73.91313,"(40.829697, -73.91313)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463600,Sedan,,,, +09/30/2021,15:00,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463245,Carry All,Sedan,,, +09/30/2021,11:31,BROOKLYN,11204,40.627117,-73.9896,"(40.627117, -73.9896)",56 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463372,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,19:05,STATEN ISLAND,10306,40.569706,-74.144394,"(40.569706, -74.144394)",CLARKE AVENUE,SAINT PATRICK PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463046,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,19:39,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",CRESCENT STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463800,Sedan,Sedan,,, +09/30/2021,17:33,QUEENS,11432,40.71071,-73.793045,"(40.71071, -73.793045)",169 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4463120,Sedan,Bus,,, +09/24/2021,9:20,,,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463834,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,14:15,,,40.6491,-73.94649,"(40.6491, -73.94649)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462657,Sedan,,,, +09/30/2021,21:00,STATEN ISLAND,10304,40.63255,-74.07796,"(40.63255, -74.07796)",CLINTON STREET,BREWSTER STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4463439,Sedan,,,, +09/30/2021,14:55,MANHATTAN,10027,40.814793,-73.95629,"(40.814793, -73.95629)",,,520 WEST 126 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4463273,Bike,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,11:30,BRONX,10460,40.836708,-73.868195,"(40.836708, -73.868195)",MERRILL STREET,SAINT LAWRENCE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462865,Sedan,Sedan,,, +09/28/2021,0:00,BROOKLYN,11221,40.687256,-73.9286,"(40.687256, -73.9286)",,,703 MADISON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463463,Sedan,Dump,,, +09/28/2021,7:15,BROOKLYN,11208,40.674526,-73.875175,"(40.674526, -73.875175)",,,221 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463750,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,10:00,MANHATTAN,10014,40.737545,-74.00387,"(40.737545, -74.00387)",WEST 12 STREET,WEST 4 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462571,Sedan,,,, +10/01/2021,15:02,QUEENS,11364,40.75076,-73.757835,"(40.75076, -73.757835)",SPRINGFIELD BOULEVARD,58 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4463018,Station Wagon/Sport Utility Vehicle,Bus,,, +09/30/2021,19:47,BRONX,10453,40.846954,-73.91863,"(40.846954, -73.91863)",NELSON AVENUE,WEST 174 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Backing Unsafely,,,,4462804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,14:56,,,40.70058,-73.80775,"(40.70058, -73.80775)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4463698,Sedan,Bus,,, +09/30/2021,19:05,MANHATTAN,10019,40.76241,-73.984436,"(40.76241, -73.984436)",,,241 WEST 51 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4462699,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,3:49,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4462402,Sedan,,,, +09/30/2021,22:21,QUEENS,11385,40.69276,-73.89499,"(40.69276, -73.89499)",,,80-88 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4462973,Sedan,Tractor Truck Diesel,,, +09/28/2021,12:00,BROOKLYN,11207,40.66112,-73.897125,"(40.66112, -73.897125)",,,477 NEWPORT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463728,Sedan,,,, +09/30/2021,16:00,,,40.6651,-73.94539,"(40.6651, -73.94539)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462689,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,0:00,MANHATTAN,10011,40.73539,-73.99828,"(40.73539, -73.99828)",AVENUE OF THE AMERICAS,WEST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462574,Sedan,Bus,,, +09/29/2021,3:17,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4462073,Sedan,Bike,,, +09/29/2021,18:36,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,16:15,BROOKLYN,11210,40.613506,-73.954094,"(40.613506, -73.954094)",OCEAN AVENUE,AVENUE O,,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4463415,Sedan,Bike,,, +09/30/2021,20:24,MANHATTAN,10014,,,,8 AVENUE,Bleeker street,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4462915,E-Bike,,,, +09/28/2021,13:40,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4462848,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +09/30/2021,18:52,MANHATTAN,10027,40.80534,-73.94571,"(40.80534, -73.94571)",,,19 WEST 122 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4462841,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,8:05,BRONX,10467,40.874313,-73.868164,"(40.874313, -73.868164)",,,3352 OLINVILLE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,17:00,BROOKLYN,11238,40.685734,-73.9694,"(40.685734, -73.9694)",,,396 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462313,Sedan,,,, +12/15/2021,21:30,,,40.84196,-73.915306,"(40.84196, -73.915306)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490387,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,15:05,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463521,Sedan,Sedan,,, +09/29/2021,21:10,,,,,,CROSS BRONX EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,9:48,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4462217,Sedan,,,, +10/01/2021,16:46,MANHATTAN,10036,40.762127,-73.99739,"(40.762127, -73.99739)",WEST 44 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463075,Bus,Tractor Truck Diesel,,, +10/01/2021,8:35,QUEENS,11434,40.673008,-73.78809,"(40.673008, -73.78809)",150 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462883,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,17:39,,,,,,9 AVENUE,WEST 14 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463850,Pick-up Truck,,,, +10/01/2021,8:20,QUEENS,11354,40.769024,-73.81641,"(40.769024, -73.81641)",33 AVENUE,149 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4463164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,10:45,BROOKLYN,11208,40.680244,-73.87661,"(40.680244, -73.87661)",ATLANTIC AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463784,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,12:45,QUEENS,11375,40.734295,-73.85031,"(40.734295, -73.85031)",63 ROAD,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4462900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:18,BROOKLYN,11234,40.61448,-73.92641,"(40.61448, -73.92641)",UTICA AVENUE,FILLMORE AVENUE,,6,0,0,0,0,0,6,0,Unspecified,Unspecified,Unspecified,,,4463095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/01/2021,8:08,BROOKLYN,11223,40.609776,-73.9643,"(40.609776, -73.9643)",AVENUE P,EAST 9 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4462836,Bike,,,, +10/01/2021,18:35,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4462999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:05,BRONX,10457,,,,FULTON AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4462453,Bus,Sedan,,, +10/01/2021,6:20,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462941,Sedan,Flat Bed,,, +09/18/2021,3:50,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463561,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,23:43,,,40.60345,-74.009,"(40.60345, -74.009)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:44,MANHATTAN,10014,40.726955,-74.003456,"(40.726955, -74.003456)",CHARLTON STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463102,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,20:50,MANHATTAN,10019,40.769005,-73.992355,"(40.769005, -73.992355)",11 AVENUE,WEST 55 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463080,Sedan,,,, +10/01/2021,15:27,,,40.67712,-73.900475,"(40.67712, -73.900475)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4462958,Sedan,E-Bike,,, +10/01/2021,16:04,MANHATTAN,10024,40.78324,-73.97455,"(40.78324, -73.97455)",COLUMBUS AVENUE,WEST 81 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463530,Box Truck,Sedan,,, +09/30/2021,20:15,,,40.72225,-74.00592,"(40.72225, -74.00592)",AVENUE OF THE AMERICAS,CANAL STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4462784,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/30/2021,17:21,,,40.79485,-73.962364,"(40.79485, -73.962364)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4462627,Sedan,Bike,,, +05/28/2021,16:00,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422052,Van,,,, +10/01/2021,22:56,BROOKLYN,11233,40.679516,-73.91109,"(40.679516, -73.91109)",ROCKAWAY AVENUE,HULL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463060,Sedan,Sedan,,, +09/29/2021,3:40,MANHATTAN,10001,40.75175,-74.007935,"(40.75175, -74.007935)",WEST 26 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4462550,Sedan,Sedan,,, +04/20/2021,16:03,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4408960,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,14:20,MANHATTAN,10026,40.803104,-73.95825,"(40.803104, -73.95825)",MORNINGSIDE AVENUE,MANHATTAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4418090,Sedan,,,, +05/19/2021,10:35,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4418578,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,12:28,,,40.68218,-73.94659,"(40.68218, -73.94659)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419389,Sedan,,,, +05/20/2021,12:23,BROOKLYN,11229,40.615364,-73.94575,"(40.615364, -73.94575)",EAST 29 STREET,KINGS HIGHWAY,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420800,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,9:26,BROOKLYN,11236,40.646034,-73.91242,"(40.646034, -73.91242)",,,909 REMSEN AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4421454,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/26/2021,10:30,MANHATTAN,10027,40.813198,-73.95825,"(40.813198, -73.95825)",,,55 LASALLE STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4421817,Pick-up Truck,,,, +05/26/2021,10:30,,,,,,HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4420714,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,18:28,STATEN ISLAND,10305,40.60876,-74.07579,"(40.60876, -74.07579)",HYLAN BOULEVARD,COLTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421698,Sedan,,,, +05/28/2021,22:25,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",225 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421434,Sedan,Sedan,,, +05/28/2021,2:18,QUEENS,11101,40.74496,-73.935425,"(40.74496, -73.935425)",THOMSON AVENUE,31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421164,Taxi,Taxi,,, +05/27/2021,6:20,STATEN ISLAND,10306,40.58139,-74.10878,"(40.58139, -74.10878)",MIDLAND AVENUE,LISBON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420808,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:00,,,40.736187,-74.00833,"(40.736187, -74.00833)",WASHINGTON STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4421621,Station Wagon/Sport Utility Vehicle,TOW TRUCK,,, +05/26/2021,14:20,BRONX,10455,40.812317,-73.9094,"(40.812317, -73.9094)",,,510 JACKSON AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4420759,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/27/2021,13:40,,,40.694305,-73.91852,"(40.694305, -73.91852)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421282,Box Truck,Sedan,,, +05/26/2021,20:50,BROOKLYN,11236,40.649982,-73.91183,"(40.649982, -73.91183)",DITMAS AVENUE,EAST 94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421145,Sedan,,,, +05/26/2021,13:35,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",UNION AVENUE,HEYWARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421753,Sedan,Sedan,,, +05/17/2021,20:28,BROOKLYN,11203,40.654408,-73.946075,"(40.654408, -73.946075)",LENOX ROAD,EAST 34 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421847,Sedan,,,, +05/26/2021,6:28,STATEN ISLAND,10301,40.646458,-74.0893,"(40.646458, -74.0893)",YORK AVENUE,RICHMOND TERRACE,,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4421121,Sedan,Bike,,, +05/27/2021,0:25,BROOKLYN,11220,40.64943,-74.01296,"(40.64943, -74.01296)",3 AVENUE,47 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,17:38,,,40.817593,-73.95319,"(40.817593, -73.95319)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421819,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,16:55,QUEENS,11432,40.70774,-73.787346,"(40.70774, -73.787346)",,,172-32 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421321,Sedan,,,, +05/26/2021,0:00,,,40.75361,-73.90393,"(40.75361, -73.90393)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,9:20,MANHATTAN,10033,40.84721,-73.93979,"(40.84721, -73.93979)",FORT WASHINGTON AVENUE,WEST 176 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421271,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,20:20,MANHATTAN,10003,40.73529,-73.98782,"(40.73529, -73.98782)",EAST 16 STREET,IRVING PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420971,Sedan,Bike,,, +04/06/2021,6:15,,,40.671898,-73.92231,"(40.671898, -73.92231)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421905,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,0:19,,,40.734398,-73.9223,"(40.734398, -73.9223)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420397,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,21:21,MANHATTAN,10010,40.73991,-73.9857,"(40.73991, -73.9857)",,,113 EAST 23 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421653,Sedan,Bus,,, +05/28/2021,11:55,,,40.746113,-73.73576,"(40.746113, -73.73576)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4421358,Box Truck,,,, +05/27/2021,10:15,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421478,Bus,Sedan,,, +10/01/2021,2:16,QUEENS,11375,40.71498,-73.83206,"(40.71498, -73.83206)",,,118-12 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4462897,Sedan,,,, +05/27/2021,16:06,BRONX,10460,40.839798,-73.873604,"(40.839798, -73.873604)",EAST TREMONT AVENUE,MORRIS PARK AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Fell Asleep,,,,4421284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,15:40,QUEENS,11362,0,0,"(0.0, 0.0)",,,49-37 ANNANDALE LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421150,Sedan,,,, +05/27/2021,7:17,,,40.67983,-74.00353,"(40.67983, -74.00353)",HAMILTON AVENUE,BROOKLYN QNS EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,22:28,QUEENS,11103,40.771523,-73.914314,"(40.771523, -73.914314)",24 AVENUE,33 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421980,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,5:00,QUEENS,11411,40.701748,-73.734055,"(40.701748, -73.734055)",,,223-02 114 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,6:37,MANHATTAN,10024,40.78065,-73.97643,"(40.78065, -73.97643)",WEST 77 STREET,COLUMBUS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421385,Sedan,Bike,,, +05/20/2021,17:15,MANHATTAN,10011,40.734165,-73.997215,"(40.734165, -73.997215)",,,55 WEST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421623,Sedan,,,, +05/28/2021,17:55,QUEENS,11370,40.76102,-73.88826,"(40.76102, -73.88826)",80 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/26/2021,17:00,MANHATTAN,10007,40.715096,-74.00683,"(40.715096, -74.00683)",,,71 READE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420779,Sedan,,,, +05/27/2021,11:58,MANHATTAN,10017,40.749157,-73.9727,"(40.749157, -73.9727)",2 AVENUE,EAST 41 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421495,Station Wagon/Sport Utility Vehicle,Bike,,, +05/22/2021,12:00,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421572,Pick-up Truck,Sedan,Sedan,, +05/26/2021,11:47,,,40.86682,-73.83923,"(40.86682, -73.83923)",EAST GUN HILL ROAD,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420945,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/26/2021,10:38,BROOKLYN,11234,40.61556,-73.91367,"(40.61556, -73.91367)",,,6216 AVENUE U,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4421038,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,15:00,,,40.586765,-74.14617,"(40.586765, -74.14617)",,,1336 FOREST HILL ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422030,Bike,,,, +05/27/2021,19:45,,,,,,LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421091,Pick-up Truck,Sedan,,, +05/26/2021,18:30,,,40.61074,-73.97919,"(40.61074, -73.97919)",AVENUE O,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421587,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,2:43,MANHATTAN,10007,40.717186,-74.0129,"(40.717186, -74.0129)",WEST STREET,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420439,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,0:00,BROOKLYN,11213,40.669907,-73.939384,"(40.669907, -73.939384)",,,302 ALBANY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421785,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,0:30,,,40.85664,-73.86663,"(40.85664, -73.86663)",PELHAM PARKWAY SOUTH,CRUGER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421252,Sedan,Bike,,, +05/26/2021,21:40,,,40.744556,-73.870834,"(40.744556, -73.870834)",94 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4420786,Sedan,Sedan,Sedan,, +05/27/2021,10:30,BROOKLYN,11215,40.666203,-73.97666,"(40.666203, -73.97666)",,,590 7 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420989,Sedan,,,, +05/27/2021,18:15,BROOKLYN,11222,40.72916,-73.95383,"(40.72916, -73.95383)",,,853 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421178,Pick-up Truck,Sedan,,, +09/29/2021,14:33,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,EXTERIOR STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462368,Sedan,E-Bike,,, +05/27/2021,11:00,,,40.67642,-73.94154,"(40.67642, -73.94154)",DEAN STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4421793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/26/2021,17:50,BROOKLYN,11215,40.675144,-73.98133,"(40.675144, -73.98133)",CARROLL STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4421243,Sedan,,,, +05/27/2021,23:30,,,40.725273,-73.89286,"(40.725273, -73.89286)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421465,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,13:00,,,,,,MEEKER AVENUE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4421314,Refrigerated Van,Sedan,,, +05/28/2021,16:00,QUEENS,11361,40.77075,-73.78581,"(40.77075, -73.78581)",32 AVENUE,204 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421417,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,10:45,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",CHRYSTIE STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421024,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,5:30,,,40.676834,-74.00146,"(40.676834, -74.00146)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421489,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,16:24,BRONX,10473,40.820297,-73.854645,"(40.820297, -73.854645)",SEWARD AVENUE,PUGSLEY AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420926,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,17:16,,,40.82259,-73.8872,"(40.82259, -73.8872)",BRUCKNER BOULEVARD,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421400,Tractor Truck Diesel,Motorcycle,,, +05/26/2021,23:20,BROOKLYN,11210,40.629677,-73.94151,"(40.629677, -73.94151)",AVENUE I,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421770,Sedan,Sedan,,, +05/26/2021,1:45,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420494,Sedan,,,, +05/27/2021,10:10,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421185,Garbage or Refuse,PK,,, +05/27/2021,14:20,BRONX,10455,0,0,"(0.0, 0.0)",,,650 MELROSE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421184,Sedan,Motorcycle,,, +05/26/2021,17:21,,,40.799957,-73.96053,"(40.799957, -73.96053)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420678,Taxi,FIRE TRUCK,,, +05/28/2021,6:50,QUEENS,11413,40.665485,-73.755646,"(40.665485, -73.755646)",,,222-06 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421336,Sedan,Sedan,,, +05/27/2021,7:16,QUEENS,11434,40.66737,-73.78266,"(40.66737, -73.78266)",NORTH CONDUIT AVENUE,CRANSTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421353,Sedan,,,, +05/26/2021,8:15,BROOKLYN,11226,40.64271,-73.95548,"(40.64271, -73.95548)",,,301 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420813,Sedan,,,, +05/27/2021,17:54,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",EAST TREMONT AVENUE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421303,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/19/2021,17:25,BROOKLYN,11212,40.6691,-73.911545,"(40.6691, -73.911545)",,,95 CHESTER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421683,Sedan,Sedan,,, +05/28/2021,11:09,,,40.789085,-73.780464,"(40.789085, -73.780464)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,,,4421546,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/17/2021,14:50,QUEENS,11433,40.704853,-73.791664,"(40.704853, -73.791664)",ARCHER AVENUE,168 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421275,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,16:30,BROOKLYN,11212,40.661232,-73.91051,"(40.661232, -73.91051)",,,407 BRISTOL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421707,Sedan,,,, +05/24/2021,11:34,MANHATTAN,10024,40.78133,-73.978096,"(40.78133, -73.978096)",,,160 WEST 77 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421520,Sedan,,,, +05/27/2021,17:48,BROOKLYN,11228,40.609356,-74.01523,"(40.609356, -74.01523)",14 AVENUE,BATH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421594,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/28/2021,16:25,BROOKLYN,11203,40.653503,-73.935425,"(40.653503, -73.935425)",LINDEN BOULEVARD,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,16:25,,,40.836468,-73.937035,"(40.836468, -73.937035)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421915,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,13:50,BROOKLYN,11203,40.65303,-73.94304,"(40.65303, -73.94304)",LINDEN BOULEVARD,EAST 37 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4421131,Sedan,Sedan,,, +05/20/2021,9:00,BRONX,10474,40.81167,-73.88384,"(40.81167, -73.88384)",,,559 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421341,Sedan,,,, +05/26/2021,23:08,BRONX,10460,40.83241,-73.89072,"(40.83241, -73.89072)",JENNINGS STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4420828,Sedan,Sedan,,, +05/28/2021,16:15,,,40.730194,-73.887566,"(40.730194, -73.887566)",74 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4421879,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,8:54,BRONX,10462,40.845646,-73.864044,"(40.845646, -73.864044)",,,756 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421482,Station Wagon/Sport Utility Vehicle,,,, +05/08/2021,21:00,STATEN ISLAND,10304,40.61037,-74.09264,"(40.61037, -74.09264)",,,755 NARROWS ROAD NORTH,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4421727,Sedan,,,, +05/27/2021,4:10,,,40.665092,-73.87063,"(40.665092, -73.87063)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420886,Tractor Truck Diesel,Sedan,,, +05/27/2021,5:26,,,40.842335,-73.91619,"(40.842335, -73.91619)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421207,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,18:02,QUEENS,11368,40.74333,-73.86264,"(40.74333, -73.86264)",,,49-06 99 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,8:30,QUEENS,11372,40.7568,-73.873665,"(40.7568, -73.873665)",NORTHERN BOULEVARD,JUNCTION BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420900,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,13:29,BROOKLYN,11236,40.64024,-73.91947,"(40.64024, -73.91947)",FOSTER AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420605,Sedan,Sedan,,, +05/27/2021,9:00,BRONX,10456,40.828384,-73.90283,"(40.828384, -73.90283)",HOME STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421664,Sedan,,,, +05/28/2021,9:50,,,40.76595,-73.80984,"(40.76595, -73.80984)",35 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4421538,Sedan,Sedan,Sedan,Sedan, +05/27/2021,21:00,MANHATTAN,10002,40.720005,-73.98747,"(40.720005, -73.98747)",,,131 ESSEX STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4421744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,14:20,,,40.820263,-73.92976,"(40.820263, -73.92976)",RIVER AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4421220,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,8:00,QUEENS,11420,40.668987,-73.80462,"(40.668987, -73.80462)",,,134-12 133 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420571,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,18:10,QUEENS,11106,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421972,Taxi,Sedan,,, +10/01/2021,23:10,MANHATTAN,10013,40.717888,-73.99809,"(40.717888, -73.99809)",,,124 MULBERRY STREET,0,0,0,0,0,0,0,0,,,,,,4463333,,,,, +05/27/2021,15:04,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421058,Sedan,Tractor Truck Diesel,,, +05/27/2021,14:20,QUEENS,11432,40.717247,-73.80344,"(40.717247, -73.80344)",,,82-68 164 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421084,Ambulance,,,, +05/27/2021,15:19,QUEENS,11412,40.691666,-73.76239,"(40.691666, -73.76239)",FARMERS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421105,Sedan,Sedan,,, +05/28/2021,13:00,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421368,Sedan,Dump,,, +10/01/2021,23:40,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463868,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,7:40,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4420590,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/26/2021,10:38,BRONX,10454,40.80705,-73.91734,"(40.80705, -73.91734)",,,223 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420573,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/01/2021,12:15,BRONX,10454,40.804344,-73.92158,"(40.804344, -73.92158)",BRUCKNER BOULEVARD,BROOK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463200,Dump,Sedan,,, +05/27/2021,11:55,BROOKLYN,11222,40.73735,-73.95479,"(40.73735, -73.95479)",,,37 BOX STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421001,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,14:12,BRONX,10455,40.81721,-73.916,"(40.81721, -73.916)",EAST 151 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421189,Sedan,Sedan,,, +05/26/2021,5:45,BROOKLYN,11217,40.688374,-73.979614,"(40.688374, -73.979614)",,,570 FULTON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4420667,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,0:40,QUEENS,11373,40.731182,-73.871605,"(40.731182, -73.871605)",WOODHAVEN BOULEVARD,WETHEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463027,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,16:45,BRONX,10465,40.830196,-73.82817,"(40.830196, -73.82817)",CALHOUN AVENUE,BARKLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421565,Sedan,,,, +05/26/2021,9:52,,,40.689217,-73.917656,"(40.689217, -73.917656)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420522,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/28/2021,17:28,,,40.674,-73.960396,"(40.674, -73.960396)",CLASSON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421373,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/26/2021,12:20,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4420897,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,11:24,QUEENS,11101,40.744347,-73.92891,"(40.744347, -73.92891)",QUEENS BOULEVARD,36 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421556,Sedan,,,, +05/28/2021,1:09,BRONX,10457,40.83648,-73.897736,"(40.83648, -73.897736)",CROTONA AVENUE,CLAREMONT PARKWAY,,5,0,0,0,0,0,5,0,Alcohol Involvement,Unspecified,,,,4421668,Sedan,Ambulance,,, +05/27/2021,16:15,QUEENS,11416,40.682106,-73.84584,"(40.682106, -73.84584)",94 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421171,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,10:25,BRONX,10462,40.835136,-73.86308,"(40.835136, -73.86308)",,,1384 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4421307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,21:00,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",WILLIS AVENUE,EAST 138 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4420770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:28,,,40.781025,-73.981316,"(40.781025, -73.981316)",BROADWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4421390,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,22:17,QUEENS,11694,40.58663,-73.8209,"(40.58663, -73.8209)",BEACH CHANNEL DRIVE,BEACH 98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421422,Sedan,,,, +09/23/2021,12:35,MANHATTAN,10026,40.797737,-73.949425,"(40.797737, -73.949425)",,,8 WEST 111 STREET,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4462926,Sedan,,,, +05/25/2021,21:30,BROOKLYN,11203,,,,,,5614 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,,,,,4421855,Sedan,,,, +05/27/2021,1:10,BROOKLYN,11204,40.61445,-73.98081,"(40.61445, -73.98081)",64 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,8:29,BROOKLYN,11223,40.60886,-73.965065,"(40.60886, -73.965065)",,,1633 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421607,Bus,,,, +05/25/2021,19:45,BROOKLYN,11204,40.624096,-73.988754,"(40.624096, -73.988754)",,,5884 17 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4421689,Station Wagon/Sport Utility Vehicle,Bike,,, +05/26/2021,13:40,BROOKLYN,11206,40.704414,-73.944466,"(40.704414, -73.944466)",,,62 MANHATTAN AVENUE,1,0,0,0,1,0,0,0,Obstruction/Debris,Unspecified,,,,4420792,Bike,Sedan,,, +10/01/2021,15:36,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,WEST 181 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463552,Bike,Motorcycle,,, +05/28/2021,10:14,BRONX,10451,40.825573,-73.918465,"(40.825573, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,21:50,,,40.613586,-74.08267,"(40.613586, -74.08267)",PARK HILL AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4421156,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,2:25,BRONX,10462,40.830696,-73.849075,"(40.830696, -73.849075)",,,2250 HAVILAND AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4420919,Box Truck,Sedan,,, +05/28/2021,14:40,MANHATTAN,10032,40.837894,-73.94239,"(40.837894, -73.94239)",,,600 WEST 163 STREET,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4421921,Taxi,E-Bike,,, +05/25/2021,0:45,,,,,,BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421345,Sedan,Sedan,,, +09/30/2021,10:50,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462741,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,4:30,,,40.839478,-73.883896,"(40.839478, -73.883896)",BOSTON ROAD,VYSE AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4420834,Box Truck,,,, +05/27/2021,8:05,BROOKLYN,11212,40.666885,-73.911964,"(40.666885, -73.911964)",SUTTER AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421710,Sedan,Sedan,,, +05/26/2021,14:43,,,40.81133,-73.96403,"(40.81133, -73.96403)",WEST 120 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4421837,Bike,,,, +05/27/2021,7:30,,,40.656082,-73.95306,"(40.656082, -73.95306)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Passing Too Closely,,,,4421362,Sedan,Sedan,,, +05/28/2021,21:25,BRONX,10457,40.85185,-73.902725,"(40.85185, -73.902725)",EAST BURNSIDE AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421446,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/26/2021,18:00,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421762,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,15:00,QUEENS,11377,40.75976,-73.90062,"(40.75976, -73.90062)",,,62-49 30 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420907,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,8:00,QUEENS,11385,40.702522,-73.88693,"(40.702522, -73.88693)",,,71-34 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420551,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,21:25,BRONX,10461,40.838978,-73.84744,"(40.838978, -73.84744)",FRISBY AVENUE,ROWLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421224,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,14:40,,,40.6802,-73.953285,"(40.6802, -73.953285)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4421782,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,8:00,BRONX,10471,40.90167,-73.90612,"(40.90167, -73.90612)",WEST 254 STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420625,Sedan,,,, +05/27/2021,15:15,BRONX,10466,40.88042,-73.84427,"(40.88042, -73.84427)",EAST 223 STREET,NEEDHAM AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4421968,Pick-up Truck,Sedan,Sedan,, +05/26/2021,12:30,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,EAST 138 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4420748,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,17:08,BRONX,10455,40.81316,-73.90048,"(40.81316, -73.90048)",,,660 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4421409,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,12:37,QUEENS,11435,40.704426,-73.80555,"(40.704426, -73.80555)",,,89-14 150 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421048,Sedan,,,, +05/26/2021,9:50,BROOKLYN,11210,40.62456,-73.95228,"(40.62456, -73.95228)",,,1073 EAST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421640,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,7:00,,,40.85111,-73.93061,"(40.85111, -73.93061)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421798,Station Wagon/Sport Utility Vehicle,unknown,,, +05/25/2021,8:45,,,40.765354,-73.81733,"(40.765354, -73.81733)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421219,Sedan,,,, +05/26/2021,14:48,BRONX,10456,40.82338,-73.902885,"(40.82338, -73.902885)",,,975 TINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420827,Pick-up Truck,,,, +09/29/2021,11:00,QUEENS,11102,40.766434,-73.921776,"(40.766434, -73.921776)",,,30-12 31 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462384,Sedan,Sedan,,, +05/28/2021,3:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421251,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,15:30,QUEENS,11417,40.67332,-73.8464,"(40.67332, -73.8464)",PITKIN AVENUE,SITKA STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,14:44,QUEENS,11692,40.59506,-73.79455,"(40.59506, -73.79455)",,,65-04 THURSBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421101,Pick-up Truck,,,, +05/26/2021,16:22,BROOKLYN,11222,40.72384,-73.941345,"(40.72384, -73.941345)",,,198 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420726,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,16:40,QUEENS,11377,40.73502,-73.896034,"(40.73502, -73.896034)",CALAMUS AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421011,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,8:15,BRONX,10460,40.842625,-73.87818,"(40.842625, -73.87818)",EAST 180 STREET,BOSTON ROAD,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4420578,Sedan,Sedan,Sedan,, +05/26/2021,22:20,,,40.603493,-74.067345,"(40.603493, -74.067345)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4420944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,13:55,,,40.7014,-73.91858,"(40.7014, -73.91858)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421278,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,0:00,,,40.63459,-73.93825,"(40.63459, -73.93825)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4421867,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,20:00,,,40.687504,-73.91465,"(40.687504, -73.91465)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421295,Convertible,Sedan,,, +05/26/2021,16:38,,,,,,CITY ISLAND CIRCLE,PARK DRIVE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420965,E-Bike,Sedan,,, +05/27/2021,11:45,QUEENS,11434,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4421111,Sedan,Sedan,Sedan,, +05/26/2021,18:10,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420865,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,14:45,,,,,,WEST STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421616,Sedan,Sedan,,, +05/27/2021,12:30,,,40.575542,-73.96487,"(40.575542, -73.96487)",BRIGHTON 2 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,15:22,BROOKLYN,11208,40.67312,-73.878654,"(40.67312, -73.878654)",BELMONT AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463753,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,16:20,,,40.76889,-73.9821,"(40.76889, -73.9821)",WEST 60 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421394,Sedan,Sedan,,, +05/28/2021,7:30,MANHATTAN,10019,40.76286,-73.98941,"(40.76286, -73.98941)",WEST 49 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421246,Box Truck,Sedan,,, +05/27/2021,17:54,QUEENS,11412,40.697285,-73.75645,"(40.697285, -73.75645)",115 AVENUE,197 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4421106,Sedan,Sedan,,, +05/27/2021,18:20,QUEENS,11414,40.662666,-73.83972,"(40.662666, -73.83972)",157 AVENUE,94 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4421175,Sedan,Bike,,, +05/25/2021,8:00,,,40.608154,-74.18262,"(40.608154, -74.18262)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,0:20,MANHATTAN,10010,40.73978,-73.97952,"(40.73978, -73.97952)",2 AVENUE,EAST 26 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420936,Sedan,Sedan,,, +05/28/2021,15:12,,,,,,3 AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4421455,Sedan,Bike,,, +05/27/2021,9:33,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420996,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,15:00,QUEENS,11423,40.71049,-73.7766,"(40.71049, -73.7766)",91 AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421288,Sedan,Box Truck,,, +05/28/2021,14:25,STATEN ISLAND,10301,40.638554,-74.08174,"(40.638554, -74.08174)",WESTERVELT AVENUE,SCRIBNER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421732,Sedan,,,, +05/26/2021,10:30,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420764,Sedan,Sedan,,, +05/27/2021,3:35,BROOKLYN,11218,,,,OCEAN PARKWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4420975,Garbage or Refuse,Sedan,,, +05/27/2021,1:30,,,,,,COLLEGE POINT BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420787,Sedan,Tractor Truck Diesel,,, +05/27/2021,23:38,,,40.820004,-73.95888,"(40.820004, -73.95888)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421317,Sedan,,,, +05/27/2021,21:35,MANHATTAN,10031,40.83147,-73.94678,"(40.83147, -73.94678)",BROADWAY,WEST 153 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421895,MOPED,,,, +05/27/2021,15:05,QUEENS,11363,40.76872,-73.7492,"(40.76872, -73.7492)",,,234-21 41 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421146,Sedan,Sedan,,, +05/28/2021,13:45,QUEENS,11101,40.748924,-73.937386,"(40.748924, -73.937386)",QUEENS BOULEVARD,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421377,Sedan,Carry All,,, +05/25/2021,15:29,MANHATTAN,10033,40.85111,-73.93061,"(40.85111, -73.93061)",AUDUBON AVENUE,WEST 185 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421695,Sedan,,,, +12/27/2021,15:35,BRONX,10470,40.9046,-73.852936,"(40.9046, -73.852936)",EAST 241 STREET,CARPENTER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4490300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,2:12,QUEENS,11105,40.779633,-73.91084,"(40.779633, -73.91084)",21 AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421964,Sedan,Sedan,,, +05/27/2021,14:15,BROOKLYN,11233,40.67069,-73.91703,"(40.67069, -73.91703)",EASTERN PARKWAY,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4421714,Sedan,Sedan,Sedan,Sedan, +05/26/2021,12:30,BROOKLYN,11203,40.65416,-73.92483,"(40.65416, -73.92483)",EAST 56 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4421840,Sedan,Sedan,,, +05/25/2021,12:16,BROOKLYN,11237,40.7025,-73.91633,"(40.7025, -73.91633)",WYCKOFF AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421283,Ambulance,Armored Truck,,, +05/27/2021,13:00,BRONX,10474,40.813072,-73.88996,"(40.813072, -73.88996)",,,667 CASANOVA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421405,Sedan,,,, +05/26/2021,20:40,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",50 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420734,E-Scooter,Sedan,,, +05/28/2021,14:00,,,40.666416,-73.80631,"(40.666416, -73.80631)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4421990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/21/2021,10:00,MANHATTAN,10014,40.732605,-74.00883,"(40.732605, -74.00883)",,,154 CHRISTOPHER STREET,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4421634,Sedan,,,, +05/26/2021,16:35,BROOKLYN,11225,40.661606,-73.9503,"(40.661606, -73.9503)",,,363 LINCOLN ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420821,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/27/2021,15:30,BRONX,10453,40.850494,-73.91546,"(40.850494, -73.91546)",UNIVERSITY AVENUE,WEST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421198,Sedan,Sedan,,, +05/17/2021,7:30,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421503,Sedan,Sedan,Flat Bed,, +05/26/2021,14:00,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE EXTENSION,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421043,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,11:45,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4421440,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,10:00,QUEENS,11695,40.566185,-73.881966,"(40.566185, -73.881966)",,,402 BEACH 169 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4421792,Tractor Truck Diesel,,,, +05/28/2021,16:21,BRONX,10451,,,,EAST 138 STREET,GERARD AVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421510,Ambulance,Sedan,,, +05/28/2021,21:00,,,40.819046,-73.944695,"(40.819046, -73.944695)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4421579,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,5:55,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4420953,Sedan,,,, +05/27/2021,15:30,,,40.66223,-73.93997,"(40.66223, -73.93997)",ALBANY AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421074,Sedan,Bike,,, +05/28/2021,5:28,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4421940,Dump,Van,Sedan,Sedan, +05/16/2021,14:20,,,40.69979,-73.950096,"(40.69979, -73.950096)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4421775,Pick-up Truck,Bike,,, +05/27/2021,19:05,BRONX,10462,40.85678,-73.86192,"(40.85678, -73.86192)",PELHAM PARKWAY SOUTH,MULINER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4421256,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/26/2021,14:30,BROOKLYN,11206,40.703217,-73.94427,"(40.703217, -73.94427)",,,30 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420802,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:25,MANHATTAN,10001,40.749443,-73.99285,"(40.749443, -73.99285)",,,220 WEST 31 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4421646,Bike,,,, +05/27/2021,21:55,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Other Vehicular,,,,4421197,Sedan,Sedan,,, +05/26/2021,18:30,,,40.8327,-73.950226,"(40.8327, -73.950226)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4420743,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/26/2021,16:34,MANHATTAN,10019,,,,WEST 54 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,17:25,BRONX,10460,40.84175,-73.88546,"(40.84175, -73.88546)",ELSMERE PLACE,CROTONA PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421471,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,19:15,,,40.72656,-73.972046,"(40.72656, -73.972046)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422049,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,18:00,QUEENS,11354,40.768936,-73.834335,"(40.768936, -73.834335)",31 ROAD,STRATTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421214,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,15:33,STATEN ISLAND,10301,40.61242,-74.09936,"(40.61242, -74.09936)",CLOVE ROAD,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422014,Sedan,Sedan,,, +05/26/2021,20:55,MANHATTAN,10012,40.72179,-73.99986,"(40.72179, -73.99986)",BROADWAY,BROOME STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420780,Sedan,Sedan,,, +05/26/2021,0:00,BROOKLYN,11201,40.693604,-73.99275,"(40.693604, -73.99275)",REMSEN STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420982,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,11:00,BRONX,10469,40.883617,-73.85516,"(40.883617, -73.85516)",,,918 EAST 222 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421231,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,1:50,QUEENS,11103,40.764267,-73.9158,"(40.764267, -73.9158)",38 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420407,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,15:40,QUEENS,11428,40.720375,-73.73226,"(40.720375, -73.73226)",222 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421016,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,2:00,BROOKLYN,11206,40.708626,-73.94513,"(40.708626, -73.94513)",MANHATTAN AVENUE,SCHOLES STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4421756,Garbage or Refuse,Sedan,,, +05/27/2021,16:08,QUEENS,11415,40.706806,-73.825,"(40.706806, -73.825)",,,84-92 127 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4421310,Station Wagon/Sport Utility Vehicle,,,, +05/07/2021,23:05,BRONX,10452,40.836105,-73.917435,"(40.836105, -73.917435)",GRAND VIEW PLACE,EAST 168 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4421330,Sedan,Bike,,, +05/27/2021,16:20,QUEENS,11423,40.72037,-73.76102,"(40.72037, -73.76102)",,,204-04 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421095,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,18:07,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4420721,Sedan,Sedan,,, +05/26/2021,15:40,BRONX,10457,40.842175,-73.89231,"(40.842175, -73.89231)",,,731 EAST 175 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4420931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,9:15,QUEENS,11101,,,,,,1127 47 RD,0,0,0,0,0,0,0,0,Unspecified,,,,,4421090,Garbage or Refuse,,,, +10/01/2021,12:20,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",EAST 144 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463205,Dump,,,, +05/27/2021,6:25,QUEENS,11414,40.65797,-73.848274,"(40.65797, -73.848274)",159 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4420970,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/24/2021,5:39,MANHATTAN,10032,40.83468,-73.944435,"(40.83468, -73.944435)",WEST 158 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4421255,Station Wagon/Sport Utility Vehicle,electric s,,, +05/26/2021,1:55,BROOKLYN,11222,40.724262,-73.93766,"(40.724262, -73.93766)",MEEKER AVENUE,APOLLO STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420446,Carry All,Sedan,,, +05/25/2021,16:30,MANHATTAN,10025,40.804886,-73.96248,"(40.804886, -73.96248)",AMSTERDAM AVENUE,WEST 113 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421860,Taxi,Pick-up Truck,,, +05/26/2021,17:26,BROOKLYN,11232,40.644424,-73.998604,"(40.644424, -73.998604)",,,845 43 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4420990,Sedan,,,, +05/26/2021,12:00,QUEENS,11355,40.75723,-73.81715,"(40.75723, -73.81715)",,,146-41 CHERRY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420693,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,4:20,,,,,,GRAND CENTRAL PARKWAY,69 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421179,Taxi,Sedan,,, +05/26/2021,12:54,BROOKLYN,11207,40.684513,-73.909386,"(40.684513, -73.909386)",MOFFAT STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420781,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,13:20,,,,,,,,145 fatherzeiser place,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421315,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,21:26,BROOKLYN,11213,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,SAINT JOHNS PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421906,,,,, +05/26/2021,19:20,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421242,Sedan,Sedan,,, +05/26/2021,16:15,,,40.674717,-74.01332,"(40.674717, -74.01332)",RICHARDS STREET,VAN DYKE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421490,Sedan,,,, +05/26/2021,16:30,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4421025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:47,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4421332,Sedan,Sedan,,, +05/26/2021,17:18,QUEENS,11378,40.7216,-73.912994,"(40.7216, -73.912994)",RUST STREET,57 DRIVE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421472,Sedan,Bike,,, +05/27/2021,0:00,BRONX,10475,40.870396,-73.8259,"(40.870396, -73.8259)",COOP CITY BOULEVARD,ASCH LOOP,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421349,Sedan,,,, +05/28/2021,9:26,,,40.57275,-73.997055,"(40.57275, -73.997055)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4421676,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/25/2021,10:55,,,,,,,,905? WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,19:30,,,40.83543,-73.92341,"(40.83543, -73.92341)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420736,Taxi,,,, +05/27/2021,6:30,BRONX,10462,40.832085,-73.85536,"(40.832085, -73.85536)",,,2043 ELLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420924,Sedan,,,, +05/28/2021,17:50,MANHATTAN,10014,40.73222,-74.00356,"(40.73222, -74.00356)",7 AVENUE SOUTH,BLEECKER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421622,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,21:00,STATEN ISLAND,10301,40.647255,-74.087944,"(40.647255, -74.087944)",,,456 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421700,Sedan,,,, +05/26/2021,13:18,BROOKLYN,11222,40.72835,-73.95339,"(40.72835, -73.95339)",,,820 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421180,Box Truck,,,, +05/26/2021,10:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420950,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,17:19,,,40.813797,-73.94987,"(40.813797, -73.94987)",WEST 130 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Following Too Closely,,,4421165,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/15/2021,9:00,,,40.715763,-73.74654,"(40.715763, -73.74654)",212 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421337,Pick-up Truck,Sedan,,, +05/26/2021,19:10,BRONX,10454,40.80682,-73.91749,"(40.80682, -73.91749)",SAINT ANNS AVENUE,EAST 138 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420760,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,13:55,QUEENS,11357,40.778713,-73.806206,"(40.778713, -73.806206)",WILLETS POINT BOULEVARD,157 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4421545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,14:00,BROOKLYN,11220,40.635303,-74.00617,"(40.635303, -74.00617)",9 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421684,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,12:40,,,40.672966,-73.941864,"(40.672966, -73.941864)",PARK PLACE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421123,Sedan,E-Bike,,, +05/27/2021,17:40,BROOKLYN,11203,40.642014,-73.9313,"(40.642014, -73.9313)",EAST 48 STREET,AVENUE D,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421848,Bike,,,, +05/28/2021,0:17,,,40.60487,-74.02955,"(40.60487, -74.02955)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,,,,4421941,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,15:03,BROOKLYN,11217,40.682487,-73.979614,"(40.682487, -73.979614)",BERGEN STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421820,Sedan,E-Bike,,, +05/27/2021,16:25,BROOKLYN,11214,40.603054,-74.00825,"(40.603054, -74.00825)",CROPSEY AVENUE,BAY 17 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421593,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,18:20,QUEENS,11378,40.714268,-73.90571,"(40.714268, -73.90571)",,,60-58 60 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4462963,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,20:00,BRONX,10456,40.827785,-73.90434,"(40.827785, -73.90434)",,,1125 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421655,Sedan,,,, +05/27/2021,17:35,QUEENS,11433,40.707893,-73.78675,"(40.707893, -73.78675)",JAMAICA AVENUE,173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421925,Sedan,FDNY EMS,,, +05/27/2021,15:20,QUEENS,11367,40.72527,-73.816154,"(40.72527, -73.816154)",150 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421085,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,11:15,,,,,,,,1 GULF AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421009,Sedan,,,, +05/25/2021,17:00,BROOKLYN,11234,40.63267,-73.93101,"(40.63267, -73.93101)",,,4718 AVENUE H,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421771,Sedan,Bike,,, +05/27/2021,16:30,QUEENS,11365,40.74575,-73.78901,"(40.74575, -73.78901)",188 STREET,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421147,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,10:00,MANHATTAN,10006,40.70754,-74.01311,"(40.70754, -74.01311)",,,47 TRINITY PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420577,Box Truck,Van,,, +05/26/2021,8:10,MANHATTAN,10024,40.788864,-73.971855,"(40.788864, -73.971855)",,,132 WEST 89 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420591,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,18:30,BRONX,10474,40.820004,-73.888885,"(40.820004, -73.888885)",GARRISON AVENUE,IRVINE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421401,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/26/2021,14:00,,,40.58196,-73.959946,"(40.58196, -73.959946)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4420838,Tractor Truck Gasoline,,,, +05/24/2021,12:42,BROOKLYN,11212,40.66484,-73.91494,"(40.66484, -73.91494)",,,130 BLAKE AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4421713,Sedan,Sedan,,, +05/28/2021,15:40,STATEN ISLAND,10306,40.55381,-74.134995,"(40.55381, -74.134995)",BAY TERRACE,DURANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421364,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/27/2021,11:40,,,,,,BEACH 17 STREET,SEAGRIT BOULEVARD,,1,0,1,0,0,0,0,0,Obstruction/Debris,,,,,4421192,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,15:05,MANHATTAN,10013,40.715683,-73.99751,"(40.715683, -73.99751)",,,8 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421080,Sedan,Pick-up Truck,,, +05/26/2021,9:28,,,40.745686,-73.97213,"(40.745686, -73.97213)",EAST 37 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420715,Van,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,0:15,BRONX,10466,40.89154,-73.84127,"(40.89154, -73.84127)",,,4031 WILDER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4421227,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/27/2021,8:00,QUEENS,11001,40.727226,-73.71051,"(40.727226, -73.71051)",JAMAICA AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420911,Pick-up Truck,Sedan,,, +05/27/2021,14:50,BROOKLYN,11235,40.59241,-73.95327,"(40.59241, -73.95327)",AVENUE X,EAST 17 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,4421210,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/28/2021,15:15,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,197 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4421514,Sedan,Sedan,,, +05/28/2021,23:30,QUEENS,11411,40.69636,-73.74459,"(40.69636, -73.74459)",LINDEN BOULEVARD,NASHVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4421435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,16:50,BRONX,10466,40.89074,-73.84,"(40.89074, -73.84)",STRANG AVENUE,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421232,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,21:49,BRONX,10469,40.86759,-73.85095,"(40.86759, -73.85095)",THROOP AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421037,Sedan,Sedan,,, +05/27/2021,1:14,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421671,Sedan,FOOD CART,,, +05/26/2021,11:00,BRONX,10472,40.82789,-73.85012,"(40.82789, -73.85012)",,,1011 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420556,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:43,BROOKLYN,11206,40.707493,-73.94153,"(40.707493, -73.94153)",HUMBOLDT STREET,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),,,,,4420807,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,15:45,,,,,,EAST NEW YORK AVENUE,HERKIMER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420866,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/27/2021,8:05,BROOKLYN,11212,40.675106,-73.90438,"(40.675106, -73.90438)",EAST NEW YORK AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,12:20,BRONX,10475,40.860004,-73.825424,"(40.860004, -73.825424)",ERSKINE PLACE,PALMER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4421571,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,10:45,,,40.748646,-73.794815,"(40.748646, -73.794815)",FRESH MEADOW LANE,GLADWIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,12:40,QUEENS,11354,40.764347,-73.82595,"(40.764347, -73.82595)",NORTHERN BOULEVARD,BOWNE STREET,,3,0,0,0,0,0,3,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4420747,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,23:20,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,AVENUE D,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421854,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,15:26,MANHATTAN,10032,40.83258,-73.943344,"(40.83258, -73.943344)",,,520 WEST 156 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4421270,Sedan,Sedan,,, +05/26/2021,5:53,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420966,Pick-up Truck,Box Truck,,, +05/27/2021,16:50,BROOKLYN,11211,40.71245,-73.95247,"(40.71245, -73.95247)",,,444 KEAP STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421754,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,14:00,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421369,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,9:00,QUEENS,11423,40.71471,-73.75471,"(40.71471, -73.75471)",FRANCIS LEWIS BOULEVARD,94 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421287,Sedan,Tractor Truck Diesel,,, +05/27/2021,7:01,,,40.69611,-73.96406,"(40.69611, -73.96406)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420995,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,16:46,,,40.73986,-73.79012,"(40.73986, -73.79012)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,22:43,QUEENS,11377,40.737354,-73.918915,"(40.737354, -73.918915)",50 AVENUE,47 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4421160,Bike,,,, +05/26/2021,14:45,QUEENS,11429,40.711876,-73.73029,"(40.711876, -73.73029)",224 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420703,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,19:37,,,,,,EAST 58 STREET,EDKOCH BRIDGE ROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421428,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/29/2021,14:20,,,40.674885,-73.927765,"(40.674885, -73.927765)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421794,Station Wagon/Sport Utility Vehicle,,,, +09/23/2022,22:00,,,40.811565,-73.942726,"(40.811565, -73.942726)",LENOX AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4567309,Bus,Moped,,, +05/27/2021,19:45,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421759,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,13:22,BROOKLYN,11215,40.666695,-73.98992,"(40.666695, -73.98992)",,,230 14 STREET,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4421238,Sedan,Sedan,,, +05/26/2021,0:00,BRONX,10458,40.876495,-73.88321,"(40.876495, -73.88321)",VANCORTLANDT AVENUE EAST,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4420754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,19:06,BROOKLYN,11236,40.636337,-73.919044,"(40.636337, -73.919044)",,,1663 RALPH AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421115,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,8:47,BRONX,10457,40.852787,-73.89663,"(40.852787, -73.89663)",PARK AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421477,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,9:20,MANHATTAN,10023,40.776398,-73.98328,"(40.776398, -73.98328)",,,190 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4421386,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,21:10,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4421325,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,12:25,STATEN ISLAND,10301,40.612854,-74.102646,"(40.612854, -74.102646)",OSWEGO STREET,SENECA AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4421728,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,11:00,QUEENS,11358,40.773357,-73.79366,"(40.773357, -73.79366)",26 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421813,Sedan,Sedan,,, +05/25/2021,3:24,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4421264,Garbage or Refuse,Lunch Wagon,,, +05/28/2021,7:15,QUEENS,11435,,,,Archer avenue,Sutphin blvd,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,21:52,,,40.734093,-74.0085,"(40.734093, -74.0085)",CHARLES STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,13:50,BROOKLYN,11385,40.703434,-73.91181,"(40.703434, -73.91181)",CYPRESS AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4421494,Sedan,Tractor Truck Diesel,,, +05/27/2021,13:00,,,40.71154,-73.83624,"(40.71154, -73.83624)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421354,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,16:50,QUEENS,11358,40.751785,-73.80705,"(40.751785, -73.80705)",160 STREET,LABURNUM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4421539,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/22/2021,13:20,,,40.827774,-73.945755,"(40.827774, -73.945755)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421259,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,14:30,,,40.68438,-73.94702,"(40.68438, -73.94702)",MARCY AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4421747,Sedan,Bike,,, +05/27/2021,17:40,QUEENS,11375,40.72636,-73.84854,"(40.72636, -73.84854)",68 AVENUE,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421109,Sedan,Sedan,,, +05/28/2021,23:50,,,40.769333,-73.912445,"(40.769333, -73.912445)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421973,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,14:45,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422075,Flat Bed,Moped,,, +05/27/2021,14:55,MANHATTAN,10025,40.79525,-73.97321,"(40.79525, -73.97321)",WEST 96 STREET,WEST END AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4421054,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,0:25,QUEENS,11101,40.748924,-73.937386,"(40.748924, -73.937386)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420957,Sedan,Bike,,, +05/26/2021,20:40,BRONX,10472,40.830532,-73.86147,"(40.830532, -73.86147)",,,1901 GLEASON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421322,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,11:50,,,40.612637,-73.974785,"(40.612637, -73.974785)",,,DAHILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4421588,Station Wagon/Sport Utility Vehicle,,,, +05/19/2021,10:44,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421381,Sedan,Sedan,,, +05/27/2021,23:00,,,40.785507,-73.98394,"(40.785507, -73.98394)",WEST 79 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4421519,Sedan,,,, +05/22/2021,4:12,QUEENS,11692,40.5921,-73.79404,"(40.5921, -73.79404)",,,335 BEACH 65 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4421786,Sedan,,,, +05/27/2021,14:38,QUEENS,11694,40.578423,-73.84139,"(40.578423, -73.84139)",ROCKAWAY BEACH BOULEVARD,BEACH 121 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421102,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,18:55,QUEENS,11385,40.70255,-73.88984,"(40.70255, -73.88984)",CENTRAL AVENUE,65 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4421459,Sedan,Sedan,,, +05/27/2021,16:00,QUEENS,11432,40.707115,-73.797966,"(40.707115, -73.797966)",,,163-10 89 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421920,Sedan,,,, +05/26/2021,8:30,BRONX,10459,40.830975,-73.89158,"(40.830975, -73.89158)",,,1327 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420832,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,18:50,QUEENS,11362,40.760586,-73.73126,"(40.760586, -73.73126)",,,249-32 HORACE HARDING EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4421418,Sedan,,,, +05/28/2021,21:57,,,40.870014,-73.832436,"(40.870014, -73.832436)",BAYCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421567,Sedan,Sedan,,, +05/28/2021,22:40,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4421989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,18:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4421206,Tractor Truck Diesel,,,, +05/26/2021,6:50,BRONX,10468,40.880478,-73.88594,"(40.880478, -73.88594)",WEST MOSHOLU PARKWAY SOUTH,PAUL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420486,Sedan,,,, +05/26/2021,14:00,QUEENS,11106,40.756893,-73.93044,"(40.756893, -73.93044)",,,30-14 36 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420905,Station Wagon/Sport Utility Vehicle,Van,,, +05/28/2021,21:10,QUEENS,11369,40.76448,-73.86633,"(40.76448, -73.86633)",27 AVENUE,ERICSSON STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Aggressive Driving/Road Rage,,,,4422062,Sedan,Sedan,,, +05/27/2021,22:19,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421188,Sedan,Sedan,,, +05/26/2021,17:30,QUEENS,11420,40.67013,-73.80938,"(40.67013, -73.80938)",130 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420670,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,0:00,MANHATTAN,10027,40.81316,-73.950356,"(40.81316, -73.950356)",SAINT NICHOLAS AVENUE,WEST 129 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421155,Sedan,,,, +05/26/2021,23:05,BROOKLYN,11207,40.660656,-73.8809,"(40.660656, -73.8809)",,,765 STANLEY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4420879,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/28/2021,19:25,,,40.834198,-73.85169,"(40.834198, -73.85169)",CASTLE HILL AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,18:44,BROOKLYN,11226,40.64935,-73.96329,"(40.64935, -73.96329)",,,1720 CHURCH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4420812,Sedan,,,, +05/25/2021,4:55,,,40.68578,-73.9544,"(40.68578, -73.9544)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4421778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/28/2021,11:08,BROOKLYN,11238,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,CLASSON AVENUE,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4421413,Sedan,Sedan,,, +09/28/2021,11:20,BROOKLYN,11232,40.650146,-74.00508,"(40.650146, -74.00508)",41 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463630,Sedan,Sedan,,, +05/23/2021,16:45,,,,,,CITY ISLAND AVENUE,CITY ISLAND CIRCLE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421223,Sedan,,,, +05/27/2021,21:07,BRONX,10457,,,,EAST TREMONT AVENUE,Third Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421302,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,18:30,BRONX,10466,40.902233,-73.843666,"(40.902233, -73.843666)",HILL AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422019,Sedan,Sedan,,, +05/27/2021,16:15,BROOKLYN,11221,40.68617,-73.94448,"(40.68617, -73.94448)",TOMPKINS AVENUE,MONROE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4421766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,13:25,BRONX,10455,40.81676,-73.917465,"(40.81676, -73.917465)",MELROSE AVENUE,EAST 150 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420769,Sedan,,,, +05/27/2021,18:45,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,7:40,,,40.88415,-73.82607,"(40.88415, -73.82607)",NEW ENGLAND THRUWAY,CONNER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4421274,Sedan,Sedan,,, +05/26/2021,20:26,,,40.833588,-73.8615,"(40.833588, -73.8615)",CROSS BRONX EXPY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4421000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/28/2021,23:05,BROOKLYN,11213,40.67533,-73.93609,"(40.67533, -73.93609)",BERGEN STREET,TROY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421804,Sedan,,,, +05/28/2021,9:20,QUEENS,11435,40.700768,-73.81019,"(40.700768, -73.81019)",144 PLACE,91 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4421291,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,14:00,QUEENS,11373,40.741394,-73.8848,"(40.741394, -73.8848)",80 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420791,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,10:30,BROOKLYN,11235,40.583252,-73.952515,"(40.583252, -73.952515)",EMMONS AVENUE,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420958,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:55,BROOKLYN,11210,40.639717,-73.94549,"(40.639717, -73.94549)",,,1362 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421130,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/01/2021,8:20,QUEENS,11373,40.736164,-73.87677,"(40.736164, -73.87677)",QUEENS BOULEVARD,54 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462868,Sedan,,,, +05/27/2021,2:15,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Keep Right,,,,,4420725,Sedan,,,, +05/27/2021,8:40,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421357,Bus,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,15:13,BROOKLYN,11229,40.599144,-73.95356,"(40.599144, -73.95356)",AVENUE U,EAST 18 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421609,Sedan,,,, +05/27/2021,5:45,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4420912,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/23/2021,0:00,BRONX,10474,40.81707,-73.88525,"(40.81707, -73.88525)",LAFAYETTE AVENUE,LONGFELLOW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,8:49,BROOKLYN,11236,40.653378,-73.90658,"(40.653378, -73.90658)",ROCKAWAY AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421481,Sedan,,,, +05/28/2021,17:00,BRONX,10469,40.859257,-73.840004,"(40.859257, -73.840004)",ASTOR AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4421836,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,17:30,QUEENS,11385,40.70559,-73.86599,"(40.70559, -73.86599)",78 AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421501,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,16:26,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4421279,Ambulance,Sedan,Sedan,, +05/28/2021,14:15,MANHATTAN,10013,40.719936,-74.001434,"(40.719936, -74.001434)",BROADWAY,HOWARD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421451,Sedan,,,, +05/28/2021,12:48,,,40.763485,-73.98895,"(40.763485, -73.98895)",9 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421329,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,19:40,BROOKLYN,11232,40.651955,-74.008095,"(40.651955, -74.008095)",,,362 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421443,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,15:19,BRONX,10454,40.808723,-73.92201,"(40.808723, -73.92201)",,,420 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421292,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,11:45,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421393,Station Wagon/Sport Utility Vehicle,Van,,, +05/27/2021,22:59,BROOKLYN,11231,40.676067,-74.00509,"(40.676067, -74.00509)",MILL STREET,HICKS STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4421491,Bike,,,, +05/28/2021,6:24,,,40.7672,-73.887825,"(40.7672, -73.887825)",82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421969,Sedan,Bus,,, +05/27/2021,21:37,,,,,,LAFAYETTE AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4421350,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,22:02,BRONX,10453,40.850494,-73.91546,"(40.850494, -73.91546)",WEST TREMONT AVENUE,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420938,Sedan,,,, +10/01/2021,3:05,BROOKLYN,11219,40.636494,-73.98701,"(40.636494, -73.98701)",14 AVENUE,44 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463365,Sedan,E-Bike,,, +05/28/2021,15:00,QUEENS,11417,40.681087,-73.846344,"(40.681087, -73.846344)",ROCKAWAY BOULEVARD,93 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421534,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,18:56,BRONX,10463,40.873676,-73.90815,"(40.873676, -73.90815)",,,50 WEST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420753,Sedan,,,, +05/28/2021,20:20,MANHATTAN,10016,40.747627,-73.976746,"(40.747627, -73.976746)",EAST 37 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421425,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,20:55,STATEN ISLAND,10304,40.616856,-74.0868,"(40.616856, -74.0868)",,,914 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421738,Sedan,Sedan,,, +05/27/2021,23:30,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4421193,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/19/2021,19:40,QUEENS,11378,40.725388,-73.90884,"(40.725388, -73.90884)",59 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421456,Sedan,Sedan,,, +05/25/2021,9:19,MANHATTAN,10003,40.730564,-73.99052,"(40.730564, -73.99052)",4 AVENUE,WANAMAKER PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422048,Sedan,,,, +05/28/2021,7:50,,,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422000,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/26/2021,14:00,BROOKLYN,11214,40.611675,-73.99931,"(40.611675, -73.99931)",,,1762 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421523,Sedan,,,, +05/28/2021,8:45,,,,,,HENRY HUDSON PARKWAY,WEST 151 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421318,Sedan,,,, +05/28/2021,19:10,,,40.82413,-73.94098,"(40.82413, -73.94098)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4421583,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/29/2021,12:48,QUEENS,11377,40.757492,-73.902664,"(40.757492, -73.902664)",,,60-01 31 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4463384,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,18:25,MANHATTAN,10030,40.821262,-73.94608,"(40.821262, -73.94608)",WEST 141 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,1,0,Glare,,,,,4421260,Sedan,,,, +05/28/2021,13:00,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421999,Sedan,,,, +05/27/2021,5:58,BROOKLYN,11207,40.674385,-73.88795,"(40.674385, -73.88795)",GLENMORE AVENUE,BARBEY STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420883,Sedan,Sedan,,, +05/27/2021,23:39,BROOKLYN,11203,40.655575,-73.926895,"(40.655575, -73.926895)",LENOX ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4421849,Sedan,Sedan,Sedan,, +05/28/2021,16:00,QUEENS,11433,40.701237,-73.79465,"(40.701237, -73.79465)",BREWER BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421560,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,1:40,,,40.825966,-73.862175,"(40.825966, -73.862175)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420515,Sedan,,,, +05/26/2021,12:56,,,40.745167,-73.82139,"(40.745167, -73.82139)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,18:58,MANHATTAN,10009,40.72369,-73.976036,"(40.72369, -73.976036)",EAST 8 STREET,AVENUE D,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422053,Pick-up Truck,,,, +05/28/2021,14:00,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4421372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,1:05,,,40.877068,-73.906105,"(40.877068, -73.906105)",WEST 230 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420601,Sedan,,,, +05/27/2021,14:00,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",EAST 163 STREET,TINTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421656,Sedan,,,, +05/27/2021,7:30,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",NORTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4421170,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,11:04,BROOKLYN,11238,40.684803,-73.97071,"(40.684803, -73.97071)",,,770 FULTON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421306,Sedan,Bike,,, +05/28/2021,13:00,BROOKLYN,11209,40.631283,-74.03082,"(40.631283, -74.03082)",,,7600 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421408,Sedan,Sedan,,, +05/26/2021,17:25,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,BEVERLEY ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420804,Bike,Taxi,,, +05/26/2021,22:55,BROOKLYN,11209,40.62226,-74.02749,"(40.62226, -74.02749)",,,436 86 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4420719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,14:59,,,0,0,"(0.0, 0.0)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462510,Box Truck,,,, +05/27/2021,4:26,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420795,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,16:43,,,40.68798,-73.9678,"(40.68798, -73.9678)",CLINTON AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4421137,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,11:05,BROOKLYN,11219,40.633812,-74.002174,"(40.633812, -74.002174)",,,1057 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,1:01,MANHATTAN,10029,40.79531,-73.93592,"(40.79531, -73.93592)",1 AVENUE,EAST 115 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420763,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,15:04,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420985,Bus,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:00,BROOKLYN,11214,40.594444,-73.98602,"(40.594444, -73.98602)",BENSON AVENUE,BAY 43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,1:19,,,40.71944,-73.84526,"(40.71944, -73.84526)",71 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4420411,Garbage or Refuse,,,, +05/27/2021,23:30,,,40.659336,-73.92726,"(40.659336, -73.92726)",EAST 54 STREET,WINTHROP STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421898,Sedan,Bike,,, +05/26/2021,19:50,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",30 AVENUE,STEINWAY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421018,Sedan,Bike,,, +05/28/2021,16:05,BRONX,10462,40.855957,-73.86768,"(40.855957, -73.86768)",,,2187 WHITE PLAINS ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4421439,Sedan,,,, +05/27/2021,18:20,QUEENS,11101,40.745815,-73.945656,"(40.745815, -73.945656)",23 STREET,JACKSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421159,Sedan,,,, +05/27/2021,21:10,,,40.61196,-73.96816,"(40.61196, -73.96816)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4421693,Sedan,,,, +05/26/2021,14:20,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",WEBSTER AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420930,Sedan,,,, +05/27/2021,19:45,,,40.68318,-73.7893,"(40.68318, -73.7893)",155 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4421311,Station Wagon/Sport Utility Vehicle,FDNY TRUCK,,, +05/27/2021,16:20,QUEENS,11377,40.745827,-73.90111,"(40.745827, -73.90111)",ROOSEVELT AVENUE,63 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421094,Taxi,Bike,,, +05/28/2021,12:15,QUEENS,11411,40.68871,-73.73944,"(40.68871, -73.73944)",,,120-20 224 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4421344,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,15:45,QUEENS,11385,40.70399,-73.85589,"(40.70399, -73.85589)",WOODHAVEN BOULEVARD,82 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421467,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,13:50,,,40.730713,-73.99557,"(40.730713, -73.99557)",UNIVERSITY PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421633,,,,, +05/27/2021,18:13,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,11:50,,,40.664173,-73.9449,"(40.664173, -73.9449)",BALFOUR PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4421361,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,17:20,BROOKLYN,11215,40.69925,-73.973206,"(40.69925, -73.973206)",7 AVENUE,8 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,0:00,,,40.86804,-73.879105,"(40.86804, -73.879105)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,,,,4462425,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,10:40,QUEENS,11423,40.713306,-73.77438,"(40.713306, -73.77438)",187 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421928,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,18:23,BROOKLYN,11229,40.6103,-73.959526,"(40.6103, -73.959526)",AVENUE P,EAST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421643,Box Truck,Sedan,,, +05/28/2021,15:35,,,40.57916,-73.98309,"(40.57916, -73.98309)",WEST 15 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421677,Sedan,Box Truck,,, +05/28/2021,18:55,QUEENS,11429,40.713913,-73.737915,"(40.713913, -73.737915)",,,218-08 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421389,Sedan,Sedan,,, +05/15/2021,12:45,MANHATTAN,10027,40.808857,-73.96586,"(40.808857, -73.96586)",RIVERSIDE DRIVE,WEST 116 STREET,,1,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4421862,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/28/2021,12:40,QUEENS,11378,40.728653,-73.895584,"(40.728653, -73.895584)",,,54-24 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421473,Sedan,Bus,,, +05/27/2021,20:00,,,40.737373,-73.71722,"(40.737373, -73.71722)",83 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4421554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/26/2021,13:25,MANHATTAN,10027,40.817543,-73.95694,"(40.817543, -73.95694)",BROADWAY,WEST 131 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4421811,Bike,,,, +05/14/2021,18:40,BROOKLYN,11203,40.63986,-73.92811,"(40.63986, -73.92811)",EAST 51 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,21:07,,,40.63926,-73.93777,"(40.63926, -73.93777)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421843,Sedan,Moped,,, +05/26/2021,7:55,QUEENS,11367,40.7158,-73.824486,"(40.7158, -73.824486)",134 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421081,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:50,,,40.836758,-73.930725,"(40.836758, -73.930725)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4421215,Motorbike,Van,,, +05/25/2021,7:00,QUEENS,11105,40.77534,-73.89769,"(40.77534, -73.89769)",,,19-40 45 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421961,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,10:01,,,40.62167,-73.991264,"(40.62167, -73.991264)",63 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421604,Sedan,,,, +05/28/2021,21:30,BROOKLYN,11220,40.638824,-74.02272,"(40.638824, -74.02272)",,,333 65 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421421,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,6:20,,,40.880257,-73.876785,"(40.880257, -73.876785)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,,4421228,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/20/2021,10:12,BROOKLYN,11217,40.68278,-73.98243,"(40.68278, -73.98243)",SAINT MARKS PLACE,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421316,Sedan,Armored Truck,,, +09/30/2021,11:05,BROOKLYN,11208,40.67239,-73.87463,"(40.67239, -73.87463)",FOUNTAIN AVENUE,SUTTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463807,,,,, +05/28/2021,10:20,BROOKLYN,11212,,,,CHRISTOPHER AVE,RIVERDALE AVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4421717,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,12:30,BROOKLYN,11207,40.65993,-73.88413,"(40.65993, -73.88413)",,,876 HENDRIX STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420876,Sedan,,,, +05/26/2021,0:50,,,40.732937,-73.920395,"(40.732937, -73.920395)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4420581,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,12:00,MANHATTAN,10007,40.71546,-74.00594,"(40.71546, -74.00594)",,,100 DUANE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420587,Sedan,Sedan,,, +05/26/2021,23:40,,,40.663303,-73.960625,"(40.663303, -73.960625)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4420822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,13:45,,,40.713596,-73.85964,"(40.713596, -73.85964)",YELLOWSTONE BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,6:30,,,40.90967,-73.90052,"(40.90967, -73.90052)",WEST 261 STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4420624,Sedan,Sedan,,, +05/27/2021,15:00,,,40.689022,-73.93925,"(40.689022, -73.93925)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Lane Marking Improper/Inadequate,,,,4421765,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,16:15,,,40.84512,-73.90663,"(40.84512, -73.90663)",CROSS BRONX EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:30,,,,,,BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421592,Sedan,,,, +05/26/2021,21:11,MANHATTAN,10035,40.80383,-73.94211,"(40.80383, -73.94211)",EAST 122 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4421042,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,13:00,QUEENS,11434,40.65948,-73.76785,"(40.65948, -73.76785)",,,148-02 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420702,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,10:40,QUEENS,11101,40.74754,-73.94124,"(40.74754, -73.94124)",JACKSON AVENUE,43 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421376,Sedan,E-Bike,,, +05/27/2021,7:24,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420893,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,14:10,QUEENS,11373,40.73403,-73.86913,"(40.73403, -73.86913)",,,59-01 92 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463260,Sedan,Sedan,,, +05/28/2021,11:20,QUEENS,11434,40.666492,-73.76536,"(40.666492, -73.76536)",SOUTH CONDUIT AVENUE,179 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4421506,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,5:20,BROOKLYN,11232,40.66457,-73.99713,"(40.66457, -73.99713)",20 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421079,Sedan,Motorcycle,,, +05/26/2021,10:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420543,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,20:47,QUEENS,11368,40.747158,-73.86286,"(40.747158, -73.86286)",43 AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421247,Sedan,Sedan,,, +05/26/2021,20:00,MANHATTAN,10065,40.760857,-73.961075,"(40.760857, -73.961075)",1 AVENUE,EAST 61 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420824,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,4:50,QUEENS,11417,40.673645,-73.84719,"(40.673645, -73.84719)",,,88-57 PITKIN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421174,Sedan,,,, +05/28/2021,0:05,,,40.827656,-73.9397,"(40.827656, -73.9397)",WEST 152 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4421578,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,16:21,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",WESTCHESTER AVENUE,EAST 162 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421404,Station Wagon/Sport Utility Vehicle,,,, +05/12/2021,16:35,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4421387,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,8:50,BROOKLYN,11212,40.65864,-73.91374,"(40.65864, -73.91374)",NEWPORT STREET,STRAUSS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421712,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,12:15,QUEENS,11413,40.662006,-73.7546,"(40.662006, -73.7546)",225 STREET,145 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421365,Sedan,Sedan,,, +05/24/2021,14:00,BROOKLYN,11210,40.638966,-73.94251,"(40.638966, -73.94251)",FOSTER AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421839,Sedan,Sedan,,, +05/28/2021,22:00,QUEENS,11377,40.75526,-73.903305,"(40.75526, -73.903305)",,,32-16 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421974,Pick-up Truck,,,, +05/26/2021,23:11,MANHATTAN,10037,40.809525,-73.93789,"(40.809525, -73.93789)",EAST 131 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420889,Sedan,Sedan,,, +05/24/2021,17:40,BRONX,10465,40.82675,-73.82051,"(40.82675, -73.82051)",,,2956 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421226,Sedan,,,, +05/27/2021,7:37,QUEENS,11377,40.757847,-73.89922,"(40.757847, -73.89922)",31 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422065,Taxi,,,, +03/03/2021,18:30,BROOKLYN,11210,40.622726,-73.93934,"(40.622726, -73.93934)",AVENUE L,EAST 37 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4421516,Sedan,Sedan,Sedan,, +05/27/2021,1:06,QUEENS,11102,40.76707,-73.91905,"(40.76707, -73.91905)",,,28-26 33 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4420909,Sedan,Sedan,Sedan,, +05/27/2021,15:35,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Following Too Closely,Unspecified,,,4421204,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/22/2021,20:00,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421575,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,7:18,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",47 AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4420558,Sedan,,,, +05/26/2021,13:15,,,40.846874,-73.90877,"(40.846874, -73.90877)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420619,Sedan,Moped,,, +05/28/2021,10:15,BROOKLYN,11206,40.69612,-73.94936,"(40.69612, -73.94936)",MARCY AVENUE,STOCKTON STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4421748,Station Wagon/Sport Utility Vehicle,Bike,,, +05/24/2021,17:45,BROOKLYN,11210,40.624737,-73.95517,"(40.624737, -73.95517)",,,1174 EAST 21 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:10,,,40.69695,-73.962776,"(40.69695, -73.962776)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421055,Beverage Truck,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,23:12,,,40.614216,-73.97742,"(40.614216, -73.97742)",23 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4421589,Sedan,,,, +05/27/2021,23:36,BROOKLYN,11216,40.68397,-73.944046,"(40.68397, -73.944046)",TOMPKINS AVENUE,JEFFERSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421789,Bike,,,, +05/28/2021,0:00,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,19:03,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421380,Sedan,,,, +05/28/2021,14:00,QUEENS,11354,40.76768,-73.83074,"(40.76768, -73.83074)",,,32-26 137 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421541,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,19:28,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421382,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,13:30,BROOKLYN,11233,40.68051,-73.93488,"(40.68051, -73.93488)",,,58 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421070,Sedan,Sedan,,, +05/28/2021,18:30,BROOKLYN,11222,,,,DIVISION PLACE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421946,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,14:00,BROOKLYN,11236,40.63659,-73.91163,"(40.63659, -73.91163)",,,8215 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420691,Sedan,,,, +05/26/2021,17:22,,,40.690216,-73.907295,"(40.690216, -73.907295)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4420782,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,14:55,,,,,,LITTLE NECK PARKWAY,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421044,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,0:41,BRONX,10457,40.846485,-73.89434,"(40.846485, -73.89434)",EAST TREMONT AVENUE,LAFONTAINE AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4420929,Sedan,Sedan,,, +05/28/2021,10:30,,,,,,PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421348,Sedan,Sedan,,, +05/27/2021,10:25,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",GRAND STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421004,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/26/2021,10:25,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420575,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +05/23/2021,19:00,BRONX,10452,40.836094,-73.92927,"(40.836094, -73.92927)",UNIVERSITY AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421216,Sedan,,,, +05/28/2021,14:47,MANHATTAN,10013,40.72671,-74.00563,"(40.72671, -74.00563)",,,161 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421450,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +05/26/2021,16:40,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",EAST 34 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420716,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,20:45,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",SAINT ANNS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421191,Sedan,Sedan,,, +05/26/2021,0:34,QUEENS,11691,40.60459,-73.753624,"(40.60459, -73.753624)",,,21-03 MOTT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4420505,Sedan,,,, +05/27/2021,12:50,BROOKLYN,11215,40.66931,-73.97957,"(40.66931, -73.97957)",5 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421248,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,11:15,MANHATTAN,10011,0,0,"(0.0, 0.0)",AVENUE OF THE AMERICAS,WEST 15 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462257,Station Wagon/Sport Utility Vehicle,Bike,,, +05/27/2021,17:58,QUEENS,11692,40.59296,-73.79418,"(40.59296, -73.79418)",BEACH CHANNEL DRIVE,BEACH 65 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421181,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:43,BRONX,10469,40.87182,-73.861374,"(40.87182, -73.861374)",BRONXWOOD AVENUE,SOUTH OAK DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420674,Sedan,,,, +05/28/2021,15:00,BROOKLYN,11217,40.685955,-73.98028,"(40.685955, -73.98028)",STATE STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421375,Sedan,Sedan,,, +05/26/2021,15:32,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421096,Sedan,Sedan,,, +05/28/2021,15:35,QUEENS,11358,40.75901,-73.79232,"(40.75901, -73.79232)",,,42-000 189 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4421414,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +05/26/2021,18:40,,,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4421670,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,0:30,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inexperience,,,,4420815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,14:14,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4421544,Sedan,Bus,,, +05/28/2021,2:00,,,40.83721,-73.879715,"(40.83721, -73.879715)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,Unspecified,,,4421301,Sedan,,,, +05/26/2021,13:30,,,40.601536,-73.93535,"(40.601536, -73.93535)",AVENUE U,BRIGHAM STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420628,Sedan,,,, +05/25/2021,21:15,MANHATTAN,10033,40.845947,-73.93782,"(40.845947, -73.93782)",WEST 175 STREET,WADSWORTH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421269,Sedan,,,, +05/26/2021,20:50,STATEN ISLAND,10301,40.636127,-74.075966,"(40.636127, -74.075966)",,,248 BAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421125,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,8:30,BROOKLYN,11232,40.645084,-73.99823,"(40.645084, -73.99823)",,,832 42 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420973,Station Wagon/Sport Utility Vehicle,,,, +05/20/2021,23:45,,,,,,SAINT NICHOLAS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421859,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,8:24,,,40.86848,-73.918564,"(40.86848, -73.918564)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4421692,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +05/26/2021,16:30,,,40.759018,-73.855156,"(40.759018, -73.855156)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420894,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,23:35,QUEENS,11435,40.68928,-73.79611,"(40.68928, -73.79611)",110 ROAD,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421528,Sedan,Sedan,,, +05/28/2021,19:00,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421918,Taxi,Sedan,,, +05/27/2021,17:45,QUEENS,11364,40.740734,-73.75717,"(40.740734, -73.75717)",,,73-55 217 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,11:30,,,40.68457,-73.72632,"(40.68457, -73.72632)",LAURELTON PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421343,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,0:30,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,,,,,,4420738,,,,, +05/26/2021,20:00,BROOKLYN,11206,40.71074,-73.94548,"(40.71074, -73.94548)",MANHATTAN AVENUE,MAUJER STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420836,Sedan,Bike,,, +05/27/2021,5:50,QUEENS,11374,40.72844,-73.87116,"(40.72844, -73.87116)",WOODHAVEN BOULEVARD,ALDERTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421484,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/20/2021,14:15,,,40.729794,-74.002144,"(40.729794, -74.002144)",BLEECKER STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421632,Taxi,,,, +05/22/2021,23:50,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421987,Sedan,,,, +05/28/2021,14:51,,,40.604763,-74.02746,"(40.604763, -74.02746)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421407,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,23:00,QUEENS,11692,40.597668,-73.78534,"(40.597668, -73.78534)",,,54-15 ALMEDA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4420904,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,20:58,QUEENS,11368,40.74796,-73.8602,"(40.74796, -73.8602)",,,104-19 43 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421830,Sedan,Bike,,, +05/26/2021,15:20,BROOKLYN,11235,40.590397,-73.9519,"(40.590397, -73.9519)",AVENUE Y,EAST 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421209,Tractor Truck Gasoline,,,, +05/27/2021,6:10,,,40.670326,-73.87796,"(40.670326, -73.87796)",BLAKE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4420882,Taxi,Sedan,,, +05/28/2021,1:37,,,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4421729,Bus,,,, +05/26/2021,9:10,MANHATTAN,10002,40.718567,-73.9834,"(40.718567, -73.9834)",RIVINGTON STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4420777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,21:00,,,,,,BROOKLYN BATTERY TUNNEL,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4421493,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/27/2021,2:43,BRONX,10462,40.84855,-73.85884,"(40.84855, -73.85884)",,,1865 BOGART AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420949,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,13:52,BRONX,10461,40.851498,-73.852295,"(40.851498, -73.852295)",,,1864 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4421036,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,9:00,BRONX,10453,40.860172,-73.90881,"(40.860172, -73.90881)",,,103 WEST 183 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4421666,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,18:56,QUEENS,11372,40.750137,-73.8806,"(40.750137, -73.8806)",86 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422073,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,23:00,BRONX,10456,40.832607,-73.91762,"(40.832607, -73.91762)",SHERIDAN AVENUE,MCCLELLAN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421222,Sedan,,,, +05/26/2021,17:25,,,40.72787,-73.92913,"(40.72787, -73.92913)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4420731,Sedan,tractor,,, +05/28/2021,11:59,MANHATTAN,10037,40.816235,-73.93929,"(40.816235, -73.93929)",,,560 LENOX AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4421581,Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/27/2021,13:57,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4421176,Sedan,Sedan,,, +05/28/2021,23:40,BRONX,10469,40.873486,-73.85342,"(40.873486, -73.85342)",,,3305 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422021,Sedan,Sedan,,, +05/22/2021,15:26,,,40.722496,-73.9769,"(40.722496, -73.9769)",AVENUE D,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422047,Pick-up Truck,,,, +05/27/2021,8:52,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:54,,,,,,11 STREET,LONG ISLAND EXPRESSWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4421161,Sedan,Sedan,,, +05/28/2021,2:49,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421254,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:19,,,40.696033,-73.98453,"(40.696033, -73.98453)",TILLARY STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4420724,Sedan,Pick-up Truck,,, +05/28/2021,12:00,QUEENS,11417,40.680916,-73.84135,"(40.680916, -73.84135)",98 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,0:50,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4420468,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/26/2021,14:25,QUEENS,11434,40.68818,-73.78869,"(40.68818, -73.78869)",LINDEN BOULEVARD,159 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420987,Sedan,Sedan,,, +05/28/2021,9:25,,,40.82815,-73.93491,"(40.82815, -73.93491)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4421582,Taxi,Sedan,,, +05/26/2021,17:30,,,40.655827,-73.94336,"(40.655827, -73.94336)",CLARKSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421103,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,12:36,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421312,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,14:20,QUEENS,11692,,,,ROCKAWAY BEACH BOULEVARD,SALTAIRE LANE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421795,Bus,Sedan,,, +05/26/2021,7:57,,,40.610214,-73.94371,"(40.610214, -73.94371)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4420596,Bus,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,13:19,BRONX,10460,40.842064,-73.87609,"(40.842064, -73.87609)",EAST 180 STREET,DEVOE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4421458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/27/2021,10:45,QUEENS,11373,40.74623,-73.89037,"(40.74623, -73.89037)",BROADWAY,75 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421237,E-Bike,,,, +05/27/2021,2:30,QUEENS,11422,40.652355,-73.73857,"(40.652355, -73.73857)",HUXLEY STREET,149 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420756,Sedan,Sedan,,, +05/27/2021,6:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4421419,Tractor Truck Diesel,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +05/27/2021,17:03,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421086,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,12:06,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421028,Sedan,Carry All,,, +05/27/2021,9:20,QUEENS,11374,40.726967,-73.85647,"(40.726967, -73.85647)",66 AVENUE,SAUNDERS STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4420933,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,20:37,BRONX,10459,40.825306,-73.89067,"(40.825306, -73.89067)",WESTCHESTER AVENUE,HOE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421402,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,14:00,,,40.85019,-73.939644,"(40.85019, -73.939644)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421772,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/28/2021,15:22,,,40.63083,-73.90736,"(40.63083, -73.90736)",EAST 80 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4421815,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:30,,,40.83516,-73.94561,"(40.83516, -73.94561)",WEST 158 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421280,Sedan,Sedan,,, +05/28/2021,7:50,STATEN ISLAND,10301,40.642715,-74.09536,"(40.642715, -74.09536)",LAFAYETTE AVENUE,BUCHANAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421701,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,14:55,MANHATTAN,10028,40.777874,-73.95175,"(40.777874, -73.95175)",EAST 86 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421187,scooter,,,, +05/28/2021,8:50,,,40.700012,-73.93607,"(40.700012, -73.93607)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421297,Sedan,Garbage or Refuse,,, +05/27/2021,14:33,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4421436,Sedan,Sedan,,, +05/26/2021,21:50,,,40.73232,-74.00167,"(40.73232, -74.00167)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421619,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,20:30,BROOKLYN,11203,40.64916,-73.94552,"(40.64916, -73.94552)",EAST 34 STREET,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421139,Sedan,,,, +05/21/2021,23:06,BROOKLYN,11234,40.6009,-73.912704,"(40.6009, -73.912704)",,,2875 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421767,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,0:20,QUEENS,11101,40.755863,-73.943,"(40.755863, -73.943)",,,40-03 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421166,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,0:50,,,40.666786,-73.78452,"(40.666786, -73.78452)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421355,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,9:15,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421338,Sedan,Sedan,,, +05/26/2021,16:50,BROOKLYN,11233,40.670715,-73.91697,"(40.670715, -73.91697)",EASTERN PARKWAY,STERLING PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421709,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,20:00,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Fatigued/Drowsy,,,,4420761,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,19:50,BROOKLYN,11201,40.703197,-73.98959,"(40.703197, -73.98959)",WATER STREET,WASHINGTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421412,Sedan,Sedan,,, +05/27/2021,11:21,,,40.68315,-73.780304,"(40.68315, -73.780304)",119 AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4421108,Sedan,Sedan,Sedan,Sedan,Sedan +05/28/2021,16:13,QUEENS,11434,40.672947,-73.78083,"(40.672947, -73.78083)",,,132-11 157 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421397,FDNY AMBUL,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,16:30,,,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420811,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,13:43,BROOKLYN,11204,40.616707,-73.97846,"(40.616707, -73.97846)",BAY PARKWAY,60 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421685,Pick-up Truck,Taxi,,, +05/26/2021,22:45,,,40.608307,-74.13132,"(40.608307, -74.13132)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4420940,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,0:30,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421568,Station Wagon/Sport Utility Vehicle,Multi-Wheeled Vehicle,,, +05/24/2021,15:50,BROOKLYN,11213,40.66602,-73.92947,"(40.66602, -73.92947)",CARROLL STREET,FORD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4421424,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,11:25,MANHATTAN,10029,40.787075,-73.94503,"(40.787075, -73.94503)",,,1952 2 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420746,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,21:39,BROOKLYN,11236,40.647686,-73.90237,"(40.647686, -73.90237)",EAST 99 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462935,Sedan,,,, +05/27/2021,19:45,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421755,Sedan,Sedan,,, +05/14/2021,22:50,,,40.597122,-74.00418,"(40.597122, -74.00418)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4421522,Sedan,Sedan,Sedan,, +05/28/2021,11:30,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421323,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,19:05,QUEENS,11413,40.679897,-73.74757,"(40.679897, -73.74757)",221 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,13:30,,,,,,JUNCTION BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420978,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,11:00,,,40.65039,-74.00851,"(40.65039, -74.00851)",4 AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420993,E-Bike,,,, +05/28/2021,20:40,QUEENS,11373,40.74759,-73.88299,"(40.74759, -73.88299)",,,40-18 83 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421821,Sedan,Sedan,,, +05/28/2021,20:59,BRONX,10466,40.88919,-73.83131,"(40.88919, -73.83131)",EAST 233 STREET,DYRE AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4421960,Sedan,,,, +05/27/2021,14:29,,,40.660233,-73.93712,"(40.660233, -73.93712)",TROY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421429,Sedan,Sedan,,, +05/14/2021,22:45,BROOKLYN,11203,40.64957,-73.92532,"(40.64957, -73.92532)",,,338 EAST 55 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421853,Sedan,FDNY AMBU,,, +05/27/2021,14:50,BROOKLYN,11226,40.641003,-73.956116,"(40.641003, -73.956116)",,,1205 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4421639,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/28/2021,19:05,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421911,Van,Taxi,,, +05/12/2021,16:50,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421480,Sedan,,,, +05/27/2021,0:27,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4420830,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/26/2021,12:30,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420921,Sedan,Box Truck,,, +05/27/2021,1:50,BRONX,10468,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,ANDREWS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420767,,,,, +05/27/2021,20:20,,,40.65461,-73.922,"(40.65461, -73.922)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421116,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,9:00,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421265,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/26/2021,20:23,BRONX,10456,40.829697,-73.91313,"(40.829697, -73.91313)",TELLER AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4421886,Sedan,Taxi,,, +05/27/2021,23:44,BROOKLYN,11212,40.654137,-73.91234,"(40.654137, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421850,Sedan,Sedan,,, +05/28/2021,13:00,BROOKLYN,11209,40.625206,-74.020164,"(40.625206, -74.020164)",,,643 78 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4421500,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +05/28/2021,10:00,BRONX,10472,40.832294,-73.85932,"(40.832294, -73.85932)",,,1966 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421324,Ambulance,,,, +05/28/2021,2:37,,,,,,WEST 143 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4421996,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,15:00,MANHATTAN,10022,40.76104,-73.97538,"(40.76104, -73.97538)",WEST 54 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420797,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,19:35,MANHATTAN,10013,40.725674,-74.00578,"(40.725674, -74.00578)",VARICK STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421200,Taxi,,,, +05/28/2021,18:15,BROOKLYN,11211,40.717487,-73.95218,"(40.717487, -73.95218)",,,568 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421953,Motorbike,,,, +05/28/2021,9:43,BROOKLYN,11230,40.61276,-73.96093,"(40.61276, -73.96093)",AVENUE O,EAST 13 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4421638,Sedan,Sedan,,, +05/10/2021,21:00,,,40.577213,-73.96329,"(40.577213, -73.96329)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421725,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,14:50,BROOKLYN,11220,40.648182,-74.02147,"(40.648182, -74.02147)",54 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4421442,Sedan,,,, +05/27/2021,19:00,,,40.786724,-73.983246,"(40.786724, -73.983246)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421517,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,13:55,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4421040,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/21/2021,23:50,BROOKLYN,11216,40.682537,-73.95002,"(40.682537, -73.95002)",NOSTRAND AVENUE,HANCOCK STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421777,Bike,,,, +05/28/2021,22:09,BRONX,10459,40.829422,-73.897575,"(40.829422, -73.897575)",EAST 169 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421659,,,,, +05/27/2021,16:28,BRONX,10472,40.82843,-73.88105,"(40.82843, -73.88105)",WESTCHESTER AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421258,E-Bike,Sedan,,, +05/24/2021,10:05,BROOKLYN,11238,40.67562,-73.9598,"(40.67562, -73.9598)",,,727 CLASSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421803,Sedan,,,, +05/26/2021,17:40,BRONX,10457,40.84536,-73.89684,"(40.84536, -73.89684)",3 AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420956,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,8:44,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unsafe Speed,Unspecified,Unspecified,,4421411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +05/27/2021,22:39,QUEENS,11416,40.681717,-73.84963,"(40.681717, -73.84963)",90 STREET,102 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421194,Sedan,,,, +05/28/2021,18:20,BRONX,10453,40.849003,-73.91614,"(40.849003, -73.91614)",MACOMBS ROAD,WEST 176 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422005,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,16:48,QUEENS,11423,40.715397,-73.772766,"(40.715397, -73.772766)",HILLSIDE AVENUE,189 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421089,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,19:26,MANHATTAN,10017,40.757286,-73.97812,"(40.757286, -73.97812)",EAST 48 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Pavement Slippery,,,,4420805,Sedan,Sedan,,, +05/28/2021,13:34,QUEENS,11411,40.695683,-73.741875,"(40.695683, -73.741875)",218 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421366,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,15:30,MANHATTAN,10013,40.71896,-74.00128,"(40.71896, -74.00128)",CANAL STREET,CORTLANDT ALLEY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422051,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,16:25,QUEENS,11366,40.725536,-73.79256,"(40.725536, -73.79256)",,,176-19 UNION TURNPIKE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,7:40,BRONX,10468,40.857418,-73.899956,"(40.857418, -73.899956)",GRAND CONCOURSE,EAST 183 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420959,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,0:20,,,40.839237,-73.94688,"(40.839237, -73.94688)",HENRY HUDSON PARKWAY,,,0,1,0,1,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420435,Sedan,,,, +05/27/2021,9:13,MANHATTAN,10013,40.722626,-74.008125,"(40.722626, -74.008125)",HUDSON STREET,VESTRY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421019,Sedan,,,, +05/27/2021,14:56,BROOKLYN,11206,40.706917,-73.93972,"(40.706917, -73.93972)",BUSHWICK AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421758,Pick-up Truck,Sedan,,, +05/28/2021,4:40,,,40.664993,-73.80229,"(40.664993, -73.80229)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Tire Failure/Inadequate,,,,4421308,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,0:35,QUEENS,11368,40.74593,-73.8563,"(40.74593, -73.8563)",48 AVENUE,108 STREET,,1,0,1,0,0,0,0,0,,,,,,4421241,Bike,,,, +05/27/2021,10:30,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4421234,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,9:24,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4420979,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,18:28,QUEENS,11101,40.746494,-73.932274,"(40.746494, -73.932274)",SKILLMAN AVENUE,32 PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4420730,Bike,,,, +05/24/2021,17:50,QUEENS,11378,40.71497,-73.913376,"(40.71497, -73.913376)",,,54-02 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4421463,Motorscooter,Sedan,,, +05/25/2021,0:00,,,40.808052,-73.957954,"(40.808052, -73.957954)",MORNINGSIDE DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421863,Motorcycle,,,, +05/26/2021,18:55,BROOKLYN,11207,40.66839,-73.89109,"(40.66839, -73.89109)",BLAKE AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/26/2021,9:30,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420588,2 dr sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,19:00,QUEENS,11385,40.7122,-73.86208,"(40.7122, -73.86208)",METROPOLITAN AVENUE,COOPER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421468,Sedan,Sedan,,, +05/12/2021,15:00,,,40.691353,-73.92142,"(40.691353, -73.92142)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421276,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,14:55,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421561,Pick-up Truck,Sedan,,, +05/27/2021,19:00,BROOKLYN,11237,40.70324,-73.92615,"(40.70324, -73.92615)",KNICKERBOCKER AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421293,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,20:00,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421487,Sedan,Pick-up Truck,,, +05/19/2021,18:27,QUEENS,11372,40.752945,-73.89248,"(40.752945, -73.89248)",74 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421229,Sedan,Sedan,,, +05/25/2021,14:37,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,4,0,0,0,0,0,4,0,Other Vehicular,Passing or Lane Usage Improper,,,,4421392,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,6:39,QUEENS,11355,40.754696,-73.82158,"(40.754696, -73.82158)",,,141-05 CHERRY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4420847,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/28/2021,3:58,,,40.737785,-73.93496,"(40.737785, -73.93496)",BORDEN AVENUE,VANDAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421334,Station Wagon/Sport Utility Vehicle,Dump,,, +05/22/2021,23:46,,,40.777233,-73.99023,"(40.777233, -73.99023)",HENRY HUDSON PARKWAY,,,5,0,0,0,0,0,5,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4421914,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +05/26/2021,19:11,,,40.733612,-73.999565,"(40.733612, -73.999565)",AVENUE OF THE AMERICAS,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421680,Station Wagon/Sport Utility Vehicle,Bike,,, +05/27/2021,0:19,BROOKLYN,11231,40.67603,-74.01666,"(40.67603, -74.01666)",BEARD STREET,CONOVER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,12:00,BRONX,10458,40.853996,-73.8889,"(40.853996, -73.8889)",,,2328 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421474,Box Truck,Box Truck,,, +05/27/2021,0:00,QUEENS,11412,40.699944,-73.76075,"(40.699944, -73.76075)",,,194-31 113 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421351,Sedan,Sedan,,, +05/28/2021,23:00,BROOKLYN,11226,40.648792,-73.95228,"(40.648792, -73.95228)",SNYDER AVENUE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421872,Sedan,Sedan,,, +05/28/2021,1:45,,,40.758205,-73.777405,"(40.758205, -73.777405)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4421173,Sedan,,,, +05/27/2021,12:00,BRONX,10462,40.84143,-73.86232,"(40.84143, -73.86232)",,,1936 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4420999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,23:10,QUEENS,11378,40.722153,-73.9163,"(40.722153, -73.9163)",,,55-04 MASPETH AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4421457,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,19:38,BROOKLYN,11223,40.607254,-73.96728,"(40.607254, -73.96728)",QUENTIN ROAD,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4463146,Sedan,,,, +05/28/2021,7:45,,,40.700695,-73.7832,"(40.700695, -73.7832)",173 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421290,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,8:00,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420773,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,1:45,,,40.786423,-73.82394,"(40.786423, -73.82394)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4421703,Sedan,Sedan,,, +05/25/2021,14:30,,,40.599705,-73.99016,"(40.599705, -73.99016)",BAY 35 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4421603,,,,, +05/27/2021,18:25,,,40.87787,-73.8701,"(40.87787, -73.8701)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421420,Sedan,Pick-up Truck,,, +05/28/2021,11:50,,,40.7135,-73.75607,"(40.7135, -73.75607)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4421319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,22:00,BRONX,10463,40.875683,-73.90839,"(40.875683, -73.90839)",BROADWAY,WEST 228 STREET,,1,0,1,0,0,0,0,0,,,,,,4462967,E-Scooter,,,, +05/26/2021,18:43,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",BEVERLEY ROAD,KINGS HIGHWAY,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421136,Sedan,Sedan,,, +05/26/2021,10:45,,,40.76684,-73.838264,"(40.76684, -73.838264)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,13:00,,,40.64939,-73.975296,"(40.64939, -73.975296)",PROSPECT EXPRESSWAY EAST,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4421153,Sedan,Taxi,,, +05/27/2021,3:49,MANHATTAN,10014,40.734093,-74.0085,"(40.734093, -74.0085)",CHARLES STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421613,Sedan,Box Truck,,, +05/26/2021,10:27,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4421356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/27/2021,21:00,QUEENS,11101,40.754192,-73.93393,"(40.754192, -73.93393)",,,38-38 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421967,Sedan,,,, +05/27/2021,16:31,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",WEST 178 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4421261,Box Truck,Bus,,, +05/28/2021,13:45,BROOKLYN,11212,40.669327,-73.91318,"(40.669327, -73.91318)",,,1629 PITKIN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Alcohol Involvement,,,,4421716,Box Truck,,,, +05/28/2021,16:00,,,40.679832,-73.95322,"(40.679832, -73.95322)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4421734,Ambulance,Sedan,,, +05/27/2021,2:34,QUEENS,11418,40.69761,-73.82005,"(40.69761, -73.82005)",130 STREET,92 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420913,Sedan,,,, +05/26/2021,9:17,BROOKLYN,11211,40.707436,-73.96034,"(40.707436, -73.96034)",,,182 DIVISION AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4420816,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,15:40,MANHATTAN,10001,40.751522,-73.99396,"(40.751522, -73.99396)",WEST 33 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4421649,Van,,,, +05/26/2021,10:50,BROOKLYN,11235,40.591354,-73.94885,"(40.591354, -73.94885)",,,2508 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420627,Sedan,Garbage or Refuse,,, +05/27/2021,23:00,,,,,,JEWEL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421328,Sedan,,,, +05/28/2021,11:30,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421542,Sedan,Pick-up Truck,,, +09/30/2021,2:52,,,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463731,Taxi,Sedan,,, +05/28/2021,12:29,BRONX,10467,40.87809,-73.86045,"(40.87809, -73.86045)",,,850 EAST 213 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,12:00,QUEENS,11417,40.672146,-73.84318,"(40.672146, -73.84318)",CROSS BAY BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421383,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/25/2021,10:15,,,40.684704,-73.94419,"(40.684704, -73.94419)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421764,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,14:00,,,40.665855,-73.750046,"(40.665855, -73.750046)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4421507,Sedan,,,, +01/10/2021,13:48,QUEENS,11372,40.75043,-73.87781,"(40.75043, -73.87781)",37 AVENUE,89 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462990,Sedan,Bike,,, +05/22/2021,16:30,BROOKLYN,11221,40.694305,-73.91852,"(40.694305, -73.91852)",CENTRAL AVENUE,LINDEN STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421449,Bike,Sedan,,, +05/26/2021,8:33,BRONX,10461,40.84938,-73.85065,"(40.84938, -73.85065)",,,1720 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420548,Sedan,Sedan,Sedan,, +04/26/2021,13:50,BROOKLYN,11213,40.67386,-73.94178,"(40.67386, -73.94178)",KINGSTON AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421784,Bus,Box Truck,,, +05/28/2021,17:00,QUEENS,11413,40.665955,-73.76084,"(40.665955, -73.76084)",SOUTH CONDUIT AVENUE,184 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421529,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,13:25,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4421046,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/26/2021,7:30,,,40.696228,-73.97348,"(40.696228, -73.97348)",PARK AVENUE,CARLTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420825,Sedan,Sedan,,, +05/28/2021,19:30,QUEENS,11417,40.676456,-73.85688,"(40.676456, -73.85688)",PITKIN AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421535,Sedan,Sedan,,, +05/27/2021,19:30,QUEENS,11358,40.7597,-73.80031,"(40.7597, -73.80031)",NORTHERN BOULEVARD,SANFORD AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4421809,Bus,Bike,,, +05/27/2021,19:30,QUEENS,11356,40.78463,-73.83634,"(40.78463, -73.83634)",132 STREET,15 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421217,Sedan,Sedan,,, +05/25/2021,0:20,BROOKLYN,11223,40.582726,-73.97321,"(40.582726, -73.97321)",SHORE PARKWAY,WEST AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4421970,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/26/2021,18:00,BRONX,10451,40.817024,-73.921394,"(40.817024, -73.921394)",,,298 EAST 149 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420751,Sedan,Moped,,, +05/27/2021,17:20,BROOKLYN,11225,40.660595,-73.95451,"(40.660595, -73.95451)",,,195 MAPLE STREET,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4421113,Sedan,Bike,,, +05/21/2021,13:30,BROOKLYN,11217,40.687317,-73.979164,"(40.687317, -73.979164)",,,96 ROCKWELL PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421930,Sedan,Box Truck,,, +05/27/2021,10:07,,,40.61495,-74.0002,"(40.61495, -74.0002)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421585,Sedan,Pick-up Truck,,, +05/27/2021,16:33,,,40.888092,-73.85355,"(40.888092, -73.85355)",BRONXWOOD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4421212,Sedan,Sedan,Sedan,, +05/27/2021,10:26,,,40.702007,-73.821205,"(40.702007, -73.821205)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421014,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/26/2021,16:30,,,40.801857,-73.957245,"(40.801857, -73.957245)",8 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421093,E-Bike,Sedan,,, +05/28/2021,18:16,,,40.731995,-73.99022,"(40.731995, -73.99022)",4 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4422025,Station Wagon/Sport Utility Vehicle,Van,,, +05/26/2021,14:42,BRONX,10462,40.84728,-73.86772,"(40.84728, -73.86772)",RHINELANDER AVENUE,VICTOR STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420630,Sedan,Box Truck,,, +05/26/2021,20:10,BROOKLYN,11212,40.67024,-73.907005,"(40.67024, -73.907005)",STONE AVENUE,PITKIN AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420711,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,1:33,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4463421,Sedan,Sedan,,, +05/28/2021,12:30,BROOKLYN,11217,40.68354,-73.98438,"(40.68354, -73.98438)",NEVINS STREET,WYCKOFF STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,,,,4421485,Taxi,Sedan,,, +05/26/2021,21:25,MANHATTAN,10035,40.802162,-73.939026,"(40.802162, -73.939026)",,,1993 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420890,Taxi,Sedan,Sedan,, +05/27/2021,15:31,,,40.577766,-73.95606,"(40.577766, -73.95606)",BRIGHTON 14 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4421674,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,7:07,QUEENS,11372,40.75595,-73.88165,"(40.75595, -73.88165)",86 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,19:00,STATEN ISLAND,10304,40.61593,-74.087425,"(40.61593, -74.087425)",VANDUZER STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4421117,Sedan,Sedan,,, +05/28/2021,6:10,,,40.745907,-73.86964,"(40.745907, -73.86964)",42 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421244,Sedan,Bike,,, +05/26/2021,8:37,,,40.795464,-73.96381,"(40.795464, -73.96381)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420537,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,14:00,QUEENS,11413,40.67884,-73.75419,"(40.67884, -73.75419)",135 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421388,Pick-up Truck,,,, +05/28/2021,3:25,,,40.66397,-73.99777,"(40.66397, -73.99777)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421169,Station Wagon/Sport Utility Vehicle,Dump,,, +05/28/2021,8:45,BROOKLYN,11219,40.625828,-73.99967,"(40.625828, -73.99967)",,,1358 64 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421548,Station Wagon/Sport Utility Vehicle,M21,,, +05/27/2021,13:55,BRONX,10457,40.853504,-73.894424,"(40.853504, -73.894424)",,,2179 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421305,Sedan,,,, +05/27/2021,20:30,MANHATTAN,10002,40.715485,-73.98514,"(40.715485, -73.98514)",,,440 GRAND STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,9:05,BROOKLYN,11220,40.636097,-74.02724,"(40.636097, -74.02724)",,,242 BAY RIDGE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421266,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,3:35,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4420794,Sedan,,,, +05/27/2021,13:55,QUEENS,11434,40.67002,-73.78312,"(40.67002, -73.78312)",ROCKAWAY BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421129,Sedan,Dump,,, +05/28/2021,4:25,BRONX,10466,40.896687,-73.84511,"(40.896687, -73.84511)",PITMAN AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421273,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,13:56,BROOKLYN,11236,40.646626,-73.90399,"(40.646626, -73.90399)",FARRAGUT ROAD,ROCKAWAY PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421379,Sedan,,,, +05/28/2021,19:35,,,40.689808,-73.80931,"(40.689808, -73.80931)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421924,Sedan,,,, +05/26/2021,10:25,MANHATTAN,10040,40.85431,-73.93009,"(40.85431, -73.93009)",SAINT NICHOLAS AVENUE,WEST 189 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4421697,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,7:40,MANHATTAN,10039,40.82815,-73.93491,"(40.82815, -73.93491)",MACOMBS PLACE,WEST 155 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421158,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/28/2021,23:27,,,40.6414,-74.02125,"(40.6414, -74.02125)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4421452,Sedan,,,, +05/28/2021,13:40,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421347,Sedan,Sedan,,, +05/28/2021,16:35,,,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4421844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,7:30,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420580,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,17:30,BROOKLYN,11214,40.602356,-74.01263,"(40.602356, -74.01263)",BAY 14 STREET,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421590,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,14:00,STATEN ISLAND,10310,40.628563,-74.11322,"(40.628563, -74.11322)",MORRISON AVENUE,NORTH BURGHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421126,Sedan,,,, +05/25/2021,7:00,BROOKLYN,11223,40.599354,-73.98474,"(40.599354, -73.98474)",,,1943 WEST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421525,Sedan,,,, +05/28/2021,14:30,QUEENS,11385,40.70843,-73.871895,"(40.70843, -73.871895)",COOPER AVENUE,79 PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4421466,Sedan,Sedan,Box Truck,, +05/28/2021,12:20,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4421416,Dump,Sedan,,, +05/26/2021,23:17,,,40.783333,-73.94368,"(40.783333, -73.94368)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4420829,Sedan,Sedan,Sedan,, +05/26/2021,20:07,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4421403,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/17/2021,18:48,BROOKLYN,11205,40.693203,-73.953995,"(40.693203, -73.953995)",WALWORTH STREET,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421773,Sedan,,,, +05/26/2021,7:06,QUEENS,11434,40.679817,-73.76177,"(40.679817, -73.76177)",MERRICK BOULEVARD,130 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420503,Bus,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,16:40,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4421569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/26/2021,20:45,MANHATTAN,10022,40.755005,-73.966866,"(40.755005, -73.966866)",,,351 EAST 51 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4420717,Sedan,,,, +05/26/2021,16:51,BRONX,10458,40.8535,-73.888664,"(40.8535, -73.888664)",CRESCENT AVENUE,ADAMS PLACE,,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4420888,Station Wagon/Sport Utility Vehicle,Motorbike,,, +05/28/2021,22:19,QUEENS,11103,40.76231,-73.916306,"(40.76231, -73.916306)",,,30-66 STEINWAY STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421982,Van,Sedan,,, +05/27/2021,12:20,BRONX,10455,40.814766,-73.918755,"(40.814766, -73.918755)",EAST 147 STREET,WILLIS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421186,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,17:35,QUEENS,11370,40.75719,-73.89041,"(40.75719, -73.89041)",32 AVENUE,77 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422070,Sedan,E-Bike,,, +05/27/2021,14:52,BROOKLYN,11219,40.62916,-74.01144,"(40.62916, -74.01144)",68 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421098,Sedan,Sedan,,, +05/28/2021,15:03,,,40.690357,-73.989746,"(40.690357, -73.989746)",BOERUM PLACE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4421374,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,17:19,QUEENS,11434,40.692455,-73.76814,"(40.692455, -73.76814)",LINDEN BOULEVARD,179 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421398,Pick-up Truck,Sedan,,, +05/28/2021,18:55,QUEENS,11361,40.76695,-73.786896,"(40.76695, -73.786896)",34 AVENUE,201 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4421415,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/26/2021,20:10,MANHATTAN,10022,40.75843,-73.973076,"(40.75843, -73.973076)",EAST 52 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4420814,Sedan,Taxi,Taxi,, +05/28/2021,11:23,BROOKLYN,11237,40.69862,-73.920135,"(40.69862, -73.920135)",HARMAN STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421300,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,11:56,,,,,,VICTORY BOULEVARD,WEST SERVICE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420617,Tractor Truck Diesel,tow truck,,, +05/21/2021,11:20,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421790,Sedan,Bike,,, +05/21/2021,20:00,,,40.626377,-73.910805,"(40.626377, -73.910805)",BERGEN AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4421768,4 dr sedan,Bike,,, +05/25/2021,7:41,MANHATTAN,10009,40.72752,-73.981445,"(40.72752, -73.981445)",,,307 EAST 10 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422023,Sedan,Bus,,, +05/28/2021,12:44,BROOKLYN,11211,40.707623,-73.962135,"(40.707623, -73.962135)",DIVISION AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421751,Bus,Sedan,,, +05/27/2021,5:46,BROOKLYN,11220,40.64737,-74.00651,"(40.64737, -74.00651)",,,537 45 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:00,MANHATTAN,10032,40.84394,-73.93903,"(40.84394, -73.93903)",WEST 172 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421268,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,6:50,BRONX,10465,40.8203,-73.818565,"(40.8203, -73.818565)",,,2884 SAMPSON AVENUE,1,0,0,0,0,0,1,0,Glare,Backing Unsafely,,,,4420968,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/28/2021,23:00,,,40.744915,-73.903694,"(40.744915, -73.903694)",61 STREET,WOODSIDE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421430,Station Wagon/Sport Utility Vehicle,Bike,,, +05/27/2021,16:25,BRONX,10462,40.833412,-73.859184,"(40.833412, -73.859184)",,,1955 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421253,Sedan,,,, +05/26/2021,1:30,,,40.67244,-73.73534,"(40.67244, -73.73534)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420757,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,12:40,,,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4421162,Sedan,Sedan,,, +05/28/2021,15:10,,,40.79715,-73.97366,"(40.79715, -73.97366)",WEST 98 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421359,Sedan,,,, +05/27/2021,21:40,,,40.835297,-73.91291,"(40.835297, -73.91291)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4421884,Sedan,Motorbike,,, +05/28/2021,11:00,,,,,,BRADDOCK AVENUE,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Following Too Closely,,,,4421342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,8:05,QUEENS,11691,40.602383,-73.75066,"(40.602383, -73.75066)",,,1818 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420740,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,12:12,BRONX,10458,40.851498,-73.88383,"(40.851498, -73.88383)",PROSPECT AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420928,Sedan,Sedan,,, +05/22/2021,14:30,,,,,,PELHAM PARKWAY NORTH,STILLWELL AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421483,Bike,,,, +05/28/2021,22:30,,,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421978,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/21/2021,4:15,,,,,,ATLANTIC AVENUE,CUMBERLAND,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4421505,Sedan,Sedan,Box Truck,, +05/25/2021,21:42,BROOKLYN,11203,40.644974,-73.92099,"(40.644974, -73.92099)",CLARENDON ROAD,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421838,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,22:16,,,40.655254,-73.76568,"(40.655254, -73.76568)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4421327,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/28/2021,13:57,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4421384,Tractor Truck Gasoline,Pick-up Truck,Sedan,, +05/28/2021,9:30,BROOKLYN,11221,40.69069,-73.91621,"(40.69069, -73.91621)",PUTNAM AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4421298,Sedan,,,, +05/27/2021,14:15,,,40.74214,-74.00821,"(40.74214, -74.00821)",WEST 14 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421620,Sedan,Sedan,,, +05/25/2021,15:40,,,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421816,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,17:35,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4420947,Sedan,Sedan,Sedan,, +05/26/2021,17:00,QUEENS,11356,40.787548,-73.85054,"(40.787548, -73.85054)",12 AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,23:13,QUEENS,11372,40.751884,-73.88376,"(40.751884, -73.88376)",35 AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422072,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,12:20,,,40.747917,-73.9736,"(40.747917, -73.9736)",2 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421167,Box Truck,Bike,,, +05/21/2021,11:40,BROOKLYN,11205,40.691017,-73.954475,"(40.691017, -73.954475)",SPENCER STREET,DE KALB AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421749,Station Wagon/Sport Utility Vehicle,Bike,,, +05/28/2021,5:50,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",EAST 167 STREET,LONGFELLOW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421641,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +05/27/2021,14:55,MANHATTAN,10024,40.78994,-73.98036,"(40.78994, -73.98036)",WEST 86 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421391,Sedan,Sedan,,, +05/27/2021,15:12,MANHATTAN,10069,40.774113,-73.98863,"(40.774113, -73.98863)",WEST END AVENUE,WEST 63 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421521,Sedan,Sedan,,, +09/29/2021,14:32,,,0,0,"(0.0, 0.0)",WHITESTONE EXPRESSWAY,LINDEN PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462291,Pick-up Truck,Sedan,,, +05/27/2021,20:10,BROOKLYN,11249,40.718636,-73.959015,"(40.718636, -73.959015)",BERRY STREET,NORTH 7 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4421955,MOPED,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,13:05,,,40.686497,-73.9168,"(40.686497, -73.9168)",BROADWAY,HANCOCK STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421706,Tractor Truck Gasoline,Pick-up Truck,,, +04/15/2021,10:30,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",36 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421959,Sedan,,,, +05/28/2021,8:00,,,40.7145,-73.77114,"(40.7145, -73.77114)",190 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:44,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,AVENUE D,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421104,Sedan,Sedan,,, +05/28/2021,13:00,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4421822,Sedan,Sedan,Sedan,Sedan, +05/28/2021,18:50,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4421602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/26/2021,10:21,BROOKLYN,11229,40.598156,-73.951195,"(40.598156, -73.951195)",,,2600 OCEAN AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4420597,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/27/2021,16:40,BROOKLYN,11230,40.624798,-73.96494,"(40.624798, -73.96494)",,,1113 AVENUE J,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,12:36,,,40.807507,-73.92701,"(40.807507, -73.92701)",EAST 134 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420574,Sedan,,,, +05/23/2021,17:30,,,40.644863,-73.91113,"(40.644863, -73.91113)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421917,Sedan,,,, +05/27/2021,9:55,,,,,,160 STREET,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421002,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,17:21,BRONX,10457,40.843525,-73.89667,"(40.843525, -73.89667)",CROTONA PARK NORTH,FULTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420835,Sedan,Sedan,,, +05/28/2021,15:35,BRONX,10470,40.902157,-73.847626,"(40.902157, -73.847626)",EAST 241 STREET,OSMAN PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421461,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:00,,,40.767693,-73.78181,"(40.767693, -73.78181)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421149,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:10,BRONX,10454,40.805973,-73.91546,"(40.805973, -73.91546)",,,637 EAST 138 STREET,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4421190,Bike,Bike,,, +05/26/2021,22:31,QUEENS,11369,40.767067,-73.87603,"(40.767067, -73.87603)",,,23-57 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/26/2021,16:20,,,40.79356,-73.96702,"(40.79356, -73.96702)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420677,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,16:30,MANHATTAN,10013,40.71716,-74.004684,"(40.71716, -74.004684)",,,88 LEONARD STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420778,Sedan,Sedan,,, +05/28/2021,3:53,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4421438,Sedan,Sedan,,, +05/27/2021,16:35,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",EAST 178 STREET,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421203,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,0:00,MANHATTAN,10017,40.752064,-73.97351,"(40.752064, -73.97351)",3 AVENUE,EAST 44 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463050,3-Door,,,, +05/26/2021,13:05,,,40.77207,-73.94994,"(40.77207, -73.94994)",EAST 80 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420810,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,12:00,,,40.58464,-73.96017,"(40.58464, -73.96017)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/25/2021,17:30,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421221,Sedan,Sedan,,, +05/22/2021,22:26,,,40.573326,-74.002556,"(40.573326, -74.002556)",SURF AVENUE,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4421669,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,2:00,BRONX,10459,40.82839,-73.89385,"(40.82839, -73.89385)",FOX STREET,HOME STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421663,Sedan,,,, +05/26/2021,8:36,MANHATTAN,10019,40.767673,-73.98306,"(40.767673, -73.98306)",,,312 WEST 58 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4420561,Pick-up Truck,,,, +05/28/2021,11:50,MANHATTAN,10013,40.717518,-73.99832,"(40.717518, -73.99832)",,,110 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422034,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/28/2021,18:29,,,40.661835,-73.893105,"(40.661835, -73.893105)",NEW LOTS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463767,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,16:35,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4420722,Sedan,Sedan,Sedan,, +05/28/2021,11:50,QUEENS,11420,40.664337,-73.813156,"(40.664337, -73.813156)",128 STREET,OLD SOUTH ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4421371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/26/2021,9:45,,,40.67834,-73.95521,"(40.67834, -73.95521)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4421063,Sedan,Sedan,Sedan,Sedan, +09/30/2021,8:36,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462679,Sedan,Sedan,,, +05/26/2021,19:45,,,40.79599,-73.96896,"(40.79599, -73.96896)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420687,Bike,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,11:09,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4421852,Sedan,Sedan,,, +05/27/2021,13:41,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4421177,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,10:53,MANHATTAN,10003,40.735855,-73.99325,"(40.735855, -73.99325)",,,7 EAST 14 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4420972,Bike,,,, +05/26/2021,12:40,BROOKLYN,11215,40.675076,-73.98801,"(40.675076, -73.98801)",3 AVENUE,3 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420988,Pick-up Truck,Box Truck,,, +05/19/2021,10:00,QUEENS,11373,40.745228,-73.882576,"(40.745228, -73.882576)",PETTIT AVENUE,JUDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421236,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/28/2021,9:30,BRONX,10468,40.871494,-73.88868,"(40.871494, -73.88868)",EAST 199 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421313,Sedan,,,, +05/26/2021,18:20,MANHATTAN,10003,40.73701,-73.98465,"(40.73701, -73.98465)",,,31 GRAMERCY PARK SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4420932,PK,Bike,,, +05/25/2021,6:41,QUEENS,11379,40.71957,-73.890945,"(40.71957, -73.890945)",,,69-05 ELIOT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4421479,Box Truck,,,, +05/24/2021,7:50,,,40.691074,-73.88733,"(40.691074, -73.88733)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4421876,Sedan,Sedan,,, +05/27/2021,10:37,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421281,4 dr sedan,,,, +05/28/2021,23:57,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,,,,4421625,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,9:50,,,40.82466,-73.870804,"(40.82466, -73.870804)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421029,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,15:00,MANHATTAN,10028,40.777874,-73.95175,"(40.777874, -73.95175)",EAST 86 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421182,Sedan,Bus,,, +05/28/2021,23:15,QUEENS,11368,40.74005,-73.86622,"(40.74005, -73.86622)",CHRISTIE AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4421826,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/20/2021,8:30,BROOKLYN,11236,40.639507,-73.896034,"(40.639507, -73.896034)",,,1717 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,14:00,BROOKLYN,11220,40.636078,-74.019714,"(40.636078, -74.019714)",66 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421497,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,9:00,BROOKLYN,11203,40.652454,-73.92535,"(40.652454, -73.92535)",,,5518 CHURCH AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Turning Improperly,,,,4421142,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,8:20,,,40.67667,-73.790665,"(40.67667, -73.790665)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4421352,Sedan,Sedan,Sedan,Sedan, +05/28/2021,8:30,,,,,,UNION TURNPIKE,231 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421339,Sedan,,,, +05/27/2021,1:55,QUEENS,11101,40.746185,-73.92949,"(40.746185, -73.92949)",35 STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4420732,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,21:30,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421547,Pick-up Truck,Sedan,,, +05/26/2021,16:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4420942,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,10:30,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421687,Bus,,,, +05/27/2021,15:00,BRONX,10461,40.85543,-73.84388,"(40.85543, -73.84388)",EASTCHESTER ROAD,MCDONALD STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4421057,Motorscooter,,,, +05/26/2021,15:52,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420826,Sedan,Sedan,,, +05/27/2021,18:00,QUEENS,11432,40.712173,-73.78897,"(40.712173, -73.78897)",,,172-37 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421083,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,7:50,MANHATTAN,10038,40.712357,-74.0009,"(40.712357, -74.0009)",,,1 POLICE PLAZA,0,0,0,0,0,0,0,0,Unspecified,,,,,4422050,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,18:20,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4421423,Sedan,,,, +05/28/2021,15:18,BROOKLYN,11235,40.58613,-73.95011,"(40.58613, -73.95011)",VOORHIES AVENUE,EAST 19 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421608,Sedan,Sedan,,, +05/26/2021,13:15,,,,,,G.C.P / L.I.E. (CDR),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421250,Sedan,Taxi,,, +05/27/2021,16:23,BROOKLYN,11209,40.63258,-74.021385,"(40.63258, -74.021385)",5 AVENUE,OVINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421099,Box Truck,Sedan,,, +05/27/2021,19:00,QUEENS,11368,40.7487,-73.86916,"(40.7487, -73.86916)",,,40-24 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4421235,Sedan,,,, +05/28/2021,13:30,STATEN ISLAND,10301,40.640175,-74.08852,"(40.640175, -74.08852)",,,14 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421731,Sedan,,,, +05/27/2021,8:50,QUEENS,11356,40.784184,-73.83641,"(40.784184, -73.83641)",,,15-06 132 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,5:10,QUEENS,11413,40.659023,-73.749176,"(40.659023, -73.749176)",231 STREET,146 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4420589,Sedan,Sedan,,, +05/27/2021,13:30,QUEENS,11103,40.759296,-73.91968,"(40.759296, -73.91968)",,,38-07 BROADWAY,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4421966,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,15:57,QUEENS,11435,40.689877,-73.80499,"(40.689877, -73.80499)",,,107-34 PINEGROVE STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4421923,Sedan,,,, +05/26/2021,19:41,BROOKLYN,11208,40.667168,-73.88087,"(40.667168, -73.88087)",NEW LOTS AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4420878,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,14:43,STATEN ISLAND,10304,40.623253,-74.08383,"(40.623253, -74.08383)",BROAD STREET,TARGEE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421733,Sedan,Sedan,,, +05/26/2021,0:00,,,40.64286,-73.91519,"(40.64286, -73.91519)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421013,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,14:15,,,40.669857,-73.95051,"(40.669857, -73.95051)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4420820,AMBULANCE,Sedan,Station Wagon/Sport Utility Vehicle,, +05/26/2021,12:08,BRONX,10462,40.8315,-73.85096,"(40.8315, -73.85096)",,,1175 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420579,Moped,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,10:02,BROOKLYN,11212,40.665043,-73.9115,"(40.665043, -73.9115)",,,248 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4420631,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,15:00,BROOKLYN,11233,40.680824,-73.91264,"(40.680824, -73.91264)",,,290 SUMPTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421711,Sedan,,,, +05/27/2021,11:30,,,40.832314,-73.93161,"(40.832314, -73.93161)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421208,Box Truck,,,, +05/23/2021,16:25,,,40.69822,-73.943954,"(40.69822, -73.943954)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421763,Sedan,Fire Appar,,, +05/26/2021,22:01,,,40.63007,-74.159325,"(40.63007, -74.159325)",,,56 GRIDLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420908,Sedan,,,, +05/26/2021,17:00,QUEENS,11691,40.606964,-73.76077,"(40.606964, -73.76077)",,,1318 DICKENS STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420896,Sedan,Sedan,,, +05/26/2021,5:50,QUEENS,11385,40.70703,-73.909325,"(40.70703, -73.909325)",WOODWARD AVENUE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:00,,,40.609627,-74.14955,"(40.609627, -74.14955)",NORTH GANNON AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421225,Dump,Pick-up Truck,,, +05/27/2021,14:00,,,40.59098,-73.98963,"(40.59098, -73.98963)",HARWAY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421673,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,13:30,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4421776,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,12:11,BRONX,10469,40.85979,-73.847725,"(40.85979, -73.847725)",,,1340 ASTOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421035,Sedan,,,, +12/27/2021,2:26,BROOKLYN,11203,40.653595,-73.9341,"(40.653595, -73.9341)",,,659 LINDEN BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4489870,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:15,QUEENS,11420,40.670864,-73.81207,"(40.670864, -73.81207)",133 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421172,Sedan,Sedan,,, +05/26/2021,14:23,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4421406,Motorcycle,,,, +05/22/2021,3:55,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421580,Van,Sedan,,, +05/26/2021,14:00,QUEENS,11375,40.720165,-73.844795,"(40.720165, -73.844795)",AUSTIN STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421367,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,12:15,,,40.618958,-74.02404,"(40.618958, -74.02404)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4421088,Sedan,Sedan,Sedan,, +05/26/2021,17:25,BRONX,10461,40.84253,-73.8529,"(40.84253, -73.8529)",,,2421 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420935,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,18:45,QUEENS,11434,40.664017,-73.7686,"(40.664017, -73.7686)",FARMERS BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421112,Sedan,Pick-up Truck,,, +05/27/2021,0:30,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",BREWER BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420765,Box Truck,Sedan,,, +05/26/2021,0:30,BROOKLYN,11204,40.617287,-73.97786,"(40.617287, -73.97786)",BAY PARKWAY,59 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4420976,Sedan,Moped,,, +05/27/2021,7:45,MANHATTAN,10031,40.828613,-73.943855,"(40.828613, -73.943855)",,,451 WEST 151 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4420980,3-Door,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,0:48,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420436,Sedan,Sedan,,, +05/26/2021,10:00,BROOKLYN,11232,40.65433,-74.00742,"(40.65433, -74.00742)",38 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4421076,Dodge,Box Truck,,, +05/26/2021,17:40,BROOKLYN,11206,40.705887,-73.94297,"(40.705887, -73.94297)",GRAHAM AVENUE,BOERUM STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,18:46,,,40.810368,-73.95375,"(40.810368, -73.95375)",HANCOCK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421858,Sedan,,,, +05/25/2021,15:15,BROOKLYN,11204,40.616707,-73.97846,"(40.616707, -73.97846)",BAY PARKWAY,60 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421688,Sedan,,,, +05/26/2021,22:00,BROOKLYN,11206,40.708782,-73.94344,"(40.708782, -73.94344)",GRAHAM AVENUE,SCHOLES STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4420806,,,,, +05/27/2021,20:10,BROOKLYN,11212,40.66435,-73.92906,"(40.66435, -73.92906)",EAST NEW YORK AVENUE,EAST 93 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421134,Sedan,,,, +05/22/2021,8:00,QUEENS,11418,40.699314,-73.83157,"(40.699314, -73.83157)",,,87-34 118 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421309,Pick-up Truck,Sedan,,, +05/27/2021,11:51,,,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,12:42,MANHATTAN,10030,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421157,Sedan,Sedan,,, +05/26/2021,20:30,QUEENS,11417,40.68213,-73.8457,"(40.68213, -73.8457)",,,94-04 103 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420729,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,9:05,BROOKLYN,11218,40.64194,-73.982735,"(40.64194, -73.982735)",,,146 CHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421696,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,18:38,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4420915,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,18:30,BROOKLYN,11226,40.662407,-73.96516,"(40.662407, -73.96516)",EAST DRIVE,EAST LAKE DRIVE,,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,4421240,Bike,Bike,Bike,, +05/28/2021,23:00,QUEENS,11373,40.747032,-73.87937,"(40.747032, -73.87937)",FORLEY STREET,BRITTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421824,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,11:40,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421277,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,14:00,BROOKLYN,11226,40.636806,-73.96425,"(40.636806, -73.96425)",,,1422 DITMAS AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4421637,Sedan,E-Bike,,, +05/27/2021,12:45,BRONX,10460,40.844055,-73.88837,"(40.844055, -73.88837)",,,785 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421475,Sedan,E-Bike,,, +05/26/2021,15:34,,,40.85061,-73.913826,"(40.85061, -73.913826)",HARRISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421202,Sedan,E-Bike,,, +05/27/2021,19:35,,,40.875496,-73.92628,"(40.875496, -73.92628)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4421726,Sedan,PK,,, +05/27/2021,15:30,BROOKLYN,11211,40.71453,-73.9444,"(40.71453, -73.9444)",GRAHAM AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,16:39,BROOKLYN,11220,40.640263,-74.019035,"(40.640263, -74.019035)",61 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421441,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,8:20,QUEENS,11422,40.675095,-73.72715,"(40.675095, -73.72715)",HOOK CREEK BOULEVARD,132 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Keep Right,,,,4421335,Sedan,Bike,,, +05/28/2021,21:50,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421518,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,14:26,QUEENS,11377,40.735928,-73.8921,"(40.735928, -73.8921)",,,72-00 51 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421558,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +09/30/2021,23:20,,,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463842,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,12:57,,,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420749,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,12:15,BROOKLYN,11230,40.61196,-73.96816,"(40.61196, -73.96816)",OCEAN PARKWAY,AVENUE O,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421681,Bus,Sedan,,, +05/26/2021,11:09,QUEENS,11423,40.711082,-73.77798,"(40.711082, -73.77798)",183 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421047,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +05/27/2021,7:55,,,,,,amsterdam ave,west 81 st to west 83 st,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421807,Bus,box truck,,, +05/20/2021,13:15,,,40.757908,-73.9893,"(40.757908, -73.9893)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421873,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,9:14,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421218,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,9:05,BRONX,10465,40.815918,-73.82164,"(40.815918, -73.82164)",HUNTINGTON AVENUE,LAWTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421195,Sedan,,,, +05/27/2021,18:19,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421427,Sedan,Sedan,,, +05/28/2021,6:43,MANHATTAN,10033,40.848038,-73.93285,"(40.848038, -73.93285)",WEST 180 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421740,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,15:56,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421570,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,10:27,BROOKLYN,11204,40.61042,-73.98212,"(40.61042, -73.98212)",WEST 8 STREET,AVENUE O,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,Unspecified,Unspecified,,4421586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/15/2021,1:50,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4422009,Sedan,,,, +05/28/2021,8:15,BROOKLYN,11228,40.62979,-74.015495,"(40.62979, -74.015495)",8 AVENUE,70 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421267,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,1:35,STATEN ISLAND,10305,40.609047,-74.062935,"(40.609047, -74.062935)",,,10 FINGERBOARD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421118,Sedan,,,, +05/28/2021,10:15,QUEENS,11694,40.579002,-73.83783,"(40.579002, -73.83783)",,,183 BEACH 117 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4421378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,18:30,,,40.748955,-73.87136,"(40.748955, -73.87136)",ROOSEVELT AVENUE,95 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4421230,Sedan,Bike,,, +05/24/2021,19:50,BROOKLYN,11210,,,,Glenwood road,Albany avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421769,Sedan,Bus,,, +05/28/2021,18:15,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,14:17,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4421331,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,13:40,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4421453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/23/2021,21:15,MANHATTAN,10031,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,WEST 135 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4421262,E-Bike,Taxi,,, +05/28/2021,4:55,BROOKLYN,11212,40.65621,-73.914665,"(40.65621, -73.914665)",ROCKAWAY PARKWAY,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4421846,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,11:30,MANHATTAN,10009,40.721024,-73.981094,"(40.721024, -73.981094)",AVENUE C,EAST 2 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422024,Sedan,Dump,,, +05/28/2021,21:30,,,40.703342,-73.80021,"(40.703342, -73.80021)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4421562,Sedan,,,, +05/27/2021,11:40,,,40.84999,-73.93866,"(40.84999, -73.93866)",,,WEST 180 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421715,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,13:10,,,40.631687,-73.975174,"(40.631687, -73.975174)",18 AVENUE,EAST 3 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4420801,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,9:30,BROOKLYN,11229,40.603268,-73.947266,"(40.603268, -73.947266)",,,4049 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4420626,Sedan,,,, +05/26/2021,8:09,,,40.696175,-73.98036,"(40.696175, -73.98036)",TILLARY STREET,NAVY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420535,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,21:00,,,40.66384,-73.8784,"(40.66384, -73.8784)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420864,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,23:40,BRONX,10472,40.82615,-73.87766,"(40.82615, -73.87766)",WATSON AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420923,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,18:20,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421757,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,19:45,,,40.717014,-73.82971,"(40.717014, -73.82971)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4420712,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/28/2021,17:00,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,Unspecified,,,4421995,Pick-up Truck,,,, +10/01/2021,13:20,,,40.579803,-73.97184,"(40.579803, -73.97184)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4463443,Station Wagon/Sport Utility Vehicle,Dump,,, +05/27/2021,3:45,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422057,Sedan,,,, +05/26/2021,17:05,QUEENS,11370,40.762016,-73.89656,"(40.762016, -73.89656)",,,73-01 25 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420891,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,6:15,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4421039,Sedan,Bike,,, +05/15/2021,23:10,BRONX,10455,40.814526,-73.9116,"(40.814526, -73.9116)",,,571 EAGLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421509,Sedan,,,, +05/25/2021,15:00,BROOKLYN,11215,40.672318,-73.977066,"(40.672318, -73.977066)",7 AVENUE,GARFIELD PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4421245,Sedan,Box Truck,,, +05/27/2021,20:15,BROOKLYN,11206,40.69423,-73.94608,"(40.69423, -73.94608)",WILLOUGHBY AVENUE,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,,4421783,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/26/2021,22:17,BRONX,10457,40.84247,-73.89232,"(40.84247, -73.89232)",,,1828 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421304,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,15:15,,,40.755756,-73.96479,"(40.755756, -73.96479)",1 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421168,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,12:55,BROOKLYN,11209,40.625027,-74.02744,"(40.625027, -74.02744)",4 AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,0:06,,,,,,HENRY HUDSON PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420744,Sedan,,,, +05/26/2021,7:15,MANHATTAN,10002,40.716084,-73.9872,"(40.716084, -73.9872)",,,399 GRAND STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420772,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,9:25,BROOKLYN,11220,40.6332,-74.01034,"(40.6332, -74.01034)",,,843 63 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4420998,Sedan,,,, +05/26/2021,13:00,BRONX,10461,40.839348,-73.84362,"(40.839348, -73.84362)",WESTCHESTER AVENUE,OVERING STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4420964,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,14:52,QUEENS,11436,40.671326,-73.798225,"(40.671326, -73.798225)",142 STREET,130 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4421107,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/28/2021,12:15,QUEENS,11435,40.695457,-73.80536,"(40.695457, -73.80536)",WALTHAM STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421289,Concrete Mixer,Sedan,,, +05/24/2021,18:23,BROOKLYN,11230,40.61149,-73.972404,"(40.61149, -73.972404)",AVENUE O,EAST 2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421691,Sedan,,,, +05/27/2021,9:50,STATEN ISLAND,10310,40.63854,-74.107346,"(40.63854, -74.107346)",HENDERSON AVENUE,BARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421127,Sedan,Sedan,,, +05/26/2021,0:55,QUEENS,11373,40.737694,-73.88224,"(40.737694, -73.88224)",51 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420788,Station Wagon/Sport Utility Vehicle,Bike,,, +05/27/2021,20:22,MANHATTAN,10032,40.843494,-73.93912,"(40.843494, -73.93912)",,,4066 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421272,Sedan,Motorbike,,, +05/28/2021,10:45,,,40.671337,-73.9448,"(40.671337, -73.9448)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421904,Sedan,E-Bike,,, +05/26/2021,10:00,BROOKLYN,11232,40.663403,-73.99835,"(40.663403, -73.99835)",22 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421152,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,20:00,QUEENS,11104,40.743374,-73.92056,"(40.743374, -73.92056)",QUEENS BOULEVARD,44 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420733,Sedan,,,, +05/28/2021,15:46,,,40.825424,-73.923485,"(40.825424, -73.923485)",EAST 158 STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4421890,Sedan,Bike,,, +05/27/2021,17:18,,,40.766685,-73.892136,"(40.766685, -73.892136)",77 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422071,Sedan,Box Truck,,, +05/27/2021,8:00,BROOKLYN,11226,0,0,"(0.0, 0.0)",,,3104 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421865,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,18:30,BRONX,10459,40.82324,-73.88856,"(40.82324, -73.88856)",BRYANT AVENUE,ALDUS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421092,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/24/2021,13:06,QUEENS,11385,40.709515,-73.89878,"(40.709515, -73.89878)",,,65-15 FRESH POND ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421469,Station Wagon/Sport Utility Vehicle,Bike,,, +05/28/2021,12:15,,,40.71137,-74.00862,"(40.71137, -74.00862)",PARK ROW,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421346,Sedan,,,, +05/26/2021,19:00,BRONX,10462,40.84309,-73.86536,"(40.84309, -73.86536)",,,1662 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4420943,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/28/2021,7:15,BRONX,10460,40.83451,-73.88526,"(40.83451, -73.88526)",LONGFELLOW AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421648,Station Wagon/Sport Utility Vehicle,Van,,, +05/28/2021,8:46,,,40.65484,-73.9597,"(40.65484, -73.9597)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421363,Sedan,Sedan,,, +05/27/2021,16:00,BROOKLYN,11221,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,GATES AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4421448,Bike,,,, +05/27/2021,16:14,,,40.73305,-74.00642,"(40.73305, -74.00642)",CHRISTOPHER STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4421615,Box Truck,Box Truck,Bike,, +05/27/2021,22:00,BROOKLYN,11231,40.675117,-74.00962,"(40.675117, -74.00962)",OTSEGO STREET,LORRAINE STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4421488,Sedan,Sedan,,, +05/26/2021,22:48,MANHATTAN,10031,40.82465,-73.94623,"(40.82465, -73.94623)",WEST 145 STREET,CONVENT AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4421294,Sedan,Sedan,,, +05/27/2021,9:45,QUEENS,11379,40.72349,-73.87136,"(40.72349, -73.87136)",84 STREET,63 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420954,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,14:30,MANHATTAN,10024,40.78577,-73.97459,"(40.78577, -73.97459)",,,150 WEST 84 STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4421395,,,,, +05/28/2021,7:08,,,40.69874,-73.926315,"(40.69874, -73.926315)",CENTRAL AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4421299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,16:36,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421257,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,16:34,,,40.740364,-73.89972,"(40.740364, -73.89972)",65 PLACE,LAUREL HILL BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421163,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,16:00,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4421536,Bus,Box Truck,Sedan,, +05/26/2021,4:59,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4420969,Sedan,,,, +05/27/2021,22:30,MANHATTAN,10010,40.7366,-73.98185,"(40.7366, -73.98185)",EAST 21 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inexperience,,,,4421799,Sedan,Bike,,, +05/26/2021,11:55,,,40.786,-73.84574,"(40.786, -73.84574)",14 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,15:45,,,40.762157,-73.94962,"(40.762157, -73.94962)",,,555 MAIN STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421971,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,8:14,BRONX,10467,40.88475,-73.87972,"(40.88475, -73.87972)",,,3573 JEROME AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463135,Sedan,Sedan,,, +09/30/2021,13:20,QUEENS,11101,40.74408,-73.949684,"(40.74408, -73.949684)",JACKSON AVENUE,47 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462662,Moped,Sedan,,, +09/30/2021,3:10,QUEENS,11372,40.755882,-73.88234,"(40.755882, -73.88234)",,,85-17 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4462432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,21:00,,,40.74889,-73.94215,"(40.74889, -73.94215)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463140,Sedan,,,, +09/19/2021,20:41,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",DELANCEY STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463467,Sedan,,,, +09/30/2021,16:10,,,40.696117,-73.905014,"(40.696117, -73.905014)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4462824,Box Truck,Box Truck,,, +10/01/2021,14:55,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463646,Bus,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,3:40,,,,,,LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462347,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,23:06,,,40.617676,-73.9432,"(40.617676, -73.9432)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462723,Station Wagon/Sport Utility Vehicle,,,, +09/19/2021,15:46,BROOKLYN,11206,40.69423,-73.94608,"(40.69423, -73.94608)",TOMPKINS AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4463585,Motorcycle,Motorcycle,,, +10/01/2021,16:45,,,40.6256,-74.15314,"(40.6256, -74.15314)",FOREST AVENUE,SIMONSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,7:00,,,40.69969,-73.91557,"(40.69969, -73.91557)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4462819,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/30/2021,17:00,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462637,Sedan,Sedan,,, +09/07/2021,1:17,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,2,1,0,0,0,0,2,1,Unsafe Speed,,,,,4454785,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,20:45,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462704,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,0:30,BROOKLYN,11207,40.659218,-73.89113,"(40.659218, -73.89113)",,,753 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463713,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,14:06,BRONX,10466,40.88812,-73.84682,"(40.88812, -73.84682)",,,4141 LACONIA AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4462260,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,17:10,BROOKLYN,11239,40.649906,-73.886566,"(40.649906, -73.886566)",,,20 VANDALIA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4463811,Sedan,,,, +09/29/2021,18:00,,,40.689354,-73.936325,"(40.689354, -73.936325)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462298,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,11:45,,,40.61865,-74.156624,"(40.61865, -74.156624)",,,125 JULES DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462524,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,23:00,,,40.729176,-73.87898,"(40.729176, -73.87898)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463093,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/29/2021,23:00,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462473,Sedan,Bike,,, +09/20/2021,10:30,BROOKLYN,11228,40.614628,-74.004196,"(40.614628, -74.004196)",,,1556 79 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4463304,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,20:00,QUEENS,11375,40.734276,-73.8477,"(40.734276, -73.8477)",63 DRIVE,110 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4462487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/29/2021,18:35,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462728,Sedan,Sedan,,, +09/17/2021,10:04,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",FULTON STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462851,Dump,Sedan,,, +09/29/2021,11:10,QUEENS,11104,40.745327,-73.922066,"(40.745327, -73.922066)",43 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462175,Sedan,E-Bike,,, +10/01/2021,21:50,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4463788,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:52,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462995,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,10:20,BRONX,10459,40.830902,-73.88846,"(40.830902, -73.88846)",,,1429 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462778,Station Wagon/Sport Utility Vehicle,Bus,,, +09/30/2021,9:58,BROOKLYN,11234,40.619984,-73.91124,"(40.619984, -73.91124)",,,6805 AVENUE T,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,16:30,BRONX,10458,,,,,,391 Bedford park Blvd,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462912,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,12:00,BROOKLYN,11219,40.63252,-73.99702,"(40.63252, -73.99702)",,,1231 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463393,Sedan,,,, +09/12/2021,16:42,BRONX,10472,40.82923,-73.87551,"(40.82923, -73.87551)",WESTCHESTER AVENUE,STRATFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462873,,,,, +09/29/2021,17:50,,,0,0,"(0.0, 0.0)",34 AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4462390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:20,,,40.679863,-73.83884,"(40.679863, -73.83884)",101 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462737,Sedan,,,, +09/26/2021,17:29,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4463877,Sedan,Sedan,,, +09/03/2021,20:45,MANHATTAN,10036,40.76082,-73.990906,"(40.76082, -73.990906)",,,659 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462880,Sedan,Sedan,,, +09/25/2021,18:45,,,40.862602,-73.92028,"(40.862602, -73.92028)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4462986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,15:45,BROOKLYN,11233,40.68222,-73.922585,"(40.68222, -73.922585)",,,217 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463577,Sedan,Sedan,,, +09/30/2021,12:30,,,40.786808,-73.94524,"(40.786808, -73.94524)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463327,AMBULANCE,,,, +10/01/2021,4:46,,,40.725243,-73.933914,"(40.725243, -73.933914)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462765,Sedan,Carry All,,, +10/01/2021,23:28,QUEENS,11377,40.74128,-73.90257,"(40.74128, -73.90257)",QUEENS BOULEVARD,63 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463053,Minicycle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,21:00,,,40.874638,-73.909744,"(40.874638, -73.909744)",WEST 225 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4462954,Sedan,Sedan,Sedan,, +10/01/2021,19:04,,,40.778606,-73.98163,"(40.778606, -73.98163)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,20:02,BRONX,10457,40.8494,-73.90304,"(40.8494, -73.90304)",ECHO PLACE,ANTHONY AVENUE,,2,0,2,0,0,0,0,0,View Obstructed/Limited,,,,,4490125,Taxi,,,, +10/01/2021,6:48,,,40.748913,-73.9374,"(40.748913, -73.9374)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463192,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,2:30,,,40.68846,-73.80878,"(40.68846, -73.80878)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462735,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,13:10,,,40.839176,-73.94114,"(40.839176, -73.94114)",,,BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463132,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +08/06/2021,8:00,MANHATTAN,10036,40.764435,-73.99512,"(40.764435, -73.99512)",,,548 WEST 48 STREET,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463073,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,17:30,,,,,,3 AVENUE,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421540,Sedan,,,, +09/28/2021,7:45,BROOKLYN,11207,40.662796,-73.893555,"(40.662796, -73.893555)",,,584 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463765,Refrigerated Van,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,0:00,BROOKLYN,11236,40.64727,-73.894424,"(40.64727, -73.894424)",,,760 EAST 105 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463023,Sedan,,,, +09/29/2021,15:10,,,40.60805,-74.15736,"(40.60805, -74.15736)",VICTORY BOULEVARD,MORANI STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462440,Bus,Sedan,,, +10/01/2021,1:03,BROOKLYN,11209,40.628403,-74.02553,"(40.628403, -74.02553)",,,405 78 STREET,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4463010,Sedan,Sedan,Sedan,, +09/29/2021,14:25,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,6,0,0,0,0,0,6,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4463810,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle +09/29/2021,16:21,,,40.57475,-74.00174,"(40.57475, -74.00174)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463435,Sedan,,,, +09/29/2021,8:00,,,40.766357,-73.88756,"(40.766357, -73.88756)",82 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4462161,Sedan,Sedan,,, +10/01/2021,9:30,QUEENS,11357,40.776398,-73.81765,"(40.776398, -73.81765)",WILLETS POINT BOULEVARD,149 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463170,Pick-up Truck,Pick-up Truck,,, +12/27/2021,4:47,BROOKLYN,11219,40.62413,-73.99844,"(40.62413, -73.99844)",,,1437 65 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4489928,Sedan,E-Bike,,, +09/30/2021,1:00,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462471,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,14:35,BRONX,10461,40.84869,-73.8524,"(40.84869, -73.8524)",,,1729 HAIGHT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463904,Sedan,,,, +09/24/2021,18:45,QUEENS,11435,40.70444,-73.80556,"(40.70444, -73.80556)",,,89-14 150 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463665,Sedan,,,, +09/26/2021,18:20,MANHATTAN,10002,40.720173,-73.98865,"(40.720173, -73.98865)",,,94 RIVINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462796,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/27/2021,8:00,,,40.844902,-73.89011,"(40.844902, -73.89011)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463736,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,0:20,,,,,,HORACE HARDING EXPRESSWAY,OCEANIA STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4462709,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,11:00,BRONX,10472,40.83356,-73.8767,"(40.83356, -73.8767)",,,1572 EAST 174 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462856,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,12:47,BROOKLYN,11210,40.626804,-73.94668,"(40.626804, -73.94668)",,,3009 AVENUE J,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4462981,Ambulance,Box Truck,,, +10/01/2021,16:25,BROOKLYN,11211,40.706566,-73.9576,"(40.706566, -73.9576)",MARCY AVENUE,RODNEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,13:56,BROOKLYN,11236,40.63947,-73.902756,"(40.63947, -73.902756)",EAST 92 STREET,AVENUE J,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463022,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,13:00,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462422,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,8:30,,,,,,EAST FORDHAM ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462907,Sedan,Dump,,, +09/29/2021,14:45,QUEENS,11412,40.69041,-73.75557,"(40.69041, -73.75557)",119 AVENUE,195 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4462237,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,17:00,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,DELANCEY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463451,Motorcycle,,,, +09/30/2021,21:17,BRONX,10468,40.859642,-73.90534,"(40.859642, -73.90534)",GRAND AVENUE,EVELYN PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463427,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,22:15,BROOKLYN,11233,40.67453,-73.92137,"(40.67453, -73.92137)",,,1818 BERGEN STREET,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4463710,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,23:10,BROOKLYN,11214,40.59709,-73.99523,"(40.59709, -73.99523)",BATH AVENUE,23 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4463405,Motorcycle,Pick-up Truck,,, +09/30/2021,9:30,QUEENS,11419,40.689167,-73.82753,"(40.689167, -73.82753)",,,101-09 117 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462620,Sedan,,,, +05/29/2021,12:45,,,,,,NEW ENGLAND THRUWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421574,Sedan,Ambulance,,, +09/15/2021,14:17,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",ROSEDALE AVENUE,STORY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462875,Sedan,,,, +09/29/2021,19:15,MANHATTAN,10027,40.81701,-73.9595,"(40.81701, -73.9595)",WEST 125 STREET,SAINT CLAIR PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4462585,Sedan,,,, +10/01/2021,21:15,,,40.664375,-73.92376,"(40.664375, -73.92376)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463037,Sedan,Sedan,,, +12/27/2021,19:25,QUEENS,11373,40.73406,-73.8739,"(40.73406, -73.8739)",,,57-02 HOFFMAN DRIVE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490090,Sedan,E-Bike,,, +10/01/2021,12:52,BROOKLYN,11222,40.7226,-73.93711,"(40.7226, -73.93711)",VANDERVORT AVENUE,LOMBARDY STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4463876,Box Truck,Sedan,,, +09/29/2021,18:00,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,14:00,QUEENS,11691,40.596207,-73.768745,"(40.596207, -73.768745)",BEACH 36 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462771,Sedan,Sedan,,, +09/17/2021,16:30,QUEENS,11378,40.72082,-73.892265,"(40.72082, -73.892265)",69 STREET,60 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462966,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +10/01/2021,8:23,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463535,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/29/2021,14:30,QUEENS,11423,40.71442,-73.77009,"(40.71442, -73.77009)",,,89-28 191 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462949,Sedan,,,, +09/29/2021,19:00,QUEENS,11361,40.760284,-73.769356,"(40.760284, -73.769356)",BELL BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,8:09,QUEENS,11434,40.675842,-73.78305,"(40.675842, -73.78305)",BAISLEY BOULEVARD,157 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462892,Sedan,Sedan,,, +09/29/2021,18:00,,,40.806705,-73.952866,"(40.806705, -73.952866)",WEST 120 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462534,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:08,BRONX,10468,40.868847,-73.902626,"(40.868847, -73.902626)",,,125 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,14:57,BROOKLYN,11217,40.680782,-73.975075,"(40.680782, -73.975075)",,,245 FLATBUSH AVENUE,2,0,2,0,0,0,0,0,Turning Improperly,,,,,4463652,,,,, +10/01/2021,17:10,QUEENS,11367,40.730827,-73.82856,"(40.730827, -73.82856)",138 STREET,68 DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463111,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,17:00,,,40.62194,-73.91753,"(40.62194, -73.91753)",RALPH AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463493,Bus,Sedan,,, +09/30/2021,10:00,,,40.736176,-74.00353,"(40.736176, -74.00353)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Aggressive Driving/Road Rage,,,,4462934,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,12:10,QUEENS,11372,40.7494,-73.88427,"(40.7494, -73.88427)",,,37-36 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462991,Sedan,,,, +10/01/2021,7:00,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462905,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,22:10,,,,,,LONG ISLAND EXPRESSWAY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463226,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:55,MANHATTAN,10002,40.717922,-73.9931,"(40.717922, -73.9931)",FORSYTH STREET,GRAND STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4463475,Sedan,Bike,,, +09/30/2021,12:45,MANHATTAN,10031,40.825905,-73.94712,"(40.825905, -73.94712)",AMSTERDAM AVENUE,WEST 146 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462565,Sedan,MOPED,,, +09/29/2021,14:00,QUEENS,11417,40.678852,-73.834114,"(40.678852, -73.834114)",ROCKAWAY BOULEVARD,109 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462359,,,,, +09/27/2021,9:00,,,40.665024,-73.870575,"(40.665024, -73.870575)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463745,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,1:58,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462776,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,15:11,BROOKLYN,11233,40.670116,-73.92248,"(40.670116, -73.92248)",SAINT JOHNS PLACE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4463402,Sedan,Sedan,,, +05/29/2021,16:13,BRONX,10468,,,,,,131 Father Zeiser Place,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421667,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,15:58,QUEENS,11357,40.786694,-73.82534,"(40.786694, -73.82534)",14 AVENUE,143 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,15:05,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4462998,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,8:30,QUEENS,11432,40.708138,-73.80303,"(40.708138, -73.80303)",PARSONS BOULEVARD,HIGHLAND AVENUE,,2,0,2,0,0,0,0,0,,,,,,4463125,,,,, +10/01/2021,16:30,BRONX,10459,40.816193,-73.895996,"(40.816193, -73.895996)",,,1035 LONGWOOD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463614,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:55,BROOKLYN,11220,40.64367,-74.015495,"(40.64367, -74.015495)",55 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4463337,Sedan,,,, +09/30/2021,8:48,BRONX,10455,40.812897,-73.90145,"(40.812897, -73.90145)",SOUTHERN BOULEVARD,SAINT JOHN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463618,Sedan,,,, +09/20/2021,12:45,MANHATTAN,10026,40.805706,-73.95633,"(40.805706, -73.95633)",WEST 117 STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4462927,Sedan,,,, +09/30/2021,9:52,,,40.673004,-73.99935,"(40.673004, -73.99935)",HAMILTON AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4462714,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,8:18,,,40.681118,-73.96443,"(40.681118, -73.96443)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463483,Sedan,Sedan,,, +10/01/2021,7:30,BRONX,10455,40.811207,-73.90686,"(40.811207, -73.90686)",EAST 147 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463199,Bus,Sedan,,, +09/29/2021,11:15,QUEENS,11358,40.755566,-73.79172,"(40.755566, -73.79172)",189 STREET,45 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,18:15,,,40.840874,-73.91979,"(40.840874, -73.91979)",CROMWELL AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4462697,Sedan,Sedan,,, +09/30/2021,14:50,BRONX,10460,40.839165,-73.88333,"(40.839165, -73.88333)",CROSS BRONX EXPRESSWAY,BRYANT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing Too Closely,,,,4463830,Sedan,,,, +09/29/2021,9:00,QUEENS,11413,40.667973,-73.75082,"(40.667973, -73.75082)",225 STREET,PROSPECT COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462206,Sedan,,,, +08/27/2021,22:16,QUEENS,11372,40.74873,-73.87365,"(40.74873, -73.87365)",,,93-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463566,Sedan,,,, +09/30/2021,0:00,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462630,Sedan,Box Truck,,, +09/29/2021,11:15,,,40.825504,-73.886086,"(40.825504, -73.886086)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462446,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,17:05,,,,,,gunhill,Mosholu parkway,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463068,Sedan,,,, +09/30/2021,10:30,QUEENS,11355,40.75519,-73.835205,"(40.75519, -73.835205)",,,41-05 FULLER PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462755,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,2:25,,,40.71886,-73.97492,"(40.71886, -73.97492)",EAST HOUSTON STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462800,Sedan,Sedan,,, +09/30/2021,10:25,QUEENS,11432,40.7052,-73.79926,"(40.7052, -73.79926)",,,90-23 161 STREET,1,0,1,0,0,0,0,0,Unsafe Lane Changing,,,,,4462492,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,13:09,MANHATTAN,10016,40.74892,-73.9779,"(40.74892, -73.9779)",EAST 38 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4462276,Sedan,Bike,,, +09/29/2021,12:15,BRONX,10454,40.803905,-73.91844,"(40.803905, -73.91844)",SAINT ANNS PLACE,EAST 134 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462370,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/01/2021,13:08,,,40.582756,-74.13041,"(40.582756, -74.13041)",ROCKLAND AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4463042,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/01/2021,6:18,,,40.578804,-73.96582,"(40.578804, -73.96582)",OCEANVIEW AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462811,Van,E-Scooter,,, +09/30/2021,7:41,BRONX,10459,40.830345,-73.89389,"(40.830345, -73.89389)",,,887 FREEMAN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462465,Bus,Sedan,,, +09/29/2021,15:37,,,40.768166,-73.83749,"(40.768166, -73.83749)",WHITESTONE EXPRESSWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,,,4462413,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +05/29/2021,6:30,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4421912,Sedan,,,, +09/30/2021,11:55,,,40.753857,-73.91764,"(40.753857, -73.91764)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463175,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,23:44,QUEENS,11004,40.736156,-73.71371,"(40.736156, -73.71371)",HILLSIDE AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4462828,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,7:20,MANHATTAN,10009,40.72059,-73.974884,"(40.72059, -73.974884)",,,691 FDR DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463292,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,8:18,,,40.721497,-73.83531,"(40.721497, -73.83531)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463277,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,10:06,,,40.637634,-74.17122,"(40.637634, -74.17122)",,,85 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,21:00,BROOKLYN,11207,40.68032,-73.89133,"(40.68032, -73.89133)",,,85 HENDRIX STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463715,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,2:18,BRONX,10461,40.85278,-73.853294,"(40.85278, -73.853294)",,,1916 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462124,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,13:40,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462307,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,3:20,QUEENS,11420,40.666138,-73.82422,"(40.666138, -73.82422)",NORTH CONDUIT AVENUE,117 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463780,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,17:47,BROOKLYN,11234,40.617306,-73.92865,"(40.617306, -73.92865)",,,1775 EAST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462978,Sedan,,,, +09/29/2021,16:48,BRONX,10455,40.814934,-73.91496,"(40.814934, -73.91496)",EAST 149 STREET,BROOK AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462377,Sedan,E-Bike,,, +09/29/2021,15:25,MANHATTAN,10022,40.75831,-73.96294,"(40.75831, -73.96294)",1 AVENUE,EAST 57 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4462279,Sedan,E-Bike,,, +09/30/2021,8:52,,,40.67948,-73.93291,"(40.67948, -73.93291)",FULTON STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463509,Sedan,,,, +09/30/2021,14:30,,,40.60805,-74.15736,"(40.60805, -74.15736)",VICTORY BOULEVARD,MORANI STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462788,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,22:00,MANHATTAN,10010,40.736504,-73.977875,"(40.736504, -73.977875)",,,400 EAST 23 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462589,Sedan,E-Bike,,, +09/30/2021,8:04,BRONX,10466,40.88619,-73.857994,"(40.88619, -73.857994)",BARNES AVENUE,EAST 224 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4462616,Sedan,Sedan,,, +09/24/2021,22:06,BRONX,10473,40.814598,-73.864685,"(40.814598, -73.864685)",,,1731 LACOMBE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4462843,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/28/2021,0:00,,,0,0,"(0.0, 0.0)",2 AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4462920,,,,, +09/30/2021,11:20,BROOKLYN,11204,40.61652,-73.98586,"(40.61652, -73.98586)",20 AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462545,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,18:40,BRONX,10468,40.869534,-73.9001,"(40.869534, -73.9001)",,,2727 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463086,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,18:53,,,40.785732,-73.97645,"(40.785732, -73.97645)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4463532,Bus,E-Bike,,, +10/01/2021,19:45,MANHATTAN,10000,40.768192,-73.970665,"(40.768192, -73.970665)",,,2 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4463851,Sedan,Taxi,,, +09/30/2021,7:45,BRONX,10467,40.875,-73.87471,"(40.875, -73.87471)",EAST 207 STREET,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462888,Bus,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,9:00,,,40.531918,-74.19175,"(40.531918, -74.19175)",HUGUENOT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4463234,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/30/2021,18:15,,,40.79485,-73.962364,"(40.79485, -73.962364)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462648,Bike,Bike,,, +09/29/2021,14:20,MANHATTAN,10002,40.71396,-73.9912,"(40.71396, -73.9912)",,,139 EAST BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4462793,Station Wagon/Sport Utility Vehicle,Bike,,, +09/11/2021,23:55,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463487,Sedan,Sedan,,, +09/30/2021,8:10,,,,,,PROSPECT EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463377,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,9:00,BROOKLYN,11206,40.706917,-73.93972,"(40.706917, -73.93972)",JOHNSON AVENUE,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4463107,Sedan,Bike,,, +10/01/2021,5:00,QUEENS,11419,40.691612,-73.83667,"(40.691612, -73.83667)",ATLANTIC AVENUE,109 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462746,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,18:00,BRONX,10463,40.87892,-73.90479,"(40.87892, -73.90479)",WEST 231 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462959,Ambulance,,,, +10/01/2021,13:45,QUEENS,11101,40.734863,-73.93879,"(40.734863, -73.93879)",,,54-15 35 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462946,Sedan,Sedan,,, +09/29/2021,14:15,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",HEMPSTEAD AVENUE,225 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462317,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,0:00,BROOKLYN,11207,40.67719,-73.88754,"(40.67719, -73.88754)",,,2890 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463801,Pick-up Truck,Sedan,,, +10/01/2021,15:48,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,CEDAR AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4463156,Sedan,Sedan,,, +09/29/2021,17:00,MANHATTAN,10005,40.708797,-74.01086,"(40.708797, -74.01086)",CEDAR STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462559,Box Truck,Bike,,, +10/01/2021,13:45,MANHATTAN,10010,40.73825,-73.97973,"(40.73825, -73.97973)",,,245 EAST 24 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,1:00,BRONX,10458,40.852566,-73.88749,"(40.852566, -73.88749)",,,651 EAST 183 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462671,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,9:05,BROOKLYN,11220,40.648705,-74.010254,"(40.648705, -74.010254)",46 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462434,Sedan,,,, +09/30/2021,10:16,BROOKLYN,11216,40.684,-73.95031,"(40.684, -73.95031)",PUTNAM AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462692,Sedan,Lift Boom,,, +12/27/2021,11:30,BRONX,10458,40.873592,-73.88506,"(40.873592, -73.88506)",EAST 203 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490306,Sedan,Pick-up Truck,,, +09/26/2021,23:15,BROOKLYN,11212,40.65621,-73.914665,"(40.65621, -73.914665)",ROCKAWAY PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463030,Sedan,,,, +10/01/2021,13:50,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463203,Sedan,,,, +09/29/2021,23:55,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462857,Sedan,Sedan,,, +09/30/2021,19:55,QUEENS,11377,40.74841,-73.89764,"(40.74841, -73.89764)",68 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4462710,Motorcycle,,,, +10/01/2021,9:35,,,40.79856,-73.96336,"(40.79856, -73.96336)",WEST 105 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462842,Sedan,,,, +09/30/2021,8:10,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4463378,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,2:35,BROOKLYN,11218,40.632195,-73.97408,"(40.632195, -73.97408)",,,4027 18 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4462820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/29/2021,8:53,BROOKLYN,11226,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,PARADE PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462218,Sedan,,,, +10/01/2021,17:00,BROOKLYN,11232,0,0,"(0.0, 0.0)",,,4317 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463629,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,7:20,BROOKLYN,11233,40.67758,-73.92659,"(40.67758, -73.92659)",,,26 SUYDAM PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463576,Sedan,,,, +09/29/2021,7:05,BRONX,10465,40.840874,-73.820076,"(40.840874, -73.820076)",COUNTRY CLUB ROAD,STADIUM AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4462459,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,10:48,MANHATTAN,10025,40.805107,-73.963036,"(40.805107, -73.963036)",,,506 WEST 113 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4463381,Sedan,Sedan,Sedan,, +09/29/2021,0:01,BROOKLYN,11249,40.699413,-73.95902,"(40.699413, -73.95902)",WALLABOUT STREET,FRANKLIN AVENUE,,4,0,3,0,0,0,1,0,Alcohol Involvement,,,,,4462636,Sedan,,,, +05/28/2021,16:00,BRONX,10460,,,,ROSEDALE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422118,Sedan,,,, +09/30/2021,5:35,,,40.737286,-73.95543,"(40.737286, -73.95543)",BOX STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4462426,Sedan,Sedan,,, +09/29/2021,8:30,QUEENS,11421,0,0,"(0.0, 0.0)",WOODHAVEN BOULEVARD,91 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462212,Pick-up Truck,Motorcycle,,, +09/29/2021,14:15,,,40.744526,-73.77161,"(40.744526, -73.77161)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,16:15,MANHATTAN,10001,40.755116,-74.00248,"(40.755116, -74.00248)",11 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463345,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/28/2021,8:44,QUEENS,11106,40.764378,-73.94099,"(40.764378, -73.94099)",,,34-25 VERNON BOULEVARD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4462815,Pick-up Truck,Motorcycle,,, +10/01/2021,9:30,BROOKLYN,11210,40.633636,-73.951065,"(40.633636, -73.951065)",GLENWOOD ROAD,AMERSFORT PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463419,Taxi,,,, +09/29/2021,22:01,BROOKLYN,11219,40.636005,-73.99827,"(40.636005, -73.99827)",11 AVENUE,52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462504,Sedan,Motorcycle,,, +09/30/2021,8:50,,,,,,,,SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462489,Sedan,Sedan,,, +09/29/2021,7:00,BRONX,10460,40.840004,-73.877396,"(40.840004, -73.877396)",EAST TREMONT AVENUE,DEVOE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4462187,Box Truck,Sedan,,, +09/30/2021,22:30,MANHATTAN,10019,40.762005,-73.98262,"(40.762005, -73.98262)",,,790 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462832,Sedan,Taxi,,, +10/01/2021,20:00,MANHATTAN,10012,40.721447,-73.997406,"(40.721447, -73.997406)",CLEVELAND PLACE,KENMARE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463301,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,19:44,,,40.57754,-73.99789,"(40.57754, -73.99789)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463438,,,,, +09/29/2021,16:00,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462649,Sedan,Sedan,,, +10/01/2021,15:27,BROOKLYN,11214,40.583565,-73.98738,"(40.583565, -73.98738)",,,151 BAY 52 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4463436,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,15:50,,,40.6028,-73.74879,"(40.6028, -73.74879)",NAMEOKE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462783,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/01/2021,15:10,,,,,,35 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463013,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,3:34,,,40.617924,-74.155785,"(40.617924, -74.155785)",RICHMOND AVENUE,DEPPE PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4463179,Sedan,,,, +09/30/2021,21:20,QUEENS,11385,40.699886,-73.90584,"(40.699886, -73.90584)",,,852 CYPRESS AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4462974,Sedan,Bike,,, +09/30/2021,16:37,MANHATTAN,10027,40.81848,-73.9553,"(40.81848, -73.9553)",WEST 133 STREET,OLD BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4462698,Sedan,,,, +09/30/2021,9:30,BROOKLYN,11217,40.68559,-73.97332,"(40.68559, -73.97332)",SOUTH OXFORD STREET,HANSON PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462554,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +10/01/2021,0:50,BROOKLYN,11234,40.632755,-73.92984,"(40.632755, -73.92984)",KINGS HIGHWAY,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462722,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,0:00,,,40.756565,-73.99028,"(40.756565, -73.99028)",8 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4462363,Motorcycle,Sedan,,, +09/30/2021,0:13,QUEENS,11432,40.710663,-73.798706,"(40.710663, -73.798706)",165 STREET,HIGHLAND AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462604,Sedan,E-Bike,,, +09/29/2021,12:30,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",WHITE PLAINS ROAD,EAST 233 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462608,Bike,Sedan,,, +09/29/2021,5:37,MANHATTAN,10013,40.720375,-74.003265,"(40.720375, -74.003265)",GREENE STREET,CANAL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462074,Sedan,,,, +09/30/2021,17:56,BROOKLYN,11209,40.61952,-74.0402,"(40.61952, -74.0402)",,,9255 SHORE ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462678,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,11:30,QUEENS,11369,40.7613,-73.86527,"(40.7613, -73.86527)",ASTORIA BOULEVARD,104 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4462389,Van,E-Bike,,, +09/27/2021,7:15,BRONX,10467,40.883446,-73.86238,"(40.883446, -73.86238)",,,701 EAST 219 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463515,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,3:15,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422150,Sedan,Sedan,,, +10/01/2021,16:04,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463319,Sedan,Sedan,,, +09/29/2021,13:57,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4462405,Sedan,Box Truck,,, +09/30/2021,20:45,BROOKLYN,11214,40.610245,-73.99846,"(40.610245, -73.99846)",,,1810 80 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4462740,Sedan,Sedan,Sedan,, +09/26/2021,11:02,MANHATTAN,10016,40.7441,-73.97637,"(40.7441, -73.97637)",EAST 33 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462916,Sedan,Dump,,, +09/30/2021,8:25,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462644,Sedan,,,, +10/01/2021,5:45,BROOKLYN,11225,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,BEDFORD AVENUE,,3,0,0,0,1,0,2,0,Traffic Control Disregarded,Unspecified,,,,4462764,Taxi,Bike,,, +09/29/2021,14:15,QUEENS,11377,40.743336,-73.90804,"(40.743336, -73.90804)",43 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4462312,Pick-up Truck,Sedan,,, +09/30/2021,11:00,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463326,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/29/2021,21:26,BROOKLYN,11220,40.639225,-74.0021,"(40.639225, -74.0021)",51 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4462511,Sedan,Bike,,, +09/29/2021,12:15,BRONX,10473,40.826176,-73.84971,"(40.826176, -73.84971)",CASTLE HILL AVENUE,QUIMBY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4462847,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,23:04,,,40.676243,-73.95269,"(40.676243, -73.95269)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463484,Sedan,Sedan,,, +09/21/2021,11:00,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4462884,Station Wagon/Sport Utility Vehicle,Carry All,,, +10/01/2021,16:30,,,40.75225,-73.702095,"(40.75225, -73.702095)",UNION TURNPIKE,HEWLETT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463243,Sedan,Sedan,,, +10/01/2021,14:15,,,40.85394,-73.91468,"(40.85394, -73.91468)",WEST BURNSIDE AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4463819,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,21:00,MANHATTAN,10019,40.767918,-73.985725,"(40.767918, -73.985725)",WEST 57 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4463081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/28/2021,8:33,BROOKLYN,11207,40.67298,-73.88852,"(40.67298, -73.88852)",PITKIN AVENUE,SCHENCK AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463783,Tractor Truck Diesel,Bike,,, +09/30/2021,22:28,,,40.852818,-73.90476,"(40.852818, -73.90476)",EAST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4462810,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,12:39,BROOKLYN,11204,40.629444,-73.984406,"(40.629444, -73.984406)",,,1676 50 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463373,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,17:27,BROOKLYN,11238,40.68459,-73.97017,"(40.68459, -73.97017)",FULTON STREET,ADELPHI STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,View Obstructed/Limited,,,,4463607,Moped,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,20:55,,,40.7591,-73.99214,"(40.7591, -73.99214)",9 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490168,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,8:40,QUEENS,11101,40.738693,-73.940926,"(40.738693, -73.940926)",BORDEN AVENUE,REVIEW AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462942,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,21:58,MANHATTAN,10037,40.81728,-73.938545,"(40.81728, -73.938545)",LENOX AVENUE,WEST 140 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4463833,E-Bike,Taxi,,, +10/01/2021,8:20,,,40.72752,-73.75879,"(40.72752, -73.75879)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4463121,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/30/2021,4:50,,,40.607765,-74.13169,"(40.607765, -74.13169)",,,294 SOUTH GANNON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4463162,Station Wagon/Sport Utility Vehicle,,,, +09/21/2021,16:05,BROOKLYN,11216,40.678963,-73.94965,"(40.678963, -73.94965)",HERKIMER PLACE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463586,Bus,Sedan,,, +09/29/2021,8:25,BROOKLYN,11236,40.652843,-73.90741,"(40.652843, -73.90741)",DITMAS AVENUE,CHESTER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462345,Sedan,Sedan,,, +05/27/2021,6:45,,,40.551056,-74.184364,"(40.551056, -74.184364)",CARLTON BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422216,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,20:42,MANHATTAN,10026,40.805386,-73.95468,"(40.805386, -73.95468)",,,2177 8 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4463310,Sedan,Bike,,, +09/29/2021,6:20,,,40.6606,-74.001274,"(40.6606, -74.001274)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4462664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,21:25,BROOKLYN,11221,40.688564,-73.93019,"(40.688564, -73.93019)",REID AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463466,Sedan,,,, +10/01/2021,1:49,,,40.783337,-73.970764,"(40.783337, -73.970764)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463531,Taxi,,,, +10/01/2021,8:59,,,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4462825,Pick-up Truck,,,, +09/26/2021,19:15,,,40.699356,-73.84235,"(40.699356, -73.84235)",107 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463903,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,7:30,QUEENS,11417,40.680294,-73.84465,"(40.680294, -73.84465)",CROSS BAY BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462805,Bus,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,10:37,,,40.639915,-73.92717,"(40.639915, -73.92717)",EAST 52 STREET,FOSTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463034,Sedan,,,, +12/27/2021,19:25,QUEENS,11379,40.714397,-73.89799,"(40.714397, -73.89799)",62 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4490236,Sedan,Pick-up Truck,,, +10/01/2021,13:30,QUEENS,11356,40.784187,-73.84582,"(40.784187, -73.84582)",15 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463171,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,23:41,,,40.638462,-74.13984,"(40.638462, -74.13984)",,,19 RIVERSIDE LANE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4463185,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,14:30,QUEENS,11435,0,0,"(0.0, 0.0)",,,146-01 91 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,17:15,BRONX,10472,40.828083,-73.85211,"(40.828083, -73.85211)",,,2133 CHATTERTON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4462874,Sedan,,,, +09/29/2021,22:53,,,40.76093,-73.96914,"(40.76093, -73.96914)",EAST 57 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462729,Sedan,,,, +09/21/2021,18:12,,,,,,JEROME AVENUE,EAST 162 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4462985,Sedan,E-Bike,,, +10/01/2021,8:36,BROOKLYN,11229,40.606316,-73.95782,"(40.606316, -73.95782)",,,1777 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462837,Sedan,,,, +09/29/2021,15:00,MANHATTAN,10027,40.817234,-73.95814,"(40.817234, -73.95814)",,,610 WEST 130 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463429,Sedan,,,, +10/01/2021,10:30,BROOKLYN,11206,40.704624,-73.93503,"(40.704624, -73.93503)",WHITE STREET,MOORE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463006,Sedan,Sedan,,, +10/01/2021,17:00,BROOKLYN,11207,40.680264,-73.89224,"(40.680264, -73.89224)",,,9 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463754,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,22:42,MANHATTAN,10026,40.800735,-73.95867,"(40.800735, -73.95867)",,,300 WEST 110 STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4462938,Sedan,,,, +10/01/2021,20:00,QUEENS,11101,40.74413,-73.927055,"(40.74413, -73.927055)",38 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463054,Sedan,Motorcycle,,, +10/01/2021,8:30,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",ROOSEVELT AVENUE,114 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462869,Taxi,,,, +09/30/2021,21:30,BRONX,10467,40.882423,-73.86602,"(40.882423, -73.86602)",,,3705 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463501,Sedan,,,, +09/28/2021,15:44,BROOKLYN,11207,,,,LIVONIA AVENUE,HINSDALE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463712,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,4:00,,,40.763126,-73.83125,"(40.763126, -73.83125)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463165,Sedan,,,, +09/28/2021,22:00,BROOKLYN,11236,40.632908,-73.905365,"(40.632908, -73.905365)",,,1183 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463356,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,22:40,,,40.77164,-73.871445,"(40.77164, -73.871445)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462398,Sedan,,,, +09/29/2021,13:37,,,40.78961,-73.97362,"(40.78961, -73.97362)",,,WEST 89 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4462252,Sedan,,,, +12/27/2021,14:50,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4490033,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422255,Bus,Sedan,,, +09/29/2021,7:48,QUEENS,11373,40.74253,-73.88035,"(40.74253, -73.88035)",MACNISH STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462170,Station Wagon/Sport Utility Vehicle,Bus,,, +09/29/2021,16:30,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4462454,Van,Sedan,,, +09/29/2021,8:26,MANHATTAN,10002,40.712414,-73.99294,"(40.712414, -73.99294)",,,148 MADISON STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462525,Bike,Tow Truck / Wrecker,,, +12/27/2021,1:53,MANHATTAN,10009,40.719875,-73.97854,"(40.719875, -73.97854)",,,310 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490052,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,16:42,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4462299,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,15:53,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4463677,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/29/2021,8:37,QUEENS,11435,40.69892,-73.80273,"(40.69892, -73.80273)",,,95-40 150 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462288,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/30/2021,14:30,,,40.659275,-73.889,"(40.659275, -73.889)",VERMONT STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463732,Pick-up Truck,Bus,,, +09/30/2021,9:36,,,40.678253,-74.00273,"(40.678253, -74.00273)",HENRY STREET,,,0,0,0,0,0,0,0,0,Glare,Obstruction/Debris,,,,4462477,Ambulance,Sedan,,, +09/29/2021,17:26,BROOKLYN,11203,40.653564,-73.934494,"(40.653564, -73.934494)",LINDEN BOULEVARD,EAST 46 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462656,Dump,Tractor Truck Diesel,,, +10/01/2021,15:15,,,,,,BORDEN AVENUE,69 LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463116,Sedan,Sedan,,, +09/29/2021,13:08,,,40.828938,-73.84559,"(40.828938, -73.84559)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462852,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,22:15,STATEN ISLAND,10305,40.616535,-74.065315,"(40.616535, -74.065315)",,,14B SYLVA LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463442,Sedan,,,, +09/28/2021,17:12,,,40.867733,-73.88285,"(40.867733, -73.88285)",WEBSTER AVENUE,BOTANICAL SQUARE SOUTH,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462911,Sedan,Dump,,, +09/30/2021,20:25,,,40.796642,-73.96848,"(40.796642, -73.96848)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4462777,Taxi,Firetruck,,, +10/01/2021,15:30,QUEENS,11364,40.74733,-73.755806,"(40.74733, -73.755806)",SPRINGFIELD BOULEVARD,64 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463017,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,14:32,BROOKLYN,11231,40.673897,-74.00614,"(40.673897, -74.00614)",,,838 HICKS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462336,Minicycle,,,, +09/29/2021,11:30,QUEENS,11373,40.734604,-73.864784,"(40.734604, -73.864784)",,,59-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4462367,Dump,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:00,QUEENS,11358,40.764915,-73.79677,"(40.764915, -73.79677)",169 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4462625,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,8:15,BROOKLYN,11228,40.616314,-74.00083,"(40.616314, -74.00083)",16 AVENUE,BAY RIDGE PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462578,Sedan,,,, +09/30/2021,19:25,BROOKLYN,11249,40.69868,-73.96024,"(40.69868, -73.96024)",,,755 KENT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4462718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/27/2021,17:00,,,,,,,,90 EAST MOSHOLU PARKWAY NORTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462896,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,19:20,,,40.744064,-73.987755,"(40.744064, -73.987755)",EAST 27 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4463321,Bike,Sedan,,, +09/30/2021,11:13,QUEENS,11414,40.660847,-73.8403,"(40.660847, -73.8403)",158 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4462736,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,9:49,BROOKLYN,11214,40.596745,-73.985275,"(40.596745, -73.985275)",86 STREET,STILLWELL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4462383,Sedan,,,, +10/01/2021,0:00,BRONX,10456,40.831722,-73.915016,"(40.831722, -73.915016)",MORRIS AVENUE,MCCLELLAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4462879,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,20:32,MANHATTAN,10032,40.8351,-73.93823,"(40.8351, -73.93823)",,,421 WEST 162 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463553,Sedan,Carry All,,, +09/29/2021,14:05,BROOKLYN,11217,40.686646,-73.97982,"(40.686646, -73.97982)",3 AVENUE,SCHERMERHORN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4462759,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,8:00,BROOKLYN,11234,40.636074,-73.92191,"(40.636074, -73.92191)",FARRAGUT ROAD,EAST 57 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4462319,50cc Scoot,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,5:57,MANHATTAN,10040,40.85874,-73.93012,"(40.85874, -73.93012)",BOGARDUS PLACE,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463545,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,4:45,QUEENS,11412,40.705486,-73.776535,"(40.705486, -73.776535)",,,182-10 LIBERTY AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4463737,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:30,,,,,,37 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463523,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,22:35,QUEENS,11413,40.678783,-73.74412,"(40.678783, -73.74412)",133 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462702,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,18:30,MANHATTAN,10022,40.760937,-73.971245,"(40.760937, -73.971245)",EAST 56 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4463076,E-Scooter,,,, +06/17/2021,17:45,,,40.894653,-73.882484,"(40.894653, -73.882484)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462953,Sedan,Sedan,Sedan,, +09/29/2021,18:30,STATEN ISLAND,10305,40.58657,-74.09206,"(40.58657, -74.09206)",HYLAN BOULEVARD,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4462560,Sedan,,,, +10/01/2021,15:50,BROOKLYN,11208,40.678246,-73.870186,"(40.678246, -73.870186)",,,1056 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,20:15,QUEENS,11373,40.7334,-73.873055,"(40.7334, -73.873055)",HOFFMAN DRIVE,58 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463259,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/01/2021,13:04,MANHATTAN,10035,40.7966,-73.929,"(40.7966, -73.929)",,,60 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4462970,Sedan,,,, +10/01/2021,14:00,MANHATTAN,10016,40.741272,-73.97535,"(40.741272, -73.97535)",EAST 30 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4463049,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,20:00,,,40.844864,-73.92256,"(40.844864, -73.92256)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463212,Taxi,,,, +09/30/2021,13:15,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4463096,Bike,,,, +09/20/2021,23:48,MANHATTAN,10019,40.76579,-73.9807,"(40.76579, -73.9807)",,,212 WEST 57 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4462901,Taxi,,,, +10/01/2021,12:30,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LEFFERTS BOULEVARD,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463886,,,,, +09/29/2021,18:40,MANHATTAN,10003,40.73564,-73.98257,"(40.73564, -73.98257)",,,333 2 AVENUE,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4462570,E-Bike,Bike,,, +10/01/2021,9:45,BROOKLYN,11205,40.69803,-73.975555,"(40.69803, -73.975555)",,,52 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463002,Station Wagon/Sport Utility Vehicle,Bike,,, +09/28/2021,11:40,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462906,Sedan,Sedan,,, +10/01/2021,6:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4462864,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,1:45,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4463841,Taxi,,,, +09/29/2021,8:30,QUEENS,11373,40.73352,-73.87489,"(40.73352, -73.87489)",,,87-02 57 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4462772,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/30/2021,12:23,BRONX,10463,40.87884,-73.9046,"(40.87884, -73.9046)",,,190 WEST 231 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463142,Ambulance,Sedan,,, +09/29/2021,13:40,BRONX,10456,40.829136,-73.9114,"(40.829136, -73.9114)",WEBSTER AVENUE,EAST 166 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4462586,Sedan,,,, +10/01/2021,15:45,BROOKLYN,11213,40.67612,-73.936005,"(40.67612, -73.936005)",DEAN STREET,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4463461,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/29/2021,19:48,BROOKLYN,11223,40.595707,-73.965065,"(40.595707, -73.965065)",OCEAN PARKWAY,AVENUE V,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462353,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,20:15,BROOKLYN,11207,40.66203,-73.891075,"(40.66203, -73.891075)",,,698 VERMONT STREET,0,0,0,0,0,0,0,0,Turning Improperly,Backing Unsafely,,,,4463749,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,0:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490442,PK,Sedan,,, +05/29/2021,1:25,QUEENS,11419,40.689003,-73.829346,"(40.689003, -73.829346)",101 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4422441,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/29/2021,13:00,QUEENS,11691,40.59601,-73.74267,"(40.59601, -73.74267)",,,711 SEAGIRT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4422442,Sedan,Sedan,,, +05/24/2021,17:20,QUEENS,11417,40.67492,-73.836334,"(40.67492, -73.836334)",CENTREVILLE AVENUE,PECONIC STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4420176,Sedan,Sedan,,, +09/26/2021,14:30,,,40.674088,-73.79837,"(40.674088, -73.79837)",142 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463647,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,19:15,,,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,2:10,,,,,,CENTRE STREET,Plattwood avenue,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4420470,Sedan,Sedan,,, +12/27/2021,11:33,BROOKLYN,11222,40.727524,-73.9443,"(40.727524, -73.9443)",,,228 NORMAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490010,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,14:10,BROOKLYN,11206,40.700813,-73.95447,"(40.700813, -73.95447)",LEE AVENUE,MIDDLETON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490398,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,19:00,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490451,Sedan,,,, +12/27/2021,13:48,,,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490040,Bus,Sedan,,, +12/27/2021,18:01,BROOKLYN,11206,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,21:53,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,20:31,BROOKLYN,11223,40.593227,-73.973755,"(40.593227, -73.973755)",,,2417 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490209,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,14:11,MANHATTAN,10029,40.78588,-73.94884,"(40.78588, -73.94884)",3 AVENUE,EAST 97 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490428,Sedan,Sedan,,, +12/27/2021,8:15,BRONX,10468,40.860577,-73.90255,"(40.860577, -73.90255)",JEROME AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4489951,Station Wagon/Sport Utility Vehicle,Van,,, +12/27/2021,7:45,BROOKLYN,11217,40.68122,-73.98047,"(40.68122, -73.98047)",WARREN STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,18:30,,,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4490077,Sedan,Sedan,,, +10/08/2021,8:00,,,40.769333,-73.912445,"(40.769333, -73.912445)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4490460,Motorcycle,,,, +12/06/2021,21:50,BRONX,10463,40.882908,-73.908264,"(40.882908, -73.908264)",,,3210 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4490407,Sedan,Sedan,Sedan,Sedan, +12/27/2021,16:00,,,,,,23 AVENUE,BAYCLUB DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4490266,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,20:40,,,40.624653,-73.99933,"(40.624653, -73.99933)",14 AVENUE,,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4490334,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/27/2021,18:15,,,40.77099,-73.99092,"(40.77099, -73.99092)",11 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490129,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/27/2021,23:37,BROOKLYN,11229,40.591423,-73.92358,"(40.591423, -73.92358)",,,2808 GERRITSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490206,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,20:45,,,40.71795,-73.94769,"(40.71795, -73.94769)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4490466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,11:59,,,40.670094,-73.907974,"(40.670094, -73.907974)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4489979,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/27/2021,1:25,,,40.764053,-73.96476,"(40.764053, -73.96476)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490365,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,20:00,QUEENS,11377,40.74539,-73.90559,"(40.74539, -73.90559)",59 STREET,WOODSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490055,Sedan,Sedan,,, +12/27/2021,0:00,MANHATTAN,10032,40.837906,-73.93835,"(40.837906, -73.93835)",WEST 165 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490388,Sedan,,,, +05/29/2021,20:40,BRONX,10456,40.830223,-73.908966,"(40.830223, -73.908966)",PARK AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421661,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,16:55,QUEENS,11368,40.749302,-73.86822,"(40.749302, -73.86822)",,,97-21 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422059,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,19:35,BROOKLYN,11203,40.644955,-73.92113,"(40.644955, -73.92113)",,,5814 CLARENDON ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421842,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,8:00,,,40.665314,-73.86846,"(40.665314, -73.86846)",PINE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422245,Sedan,Sedan,,, +05/29/2021,1:50,BROOKLYN,11212,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421431,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,16:35,,,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4421780,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,16:55,,,40.794376,-73.933655,"(40.794376, -73.933655)",EAST 115 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422113,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,6:15,QUEENS,11433,40.6957,-73.7933,"(40.6957, -73.7933)",108 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421927,Motorscooter,Sedan,,, +05/27/2021,0:00,,,,,,FLATLANDS AVENUE,LOCKE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422199,Sedan,Sedan,,, +05/27/2021,19:15,MANHATTAN,10011,40.741077,-74.001564,"(40.741077, -74.001564)",WEST 16 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:20,QUEENS,11385,40.700123,-73.90622,"(40.700123, -73.90622)",MYRTLE AVENUE,CYPRESS AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422358,Pick-up Truck,E-Bike,,, +05/29/2021,0:14,QUEENS,11361,40.7636,-73.77098,"(40.7636, -73.77098)",BELL BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421447,Bus,Sedan,,, +05/29/2021,10:00,,,40.684746,-73.83112,"(40.684746, -73.83112)",LIBERTY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421985,Sedan,,,, +05/29/2021,16:40,BROOKLYN,11207,40.654484,-73.886536,"(40.654484, -73.886536)",NEW JERSEY AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422243,Sedan,Sedan,,, +05/25/2021,11:55,MANHATTAN,10011,40.74688,-74.00224,"(40.74688, -74.00224)",,,425 WEST 23 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422286,Taxi,,,, +05/28/2021,13:18,,,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4422172,Bus,Sedan,,, +05/29/2021,10:38,,,40.604618,-74.02771,"(40.604618, -74.02771)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4421498,Sedan,,,, +05/29/2021,19:17,MANHATTAN,10017,40.748825,-73.96984,"(40.748825, -73.96984)",EAST 42 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:30,QUEENS,11372,40.75081,-73.89398,"(40.75081, -73.89398)",72 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,18:03,BROOKLYN,11237,40.70603,-73.92842,"(40.70603, -73.92842)",,,38 PORTER AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422094,Station Wagon/Sport Utility Vehicle,Bike,,, +05/28/2021,14:14,,,40.8077,-73.92955,"(40.8077, -73.92955)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4422138,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +05/29/2021,1:20,,,40.874992,-73.81846,"(40.874992, -73.81846)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421584,Sedan,,,, +05/29/2021,13:00,,,40.666355,-73.8045,"(40.666355, -73.8045)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,20:50,MANHATTAN,10002,40.713207,-73.97739,"(40.713207, -73.97739)",GRAND STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422310,Sedan,,,, +05/25/2021,14:00,,,40.61306,-73.92618,"(40.61306, -73.92618)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:50,BRONX,10468,40.86101,-73.910355,"(40.86101, -73.910355)",,,2251 SEDGWICK AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4422400,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,20:30,QUEENS,11433,40.703835,-73.778496,"(40.703835, -73.778496)",180 STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421564,Sedan,Sedan,,, +05/29/2021,18:10,QUEENS,11434,40.68418,-73.78298,"(40.68418, -73.78298)",,,117-04 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421537,Sedan,Sedan,,, +05/27/2021,0:00,BROOKLYN,11208,40.68857,-73.8757,"(40.68857, -73.8757)",JAMAICA AVENUE,CYPRESS HILL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422258,Sedan,,,, +05/29/2021,18:55,BROOKLYN,11235,40.590187,-73.95383,"(40.590187, -73.95383)",EAST 16 STREET,AVENUE Y,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4421610,Sedan,,,, +05/26/2021,14:30,BRONX,10451,40.81626,-73.92725,"(40.81626, -73.92725)",,,198 EAST 144 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4422137,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,16:30,STATEN ISLAND,10305,40.60503,-74.06574,"(40.60503, -74.06574)",SCHOOL ROAD,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422013,Sedan,,,, +05/25/2021,9:07,BROOKLYN,11222,40.73332,-73.95945,"(40.73332, -73.95945)",,,59 GREEN STREET,2,0,0,0,0,0,2,0,Steering Failure,,,,,4422163,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,22:20,BROOKLYN,11211,40.709713,-73.95489,"(40.709713, -73.95489)",,,310 SOUTH 3 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4422100,Taxi,Bike,,, +05/29/2021,18:47,QUEENS,11429,40.710247,-73.74215,"(40.710247, -73.74215)",216 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421527,Sedan,Sedan,,, +05/29/2021,14:25,BROOKLYN,11214,40.59894,-73.997894,"(40.59894, -73.997894)",,,2155 BATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421597,Sedan,,,, +05/29/2021,20:15,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,SHERMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421797,Sedan,,,, +05/27/2021,15:50,,,40.704746,-73.91404,"(40.704746, -73.91404)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422303,Sedan,,,, +05/24/2021,16:00,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,EAST HOUSTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4422423,Station Wagon/Sport Utility Vehicle,Bike,,, +05/28/2021,15:42,,,40.830025,-73.872765,"(40.830025, -73.872765)",WESTCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422092,Sedan,,,, +05/29/2021,19:04,BROOKLYN,11207,40.656116,-73.89666,"(40.656116, -73.89666)",HINSDALE STREET,DE WITT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422210,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/22/2021,23:30,,,40.717724,-73.98579,"(40.717724, -73.98579)",WILLIAMSBURG BRIDGE,DELANCEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422311,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,16:40,,,40.75858,-73.82562,"(40.75858, -73.82562)",BARCLAY AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421626,Sedan,Bike,,, +05/28/2021,13:15,QUEENS,11373,40.74331,-73.87451,"(40.74331, -73.87451)",43 AVENUE,91 PLACE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422372,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,15:30,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421724,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,17:05,BROOKLYN,11208,40.674652,-73.87712,"(40.674652, -73.87712)",MILFORD STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422262,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,17:45,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421550,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,10:00,BROOKLYN,11207,40.677494,-73.90186,"(40.677494, -73.90186)",,,2501 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422198,Sedan,,,, +05/29/2021,9:30,BRONX,10462,40.83419,-73.84525,"(40.83419, -73.84525)",ZEREGA AVENUE,NEWBOLD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422107,Sedan,Sedan,,, +05/29/2021,17:24,,,40.80751,-73.93413,"(40.80751, -73.93413)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,,,,,4422126,Sedan,,,, +05/24/2021,20:00,,,40.706173,-73.85186,"(40.706173, -73.85186)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422403,Sedan,Sedan,,, +05/28/2021,19:15,,,40.603188,-74.06724,"(40.603188, -74.06724)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422184,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,9:00,,,40.547836,-74.22037,"(40.547836, -74.22037)",BLOOMINGDALE ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422254,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/29/2021,20:44,,,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4421885,Sedan,Bus,,, +05/27/2021,15:00,BROOKLYN,11208,40.679504,-73.87136,"(40.679504, -73.87136)",,,125 MC KINLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422221,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,7:20,BRONX,10452,40.846413,-73.91689,"(40.846413, -73.91689)",MACOMBS ROAD,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421992,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,19:24,,,40.637745,-74.07603,"(40.637745, -74.07603)",VICTORY BOULEVARD,BAY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421745,Sedan,Sedan,,, +05/22/2021,17:35,,,40.827595,-73.85004,"(40.827595, -73.85004)",BRUCKNER BOULEVARD,CASTLE HILL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422086,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/28/2021,14:30,MANHATTAN,10018,40.758915,-73.9997,"(40.758915, -73.9997)",WEST 39 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422298,Van,Sedan,,, +05/29/2021,10:37,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421645,Sedan,,,, +05/27/2021,18:00,,,40.672314,-73.893036,"(40.672314, -73.893036)",PITKIN AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4422203,Sedan,Bike,,, +05/27/2021,13:00,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4422325,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,1:30,MANHATTAN,10038,40.712696,-73.99878,"(40.712696, -73.99878)",,,45 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422035,Taxi,Sedan,,, +05/29/2021,12:15,BROOKLYN,11212,40.662556,-73.91963,"(40.662556, -73.91963)",DUMONT AVENUE,TAPSCOTT STREET,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4421781,Sedan,Bike,,, +05/29/2021,16:30,,,40.575645,-74.169815,"(40.575645, -74.169815)",,,2875 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422039,Sedan,Sedan,,, +05/29/2021,13:35,,,40.71808,-73.94781,"(40.71808, -73.94781)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421947,Sedan,Sedan,,, +05/27/2021,18:34,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422237,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,3:02,QUEENS,11104,40.74348,-73.921486,"(40.74348, -73.921486)",43 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4421433,Sedan,Sedan,,, +05/28/2021,5:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unsafe Speed,,,,4422274,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,19:00,,,40.739902,-73.791275,"(40.739902, -73.791275)",HORACE HARDING EXPRESSWAY,183 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4422362,Bus,Sedan,,, +05/29/2021,2:15,BRONX,10467,40.882217,-73.88046,"(40.882217, -73.88046)",EAST GUN HILL ROAD,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,23:58,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,WEST 180 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422178,Sedan,Bike,,, +05/21/2021,16:29,,,,,,,,8000 80 street,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422357,Bike,Sedan,,, +05/29/2021,11:20,BROOKLYN,11234,40.622288,-73.92624,"(40.622288, -73.92624)",,,1568 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422323,Sedan,,,, +05/15/2021,2:10,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422215,Sedan,,,, +05/29/2021,4:24,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4421462,Sedan,,,, +05/25/2021,19:50,STATEN ISLAND,10312,40.53561,-74.18344,"(40.53561, -74.18344)",,,16 ALVINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422244,Sedan,,,, +05/29/2021,15:19,MANHATTAN,10012,40.72455,-74.00194,"(40.72455, -74.00194)",SPRING STREET,WEST BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421635,Sedan,Bike,,, +05/29/2021,15:50,BROOKLYN,11249,40.722286,-73.957466,"(40.722286, -73.957466)",WYTHE AVENUE,NORTH 12 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421948,Sedan,,,, +05/25/2021,21:00,MANHATTAN,10011,40.744373,-74.00396,"(40.744373, -74.00396)",,,420 WEST 19 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4422287,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,19:30,MANHATTAN,10002,40.716522,-73.98863,"(40.716522, -73.98863)",,,375 GRAND STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421750,Taxi,Bike,,, +05/28/2021,0:01,BROOKLYN,11208,40.668613,-73.86857,"(40.668613, -73.86857)",,,2602 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422171,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,10:34,BROOKLYN,11207,40.673916,-73.88598,"(40.673916, -73.88598)",,,399 WARWICK STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422202,Sedan,,,, +05/29/2021,5:53,,,40.84497,-73.9092,"(40.84497, -73.9092)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4421856,Tractor Truck Diesel,,,, +05/28/2021,11:50,BROOKLYN,11234,40.62797,-73.92683,"(40.62797, -73.92683)",,,1341 EAST 51 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422340,Sedan,,,, +05/28/2021,11:55,STATEN ISLAND,10312,40.56393,-74.18512,"(40.56393, -74.18512)",,,49 AMANDA COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422261,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/29/2021,13:30,,,40.62488,-74.01964,"(40.62488, -74.01964)",7 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4421549,Box Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +05/29/2021,14:19,,,,,,HUTCHINSON RIVER PARKWAY,ORCHARD BEACH ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4421566,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/28/2021,7:00,BROOKLYN,11211,40.710533,-73.95514,"(40.710533, -73.95514)",RODNEY STREET,BORINQUEN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422103,Sedan,,,, +05/27/2021,16:47,BROOKLYN,11234,40.633144,-73.92356,"(40.633144, -73.92356)",AVENUE H,EAST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422331,Sedan,Sedan,,, +05/27/2021,18:28,MANHATTAN,10028,40.774284,-73.94734,"(40.774284, -73.94734)",,,524 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,22:30,MANHATTAN,10001,40.7509,-73.99812,"(40.7509, -73.99812)",9 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,15:00,,,40.685436,-73.79326,"(40.685436, -73.79326)",114 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421530,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,8:08,,,40.84664,-73.92568,"(40.84664, -73.92568)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422055,Sedan,,,, +05/29/2021,12:15,,,40.818768,-73.86338,"(40.818768, -73.86338)",SOUND VIEW AVENUE,BEACH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422108,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,21:07,,,40.745235,-73.937706,"(40.745235, -73.937706)",THOMSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421555,Sedan,Sedan,,, +05/29/2021,20:45,BROOKLYN,11233,40.672016,-73.92425,"(40.672016, -73.92425)",,,1595 PARK PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421796,Sedan,Sedan,,, +05/27/2021,14:00,BROOKLYN,11208,40.679195,-73.88544,"(40.679195, -73.88544)",,,235 CLEVELAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422211,Chassis Cab,Sedan,,, +05/26/2021,8:45,STATEN ISLAND,10309,40.520916,-74.235115,"(40.520916, -74.235115)",RICHMOND VALLEY ROAD,PAGE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422251,Tractor Truck Diesel,,,, +05/28/2021,19:40,BROOKLYN,11218,40.64336,-73.973526,"(40.64336, -73.973526)",,,616 BEVERLEY ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422164,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/29/2021,18:00,MANHATTAN,10010,40.7429,-73.99281,"(40.7429, -73.99281)",WEST 23 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421654,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,17:00,QUEENS,11368,40.736317,-73.85903,"(40.736317, -73.85903)",,,60-04 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421831,Sedan,,,, +05/28/2021,22:20,,,40.602592,-73.74969,"(40.602592, -73.74969)",CORNAGA AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422430,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,21:35,,,40.716194,-73.996086,"(40.716194, -73.996086)",BOWERY,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422414,Sedan,Sedan,,, +05/29/2021,21:35,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",WILSON AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:05,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422206,Sedan,,,, +05/26/2021,22:10,QUEENS,11102,40.771725,-73.92633,"(40.771725, -73.92633)",,,27-09 21 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422374,Sedan,Sedan,,, +05/28/2021,23:10,,,40.83302,-73.862724,"(40.83302, -73.862724)",WESTCHESTER AVENUE,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422099,Sedan,,,, +05/29/2021,9:48,BROOKLYN,11209,40.62578,-74.02416,"(40.62578, -74.02416)",80 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421496,Sedan,,,, +05/28/2021,20:00,BRONX,10454,40.80719,-73.92431,"(40.80719, -73.92431)",EAST 135 STREET,WILLIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422146,Sedan,Sedan,,, +05/29/2021,2:10,BROOKLYN,11229,40.59855,-73.95904,"(40.59855, -73.95904)",,,1229 AVENUE U,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421611,Taxi,Dump,,, +05/28/2021,14:00,BRONX,10472,40.832386,-73.86457,"(40.832386, -73.86457)",THIERIOT AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422112,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,2:00,,,40.74166,-73.735886,"(40.74166, -73.735886)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4422076,Sedan,,,, +05/29/2021,22:45,QUEENS,11358,40.756474,-73.805466,"(40.756474, -73.805466)",45 AVENUE,161 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4421910,Bike,,,, +05/25/2021,19:15,,,40.709095,-73.99622,"(40.709095, -73.99622)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422429,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,19:29,BROOKLYN,11208,40.664074,-73.86052,"(40.664074, -73.86052)",,,1050 FORBELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,21:30,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422011,Sedan,Sedan,,, +05/27/2021,21:20,BROOKLYN,11207,40.671795,-73.89195,"(40.671795, -73.89195)",,,299 BRADFORD STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4422207,Sedan,,,, +05/29/2021,21:00,,,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421720,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,11:30,BROOKLYN,11208,40.683598,-73.88563,"(40.683598, -73.88563)",,,2 ELTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422160,Dump,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,9:55,,,40.611122,-74.11283,"(40.611122, -74.11283)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4422186,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/29/2021,15:10,BROOKLYN,11217,40.68714,-73.98124,"(40.68714, -73.98124)",,,333 SCHERMERHORN STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Aggressive Driving/Road Rage,,,,4421829,Bike,,,, +05/29/2021,13:35,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE EXTENSION,FULTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421504,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,9:45,,,40.61242,-74.13245,"(40.61242, -74.13245)",,,2070 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422029,Sedan,Sedan,,, +05/29/2021,21:55,BROOKLYN,11201,40.699844,-73.991035,"(40.699844, -73.991035)",CADMAN PLAZA WEST,MIDDAGH STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421577,Sedan,,,, +05/29/2021,17:00,MANHATTAN,10013,40.718777,-73.995705,"(40.718777, -73.995705)",ELIZABETH STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422044,Sedan,,,, +05/29/2021,19:10,QUEENS,11413,40.675884,-73.75577,"(40.675884, -73.75577)",SPRINGFIELD BOULEVARD,EAST GATE PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421682,Sedan,,,, +05/29/2021,10:00,,,40.63215,-74.16525,"(40.63215, -74.16525)",BRABANT STREET,GRANDVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/24/2021,13:20,,,40.815155,-73.95784,"(40.815155, -73.95784)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422220,Sedan,Sedan,,, +05/29/2021,22:16,QUEENS,11385,40.713116,-73.90972,"(40.713116, -73.90972)",METROPOLITAN AVENUE,AMORY COURT,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4421875,Sedan,Sedan,Sedan,, +05/28/2021,18:35,BROOKLYN,11207,40.65662,-73.889175,"(40.65662, -73.889175)",,,860 PENNSYLVANIA AVENUE,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4422238,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,3:19,BROOKLYN,11209,40.634396,-74.02363,"(40.634396, -74.02363)",,,6914 4 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421437,Taxi,,,, +05/21/2021,17:15,QUEENS,11434,40.680775,-73.76383,"(40.680775, -73.76383)",MERRICK BOULEVARD,129 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422280,Dump,,,, +05/22/2021,3:47,BROOKLYN,11221,40.685028,-73.94135,"(40.685028, -73.94135)",PUTNAM AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422176,Sedan,Sedan,,, +05/27/2021,18:20,QUEENS,11435,40.705265,-73.81606,"(40.705265, -73.81606)",,,139-48 QUEENS BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,,,,,4422361,Bike,,,, +05/25/2021,19:46,BROOKLYN,11210,40.618366,-73.94428,"(40.618366, -73.94428)",,,1358 EAST 31 STREET,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422332,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,13:07,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422109,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,18:00,QUEENS,11429,40.7185,-73.73531,"(40.7185, -73.73531)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421553,Sedan,Sedan,,, +05/29/2021,20:45,,,40.73532,-73.920265,"(40.73532, -73.920265)",46 STREET,LAUREL HILL BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inexperience,,,4421557,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/29/2021,17:10,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4422087,Sedan,Sedan,Sedan,Sedan, +05/27/2021,13:25,STATEN ISLAND,10312,40.541153,-74.16696,"(40.541153, -74.16696)",AMBOY ROAD,BAMBERGER LANE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4422270,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,12:29,BROOKLYN,11223,40.60712,-73.983376,"(40.60712, -73.983376)",,,1615 WEST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421596,Sedan,,,, +12/27/2021,11:20,BRONX,10453,40.85038,-73.90699,"(40.85038, -73.90699)",CRESTON AVENUE,EAST TREMONT AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Unspecified,,,4490122,Sedan,Taxi,Taxi,, +05/27/2021,17:25,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",WILSON AVENUE,DE KALB AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422296,Sedan,,,, +05/29/2021,5:30,MANHATTAN,10001,40.74549,-73.99307,"(40.74549, -73.99307)",,,160 WEST 26 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421652,Tractor Truck Diesel,Sedan,,, +05/27/2021,17:33,BRONX,10454,40.806847,-73.906845,"(40.806847, -73.906845)",,,358 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4422130,Sedan,FDNY Fire,,, +05/27/2021,16:30,BROOKLYN,11234,40.61432,-73.92772,"(40.61432, -73.92772)",,,2286 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422330,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/29/2021,8:55,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421513,Sedan,Sedan,,, +05/28/2021,0:27,BROOKLYN,11211,40.7055,-73.95972,"(40.7055, -73.95972)",,,74 LEE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422089,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,21:57,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",MADISON AVENUE,EAST 125 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422123,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,17:00,MANHATTAN,10035,40.805637,-73.9344,"(40.805637, -73.9344)",3 AVENUE,EAST 128 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,7:00,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4421531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,1:10,BROOKLYN,11204,40.61913,-73.99019,"(40.61913, -73.99019)",65 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421595,Sedan,Sedan,,, +05/29/2021,13:55,,,40.74777,-74.000404,"(40.74777, -74.000404)",9 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4422307,Sedan,Sedan,,, +05/28/2021,23:30,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422322,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,23:02,QUEENS,11354,40.765446,-73.827194,"(40.765446, -73.827194)",,,139-81 35 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421631,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,1:58,,,40.584557,-73.950874,"(40.584557, -73.950874)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4421952,Sedan,,,, +05/29/2021,13:19,,,40.69939,-73.91938,"(40.69939, -73.91938)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422299,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,22:15,BROOKLYN,11205,40.696453,-73.956535,"(40.696453, -73.956535)",,,814 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,6:10,BROOKLYN,11208,40.66912,-73.88222,"(40.66912, -73.88222)",,,559 ELTON STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4422260,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,12:30,QUEENS,11355,40.74778,-73.81294,"(40.74778, -73.81294)",ROBINSON STREET,QUINCE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421543,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,14:15,BROOKLYN,11214,40.582752,-73.98633,"(40.582752, -73.98633)",,,2970 CROPSEY AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,8:30,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421502,Sedan,Chassis Cab,,, +05/29/2021,10:01,BROOKLYN,11225,40.662563,-73.94758,"(40.662563, -73.94758)",,,405 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421612,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,0:05,QUEENS,11367,40.732037,-73.814926,"(40.732037, -73.814926)",KISSENA BOULEVARD,JEWEL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422363,4 dr sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/27/2021,14:00,BROOKLYN,11211,40.71162,-73.952995,"(40.71162, -73.952995)",,,418 KEAP STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4422082,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,11:10,BROOKLYN,11219,40.621616,-73.99831,"(40.621616, -73.99831)",NEW UTRECHT AVENUE,67 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,12:00,BROOKLYN,11208,40.678394,-73.880905,"(40.678394, -73.880905)",,,15 BERRIMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422218,Sedan,,,, +12/27/2021,16:00,QUEENS,11102,40.776157,-73.932625,"(40.776157, -73.932625)",4 STREET,26 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490362,Sedan,,,, +05/29/2021,9:15,BROOKLYN,11211,40.7154,-73.92693,"(40.7154, -73.92693)",GRAND STREET,GARDNER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421760,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/29/2021,6:08,BRONX,10472,40.834198,-73.86474,"(40.834198, -73.86474)",,,1842 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4422102,Convertible,Sedan,Sedan,, +05/29/2021,1:21,BRONX,10455,40.80853,-73.90497,"(40.80853, -73.90497)",EAST 144 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422145,Sedan,,,, +05/27/2021,14:46,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4422117,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,7:01,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4421922,Sedan,,,, +05/27/2021,11:00,BROOKLYN,11208,40.66933,-73.8758,"(40.66933, -73.8758)",MILFORD STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422201,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,17:40,,,40.755215,-73.99668,"(40.755215, -73.99668)",DYER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422291,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/29/2021,11:00,STATEN ISLAND,10314,40.614937,-74.12742,"(40.614937, -74.12742)",WESTCOTT BOULEVARD,KEMBALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421737,Sedan,,,, +05/27/2021,17:53,BROOKLYN,11207,40.652752,-73.88629,"(40.652752, -73.88629)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4422212,Sedan,Box Truck,,, +05/29/2021,13:37,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",HOWARD AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421719,Sedan,Sedan,,, +05/29/2021,9:35,BROOKLYN,11236,40.642014,-73.907974,"(40.642014, -73.907974)",,,1116 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,19:00,BROOKLYN,11207,40.671432,-73.88718,"(40.671432, -73.88718)",,,455 BARBEY STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422239,Sedan,,,, +05/27/2021,19:57,BROOKLYN,11206,40.70886,-73.942566,"(40.70886, -73.942566)",,,170 SCHOLES STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4422382,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,19:40,,,40.761143,-73.838905,"(40.761143, -73.838905)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421832,Sedan,Sedan,,, +05/29/2021,8:45,BROOKLYN,11234,40.613937,-73.918526,"(40.613937, -73.918526)",,,2045 EAST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422341,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,10:55,MANHATTAN,10011,40.746815,-74.00612,"(40.746815, -74.00612)",,,530 WEST 21 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4422288,Bike,Sedan,,, +05/29/2021,0:05,,,40.86769,-73.92122,"(40.86769, -73.92122)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4422181,Tanker,Taxi,,, +05/29/2021,13:20,BROOKLYN,11210,40.63944,-73.94935,"(40.63944, -73.94935)",,,454 EAST 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4421868,Sedan,Box Truck,,, +05/26/2021,21:35,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422409,Sedan,Sedan,,, +05/29/2021,18:05,BRONX,10453,40.84944,-73.906006,"(40.84944, -73.906006)",EAST TREMONT AVENUE,GRAND CONCOURSE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422069,Station Wagon/Sport Utility Vehicle,Bus,,, +05/27/2021,12:00,,,40.60998,-74.12017,"(40.60998, -74.12017)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4422187,Motorcycle,Sedan,,, +05/29/2021,14:40,BROOKLYN,11213,40.677483,-73.93033,"(40.677483, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421788,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,20:31,BRONX,10456,40.829597,-73.902245,"(40.829597, -73.902245)",BOSTON ROAD,EAST 168 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421657,Sedan,Scooter,,, +05/08/2021,15:38,MANHATTAN,10033,40.85382,-73.93636,"(40.85382, -73.93636)",OVERLOOK TERRACE,WEST 186 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4422233,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +05/27/2021,23:34,STATEN ISLAND,10312,40.536373,-74.176865,"(40.536373, -74.176865)",AMBOY ROAD,PINE TERRACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4422250,Sedan,Sedan,,, +05/28/2021,23:42,BRONX,10473,40.816406,-73.86734,"(40.816406, -73.86734)",,,1685 RANDALL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422098,Motorcycle,Sedan,,, +05/29/2021,21:58,BROOKLYN,11230,40.625973,-73.97624,"(40.625973, -73.97624)",MC DONALD AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4422165,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,6:23,,,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4421891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Sedan +05/27/2021,16:35,BRONX,10467,40.876022,-73.862144,"(40.876022, -73.862144)",EAST GUN HILL ROAD,BARNES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422431,Sedan,Sedan,,, +05/29/2021,3:31,,,40.636204,-74.150505,"(40.636204, -74.150505)",,,23 LAKE AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4422031,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/27/2021,16:30,,,40.82752,-73.84776,"(40.82752, -73.84776)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4422295,Sedan,Sedan,,, +05/27/2021,11:05,BROOKLYN,11207,40.667343,-73.89471,"(40.667343, -73.89471)",,,405 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422205,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,20:15,BRONX,10457,40.844147,-73.90061,"(40.844147, -73.90061)",,,450 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422356,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,19:55,,,40.84944,-73.906006,"(40.84944, -73.906006)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4422046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,16:00,BROOKLYN,11210,40.62997,-73.936775,"(40.62997, -73.936775)",AVENUE I,ALBANY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422335,Sedan,Pick-up Truck,,, +05/27/2021,23:30,BROOKLYN,11207,40.652714,-73.8906,"(40.652714, -73.8906)",MALTA STREET,COZINE AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4422208,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,2:30,BROOKLYN,11232,40.663773,-73.99596,"(40.663773, -73.99596)",,,150 20 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421444,Sedan,,,, +05/20/2021,18:00,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",WEST 29 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422284,Sedan,,,, +05/27/2021,8:23,BROOKLYN,11207,40.672047,-73.892975,"(40.672047, -73.892975)",,,274 WYONA STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4422235,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/29/2021,12:00,,,40.61476,-74.069016,"(40.61476, -74.069016)",VIRGINIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421736,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,23:45,BRONX,10473,40.823902,-73.87451,"(40.823902, -73.87451)",,,1600 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4422110,Sedan,,,, +05/29/2021,19:00,QUEENS,11420,40.6778,-73.823845,"(40.6778, -73.823845)",LINDEN BOULEVARD,115 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4421559,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/20/2021,22:43,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,STEWART AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422105,Pick-up Truck,,,, +12/27/2021,22:10,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490253,Sedan,Sedan,,, +05/29/2021,1:21,STATEN ISLAND,10304,40.608727,-74.08839,"(40.608727, -74.08839)",NARROWS ROAD NORTH,TARGEE STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422182,Sedan,Sedan,,, +05/29/2021,18:05,,,40.829,-73.83642,"(40.829, -73.83642)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4421919,Sedan,,,, +05/29/2021,20:08,,,40.631275,-73.97606,"(40.631275, -73.97606)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422007,Sedan,Sedan,,, +05/27/2021,12:40,,,40.577545,-73.99789,"(40.577545, -73.99789)",BAY VIEW AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422161,Sedan,,,, +05/27/2021,18:45,BROOKLYN,11206,40.70322,-73.94079,"(40.70322, -73.94079)",HUMBOLDT STREET,VARET STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4422084,Taxi,,,, +05/29/2021,21:00,BROOKLYN,11204,40.620804,-73.99294,"(40.620804, -73.99294)",,,1693 65 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4421599,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/29/2021,0:30,MANHATTAN,10001,40.746037,-73.9886,"(40.746037, -73.9886)",WEST 29 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,11:50,BROOKLYN,11234,40.60625,-73.92374,"(40.60625, -73.92374)",RYDER STREET,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422329,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,13:15,,,40.66718,-73.95076,"(40.66718, -73.95076)",CARROLL STREET,,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4421515,Sedan,Sedan,,, +05/29/2021,11:30,,,40.69939,-73.91938,"(40.69939, -73.91938)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422300,Ambulance,Sedan,,, +05/28/2021,10:40,BROOKLYN,11211,40.71473,-73.94208,"(40.71473, -73.94208)",METROPOLITAN AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422090,Van,Dump,,, +05/29/2021,14:15,BROOKLYN,11236,40.638477,-73.91528,"(40.638477, -73.91528)",,,638 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421818,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/29/2021,9:45,,,40.695065,-73.75001,"(40.695065, -73.75001)",LINDEN BOULEVARD,202 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4422425,Sedan,,,, +05/29/2021,2:25,BRONX,10459,40.82472,-73.89179,"(40.82472, -73.89179)",,,1048 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422268,Sedan,Sedan,,, +05/26/2021,18:25,,,40.726376,-73.76624,"(40.726376, -73.76624)",FRANCIS LEWIS BOULEVARD,GRAND CENTRAL PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422360,Sedan,,,, +05/29/2021,22:55,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,4421601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/29/2021,11:10,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421658,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,1:40,BROOKLYN,11219,40.637264,-73.9898,"(40.637264, -73.9898)",13 AVENUE,45 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422167,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,4:35,,,40.798225,-73.9291,"(40.798225, -73.9291)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4422124,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,15:09,QUEENS,11421,40.690216,-73.854645,"(40.690216, -73.854645)",89 AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422132,Sedan,Sedan,,, +05/29/2021,4:53,QUEENS,11692,40.589012,-73.788246,"(40.589012, -73.788246)",,,57-15 SHORE FRONT PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422435,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,9:20,QUEENS,11412,40.70314,-73.76007,"(40.70314, -73.76007)",196 STREET,111 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4421512,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,22:00,BRONX,10457,40.846783,-73.907394,"(40.846783, -73.907394)",EAST 175 STREET,WEEKS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422022,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,19:10,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4421552,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,11:00,BRONX,10472,40.834896,-73.87495,"(40.834896, -73.87495)",,,1435 HARROD AVENUE,1,0,1,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4422097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,11:03,BROOKLYN,11209,40.617764,-74.03338,"(40.617764, -74.03338)",,,9417 3 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,15:34,BROOKLYN,11235,40.58209,-73.955185,"(40.58209, -73.955185)",CASS PLACE,CORBIN PLACE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4421679,Sedan,Sedan,,, +05/28/2021,6:18,MANHATTAN,10035,40.79965,-73.93999,"(40.79965, -73.93999)",,,165 EAST 118 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4422122,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/29/2021,21:00,QUEENS,11367,40.71952,-73.814255,"(40.71952, -73.814255)",,,79-04 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422364,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,19:59,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4422078,Sedan,Sedan,,, +05/29/2021,13:00,,,40.606895,-74.00663,"(40.606895, -74.00663)",17 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421591,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,1:33,BROOKLYN,11208,40.66999,-73.85912,"(40.66999, -73.85912)",LINDEN BOULEVARD,EMERALD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422246,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,3:50,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,11:00,QUEENS,11372,40.74785,-73.88183,"(40.74785, -73.88183)",,,84-24 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4421833,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/29/2021,12:20,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Pavement Slippery,Passing or Lane Usage Improper,,,,4421779,Bus,Sedan,,, +05/25/2021,20:22,,,40.690796,-73.95637,"(40.690796, -73.95637)",SKILLMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422173,Sedan,,,, +05/27/2021,17:06,BROOKLYN,11208,40.678864,-73.881454,"(40.678864, -73.881454)",,,3080 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4422200,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,22:03,BROOKLYN,11203,40.652477,-73.94686,"(40.652477, -73.94686)",,,864 NEW YORK AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4421869,Sedan,Sedan,,, +03/26/2021,15:40,,,40.693436,-73.97784,"(40.693436, -73.97784)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422385,Bike,,,, +05/29/2021,12:47,,,,,,CLEARVIEW EXPRESSWAY,32 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4421576,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,13:45,BROOKLYN,11234,40.61477,-73.93663,"(40.61477, -73.93663)",,,3615 QUENTIN ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422342,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,23:45,BROOKLYN,11208,40.66796,-73.87009,"(40.66796, -73.87009)",LINDEN BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422259,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/27/2021,5:30,,,40.75388,-73.822815,"(40.75388, -73.822815)",KISSENA BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4489874,,,,, +05/29/2021,10:00,BRONX,10454,40.809418,-73.92158,"(40.809418, -73.92158)",,,412 EAST 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422142,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,8:40,BROOKLYN,11203,40.65737,-73.94614,"(40.65737, -73.94614)",,,423 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421614,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,3:50,QUEENS,11423,40.708935,-73.77721,"(40.708935, -73.77721)",JAMAICA AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421926,Sedan,Sedan,,, +05/27/2021,16:50,MANHATTAN,10035,40.80129,-73.9439,"(40.80129, -73.9439)",EAST 118 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,Unspecified,4422116,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/29/2021,2:10,QUEENS,11372,40.747135,-73.89242,"(40.747135, -73.89242)",BROADWAY,73 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4422063,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,1:10,,,40.658703,-73.854904,"(40.658703, -73.854904)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4421532,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,4:30,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",FRESH POND ROAD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4421476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,1:18,BROOKLYN,11233,40.67843,-73.91357,"(40.67843, -73.91357)",BOYLAND STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421718,Box Truck,,,, +05/28/2021,19:00,QUEENS,11692,40.597523,-73.79907,"(40.597523, -73.79907)",,,69-43 HILLMEYER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422320,Sedan,,,, +05/29/2021,21:43,QUEENS,11105,40.776695,-73.906685,"(40.776695, -73.906685)",35 STREET,21 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421979,Sedan,,,, +05/29/2021,19:15,QUEENS,11354,40.765137,-73.81944,"(40.765137, -73.81944)",NORTHERN BOULEVARD,147 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421630,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:20,BROOKLYN,11207,40.660736,-73.89966,"(40.660736, -73.89966)",VAN SIDERIN AVENUE,NEWPORT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422217,Sedan,,,, +05/28/2021,21:21,BROOKLYN,11239,40.655075,-73.86772,"(40.655075, -73.86772)",,,911 ERSKINE STREET,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4422240,Sedan,,,, +05/29/2021,16:10,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422179,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,12:09,MANHATTAN,10001,,,,WEST 26 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,13:32,STATEN ISLAND,10304,,,,,,801 NARROWS ROAD NORTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421741,Sedan,Sedan,Box Truck,, +05/19/2021,11:47,,,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,14:41,MANHATTAN,10002,40.720413,-73.98341,"(40.720413, -73.98341)",,,154 ATTORNEY STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4422309,Sedan,,,, +05/28/2021,18:00,BRONX,10472,40.830563,-73.87091,"(40.830563, -73.87091)",CROES AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422091,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,21:15,BROOKLYN,11234,40.61463,-73.91298,"(40.61463, -73.91298)",,,2147 MILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422337,Sedan,Sedan,,, +05/29/2021,16:08,QUEENS,11432,40.720535,-73.776215,"(40.720535, -73.776215)",188 STREET,WICKLOW PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422369,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,19:00,QUEENS,11435,40.702526,-73.81384,"(40.702526, -73.81384)",,,138-50 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421563,Pick-up Truck,,,, +05/29/2021,15:30,BRONX,10472,40.834232,-73.874,"(40.834232, -73.874)",EAST 174 STREET,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422111,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,21:42,STATEN ISLAND,10307,40.511948,-74.23971,"(40.511948, -74.23971)",AMBOY ROAD,BARNARD AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4422267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/26/2021,18:10,BRONX,10462,40.833496,-73.858246,"(40.833496, -73.858246)",,,1982 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422085,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,16:45,QUEENS,11413,40.66607,-73.76175,"(40.66607, -73.76175)",SOUTH CONDUIT AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421551,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,17:12,BROOKLYN,11236,40.64667,-73.896034,"(40.64667, -73.896034)",,,10307 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4421606,Bus,Sedan,,, +05/28/2021,23:45,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Tire Failure/Inadequate,,,,4422151,Sedan,Sedan,,, +05/27/2021,12:15,BRONX,10455,40.81721,-73.916,"(40.81721, -73.916)",EAST 151 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4422136,,,,, +05/29/2021,12:18,,,40.72988,-73.74952,"(40.72988, -73.74952)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421526,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,15:59,MANHATTAN,10011,40.74817,-74.00529,"(40.74817, -74.00529)",,,535 WEST 23 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422290,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,14:37,BROOKLYN,11234,40.61925,-73.92192,"(40.61925, -73.92192)",,,5502 AVENUE N,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4422343,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/28/2021,10:30,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4422183,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,11:30,,,,,,,,271 Beach 21 street,0,0,0,0,0,0,0,0,Unspecified,,,,,4422424,Sedan,,,, +05/29/2021,10:53,BRONX,10452,40.838425,-73.920425,"(40.838425, -73.920425)",,,1297 INWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421888,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,9:15,BROOKLYN,11208,40.686115,-73.86992,"(40.686115, -73.86992)",RIDGEWOOD AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422223,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,18:00,,,40.645344,-73.87897,"(40.645344, -73.87897)",PENNSYLVANIA AVENUE,HORNELL LOOP,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4422236,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,4:29,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",55 DRIVE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421445,Sedan,,,, +05/28/2021,9:00,BROOKLYN,11234,40.628223,-73.91497,"(40.628223, -73.91497)",,,1086 BERGEN AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4422326,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,17:33,QUEENS,11417,40.680687,-73.84459,"(40.680687, -73.84459)",ROCKAWAY BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422015,Sedan,Sedan,,, +05/29/2021,18:45,,,40.728195,-73.984886,"(40.728195, -73.984886)",EAST 9 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4422054,Bike,Taxi,,, +05/25/2021,10:30,MANHATTAN,10011,40.745823,-74.001816,"(40.745823, -74.001816)",WEST 22 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422285,Van,Sedan,,, +05/29/2021,9:32,STATEN ISLAND,10310,40.636707,-74.11938,"(40.636707, -74.11938)",,,820 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4421735,Taxi,,,, +05/29/2021,20:45,STATEN ISLAND,10306,40.567966,-74.1231,"(40.567966, -74.1231)",SOUTH RAILROAD AVENUE,TYSENS LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422162,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/29/2021,0:30,STATEN ISLAND,10310,40.627243,-74.124084,"(40.627243, -74.124084)",,,1037 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421812,Sedan,Sedan,,, +05/29/2021,22:30,BROOKLYN,11237,40.70239,-73.924644,"(40.70239, -73.924644)",KNICKERBOCKER AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422302,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,22:30,,,40.804012,-73.93097,"(40.804012, -73.93097)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490452,Sedan,,,, +05/29/2021,8:30,,,40.605522,-73.76088,"(40.605522, -73.76088)",HEALY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422438,Sedan,Sedan,,, +05/29/2021,10:40,BRONX,10475,40.884968,-73.830345,"(40.884968, -73.830345)",BOSTON ROAD,ROMBOUTS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422033,Sedan,Sedan,,, +05/29/2021,12:00,,,40.61239,-74.000916,"(40.61239, -74.000916)",17 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421598,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,5:35,,,40.68303,-73.782295,"(40.68303, -73.782295)",118 ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4421511,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,10:16,BRONX,10472,40.831413,-73.86795,"(40.831413, -73.86795)",,,1762 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,14:30,STATEN ISLAND,10312,40.565235,-74.181404,"(40.565235, -74.181404)",ARTHUR KILL ROAD,WOODROW ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422169,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,19:00,BRONX,10456,40.834614,-73.90506,"(40.834614, -73.90506)",,,1373 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421660,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,5:22,MANHATTAN,10001,40.74967,-73.99531,"(40.74967, -73.99531)",WEST 30 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4421647,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,15:18,MANHATTAN,10037,40.814156,-73.935074,"(40.814156, -73.935074)",,,10 EAST 138 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4422125,Sedan,Sedan,Sedan,, +05/28/2021,9:45,MANHATTAN,10018,40.757694,-74.000595,"(40.757694, -74.000595)",WEST 37 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4422294,Ambulance,,,, +05/29/2021,11:30,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,20:45,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4421916,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,16:00,BROOKLYN,11207,40.660023,-73.891426,"(40.660023, -73.891426)",,,544 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422209,Sedan,,,, +05/28/2021,23:19,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422406,Sedan,Sedan,,, +05/29/2021,14:40,BRONX,10466,40.88808,-73.8587,"(40.88808, -73.8587)",,,747 EAST 226 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421998,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,16:00,STATEN ISLAND,10301,40.64203,-74.08771,"(40.64203, -74.08771)",YORK AVENUE,CARLYLE STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421742,Sedan,,,, +05/25/2021,20:15,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4422359,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,9:20,,,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4422194,Bus,Sedan,Sedan,, +05/27/2021,7:45,BROOKLYN,11208,40.666023,-73.86371,"(40.666023, -73.86371)",,,1239 STANLEY AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4422204,Sedan,Bus,,, +05/23/2021,15:30,BROOKLYN,11207,40.662395,-73.89634,"(40.662395, -73.89634)",,,549 ALABAMA AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4422214,Sedan,Motorcycle,,, +05/29/2021,6:30,MANHATTAN,10027,40.81588,-73.96056,"(40.81588, -73.96056)",RIVERSIDE DRIVE,TIEMANN PLACE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4421835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,16:04,,,40.576393,-73.9869,"(40.576393, -73.9869)",MERMAID AVENUE,,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4490038,Sedan,Bike,,, +12/27/2021,14:38,,,40.682484,-73.86371,"(40.682484, -73.86371)",75 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490043,Sedan,,,, +12/16/2021,8:00,,,40.771374,-73.877144,"(40.771374, -73.877144)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490418,Sedan,,,, +12/27/2021,6:30,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4490063,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,12:26,BRONX,10468,40.859608,-73.90778,"(40.859608, -73.90778)",WEST 183 STREET,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490443,Sedan,Sedan,,, +12/27/2021,16:40,,,40.68949,-73.92207,"(40.68949, -73.92207)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490096,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/27/2021,15:15,MANHATTAN,10027,40.816166,-73.95361,"(40.816166, -73.95361)",,,465 WEST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490475,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,0:45,,,,,,PARK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463084,Sedan,Sedan,,, +12/27/2021,12:45,BROOKLYN,11223,40.597874,-73.98549,"(40.597874, -73.98549)",85 STREET,STILLWELL AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490000,Sedan,,,, +12/19/2021,17:00,QUEENS,11368,40.753925,-73.859535,"(40.753925, -73.859535)",,,108-38 37 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490419,Sedan,,,, +12/27/2021,7:00,BROOKLYN,11226,40.64477,-73.954735,"(40.64477, -73.954735)",BEDFORD AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490469,Sedan,,,, +12/13/2021,15:55,MANHATTAN,10030,40.813606,-73.94367,"(40.813606, -73.94367)",,,127 WEST 133 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4490504,Van,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,14:00,BROOKLYN,11222,40.724216,-73.94947,"(40.724216, -73.94947)",,,111 NASSAU AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490011,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/27/2021,20:20,BROOKLYN,11211,40.712376,-73.94404,"(40.712376, -73.94404)",GRAHAM AVENUE,POWERS STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490062,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/27/2021,9:00,QUEENS,11368,40.75118,-73.85192,"(40.75118, -73.85192)",42 AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490088,Sedan,,,, +12/27/2021,8:28,MANHATTAN,10022,40.75795,-73.96808,"(40.75795, -73.96808)",,,232 EAST 54 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4490308,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,13:40,BRONX,10471,,,,,,4617 WALDO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468017,Sedan,,,, +12/27/2021,15:27,QUEENS,11364,40.735023,-73.761444,"(40.735023, -73.761444)",,,210-02 RICHLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4490032,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,9:00,,,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4489956,Sedan,Sedan,Sedan,, +12/27/2021,14:19,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,23:40,,,40.69622,-73.89988,"(40.69622, -73.89988)",CYPRESS AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4490068,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +12/27/2021,16:30,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490477,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,23:15,,,40.803566,-73.96715,"(40.803566, -73.96715)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490170,Sedan,Sedan,,, +12/27/2021,19:45,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490438,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,7:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490493,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,21:00,BROOKLYN,11233,0,0,"(0.0, 0.0)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4490465,Garbage or Refuse,,,, +12/27/2021,17:37,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4490284,Sedan,Sedan,,, +12/27/2021,17:30,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490148,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,13:45,MANHATTAN,10036,40.76038,-73.99326,"(40.76038, -73.99326)",,,456 WEST 44 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490128,Sedan,,,, +12/27/2021,6:43,QUEENS,11365,40.73649,-73.80478,"(40.73649, -73.80478)",,,65-08 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489937,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,20:55,QUEENS,11354,40.771477,-73.8173,"(40.771477, -73.8173)",149 STREET,BAYSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490053,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,16:47,,,40.769028,-73.78252,"(40.769028, -73.78252)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490222,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/27/2021,9:37,BROOKLYN,11228,40.62356,-74.011215,"(40.62356, -74.011215)",74 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490245,Sedan,Bike,,, +12/02/2021,9:10,BRONX,10467,40.887444,-73.878006,"(40.887444, -73.878006)",JEROME AVENUE,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490406,Bus,Sedan,,, +12/27/2021,19:05,,,40.601864,-74.00232,"(40.601864, -74.00232)",BAY 23 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490190,Bus,Taxi,,, +12/27/2021,0:00,BROOKLYN,11206,40.698696,-73.93477,"(40.698696, -73.93477)",BUSHWICK AVENUE,MELROSE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490098,,,,, +12/22/2021,22:00,,,40.788685,-73.94386,"(40.788685, -73.94386)",EAST 103 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4490427,Sedan,E-Bike,,, +12/01/2021,0:00,MANHATTAN,10009,,,,,,418 E11th St,0,0,0,0,0,0,0,0,Unspecified,,,,,4490535,Sedan,,,, +12/27/2021,14:40,BRONX,10466,40.89034,-73.8502,"(40.89034, -73.8502)",,,966 EAST 232 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4490262,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/27/2021,17:00,,,40.77012,-73.95741,"(40.77012, -73.95741)",2 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4490366,Sedan,Sedan,Sedan,, +12/27/2021,18:41,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,0:00,,,40.781677,-73.84868,"(40.781677, -73.84868)",20 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4489917,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,13:20,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490145,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,11:11,BROOKLYN,11226,40.656185,-73.95121,"(40.656185, -73.95121)",,,672 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490453,Sedan,Ambulance,,, +12/27/2021,17:52,QUEENS,11361,40.76532,-73.771904,"(40.76532, -73.771904)",BELL BOULEVARD,39 AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4490045,Sedan,,,, +12/23/2021,14:05,STATEN ISLAND,10304,40.59183,-74.10098,"(40.59183, -74.10098)",RICHMOND ROAD,GARRETSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490444,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,14:10,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490279,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,13:15,,,40.664494,-73.93431,"(40.664494, -73.93431)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4490331,Sedan,Sedan,Sedan,, +12/26/2021,11:30,MANHATTAN,10017,40.748215,-73.968544,"(40.748215, -73.968544)",FDR DRIVE,EAST 42 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,12:00,BRONX,10457,40.844368,-73.88902,"(40.844368, -73.88902)",EAST TREMONT AVENUE,PROSPECT AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4490414,Sedan,E-Scooter,,, +12/27/2021,8:30,BROOKLYN,11211,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,ROEBLING STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490067,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,4:30,QUEENS,11373,40.742638,-73.869934,"(40.742638, -73.869934)",,,94-05 ALSTYNE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,9:50,BRONX,10451,40.82406,-73.92815,"(40.82406, -73.92815)",EAST 153 STREET,RIVER AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4490001,Tractor Truck Diesel,Sedan,,, +12/20/2021,10:20,QUEENS,11368,40.75815,-73.85675,"(40.75815, -73.85675)",,,112-24 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490420,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/27/2021,6:00,,,40.82364,-73.87994,"(40.82364, -73.87994)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490204,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,23:38,,,40.662178,-73.85025,"(40.662178, -73.85025)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Pavement Slippery,,,,4490070,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,5:18,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,BROWN PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,Unspecified,,,4490102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/07/2021,19:00,BRONX,10455,,,,,,600 EAST 156 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4490540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/05/2021,8:15,MANHATTAN,10030,40.815826,-73.947044,"(40.815826, -73.947044)",8 AVENUE,WEST 134 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4490470,Sedan,Sedan,,, +12/25/2021,6:12,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,TILDEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490479,Taxi,,,, +12/27/2021,13:55,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4489999,Sedan,Sedan,,, +12/27/2021,23:55,BROOKLYN,11220,40.635933,-74.02298,"(40.635933, -74.02298)",,,6743 4 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4490358,Sedan,,,, +12/27/2021,12:30,,,,,,OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490037,Sedan,,,, +10/02/2021,8:19,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4463210,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,9:10,,,,,,SOUTHERN STATE PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490426,Sedan,,,, +12/27/2021,9:37,MANHATTAN,10036,40.757664,-73.99275,"(40.757664, -73.99275)",,,351 WEST 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489955,Bus,,,, +12/27/2021,13:44,BROOKLYN,11217,40.684437,-73.97773,"(40.684437, -73.97773)",,,139 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4490118,Sedan,,,, +12/20/2021,14:50,BROOKLYN,11226,40.650208,-73.959984,"(40.650208, -73.959984)",CHURCH AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4490468,Ambulance,,,, +12/20/2021,6:47,,,40.89091,-73.887215,"(40.89091, -73.887215)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4490409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/27/2021,17:15,BROOKLYN,11220,40.64647,-74.01258,"(40.64647, -74.01258)",4 AVENUE,50 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490061,Station Wagon/Sport Utility Vehicle,Bike,,, +12/27/2021,17:00,BROOKLYN,11212,40.66831,-73.902336,"(40.66831, -73.902336)",,,456 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490230,Sedan,Sedan,,, +12/27/2021,19:58,QUEENS,11378,40.731895,-73.88826,"(40.731895, -73.88826)",74 STREET,52 COURT,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490180,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,0:02,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4490563,Sedan,Carry All,,, +12/27/2021,18:47,MANHATTAN,10128,40.779495,-73.9535,"(40.779495, -73.9535)",EAST 87 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490252,Sedan,,,, +12/27/2021,17:40,QUEENS,11429,40.708824,-73.74739,"(40.708824, -73.74739)",,,210-22 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490054,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,13:05,BROOKLYN,11234,40.610165,-73.913086,"(40.610165, -73.913086)",,,621 MAYFAIR DRIVE SOUTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490029,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,0:31,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490434,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,23:25,,,40.878212,-73.84115,"(40.878212, -73.84115)",EAST 222 STREET,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4490492,Sedan,Convertible,Station Wagon/Sport Utility Vehicle,, +12/27/2021,22:00,BROOKLYN,11203,40.656437,-73.94727,"(40.656437, -73.94727)",NEW YORK AVENUE,PARKSIDE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490080,E-Bike,Sedan,,, +12/27/2021,22:18,,,40.683342,-73.80433,"(40.683342, -73.80433)",139 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490295,Pick-up Truck,,,, +12/23/2021,1:09,MANHATTAN,10029,40.791904,-73.94151,"(40.791904, -73.94151)",2 AVENUE,EAST 108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490464,Sedan,Flat Bed,,, +12/26/2021,14:45,QUEENS,11427,40.732094,-73.73658,"(40.732094, -73.73658)",,,86-47 233 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,8:00,BROOKLYN,11222,40.721363,-73.94556,"(40.721363, -73.94556)",MC GUINNESS BLVD SOUTH,NEWTON STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4490013,Carry All,Carry All,,, +12/27/2021,9:30,QUEENS,11432,40.717564,-73.781494,"(40.717564, -73.781494)",,,85-14 AVON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489940,Dump,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,1:06,,,40.711906,-74.00604,"(40.711906, -74.00604)",PARK ROW,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490127,Sedan,Bus,,, +12/27/2021,23:35,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490309,Sedan,Sedan,,, +12/27/2021,10:55,,,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490085,Taxi,Taxi,,, +12/27/2021,5:00,,,,,,NORTH CONDUIT AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490149,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,7:43,QUEENS,11368,40.752853,-73.86291,"(40.752853, -73.86291)",,,104-17 37 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4490421,Sedan,,,, +12/27/2021,17:15,BROOKLYN,11236,40.630394,-73.91844,"(40.630394, -73.91844)",,,1934 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490046,Station Wagon/Sport Utility Vehicle,Flat Rack,,, +12/27/2021,21:00,,,40.74901,-73.83465,"(40.74901, -73.83465)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4490457,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,11:30,,,40.689835,-73.9147,"(40.689835, -73.9147)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490416,Sedan,,,, +12/27/2021,10:30,,,40.5901,-73.988174,"(40.5901, -73.988174)",27 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490036,Sedan,,,, +12/27/2021,19:17,BROOKLYN,11236,40.631935,-73.91321,"(40.631935, -73.91321)",PAERDEGAT 1 STREET,EAST 77 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4490075,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,18:20,MANHATTAN,10037,40.815327,-73.93576,"(40.815327, -73.93576)",WEST 139 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4490503,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,20:19,BRONX,10466,40.886295,-73.847916,"(40.886295, -73.847916)",LACONIA AVENUE,EAST 228 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490480,,,,, +12/27/2021,3:50,BROOKLYN,11222,40.729946,-73.95416,"(40.729946, -73.95416)",,,889 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490008,Dump,Box Truck,,, +12/27/2021,11:41,,,40.89204,-73.85814,"(40.89204, -73.85814)",EAST 231 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490261,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,2:00,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4489919,FIRE APPAR,Sedan,,, +12/27/2021,18:10,MANHATTAN,10017,40.753242,-73.96662,"(40.753242, -73.96662)",1 AVENUE,EAST 49 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4490339,Taxi,Bike,,, +12/26/2021,17:05,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4490394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/27/2021,13:53,QUEENS,11417,40.681988,-73.83698,"(40.681988, -73.83698)",104 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490141,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,23:20,,,40.741272,-73.97535,"(40.741272, -73.97535)",EAST 30 STREET,,,2,0,1,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4490524,Sedan,Sedan,,, +12/27/2021,13:40,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4490200,Sedan,Sedan,,, +12/27/2021,21:27,BRONX,10458,40.85586,-73.89462,"(40.85586, -73.89462)",EAST 183 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490375,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,11:41,,,40.708168,-73.95067,"(40.708168, -73.95067)",SOUTH 3 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490065,Sedan,,,, +12/27/2021,8:28,BRONX,10457,40.84616,-73.9018,"(40.84616, -73.9018)",,,1828 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4489989,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/23/2021,15:40,STATEN ISLAND,10306,40.563145,-74.10787,"(40.563145, -74.10787)",EBBITTS STREET,WEED AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4490445,Sedan,PK,,, +12/23/2021,8:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490549,Bus,Sedan,,, +12/27/2021,16:33,BRONX,10454,40.810093,-73.92523,"(40.810093, -73.92523)",,,300 EAST 138 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490104,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,11:00,QUEENS,11373,40.732887,-73.87443,"(40.732887, -73.87443)",SEABURY STREET,57 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490092,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,23:00,MANHATTAN,10027,40.811584,-73.96129,"(40.811584, -73.96129)",,,3072 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490472,Sedan,,,, +12/27/2021,11:26,QUEENS,11369,40.76546,-73.86382,"(40.76546, -73.86382)",,,106-48 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4490187,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,11:00,BROOKLYN,11235,40.582977,-73.95491,"(40.582977, -73.95491)",,,13 NEPTUNE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490271,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,0:00,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490326,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,10:20,QUEENS,11414,40.65387,-73.838585,"(40.65387, -73.838585)",,,162-02 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490150,Sedan,,,, +12/27/2021,20:50,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490231,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,9:55,BROOKLYN,11233,40.678715,-73.91864,"(40.678715, -73.91864)",,,1933 FULTON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515850,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,14:50,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515959,Sedan,Sedan,,, +03/31/2022,18:13,MANHATTAN,10019,40.76428,-73.97302,"(40.76428, -73.97302)",EAST 59 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515242,Sedan,,,, +10/02/2021,0:05,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463323,Sedan,Sedan,,, +03/31/2022,13:00,BROOKLYN,11211,40.707474,-73.95704,"(40.707474, -73.95704)",,,280 RODNEY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515191,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,0:05,,,,,,WILLIS AVENUE BRIDGE APPROACH,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515295,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/30/2022,8:00,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4514820,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,12:00,QUEENS,11354,40.76787,-73.82845,"(40.76787, -73.82845)",LEAVITT STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,7:50,MANHATTAN,10003,40.73174,-73.99147,"(40.73174, -73.99147)",EAST 10 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4515590,Bike,,,, +03/31/2022,7:49,BRONX,10462,40.853683,-73.86917,"(40.853683, -73.86917)",BRONX PARK EAST,MARAN PLACE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4515031,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,21:00,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4515534,Station Wagon/Sport Utility Vehicle,Moped,,, +03/30/2022,16:45,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,3:00,MANHATTAN,10019,40.767395,-73.99634,"(40.767395, -73.99634)",WEST 51 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515237,Taxi,Taxi,,, +03/30/2022,21:36,,,40.525764,-74.2273,"(40.525764, -74.2273)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514895,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,8:55,BROOKLYN,11210,40.62729,-73.94217,"(40.62729, -73.94217)",AVENUE J,EAST 35 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515370,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,9:00,,,40.57642,-73.96977,"(40.57642, -73.96977)",WEST BRIGHTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515085,Sedan,Sedan,,, +03/28/2022,13:00,BRONX,10469,40.87374,-73.84459,"(40.87374, -73.84459)",,,3236 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4515353,Sedan,,,, +03/31/2022,10:00,,,40.676964,-73.89895,"(40.676964, -73.89895)",FULTON STREET,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515738,Sedan,,,, +03/30/2022,12:52,,,40.64503,-73.91998,"(40.64503, -73.91998)",RALPH AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515639,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,14:23,MANHATTAN,10023,40.77428,-73.97738,"(40.77428, -73.97738)",CENTRAL PARK WEST,WEST 69 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,,,,4515375,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,7:09,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,5:50,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515977,Sedan,Pick-up Truck,,, +03/30/2022,9:22,BROOKLYN,11222,40.719048,-73.939095,"(40.719048, -73.939095)",FROST STREET,DEBEVOISE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514802,Station Wagon/Sport Utility Vehicle,STREET SWE,,, +03/30/2022,6:39,,,40.832035,-73.85568,"(40.832035, -73.85568)",CROSS BRONX EXPRESSWAY,ELLIS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514992,Bus,Sedan,,, +03/31/2022,8:00,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4515041,Sedan,Sedan,,, +03/30/2022,10:55,BROOKLYN,11219,40.632782,-73.99446,"(40.632782, -73.99446)",13 AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514827,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,19:59,BROOKLYN,11229,40.610714,-73.95575,"(40.610714, -73.95575)",AVENUE P,EAST 18 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4514921,Sedan,,,, +04/01/2022,15:30,QUEENS,11422,40.672764,-73.733315,"(40.672764, -73.733315)",,,134-45 241 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4515413,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,14:39,,,40.65133,-73.90607,"(40.65133, -73.90607)",AVENUE D,ROCKAWAY AVENUE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4515142,Sedan,Sedan,,, +04/01/2022,9:00,BRONX,10459,40.830917,-73.897865,"(40.830917, -73.897865)",,,814 RITTER PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515548,Sedan,Bus,,, +04/01/2022,10:39,,,,,,EAST 25 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515430,Van,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,23:12,BRONX,10472,0,0,"(0.0, 0.0)",,,1033 ELDER AVENUE,0,0,0,0,0,0,0,0,,,,,,4463462,,,,, +03/31/2022,12:50,QUEENS,11362,40.767384,-73.73461,"(40.767384, -73.73461)",,,249-70 BEECHKNOLL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515094,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,8:00,BROOKLYN,11207,40.66322,-73.893654,"(40.66322, -73.893654)",PENNSYLVANIA AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4515307,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,8:21,BROOKLYN,11209,40.616753,-74.027756,"(40.616753, -74.027756)",,,9210 FORT HAMILTON PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514889,Station Wagon/Sport Utility Vehicle,Bus,,, +03/29/2022,12:02,BROOKLYN,11203,40.6568,-73.928,"(40.6568, -73.928)",EAST 53 STREET,CLARKSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515634,Sedan,Moped,,, +04/01/2022,17:43,QUEENS,11434,40.66375,-73.771255,"(40.66375, -73.771255)",,,176-10 145 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515381,Sedan,,,, +03/30/2022,14:15,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4514931,Station Wagon/Sport Utility Vehicle,Bike,,, +03/31/2022,19:45,BRONX,10468,40.868988,-73.900505,"(40.868988, -73.900505)",,,2704 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515275,Station Wagon/Sport Utility Vehicle,COMMERCIAL,,, +03/19/2022,13:00,,,40.88794,-73.84526,"(40.88794, -73.84526)",GRENADA PLACE,EAST 231 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4515692,Station Wagon/Sport Utility Vehicle,Moped,,, +03/31/2022,15:29,BROOKLYN,11218,40.64804,-73.97199,"(40.64804, -73.97199)",,,830 CATON AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4515571,Sedan,Sedan,,, +04/01/2022,18:02,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515472,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,14:45,,,40.57554,-73.979645,"(40.57554, -73.979645)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515407,Sedan,Bus,,, +04/01/2022,21:40,,,40.616726,-74.01833,"(40.616726, -74.01833)",86 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4515439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,13:30,MANHATTAN,10024,40.787743,-73.973045,"(40.787743, -73.973045)",,,147 WEST 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515888,Sedan,,,, +03/29/2022,13:40,,,40.676895,-73.93593,"(40.676895, -73.93593)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4515724,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,15:17,BROOKLYN,11231,40.682697,-74.00009,"(40.682697, -74.00009)",,,553 HENRY STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,Other Vehicular,Unspecified,Unspecified,4515513,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Motorcycle +03/29/2022,23:08,,,40.785767,-73.816376,"(40.785767, -73.816376)",15 DRIVE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Speed,,,,4515771,Sedan,Sedan,,, +03/31/2022,18:00,BROOKLYN,11224,40.57438,-73.991936,"(40.57438, -73.991936)",,,2926 WEST 25 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4515402,Sedan,,,, +03/31/2022,16:00,,,40.856743,-73.89527,"(40.856743, -73.89527)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515268,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,3:19,,,40.658253,-73.98465,"(40.658253, -73.98465)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515221,Sedan,,,, +03/30/2022,14:55,,,40.705826,-73.79397,"(40.705826, -73.79397)",MERRICK BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515136,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,17:00,,,40.60373,-73.9968,"(40.60373, -73.9968)",86 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515469,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,17:01,BROOKLYN,11233,40.67858,-73.92169,"(40.67858, -73.92169)",,,308 RALPH AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4515845,E-Bike,,,, +04/01/2022,20:08,MANHATTAN,10003,40.729465,-73.98426,"(40.729465, -73.98426)",,,344 EAST 11 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515565,Taxi,E-Bike,,, +03/29/2022,16:25,QUEENS,11385,40.69707,-73.90017,"(40.69707, -73.90017)",,,1720 SUMMERFIELD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515754,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,18:15,,,40.840645,-73.84205,"(40.840645, -73.84205)",EAST TREMONT AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515260,Sedan,Sedan,,, +02/23/2022,8:45,BROOKLYN,11206,40.700058,-73.93279,"(40.700058, -73.93279)",EVERGREEN AVENUE,GEORGE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515672,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,12:20,,,40.802757,-73.93026,"(40.802757, -73.93026)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463640,Sedan,,,, +03/30/2022,17:30,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4515026,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,10:46,BROOKLYN,11212,40.65794,-73.907745,"(40.65794, -73.907745)",ROCKAWAY AVENUE,LOTT AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515618,Station Wagon/Sport Utility Vehicle,Bike,,, +04/01/2022,11:37,BROOKLYN,11201,40.692123,-73.9847,"(40.692123, -73.9847)",,,100 WILLOUGHBY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515801,Sedan,Pick-up Truck,,, +03/13/2022,12:00,BRONX,10466,40.89466,-73.83863,"(40.89466, -73.83863)",,,4135 SETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515349,Sedan,,,, +03/30/2022,8:32,QUEENS,11416,40.680283,-73.85471,"(40.680283, -73.85471)",84 STREET,102 ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4514747,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,8:40,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",SUNRISE HIGHWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515080,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,6:30,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",EAST 42 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515334,Box Truck,Sedan,,, +03/30/2022,17:00,QUEENS,11434,40.661198,-73.770966,"(40.661198, -73.770966)",147 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4514865,Tractor Truck Diesel,Sedan,,, +03/27/2022,7:45,MANHATTAN,10013,40.719902,-74.00031,"(40.719902, -74.00031)",,,9 CROSBY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4515302,Pick-up Truck,,,, +03/31/2022,8:12,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515046,Sedan,,,, +03/28/2022,14:00,,,40.62427,-73.99255,"(40.62427, -73.99255)",61 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515582,Sedan,,,, +03/30/2022,12:35,BROOKLYN,11207,40.672314,-73.893036,"(40.672314, -73.893036)",WYONA STREET,PITKIN AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4515002,Sedan,E-Bike,,, +04/01/2022,22:54,MANHATTAN,10013,40.726437,-74.00566,"(40.726437, -74.00566)",VARICK STREET,VANDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515607,Sedan,Dump,,, +03/31/2022,17:30,QUEENS,11432,40.70569,-73.806145,"(40.70569, -73.806145)",150 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515968,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,15:00,QUEENS,11417,40.676968,-73.83527,"(40.676968, -73.83527)",SUTTER AVENUE,CENTREVILLE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515446,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,12:00,MANHATTAN,10003,40.734074,-73.989075,"(40.734074, -73.989075)",,,110 EAST 14 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Passing Too Closely,,,,4514951,Bus,Van,,, +03/31/2022,23:10,,,40.82967,-73.931076,"(40.82967, -73.931076)",OGDEN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515274,Taxi,Sedan,,, +04/01/2022,13:45,,,,,,NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4515417,Pick-up Truck,Carry All,,, +03/31/2022,17:22,QUEENS,11434,40.65814,-73.76765,"(40.65814, -73.76765)",,,149-04 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4515186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/25/2022,15:20,,,40.77131,-73.77835,"(40.77131, -73.77835)",210 STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515434,Bike,Sedan,,, +03/30/2022,15:04,QUEENS,11375,40.71413,-73.834946,"(40.71413, -73.834946)",AUSTIN STREET,77 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4514973,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,7:20,,,40.697205,-73.81334,"(40.697205, -73.81334)",VANWYCK EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4515137,Sedan,Flat Bed,,, +03/31/2022,1:24,,,40.634655,-74.132866,"(40.634655, -74.132866)",,,246 HEBERTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,8:05,MANHATTAN,10035,40.80006,-73.93059,"(40.80006, -73.93059)",,,10 PALADINO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514903,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,10:00,QUEENS,11365,40.739296,-73.78505,"(40.739296, -73.78505)",,,188-02 64 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515517,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,17:48,QUEENS,11418,40.697926,-73.84067,"(40.697926, -73.84067)",108 STREET,86 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4515867,Sedan,,,, +12/28/2021,14:21,BRONX,10457,40.84681,-73.9083,"(40.84681, -73.9083)",EASTBURN AVENUE,EAST 175 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490370,,,,, +03/31/2022,10:58,MANHATTAN,10016,40.739563,-73.97704,"(40.739563, -73.97704)",,,335 EAST 27 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515086,Dump truck,Sedan,,, +04/01/2022,23:45,QUEENS,11101,40.749294,-73.942955,"(40.749294, -73.942955)",43 AVENUE,24 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515492,LIMO,Station Wagon/Sport Utility Vehicle,,, +03/17/2022,11:58,,,40.67417,-73.95671,"(40.67417, -73.95671)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4515700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,4:39,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515728,Sedan,Sedan,,, +03/31/2022,20:30,,,40.836758,-73.930725,"(40.836758, -73.930725)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Aggressive Driving/Road Rage,Unspecified,,,4515422,Sedan,Sedan,,, +04/01/2022,14:35,BROOKLYN,11203,40.643604,-73.94301,"(40.643604, -73.94301)",CLARENDON ROAD,BROOKLYN AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4515659,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/31/2022,3:22,BROOKLYN,11216,40.68137,-73.94063,"(40.68137, -73.94063)",MACDONOUGH STREET,THROOP AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515476,,,,, +03/30/2022,12:41,BROOKLYN,11203,40.64537,-73.94511,"(40.64537, -73.94511)",BEVERLEY ROAD,EAST 34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515648,Sedan,Sedan,,, +04/01/2022,15:40,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515435,Station Wagon/Sport Utility Vehicle,Bike,,, +04/01/2022,11:15,BROOKLYN,11204,40.62919,-73.98745,"(40.62919, -73.98745)",,,5222 16 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515578,Station Wagon/Sport Utility Vehicle,Bike,,, +03/20/2022,23:22,,,40.676094,-73.94992,"(40.676094, -73.94992)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4515718,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,7:05,,,40.78393,-73.94423,"(40.78393, -73.94423)",1 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4515505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,13:05,BRONX,10466,40.87987,-73.842026,"(40.87987, -73.842026)",EAST 224 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4515117,Sedan,Pick-up Truck,,, +04/01/2022,10:51,QUEENS,11356,40.784454,-73.843056,"(40.784454, -73.843056)",,,15-45 125 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515764,Sedan,Pick-up Truck,,, +03/30/2022,22:10,,,40.707436,-74.00407,"(40.707436, -74.00407)",WATER STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514927,Station Wagon/Sport Utility Vehicle,Taxi,,, +03/30/2022,9:29,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",KINGS HIGHWAY,EAST 95 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515629,Sedan,E-Bike,,, +03/26/2022,11:30,,,40.650146,-74.00508,"(40.650146, -74.00508)",5 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515339,Sedan,Sedan,,, +03/21/2022,18:47,,,40.805836,-73.94691,"(40.805836, -73.94691)",WEST 122 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515665,Sedan,,,, +03/21/2022,19:57,,,40.69757,-73.87144,"(40.69757, -73.87144)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4515758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,19:00,BRONX,10452,40.84065,-73.91902,"(40.84065, -73.91902)",WEST 170 STREET,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515465,Sedan,Bus,,, +04/01/2022,6:40,BROOKLYN,11238,40.67497,-73.96054,"(40.67497, -73.96054)",,,539 PARK PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515825,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/19/2022,23:00,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",WEST 42 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515679,Taxi,,,, +04/01/2022,19:25,,,40.605328,-73.990295,"(40.605328, -73.990295)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,8:40,BRONX,10468,40.863365,-73.909615,"(40.863365, -73.909615)",,,2184 CEDAR AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,,,4515050,Sedan,,,, +04/01/2022,15:10,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515797,Sedan,Bus,,, +03/30/2022,0:46,QUEENS,11354,40.760166,-73.83262,"(40.760166, -73.83262)",38 AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514771,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,21:30,BRONX,10473,40.821136,-73.86587,"(40.821136, -73.86587)",,,800 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514980,Sedan,,,, +03/31/2022,18:04,,,40.63178,-73.945625,"(40.63178, -73.945625)",FLATBUSH AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515552,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,13:00,BRONX,10462,40.834385,-73.85388,"(40.834385, -73.85388)",UNIONPORT ROAD,ODELL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inexperience,,,,4514841,Sedan,Sedan,,, +04/01/2022,10:33,QUEENS,11435,40.70026,-73.80868,"(40.70026, -73.80868)",146 STREET,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515960,Sedan,,,, +03/24/2022,11:00,,,,,,WATERS PLACE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515317,Sedan,Sedan,,, +03/25/2022,13:00,QUEENS,11364,40.748814,-73.75656,"(40.748814, -73.75656)",,,61-03 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,10:30,QUEENS,11355,40.7518,-73.817314,"(40.7518, -73.817314)",ROBINSON STREET,HOLLY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4515598,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/30/2022,15:31,,,40.685226,-73.91454,"(40.685226, -73.91454)",ELDERT STREET,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4514985,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,9:40,,,40.733124,-73.72272,"(40.733124, -73.72272)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514899,Sedan,Sedan,,, +03/31/2022,7:55,BROOKLYN,11211,40.717045,-73.94076,"(40.717045, -73.94076)",,,243 JACKSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514978,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,6:42,,,40.866383,-73.88515,"(40.866383, -73.88515)",WEBSTER AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4515289,Pick-up Truck,Sedan,,, +03/30/2022,14:18,STATEN ISLAND,10304,40.60323,-74.09261,"(40.60323, -74.09261)",RICHMOND ROAD,SPRING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515155,Bus,Sedan,,, +03/31/2022,2:30,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514942,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +03/31/2022,17:00,,,40.61139,-74.03648,"(40.61139, -74.03648)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515170,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,20:29,,,40.81728,-73.938545,"(40.81728, -73.938545)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515983,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,1:10,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514710,Sedan,Box Truck,,, +03/31/2022,16:46,QUEENS,11416,40.681484,-73.84788,"(40.681484, -73.84788)",ROCKAWAY BOULEVARD,103 AVENUE,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inexperience,,,,4515198,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/01/2022,1:54,,,40.843246,-73.94505,"(40.843246, -73.94505)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515642,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,0:00,BROOKLYN,11207,40.66742,-73.897644,"(40.66742, -73.897644)",BLAKE AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4515306,Sedan,,,, +03/31/2022,9:44,BROOKLYN,11214,40.60058,-73.99161,"(40.60058, -73.99161)",86 STREET,23 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515104,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,15:30,QUEENS,11373,40.730633,-73.871635,"(40.730633, -73.871635)",WOODHAVEN BOULEVARD,60 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515458,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,4:24,BRONX,10474,40.815132,-73.886444,"(40.815132, -73.886444)",,,710 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4515252,Station Wagon/Sport Utility Vehicle,,,, +05/03/2021,11:19,,,40.75167,-73.94188,"(40.75167, -73.94188)",QUEENS PLAZA NORTH,23 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4413382,Sedan,,,, +05/27/2021,20:32,QUEENS,11362,40.764034,-73.74351,"(40.764034, -73.74351)",DOUGLASTON PARKWAY,ALAMEDA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4421151,Tow Truck / Wrecker,,,, +05/28/2021,3:53,QUEENS,11377,40.733597,-73.91062,"(40.733597, -73.91062)",,,53-15 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421285,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,11:54,BRONX,10460,40.8359,-73.890396,"(40.8359, -73.890396)",,,1624 BOSTON ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421665,Sedan,Sedan,,, +05/27/2021,19:50,QUEENS,11435,40.697403,-73.80536,"(40.697403, -73.80536)",,,147-16 97 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4422641,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +05/28/2021,16:39,STATEN ISLAND,10314,40.593796,-74.135445,"(40.593796, -74.135445)",,,460 BRIELLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4422637,PK,,,, +05/23/2021,0:30,,,40.83164,-73.930115,"(40.83164, -73.930115)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422704,Sedan,,,, +09/30/2021,10:30,,,,,,ATLANTIC AVENUE,SOUTH ELLIOTT PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463988,Sedan,Sedan,,, +05/30/2021,12:00,BROOKLYN,11229,40.60501,-73.95248,"(40.60501, -73.95248)",,,2325 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,0:30,STATEN ISLAND,10312,40.556,-74.19475,"(40.556, -74.19475)",ARDEN AVENUE,FOREST GREEN,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4422185,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,22:12,,,40.825573,-73.918465,"(40.825573, -73.918465)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4422041,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,17:15,QUEENS,11105,40.774563,-73.9126,"(40.774563, -73.9126)",,,22-59 31 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515498,Sedan,Box Truck,,, +05/30/2021,1:05,QUEENS,11432,40.71081,-73.792786,"(40.71081, -73.792786)",,,169-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421605,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,19:30,BROOKLYN,11230,40.613644,-73.957275,"(40.613644, -73.957275)",,,1505 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422003,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,17:42,BROOKLYN,11234,40.61448,-73.92641,"(40.61448, -73.92641)",UTICA AVENUE,FILLMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422327,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,12:31,,,40.84631,-73.91947,"(40.84631, -73.91947)",FEATHERBED LANE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422096,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,7:20,,,40.757378,-73.92691,"(40.757378, -73.92691)",33 STREET,,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4422564,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/30/2021,4:40,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",86 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421636,Sedan,Sedan,,, +05/30/2021,8:20,MANHATTAN,10029,40.798622,-73.94163,"(40.798622, -73.94163)",EAST 116 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4422127,,,,, +05/27/2021,3:30,,,40.787117,-73.94793,"(40.787117, -73.94793)",EAST 99 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422518,Pick-up Truck,,,, +05/30/2021,1:25,BROOKLYN,11230,40.61642,-73.97445,"(40.61642, -73.97445)",MC DONALD AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421690,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,0:00,QUEENS,11435,40.700768,-73.81019,"(40.700768, -73.81019)",144 PLACE,91 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421929,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,7:00,,,,,,,,714 conduit,0,0,0,0,0,0,0,0,Unspecified,,,,,4422219,Sedan,,,, +05/30/2021,12:00,BROOKLYN,11207,40.661396,-73.89277,"(40.661396, -73.89277)",,,641 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422249,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,17:39,QUEENS,11004,40.753628,-73.718445,"(40.753628, -73.718445)",,,70-08 261 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422346,Sedan,,,, +05/27/2021,11:46,,,0,0,"(0.0, 0.0)",SOUTH AVENUE,GLEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422470,Van,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,11:23,QUEENS,11378,40.724895,-73.89214,"(40.724895, -73.89214)",,,69-92 58 ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4421882,Sedan,Sedan,,, +05/30/2021,5:08,QUEENS,11355,40.7447,-73.82718,"(40.7447, -73.82718)",,,138-14 58 ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4421808,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +05/30/2021,2:00,QUEENS,11436,40.67774,-73.79755,"(40.67774, -73.79755)",119 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421874,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,6:30,,,40.786423,-73.82394,"(40.786423, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4421810,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,20:00,BROOKLYN,11236,40.632744,-73.88367,"(40.632744, -73.88367)",,,5985 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421907,Sedan,,,, +05/30/2021,9:00,QUEENS,11355,40.744846,-73.835686,"(40.744846, -73.835686)",COLLEGE POINT BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421705,Sedan,,,, +05/24/2021,10:00,,,40.61269,-73.982666,"(40.61269, -73.982666)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422454,Sedan,,,, +05/30/2021,18:20,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",ASTORIA BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422074,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,13:40,BRONX,10451,40.814705,-73.92453,"(40.814705, -73.92453)",,,383 MORRIS AVENUE,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,,,,4422140,Sedan,Sedan,,, +05/25/2021,22:40,QUEENS,11101,40.75114,-73.9345,"(40.75114, -73.9345)",,,30-30 NORTHERN BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4422509,Sedan,Bike,,, +05/30/2021,18:30,BROOKLYN,11207,40.65662,-73.889175,"(40.65662, -73.889175)",,,860 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422265,Sedan,Sedan,,, +05/28/2021,7:20,QUEENS,11106,40.768627,-73.93583,"(40.768627, -73.93583)",VERNON BOULEVARD,31 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422498,Sedan,Sedan,,, +05/30/2021,5:50,,,40.740467,-73.97295,"(40.740467, -73.97295)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4421800,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,17:56,BROOKLYN,11203,40.644955,-73.92113,"(40.644955, -73.92113)",,,5814 CLARENDON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4421896,Sedan,,,, +05/30/2021,16:46,MANHATTAN,10010,40.740185,-73.986374,"(40.740185, -73.986374)",PARK AVENUE SOUTH,EAST 23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422017,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,11:20,BROOKLYN,11208,40.675938,-73.86823,"(40.675938, -73.86823)",PITKIN AVENUE,AUTUMN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422248,Sedan,Sedan,,, +05/29/2021,10:00,QUEENS,11365,40.739353,-73.78614,"(40.739353, -73.78614)",,,61-48 188 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4422594,Sedan,,,, +05/30/2021,21:06,BROOKLYN,11201,40.68983,-73.97863,"(40.68983, -73.97863)",ASHLAND PLACE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421931,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,16:15,QUEENS,11103,40.757782,-73.9165,"(40.757782, -73.9165)",,,43-04 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4421976,Sedan,,,, +05/30/2021,15:54,BRONX,10452,40.839832,-73.92392,"(40.839832, -73.92392)",WEST 169 STREET,NELSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422728,Sedan,,,, +05/30/2021,11:45,QUEENS,11368,40.74562,-73.85953,"(40.74562, -73.85953)",,,47-06 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421828,Sedan,,,, +05/30/2021,1:30,,,40.644753,-73.92493,"(40.644753, -73.92493)",KINGS HIGHWAY,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4422560,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,0:10,BROOKLYN,11237,40.696117,-73.905014,"(40.696117, -73.905014)",WYCKOFF AVENUE,HALSEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422301,Bike,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,20:00,,,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422416,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,15:19,QUEENS,11374,40.72603,-73.870155,"(40.72603, -73.870155)",,,62-30 WOODHAVEN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4422544,Sedan,,,, +05/30/2021,10:00,BROOKLYN,11213,40.66656,-73.93921,"(40.66656, -73.93921)",,,1447 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422674,Sedan,,,, +05/30/2021,2:30,QUEENS,11368,40.755302,-73.86811,"(40.755302, -73.86811)",,,34-13 100 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,Passing Too Closely,4422064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/28/2021,9:00,MANHATTAN,10027,40.806965,-73.952866,"(40.806965, -73.952866)",,,204 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422609,Sedan,Sedan,,, +05/30/2021,18:11,,,40.828407,-73.84392,"(40.828407, -73.84392)",ZEREGA AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422128,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,19:30,QUEENS,11104,40.74479,-73.91743,"(40.74479, -73.91743)",47 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422230,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,18:50,,,40.724693,-73.7541,"(40.724693, -73.7541)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421935,Sedan,,,, +05/30/2021,21:04,QUEENS,11385,40.70212,-73.90959,"(40.70212, -73.90959)",CYPRESS AVENUE,GATES AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4422574,Sedan,Sedan,,, +05/30/2021,13:37,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422155,Sedan,Sedan,,, +05/30/2021,20:28,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422004,Sedan,,,, +05/30/2021,16:05,MANHATTAN,10075,40.77263,-73.95744,"(40.77263, -73.95744)",,,231 EAST 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422156,Station Wagon/Sport Utility Vehicle,Ambulance,,, +05/30/2021,6:15,BRONX,10473,40.81777,-73.85728,"(40.81777, -73.85728)",WHITE PLAINS ROAD,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,4:00,,,40.67875,-73.8205,"(40.67875, -73.8205)",LEFFERTS BOULEVARD,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4421994,Sedan,Sedan,Sedan,, +03/21/2022,9:20,BROOKLYN,11207,40.681828,-73.90467,"(40.681828, -73.90467)",,,1561 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515683,Dump,Taxi,,, +05/23/2021,12:47,BRONX,10459,40.82142,-73.891685,"(40.82142, -73.891685)",,,965 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422617,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,0:11,QUEENS,11103,40.769485,-73.91503,"(40.769485, -73.91503)",,,34-16 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421617,Van,Sedan,,, +05/28/2021,7:55,BROOKLYN,11209,40.63234,-74.02834,"(40.63234, -74.02834)",,,276 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422759,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,18:37,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421962,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,8:33,QUEENS,11385,40.70194,-73.9086,"(40.70194, -73.9086)",,,1711 PALMETTO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422529,Sedan,,,, +05/26/2021,16:30,MANHATTAN,10027,40.80928,-73.949036,"(40.80928, -73.949036)",,,215 WEST 125 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422604,Sedan,dirt bike,,, +05/30/2021,2:40,BRONX,10459,40.830757,-73.88852,"(40.830757, -73.88852)",,,1430 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421644,Sedan,,,, +05/29/2021,15:00,STATEN ISLAND,10306,40.57912,-74.13289,"(40.57912, -74.13289)",,,140 MEISNER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422638,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,18:00,QUEENS,11422,40.660328,-73.73935,"(40.660328, -73.73935)",243 STREET,144 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421934,Sedan,Sedan,,, +05/30/2021,8:20,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422115,Sedan,Bus,,, +05/30/2021,14:40,BROOKLYN,11215,40.66943,-73.986084,"(40.66943, -73.986084)",,,435 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421997,Taxi,Box Truck,,, +05/25/2021,15:06,QUEENS,11101,40.75588,-73.92371,"(40.75588, -73.92371)",35 AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,18:56,MANHATTAN,10036,40.758865,-73.98488,"(40.758865, -73.98488)",,,1560 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4422573,Sedan,Sedan,,, +05/30/2021,23:49,,,40.834507,-73.91772,"(40.834507, -73.91772)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,4:50,,,40.828316,-73.93118,"(40.828316, -73.93118)",MACOMBS DAM BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422714,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,0:30,QUEENS,11373,40.744133,-73.88008,"(40.744133, -73.88008)",,,42-45 JUDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421827,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,13:59,QUEENS,11378,40.713627,-73.91545,"(40.713627, -73.91545)",,,51-13 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421877,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,21:10,QUEENS,11412,40.697117,-73.74839,"(40.697117, -73.74839)",205 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4422276,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,15:50,,,40.610214,-73.94371,"(40.610214, -73.94371)",QUENTIN ROAD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421950,Sedan,Sedan,,, +05/14/2021,8:50,QUEENS,11102,40.770527,-73.92731,"(40.770527, -73.92731)",21 STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422504,Sedan,,,, +05/30/2021,12:55,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4421801,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,13:45,BROOKLYN,11213,40.679592,-73.94126,"(40.679592, -73.94126)",,,10 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422175,Sedan,,,, +05/30/2021,20:00,,,40.6992,-73.92309,"(40.6992, -73.92309)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,13:50,,,40.83214,-73.92729,"(40.83214, -73.92729)",ANDERSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421857,Sedan,Box Truck,,, +05/30/2021,20:45,,,40.73283,-73.97415,"(40.73283, -73.97415)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422016,Sedan,,,, +05/29/2021,8:58,BROOKLYN,11205,40.692394,-73.967674,"(40.692394, -73.967674)",,,185 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422596,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,18:57,MANHATTAN,10023,40.777855,-73.981964,"(40.777855, -73.981964)",BROADWAY,WEST 71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422658,Sedan,,,, +05/29/2021,22:30,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422510,Sedan,Sedan,,, +05/30/2021,12:45,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",EAST 53 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421942,AMBULANCE,Sedan,,, +05/30/2021,13:07,BRONX,10469,40.871334,-73.86139,"(40.871334, -73.86139)",BRONXWOOD AVENUE,BURKE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422032,Sedan,Sedan,,, +05/25/2021,13:00,MANHATTAN,10036,40.76099,-73.99077,"(40.76099, -73.99077)",WEST 46 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4422579,Station Wagon/Sport Utility Vehicle,Bike,,, +05/30/2021,17:05,,,40.678955,-73.86516,"(40.678955, -73.86516)",ELDERTS LANE,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4422264,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +05/30/2021,1:40,,,40.69103,-73.78079,"(40.69103, -73.78079)",169 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4421686,Sedan,Sedan,Sedan,, +05/30/2021,14:15,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422497,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,17:49,QUEENS,11356,40.781673,-73.84662,"(40.781673, -73.84662)",,,121-14 20 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421908,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,16:41,BROOKLYN,11234,40.629143,-73.923134,"(40.629143, -73.923134)",FLATLANDS AVENUE,EAST 55 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422324,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,15:35,BROOKLYN,11207,40.669575,-73.88858,"(40.669575, -73.88858)",,,495 HENDRIX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422192,Sedan,Bus,,, +05/30/2021,23:30,QUEENS,11372,40.755554,-73.885376,"(40.755554, -73.885376)",82 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422068,Sedan,,,, +05/29/2021,18:50,BRONX,10452,,,,clarke place,walton avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422703,Sedan,,,, +05/30/2021,2:15,BRONX,10454,40.80843,-73.923386,"(40.80843, -73.923386)",WILLIS AVENUE,EAST 137 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,8:10,MANHATTAN,10019,40.768414,-73.99097,"(40.768414, -73.99097)",,,540 WEST 55 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422580,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,13:28,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4421975,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,9:03,BROOKLYN,11204,40.62051,-73.99248,"(40.62051, -73.99248)",65 STREET,17 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422505,Bus,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,20:40,BROOKLYN,11203,40.651176,-73.94165,"(40.651176, -73.94165)",,,3816 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4422549,Sedan,Sedan,Sedan,, +05/30/2021,8:35,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422027,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,22:35,QUEENS,11411,40.68844,-73.741585,"(40.68844, -73.741585)",FRANCIS LEWIS BOULEVARD,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422345,Sedan,,,, +05/30/2021,0:00,QUEENS,11356,40.778595,-73.8469,"(40.778595, -73.8469)",,,121-04 23 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421702,Sedan,,,, +05/30/2021,18:30,BRONX,10454,40.80808,-73.92838,"(40.80808, -73.92838)",,,280 EAST 134 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422148,Sedan,,,, +05/30/2021,13:27,QUEENS,11385,40.692905,-73.895256,"(40.692905, -73.895256)",,,80-64 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421881,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,3:10,QUEENS,11435,40.691635,-73.800026,"(40.691635, -73.800026)",,,147-43 ARLINGTON TERRACE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4422157,Sedan,Sedan,Sedan,, +05/30/2021,15:15,BRONX,10460,40.83613,-73.88987,"(40.83613, -73.88987)",BOSTON ROAD,EAST 173 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421957,Sedan,,,, +05/30/2021,1:24,QUEENS,11419,40.689236,-73.82852,"(40.689236, -73.82852)",101 AVENUE,116 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4422147,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,16:00,MANHATTAN,10026,40.80034,-73.94789,"(40.80034, -73.94789)",,,20 WEST 115 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422608,Sedan,Sedan,,, +05/30/2021,12:00,MANHATTAN,10012,40.725624,-73.995514,"(40.725624, -73.995514)",,,158 CROSBY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422058,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,15:03,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422618,Sedan,Sedan,,, +05/30/2021,0:15,QUEENS,11357,40.780224,-73.80255,"(40.780224, -73.80255)",FRANCIS LEWIS BOULEVARD,WILLETS POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421627,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,15:30,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422760,Sedan,Sedan,,, +04/29/2021,19:00,QUEENS,11378,40.723156,-73.908485,"(40.723156, -73.908485)",MASPETH AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422525,Sedan,,,, +05/30/2021,14:51,MANHATTAN,10027,40.81109,-73.95334,"(40.81109, -73.95334)",,,377 WEST 125 STREET,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,Unspecified,,,4422306,Sedan,Bus,,, +05/30/2021,15:50,BROOKLYN,11203,40.652954,-73.944466,"(40.652954, -73.944466)",,,399 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,3:57,BROOKLYN,11210,40.634018,-73.94758,"(40.634018, -73.94758)",,,3009 GLENWOOD ROAD,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4421861,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,19:10,QUEENS,11101,40.747334,-73.955055,"(40.747334, -73.955055)",5 STREET,46 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422232,Sedan,,,, +05/30/2021,14:25,QUEENS,11368,40.746906,-73.86371,"(40.746906, -73.86371)",43 AVENUE,NATIONAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422749,Sedan,Sedan,,, +05/30/2021,18:30,BROOKLYN,11225,40.66235,-73.95082,"(40.66235, -73.95082)",LEFFERTS AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421894,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,1:26,QUEENS,11434,40.691895,-73.77822,"(40.691895, -73.77822)",172 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422279,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,15:38,,,40.635803,-74.017624,"(40.635803, -74.017624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421939,Sedan,Tractor Truck Diesel,,, +05/29/2021,12:15,,,40.595734,-73.77478,"(40.595734, -73.77478)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422444,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,2:25,,,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421752,Sedan,Sedan,,, +05/30/2021,14:00,BROOKLYN,11239,40.652187,-73.86843,"(40.652187, -73.86843)",,,381 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,20:35,QUEENS,11367,40.72496,-73.82756,"(40.72496, -73.82756)",PARK DRIVE EAST,72 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,23:53,,,40.590477,-73.810104,"(40.590477, -73.810104)",ROCKAWAY FREEWAY,BEACH 84 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4422503,Sedan,,,, +05/30/2021,9:30,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421802,Sedan,Sedan,,, +05/30/2021,9:45,,,40.719833,-73.82624,"(40.719833, -73.82624)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,15:45,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421933,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,15:30,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422119,Sedan,Sedan,,, +05/20/2021,17:55,QUEENS,11385,40.706356,-73.900276,"(40.706356, -73.900276)",MADISON STREET,60 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422524,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,13:23,,,40.57629,-73.968544,"(40.57629, -73.968544)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422706,Sedan,,,, +05/30/2021,9:15,QUEENS,11368,40.74523,-73.86265,"(40.74523, -73.86265)",,,101-40 NICOLLS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4421823,Sedan,Sedan,Sedan,, +05/30/2021,22:07,BROOKLYN,11229,40.59938,-73.95141,"(40.59938, -73.95141)",AVENUE U,OCEAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421951,Sedan,E-Bike,,, +05/30/2021,8:00,BRONX,10453,,,,SEDGWICK AVENUE,Hall of Fame Terrace,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4421699,Sedan,Sedan,Sedan,, +05/30/2021,18:00,QUEENS,11354,40.76702,-73.82283,"(40.76702, -73.82283)",34 AVENUE,145 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421909,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,14:00,BROOKLYN,11208,40.668293,-73.87841,"(40.668293, -73.87841)",,,410 BERRIMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422224,Sedan,,,, +05/30/2021,18:50,,,,,,,,94-22` 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421900,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,16:25,,,40.80047,-73.95777,"(40.80047, -73.95777)",WEST 110 STREET,DOUGLASS CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422607,Sedan,Sedan,,, +05/30/2021,0:30,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",CREST ROAD,SEAGIRT BOULEVARD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4422447,Sedan,,,, +05/30/2021,14:55,BROOKLYN,11215,40.66965,-73.978516,"(40.66965, -73.978516)",,,463 4 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422001,Sedan,Sedan,,, +05/30/2021,19:15,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422275,Sedan,,,, +05/28/2021,12:00,BRONX,10460,40.843197,-73.881096,"(40.843197, -73.881096)",,,2070 VYSE AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4422488,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,21:58,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4422344,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,7:55,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4422093,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,18:45,,,,,,MARGARET CORBIN DRIVE,FORT TRYON PARK,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4422572,Motorcycle,,,, +05/30/2021,16:51,BRONX,10466,40.893814,-73.85873,"(40.893814, -73.85873)",,,662 EAST 233 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421984,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/22/2021,23:00,MANHATTAN,10011,40.739872,-74.00066,"(40.739872, -74.00066)",,,253 WEST 15 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422597,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,23:35,BRONX,10467,40.871834,-73.8775,"(40.871834, -73.8775)",EAST 204 STREET,DECATUR AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4421965,,,,, +05/30/2021,6:59,BRONX,10456,40.82293,-73.90409,"(40.82293, -73.90409)",,,750 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4421651,PK,,,, +05/28/2021,18:15,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,12:36,QUEENS,11385,40.697674,-73.898384,"(40.697674, -73.898384)",,,1803 DECATUR STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421878,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,14:00,QUEENS,11362,40.760128,-73.73047,"(40.760128, -73.73047)",,,249-30 57 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422036,Sedan,Sedan,,, +05/27/2021,16:48,QUEENS,11385,40.704742,-73.86016,"(40.704742, -73.86016)",UNION TURNPIKE,88 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4422535,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,2:59,BRONX,10475,40.878407,-73.83713,"(40.878407, -73.83713)",,,3358 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4422043,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/30/2021,15:15,BROOKLYN,11232,40.66737,-73.996414,"(40.66737, -73.996414)",,,550 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4422191,Sedan,,,, +05/27/2021,22:50,BROOKLYN,11203,40.65451,-73.92968,"(40.65451, -73.92968)",,,304 EAST 51 STREET,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4422552,Sedan,Sedan,Sedan,Sedan, +03/28/2022,11:00,,,40.773605,-73.929886,"(40.773605, -73.929886)",12 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515927,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,23:05,,,40.895267,-73.86157,"(40.895267, -73.86157)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4421943,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,9:42,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4422612,Sedan,Sedan,Sedan,, +05/28/2021,10:39,BROOKLYN,11233,,,,THOMAS S BOYLAND STREET,E NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422647,Pick-up Truck,Sedan,,, +05/30/2021,2:20,BROOKLYN,11208,40.686592,-73.868,"(40.686592, -73.868)",GRANT AVENUE,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422263,Sedan,,,, +05/27/2021,7:05,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422514,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,17:00,QUEENS,11372,40.749084,-73.87025,"(40.749084, -73.87025)",,,95-51 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422067,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,1:36,MANHATTAN,10035,40.801765,-73.93723,"(40.801765, -73.93723)",EAST 122 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Prescription Medication,Unspecified,Unspecified,Unspecified,,4422153,Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/19/2021,20:20,QUEENS,11385,40.701103,-73.89088,"(40.701103, -73.89088)",CYPRESS HILLS STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422578,Station Wagon/Sport Utility Vehicle,SPECIAL PU,,, +05/30/2021,23:00,,,40.68888,-73.960014,"(40.68888, -73.960014)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4422166,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/30/2021,20:10,QUEENS,11691,40.605274,-73.75516,"(40.605274, -73.75516)",,,21-41 MOTT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4422586,Sedan,,,, +05/30/2021,1:00,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4421628,Sedan,Sedan,,, +05/29/2021,1:00,,,40.639996,-74.02312,"(40.639996, -74.02312)",64 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422761,Sedan,,,, +05/29/2021,20:40,MANHATTAN,10027,40.8068,-73.94993,"(40.8068, -73.94993)",,,2034 7 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4422613,Sedan,,,, +05/30/2021,1:55,,,40.77077,-73.91727,"(40.77077, -73.91727)",ASTORIA BOULEVARD,31 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4421983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,14:50,,,40.749638,-73.99905,"(40.749638, -73.99905)",WEST 28 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422308,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,0:28,BROOKLYN,11203,40.65156,-73.93428,"(40.65156, -73.93428)",CHURCH AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,0:02,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4422282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/30/2021,10:52,,,40.832573,-73.91052,"(40.832573, -73.91052)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422702,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,13:20,,,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422537,Sedan,Bus,,, +05/30/2021,13:50,BROOKLYN,11249,40.71226,-73.96395,"(40.71226, -73.96395)",,,100 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422088,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,23:41,BRONX,10462,40.83351,-73.85809,"(40.83351, -73.85809)",,,1990 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4422135,Sedan,,,, +05/30/2021,16:41,,,40.76615,-73.919785,"(40.76615, -73.919785)",30 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422506,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,7:30,BROOKLYN,11208,40.66216,-73.87284,"(40.66216, -73.87284)",WORTMAN AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422227,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,6:45,BROOKLYN,11220,40.64721,-74.01531,"(40.64721, -74.01531)",51 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421899,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,14:22,BROOKLYN,11228,40.620903,-74.006805,"(40.620903, -74.006805)",74 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4421937,Sedan,Pick-up Truck,,, +05/30/2021,9:30,BROOKLYN,11236,40.63222,-73.88793,"(40.63222, -73.88793)",,,2105 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4421761,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,17:30,BROOKLYN,11208,40.68541,-73.87274,"(40.68541, -73.87274)",CRESCENT STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422242,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,5:39,,,40.728035,-73.97183,"(40.728035, -73.97183)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Following Too Closely,,,,4422020,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,13:00,QUEENS,11373,40.739113,-73.88975,"(40.739113, -73.88975)",QUEENS BOULEVARD,74 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422747,Sedan,Pick-up Truck,,, +05/30/2021,16:00,,,40.62734,-73.94126,"(40.62734, -73.94126)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421902,Sedan,Van,,, +05/30/2021,12:43,MANHATTAN,10014,40.730553,-74.010376,"(40.730553, -74.010376)",WEST STREET,LEROY STREET,,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4421944,Sedan,,,, +05/30/2021,10:40,STATEN ISLAND,10304,40.625584,-74.0818,"(40.625584, -74.0818)",,,3 GRAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422515,Sedan,,,, +05/30/2021,19:47,BROOKLYN,11238,40.682,-73.96867,"(40.682, -73.96867)",ATLANTIC AVENUE,CLERMONT AVENUE,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4422371,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,12:15,,,40.59626,-73.76773,"(40.59626, -73.76773)",BEACH 35 STREET,BEACH CHANNEL DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422448,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/30/2021,0:50,STATEN ISLAND,10301,40.64509,-74.07733,"(40.64509, -74.07733)",,,100 RICHMOND TERRACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421746,Ambulance,Sedan,,, +05/30/2021,23:50,BRONX,10462,40.83348,-73.85851,"(40.83348, -73.85851)",,,1973 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422143,Pick-up Truck,Sedan,,, +05/30/2021,16:10,,,40.81245,-73.96065,"(40.81245, -73.96065)",WEST 123 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4421841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,17:45,BROOKLYN,11207,40.669228,-73.8962,"(40.669228, -73.8962)",SUTTER AVENUE,SHEFFIELD AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4422252,,,,, +05/30/2021,10:05,,,40.79722,-73.96993,"(40.79722, -73.96993)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4421694,Sedan,,,, +05/30/2021,22:05,,,40.66434,-73.93155,"(40.66434, -73.93155)",UTICA AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421956,Station Wagon/Sport Utility Vehicle,Bike,,, +05/30/2021,15:55,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,6:15,BROOKLYN,11208,40.67613,-73.884865,"(40.67613, -73.884865)",LIBERTY AVENUE,CLEVELAND STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4422222,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle +05/30/2021,16:00,,,40.62734,-73.94126,"(40.62734, -73.94126)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4421883,Sedan,Van,,, +05/28/2021,21:00,,,40.721054,-73.8552,"(40.721054, -73.8552)",DARTMOUTH STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422643,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,18:30,MANHATTAN,10013,40.71896,-74.00128,"(40.71896, -74.00128)",CANAL STREET,CORTLANDT ALLEY,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4422598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,5:12,QUEENS,11368,40.747993,-73.86519,"(40.747993, -73.86519)",,,99-42 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422038,Sedan,,,, +05/30/2021,19:45,BROOKLYN,11217,40.67885,-73.978806,"(40.67885, -73.978806)",,,123 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422002,Taxi,Sedan,,, +05/17/2021,20:00,BROOKLYN,11233,40.683807,-73.92291,"(40.683807, -73.92291)",,,176 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422519,Sedan,Bike,,, +05/25/2021,8:45,,,40.872078,-73.9296,"(40.872078, -73.9296)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4422565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/30/2021,3:30,MANHATTAN,10003,40.724274,-73.99082,"(40.724274, -73.99082)",2 AVENUE,EAST 1 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422045,Taxi,Pick-up Truck,,, +05/30/2021,5:20,QUEENS,11385,40.709854,-73.89826,"(40.709854, -73.89826)",,,61-17 LINDEN STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4421880,Sedan,Sedan,Sedan,, +05/30/2021,10:40,QUEENS,11360,40.7785,-73.77644,"(40.7785, -73.77644)",,,213-29 26 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421814,Station Wagon/Sport Utility Vehicle,PICKUP TRU,,, +05/28/2021,23:45,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4422705,Sedan,,,, +05/30/2021,22:20,BRONX,10462,40.834312,-73.85792,"(40.834312, -73.85792)",BENEDICT AVENUE,PUGSLEY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422273,Sedan,E-Bike,,, +05/29/2021,22:00,BRONX,10453,,,,FAME HALL TERRACE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Dump,Station Wagon/Sport Utility Vehicle, +05/30/2021,11:15,MANHATTAN,10032,40.83238,-73.940895,"(40.83238, -73.940895)",WEST 157 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4421913,Sedan,Sedan,,, +05/30/2021,15:45,,,40.584064,-73.91971,"(40.584064, -73.91971)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422095,Sedan,Pick-up Truck,Sedan,, +05/30/2021,21:48,,,40.635258,-73.92745,"(40.635258, -73.92745)",KINGS HIGHWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422333,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,10:07,,,40.873062,-73.91177,"(40.873062, -73.91177)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422188,Sedan,,,, +05/30/2021,13:50,,,40.661568,-73.95073,"(40.661568, -73.95073)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Pavement Slippery,Failure to Yield Right-of-Way,,,,4421805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,4:50,BRONX,10457,40.838963,-73.90484,"(40.838963, -73.90484)",,,1520 BROOK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4421662,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +05/30/2021,20:34,BRONX,10468,40.861744,-73.911804,"(40.861744, -73.911804)",WEST FORDHAM ROAD,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4421963,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,20:00,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422120,Sedan,,,, +05/30/2021,10:20,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4421932,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/26/2021,19:30,MANHATTAN,10027,40.80876,-73.944786,"(40.80876, -73.944786)",,,329 LENOX AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422606,Sedan,Sedan,,, +05/23/2021,21:50,STATEN ISLAND,10305,40.603615,-74.06931,"(40.603615, -74.06931)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Unspecified,Unspecified,,4422635,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +05/26/2021,7:09,BRONX,10465,,,,lafayette avenue,edison avenue,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4422530,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/30/2021,23:35,BROOKLYN,11201,40.692055,-73.982544,"(40.692055, -73.982544)",FLATBUSH AVENUE EXTENSION,WILLOUGHBY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4421986,Sedan,Sedan,,, +05/30/2021,21:50,,,40.646923,-73.94818,"(40.646923, -73.94818)",TILDEN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422556,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,1:30,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4422247,Sedan,Sedan,,, +05/30/2021,6:16,BROOKLYN,11236,40.64953,-73.91633,"(40.64953, -73.91633)",REMSEN AVENUE,AVENUE B,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4421866,Sedan,Sedan,,, +05/30/2021,17:45,MANHATTAN,10011,40.74683,-74.002174,"(40.74683, -74.002174)",,,420 WEST 23 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422312,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/24/2021,7:30,MANHATTAN,10075,40.77072,-73.95297,"(40.77072, -73.95297)",,,422 EAST 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422737,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,20:05,BROOKLYN,11239,40.649193,-73.88768,"(40.649193, -73.88768)",VANDALIA AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422228,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,11:00,BROOKLYN,11226,40.639763,-73.958015,"(40.639763, -73.958015)",DITMAS AVENUE,EAST 21 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4421834,PK,,,, +05/30/2021,15:00,,,40.83427,-73.94537,"(40.83427, -73.94537)",WEST 157 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421903,Sedan,,,, +05/23/2021,11:42,QUEENS,11106,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,36 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422502,Bike,,,, +05/30/2021,6:17,QUEENS,11419,40.68821,-73.83086,"(40.68821, -73.83086)",,,101-20 113 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422452,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,9:47,,,40.624294,-74.13724,"(40.624294, -74.13724)",FOREST AVENUE,LIVERMORE AVENUE,,5,0,3,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4421791,Flat Bed,Pick-up Truck,,, +05/29/2021,18:30,MANHATTAN,10018,40.758305,-74.000145,"(40.758305, -74.000145)",WEST 38 STREET,11 AVENUE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4422543,Sedan,Sedan,Van,, +05/30/2021,18:40,BROOKLYN,11211,40.713398,-73.95641,"(40.713398, -73.95641)",HOPE STREET,HAVEMEYER STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Pavement Slippery,,,,4422066,Sedan,Sedan,,, +05/28/2021,10:40,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4422611,Pick-up Truck,Sedan,Sedan,, +05/29/2021,5:43,,,40.825504,-73.886086,"(40.825504, -73.886086)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422616,Pick-up Truck,,,, +05/30/2021,1:28,,,40.644917,-73.894325,"(40.644917, -73.894325)",EAST 103 STREET,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4421629,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/30/2021,23:50,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422141,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,13:53,BROOKLYN,11249,40.718636,-73.959015,"(40.718636, -73.959015)",NORTH 7 STREET,BERRY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422168,Mini Van,Sedan,,, +05/30/2021,19:05,BRONX,10469,40.868813,-73.838234,"(40.868813, -73.838234)",GUNTHER AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4421977,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,12:50,QUEENS,11106,40.7632,-73.92109,"(40.7632, -73.92109)",31 AVENUE,34 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422507,Station Wagon/Sport Utility Vehicle,Bike,,, +05/30/2021,11:20,BRONX,10453,40.857105,-73.90936,"(40.857105, -73.90936)",UNIVERSITY AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422018,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,15:57,MANHATTAN,10021,40.772373,-73.96079,"(40.772373, -73.96079)",EAST 75 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422154,Sedan,Bike,,, +05/30/2021,4:09,,,40.83232,-73.87395,"(40.83232, -73.87395)",BRONX RIVER PARKWAY,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4421897,Sedan,,,, +05/30/2021,3:21,BROOKLYN,11212,40.658913,-73.90119,"(40.658913, -73.90119)",LOTT AVENUE,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4421721,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,11:00,MANHATTAN,10040,40.85687,-73.93477,"(40.85687, -73.93477)",OVERLOOK TERRACE,WEST 190 STREET,,1,0,0,0,1,0,0,0,Pavement Slippery,Unspecified,,,,4422283,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/25/2021,11:30,MANHATTAN,10031,40.827103,-73.94997,"(40.827103, -73.94997)",BROADWAY,WEST 146 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422516,,,,, +05/30/2021,20:07,QUEENS,11427,40.728024,-73.74764,"(40.728024, -73.74764)",217 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421945,Sedan,Sedan,,, +05/30/2021,11:11,BROOKLYN,11219,40.62579,-74.00119,"(40.62579, -74.00119)",,,1301 65 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4421936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,22:15,QUEENS,11001,40.727673,-73.70845,"(40.727673, -73.70845)",,,256-15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422378,Sedan,,,, +05/30/2021,10:48,,,40.809692,-73.94409,"(40.809692, -73.94409)",WEST 128 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4422006,Bus,Sedan,,, +05/30/2021,8:50,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4422083,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,0:30,QUEENS,11377,40.740273,-73.89586,"(40.740273, -73.89586)",QUEENS BOULEVARD,69 STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4422690,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,23:35,,,40.74006,-73.789894,"(40.74006, -73.789894)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4422591,Sedan,Sedan,,, +05/30/2021,17:40,MANHATTAN,10035,40.808376,-73.93874,"(40.808376, -73.93874)",,,2034 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422133,Sedan,,,, +05/30/2021,15:10,QUEENS,11420,40.679253,-73.81871,"(40.679253, -73.81871)",LINDEN BOULEVARD,121 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4421993,Sedan,Sedan,Convertible,, +05/30/2021,22:20,,,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422557,Sedan,Sedan,,, +05/03/2021,4:10,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",METROPOLITAN AVENUE,80 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422575,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,17:35,BROOKLYN,11218,40.643635,-73.975555,"(40.643635, -73.975555)",,,355 EAST 5 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422603,Taxi,Sedan,,, +05/30/2021,6:25,,,40.739574,-73.79167,"(40.739574, -73.79167)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4422040,Sedan,,,, +03/26/2022,19:15,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,AMSTERDAM AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4515344,Sedan,Sedan,,, +03/11/2022,15:48,STATEN ISLAND,10309,40.524017,-74.23921,"(40.524017, -74.23921)",,,4842 ARTHUR KILL ROAD,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4515527,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,9:42,MANHATTAN,10001,40.7509,-73.99812,"(40.7509, -73.99812)",9 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515712,Sedan,Box Truck,,, +03/29/2022,9:23,BROOKLYN,11205,40.690907,-73.95542,"(40.690907, -73.95542)",DE KALB AVENUE,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4515482,Sedan,Motorscooter,,, +03/30/2022,14:41,QUEENS,11101,40.75303,-73.92163,"(40.75303, -73.92163)",42 STREET,NORTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4515941,Moped,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,18:40,BROOKLYN,11230,40.618443,-73.9694,"(40.618443, -73.9694)",,,1236 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515574,Bus,Sedan,,, +04/01/2022,23:40,,,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515689,Sedan,Sedan,,, +04/01/2022,22:45,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4515791,Sedan,Sedan,,, +03/31/2022,14:50,MANHATTAN,10019,40.763718,-73.975746,"(40.763718, -73.975746)",,,57 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4515238,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/01/2020,9:10,BRONX,10473,40.823177,-73.842705,"(40.823177, -73.842705)",,,751 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515358,Sedan,,,, +03/29/2022,10:30,QUEENS,11377,40.747635,-73.904335,"(40.747635, -73.904335)",,,59-01 39 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515857,Sedan,,,, +07/06/2021,8:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464024,Sedan,Sedan,,, +03/23/2022,8:48,BROOKLYN,11212,40.66223,-73.929146,"(40.66223, -73.929146)",,,81 EAST 91 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515623,Sedan,Sedan,,, +04/01/2022,17:54,,,40.853027,-73.91827,"(40.853027, -73.91827)",WEST TREMONT AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515371,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/01/2022,15:10,BRONX,10467,40.883633,-73.88517,"(40.883633, -73.88517)",WEST GUN HILL ROAD,WEST MOSHOLU PARKWAY NORTH,,2,0,0,0,0,0,2,0,Failure to Keep Right,Failure to Keep Right,Unspecified,,,4515463,Sedan,Sedan,Sedan,, +03/26/2022,19:20,QUEENS,11372,40.749428,-73.880455,"(40.749428, -73.880455)",,,37-27 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515376,Sedan,,,, +03/30/2022,11:15,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515042,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/30/2022,9:15,BROOKLYN,11218,40.639854,-73.983505,"(40.639854, -73.983505)",38 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514825,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,10:50,MANHATTAN,10001,40.748287,-73.99008,"(40.748287, -73.99008)",,,125 WEST 31 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514830,Ambulance,,,, +03/31/2022,0:49,BROOKLYN,11207,40.678165,-73.890785,"(40.678165, -73.890785)",FULTON STREET,HENDRIX STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4515012,Sedan,Sedan,,, +03/31/2022,20:45,BRONX,10467,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,PARKSIDE PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515196,E-Bike,Sedan,,, +03/30/2022,8:15,QUEENS,11411,40.698086,-73.7396,"(40.698086, -73.7396)",,,115-79 219 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514848,Sedan,Bus,,, +03/31/2022,10:10,BRONX,10469,40.868572,-73.84522,"(40.868572, -73.84522)",,,2949 MORGAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515032,Sedan,Sedan,,, +03/21/2022,5:53,BROOKLYN,11233,40.6803,-73.93454,"(40.6803, -73.93454)",,,434 LEWIS AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4515848,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,2:30,QUEENS,11432,40.71602,-73.77955,"(40.71602, -73.77955)",,,183-17 DALNY ROAD,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4515213,Sedan,,,, +03/30/2022,18:00,BROOKLYN,11219,40.631073,-74.00998,"(40.631073, -74.00998)",,,912 65 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514888,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,14:15,BROOKLYN,11226,40.65217,-73.96141,"(40.65217, -73.96141)",CATON AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,3:55,QUEENS,11413,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515063,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,3:10,BROOKLYN,11216,40.685375,-73.95433,"(40.685375, -73.95433)",,,1142 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515734,Sedan,,,, +03/31/2022,13:54,MANHATTAN,10036,40.764366,-73.99496,"(40.764366, -73.99496)",,,538 WEST 48 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515235,Sedan,Box Truck,,, +03/30/2022,7:11,QUEENS,11369,40.76199,-73.86934,"(40.76199, -73.86934)",ASTORIA BOULEVARD,100 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514785,Sedan,Sedan,,, +03/31/2022,6:30,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4515390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/30/2022,21:33,QUEENS,11106,40.7651,-73.93149,"(40.7651, -73.93149)",,,21-20 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,9:34,BROOKLYN,11206,40.710285,-73.95041,"(40.710285, -73.95041)",,,19 MAUJER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515321,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,22:30,QUEENS,11374,40.732944,-73.86667,"(40.732944, -73.86667)",HORACE HARDING EXPRESSWAY,93 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515816,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,15:21,MANHATTAN,10013,40.721184,-74.00134,"(40.721184, -74.00134)",,,107 GRAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515593,Sedan,,,, +03/31/2022,21:30,MANHATTAN,10036,40.756557,-73.986115,"(40.756557, -73.986115)",WEST 43 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515572,Bike,,,, +04/01/2022,6:56,STATEN ISLAND,10307,40.515675,-74.23762,"(40.515675, -74.23762)",,,35 LENHART STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515538,Sedan,,,, +03/30/2022,5:25,QUEENS,11434,40.66008,-73.774155,"(40.66008, -73.774155)",,,166-05 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515053,Sedan,Sedan,,, +03/31/2022,4:05,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",UTICA AVENUE,FLATLANDS AVENUE,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4515369,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,3:00,,,40.672855,-73.87131,"(40.672855, -73.87131)",EUCLID AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515741,Sedan,,,, +03/31/2022,11:48,,,,,,UTOPIA PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4515083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,11:05,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4515348,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/01/2022,8:33,,,40.691193,-73.99777,"(40.691193, -73.99777)",,,ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515815,Sedan,Sedan,,, +03/30/2022,12:00,MANHATTAN,10013,40.72631,-74.0075,"(40.72631, -74.0075)",,,315 HUDSON STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4514803,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,7:50,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,1,0,1,0,0,0,0,0,Unspecified,,,,,4514847,Taxi,,,, +03/28/2022,7:15,MANHATTAN,10128,40.779434,-73.94752,"(40.779434, -73.94752)",1 AVENUE,EAST 90 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515938,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,1:40,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4515223,Sedan,Tractor Truck Diesel,,, +03/29/2022,22:40,,,40.695217,-73.93749,"(40.695217, -73.93749)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515846,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,17:25,,,40.625282,-73.96047,"(40.625282, -73.96047)",AVENUE J,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515564,Station Wagon/Sport Utility Vehicle,Bus,,, +03/30/2022,3:38,QUEENS,11354,40.77138,-73.82193,"(40.77138, -73.82193)",,,29-44 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515773,Station Wagon/Sport Utility Vehicle,,,, +03/11/2022,19:40,QUEENS,11368,40.75196,-73.85456,"(40.75196, -73.85456)",112 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4515566,Sedan,Sedan,,, +03/31/2022,6:30,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515230,Sedan,Sedan,,, +03/30/2022,20:28,QUEENS,11413,40.676693,-73.74221,"(40.676693, -73.74221)",MERRICK BOULEVARD,228 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4514876,Sedan,Sedan,,, +03/31/2022,5:00,BRONX,10459,40.832348,-73.89663,"(40.832348, -73.89663)",,,1409 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4514961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,10:28,QUEENS,11367,40.730015,-73.82348,"(40.730015, -73.82348)",MAIN STREET,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515217,Dump,Sedan,,, +03/30/2022,14:33,BROOKLYN,11234,40.61303,-73.91225,"(40.61303, -73.91225)",,,6175 STRICKLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515103,Sedan,,,, +04/01/2022,13:00,,,40.791405,-73.93569,"(40.791405, -73.93569)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4515503,Sedan,Sedan,,, +03/31/2022,17:30,BROOKLYN,11206,40.703934,-73.9348,"(40.703934, -73.9348)",WHITE STREET,VARET STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515190,Sedan,Sedan,,, +03/30/2022,8:49,,,40.605934,-74.000465,"(40.605934, -74.000465)",86 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514818,ROAD SWEEP,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,8:58,,,40.8361,-73.86909,"(40.8361, -73.86909)",CROSS BRONX EXPRESSWAY,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515359,Sedan,Bus,,, +03/30/2022,11:00,,,40.840786,-73.9232,"(40.840786, -73.9232)",WEST 170 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515657,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,8:51,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",EAST 42 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514896,Sedan,Bike,,, +04/01/2022,12:00,BROOKLYN,11208,40.65992,-73.8755,"(40.65992, -73.8755)",,,1060 LINWOOD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515337,Sedan,,,, +03/30/2022,0:10,QUEENS,11434,40.682377,-73.767166,"(40.682377, -73.767166)",125 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514768,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +04/01/2022,8:20,QUEENS,11413,40.663906,-73.76043,"(40.663906, -73.76043)",145 ROAD,ARTHUR STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4515391,Sedan,Sedan,,, +05/31/2021,17:30,,,40.770554,-73.83551,"(40.770554, -73.83551)",WHITESTONE EXPRESSWAY,ULMER STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4422354,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/30/2022,7:20,MANHATTAN,10013,40.715523,-74.001236,"(40.715523, -74.001236)",,,1 HOGAN PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515328,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/30/2022,17:05,BROOKLYN,11236,40.639736,-73.906746,"(40.639736, -73.906746)",FLATLANDS AVENUE,EAST 89 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4514867,Sedan,Sedan,,, +03/31/2022,16:46,BROOKLYN,11230,40.631115,-73.972626,"(40.631115, -73.972626)",,,200 LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,Other Vehicular,,,4515555,Sedan,Station Wagon/Sport Utility Vehicle,PK,, +03/31/2022,5:09,BRONX,10474,40.81085,-73.88187,"(40.81085, -73.88187)",HUNTS POINT AVENUE,OAK POINT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4515254,Tractor Truck Diesel,Sedan,,, +03/25/2022,15:35,QUEENS,11366,40.730675,-73.78291,"(40.730675, -73.78291)",,,75-68 187 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4515608,Sedan,Sedan,,, +03/21/2022,16:40,BRONX,10456,40.8375,-73.91061,"(40.8375, -73.91061)",COLLEGE AVENUE,EAST 170 STREET,,2,0,0,0,0,0,2,0,Illnes,,,,,4515976,Sedan,,,, +03/30/2022,7:37,BROOKLYN,11207,40.672195,-73.902664,"(40.672195, -73.902664)",GLENMORE AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515008,Sedan,Sedan,,, +03/31/2022,14:00,,,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4515781,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/31/2022,16:00,,,40.66602,-73.92947,"(40.66602, -73.92947)",FORD STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4515445,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2022,8:00,BROOKLYN,11212,40.663452,-73.92409,"(40.663452, -73.92409)",,,99 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4566943,Sedan,,,, +09/26/2021,0:00,BROOKLYN,11208,40.66682,-73.88166,"(40.66682, -73.88166)",ELTON STREET,NEW LOTS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4461196,Sedan,Sedan,Sedan,Sedan, +08/31/2021,10:00,BRONX,10455,40.816902,-73.91799,"(40.816902, -73.91799)",,,389 EAST 150 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464227,Sedan,,,, +10/02/2021,15:40,BRONX,10463,40.881687,-73.90283,"(40.881687, -73.90283)",WEST 234 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464180,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,20:12,BROOKLYN,11211,40.71759,-73.94995,"(40.71759, -73.94995)",FROST STREET,LORIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464191,Sedan,,,, +10/01/2021,14:30,,,40.66319,-73.93727,"(40.66319, -73.93727)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464183,Ambulance,,,, +09/28/2021,1:00,,,40.779762,-73.94437,"(40.779762, -73.94437)",YORK AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4464234,Sedan,Moped,,, +10/01/2021,19:10,BROOKLYN,11212,0,0,"(0.0, 0.0)",PITKIN AVENUE,LEGION STREET,,4,0,0,0,0,0,4,0,Outside Car Distraction,,,,,4464212,Sedan,,,, +09/30/2021,16:49,BROOKLYN,11211,40.71596,-73.951935,"(40.71596, -73.951935)",UNION AVENUE,JACKSON STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4464189,Sedan,E-Bike,,, +09/29/2021,20:15,,,40.79428,-73.94902,"(40.79428, -73.94902)",MADISON AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4464211,Sedan,Sedan,,, +09/30/2021,12:48,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4464213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/02/2021,18:03,,,,,,VERRAZANO BRIDGE LOWER,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4464235,Sedan,Sedan,Sedan,Sedan, +09/28/2021,13:10,BROOKLYN,11229,,,,,,2302 AVENUE U,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464254,Box Truck,Sedan,,, +03/30/2022,16:08,QUEENS,11434,40.68158,-73.76548,"(40.68158, -73.76548)",MERRICK BOULEVARD,127 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4514853,Sedan,Sedan,,, +03/31/2022,19:00,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515412,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,14:00,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4515281,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/30/2022,14:12,,,40.74233,-73.83764,"(40.74233, -73.83764)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4515151,Bus,,,, +03/31/2022,2:00,BROOKLYN,11232,40.6572,-74.004684,"(40.6572, -74.004684)",3 AVENUE,33 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4515064,TRAILER,Station Wagon/Sport Utility Vehicle,Sedan,, +04/01/2022,18:30,QUEENS,11385,40.705498,-73.87746,"(40.705498, -73.87746)",,,73-05 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515761,Van,Station Wagon/Sport Utility Vehicle,,, +11/25/2021,9:15,BRONX,10463,,,,Broadway,236 street,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490836,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,1:50,BRONX,10462,40.83404,-73.85328,"(40.83404, -73.85328)",,,2135 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463249,Moped,,,, +10/02/2021,10:00,,,40.607765,-73.98255,"(40.607765, -73.98255)",WEST 9 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4463318,Motorcycle,,,, +09/19/2021,3:29,BROOKLYN,11237,40.699165,-73.914925,"(40.699165, -73.914925)",MYRTLE AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4464162,Sedan,Sedan,,, +09/28/2021,6:55,,,40.69889,-73.91753,"(40.69889, -73.91753)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,16:29,BRONX,10459,40.83109,-73.89147,"(40.83109, -73.89147)",,,1314 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4463974,Station Wagon/Sport Utility Vehicle,MOPED,,, +10/02/2021,17:01,MANHATTAN,10035,40.80297,-73.93844,"(40.80297, -73.93844)",,,2021 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463942,Sedan,Sedan,,, +10/02/2021,3:15,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463056,Sedan,UTILITY TR,,, +10/02/2021,11:15,BROOKLYN,11217,40.680733,-73.97451,"(40.680733, -73.97451)",BERGEN STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463282,Sedan,Van,,, +10/02/2021,22:50,QUEENS,11372,40.751495,-73.87991,"(40.751495, -73.87991)",,,35-34 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,8:30,QUEENS,11420,40.68126,-73.81869,"(40.68126, -73.81869)",122 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463888,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,17:45,BRONX,10468,40.863327,-73.89921,"(40.863327, -73.89921)",EAST 190 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464018,Sedan,,,, +10/01/2021,13:00,QUEENS,11692,40.59721,-73.79275,"(40.59721, -73.79275)",BEACH 63 STREET,ALMEDA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464077,Sedan,,,, +10/02/2021,0:57,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4463067,Sedan,Sedan,Sedan,, +10/02/2021,18:55,BROOKLYN,11219,40.62588,-73.993675,"(40.62588, -73.993675)",,,1514 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463383,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,15:46,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463972,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,16:58,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",PARK AVENUE,CLAREMONT PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464006,Sedan,moped,,, +10/02/2021,12:25,BROOKLYN,11208,40.679058,-73.86343,"(40.679058, -73.86343)",,,1240 LIBERTY AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4463812,Sedan,,,, +10/02/2021,7:40,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463097,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,16:15,QUEENS,11377,40.75399,-73.90031,"(40.75399, -73.90031)",NORTHERN BOULEVARD,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463225,Sedan,Sedan,,, +10/02/2021,16:45,BROOKLYN,11234,40.62213,-73.927216,"(40.62213, -73.927216)",,,2017 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463490,Sedan,Sedan,,, +09/25/2021,23:55,BRONX,10463,40.88074,-73.9101,"(40.88074, -73.9101)",,,3010 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464151,Sedan,Sedan,,, +10/02/2021,12:58,,,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463540,Sedan,,,, +10/02/2021,8:36,BROOKLYN,11211,40.710476,-73.963844,"(40.710476, -73.963844)",SOUTH 6 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463668,Sedan,Sedan,,, +10/02/2021,0:00,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",FOUNTAIN AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4463719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,9:57,BRONX,10456,40.818058,-73.90501,"(40.818058, -73.90501)",WESTCHESTER AVENUE,TINTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463207,Sedan,Sedan,,, +10/02/2021,6:40,QUEENS,11365,40.74389,-73.788155,"(40.74389, -73.788155)",,,56-48 188 STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4463148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,15:50,STATEN ISLAND,10305,40.577045,-74.080795,"(40.577045, -74.080795)",CAPODANNO BOULEVARD,NAUGHTON AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4464031,Sedan,,,, +05/31/2021,2:01,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4422464,Sedan,,,, +10/02/2021,0:25,,,,,,FDR DRIVE,EAST 101 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464064,Sedan,Sedan,,, +10/01/2021,17:56,MANHATTAN,10018,40.75228,-73.9897,"(40.75228, -73.9897)",WEST 36 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464102,Sedan,Moped,,, +10/02/2021,2:05,,,,,,SHORE BOULEVARD,18 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463191,Sedan,Sedan,,, +10/02/2021,11:30,,,40.74709,-73.76325,"(40.74709, -73.76325)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4463149,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,17:18,STATEN ISLAND,10304,40.614964,-74.08673,"(40.614964, -74.08673)",,,46 HAMILTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463984,Sedan,,,, +10/02/2021,15:00,BROOKLYN,11249,40.713535,-73.96731,"(40.713535, -73.96731)",,,325 KENT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463219,Box Truck,Sedan,,, +10/02/2021,19:45,QUEENS,11417,40.68046,-73.84309,"(40.68046, -73.84309)",96 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463708,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,1:30,MANHATTAN,10011,40.74487,-73.99957,"(40.74487, -73.99957)",,,308 WEST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463348,Sedan,,,, +10/02/2021,14:25,BROOKLYN,11214,40.60416,-73.99752,"(40.60416, -73.99752)",86 STREET,BAY 25 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4463400,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,23:20,,,40.69216,-73.914764,"(40.69216, -73.914764)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unsafe Speed,,,,4464158,Sedan,Sedan,,, +10/02/2021,13:14,,,40.73767,-74.00178,"(40.73767, -74.00178)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463774,Sedan,Sedan,,, +10/02/2021,2:00,,,40.866062,-73.92251,"(40.866062, -73.92251)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463558,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:25,QUEENS,11412,40.704006,-73.7668,"(40.704006, -73.7668)",FARMERS BOULEVARD,BRINKERHOFF AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463758,Taxi,Sedan,,, +10/02/2021,5:50,QUEENS,11413,40.68012,-73.74824,"(40.68012, -73.74824)",,,220-11 133 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463136,Sedan,Sedan,,, +10/02/2021,15:10,,,40.722927,-74.00218,"(40.722927, -74.00218)",BROOME STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463211,Sedan,,,, +10/02/2021,19:40,QUEENS,11102,40.76966,-73.92365,"(40.76966, -73.92365)",,,23-70 28 AVENUE,1,0,0,0,0,0,1,0,Outside Car Distraction,,,,,4463295,Sedan,,,, +10/02/2021,14:20,,,40.865383,-73.89348,"(40.865383, -73.89348)",EAST KINGSBRIDGE ROAD,VALENTINE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464026,Pick-up Truck,Sedan,,, +10/02/2021,13:05,BROOKLYN,11208,40.657642,-73.8749,"(40.657642, -73.8749)",FLATLANDS AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464110,Sedan,,,, +10/02/2021,11:51,,,,,,1 AVENUE,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463538,Station Wagon/Sport Utility Vehicle,Bike,,, +10/01/2021,14:40,,,40.689842,-73.850075,"(40.689842, -73.850075)",91 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463926,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,8:40,STATEN ISLAND,10304,40.59595,-74.09587,"(40.59595, -74.09587)",RICHMOND ROAD,NEWBERRY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464034,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,0:15,,,40.687668,-73.951035,"(40.687668, -73.951035)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463227,Sedan,Sedan,,, +09/29/2021,14:00,MANHATTAN,10018,40.7509,-73.98449,"(40.7509, -73.98449)",,,37 WEST 37 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464098,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,2:30,MANHATTAN,10025,40.792713,-73.96925,"(40.792713, -73.96925)",,,141 WEST 95 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4463265,Sedan,Sedan,Sedan,Sedan, +10/02/2021,5:30,QUEENS,11369,40.759193,-73.86865,"(40.759193, -73.86865)",,,100-02 32 AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4463155,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,4:45,BROOKLYN,11222,40.723213,-73.94847,"(40.723213, -73.94847)",,,100 ECKFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4463866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/02/2021,18:11,BRONX,10451,40.825546,-73.9312,"(40.825546, -73.9312)",,,725 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463599,Sedan,,,, +10/02/2021,15:10,BROOKLYN,11229,40.60547,-73.96074,"(40.60547, -73.96074)",AVENUE R,EAST 12 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463690,E-Bike,Sedan,,, +09/25/2021,17:15,,,40.584755,-73.94712,"(40.584755, -73.94712)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4464106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,16:25,BROOKLYN,11222,40.73046,-73.95149,"(40.73046, -73.95149)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463855,Station Wagon/Sport Utility Vehicle,bay crane,,, +09/30/2021,12:00,,,40.70003,-73.81279,"(40.70003, -73.81279)",138 PLACE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4463979,Sedan,Sedan,,, +10/02/2021,8:00,BROOKLYN,11215,40.659252,-73.988434,"(40.659252, -73.988434)",20 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463336,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,12:00,BROOKLYN,11212,40.659496,-73.912994,"(40.659496, -73.912994)",,,421 HERZL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463950,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,16:25,QUEENS,11101,40.752228,-73.93911,"(40.752228, -73.93911)",CRESCENT STREET,41 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463385,Bike,Motorcycle,,, +10/02/2021,21:39,,,40.68366,-73.90788,"(40.68366, -73.90788)",BUSHWICK AVENUE,,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4464168,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:15,MANHATTAN,10026,40.801155,-73.959656,"(40.801155, -73.959656)",MANHATTAN AVENUE,CATHEDRAL PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463275,Station Wagon/Sport Utility Vehicle,Bus,,, +10/02/2021,8:15,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4463518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,15:38,BRONX,10458,40.870033,-73.889,"(40.870033, -73.889)",,,2876 VALENTINE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464022,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,17:00,,,40.65812,-73.934006,"(40.65812, -73.934006)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463235,Sedan,Sedan,,, +10/02/2021,22:36,QUEENS,11420,40.679726,-73.829834,"(40.679726, -73.829834)",,,109-47 110 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463897,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,3:14,QUEENS,11422,40.652565,-73.74656,"(40.652565, -73.74656)",BROOKVILLE BOULEVARD,149 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4464042,Sedan,,,, +10/02/2021,3:00,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463425,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,6:16,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463283,Sedan,,,, +10/02/2021,14:28,BRONX,10468,40.860344,-73.90713,"(40.860344, -73.90713)",,,2265 UNIVERSITY AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463428,,,,, +10/02/2021,22:14,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",MC DONALD AVENUE,BAY PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463366,Station Wagon/Sport Utility Vehicle,Bike,,, +09/23/2021,10:00,BROOKLYN,11236,40.63206,-73.88876,"(40.63206, -73.88876)",,,9618 SKIDMORE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463960,Sedan,Tractor Truck Gasoline,,, +10/02/2021,0:45,,,,,,GRAND CENTRAL PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463058,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,15:24,BRONX,10456,40.830208,-73.90324,"(40.830208, -73.90324)",,,605 EAST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464000,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,17:31,BROOKLYN,11236,40.646297,-73.91274,"(40.646297, -73.91274)",,,900 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464087,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,5:13,,,40.732822,-73.8684,"(40.732822, -73.8684)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4463261,Station Wagon/Sport Utility Vehicle,Dump,,, +10/02/2021,16:20,MANHATTAN,10039,40.827633,-73.93577,"(40.827633, -73.93577)",MACOMBS DAM BRIDGE,WEST 154 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463836,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,16:15,MANHATTAN,10037,40.810097,-73.93926,"(40.810097, -73.93926)",,,2 EAST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464074,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/02/2021,22:30,STATEN ISLAND,10308,0,0,"(0.0, 0.0)",MILES AVENUE,BARLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464041,Pick-up Truck,Sedan,,, +10/01/2021,18:12,MANHATTAN,10035,40.80016,-73.93538,"(40.80016, -73.93538)",2 AVENUE,EAST 121 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463940,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,1:35,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4463070,Sedan,,,, +09/19/2021,2:26,QUEENS,11691,40.600567,-73.7621,"(40.600567, -73.7621)",BEACH CHANNEL DRIVE,BEACH 25 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4463973,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,18:39,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4463233,Sedan,Open Body,Open Body,, +10/02/2021,20:30,BROOKLYN,11219,40.640682,-73.995476,"(40.640682, -73.995476)",,,1042 45 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463367,Sedan,Box Truck,,, +09/30/2021,7:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464008,Sedan,Sedan,,, +03/29/2022,20:15,BRONX,10455,40.81388,-73.91182,"(40.81388, -73.91182)",EAST 149 STREET,EAGLE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4515296,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:25,,,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463803,Sedan,Sedan,,, +10/02/2021,14:37,QUEENS,11414,40.659878,-73.841095,"(40.659878, -73.841095)",,,158-48 92 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4463895,Sedan,Bike,,, +10/02/2021,17:00,,,40.69706,-73.91933,"(40.69706, -73.91933)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Other Vehicular,,,,4464138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,5:30,,,,,,VANCORTLANDT PARK,INTERSTATE ROUTE 87 NORTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464067,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,6:45,QUEENS,11377,40.74377,-73.91383,"(40.74377, -73.91383)",51 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463987,Bike,,,, +09/19/2021,19:30,BROOKLYN,11221,40.69269,-73.91894,"(40.69269, -73.91894)",,,1201 GATES AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464171,Taxi,Sedan,,, +10/02/2021,4:10,QUEENS,11369,40.760098,-73.8593,"(40.760098, -73.8593)",DITMARS BOULEVARD,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463154,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,14:10,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",WEST 42 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463193,Sedan,Bus,,, +10/02/2021,23:00,BROOKLYN,11206,40.698765,-73.939384,"(40.698765, -73.939384)",,,871 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463579,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,9:12,,,40.87626,-73.90395,"(40.87626, -73.90395)",BAILEY AVENUE,WEST 230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464050,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,11:45,,,40.739902,-73.791275,"(40.739902, -73.791275)",HORACE HARDING EXPRESSWAY,183 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463252,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,20:35,QUEENS,11418,40.697205,-73.81334,"(40.697205, -73.81334)",VANWYCK EXPRESSWAY,94 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463761,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/14/2021,7:00,BRONX,10463,40.88073,-73.9073,"(40.88073, -73.9073)",,,3120 CORLEAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464017,Sedan,,,, +10/02/2021,11:20,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463137,Sedan,Motorcycle,,, +10/02/2021,2:00,BROOKLYN,11216,40.676243,-73.95269,"(40.676243, -73.95269)",ROGERS AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,1:23,BRONX,10474,40.815,-73.89402,"(40.815, -73.89402)",GARRISON AVENUE,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463611,Pick-up Truck,Van,,, +10/02/2021,0:04,,,,,,COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4463173,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,22:55,QUEENS,11422,40.65973,-73.74174,"(40.65973, -73.74174)",241 STREET,MAYDA ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463286,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,14:30,QUEENS,11416,40.685463,-73.84747,"(40.685463, -73.84747)",,,97-27 94 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463927,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,21:53,,,40.702496,-73.81303,"(40.702496, -73.81303)",139 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463978,Sedan,Sedan,,, +10/02/2021,23:35,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4463775,Sedan,Sedan,,, +10/02/2021,12:50,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463242,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,13:00,,,40.75167,-73.94188,"(40.75167, -73.94188)",QUEENS PLAZA NORTH,23 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515497,Sedan,Sedan,,, +10/02/2021,14:00,BROOKLYN,11223,40.603058,-73.98261,"(40.603058, -73.98261)",HIGHLAWN AVENUE,WEST 10 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463300,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,11:15,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464126,Sedan,Sedan,,, +10/01/2021,15:00,BROOKLYN,11217,40.68251,-73.976326,"(40.68251, -73.976326)",FLATBUSH AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4464109,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,13:20,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4464028,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,10:23,BROOKLYN,11222,40.73046,-73.95149,"(40.73046, -73.95149)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463918,Sedan,Box Truck,,, +09/30/2021,13:40,MANHATTAN,10018,40.754177,-73.984604,"(40.754177, -73.984604)",AVENUE OF THE AMERICAS,WEST 41 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464099,Sedan,Bike,,, +10/02/2021,4:10,MANHATTAN,10034,40.86795,-73.92701,"(40.86795, -73.92701)",PAYSON AVENUE,BEAK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,3:00,BRONX,10471,40.897877,-73.897,"(40.897877, -73.897)",WEST 252 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463088,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/02/2021,8:00,QUEENS,11435,40.702255,-73.814865,"(40.702255, -73.814865)",,,88-80 138 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463756,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,18:41,,,40.8018,-73.96108,"(40.8018, -73.96108)",CATHEDRAL PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463220,Bike,,,, +09/22/2022,0:00,,,,,,GRAND CENTRAL PARKWAY,62 AVE NORTH,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4566433,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,12:45,,,40.65104,-74.0111,"(40.65104, -74.0111)",3 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463628,Sedan,Motorcycle,,, +10/02/2021,1:05,MANHATTAN,10010,40.738995,-73.97955,"(40.738995, -73.97955)",,,305 EAST 25 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463485,Sedan,Sedan,Sedan,, +10/02/2021,11:55,BROOKLYN,11236,40.637657,-73.913956,"(40.637657, -73.913956)",,,8125 GLENWOOD ROAD,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4463340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +09/04/2021,12:00,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464123,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,5:47,STATEN ISLAND,10301,40.640694,-74.07573,"(40.640694, -74.07573)",,,50 BAY STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463983,Sedan,,,, +10/02/2021,14:00,QUEENS,11102,40.770306,-73.91901,"(40.770306, -73.91901)",ASTORIA BOULEVARD,30 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4463390,Sedan,Sedan,Sedan,, +10/01/2021,23:45,QUEENS,11416,40.68592,-73.846924,"(40.68592, -73.846924)",WOODHAVEN BOULEVARD,97 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4463919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/01/2021,22:09,BROOKLYN,11237,40.690834,-73.90435,"(40.690834, -73.90435)",COOPER STREET,KNICKERBOCKER AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4464148,Sedan,Sedan,,, +10/02/2021,15:25,QUEENS,11373,40.745033,-73.87153,"(40.745033, -73.87153)",,,42-09 94 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4463264,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/02/2021,22:40,BROOKLYN,11207,40.671165,-73.895676,"(40.671165, -73.895676)",,,265 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463762,AMBU,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,21:07,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463856,Sedan,Tractor Truck Diesel,,, +10/02/2021,20:13,,,40.602535,-73.99321,"(40.602535, -73.99321)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,23:40,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463659,Sedan,Sedan,,, +10/02/2021,4:30,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463114,Sedan,Sedan,Sedan,, +10/02/2021,22:55,,,40.618214,-73.95815,"(40.618214, -73.95815)",AVENUE M,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463412,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,9:24,BRONX,10454,40.81103,-73.92149,"(40.81103, -73.92149)",WILLIS AVENUE,EAST 141 STREET,,1,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4463206,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/02/2021,15:50,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463431,Sedan,Sedan,,, +10/02/2021,18:00,,,40.742676,-73.839516,"(40.742676, -73.839516)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:30,,,40.63765,-73.9528,"(40.63765, -73.9528)",FLATBUSH AVENUE,EAST 26 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463411,E-Bike,Sedan,,, +10/02/2021,14:17,BRONX,10468,40.871643,-73.9002,"(40.871643, -73.9002)",,,2807 CLAFLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464154,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,14:14,BROOKLYN,11222,40.72114,-73.941895,"(40.72114, -73.941895)",,,55 MONITOR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463947,Sedan,PK,,, +10/02/2021,13:02,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4463335,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:45,QUEENS,11433,40.696976,-73.79276,"(40.696976, -73.79276)",,,107-48 UNION HALL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4463963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,0:50,BROOKLYN,11236,40.644295,-73.90139,"(40.644295, -73.90139)",ROCKAWAY PARKWAY,CONKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463064,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/01/2021,17:46,BRONX,10459,40.830135,-73.89088,"(40.830135, -73.89088)",HOE AVENUE,FREEMAN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,1:29,,,40.81275,-73.94558,"(40.81275, -73.94558)",7 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Alcohol Involvement,,4463835,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +10/01/2021,19:34,BROOKLYN,11204,40.612175,-73.99397,"(40.612175, -73.99397)",BAY RIDGE PARKWAY,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4464085,Sedan,,,, +09/27/2021,8:00,QUEENS,11423,40.711605,-73.763214,"(40.711605, -73.763214)",197 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464054,Sedan,Sedan,,, +10/02/2021,16:29,BROOKLYN,11226,40.63969,-73.95321,"(40.63969, -73.95321)",NEWKIRK AVENUE,EAST 25 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463617,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/02/2021,4:49,QUEENS,11358,40.762657,-73.79895,"(40.762657, -73.79895)",,,36-19 167 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463168,Sedan,Sedan,Sedan,, +10/02/2021,1:00,,,40.63024,-74.139915,"(40.63024, -74.139915)",PORT RICHMOND AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4463184,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,12:00,QUEENS,11385,40.696323,-73.90534,"(40.696323, -73.90534)",,,975 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463519,Box Truck,Sedan,,, +09/30/2021,10:30,BRONX,10457,40.839733,-73.89882,"(40.839733, -73.89882)",,,1639 FULTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463999,Sedan,Ambulance,,, +10/02/2021,12:00,,,40.68489,-73.96211,"(40.68489, -73.96211)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463580,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,16:11,STATEN ISLAND,10305,40.601,-74.07645,"(40.601, -74.07645)",STEUBEN STREET,WEST FINGERBOARD ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464021,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,15:30,BRONX,10472,40.82768,-73.866356,"(40.82768, -73.866356)",WATSON AVENUE,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463238,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,12:10,BROOKLYN,11229,40.59469,-73.92721,"(40.59469, -73.92721)",,,2618 GERRITSEN AVENUE,2,0,1,0,0,0,1,0,Driver Inexperience,,,,,4463696,Multi-Wheeled Vehicle,,,, +09/30/2021,8:33,BROOKLYN,11216,40.68384,-73.95162,"(40.68384, -73.95162)",,,244 PUTNAM AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464049,Sedan,,,, +10/02/2021,8:24,QUEENS,11378,40.71671,-73.913124,"(40.71671, -73.913124)",,,59-29 55 STREET,0,0,0,0,0,0,0,0,Steering Failure,Other Vehicular,Other Vehicular,,,4463127,Box Truck,Sedan,Van,, +10/02/2021,11:23,QUEENS,11378,40.727768,-73.89658,"(40.727768, -73.89658)",68 STREET,HULL AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4463522,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:19,QUEENS,11433,40.699715,-73.79869,"(40.699715, -73.79869)",LIBERTY AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463670,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,14:22,,,,,,NORTH CONDUIT AVENUE,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463760,PK,Sedan,,, +10/02/2021,10:50,QUEENS,11426,40.72604,-73.71829,"(40.72604, -73.71829)",JAMAICA AVENUE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463138,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,0:42,BROOKLYN,11226,40.654915,-73.95859,"(40.654915, -73.95859)",,,27 CLARKSON AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463209,E-Bike,Sedan,,, +09/28/2021,8:00,BRONX,10468,40.860287,-73.90494,"(40.860287, -73.90494)",GRAND AVENUE,NORTH STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4464029,Sedan,Sedan,,, +09/18/2021,18:00,STATEN ISLAND,10308,40.560776,-74.16273,"(40.560776, -74.16273)",ARTHUR KILL ROAD,ARMSTRONG AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464040,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,17:43,BROOKLYN,11206,40.69635,-73.94071,"(40.69635, -73.94071)",MYRTLE AVENUE,MARCUS GARVEY BOULEVARD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4463229,Sedan,Bike,,, +10/02/2021,4:20,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",PROSPECT EXPRESSWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4463371,Taxi,Sedan,,, +10/02/2021,14:30,,,40.69249,-73.81706,"(40.69249, -73.81706)",101 AVENUE,130 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464023,Sedan,E-Bike,,, +10/02/2021,18:07,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,5:01,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4463986,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,0:50,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463153,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/02/2021,16:48,BROOKLYN,11205,40.694355,-73.976585,"(40.694355, -73.976585)",,,32 AUBURN PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463253,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,23:34,BRONX,10458,40.86463,-73.892136,"(40.86463, -73.892136)",EAST 194 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4514915,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/02/2021,2:00,BROOKLYN,11225,40.66235,-73.95082,"(40.66235, -73.95082)",NOSTRAND AVENUE,LEFFERTS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463223,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,19:00,BROOKLYN,11203,40.65743,-73.9451,"(40.65743, -73.9451)",BROOKLYN AVENUE,WINTHROP STREET,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4464090,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,17:00,BRONX,10469,40.879345,-73.84797,"(40.879345, -73.84797)",,,1492 HICKS STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463498,Sedan,Sedan,,, +05/11/2021,7:57,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY SOUTH,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4415747,Station Wagon/Sport Utility Vehicle,Bus,,, +05/18/2021,9:35,,,,,,NORTHERN BOULEVARD,FLUSHING RIVER,,7,0,0,0,0,0,7,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,4417990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/28/2021,12:19,STATEN ISLAND,10301,40.639507,-74.09417,"(40.639507, -74.09417)",,,218 LAFAYETTE AVENUE,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4421360,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/28/2021,20:39,QUEENS,11105,40.777958,-73.90847,"(40.777958, -73.90847)",21 AVENUE,31 STREET,,1,1,0,1,1,0,0,0,Unspecified,,,,,4421901,E-Bike,,,, +05/27/2021,16:00,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,14:30,QUEENS,11417,40.680687,-73.84459,"(40.680687, -73.84459)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422384,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,14:30,STATEN ISLAND,10301,40.634533,-74.0867,"(40.634533, -74.0867)",OXFORD PLACE,CEBRA AVENUE,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4422520,Pick-up Truck,Taxi,,, +05/31/2021,15:00,,,40.707573,-73.8362,"(40.707573, -73.8362)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422440,Sedan,,,, +05/29/2021,18:00,BRONX,10469,40.876343,-73.83673,"(40.876343, -73.83673)",,,1530 EAST 222 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,20:50,BROOKLYN,11207,40.682453,-73.88723,"(40.682453, -73.88723)",RIDGEWOOD AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4422887,Moped,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,19:00,QUEENS,11372,40.74746,-73.88566,"(40.74746, -73.88566)",,,80-03 ROOSEVELT AVENUE,2,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4418986,Station Wagon/Sport Utility Vehicle,E-Bike,Station Wagon/Sport Utility Vehicle,, +05/27/2021,11:30,BROOKLYN,11238,40.67622,-73.961945,"(40.67622, -73.961945)",,,425 PROSPECT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421060,Carry All,Motorcycle,,, +05/31/2021,1:10,,,40.66479,-73.82047,"(40.66479, -73.82047)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Driver Inexperience,Following Too Closely,,,4421981,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +05/31/2021,19:30,,,40.705627,-73.91552,"(40.705627, -73.91552)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422412,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/31/2021,20:38,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4422652,Sedan,Sedan,Sedan,, +05/25/2021,13:20,,,40.815826,-73.947044,"(40.815826, -73.947044)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4422835,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,14:20,,,40.69811,-73.91713,"(40.69811, -73.91713)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422986,E-Bike,,,, +05/31/2021,2:00,,,40.61739,-74.150475,"(40.61739, -74.150475)",,,570 WATCHOGUE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4422026,Sedan,,,, +05/31/2021,17:10,BRONX,10455,40.810925,-73.904396,"(40.810925, -73.904396)",,,516 TIMPSON PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422471,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,0:00,BROOKLYN,11216,40.67238,-73.94749,"(40.67238, -73.94749)",STERLING PLACE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422917,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/03/2021,18:30,BROOKLYN,11210,40.622726,-73.93934,"(40.622726, -73.93934)",AVENUE L,EAST 37 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4422970,Sedan,Sedan,Sedan,, +05/31/2021,16:41,MANHATTAN,10040,40.863235,-73.92693,"(40.863235, -73.92693)",THAYER STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422806,Sedan,,,, +05/31/2021,1:33,BROOKLYN,11212,40.66425,-73.922104,"(40.66425, -73.922104)",RALPH AVENUE,EAST 98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422081,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/31/2021,23:40,STATEN ISLAND,10305,40.583733,-74.08655,"(40.583733, -74.08655)",SEAVIEW AVENUE,NUGENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422532,Ambulance,Ambulance,,, +05/31/2021,19:40,,,40.644753,-73.92493,"(40.644753, -73.92493)",KINGS HIGHWAY,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422558,Sedan,Sedan,,, +05/31/2021,16:20,QUEENS,11428,40.71916,-73.739845,"(40.71916, -73.739845)",,,216-03 94 ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4422677,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,22:30,BRONX,10469,40.88333,-73.85617,"(40.88333, -73.85617)",,,3854 BRONXWOOD AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4422768,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/31/2021,11:49,,,40.713596,-73.85964,"(40.713596, -73.85964)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422318,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,11:37,BROOKLYN,11207,40.674118,-73.89839,"(40.674118, -73.89839)",LIBERTY AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4422226,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,23:00,,,40.717392,-73.97515,"(40.717392, -73.97515)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423094,Taxi,,,, +05/31/2021,14:50,,,40.79913,-73.96667,"(40.79913, -73.96667)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422313,Sedan,E-Scooter,,, +05/31/2021,5:55,,,,,,ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4422229,Sedan,Motorcycle,,, +05/18/2021,9:30,MANHATTAN,10022,40.75688,-73.9655,"(40.75688, -73.9655)",,,351 EAST 54 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422934,Sedan,Box Truck,,, +05/31/2021,16:23,QUEENS,11355,40.75425,-73.81354,"(40.75425, -73.81354)",PARSONS BOULEVARD,HOLLY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422350,Sedan,,,, +05/31/2021,8:10,,,40.77887,-73.943245,"(40.77887, -73.943245)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4422158,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/31/2021,22:20,,,40.66755,-73.773575,"(40.66755, -73.773575)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unsafe Lane Changing,Unspecified,Unspecified,,4422767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/31/2021,12:40,BROOKLYN,11208,40.675007,-73.88373,"(40.675007, -73.88373)",GLENMORE AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422457,Sedan,Sedan,,, +05/31/2021,14:08,,,40.601036,-73.99235,"(40.601036, -73.99235)",86 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422478,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,6:10,STATEN ISLAND,10304,40.615627,-74.08406,"(40.615627, -74.08406)",VANDERBILT AVENUE,METCALFE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4422793,Sedan,Sedan,Sedan,, +05/31/2021,14:37,,,,,,,,102 WEST DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422570,Bike,,,, +05/30/2021,2:50,,,40.727055,-73.83229,"(40.727055, -73.83229)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,5:45,,,40.671085,-73.736275,"(40.671085, -73.736275)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4422195,Sedan,,,, +05/31/2021,0:55,BROOKLYN,11234,40.62154,-73.92424,"(40.62154, -73.92424)",AVENUE M,EAST 53 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422334,Sedan,Sedan,,, +05/31/2021,20:41,MANHATTAN,10038,,,,,,375 PEARL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422420,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,18:35,,,40.698536,-73.91788,"(40.698536, -73.91788)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423040,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,14:21,,,40.67807,-73.94139,"(40.67807, -73.94139)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422555,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,15:07,,,40.585087,-74.15594,"(40.585087, -74.15594)",KELLY BOULEVARD,NOME AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422874,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,2:19,BRONX,10469,40.88302,-73.85325,"(40.88302, -73.85325)",PAULDING AVENUE,EAST 222 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423097,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/31/2021,16:40,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4422355,Sedan,Sedan,,, +05/31/2021,0:15,BROOKLYN,11235,40.587826,-73.93468,"(40.587826, -73.93468)",COYLE STREET,VOORHIES AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4422395,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,15:55,,,40.687557,-73.93896,"(40.687557, -73.93896)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4422939,Sedan,,,, +05/31/2021,4:20,,,40.68064,-73.89672,"(40.68064, -73.89672)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422266,Sedan,,,, +05/30/2021,18:00,STATEN ISLAND,10301,40.613476,-74.09793,"(40.613476, -74.09793)",HOWARD AVENUE,MARTHA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422833,Sedan,Sedan,,, +10/02/2021,17:42,,,40.753307,-73.90669,"(40.753307, -73.90669)",NORTHERN BOULEVARD,54 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463216,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,21:19,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4422725,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,6:28,BROOKLYN,11215,40.670383,-73.985306,"(40.670383, -73.985306)",5 AVENUE,7 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4422823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,23:51,,,40.768826,-73.86631,"(40.768826, -73.86631)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4422926,Sedan,,,, +05/31/2021,19:53,BROOKLYN,11219,40.62237,-74.0017,"(40.62237, -74.0017)",14 AVENUE,BAY RIDGE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422450,Sedan,Sedan,,, +05/31/2021,14:00,QUEENS,11369,40.769836,-73.87181,"(40.769836, -73.87181)",,,22-24 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4422897,Sedan,Sedan,Sedan,, +05/31/2021,19:15,BRONX,10451,40.820995,-73.91298,"(40.820995, -73.91298)",,,465 EAST 157 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422472,Sedan,,,, +05/31/2021,20:30,,,40.72787,-73.92913,"(40.72787, -73.92913)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422404,Sedan,Sedan,,, +05/31/2021,0:00,BROOKLYN,11226,40.65001,-73.9558,"(40.65001, -73.9558)",,,2211 BEDFORD AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4422548,Station Wagon/Sport Utility Vehicle,Bike,,, +05/29/2021,7:35,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422996,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,22:54,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,0,1,0,1,0,0,0,0,,,,,,4422373,,,,, +10/02/2021,15:06,BROOKLYN,11221,40.688488,-73.91636,"(40.688488, -73.91636)",,,1191 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464140,Sedan,,,, +04/14/2021,15:00,,,40.615005,-73.980225,"(40.615005, -73.980225)",63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423117,Sedan,Sedan,,, +05/31/2021,4:12,BRONX,10458,,,,EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,,,,4422489,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,10:00,,,40.692604,-73.92751,"(40.692604, -73.92751)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422413,Sedan,,,, +05/31/2021,16:10,BRONX,10458,40.855465,-73.88893,"(40.855465, -73.88893)",,,2378 HOFFMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422491,Sedan,Sedan,,, +05/31/2021,9:45,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422465,Sedan,Sedan,Sedan,Sedan, +05/31/2021,21:00,BROOKLYN,11238,40.676632,-73.95944,"(40.676632, -73.95944)",CLASSON AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422910,Sedan,,,, +05/31/2021,5:20,QUEENS,11414,40.6575,-73.839455,"(40.6575, -73.839455)",CROSS BAY BOULEVARD,160 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4421988,Box Truck,Sedan,,, +05/30/2021,17:23,MANHATTAN,10034,40.864403,-73.923775,"(40.864403, -73.923775)",ACADEMY STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422949,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,11:00,BROOKLYN,11229,40.598743,-73.95713,"(40.598743, -73.95713)",,,1410 AVENUE U,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422391,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,5:19,,,,,,MACOMBS DAM BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422815,Convertible,,,, +05/30/2021,16:35,BROOKLYN,11226,40.65045,-73.95755,"(40.65045, -73.95755)",,,2273 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423115,Sedan,,,, +05/30/2021,21:10,QUEENS,11434,40.667995,-73.786766,"(40.667995, -73.786766)",BAISLEY BOULEVARD,134 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422884,,,,, +05/31/2021,2:17,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",EAST 170 STREET,MORRIS AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422037,SELF INSUR,Bike,,, +05/31/2021,0:18,,,40.778603,-73.846115,"(40.778603, -73.846115)",23 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422370,Sedan,,,, +05/31/2021,5:46,BRONX,10451,40.819283,-73.924034,"(40.819283, -73.924034)",EAST 151 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4422466,Sedan,Sedan,,, +09/29/2021,7:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/31/2021,16:03,,,40.84492,-73.90552,"(40.84492, -73.90552)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4422408,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +05/31/2021,14:15,MANHATTAN,10034,40.865547,-73.92728,"(40.865547, -73.92728)",DYCKMAN STREET,BROADWAY,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422803,E-Bike,,,, +05/24/2021,17:15,BROOKLYN,11212,40.669228,-73.908714,"(40.669228, -73.908714)",,,134 OSBORN STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4422849,Sedan,,,, +05/31/2021,22:45,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422443,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,7:00,BROOKLYN,11205,40.69879,-73.95326,"(40.69879, -73.95326)",,,34 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422938,Sedan,,,, +05/31/2021,12:00,STATEN ISLAND,10308,40.56011,-74.16495,"(40.56011, -74.16495)",ARTHUR KILL ROAD,CORTELYOU AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4422253,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +05/31/2021,6:15,,,40.64159,-74.02123,"(40.64159, -74.02123)",61 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422314,Sedan,,,, +05/31/2021,2:19,MANHATTAN,10017,40.75587,-73.972824,"(40.75587, -73.972824)",EAST 49 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4422581,E-Bike,,,, +05/31/2021,23:01,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422386,Sedan,,,, +05/27/2021,17:35,,,40.567875,-74.16969,"(40.567875, -74.16969)",,,3088 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4422784,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +05/31/2021,18:00,,,40.73178,-74.00781,"(40.73178, -74.00781)",BARROW STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,8:30,BROOKLYN,11232,40.64581,-74.00242,"(40.64581, -74.00242)",7 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422196,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,16:48,BRONX,10458,40.861656,-73.89132,"(40.861656, -73.89132)",,,404 EAST FORDHAM ROAD,1,0,1,0,0,0,0,0,,,,,,4422513,,,,, +05/31/2021,10:15,QUEENS,11432,40.705185,-73.79557,"(40.705185, -73.79557)",,,164-02 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422630,Sedan,Sedan,,, +05/31/2021,6:00,,,40.685608,-73.79636,"(40.685608, -73.79636)",147 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422277,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,20:00,,,40.767567,-73.88486,"(40.767567, -73.88486)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422920,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,21:40,,,,,,SOUTH CONDUIT AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463699,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,15:03,,,40.68366,-73.90788,"(40.68366, -73.90788)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4422419,E-Scooter,Sedan,Sedan,, +05/29/2021,13:00,,,40.689274,-73.99913,"(40.689274, -73.99913)",HICKS STREET,CONGRESS STREET,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4422876,Sedan,Sedan,,, +05/31/2021,22:00,QUEENS,11372,40.756943,-73.87222,"(40.756943, -73.87222)",NORTHERN BOULEVARD,96 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4422925,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,15:59,MANHATTAN,10019,40.764683,-73.99179,"(40.764683, -73.99179)",WEST 50 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,20:24,,,40.69986,-73.92829,"(40.69986, -73.92829)",STARR STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464172,Bike,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,17:50,BROOKLYN,11233,40.670895,-73.91405,"(40.670895, -73.91405)",BOYLAND STREET,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422432,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,6:19,,,40.818893,-73.89229,"(40.818893, -73.89229)",BRUCKNER BOULEVARD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4423068,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/31/2021,20:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422858,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,3:00,MANHATTAN,10019,40.76403,-73.982475,"(40.76403, -73.982475)",WEST 54 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4422569,Station Wagon/Sport Utility Vehicle,Pallet,,, +05/31/2021,2:35,BROOKLYN,11233,40.672195,-73.91133,"(40.672195, -73.91133)",ROCKAWAY AVENUE,PROSPECT PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4422080,Sedan,,,, +05/22/2021,0:00,QUEENS,11432,40.70898,-73.80418,"(40.70898, -73.80418)",PARSONS BOULEVARD,87 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422772,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,17:10,QUEENS,11357,40.77812,-73.80917,"(40.77812, -73.80917)",WILLETS POINT BOULEVARD,154 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422351,Sedan,,,, +05/31/2021,19:15,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422651,Sedan,Sedan,,, +05/31/2021,13:22,BROOKLYN,11218,40.643486,-73.97252,"(40.643486, -73.97252)",,,707 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422527,Sedan,Refrigerated Van,,, +05/31/2021,17:45,,,40.594845,-73.761925,"(40.594845, -73.761925)",SEAGIRT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422456,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,12:44,BROOKLYN,11234,40.6229,-73.91762,"(40.6229, -73.91762)",,,2265 RALPH AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4422931,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,17:35,QUEENS,11691,40.596455,-73.78196,"(40.596455, -73.78196)",BEACH 51 STREET,ELIZABETH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4422477,Sedan,,,, +05/20/2021,9:35,,,40.820095,-73.81086,"(40.820095, -73.81086)",THROGS NECK EXPRESSWAY,PENNYFIELD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422869,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,12:40,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,18:25,,,40.667854,-73.905396,"(40.667854, -73.905396)",SUTTER AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,1:47,,,40.591393,-73.907875,"(40.591393, -73.907875)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4422828,Sedan,,,, +05/31/2021,9:31,BRONX,10469,40.88118,-73.85273,"(40.88118, -73.85273)",,,1056 EAST 220 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4422428,Sedan,Van,,, +05/31/2021,19:30,QUEENS,11434,40.660347,-73.767975,"(40.660347, -73.767975)",BREWER BOULEVARD,147 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422667,Sedan,Sedan,,, +05/31/2021,0:01,,,40.824924,-73.86985,"(40.824924, -73.86985)",BRUCKNER BOULEVARD,SOUND VIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422149,Taxi,Sedan,,, +05/31/2021,16:03,,,40.716133,-73.8185,"(40.716133, -73.8185)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4422483,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,14:40,QUEENS,11434,40.681847,-73.792496,"(40.681847, -73.792496)",SUTPHIN BOULEVARD,116 ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4422317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,21:00,BRONX,10473,40.820553,-73.85283,"(40.820553, -73.85283)",,,2063 SEWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422493,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,23:36,BROOKLYN,11236,40.636536,-73.89124,"(40.636536, -73.89124)",,,1518 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,15:36,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422482,Sedan,Sedan,,, +05/31/2021,22:40,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",37 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,19:06,QUEENS,11416,40.68594,-73.84686,"(40.68594, -73.84686)",WOODHAVEN BOULEVARD,97 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422449,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,18:37,BROOKLYN,11214,40.601868,-73.98911,"(40.601868, -73.98911)",,,2324 83 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463278,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,0:30,QUEENS,11419,40.686222,-73.8299,"(40.686222, -73.8299)",,,103-10 113 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4421991,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,14:40,BROOKLYN,11210,40.629616,-73.94248,"(40.629616, -73.94248)",EAST 35 STREET,AVENUE I,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422950,Sedan,Sedan,,, +05/27/2021,1:18,,,40.83142,-73.92644,"(40.83142, -73.92644)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4422814,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,23:10,QUEENS,11432,40.70903,-73.78858,"(40.70903, -73.78858)",,,90-22 172 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422633,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,11:42,,,40.711685,-73.74672,"(40.711685, -73.74672)",104 AVENUE,211 PLACE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4422272,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,12:15,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422278,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,17:08,,,40.68005,-73.94327,"(40.68005, -73.94327)",FULTON STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4422550,Sedan,Sedan,,, +05/31/2021,16:07,,,40.681137,-73.95567,"(40.681137, -73.95567)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422946,Ambulance,Sedan,,, +05/31/2021,0:00,BROOKLYN,11213,40.665535,-73.93699,"(40.665535, -73.93699)",TROY AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422328,Sedan,Sedan,,, +05/31/2021,23:42,QUEENS,11412,40.698673,-73.75109,"(40.698673, -73.75109)",203 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4422592,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/26/2021,13:00,,,40.586124,-73.990715,"(40.586124, -73.990715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4422995,Box Truck,,,, +05/31/2021,19:17,,,,,,CARSON STREET,138 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422377,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,8:00,,,40.745907,-73.86964,"(40.745907, -73.86964)",42 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422750,Sedan,,,, +05/18/2021,16:15,QUEENS,11420,40.666855,-73.80425,"(40.666855, -73.80425)",NORTH CONDUIT AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4418023,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,1:07,STATEN ISLAND,10308,40.55659,-74.15881,"(40.55659, -74.15881)",,,283 ABINGDON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422180,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,13:52,BROOKLYN,11212,40.661606,-73.92066,"(40.661606, -73.92066)",,,241 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4422551,Sedan,,,, +05/31/2021,22:45,,,40.723347,-73.939316,"(40.723347, -73.939316)",MEEKER AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422691,Sedan,Sedan,,, +05/31/2021,19:21,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422781,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,13:15,,,40.658417,-73.76768,"(40.658417, -73.76768)",149 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422197,Sedan,Tractor Truck Gasoline,,, +05/31/2021,16:40,QUEENS,11693,40.586746,-73.81712,"(40.586746, -73.81712)",ROCKAWAY FREEWAY,BEACH 94 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422321,Station Wagon/Sport Utility Vehicle,Bike,,, +05/27/2021,18:30,BROOKLYN,11222,40.7232,-73.9525,"(40.7232, -73.9525)",NASSAU AVENUE,GUERNSEY STREET,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423074,Station Wagon/Sport Utility Vehicle,Bike,,, +05/23/2021,16:30,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423108,Sedan,Sedan,,, +05/31/2021,13:45,,,40.738476,-73.7991,"(40.738476, -73.7991)",HORACE HARDING EXPRESSWAY,170 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4422368,Sedan,Sedan,,, +05/31/2021,19:20,BROOKLYN,11208,40.68845,-73.87593,"(40.68845, -73.87593)",,,784 JAMAICA AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4422467,Sedan,Sedan,,, +05/30/2021,22:00,,,40.71186,-73.73554,"(40.71186, -73.73554)",219 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423001,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,21:30,BROOKLYN,11208,40.682507,-73.86709,"(40.682507, -73.86709)",,,328 GRANT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422810,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,21:30,,,40.587814,-74.155075,"(40.587814, -74.155075)",DENKER PLACE,KLONDIKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422937,Sedan,,,, +05/31/2021,11:05,,,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4422234,E-Scooter,,,, +05/31/2021,23:09,BROOKLYN,11236,40.648335,-73.905685,"(40.648335, -73.905685)",,,9702 FOSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422388,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/31/2021,3:30,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",BRUCKNER BOULEVARD,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422134,Sedan,,,, +05/31/2021,13:30,,,40.752068,-73.83067,"(40.752068, -73.83067)",BLOSSOM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422352,Sedan,,,, +05/31/2021,2:42,BROOKLYN,11216,40.681805,-73.94987,"(40.681805, -73.94987)",NOSTRAND AVENUE,HALSEY STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4422538,Sedan,Sedan,,, +05/31/2021,17:00,QUEENS,11428,40.728733,-73.73717,"(40.728733, -73.73717)",BRADDOCK AVENUE,WINCHESTER BOULEVARD,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4422347,Sedan,,,, +05/19/2021,9:00,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4422891,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +05/31/2021,15:00,QUEENS,11373,40.736664,-73.887566,"(40.736664, -73.887566)",,,51-000 JACOBUS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422753,Taxi,,,, +05/31/2021,19:28,,,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422410,Sedan,Sedan,,, +05/31/2021,8:50,QUEENS,11385,40.711994,-73.86073,"(40.711994, -73.86073)",AUBREY AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422577,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,12:07,MANHATTAN,10016,40.75022,-73.979065,"(40.75022, -73.979065)",EAST 39 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422771,Station Wagon/Sport Utility Vehicle,Taxi,,, +05/31/2021,1:40,STATEN ISLAND,10306,40.561447,-74.1265,"(40.561447, -74.1265)",CHAMPLAIN AVENUE,PLATT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,18:40,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",BOSTON ROAD,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422460,Sedan,Sedan,,, +05/31/2021,9:36,MANHATTAN,10039,40.826176,-73.93576,"(40.826176, -73.93576)",,,2641 7 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422842,Taxi,Taxi,,, +05/15/2021,17:30,MANHATTAN,10003,40.732254,-73.99636,"(40.732254, -73.99636)",5 AVENUE,WEST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422982,Sedan,,,, +05/31/2021,0:13,BROOKLYN,11236,40.64885,-73.91559,"(40.64885, -73.91559)",,,764 REMSEN AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4422398,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +05/28/2021,0:28,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422877,Taxi,Sedan,,, +05/31/2021,20:45,BROOKLYN,11229,40.605286,-73.94085,"(40.605286, -73.94085)",BROWN STREET,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422393,Taxi,,,, +05/31/2021,6:40,QUEENS,11369,40.759544,-73.883,"(40.759544, -73.883)",,,85-08 31 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422060,Sedan,Pick-up Truck,Sedan,, +05/29/2021,0:14,,,40.678165,-73.962234,"(40.678165, -73.962234)",BERGEN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422913,Sedan,,,, +05/31/2021,11:05,BROOKLYN,11220,40.64685,-74.019264,"(40.64685, -74.019264)",54 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422315,Sedan,,,, +05/31/2021,20:30,BROOKLYN,11212,40.666702,-73.92363,"(40.666702, -73.92363)",,,1166 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422433,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,12:00,QUEENS,11370,40.756176,-73.892136,"(40.756176, -73.892136)",,,32-38 75 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422977,Sedan,,,, +04/28/2021,7:56,QUEENS,11378,40.721428,-73.89069,"(40.721428, -73.89069)",,,60-30 69 PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422818,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,1:40,BROOKLYN,11221,40.687912,-73.92943,"(40.687912, -73.92943)",,,675 MONROE STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4463574,Sedan,,,, +05/31/2021,16:55,BRONX,10460,40.83541,-73.88574,"(40.83541, -73.88574)",,,1690 BRYANT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422445,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,16:12,BROOKLYN,11204,40.627274,-73.98081,"(40.627274, -73.98081)",,,1830 50 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422526,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,2:25,STATEN ISLAND,10310,40.6441,-74.111984,"(40.6441, -74.111984)",RICHMOND TERRACE,PELTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4422829,Sedan,Sedan,,, +05/31/2021,21:45,,,40.70028,-73.941154,"(40.70028, -73.941154)",BROADWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422418,Bike,Motorcycle,,, +05/31/2021,21:30,,,40.71759,-73.94995,"(40.71759, -73.94995)",FROST STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422380,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,8:40,QUEENS,11369,40.762657,-73.87326,"(40.762657, -73.87326)",ASTORIA BOULEVARD,96 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422900,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,18:30,QUEENS,11368,40.7561,-73.86251,"(40.7561, -73.86251)",106 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4422924,Bike,Sedan,,, +05/31/2021,18:00,BROOKLYN,11236,40.64563,-73.88891,"(40.64563, -73.88891)",EAST 108 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422562,Sedan,,,, +05/24/2021,21:57,,,40.607185,-74.16239,"(40.607185, -74.16239)",RICHMOND AVENUE,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422797,Sedan,Ambulance,,, +05/31/2021,20:04,BRONX,10458,40.861942,-73.89373,"(40.861942, -73.89373)",EAST FORDHAM ROAD,ELM PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422455,Motorbike,,,, +05/31/2021,17:19,BROOKLYN,11230,40.61837,-73.95677,"(40.61837, -73.95677)",AVENUE M,BAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422484,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,12:40,BROOKLYN,11232,40.650578,-74.00464,"(40.650578, -74.00464)",,,4012 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422991,Sedan,,,, +05/31/2021,17:35,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422854,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,16:56,BRONX,10458,40.858253,-73.88452,"(40.858253, -73.88452)",,,617 EAST FORDHAM ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422499,Station Wagon/Sport Utility Vehicle,,,, +05/24/2021,10:30,QUEENS,11413,40.668385,-73.74736,"(40.668385, -73.74736)",141 AVENUE,228 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422872,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,1:33,BROOKLYN,11209,40.6299,-74.025,"(40.6299, -74.025)",,,401 76 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422008,Sedan,,,, +05/31/2021,15:11,BROOKLYN,11237,40.704525,-73.928406,"(40.704525, -73.928406)",GEORGE STREET,KNICKERBOCKER AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4422960,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/01/2021,9:24,QUEENS,11368,40.75233,-73.86264,"(40.75233, -73.86264)",,,104-17 37 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422901,Sedan,,,, +05/31/2021,17:21,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422397,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,15:00,STATEN ISLAND,10306,40.56116,-74.13188,"(40.56116, -74.13188)",NORTH RAILROAD AVENUE,CHESTERTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422636,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,4:58,QUEENS,11430,40.665245,-73.80204,"(40.665245, -73.80204)",VANWYCK EXPRESSWAY,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422281,Sedan,,,, +05/31/2021,23:00,,,40.674088,-73.79837,"(40.674088, -73.79837)",ROCKAWAY BOULEVARD,142 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422595,Sedan,,,, +05/12/2021,12:51,QUEENS,11372,40.74917,-73.88977,"(40.74917, -73.88977)",,,76-10 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422930,,,,, +03/29/2021,11:30,QUEENS,11385,40.699966,-73.90749,"(40.699966, -73.90749)",,,55-34 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422819,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,18:08,BROOKLYN,11208,40.673275,-73.86853,"(40.673275, -73.86853)",SUTTER AVENUE,HEMLOCK STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4422459,Sedan,Moped,,, +05/31/2021,12:00,BRONX,10454,40.808006,-73.91434,"(40.808006, -73.91434)",EAST 141 STREET,BEEKMAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4422476,E-Bike,Sedan,,, +05/26/2021,14:17,,,40.611404,-74.176285,"(40.611404, -74.176285)",,,1120 SOUTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422787,Station Wagon/Sport Utility Vehicle,unknown,,, +05/31/2021,8:35,,,40.768482,-73.98208,"(40.768482, -73.98208)",COLUMBUS CIRCLE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422541,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,16:11,BROOKLYN,11236,40.631344,-73.89352,"(40.631344, -73.89352)",SEAVIEW AVENUE,EAST 92 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4422339,Station Wagon/Sport Utility Vehicle,Bike,,, +05/31/2021,23:11,QUEENS,11429,40.712837,-73.7465,"(40.712837, -73.7465)",212 STREET,102 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422376,Sedan,Sedan,,, +05/31/2021,8:45,,,40.834423,-73.879265,"(40.834423, -73.879265)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422189,Sedan,,,, +05/27/2021,15:00,,,40.81821,-73.96144,"(40.81821, -73.96144)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4423004,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,17:10,,,40.639915,-73.92717,"(40.639915, -73.92717)",EAST 52 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4422553,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/31/2021,18:16,QUEENS,11434,40.668762,-73.76417,"(40.668762, -73.76417)",180 STREET,143 ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4422427,Sedan,Sedan,Sedan,, +05/18/2021,11:30,,,40.689228,-73.957,"(40.689228, -73.957)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422945,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,2:05,,,40.780502,-73.825905,"(40.780502, -73.825905)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Following Too Closely,,,,4422348,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,23:00,BROOKLYN,11237,40.707153,-73.93149,"(40.707153, -73.93149)",KNICKERBOCKER AVENUE,INGRAHAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422381,Sedan,,,, +05/31/2021,0:00,BRONX,10457,40.85037,-73.89521,"(40.85037, -73.89521)",,,2069 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422798,Sedan,,,, +05/31/2021,11:30,,,40.835396,-73.92031,"(40.835396, -73.92031)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422701,Sedan,,,, +05/19/2021,14:50,MANHATTAN,10009,40.724823,-73.980644,"(40.724823, -73.980644)",,,190 EAST 7 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422764,Sedan,,,, +05/31/2021,9:45,,,40.616035,-74.16385,"(40.616035, -74.16385)",,,185 LAMBERTS LANE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4422177,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,9:16,BROOKLYN,11226,40.63669,-73.96452,"(40.63669, -73.96452)",DITMAS AVENUE,RUGBY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422481,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,11:00,BRONX,10472,40.828827,-73.86279,"(40.828827, -73.86279)",,,1122 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422271,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,21:30,,,40.644432,-73.9296,"(40.644432, -73.9296)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422561,Sedan,Enclosed Body - Nonremovable Enclosure,,, +05/31/2021,0:05,QUEENS,11420,40.67951,-73.81784,"(40.67951, -73.81784)",LINDEN BOULEVARD,122 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4422129,Sedan,Sedan,,, +05/31/2021,20:45,BROOKLYN,11236,40.645443,-73.89493,"(40.645443, -73.89493)",,,974 EAST 103 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4422389,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/31/2021,16:00,QUEENS,11101,40.74198,-73.94643,"(40.74198, -73.94643)",SKILLMAN AVENUE,49 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422679,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,14:06,,,40.72565,-73.93205,"(40.72565, -73.93205)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4422533,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,14:20,QUEENS,11375,40.710175,-73.84907,"(40.710175, -73.84907)",71 DRIVE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,15:37,BRONX,10466,40.90316,-73.84599,"(40.90316, -73.84599)",CRANFORD AVENUE,WILDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422922,Sedan,,,, +05/31/2021,18:15,,,40.681995,-74.002625,"(40.681995, -74.002625)",HICKS STREET,SUMMIT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422878,Sedan,,,, +05/31/2021,22:40,,,40.899246,-73.84609,"(40.899246, -73.84609)",BAYCHESTER AVENUE,,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4422434,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/31/2021,14:25,MANHATTAN,10030,40.819977,-73.93724,"(40.819977, -73.93724)",,,104 WEST 144 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422411,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,10:00,BROOKLYN,11207,40.668903,-73.89834,"(40.668903, -73.89834)",,,560 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422808,Sedan,,,, +05/11/2021,15:45,MANHATTAN,10039,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422839,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,21:53,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422446,Sedan,Sedan,,, +05/31/2021,15:42,QUEENS,11413,40.674683,-73.7634,"(40.674683, -73.7634)",136 AVENUE,WESTGATE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422316,Sedan,,,, +05/31/2021,13:00,,,40.741936,-73.95381,"(40.741936, -73.95381)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422231,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,15:43,MANHATTAN,10017,40.749527,-73.97361,"(40.749527, -73.97361)",,,240 EAST 41 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422936,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,18:05,MANHATTAN,10022,40.755566,-73.96494,"(40.755566, -73.96494)",,,959 1 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422576,Bike,Taxi,,, +05/30/2021,14:30,BRONX,10466,40.89278,-73.855484,"(40.89278, -73.855484)",,,754 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422769,Sedan,Pick-up Truck,,, +05/31/2021,14:21,QUEENS,11355,40.757114,-73.82999,"(40.757114, -73.82999)",,,133-58 41 ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4422353,Sedan,,,, +05/31/2021,23:50,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422462,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,8:09,,,40.701706,-73.99144,"(40.701706, -73.99144)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422656,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,1:32,QUEENS,11385,40.69376,-73.89905,"(40.69376, -73.89905)",,,57-35 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4422523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/31/2021,5:40,MANHATTAN,10025,40.80451,-73.96352,"(40.80451, -73.96352)",,,509 WEST 112 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4422225,Box Truck,Sedan,,, +05/31/2021,1:00,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4422079,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,19:37,BROOKLYN,11235,40.590084,-73.95476,"(40.590084, -73.95476)",EAST 15 STREET,AVENUE Y,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422392,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/28/2021,10:28,MANHATTAN,10028,40.777897,-73.95389,"(40.777897, -73.95389)",,,217 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423104,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,21:40,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422468,Sedan,Sedan,,, +05/31/2021,9:11,QUEENS,11367,40.72924,-73.8152,"(40.72924, -73.8152)",,,71-18 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4422367,Sedan,,,, +05/27/2021,11:50,STATEN ISLAND,10306,40.577366,-74.11145,"(40.577366, -74.11145)",SOUTH RAILROAD AVENUE,BANCROFT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422890,Sedan,,,, +05/29/2021,23:35,BROOKLYN,11233,40.675663,-73.9277,"(40.675663, -73.9277)",ROCHESTER AVENUE,DEAN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422914,Sedan,,,, +05/23/2021,14:00,QUEENS,11378,40.716347,-73.90119,"(40.716347, -73.90119)",,,62-29 60 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4422817,Sedan,,,, +05/30/2021,11:16,,,40.75993,-73.89846,"(40.75993, -73.89846)",30 AVENUE,BOODY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422979,Sedan,Sedan,,, +05/31/2021,20:46,BRONX,10468,40.86166,-73.910965,"(40.86166, -73.910965)",,,264 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4422399,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/27/2021,17:15,STATEN ISLAND,10310,40.642773,-74.11403,"(40.642773, -74.11403)",,,1320 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4422830,Sedan,Sedan,Sedan,, +05/20/2021,17:45,,,40.8284,-73.9453,"(40.8284, -73.9453)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423081,Sedan,Bike,,, +05/31/2021,19:54,BROOKLYN,11236,40.64667,-73.92015,"(40.64667, -73.92015)",,,1203 RALPH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4422554,Sedan,,,, +05/31/2021,13:43,BROOKLYN,11221,40.700478,-73.92534,"(40.700478, -73.92534)",WILSON AVENUE,SUYDAM STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4422297,Bike,Sedan,,, +05/31/2021,18:23,BROOKLYN,11220,40.64665,-74.014404,"(40.64665, -74.014404)",,,324 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422642,Sedan,,,, +05/30/2021,7:26,BROOKLYN,11205,40.693733,-73.95597,"(40.693733, -73.95597)",,,881 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4422940,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,0:38,BROOKLYN,11236,40.648567,-73.91781,"(40.648567, -73.91781)",AVENUE B,EAST 88 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422547,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +03/30/2022,23:30,,,,,,ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515030,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,7:21,BRONX,10459,40.82518,-73.89757,"(40.82518, -73.89757)",,,1040 HALL PLACE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4422269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/31/2021,14:30,,,40.761047,-73.83518,"(40.761047, -73.83518)",COLLEGE POINT BOULEVARD,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4422349,Sedan,,,, +05/29/2021,22:50,QUEENS,11367,40.722233,-73.81079,"(40.722233, -73.81079)",,,153-30 78 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422777,Sedan,,,, +05/31/2021,0:00,,,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422766,Sedan,Sedan,,, +05/31/2021,12:50,,,40.648464,-74.00683,"(40.648464, -74.00683)",5 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422193,Bike,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:35,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422981,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,15:20,QUEENS,11385,40.7005,-73.90116,"(40.7005, -73.90116)",,,58-01 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422820,Sedan,Sedan,,, +05/31/2021,22:30,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4422453,Sedan,Sedan,,, +05/12/2021,14:00,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422899,Sedan,Sedan,,, +05/29/2021,17:30,,,40.677025,-73.95268,"(40.677025, -73.95268)",DEAN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422909,SCOOTER,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,1:05,,,,,,BELT PARKWAY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4422010,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +05/31/2021,13:20,,,,,,LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4422480,Sedan,Station Wagon/Sport Utility Vehicle,TOW TRUCK,, +05/31/2021,13:50,,,40.86261,-73.82679,"(40.86261, -73.82679)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4422512,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,19:39,MANHATTAN,10034,40.866333,-73.92501,"(40.866333, -73.92501)",BROADWAY,ACADEMY STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4422967,Van,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,15:46,,,40.863705,-73.87207,"(40.863705, -73.87207)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4422396,Sedan,,,, +10/02/2021,10:40,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",LOGAN STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463738,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,13:14,,,,,,west 155 street,Adam Clayton Powell Jr Blvd,,5,0,0,0,0,0,5,0,Aggressive Driving/Road Rage,Unspecified,,,,4422426,Sedan,Sedan,,, +05/31/2021,15:45,BROOKLYN,11232,40.6586,-74.00339,"(40.6586, -74.00339)",,,850 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423010,Sedan,,,, +05/31/2021,20:19,BROOKLYN,11210,40.636272,-73.9513,"(40.636272, -73.9513)",,,1415 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4422485,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,16:45,QUEENS,11436,40.67708,-73.79318,"(40.67708, -73.79318)",120 AVENUE,146 STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4422336,Sedan,Sedan,,, +05/31/2021,3:45,BROOKLYN,11220,40.633583,-74.00797,"(40.633583, -74.00797)",61 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422170,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,10:25,BRONX,10461,40.849907,-73.85225,"(40.849907, -73.85225)",MORRIS PARK AVENUE,TOMLINSON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4422615,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,9:00,BRONX,10457,40.844204,-73.89742,"(40.844204, -73.89742)",EAST 175 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422800,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,21:00,,,40.68821,-73.96583,"(40.68821, -73.96583)",LAFAYETTE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422383,Bike,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,19:30,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,23:00,BRONX,10455,40.811787,-73.90465,"(40.811787, -73.90465)",SOUTHERN BOULEVARD,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422709,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,18:30,,,40.681503,-73.904106,"(40.681503, -73.904106)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422988,Sedan,Sedan,,, +05/31/2021,20:45,BROOKLYN,11212,40.669895,-73.909386,"(40.669895, -73.909386)",,,1727 PITKIN AVENUE,1,0,1,0,0,0,0,0,,,,,,4422415,E-Bike,,,, +05/31/2021,17:00,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422458,Station Wagon/Sport Utility Vehicle,,,, +05/26/2021,15:23,QUEENS,11372,40.75173,-73.88183,"(40.75173, -73.88183)",,,35-31 85 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4422929,E-Bike,,,, +05/19/2021,20:49,,,40.702454,-73.859406,"(40.702454, -73.859406)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422873,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,14:20,,,40.60097,-73.98762,"(40.60097, -73.98762)",83 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422475,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/31/2021,18:00,BROOKLYN,11201,40.697575,-73.984055,"(40.697575, -73.984055)",DUFFIELD STREET,CONCORD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422401,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,11:07,STATEN ISLAND,10304,40.62735,-74.078705,"(40.62735, -74.078705)",WRIGHT STREET,BOYD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4422832,Sedan,Sedan,Sedan,, +05/31/2021,23:00,STATEN ISLAND,10310,40.6271,-74.12514,"(40.6271, -74.12514)",MANOR ROAD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422852,Sedan,,,, +05/28/2021,16:35,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,WATTS STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422879,Sedan,,,, +05/31/2021,14:45,BRONX,10466,40.886448,-73.84577,"(40.886448, -73.84577)",,,1135 EAST 229 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422439,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,15:00,QUEENS,11413,40.67948,-73.75741,"(40.67948, -73.75741)",MERRICK BOULEVARD,MONTAUK STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4463657,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/02/2021,21:19,,,40.831944,-73.91987,"(40.831944, -73.91987)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463355,Taxi,,,, +10/02/2021,22:30,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Reaction to Uninvolved Vehicle,,,4463893,Sedan,Sedan,Sedan,, +09/18/2021,0:00,,,40.897144,-73.88029,"(40.897144, -73.88029)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4464016,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/02/2021,19:40,MANHATTAN,10011,40.741642,-73.997444,"(40.741642, -73.997444)",7 AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463270,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,8:20,QUEENS,11419,40.68951,-73.827545,"(40.68951, -73.827545)",,,117-04 101 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4463930,Sedan,Sedan,,, +03/25/2022,8:00,,,40.74777,-74.000404,"(40.74777, -74.000404)",9 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515710,Bus,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,3:30,,,40.76161,-73.97076,"(40.76161, -73.97076)",PARK AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463082,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,14:40,BROOKLYN,11236,40.642292,-73.90449,"(40.642292, -73.90449)",EAST 93 STREET,CONKLIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463966,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,21:05,MANHATTAN,10001,40.7522,-73.99348,"(40.7522, -73.99348)",,,243 WEST 34 STREET,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464100,Sedan,E-Scooter,,, +10/02/2021,16:41,QUEENS,11106,40.759293,-73.92646,"(40.759293, -73.92646)",34 AVENUE,32 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4463194,Sedan,Motorcycle,,, +10/02/2021,16:09,MANHATTAN,10013,40.718094,-74.001335,"(40.718094, -74.001335)",,,88 WALKER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463306,Tow Truck,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:18,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464070,Bike,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,11:05,BROOKLYN,11234,40.641186,-73.91956,"(40.641186, -73.91956)",RALPH AVENUE,PRESTON COURT,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4464009,,,,, +10/02/2021,20:45,,,40.81404,-73.9367,"(40.81404, -73.9367)",WEST 137 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4463845,Sedan,,,, +10/02/2021,9:00,BRONX,10452,40.8283,-73.92447,"(40.8283, -73.92447)",GERARD AVENUE,EAST 162 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463329,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,19:20,,,40.6041,-74.06908,"(40.6041, -74.06908)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4464108,Station Wagon/Sport Utility Vehicle,4 dr sedan,Station Wagon/Sport Utility Vehicle,, +09/27/2021,12:38,BROOKLYN,11207,40.6874614,-73.9064878,"(40.6874614, -73.9064878)",CENTRAL AVENUE,MOFFAT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464159,Sedan,Sedan,,, +10/02/2021,11:40,MANHATTAN,10001,40.74669,-73.992096,"(40.74669, -73.992096)",,,156 WEST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463482,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,18:05,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463857,Sedan,Motorcycle,,, +10/02/2021,23:58,QUEENS,11427,40.729527,-73.7444,"(40.729527, -73.7444)",,,88-14 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463285,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/02/2021,17:05,,,40.673992,-73.73508,"(40.673992, -73.73508)",LAURELTON PARKWAY,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463244,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/27/2021,4:45,BRONX,10458,40.85586,-73.89462,"(40.85586, -73.89462)",EAST 183 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4463956,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,3:00,,,40.606686,-73.75015,"(40.606686, -73.75015)",CENTRAL AVENUE,NAMEOKE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463977,Sedan,Sedan,Sedan,, +10/02/2021,13:06,,,40.701527,-73.98957,"(40.701527, -73.98957)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:15,QUEENS,11420,40.672314,-73.8036,"(40.672314, -73.8036)",SUTTER AVENUE,135 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463790,Sedan,Bike,,, +10/02/2021,20:03,BROOKLYN,11232,40.651424,-74.00742,"(40.651424, -74.00742)",,,4101 4 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463339,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,1:40,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4464127,Dump,Sedan,,, +10/02/2021,9:20,BROOKLYN,11226,40.642006,-73.9646,"(40.642006, -73.9646)",,,346 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4463416,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +10/02/2021,1:00,STATEN ISLAND,10304,40.60545,-74.092636,"(40.60545, -74.092636)",RICHMOND ROAD,EDGAR PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464020,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,3:09,,,40.62015,-74.02301,"(40.62015, -74.02301)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463907,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/01/2021,15:30,BRONX,10463,40.884842,-73.91348,"(40.884842, -73.91348)",,,3220 FAIRFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464073,Sedan,,,, +03/27/2022,13:40,QUEENS,11101,40.753487,-73.93795,"(40.753487, -73.93795)",40 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515924,Sedan,Sedan,,, +09/30/2021,7:35,QUEENS,11435,40.68772,-73.79988,"(40.68772, -73.79988)",110 AVENUE,INWOOD STREET,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4464055,Sedan,Sedan,,, +09/28/2021,10:45,BROOKLYN,11249,40.72339,-73.95628,"(40.72339, -73.95628)",WYTHE AVENUE,NORTH 14 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463922,Bus,Sedan,,, +10/02/2021,2:25,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463065,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/25/2021,7:30,BRONX,10457,40.851723,-73.89165,"(40.851723, -73.89165)",,,2101 QUARRY ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464002,Sedan,,,, +09/08/2021,8:30,QUEENS,11419,40.691864,-73.83579,"(40.691864, -73.83579)",ATLANTIC AVENUE,110 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463957,Sedan,Bike,,, +10/02/2021,19:05,,,40.73722,-73.9814,"(40.73722, -73.9814)",2 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4463269,Ambulance,Sedan,,, +10/02/2021,6:55,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4463620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,6:30,,,40.604218,-74.14058,"(40.604218, -74.14058)",,,753 WOOLLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463188,Sedan,Sedan,,, +10/02/2021,18:50,BROOKLYN,11203,40.65416,-73.92483,"(40.65416, -73.92483)",LINDEN BOULEVARD,EAST 56 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4463587,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,13:22,QUEENS,11691,40.605064,-73.74954,"(40.605064, -73.74954)",,,11-70 NAMEOKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463981,Sedan,,,, +10/02/2021,1:58,,,,,,LAFAYETTE AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4463852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,11:33,MANHATTAN,10029,40.789124,-73.94294,"(40.789124, -73.94294)",,,307 EAST 104 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463352,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,7:09,MANHATTAN,10022,40.75914,-73.968346,"(40.75914, -73.968346)",,,919 3 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4464153,Station Wagon/Sport Utility Vehicle,Bus,,, +10/02/2021,8:20,,,40.7317,-73.87188,"(40.7317, -73.87188)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4463387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,14:42,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4464188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle, +10/02/2021,7:45,QUEENS,11420,40.678402,-73.80769,"(40.678402, -73.80769)",LINCOLN STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4463772,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/02/2021,16:00,BRONX,10466,40.88713,-73.863594,"(40.88713, -73.863594)",,,622 EAST 223 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463510,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,17:45,,,40.72225,-74.00592,"(40.72225, -74.00592)",AVENUE OF THE AMERICAS,CANAL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463215,Sedan,Pick-up Truck,,, +04/01/2022,20:55,MANHATTAN,10013,0,0,"(0.0, 0.0)",,,16 ERICSSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515597,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,7:29,BRONX,10462,40.83859,-73.85188,"(40.83859, -73.85188)",,,2310 STEARNS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464046,Sedan,,,, +10/02/2021,0:33,,,40.868015,-73.89997,"(40.868015, -73.89997)",WEST KINGSBRIDGE ROAD,RESERVOIR AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Traffic Control Disregarded,,,,4463130,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,7:10,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463524,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,14:25,QUEENS,11367,40.72924,-73.8152,"(40.72924, -73.8152)",,,71-12 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463298,Sedan,Sedan,,, +10/02/2021,20:17,,,40.86848,-73.918564,"(40.86848, -73.918564)",WEST 212 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464122,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,21:09,,,40.828278,-73.907036,"(40.828278, -73.907036)",EAST 166 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4463995,E-Bike,,,, +08/07/2021,16:30,BROOKLYN,11238,40.678757,-73.95869,"(40.678757, -73.95869)",,,620 CLASSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464080,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,14:00,QUEENS,11434,40.657784,-73.77032,"(40.657784, -73.77032)",,,175-15 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463217,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,11:50,,,40.826088,-73.86121,"(40.826088, -73.86121)",BRUCKNER BOULEVARD,UNDERHILL AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,Unspecified,4463247,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +10/02/2021,22:09,BROOKLYN,11207,40.66696,-73.89262,"(40.66696, -73.89262)",,,513 VERMONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:29,BROOKLYN,11229,40.5956,-73.94098,"(40.5956, -73.94098)",,,3612 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463681,Station Wagon/Sport Utility Vehicle,Bus,,, +10/02/2021,16:19,BROOKLYN,11212,40.66004,-73.91509,"(40.66004, -73.91509)",RIVERDALE AVENUE,SARATOGA AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4463702,Bike,,,, +10/02/2021,18:10,,,40.69889,-73.91753,"(40.69889, -73.91753)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,10:00,QUEENS,11385,40.708668,-73.89997,"(40.708668, -73.89997)",,,60-48 GATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463126,Sedan,,,, +10/02/2021,12:25,BROOKLYN,11226,40.649548,-73.958496,"(40.649548, -73.958496)",,,911 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4463409,Box Truck,,,, +10/02/2021,14:05,STATEN ISLAND,10304,40.607605,-74.08843,"(40.607605, -74.08843)",NARROWS ROAD SOUTH,ODER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464145,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,16:46,QUEENS,11417,40.674503,-73.83773,"(40.674503, -73.83773)",HAWTREE STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464203,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,13:02,BROOKLYN,11234,40.632847,-73.928375,"(40.632847, -73.928375)",UTICA AVENUE,AVENUE H,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4463161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,3:00,BROOKLYN,11221,40.694546,-73.92724,"(40.694546, -73.92724)",BUSHWICK AVENUE,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464141,Sedan,Sedan,,, +10/02/2021,15:15,BROOKLYN,11201,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463542,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,14:45,MANHATTAN,10014,40.73814,-74.0056,"(40.73814, -74.0056)",JANE STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515079,Sedan,,,, +10/02/2021,0:56,QUEENS,11378,40.725994,-73.89843,"(40.725994, -73.89843)",CLINTON AVENUE,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4463099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,19:41,MANHATTAN,10016,40.749603,-73.97951,"(40.749603, -73.97951)",EAST 38 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:34,QUEENS,11429,40.71307,-73.75362,"(40.71307, -73.75362)",99 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463669,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,16:30,,,40.745796,-73.982285,"(40.745796, -73.982285)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464091,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +10/02/2021,16:44,BRONX,10466,40.885204,-73.857544,"(40.885204, -73.857544)",,,820 EAST 223 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463495,Sedan,,,, +10/02/2021,15:05,BRONX,10451,40.816406,-73.92778,"(40.816406, -73.92778)",,,168 EAST 144 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4463208,Sedan,Sedan,,, +09/29/2021,17:00,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4463975,Sedan,Bus,,, +09/29/2021,16:32,QUEENS,11421,40.69308,-73.85372,"(40.69308, -73.85372)",,,91-06 JAMAICA AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463932,Sedan,E-Bike,,, +10/02/2021,12:30,MANHATTAN,10027,40.80652,-73.944595,"(40.80652, -73.944595)",,,43 WEST 124 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4463313,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,2:49,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464222,Sedan,Box Truck,,, +10/02/2021,16:30,BROOKLYN,11217,40.678528,-73.977394,"(40.678528, -73.977394)",,,38 STERLING PLACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4463279,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,19:00,BROOKLYN,11208,40.66045,-73.86719,"(40.66045, -73.86719)",FLATLANDS AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463813,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:30,QUEENS,11420,40.67725,-73.826096,"(40.67725, -73.826096)",,,112-20 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463892,Sedan,,,, +10/02/2021,22:53,BROOKLYN,11220,40.64479,-74.01433,"(40.64479, -74.01433)",4 AVENUE,53 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,,,,,4463334,Sedan,,,, +10/01/2021,20:48,MANHATTAN,10032,40.842915,-73.9366,"(40.842915, -73.9366)",WEST 172 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464242,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,20:30,MANHATTAN,10018,40.753475,-73.9906,"(40.753475, -73.9906)",,,247 WEST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464101,Sedan,Sedan,,, +10/02/2021,4:04,BRONX,10454,40.807808,-73.92384,"(40.807808, -73.92384)",EAST 136 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463197,Box Truck,Sedan,,, +10/01/2021,17:56,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464071,Sedan,Sedan,,, +10/02/2021,9:05,,,40.756382,-73.96433,"(40.756382, -73.96433)",1 AVENUE,,,1,0,1,0,0,0,0,0,Glare,,,,,4463151,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,13:50,,,40.609108,-73.74685,"(40.609108, -73.74685)",BEACH 9 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,22:59,,,40.589108,-73.80101,"(40.589108, -73.80101)",BEACH 73 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463562,Sedan,Sedan,,, +09/27/2021,7:00,QUEENS,11427,40.72257,-73.75729,"(40.72257, -73.75729)",HILLSIDE AVENUE,209 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464178,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,18:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463720,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/02/2021,16:00,,,40.748913,-73.9374,"(40.748913, -73.9374)",JACKSON AVENUE,QUEENS PLAZA SOUTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463224,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,19:00,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4463358,Tractor Truck Diesel,Sedan,,, +10/02/2021,13:00,,,40.667522,-73.78063,"(40.667522, -73.78063)",ROCKAWAY BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463656,Bus,,,, +10/02/2021,18:02,MANHATTAN,10002,40.7224,-73.99165,"(40.7224, -73.99165)",CHRYSTIE STREET,STANTON STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4463469,Taxi,,,, +10/02/2021,13:45,BRONX,10463,40.886967,-73.90856,"(40.886967, -73.90856)",,,3620 OXFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463141,Sedan,,,, +10/02/2021,2:46,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,1,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463262,E-Bike,,,, +10/02/2021,12:30,STATEN ISLAND,10306,,,,st george road,ascot avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,8:20,MANHATTAN,10033,40.84721,-73.93979,"(40.84721, -73.93979)",FORT WASHINGTON AVENUE,WEST 176 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463382,Sedan,E-Scooter,,, +10/02/2021,7:44,,,40.692776,-73.95769,"(40.692776, -73.95769)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4463228,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +10/02/2021,18:16,MANHATTAN,10035,40.80256,-73.943,"(40.80256, -73.943)",MADISON AVENUE,EAST 120 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4463943,Pick-up Truck,Sedan,,, +10/02/2021,14:00,BROOKLYN,11236,40.64,-73.90194,"(40.64, -73.90194)",EAST 93 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463967,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/02/2021,14:36,MANHATTAN,10027,40.812603,-73.94567,"(40.812603, -73.94567)",,,2215 7 AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,Brakes Defective,,,,4463844,Sedan,Sedan,,, +09/10/2021,18:13,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4464010,Taxi,,,, +09/27/2021,7:20,BROOKLYN,11221,40.69663,-73.91857,"(40.69663, -73.91857)",WILSON AVENUE,MENAHAN STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4464161,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/02/2021,1:30,MANHATTAN,10031,40.823982,-73.952255,"(40.823982, -73.952255)",,,3461 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4463272,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,20:24,BRONX,10465,40.81883,-73.8171,"(40.81883, -73.8171)",,,4101 EAST TREMONT AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4463858,Sedan,Sedan,,, +10/02/2021,17:25,,,40.865383,-73.89348,"(40.865383, -73.89348)",EAST KINGSBRIDGE ROAD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464030,Sedan,,,, +10/02/2021,14:20,STATEN ISLAND,10304,0,0,"(0.0, 0.0)",,,158 CANAL STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463525,Bike,,,, +09/03/2021,20:14,STATEN ISLAND,10304,40.624603,-74.079605,"(40.624603, -74.079605)",BROAD STREET,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464063,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,14:54,BROOKLYN,11236,40.635014,-73.89727,"(40.635014, -73.89727)",,,1500 EAST 92 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464093,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:29,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463190,Sedan,Pick-up Truck,Pick-up Truck,, +10/02/2021,13:10,BROOKLYN,11225,40.66153,-73.95149,"(40.66153, -73.95149)",,,347 LINCOLN ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4463626,Dump,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +10/02/2021,13:30,MANHATTAN,10016,40.751575,-73.982285,"(40.751575, -73.982285)",EAST 39 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4463989,Sedan,E-Bike,,, +10/02/2021,22:47,BROOKLYN,11221,40.69003,-73.93048,"(40.69003, -73.93048)",LEXINGTON AVENUE,REID AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4463511,Bike,,,, +10/02/2021,13:37,MANHATTAN,10025,40.799976,-73.958626,"(40.799976, -73.958626)",CENTRAL PARK WEST,WEST 109 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4463160,Taxi,Bike,,, +10/02/2021,12:15,BROOKLYN,11206,40.70736,-73.93978,"(40.70736, -73.93978)",,,251 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463218,Sedan,,,, +10/02/2021,10:30,BRONX,10458,40.858418,-73.88514,"(40.858418, -73.88514)",EAST FORDHAM ROAD,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463759,Sedan,,,, +10/02/2021,17:52,BROOKLYN,11212,40.671925,-73.904526,"(40.671925, -73.904526)",GLENMORE AVENUE,POWELL STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463703,Station Wagon/Sport Utility Vehicle,Van,,, +10/02/2021,3:55,BRONX,10471,40.904293,-73.89989,"(40.904293, -73.89989)",,,5497 FIELDSTON ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,15:00,,,40.592087,-73.786255,"(40.592087, -73.786255)",ROCKAWAY BEACH BOULEVARD,BEACH 56 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464015,Sedan,Sedan,,, +10/02/2021,20:18,,,40.874638,-73.909744,"(40.874638, -73.909744)",WEST 225 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464072,,,,, +10/02/2021,16:30,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463853,Sedan,,,, +10/01/2021,16:28,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4464119,Sedan,Sedan,Sedan,, +10/02/2021,7:15,,,40.599537,-74.13154,"(40.599537, -74.13154)",,,8 SUNSET AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463338,Sedan,,,, +10/01/2021,13:47,BROOKLYN,11222,40.722424,-73.94094,"(40.722424, -73.94094)",,,643 MEEKER AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4463953,Sedan,,,, +09/25/2021,6:00,,,40.767494,-73.95933,"(40.767494, -73.95933)",EAST 70 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463959,Taxi,,,, +03/31/2022,16:30,BRONX,10472,,,,,,86 HUGH GRANT CIRCLE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515352,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/31/2022,8:13,BRONX,10458,40.862953,-73.89066,"(40.862953, -73.89066)",EAST 193 STREET,DECATUR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515049,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:56,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",ROCKAWAY AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463403,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,19:20,,,40.57655,-73.966385,"(40.57655, -73.966385)",BRIGHTON BEACH AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463450,Sedan,,,, +09/28/2021,19:55,,,,,,HILLMAN AVENUE,VANCORTLANDT PARK WEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464152,Sedan,Bus,,, +10/02/2021,11:50,,,40.59892,-73.75677,"(40.59892, -73.75677)",BEACH 22 STREET,COLLIER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464003,Sedan,,,, +10/01/2021,15:25,BROOKLYN,11222,40.726547,-73.94838,"(40.726547, -73.94838)",NORMAN AVENUE,NEWEL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464193,Sedan,Motorscooter,,, +10/02/2021,15:20,QUEENS,11368,40.754803,-73.84501,"(40.754803, -73.84501)",,,120-02 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463267,Sedan,Sedan,,, +10/02/2021,13:08,BROOKLYN,11208,40.661533,-73.878845,"(40.661533, -73.878845)",CLEVELAND STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463773,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/02/2021,17:30,QUEENS,11370,40.770527,-73.892654,"(40.770527, -73.892654)",,,77-06 21 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4463296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:43,STATEN ISLAND,10306,40.58037,-74.099525,"(40.58037, -74.099525)",,,2042 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4464025,Sedan,Sedan,,, +09/29/2021,21:00,,,40.686497,-73.9168,"(40.686497, -73.9168)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464134,Sedan,,,, +10/02/2021,14:10,BROOKLYN,11226,40.64671,-73.95811,"(40.64671, -73.95811)",,,1009 FLATBUSH AVENUE,4,0,0,0,0,0,4,0,Aggressive Driving/Road Rage,Unspecified,,,,4463423,Sedan,,,, +10/02/2021,14:58,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,4463214,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/02/2021,2:04,BROOKLYN,11236,40.64883,-73.90492,"(40.64883, -73.90492)",EAST 98 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4463124,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/02/2021,18:15,BROOKLYN,11203,40.65619,-73.930855,"(40.65619, -73.930855)",,,701 UTICA AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463588,Sedan,E-Scooter,,, +10/02/2021,19:00,QUEENS,11414,40.664295,-73.83938,"(40.664295, -73.83938)",156 AVENUE,KILLARNEY STREET,,6,0,0,0,0,0,6,0,View Obstructed/Limited,Unspecified,,,,4463793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:48,BRONX,10462,40.83236,-73.85329,"(40.83236, -73.85329)",,,2124 ELLIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,3:48,BRONX,10472,40.82817,-73.86265,"(40.82817, -73.86265)",LELAND AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4463236,Sedan,Sedan,,, +10/02/2021,15:43,MANHATTAN,10065,40.76696,-73.96386,"(40.76696, -73.96386)",,,157 EAST 67 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463682,Sedan,3-Door,,, +09/29/2021,17:48,BRONX,10468,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEBB AVENUE,,2,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464019,E-Scooter,,,, +09/24/2021,12:30,QUEENS,11364,40.753826,-73.7568,"(40.753826, -73.7568)",56 AVENUE,223 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464252,Sedan,,,, +10/02/2021,18:44,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463284,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,9:00,MANHATTAN,10001,40.74959,-74.00279,"(40.74959, -74.00279)",WEST 26 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463349,Sedan,,,, +09/18/2021,15:52,MANHATTAN,10036,40.760155,-73.99676,"(40.760155, -73.99676)",,,524 WEST 42 STREET,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unsafe Speed,,,,4463980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,19:08,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463923,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,10:50,,,40.61632,-74.15936,"(40.61632, -74.15936)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464107,Sedan,,,, +10/02/2021,11:00,QUEENS,11368,40.739635,-73.86074,"(40.739635, -73.86074)",99 STREET,55 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463386,Sedan,Sedan,,, +10/01/2021,23:15,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4464184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,19:43,BROOKLYN,11214,40.588486,-73.98552,"(40.588486, -73.98552)",,,2816 HARWAY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4463274,Sedan,,,, +10/02/2021,18:00,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4464079,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +10/02/2021,2:10,,,40.714066,-73.94938,"(40.714066, -73.94938)",LORIMER STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463861,Sedan,,,, +10/02/2021,12:10,,,,,,,,79 EAST DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4463899,E-Scooter,,,, +06/25/2021,10:30,,,40.81782,-73.915276,"(40.81782, -73.915276)",3 AVENUE,EAST 152 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464226,Sedan,E-Bike,,, +10/01/2021,17:25,MANHATTAN,10029,40.794613,-73.9321,"(40.794613, -73.9321)",,,545 EAST 116 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463938,Taxi,Sedan,,, +10/02/2021,3:00,BROOKLYN,11204,40.61179,-73.987206,"(40.61179, -73.987206)",21 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463314,Sedan,,,, +10/02/2021,2:25,,,40.603503,-74.0673374,"(40.603503, -74.0673374)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4464143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,23:35,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4488578,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/30/2022,20:10,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",MC DONALD AVENUE,BAY PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4514956,Bike,,,, +03/25/2022,15:37,BROOKLYN,11238,40.676548,-73.96354,"(40.676548, -73.96354)",PROSPECT PLACE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515723,Box Truck,Box Truck,,, +03/30/2022,10:00,STATEN ISLAND,10301,40.640465,-74.08796,"(40.640465, -74.08796)",YORK AVENUE,PAUW STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515129,Sedan,Pick-up Truck,,, +03/31/2022,18:50,BRONX,10456,40.822716,-73.9032,"(40.822716, -73.9032)",,,735 EAST 163 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4515206,Station Wagon/Sport Utility Vehicle,,,, +03/20/2022,1:05,,,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4515972,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,22:23,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515365,Sedan,Sedan,,, +03/30/2022,18:31,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4514907,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/22/2022,6:10,BROOKLYN,11201,40.69985,-73.991035,"(40.69985, -73.991035)",CADMAN PLAZA WEST,MIDDAGH STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515819,Sedan,,,, +04/01/2022,1:17,QUEENS,11429,40.70281,-73.74387,"(40.70281, -73.74387)",COLFAX STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515323,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,15:36,QUEENS,11354,40.762283,-73.827446,"(40.762283, -73.827446)",,,37-05 UNION STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515143,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/31/2022,8:30,,,,,,Fulton St,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4515308,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +03/30/2022,21:30,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515397,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:46,,,,,,,,71 WEST DRIVE,2,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4514902,Bike,E-Scooter,,, +04/01/2022,10:47,BRONX,10460,40.83677,-73.88597,"(40.83677, -73.88597)",VYSE AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515549,Sedan,Sedan,,, +03/30/2022,2:30,BROOKLYN,11221,40.688698,-73.942085,"(40.688698, -73.942085)",THROOP AVENUE,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4514742,E-Bike,Taxi,,, +06/01/2021,18:16,BROOKLYN,11234,,,,pennsylvania avenue,belt parkway,,1,0,0,0,0,0,1,0,Unspecified,,,,,4422811,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,3:10,BRONX,10472,40.833916,-73.879654,"(40.833916, -73.879654)",,,1404 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486122,Pick-up Truck,Sedan,,, +12/26/2021,23:11,BROOKLYN,11203,40.637096,-73.93465,"(40.637096, -73.93465)",FARRAGUT ROAD,TROY AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Alcohol Involvement,,,,4490597,Sedan,Sedan,,, +12/28/2021,0:00,BRONX,10460,40.837166,-73.88718,"(40.837166, -73.88718)",,,932 EAST 174 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490447,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,9:16,BRONX,10471,40.894875,-73.88219,"(40.894875, -73.88219)",,,71 MAJOR DEEGAN EXPRESSWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4490837,Sedan,,,, +12/28/2021,0:25,,,40.760777,-73.95702,"(40.760777, -73.95702)",EAST 63 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4490084,Sedan,,,, +12/28/2021,16:00,MANHATTAN,10019,40.762966,-73.973976,"(40.762966, -73.973976)",5 AVENUE,WEST 57 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4490411,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/24/2021,12:22,BROOKLYN,11230,40.613277,-73.9717,"(40.613277, -73.9717)",EAST 3 STREET,RYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490657,Van,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,12:55,QUEENS,11361,40.76322,-73.77481,"(40.76322, -73.77481)",41 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490510,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,7:35,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490797,Sedan,,,, +12/28/2021,0:07,,,40.68662,-73.82319,"(40.68662, -73.82319)",120 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490143,Sedan,,,, +12/28/2021,6:37,MANHATTAN,10009,40.724285,-73.9756,"(40.724285, -73.9756)",AVENUE D,EAST 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490536,Sedan,Sedan,,, +12/12/2021,19:50,BRONX,10468,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,CRESTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490752,Sedan,Bike,,, +12/28/2021,9:30,QUEENS,11419,40.684135,-73.82413,"(40.684135, -73.82413)",107 AVENUE,118 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4490211,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/28/2021,21:06,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490340,Taxi,Taxi,,, +12/28/2021,14:40,BROOKLYN,11203,40.653778,-73.931145,"(40.653778, -73.931145)",,,733 LINDEN BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490601,Sedan,,,, +12/26/2021,10:00,QUEENS,11368,40.75769,-73.86446,"(40.75769, -73.86446)",,,104-04 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4490618,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,1:00,QUEENS,11435,40.706978,-73.813065,"(40.706978, -73.813065)",87 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4490662,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/23/2021,10:00,,,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490690,Bus,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,21:49,QUEENS,11354,40.77228,-73.80708,"(40.77228, -73.80708)",157 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,9:05,QUEENS,11357,40.79009,-73.797485,"(40.79009, -73.797485)",166 STREET,12 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4490267,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,12:45,,,40.606762,-74.16583,"(40.606762, -74.16583)",VICTORY BOULEVARD,ARLENE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4490299,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,11:09,,,40.77962,-73.80217,"(40.77962, -73.80217)",20 ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490268,Sedan,Sedan,,, +12/28/2021,17:58,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,2,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490329,Sedan,Sedan,E-Bike,, +12/28/2021,9:20,BRONX,10459,40.832,-73.89643,"(40.832, -73.89643)",,,785 JENNINGS STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490226,PK,,,, +12/28/2021,7:57,QUEENS,11421,40.68976,-73.85619,"(40.68976, -73.85619)",89 AVENUE,87 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490687,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,16:57,BROOKLYN,11214,40.597553,-73.99117,"(40.597553, -73.99117)",BENSON AVENUE,24 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,17:25,BRONX,10461,40.84224,-73.84406,"(40.84224, -73.84406)",WILLIAMSBRIDGE ROAD,ROBERTS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490568,,,,, +12/24/2021,7:49,MANHATTAN,10029,40.794132,-73.94282,"(40.794132, -73.94282)",3 AVENUE,EAST 110 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4490714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/10/2021,13:30,,,40.69133,-73.95177,"(40.69133, -73.95177)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490631,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,23:05,MANHATTAN,10018,40.754093,-73.99209,"(40.754093, -73.99209)",WEST 37 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4490696,Garbage or Refuse,Bus,,, +12/28/2021,14:31,BROOKLYN,11207,40.67193,-73.89106,"(40.67193, -73.89106)",,,366 MILLER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490254,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,4:30,QUEENS,11357,40.78679,-73.823425,"(40.78679, -73.823425)",14 AVENUE,144 PLACE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4490321,Sedan,Tractor Truck Diesel,,, +12/28/2021,11:41,QUEENS,11375,40.735653,-73.851006,"(40.735653, -73.851006)",108 STREET,62 DRIVE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,19:00,QUEENS,11372,40.755978,-73.88144,"(40.755978, -73.88144)",,,86-13 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490617,Sedan,,,, +12/23/2021,0:26,,,40.67268,-73.953026,"(40.67268, -73.953026)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4490828,Sedan,Sedan,Sedan,Sedan, +12/28/2021,8:25,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4490342,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,7:40,MANHATTAN,10032,40.83196,-73.9439,"(40.83196, -73.9439)",,,525 WEST 155 STREET,0,0,0,0,0,0,0,0,Illnes,,,,,4490391,Sedan,,,, +12/28/2021,18:00,,,,,,GRAND CENTRAL PARKWAY,MIDLAND PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490280,Sedan,Sedan,,, +12/28/2021,23:42,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490796,Station Wagon/Sport Utility Vehicle,Tanker,,, +12/27/2021,16:47,BROOKLYN,11223,40.6097,-73.965096,"(40.6097, -73.965096)",,,801 AVENUE P,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490648,Van,E-Scooter,,, +12/28/2021,10:00,BRONX,10454,40.810177,-73.91397,"(40.810177, -73.91397)",,,590 SAINT MARYS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490669,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,0:02,,,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490790,Sedan,,,, +12/28/2021,17:20,QUEENS,11101,40.753635,-73.91893,"(40.753635, -73.91893)",NORTHERN BOULEVARD,44 STREET,,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,Unspecified,,,4490458,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +12/22/2021,10:00,,,40.87314,-73.90572,"(40.87314, -73.90572)",BAILEY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490844,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,20:00,BRONX,10451,40.81431,-73.92102,"(40.81431, -73.92102)",,,2739 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490543,Sedan,,,, +12/28/2021,10:14,,,,,,WEST 158 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4490403,Sedan,Sedan,,, +12/21/2021,13:50,BRONX,10463,40.88414,-73.90602,"(40.88414, -73.90602)",,,3411 IRWIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490609,Sedan,Tractor Truck Diesel,,, +12/28/2021,19:53,BRONX,10474,40.811043,-73.88073,"(40.811043, -73.88073)",OAK POINT AVENUE,HALLECK STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4490350,Box Truck,Sedan,,, +12/26/2021,14:30,,,40.60805,-74.15736,"(40.60805, -74.15736)",MORANI STREET,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4490816,Sedan,Sedan,,, +03/31/2022,20:15,QUEENS,11422,40.665245,-73.73709,"(40.665245, -73.73709)",SOUTH CONDUIT AVENUE,140 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4515171,Sedan,,,, +12/28/2021,18:30,MANHATTAN,10022,40.75906,-73.97262,"(40.75906, -73.97262)",PARK AVENUE,EAST 53 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4490413,Taxi,Taxi,,, +12/24/2021,17:00,QUEENS,11373,40.728943,-73.88299,"(40.728943, -73.88299)",,,79-05 57 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490586,Sedan,,,, +12/28/2021,23:00,BROOKLYN,11222,40.719845,-73.94726,"(40.719845, -73.94726)",,,450 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490515,Station Wagon/Sport Utility Vehicle,Moped,,, +12/21/2021,22:00,QUEENS,11373,40.746548,-73.87975,"(40.746548, -73.87975)",,,86-05 BRITTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490851,Sedan,Box Truck,,, +12/28/2021,1:52,,,40.820145,-73.890656,"(40.820145, -73.890656)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490087,Sedan,,,, +12/28/2021,9:00,QUEENS,11691,40.599754,-73.750114,"(40.599754, -73.750114)",,,17-19 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4490384,Sedan,,,, +06/01/2021,8:08,,,40.76015,-73.9988,"(40.76015, -73.9988)",WEST 41 STREET,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4423067,Beverage Truck,,,, +12/27/2021,15:45,,,40.699715,-73.96182,"(40.699715, -73.96182)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,7:30,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4490146,Bus,,,, +12/28/2021,17:50,BROOKLYN,11210,40.62389,-73.94053,"(40.62389, -73.94053)",,,1122 EAST 36 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490345,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/28/2021,10:45,BROOKLYN,11249,40.7181,-73.95818,"(40.7181, -73.95818)",,,154 NORTH 7 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4490517,Sedan,AMBULANCE,,, +12/28/2021,12:00,MANHATTAN,10032,40.838943,-73.938385,"(40.838943, -73.938385)",,,513 WEST 166 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490404,Sedan,,,, +12/26/2021,21:25,BRONX,10468,40.87016,-73.89099,"(40.87016, -73.89099)",EAST 198 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,9:20,,,40.804905,-73.91883,"(40.804905, -73.91883)",EAST 135 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490807,Sedan,Pick-up Truck,,, +12/28/2021,16:11,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490448,Sedan,Sedan,,, +12/28/2021,13:15,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490273,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,17:33,,,,,,NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490301,Sedan,,,, +12/16/2021,13:45,MANHATTAN,10128,40.78533,-73.95175,"(40.78533, -73.95175)",,,141 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490643,Sedan,,,, +12/28/2021,15:35,,,40.75928,-73.959274,"(40.75928, -73.959274)",EAST 60 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490371,Sedan,Sedan,,, +12/16/2021,7:51,BRONX,10466,40.897808,-73.85262,"(40.897808, -73.85262)",NEREID AVENUE,BYRON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490706,Sedan,,,, +12/28/2021,10:33,,,40.874214,-73.866104,"(40.874214, -73.866104)",CRUGER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490260,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,15:49,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",CLARKSON AVENUE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490596,Sedan,Sedan,,, +12/28/2021,14:53,BROOKLYN,11230,40.61437,-73.97096,"(40.61437, -73.97096)",AVENUE N,EAST 4 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490650,Station Wagon/Sport Utility Vehicle,Van,,, +12/28/2021,15:45,BROOKLYN,11222,40.73068,-73.94923,"(40.73068, -73.94923)",GREENPOINT AVENUE,PROVOST STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490289,Pick-up Truck,Motorscooter,,, +12/28/2021,8:00,,,40.766357,-73.88756,"(40.766357, -73.88756)",82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4490423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,17:30,,,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490829,Sedan,,,, +12/26/2021,13:46,,,40.748955,-73.87136,"(40.748955, -73.87136)",ROOSEVELT AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4490717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/28/2021,12:30,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,20:15,BRONX,10461,40.856045,-73.84395,"(40.856045, -73.84395)",,,2121 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4490435,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,12:00,QUEENS,11373,40.743103,-73.879814,"(40.743103, -73.879814)",ELMHURST AVENUE,KETCHAM STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4490820,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,8:30,BRONX,10472,40.827362,-73.86019,"(40.827362, -73.86019)",,,1050 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4490630,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,3:37,QUEENS,11420,40.673183,-73.81425,"(40.673183, -73.81425)",124 STREET,SUTTER AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4490210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/28/2021,8:00,MANHATTAN,10016,,,,Madison Avenue,40 Street,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490695,Bus,Taxi,,, +12/28/2021,14:10,,,40.624268,-74.01948,"(40.624268, -74.01948)",GOWANUS EXPRESSWAY,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,20:01,BROOKLYN,11219,40.64091,-73.994316,"(40.64091, -73.994316)",44 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490656,Sedan,Sedan,,, +12/27/2021,0:50,BROOKLYN,11212,40.663124,-73.92237,"(40.663124, -73.92237)",,,154 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490600,Sedan,Sedan,,, +12/28/2021,14:20,BROOKLYN,11204,40.613655,-73.978,"(40.613655, -73.978)",23 AVENUE,63 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490484,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,19:26,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490556,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,9:30,MANHATTAN,10028,40.775738,-73.94882,"(40.775738, -73.94882)",,,420 EAST 85 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4490823,Sedan,,,, +12/28/2021,4:00,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Following Too Closely,,,4490390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,14:30,BRONX,10467,40.880547,-73.86111,"(40.880547, -73.86111)",EAST 216 STREET,BARNES AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4490707,Sedan,,,, +12/21/2021,14:30,,,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490791,Dump,Sedan,,, +12/28/2021,9:00,QUEENS,11375,40.71512,-73.83224,"(40.71512, -73.83224)",QUEENS BOULEVARD,78 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,11:30,BROOKLYN,11216,40.67657,-73.94431,"(40.67657, -73.94431)",BROOKLYN AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515823,Box Truck,Sedan,,, +12/28/2021,11:45,QUEENS,11106,40.763824,-73.926094,"(40.763824, -73.926094)",,,31-55 29 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4490223,Sedan,,,, +12/18/2021,23:12,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",WEST 230 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490577,Sedan,,,, +12/28/2021,21:43,,,40.719013,-73.79419,"(40.719013, -73.79419)",GRAND CENTRAL PARKWAY,172 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4490312,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,5:00,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490587,Sedan,Sedan,,, +12/28/2021,11:05,,,40.8477,-73.90097,"(40.8477, -73.90097)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490383,Station Wagon/Sport Utility Vehicle,Bike,,, +12/26/2021,17:54,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490574,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,17:05,,,40.88809,-73.89254,"(40.88809, -73.89254)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,22:40,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",EAST 184 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4490456,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,3:36,BRONX,10454,40.804523,-73.91199,"(40.804523, -73.91199)",EAST 138 STREET,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4490107,Pick-up Truck,Sedan,,, +12/28/2021,4:15,,,40.6606,-74.001274,"(40.6606, -74.001274)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490766,Sedan,Garbage or Refuse,,, +12/24/2021,0:02,BROOKLYN,11219,40.639153,-73.99142,"(40.639153, -73.99142)",12 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4490653,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,9:20,BROOKLYN,11211,0,0,"(0.0, 0.0)",METROPOLITAN AVENUE,UNION AVENUE,,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4490288,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck, +12/28/2021,17:18,MANHATTAN,10016,40.74697,-73.979,"(40.74697, -73.979)",,,139 EAST 35 STREET,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4490292,Bus,Taxi,,, +12/25/2021,23:40,MANHATTAN,10029,40.790165,-73.95411,"(40.790165, -73.95411)",,,1184 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4490610,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/28/2021,10:00,BROOKLYN,11225,40.66257,-73.947426,"(40.66257, -73.947426)",,,411 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490320,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,19:50,BROOKLYN,11218,40.63578,-73.97597,"(40.63578, -73.97597)",EAST 3 STREET,DITMAS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490645,Sedan,,,, +12/28/2021,12:00,QUEENS,11373,40.742786,-73.88264,"(40.742786, -73.88264)",BRITTON AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490355,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,17:30,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4515261,Sedan,Van,,, +04/20/2021,16:22,,,40.674088,-73.79837,"(40.674088, -73.79837)",ROCKAWAY BOULEVARD,142 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4409152,Flat Bed,E-Scooter,,, +06/01/2021,15:08,,,40.62506,-74.13582,"(40.62506, -74.13582)",FOREST AVENUE,BARRETT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422911,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,17:02,BROOKLYN,11220,40.634167,-74.02073,"(40.634167, -74.02073)",68 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423320,Sedan,,,, +12/24/2021,10:32,MANHATTAN,10029,40.79483,-73.95035,"(40.79483, -73.95035)",,,4 EAST 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4490670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,7:45,BROOKLYN,11212,40.665627,-73.909706,"(40.665627, -73.909706)",ROCKAWAY AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,14:55,BRONX,10455,40.81051,-73.90658,"(40.81051, -73.90658)",,,475 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4490611,Sedan,,,, +12/23/2021,5:55,,,40.78588,-73.94884,"(40.78588, -73.94884)",EAST 97 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490664,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,8:00,BROOKLYN,11207,40.684303,-73.90961,"(40.684303, -73.90961)",,,53 MOFFAT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490703,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,0:09,BRONX,10469,40.87388,-73.8478,"(40.87388, -73.8478)",SEYMOUR AVENUE,GIVAN AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4490263,Sedan,Motorcycle,,, +12/28/2021,15:00,BROOKLYN,11203,40.6601,-73.947655,"(40.6601, -73.947655)",,,589 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490319,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,10:30,BROOKLYN,11234,40.6229,-73.91762,"(40.6229, -73.91762)",,,2265 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490344,Sedan,,,, +12/28/2021,21:05,,,40.610214,-73.94371,"(40.610214, -73.94371)",NOSTRAND AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490525,Sedan,,,, +12/24/2021,22:38,,,,,,CLEARVIEW EXPRESSWAY RAMP,WILLETS POINT BOULEVARD,,2,1,0,0,0,0,2,1,Unsafe Speed,Unspecified,,,,4490761,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,10:30,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4490272,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,16:25,BRONX,10462,40.852398,-73.86662,"(40.852398, -73.86662)",,,725 BRADY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490376,Sedan,Sedan,,, +12/28/2021,8:00,,,,,,WEST SERVICE ROAD,ARDEN ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4490216,Concrete Mixer,,,, +12/28/2021,4:10,BROOKLYN,11201,40.694836,-73.98393,"(40.694836, -73.98393)",FLATBUSH AVENUE EXTENSION,JOHNSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490336,Armored Truck,Sedan,,, +12/28/2021,19:33,BROOKLYN,11212,40.662743,-73.926056,"(40.662743, -73.926056)",,,84 EAST 94 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4490603,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,9:20,BROOKLYN,11231,40.68281,-74.002846,"(40.68281, -74.002846)",,,84 CARROLL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,21:01,,,40.883038,-73.89964,"(40.883038, -73.89964)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490840,Sedan,COMM VAN,,, +12/25/2021,10:20,MANHATTAN,10029,40.78722,-73.952065,"(40.78722, -73.952065)",PARK AVENUE,EAST 97 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490671,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,22:00,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4490405,Sedan,Sedan,Sedan,, +12/26/2021,18:20,QUEENS,11354,40.76152,-73.83293,"(40.76152, -73.83293)",PRINCE STREET,36 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490636,Sedan,Sedan,,, +11/23/2021,16:20,,,40.678585,-73.95207,"(40.678585, -73.95207)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4490693,Box Truck,Box Truck,,, +12/24/2021,18:55,BROOKLYN,11218,40.643646,-73.989784,"(40.643646, -73.989784)",FORT HAMILTON PARKWAY,38 STREET,,1,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490659,Ambulance,E-Scooter,,, +12/28/2021,20:55,,,40.58406,-73.96901,"(40.58406, -73.96901)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490497,Sedan,,,, +12/28/2021,6:48,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BARRETTO STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490800,Tractor Truck Gasoline,Sedan,,, +12/28/2021,23:00,MANHATTAN,10035,40.80194,-73.93414,"(40.80194, -73.93414)",,,2409 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490395,Taxi,,,, +12/16/2021,15:30,BROOKLYN,11238,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490831,Sedan,,,, +06/01/2021,17:39,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422736,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,19:47,BROOKLYN,11236,40.629883,-73.895775,"(40.629883, -73.895775)",EAST 89 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422685,Bus,,,, +05/24/2021,17:30,MANHATTAN,10031,40.82488,-73.94472,"(40.82488, -73.94472)",,,408 WEST 146 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423144,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,19:25,BRONX,10458,40.864254,-73.88813,"(40.864254, -73.88813)",WEBSTER AVENUE,EAST 195 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423059,Sedan,,,, +06/01/2021,3:02,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422387,Sedan,Tractor Truck Diesel,,, +06/01/2021,21:01,QUEENS,11411,40.701187,-73.74148,"(40.701187, -73.74148)",SPRINGFIELD BOULEVARD,115 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422666,Sedan,,,, +06/01/2021,15:07,BRONX,10461,40.852535,-73.82799,"(40.852535, -73.82799)",,,3269 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422804,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/01/2021,13:50,BROOKLYN,11214,40.58862,-73.98373,"(40.58862, -73.98373)",STILLWELL AVENUE,BAY 50 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422708,Box Truck,Box Truck,,, +06/01/2021,0:50,BROOKLYN,11213,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,TROY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4422951,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,23:19,,,40.64513,-73.948975,"(40.64513, -73.948975)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423213,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,0:38,,,40.69328,-73.9043,"(40.69328, -73.9043)",SCHAEFER STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422421,Convertible,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,13:15,,,40.58582,-73.96029,"(40.58582, -73.96029)",MONTAUK COURT,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422715,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,13:45,,,40.596878,-74.16226,"(40.596878, -74.16226)",,,2066 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423136,Pick-up Truck,,,, +05/10/2021,23:15,QUEENS,11385,40.709396,-73.90931,"(40.709396, -73.90931)",,,2027 HARMAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423204,Sedan,,,, +06/01/2021,19:55,,,40.59244,-73.78603,"(40.59244, -73.78603)",ARVERNE BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4422881,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/01/2021,0:01,BROOKLYN,11207,40.656876,-73.895905,"(40.656876, -73.895905)",,,762 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,,,,,,4422461,Sedan,,,, +06/01/2021,12:16,BRONX,10467,40.880173,-73.87097,"(40.880173, -73.87097)",,,3551 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422610,Sedan,Sedan,,, +06/01/2021,22:10,QUEENS,11413,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422741,Pick-up Truck,,,, +06/01/2021,0:00,BRONX,10456,40.83287,-73.90107,"(40.83287, -73.90107)",,,1354 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422757,Sedan,,,, +06/01/2021,7:55,MANHATTAN,10039,40.824265,-73.94087,"(40.824265, -73.94087)",,,2770 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422837,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,10:22,,,40.719547,-73.9749,"(40.719547, -73.9749)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Other Vehicular,Unspecified,,,4422571,Sedan,Sedan,Sedan,, +06/01/2021,9:00,BRONX,10457,40.849743,-73.89837,"(40.849743, -73.89837)",,,4301 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422508,Sedan,,,, +05/22/2021,8:15,MANHATTAN,10011,40.74531,-74.000626,"(40.74531, -74.000626)",,,360 WEST 22 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423244,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,16:55,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4423297,Sedan,Sedan,,, +06/01/2021,8:10,,,40.836754,-73.875084,"(40.836754, -73.875084)",BRONX RIVER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4422559,Sedan,Carry All,,, +06/01/2021,9:00,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422511,Sedan,,,, +05/14/2021,14:05,BROOKLYN,11212,40.666206,-73.92061,"(40.666206, -73.92061)",,,76 TAPSCOTT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423166,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,12:45,,,40.68969,-73.99237,"(40.68969, -73.99237)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422599,Sedan,Tractor Truck Diesel,,, +06/01/2021,5:30,BROOKLYN,11223,40.591564,-73.96504,"(40.591564, -73.96504)",,,2376 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422479,Sedan,,,, +06/01/2021,13:16,MANHATTAN,10035,40.80573,-73.93855,"(40.80573, -73.93855)",EAST 126 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422836,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,18:15,BRONX,10467,40.885567,-73.879105,"(40.885567, -73.879105)",,,3600 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422697,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,16:22,MANHATTAN,10004,40.702625,-74.01287,"(40.702625, -74.01287)",,,52 WHITEHALL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422721,Sedan,Box Truck,,, +06/01/2021,10:50,MANHATTAN,10032,40.83882,-73.94564,"(40.83882, -73.94564)",,,920 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422857,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,16:00,QUEENS,11366,40.724113,-73.79676,"(40.724113, -73.79676)",UNION TURNPIKE,172 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422775,Ambulance,Dump,,, +06/01/2021,8:00,,,40.81394,-73.948425,"(40.81394, -73.948425)",WEST 131 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422844,Sedan,,,, +06/01/2021,1:22,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4422495,Tractor Truck Diesel,Sedan,,, +06/01/2021,12:00,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422585,Pick-up Truck,,,, +06/01/2021,18:50,MANHATTAN,10031,40.821697,-73.95292,"(40.821697, -73.95292)",HAMILTON PLACE,WEST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422672,Sedan,,,, +06/01/2021,22:30,,,40.673767,-73.76381,"(40.673767, -73.76381)",FARMERS BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423232,4 dr sedan,,,, +06/01/2021,16:20,,,40.74357,-73.83772,"(40.74357, -73.83772)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422756,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,15:15,BROOKLYN,11220,40.644547,-74.01091,"(40.644547, -74.01091)",51 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422989,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/26/2021,11:00,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4423247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/01/2021,13:33,MANHATTAN,10007,40.71517,-74.01016,"(40.71517, -74.01016)",,,74 WARREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422614,Box Truck,,,, +06/01/2021,12:04,BROOKLYN,11236,0,0,"(0.0, 0.0)",,,1609 CANARSIE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422653,Station Wagon/Sport Utility Vehicle,PK,,, +06/01/2021,15:53,BRONX,10473,40.8156,-73.86163,"(40.8156, -73.86163)",,,517 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423175,Sedan,Box Truck,,, +06/01/2021,6:36,BROOKLYN,11215,40.661545,-73.97941,"(40.661545, -73.97941)",,,188 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422531,Sedan,,,, +06/01/2021,16:36,,,40.860954,-73.92651,"(40.860954, -73.92651)",ARDEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422943,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,21:36,,,,,,Ditmas av,Ditmas & East 98,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4422789,Sedan,Sedan,Sedan,, +06/01/2021,19:18,BROOKLYN,11217,40.68358,-73.97617,"(40.68358, -73.97617)",,,620 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4422824,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,14:10,,,40.61536,-73.987076,"(40.61536, -73.987076)",20 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422918,Sedan,Pick-up Truck,,, +12/28/2021,23:08,BRONX,10452,40.83562,-73.927864,"(40.83562, -73.927864)",OGDEN AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Passing or Lane Usage Improper,Unspecified,,,4490386,Convertible,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,17:17,BROOKLYN,11229,40.607082,-73.94607,"(40.607082, -73.94607)",AVENUE R,EAST 27 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4422692,Sedan,Bike,,, +06/01/2021,16:55,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4423076,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,14:20,BRONX,10473,40.818428,-73.847885,"(40.818428, -73.847885)",,,580 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422717,Sedan,,,, +06/01/2021,18:10,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",MERRICK BOULEVARD,SPRINGFIELD BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4422662,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,10:36,,,40.728638,-73.88239,"(40.728638, -73.88239)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422748,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,18:10,,,40.652786,-73.91997,"(40.652786, -73.91997)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423217,Sedan,,,, +06/01/2021,12:55,MANHATTAN,10027,40.810627,-73.95828,"(40.810627, -73.95828)",AMSTERDAM AVENUE,WEST 122 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422624,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,14:47,,,40.69731,-73.932274,"(40.69731, -73.932274)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422963,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,14:00,BROOKLYN,11213,40.67005,-73.94213,"(40.67005, -73.94213)",,,279 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423255,Sedan,Sedan,,, +06/01/2021,15:30,MANHATTAN,10075,40.771023,-73.95365,"(40.771023, -73.95365)",1 AVENUE,EAST 77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422730,Sedan,Taxi,,, +06/01/2021,18:10,MANHATTAN,10027,40.80943,-73.95544,"(40.80943, -73.95544)",MORNINGSIDE AVENUE,WEST 122 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422668,Bike,,,, +06/01/2021,16:05,BROOKLYN,11206,40.710285,-73.93519,"(40.710285, -73.93519)",BOGART STREET,STAGG STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4422731,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,7:00,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",10 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4490175,Van,Sedan,,, +06/01/2021,16:55,QUEENS,11368,40.746655,-73.856415,"(40.746655, -73.856415)",,,108-14 47 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423127,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,6:00,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,10:30,,,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423185,Sedan,Pick-up Truck,,, +06/01/2021,10:30,BROOKLYN,11232,40.64986,-74.01972,"(40.64986, -74.01972)",1 AVENUE,51 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422646,Box Truck,,,, +06/01/2021,16:29,QUEENS,11368,40.749866,-73.86273,"(40.749866, -73.86273)",103 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Backing Unsafely,,,,4422896,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/20/2021,17:40,,,40.677338,-73.927536,"(40.677338, -73.927536)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4423254,Sedan,Sedan,Sedan,, +06/01/2021,11:25,,,40.756283,-73.77024,"(40.756283, -73.77024)",211 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423042,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,0:45,,,40.704716,-73.92875,"(40.704716, -73.92875)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422422,Station Wagon/Sport Utility Vehicle,Taxi,Garbage or Refuse,, +05/28/2021,14:30,BROOKLYN,11231,40.675198,-73.99936,"(40.675198, -73.99936)",COURT STREET,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423141,Sedan,Sedan,,, +06/01/2021,14:30,QUEENS,11429,40.710773,-73.74041,"(40.710773, -73.74041)",HOLLIS AVENUE,217 PLACE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4422623,Sedan,,,, +06/01/2021,18:30,BRONX,10454,40.80719,-73.92431,"(40.80719, -73.92431)",WILLIS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422711,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,12:00,BROOKLYN,11203,40.65214,-73.944885,"(40.65214, -73.944885)",,,131 EAST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423206,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,19:41,QUEENS,11413,40.66642,-73.756584,"(40.66642, -73.756584)",,,219-25 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422663,Sedan,Sedan,,, +06/01/2021,17:57,BRONX,10466,40.90121,-73.84684,"(40.90121, -73.84684)",,,4460 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4422867,Sedan,Sedan,,, +06/01/2021,14:30,,,40.6993,-73.91361,"(40.6993, -73.91361)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422959,Sedan,Motorcycle,,, +06/01/2021,15:30,QUEENS,11427,40.733013,-73.76064,"(40.733013, -73.76064)",,,80-15 210 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422686,Sedan,,,, +06/01/2021,17:00,QUEENS,11375,40.734417,-73.84993,"(40.734417, -73.84993)",,,108-41 63 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4423300,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,22:15,BRONX,10473,40.817173,-73.861725,"(40.817173, -73.861725)",SOUND VIEW AVENUE,RANDALL AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4423174,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,0:00,QUEENS,11385,40.702763,-73.85692,"(40.702763, -73.85692)",,,88-54 MYRTLE AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4422528,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,11:35,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422563,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,11:30,BRONX,10457,40.845238,-73.900894,"(40.845238, -73.900894)",EAST 175 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422779,Sedan,Sedan,,, +06/01/2021,12:18,BROOKLYN,11212,40.672073,-73.91135,"(40.672073, -73.91135)",EAST NEW YORK AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423264,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,10:30,MANHATTAN,10031,40.83009,-73.94542,"(40.83009, -73.94542)",,,531 WEST 152 STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4422639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,10:07,BRONX,10461,40.84636,-73.84463,"(40.84636, -73.84463)",EASTCHESTER ROAD,WATERS PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4422847,Van,Sedan,,, +05/31/2021,3:40,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",KINGS HIGHWAY,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423212,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,2:23,BRONX,10462,40.836746,-73.86336,"(40.836746, -73.86336)",,,1452 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422496,Ambulance,Sedan,,, +06/01/2021,21:42,BROOKLYN,11206,40.70807,-73.94333,"(40.70807, -73.94333)",GRAHAM AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,19:20,BROOKLYN,11212,40.655487,-73.90287,"(40.655487, -73.90287)",,,1555 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422790,Sedan,Sedan,,, +06/01/2021,9:50,BROOKLYN,11222,40.719746,-73.93941,"(40.719746, -73.93941)",RICHARDSON STREET,DEBEVOISE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Speed,Unspecified,,,4422540,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +12/28/2021,17:56,QUEENS,11354,40.771656,-73.83153,"(40.771656, -73.83153)",137 STREET,29 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490302,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,6:28,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,Unspecified,,4422997,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/29/2021,22:35,BRONX,10453,40.846577,-73.913155,"(40.846577, -73.913155)",JEROME AVENUE,CLIFFORD PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4423150,Sedan,,,, +06/01/2021,9:10,,,,,,RIVERSIDE DRIVE,WEST 168 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4422861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,9:16,MANHATTAN,10001,40.74579,-73.99072,"(40.74579, -73.99072)",,,805 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422628,Sedan,,,, +06/01/2021,22:40,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422678,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/04/2021,11:50,,,40.813797,-73.94987,"(40.813797, -73.94987)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4423235,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,17:30,BROOKLYN,11203,40.656315,-73.93961,"(40.656315, -73.93961)",,,738 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422975,Sedan,Sedan,,, +06/01/2021,20:36,,,40.66695,-73.766335,"(40.66695, -73.766335)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,Unspecified,,,4422765,Sedan,Sedan,Sedan,, +06/01/2021,1:05,MANHATTAN,10012,40.722115,-73.999596,"(40.722115, -73.999596)",,,495 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422451,Sedan,UNKNOWN,,, +06/01/2021,17:25,BRONX,10461,40.852715,-73.85771,"(40.852715, -73.85771)",HONE AVENUE,NEILL AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4422841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,13:49,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4422600,Van,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,23:20,BRONX,10461,40.84216,-73.831024,"(40.84216, -73.831024)",ZULETTE AVENUE,GILLESPIE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4422802,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,14:46,BRONX,10472,40.83136,-73.86816,"(40.83136, -73.86816)",WESTCHESTER AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490439,Sedan,,,, +06/01/2021,15:47,BRONX,10467,40.88462,-73.8798,"(40.88462, -73.8798)",,,3566 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422696,Tractor Truck Diesel,,,, +05/14/2021,15:55,MANHATTAN,10001,40.750942,-74.00598,"(40.750942, -74.00598)",,,601 WEST 26 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4423163,Sedan,,,, +06/01/2021,16:31,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422720,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/01/2021,17:10,STATEN ISLAND,10306,40.554417,-74.13047,"(40.554417, -74.13047)",THAYER PLACE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,11:25,BROOKLYN,11215,40.664963,-73.98982,"(40.664963, -73.98982)",16 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422650,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,19:30,MANHATTAN,10035,40.802395,-73.936775,"(40.802395, -73.936775)",3 AVENUE,EAST 123 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4422848,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/01/2021,14:50,MANHATTAN,10040,40.85533,-73.93332,"(40.85533, -73.93332)",BROADWAY,WEST 189 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4422923,E-Bike,,,, +06/01/2021,19:15,QUEENS,11434,40.666306,-73.76731,"(40.666306, -73.76731)",FARMERS BOULEVARD,145 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422676,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,14:20,QUEENS,11367,,,,,,70-10 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4422809,Bus,Sedan,Sedan,, +06/01/2021,3:43,BRONX,10455,40.80853,-73.90497,"(40.80853, -73.90497)",EAST 144 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422473,Sedan,,,, +06/01/2021,9:25,BROOKLYN,11249,40.7072,-73.96614,"(40.7072, -73.96614)",,,64 DIVISION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422726,Station Wagon/Sport Utility Vehicle,Van,,, +06/01/2021,10:26,QUEENS,11413,40.66542,-73.745995,"(40.66542, -73.745995)",230 PLACE,SOUTH CONDUIT AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4422568,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,14:55,MANHATTAN,10021,40.770477,-73.96639,"(40.770477, -73.96639)",MADISON AVENUE,EAST 70 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4422732,Sedan,E-Bike,,, +09/21/2022,13:15,,,40.762764,-73.79706,"(40.762764, -73.79706)",169 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4566056,Sedan,,,, +06/01/2021,11:35,QUEENS,11415,40.711823,-73.83612,"(40.711823, -73.83612)",UNION TURNPIKE,PARK LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422645,Sedan,Convertible,,, +06/01/2021,20:10,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,WATTS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4422724,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,21:45,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4423073,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,17:36,BROOKLYN,11223,40.604454,-73.96675,"(40.604454, -73.96675)",,,1802 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4422689,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,16:48,BROOKLYN,11224,40.57916,-73.98309,"(40.57916, -73.98309)",NEPTUNE AVENUE,WEST 15 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423131,Bike,,,, +06/01/2021,5:02,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4422405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,12:34,BRONX,10457,40.84521,-73.90845,"(40.84521, -73.90845)",EASTBURN AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423193,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,10:20,QUEENS,11436,40.67532,-73.79322,"(40.67532, -73.79322)",,,145-29 123 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4422886,Sedan,,,, +05/10/2021,14:55,,,40.695866,-73.96969,"(40.695866, -73.96969)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4423281,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/01/2021,19:15,,,40.6234,-74.162,"(40.6234, -74.162)",,,153 AMITY PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422792,Sedan,,,, +06/01/2021,8:15,BROOKLYN,11249,40.71786,-73.96223,"(40.71786, -73.96223)",NORTH 4 STREET,WYTHE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4422539,Station Wagon/Sport Utility Vehicle,Bike,,, +06/01/2021,9:00,,,,,,WEST 33 STREET,Lincoln tunnel expy,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4422542,Box Truck,Sedan,,, +06/01/2021,18:55,,,,,,JUNCTION BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422751,Convertible,Sedan,,, +06/01/2021,15:20,,,40.79536,-73.96942,"(40.79536, -73.96942)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,,,4423184,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/01/2021,11:08,QUEENS,11436,40.67892,-73.798836,"(40.67892, -73.798836)",142 PLACE,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4422584,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,20:38,,,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422780,Station Wagon/Sport Utility Vehicle,Bus,,, +06/01/2021,6:50,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423216,Sedan,,,, +06/01/2021,12:03,,,40.844875,-73.8678,"(40.844875, -73.8678)",MORRIS PARK AVENUE,UNIONPORT ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4422627,Sedan,Bike,,, +06/01/2021,16:20,BRONX,10460,40.85401,-73.87187,"(40.85401, -73.87187)",BOSTON ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4422825,Bus,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,6:40,,,40.674576,-73.92206,"(40.674576, -73.92206)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4423261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/01/2021,0:00,BROOKLYN,11236,40.634792,-73.896965,"(40.634792, -73.896965)",CANARSIE ROAD,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422490,Sedan,,,, +06/01/2021,13:20,QUEENS,11368,40.743935,-73.85749,"(40.743935, -73.85749)",106 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422752,Sedan,,,, +06/01/2021,22:10,,,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4422813,Pick-up Truck,Sedan,,, +06/01/2021,16:10,BRONX,10462,40.84827,-73.86713,"(40.84827, -73.86713)",,,1924 CRUGER AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4422846,Motorcycle,MOTORSCOOT,,, +06/01/2021,7:15,,,40.757954,-73.8982,"(40.757954, -73.8982)",BROOKLYN QUEENS EXPRESSWAY,31 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,8:00,STATEN ISLAND,10301,40.63781,-74.08729,"(40.63781, -74.08729)",JERSEY STREET,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,17:17,BRONX,10466,40.888924,-73.842155,"(40.888924, -73.842155)",,,3919 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423238,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,13:30,BROOKLYN,11203,40.65362,-73.933525,"(40.65362, -73.933525)",SCHENECTADY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423251,Sedan,,,, +12/16/2021,20:20,BROOKLYN,11216,40.677845,-73.95282,"(40.677845, -73.95282)",BEDFORD AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490787,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,21:47,BRONX,10455,40.816204,-73.91423,"(40.816204, -73.91423)",BROOK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422712,Box Truck,,,, +06/01/2021,9:35,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423218,Pick-up Truck,Sedan,,, +06/01/2021,13:00,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422885,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,19:15,MANHATTAN,10009,40.72185,-73.97919,"(40.72185, -73.97919)",,,340 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423170,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,10:38,BRONX,10455,40.816307,-73.90806,"(40.816307, -73.90806)",WESTCHESTER AVENUE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4422522,Sedan,,,, +06/01/2021,18:50,STATEN ISLAND,10306,40.575363,-74.10485,"(40.575363, -74.10485)",,,2271 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4422640,Sedan,,,, +06/01/2021,0:00,,,40.82267,-73.92007,"(40.82267, -73.92007)",MORRIS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422469,Bike,,,, +06/01/2021,12:15,BROOKLYN,11220,40.63491,-74.01017,"(40.63491, -74.01017)",61 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422601,Sedan,Pick-up Truck,,, +06/01/2021,19:49,,,40.670845,-73.79601,"(40.670845, -73.79601)",130 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422743,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,9:35,QUEENS,11363,40.76229,-73.75711,"(40.76229, -73.75711)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422589,Sedan,Bike,,, +06/01/2021,6:20,BRONX,10475,40.880535,-73.83212,"(40.880535, -73.83212)",NEW ENGLAND THRUWAY,REEDS MILL LANE,,0,1,0,0,0,0,0,1,Lost Consciousness,,,,,4422826,Pick-up Truck,,,, +06/01/2021,17:10,BRONX,10453,40.850494,-73.91546,"(40.850494, -73.91546)",WEST TREMONT AVENUE,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Obstruction/Debris,Obstruction/Debris,,,,4422664,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/01/2021,17:36,QUEENS,11421,40.68928,-73.86418,"(40.68928, -73.86418)",,,88-17 77 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422778,Sedan,Sedan,,, +06/01/2021,16:22,MANHATTAN,10027,40.81126,-73.943985,"(40.81126, -73.943985)",,,118 WEST 130 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4422840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,10:00,BROOKLYN,11208,40.664894,-73.875946,"(40.664894, -73.875946)",LINDEN BOULEVARD,BERRIMAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4422807,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,16:15,QUEENS,11378,40.724255,-73.91251,"(40.724255, -73.91251)",56 DRIVE,58 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422700,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,12:53,,,40.7044,-73.92384,"(40.7044, -73.92384)",STARR STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422958,Box Truck,Sedan,,, +05/31/2021,9:00,BROOKLYN,11212,40.658638,-73.921486,"(40.658638, -73.921486)",,,316 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423211,Sedan,,,, +06/01/2021,11:54,BROOKLYN,11238,40.68558,-73.96423,"(40.68558, -73.96423)",,,156 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4422659,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,20:55,,,40.821484,-73.94855,"(40.821484, -73.94855)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423005,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,0:05,BROOKLYN,11218,40.647297,-73.9803,"(40.647297, -73.9803)",MC DONALD AVENUE,CATON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422649,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,6:30,,,40.898006,-73.861115,"(40.898006, -73.861115)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422436,Sedan,,,, +05/28/2021,13:10,,,40.576885,-74.00323,"(40.576885, -74.00323)",WEST 37 STREET,,,2,0,1,0,1,0,0,0,Unspecified,,,,,4423132,Bike,,,, +06/01/2021,8:30,,,,,,,,126 denker pl,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422566,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/01/2021,14:29,,,40.736652,-73.9079,"(40.736652, -73.9079)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422681,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/01/2021,11:20,QUEENS,11101,40.750637,-73.94283,"(40.750637, -73.94283)",42 ROAD,23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423309,Station Wagon/Sport Utility Vehicle,,,, +05/25/2021,17:35,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423207,Sedan,Sedan,,, +06/01/2021,20:30,QUEENS,11356,40.781693,-73.839615,"(40.781693, -73.839615)",20 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4422907,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,11:56,,,40.822018,-73.95368,"(40.822018, -73.95368)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4422687,Box Truck,Bike,,, +06/01/2021,21:10,,,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422739,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,7:35,QUEENS,11372,40.74936,-73.88789,"(40.74936, -73.88789)",,,78-02 37 AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422928,Pick-up Truck,Bike,,, +06/01/2021,18:07,QUEENS,11369,40.764885,-73.8656,"(40.764885, -73.8656)",27 AVENUE,CURTIS STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4422670,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,22:30,QUEENS,11432,40.71512,-73.77358,"(40.71512, -73.77358)",HILLSIDE AVENUE,188 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490449,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,22:16,BROOKLYN,11211,40.708904,-73.95926,"(40.708904, -73.95926)",BROADWAY,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423093,Taxi,Sedan,,, +05/28/2021,20:55,BRONX,10453,40.8518,-73.909225,"(40.8518, -73.909225)",JEROME AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423149,Bike,,,, +06/01/2021,14:54,BRONX,10451,40.824707,-73.91552,"(40.824707, -73.91552)",EAST 161 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4422763,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck +06/01/2021,1:18,BROOKLYN,11217,40.682056,-73.990875,"(40.682056, -73.990875)",HOYT STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4422862,Sedan,Sedan,Sedan,Moped,Sedan +06/01/2021,22:18,BROOKLYN,11235,40.583797,-73.941315,"(40.583797, -73.941315)",,,2710 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4422694,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/01/2021,13:32,BROOKLYN,11206,40.703842,-73.941795,"(40.703842, -73.941795)",,,97 MOORE STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422727,Sedan,Bus,,, +05/31/2021,14:45,BROOKLYN,11236,40.6502,-73.91963,"(40.6502, -73.91963)",EAST 88 STREET,AVENUE A,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423215,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,19:45,,,40.687023,-73.97621,"(40.687023, -73.97621)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422971,Sedan,,,, +05/29/2021,17:55,BROOKLYN,11201,40.69124,-73.98535,"(40.69124, -73.98535)",,,402 BRIDGE STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4423290,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,8:00,QUEENS,11369,40.762142,-73.86246,"(40.762142, -73.86246)",31 AVENUE,BUELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422980,Sedan,Sedan,,, +06/01/2021,16:45,,,40.7140707,-73.9543399,"(40.7140707, -73.9543399)",METROPOLITAN AVENUE,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4422733,Box Truck,Box Truck,,, +06/01/2021,1:29,QUEENS,11101,40.746876,-73.95272,"(40.746876, -73.95272)",VERNON BOULEVARD,46 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4422407,Sedan,,,, +05/31/2021,23:46,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4423198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,17:00,,,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4423106,Sedan,,,, +06/01/2021,5:50,,,40.66319,-73.93727,"(40.66319, -73.93727)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422655,Sedan,Sedan,,, +06/01/2021,20:00,BRONX,10458,40.854942,-73.88941,"(40.854942, -73.88941)",,,2341 HOFFMAN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4422799,Sedan,,,, +06/01/2021,7:32,,,40.715763,-73.74654,"(40.715763, -73.74654)",JAMAICA AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422545,Motorcycle,,,, +06/01/2021,15:00,QUEENS,11418,40.69761,-73.82005,"(40.69761, -73.82005)",130 STREET,92 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422782,Sedan,Sedan,,, +05/24/2021,3:51,,,,,,WASHINGTON BRIDGE 181 ST,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4423159,Taxi,Bike,,, +06/01/2021,18:00,QUEENS,11355,40.743855,-73.82221,"(40.743855, -73.82221)",146 STREET,58 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4422908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,14:00,BRONX,10468,40.873238,-73.88946,"(40.873238, -73.88946)",,,2947 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422699,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,14:20,BRONX,10472,40.828037,-73.852325,"(40.828037, -73.852325)",,,2122 CHATTERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422719,Sedan,Sedan,Sedan,, +06/01/2021,18:07,BRONX,10467,40.859074,-73.86755,"(40.859074, -73.86755)",,,2290 BOSTON ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4422853,Sedan,,,, +06/01/2021,15:39,QUEENS,11434,40.681988,-73.76634,"(40.681988, -73.76634)",MERRICK BOULEVARD,126 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422745,Bus,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,0:07,,,40.680294,-73.76282,"(40.680294, -73.76282)",,,MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4422588,Sedan,Sedan,Sedan,, +06/01/2021,15:00,,,40.813374,-73.956276,"(40.813374, -73.956276)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422626,Sedan,Sedan,,, +05/30/2021,15:26,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4423257,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/01/2021,1:30,BRONX,10457,40.850933,-73.89589,"(40.850933, -73.89589)",,,2083 WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4422492,Sedan,Pick-up Truck,,, +05/21/2021,12:30,,,40.635853,-74.16619,"(40.635853, -74.16619)",SOUTH AVENUE,ARLINGTON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423222,Sedan,Pick-up Truck,,, +06/01/2021,9:00,,,,,,Shae Road,Olmsted Street,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4422754,Sedan,Sedan,,, +06/01/2021,19:15,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422675,Tractor Truck Diesel,,,, +05/24/2021,22:40,,,40.78866,-73.778625,"(40.78866, -73.778625)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4423183,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/01/2021,5:35,,,,,,CLEARVIEW EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4422590,Sedan,box truck,,, +06/01/2021,8:27,QUEENS,11435,40.697556,-73.80498,"(40.697556, -73.80498)",97 AVENUE,147 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422631,Bus,Sedan,,, +06/01/2021,23:35,MANHATTAN,10035,40.803696,-73.93792,"(40.803696, -73.93792)",EAST 124 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4422863,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,15:30,QUEENS,11385,,,,,,5930 SUMMERFIELD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422821,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,18:45,QUEENS,11378,40.72452,-73.90626,"(40.72452, -73.90626)",60 STREET,56 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4422831,Sedan,Sedan,,, +06/01/2021,3:35,BROOKLYN,11226,40.65217,-73.96141,"(40.65217, -73.96141)",CATON AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422487,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/01/2021,17:20,QUEENS,11358,40.76148,-73.80479,"(40.76148, -73.80479)",STATION ROAD,161 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422723,Sedan,,,, +06/01/2021,7:25,,,40.70921,-73.87017,"(40.70921, -73.87017)",80 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422536,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,18:40,BRONX,10456,40.828384,-73.90283,"(40.828384, -73.90283)",HOME STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422762,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,0:35,,,40.68024,-73.89602,"(40.68024, -73.89602)",HIGHLAND BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422463,Sedan,,,, +06/01/2021,11:00,,,40.73204,-73.87034,"(40.73204, -73.87034)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4422644,Pick-up Truck,Box Truck,Box Truck,Sedan, +06/01/2021,18:00,,,40.65892,-73.889824,"(40.65892, -73.889824)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4422812,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,12:55,MANHATTAN,10128,40.782055,-73.95373,"(40.782055, -73.95373)",EAST 90 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4422742,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,Bike, +06/01/2021,11:50,MANHATTAN,10128,40.78071,-73.948555,"(40.78071, -73.948555)",,,331 EAST 91 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4422582,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,16:30,BROOKLYN,11219,40.64313,-73.99647,"(40.64313, -73.99647)",,,941 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423145,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,13:10,BROOKLYN,11236,40.64405,-73.90399,"(40.64405, -73.90399)",GLENWOOD ROAD,EAST 95 STREET,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4423017,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,21:00,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,17:03,QUEENS,11420,40.67447,-73.8027,"(40.67447, -73.8027)",135 PLACE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4422665,Dump,Sedan,,, +06/01/2021,20:30,,,40.674088,-73.79837,"(40.674088, -73.79837)",ROCKAWAY BOULEVARD,142 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422883,Pick-up Truck,Sedan,,, +06/01/2021,18:20,MANHATTAN,10034,40.8716,-73.91507,"(40.8716, -73.91507)",PARK TERRACE EAST,WEST 218 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422956,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,15:23,BROOKLYN,11222,40.72484,-73.93677,"(40.72484, -73.93677)",MEEKER AVENUE,VAN DAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422688,Pick-up Truck,Sedan,,, +12/27/2021,20:30,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,7:52,,,40.60548,-73.93922,"(40.60548, -73.93922)",GERRITSEN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4422521,Sedan,,,, +05/30/2021,11:25,BROOKLYN,11212,40.66894,-73.91581,"(40.66894, -73.91581)",,,1563 PITKIN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4423167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,19:00,,,40.719475,-73.79263,"(40.719475, -73.79263)",173 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422776,Sedan,Sedan,,, +06/01/2021,19:49,,,40.815304,-73.94371,"(40.815304, -73.94371)",7 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4422838,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,9:18,BROOKLYN,11206,40.705578,-73.94119,"(40.705578, -73.94119)",,,130 HUMBOLDT STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Failure to Keep Right,,,,4422602,Sedan,Bike,,, +06/01/2021,11:18,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422707,Sedan,Sedan,,, +06/01/2021,16:00,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422805,Sedan,,,, +06/01/2021,8:28,,,40.707077,-73.954025,"(40.707077, -73.954025)",BROADWAY,HOOPER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422738,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/01/2021,6:12,MANHATTAN,10009,40.732727,-73.97451,"(40.732727, -73.97451)",AVENUE C,EAST 20 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4422501,Station Wagon/Sport Utility Vehicle,Bus,,, +06/01/2021,1:00,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4422437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,15:10,BROOKLYN,11232,40.659912,-73.998604,"(40.659912, -73.998604)",4 AVENUE,26 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422648,Sedan,Bike,,, +05/29/2021,20:30,BROOKLYN,11226,40.650856,-73.9486,"(40.650856, -73.9486)",CHURCH AVENUE,EAST 31 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,14:16,,,40.880466,-73.88384,"(40.880466, -73.88384)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Speed,Unspecified,,,4422620,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/01/2021,20:00,BRONX,10455,40.81636,-73.91876,"(40.81636, -73.91876)",,,371 EAST 149 STREET,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4422713,Sedan,E-Scooter,,, +06/01/2021,15:40,QUEENS,11419,40.68989,-73.81819,"(40.68989, -73.81819)",127 STREET,103 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4423065,Station Wagon/Sport Utility Vehicle,Bike,,, +05/31/2021,22:55,BROOKLYN,11224,40.57699,-73.98153,"(40.57699, -73.98153)",STILLWELL AVENUE,MERMAID AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423135,,,,, +06/01/2021,12:30,QUEENS,11369,40.763344,-73.87731,"(40.763344, -73.87731)",ASTORIA BOULEVARD,92 STREET,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422898,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,0:09,BROOKLYN,11236,40.64625,-73.918816,"(40.64625, -73.918816)",,,252 DORSET STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4423208,Sedan,Sedan,Sedan,, +12/27/2021,10:50,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490792,Station Wagon/Sport Utility Vehicle,MINI,,, +06/01/2021,6:13,BROOKLYN,11216,40.669765,-73.94869,"(40.669765, -73.94869)",,,597 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422932,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,1:45,BRONX,10475,,,,GIVAN AVENUE,BOLLER AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4423240,Sedan,Sedan,,, +06/01/2021,15:18,QUEENS,11373,40.733154,-73.87056,"(40.733154, -73.87056)",HOFFMAN DRIVE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4422755,Sedan,Sedan,,, +05/27/2021,18:15,QUEENS,11432,40.71071,-73.793045,"(40.71071, -73.793045)",169 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Glare,,,,4423296,Sedan,Bus,,, +06/01/2021,0:07,,,40.680313,-73.72879,"(40.680313, -73.72879)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4422546,Sedan,Sedan,Sedan,, +06/01/2021,17:30,BRONX,10475,40.865574,-73.82314,"(40.865574, -73.82314)",,,140 EINSTEIN LOOP,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4422801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,15:15,BROOKLYN,11222,40.72619,-73.952156,"(40.72619, -73.952156)",,,730 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423182,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,20:40,QUEENS,11357,40.782097,-73.79724,"(40.782097, -73.79724)",166 STREET,17 ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Aggressive Driving/Road Rage,Unspecified,,,4422746,Sedan,Sedan,Sedan,, +06/01/2021,9:15,BROOKLYN,11215,40.66878,-73.9785,"(40.66878, -73.9785)",,,510 5 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422534,Sedan,Sedan,,, +06/01/2021,13:45,QUEENS,11412,40.691994,-73.76111,"(40.691994, -73.76111)",190 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4422593,Sedan,Sedan,Van,, +06/01/2021,12:49,BRONX,10461,40.8542,-73.854416,"(40.8542, -73.854416)",WILLIAMSBRIDGE ROAD,NEILL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4422845,Sedan,Sedan,,, +06/01/2021,20:00,,,40.691074,-73.88733,"(40.691074, -73.88733)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4422834,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,6:45,,,40.86268,-73.90905,"(40.86268, -73.90905)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4422494,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,18:12,,,40.65605,-73.92361,"(40.65605, -73.92361)",REMSEN AVENUE,LENOX ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423209,Sedan,Sedan,,, +06/01/2021,11:15,,,,,,BAY PARKWAY,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422916,Sedan,Sedan,,, +06/01/2021,17:38,BROOKLYN,11229,40.611885,-73.94508,"(40.611885, -73.94508)",AVENUE P,EAST 29 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4422693,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/01/2021,12:15,BRONX,10454,40.80321,-73.91892,"(40.80321, -73.91892)",BRUCKNER BOULEVARD,SAINT ANNS PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4423077,Sedan,Van,,, +12/28/2021,1:07,QUEENS,11368,40.7558,-73.86535,"(40.7558, -73.86535)",34 AVENUE,103 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4490422,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/01/2021,0:45,BROOKLYN,11207,40.6848,-73.9138,"(40.6848, -73.9138)",BROADWAY,COVERT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4422417,Sedan,Sedan,,, +05/12/2021,12:00,,,40.673996,-73.92785,"(40.673996, -73.92785)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4423256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +06/01/2021,7:30,MANHATTAN,10006,40.708508,-74.01336,"(40.708508, -74.01336)",,,107 GREENWICH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4422722,Sedan,,,, +06/01/2021,19:30,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",MORGAN AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4422734,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +05/31/2021,12:44,,,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423202,Pick-up Truck,Bike,,, +06/01/2021,14:50,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422654,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,20:10,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4422855,Sedan,,,, +06/01/2021,6:31,BROOKLYN,11213,40.666363,-73.935555,"(40.666363, -73.935555)",,,1549 CARROLL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4422673,Sedan,Sedan,Sedan,, +05/30/2021,5:15,,,40.609867,-73.74515,"(40.609867, -73.74515)",VIRGINIA STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4423224,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/01/2021,14:50,BROOKLYN,11211,40.712315,-73.957085,"(40.712315, -73.957085)",,,131 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422729,Sedan,Sedan,,, +06/01/2021,6:30,,,,,,NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422587,Pick-up Truck,Sedan,,, +06/01/2021,0:07,,,40.63315,-73.96703,"(40.63315, -73.96703)",CONEY ISLAND AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,13:40,,,40.60242,-74.174675,"(40.60242, -74.174675)",,,3465 VICTORY BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4422785,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,13:45,BROOKLYN,11217,40.68593,-73.97635,"(40.68593, -73.97635)",,,124 FORT GREENE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422866,Sedan,,,, +06/01/2021,13:43,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",177 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422632,Convertible,Flat Bed,,, +06/01/2021,15:55,QUEENS,11375,40.72089,-73.84682,"(40.72089, -73.84682)",,,70-00 AUSTIN STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422625,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,9:30,BROOKLYN,11215,40.672665,-73.98828,"(40.672665, -73.98828)",,,242 6 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4422822,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/30/2021,14:00,BROOKLYN,11203,40.658478,-73.92818,"(40.658478, -73.92818)",EAST 53 STREET,WINTHROP STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423214,Sedan,,,, +06/01/2021,20:50,,,40.66468,-73.95101,"(40.66468, -73.95101)",NOSTRAND AVENUE,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4422669,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,11:38,BROOKLYN,11234,40.61919,-73.92302,"(40.61919, -73.92302)",AVENUE N,EAST 54 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423154,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,18:00,BROOKLYN,11214,40.608143,-74.00412,"(40.608143, -74.00412)",86 STREET,BAY 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422985,Station Wagon/Sport Utility Vehicle,Bus,,, +06/01/2021,17:52,QUEENS,11355,40.754543,-73.83056,"(40.754543, -73.83056)",MAPLE AVENUE,SAULL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4422718,VAN/TRUCK,Sedan,,, +06/01/2021,0:30,QUEENS,11413,40.67381,-73.754776,"(40.67381, -73.754776)",,,218-48 138 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422661,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,21:50,,,40.68723,-73.941795,"(40.68723, -73.941795)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422941,Station Wagon/Sport Utility Vehicle,Van,,, +06/01/2021,19:46,MANHATTAN,10034,40.867275,-73.91922,"(40.867275, -73.91922)",VERMILYEA AVENUE,ISHAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422969,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/01/2021,15:53,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",EAST 34 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423021,Bus,Taxi,,, +06/01/2021,17:00,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,18:15,,,40.830563,-73.92727,"(40.830563, -73.92727)",JEROME AVENUE,EAST 162 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4422698,Sedan,E-Scooter,,, +12/28/2021,23:08,,,40.77054,-73.93205,"(40.77054, -73.93205)",30 ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,,4490363,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/22/2021,8:36,,,,,,MOSHOLU PARKWAY EXTENSION,Mosholu Parkway,,0,0,0,0,0,0,0,0,Driver Inexperience,Following Too Closely,Unspecified,,,4490846,Sedan,Sedan,Sedan,, +12/23/2021,21:09,BRONX,10473,40.8179,-73.86406,"(40.8179, -73.86406)",,,646 SAINT LAWRENCE AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490628,Sedan,,,, +12/28/2021,16:40,,,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490732,Sedan,Sedan,,, +12/28/2021,22:56,MANHATTAN,10027,40.81569,-73.958305,"(40.81569, -73.958305)",WEST 125 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490476,Sedan,,,, +12/28/2021,14:52,MANHATTAN,10013,40.714993,-73.99887,"(40.714993, -73.99887)",MOTT STREET,PELL STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490579,Sedan,Sedan,,, +11/26/2021,2:51,,,40.749718,-73.86419,"(40.749718, -73.86419)",102 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490819,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/27/2021,12:02,BROOKLYN,11218,40.639297,-73.98409,"(40.639297, -73.98409)",14 AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490588,Bus,,,, +12/20/2021,14:00,BROOKLYN,11213,40.673256,-73.9307,"(40.673256, -73.9307)",UTICA AVENUE,PROSPECT PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490826,Sedan,,,, +12/28/2021,3:15,,,0,0,"(0.0, 0.0)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4490113,Sedan,,,, +12/25/2021,22:45,,,40.856808,-73.92827,"(40.856808, -73.92827)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4490847,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/28/2021,19:20,BROOKLYN,11211,40.703434,-73.96035,"(40.703434, -73.96035)",WILLIAMSBURG STREET WEST,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4490393,Sedan,Ambulance,,, +12/23/2021,13:50,MANHATTAN,10029,40.799046,-73.94133,"(40.799046, -73.94133)",,,1850 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4490654,Sedan,,,, +12/28/2021,19:40,QUEENS,11364,40.73578,-73.746544,"(40.73578, -73.746544)",UNION TURNPIKE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490293,Bus,Sedan,,, +12/27/2021,11:30,BROOKLYN,11218,40.638794,-73.97075,"(40.638794, -73.97075)",EAST 8 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490646,Sedan,,,, +12/27/2021,3:30,,,40.674736,-73.925,"(40.674736, -73.925)",BERGEN STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4490788,Sedan,Van,,, +12/28/2021,20:02,BROOKLYN,11215,40.671055,-73.98815,"(40.671055, -73.98815)",,,430 4 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490491,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,15:17,QUEENS,11101,40.75379,-73.91548,"(40.75379, -73.91548)",NORTHERN BOULEVARD,47 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4490550,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,13:45,,,40.82081,-73.81236,"(40.82081, -73.81236)",MEAGHER AVENUE,THROGS NECK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490708,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,17:45,BROOKLYN,11236,40.65196,-73.90995,"(40.65196, -73.90995)",,,724 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4490605,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,0:00,,,,,,PROSPECT EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4490323,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,8:30,QUEENS,11368,40.745472,-73.8661,"(40.745472, -73.8661)",44 AVENUE,97 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490352,Sedan,,,, +12/28/2021,12:50,,,40.681286,-73.76979,"(40.681286, -73.76979)",174 PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490235,Sedan,Sedan,,, +12/18/2021,10:28,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",BRUCKNER BOULEVARD,EAST 140 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4490612,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,22:45,,,,,,69 ROAD,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4490431,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,10:30,,,40.669403,-73.94221,"(40.669403, -73.94221)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490327,TRUCK,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,15:05,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",109 AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490367,Sedan,Sedan,,, +12/23/2021,17:14,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490737,Sedan,Sedan,,, +12/24/2021,20:21,,,40.793552,-73.945335,"(40.793552, -73.945335)",LEXINGTON AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4490666,Station Wagon/Sport Utility Vehicle,,,, +12/01/2021,8:00,MANHATTAN,10019,40.766876,-73.97908,"(40.766876, -73.97908)",CENTRAL PARK SOUTH,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490678,E-Bike,,,, +12/28/2021,0:00,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",LEXINGTON AVENUE,EAST 125 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490228,STREET CLE,Taxi,,, +12/15/2021,13:13,BRONX,10461,40.83717,-73.8433,"(40.83717, -73.8433)",,,2460 ROWE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490571,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,23:00,BROOKLYN,11212,40.660114,-73.90149,"(40.660114, -73.90149)",,,565 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463949,Sedan,,,, +12/28/2021,16:35,BRONX,10469,40.874992,-73.844246,"(40.874992, -73.844246)",GIVAN AVENUE,MICKLE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,,4490285,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +12/24/2021,21:49,MANHATTAN,10030,40.820534,-73.94054,"(40.820534, -73.94054)",,,200 WEST 143 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490625,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/28/2021,7:03,,,40.586296,-74.162994,"(40.586296, -74.162994)",MERRYMOUNT STREET,RICHMOND HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490213,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,23:15,,,40.74278,-73.82817,"(40.74278, -73.82817)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4490382,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,15:21,,,40.790894,-73.945175,"(40.790894, -73.945175)",EAST 105 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490663,Sedan,E-Bike,,, +12/28/2021,10:00,BROOKLYN,11203,40.644615,-73.926506,"(40.644615, -73.926506)",,,5306 CLARENDON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490602,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,1:50,QUEENS,11354,40.75899,-73.83454,"(40.75899, -73.83454)",COLLEGE POINT BOULEVARD,39 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490317,Sedan,Sedan,,, +12/20/2021,16:00,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",ROOSEVELT AVENUE,77 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490834,Sedan,,,, +12/28/2021,0:00,,,40.824207,-73.87529,"(40.824207, -73.87529)",MANOR AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490440,Sedan,,,, +12/28/2021,11:30,MANHATTAN,10036,40.762127,-73.99739,"(40.762127, -73.99739)",WEST 44 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490410,Sedan,,,, +12/19/2021,1:00,BRONX,10458,40.864254,-73.88813,"(40.864254, -73.88813)",WEBSTER AVENUE,EAST 195 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4490756,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,6:00,BROOKLYN,11206,40.70648,-73.94449,"(40.70648, -73.94449)",,,135 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490798,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,13:44,BRONX,10453,40.854626,-73.90882,"(40.854626, -73.90882)",,,2064 GRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490454,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,15:14,,,40.71717,-73.834946,"(40.71717, -73.834946)",QUEENS BOULEVARD,,,11,0,0,0,0,0,11,0,Lost Consciousness,Unspecified,,,,4490311,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,15:40,BROOKLYN,11223,40.597713,-73.96665,"(40.597713, -73.96665)",,,501 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490270,Sedan,,,, +12/28/2021,19:54,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",CLOVE ROAD,VICTORY BOULEVARD,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490635,Sedan,,,, +12/28/2021,15:15,,,40.68871,-73.95499,"(40.68871, -73.95499)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490692,Sedan,,,, +12/28/2021,0:30,,,40.64824,-74.01401,"(40.64824, -74.01401)",49 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,10:20,BROOKLYN,11234,40.633026,-73.92546,"(40.633026, -73.92546)",EAST 53 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4490502,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +12/28/2021,20:30,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CONEY ISLAND AVENUE,CATON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490658,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,19:05,BROOKLYN,11203,40.642254,-73.92742,"(40.642254, -73.92742)",AVENUE D,EAST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490598,Sedan,,,, +12/28/2021,6:38,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490265,Station Wagon/Sport Utility Vehicle,Dump,,, +12/28/2021,9:20,BROOKLYN,11217,40.677048,-73.98004,"(40.677048, -73.98004)",5 AVENUE,SACKETT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490192,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,12:30,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490385,Sedan,Carry All,,, +12/28/2021,20:40,,,40.586536,-73.93345,"(40.586536, -73.93345)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490527,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,20:50,QUEENS,11429,40.713284,-73.7358,"(40.713284, -73.7358)",SPRINGFIELD BOULEVARD,HEMPSTEAD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490343,Sedan,,,, +04/01/2022,21:00,,,40.729866,-73.87733,"(40.729866, -73.87733)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,13:03,,,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490786,Sedan,Sedan,,, +12/28/2021,23:55,,,40.632885,-73.94771,"(40.632885, -73.94771)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490397,Sedan,Sedan,,, +12/03/2021,9:45,BROOKLYN,11238,40.671535,-73.957664,"(40.671535, -73.957664)",LINCOLN PLACE,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490794,,,,, +12/24/2021,14:49,BROOKLYN,11217,40.683506,-73.97386,"(40.683506, -73.97386)",,,195 SOUTH PORTLAND AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490616,Sedan,Box Truck,,, +12/28/2021,17:38,BRONX,10453,40.85132,-73.90842,"(40.85132, -73.90842)",EAST TREMONT AVENUE,WALTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4490296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,6:38,MANHATTAN,10029,40.793766,-73.93411,"(40.793766, -73.93411)",PLEASANT AVENUE,EAST 114 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490655,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,14:03,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",CHURCH AVENUE,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490608,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/28/2021,19:20,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490281,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,19:25,,,40.659405,-73.9505,"(40.659405, -73.9505)",RUTLAND ROAD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490328,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/20/2021,21:30,BROOKLYN,11222,40.720997,-73.94088,"(40.720997, -73.94088)",,,134 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,,,,,,4490697,,,,, +12/28/2021,16:00,STATEN ISLAND,10309,40.541744,-74.207,"(40.541744, -74.207)",WOODROW ROAD,FOSTER ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490683,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,15:00,STATEN ISLAND,10309,40.52418,-74.2348,"(40.52418, -74.2348)",PAGE AVENUE,SOUTH BRIDGE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490247,Sedan,Sedan,,, +12/23/2021,19:19,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4490789,Moped,,,, +12/28/2021,8:30,QUEENS,11358,40.757824,-73.79006,"(40.757824, -73.79006)",,,191-20 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490463,Sedan,Sedan,,, +12/24/2021,19:14,MANHATTAN,10033,40.848938,-73.93708,"(40.848938, -73.93708)",WEST 179 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490845,Station Wagon/Sport Utility Vehicle,Bike,,, +12/26/2021,18:26,QUEENS,11373,40.7338,-73.871414,"(40.7338, -73.871414)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490849,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,0:15,BRONX,10468,40.859306,-73.89885,"(40.859306, -73.89885)",EAST 184 STREET,GRAND CONCOURSE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4490137,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/24/2021,19:50,BRONX,10465,40.8376,-73.8202,"(40.8376, -73.8202)",,,3216 RAWLINGS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490569,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,0:51,MANHATTAN,10002,40.722916,-73.990524,"(40.722916, -73.990524)",,,190 FORSYTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490589,Garbage or Refuse,Sedan,,, +12/28/2021,12:14,BROOKLYN,11206,40.709393,-73.94014,"(40.709393, -73.94014)",,,176 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4490392,Dump,Sedan,,, +12/27/2021,17:00,,,40.704002,-73.85593,"(40.704002, -73.85593)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490709,Sedan,Motorcycle,,, +12/28/2021,15:59,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",62 DRIVE,QUEENS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490430,Bike,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,20:44,MANHATTAN,10013,40.719418,-74.00194,"(40.719418, -74.00194)",,,288 CANAL STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490582,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,13:00,,,,,,COLLEGE POINT BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4490322,Van,Sedan,,, +12/28/2021,12:00,,,40.77079,-73.92079,"(40.77079, -73.92079)",28 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490227,E-Bike,Sedan,,, +12/26/2021,13:50,BROOKLYN,11219,40.636726,-74.00251,"(40.636726, -74.00251)",,,962 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490647,Sedan,Sedan,,, +12/19/2021,2:17,MANHATTAN,10016,40.744442,-73.979065,"(40.744442, -73.979065)",EAST 32 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490742,Sedan,,,, +12/28/2021,7:45,BRONX,10454,40.812824,-73.923836,"(40.812824, -73.923836)",3 AVENUE,EAST 142 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4490368,Sedan,E-Bike,,, +03/30/2022,13:49,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514838,Chassis Cab,Sedan,,, +12/28/2021,14:30,,,40.693413,-73.940125,"(40.693413, -73.940125)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490351,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,12:10,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4490667,Sedan,,,, +12/28/2021,17:04,,,40.69841,-73.913315,"(40.69841, -73.913315)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490415,,,,, +12/28/2021,19:00,,,40.59981,-74.00857,"(40.59981, -74.00857)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490486,Sedan,,,, +12/17/2021,9:10,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,KINGSTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490827,Sedan,,,, +12/28/2021,5:54,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4490544,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,19:20,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,10:00,,,40.678455,-73.949684,"(40.678455, -73.949684)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490795,Sedan,Sedan,,, +12/23/2021,0:00,,,40.607754,-74.13205,"(40.607754, -74.13205)",BRADLEY AVENUE,SOUTH GANNON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490817,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,6:15,STATEN ISLAND,10305,40.586105,-74.09109,"(40.586105, -74.09109)",SIMPSON STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4490835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/28/2021,19:00,,,40.58175,-74.10429,"(40.58175, -74.10429)",HUNTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490441,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,18:01,MANHATTAN,10010,40.737545,-73.98409,"(40.737545, -73.98409)",3 AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515671,Taxi,E-Bike,,, +03/29/2022,5:24,,,40.776295,-73.98215,"(40.776295, -73.98215)",BROADWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Fell Asleep,,,,4515380,Ambulance,Taxi,,, +03/30/2022,1:45,BROOKLYN,11226,40.64491,-73.95802,"(40.64491, -73.95802)",,,1062 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514933,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,9:37,BROOKLYN,11233,40.67449,-73.916664,"(40.67449, -73.916664)",,,331 SARATOGA AVENUE,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4515619,Bus,,,, +03/30/2022,15:38,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515243,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,17:28,BRONX,10460,40.836273,-73.888435,"(40.836273, -73.888435)",,,1707 SOUTHERN BOULEVARD,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4515203,Sedan,Pick-up Truck,,, +03/31/2022,7:30,BROOKLYN,11207,40.66965,-73.89332,"(40.66965, -73.89332)",VERMONT STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515108,Station Wagon/Sport Utility Vehicle,Trailer,,, +04/01/2022,13:07,MANHATTAN,10009,40.73135,-73.98256,"(40.73135, -73.98256)",EAST 14 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515591,E-Scooter,,,, +03/31/2022,20:30,,,40.83236,-73.93197,"(40.83236, -73.93197)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515423,Sedan,Tractor Truck Diesel,,, +03/31/2022,7:05,QUEENS,11102,40.769012,-73.9224,"(40.769012, -73.9224)",,,28-05 29 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4515333,Sedan,Motorcycle,Sedan,, +03/27/2022,10:00,QUEENS,11106,40.75377,-73.92654,"(40.75377, -73.92654)",,,36-50 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515441,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,10:33,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515640,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,4:45,BROOKLYN,11237,40.707153,-73.93149,"(40.707153, -73.93149)",KNICKERBOCKER AVENUE,INGRAHAM STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515904,Sedan,,,, +12/11/2021,14:50,BROOKLYN,11234,40.63075,-73.92425,"(40.63075, -73.92425)",AVENUE I,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486158,Sedan,Sedan,,, +10/01/2021,17:00,,,40.6825692,-73.7820143,"(40.6825692, -73.7820143)",119 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464308,Sedan,,,, +12/10/2021,9:30,BRONX,10461,40.839344,-73.834236,"(40.839344, -73.834236)",,,2850 HARRINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486143,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,23:37,QUEENS,11693,40.60164,-73.820274,"(40.60164, -73.820274)",CROSS BAY BOULEVARD,EAST 16 ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4515291,Sedan,Pick-up Truck,Pick-up Truck,Sedan, +04/01/2022,4:09,,,40.748722,-73.89881,"(40.748722, -73.89881)",69 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515313,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,0:00,BROOKLYN,11234,40.621216,-73.93539,"(40.621216, -73.93539)",FLATBUSH AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515515,Box Truck,Sedan,,, +04/01/2022,21:50,QUEENS,11378,40.73225,-73.92452,"(40.73225, -73.92452)",43 STREET,54 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515490,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,14:55,,,40.857903,-73.86468,"(40.857903, -73.86468)",WALLACE AVENUE,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4514938,Sedan,,,, +03/31/2022,17:20,,,40.724167,-74.00113,"(40.724167, -74.00113)",WOOSTER STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515606,Sedan,ELECTRIC S,,, +04/01/2022,3:53,,,40.60954,-74.13226,"(40.60954, -74.13226)",,,108 BRADLEY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4515267,Sedan,,,, +03/31/2022,17:35,MANHATTAN,10036,40.7577,-73.98946,"(40.7577, -73.98946)",,,675 8 AVENUE,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4515583,Bike,Bike,,, +03/31/2022,9:00,QUEENS,11377,40.756298,-73.89893,"(40.756298, -73.89893)",32 AVENUE,68 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514997,Station Wagon/Sport Utility Vehicle,,,, +02/25/2022,2:30,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505449,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,4:34,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4515119,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/01/2022,17:00,STATEN ISLAND,10301,40.643124,-74.07705,"(40.643124, -74.07705)",STUYVESANT PLACE,SCHUYLER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515802,Sedan,,,, +04/01/2022,20:00,BROOKLYN,11210,40.636395,-73.945854,"(40.636395, -73.945854)",,,3216 FARRAGUT ROAD,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515627,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/30/2022,18:50,BROOKLYN,11229,40.60924,-73.95644,"(40.60924, -73.95644)",,,1663 EAST 17 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514920,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,9:40,MANHATTAN,10011,40.738686,-73.99588,"(40.738686, -73.99588)",WEST 16 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515429,Sedan,,,, +03/31/2022,19:59,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515757,,,,, +03/31/2022,7:00,BROOKLYN,11220,40.641533,-74.01045,"(40.641533, -74.01045)",6 AVENUE,54 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4515470,Bike,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,16:49,BROOKLYN,11220,40.636505,-74.02176,"(40.636505, -74.02176)",,,426 67 STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,Unspecified,,,4514891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/30/2022,16:28,STATEN ISLAND,10305,40.606594,-74.0754,"(40.606594, -74.0754)",SAINT JOHNS AVENUE,NARROWS ROAD NORTH,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515158,Sedan,,,, +03/31/2022,10:30,,,40.75112,-73.97127,"(40.75112, -73.97127)",EAST 44 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4515178,Sedan,Sedan,,, +03/20/2022,14:30,,,40.840195,-73.94307,"(40.840195, -73.94307)",FORT WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515635,Sedan,Bike,,, +04/01/2022,18:19,BROOKLYN,11223,40.59219,-73.97492,"(40.59219, -73.97492)",AVENUE W,LAKE STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4515933,Sedan,Sedan,,, +03/30/2022,16:13,BRONX,10460,40.844486,-73.88692,"(40.844486, -73.88692)",,,811 EAST 178 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4515697,Sedan,Sedan,Sedan,, +03/30/2022,7:35,,,40.83005,-73.922424,"(40.83005, -73.922424)",EAST 164 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515025,Bus,Sedan,,, +03/30/2022,11:30,,,40.71659,-73.74293,"(40.71659, -73.74293)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,3:46,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Following Too Closely,,,,4514950,Taxi,Dump,,, +03/31/2022,11:57,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4515276,Sedan,,,, +06/02/2021,18:32,BRONX,10467,,,,,,3225 RESERVOIR OVAL EAST,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4423072,Moped,,,, +04/01/2022,20:16,BROOKLYN,11235,40.58185,-73.96569,"(40.58185, -73.96569)",,,2843 BRIGHTON 3 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515408,Station Wagon/Sport Utility Vehicle,Dump,,, +04/01/2022,17:40,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515727,Sedan,Sedan,,, +04/01/2022,21:46,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4515471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/30/2022,15:00,MANHATTAN,10013,40.720486,-74.00723,"(40.720486, -74.00723)",,,22 ERICSSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514981,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,12:30,,,40.659355,-73.9992,"(40.659355, -73.9992)",4 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515345,Sedan,Bike,,, +03/29/2022,12:00,,,40.782055,-73.95373,"(40.782055, -73.95373)",EAST 90 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515932,Sedan,Bus,,, +04/01/2022,10:00,MANHATTAN,10033,40.844788,-73.93705,"(40.844788, -73.93705)",SAINT NICHOLAS AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515646,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,19:00,,,40.678154,-73.94416,"(40.678154, -73.94416)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515752,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,22:00,,,,,,KINGSLAND AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515212,Sedan,Tractor Truck Diesel,,, +03/30/2022,20:00,QUEENS,11435,40.693485,-73.81087,"(40.693485, -73.81087)",,,137-29 102 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4515962,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,10:25,MANHATTAN,10023,40.775486,-73.98217,"(40.775486, -73.98217)",WEST 68 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4515401,Box Truck,Taxi,,, +03/30/2022,16:47,,,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515135,Sedan,,,, +03/29/2022,8:34,MANHATTAN,10029,40.790627,-73.942444,"(40.790627, -73.942444)",EAST 106 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515605,Bus,Sedan,,, +03/31/2022,1:00,BROOKLYN,11232,40.65912,-74.00181,"(40.65912, -74.00181)",,,122 29 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4515340,Sedan,Sedan,Sedan,, +03/31/2022,22:05,QUEENS,11372,40.748974,-73.87111,"(40.748974, -73.87111)",,,95-06 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515247,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,7:30,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514986,Sedan,,,, +03/13/2022,1:40,,,40.63989,-74.02162,"(40.63989, -74.02162)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4515539,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,0:00,MANHATTAN,10019,40.763298,-73.990555,"(40.763298, -73.990555)",,,350 WEST 49 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515239,Van,,,, +03/31/2022,17:00,QUEENS,11101,40.743366,-73.942986,"(40.743366, -73.942986)",SKILLMAN AVENUE,PEARSON PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515139,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,5:26,BRONX,10453,40.8514,-73.90606,"(40.8514, -73.90606)",CRESTON AVENUE,EAST 179 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514728,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,19:53,QUEENS,11416,40.684143,-73.86152,"(40.684143, -73.86152)",,,94-11 78 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515199,Sedan,Sedan,,, +04/01/2022,17:02,,,40.757286,-73.97812,"(40.757286, -73.97812)",WEST 48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515455,Sedan,,,, +03/31/2022,0:30,STATEN ISLAND,10305,,,,,,211 father capodanno blvd,0,0,0,0,0,0,0,0,Unspecified,,,,,4515161,Sedan,,,, +03/30/2022,20:05,,,40.677032,-73.824684,"(40.677032, -73.824684)",114 STREET,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4514906,Sedan,,,, +03/28/2022,15:50,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515675,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,16:55,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",EAST 120 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4515044,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/30/2022,3:28,QUEENS,11428,40.717834,-73.75159,"(40.717834, -73.75159)",210 PLACE,93 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514832,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,3:21,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4464440,Sedan,,,, +04/01/2022,14:52,QUEENS,11412,40.704006,-73.7668,"(40.704006, -73.7668)",109 AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4515684,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,13:15,BROOKLYN,11249,40.69913,-73.958954,"(40.69913, -73.958954)",,,7 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,4:40,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",FLATBUSH AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515798,Sedan,,,, +04/01/2022,18:50,MANHATTAN,10022,40.75653,-73.966644,"(40.75653, -73.966644)",,,310 EAST 53 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515436,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/27/2022,13:30,MANHATTAN,10001,40.750675,-74.00831,"(40.750675, -74.00831)",,,169 12 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515713,Sedan,Sedan,,, +04/01/2022,14:17,BRONX,10457,40.850067,-73.90281,"(40.850067, -73.90281)",EAST 178 STREET,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515372,Sedan,Sedan,,, +04/01/2022,13:36,MANHATTAN,10011,,,,14 STREET,8 Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515577,PK,Sedan,,, +03/31/2022,8:15,,,40.83829,-73.930016,"(40.83829, -73.930016)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4515035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,7:45,QUEENS,11101,40.745068,-73.93826,"(40.745068, -73.93826)",29 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515484,Sedan,,,, +04/01/2022,0:20,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515992,Sedan,,,, +03/29/2022,12:23,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",DE KALB AVENUE,WYCKOFF AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515722,Box Truck,,,, +09/09/2021,10:00,MANHATTAN,10027,40.80951,-73.94556,"(40.80951, -73.94556)",,,127 WEST 127 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455509,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,18:45,BROOKLYN,11204,40.612495,-73.97922,"(40.612495, -73.97922)",65 STREET,23 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4462066,Sedan,,,, +10/01/2021,16:00,STATEN ISLAND,10306,40.56895,-74.12491,"(40.56895, -74.12491)",AMBOY ROAD,TYSENS LANE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4463045,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,16:40,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464044,Sedan,,,, +10/02/2021,15:15,QUEENS,11368,40.745598,-73.864296,"(40.745598, -73.864296)",,,45-14 NATIONAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,4:30,BRONX,10455,0,0,"(0.0, 0.0)",KELLY STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464563,Sedan,,,, +10/02/2021,15:55,MANHATTAN,10029,40.788586,-73.95529,"(40.788586, -73.95529)",EAST 97 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,6:50,BRONX,10452,,,,EDWARD L GRANT HIGHWAY,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464541,Sedan,Sedan,,, +10/01/2021,9:30,QUEENS,11377,40.73566,-73.9019,"(40.73566, -73.9019)",51 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464602,Sedan,Sedan,,, +09/29/2021,13:30,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464551,Tanker,Sedan,,, +09/04/2021,0:21,,,0,0,"(0.0, 0.0)",49 STREET,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464577,Sedan,,,, +10/03/2021,15:26,,,0,0,"(0.0, 0.0)",AVENUE D,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4464526,Bike,,,, +03/30/2022,16:40,MANHATTAN,10001,40.753925,-73.99761,"(40.753925, -73.99761)",WEST 34 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4515690,Bus,Pick-up Truck,,, +03/26/2022,12:20,QUEENS,11372,40.7494,-73.88425,"(40.7494, -73.88425)",,,37-37 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515507,Station Wagon/Sport Utility Vehicle,,,, +03/02/2022,9:07,BROOKLYN,11206,40.694485,-73.93735,"(40.694485, -73.93735)",LEWIS AVENUE,HART STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515320,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,13:35,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504509,Sedan,Sedan,,, +12/30/2021,5:44,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4490575,Sedan,Sedan,,, +12/06/2021,6:40,BROOKLYN,11220,0,0,"(0.0, 0.0)",3 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486207,Sedan,,,, +10/03/2021,20:00,QUEENS,11373,40.7461,-73.87178,"(40.7461, -73.87178)",CASE STREET,94 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463605,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,4:17,,,40.67636,-73.86643,"(40.67636, -73.86643)",CONDUIT BOULEVARD,SHERIDAN AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4463792,Sedan,Sedan,,, +10/03/2021,19:09,QUEENS,11434,40.68542,-73.76526,"(40.68542, -73.76526)",120 AVENUE,178 PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4463666,Sedan,Motorcycle,,, +10/02/2021,18:13,STATEN ISLAND,10309,,,,,,76 EL CAMINO LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464486,Sedan,Sedan,,, +09/29/2021,21:38,BRONX,10458,40.85779,-73.88264,"(40.85779, -73.88264)",EAST FORDHAM ROAD,CAMBRELENG AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4464261,Station Wagon/Sport Utility Vehicle,Ambulance,,, +03/31/2022,13:00,BROOKLYN,11212,40.660984,-73.90879,"(40.660984, -73.90879)",,,211 RIVERDALE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515183,Box Truck,,,, +10/03/2021,1:41,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",212 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463287,2 dr sedan,,,, +10/03/2021,0:00,,,40.72486,-73.98441,"(40.72486, -73.98441)",AVENUE A,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463639,Sedan,Bike,,, +10/03/2021,2:45,QUEENS,11420,40.680202,-73.82123,"(40.680202, -73.82123)",,,111-48 LEFFERTS BOULEVARD,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4463692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/03/2021,2:30,MANHATTAN,10001,40.749912,-73.99584,"(40.749912, -73.99584)",,,307 WEST 30 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464103,Pick-up Truck,,,, +10/03/2021,12:30,BROOKLYN,11218,40.63558,-73.97786,"(40.63558, -73.97786)",,,101 DITMAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,10:11,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",TROUTMAN STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4464425,Sedan,,,, +10/03/2021,2:08,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463317,Sedan,Sedan,,, +10/03/2021,23:20,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4463704,Tractor Truck Diesel,Sedan,,, +04/01/2022,14:56,MANHATTAN,10027,40.80922,-73.94683,"(40.80922, -73.94683)",,,167 WEST 126 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515668,PK,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,21:30,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464033,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,7:43,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4463357,Garbage or Refuse,Sedan,,, +10/03/2021,19:00,BROOKLYN,11238,40.687088,-73.96662,"(40.687088, -73.96662)",,,367 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463581,Sedan,Sedan,,, +10/03/2021,21:57,BROOKLYN,11207,40.655502,-73.88414,"(40.655502, -73.88414)",,,190 COZINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463814,Station Wagon/Sport Utility Vehicle,Bike,,, +10/03/2021,2:10,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",EAST 149 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4463867,Sedan,,,, +10/03/2021,5:30,QUEENS,11418,40.696613,-73.832115,"(40.696613, -73.832115)",116 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463921,Sedan,,,, +10/03/2021,6:30,BROOKLYN,11209,40.635834,-74.0374,"(40.635834, -74.0374)",,,7209 SHORE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4463537,Sedan,,,, +10/03/2021,8:45,QUEENS,11367,40.723644,-73.81108,"(40.723644, -73.81108)",,,153-48 77 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463420,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,22:01,MANHATTAN,10075,40.772156,-73.95591,"(40.772156, -73.95591)",,,1478 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464351,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,12:00,BRONX,10460,40.83677,-73.88597,"(40.83677, -73.88597)",VYSE AVENUE,EAST 174 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464397,moped,Sedan,,, +09/26/2021,17:41,BROOKLYN,11206,40.69979,-73.950096,"(40.69979, -73.950096)",MARCY AVENUE,FLUSHING AVENUE,,6,0,0,0,0,0,6,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4464461,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +10/03/2021,3:00,BRONX,10466,40.88516,-73.83564,"(40.88516, -73.83564)",,,3626 PRATT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463499,Sedan,Sedan,,, +10/03/2021,0:00,QUEENS,11415,40.70521,-73.82203,"(40.70521, -73.82203)",KEW GARDEN ROAD,86 ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463915,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/03/2021,11:35,,,40.79286,-73.96754,"(40.79286, -73.96754)",WEST 96 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463432,Sedan,Bike,,, +10/02/2021,12:00,MANHATTAN,10039,40.82523,-73.939735,"(40.82523, -73.939735)",,,298 WEST 149 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464283,Sedan,Sedan,,, +10/03/2021,19:35,QUEENS,11372,40.748013,-73.889755,"(40.748013, -73.889755)",,,37-39 76 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463568,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/03/2021,1:56,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4463363,Sedan,Tractor Truck Gasoline,,, +10/03/2021,6:00,QUEENS,11435,40.70024,-73.814926,"(40.70024, -73.814926)",,,90-35 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463948,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/03/2021,12:00,QUEENS,11106,40.763966,-73.92267,"(40.763966, -73.92267)",32 STREET,31 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463686,Bike,Sedan,,, +10/03/2021,19:30,MANHATTAN,10021,40.76687,-73.959785,"(40.76687, -73.959785)",2 AVENUE,EAST 69 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463724,Sedan,Motorcycle,,, +10/03/2021,11:24,QUEENS,11691,40.604275,-73.74571,"(40.604275, -73.74571)",,,1039 BEACH 9 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4464005,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,3:45,MANHATTAN,10010,40.738647,-73.984764,"(40.738647, -73.984764)",,,145 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463873,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,5:05,BROOKLYN,11236,40.634888,-73.8909,"(40.634888, -73.8909)",,,1955 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4463971,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/03/2021,11:00,,,40.61384,-73.981445,"(40.61384, -73.981445)",65 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4463397,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,13:40,BROOKLYN,11211,40.713085,-73.94415,"(40.713085, -73.94415)",AINSLIE STREET,GRAHAM AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4463550,Bike,,,, +10/03/2021,20:20,BROOKLYN,11215,40.677406,-73.983055,"(40.677406, -73.983055)",UNION STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463648,Taxi,,,, +08/21/2021,17:30,MANHATTAN,10002,40.716713,-73.99272,"(40.716713, -73.99272)",,,67 ELDRIDGE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464338,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,1:04,,,40.696686,-73.9378,"(40.696686, -73.9378)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464467,Sedan,AMBULANCE,,, +10/03/2021,15:28,BRONX,10461,0,0,"(0.0, 0.0)",,,1321 ELLISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/03/2021,0:50,,,40.696335,-73.930504,"(40.696335, -73.930504)",BUSHWICK AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4464167,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/02/2021,23:30,BRONX,10456,40.832733,-73.89802,"(40.832733, -73.89802)",BOSTON ROAD,JEFFERSON PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464353,Sedan,Taxi,,, +10/03/2021,21:00,BROOKLYN,11205,40.690468,-73.96932,"(40.690468, -73.96932)",,,232 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463582,Sedan,,,, +10/02/2021,17:10,BROOKLYN,11233,40.678116,-73.90787,"(40.678116, -73.90787)",FULTON STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464442,Sedan,,,, +10/03/2021,11:05,,,40.663605,-73.934395,"(40.663605, -73.934395)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,9:40,STATEN ISLAND,10304,40.613586,-74.08267,"(40.613586, -74.08267)",PARK HILL AVENUE,SOBEL COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464287,Sedan,Sedan,Sedan,, +10/03/2021,12:50,,,40.705147,-73.90213,"(40.705147, -73.90213)",FOREST AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,16:39,BROOKLYN,11234,0,0,"(0.0, 0.0)",,,3607 AVENUE S,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464097,Sedan,Sedan,,, +10/03/2021,9:52,QUEENS,11416,40.681046,-73.849304,"(40.681046, -73.849304)",103 AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4463894,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/03/2021,11:40,MANHATTAN,10027,40.81183,-73.96112,"(40.81183, -73.96112)",WEST 122 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463933,Sedan,Sedan,,, +09/30/2021,17:55,,,40.679035,-73.938515,"(40.679035, -73.938515)",HERKIMER STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4464462,Sedan,Sedan,Sedan,Sedan,Sedan +10/03/2021,6:00,BROOKLYN,11236,40.643635,-73.899155,"(40.643635, -73.899155)",,,1148 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464075,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/24/2021,4:20,QUEENS,11361,40.76619,-73.77237,"(40.76619, -73.77237)",,,38-20 BELL BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4464275,Sedan,Sedan,,, +10/03/2021,11:00,QUEENS,11370,40.7672,-73.887825,"(40.7672, -73.887825)",GRAND CENTRAL PARKWAY,DITMARS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463678,Sedan,Sedan,,, +10/03/2021,21:00,BRONX,10455,40.810413,-73.90468,"(40.810413, -73.90468)",,,869 EAST 147 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464224,Sedan,,,, +10/03/2021,4:40,,,40.699715,-73.79869,"(40.699715, -73.79869)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463709,Sedan,Sedan,,, +10/03/2021,21:30,BROOKLYN,11209,40.63415,-74.02964,"(40.63415, -74.02964)",72 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463634,Sedan,,,, +10/03/2021,22:16,,,,,,WEST 155 STREET BRIDGE,HARLEM RIVER DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463828,Motorcycle,Sedan,,, +10/03/2021,9:05,MANHATTAN,10026,40.799953,-73.95274,"(40.799953, -73.95274)",,,71 WEST 112 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464328,Sedan,Sedan,,, +10/03/2021,3:10,BROOKLYN,11226,40.646885,-73.94916,"(40.646885, -73.94916)",NOSTRAND AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463593,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,20:32,BROOKLYN,11205,40.69419,-73.976,"(40.69419, -73.976)",,,125 NORTH PORTLAND AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464136,Sedan,Bike,,, +10/03/2021,22:30,MANHATTAN,10034,40.8645,-73.91904,"(40.8645, -73.91904)",,,501 WEST 207 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464371,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,22:44,BROOKLYN,11208,40.684414,-73.869514,"(40.684414, -73.869514)",LINCOLN AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463743,FIRE TRUCK,Sedan,,, +10/03/2021,11:00,,,40.7858,-73.85131,"(40.7858, -73.85131)",14 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463642,Sedan,Sedan,,, +10/03/2021,0:42,,,40.664677,-73.84509,"(40.664677, -73.84509)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4463763,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,12:00,,,40.66858,-73.84223,"(40.66858, -73.84223)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463693,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/03/2021,12:08,MANHATTAN,10031,40.824825,-73.95066,"(40.824825, -73.95066)",,,523 WEST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464236,Pick-up Truck,Sedan,,, +10/03/2021,3:05,MANHATTAN,10002,40.718292,-73.98248,"(40.718292, -73.98248)",RIVINGTON STREET,PITT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463288,Station Wagon/Sport Utility Vehicle,Bike,,, +09/17/2021,2:20,,,40.72656,-73.83802,"(40.72656, -73.83802)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4464298,Sedan,Sedan,,, +10/03/2021,14:27,BRONX,10462,40.83432,-73.85058,"(40.83432, -73.85058)",,,2241 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4464438,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,22:15,MANHATTAN,10016,,,,tunnel exit street,east 39 street,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463612,Sedan,Bike,,, +10/03/2021,11:09,,,40.874638,-73.909744,"(40.874638, -73.909744)",BROADWAY,WEST 225 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464058,Sedan,Bike,,, +10/03/2021,20:00,QUEENS,11385,40.704525,-73.86939,"(40.704525, -73.86939)",79 LANE,78 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464417,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,8:55,BROOKLYN,11207,40.67482,-73.89368,"(40.67482, -73.89368)",WYONA STREET,LIBERTY AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4515109,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,20:34,BROOKLYN,11218,40.642624,-73.97987,"(40.642624, -73.97987)",,,91 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464196,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,3:45,,,40.78944,-73.82045,"(40.78944, -73.82045)",CROSS ISLAND PARKWAY,,,7,0,0,0,0,0,7,0,Failure to Yield Right-of-Way,Unspecified,,,,4463331,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,13:31,BROOKLYN,11231,40.681625,-74.00132,"(40.681625, -74.00132)",,,152 SUMMIT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464259,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,19:50,,,40.702892,-73.94422,"(40.702892, -73.94422)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463592,Sedan,Van,Pick-up Truck,, +10/03/2021,18:00,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463694,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,8:15,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423295,Sedan,,,, +10/01/2021,17:35,,,40.67875,-73.794,"(40.67875, -73.794)",146 STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464309,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/03/2021,2:20,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463635,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/03/2021,14:11,,,40.608776,-74.09113,"(40.608776, -74.09113)",CLOVE ROAD,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464032,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,8:00,BROOKLYN,11221,40.698166,-73.924614,"(40.698166, -73.924614)",,,1323 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464135,Van,,,, +10/03/2021,1:14,,,40.712803,-73.95417,"(40.712803, -73.95417)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463667,Sedan,,,, +08/02/2021,0:13,,,40.69424,-73.810905,"(40.69424, -73.810905)",101 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4464490,Sedan,Sedan,,, +09/28/2021,17:34,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",CLAREMONT PARKWAY,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464398,Sedan,Sedan,,, +10/02/2021,9:51,QUEENS,11434,40.685673,-73.76338,"(40.685673, -73.76338)",180 STREET,LESLIE ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4464286,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/26/2021,15:30,QUEENS,11106,40.75888,-73.93011,"(40.75888, -73.93011)",29 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464556,Station Wagon/Sport Utility Vehicle,FDNY,,, +10/03/2021,1:15,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463452,Sedan,Taxi,,, +10/03/2021,5:09,BRONX,10466,40.89154,-73.83935,"(40.89154, -73.83935)",,,4011 HILL AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4463503,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/03/2021,0:00,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BROWN PLACE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4463881,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/28/2021,12:55,,,40.69309,-73.94296,"(40.69309, -73.94296)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464381,Sedan,,,, +10/03/2021,14:34,BRONX,10466,40.891384,-73.83929,"(40.891384, -73.83929)",,,4003 HILL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4463606,Sedan,,,, +10/03/2021,17:15,MANHATTAN,10001,40.747852,-73.99291,"(40.747852, -73.99291)",WEST 29 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463990,Sedan,Sedan,,, +10/03/2021,11:45,,,40.667824,-73.93122,"(40.667824, -73.93122)",UNION STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,3:36,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",HEMPSTEAD AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4463398,Sedan,Sedan,Sedan,Sedan, +10/03/2021,22:24,BROOKLYN,11208,40.684414,-73.869514,"(40.684414, -73.869514)",FULTON STREET,LINCOLN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463779,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,12:40,BRONX,10462,0,0,"(0.0, 0.0)",,,726 LYDIG AVENUE,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,,,,4463905,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,8:20,,,40.622944,-74.15826,"(40.622944, -74.15826)",,,10 BENJAMIN DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463474,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,9:34,QUEENS,11354,40.772346,-73.824684,"(40.772346, -73.824684)",PARSONS BOULEVARD,29 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4463645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,5:45,,,40.69174,-73.91401,"(40.69174, -73.91401)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4464169,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,21:30,,,40.708004,-73.84458,"(40.708004, -73.84458)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,Following Too Closely,,,4464274,Sedan,Pick-up Truck,,, +10/03/2021,15:30,QUEENS,11375,0,0,"(0.0, 0.0)",HARROW STREET,71 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464011,Sedan,,,, +10/03/2021,21:12,,,40.684856,-73.97805,"(40.684856, -73.97805)",,,FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4463601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,1:30,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4463661,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:48,BRONX,10466,40.89317,-73.859085,"(40.89317, -73.859085)",,,662 EAST 232 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464480,Sedan,Box Truck,,, +10/03/2021,6:10,,,40.682507,-73.94375,"(40.682507, -73.94375)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464466,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,0:10,STATEN ISLAND,10301,40.637623,-74.10274,"(40.637623, -74.10274)",SPRINGHILL AVENUE,BRENTWOOD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,15:42,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4464146,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/03/2021,9:50,BRONX,10470,40.89844,-73.87228,"(40.89844, -73.87228)",,,119 EAST 237 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464447,Sedan,,,, +10/03/2021,19:10,BRONX,10454,40.801624,-73.90968,"(40.801624, -73.90968)",WALNUT AVENUE,EAST 136 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4463871,Sedan,Tractor Truck Diesel,,, +10/03/2021,3:59,MANHATTAN,10001,40.749973,-74.002525,"(40.749973, -74.002525)",,,289 10 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4463354,Sedan,Sedan,,, +10/03/2021,20:30,BRONX,10462,40.83215,-73.84932,"(40.83215, -73.84932)",,,2258 GLEASON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4463968,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/03/2021,17:50,BRONX,10473,40.807182,-73.85155,"(40.807182, -73.85155)",SOUND VIEW AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4463569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/03/2021,23:04,QUEENS,11434,40.66723,-73.785034,"(40.66723, -73.785034)",NORTH CONDUIT AVENUE,136 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464585,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,22:15,,,,,,DITMARS BOULEVARD,97 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463914,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,1:50,BRONX,10458,40.856987,-73.890305,"(40.856987, -73.890305)",,,518 EAST 187 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463804,Taxi,Station Wagon/Sport Utility Vehicle,Taxi,, +10/03/2021,5:00,QUEENS,11417,40.67812,-73.85828,"(40.67812, -73.85828)",79 STREET,GLENMORE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4463685,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/30/2021,8:35,,,,,,PELHAM PARKWAY,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4464475,Sedan,,,, +09/30/2021,10:00,STATEN ISLAND,10308,40.549427,-74.16019,"(40.549427, -74.16019)",ARMSTRONG AVENUE,LAMOKA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464280,Sedan,Sedan,,, +10/03/2021,18:30,BROOKLYN,11207,40.66447,-73.89593,"(40.66447, -73.89593)",LIVONIA AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463723,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,9:43,BROOKLYN,11207,40.689598,-73.91025,"(40.689598, -73.91025)",CENTRAL AVENUE,ELDERT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464147,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,15:50,BRONX,10463,40.88102,-73.90331,"(40.88102, -73.90331)",,,5665 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464504,Sedan,Sedan,,, +10/03/2021,4:40,,,40.663284,-73.96096,"(40.663284, -73.96096)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463622,Taxi,Sedan,,, +10/03/2021,13:00,MANHATTAN,10018,0,0,"(0.0, 0.0)",,,325 WEST 38 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4463991,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,2:50,MANHATTAN,10002,40.71872,-73.99062,"(40.71872, -73.99062)",,,100 ALLEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464086,Sedan,,,, +10/03/2021,6:15,QUEENS,11412,40.700005,-73.7547,"(40.700005, -73.7547)",MURDOCK AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463660,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,1:50,QUEENS,11421,40.69552,-73.86456,"(40.69552, -73.86456)",79 STREET,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463920,Sedan,,,, +10/03/2021,5:20,BRONX,10457,40.84263,-73.90597,"(40.84263, -73.90597)",TOPPING AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4463362,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,18:21,BROOKLYN,11207,40.658413,-73.8861,"(40.658413, -73.8861)",,,580 STANLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463740,Sedan,Sedan,,, +10/03/2021,12:00,MANHATTAN,10023,40.774853,-73.98067,"(40.774853, -73.98067)",COLUMBUS AVENUE,WEST 68 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4463534,Sedan,,,, +10/03/2021,0:30,MANHATTAN,10003,40.736004,-73.99362,"(40.736004, -73.99362)",5 AVENUE,WEST 14 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,16:41,MANHATTAN,10017,0,0,"(0.0, 0.0)",,,230 EAST 44 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4463610,Sedan,Taxi,,, +10/03/2021,15:15,BROOKLYN,11207,0,0,"(0.0, 0.0)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463739,Sedan,,,, +03/31/2022,7:30,BROOKLYN,11220,40.646793,-74.013145,"(40.646793, -74.013145)",,,368 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515433,Sedan,Bus,,, +10/03/2021,16:00,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4464210,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,13:49,MANHATTAN,10031,0,0,"(0.0, 0.0)",,,540 WEST 135 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4464237,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,2:00,,,40.66706,-73.7392,"(40.66706, -73.7392)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463289,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,16:10,QUEENS,11434,0,0,"(0.0, 0.0)",MERRICK BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464302,Sedan,School Bus,,, +10/03/2021,6:33,BRONX,10467,40.88768,-73.877556,"(40.88768, -73.877556)",,,3686 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464038,Sedan,,,, +09/28/2021,18:30,,,40.60228,-74.140366,"(40.60228, -74.140366)",,,835 FOREST HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464434,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,1:08,BROOKLYN,11208,40.687347,-73.87516,"(40.687347, -73.87516)",,,39 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4464384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,22:00,BROOKLYN,11236,40.63465,-73.90733,"(40.63465, -73.90733)",,,1056 EAST 84 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4514955,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,13:00,MANHATTAN,10003,40.73599,-73.98946,"(40.73599, -73.98946)",UNION SQUARE EAST,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463471,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,15:05,BROOKLYN,11218,0,0,"(0.0, 0.0)",,,599 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463837,Sedan,Motorcycle,,, +12/18/2021,11:29,QUEENS,11368,40.753147,-73.86339,"(40.753147, -73.86339)",,,37-13 104 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515855,Sedan,Pick-up Truck,,, +10/03/2021,16:00,BROOKLYN,11206,0,0,"(0.0, 0.0)",,,405 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463549,E-Bike,Sedan,,, +10/03/2021,22:30,BROOKLYN,11249,40.720013,-73.96204,"(40.720013, -73.96204)",,,127 KENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463883,Sedan,Sedan,,, +10/03/2021,19:51,MANHATTAN,10026,40.80327,-73.95812,"(40.80327, -73.95812)",,,312 MANHATTAN AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464326,Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/03/2021,14:35,QUEENS,11429,0,0,"(0.0, 0.0)",223 STREET,112 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463598,Sedan,,,, +10/03/2021,2:35,,,40.817596,-73.95319,"(40.817596, -73.95319)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4463934,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +09/29/2021,6:03,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",111 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4464376,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/03/2021,0:25,,,40.71713,-73.7986,"(40.71713, -73.7986)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4463392,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/03/2021,20:22,BROOKLYN,11210,40.621265,-73.952614,"(40.621265, -73.952614)",AVENUE L,EAST 23 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463839,Taxi,,,, +10/03/2021,10:00,QUEENS,11419,40.692574,-73.81142,"(40.692574, -73.81142)",,,102-26 VANWYCK EXPRESSWAY,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4463928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,13:30,STATEN ISLAND,10304,40.612183,-74.08798,"(40.612183, -74.08798)",,,590 RICHMOND ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463982,Sedan,Sedan,,, +10/03/2021,4:14,BROOKLYN,11233,40.671555,-73.915924,"(40.671555, -73.915924)",,,1855 PARK PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4463404,Sedan,Sedan,,, +10/03/2021,0:00,QUEENS,11373,40.74266,-73.88165,"(40.74266, -73.88165)",,,83-06 VIETOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463547,Sedan,,,, +10/03/2021,13:14,BROOKLYN,11206,40.70447,-73.94274,"(40.70447, -73.94274)",SEIGEL STREET,GRAHAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463676,Sedan,Sedan,,, +10/03/2021,3:00,,,40.8311573,-73.8538364,"(40.8311573, -73.8538364)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463476,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,8:00,,,,,,GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423401,Sedan,Bus,,, +10/01/2021,15:00,MANHATTAN,10029,40.790997,-73.94931,"(40.790997, -73.94931)",EAST 103 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464343,Sedan,,,, +10/02/2021,20:00,BRONX,10460,40.835094,-73.88697,"(40.835094, -73.88697)",EAST 173 STREET,VYSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464367,Sedan,,,, +10/03/2021,10:00,BRONX,10463,40.88145,-73.91685,"(40.88145, -73.91685)",,,2700 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463589,Pick-up Truck,,,, +10/03/2021,19:34,QUEENS,11103,40.76077,-73.91756,"(40.76077, -73.91756)",,,31-12 STEINWAY STREET,1,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4463695,Sedan,E-Bike,,, +10/02/2021,18:30,QUEENS,11432,40.70729,-73.804245,"(40.70729, -73.804245)",,,153-12 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4464330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +10/03/2021,20:15,STATEN ISLAND,10304,40.59265,-74.10083,"(40.59265, -74.10083)",RICHMOND ROAD,CROMWELL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,5:27,STATEN ISLAND,10304,40.614582,-74.08547,"(40.614582, -74.08547)",VANDERBILT AVENUE,HAMILTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464285,,,,, +10/03/2021,6:50,,,40.589367,-73.98093,"(40.589367, -73.98093)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463449,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +10/03/2021,19:15,BROOKLYN,11238,40.682915,-73.96416,"(40.682915, -73.96416)",,,971 FULTON STREET,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4463608,Taxi,,,, +10/03/2021,3:50,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463360,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,14:57,BROOKLYN,11233,0,0,"(0.0, 0.0)",,,679 HALSEY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463572,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,18:00,,,40.832367,-73.82971,"(40.832367, -73.82971)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464439,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,11:55,,,40.859642,-73.899826,"(40.859642, -73.899826)",CRESTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463820,AMBULANCE,Sedan,,, +10/03/2021,12:36,,,,,,GRAND CENTRAL PARKWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4463563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/26/2021,17:06,STATEN ISLAND,10309,40.524612,-74.230446,"(40.524612, -74.230446)",BOSCOMBE AVENUE,TYRELLAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464492,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,21:20,BROOKLYN,11204,40.629913,-73.98668,"(40.629913, -73.98668)",16 AVENUE,51 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464199,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/03/2021,1:31,BRONX,10453,40.848793,-73.91495,"(40.848793, -73.91495)",WEST 176 STREET,HARRISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463937,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/02/2021,16:15,MANHATTAN,10013,40.717464,-74.0053,"(40.717464, -74.0053)",,,71 LEONARD STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464558,Bike,,,, +10/03/2021,4:30,,,40.762875,-73.79516,"(40.762875, -73.79516)",CROCHERON AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4463636,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/03/2021,8:25,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",EAST 149 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463880,Sedan,,,, +10/03/2021,18:33,BROOKLYN,11236,40.63174,-73.90532,"(40.63174, -73.90532)",,,1202 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4463961,Sedan,,,, +10/03/2021,11:57,QUEENS,11418,40.701218,-73.81622,"(40.701218, -73.81622)",,,89-00 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,20:15,,,40.77731,-73.91239,"(40.77731, -73.91239)",28 STREET,,,1,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4463689,E-Bike,,,, +10/03/2021,12:10,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464132,Sedan,Sedan,,, +10/03/2021,15:00,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464314,Sedan,,,, +10/03/2021,10:55,BROOKLYN,11220,40.644306,-74.01804,"(40.644306, -74.01804)",3 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463631,Ambulance,Sedan,,, +10/03/2021,18:42,,,40.694687,-73.91112,"(40.694687, -73.91112)",KNICKERBOCKER AVENUE,,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4464170,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,21:13,,,,,,HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423430,Sedan,Taxi,,, +10/03/2021,21:04,BRONX,10459,40.82364,-73.89391,"(40.82364, -73.89391)",WESTCHESTER AVENUE,FOX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463616,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/03/2021,7:38,MANHATTAN,10013,40.72174,-74.00523,"(40.72174, -74.00523)",CANAL STREET,LAIGHT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463351,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,23:30,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",EAST 180 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464255,Station Wagon/Sport Utility Vehicle,,,, +09/24/2021,7:45,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,14:20,BRONX,10470,0,0,"(0.0, 0.0)",EAST 241 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4463506,E-Bike,Sedan,,, +10/03/2021,10:20,QUEENS,11434,40.68775,-73.79039,"(40.68775, -73.79039)",157 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,9:21,BROOKLYN,11233,40.67878,-73.91986,"(40.67878, -73.91986)",,,1915 FULTON STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464399,Sedan,Bike,,, +09/29/2021,11:15,,,0,0,"(0.0, 0.0)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464310,Beverage Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/03/2021,10:18,,,40.61135,-74.09847,"(40.61135, -74.09847)",CLOVE ROAD,NARROWS ROAD NORTH,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464062,Sedan,Sedan,,, +03/26/2022,11:26,BROOKLYN,11203,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515622,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,17:07,QUEENS,11362,0,0,"(0.0, 0.0)",57 AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463671,Sedan,Sedan,,, +10/02/2021,16:20,BROOKLYN,11216,40.680717,-73.9463,"(40.680717, -73.9463)",MACDONOUGH STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464465,Sedan,E-Scooter,,, +10/03/2021,0:45,BRONX,10460,40.84708,-73.8867,"(40.84708, -73.8867)",EAST 180 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463795,Sedan,,,, +10/03/2021,2:10,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,Unspecified,,,4464088,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/03/2021,2:54,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4463644,Sedan,Sedan,,, +10/03/2021,21:30,QUEENS,11368,40.751545,-73.87085,"(40.751545, -73.87085)",37 AVENUE,JUNCTION BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463602,Station Wagon/Sport Utility Vehicle,Bike,,, +10/03/2021,4:50,MANHATTAN,10031,40.827377,-73.94483,"(40.827377, -73.94483)",,,452 WEST 149 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464230,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,3:21,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464271,Sedan,Sedan,,, +10/03/2021,18:45,BRONX,10455,40.818993,-73.909744,"(40.818993, -73.909744)",EAST 156 STREET,EAGLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463870,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,16:15,,,0,0,"(0.0, 0.0)",CORNAGA AVENUE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4464013,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,0:30,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,View Obstructed/Limited,Unspecified,,,4463684,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/03/2021,7:05,BRONX,10457,40.852318,-73.89258,"(40.852318, -73.89258)",,,4412 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463741,,,,, +10/01/2021,13:50,,,40.80629,-73.95773,"(40.80629, -73.95773)",MORNINGSIDE AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4464325,Motorbike,,,, +10/03/2021,8:45,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4464144,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,20:24,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464415,Sedan,Sedan,,, +10/03/2021,0:30,QUEENS,11420,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4463777,Sedan,,,, +04/01/2022,17:30,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4515466,Pick-up Truck,Taxi,,, +09/26/2021,12:50,,,40.5569311,-74.1748459,"(40.5569311, -74.1748459)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,12:42,BROOKLYN,11208,40.67732,-73.87871,"(40.67732, -73.87871)",,,63 MONTAUK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4464388,Bus,Sedan,Station Wagon/Sport Utility Vehicle,Convertible, +10/03/2021,6:32,BROOKLYN,11237,40.70409,-73.9265,"(40.70409, -73.9265)",,,289 JEFFERSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,3:00,MANHATTAN,10002,40.718582,-73.99175,"(40.718582, -73.99175)",BROOME STREET,ELDRIDGE STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4463302,Sedan,GARBAGE TR,,, +10/03/2021,2:30,BRONX,10467,40.863777,-73.86477,"(40.863777, -73.86477)",,,2525 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464303,Sedan,Sedan,,, +10/03/2021,4:19,,,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,,,6,0,0,0,0,0,6,0,Alcohol Involvement,Unspecified,,,,4464231,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,14:45,,,40.668293,-73.93952,"(40.668293, -73.93952)",UNION STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463625,Sedan,Box Truck,,, +10/03/2021,22:45,QUEENS,11368,40.758106,-73.85721,"(40.758106, -73.85721)",,,112-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463909,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/03/2021,10:40,MANHATTAN,10016,0,0,"(0.0, 0.0)",5 AVENUE,WEST 38 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4463477,Motorcycle,,,, +10/03/2021,16:45,,,40.655743,-73.85908,"(40.655743, -73.85908)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4463885,Sedan,,,, +09/29/2021,8:38,BRONX,10458,40.85885,-73.885956,"(40.85885, -73.885956)",EAST FORDHAM ROAD,HOFFMAN STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464278,Sedan,Sedan,,, +10/03/2021,22:38,BROOKLYN,11226,40.64313,-73.95044,"(40.64313, -73.95044)",,,2814 CLARENDON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464065,Sedan,Sedan,,, +10/03/2021,18:47,,,40.60064,-73.93997,"(40.60064, -73.93997)",BROWN STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463688,Sedan,Pick-up Truck,,, +10/03/2021,4:00,QUEENS,11419,40.6832,-73.82742,"(40.6832, -73.82742)",114 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463722,Sedan,,,, +10/03/2021,17:48,,,,,,134 avenue,176 street,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464582,Sedan,,,, +10/03/2021,4:23,,,40.724667,-73.820786,"(40.724667, -73.820786)",73 AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,12:47,BRONX,10452,40.845886,-73.915085,"(40.845886, -73.915085)",FEATHERBED LANE,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463822,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,19:12,QUEENS,11369,40.76522,-73.8719,"(40.76522, -73.8719)",,,24-34 98 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463560,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,19:55,BROOKLYN,11211,40.70658,-73.954346,"(40.70658, -73.954346)",,,12 HARRISON AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463596,Taxi,,,, +09/27/2021,11:00,,,40.805668,-73.93648,"(40.805668, -73.93648)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464373,Sedan,Sedan,,, +03/31/2022,8:18,BRONX,10451,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,RIVER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515288,Station Wagon/Sport Utility Vehicle,Bike,,, +10/02/2021,4:10,,,40.693005,-73.789856,"(40.693005, -73.789856)",110 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464334,Sedan,Bus,,, +10/03/2021,4:30,BRONX,10461,40.842182,-73.85105,"(40.842182, -73.85105)",,,1753 SEDDON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,22:45,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463658,Sedan,,,, +10/01/2021,17:55,BRONX,10467,40.858406,-73.86792,"(40.858406, -73.86792)",,,2233 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464472,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,18:18,QUEENS,11375,40.71382,-73.85676,"(40.71382, -73.85676)",SELFRIDGE STREET,68 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464296,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,18:00,QUEENS,11101,40.746567,-73.94789,"(40.746567, -73.94789)",,,45-28 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464432,Sedan,Sedan,,, +10/03/2021,14:00,QUEENS,11411,40.6955916,-73.742008,"(40.6955916, -73.742008)",,,217-20 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463565,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,16:05,,,40.754147,-73.722885,"(40.754147, -73.722885)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423500,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,1:21,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4463603,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,15:55,,,0,0,"(0.0, 0.0)",FITCHETT STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4464014,Sedan,Sedan,,, +10/03/2021,19:35,QUEENS,11421,40.684208,-73.86646,"(40.684208, -73.86646)",,,93-09 ELDERTS LANE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,17:35,MANHATTAN,10014,40.733288,-74.005,"(40.733288, -74.005)",,,107 CHRISTOPHER STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4463939,E-Bike,,,, +09/09/2021,19:50,STATEN ISLAND,10309,40.549606,-74.22105,"(40.549606, -74.22105)",,,970 BLOOMINGDALE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464483,Sedan,,,, +10/03/2021,4:30,BRONX,10473,40.816795,-73.850685,"(40.816795, -73.850685)",,,513 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463379,Taxi,,,, +10/03/2021,23:45,,,,,,CROSS BRONX EXPY RAMP,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4463726,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,21:45,BRONX,10463,40.87824,-73.90115,"(40.87824, -73.90115)",,,3095 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464503,Bus,Tractor Truck Gasoline,,, +10/03/2021,0:32,MANHATTAN,10001,40.74579,-73.990715,"(40.74579, -73.990715)",,,805 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463470,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,9:00,QUEENS,11421,40.693604,-73.86143,"(40.693604, -73.86143)",FOREST PARKWAY,86 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464493,Sedan,Sedan,,, +10/03/2021,16:50,BRONX,10455,40.817913,-73.911156,"(40.817913, -73.911156)",,,686 SAINT ANNS AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4463869,E-Bike,,,, +10/03/2021,9:45,,,40.75286,-73.87446,"(40.75286, -73.87446)",35 AVENUE,,,2,0,0,0,1,0,1,0,Other Vehicular,Other Vehicular,,,,4463359,Sedan,Bike,,, +10/03/2021,22:20,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",WEST 157 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4463609,Sedan,E-Bike,,, +10/03/2021,23:45,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4463925,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,17:50,BROOKLYN,11249,40.719215,-73.95701,"(40.719215, -73.95701)",,,154 NORTH 9 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463815,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/03/2021,16:20,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463544,Sedan,Sedan,,, +09/26/2021,15:15,,,40.65814,-74.00356,"(40.65814, -74.00356)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4464270,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/03/2021,22:25,,,,,,VANDAM STREET,BORDEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464179,Sedan,Sedan,,, +10/03/2021,6:58,BROOKLYN,11211,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,ROEBLING STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463663,Sedan,Bike,,, +10/03/2021,0:00,,,,,,TOTTEN ROAD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463637,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,0:45,STATEN ISLAND,10306,40.575165,-74.12785,"(40.575165, -74.12785)",CRANFORD AVENUE,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464036,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,16:57,QUEENS,11361,40.76268,-73.77052,"(40.76268, -73.77052)",BELL BOULEVARD,42 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464131,Sedan,,,, +10/03/2021,1:05,,,40.703915,-73.94817,"(40.703915, -73.94817)",LORIMER STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,11:15,BROOKLYN,11219,40.642265,-73.99655,"(40.642265, -73.99655)",,,973 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4464459,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,16:05,BROOKLYN,11224,0,0,"(0.0, 0.0)",WEST 16 STREET,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463528,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,18:45,BRONX,10472,40.824398,-73.88306,"(40.824398, -73.88306)",,,1055 BRONX RIVER AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464403,Bike,,,, +10/03/2021,11:30,,,0,0,"(0.0, 0.0)",WEST 89 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463448,Sedan,Box Truck,,, +10/01/2021,23:38,,,40.82929,-73.93501,"(40.82929, -73.93501)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4464284,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,8:00,BRONX,10455,40.812813,-73.91595,"(40.812813, -73.91595)",,,454 EAST 146 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463878,Sedan,Sedan,,, +10/03/2021,21:00,QUEENS,11101,40.759308,-73.944176,"(40.759308, -73.944176)",VERNON BOULEVARD,38 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4464560,E-Scooter,E-Scooter,,, +10/03/2021,16:24,,,40.687805,-73.833565,"(40.687805, -73.833565)",101 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463954,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,18:55,QUEENS,11368,40.757183,-73.85503,"(40.757183, -73.85503)",114 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463575,Sedan,Bike,,, +10/03/2021,1:20,BROOKLYN,11229,40.609333,-73.948425,"(40.609333, -73.948425)",BEDFORD AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463691,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,17:53,,,40.70403,-73.81711,"(40.70403, -73.81711)",HILLSIDE AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4463916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,13:26,BRONX,10458,40.855812,-73.890785,"(40.855812, -73.890785)",3 AVENUE,EAST 185 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4463794,Pick-up Truck,Sedan,,, +10/03/2021,11:14,,,40.619434,-74.15082,"(40.619434, -74.15082)",,,350 WILLOW ROAD WEST,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463407,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,6:45,BROOKLYN,11236,40.63528,-73.91047,"(40.63528, -73.91047)",,,981 EAST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463353,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,18:00,BRONX,10474,40.814594,-73.88588,"(40.814594, -73.88588)",HUNTS POINT AVENUE,SPOFFORD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4463613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,2:50,MANHATTAN,10003,40.73235,-73.984955,"(40.73235, -73.984955)",2 AVENUE,EAST 14 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464359,Sedan,,,, +10/03/2021,17:20,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Tinted Windows,Tinted Windows,,,,4463701,Sedan,Sedan,,, +10/03/2021,16:25,BRONX,10463,40.88437,-73.90105,"(40.88437, -73.90105)",BROADWAY,WEST 237 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4463584,Tractor Truck Diesel,,,, +10/03/2021,15:15,BROOKLYN,11219,0,0,"(0.0, 0.0)",NEW UTRECHT AVENUE,51 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464198,Station Wagon/Sport Utility Vehicle,Bike,,, +09/28/2021,15:34,,,40.68727,-73.9102,"(40.68727, -73.9102)",SCHAEFER STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464256,Station Wagon/Sport Utility Vehicle,Bus,,, +10/03/2021,20:30,MANHATTAN,10029,40.789696,-73.94026,"(40.789696, -73.94026)",,,348 EAST 106 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464060,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,11:50,QUEENS,11412,40.694767,-73.74698,"(40.694767, -73.74698)",205 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464311,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,18:55,,,40.84506,-73.91309,"(40.84506, -73.91309)",EAST 174 STREET,,,1,0,1,0,0,0,0,0,,,,,,4464543,,,,, +10/03/2021,20:00,,,,,,QUEENS PLAZA NORTH,27 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463632,E-Scooter,,,, +10/03/2021,23:00,BRONX,10472,40.82615,-73.87766,"(40.82615, -73.87766)",WATSON AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4464092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,13:00,MANHATTAN,10065,40.762737,-73.9597,"(40.762737, -73.9597)",EAST 64 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464347,Sedan,Motorcycle,,, +10/03/2021,10:05,,,40.834267,-73.82617,"(40.834267, -73.82617)",LOGAN AVENUE,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463863,Sedan,Sedan,,, +09/25/2021,0:00,QUEENS,11367,40.721386,-73.816376,"(40.721386, -73.816376)",,,147-01 77 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464391,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,11:45,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464441,Station Wagon/Sport Utility Vehicle,Bike,,, +10/03/2021,0:00,BROOKLYN,11210,40.62243,-73.94197,"(40.62243, -73.94197)",,,3412 AVENUE L,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4463491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,19:50,MANHATTAN,10011,40.74461,-73.996895,"(40.74461, -73.996895)",,,240 WEST 23 STREET,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Speed,,,,4463912,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,23:12,QUEENS,11375,40.726295,-73.84619,"(40.726295, -73.84619)",108 STREET,68 ROAD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464295,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,4:28,MANHATTAN,10030,40.81594,-73.945244,"(40.81594, -73.945244)",,,250 WEST 135 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463826,Sedan,Sedan,,, +05/29/2021,4:54,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423541,Sedan,,,, +10/03/2021,10:45,,,40.679565,-73.93436,"(40.679565, -73.93436)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463458,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,19:00,,,40.793556,-73.967026,"(40.793556, -73.967026)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463567,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,16:10,BRONX,10456,40.82906,-73.91001,"(40.82906, -73.91001)",,,3400 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,19:15,,,40.799305,-73.94324,"(40.799305, -73.94324)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463944,Sedan,,,, +10/03/2021,11:08,,,40.734943,-73.751396,"(40.734943, -73.751396)",UNION TURNPIKE,HARTLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463396,Sedan,Pick-up Truck,,, +10/01/2021,19:40,QUEENS,11436,40.680183,-73.7937,"(40.680183, -73.7937)",FOCH BOULEVARD,147 STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Traffic Control Disregarded,,,,4464312,Sedan,Sedan,,, +10/03/2021,19:23,BRONX,10468,40.868694,-73.90237,"(40.868694, -73.90237)",WEST KINGSBRIDGE ROAD,WEBB AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4464069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,15:00,BROOKLYN,11238,40.679203,-73.9553,"(40.679203, -73.9553)",FRANKLIN AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464468,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,22:25,MANHATTAN,10065,40.760857,-73.961075,"(40.760857, -73.961075)",EAST 61 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463680,Sedan,Bike,,, +10/03/2021,22:10,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464225,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,11:30,,,40.750397,-73.83514,"(40.750397, -73.83514)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4464232,Sedan,Sedan,,, +10/03/2021,0:27,MANHATTAN,10002,40.72125,-73.99224,"(40.72125, -73.99224)",RIVINGTON STREET,CHRYSTIE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463303,Taxi,Taxi,,, +10/03/2021,4:13,BROOKLYN,11225,40.660297,-73.947685,"(40.660297, -73.947685)",NEW YORK AVENUE,MIDWOOD STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464372,Moped,Sedan,,, +10/03/2021,21:03,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463725,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,4:00,BROOKLYN,11207,40.67303,-73.901,"(40.67303, -73.901)",,,100 HINSDALE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463778,Sedan,Sedan,,, +09/30/2021,19:20,MANHATTAN,10029,40.793186,-73.94057,"(40.793186, -73.94057)",EAST 110 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4464525,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/03/2021,0:39,,,40.63656,-74.168236,"(40.63656, -74.168236)",NORTHFIELD AVENUE,MACORMAC PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,2:30,QUEENS,11102,40.765755,-73.924515,"(40.765755, -73.924515)",,,30-75 29 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4464604,Sedan,Sedan,,, +10/03/2021,19:26,BROOKLYN,11225,40.65723,-73.96025,"(40.65723, -73.96025)",FLATBUSH AVENUE,HAWTHORNE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463624,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,16:35,MANHATTAN,10026,0,0,"(0.0, 0.0)",,,66 WEST 116 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4463998,MOPED,Sedan,,, +10/03/2021,21:39,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4463654,Sedan,,,, +09/06/2021,1:15,QUEENS,11366,40.72378,-73.80227,"(40.72378, -73.80227)",,,77-23 166 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464336,Sedan,Sedan,,, +09/09/2021,12:05,STATEN ISLAND,10312,40.5528,-74.191444,"(40.5528, -74.191444)",,,260 ARDEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464484,Sedan,,,, +03/30/2022,18:22,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",QUEENS BOULEVARD,62 DRIVE,,4,0,0,0,0,0,4,0,Lost Consciousness,Unspecified,,,,4514971,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,12:21,,,,,,EAST 53 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4463559,Sedan,,,, +10/03/2021,4:15,STATEN ISLAND,10306,40.577065,-74.11635,"(40.577065, -74.11635)",LOCUST AVENUE,3 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463364,Sedan,Sedan,Sedan,, +10/02/2021,11:20,BROOKLYN,11221,40.6913651,-73.926333,"(40.6913651, -73.926333)",,,1003 GREENE AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4464405,Station Wagon/Sport Utility Vehicle,Box Truck,,, +05/15/2021,11:00,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",82 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4423616,Bus,,,, +10/03/2021,23:10,QUEENS,11419,40.681923,-73.831924,"(40.681923, -73.831924)",109 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463887,Sedan,Sedan,,, +10/03/2021,16:48,BRONX,10467,0,0,"(0.0, 0.0)",DECATUR AVENUE,EAST 204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464027,Station Wagon/Sport Utility Vehicle,MOPED,,, +10/03/2021,20:40,QUEENS,11373,40.734768,-73.87459,"(40.734768, -73.87459)",QUEENS BOULEVARD,56 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463604,Sedan,Bike,,, +10/03/2021,16:50,MANHATTAN,10034,40.872314,-73.91274,"(40.872314, -73.91274)",WEST 220 STREET,BROADWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4463595,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,23:00,BROOKLYN,11211,40.71258,-73.958115,"(40.71258, -73.958115)",,,228 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463931,Sedan,Sedan,,, +09/30/2021,12:29,BROOKLYN,11204,40.61654,-73.9766,"(40.61654, -73.9766)",,,2259 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464319,Sedan,Box Truck,,, +10/03/2021,11:59,,,40.75097,-73.825775,"(40.75097, -73.825775)",ELDER AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4463643,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,14:30,QUEENS,11106,,,,11 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463687,Sedan,,,, +08/28/2021,5:00,QUEENS,11361,40.764225,-73.77839,"(40.764225, -73.77839)",,,38-32 208 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464277,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,19:06,,,40.612434,-74.15366,"(40.612434, -74.15366)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Glare,Driver Inattention/Distraction,Unspecified,,,4464164,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/03/2021,8:30,,,40.697903,-73.9468,"(40.697903, -73.9468)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464463,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,22:30,STATEN ISLAND,10306,40.57917,-74.10106,"(40.57917, -74.10106)",HAMDEN AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464494,Sedan,,,, +10/03/2021,16:18,BROOKLYN,11233,40.676437,-73.91246,"(40.676437, -73.91246)",,,2061 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4463711,Sedan,,,, +10/02/2021,1:48,,,,,,21 street,21 street,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4464578,E-Bike,,,, +10/03/2021,22:21,BROOKLYN,11209,40.627598,-74.03821,"(40.627598, -74.03821)",NARROWS AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4463633,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,19:50,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",PROSPECT EXPRESSWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464430,Sedan,Sedan,,, +10/03/2021,23:00,BROOKLYN,11236,40.629936,-73.90448,"(40.629936, -73.90448)",AVENUE M,EAST 82 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464094,Sedan,,,, +10/03/2021,6:40,BROOKLYN,11207,40.69169,-73.90585,"(40.69169, -73.90585)",KNICKERBOCKER AVENUE,SCHAEFER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464142,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,21:20,BROOKLYN,11222,40.721703,-73.95065,"(40.721703, -73.95065)",DRIGGS AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464190,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/03/2021,14:30,QUEENS,11436,0,0,"(0.0, 0.0)",130 AVENUE,147 STREET,,2,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4463664,E-Bike,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:50,,,40.730118,-73.86232,"(40.730118, -73.86232)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515301,Sedan,,,, +03/26/2022,4:42,,,40.752968,-73.83689,"(40.752968, -73.83689)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,17:20,MANHATTAN,10029,40.788685,-73.94386,"(40.788685, -73.94386)",2 AVENUE,EAST 103 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4515516,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,17:18,,,40.708363,-73.92401,"(40.708363, -73.92401)",GARDNER AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4515404,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,11:20,MANHATTAN,10022,40.75681,-73.971146,"(40.75681, -73.971146)",,,167 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515087,Sedan,Box Truck,,, +11/15/2021,11:00,MANHATTAN,10021,40.76649,-73.95696,"(40.76649, -73.95696)",EAST 70 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4479875,Sedan,Convertible,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/08/2021,8:00,STATEN ISLAND,10304,40.630318,-74.08683,"(40.630318, -74.08683)",LOUIS STREET,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4484953,Sedan,Sedan,,, +12/09/2021,9:21,BRONX,10452,40.830994,-73.92291,"(40.830994, -73.92291)",,,1025 GERARD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4486321,Sedan,,,, +03/30/2022,10:30,BROOKLYN,11208,40.67264,-73.87281,"(40.67264, -73.87281)",SUTTER AVENUE,CHESTNUT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515009,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,20:28,,,,,,,,1330 East 72 street,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515952,Sedan,Sedan,,, +03/30/2022,15:55,,,40.68378,-73.789734,"(40.68378, -73.789734)",116 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4514852,Sedan,Sedan,,, +03/22/2022,21:12,BROOKLYN,11225,40.66188,-73.94557,"(40.66188, -73.94557)",EAST NEW YORK AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515475,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/31/2022,13:10,BRONX,10474,40.81313,-73.89428,"(40.81313, -73.89428)",EAST 156 STREET,BARRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515780,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/01/2022,16:47,QUEENS,11434,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4515520,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +03/23/2022,14:31,MANHATTAN,10278,40.715233,-74.005424,"(40.715233, -74.005424)",BROADWAY,DUANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515567,Pick-up Truck,Box Truck,,, +04/01/2022,20:15,BROOKLYN,11207,40.663643,-73.89084,"(40.663643, -73.89084)",RIVERDALE AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515735,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,1:00,QUEENS,11367,40.7158,-73.824486,"(40.7158, -73.824486)",134 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4514885,Convertible,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +03/31/2022,16:30,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",UTICA AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515656,Sedan,Sedan,,, +04/01/2022,0:11,,,,,,WEST END AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515234,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,10:40,,,40.805077,-73.91092,"(40.805077, -73.91092)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514787,Sedan,Taxi,,, +04/01/2022,0:30,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515762,FIRE TRUCK,Sedan,,, +03/31/2022,14:02,BROOKLYN,11207,40.65115,-73.890015,"(40.65115, -73.890015)",FLATLANDS AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515218,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/30/2022,18:30,BROOKLYN,11207,40.665306,-73.883804,"(40.665306, -73.883804)",,,696 WARWICK STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515016,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,10:15,QUEENS,11354,40.76295,-73.83196,"(40.76295, -73.83196)",MAIN STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515765,Station Wagon/Sport Utility Vehicle,Bus,,, +04/01/2022,14:05,BROOKLYN,11229,40.609913,-73.94852,"(40.609913, -73.94852)",,,3787 BEDFORD AVENUE,3,0,0,0,0,0,3,0,Lost Consciousness,Unspecified,,,,4515360,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,18:00,BROOKLYN,11214,40.598694,-74.00592,"(40.598694, -74.00592)",,,1429 SHORE PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4514926,Sedan,,,, +03/30/2022,17:42,BRONX,10456,40.830936,-73.91241,"(40.830936, -73.91241)",EAST 167 STREET,TELLER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4515273,Ambulance,Taxi,,, +03/27/2022,12:30,MANHATTAN,10019,40.769226,-73.98477,"(40.769226, -73.98477)",WEST 59 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515827,PK,Sedan,,, +03/31/2022,14:00,BRONX,10472,40.824757,-73.87733,"(40.824757, -73.87733)",,,1030 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515355,Ambulance,Dump,,, +03/31/2022,11:50,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4515195,Sedan,Sedan,Sedan,, +03/31/2022,7:20,,,,,,GRAND CENTRAL PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515251,Bus,Taxi,,, +03/30/2022,12:21,QUEENS,11385,40.699364,-73.89495,"(40.699364, -73.89495)",,,72-51 60 LANE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,18:58,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514892,Tractor Truck Diesel,Sedan,,, +03/30/2022,19:00,,,40.7432,-73.89589,"(40.7432, -73.89589)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4515097,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,9:00,,,40.82244,-73.91289,"(40.82244, -73.91289)",ELTON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4423751,Ambulance,Sedan,,, +03/31/2022,6:23,QUEENS,11422,40.6818,-73.73257,"(40.6818, -73.73257)",,,128-50 234 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515058,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,19:39,,,40.826504,-73.93451,"(40.826504, -73.93451)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4515982,Sedan,Sedan,Sedan,, +03/31/2022,9:40,QUEENS,11368,40.755657,-73.86244,"(40.755657, -73.86244)",,,34-48 106 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515065,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/04/2022,0:00,BRONX,10456,40.83872,-73.91378,"(40.83872, -73.91378)",GRAND CONCOURSE,EAST 170 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4515277,Bike,,,, +03/31/2022,20:36,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",BRUCKNER BOULEVARD,ALEXANDER AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4515387,Station Wagon/Sport Utility Vehicle,Bus,Sedan,, +03/30/2022,4:35,QUEENS,11372,40.751972,-73.879974,"(40.751972, -73.879974)",,,35-07 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514784,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,9:15,BROOKLYN,11230,40.61748,-73.96482,"(40.61748, -73.96482)",AVENUE M,EAST 10 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515573,Bike,Bike,,, +04/01/2022,6:31,STATEN ISLAND,10306,40.556534,-74.12813,"(40.556534, -74.12813)",HYLAN BOULEVARD,BUFFALO STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515316,Sedan,,,, +04/01/2022,18:30,QUEENS,11368,40.74175,-73.86157,"(40.74175, -73.86157)",,,99-04 CHRISTIE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515790,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,11:25,BROOKLYN,11225,40.66435,-73.95099,"(40.66435, -73.95099)",,,989 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515449,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,9:58,BROOKLYN,11219,40.629974,-74.00813,"(40.629974, -74.00813)",65 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515409,Flat Bed,Sedan,,, +03/30/2022,8:16,QUEENS,11375,40.73228,-73.85183,"(40.73228, -73.85183)",64 AVENUE,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4514976,DUMP,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:45,,,40.63401,-74.16625,"(40.63401, -74.16625)",,,239 SOUTH AVENUE,3,0,0,0,0,0,3,0,View Obstructed/Limited,Backing Unsafely,Unspecified,,,4515284,Sedan,Sedan,Sedan,, +04/01/2022,6:00,,,40.748226,-73.75979,"(40.748226, -73.75979)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4515416,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +03/30/2022,12:57,MANHATTAN,10009,40.721024,-73.981094,"(40.721024, -73.981094)",EAST 2 STREET,AVENUE C,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515563,Bike,Sedan,,, +04/01/2022,9:05,,,,,,VANWYCK EXPRESSWAY EXTENSION,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4515305,Flat Bed,Sedan,,, +03/27/2022,4:32,,,40.845177,-73.91417,"(40.845177, -73.91417)",CROSS BRONX EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515660,Taxi,Sedan,,, +04/01/2022,14:00,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4515502,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/30/2022,8:11,,,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514824,Station Wagon/Sport Utility Vehicle,Bus,,, +03/30/2022,20:00,BROOKLYN,11206,40.695316,-73.936714,"(40.695316, -73.936714)",,,789 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515847,Sedan,,,, +03/29/2022,13:50,BRONX,10460,40.839622,-73.870285,"(40.839622, -73.870285)",EAST 180 STREET,EAST TREMONT AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4515282,Sedan,Tractor Truck Gasoline,,, +03/31/2022,20:41,BROOKLYN,11230,40.622055,-73.955696,"(40.622055, -73.955696)",,,1641 OCEAN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4515760,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,20:45,QUEENS,11434,40.67318,-73.78103,"(40.67318, -73.78103)",132 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515681,Sedan,Sedan,,, +03/26/2022,9:20,BROOKLYN,11233,40.67655,-73.91465,"(40.67655, -73.91465)",ATLANTIC AVENUE,RADDE PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515615,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,1:02,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4515024,Taxi,Sedan,,, +04/01/2022,19:39,MANHATTAN,10016,40.746536,-73.985954,"(40.746536, -73.985954)",WEST 31 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4515592,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/30/2022,3:00,MANHATTAN,10010,40.736763,-73.97853,"(40.736763, -73.97853)",,,397 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514753,Tractor Truck Diesel,,,, +04/01/2022,11:40,BROOKLYN,11217,40.686653,-73.9841,"(40.686653, -73.9841)",,,415 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4515803,Sedan,,,, +03/30/2022,6:05,,,40.60487,-74.02955,"(40.60487, -74.02955)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514898,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,8:00,,,40.666115,-73.79358,"(40.666115, -73.79358)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515052,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/26/2022,10:37,BRONX,10470,40.900143,-73.86919,"(40.900143, -73.86919)",,,258 EAST 239 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4515332,Box Truck,Sedan,,, +03/31/2022,12:00,QUEENS,11368,40.752045,-73.85425,"(40.752045, -73.85425)",,,112-14 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515255,Sedan,Sedan,,, +03/31/2022,11:28,BROOKLYN,11210,40.63428,-73.9492,"(40.63428, -73.9492)",,,1496 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,,,,,,4515554,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,11:26,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",PARK AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,15:30,,,40.73498,-73.85581,"(40.73498, -73.85581)",102 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515610,Sedan,Motorcycle,,, +03/31/2022,2:50,BROOKLYN,11232,40.65823,-74.00035,"(40.65823, -74.00035)",29 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4515006,Box Truck,,,, +04/01/2022,10:36,,,40.658527,-73.939575,"(40.658527, -73.939575)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515444,Sedan,,,, +03/30/2022,11:37,QUEENS,11412,40.691444,-73.75211,"(40.691444, -73.75211)",119 AVENUE,199 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4514844,Sedan,Sedan,,, +03/31/2022,0:16,MANHATTAN,10022,40.75875,-73.96864,"(40.75875, -73.96864)",,,906 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515177,Bike,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,7:30,,,40.581516,-73.96734,"(40.581516, -73.96734)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4515411,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/31/2022,14:50,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",CLOVE ROAD,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515144,Sedan,Sedan,,, +04/01/2022,14:00,MANHATTAN,10033,40.843807,-73.93405,"(40.843807, -73.93405)",,,2304 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4515636,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/01/2022,9:30,QUEENS,11427,40.727253,-73.74808,"(40.727253, -73.74808)",,,88-33 216 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515396,Sedan,,,, +03/30/2022,7:45,QUEENS,11354,40.76996,-73.82658,"(40.76996, -73.82658)",UNION STREET,31 DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514934,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,23:43,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4515309,Sedan,,,, +04/01/2022,14:32,,,40.719135,-73.78949,"(40.719135, -73.78949)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515519,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,9:00,QUEENS,11102,40.776882,-73.92332,"(40.776882, -73.92332)",19 STREET,24 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515496,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,4:34,MANHATTAN,10003,40.739086,-73.99139,"(40.739086, -73.99139)",WEST 19 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515428,Sedan,Sedan,,, +03/31/2022,12:20,,,40.66224,-73.99944,"(40.66224, -73.99944)",24 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4515102,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +03/20/2022,7:15,BROOKLYN,11213,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515706,Sedan,Sedan,,, +04/01/2022,16:50,,,40.657814,-73.89613,"(40.657814, -73.89613)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515732,Sedan,Sedan,,, +03/29/2022,17:45,,,40.66747,-73.9396,"(40.66747, -73.9396)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515474,Sedan,,,, +04/01/2022,3:58,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",9 AVENUE,WEST 44 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515568,Taxi,,,, +10/04/2021,13:30,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4464174,Sedan,Sedan,,, +03/21/2022,17:08,QUEENS,11106,40.75694,-73.93464,"(40.75694, -73.93464)",37 AVENUE,CRESCENT STREET,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515442,E-Bike,Pick-up Truck,,, +03/30/2022,16:45,BROOKLYN,11232,40.66874,-73.99668,"(40.66874, -73.99668)",HAMILTON AVENUE,2 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4515914,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,13:00,BROOKLYN,11220,40.641987,-74.01724,"(40.641987, -74.01724)",58 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4515128,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/30/2022,20:00,,,40.84474,-73.922585,"(40.84474, -73.922585)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4514941,Sedan,Sedan,,, +04/01/2022,0:00,,,40.745308,-73.90753,"(40.745308, -73.90753)",57 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515314,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/01/2022,14:25,,,,,,31 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515937,Sedan,Tractor Truck Gasoline,,, +04/01/2022,11:15,MANHATTAN,10011,40.735508,-73.99461,"(40.735508, -73.99461)",,,2 WEST 13 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4515576,E-Bike,,,, +03/31/2022,15:58,QUEENS,11378,40.731155,-73.89368,"(40.731155, -73.89368)",,,70-11 53 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515756,Sedan,Sedan,,, +04/01/2022,16:15,BRONX,10467,40.8585,-73.86783,"(40.8585, -73.86783)",BOSTON ROAD,THWAITES PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,23:17,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515263,Sedan,Sedan,,, +04/01/2022,12:00,QUEENS,11427,40.732403,-73.74357,"(40.732403, -73.74357)",,,221-34 MANOR ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4515854,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,13:40,MANHATTAN,10028,40.777874,-73.95175,"(40.777874, -73.95175)",2 AVENUE,EAST 86 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4514840,Motorscooter,,,, +03/31/2022,13:00,,,,,,WHITESTONE EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,10:28,BRONX,10464,40.859547,-73.80091,"(40.859547, -73.80091)",CITY ISLAND ROAD,CITY ISLAND BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514815,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,10:19,BROOKLYN,11211,40.704876,-73.95571,"(40.704876, -73.95571)",HEWES STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515188,Box Truck,,,, +03/30/2022,21:30,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515029,Sedan,Sedan,,, +03/22/2022,1:00,,,40.689964,-73.796776,"(40.689964, -73.796776)",BRINKERHOFF AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515674,Sedan,,,, +03/30/2022,13:20,,,40.75597,-73.91262,"(40.75597, -73.91262)",BROADWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4515297,Sedan,Bike,,, +04/01/2022,8:42,BRONX,10452,40.83609,-73.92926,"(40.83609, -73.92926)",UNIVERSITY AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515336,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,10:40,BRONX,10461,40.84741,-73.85137,"(40.84741, -73.85137)",,,1656 HAIGHT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515076,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,15:03,BROOKLYN,11236,40.644623,-73.90709,"(40.644623, -73.90709)",FARRAGUT ROAD,EAST 93 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4514871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +03/30/2022,15:11,BROOKLYN,11230,40.61359,-73.97082,"(40.61359, -73.97082)",RYDER AVENUE,EAST 4 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4514957,Sedan,Sedan,Sedan,Sedan,Sedan +03/31/2022,18:30,MANHATTAN,10032,40.84231,-73.937035,"(40.84231, -73.937035)",WEST 171 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515641,Sedan,Sedan,,, +03/25/2022,12:30,BROOKLYN,11215,40.65881,-73.98172,"(40.65881, -73.98172)",PROSPECT AVENUE,PROSPECT PARK WEST,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515347,Sedan,,,, +03/31/2022,8:00,,,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515048,Station Wagon/Sport Utility Vehicle,Bus,,, +03/31/2022,0:15,,,40.64367,-74.015495,"(40.64367, -74.015495)",55 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514996,Bus,Motorcycle,,, +03/28/2022,10:00,,,40.68629,-73.98527,"(40.68629, -73.98527)",,,PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515814,Station Wagon/Sport Utility Vehicle,Van,,, +04/01/2022,9:50,BROOKLYN,11233,40.676014,-73.90511,"(40.676014, -73.90511)",,,2402 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515364,Box Truck,,,, +03/28/2022,15:07,BRONX,10456,40.828728,-73.914734,"(40.828728, -73.914734)",EAST 165 STREET,FINDLAY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515975,Sedan,,,, +04/01/2022,17:40,QUEENS,11432,40.708916,-73.78614,"(40.708916, -73.78614)",,,91-15 175 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515963,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,7:55,BROOKLYN,11214,40.60102,-74.004364,"(40.60102, -74.004364)",CROPSEY AVENUE,BAY 22 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,3:30,QUEENS,11421,40.689766,-73.855255,"(40.689766, -73.855255)",,,89-19 88 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514746,Sedan,,,, +03/30/2022,15:55,,,40.847897,-73.92499,"(40.847897, -73.92499)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514901,Bus,Tractor Truck Diesel,,, +04/01/2022,12:06,BRONX,10459,40.827793,-73.89466,"(40.827793, -73.89466)",,,907 EAST 169 STREET,3,0,0,0,0,0,3,0,Prescription Medication,Unspecified,,,,4515550,Sedan,Sedan,,, +03/31/2022,22:00,QUEENS,11434,40.67711,-73.78129,"(40.67711, -73.78129)",BAISLEY BOULEVARD,161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515229,E-Bike,,,, +03/30/2022,8:40,BRONX,10473,40.82138,-73.86298,"(40.82138, -73.86298)",LAFAYETTE AVENUE,TAYLOR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4514963,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/30/2022,18:25,MANHATTAN,10002,40.716923,-73.98322,"(40.716923, -73.98322)",DELANCEY STREET,PITT STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4514875,Taxi,Taxi,,, +03/29/2022,1:03,,,40.68159,-73.74459,"(40.68159, -73.74459)",131 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4515324,Sedan,Sedan,,, +03/30/2022,5:20,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4515150,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,16:00,BROOKLYN,11231,40.678467,-73.99597,"(40.678467, -73.99597)",,,395 SMITH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,17:18,MANHATTAN,10024,40.78366,-73.98167,"(40.78366, -73.98167)",WEST END AVENUE,WEST 78 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515379,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,8:23,BROOKLYN,11236,40.63868,-73.91682,"(40.63868, -73.91682)",EAST 80 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515460,Sedan,Motorscooter,,, +03/31/2022,11:50,BROOKLYN,11220,40.643894,-74.012825,"(40.643894, -74.012825)",,,469 53 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515107,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/27/2022,10:49,BRONX,10457,40.846504,-73.89644,"(40.846504, -73.89644)",,,516 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515695,Station Wagon/Sport Utility Vehicle,Van,,, +04/01/2022,18:00,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515424,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,17:31,BROOKLYN,11211,40.71192,-73.95625,"(40.71192, -73.95625)",,,285 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4515922,Sedan,Sedan,,, +03/07/2022,7:30,QUEENS,11373,40.73957,-73.86705,"(40.73957, -73.86705)",JUNCTION BOULEVARD,53 AVENUE,,3,0,0,0,3,0,0,0,Unspecified,,,,,4515329,E-Bike,,,, +03/31/2022,22:11,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515726,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,8:10,,,40.66223,-73.93997,"(40.66223, -73.93997)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515292,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,1:00,MANHATTAN,10029,40.795822,-73.94686,"(40.795822, -73.94686)",,,71 EAST 110 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515510,Sedan,,,, +04/01/2022,11:05,QUEENS,11418,40.705666,-73.818474,"(40.705666, -73.818474)",VANWYCK EXPRESSWAY,87 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4515491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +03/30/2022,19:30,BRONX,10457,40.83727,-73.90236,"(40.83727, -73.90236)",,,500 EAST 171 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514909,Station Wagon/Sport Utility Vehicle,Bus,,, +03/28/2022,10:30,,,40.575302,-73.9766,"(40.575302, -73.9766)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515789,Taxi,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,7:21,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",WHITE PLAINS ROAD,EAST 233 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515120,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,22:10,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490810,Sedan,Sedan,,, +03/10/2022,18:15,QUEENS,11360,40.788788,-73.78443,"(40.788788, -73.78443)",CROSS ISLAND PARKWAY,208 PLACE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4509542,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,13:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4515224,Box Truck,Sedan,Sedan,, +03/30/2022,16:18,BROOKLYN,11218,40.653416,-73.98146,"(40.653416, -73.98146)",MC DONALD AVENUE,TERRACE PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515017,FIRETRUCK,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,18:25,MANHATTAN,10036,40.760403,-73.98748,"(40.760403, -73.98748)",WEST 47 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515240,Sedan,Bike,,, +04/01/2022,20:33,,,40.785805,-73.942856,"(40.785805, -73.942856)",1 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4515625,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,15:46,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515863,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,21:30,QUEENS,11434,40.666862,-73.77837,"(40.666862, -73.77837)",SOUTH CONDUIT AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4515393,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,0:00,BRONX,10474,40.81943,-73.88972,"(40.81943, -73.88972)",GARRISON AVENUE,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515256,Sedan,Pick-up Truck,,, +03/17/2022,9:30,,,40.7795,-73.981636,"(40.7795, -73.981636)",WEST 73 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515378,Sedan,,,, +03/31/2022,21:34,BRONX,10473,40.823826,-73.86163,"(40.823826, -73.86163)",STORY AVENUE,LELAND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4515356,Sedan,Sedan,Motorcycle,Sedan, +03/30/2022,13:04,QUEENS,11422,40.675854,-73.73163,"(40.675854, -73.73163)",132 ROAD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,9:15,MANHATTAN,10035,40.807266,-73.93744,"(40.807266, -73.93744)",,,1888 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515045,Station Wagon/Sport Utility Vehicle,Dump,,, +03/31/2022,18:40,,,40.701008,-73.9424,"(40.701008, -73.9424)",GRAHAM AVENUE,BROADWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4515193,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/30/2022,7:45,BROOKLYN,11207,,,,Pitkin avenu,Van sinderen avenue,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515010,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/30/2022,14:00,,,40.850807,-73.86781,"(40.850807, -73.86781)",WHITE PLAINS ROAD,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4514823,Sedan,Carry All,,, +03/30/2022,18:20,QUEENS,11417,40.681385,-73.84748,"(40.681385, -73.84748)",92 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514859,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,8:11,BRONX,10469,40.868145,-73.833725,"(40.868145, -73.833725)",,,1945 BARTOW AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515351,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/30/2022,19:30,,,40.728912,-74.0086,"(40.728912, -74.0086)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515082,Sedan,Bike,,, +03/30/2022,17:00,BRONX,10465,40.8163,-73.80891,"(40.8163, -73.80891)",,,344 PENNYFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515066,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,8:29,BROOKLYN,11236,40.638813,-73.90818,"(40.638813, -73.90818)",FLATLANDS AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4514796,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,20:45,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515368,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,8:00,BROOKLYN,11222,40.729256,-73.94605,"(40.729256, -73.94605)",MESEROLE AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515980,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +03/30/2022,6:30,MANHATTAN,10002,40.72098,-73.98696,"(40.72098, -73.98696)",ESSEX STREET,STANTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515205,Station Wagon/Sport Utility Vehicle,Taxi,,, +03/31/2022,11:09,BROOKLYN,11222,40.722744,-73.93658,"(40.722744, -73.93658)",,,105 LOMBARDY STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4515319,Lift,Sedan,,, +04/01/2022,15:31,MANHATTAN,10016,40.747772,-73.985054,"(40.747772, -73.985054)",WEST 33 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515596,E-Scooter,Sedan,,, +03/25/2022,10:50,BROOKLYN,11217,40.68733,-73.98183,"(40.68733, -73.98183)",SCHERMERHORN STREET,NEVINS STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4515818,Taxi,Sedan,,, +03/29/2022,15:22,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515540,Tractor Truck Diesel,Sedan,,, +03/31/2022,21:49,MANHATTAN,10019,40.76536,-73.98759,"(40.76536, -73.98759)",WEST 53 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515246,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,19:00,BRONX,10465,40.83078,-73.82631,"(40.83078, -73.82631)",,,3517 EAST TREMONT AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4515110,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/31/2022,12:03,,,40.830067,-73.92915,"(40.830067, -73.92915)",EAST 161 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4515272,Sedan,,,, +03/30/2022,9:25,BROOKLYN,11214,40.612144,-74.00308,"(40.612144, -74.00308)",,,1653 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4514949,Sedan,,,, +03/30/2022,16:40,STATEN ISLAND,10305,40.589035,-74.08988,"(40.589035, -74.08988)",HYLAN BOULEVARD,DELAWARE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515157,Sedan,,,, +03/31/2022,19:15,,,40.6094,-74.11657,"(40.6094, -74.11657)",SCHMIDTS LANE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515164,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,7:30,,,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514731,Station Wagon/Sport Utility Vehicle,Bike,,, +03/31/2022,18:30,,,40.80332,-73.97263,"(40.80332, -73.97263)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515233,Sedan,Sedan,Sedan,, +03/31/2022,0:05,QUEENS,11375,40.734985,-73.85066,"(40.734985, -73.85066)",108 STREET,63 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4514975,Sedan,E-Bike,,, +03/31/2022,3:07,BROOKLYN,11218,40.634586,-73.97785,"(40.634586, -73.97785)",,,795 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4514988,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,0:40,BROOKLYN,11235,40.587616,-73.93656,"(40.587616, -73.93656)",BATCHELDER STREET,VOORHIES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515287,Sedan,,,, +04/01/2022,23:07,MANHATTAN,10020,40.758224,-73.97844,"(40.758224, -73.97844)",,,14 WEST 49 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515456,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,0:09,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",EAST 34 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4515200,Sedan,Tractor Truck Diesel,,, +03/30/2022,3:30,,,40.68698,-73.789604,"(40.68698, -73.789604)",157 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4515304,Sedan,Taxi,,, +03/30/2022,6:15,,,40.60487,-74.02955,"(40.60487, -74.02955)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514905,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,10:10,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",BERGEN STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515092,Sedan,,,, +04/01/2022,13:30,QUEENS,11004,40.74297,-73.71042,"(40.74297, -73.71042)",81 AVENUE,260 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515383,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,11:00,BROOKLYN,11211,40.709442,-73.95252,"(40.709442, -73.95252)",,,378 HOOPER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515420,Sedan,Box Truck,,, +03/28/2022,19:48,QUEENS,11101,40.7527,-73.92741,"(40.7527, -73.92741)",,,37-06 36 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515930,Sedan,,,, +04/01/2022,20:00,,,40.741646,-74.00487,"(40.741646, -74.00487)",9 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4515691,Moped,,,, +03/28/2022,7:10,BROOKLYN,11215,40.659008,-73.98157,"(40.659008, -73.98157)",,,254 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4515346,Sedan,,,, +03/31/2022,8:30,BROOKLYN,11203,40.649635,-73.9379,"(40.649635, -73.9379)",SNYDER AVENUE,EAST 42 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4515645,Sedan,Sedan,,, +03/29/2022,13:29,,,,,,LONG ISLAND EXPRESSWAY,21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515486,Box Truck,,,, +03/29/2022,11:40,QUEENS,11385,40.712852,-73.90486,"(40.712852, -73.90486)",,,60-18 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515753,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,22:40,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/30/2022,13:00,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",MORGAN AVENUE,GRAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4514925,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,5:55,,,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4515993,Sedan,Sedan,,, +04/01/2022,1:19,QUEENS,11419,40.690662,-73.81033,"(40.690662, -73.81033)",VANWYCK EXPRESSWAY,105 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515219,Sedan,Sedan,Sedan,Sedan, +04/01/2022,15:00,,,40.585106,-73.943405,"(40.585106, -73.943405)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515361,Sedan,Sedan,,, +03/25/2022,17:00,BRONX,10469,40.882812,-73.85519,"(40.882812, -73.85519)",,,939 EAST 221 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515341,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,18:27,,,40.657856,-73.9165,"(40.657856, -73.9165)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515633,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/31/2022,19:55,STATEN ISLAND,10310,40.6271,-74.12514,"(40.6271, -74.12514)",FOREST AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4515806,Sedan,Sedan,Sedan,, +04/01/2022,21:30,,,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515836,Sedan,Sedan,,, +04/01/2022,17:10,BROOKLYN,11219,40.628643,-74.005936,"(40.628643, -74.005936)",65 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515410,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,21:00,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515278,Sedan,Sedan,,, +03/30/2022,22:15,BROOKLYN,11218,40.635277,-73.96756,"(40.635277, -73.96756)",,,1001 DITMAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515561,Sedan,Sedan,,, +04/01/2022,13:50,,,40.6612,-73.85184,"(40.6612, -73.85184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4515373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,13:00,MANHATTAN,10012,40.730305,-73.99989,"(40.730305, -73.99989)",,,110 WEST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515587,Sedan,,,, +03/31/2022,16:28,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",MARCUS GARVEY BOULEVARD,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515479,Sedan,Sedan,,, +03/23/2022,21:30,MANHATTAN,10027,40.80781,-73.945564,"(40.80781, -73.945564)",,,55 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515662,Taxi,Sedan,,, +03/26/2022,19:50,MANHATTAN,10002,40.719715,-73.9901,"(40.719715, -73.9901)",,,122 ALLEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515405,Sedan,Taxi,,, +03/30/2022,17:25,STATEN ISLAND,10301,40.63682,-74.08142,"(40.63682, -74.08142)",,,164 VICTORY BOULEVARD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515799,E-Scooter,Pick-up Truck,,, +03/30/2022,15:00,MANHATTAN,10006,40.70808,-74.01445,"(40.70808, -74.01445)",,,90 WASHINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4514982,Sedan,,,, +03/30/2022,13:13,BROOKLYN,11220,40.642235,-74.00255,"(40.642235, -74.00255)",8 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514850,Sedan,E-Bike,,, +03/30/2022,6:28,,,40.79826,-73.92955,"(40.79826, -73.92955)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4514779,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,15:17,,,40.825413,-73.923485,"(40.825413, -73.923485)",EAST 158 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4515037,Station Wagon/Sport Utility Vehicle,Bus,,, +03/31/2022,5:35,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,13:50,BROOKLYN,11201,40.699482,-73.98047,"(40.699482, -73.98047)",,,25 NAVY STREET,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4514893,E-Bike,,,, +03/30/2022,18:59,QUEENS,11358,40.757896,-73.78761,"(40.757896, -73.78761)",NORTHERN BOULEVARD,194 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514883,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,7:05,,,,,,FRANCIS LEWIS BOULEVARD,LAURELTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515059,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,20:17,BROOKLYN,11228,40.606842,-74.0155,"(40.606842, -74.0155)",CROPSEY AVENUE,BAY 8 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515211,Sedan,,,, +04/01/2022,11:57,BROOKLYN,11208,40.66045,-73.86719,"(40.66045, -73.86719)",FLATLANDS AVENUE,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515736,Sedan,Sedan,,, +03/24/2022,1:30,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515388,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,9:30,,,40.735413,-73.91835,"(40.735413, -73.91835)",LAUREL HILL BOULEVARD,48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515315,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,21:10,QUEENS,11417,40.67544,-73.85322,"(40.67544, -73.85322)",PITKIN AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515448,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/24/2022,2:00,BROOKLYN,11207,40.67007,-73.89927,"(40.67007, -73.89927)",WILLIAMS AVENUE,BELMONT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4521529,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,20:40,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:00,BROOKLYN,11229,40.60312,-73.960556,"(40.60312, -73.960556)",AVENUE S,EAST 12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,14:35,BROOKLYN,11219,40.6365,-74.00364,"(40.6365, -74.00364)",,,924 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514954,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,1:23,BROOKLYN,11212,40.66302,-73.90582,"(40.66302, -73.90582)",,,315 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,0:30,QUEENS,11435,40.693428,-73.81046,"(40.693428, -73.81046)",,,102-02 REMINGTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515140,Utility,,,, +03/31/2022,17:03,,,40.900967,-73.90002,"(40.900967, -73.90002)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4515266,Bus,Sedan,,, +03/29/2022,14:35,BROOKLYN,11220,40.644863,-74.01748,"(40.644863, -74.01748)",3 AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4515432,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/31/2022,18:18,,,40.850163,-73.8652,"(40.850163, -73.8652)",BRONXDALE AVENUE,NEILL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515283,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +03/30/2022,18:47,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4514970,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,19:00,BROOKLYN,11209,40.616035,-74.0295,"(40.616035, -74.0295)",,,521 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515415,Sedan,,,, +03/28/2022,8:47,,,40.847897,-73.92499,"(40.847897, -73.92499)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4515300,Sedan,,,, +03/30/2022,15:45,BRONX,10460,40.834667,-73.88936,"(40.834667, -73.88936)",,,1564 SOUTHERN BOULEVARD,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4514911,Sedan,Sedan,Sedan,, +03/31/2022,12:41,MANHATTAN,10280,40.708828,-74.016205,"(40.708828, -74.016205)",,,200 RECTOR PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515250,Sedan,Sedan,,, +03/30/2022,0:30,MANHATTAN,10018,40.759525,-73.99925,"(40.759525, -73.99925)",WEST 40 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Turning Improperly,,,,4515685,Bus,Taxi,,, +04/01/2022,4:20,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515501,Sedan,,,, +03/31/2022,10:30,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515121,Sedan,Sedan,,, +03/31/2022,12:30,BROOKLYN,11206,40.70447,-73.94274,"(40.70447, -73.94274)",GRAHAM AVENUE,SEIGEL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515950,Pick-up Truck,,,, +04/01/2022,15:20,,,40.638523,-73.92607,"(40.638523, -73.92607)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,4515655,Sedan,Sedan,Sedan,, +04/01/2022,13:30,BROOKLYN,11238,40.682594,-73.962654,"(40.682594, -73.962654)",FULTON STREET,CAMBRIDGE PLACE,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4515874,Bus,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,19:15,MANHATTAN,10001,40.754257,-74.00309,"(40.754257, -74.00309)",,,15 HUDSON YARDS,0,0,0,0,0,0,0,0,Unspecified,,,,,4515714,Sedan,,,, +03/30/2022,15:45,MANHATTAN,10016,40.74616,-73.97913,"(40.74616, -73.97913)",,,155 EAST 34 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515437,Sedan,Sedan,,, +03/31/2022,10:57,MANHATTAN,10010,40.74249,-73.989815,"(40.74249, -73.989815)",,,4 WEST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515132,Box Truck,Box Truck,,, +03/28/2022,1:30,BROOKLYN,11220,40.637756,-74.00721,"(40.637756, -74.00721)",8 AVENUE,56 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515581,E-Scooter,,,, +03/31/2022,9:30,QUEENS,11101,40.753883,-73.919846,"(40.753883, -73.919846)",,,35-06 43 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515443,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/01/2022,14:15,BROOKLYN,11209,40.617943,-74.03332,"(40.617943, -74.03332)",3 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4515400,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/31/2022,22:53,,,40.827564,-73.83363,"(40.827564, -73.83363)",CROSS BRONX EXTENTION,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4515310,Garbage or Refuse,Sedan,,, +08/01/2020,17:16,BRONX,10462,40.840508,-73.85515,"(40.840508, -73.85515)",METROPOLITAN AVENUE,LINDEN DRIVE,,0,1,0,0,0,1,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4334713,Sedan,E-Bike,,, +05/15/2021,21:15,QUEENS,11413,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4416708,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/25/2021,21:51,,,40.617043,-73.89733,"(40.617043, -73.89733)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4420684,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,12:55,,,40.830334,-73.91895,"(40.830334, -73.91895)",EAST 165 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4421892,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,8:10,QUEENS,11355,40.760662,-73.814,"(40.760662, -73.814)",149 PLACE,SANFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515768,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,10:45,,,40.75225,-73.702095,"(40.75225, -73.702095)",UNION TURNPIKE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515145,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,20:30,,,40.724174,-73.937355,"(40.724174, -73.937355)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4514935,Sedan,Sedan,,, +04/17/2022,19:07,BRONX,10465,40.814735,-73.82421,"(40.814735, -73.82421)",,,243 BUTTRICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4522288,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,5:45,,,40.649376,-74.0023,"(40.649376, -74.0023)",6 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4522029,Sedan,,,, +04/23/2022,5:00,QUEENS,11372,40.751602,-73.88635,"(40.751602, -73.88635)",,,80-08 35 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4522150,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2022,20:41,QUEENS,11413,40.666306,-73.785934,"(40.666306, -73.785934)",SOUTH CONDUIT AVENUE,153 PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4521636,Sedan,,,, +04/24/2022,11:30,,,40.70153,-73.92314,"(40.70153, -73.92314)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4521826,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,9:10,,,40.58667,-73.966156,"(40.58667, -73.966156)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4522128,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2022,4:00,MANHATTAN,10003,40.725933,-73.98961,"(40.725933, -73.98961)",,,64 2 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4521930,Sedan,,,, +04/24/2022,13:22,BROOKLYN,11204,40.61137,-73.973495,"(40.61137, -73.973495)",MC DONALD AVENUE,AVENUE O,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4521511,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/24/2022,5:00,QUEENS,11373,40.743954,-73.87423,"(40.743954, -73.87423)",LAMONT AVENUE,GLEANE STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,,,,4521457,Taxi,Sedan,,, +04/24/2022,17:30,,,40.685806,-73.80728,"(40.685806, -73.80728)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,16:50,QUEENS,11355,,,,DWIGHT EISENHOWER PROMENADE,AVENUE OF COMMERCE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4522378,E-Bike,,,, +04/24/2022,11:35,QUEENS,11421,40.69435,-73.85597,"(40.69435, -73.85597)",86 ROAD,89 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4521839,Sedan,,,, +04/24/2022,16:50,MANHATTAN,10016,0,0,"(0.0, 0.0)",WEST 40 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4521642,Sedan,,,, +04/23/2022,18:35,MANHATTAN,10027,0,0,"(0.0, 0.0)",,,55 WEST 125 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4522240,Bike,Station Wagon/Sport Utility Vehicle,,, +04/23/2022,20:20,BRONX,10455,0,0,"(0.0, 0.0)",SOUTHERN BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4522260,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,16:25,QUEENS,11367,40.725388,-73.81579,"(40.725388, -73.81579)",,,150-39 75 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4522186,Station Wagon/Sport Utility Vehicle,,,, +04/20/2022,15:40,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",NORTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4522316,Sedan,,,, +04/24/2022,4:00,BRONX,10475,40.87631,-73.83068,"(40.87631, -73.83068)",,,7A DEFOE PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521719,Sedan,Sedan,,, +04/19/2022,9:43,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4522201,Sedan,Sedan,,, +04/22/2022,14:50,QUEENS,11373,40.743397,-73.88388,"(40.743397, -73.88388)",BROADWAY,PETTIT AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522364,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/24/2022,22:00,,,,,,BRADHURST AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4521993,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,10:13,QUEENS,11368,40.73619,-73.85806,"(40.73619, -73.85806)",,,99-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,12:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4464838,Sedan,Sedan,,, +06/04/2021,0:15,MANHATTAN,10036,40.756653,-73.98635,"(40.756653, -73.98635)",,,5 TIMES SQUARE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423781,Sedan,Sedan,,, +06/02/2021,17:10,QUEENS,11422,40.666603,-73.73605,"(40.666603, -73.73605)",,,241-15 NORTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4423002,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,18:55,,,40.679276,-73.92906,"(40.679276, -73.92906)",FULTON STREET,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424044,Sedan,,,, +06/03/2021,19:05,,,40.701958,-73.9239,"(40.701958, -73.9239)",KNICKERBOCKER AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4423386,Sedan,Bike,,, +06/02/2021,20:30,MANHATTAN,10018,40.751595,-73.98422,"(40.751595, -73.98422)",,,45 WEST 38 STREET,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4423087,Station Wagon/Sport Utility Vehicle,Bike,,, +06/03/2021,10:35,,,40.672848,-73.9675,"(40.672848, -73.9675)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423971,Sedan,Sedan,,, +06/03/2021,16:35,,,,,,HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4423368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/04/2021,13:11,,,40.699936,-73.91181,"(40.699936, -73.91181)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424140,Bus,Sedan,,, +06/03/2021,11:55,,,40.857784,-73.83081,"(40.857784, -73.83081)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4423354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,14:22,BRONX,10460,40.837368,-73.887764,"(40.837368, -73.887764)",EAST 174 STREET,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423748,Sedan,,,, +06/03/2021,10:00,MANHATTAN,10007,40.7134,-74.008,"(40.7134, -74.008)",,,16 MURRAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423260,Sedan,,,, +06/04/2021,18:30,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4423489,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,16:00,MANHATTAN,10016,40.74477,-73.98179,"(40.74477, -73.98179)",,,120 EAST 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423234,Sedan,Sedan,,, +06/02/2021,0:50,QUEENS,11101,40.737537,-73.929955,"(40.737537, -73.929955)",GREENPOINT AVENUE,HUNTERS POINT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4422680,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,4:30,QUEENS,11385,40.70165,-73.88446,"(40.70165, -73.88446)",,,68-09 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423994,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/04/2021,22:00,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",WASHINGTON AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4423595,Bus,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,8:00,QUEENS,11105,40.782185,-73.911575,"(40.782185, -73.911575)",,,20-32 24 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423809,Sedan,,,, +06/02/2021,21:19,QUEENS,11354,40.763668,-73.82303,"(40.763668, -73.82303)",PARSONS BOULEVARD,37 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4423026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/04/2021,6:30,,,40.732887,-73.920586,"(40.732887, -73.920586)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4423502,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,10:35,BRONX,10456,40.829247,-73.914444,"(40.829247, -73.914444)",,,1041 FINDLAY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423373,Pick-up Truck,Sedan,,, +06/04/2021,12:00,BROOKLYN,11223,40.607075,-73.9627,"(40.607075, -73.9627)",,,944 KINGS HIGHWAY,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4423429,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,17:30,QUEENS,11373,40.73856,-73.87912,"(40.73856, -73.87912)",,,84-43 CORONA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423129,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,15:15,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423546,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,20:45,QUEENS,11355,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,BOOTH MEMORIAL AVENUE,,1,0,1,0,0,0,0,0,,,,,,4423648,,,,, +06/02/2021,22:35,,,40.58552,-73.941925,"(40.58552, -73.941925)",SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4423055,Sedan,Sedan,Sedan,Sedan, +09/26/2021,22:21,,,,,,BRONX PARK SOUTH,SOUTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464843,Sedan,E-Bike,,, +06/02/2021,17:54,BRONX,10466,40.8967,-73.85969,"(40.8967, -73.85969)",,,603 EAST 236 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4423839,Sedan,,,, +05/30/2021,2:35,,,40.63721,-74.12689,"(40.63721, -74.12689)",CLOVE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423905,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,11:30,,,40.69519,-73.84296,"(40.69519, -73.84296)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4423200,Sedan,,,, +06/02/2021,8:50,QUEENS,11429,40.712055,-73.75319,"(40.712055, -73.75319)",FRANCIS LEWIS BOULEVARD,100 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423291,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,21:00,QUEENS,11691,40.59457,-73.76441,"(40.59457, -73.76441)",BEACH 32 STREET,SEAGIRT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423329,Sedan,,,, +06/04/2021,19:00,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4423919,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +06/02/2021,1:40,BRONX,10456,40.82581,-73.907036,"(40.82581, -73.907036)",EAST 165 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,12:22,BRONX,10460,40.84486,-73.88551,"(40.84486, -73.88551)",,,2035 MARMION AVENUE,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4424249,Station Wagon/Sport Utility Vehicle,Bike,,, +06/04/2021,9:30,QUEENS,11432,40.712505,-73.78818,"(40.712505, -73.78818)",,,175-20 WEXFORD TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423470,Bus,,,, +06/02/2021,11:15,BRONX,10468,40.877293,-73.889534,"(40.877293, -73.889534)",,,3410 PAUL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423061,Sedan,Sedan,,, +06/02/2021,18:15,MANHATTAN,10007,40.71531,-74.00876,"(40.71531, -74.00876)",,,125 CHAMBERS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423258,Sedan,,,, +06/02/2021,18:00,MANHATTAN,10019,40.76246,-73.97682,"(40.76246, -73.97682)",,,62 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423400,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,5:00,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424257,Sedan,,,, +06/03/2021,21:40,STATEN ISLAND,10306,40.577366,-74.11145,"(40.577366, -74.11145)",SOUTH RAILROAD AVENUE,BANCROFT AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4423461,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,19:58,QUEENS,11435,40.70417,-73.81538,"(40.70417, -73.81538)",QUEENS BOULEVARD,HILLSIDE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4423794,Sedan,,,, +05/28/2021,0:45,BROOKLYN,11232,40.64741,-74.018684,"(40.64741, -74.018684)",2 AVENUE,53 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4423532,Sedan,Bike,,, +06/04/2021,1:07,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4423730,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,18:10,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4423283,Sedan,Sedan,Sedan,, +05/30/2021,0:00,,,40.743763,-73.82463,"(40.743763, -73.82463)",142 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423828,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,19:05,QUEENS,11419,40.68989,-73.81819,"(40.68989, -73.81819)",127 STREET,103 AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,,,4423179,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/31/2021,23:30,BROOKLYN,11204,40.61269,-73.982666,"(40.61269, -73.982666)",BAY PARKWAY,67 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423696,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,11:40,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4424198,Tractor Truck Gasoline,Sedan,,, +06/02/2021,7:50,QUEENS,11375,40.72062,-73.84607,"(40.72062, -73.84607)",,,70-20 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,11:37,QUEENS,11423,40.71991,-73.7622,"(40.71991, -73.7622)",,,202-09 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423406,Sedan,,,, +06/02/2021,17:40,MANHATTAN,10019,40.762074,-73.98628,"(40.762074, -73.98628)",,,825 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423405,Sedan,Bike,,, +06/02/2021,13:33,MANHATTAN,10013,40.720375,-74.003265,"(40.720375, -74.003265)",CANAL STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422968,Sedan,,,, +06/04/2021,12:00,,,40.703724,-73.95979,"(40.703724, -73.95979)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423560,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,17:10,BRONX,10455,40.815422,-73.9161,"(40.815422, -73.9161)",,,451 EAST 149 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423582,Ambulance,,,, +12/11/2021,22:35,,,40.785805,-73.942856,"(40.785805, -73.942856)",EAST 100 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485492,Sedan,,,, +06/02/2021,22:15,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,TILLARY STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4423091,Sedan,Sedan,,, +06/04/2021,17:30,BROOKLYN,11215,40.66447,-73.97829,"(40.66447, -73.97829)",,,679 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423521,Sedan,,,, +02/06/2021,0:40,BROOKLYN,11213,40.67695,-73.93675,"(40.67695, -73.93675)",,,1629 PACIFIC STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424024,Sedan,,,, +06/03/2021,14:43,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,DELANCEY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423887,Van,Van,,, +06/03/2021,10:46,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423493,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,11:00,BROOKLYN,11212,40.657276,-73.92102,"(40.657276, -73.92102)",,,9302 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424058,Sedan,,,, +06/01/2021,13:30,BROOKLYN,11226,40.646286,-73.96028,"(40.646286, -73.96028)",,,681 OCEAN AVENUE,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423861,Bike,,,, +06/01/2021,7:50,,,40.677483,-73.93033,"(40.677483, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423929,Sedan,,,, +06/03/2021,9:32,MANHATTAN,10032,40.84103,-73.94463,"(40.84103, -73.94463)",WEST 165 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423361,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,10:15,BROOKLYN,11211,40.71161,-73.95754,"(40.71161, -73.95754)",HAVEMEYER STREET,SOUTH 2 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423567,Sedan,,,, +06/02/2021,10:50,,,40.65965,-73.773834,"(40.65965, -73.773834)",NASSAU EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423107,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,17:40,BROOKLYN,11232,40.66284,-73.99894,"(40.66284, -73.99894)",3 AVENUE,23 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423813,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/06/2021,17:52,,,40.689228,-73.957,"(40.689228, -73.957)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424095,Box Truck,Sedan,,, +06/02/2021,19:30,,,40.57257,-74.169876,"(40.57257, -74.169876)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,17:30,QUEENS,11367,40.723362,-73.81738,"(40.723362, -73.81738)",,,147-20 76 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4423425,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,2:52,,,40.685654,-73.86427,"(40.685654, -73.86427)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423155,Sedan,,,, +06/02/2021,13:18,QUEENS,11361,40.757755,-73.77912,"(40.757755, -73.77912)",,,204-12 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422942,Sedan,Sedan,,, +04/24/2021,1:48,QUEENS,11378,40.722897,-73.91386,"(40.722897, -73.91386)",RUST STREET,MASPETH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424003,Sedan,,,, +06/01/2021,17:33,MANHATTAN,10012,40.72235,-73.99327,"(40.72235, -73.99327)",BOWERY,PRINCE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4423880,Pick-up Truck,Bike,,, +06/03/2021,19:55,,,40.78821,-73.7907,"(40.78821, -73.7907)",CROSS ISLAND PARKWAY,CLEARVIEW EXPRESSWAY,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4424123,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/04/2021,8:24,BROOKLYN,11209,40.62359,-74.025055,"(40.62359, -74.025055)",83 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4423438,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/02/2021,11:04,BROOKLYN,11207,40.67123,-73.900375,"(40.67123, -73.900375)",,,1957 PITKIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422880,Tractor Truck Diesel,Pick-up Truck,,, +06/02/2021,19:15,,,40.72592,-73.72439,"(40.72592, -73.72439)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424274,Pick-up Truck,Flat Bed,,, +06/03/2021,20:50,,,40.62051,-73.99248,"(40.62051, -73.99248)",17 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423306,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,21:00,BROOKLYN,11222,40.724667,-73.95232,"(40.724667, -73.95232)",,,962 LORIMER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423322,Sedan,,,, +06/03/2021,21:34,BROOKLYN,11231,40.684177,-73.992195,"(40.684177, -73.992195)",SMITH STREET,BUTLER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423341,Taxi,,,, +06/04/2021,13:22,,,40.63245,-74.146515,"(40.63245, -74.146515)",,,228 MORNINGSTAR ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423457,Sedan,Tractor Truck Diesel,,, +06/02/2021,14:00,BRONX,10473,40.822285,-73.87772,"(40.822285, -73.87772)",,,927 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422915,Box Truck,Bus,,, +06/02/2021,8:30,BROOKLYN,11220,40.634747,-74.01752,"(40.634747, -74.01752)",6 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:00,QUEENS,11365,40.731785,-73.81082,"(40.731785, -73.81082)",,,70-30 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423790,Sedan,,,, +06/02/2021,11:15,QUEENS,11361,40.755238,-73.782074,"(40.755238, -73.782074)",,,45-54 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,5:45,QUEENS,11365,40.73656,-73.79923,"(40.73656, -73.79923)",65 AVENUE,170 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4423410,Sedan,Sedan,Sedan,Sedan, +06/02/2021,16:00,STATEN ISLAND,10312,40.54208,-74.157234,"(40.54208, -74.157234)",SYCAMORE STREET,BEACH ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,13:30,,,40.680473,-73.9614,"(40.680473, -73.9614)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423897,Taxi,Bike,,, +06/02/2021,3:00,BROOKLYN,11233,40.675346,-73.92198,"(40.675346, -73.92198)",RALPH AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,,,4422851,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/03/2021,21:31,MANHATTAN,10023,40.774155,-73.984886,"(40.774155, -73.984886)",AMSTERDAM AVENUE,WEST 65 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4423628,Sedan,,,, +06/03/2021,7:46,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4423152,Sedan,Box Truck,,, +05/29/2021,21:00,,,40.67277,-73.9628,"(40.67277, -73.9628)",WASHINGTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423892,Sedan,Bike,,, +06/01/2021,5:45,QUEENS,11379,40.718967,-73.88871,"(40.718967, -73.88871)",,,61-51 69 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4424006,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/04/2021,10:40,QUEENS,11693,40.58938,-73.81556,"(40.58938, -73.81556)",BEACH CHANNEL DRIVE,BEACH 90 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/02/2021,0:00,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4423050,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,8:00,BROOKLYN,11226,40.646885,-73.94891,"(40.646885, -73.94891)",,,3014 TILDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423661,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,21:00,BROOKLYN,11226,40.65217,-73.96141,"(40.65217, -73.96141)",OCEAN AVENUE,CATON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423736,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,17:25,,,40.78223,-73.77119,"(40.78223, -73.77119)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424117,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,10:30,BROOKLYN,11221,40.688473,-73.93105,"(40.688473, -73.93105)",,,881 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423869,Sedan,Box Truck,,, +06/01/2021,15:18,MANHATTAN,10011,40.74581,-74.00554,"(40.74581, -74.00554)",10 AVENUE,WEST 20 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4423956,Sedan,Box Truck,,, +05/09/2021,17:20,,,40.668495,-73.925606,"(40.668495, -73.925606)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424029,Sedan,Sedan,,, +06/02/2021,23:04,,,40.873947,-73.88341,"(40.873947, -73.88341)",EAST 204 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Drugs (illegal),,,,4423069,Station Wagon/Sport Utility Vehicle,Bike,,, +06/02/2021,15:53,MANHATTAN,10037,40.810303,-73.93942,"(40.810303, -73.93942)",,,2145 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423365,Bike,bus,,, +06/03/2021,15:48,,,40.84036,-73.91807,"(40.84036, -73.91807)",WEST 170 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4423378,Ambulance,Bus,,, +06/03/2021,7:46,QUEENS,11412,40.68587,-73.76349,"(40.68587, -73.76349)",120 AVENUE,180 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:49,BROOKLYN,11237,40.709988,-73.933304,"(40.709988, -73.933304)",SCHOLES STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423571,Sedan,,,, +06/02/2021,20:30,BRONX,10459,40.82431,-73.89263,"(40.82431, -73.89263)",,,1045 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423481,Sedan,Sedan,,, +06/02/2021,12:18,QUEENS,11434,40.675198,-73.789894,"(40.675198, -73.789894)",SUTPHIN BOULEVARD,125 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423112,Box Truck,,,, +06/03/2021,11:45,,,40.724262,-73.93766,"(40.724262, -73.93766)",MEEKER AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4424062,Box Truck,Sedan,,, +06/02/2021,8:45,QUEENS,11369,40.760906,-73.87295,"(40.760906, -73.87295)",30 AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423603,Sedan,,,, +06/02/2021,12:30,,,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,20:07,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,AVENUE B,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4424165,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,10:00,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4423160,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,9:24,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422868,Bus,Sedan,,, +06/02/2021,18:00,BROOKLYN,11210,40.62448,-73.938835,"(40.62448, -73.938835)",,,1863 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4423442,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +06/04/2021,19:27,,,40.81401,-73.94466,"(40.81401, -73.94466)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4424238,Sedan,Box Truck,,, +06/02/2021,10:08,BROOKLYN,11234,40.61222,-73.918846,"(40.61222, -73.918846)",,,5602 AVENUE U,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4422952,Sedan,,,, +06/02/2021,16:00,,,40.74106,-73.946106,"(40.74106, -73.946106)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423031,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:05,BROOKLYN,11233,40.67909,-73.90829,"(40.67909, -73.90829)",STONE AVENUE,SOMERS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4423707,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/03/2021,17:50,,,40.65807,-73.960434,"(40.65807, -73.960434)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423302,Sedan,PK,,, +06/04/2020,7:30,QUEENS,11368,40.744232,-73.861275,"(40.744232, -73.861275)",,,102-24 CORONA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423984,Bus,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,9:30,BRONX,10460,40.842655,-73.89052,"(40.842655, -73.89052)",PROSPECT AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424265,Sedan,Sedan,,, +06/04/2021,9:59,QUEENS,11422,40.66685,-73.73672,"(40.66685, -73.73672)",241 STREET,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423437,Sedan,Sedan,,, +06/03/2021,2:45,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423346,Tractor Truck Diesel,Sedan,,, +06/02/2021,22:40,BROOKLYN,11249,40.712055,-73.96615,"(40.712055, -73.96615)",WYTHE AVENUE,SOUTH 5 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,4423105,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/03/2021,11:20,BRONX,10468,40.8701,-73.8937,"(40.8701, -73.8937)",,,2810 MORRIS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423227,Bus,Pick-up Truck,,, +06/03/2021,19:57,,,40.63083,-73.90736,"(40.63083, -73.90736)",AVENUE L,EAST 80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423307,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,8:45,QUEENS,11366,40.724453,-73.810234,"(40.724453, -73.810234)",,,158-40 76 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4423469,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,15:10,MANHATTAN,10022,40.760254,-73.967545,"(40.760254, -73.967545)",EAST 57 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422973,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,1:51,,,40.769863,-73.947914,"(40.769863, -73.947914)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423337,Sedan,,,, +06/02/2021,14:45,BROOKLYN,11205,,,,MYRTLE AVENUE,HALL STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423014,Sedan,Bike,,, +06/02/2021,14:28,QUEENS,11101,40.745945,-73.95552,"(40.745945, -73.95552)",47 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423274,Sedan,Taxi,,, +06/02/2021,13:00,BROOKLYN,11236,40.64025,-73.89287,"(40.64025, -73.89287)",AVENUE L,EAST 100 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4422893,Sedan,Sedan,,, +06/03/2021,9:50,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423199,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,17:00,QUEENS,11101,40.750637,-73.94283,"(40.750637, -73.94283)",23 STREET,42 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423496,,,,, +06/04/2021,13:30,,,40.74273,-73.95412,"(40.74273, -73.95412)",VERNON BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423513,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,6:46,BROOKLYN,11226,40.644615,-73.962166,"(40.644615, -73.962166)",BEVERLEY ROAD,EAST 18 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423122,Sedan,Garbage or Refuse,,, +05/27/2021,20:36,BROOKLYN,11203,40.642742,-73.92242,"(40.642742, -73.92242)",,,5702 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,,,,,4423966,Sedan,,,, +06/01/2021,22:29,QUEENS,11368,40.739124,-73.85466,"(40.739124, -73.85466)",,,58-13 PENROD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424015,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,16:35,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423143,Sedan,,,, +06/02/2021,20:04,BROOKLYN,11236,40.645546,-73.90566,"(40.645546, -73.90566)",EAST 95 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423674,Sedan,Box Truck,,, +06/03/2021,6:30,BROOKLYN,11217,40.685078,-73.980064,"(40.685078, -73.980064)",,,525 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423464,Sedan,,,, +06/04/2021,1:53,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423342,Sedan,,,, +06/02/2021,6:40,MANHATTAN,10019,40.766834,-73.98105,"(40.766834, -73.98105)",,,235 WEST 58 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423397,Sedan,,,, +06/04/2021,16:28,,,40.632446,-73.9685,"(40.632446, -73.9685)",EAST 8 STREET,PARKVILLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423740,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,14:30,,,,,,PARK AVENUE SOUTH,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423192,Sedan,,,, +06/04/2021,17:21,MANHATTAN,10036,40.758427,-73.99264,"(40.758427, -73.99264)",WEST 42 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4423782,Beverage Truck,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,14:25,,,40.677017,-73.92182,"(40.677017, -73.92182)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423266,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,14:30,,,40.69415,-73.94027,"(40.69415, -73.94027)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424105,Bus,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,23:05,,,40.830845,-73.947235,"(40.830845, -73.947235)",WEST 152 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423046,EMS,Pick-up Truck,,, +06/02/2021,11:35,BRONX,10469,0,0,"(0.0, 0.0)",,,3253 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4423241,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,19:29,,,40.878574,-73.88488,"(40.878574, -73.88488)",EAST MOSHOLU PARKWAY SOUTH,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423062,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,21:30,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,18 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423536,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,14:30,QUEENS,11691,40.60485,-73.74822,"(40.60485, -73.74822)",NEILSON STREET,DINSMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4423369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/03/2021,2:44,MANHATTAN,10019,40.772434,-73.99238,"(40.772434, -73.99238)",,,675 WEST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423633,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,0:24,BROOKLYN,11233,40.68316,-73.93809,"(40.68316, -73.93809)",HALSEY STREET,MARCUS GARVEY BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4424038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:00,,,40.843906,-73.92413,"(40.843906, -73.92413)",UNIVERSITY AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4423374,Sedan,Bike,,, +06/03/2021,20:10,,,40.68854,-73.92384,"(40.68854, -73.92384)",MONROE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424069,Sedan,Bus,,, +06/04/2021,16:13,,,40.666935,-73.782715,"(40.666935, -73.782715)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423501,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,10:55,BROOKLYN,11212,40.668243,-73.90651,"(40.668243, -73.90651)",,,442 STONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423701,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,17:41,MANHATTAN,10018,40.758915,-73.9997,"(40.758915, -73.9997)",11 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4423977,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,11:45,QUEENS,11691,40.596325,-73.76673,"(40.596325, -73.76673)",ROCKAWAY FREEWAY,SEAGIRT BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4423099,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,0:00,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4423418,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,15:45,MANHATTAN,10009,40.724876,-73.975174,"(40.724876, -73.975174)",AVENUE D,EAST 10 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423843,kick scoot,gas bicycl,,, +06/02/2021,14:58,BROOKLYN,11204,40.610844,-73.978264,"(40.610844, -73.978264)",AVENUE O,WEST 4 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4422987,Sedan,Sedan,,, +06/04/2021,17:30,BRONX,10460,40.832047,-73.885704,"(40.832047, -73.885704)",,,1503 BOONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423760,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,21:23,,,40.885952,-73.8279,"(40.885952, -73.8279)",BOSTON ROAD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4424256,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,9:00,BRONX,10467,40.87823,-73.864395,"(40.87823, -73.864395)",,,729 EAST 212 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423850,Sedan,,,, +06/03/2021,9:25,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423909,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,0:02,BROOKLYN,11236,40.651985,-73.92073,"(40.651985, -73.92073)",,,920 RALPH AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4423210,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,8:15,,,40.66408,-73.94817,"(40.66408, -73.94817)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4423312,Sedan,Sedan,,, +06/03/2021,0:03,,,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424224,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/04/2021,17:20,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423474,Bike,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,9:40,BRONX,10455,40.816032,-73.90809,"(40.816032, -73.90809)",EAST 152 STREET,JACKSON AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4423080,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,5:00,QUEENS,11373,40.74337,-73.87008,"(40.74337, -73.87008)",,,94-31 46 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423991,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,17:45,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423417,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,3:00,QUEENS,11355,40.753494,-73.82987,"(40.753494, -73.82987)",SAULL STREET,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423027,,,,, +06/02/2021,12:30,BRONX,10451,40.818794,-73.92213,"(40.818794, -73.92213)",MORRIS AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423082,Taxi,Sedan,,, +06/02/2021,8:48,QUEENS,11105,40.77694,-73.901085,"(40.77694, -73.901085)",,,19-80 STEINWAY STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423801,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,19:20,,,40.71713,-73.7986,"(40.71713, -73.7986)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423432,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,12:58,QUEENS,11420,40.680008,-73.82305,"(40.680008, -73.82305)",117 STREET,111 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4423056,Bike,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,9:16,BRONX,10467,,,,EAST GUN HILL ROAD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423248,Sedan,,,, +06/04/2021,13:30,QUEENS,11422,40.65973,-73.74174,"(40.65973, -73.74174)",MAYDA ROAD,241 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423449,Sedan,Sedan,,, +06/02/2021,1:29,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4422683,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,12:08,,,40.72592,-73.72439,"(40.72592, -73.72439)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,23:45,BROOKLYN,11231,40.674362,-73.999,"(40.674362, -73.999)",,,34 GARNET STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424155,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,20:15,,,40.654488,-73.979034,"(40.654488, -73.979034)",19 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423528,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,21:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423550,Sedan,Sedan,,, +06/03/2021,11:40,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",GRAND CONCOURSE,EAST 144 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423333,Sedan,Sedan,,, +06/02/2021,19:50,,,,,,,,73 EAST DRIVE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4423009,E-Scooter,,,, +06/03/2021,10:04,MANHATTAN,10025,,,,west 106 street,amsterdam avenue,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4423187,Sedan,,,, +06/03/2021,15:20,BRONX,10453,40.84782,-73.90756,"(40.84782, -73.90756)",GRAND CONCOURSE,EAST 176 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4423328,Sedan,Ambulance,,, +06/03/2021,22:15,QUEENS,11101,40.737675,-73.930244,"(40.737675, -73.930244)",HUNTERS POINT AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4423311,Tractor Truck Diesel,Sedan,,, +06/03/2021,14:12,QUEENS,11412,40.69802,-73.7623,"(40.69802, -73.7623)",FARMERS BOULEVARD,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423233,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,16:20,STATEN ISLAND,10306,40.55234,-74.133194,"(40.55234, -74.133194)",HYLAN BOULEVARD,BAY TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,2:00,QUEENS,11434,40.672848,-73.76405,"(40.672848, -73.76405)",138 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422770,Sedan,Dump,,, +06/03/2021,15:15,BRONX,10462,40.847145,-73.854454,"(40.847145, -73.854454)",VANNEST AVENUE,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4423259,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/02/2021,11:55,,,40.60756,-73.984406,"(40.60756, -73.984406)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422984,Sedan,,,, +06/02/2021,20:54,,,40.584644,-73.94899,"(40.584644, -73.94899)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423057,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,22:46,,,40.786396,-73.80593,"(40.786396, -73.80593)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4423534,Sedan,Sedan,,, +06/03/2021,14:07,STATEN ISLAND,10308,40.553093,-74.142334,"(40.553093, -74.142334)",KEEGANS LANE,AMBOY ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423460,Sedan,Sedan,Sedan,, +06/03/2021,1:20,MANHATTAN,10011,40.73835,-73.997055,"(40.73835, -73.997055)",,,115 WEST 15 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4423832,Sedan,,,, +06/03/2021,17:09,,,40.797886,-73.973465,"(40.797886, -73.973465)",RIVERSIDE DRIVE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423284,Sedan,,,, +06/03/2021,9:21,STATEN ISLAND,10309,40.53975,-74.20163,"(40.53975, -74.20163)",,,789 SHELDON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423552,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,14:00,QUEENS,11102,40.76985,-73.92295,"(40.76985, -73.92295)",27 STREET,NEWTOWN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4423802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:47,BRONX,10468,40.861813,-73.91053,"(40.861813, -73.91053)",,,254 WEST FORDHAM ROAD,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4423576,Sedan,Bike,,, +05/27/2021,20:40,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4424020,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,16:51,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",EAST 36 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4423023,Station Wagon/Sport Utility Vehicle,Convertible,,, +06/03/2021,10:00,BROOKLYN,11201,40.689804,-73.98621,"(40.689804, -73.98621)",,,200 LIVINGSTON STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423178,Sedan,E-Bike,,, +05/11/2021,22:40,,,40.677338,-73.927536,"(40.677338, -73.927536)",ROCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423972,Sedan,Sedan,,, +06/04/2021,23:15,BROOKLYN,11212,40.66034,-73.92837,"(40.66034, -73.92837)",,,149 REMSEN AVENUE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4424045,Sedan,Sedan,Sedan,Sedan,Sedan +05/24/2021,9:05,BROOKLYN,11234,40.61782,-73.94309,"(40.61782, -73.94309)",,,3201 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,8:25,BRONX,10475,40.87521,-73.833694,"(40.87521, -73.833694)",,,850 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423205,Sedan,,,, +06/03/2021,23:17,,,40.687935,-73.9154,"(40.687935, -73.9154)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,Unspecified,,,4423387,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/03/2021,16:45,,,40.70317,-73.9327,"(40.70317, -73.9327)",BOGART STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423562,Ambulance,Sedan,,, +06/02/2021,23:42,QUEENS,11422,40.662148,-73.72892,"(40.662148, -73.72892)",,,142-15 HOOK CREEK BOULEVARD,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4423041,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/02/2021,21:21,,,40.67612,-73.936005,"(40.67612, -73.936005)",TROY AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4423886,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2021,10:45,BROOKLYN,11216,40.67416,-73.94732,"(40.67416, -73.94732)",PROSPECT PLACE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4424025,Sedan,Sedan,,, +06/03/2021,6:40,BRONX,10475,40.860203,-73.82649,"(40.860203, -73.82649)",,,2212 DEREIMER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423355,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/30/2021,22:00,BROOKLYN,11213,40.671303,-73.933685,"(40.671303, -73.933685)",,,232 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423928,Convertible,,,, +06/01/2021,21:30,,,40.64499,-73.93549,"(40.64499, -73.93549)",TROY AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4424083,Sedan,,,, +06/03/2021,10:37,BROOKLYN,11222,40.727127,-73.93716,"(40.727127, -73.93716)",,,71 VAN DAM STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423323,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,14:50,,,40.799328,-73.96099,"(40.799328, -73.96099)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423273,Sedan,Sedan,,, +06/04/2021,11:26,BRONX,10460,40.840866,-73.87281,"(40.840866, -73.87281)",EAST 180 STREET,MORRIS PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4424199,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,16:15,,,40.837124,-73.909645,"(40.837124, -73.909645)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423370,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,12:05,QUEENS,11375,40.72201,-73.853485,"(40.72201, -73.853485)",BURNS STREET,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422892,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,8:00,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422919,Bus,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,18:20,BRONX,10459,40.821285,-73.90095,"(40.821285, -73.90095)",,,910 PROSPECT AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4423697,Sedan,Bike,,, +06/02/2021,16:30,BROOKLYN,11230,40.632717,-73.96692,"(40.632717, -73.96692)",,,1022 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423116,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,21:20,BROOKLYN,11233,40.677853,-73.93026,"(40.677853, -73.93026)",,,45 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424067,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/04/2021,22:48,,,,,,BROOKLYN BRIDGE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4423609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,18:50,QUEENS,11365,40.73791,-73.77444,"(40.73791, -73.77444)",199 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423413,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,9:00,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423316,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,10:40,,,40.644455,-74.0183,"(40.644455, -74.0183)",56 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423003,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,21:40,BRONX,10455,40.810997,-73.905846,"(40.810997, -73.905846)",SOUTHERN BOULEVARD,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423445,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,8:00,BRONX,10468,40.86862,-73.892426,"(40.86862, -73.892426)",GRAND CONCOURSE,MIRIAM STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4423164,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,16:29,,,40.607754,-74.13205,"(40.607754, -74.13205)",BRADLEY AVENUE,SOUTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423428,LADDER CO,Sedan,,, +06/04/2021,0:57,BRONX,10469,40.87745,-73.85179,"(40.87745, -73.85179)",,,1308 HICKS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423851,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/04/2021,14:39,BRONX,10459,40.828236,-73.88602,"(40.828236, -73.88602)",FREEMAN STREET,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4423752,Bus,Sedan,Tractor Truck Diesel,, +06/03/2021,16:24,MANHATTAN,10026,40.801155,-73.959656,"(40.801155, -73.959656)",MANHATTAN AVENUE,WEST 110 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423289,Bike,Sedan,,, +05/24/2021,8:24,QUEENS,11385,40.7033,-73.91078,"(40.7033, -73.91078)",,,1717 GROVE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424011,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,0:00,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",FRANCIS LEWIS BOULEVARD,HILLSIDE AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4422870,Sedan,Sedan,,, +06/02/2021,18:30,,,40.757145,-73.99357,"(40.757145, -73.99357)",WEST 40 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423086,Bus,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,13:20,MANHATTAN,10032,40.84115,-73.942696,"(40.84115, -73.942696)",,,177 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423123,Taxi,Ambulance,,, +06/04/2021,12:50,BROOKLYN,11235,40.57826,-73.95838,"(40.57826, -73.95838)",,,1035 BRIGHTON BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423450,Box Truck,Sedan,,, +06/01/2021,15:00,BROOKLYN,11203,40.64934,-73.94264,"(40.64934, -73.94264)",SNYDER AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424059,Sedan,,,, +06/01/2021,13:50,MANHATTAN,10009,40.734974,-73.97987,"(40.734974, -73.97987)",1 AVENUE,EAST 20 STREET,,2,0,2,0,0,0,0,0,Oversized Vehicle,,,,,4423904,Bike,,,, +06/02/2021,11:52,,,40.724552,-73.72452,"(40.724552, -73.72452)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422904,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,16:15,QUEENS,11429,40.7185,-73.73531,"(40.7185, -73.73531)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423030,Sedan,,,, +06/04/2021,17:40,STATEN ISLAND,10308,40.544735,-74.14359,"(40.544735, -74.14359)",WHITMAN AVENUE,HYLAN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4423488,Sedan,,,, +06/03/2021,12:05,,,40.865387,-73.893456,"(40.865387, -73.893456)",VALENTINE AVENUE,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4423228,Bus,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:43,,,40.684082,-73.90864,"(40.684082, -73.90864)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4424141,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,23:40,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423617,Sedan,Sedan,,, +06/02/2021,17:21,BROOKLYN,11210,40.62731,-73.941826,"(40.62731, -73.941826)",FLATBUSH AVENUE,AVENUE J,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423505,Sedan,,,, +06/03/2021,15:54,BROOKLYN,11204,40.610844,-73.978264,"(40.610844, -73.978264)",AVENUE O,WEST 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423265,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,9:40,MANHATTAN,10009,40.724545,-73.97994,"(40.724545, -73.97994)",,,205 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423172,Sedan,Box Truck,,, +05/26/2021,7:00,BROOKLYN,11221,40.69584,-73.92959,"(40.69584, -73.92959)",CEDAR STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423382,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,9:45,QUEENS,11420,40.677265,-73.8262,"(40.677265, -73.8262)",,,112-20 ROCKAWAY BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4422994,Sedan,Pick-up Truck,,, +06/04/2021,23:26,BROOKLYN,11226,40.650097,-73.960815,"(40.650097, -73.960815)",,,2006 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423742,Sedan,,,, +06/01/2021,21:14,BRONX,10465,40.84615,-73.818344,"(40.84615, -73.818344)",AMPERE AVENUE,LIBRARY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424259,Sedan,Sedan,,, +06/03/2021,11:24,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424163,Pick-up Truck,Bike,,, +06/04/2021,3:45,QUEENS,11435,40.6929,-73.80551,"(40.6929, -73.80551)",PRINCETON STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423456,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,21:50,,,,,,CROSS ISLAND PARKWAY,CLINTONVILLE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423035,Sedan,Sedan,,, +06/03/2021,16:19,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423350,Sedan,Sedan,,, +06/02/2021,23:05,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",31 STREET,NEWTOWN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423808,Sedan,,,, +06/04/2021,21:55,,,40.67536,-73.8126,"(40.67536, -73.8126)",125 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4423650,Sedan,Sedan,,, +06/04/2021,22:50,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423545,Convertible,Tractor Truck Diesel,,, +06/04/2021,21:50,BROOKLYN,11206,40.693604,-73.93857,"(40.693604, -73.93857)",,,315 PULASKI STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423514,Van,Sedan,,, +03/10/2021,13:08,BROOKLYN,11216,40.676094,-73.94992,"(40.676094, -73.94992)",NOSTRAND AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423968,Sedan,Bike,,, +06/02/2021,17:30,BRONX,10469,40.872707,-73.8411,"(40.872707, -73.8411)",,,3125 TIEMANN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423838,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,15:12,,,40.805073,-73.92331,"(40.805073, -73.92331)",BRUCKNER BOULEVARD,WILLIS AVENUE BRIDGE APPROACH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423583,Pick-up Truck,Sedan,,, +07/02/2022,8:00,,,40.69644,-73.92228,"(40.69644, -73.92228)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542879,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,15:05,BROOKLYN,11216,40.67646,-73.9499,"(40.67646, -73.9499)",,,642 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423881,Van,,,, +05/17/2021,6:30,BRONX,10459,40.821,-73.8969,"(40.821, -73.8969)",EAST 163 STREET,INTERVALE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423477,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,8:19,,,,,,23 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Passing Too Closely,,,,4424124,Pick-up Truck,Pick-up Truck,,, +06/03/2021,12:56,,,40.851654,-73.91566,"(40.851654, -73.91566)",WEST TREMONT AVENUE,ANDREWS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4423345,Sedan,,,, +06/02/2021,22:20,STATEN ISLAND,10309,40.518517,-74.199684,"(40.518517, -74.199684)",HYLAN BOULEVARD,INEZ STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423303,Sedan,,,, +06/03/2021,12:35,,,40.62156,-74.16849,"(40.62156, -74.16849)",SOUTH AVENUE,GOETHALS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,22:30,QUEENS,11428,40.723602,-73.731766,"(40.723602, -73.731766)",224 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423542,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,18:50,,,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423922,Bike,,,, +06/04/2021,18:00,,,40.758327,-73.96894,"(40.758327, -73.96894)",EAST 54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423641,Sedan,,,, +06/03/2021,19:45,BROOKLYN,11230,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,AVENUE N,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423860,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,17:50,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424250,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/04/2021,3:50,MANHATTAN,10028,40.779495,-73.95559,"(40.779495, -73.95559)",EAST 86 STREET,LEXINGTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423338,Sedan,Garbage or Refuse,,, +05/31/2021,4:00,BROOKLYN,11223,40.59011,-73.97422,"(40.59011, -73.97422)",SHELL ROAD,AVENUE X,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4423789,Sedan,,,, +06/02/2021,11:51,QUEENS,11412,40.69385,-73.76643,"(40.69385, -73.76643)",TIOGA DRIVE,DUNKIRK STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4423111,Station Wagon/Sport Utility Vehicle,Bike,,, +06/03/2021,13:00,,,,,,WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423732,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,3:48,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423899,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,11:55,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,8:33,MANHATTAN,10019,40.76411,-73.9885,"(40.76411, -73.9885)",9 AVENUE,WEST 51 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422795,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,7:00,MANHATTAN,10001,40.74977,-73.987785,"(40.74977, -73.987785)",AVENUE OF THE AMERICAS,WEST 34 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4423158,Box Truck,,,, +06/04/2021,7:15,,,,,,PELHAM PARKWAY,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423409,Sedan,Sedan,,, +06/02/2021,7:15,BROOKLYN,11201,40.68864,-73.983665,"(40.68864, -73.983665)",,,33 BOND STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4422964,Sedan,Sedan,,, +06/02/2021,2:52,,,40.700245,-73.92089,"(40.700245, -73.92089)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4423377,Sedan,Taxi,,, +09/24/2022,18:00,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4567002,Sedan,Sedan,,, +06/03/2021,2:50,QUEENS,11373,40.736294,-73.867096,"(40.736294, -73.867096)",,,94-25 57 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:42,,,40.747543,-73.97079,"(40.747543, -73.97079)",1 AVENUE,,,1,0,0,0,1,0,0,0,Alcohol Involvement,,,,,4423678,Bike,,,, +06/03/2021,2:30,BROOKLYN,11237,40.709698,-73.92161,"(40.709698, -73.92161)",,,1293 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4423090,Sedan,,,, +05/20/2021,17:00,BRONX,10466,40.899815,-73.85781,"(40.899815, -73.85781)",NEREID AVENUE,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,2:00,,,40.72676,-73.90582,"(40.72676, -73.90582)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423720,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/30/2021,10:53,QUEENS,11385,40.69912,-73.90789,"(40.69912, -73.90789)",,,1638 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,12:15,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423441,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,23:35,,,40.68668,-73.97937,"(40.68668, -73.97937)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423520,Taxi,Sedan,,, +05/31/2021,21:00,BRONX,10452,40.841347,-73.9169,"(40.841347, -73.9169)",EAST 171 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4424173,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/02/2021,14:00,,,,,,109 AVENUE,VANWYCK EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423049,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,16:19,BRONX,10468,40.859974,-73.900795,"(40.859974, -73.900795)",MORRIS AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423349,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,16:00,QUEENS,11377,40.75411,-73.898705,"(40.75411, -73.898705)",BROOKLYN QUEENS EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423492,Sedan,,,, +06/03/2021,11:25,QUEENS,11361,40.768448,-73.77077,"(40.768448, -73.77077)",214 PLACE,36 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423269,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,16:37,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,EAST 233 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424271,Sedan,Sedan,,, +06/04/2021,18:15,BROOKLYN,11213,40.66485,-73.94098,"(40.66485, -73.94098)",,,722 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423509,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,21:21,,,,,,ROCKAWAY BOULEVARD,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4423066,Sedan,Motorcycle,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan +06/03/2021,11:10,BROOKLYN,11228,40.616047,-74.025734,"(40.616047, -74.025734)",DAHLGREN PLACE,92 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423223,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,9:38,MANHATTAN,10032,40.831566,-73.942986,"(40.831566, -73.942986)",WEST 155 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423360,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,10:00,,,40.69614,-73.9734,"(40.69614, -73.9734)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423013,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,7:57,MANHATTAN,10022,40.755844,-73.964714,"(40.755844, -73.964714)",,,966 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423593,Sedan,,,, +06/02/2021,22:00,MANHATTAN,10001,40.74675,-73.99799,"(40.74675, -73.99799)",,,300 WEST 25 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,10:12,BROOKLYN,11233,40.67428,-73.916695,"(40.67428, -73.916695)",BERGEN STREET,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4423165,Sedan,Sedan,,, +06/04/2021,11:00,,,40.70735,-73.959404,"(40.70735, -73.959404)",DIVISION AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423566,Sedan,Bus,,, +06/04/2021,3:30,QUEENS,11370,40.7666,-73.89117,"(40.7666, -73.89117)",78 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4423812,Sedan,,,, +06/04/2021,10:30,MANHATTAN,10003,40.731586,-73.99158,"(40.731586, -73.99158)",,,784 BROADWAY,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4423842,Station Wagon/Sport Utility Vehicle,,,, +03/14/2021,12:30,BROOKLYN,11217,40.689213,-73.97701,"(40.689213, -73.97701)",,,10 FORT GREENE PLACE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4423497,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,8:30,,,40.589844,-73.99111,"(40.589844, -73.99111)",BAY 43 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423774,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,18:00,QUEENS,11412,40.692856,-73.74703,"(40.692856, -73.74703)",119 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423549,Sedan,,,, +05/27/2021,9:40,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4423769,Van,Sedan,Sedan,, +06/04/2021,18:40,QUEENS,11361,40.76031,-73.774315,"(40.76031, -73.774315)",KENNEDY STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423510,Sedan,Van,,, +06/04/2021,0:00,QUEENS,11429,40.71256,-73.732994,"(40.71256, -73.732994)",221 STREET,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423669,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/04/2021,17:35,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,12:47,,,40.76242,-73.82752,"(40.76242, -73.82752)",UNION STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4423577,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,15:05,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423194,Taxi,Box Truck,,, +03/27/2021,8:30,BROOKLYN,11233,40.68507,-73.92649,"(40.68507, -73.92649)",,,183 PATCHEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423874,Taxi,,,, +06/02/2021,4:00,QUEENS,11355,40.75786,-73.830246,"(40.75786, -73.830246)",,,133-45 41 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4423034,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,15:58,BROOKLYN,11218,40.63939,-73.96852,"(40.63939, -73.96852)",,,1025 CORTELYOU ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423739,Sedan,Bus,,, +06/04/2021,21:21,QUEENS,11354,40.764706,-73.811005,"(40.764706, -73.811005)",NORTHERN BOULEVARD,154 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4424115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,13:40,,,40.829597,-73.94814,"(40.829597, -73.94814)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423414,Sedan,,,, +06/03/2021,19:35,MANHATTAN,10036,40.760353,-73.99124,"(40.760353, -73.99124)",WEST 45 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423785,Sedan,,,, +05/17/2021,13:40,BROOKLYN,11221,40.690765,-73.92429,"(40.690765, -73.92429)",RALPH AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4423868,Sedan,,,, +06/04/2021,19:52,,,,,,FLATBUSH AVENUE,EASTERN PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423537,Sedan,Bike,,, +06/01/2021,17:24,STATEN ISLAND,10301,40.620686,-74.11002,"(40.620686, -74.11002)",BARD AVENUE,BEMENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423913,Sedan,Pick-up Truck,Sedan,, +05/29/2021,18:25,QUEENS,11103,40.76496,-73.90532,"(40.76496, -73.90532)",48 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,19:16,BRONX,10459,40.826775,-73.89496,"(40.826775, -73.89496)",,,1137 TIFFANY STREET,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4423478,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van +06/02/2021,22:40,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,4423134,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/04/2021,0:54,,,40.672413,-73.957344,"(40.672413, -73.957344)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423894,Sedan,Sedan,,, +06/02/2021,9:21,BROOKLYN,11249,40.70085,-73.95894,"(40.70085, -73.95894)",,,95 RUTLEDGE STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4422843,Box Truck,Box Truck,,, +06/02/2021,11:58,,,40.715473,-73.95185,"(40.715473, -73.95185)",MEEKER AVENUE,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423075,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,12:20,,,40.697716,-73.96488,"(40.697716, -73.96488)",FLUSHING AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4423625,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,11:09,BROOKLYN,11218,40.644264,-73.97402,"(40.644264, -73.97402)",,,227 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4422935,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,14:55,QUEENS,11378,40.72691,-73.90033,"(40.72691, -73.90033)",65 PLACE,55 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4423997,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,18:37,,,40.826042,-73.85933,"(40.826042, -73.85933)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423392,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,15:00,QUEENS,11694,40.584534,-73.82233,"(40.584534, -73.82233)",,,226 BEACH 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423524,Sedan,,,, +06/04/2021,14:20,BROOKLYN,11212,40.663517,-73.90238,"(40.663517, -73.90238)",POWELL STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423704,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,19:05,BRONX,10454,40.804905,-73.91883,"(40.804905, -73.91883)",SAINT ANNS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423083,Sedan,Sedan,,, +06/02/2021,16:43,STATEN ISLAND,10306,40.566494,-74.11377,"(40.566494, -74.11377)",HYLAN BOULEVARD,ALLISON AVENUE,,3,0,1,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4423008,Sedan,Sedan,Sedan,, +06/03/2021,18:20,,,40.62055,-74.16919,"(40.62055, -74.16919)",SOUTH AVENUE,GLEN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4423364,Sedan,Sedan,,, +06/03/2021,1:21,MANHATTAN,10034,40.8651,-73.92189,"(40.8651, -73.92189)",WEST 204 STREET,SHERMAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4423239,Bus,Sedan,,, +06/03/2021,4:00,QUEENS,11104,40.742508,-73.91788,"(40.742508, -73.91788)",GREENPOINT AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423045,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,16:05,,,40.751522,-73.99396,"(40.751522, -73.99396)",8 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423249,Van,Sedan,,, +04/08/2021,13:40,,,40.673683,-73.92214,"(40.673683, -73.92214)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424019,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,0:47,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4422695,Bike,,,, +06/03/2021,13:59,QUEENS,11004,40.74455,-73.703094,"(40.74455, -73.703094)",268 STREET,81 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423279,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,10:00,BRONX,10459,40.83044,-73.89654,"(40.83044, -73.89654)",,,827 FREEMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423759,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,8:16,BROOKLYN,11207,40.681946,-73.904884,"(40.681946, -73.904884)",DE SALES PLACE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423381,Sedan,Sedan,,, +05/31/2021,23:00,BROOKLYN,11221,40.69296,-73.93106,"(40.69296, -73.93106)",REID AVENUE,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424036,Sedan,Sedan,,, +06/03/2021,9:15,QUEENS,11373,40.73351,-73.87491,"(40.73351, -73.87491)",,,87-04 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423186,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,5:24,QUEENS,11362,40.75064,-73.73935,"(40.75064, -73.73935)",68 AVENUE,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423332,Sedan,Sedan,,, +06/03/2021,19:45,BROOKLYN,11206,40.701424,-73.94307,"(40.701424, -73.94307)",BROADWAY,THORNTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,17:00,QUEENS,11101,40.75205,-73.92792,"(40.75205, -73.92792)",36 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423797,Motorcycle,,,, +06/01/2021,23:20,MANHATTAN,10001,40.74782,-73.99665,"(40.74782, -73.99665)",WEST 27 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423976,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,19:30,,,,,,HORACE HARDING EXPRESSWAY,164 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423419,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,11:30,,,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423599,Sedan,Bike,,, +06/04/2021,13:37,,,40.774223,-73.893715,"(40.774223, -73.893715)",49 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423819,Sedan,,,, +06/04/2021,16:28,BRONX,10460,40.842594,-73.866394,"(40.842594, -73.866394)",,,642 MEAD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423553,Sedan,,,, +05/31/2021,21:37,QUEENS,11375,40.737953,-73.85109,"(40.737953, -73.85109)",PENROD STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4423990,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,15:20,,,40.7422,-73.840965,"(40.7422, -73.840965)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424021,Sedan,Van,,, +06/04/2021,19:30,,,40.674137,-73.83903,"(40.674137, -73.83903)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423659,Sedan,Sedan,,, +06/03/2021,5:25,BROOKLYN,11216,40.67625,-73.95308,"(40.67625, -73.95308)",BEDFORD AVENUE,BERGEN STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unsafe Speed,,,,4423891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,6:59,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4415808,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/03/2021,18:00,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423317,Dump,Sedan,,, +06/03/2021,15:40,BROOKLYN,11235,40.58531,-73.95353,"(40.58531, -73.95353)",,,3311 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4423433,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,19:35,MANHATTAN,10036,40.7602,-73.996864,"(40.7602, -73.996864)",,,524 WEST 42 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,21:26,BROOKLYN,11230,40.623,-73.95905,"(40.623, -73.95905)",AVENUE K,EAST 17 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Lighting Defects,,,,4423735,Sedan,Bike,,, +06/04/2021,7:35,BRONX,10455,40.80988,-73.90308,"(40.80988, -73.90308)",EAST 149 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Following Too Closely,,,,4423446,3-Door,Sedan,,, +06/04/2021,15:40,QUEENS,11356,40.78417,-73.84675,"(40.78417, -73.84675)",121 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423535,Sedan,PK,,, +06/02/2021,22:00,,,40.840977,-73.916016,"(40.840977, -73.916016)",EAST 171 STREET,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4423451,Taxi,Sedan,Sedan,Sedan,Sedan +06/02/2021,16:43,BROOKLYN,11233,40.677174,-73.924774,"(40.677174, -73.924774)",ATLANTIC AVENUE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424075,Flat Bed,Sedan,,, +06/02/2021,21:45,MANHATTAN,10033,40.84491,-73.93324,"(40.84491, -73.93324)",WEST 176 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423124,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,12:36,QUEENS,11429,40.71308,-73.72979,"(40.71308, -73.72979)",,,101-06 224 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422903,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/02/2021,10:40,QUEENS,11422,40.660328,-73.73935,"(40.660328, -73.73935)",243 STREET,144 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422905,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,16:40,MANHATTAN,10128,40.778805,-73.947975,"(40.778805, -73.947975)",EAST 89 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423100,Sedan,,,, +06/02/2021,13:15,QUEENS,11413,40.6688,-73.742805,"(40.6688, -73.742805)",231 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423277,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,12:25,,,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4422948,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +05/28/2021,1:54,,,40.84479,-73.91587,"(40.84479, -73.91587)",INWOOD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424172,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,16:23,BROOKLYN,11210,40.621986,-73.95465,"(40.621986, -73.95465)",,,1290 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423118,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,19:45,MANHATTAN,10033,40.850693,-73.92748,"(40.850693, -73.92748)",LAUREL HILL TERRACE,WEST 186 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,13:00,QUEENS,11428,40.7155,-73.75532,"(40.7155, -73.75532)",,,93-40 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423294,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,14:00,BROOKLYN,11215,40.658134,-73.9896,"(40.658134, -73.9896)",22 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422993,Sedan,,,, +06/02/2021,6:00,MANHATTAN,10024,40.78426,-73.974945,"(40.78426, -73.974945)",,,122 WEST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423632,Sedan,Sedan,,, +06/02/2021,16:55,QUEENS,11418,40.695847,-73.81996,"(40.695847, -73.81996)",,,129-01 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4423146,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:50,BRONX,10475,40.885303,-73.82954,"(40.885303, -73.82954)",BOSTON ROAD,DELAVALL AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,4423845,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/03/2021,15:00,,,40.830437,-73.83748,"(40.830437, -73.83748)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4423315,Sedan,Motorcycle,,, +06/02/2021,9:00,BROOKLYN,11209,40.61815,-74.03165,"(40.61815, -74.03165)",,,354 93 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4422860,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/04/2021,12:57,MANHATTAN,10013,40.7177,-74.00406,"(40.7177, -74.00406)",,,68 FRANKLIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423465,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,16:50,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",ESSEX STREET,DELANCEY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423101,Sedan,,,, +06/03/2021,10:30,MANHATTAN,10019,40.76737,-73.98445,"(40.76737, -73.98445)",,,356 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423396,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,22:12,STATEN ISLAND,10301,40.618282,-74.105194,"(40.618282, -74.105194)",CLOVE ROAD,CHESHIRE PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Backing Unsafely,,,,4423908,Sedan,Sedan,,, +06/03/2021,11:11,BROOKLYN,11207,40.683933,-73.91228,"(40.683933, -73.91228)",BROADWAY,DECATUR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423700,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,0:00,,,40.668266,-73.84214,"(40.668266, -73.84214)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423652,Sedan,Sedan,,, +05/24/2021,15:10,BROOKLYN,11233,40.67958,-73.919334,"(40.67958, -73.919334)",,,243 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424066,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,19:15,,,40.707153,-73.8189,"(40.707153, -73.8189)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423610,Sedan,Sedan,,, +06/02/2021,13:30,BROOKLYN,11231,40.67641,-74.00104,"(40.67641, -74.00104)",HAMILTON AVENUE,CLINTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423139,Sedan,Pick-up Truck,,, +04/10/2021,23:30,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423444,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,20:00,BRONX,10466,40.89482,-73.85899,"(40.89482, -73.85899)",,,637 EAST 234 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423852,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,17:30,MANHATTAN,10032,40.83349,-73.94158,"(40.83349, -73.94158)",AMSTERDAM AVENUE,WEST 158 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423162,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,10:35,,,,,,UNION TURNPIKE,141 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423423,Sedan,PK,,, +06/01/2021,9:00,STATEN ISLAND,10305,40.61238,-74.07117,"(40.61238, -74.07117)",,,560 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423907,Sedan,,,, +08/26/2021,16:20,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4450832,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,8:20,,,40.67994,-73.941216,"(40.67994, -73.941216)",FULTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422947,Sedan,Van,,, +06/04/2021,23:49,,,40.743324,-73.83379,"(40.743324, -73.83379)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424125,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,15:27,QUEENS,11368,40.745014,-73.86394,"(40.745014, -73.86394)",,,98-44 CORONA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4423989,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,16:40,STATEN ISLAND,10307,40.5171,-74.233894,"(40.5171, -74.233894)",,,240 PAGE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423304,Sedan,Sedan,,, +05/22/2021,15:40,BROOKLYN,11238,40.677513,-73.95913,"(40.677513, -73.95913)",CLASSON AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423923,Station Wagon/Sport Utility Vehicle,Bike,,, +06/03/2021,23:30,BRONX,10458,40.854355,-73.88515,"(40.854355, -73.88515)",EAST 187 STREET,CRESCENT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4424251,Sedan,Sedan,,, +06/04/2021,14:30,MANHATTAN,10032,40.842438,-73.93926,"(40.842438, -73.93926)",WEST 170 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4424090,Stake or Rack,Sedan,,, +06/03/2021,20:17,MANHATTAN,10023,40.774853,-73.98067,"(40.774853, -73.98067)",COLUMBUS AVENUE,WEST 68 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4423636,Sedan,Pick-up Truck,,, +05/30/2021,23:12,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423883,Sedan,,,, +06/03/2021,23:59,MANHATTAN,10017,40.752693,-73.97305,"(40.752693, -73.97305)",3 AVENUE,EAST 45 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423642,PK,,,, +12/11/2021,7:09,BROOKLYN,11218,40.644157,-73.976234,"(40.644157, -73.976234)",,,409 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4485619,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,17:25,STATEN ISLAND,10312,40.55959,-74.16958,"(40.55959, -74.16958)",,,3267 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422976,Sedan,,,, +06/02/2021,17:02,BRONX,10458,40.872585,-73.88128,"(40.872585, -73.88128)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423058,Sedan,MOPED,,, +06/03/2021,6:25,QUEENS,11435,40.694027,-73.801315,"(40.694027, -73.801315)",,,107-06 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423298,Sedan,,,, +06/04/2021,15:40,,,40.878826,-73.8829,"(40.878826, -73.8829)",EAST MOSHOLU PARKWAY NORTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423574,Sedan,Box Truck,,, +06/02/2021,6:30,MANHATTAN,10003,40.73504,-73.982994,"(40.73504, -73.982994)",,,315 2 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423272,Sedan,Bike,,, +06/02/2021,10:30,,,40.60153,-74.06939,"(40.60153, -74.06939)",LANDIS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4422889,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2021,19:00,MANHATTAN,10016,40.74564,-73.97527,"(40.74564, -73.97527)",,,647 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423434,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,21:00,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423773,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,15:54,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423006,Sedan,,,, +06/04/2021,0:30,BRONX,10473,40.81172,-73.853745,"(40.81172, -73.853745)",STEPHENS AVENUE,OBRIEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4423412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/02/2021,15:16,,,40.829155,-73.93728,"(40.829155, -73.93728)",8 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423181,E-Scooter,Motorbike,,, +06/02/2021,8:10,BRONX,10458,40.859463,-73.88759,"(40.859463, -73.88759)",,,2508 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4422827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,7:00,QUEENS,11434,40.660988,-73.77241,"(40.660988, -73.77241)",167 STREET,147 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423466,Sedan,,,, +10/04/2021,10:00,BROOKLYN,11201,40.699684,-73.97944,"(40.699684, -73.97944)",,,233 SANDS STREET,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4464121,Sedan,,,, +06/02/2021,11:20,MANHATTAN,10005,40.706013,-74.00882,"(40.706013, -74.00882)",WALL STREET,HANOVER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422965,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/02/2021,15:15,,,40.779922,-73.98068,"(40.779922, -73.98068)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423630,Bike,,,, +06/02/2021,15:11,,,40.690468,-73.9879,"(40.690468, -73.9879)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,17:00,QUEENS,11237,40.70519,-73.91478,"(40.70519, -73.91478)",CYPRESS AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423724,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,13:00,BRONX,10460,40.835552,-73.88566,"(40.835552, -73.88566)",,,1702 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423095,Sedan,,,, +06/03/2021,18:58,MANHATTAN,10007,,,,,,2 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4423885,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:06,BROOKLYN,11215,40.671364,-73.9845,"(40.671364, -73.9845)",,,372 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423519,PK,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,13:42,,,40.79084,-73.97457,"(40.79084, -73.97457)",BROADWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4422955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:16,BRONX,10459,40.82098,-73.89536,"(40.82098, -73.89536)",,,960 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423487,Sedan,,,, +05/30/2021,14:47,,,40.86879,-73.83168,"(40.86879, -73.83168)",BAYCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4423356,Sedan,,,, +06/03/2021,12:45,MANHATTAN,10027,40.81369,-73.95654,"(40.81369, -73.95654)",,,503 WEST 125 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4423237,Sedan,Box Truck,,, +06/01/2021,0:23,BROOKLYN,11233,40.68274,-73.92222,"(40.68274, -73.92222)",,,521 DECATUR STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4424032,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,7:15,QUEENS,11418,40.695858,-73.82773,"(40.695858, -73.82773)",,,91-26 120 STREET,1,0,1,0,0,0,0,0,Obstruction/Debris,,,,,4423147,Sedan,,,, +05/07/2021,21:00,BROOKLYN,11233,40.67934,-73.9305,"(40.67934, -73.9305)",,,1711 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423871,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,8:46,,,40.83057,-73.93072,"(40.83057, -73.93072)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,Unspecified,,,4423371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/03/2021,17:55,BROOKLYN,11211,40.71403,-73.9443,"(40.71403, -73.9443)",,,330 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423569,Convertible,Bike,,, +06/02/2021,17:17,MANHATTAN,10022,40.7606,-73.96434,"(40.7606, -73.96434)",2 AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423024,Station Wagon/Sport Utility Vehicle,Flat Rack,,, +06/02/2021,15:07,QUEENS,11413,40.685802,-73.754326,"(40.685802, -73.754326)",193 STREET,122 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423114,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,13:15,BROOKLYN,11220,40.644547,-74.01091,"(40.644547, -74.01091)",51 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423816,Sedan,Sedan,,, +05/29/2021,3:47,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",WEST 40 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4423975,Taxi,,,, +06/04/2021,19:30,BROOKLYN,11212,40.670166,-73.914795,"(40.670166, -73.914795)",,,10 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423703,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,6:02,,,40.8523,-73.8951,"(40.8523, -73.8951)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423157,Sedan,,,, +06/04/2021,9:30,,,40.629066,-74.16622,"(40.629066, -74.16622)",,,501 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423427,Convertible,Sedan,,, +06/03/2021,6:00,QUEENS,11378,40.724182,-73.911354,"(40.724182, -73.911354)",56 DRIVE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423133,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/15/2021,2:10,,,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424010,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,19:25,,,40.83472,-73.93517,"(40.83472, -73.93517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424099,Sedan,Sedan,,, +06/02/2021,15:50,BROOKLYN,11234,40.59732,-73.928795,"(40.59732, -73.928795)",AVENUE X,STUART STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423053,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/01/2021,6:30,BRONX,10466,40.88689,-73.8576,"(40.88689, -73.8576)",EAST 225 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423837,Sedan,,,, +06/03/2021,11:15,MANHATTAN,10001,40.750317,-73.99112,"(40.750317, -73.99112)",7 AVENUE,WEST 33 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4423203,Sedan,,,, +06/03/2021,15:50,,,40.62707,-74.01865,"(40.62707, -74.01865)",BAY RIDGE PARKWAY,7 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423288,Sedan,Pick-up Truck,,, +05/28/2021,10:00,QUEENS,11368,40.73881,-73.85071,"(40.73881, -73.85071)",,,109-30 SAULTELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424005,Sedan,Box Truck,,, +10/04/2021,14:35,QUEENS,11363,40.7684,-73.73755,"(40.7684, -73.73755)",NORTHERN BOULEVARD,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464273,Sedan,Pick-up Truck,,, +06/02/2021,14:45,,,40.760452,-73.75383,"(40.760452, -73.75383)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423018,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,11:40,STATEN ISLAND,10301,,,,CLOVE ROAD,PARK DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423911,Sedan,Sedan,,, +06/02/2021,12:55,MANHATTAN,10019,40.760063,-73.976974,"(40.760063, -73.976974)",,,10 WEST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423398,Sedan,,,, +06/03/2021,9:45,BROOKLYN,11236,40.631935,-73.91321,"(40.631935, -73.91321)",PAERDEGAT AVENUE NORTH,PAERDEGAT 1 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4423229,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +05/27/2021,15:20,,,40.703114,-73.921585,"(40.703114, -73.921585)",HART STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423383,,,,, +06/01/2021,19:05,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4423472,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,8:55,BROOKLYN,11205,,,,,,276 CARLTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423012,3-Door,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,1:13,QUEENS,11419,40.686527,-73.83005,"(40.686527, -73.83005)",113 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423618,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,2:55,,,,,,NASSAU EXPRESSWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4422773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,11:40,BROOKLYN,11214,40.596222,-73.98897,"(40.596222, -73.98897)",25 AVENUE,BENSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,14:25,STATEN ISLAND,10304,40.625225,-74.074844,"(40.625225, -74.074844)",BAY STREET,DOCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423912,Sedan,Sedan,,, +06/03/2021,19:56,MANHATTAN,10012,40.724968,-74.00158,"(40.724968, -74.00158)",,,415 WEST BROADWAY,1,0,0,0,1,0,0,0,Passing Too Closely,Following Too Closely,,,,4423339,Sedan,Bike,,, +06/04/2021,17:24,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423530,Sedan,Sedan,,, +06/03/2021,23:20,,,40.60729,-74.14086,"(40.60729, -74.14086)",SOUTH GANNON AVENUE,WOOLLEY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424263,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,9:21,,,,,,JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4422927,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +05/29/2021,10:10,,,40.585346,-73.98754,"(40.585346, -73.98754)",CROPSEY AVENUE,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423788,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2022,10:57,BRONX,10467,40.875927,-73.86703,"(40.875927, -73.86703)",,,3421 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4567417,Sedan,,,, +06/04/2021,7:55,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4423455,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,21:05,,,40.703403,-73.917786,"(40.703403, -73.917786)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423036,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,13:36,BROOKLYN,11230,40.622894,-73.96002,"(40.622894, -73.96002)",AVENUE K,EAST 16 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4423733,Box Truck,,,, +06/03/2021,20:35,QUEENS,11420,40.67815,-73.83109,"(40.67815, -73.83109)",ROCKAWAY BOULEVARD,108 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423324,Sedan,,,, +06/02/2021,23:20,,,40.591312,-73.99388,"(40.591312, -73.99388)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423285,Taxi,,,, +06/03/2021,10:25,,,40.853462,-73.88939,"(40.853462, -73.88939)",ARTHUR AVENUE,EAST 184 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423189,,,,, +06/03/2021,23:29,BROOKLYN,11233,40.671364,-73.91975,"(40.671364, -73.91975)",,,481 HOWARD AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Other Vehicular,Unspecified,Unspecified,Unspecified,4423698,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/04/2021,17:20,BRONX,10460,40.84152,-73.8746,"(40.84152, -73.8746)",EAST 180 STREET,BRONX PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424200,Sedan,Sedan,,, +06/04/2021,15:20,QUEENS,11377,40.734848,-73.90002,"(40.734848, -73.90002)",65 PLACE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423498,Sedan,Sedan,,, +06/02/2021,10:53,,,40.677975,-73.91913,"(40.677975, -73.91913)",HOWARD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424049,Bike,,,, +06/04/2021,10:25,QUEENS,11105,40.77227,-73.90812,"(40.77227, -73.90812)",,,22-77 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423408,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/04/2021,13:19,BROOKLYN,11236,40.640583,-73.91894,"(40.640583, -73.91894)",EAST 80 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423515,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,12:34,BRONX,10475,40.879204,-73.82601,"(40.879204, -73.82601)",,,755 COOP CITY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4423754,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,15:20,,,40.674576,-73.92206,"(40.674576, -73.92206)",RALPH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423969,Sedan,,,, +05/31/2021,9:30,BROOKLYN,11232,40.64581,-74.00242,"(40.64581, -74.00242)",44 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4423366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,22:35,,,40.822456,-73.92692,"(40.822456, -73.92692)",EAST 153 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424174,Sedan,,,, +06/03/2021,6:10,BRONX,10462,40.832863,-73.84494,"(40.832863, -73.84494)",,,1200 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423388,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,20:15,BRONX,10451,40.817738,-73.924164,"(40.817738, -73.924164)",,,234 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423584,Ambulance,Ambulance,,, +06/04/2021,15:15,BROOKLYN,11211,40.713047,-73.95326,"(40.713047, -73.95326)",,,31 AINSLIE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423564,Sedan,,,, +06/04/2021,16:24,BROOKLYN,11249,40.717472,-73.95862,"(40.717472, -73.95862)",,,147 NORTH 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424060,Armored Truck,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,12:00,,,40.745617,-73.75496,"(40.745617, -73.75496)",SPRINGFIELD BOULEVARD,67 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423043,Pick-up Truck,Sedan,,, +06/04/2021,23:28,,,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423714,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,12:07,,,40.83228,-73.90963,"(40.83228, -73.90963)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423344,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,22:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,19:15,BROOKLYN,11201,40.697956,-73.985466,"(40.697956, -73.985466)",,,20 FLATBUSH AVENUE EXTENSION,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Following Too Closely,,,,4423089,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,11:04,BROOKLYN,11203,40.643986,-73.937004,"(40.643986, -73.937004)",,,4223 CLARENDON ROAD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4424026,Sedan,E-Bike,,, +06/02/2021,12:07,MANHATTAN,10032,40.832764,-73.94583,"(40.832764, -73.94583)",WEST 155 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4423195,Taxi,Box Truck,,, +05/04/2021,8:05,BROOKLYN,11213,40.67795,-73.93936,"(40.67795, -73.93936)",,,1568 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423900,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,11:10,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423738,Sedan,,,, +06/02/2021,18:00,QUEENS,11428,40.727997,-73.73543,"(40.727997, -73.73543)",91 AVENUE,222 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423029,Station Wagon/Sport Utility Vehicle,Bike,,, +06/04/2021,15:36,BROOKLYN,11234,40.62636,-73.91901,"(40.62636, -73.91901)",AVENUE K,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423504,Bus,Sedan,,, +06/02/2021,21:30,BROOKLYN,11221,40.690937,-73.924576,"(40.690937, -73.924576)",,,1285 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424143,Sedan,Sedan,,, +05/27/2021,22:28,BROOKLYN,11233,40.68026,-73.91669,"(40.68026, -73.91669)",,,176 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4423867,Motorcycle,Taxi,,, +06/04/2021,5:14,BROOKLYN,11215,40.669052,-73.993034,"(40.669052, -73.993034)",3 AVENUE,13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423543,Sedan,Sedan,,, +06/02/2021,15:48,QUEENS,11413,40.65999,-73.7475,"(40.65999, -73.7475)",,,145-19 232 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4422998,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,17:41,BRONX,10464,40.887882,-73.81244,"(40.887882, -73.81244)",,,11 PARK DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423243,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:42,,,40.670116,-73.92248,"(40.670116, -73.92248)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423263,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,0:41,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4423745,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,14:15,QUEENS,11378,40.72861,-73.88721,"(40.72861, -73.88721)",74 STREET,57 AVENUE,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4423983,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,17:05,QUEENS,11105,40.77548,-73.914444,"(40.77548, -73.914444)",,,28-07 23 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423811,Sedan,,,, +06/02/2021,10:30,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",DELANCEY STREET,ORCHARD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423110,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,23:47,MANHATTAN,10025,40.79166,-73.96469,"(40.79166, -73.96469)",WEST 96 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423173,Sedan,Bike,,, +06/02/2021,16:28,BROOKLYN,11234,40.611053,-73.936554,"(40.611053, -73.936554)",,,1826 EAST 33 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423048,Sedan,Box Truck,,, +06/02/2021,18:15,QUEENS,11374,40.73031,-73.865616,"(40.73031, -73.865616)",,,62-95 SAUNDERS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4423351,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,15:45,,,40.728474,-73.882614,"(40.728474, -73.882614)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Fell Asleep,Unspecified,,,4423483,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/03/2021,9:40,,,,,,FDR DRIVE,EAST 4 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4423841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,16:00,BRONX,10472,40.827957,-73.872246,"(40.827957, -73.872246)",,,1106 METCALF AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4464683,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,0:00,,,40.81552,-73.918625,"(40.81552, -73.918625)",3 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423078,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,11:35,BROOKLYN,11210,40.630127,-73.94482,"(40.630127, -73.94482)",FLATBUSH AVENUE,AURELIA COURT,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,18:38,BROOKLYN,11205,40.69334,-73.96689,"(40.69334, -73.96689)",WASHINGTON AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423981,Sedan,Sedan,,, +09/24/2021,12:20,,,40.660954,-73.960686,"(40.660954, -73.960686)",LINCOLN ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464659,Bus,Sedan,,, +06/04/2021,14:44,BRONX,10460,40.832836,-73.88521,"(40.832836, -73.88521)",,,1524 BOONE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423763,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,10:50,BRONX,10466,40.890648,-73.84875,"(40.890648, -73.84875)",EAST 233 STREET,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423853,Sedan,Bus,,, +06/02/2021,7:20,QUEENS,11423,40.71014,-73.76111,"(40.71014, -73.76111)",,,198-14 100 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423293,Sedan,,,, +06/01/2021,0:00,,,40.836384,-73.824524,"(40.836384, -73.824524)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424228,Sedan,,,, +06/04/2021,20:05,QUEENS,11385,40.712757,-73.90225,"(40.712757, -73.90225)",METROPOLITAN AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423999,Sedan,FDNY TRUCK,,, +06/01/2021,14:30,BRONX,10474,40.81707,-73.88525,"(40.81707, -73.88525)",LAFAYETTE AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423476,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,15:44,BRONX,10457,40.84771,-73.895195,"(40.84771, -73.895195)",,,538 EAST 178 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424270,Sedan,,,, +06/02/2021,8:00,MANHATTAN,10040,40.85664,-73.9247,"(40.85664, -73.9247)",AMSTERDAM AVENUE,FORT GEORGE AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4423220,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/04/2021,13:30,BROOKLYN,11213,40.66772,-73.92951,"(40.66772, -73.92951)",,,1764 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423713,Sedan,,,, +10/04/2021,1:36,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4463655,Sedan,,,, +06/01/2021,1:00,QUEENS,11365,40.728382,-73.80523,"(40.728382, -73.80523)",,,72-10 164 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423415,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:12,BRONX,10453,40.8514,-73.90606,"(40.8514, -73.90606)",CRESTON AVENUE,EAST 179 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4423327,Sedan,Sedan,,, +06/02/2021,19:26,BRONX,10455,40.815384,-73.90934,"(40.815384, -73.90934)",,,611 TRINITY AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423084,Box Truck,,,, +06/03/2021,14:49,QUEENS,11368,40.753056,-73.865265,"(40.753056, -73.865265)",,,102-15 37 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423612,Sedan,Box Truck,,, +06/03/2021,23:23,QUEENS,11411,40.695137,-73.74014,"(40.695137, -73.74014)",LINDEN BOULEVARD,220 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,13:03,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423225,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,2:10,BRONX,10454,40.80801,-73.91895,"(40.80801, -73.91895)",,,260 BROOK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4422716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,16:13,,,40.702522,-73.98963,"(40.702522, -73.98963)",WASHINGTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423280,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:45,MANHATTAN,10023,40.776104,-73.97975,"(40.776104, -73.97975)",WEST 70 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424161,Taxi,,,, +06/04/2021,17:55,QUEENS,11693,40.58729,-73.81317,"(40.58729, -73.81317)",,,88-07 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423526,Sedan,,,, +06/03/2021,12:11,STATEN ISLAND,10306,40.56895,-74.12491,"(40.56895, -74.12491)",AMBOY ROAD,TYSENS LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423459,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,22:00,BRONX,10452,40.83142,-73.92644,"(40.83142, -73.92644)",JEROME AVENUE,EAST 164 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423452,Moped,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,1:45,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4423245,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,20:10,BROOKLYN,11228,40.610588,-74.01397,"(40.610588, -74.01397)",,,8700 14 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,16:30,,,,,,49 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,16:35,QUEENS,11368,,,,Northern blvd,Seaver way,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423125,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,14:25,,,40.76479,-73.98429,"(40.76479, -73.98429)",WEST 54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422906,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,19:42,QUEENS,11103,40.76164,-73.9102,"(40.76164, -73.9102)",30 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,23:00,QUEENS,11356,40.7859,-73.848656,"(40.7859, -73.848656)",14 AVENUE,119 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4423494,SEMI,Sedan,Sedan,, +06/04/2021,0:44,MANHATTAN,10002,40.71302,-73.99447,"(40.71302, -73.99447)",HENRY STREET,MARKET STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423895,Sedan,Bike,,, +06/04/2021,19:35,QUEENS,11364,40.74976,-73.75628,"(40.74976, -73.75628)",,,221-015 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423511,Sedan,Sedan,,, +06/04/2021,16:00,,,,,,GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4423820,Taxi,Sedan,Sedan,, +06/03/2021,10:00,BRONX,10455,40.812397,-73.90937,"(40.812397, -73.90937)",,,514 JACKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4423447,Station Wagon/Sport Utility Vehicle,Delivery T,,, +05/27/2021,19:00,,,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423668,Sedan,Sedan,,, +06/02/2021,19:50,,,40.639065,-73.95598,"(40.639065, -73.95598)",EAST 23 STREET,,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4423119,Sedan,Sedan,,, +06/04/2021,17:13,BRONX,10461,40.85604,-73.85975,"(40.85604, -73.85975)",,,2174 HONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423554,Sedan,,,, +06/04/2021,9:00,QUEENS,11373,40.731716,-73.878716,"(40.731716, -73.878716)",85 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424022,Sedan,,,, +05/29/2021,22:22,BRONX,10465,40.87831,-73.870155,"(40.87831, -73.870155)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4423836,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,16:30,QUEENS,11101,40.75115,-73.93452,"(40.75115, -73.93452)",,,30-25 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423804,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,10:20,BROOKLYN,11201,40.69212,-73.98435,"(40.69212, -73.98435)",WILLOUGHBY STREET,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423578,Sedan,,,, +06/04/2021,9:15,BROOKLYN,11223,40.60009,-73.96591,"(40.60009, -73.96591)",OCEAN PARKWAY,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423395,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,13:15,,,40.676243,-73.95269,"(40.676243, -73.95269)",BERGEN STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4423268,Taxi,Van,,, +05/13/2021,23:00,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423787,Sedan,,,, +06/02/2021,12:20,BROOKLYN,11218,40.637966,-73.981895,"(40.637966, -73.981895)",15 AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423190,Pick-up Truck,,,, +06/01/2021,17:00,,,40.747574,-73.76147,"(40.747574, -73.76147)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Outside Car Distraction,Following Too Closely,Following Too Closely,,,4423508,Sedan,Sedan,Box Truck,, +06/02/2021,15:30,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4423052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,14:30,,,40.741623,-73.87918,"(40.741623, -73.87918)",WHITNEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424053,AMBULANCE,Pick-up Truck,,, +06/04/2021,20:00,QUEENS,11412,40.696278,-73.75698,"(40.696278, -73.75698)",,,115-35 196 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423951,Sedan,,,, +06/03/2021,20:20,,,40.65217,-73.96141,"(40.65217, -73.96141)",CATON AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4423734,Sedan,,,, +06/04/2021,17:30,BROOKLYN,11215,40.66447,-73.97829,"(40.66447, -73.97829)",,,679 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423539,Sedan,,,, +06/03/2021,17:53,,,40.62175,-74.138405,"(40.62175, -74.138405)",,,519 COLLEGE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423363,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,22:03,QUEENS,11420,40.674896,-73.80745,"(40.674896, -73.80745)",131 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423064,Sedan,,,, +06/03/2021,19:23,,,,,,PLAZA DRIVE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4423376,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/04/2021,13:22,MANHATTAN,10001,,,,WEST 33 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4423963,Sedan,,,, +06/04/2021,21:17,BRONX,10453,40.859085,-73.90948,"(40.859085, -73.90948)",,,2210 ANDREWS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423591,Ambulance,Sedan,,, +06/01/2021,16:15,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4423479,Sedan,,,, +06/02/2021,20:50,BROOKLYN,11233,40.677296,-73.92674,"(40.677296, -73.92674)",,,1803 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,,,,,,4424072,,,,, +05/28/2021,20:55,,,40.61762,-74.1441,"(40.61762, -74.1441)",,,171 BRYSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424114,Sedan,,,, +06/02/2021,14:48,BROOKLYN,11212,40.667706,-73.90636,"(40.667706, -73.90636)",STONE AVENUE,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4423168,Sedan,Sedan,,, +06/02/2021,0:00,BRONX,10456,40.828815,-73.90828,"(40.828815, -73.90828)",,,1138 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4423096,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,12:14,,,40.598515,-73.97986,"(40.598515, -73.97986)",AVENUE T,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423993,Sedan,,,, +06/02/2021,15:03,BROOKLYN,11234,40.609264,-73.93209,"(40.609264, -73.93209)",EAST 35 STREET,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422954,Box Truck,Sedan,,, +06/04/2021,14:48,,,40.67948,-73.75741,"(40.67948, -73.75741)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423548,Sedan,Sedan,,, +05/28/2021,11:30,MANHATTAN,10002,40.71364,-73.99514,"(40.71364, -73.99514)",,,69 EAST BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423884,Van,Sedan,,, +06/04/2021,20:20,BROOKLYN,11228,40.605137,-74.01729,"(40.605137, -74.01729)",BAY 8 STREET,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423598,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,18:22,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4423643,Station Wagon/Sport Utility Vehicle,Bike,,, +05/16/2021,13:30,BRONX,10452,40.84366,-73.920044,"(40.84366, -73.920044)",SHAKESPEARE AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424171,Sedan,,,, +06/03/2021,15:09,BRONX,10470,40.89903,-73.86666,"(40.89903, -73.86666)",,,326 EAST 237 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423846,Sedan,,,, +06/02/2021,13:25,,,40.638523,-74.01,"(40.638523, -74.01)",7 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4422992,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,8:50,BROOKLYN,11223,40.58576,-73.97442,"(40.58576, -73.97442)",SHELL ROAD,AVENUE Z,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4423772,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,22:24,,,40.853485,-73.82643,"(40.853485, -73.82643)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423314,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,10:00,,,40.823647,-73.943855,"(40.823647, -73.943855)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422864,Sedan,Tow Truck / Wrecker,,, +06/03/2021,15:00,QUEENS,11372,40.750927,-73.88926,"(40.750927, -73.88926)",,,35-53 77 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424248,Sedan,FIRETRUCK,,, +10/04/2021,19:20,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464177,Sedan,,,, +06/02/2021,22:00,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4423299,Sedan,Pick-up Truck,,, +06/02/2021,17:35,MANHATTAN,10065,40.768543,-73.9657,"(40.768543, -73.9657)",PARK AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423102,Taxi,Sedan,,, +05/30/2021,15:37,,,40.676838,-73.91831,"(40.676838, -73.91831)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4423877,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,6:25,MANHATTAN,10012,40.727833,-73.998505,"(40.727833, -73.998505)",,,130 BLEECKER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423435,Sedan,Sedan,,, +06/03/2021,20:21,BRONX,10469,40.866444,-73.86117,"(40.866444, -73.86117)",,,2751 BOSTON ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423348,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,12:10,,,40.856503,-73.93277,"(40.856503, -73.93277)",BROADWAY,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4423914,Moped,,,, +06/03/2021,18:30,QUEENS,11413,40.666405,-73.74661,"(40.666405, -73.74661)",,,227-15 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423276,Sedan,,,, +06/03/2021,23:15,QUEENS,11691,40.59338,-73.778946,"(40.59338, -73.778946)",,,48-06 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423331,FIRE TRUCK,Ambulance,,, +06/02/2021,12:24,,,40.692844,-73.99311,"(40.692844, -73.99311)",JORALEMON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422957,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,18:25,QUEENS,11413,40.667137,-73.752754,"(40.667137, -73.752754)",143 AVENUE,224 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4422999,Sedan,Sedan,,, +06/03/2021,1:00,BRONX,10472,40.831524,-73.86343,"(40.831524, -73.86343)",,,1253 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423176,Sedan,,,, +06/04/2021,12:38,BROOKLYN,11232,40.655273,-74.0105,"(40.655273, -74.0105)",39 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,18:35,BROOKLYN,11201,40.68969,-73.99237,"(40.68969, -73.99237)",COURT STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423140,Sedan,Pick-up Truck,,, +05/23/2021,22:00,,,40.672062,-73.925255,"(40.672062, -73.925255)",PARK PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424018,Sedan,Sedan,,, +06/02/2021,21:42,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Reaction to Uninvolved Vehicle,Alcohol Involvement,Unspecified,4423148,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/02/2021,13:46,,,40.65965,-73.773834,"(40.65965, -73.773834)",NASSAU EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423352,Sedan,,,, +06/04/2021,9:58,STATEN ISLAND,10305,40.595913,-74.06231,"(40.595913, -74.06231)",,,18 CAPODANNO BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4423462,Sedan,,,, +06/02/2021,5:11,,,40.631615,-74.016335,"(40.631615, -74.016335)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4422859,Sedan,Tractor Truck Diesel,,, +06/04/2021,12:50,QUEENS,11417,40.681263,-73.83954,"(40.681263, -73.83954)",101 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423653,Sedan,,,, +06/04/2021,6:29,BRONX,10473,40.81751,-73.85921,"(40.81751, -73.85921)",RANDALL AVENUE,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423391,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,2:58,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4423890,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/03/2021,8:51,BROOKLYN,11215,40.674274,-73.98204,"(40.674274, -73.98204)",,,269 5 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4423523,Sedan,,,, +06/04/2021,21:00,,,40.763496,-73.80734,"(40.763496, -73.80734)",158 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424122,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,9:50,BRONX,10459,40.82518,-73.88872,"(40.82518, -73.88872)",BRYANT AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,3:20,BROOKLYN,11222,40.720314,-73.9443,"(40.720314, -73.9443)",,,497 MEEKER AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4423071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,16:50,,,40.60809,-74.14093,"(40.60809, -74.14093)",WOOLLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423359,Sedan,Sedan,,, +06/03/2021,22:48,BROOKLYN,11214,40.599255,-73.9894,"(40.599255, -73.9894)",24 AVENUE,86 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423491,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,22:16,,,40.77929,-73.98114,"(40.77929, -73.98114)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423635,Sedan,Bike,,, +06/04/2021,21:30,,,40.68781,-73.9237,"(40.68781, -73.9237)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424043,Box Truck,Sedan,,, +06/04/2021,8:30,QUEENS,11412,40.6934,-73.75602,"(40.6934, -73.75602)",LINDEN BOULEVARD,196 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423380,Sedan,Van,,, +06/04/2021,13:17,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,8:30,QUEENS,11367,40.72611,-73.82106,"(40.72611, -73.82106)",VLEIGH PLACE,72 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4464395,Van,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +05/26/2021,21:00,BROOKLYN,11213,40.67607,-73.93043,"(40.67607, -73.93043)",,,83 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423924,Sedan,Sedan,,, +06/04/2021,2:30,QUEENS,11434,40.677044,-73.771614,"(40.677044, -73.771614)",,,170-32 130 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423357,Sedan,Sedan,,, +06/01/2021,13:26,QUEENS,11374,40.728535,-73.86076,"(40.728535, -73.86076)",SAUNDERS STREET,64 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423870,Sedan,Sedan,,, +05/29/2021,18:00,QUEENS,11102,40.776466,-73.92738,"(40.776466, -73.92738)",14 STREET,ASTORIA PARK SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423795,Sedan,,,, +06/04/2021,23:00,BROOKLYN,11209,40.629124,-74.02371,"(40.629124, -74.02371)",,,476 76 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423726,Sedan,,,, +06/02/2021,16:40,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423109,Sedan,Bike,,, +06/03/2021,8:53,BROOKLYN,11212,40.662132,-73.911736,"(40.662132, -73.911736)",BOYLAND STREET,LIVONIA AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423699,Sedan,Bike,,, +06/02/2021,9:30,QUEENS,11435,40.70417,-73.81538,"(40.70417, -73.81538)",HILLSIDE AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422816,Sedan,Tractor Truck Diesel,,, +05/29/2021,19:35,STATEN ISLAND,10301,40.642643,-74.07669,"(40.642643, -74.07669)",,,154 STUYVESANT PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423901,Sedan,,,, +06/02/2021,16:44,,,40.582287,-74.16907,"(40.582287, -74.16907)",,,2655 RICHMOND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423007,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,19:40,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423138,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,8:40,,,40.685333,-73.85875,"(40.685333, -73.85875)",ATLANTIC AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423407,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,12:50,MANHATTAN,10065,40.76211,-73.96016,"(40.76211, -73.96016)",EAST 63 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,13:00,QUEENS,11426,40.724308,-73.72474,"(40.724308, -73.72474)",JAMAICA AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423467,Sedan,Sedan,,, +06/03/2021,20:17,MANHATTAN,10023,40.774853,-73.98067,"(40.774853, -73.98067)",WEST 68 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4423629,Sedan,Pick-up Truck,,, +06/02/2021,8:50,BROOKLYN,11226,40.639496,-73.95464,"(40.639496, -73.95464)",,,1267 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422902,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/01/2021,12:29,,,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423694,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,0:46,,,40.728645,-73.88074,"(40.728645, -73.88074)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423725,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,23:20,BROOKLYN,11206,40.70092,-73.951294,"(40.70092, -73.951294)",WALTON STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4423092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,0:00,BROOKLYN,11215,40.66774,-73.988594,"(40.66774, -73.988594)",,,266 12 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423518,Sedan,Bus,,, +06/02/2021,14:14,BRONX,10462,40.843143,-73.85575,"(40.843143, -73.85575)",BRONXDALE AVENUE,SACKET AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422944,Sedan,,,, +05/28/2021,17:52,BRONX,10467,40.88125,-73.86071,"(40.88125, -73.86071)",BARNES AVENUE,EAST 217 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4424253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,3:40,BRONX,10456,40.834236,-73.90524,"(40.834236, -73.90524)",,,1350 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424184,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,20:00,BROOKLYN,11206,40.703915,-73.9409,"(40.703915, -73.9409)",MOORE STREET,HUMBOLDT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424137,Sedan,,,, +06/02/2021,22:26,,,,,,SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423262,Sedan,Sedan,,, +06/04/2021,0:49,BRONX,10474,40.803486,-73.87405,"(40.803486, -73.87405)",,,101 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4423486,Sedan,,,, +06/02/2021,12:34,,,40.868473,-73.92404,"(40.868473, -73.92404)",SEAMAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423230,Station Wagon/Sport Utility Vehicle,SKID LOADE,,, +06/04/2021,10:00,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4423746,Sedan,Sedan,,, +06/04/2021,12:30,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4423471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,17:10,,,40.700516,-73.89838,"(40.700516, -73.89838)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423037,Station Wagon/Sport Utility Vehicle,Bus,,, +06/01/2021,2:58,,,,,,31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,20:17,,,40.6026,-74.01491,"(40.6026, -74.01491)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4423597,Sedan,Sedan,,, +06/03/2021,23:55,BROOKLYN,11211,40.709473,-73.96088,"(40.709473, -73.96088)",,,218 BROADWAY,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4423568,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,18:50,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4423025,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/04/2021,20:00,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4423503,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,8:35,,,40.815975,-73.94322,"(40.815975, -73.94322)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423180,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,17:10,BROOKLYN,11215,40.661583,-73.993195,"(40.661583, -73.993195)",,,684 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423815,Sedan,E-Bike,,, +06/03/2021,15:10,MANHATTAN,10022,40.757698,-73.9694,"(40.757698, -73.9694)",EAST 53 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423844,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,14:50,QUEENS,11412,40.700005,-73.7547,"(40.700005, -73.7547)",MURDOCK AVENUE,200 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4423547,Sedan,,,, +05/29/2021,18:43,,,40.693005,-73.789856,"(40.693005, -73.789856)",UNION HALL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4423646,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,19:33,,,40.650944,-73.905975,"(40.650944, -73.905975)",ROCKAWAY AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423516,Sedan,Sedan,,, +06/03/2021,12:50,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423970,Dump,Sedan,,, +06/02/2021,13:16,QUEENS,11385,40.698757,-73.89291,"(40.698757, -73.89291)",,,62-19 75 AVENUE,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4423201,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,2:00,MANHATTAN,10030,40.821262,-73.94608,"(40.821262, -73.94608)",WEST 141 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423044,EMS,FIRE TRUCK,,, +06/04/2021,4:00,QUEENS,11103,40.76778,-73.90542,"(40.76778, -73.90542)",,,45-20 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4423389,Pick-up Truck,,,, +05/23/2021,15:25,,,,,,THROGS NECK BRIDGE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4424126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,10:30,QUEENS,11373,40.733154,-73.87056,"(40.733154, -73.87056)",HOFFMAN DRIVE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4423988,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,1:52,,,40.65605,-73.92361,"(40.65605, -73.92361)",LENOX ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423662,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,13:10,,,40.69078,-73.72728,"(40.69078, -73.72728)",LINDEN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423864,Sedan,,,, +05/27/2021,15:15,BROOKLYN,11221,40.68936,-73.92315,"(40.68936, -73.92315)",,,1024 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4424055,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/03/2021,21:30,,,40.711227,-73.72826,"(40.711227, -73.72826)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423540,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:33,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423340,Sedan,PK,,, +05/21/2021,22:00,MANHATTAN,10065,40.76163,-73.959015,"(40.76163, -73.959015)",,,450 EAST 63 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4423945,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,12:27,MANHATTAN,10022,40.756763,-73.96716,"(40.756763, -73.96716)",2 AVENUE,EAST 53 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4422933,Bike,Taxi,,, +10/04/2021,10:15,,,40.616283,-74.026115,"(40.616283, -74.026115)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4464233,Sedan,,,, +06/02/2021,8:25,QUEENS,11373,40.738064,-73.88645,"(40.738064, -73.88645)",,,50-20 IRELAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4422888,Sedan,,,, +06/03/2021,13:22,BROOKLYN,11218,40.642406,-73.989265,"(40.642406, -73.989265)",,,1166 39 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423271,Sedan,Taxi,,, +06/02/2021,16:40,QUEENS,11412,40.697823,-73.76799,"(40.697823, -73.76799)",WOOD STREET,MANGIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4423113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +05/27/2021,23:20,,,40.768616,-73.92508,"(40.768616, -73.92508)",30 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4423791,E-Bike,,,, +06/02/2021,22:30,BRONX,10452,40.834774,-73.92527,"(40.834774, -73.92527)",ANDERSON AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423372,Sedan,Taxi,,, +06/01/2021,18:20,,,40.735043,-73.767105,"(40.735043, -73.767105)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,23:59,BROOKLYN,11224,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423156,Sedan,Sedan,,, +06/02/2021,8:58,,,40.61384,-73.981445,"(40.61384, -73.981445)",65 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4422966,Tractor Truck Diesel,Sedan,TRAILER,, +06/02/2021,17:37,BROOKLYN,11229,40.608498,-73.958916,"(40.608498, -73.958916)",,,1421 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423054,Taxi,Ambulance,,, +06/04/2021,16:20,BRONX,10456,40.837025,-73.906906,"(40.837025, -73.906906)",,,1428 WEBSTER AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4423758,E-Bike,,,, +06/02/2021,23:50,QUEENS,11364,40.731777,-73.77011,"(40.731777, -73.77011)",FRANCIS LEWIS BOULEVARD,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4423422,Sedan,,,, +06/02/2021,18:10,QUEENS,11373,40.734604,-73.864784,"(40.734604, -73.864784)",,,59-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423130,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/02/2021,23:40,BROOKLYN,11249,40.700924,-73.96308,"(40.700924, -73.96308)",,,669 KENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423088,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,9:31,STATEN ISLAND,10302,40.62291,-74.132065,"(40.62291, -74.132065)",,,567 JEWETT AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423906,Sedan,Sedan,,, +06/04/2021,8:49,,,,,,NORTHERN BOULEVARD,,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4423439,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/16/2021,2:58,QUEENS,11385,40.70823,-73.9105,"(40.70823, -73.9105)",,,1921 HARMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424009,Sedan,Sedan,,, +06/04/2021,20:23,,,40.728363,-73.88449,"(40.728363, -73.88449)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4424002,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/02/2021,10:30,,,40.697556,-73.852776,"(40.697556, -73.852776)",WOODHAVEN BOULEVARD,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,Unspecified,,,4422875,Sedan,Flat Bed,Concrete Mixer,, +06/02/2021,2:15,MANHATTAN,10020,,,,WEST 49 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4422791,Sedan,Sedan,,, +06/02/2021,14:13,BROOKLYN,11213,40.663654,-73.93551,"(40.663654, -73.93551)",,,804 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4423011,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,17:51,QUEENS,11428,40.715343,-73.74845,"(40.715343, -73.74845)",JAMAICA AVENUE,HOLLIS COURT BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423624,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,21:00,,,,,,Ed Koch Bridge,22 street,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4423308,Sedan,,,, +06/02/2021,16:33,,,,,,WEST KINGSBRIDGE ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423060,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,9:55,,,40.75831,-73.96294,"(40.75831, -73.96294)",EAST 57 STREET,,,1,0,1,0,0,0,0,0,,,,,,4422974,,,,, +06/02/2021,13:45,,,40.7599,-73.98043,"(40.7599, -73.98043)",WEST 50 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423399,Box Truck,Sedan,,, +06/02/2021,10:30,QUEENS,11378,40.725388,-73.90884,"(40.725388, -73.90884)",59 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423236,Sedan,,,, +06/03/2021,11:48,MANHATTAN,10025,40.80536,-73.96359,"(40.80536, -73.96359)",,,535 WEST 113 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423253,Sedan,Sedan,,, +06/04/2021,13:00,,,40.63003,-74.140175,"(40.63003, -74.140175)",,,524 PORT RICHMOND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423454,Pick-up Truck,,,, +06/02/2021,18:19,BROOKLYN,11220,40.64367,-74.015495,"(40.64367, -74.015495)",4 AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423531,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,4:30,,,40.60968,-73.99298,"(40.60968, -73.99298)",77 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423188,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,13:30,QUEENS,11102,40.772945,-73.91899,"(40.772945, -73.91899)",,,24-55 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423810,Sedan,,,, +06/04/2021,13:43,BROOKLYN,11205,40.693798,-73.96272,"(40.693798, -73.96272)",,,541 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423499,Sedan,,,, +05/27/2021,9:34,,,40.679585,-73.96507,"(40.679585, -73.96507)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423974,Sedan,Sedan,,, +06/03/2021,12:00,MANHATTAN,10019,40.76177,-73.979065,"(40.76177, -73.979065)",WEST 53 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423404,Sedan,Bike,,, +06/03/2021,18:35,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424103,Sedan,Sedan,,, +06/03/2021,22:00,MANHATTAN,10009,40.727844,-73.98223,"(40.727844, -73.98223)",EAST 10 STREET,AVENUE A,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,14:00,MANHATTAN,10037,40.813946,-73.93675,"(40.813946, -73.93675)",,,2255 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423367,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,5:40,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423581,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,22:00,BROOKLYN,11211,40.713253,-73.94419,"(40.713253, -73.94419)",,,305 GRAHAM AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4423565,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,16:05,QUEENS,11361,,,,35 avenue,Corporal Kennedy Street,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4423019,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,8:40,,,40.716194,-73.996086,"(40.716194, -73.996086)",CANAL STREET,BOWERY,,1,0,0,0,0,0,1,0,Oversized Vehicle,Driver Inattention/Distraction,Unspecified,,,4423889,Box Truck,Dump,Box Truck,, +06/03/2021,11:20,QUEENS,11385,40.702545,-73.89804,"(40.702545, -73.89804)",,,60-45 69 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423196,Sedan,,,, +06/02/2021,22:08,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4424027,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,20:15,BROOKLYN,11205,40.696846,-73.961754,"(40.696846, -73.961754)",CLASSON AVENUE,EMERSON PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4423305,Sedan,FREIG,,, +06/02/2021,23:30,BROOKLYN,11228,40.621464,-74.006226,"(40.621464, -74.006226)",13 AVENUE,73 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423103,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,20:55,QUEENS,11004,40.736984,-73.71001,"(40.736984, -73.71001)",,,258-03 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423319,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,4:05,BROOKLYN,11226,40.65217,-73.96141,"(40.65217, -73.96141)",CATON AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423737,,,,, +06/04/2021,8:45,MANHATTAN,10018,40.758377,-73.994385,"(40.758377, -73.994385)",DYER AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,12:00,,,,,,188 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4423468,Sedan,,,, +06/03/2021,1:00,,,40.76154,-73.9556,"(40.76154, -73.9556)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4423336,Sedan,Sedan,Sedan,Sedan, +06/03/2021,17:25,BRONX,10462,40.841957,-73.85794,"(40.841957, -73.85794)",,,2139 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4423453,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,9:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424104,Sedan,Sedan,,, +06/03/2021,16:50,QUEENS,11366,40.71995,-73.8089,"(40.71995, -73.8089)",,,158-02 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,12:15,QUEENS,11377,0,0,"(0.0, 0.0)",52 AVENUE,59 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4422912,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,16:00,,,,,,NATIONAL STREET,NICOLLS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4423126,E-Bike,Taxi,,, +06/04/2021,16:10,,,40.63656,-74.16357,"(40.63656, -74.16357)",MERSEREAU AVENUE,CHRISTOPHER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424110,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,17:55,,,40.766666,-73.9304,"(40.766666, -73.9304)",21 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423275,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,1:30,BRONX,10456,40.824783,-73.9084,"(40.824783, -73.9084)",BOSTON ROAD,3 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4423098,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,13:30,,,40.690918,-73.7623,"(40.690918, -73.7623)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4422894,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,14:00,STATEN ISLAND,10305,40.595966,-74.08715,"(40.595966, -74.08715)",OLD TOWN ROAD,OREGON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,19:32,BROOKLYN,11233,40.68004,-73.92604,"(40.68004, -73.92604)",,,126 MARION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424065,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,14:30,QUEENS,11435,40.708725,-73.81006,"(40.708725, -73.81006)",,,85-85 148 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423426,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,14:10,MANHATTAN,10000,40.777023,-73.96394,"(40.777023, -73.96394)",,,2 TRANSVERSE ROAD NUMBER TWO,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424168,MTA BUS,Taxi,,, +06/02/2021,18:16,,,40.835724,-73.92129,"(40.835724, -73.92129)",RIVER AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Backing Unsafely,,,,4423161,Sedan,Sedan,,, +06/03/2021,8:00,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",EAST 181 STREET,RYER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423151,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,9:00,BRONX,10460,40.834976,-73.86405,"(40.834976, -73.86405)",,,1377 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422865,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,1:10,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423443,Sedan,,,, +06/03/2021,21:03,,,40.742096,-73.86748,"(40.742096, -73.86748)",CORONA AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424016,Sedan,Bike,,, +06/04/2021,15:27,,,40.81963,-73.946075,"(40.81963, -73.946075)",WEST 139 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424225,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,19:45,BROOKLYN,11209,40.63066,-74.03107,"(40.63066, -74.03107)",77 STREET,RIDGE BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423287,Sedan,E-Bike,,, +06/01/2021,17:00,MANHATTAN,10032,40.840748,-73.93545,"(40.840748, -73.93545)",WEST 170 STREET,EDGECOMBE AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424219,Sedan,Bike,,, +06/02/2021,14:00,MANHATTAN,10036,40.7568,-73.98085,"(40.7568, -73.98085)",,,59 WEST 46 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423394,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,11:15,BROOKLYN,11212,40.657803,-73.90868,"(40.657803, -73.90868)",LOTT AVENUE,CHESTER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423702,Sedan,Sedan,Sedan,, +10/02/2021,14:00,BROOKLYN,11207,40.683228,-73.907135,"(40.683228, -73.907135)",BUSHWICK AVENUE,GRANITE STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464626,Sedan,Bike,,, +06/04/2021,0:25,QUEENS,11369,40.760113,-73.87768,"(40.760113, -73.87768)",91 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423613,Sedan,Pick-up Truck,,, +06/04/2021,0:40,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423326,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,9:30,,,40.829533,-73.84733,"(40.829533, -73.84733)",CROSS BRONX EXPRESSWAY,HAVEMEYER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423191,Commercial,,,, +06/03/2021,21:10,BRONX,10467,40.865532,-73.86238,"(40.865532, -73.86238)",ALLERTON AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4423347,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,0:28,,,40.8327,-73.950226,"(40.8327, -73.950226)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4423047,Sedan,Sedan,Sedan,, +06/02/2021,13:20,BRONX,10467,40.878807,-73.86388,"(40.878807, -73.86388)",HOLLAND AVENUE,EAST 213 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4423242,Sedan,Sedan,Sedan,Sedan, +06/02/2021,20:40,BRONX,10467,,,,EAST GUN HILL ROAD,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423246,Sedan,Sedan,,, +06/02/2021,0:57,BROOKLYN,11230,40.611584,-73.95374,"(40.611584, -73.95374)",,,2072 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422744,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,0:15,,,40.687344,-73.97985,"(40.687344, -73.97985)",FLATBUSH AVENUE,LIVINGSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423313,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,18:30,BROOKLYN,11211,40.71469,-73.942696,"(40.71469, -73.942696)",HUMBOLDT STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423070,Pick-up Truck,Sedan,,, +06/04/2021,12:01,BROOKLYN,11212,40.659107,-73.923225,"(40.659107, -73.923225)",EAST 93 STREET,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424028,Sedan,Sedan,,, +06/03/2021,0:00,BROOKLYN,11221,40.691936,-73.919685,"(40.691936, -73.919685)",,,1189 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423085,Sedan,,,, +06/04/2021,4:00,,,40.596626,-74.162186,"(40.596626, -74.162186)",,,2075 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Animals Action,,,,,4423362,Sedan,,,, +06/04/2021,15:01,MANHATTAN,10016,40.748302,-73.97835,"(40.748302, -73.97835)",LEXINGTON AVENUE,EAST 37 STREET,,1,0,0,0,0,0,1,0,Tinted Windows,Unspecified,,,,4423527,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,11:30,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4423282,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/03/2021,12:44,BRONX,10469,40.86553,-73.86056,"(40.86553, -73.86056)",ALLERTON AVENUE,RADCLIFF AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423379,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,14:40,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423015,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,0:00,BROOKLYN,11212,40.65492,-73.92101,"(40.65492, -73.92101)",EAST 91 STREET,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424039,Pick-up Truck,Sedan,Sedan,, +06/02/2021,13:38,BROOKLYN,11233,40.67638,-73.911736,"(40.67638, -73.911736)",,,2220 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423169,Sedan,,,, +06/03/2021,18:45,STATEN ISLAND,10304,40.596294,-74.09491,"(40.596294, -74.09491)",RICHMOND ROAD,MARK STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423458,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:40,,,40.783897,-73.97407,"(40.783897, -73.97407)",WEST 82 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4423495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,15:00,MANHATTAN,10023,40.77543,-73.98398,"(40.77543, -73.98398)",AMSTERDAM AVENUE,WEST 67 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423979,Sedan,,,, +06/02/2021,20:23,QUEENS,11103,40.767963,-73.91169,"(40.767963, -73.91169)",STEINWAY STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4423805,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,0:50,QUEENS,11432,40.71512,-73.77358,"(40.71512, -73.77358)",188 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423421,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,11:15,MANHATTAN,10032,40.8354,-73.9488,"(40.8354, -73.9488)",,,157-10 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424094,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,11:20,BRONX,10460,40.83639,-73.88485,"(40.83639, -73.88485)",,,985 EAST 174 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423762,Motorcycle,Sedan,,, +06/04/2021,19:45,,,40.796528,-73.97412,"(40.796528, -73.97412)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423557,Moped,Sedan,,, +06/02/2021,13:21,,,40.634506,-73.949455,"(40.634506, -73.949455)",GLENWOOD ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423857,Station Wagon/Sport Utility Vehicle,Bus,,, +05/03/2021,21:26,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423893,Sedan,,,, +06/02/2021,13:30,QUEENS,11101,,,,HUNTERS POINT AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423032,Sedan,,,, +03/24/2021,19:45,BROOKLYN,11213,40.672516,-73.93356,"(40.672516, -73.93356)",PARK PLACE,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424023,Sedan,,,, +06/03/2021,20:38,,,40.660435,-73.94542,"(40.660435, -73.94542)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4423301,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,9:00,MANHATTAN,10019,40.766624,-73.98179,"(40.766624, -73.98179)",,,1780 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4424275,Tractor Truck Diesel,Bike,,, +06/03/2021,9:34,BROOKLYN,11234,40.607174,-73.930984,"(40.607174, -73.930984)",AVENUE T,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423436,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/02/2021,18:00,QUEENS,11367,40.71865,-73.813644,"(40.71865, -73.813644)",,,149-05 UNION TURNPIKE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423416,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,18:30,BROOKLYN,11230,40.628998,-73.95703,"(40.628998, -73.95703)",,,1360 OCEAN AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4423741,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,11:30,MANHATTAN,10027,40.820004,-73.95888,"(40.820004, -73.95888)",12 AVENUE,WEST 133 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4424119,Station Wagon/Sport Utility Vehicle,Bike,,, +05/03/2021,12:40,,,40.67672,-73.94708,"(40.67672, -73.94708)",NEW YORK AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4423902,Station Wagon/Sport Utility Vehicle,Bike,,, +06/03/2021,19:26,,,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423915,Sedan,Sedan,,, +06/03/2021,10:29,BRONX,10459,40.821075,-73.89286,"(40.821075, -73.89286)",,,941 SIMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423485,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,23:17,QUEENS,11434,40.69103,-73.78079,"(40.69103, -73.78079)",LINDEN BOULEVARD,169 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423353,Sedan,,,, +06/03/2021,16:50,,,40.7773,-73.99034,"(40.7773, -73.99034)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4423634,Sedan,,,, +06/04/2021,10:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423448,Sedan,Sedan,,, +06/03/2021,15:30,BRONX,10458,40.856956,-73.88209,"(40.856956, -73.88209)",,,2500 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4424197,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/01/2021,12:37,BROOKLYN,11214,40.609463,-74.00632,"(40.609463, -74.00632)",,,1640 86 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4423695,Sedan,,,, +06/01/2021,4:30,QUEENS,11436,40.67868,-73.799706,"(40.67868, -73.799706)",142 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4423551,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,16:25,,,40.75066,-73.987785,"(40.75066, -73.987785)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423779,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,11:00,,,40.824135,-73.89295,"(40.824135, -73.89295)",SIMPSON STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4423480,Sedan,,,, +04/30/2021,8:30,QUEENS,11367,40.732094,-73.81298,"(40.732094, -73.81298)",,,155-9 JEWEL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423896,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,22:00,MANHATTAN,10039,40.824265,-73.94087,"(40.824265, -73.94087)",,,2770 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464766,Sedan,Bike,,, +06/02/2021,14:54,,,,,,EAST 138 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423079,Pick-up Truck,,,, +06/02/2021,2:00,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4422953,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,5:00,,,40.606693,-74.08371,"(40.606693, -74.08371)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4422856,Tractor Truck Diesel,,,, +06/02/2021,16:27,BROOKLYN,11226,40.655376,-73.96058,"(40.655376, -73.96058)",,,216 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423120,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,4:15,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4423177,PK,Sedan,,, +06/04/2021,13:00,,,40.683388,-74.00168,"(40.683388, -74.00168)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424156,Sedan,Box Truck,,, +06/02/2021,18:30,MANHATTAN,10000,40.78094,-73.96117,"(40.78094, -73.96117)",,,1 TRANSVERSE ROAD NUMBER THREE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,4:52,,,40.636574,-74.019196,"(40.636574, -74.019196)",5 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4422990,E-Bike,Sedan,,, +10/04/2021,0:00,,,40.807186,-73.924286,"(40.807186, -73.924286)",EAST 135 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4463874,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,20:40,QUEENS,11422,40.661953,-73.731155,"(40.661953, -73.731155)",,,139-47 CANEY LANE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423292,Sedan,Sedan,,, +06/03/2021,23:00,BRONX,10467,40.87823,-73.864395,"(40.87823, -73.864395)",,,729 EAST 212 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423847,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,14:51,BRONX,10461,,,,,,350 Marconi Street,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,21:40,,,,,,G.C.P. / LAGUARDIA (CDR),,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424247,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/02/2021,15:30,BROOKLYN,11217,40.679237,-73.9836,"(40.679237, -73.9836)",,,595 DE GRAW STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423522,Sedan,,,, +06/04/2021,1:00,BRONX,10473,40.821327,-73.86608,"(40.821327, -73.86608)",,,805 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423390,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,6:45,BROOKLYN,11233,40.66982,-73.917114,"(40.66982, -73.917114)",SARATOGA AVENUE,SAINT JOHNS PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423708,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,13:15,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4423028,Sedan,Pick-up Truck,,, +06/02/2021,20:30,QUEENS,11374,40.728962,-73.85523,"(40.728962, -73.85523)",65 ROAD,99 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423051,Sedan,Sedan,,, +06/02/2021,18:29,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,8:30,BRONX,10458,40.87294,-73.88534,"(40.87294, -73.88534)",EAST 202 STREET,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423226,,,,, +05/19/2021,17:48,,,40.83988,-73.916794,"(40.83988, -73.916794)",EAST 170 STREET,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4423343,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,16:37,QUEENS,11364,40.748722,-73.75776,"(40.748722, -73.75776)",,,220-10 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423507,Station Wagon/Sport Utility Vehicle,Van,,, +06/04/2021,15:30,QUEENS,11368,40.751034,-73.85499,"(40.751034, -73.85499)",,,111-18 41 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4424030,Sedan,,,, +05/31/2021,23:35,QUEENS,11436,40.68085,-73.79907,"(40.68085, -73.79907)",143 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423358,Sedan,Sedan,,, +06/02/2021,0:26,,,,,,SHORE PARKWAY,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,12:45,,,40.594593,-73.99551,"(40.594593, -73.99551)",BAY 35 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4423490,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,10:05,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4464243,Box Truck,Sedan,,, +06/02/2021,18:25,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4423020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,11:15,,,40.82523,-73.94761,"(40.82523, -73.94761)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423330,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,0:01,QUEENS,11105,40.775936,-73.90094,"(40.775936, -73.90094)",20 AVENUE,41 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423800,Sedan,Sedan,,, +06/03/2021,18:10,BROOKLYN,11211,,,,VANDERVORT AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423572,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,2:50,,,40.85045,-73.93667,"(40.85045, -73.93667)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423197,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,18:49,QUEENS,11378,40.71756,-73.9051,"(40.71756, -73.9051)",,,60-47 59 DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423992,Station Wagon/Sport Utility Vehicle,PK,,, +06/02/2021,22:00,QUEENS,11368,40.753323,-73.868706,"(40.753323, -73.868706)",,,35-33 99 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4423606,Sedan,,,, +06/02/2021,19:17,,,40.578682,-74.00595,"(40.578682, -74.00595)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423771,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:00,MANHATTAN,10018,40.759514,-73.99926,"(40.759514, -73.99926)",11 AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423964,Sedan,Box Truck,,, +06/02/2021,1:23,BROOKLYN,11234,40.622692,-73.933105,"(40.622692, -73.933105)",FLATLANDS AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4423827,Sedan,,,, +06/04/2021,19:29,QUEENS,11358,40.761017,-73.78715,"(40.761017, -73.78715)",,,40-24 195 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4423512,Sedan,Sedan,,, +06/03/2021,8:20,BRONX,10455,40.817715,-73.91795,"(40.817715, -73.91795)",,,378 EAST 151 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423219,Sedan,Sedan,,, +06/04/2021,19:57,QUEENS,11375,40.724308,-73.842575,"(40.724308, -73.842575)",JEWEL AVENUE,110 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4423677,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,16:38,BROOKLYN,11236,40.641727,-73.907646,"(40.641727, -73.907646)",REMSEN AVENUE,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4423517,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,18:30,STATEN ISLAND,10304,40.59643,-74.091225,"(40.59643, -74.091225)",OLD TOWN ROAD,WILSON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4423475,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,12:12,QUEENS,11103,40.758316,-73.91069,"(40.758316, -73.91069)",48 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423385,Sedan,,,, +06/01/2021,0:00,MANHATTAN,10013,40.718456,-73.99482,"(40.718456, -73.99482)",GRAND STREET,BOWERY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423878,Sedan,Sedan,,, +06/03/2021,7:30,BROOKLYN,11236,40.638813,-73.90818,"(40.638813, -73.90818)",FLATLANDS AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4423231,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/03/2021,16:03,BRONX,10469,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4424269,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,20:52,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423038,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,15:00,MANHATTAN,10038,40.711777,-73.99971,"(40.711777, -73.99971)",SAINT JAMES PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464681,Sedan,Van,,, +10/03/2021,12:00,BRONX,10460,40.840767,-73.8658,"(40.840767, -73.8658)",,,1855 EAST TREMONT AVENUE,5,0,2,0,0,0,3,0,Passing or Lane Usage Improper,Other Vehicular,Unspecified,Unspecified,Unspecified,4464737,Station Wagon/Sport Utility Vehicle,Sedan,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/04/2021,19:20,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,BROADWAY,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464595,Sedan,,,, +10/04/2021,3:17,,,40.815662,-73.88702,"(40.815662, -73.88702)",HUNTS POINT AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4463902,Sedan,Sedan,Sedan,, +10/04/2021,15:31,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464095,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,8:30,,,40.6293,-74.07661,"(40.6293, -74.07661)",SANDS STREET,BAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464288,Bus,Sedan,,, +10/04/2021,10:52,BROOKLYN,11204,40.616283,-73.97547,"(40.616283, -73.97547)",,,1301 DAHILL ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464320,Sedan,,,, +10/04/2021,8:00,BROOKLYN,11233,40.680367,-73.92226,"(40.680367, -73.92226)",,,265 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464404,Sedan,,,, +10/04/2021,18:00,BROOKLYN,11205,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464464,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,1:35,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",70 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4464053,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,10:30,QUEENS,11423,40.713436,-73.76119,"(40.713436, -73.76119)",JAMAICA AVENUE,198 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4463964,Sedan,,,, +10/04/2021,8:42,,,40.760994,-73.82443,"(40.760994, -73.82443)",BOWNE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4464809,Bus,Sedan,,, +10/03/2021,4:19,,,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464855,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/04/2021,0:04,,,40.621246,-74.168884,"(40.621246, -74.168884)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464045,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/04/2021,6:39,,,40.703228,-73.727165,"(40.703228, -73.727165)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463965,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,15:37,QUEENS,11364,40.747704,-73.75447,"(40.747704, -73.75447)",223 PLACE,64 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464708,Sedan,Sedan,,, +10/04/2021,12:00,QUEENS,11694,40.57924,-73.84483,"(40.57924, -73.84483)",BEACH 124 STREET,NEWPORT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,5:59,,,40.74128,-73.90257,"(40.74128, -73.90257)",QUEENS BOULEVARD,61 STREET,,1,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,,,,,4463924,E-Bike,,,, +10/04/2021,22:37,BROOKLYN,11218,40.641323,-73.983,"(40.641323, -73.983)",36 STREET,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464458,Sedan,Bike,,, +10/04/2021,7:55,BROOKLYN,11233,40.67584,-73.91655,"(40.67584, -73.91655)",PACIFIC STREET,SARATOGA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464220,,,,, +10/04/2021,23:00,QUEENS,11368,40.738964,-73.85273,"(40.738964, -73.85273)",,,59-30 108 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464248,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,13:18,BRONX,10460,40.837246,-73.885704,"(40.837246, -73.885704)",,,1769 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464549,Sedan,,,, +10/04/2021,14:00,,,,,,CROSS BRONX EXPRESSWAY,BOONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464356,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,17:00,BROOKLYN,11211,40.702023,-73.95583,"(40.702023, -73.95583)",,,196 LEE AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4464514,Bus,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,3:00,,,40.630505,-74.143456,"(40.630505, -74.143456)",,,43 WALKER STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4463952,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,10:45,BROOKLYN,11222,40.723774,-73.93754,"(40.723774, -73.93754)",CHERRY STREET,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464192,Van,,,, +10/04/2021,18:42,,,40.574894,-73.98662,"(40.574894, -73.98662)",SURF AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464803,Sedan,Sedan,,, +10/04/2021,20:06,BROOKLYN,11238,40.68085,-73.97112,"(40.68085, -73.97112)",DEAN STREET,CARLTON AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464317,Station Wagon/Sport Utility Vehicle,Bike,,, +09/25/2021,16:40,BRONX,10468,40.867313,-73.90752,"(40.867313, -73.90752)",,,2521 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4464649,Sedan,Taxi,,, +10/04/2021,15:58,QUEENS,11354,40.76295,-73.83196,"(40.76295, -73.83196)",NORTHERN BOULEVARD,MAIN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464810,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +10/04/2021,15:57,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",ROCKAWAY PARKWAY,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464096,Sedan,Sedan,,, +10/04/2021,17:42,BROOKLYN,11212,40.65416,-73.91353,"(40.65416, -73.91353)",AVENUE A,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464155,Sedan,,,, +10/04/2021,10:40,MANHATTAN,10029,40.79507,-73.93919,"(40.79507, -73.93919)",2 AVENUE,EAST 113 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464724,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,17:00,BROOKLYN,11237,40.70718,-73.92107,"(40.70718, -73.92107)",SAINT NICHOLAS AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464623,Motorcycle,Van,Tractor Truck Diesel,, +10/04/2021,7:40,BROOKLYN,11205,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464378,Sedan,Bike,,, +10/04/2021,5:11,QUEENS,11385,40.695343,-73.90362,"(40.695343, -73.90362)",,,1037 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4464424,Sedan,Sedan,Sedan,, +10/01/2021,1:17,BRONX,10452,40.84224,-73.917694,"(40.84224, -73.917694)",WEST 172 STREET,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464615,Sedan,,,, +10/01/2021,16:12,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4464689,Van,Sedan,,, +10/04/2021,15:30,BROOKLYN,11206,40.71137,-73.936966,"(40.71137, -73.936966)",,,314 TEN EYCK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464216,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,20:00,,,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464665,Sedan,,,, +10/04/2021,6:45,BRONX,10456,40.8240665,-73.9087095,"(40.8240665, -73.9087095)",3 AVENUE,EAST 163 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4463993,Box Truck,,,, +10/04/2021,18:40,QUEENS,11373,40.738644,-73.887314,"(40.738644, -73.887314)",QUEENS BOULEVARD,JACOBUS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464244,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,16:30,,,40.69216,-73.914764,"(40.69216, -73.914764)",CENTRAL AVENUE,,,2,0,0,0,2,0,0,0,Unsafe Speed,Unspecified,,,,4464173,Bike,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,14:00,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464793,Station Wagon/Sport Utility Vehicle,Ambulance,,, +10/04/2021,7:50,,,40.6777,-73.87405,"(40.6777, -73.87405)",LIBERTY AVENUE,,,2,0,2,0,0,0,0,0,Unspecified,,,,,4464112,Sedan,,,, +10/02/2021,12:45,MANHATTAN,10009,40.72475,-73.98043,"(40.72475, -73.98043)",,,189 EAST 7 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Outside Car Distraction,,,,4464634,Taxi,Sedan,,, +10/04/2021,19:40,,,40.763382,-73.8303,"(40.763382, -73.8303)",LINDEN PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464817,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,17:00,QUEENS,11368,40.750717,-73.85877,"(40.750717, -73.85877)",108 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464264,E-Bike,E-Bike,,, +10/04/2021,16:30,,,40.88647,-73.89603,"(40.88647, -73.89603)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4464181,Sedan,Sedan,,, +10/04/2021,17:35,QUEENS,11368,40.75813,-73.85696,"(40.75813, -73.85696)",NORTHERN BOULEVARD,112 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464265,Sedan,,,, +10/04/2021,19:30,BROOKLYN,11230,40.618324,-73.95719,"(40.618324, -73.95719)",AVENUE M,EAST 18 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464238,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,15:20,QUEENS,11385,40.700493,-73.90142,"(40.700493, -73.90142)",MYRTLE AVENUE,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464671,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,0:15,QUEENS,11417,40.682343,-73.84005,"(40.682343, -73.84005)",,,103-53 101 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4463727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,15:50,BRONX,10462,40.84678,-73.85526,"(40.84678, -73.85526)",COLDEN AVENUE,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4464730,Sedan,,,, +10/04/2021,14:30,,,40.752064,-73.97351,"(40.752064, -73.97351)",3 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464130,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,22:23,BRONX,10456,40.833424,-73.909,"(40.833424, -73.909)",,,1241 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4464610,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,13:00,,,40.778275,-73.906075,"(40.778275, -73.906075)",20 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464884,Sedan,Sedan,,, +10/04/2021,8:30,QUEENS,11356,40.78534,-73.843925,"(40.78534, -73.843925)",14 AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4464816,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,17:30,BRONX,10468,40.859642,-73.90534,"(40.859642, -73.90534)",GRAND AVENUE,EVELYN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464655,Sedan,,,, +10/04/2021,0:48,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463884,Sedan,Sedan,,, +09/15/2021,7:30,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464682,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,9:19,BROOKLYN,11208,40.667507,-73.88007,"(40.667507, -73.88007)",NEW LOTS AVENUE,ESSEX STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464111,E-Bike,Sedan,,, +10/04/2021,18:00,BROOKLYN,11226,40.6483,-73.961914,"(40.6483, -73.961914)",,,50 EAST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464239,Sedan,,,, +09/30/2021,8:21,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",CENTRAL PARK WEST,WEST 65 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4464738,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,19:35,QUEENS,11102,40.771347,-73.92285,"(40.771347, -73.92285)",CRESCENT STREET,ASTORIA BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464584,Motorcycle,,,, +10/03/2021,13:40,QUEENS,11101,40.75184,-73.94806,"(40.75184, -73.94806)",11 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464632,Sedan,Sedan,,, +10/04/2021,6:39,,,40.667862,-73.85073,"(40.667862, -73.85073)",151 AVENUE,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4464208,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/02/2021,5:30,QUEENS,11355,40.75383,-73.81841,"(40.75383, -73.81841)",45 AVENUE,BOWNE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464861,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,18:50,QUEENS,11432,40.70898,-73.80418,"(40.70898, -73.80418)",PARSONS BOULEVARD,87 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464717,Sedan,,,, +10/04/2021,4:40,,,40.747852,-73.99291,"(40.747852, -73.99291)",WEST 29 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463992,Sedan,,,, +10/04/2021,8:00,BRONX,10465,40.830875,-73.83435,"(40.830875, -73.83435)",GIFFORD AVENUE,BALCOM AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4464047,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,15:15,,,40.70191,-73.829475,"(40.70191, -73.829475)",121 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464361,Sedan,,,, +10/04/2021,16:36,QUEENS,11361,40.757725,-73.779274,"(40.757725, -73.779274)",NORTHERN BOULEVARD,204 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464124,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,10:40,MANHATTAN,10003,40.73131,-73.984665,"(40.73131, -73.984665)",,,326 EAST 13 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464518,Sedan,Bike,,, +09/29/2021,11:00,,,40.665535,-73.93699,"(40.665535, -73.93699)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464765,Sedan,,,, +10/04/2021,7:07,BROOKLYN,11228,40.607147,-74.01157,"(40.607147, -74.01157)",BATH AVENUE,BAY 11 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4463955,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,14:21,QUEENS,11421,40.695827,-73.855385,"(40.695827, -73.855385)",85 ROAD,90 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4464269,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,11:50,,,40.684704,-73.94419,"(40.684704, -73.94419)",TOMPKINS AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4464380,Bike,,,, +10/04/2021,7:00,MANHATTAN,10029,40.792114,-73.941345,"(40.792114, -73.941345)",,,2086 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464007,Sedan,,,, +10/04/2021,15:00,QUEENS,11354,40.772346,-73.826584,"(40.772346, -73.826584)",29 AVENUE,UNION STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4464187,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,15:15,,,,,,RIVERSIDE DRIVE,RIVERSIDE DRIVE WEST,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4464687,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,13:40,BRONX,10474,40.81937,-73.884285,"(40.81937, -73.884285)",,,1373 SENECA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464555,Dump,Dump,,, +10/04/2021,15:00,,,40.804886,-73.96248,"(40.804886, -73.96248)",WEST 113 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464116,AMBULANCE,AMBULANCE,,, +10/04/2021,20:11,QUEENS,11417,40.68037,-73.84248,"(40.68037, -73.84248)",,,96-02 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4464202,Sedan,Sedan,,, +09/28/2021,13:16,,,,,,WEST 20 STREET,BAY 54 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4464804,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,7:00,QUEENS,11103,40.77056,-73.91751,"(40.77056, -73.91751)",GRAND CENTRAL PARKWAY,31 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464641,Sedan,Sedan,,, +10/04/2021,0:17,BRONX,10462,40.83552,-73.840996,"(40.83552, -73.840996)",,,2500 WATERBURY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4464344,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,0:57,BRONX,10474,40.812077,-73.88681,"(40.812077, -73.88681)",RANDALL AVENUE,COSTER STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4463901,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,11:30,,,40.731815,-73.8713,"(40.731815, -73.8713)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464507,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,13:55,BROOKLYN,11204,40.62167,-73.991264,"(40.62167, -73.991264)",63 STREET,17 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4464083,MOPED,,,, +10/04/2021,8:30,BROOKLYN,11233,40.680202,-73.934525,"(40.680202, -73.934525)",,,436 LEWIS AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4464394,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,20:15,STATEN ISLAND,10305,40.5953,-74.06287,"(40.5953, -74.06287)",CAPODANNO BOULEVARD,OCEAN AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464282,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,16:40,BROOKLYN,11211,40.714382,-73.93345,"(40.714382, -73.93345)",METROPOLITAN AVENUE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,19:15,BROOKLYN,11230,40.62037,-73.96538,"(40.62037, -73.96538)",,,1190 EAST 10 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,19:46,QUEENS,11373,40.742374,-73.88013,"(40.742374, -73.88013)",,,44-05 MACNISH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464247,Station Wagon/Sport Utility Vehicle,,,, +09/14/2021,8:23,QUEENS,11105,40.78028,-73.91387,"(40.78028, -73.91387)",,,21-21 24 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464643,Station Wagon/Sport Utility Vehicle,Bus,,, +10/04/2021,21:18,,,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464150,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,7:39,MANHATTAN,10003,40.72618,-73.99128,"(40.72618, -73.99128)",,,5 EAST 3 STREET,0,0,0,0,0,0,0,0,,,,,,4464522,Bus,,,, +09/27/2021,15:00,BRONX,10452,40.830994,-73.928116,"(40.830994, -73.928116)",ANDERSON AVENUE,WEST 162 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464616,Sedan,,,, +10/04/2021,19:33,BROOKLYN,11235,40.591255,-73.96378,"(40.591255, -73.96378)",AVENUE X,HUBBARD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464201,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,0:00,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",RALPH AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464402,Taxi,,,, +10/04/2021,3:55,QUEENS,11372,40.746845,-73.89144,"(40.746845, -73.89144)",ROOSEVELT AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4463913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,19:17,,,40.707954,-73.83715,"(40.707954, -73.83715)",PARK LANE SOUTH,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4464258,Station Wagon/Sport Utility Vehicle,Taxi,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +10/04/2021,8:30,QUEENS,11377,40.73984,-73.89766,"(40.73984, -73.89766)",LAUREL HILL BOULEVARD,67 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4464052,Tractor Truck Gasoline,Sedan,,, +10/04/2021,20:32,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464266,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,5:00,BROOKLYN,11214,40.606544,-73.98906,"(40.606544, -73.98906)",,,7724 BAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464129,Sedan,Sedan,,, +10/04/2021,16:05,MANHATTAN,10172,40.7553,-73.97535,"(40.7553, -73.97535)",EAST 47 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464253,Bike,Taxi,,, +09/30/2021,18:09,QUEENS,11385,40.713955,-73.92302,"(40.713955, -73.92302)",,,46-25 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4464664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/04/2021,10:30,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464215,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,3:55,,,40.699013,-73.79573,"(40.699013, -73.79573)",SOUTH ROAD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4463744,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,19:47,BRONX,10462,40.84438,-73.86583,"(40.84438, -73.86583)",,,1739 WHITE PLAINS ROAD,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4464731,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,8:15,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464607,Sedan,Sedan,,, +09/22/2021,11:30,BRONX,10458,40.863228,-73.883026,"(40.863228, -73.883026)",,,2691 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464842,Sedan,,,, +10/04/2021,10:20,,,40.86159,-73.92475,"(40.86159, -73.92475)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464382,Sedan,Sedan,,, +10/04/2021,9:30,BROOKLYN,11207,40.67455,-73.89551,"(40.67455, -73.89551)",NEW JERSEY AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,8:10,BROOKLYN,11218,40.632687,-73.97308,"(40.632687, -73.97308)",,,3918 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464012,Sedan,,,, +10/03/2021,7:50,BROOKLYN,11223,40.5874,-73.97247,"(40.5874, -73.97247)",WEST 3 STREET,COBEK COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464729,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +10/04/2021,14:50,MANHATTAN,10025,40.79119,-73.965645,"(40.79119, -73.965645)",,,3 WEST 95 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,9:25,STATEN ISLAND,10305,40.57925,-74.07781,"(40.57925, -74.07781)",CAPODANNO BOULEVARD,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464363,Sedan,Sedan,,, +10/01/2021,15:25,QUEENS,11692,40.59241,-73.789,"(40.59241, -73.789)",BEACH 59 STREET,ROCKAWAY FREEWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464785,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,17:50,QUEENS,11694,40.57981,-73.837204,"(40.57981, -73.837204)",BEACH 116 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4464115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,19:34,BROOKLYN,11218,40.634605,-73.9767,"(40.634605, -73.9767)",,,674 EAST 2 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4464428,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,22:09,BRONX,10463,40.87391,-73.909164,"(40.87391, -73.909164)",,,49 WEST 225 STREET,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464834,Sedan,E-Bike,,, +10/04/2021,6:13,,,40.732445,-73.99129,"(40.732445, -73.99129)",BROADWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4463941,Bus,E-Scooter,,, +10/04/2021,18:20,,,40.628662,-74.13675,"(40.628662, -74.13675)",DECKER AVENUE,CATHERINE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464306,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,18:30,BRONX,10470,40.90617,-73.84913,"(40.90617, -73.84913)",,,4822 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4464414,Sedan,,,, +10/04/2021,17:00,BROOKLYN,11211,40.70518,-73.95934,"(40.70518, -73.95934)",LEE AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464517,Station Wagon/Sport Utility Vehicle,Bus,,, +10/04/2021,9:50,BROOKLYN,11228,40.617004,-74.00659,"(40.617004, -74.00659)",,,1407 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463958,Sedan,Sedan,,, +10/04/2021,4:15,,,40.737064,-74.002144,"(40.737064, -74.002144)",BANK STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464057,Sedan,Sedan,,, +09/28/2021,8:00,BROOKLYN,11214,40.587265,-73.983475,"(40.587265, -73.983475)",STILLWELL AVENUE,HARWAY AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4464806,PK,Sedan,,, +09/24/2021,18:30,QUEENS,11366,40.724674,-73.80831,"(40.724674, -73.80831)",160 STREET,76 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464814,Sedan,,,, +10/04/2021,17:55,,,40.59506,-73.7944,"(40.59506, -73.7944)",THURSBY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464105,Sedan,,,, +10/04/2021,22:24,BROOKLYN,11230,40.63018,-73.960175,"(40.63018, -73.960175)",,,1704 AVENUE H,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4464240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,19:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464794,Sedan,Sedan,,, +09/20/2021,17:00,BRONX,10458,40.85922,-73.88555,"(40.85922, -73.88555)",,,2548 HOFFMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464605,Pick-up Truck,,,, +10/01/2021,15:31,BROOKLYN,11212,40.66255,-73.90893,"(40.66255, -73.90893)",LIVONIA AVENUE,ROCKAWAY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464715,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,2:30,QUEENS,11373,40.741013,-73.87057,"(40.741013, -73.87057)",,,93-11 50 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463970,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,19:55,QUEENS,11412,40.704006,-73.7668,"(40.704006, -73.7668)",FARMERS BOULEVARD,BRINKERHOFF AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464125,E-Bike,Sedan,,, +10/04/2021,6:50,,,40.76349,-73.86079,"(40.76349, -73.86079)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463911,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,16:50,BROOKLYN,11204,40.613388,-73.995995,"(40.613388, -73.995995)",BAY RIDGE PARKWAY,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464084,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,14:00,,,40.81977,-73.93673,"(40.81977, -73.93673)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4464290,Pick-up Truck,Sedan,,, +10/04/2021,8:35,BROOKLYN,11203,40.64993,-73.93312,"(40.64993, -73.93312)",SNYDER AVENUE,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464076,Sedan,Sedan,,, +09/13/2021,6:22,BROOKLYN,11221,40.690937,-73.92457,"(40.690937, -73.92457)",,,1285 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464663,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,12:45,BROOKLYN,11230,40.61872,-73.96945,"(40.61872, -73.96945)",,,1220 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464429,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,18:10,,,,,,ROCKAWAY BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464175,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,20:45,QUEENS,11418,40.69931,-73.83157,"(40.69931, -73.83157)",,,87-34 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464358,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,8:15,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4464495,Tow Truck,Sedan,,, +10/04/2021,20:43,,,40.59961,-74.00461,"(40.59961, -74.00461)",19 LANE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464400,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,21:55,,,,,,GRAND CENTRAL PARKWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423987,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,17:20,QUEENS,11368,40.748764,-73.86311,"(40.748764, -73.86311)",,,40-42 NATIONAL STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464228,Sedan,Bike,,, +10/01/2021,16:09,,,40.59607,-73.98413,"(40.59607, -73.98413)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464631,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,8:50,BROOKLYN,11225,40.662674,-73.94562,"(40.662674, -73.94562)",BROOKLYN AVENUE,LEFFERTS AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4464763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,9:19,,,,,,MIDLAND PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4464163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,9:45,QUEENS,11105,40.775925,-73.90893,"(40.775925, -73.90893)",,,21-77 33 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464652,Box Truck,Sedan,,, +10/04/2021,11:01,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",EAST 58 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464149,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,7:00,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463890,Sedan,Sedan,,, +10/04/2021,11:55,STATEN ISLAND,10305,40.615395,-74.06583,"(40.615395, -74.06583)",CLIFTON AVENUE,WIMAN PLACE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,,,4464675,Sedan,Sedan,Sedan,, +10/04/2021,11:57,MANHATTAN,10027,40.809086,-73.94859,"(40.809086, -73.94859)",,,163 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464048,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,17:51,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464204,Sedan,Sedan,,, +10/04/2021,12:30,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4464864,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,16:13,BROOKLYN,11230,40.6221,-73.956955,"(40.6221, -73.956955)",,,1164 EAST 19 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4464745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/04/2021,11:25,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464612,Sedan,Van,,, +10/04/2021,14:22,QUEENS,11420,40.679783,-73.83087,"(40.679783, -73.83087)",109 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464209,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,15:55,BRONX,10458,40.857525,-73.8818,"(40.857525, -73.8818)",EAST FORDHAM ROAD,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464279,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,10:42,,,40.597122,-74.00418,"(40.597122, -74.00418)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4464617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/04/2021,8:30,QUEENS,11356,40.781647,-73.8367,"(40.781647, -73.8367)",20 AVENUE,132 STREET,,2,0,0,0,0,0,2,0,Oversized Vehicle,Unspecified,,,,4464186,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/04/2021,12:50,,,40.69099,-73.98932,"(40.69099, -73.98932)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464117,Sedan,Sedan,,, +10/02/2021,15:15,QUEENS,11385,40.712646,-73.90597,"(40.712646, -73.90597)",FOREST AVENUE,HARMAN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464667,Pick-up Truck,,,, +10/02/2021,11:40,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464686,Sedan,Sedan,,, +10/04/2021,4:25,,,40.79748,-73.94879,"(40.79748, -73.94879)",WEST 111 STREET,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4464327,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,18:50,BRONX,10454,40.803677,-73.92209,"(40.803677, -73.92209)",EAST 132 STREET,BROOK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464218,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,11:36,BRONX,10457,40.842594,-73.89305,"(40.842594, -73.89305)",,,712 EAST 175 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,3:01,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464779,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/13/2021,7:00,QUEENS,11102,40.767345,-73.91881,"(40.767345, -73.91881)",,,28-15 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464636,Pick-up Truck,Sedan,,, +09/20/2021,8:30,MANHATTAN,10036,40.76227,-73.99581,"(40.76227, -73.99581)",,,550 WEST 45 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464871,Motorcycle,PK,,, +10/04/2021,15:00,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",CLINTON AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464267,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,11:50,QUEENS,11102,40.768143,-73.92894,"(40.768143, -73.92894)",,,21-05 30 DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464647,Sedan,Box Truck,,, +10/04/2021,4:00,BROOKLYN,11228,40.627518,-74.010704,"(40.627518, -74.010704)",,,6924 10 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4463821,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,17:00,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4464732,Bike,,,, +10/02/2021,12:00,QUEENS,11385,40.710464,-73.90898,"(40.710464, -73.90898)",,,458 GRANDVIEW AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,4:34,BROOKLYN,11203,40.634945,-73.9325,"(40.634945, -73.9325)",GLENWOOD ROAD,EAST 46 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4464157,Tractor Truck Diesel,,,, +10/04/2021,12:30,BROOKLYN,11208,40.668327,-73.869606,"(40.668327, -73.869606)",,,2555 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464383,Van,Dump,,, +10/04/2021,7:35,QUEENS,11429,40.709255,-73.75004,"(40.709255, -73.75004)",208 STREET,109 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464039,Sedan,Sedan,,, +10/04/2021,6:30,,,40.856712,-73.93264,"(40.856712, -73.93264)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464374,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,11:00,,,40.764267,-73.9158,"(40.764267, -73.9158)",38 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4464691,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,7:45,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",GRAND CONCOURSE,MOUNT EDEN PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,18:05,MANHATTAN,10001,40.746037,-73.990524,"(40.746037, -73.990524)",WEST 28 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464246,Taxi,,,, +10/04/2021,15:15,BROOKLYN,11201,40.6887,-73.99286,"(40.6887, -73.99286)",,,154 COURT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464536,Sedan,,,, +10/04/2021,21:30,QUEENS,11434,40.674744,-73.76368,"(40.674744, -73.76368)",FARMERS BOULEVARD,GARRETT STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4464291,Sedan,Sedan,,, +10/04/2021,9:00,BRONX,10466,40.89725,-73.855255,"(40.89725, -73.855255)",WHITE PLAINS ROAD,EAST 237 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4464068,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,17:40,BROOKLYN,11208,40.669113,-73.86516,"(40.669113, -73.86516)",,,2678 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464114,Sedan,Sedan,,, +09/05/2021,1:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4464824,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/04/2021,5:30,,,,,,UNIVERSITY AVENUE,WEST 181 STREET BRIDGE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4463946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:55,,,40.58405,-73.96332,"(40.58405, -73.96332)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464800,Sedan,Sedan,,, +10/04/2021,11:40,BRONX,10461,40.85305,-73.852356,"(40.85305, -73.852356)",,,1909 YATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464307,,,,, +10/04/2021,0:00,,,40.582863,-73.97485,"(40.582863, -73.97485)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,Unsafe Speed,Unsafe Speed,,4464727,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/04/2021,0:00,QUEENS,11693,40.60702,-73.81943,"(40.60702, -73.81943)",,,800 CROSS BAY BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4464078,Bike,,,, +10/04/2021,16:25,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,12:30,,,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,WOODSIDE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4464573,Bike,,,, +10/04/2021,15:15,STATEN ISLAND,10301,40.639133,-74.08477,"(40.639133, -74.08477)",,,141 BISMARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464419,Sedan,,,, +06/05/2021,8:56,,,,,,,,97 EAST DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4424166,Bike,,,, +10/04/2021,11:00,BROOKLYN,11204,40.618633,-73.98009,"(40.618633, -73.98009)",21 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464431,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/04/2021,5:15,BRONX,10473,40.807182,-73.85155,"(40.807182, -73.85155)",SOUND VIEW AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4463936,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,7:30,BROOKLYN,11219,40.631557,-74.00787,"(40.631557, -74.00787)",,,6302 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4464250,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,8:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,10:35,BROOKLYN,11220,40.63655,-74.006744,"(40.63655, -74.006744)",,,846 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,2:15,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4463910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,20:00,QUEENS,11355,40.746887,-73.8347,"(40.746887, -73.8347)",COLLEGE POINT BOULEVARD,57 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464128,Sedan,Sedan,,, +10/04/2021,16:00,BRONX,10469,40.87451,-73.85745,"(40.87451, -73.85745)",EAST GUN HILL ROAD,HONE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464412,Pick-up Truck,Sedan,,, +10/04/2021,13:09,,,40.84543,-73.91399,"(40.84543, -73.91399)",FEATHERBED LANE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464289,Sedan,Ambulance,,, +10/04/2021,12:27,QUEENS,11435,40.699635,-73.80312,"(40.699635, -73.80312)",150 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464056,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,21:30,,,40.68473,-74.00102,"(40.68473, -74.00102)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464684,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,19:14,BRONX,10453,40.85937,-73.9068,"(40.85937, -73.9068)",WEST 183 STREET,AQUEDUCT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464653,Sedan,,,, +10/04/2021,9:36,,,40.76399,-73.958786,"(40.76399, -73.958786)",EAST 66 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4464205,Pick-up Truck,E-Bike,,, +10/04/2021,19:55,QUEENS,11413,40.67243,-73.75637,"(40.67243, -73.75637)",140 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464176,Sedan,Sedan,Sedan,, +10/04/2021,14:15,QUEENS,11377,40.741714,-73.90634,"(40.741714, -73.90634)",59 STREET,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464601,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,19:20,QUEENS,11103,40.758972,-73.91901,"(40.758972, -73.91901)",BROADWAY,STEINWAY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464630,E-Bike,,,, +10/04/2021,12:14,BROOKLYN,11249,40.71058,-73.96643,"(40.71058, -73.96643)",,,60 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464214,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,9:45,,,40.7538,-73.90213,"(40.7538, -73.90213)",60 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4464051,Sedan,Sedan,Sedan,, +10/02/2021,19:18,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464865,Sedan,,,, +10/04/2021,8:00,BRONX,10473,40.82463,-73.85566,"(40.82463, -73.85566)",STORY AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463969,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,14:45,QUEENS,11434,40.675312,-73.777145,"(40.675312, -73.777145)",BREWER BOULEVARD,132 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464713,Station Wagon/Sport Utility Vehicle,Bus,,, +10/04/2021,16:27,MANHATTAN,10027,40.810764,-73.9526,"(40.810764, -73.9526)",WEST 125 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464471,Sedan,E-Bike,,, +10/04/2021,13:00,,,40.74942,-73.940544,"(40.74942, -73.940544)",42 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464089,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,16:50,,,40.806614,-73.90769,"(40.806614, -73.90769)",BRUCKNER BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464229,Sedan,,,, +10/04/2021,21:59,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4464396,Sedan,Sedan,,, +10/04/2021,18:26,BROOKLYN,11219,40.63795,-73.98793,"(40.63795, -73.98793)",,,1324 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,7:45,QUEENS,11433,,,,GUY BREWER BLVD,107 AVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463962,Bus,,,, +10/04/2021,1:05,BROOKLYN,11228,40.627247,-74.01429,"(40.627247, -74.01429)",FORT HAMILTON PARKWAY,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463900,Sedan,Garbage or Refuse,,, +10/04/2021,19:28,,,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4464139,Bus,Sedan,,, +09/14/2021,12:55,,,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4464813,Sedan,Sedan,,, +10/04/2021,9:04,BRONX,10456,40.83283,-73.91129,"(40.83283, -73.91129)",EAST 168 STREET,TELLER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464241,Sedan,,,, +10/04/2021,15:25,BROOKLYN,11203,40.648182,-73.93001,"(40.648182, -73.93001)",UTICA AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464104,Station Wagon/Sport Utility Vehicle,Bus,,, +10/02/2021,19:30,QUEENS,11102,40.77051,-73.92547,"(40.77051, -73.92547)",23 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4464661,Sedan,Sedan,,, +10/04/2021,20:59,MANHATTAN,10012,40.72136,-73.99716,"(40.72136, -73.99716)",,,100 KENMARE STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464679,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,14:19,BRONX,10457,40.838997,-73.91073,"(40.838997, -73.91073)",MORRIS AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464611,Sedan,Sedan,,, +10/04/2021,20:00,QUEENS,11372,40.75487,-73.891884,"(40.75487, -73.891884)",NORTHERN BOULEVARD,75 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464749,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,6:30,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464165,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,14:19,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464620,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,20:45,,,40.771667,-73.9867,"(40.771667, -73.9867)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464808,Taxi,Sedan,,, +10/04/2021,14:02,,,40.67546,-73.97163,"(40.67546, -73.97163)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464316,Dump,Carry All,,, +09/26/2021,19:00,BROOKLYN,11204,40.61779,-73.99413,"(40.61779, -73.99413)",,,1722 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464854,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/04/2021,8:25,STATEN ISLAND,10308,40.55301,-74.16008,"(40.55301, -74.16008)",ARMSTRONG AVENUE,EAST AUGUSTA AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4464043,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/04/2021,10:50,BROOKLYN,11234,40.62685,-73.91907,"(40.62685, -73.91907)",,,1090 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464392,Sedan,,,, +10/02/2021,0:04,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Tinted Windows,Failure to Yield Right-of-Way,,,,4464726,Sedan,Sedan,,, +10/04/2021,7:40,MANHATTAN,10039,40.83263,-73.93544,"(40.83263, -73.93544)",,,159-14 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464292,Sedan,Bus,,, +10/04/2021,12:15,BROOKLYN,11222,40.72757,-73.94388,"(40.72757, -73.94388)",NORTH HENRY STREET,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463994,Tractor Truck Diesel,Sedan,,, +10/04/2021,15:45,BRONX,10462,40.83883,-73.860085,"(40.83883, -73.860085)",,,5 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Unspecified,,,,,4464081,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,16:00,BROOKLYN,11211,40.703655,-73.960594,"(40.703655, -73.960594)",KEAP STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464516,Sedan,,,, +10/04/2021,4:00,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",JUNCTION BOULEVARD,43 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4463951,E-Bike,,,, +10/01/2021,14:15,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",43 AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464762,Station Wagon/Sport Utility Vehicle,,,, +09/20/2021,14:30,QUEENS,11412,40.691994,-73.76111,"(40.691994, -73.76111)",LINDEN BOULEVARD,190 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464869,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,14:30,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4464614,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,16:45,BRONX,10455,40.814877,-73.91824,"(40.814877, -73.91824)",,,500 BERGEN AVENUE,1,0,1,0,0,0,0,0,,,,,,4464217,E-Bike,,,, +10/03/2021,2:56,QUEENS,11378,40.7139,-73.90881,"(40.7139, -73.90881)",ANDREWS AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464666,Station Wagon/Sport Utility Vehicle,Motorbike,,, +09/24/2021,18:41,QUEENS,11385,40.694855,-73.89744,"(40.694855, -73.89744)",,,58-16 79 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464670,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,4:15,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4463865,Sedan,,,, +09/03/2021,17:00,BROOKLYN,11210,40.63825,-73.94531,"(40.63825, -73.94531)",,,1411 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464821,Sedan,Sedan,,, +10/04/2021,19:00,MANHATTAN,10016,40.746536,-73.985954,"(40.746536, -73.985954)",WEST 31 STREET,5 AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464249,Sedan,,,, +10/04/2021,14:00,QUEENS,11369,40.76164,-73.86723,"(40.76164, -73.86723)",102 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464268,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,22:34,BRONX,10462,40.85153,-73.8649,"(40.85153, -73.8649)",ANTIN PLACE,WALLACE AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4464736,Sedan,Sedan,,, +10/04/2021,3:12,,,40.63228,-73.937416,"(40.63228, -73.937416)",EAST 40 STREET,AVENUE H,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4464156,Sedan,Sedan,,, +10/04/2021,18:35,BROOKLYN,11212,40.668774,-73.91693,"(40.668774, -73.91693)",,,1533 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464544,Sedan,Sedan,,, +10/04/2021,19:00,BROOKLYN,11211,40.71537,-73.95823,"(40.71537, -73.95823)",NORTH 4 STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464194,Sedan,Sedan,,, +09/23/2021,18:25,BROOKLYN,11235,40.5763,-73.96854,"(40.5763, -73.96854)",OCEAN PARKWAY,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464801,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,12:15,BROOKLYN,11222,40.73398,-73.95995,"(40.73398, -73.95995)",WEST STREET,FREEMAN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464262,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/04/2021,10:50,,,40.652554,-73.92078,"(40.652554, -73.92078)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464066,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,1:05,BRONX,10462,40.83552,-73.840996,"(40.83552, -73.840996)",,,2500 WATERBURY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4463935,Taxi,,,, +10/04/2021,19:45,,,40.68837,-73.944916,"(40.68837, -73.944916)",LEXINGTON AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464377,Station Wagon/Sport Utility Vehicle,PK,,, +10/04/2021,10:15,QUEENS,11105,40.776188,-73.90596,"(40.776188, -73.90596)",36 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,17:35,BROOKLYN,11201,40.68993,-73.98148,"(40.68993, -73.98148)",DE KALB AVENUE,FLATBUSH AVENUE EXTENSION,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4464120,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,7:59,BROOKLYN,11207,40.677578,-73.88602,"(40.677578, -73.88602)",ATLANTIC AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464113,Station Wagon/Sport Utility Vehicle,FLAT,,, +10/04/2021,17:20,STATEN ISLAND,10310,40.63416,-74.12194,"(40.63416, -74.12194)",ROE STREET,CASTLETON AVENUE,,2,0,0,0,1,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4464421,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,0:20,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4464777,Station Wagon/Sport Utility Vehicle,tow truck,,, +10/04/2021,7:10,,,40.788776,-73.79135,"(40.788776, -73.79135)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4464185,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,11:30,,,40.814636,-73.920334,"(40.814636, -73.920334)",3 AVENUE,EAST 146 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464221,Ambulance,,,, +10/04/2021,9:05,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464690,Sedan,,,, +09/29/2021,8:30,QUEENS,11377,40.756107,-73.90071,"(40.756107, -73.90071)",62 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464648,Sedan,,,, +10/04/2021,16:20,BRONX,10451,40.82054,-73.930786,"(40.82054, -73.930786)",EAST 150 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,13:50,,,40.591312,-73.99388,"(40.591312, -73.99388)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4464166,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,16:36,,,40.696823,-73.91487,"(40.696823, -73.91487)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464622,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,2:53,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",EAST HOUSTON STREET,BROADWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,19:16,QUEENS,11103,40.76853,-73.912346,"(40.76853, -73.912346)",,,24-38 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464654,Sedan,,,, +06/04/2021,8:25,,,,,,EGAN STREET,Erskine,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424388,Sedan,Sedan,,, +10/04/2021,18:57,,,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464206,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,17:40,BROOKLYN,11217,40.67645,-73.97411,"(40.67645, -73.97411)",7 AVENUE,SAINT JOHNS PLACE,,6,0,0,0,1,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4486317,Sedan,Sedan,Sedan,Sedan,Bike +12/11/2021,19:33,,,40.819572,-73.95175,"(40.819572, -73.95175)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4486257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,19:00,BROOKLYN,11204,40.617455,-73.98426,"(40.617455, -73.98426)",,,2005 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486058,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,21:41,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,6 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4486038,Sedan,,,, +12/11/2021,2:10,,,40.762794,-73.83558,"(40.762794, -73.83558)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4485289,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,16:42,QUEENS,11106,40.757504,-73.92266,"(40.757504, -73.92266)",,,36-12 34 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485570,Sedan,,,, +12/11/2021,15:45,QUEENS,11419,40.68217,-73.83105,"(40.68217, -73.83105)",107 AVENUE,110 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4485871,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,10:18,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",THROOP AVENUE,DE KALB AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485665,Sedan,Bike,,, +12/08/2021,20:30,BROOKLYN,11207,40.663643,-73.89084,"(40.663643, -73.89084)",WYONA STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486012,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,9:30,BRONX,10473,40.824207,-73.858795,"(40.824207, -73.858795)",WHITE PLAINS ROAD,STORY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486107,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,2:43,,,40.8229,-73.83599,"(40.8229, -73.83599)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4485313,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,12:30,BRONX,10460,40.836437,-73.88498,"(40.836437, -73.88498)",,,961 EAST 174 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4485677,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,12:10,BROOKLYN,11212,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486056,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,13:00,BROOKLYN,11207,40.67127,-73.900024,"(40.67127, -73.900024)",,,1970 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486094,Sedan,Pick-up Truck,,, +12/10/2021,18:50,QUEENS,11435,40.701054,-73.80787,"(40.701054, -73.80787)",,,91-10 SUTPHIN BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485990,Sedan,Van,,, +12/11/2021,8:16,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,18:36,,,40.686756,-73.9938,"(40.686756, -73.9938)",COURT STREET,WARREN STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4485467,Sedan,E-Scooter,,, +12/08/2021,3:15,QUEENS,11426,40.731445,-73.720535,"(40.731445, -73.720535)",86 AVENUE,COMMONWEALTH BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486287,Sedan,Sedan,,, +12/11/2021,22:54,BROOKLYN,11211,40.710262,-73.953865,"(40.710262, -73.953865)",KEAP STREET,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4485800,Sedan,Sedan,Sedan,, +12/11/2021,8:50,,,40.713955,-73.95794,"(40.713955, -73.95794)",ROEBLING STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,Unspecified,,,4485900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/11/2021,11:40,BRONX,10460,40.844482,-73.87942,"(40.844482, -73.87942)",,,986 EAST 181 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,16:25,QUEENS,11356,40.789433,-73.84558,"(40.789433, -73.84558)",COLLEGE POINT BOULEVARD,9 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485444,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/11/2021,1:12,,,40.769817,-73.78237,"(40.769817, -73.78237)",CLEARVIEW EXPRESSWAY,33 AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Other Vehicular,Other Vehicular,,,4485405,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/11/2021,16:01,MANHATTAN,10024,40.787685,-73.97502,"(40.787685, -73.97502)",WEST 86 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486183,Sedan,Taxi,,, +12/11/2021,10:30,,,40.694138,-73.92649,"(40.694138, -73.92649)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485406,Sedan,Sedan,,, +06/05/2021,21:15,,,,,,East 122 street,1 avenue,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424524,Bike,,,, +10/05/2021,10:17,,,40.76394,-73.828156,"(40.76394, -73.828156)",UNION STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464354,Bus,Sedan,,, +06/30/2022,14:50,,,40.719048,-73.99648,"(40.719048, -73.99648)",MOTT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543224,Station Wagon/Sport Utility Vehicle,Van,,, +05/24/2021,22:46,BROOKLYN,11213,40.675186,-73.933304,"(40.675186, -73.933304)",SCHENECTADY AVENUE,BERGEN STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4421062,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/01/2021,14:45,BRONX,10454,40.80934,-73.91248,"(40.80934, -73.91248)",SAINT MARYS STREET,CYPRESS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4422710,Sedan,,,, +05/31/2021,21:00,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424744,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/05/2021,2:38,MANHATTAN,10013,40.71906,-73.995605,"(40.71906, -73.995605)",,,113 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424748,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,8:40,BROOKLYN,11210,40.622078,-73.95084,"(40.622078, -73.95084)",,,3304 BEDFORD AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424740,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,12:10,MANHATTAN,10119,40.760525,-73.97998,"(40.760525, -73.97998)",WEST 51 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4424752,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,9:30,MANHATTAN,10002,40.714714,-73.992836,"(40.714714, -73.992836)",,,5 ALLEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4424766,Sedan,Sedan,,, +04/16/2021,14:30,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424762,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,23:04,,,40.592857,-73.77531,"(40.592857, -73.77531)",EDGEMERE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424741,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,13:45,MANHATTAN,10013,40.716084,-74.001434,"(40.716084, -74.001434)",,,100 CENTRE STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424765,Sedan,Sedan,,, +06/02/2021,7:45,QUEENS,11372,40.74992,-73.87394,"(40.74992, -73.87394)",,,37-24 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424763,Pick-up Truck,,,, +05/08/2021,21:00,,,40.58313,-73.9654,"(40.58313, -73.9654)",BRIGHTON 3 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4424743,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,14:30,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464496,Sedan,Box Truck,,, +07/01/2022,6:58,,,,,,FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543253,PK,Sedan,,, +06/05/2021,18:04,MANHATTAN,10022,40.75517,-73.96833,"(40.75517, -73.96833)",,,951 2 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423685,Box Truck,,,, +06/05/2021,14:37,,,40.671474,-73.93088,"(40.671474, -73.93088)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423933,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/05/2021,0:59,BRONX,10459,40.827377,-73.8895,"(40.827377, -73.8895)",,,1161 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423764,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,2:00,BROOKLYN,11221,40.68757,-73.91922,"(40.68757, -73.91922)",,,1078 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424529,Sedan,Sedan,,, +05/27/2021,19:05,,,40.78739,-73.938225,"(40.78739, -73.938225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424496,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,19:24,BRONX,10462,40.8349,-73.839966,"(40.8349, -73.839966)",COMMERCE AVENUE,NEWBOLD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424332,Sedan,Sedan,,, +06/04/2021,20:15,BRONX,10473,40.817883,-73.86025,"(40.817883, -73.86025)",,,613 LELAND AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4424309,Sedan,Sedan,,, +06/05/2021,3:00,QUEENS,11101,40.740913,-73.95226,"(40.740913, -73.95226)",BORDEN AVENUE,11 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423533,Sedan,Sedan,,, +06/05/2021,23:50,BRONX,10459,40.81616,-73.8944,"(40.81616, -73.8944)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423721,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/30/2021,14:00,,,,,,139 Place,90 Avenue,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424546,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,20:51,,,40.756344,-73.91342,"(40.756344, -73.91342)",47 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424708,Sedan,,,, +06/05/2021,17:05,BROOKLYN,11210,40.6392,-73.938736,"(40.6392, -73.938736)",FOSTER AVENUE,EAST 40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4424077,Convertible,Sedan,Sedan,, +06/05/2021,22:30,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:32,MANHATTAN,10019,40.767185,-73.98997,"(40.767185, -73.98997)",WEST 54 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424272,Sedan,Sedan,,, +06/04/2021,21:15,,,40.661125,-73.8947,"(40.661125, -73.8947)",NEW LOTS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424362,Sedan,,,, +06/04/2021,18:00,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4424446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,3:49,,,40.797867,-73.96758,"(40.797867, -73.96758)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4423559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/02/2021,21:05,BROOKLYN,11207,40.65906,-73.88459,"(40.65906, -73.88459)",STANLEY AVENUE,VAN SICLEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4424330,Sedan,,,, +06/01/2021,21:04,QUEENS,11694,40.58116,-73.853,"(40.58116, -73.853)",BEACH CHANNEL DRIVE,BEACH 131 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424616,Sedan,Motorcycle,,, +06/04/2021,17:00,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4424353,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:20,BRONX,10454,40.807808,-73.92384,"(40.807808, -73.92384)",WILLIS AVENUE,EAST 136 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424211,Sedan,,,, +06/05/2021,10:34,,,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,MAIN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4423580,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,18:00,,,40.611313,-74.09844,"(40.611313, -74.09844)",CLOVE ROAD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424641,Pick-up Truck,Sedan,,, +06/04/2021,11:35,STATEN ISLAND,10310,40.636196,-74.12153,"(40.636196, -74.12153)",,,40 BARKER STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4424640,Sedan,Sedan,,, +06/05/2021,15:35,BROOKLYN,11228,40.616047,-74.025734,"(40.616047, -74.025734)",DAHLGREN PLACE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,15:03,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424579,Van,E-Bike,,, +06/05/2021,20:50,BROOKLYN,11213,40.67752,-73.93123,"(40.67752, -73.93123)",,,1784 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4423941,Sedan,Pick-up Truck,,, +05/20/2021,17:50,MANHATTAN,10036,40.761673,-73.9982,"(40.761673, -73.9982)",,,601 WEST 43 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4424508,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,8:30,,,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4424017,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck +06/05/2021,10:54,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424106,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/19/2021,16:27,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4424700,Sedan,Pick-up Truck,,, +06/05/2021,1:27,BROOKLYN,11231,40.676743,-73.99967,"(40.676743, -73.99967)",,,148 NELSON STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4424154,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,4:55,,,40.688473,-73.80857,"(40.688473, -73.80857)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423644,Taxi,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,18:25,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424720,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,3:30,QUEENS,11369,40.76094,-73.86717,"(40.76094, -73.86717)",,,31-01 102 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,20:55,BROOKLYN,11239,40.65317,-73.866875,"(40.65317, -73.866875)",ERSKINE STREET,GATEWAY DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424377,Sedan,,,, +06/02/2021,5:55,MANHATTAN,10026,40.803745,-73.955864,"(40.803745, -73.955864)",8 AVENUE,WEST 115 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4424431,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:00,STATEN ISLAND,10306,40.57873,-74.09852,"(40.57873, -74.09852)",HUNTER AVENUE,HAVEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4424469,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/05/2021,14:09,,,40.7773,-73.99034,"(40.7773, -73.99034)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4423631,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/05/2021,13:40,BROOKLYN,11201,40.695908,-73.98322,"(40.695908, -73.98322)",GOLD STREET,TILLARY STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4423607,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,16:00,BROOKLYN,11208,40.672855,-73.87131,"(40.672855, -73.87131)",SUTTER AVENUE,EUCLID AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424341,Sedan,Sedan,,, +06/05/2021,10:00,BROOKLYN,11221,40.688354,-73.913826,"(40.688354, -73.913826)",,,91 WEIRFIELD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424648,Sedan,,,, +06/05/2021,13:37,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,5:30,BRONX,10454,40.806965,-73.911674,"(40.806965, -73.911674)",EAST 141 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423588,Sedan,Sedan,,, +06/05/2021,13:00,BROOKLYN,11237,40.699818,-73.920135,"(40.699818, -73.920135)",HIMROD STREET,KNICKERBOCKER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424147,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,19:00,BROOKLYN,11238,40.67354,-73.95695,"(40.67354, -73.95695)",,,732 FRANKLIN AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424598,Sedan,Bike,,, +06/05/2021,22:40,,,40.69864,-73.93819,"(40.69864, -73.93819)",BROADWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4423855,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/05/2021,21:00,BROOKLYN,11234,40.63333,-73.92083,"(40.63333, -73.92083)",,,5721 AVENUE H,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424523,Station Wagon/Sport Utility Vehicle,Van,,, +06/05/2021,10:30,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4424182,Sedan,Sedan,,, +06/05/2021,9:14,QUEENS,11368,40.74574,-73.86765,"(40.74574, -73.86765)",,,96-17 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424035,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,10:15,,,40.60205,-74.01334,"(40.60205, -74.01334)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423600,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,6:00,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491161,Pick-up Truck,,,, +05/30/2021,22:01,MANHATTAN,10029,40.793606,-73.94952,"(40.793606, -73.94952)",EAST 106 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424725,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,13:16,BROOKLYN,11234,40.628803,-73.92793,"(40.628803, -73.92793)",,,1791 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423651,Sedan,PK,,, +06/05/2021,7:29,,,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4423744,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,16:35,BROOKLYN,11208,40.682724,-73.88539,"(40.682724, -73.88539)",RIDGEWOOD AVENUE,ELTON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424373,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:30,,,40.597317,-73.75427,"(40.597317, -73.75427)",BEACH 20 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424719,Sedan,,,, +06/05/2021,11:46,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4424476,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/05/2021,12:13,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424013,Sedan,Sedan,,, +06/04/2021,6:31,QUEENS,11418,40.701706,-73.83655,"(40.701706, -73.83655)",114 STREET,85 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,23:30,BROOKLYN,11207,40.666153,-73.89542,"(40.666153, -73.89542)",DUMONT AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424378,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:30,BROOKLYN,11219,40.625378,-74.00215,"(40.625378, -74.00215)",66 STREET,13 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423667,Sedan,Bike,,, +05/27/2021,23:20,BROOKLYN,11217,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,NEVINS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424462,PK,,,, +06/05/2021,0:23,BROOKLYN,11233,40.679935,-73.91389,"(40.679935, -73.91389)",BOYLAND STREET,MACDOUGAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4423705,Sedan,Sedan,Sedan,Sedan,Sedan +06/03/2021,13:57,BROOKLYN,11208,40.67526,-73.88203,"(40.67526, -73.88203)",GLENMORE AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424345,Sedan,,,, +06/05/2021,9:22,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",WILLIAMSBURG STREET WEST,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423615,Van,Tractor Truck Diesel,,, +06/05/2021,14:06,BRONX,10457,40.852863,-73.90093,"(40.852863, -73.90093)",EAST 180 STREET,RYER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,8:45,BROOKLYN,11203,40.653267,-73.93927,"(40.653267, -73.93927)",ALBANY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424056,Sedan,Sedan,,, +06/05/2021,22:06,MANHATTAN,10027,40.813564,-73.951324,"(40.813564, -73.951324)",SAINT NICHOLAS TERRACE,WEST 129 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4424129,Sedan,,,, +06/05/2021,19:50,,,40.5377,-74.15002,"(40.5377, -74.15002)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4424470,Sedan,,,, +05/22/2021,15:00,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",FRANCIS LEWIS BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4424605,Sedan,,,, +06/05/2021,23:20,,,40.82413,-73.94098,"(40.82413, -73.94098)",8 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424241,Taxi,,,, +06/03/2021,1:00,BROOKLYN,11207,40.66855,-73.90079,"(40.66855, -73.90079)",SUTTER AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424337,Taxi,Sedan,,, +06/05/2021,14:00,BROOKLYN,11214,40.586445,-73.98838,"(40.586445, -73.98838)",CROPSEY AVENUE,28 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423777,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,22:00,,,40.82371,-73.879,"(40.82371, -73.879)",BRUCKNER BOULEVARD,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424317,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,11:00,BRONX,10465,40.81725,-73.82244,"(40.81725, -73.82244)",,,349 HUNTINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423834,Van,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,14:45,BROOKLYN,11215,40.670902,-73.99686,"(40.670902, -73.99686)",HAMILTON PLACE,13 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424532,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,1:05,,,40.662052,-73.93149,"(40.662052, -73.93149)",MAPLE STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4423715,Sedan,Sedan,,, +05/30/2021,16:30,QUEENS,11435,40.687458,-73.801575,"(40.687458, -73.801575)",,,143-37 GLASSBORO AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424547,Sedan,,,, +06/05/2021,17:15,BRONX,10461,,,,SEMINOLE AVENUE,NARAGANSET AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4423958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,16:32,BRONX,10457,40.842068,-73.8975,"(40.842068, -73.8975)",EAST 174 STREET,FULTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,4:00,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424366,Sedan,Sedan,,, +06/05/2021,19:19,BRONX,10459,40.82207,-73.89034,"(40.82207, -73.89034)",,,951 HOE AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4423673,Sedan,Sedan,,, +06/05/2021,3:52,MANHATTAN,10019,40.761036,-73.98702,"(40.761036, -73.98702)",8 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Driver Inattention/Distraction,,,,4424280,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,8:45,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424392,Sedan,Sedan,,, +06/05/2021,5:50,QUEENS,11364,40.750904,-73.74744,"(40.750904, -73.74744)",,,61-36 231 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423921,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,18:30,BROOKLYN,11235,40.57688,-73.95288,"(40.57688, -73.95288)",ORIENTAL BOULEVARD,WEST END AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424676,,,,, +06/05/2021,22:05,QUEENS,11354,40.75814,-73.83517,"(40.75814, -73.83517)",JANET PLACE,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423728,Station Wagon/Sport Utility Vehicle,Bike,,, +06/05/2021,11:05,STATEN ISLAND,10304,40.61883,-74.082756,"(40.61883, -74.082756)",,,90 OSGOOD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423926,Sedan,Sedan,,, +06/04/2021,12:19,QUEENS,11691,40.602768,-73.75012,"(40.602768, -73.75012)",,,16-12 MOTT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424711,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:00,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423821,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,15:00,,,40.657406,-73.89881,"(40.657406, -73.89881)",LINDEN BOULEVARD,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4424326,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/05/2021,0:01,,,40.766396,-73.78092,"(40.766396, -73.78092)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423538,Sedan,,,, +06/04/2021,11:10,,,40.678955,-73.86516,"(40.678955, -73.86516)",LIBERTY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424349,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,10:45,,,40.796074,-73.94349,"(40.796074, -73.94349)",EAST 112 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424457,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,22:00,QUEENS,11411,40.69151,-73.7299,"(40.69151, -73.7299)",232 STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423690,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,15:05,,,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4424220,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/05/2021,17:15,,,40.575375,-74.18999,"(40.575375, -74.18999)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424444,Sedan,,,, +06/04/2021,12:10,BRONX,10462,40.833557,-73.85774,"(40.833557, -73.85774)",WESTCHESTER AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424308,Sedan,,,, +06/05/2021,9:18,,,40.66755,-73.773575,"(40.66755, -73.773575)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,17:00,MANHATTAN,10035,40.805553,-73.93811,"(40.805553, -73.93811)",,,107 EAST 126 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424331,Sedan,Dump,,, +06/05/2021,20:13,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",LEGGETT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423672,Sedan,Sedan,,, +06/04/2021,14:54,BROOKLYN,11209,40.624397,-74.020325,"(40.624397, -74.020325)",,,646 79 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424624,Sedan,Sedan,,, +06/05/2021,18:20,,,40.76772,-73.902336,"(40.76772, -73.902336)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4423822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/04/2021,16:40,BROOKLYN,11207,40.66342,-73.89854,"(40.66342, -73.89854)",,,468 HINSDALE STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4424354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,2:02,,,40.660202,-73.96063,"(40.660202, -73.96063)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423716,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,18:15,BRONX,10451,40.817093,-73.92166,"(40.817093, -73.92166)",,,288 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424207,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/05/2021,10:52,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424625,Sedan,Sedan,,, +06/05/2021,12:00,QUEENS,11417,40.672146,-73.84318,"(40.672146, -73.84318)",CROSS BAY BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424279,Sedan,,,, +06/05/2021,21:00,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424581,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,11:35,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4423765,Pick-up Truck,Sedan,,, +06/01/2021,17:00,MANHATTAN,10033,40.85045,-73.93667,"(40.85045, -73.93667)",BENNETT AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424497,Sedan,Bus,,, +06/04/2021,15:23,QUEENS,11418,40.69643,-73.81692,"(40.69643, -73.81692)",,,132-05 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4424432,Sedan,,,, +06/03/2021,21:20,BROOKLYN,11207,40.667767,-73.8987,"(40.667767, -73.8987)",,,340 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424344,Sedan,Sedan,,, +06/01/2021,21:29,MANHATTAN,10035,40.80061,-73.94229,"(40.80061, -73.94229)",EAST 118 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4424536,Motorcycle,,,, +06/05/2021,15:30,QUEENS,11369,40.76301,-73.87532,"(40.76301, -73.87532)",ASTORIA BOULEVARD,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423614,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,14:45,,,40.6957,-73.7933,"(40.6957, -73.7933)",160 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423637,Sedan,,,, +06/05/2021,1:47,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424050,Sedan,Sedan,,, +05/17/2021,0:00,,,40.68576,-73.915504,"(40.68576, -73.915504)",BROADWAY,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4424654,Bus,,,, +06/05/2021,12:00,QUEENS,11421,40.690098,-73.86115,"(40.690098, -73.86115)",,,80-36 88 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4424415,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,16:56,MANHATTAN,10017,40.752693,-73.97305,"(40.752693, -73.97305)",3 AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423686,Sedan,Sedan,,, +06/05/2021,3:25,MANHATTAN,10019,40.765724,-73.984535,"(40.765724, -73.984535)",,,315 WEST 55 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424739,PK,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,1:26,,,40.75991,-73.95882,"(40.75991, -73.95882)",YORK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4424175,Bike,,,, +06/03/2021,6:00,,,40.753304,-73.912575,"(40.753304, -73.912575)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424706,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,12:57,MANHATTAN,10035,40.802498,-73.94092,"(40.802498, -73.94092)",PARK AVENUE,EAST 121 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424359,Sedan,Van,,, +06/05/2021,10:45,BROOKLYN,11220,40.643776,-74.008125,"(40.643776, -74.008125)",50 STREET,6 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423601,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:04,MANHATTAN,10010,40.736706,-73.97822,"(40.736706, -73.97822)",,,400 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423932,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,5:40,,,,,,MEEKER AVENUE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424063,Sedan,Tractor Truck Diesel,,, +06/05/2021,13:30,BRONX,10467,40.878185,-73.88145,"(40.878185, -73.88145)",STEUBEN AVENUE,EAST 208 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423622,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,1:10,BROOKLYN,11226,40.636368,-73.961586,"(40.636368, -73.961586)",NEWKIRK AVENUE,EAST 17 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423743,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,19:05,QUEENS,11419,40.68989,-73.81819,"(40.68989, -73.81819)",127 STREET,103 AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Failure to Yield Right-of-Way,Other Vehicular,,,4424302,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/02/2021,21:00,BROOKLYN,11207,40.66406,-73.89869,"(40.66406, -73.89869)",LIVONIA AVENUE,HINSDALE STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4424336,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +06/05/2021,15:50,,,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424183,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,2:30,BROOKLYN,11212,40.665627,-73.92045,"(40.665627, -73.92045)",SUTTER AVENUE,TAPSCOTT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4424568,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,14:50,QUEENS,11104,40.751637,-73.90985,"(40.751637, -73.90985)",WOODSIDE AVENUE,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423681,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,6:40,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423753,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,11:45,,,40.691883,-73.76412,"(40.691883, -73.76412)",MEXICO STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424488,Sedan,,,, +06/01/2021,8:28,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424475,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,19:15,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ATLANTIC AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424374,Sedan,PK,,, +06/05/2021,11:07,BRONX,10469,40.880947,-73.85456,"(40.880947, -73.85456)",PAULDING AVENUE,EAST 219 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4424286,Sedan,Sedan,,, +05/21/2021,7:35,,,40.76732,-73.92231,"(40.76732, -73.92231)",30 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4424465,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,7:57,QUEENS,11368,40.74593,-73.8563,"(40.74593, -73.8563)",108 STREET,48 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4424034,Sedan,Bike,,, +05/30/2021,14:15,MANHATTAN,10029,40.793552,-73.945335,"(40.793552, -73.945335)",LEXINGTON AVENUE,EAST 108 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424698,Sedan,Bike,,, +06/05/2021,9:52,BROOKLYN,11229,40.6074,-73.95292,"(40.6074, -73.95292)",,,2229 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423579,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,12:43,,,40.703854,-73.95128,"(40.703854, -73.95128)",HARRISON AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424164,Sedan,Bike,,, +06/04/2021,17:30,,,40.69097,-73.94833,"(40.69097, -73.94833)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424645,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,20:15,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423663,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,8:30,QUEENS,11435,40.70268,-73.813,"(40.70268, -73.813)",,,139-01 89 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424550,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,18:15,BROOKLYN,11226,40.652794,-73.946884,"(40.652794, -73.946884)",LINDEN BOULEVARD,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4424076,Sedan,Sedan,,, +06/05/2021,19:45,,,40.669857,-73.95051,"(40.669857, -73.95051)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423939,Sedan,Sedan,,, +05/28/2021,2:05,,,40.78296,-73.94403,"(40.78296, -73.94403)",EAST 96 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424724,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:15,MANHATTAN,10018,40.755802,-73.99083,"(40.755802, -73.99083)",,,616 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423783,Bus,Bus,,, +06/05/2021,12:10,,,40.698387,-73.774895,"(40.698387, -73.774895)",179 STREET,SAYRES AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424487,Sedan,Bike,,, +06/03/2021,8:27,,,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424340,Sedan,Sedan,,, +06/05/2021,1:28,BRONX,10466,40.898502,-73.84943,"(40.898502, -73.84943)",,,1828 NEREID AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423854,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,14:45,,,40.895195,-73.88012,"(40.895195, -73.88012)",EAST 233 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4424293,Sedan,Sedan,,, +06/05/2021,22:35,,,40.86155,-73.92472,"(40.86155, -73.92472)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424507,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,19:00,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",86 STREET,BAY PARKWAY,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4423693,Bike,,,, +06/05/2021,10:25,BRONX,10451,40.820515,-73.930695,"(40.820515, -73.930695)",EXTERIOR STREET,EAST 150 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424176,Sedan,,,, +06/05/2021,23:15,QUEENS,11369,40.76246,-73.86885,"(40.76246, -73.86885)",,,27-25 KEARNEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4424243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/05/2021,18:35,,,,,,HUTCHINSON RIVER PARKWAY,ORCHARD BEACH ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423750,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,18:30,,,40.69655,-73.90577,"(40.69655, -73.90577)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424655,Sedan,Taxi,,, +06/05/2021,18:46,,,40.700626,-73.9868,"(40.700626, -73.9868)",JAY STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424092,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,1:21,,,40.810997,-73.905846,"(40.810997, -73.905846)",SOUTHERN BOULEVARD,EAST 147 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4423587,Sedan,Sedan,,, +06/05/2021,9:00,QUEENS,11432,40.71591,-73.80443,"(40.71591, -73.80443)",,,161-10 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4423898,Sedan,Box Truck,,, +06/05/2021,13:15,,,40.86804,-73.879105,"(40.86804, -73.879105)",SOUTHERN BOULEVARD,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4423640,Sedan,,,, +06/05/2021,20:55,,,40.645027,-73.91998,"(40.645027, -73.91998)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424595,Sedan,Sedan,,, +06/05/2021,12:00,MANHATTAN,10034,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4423927,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,16:10,STATEN ISLAND,10301,40.64471,-74.07704,"(40.64471, -74.07704)",,,78 RICHMOND TERRACE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4423689,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,0:11,,,40.5787,-73.98734,"(40.5787, -73.98734)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423875,Sedan,Sedan,,, +06/04/2021,19:15,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424522,Sedan,Sedan,,, +05/31/2021,1:00,,,40.60353,-74.01863,"(40.60353, -74.01863)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424314,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,15:40,,,40.573708,-73.99072,"(40.573708, -73.99072)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423776,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,13:00,,,40.6765,-73.88234,"(40.6765, -73.88234)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424327,Sedan,Sedan,,, +06/05/2021,2:05,,,40.842564,-73.83842,"(40.842564, -73.83842)",WATERS PLACE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423555,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,12:05,BROOKLYN,11207,40.66545,-73.88939,"(40.66545, -73.88939)",MILLER AVENUE,LIVONIA AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4424350,Station Wagon/Sport Utility Vehicle,Minibike,,, +06/05/2021,22:00,QUEENS,11423,40.71092,-73.75667,"(40.71092, -73.75667)",,,100-46 203 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424555,Pick-up Truck,,,, +06/05/2021,18:55,,,40.8165,-73.946556,"(40.8165, -73.946556)",WEST 135 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4424216,Sedan,Bike,,, +04/24/2022,20:25,,,40.58576,-73.974464,"(40.58576, -73.974464)",AVENUE Z,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4522123,Sedan,Taxi,Sedan,, +05/24/2021,17:48,MANHATTAN,10009,40.72325,-73.980545,"(40.72325, -73.980545)",,,653 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424689,Sedan,,,, +06/04/2021,19:38,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424416,Sedan,Sedan,,, +05/31/2021,17:30,MANHATTAN,10029,40.791176,-73.95337,"(40.791176, -73.95337)",,,1200 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424714,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,14:30,,,40.719437,-73.94063,"(40.719437, -73.94063)",KINGSLAND AVENUE,RICHARDSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424064,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,12:05,BROOKLYN,11201,40.691895,-73.97807,"(40.691895, -73.97807)",,,240 WILLOUGHBY STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4423621,Sedan,Bike,,, +06/05/2021,11:17,QUEENS,11413,40.6785,-73.743256,"(40.6785, -73.743256)",226 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423623,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,19:08,BRONX,10469,40.87119,-73.85044,"(40.87119, -73.85044)",,,1260 BURKE AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423960,Sedan,,,, +06/05/2021,3:57,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424348,Sedan,,,, +06/05/2021,2:30,,,40.793217,-73.824005,"(40.793217, -73.824005)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423649,ambulance,,,, +06/05/2021,2:51,BROOKLYN,11203,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424051,Sedan,,,, +06/04/2021,21:55,BROOKLYN,11208,40.67241,-73.863556,"(40.67241, -73.863556)",ELDERTS LANE,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4424365,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/05/2021,19:28,,,,,,West end avenue,westend avenue,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423680,Sedan,Sedan,,, +06/05/2021,12:50,BROOKLYN,11211,40.707256,-73.95458,"(40.707256, -73.95458)",,,386 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424138,Pick-up Truck,Sedan,,, +05/25/2021,9:27,,,40.661488,-73.89389,"(40.661488, -73.89389)",SHEFFIELD AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424396,Sedan,,,, +06/05/2021,9:05,MANHATTAN,10016,,,,TUNNEL EXIT ST,East 39 street,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423592,Sedan,Bike,,, +05/28/2021,4:00,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424602,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,19:35,,,40.625347,-74.15069,"(40.625347, -74.15069)",,,1855 FOREST AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424112,Sedan,Sedan,,, +06/04/2021,19:10,QUEENS,11691,40.599503,-73.754074,"(40.599503, -73.754074)",BROOKHAVEN AVENUE,BEACH 20 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424738,Sedan,,,, +06/05/2021,14:30,MANHATTAN,10009,40.722282,-73.98018,"(40.722282, -73.98018)",AVENUE C,EAST 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424169,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/29/2021,0:00,QUEENS,11102,40.77188,-73.91984,"(40.77188, -73.91984)",,,27-24 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4424697,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/05/2021,13:56,,,40.76235,-73.778984,"(40.76235, -73.778984)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423602,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,12:15,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423647,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,15:15,,,40.67689,-73.900055,"(40.67689, -73.900055)",JAMAICA AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424375,Sedan,Box Truck,,, +06/05/2021,11:40,BROOKLYN,11208,40.676003,-73.86783,"(40.676003, -73.86783)",,,2830 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:54,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423671,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,3:45,MANHATTAN,10003,40.739086,-73.99139,"(40.739086, -73.99139)",WEST 19 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423824,Taxi,,,, +06/05/2021,4:00,BROOKLYN,11207,40.668747,-73.89938,"(40.668747, -73.89938)",,,532 SUTTER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424367,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,18:16,BROOKLYN,11207,40.6698,-73.901115,"(40.6698, -73.901115)",SNEDIKER AVENUE,BELMONT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424343,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,15:30,QUEENS,11369,40.76803,-73.87722,"(40.76803, -73.87722)",23 AVENUE,93 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unsafe Lane Changing,,,,4423611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,16:09,,,40.795467,-73.94605,"(40.795467, -73.94605)",PARK AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4424715,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,21:50,BRONX,10467,40.872116,-73.88048,"(40.872116, -73.88048)",EAST MOSHOLU PARKWAY NORTH,PERRY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423687,Sedan,,,, +05/20/2021,15:50,,,40.706573,-73.922874,"(40.706573, -73.922874)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424653,Sedan,,,, +06/05/2021,2:01,,,40.809048,-73.92856,"(40.809048, -73.92856)",LINCOLN AVENUE,EAST 135 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4423586,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,23:02,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",73 AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424629,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,18:50,,,40.599052,-73.99808,"(40.599052, -73.99808)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423664,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,10:35,MANHATTAN,10029,40.790623,-73.942444,"(40.790623, -73.942444)",2 AVENUE,EAST 106 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424459,Sedan,Sedan,,, +06/05/2021,15:20,QUEENS,11412,40.69247,-73.75942,"(40.69247, -73.75942)",192 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423953,Sedan,Sedan,,, +06/05/2021,6:30,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Reaction to Uninvolved Vehicle,,,,4423656,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,8:03,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",EAST 42 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522298,Sedan,Bus,,, +06/04/2021,21:34,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424313,Sedan,Sedan,,, +04/24/2022,8:54,MANHATTAN,10014,40.72877,-74.007095,"(40.72877, -74.007095)",HUDSON STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,Unspecified,,4521974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/05/2021,13:22,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4424139,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +06/02/2021,21:26,,,40.717834,-73.95773,"(40.717834, -73.95773)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4424543,Pick-up Truck,Bike,,, +06/05/2021,8:30,QUEENS,11378,40.72628,-73.89476,"(40.72628, -73.89476)",,,69-13 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423718,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,10:42,MANHATTAN,10002,40.715553,-73.98976,"(40.715553, -73.98976)",ESSEX STREET,HESTER STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Traffic Control Disregarded,,,,4424047,Sedan,Bike,,, +06/05/2021,9:30,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4424160,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/04/2021,8:00,QUEENS,11102,40.772163,-73.92223,"(40.772163, -73.92223)",,,25-44 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424705,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,19:20,BROOKLYN,11203,40.652855,-73.945915,"(40.652855, -73.945915)",EAST 34 STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424079,Sedan,Sedan,,, +06/05/2021,13:19,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Other Vehicular,Unspecified,Unspecified,Unspecified,4423806,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/05/2021,3:30,MANHATTAN,10019,40.765675,-73.98447,"(40.765675, -73.98447)",,,310 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:30,,,40.667923,-73.861465,"(40.667923, -73.861465)",FORBELL STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424358,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,17:34,,,40.794178,-73.94487,"(40.794178, -73.94487)",EAST 109 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424723,Sedan,Motorscooter,,, +06/05/2021,16:51,BROOKLYN,11212,40.669403,-73.912605,"(40.669403, -73.912605)",PITKIN AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423710,Sedan,Sedan,,, +06/05/2021,7:30,BROOKLYN,11205,40.693996,-73.96701,"(40.693996, -73.96701)",,,163 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424613,Sedan,,,, +06/05/2021,16:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4424304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,23:01,BRONX,10472,40.82692,-73.87199,"(40.82692, -73.87199)",SOUND VIEW AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424571,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,21:25,BROOKLYN,11204,40.613388,-73.995995,"(40.613388, -73.995995)",BAY RIDGE PARKWAY,18 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423692,Sedan,,,, +06/05/2021,10:35,QUEENS,11369,40.77023,-73.87066,"(40.77023, -73.87066)",,,100-30 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423563,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,18:34,BROOKLYN,11207,40.667725,-73.89189,"(40.667725, -73.89189)",,,442 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424328,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,4:15,STATEN ISLAND,10308,40.563774,-74.15586,"(40.563774, -74.15586)",ARTHUR KILL ROAD,GIFFORDS LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424466,Sedan,,,, +06/05/2021,12:00,BROOKLYN,11229,40.596756,-73.93342,"(40.596756, -73.93342)",AVENUE W,KNAPP STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4423638,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,22:15,BRONX,10465,40.81921,-73.82182,"(40.81921, -73.82182)",,,2785 SAMPSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423755,Sedan,,,, +06/04/2021,10:30,MANHATTAN,10027,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424433,Sedan,Sedan,,, +06/04/2021,18:30,BROOKLYN,11208,40.682724,-73.88539,"(40.682724, -73.88539)",ELTON STREET,RIDGEWOOD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424355,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,2:20,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424223,Sedan,Sedan,,, +06/02/2021,19:30,,,40.693413,-73.940125,"(40.693413, -73.940125)",PULASKI STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:50,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,Unspecified,,,4424584,Motorcycle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,19:20,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,9:25,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Fatigued/Drowsy,Unspecified,,,4424474,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/05/2021,10:00,,,40.734264,-73.84444,"(40.734264, -73.84444)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423936,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,8:00,QUEENS,11370,40.758747,-73.88312,"(40.758747, -73.88312)",,,31-48 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424245,Sedan,,,, +06/05/2021,18:02,,,40.739082,-73.81611,"(40.739082, -73.81611)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,13:55,BRONX,10472,40.830734,-73.88212,"(40.830734, -73.88212)",,,1274 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424321,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,1:29,,,40.677032,-73.87867,"(40.677032, -73.87867)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4424335,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,3:40,QUEENS,11373,40.747517,-73.88044,"(40.747517, -73.88044)",,,40-39 FORLEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,14:30,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,0:47,MANHATTAN,10001,40.7491,-73.99201,"(40.7491, -73.99201)",WEST 31 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423780,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/04/2021,20:40,QUEENS,11434,40.67665,-73.780655,"(40.67665, -73.780655)",128 AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424489,Sedan,Sedan,,, +06/05/2021,11:15,STATEN ISLAND,10304,40.63089,-74.08202,"(40.63089, -74.08202)",CEBRA AVENUE,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423917,Sedan,,,, +06/05/2021,1:45,,,40.826523,-73.93116,"(40.826523, -73.93116)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424690,Sedan,Sedan,,, +06/05/2021,0:00,,,40.65923,-73.89329,"(40.65923, -73.89329)",GEORGIA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424364,Sedan,Sedan,,, +06/04/2021,14:55,QUEENS,11414,40.663654,-73.84488,"(40.663654, -73.84488)",89 STREET,156 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,20:58,BROOKLYN,11207,40.6866,-73.904976,"(40.6866, -73.904976)",PILLING STREET,CENTRAL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424656,Sedan,Sedan,,, +06/04/2021,18:10,,,40.608543,-74.08886,"(40.608543, -74.08886)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4424442,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:56,,,40.8612,-73.93497,"(40.8612, -73.93497)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4423930,Sedan,,,, +06/05/2021,15:30,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424418,Sedan,Sedan,,, +06/04/2021,12:30,,,40.707573,-73.8362,"(40.707573, -73.8362)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424294,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,8:43,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423556,Station Wagon/Sport Utility Vehicle,PK,,, +06/04/2021,15:00,BROOKLYN,11239,40.652397,-73.88374,"(40.652397, -73.88374)",,,175 ARDSLEY LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424351,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,17:00,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4424323,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/05/2021,10:00,BROOKLYN,11233,40.679234,-73.911026,"(40.679234, -73.911026)",,,107 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423709,Sedan,,,, +06/05/2021,8:20,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,Unspecified,4424068,Pick-up Truck,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/05/2021,18:57,BROOKLYN,11221,40.69102,-73.93496,"(40.69102, -73.93496)",,,303 VAN BUREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4424052,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/05/2021,16:05,,,40.74886,-73.93755,"(40.74886, -73.93755)",JACKSON AVENUE,QUEENS PLAZA SOUTH,,1,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4423682,Taxi,E-Bike,,, +05/28/2021,1:45,QUEENS,11413,40.673344,-73.75362,"(40.673344, -73.75362)",CARSON STREET,219 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424600,Sedan,,,, +06/02/2021,20:00,BROOKLYN,11208,40.69103,-73.86882,"(40.69103, -73.86882)",,,990 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424339,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,20:38,QUEENS,11411,40.697525,-73.746826,"(40.697525, -73.746826)",116 AVENUE,FRANCIS LEWIS BOULEVARD,,3,0,0,0,0,0,3,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4424236,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,23:39,BRONX,10468,40.868282,-73.90107,"(40.868282, -73.90107)",UNIVERSITY AVENUE,WEST KINGSBRIDGE ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423799,,,,, +06/04/2021,22:35,BROOKLYN,11211,40.716682,-73.957344,"(40.716682, -73.957344)",,,179 NORTH 6 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424511,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/05/2021,16:48,MANHATTAN,10003,40.728027,-73.98631,"(40.728027, -73.98631)",,,65 SAINT MARKS PLACE,1,0,0,0,1,0,0,0,Passenger Distraction,Passing Too Closely,,,,4423849,Taxi,Bike,,, +05/31/2021,6:30,QUEENS,11435,40.696995,-73.80647,"(40.696995, -73.80647)",,,145-03 97 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424549,Sedan,,,, +06/05/2021,19:12,BROOKLYN,11235,40.594524,-73.93401,"(40.594524, -73.93401)",AVENUE X,BRIGHAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424177,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,22:30,QUEENS,11434,40.68999,-73.78327,"(40.68999, -73.78327)",LINDEN BOULEVARD,166 STREET,,5,0,0,0,0,0,5,0,Turning Improperly,Unspecified,,,,4423954,Sedan,Sedan,,, +06/05/2021,2:00,QUEENS,11420,40.674587,-73.80394,"(40.674587, -73.80394)",,,134-01 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423655,Sedan,Sedan,,, +06/05/2021,15:25,BRONX,10468,40.865345,-73.90849,"(40.865345, -73.90849)",SEDGWICK AVENUE,BAILEY AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4423676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,19:30,,,40.803123,-73.94045,"(40.803123, -73.94045)",EAST 122 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424395,Station Wagon/Sport Utility Vehicle,Convertible,,, +06/05/2021,12:26,MANHATTAN,10022,40.7606,-73.96434,"(40.7606, -73.96434)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423594,Sedan,Sedan,,, +06/05/2021,7:18,,,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4424368,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,22:20,BROOKLYN,11204,40.618927,-73.98524,"(40.618927, -73.98524)",,,1946 62 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423998,Sedan,Sedan,,, +06/04/2021,14:50,,,,,,seagirt blvd,beach 9 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424716,Sedan,Sedan,,, +06/05/2021,18:30,,,,,,SHORE ROAD,BARTOW CIRCLE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423749,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,12:22,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424478,Sedan,,,, +05/29/2021,23:50,QUEENS,11105,40.769737,-73.90988,"(40.769737, -73.90988)",,,23-64 STEINWAY STREET,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4424709,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/04/2021,20:00,MANHATTAN,10029,40.79814,-73.94051,"(40.79814, -73.94051)",,,186 EAST 116 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424347,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,21:50,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424453,Sedan,Sedan,,, +06/05/2021,2:35,QUEENS,11419,40.684258,-73.82216,"(40.684258, -73.82216)",,,107-47 120 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4423657,Pick-up Truck,Sedan,Sedan,, +06/05/2021,8:30,QUEENS,11101,40.74413,-73.927055,"(40.74413, -73.927055)",QUEENS BOULEVARD,38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,15:46,BRONX,10458,40.857933,-73.892876,"(40.857933, -73.892876)",,,4646 PARK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passenger Distraction,,,,4424204,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,10:55,,,40.6228,-74.16527,"(40.6228, -74.16527)",LISK AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424118,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,1:20,BROOKLYN,11237,40.6975,-73.90952,"(40.6975, -73.90952)",PUTNAM AVENUE,RIDGEWOOD PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4424144,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/03/2021,18:10,QUEENS,11413,40.686783,-73.75214,"(40.686783, -73.75214)",122 AVENUE,196 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4424490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,4:10,BROOKLYN,11236,40.640373,-73.89702,"(40.640373, -73.89702)",ROCKAWAY PARKWAY,AVENUE K,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4423590,Sedan,,,, +06/01/2021,18:40,BROOKLYN,11210,40.638966,-73.94251,"(40.638966, -73.94251)",FOSTER AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4424591,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,12:35,BROOKLYN,11210,40.619186,-73.9493,"(40.619186, -73.9493)",AVENUE M,EAST 26 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423859,Motorcycle,Sedan,,, +06/02/2021,1:26,QUEENS,11373,40.74374,-73.88459,"(40.74374, -73.88459)",,,80-19 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424506,Sedan,Bike,,, +06/05/2021,18:05,,,40.699512,-73.81461,"(40.699512, -73.81461)",VANWYCK EXPRESSWAY,91 AVENUE,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,,,,,4424554,Van,,,, +06/05/2021,4:00,,,40.688553,-73.962845,"(40.688553, -73.962845)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4423620,Sedan,Sedan,Pick-up Truck,Sedan, +06/01/2021,20:00,BROOKLYN,11233,40.68457,-73.91919,"(40.68457, -73.91919)",,,788 MACON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424501,Sedan,,,, +06/05/2021,3:30,QUEENS,11368,40.745525,-73.86282,"(40.745525, -73.86282)",,,101-15 46 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424031,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,18:17,,,40.815266,-73.859726,"(40.815266, -73.859726)",LACOMBE AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423688,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,19:22,,,40.638657,-74.1433,"(40.638657, -74.1433)",NEWARK AVENUE,RICHMOND TERRACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424111,Sedan,USPS MAILT,,, +06/05/2021,17:50,STATEN ISLAND,10301,40.641758,-74.08014,"(40.641758, -74.08014)",,,50 FORT PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424642,Sedan,,,, +05/27/2021,17:30,MANHATTAN,10029,40.792244,-73.94629,"(40.792244, -73.94629)",EAST 106 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424460,Pick-up Truck,,,, +06/05/2021,14:33,,,40.76729,-73.96661,"(40.76729, -73.96661)",EAST 66 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423949,Sedan,Sedan,,, +06/05/2021,7:00,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4423645,Sedan,Sedan,,, +06/05/2021,15:10,BRONX,10472,40.827423,-73.86823,"(40.827423, -73.86823)",WATSON AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4424334,,,,, +06/04/2021,0:27,QUEENS,11421,40.689198,-73.852325,"(40.689198, -73.852325)",91 AVENUE,91 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424305,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,23:31,BRONX,10457,40.841873,-73.90195,"(40.841873, -73.90195)",,,449 EAST 173 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423756,Sedan,,,, +06/01/2021,19:05,MANHATTAN,10002,40.718204,-73.98838,"(40.718204, -73.98838)",,,88 ESSEX STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424573,Sedan,,,, +06/05/2021,16:30,QUEENS,11428,0,0,"(0.0, 0.0)",HOLLIS COURT BOULEVARD,91 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423719,Sedan,,,, +06/04/2021,17:50,MANHATTAN,10036,40.763123,-73.99666,"(40.763123, -73.99666)",,,617 11 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424277,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,8:10,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4423768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/08/2021,21:35,QUEENS,11434,40.687046,-73.792114,"(40.687046, -73.792114)",155 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424586,Sedan,Sedan,,, +06/05/2021,13:52,STATEN ISLAND,10306,40.58124,-74.09845,"(40.58124, -74.09845)",HYLAN BOULEVARD,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4424467,Sedan,Sedan,,, +06/05/2021,16:31,,,40.79539,-73.97707,"(40.79539, -73.97707)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4423639,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,23:00,STATEN ISLAND,10304,40.632187,-74.08576,"(40.632187, -74.08576)",,,125 CLARK LANE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4424439,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/05/2021,4:20,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,1:01,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423585,Sedan,E-Scooter,,, +06/03/2021,15:52,BROOKLYN,11207,40.679466,-73.90037,"(40.679466, -73.90037)",,,1700 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424342,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,3:30,BROOKLYN,11206,40.69798,-73.93704,"(40.69798, -73.93704)",,,896 BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4424046,Sedan,,,, +06/04/2021,21:13,BROOKLYN,11249,40.721733,-73.95806,"(40.721733, -73.95806)",WYTHE AVENUE,NORTH 11 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4424544,Sedan,Bike,,, +06/05/2021,17:18,BROOKLYN,11207,40.686844,-73.90945,"(40.686844, -73.90945)",DECATUR STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:50,BROOKLYN,11231,40.676834,-74.0108,"(40.676834, -74.0108)",SULLIVAN STREET,RICHARDS STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4424157,Sedan,Motorcycle,,, +06/05/2021,18:30,QUEENS,11364,40.74061,-73.75898,"(40.74061, -73.75898)",,,215-08 73 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423665,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:51,QUEENS,11423,40.72921,-73.781166,"(40.72921, -73.781166)",188 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423807,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,21:30,MANHATTAN,10029,40.78775,-73.947464,"(40.78775, -73.947464)",EAST 100 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424695,,,,, +06/05/2021,20:49,BROOKLYN,11203,40.647114,-73.92695,"(40.647114, -73.92695)",,,517 EAST 53 STREET,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,4424078,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/05/2021,12:35,MANHATTAN,10075,40.77139,-73.95044,"(40.77139, -73.95044)",EAST 79 STREET,YORK AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423935,Sedan,Bike,,, +05/21/2021,8:07,MANHATTAN,10029,40.786175,-73.9457,"(40.786175, -73.9457)",2 AVENUE,EAST 99 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4424722,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/05/2021,6:10,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4423604,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,0:06,BRONX,10468,40.861416,-73.912224,"(40.861416, -73.912224)",,,2254 CEDAR AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4423575,Sedan,Sedan,,, +06/05/2021,16:00,BROOKLYN,11214,40.61107,-74.00131,"(40.61107, -74.00131)",81 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423691,Sedan,Sedan,,, +06/05/2021,13:06,BROOKLYN,11208,40.68767,-73.870285,"(40.68767, -73.870285)",ETNA STREET,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424386,Box Truck,Box Truck,,, +06/05/2021,14:24,MANHATTAN,10010,40.737545,-73.98409,"(40.737545, -73.98409)",3 AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423825,Van,Box Truck,,, +06/05/2021,2:32,BRONX,10459,40.820057,-73.90086,"(40.820057, -73.90086)",WESTCHESTER AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423670,Tractor Truck Diesel,,,, +06/04/2021,16:52,QUEENS,11693,40.606304,-73.819565,"(40.606304, -73.819565)",,,911 CROSS BAY BOULEVARD,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4424615,Sedan,Box Truck,Sedan,, +06/05/2021,8:55,,,40.81662,-73.86571,"(40.81662, -73.86571)",RANDALL AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424311,Sedan,Sedan,,, +06/02/2021,18:30,,,40.68022,-73.87121,"(40.68022, -73.87121)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4424329,Sedan,Sedan,,, +06/05/2021,17:20,,,,,,HARLEM RIVER DRIVEWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424222,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,19:00,BROOKLYN,11207,40.669228,-73.8962,"(40.669228, -73.8962)",SUTTER AVENUE,SHEFFIELD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424356,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,17:47,BROOKLYN,11214,40.59758,-73.99594,"(40.59758, -73.99594)",BAY 32 STREET,BATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424633,Sedan,Sedan,,, +06/05/2021,22:00,MANHATTAN,10035,40.796772,-73.934845,"(40.796772, -73.934845)",,,2276 1 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424525,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,16:51,BROOKLYN,11212,40.66548,-73.913574,"(40.66548, -73.913574)",,,207 AMBOY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4423711,Sedan,,,, +06/05/2021,14:05,BRONX,10460,40.845203,-73.88675,"(40.845203, -73.88675)",EAST 179 STREET,MAPES AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4424252,Sedan,Sedan,,, +06/05/2021,17:58,BROOKLYN,11208,40.670998,-73.862236,"(40.670998, -73.862236)",FORBELL STREET,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4424376,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,9:25,BROOKLYN,11207,0,0,"(0.0, 0.0)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4521543,Sedan,,,, +06/05/2021,19:50,QUEENS,11385,40.7056,-73.85822,"(40.7056, -73.85822)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424012,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,7:43,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4424428,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,8:30,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4424461,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +05/31/2021,14:53,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4424710,Sedan,Sedan,,, +06/05/2021,16:30,,,40.827595,-73.85004,"(40.827595, -73.85004)",CASTLE HILL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,14:30,,,40.718678,-73.9405,"(40.718678, -73.9405)",KINGSLAND AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424071,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,8:55,BROOKLYN,11207,40.66322,-73.893654,"(40.66322, -73.893654)",RIVERDALE AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424346,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,10:15,BRONX,10462,40.85661,-73.86826,"(40.85661, -73.86826)",,,650 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423957,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,16:31,QUEENS,11416,40.68498,-73.85026,"(40.68498, -73.85026)",91 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423619,2 dr sedan,,,, +06/05/2021,13:30,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423658,Sedan,Sedan,,, +06/04/2021,18:42,MANHATTAN,10029,40.792927,-73.94791,"(40.792927, -73.94791)",EAST 106 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Brakes Defective,Unspecified,,,4424704,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,12:15,,,,,,,,66 WEST DRIVE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4424167,E-Bike,Bike,,, +06/05/2021,11:50,BROOKLYN,11237,40.698837,-73.91407,"(40.698837, -73.91407)",LINDEN STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4424146,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,11:45,BROOKLYN,11228,40.6266,-74.010185,"(40.6266, -74.010185)",,,1037 70 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4423596,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,22:30,MANHATTAN,10006,40.70808,-74.01445,"(40.70808, -74.01445)",,,90 WASHINGTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424734,Sedan,Sedan,,, +06/04/2021,17:00,BROOKLYN,11207,40.676594,-73.89038,"(40.676594, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424357,Station Wagon/Sport Utility Vehicle,,,, +04/05/2021,19:02,,,40.669704,-73.94774,"(40.669704, -73.94774)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424599,,,,, +06/04/2021,8:15,,,40.613243,-74.155304,"(40.613243, -74.155304)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424441,Sedan,Sedan,,, +06/05/2021,19:55,QUEENS,11372,40.75334,-73.888626,"(40.75334, -73.888626)",,,78-10 34 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424239,E-Bike,,,, +06/02/2021,23:07,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4424477,Motorcycle,,,, +06/05/2021,19:00,BROOKLYN,11235,40.57563,-73.96395,"(40.57563, -73.96395)",BRIGHTWATER COURT,BRIGHTON 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423778,Sedan,,,, +06/05/2021,8:45,,,40.835194,-73.874054,"(40.835194, -73.874054)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4424320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/02/2021,10:10,,,,,,jamaica avenue,jackie robinson parkway,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424325,PK,Sedan,,, +06/05/2021,1:36,MANHATTAN,10025,40.79802,-73.971855,"(40.79802, -73.971855)",,,318 WEST 100 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4423558,Taxi,,,, +06/05/2021,18:58,MANHATTAN,10029,40.800186,-73.94681,"(40.800186, -73.94681)",,,1405 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424394,Sedan,,,, +06/05/2021,1:51,BRONX,10469,40.86751,-73.83567,"(40.86751, -73.83567)",BARTOW AVENUE,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/05/2021,12:15,,,40.67043,-73.928185,"(40.67043, -73.928185)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423931,Sedan,Sedan,,, +06/04/2021,12:37,BROOKLYN,11233,40.681744,-73.937294,"(40.681744, -73.937294)",,,224 MACDONOUGH STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424509,Sedan,Sedan,,, +06/04/2021,15:15,BROOKLYN,11208,40.679443,-73.87101,"(40.679443, -73.87101)",,,381 CRESCENT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4424352,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,21:47,QUEENS,11423,40.712727,-73.77666,"(40.712727, -73.77666)",184 PLACE,89 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4424553,Sedan,,,, +06/05/2021,10:10,,,40.659756,-73.90628,"(40.659756, -73.90628)",NEWPORT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423706,Sedan,Sedan,,, +06/05/2021,11:34,BRONX,10452,40.84177,-73.92549,"(40.84177, -73.92549)",MERRIAM AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424179,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,2:30,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424694,Sedan,Sedan,,, +06/05/2021,7:00,BRONX,10462,,,,,,2425 WATERBURY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423747,Sedan,,,, +06/05/2021,10:20,BROOKLYN,11207,40.655132,-73.88917,"(40.655132, -73.88917)",WORTMAN AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424372,Tractor Truck Diesel,Sedan,,, +05/31/2021,2:04,,,40.788994,-73.94656,"(40.788994, -73.94656)",EAST 102 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4424718,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/31/2021,10:35,QUEENS,11372,40.75507,-73.89002,"(40.75507, -73.89002)",NORTHERN BOULEVARD,77 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424666,Box Truck,,,, +06/01/2021,0:25,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,Other Vehicular,,,4424492,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/05/2021,21:50,STATEN ISLAND,10301,40.62932,-74.08801,"(40.62932, -74.08801)",,,79 HOWARD AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,,4423918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/05/2021,19:05,,,40.659718,-73.94534,"(40.659718, -73.94534)",BROOKLYN AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4423654,E-Bike,,,, +06/05/2021,20:22,MANHATTAN,10002,40.7186,-73.977516,"(40.7186, -73.977516)",,,95 BARUCH DRIVE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424054,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,19:28,BRONX,10472,40.84827,-73.88312,"(40.84827, -73.88312)",SOUTHERN BOULEVARD,EAST 182 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4424205,Sedan,Sedan,,, +06/05/2021,21:27,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,17:30,,,40.762386,-73.742935,"(40.762386, -73.742935)",DOUGLASTON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423675,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,20:51,,,40.636124,-74.13811,"(40.636124, -74.13811)",,,1637 CASTLETON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424121,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,0:25,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424363,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,16:30,BROOKLYN,11203,40.648598,-73.923256,"(40.648598, -73.923256)",EAST 57 STREET,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424590,Sedan,Sedan,,, +06/05/2021,21:25,,,40.769684,-73.82165,"(40.769684, -73.82165)",146 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4423729,Sedan,Sedan,,, +06/05/2021,0:15,,,40.65907,-73.98597,"(40.65907, -73.98597)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,6:20,BROOKLYN,11208,40.67254,-73.87754,"(40.67254, -73.87754)",,,259 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424338,Sedan,,,, +06/04/2021,0:47,,,40.684258,-73.84604,"(40.684258, -73.84604)",101 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424295,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/05/2021,22:50,STATEN ISLAND,10305,40.58509,-74.09644,"(40.58509, -74.09644)",NAUGHTON AVENUE,VERA STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424471,Sedan,Sedan,,, +06/05/2021,16:10,MANHATTAN,10036,40.7603,-73.99499,"(40.7603, -73.99499)",WEST 43 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4424504,Sedan,E-Bike,,, +06/05/2021,15:15,,,40.727287,-73.993645,"(40.727287, -73.993645)",GREAT JONES STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423848,,,,, +06/05/2021,6:31,BROOKLYN,11234,40.61312,-73.91745,"(40.61312, -73.91745)",,,5700 AVENUE U,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4424548,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,10:50,BROOKLYN,11233,40.672497,-73.91686,"(40.672497, -73.91686)",SARATOGA AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4423712,Sedan,,,, +06/02/2021,15:15,,,40.742863,-74.003975,"(40.742863, -74.003975)",WEST 17 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4424450,Sedan,Pick-up Truck,,, +06/05/2021,16:04,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4424258,Taxi,Sedan,,, +06/05/2021,23:55,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",SUTTER AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424281,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/28/2021,9:00,BROOKLYN,11233,40.679817,-73.90843,"(40.679817, -73.90843)",STONE AVENUE,HULL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Backing Unsafely,,,,4424577,Sedan,Sedan,,, +06/05/2021,19:40,BRONX,10466,40.8947,-73.84721,"(40.8947, -73.84721)",ELY AVENUE,BUSSING AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4424307,Sedan,Sedan,Sedan,, +06/05/2021,4:15,BRONX,10460,40.833824,-73.895744,"(40.833824, -73.895744)",,,1441 BOSTON ROAD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4423757,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/24/2022,19:23,,,,,,TOTTEN ROAD,CROSS ISLAND PARKWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4521629,Sedan,Sedan,,, +12/25/2021,13:05,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491186,Sedan,Sedan,,, +04/23/2022,17:05,,,40.84908,-73.90946,"(40.84908, -73.90946)",MOUNT HOPE PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522160,Sedan,Van,,, +04/20/2022,18:00,QUEENS,11368,0,0,"(0.0, 0.0)",,,34-77 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522147,Sedan,,,, +04/24/2022,5:45,QUEENS,11378,40.723537,-73.90447,"(40.723537, -73.90447)",,,56-57 61 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4521507,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/20/2022,17:00,,,40.734314,-73.93803,"(40.734314, -73.93803)",REVIEW AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522323,Sedan,Sedan,,, +04/23/2022,22:50,,,40.74705,-73.82906,"(40.74705, -73.82906)",57 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4522190,Sedan,,,, +04/24/2022,14:30,BRONX,10453,40.85809,-73.901924,"(40.85809, -73.901924)",MORRIS AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521786,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,16:00,MANHATTAN,10026,40.803745,-73.95587,"(40.803745, -73.95587)",8 AVENUE,WEST 115 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522246,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,19:10,BRONX,10463,40.879074,-73.907265,"(40.879074, -73.907265)",,,3052 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4522251,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,1:16,MANHATTAN,10001,40.749073,-73.99946,"(40.749073, -73.99946)",WEST 27 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4521413,Sedan,Sedan,,, +04/20/2022,15:50,,,40.734993,-73.83644,"(40.734993, -73.83644)",VAN WYCK EXPWY,,,5,0,0,0,0,0,5,0,View Obstructed/Limited,Unspecified,Unspecified,,,4522389,Pick-up Truck,Sedan,Sedan,, +04/24/2022,6:10,BROOKLYN,11236,0,0,"(0.0, 0.0)",FARRAGUT ROAD,EAST 83 STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4521855,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,0:19,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Obstruction/Debris,Tow Hitch Defective,,,,4521913,Station Wagon/Sport Utility Vehicle,RV,,, +04/24/2022,20:04,,,40.809364,-73.96797,"(40.809364, -73.96797)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522310,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,2:40,QUEENS,11414,40.66445,-73.83347,"(40.66445, -73.83347)",,,155-43 101 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4521709,Sedan,Sedan,,, +04/14/2022,15:00,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,14:30,BRONX,10453,40.849964,-73.91416,"(40.849964, -73.91416)",HARRISON AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4521752,Sedan,Sedan,,, +04/10/2022,1:15,MANHATTAN,10014,40.729824,-74.010605,"(40.729824, -74.010605)",WEST STREET,CLARKSON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4522356,Sedan,,,, +04/24/2022,23:59,MANHATTAN,10019,0,0,"(0.0, 0.0)",8 AVENUE,WEST 50 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4521872,Sedan,,,, +04/24/2022,18:25,,,,,,CHRYSTIE STREET,MANHATTAN BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,20:00,BROOKLYN,11207,40.660564,-73.89212,"(40.660564, -73.89212)",,,695 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491255,Sedan,Sedan,,, +07/02/2022,7:00,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543425,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,7:21,,,40.74706,-73.929344,"(40.74706, -73.929344)",HONEYWELL STREET,,,0,1,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466536,Pick-up Truck,E-Bike,,, +06/19/2022,20:03,BROOKLYN,11249,40.71286,-73.96579,"(40.71286, -73.96579)",WYTHE AVENUE,SOUTH 4 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4538934,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,11:30,MANHATTAN,10018,40.75066,-73.987785,"(40.75066, -73.987785)",WEST 35 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543463,Sedan,,,, +06/23/2022,12:42,BRONX,10468,40.868404,-73.90152,"(40.868404, -73.90152)",,,103 WEST KINGSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,12:40,,,,,,BROOKLYN QNS EXPRESSWAY,CARROLL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,19:26,MANHATTAN,10004,40.704548,-74.0143,"(40.704548, -74.0143)",BATTERY PLACE,STATE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543459,Station Wagon/Sport Utility Vehicle,Bus,,, +06/21/2022,17:44,,,40.74357,-73.83772,"(40.74357, -73.83772)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4543465,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/30/2022,12:25,,,40.70722,-74.00747,"(40.70722, -74.00747)",MAIDEN LANE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543460,Sedan,Sedan,,, +06/29/2022,0:07,MANHATTAN,10001,40.750294,-73.99485,"(40.750294, -73.99485)",8 AVENUE,WEST 31 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543462,Taxi,,,, +07/04/2022,19:48,BROOKLYN,11208,40.686935,-73.87323,"(40.686935, -73.87323)",CRESCENT STREET,ETNA STREET,,3,0,0,0,0,0,3,0,Lane Marking Improper/Inadequate,Unspecified,,,,4546144,Sedan,Sedan,,, +07/12/2022,14:20,,,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545891,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,9:57,QUEENS,11365,40.742912,-73.79463,"(40.742912, -73.79463)",56 AVENUE,175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4546210,Sedan,,,, +07/10/2022,10:47,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4546222,Sedan,Sedan,,, +07/12/2022,4:33,,,40.698105,-73.93371,"(40.698105, -73.93371)",BUSHWICK AVENUE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4545490,Sedan,Sedan,Commercial,, +07/12/2022,22:02,BRONX,10454,40.806812,-73.9175,"(40.806812, -73.9175)",EAST 138 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4545987,Station Wagon/Sport Utility Vehicle,Moped,,, +07/09/2022,10:45,BRONX,10453,40.852215,-73.90761,"(40.852215, -73.90761)",EAST 179 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4546015,Sedan,,,, +07/12/2022,16:00,MANHATTAN,10029,40.79094,-73.947235,"(40.79094, -73.947235)",LEXINGTON AVENUE,EAST 104 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4545776,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,15:58,BROOKLYN,11208,40.678635,-73.885284,"(40.678635, -73.885284)",,,265 CLEVELAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4546103,Sedan,,,, +07/12/2022,15:30,,,40.82101,-73.93436,"(40.82101, -73.93436)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2022,20:20,MANHATTAN,10037,40.81366,-73.9412,"(40.81366, -73.9412)",,,485 LENOX AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4545997,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,12:26,BROOKLYN,11234,,,,Nostrand ave,Marine pkwy,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4545715,Station Wagon/Sport Utility Vehicle,Sedan,E-Scooter,, +09/11/2021,21:00,BRONX,10470,40.89999,-73.85301,"(40.89999, -73.85301)",WHITE PLAINS ROAD,EAST 239 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4456455,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,8:45,BROOKLYN,11229,40.610947,-73.953606,"(40.610947, -73.953606)",AVENUE P,OCEAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4462213,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +10/04/2021,13:30,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464061,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,12:24,,,,,,LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4465040,Sedan,Box Truck,,, +12/11/2021,20:00,,,40.853844,-73.91592,"(40.853844, -73.91592)",BILLINGSLY TERRACE,PHELAN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486073,Sedan,,,, +12/11/2021,17:30,STATEN ISLAND,10308,40.556843,-74.15492,"(40.556843, -74.15492)",LEVERETT AVENUE,ELVERTON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4485455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,0:00,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",65 PLACE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485367,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,23:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485945,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,10:44,BROOKLYN,11234,40.625893,-73.92661,"(40.625893, -73.92661)",AVENUE K,EAST 51 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4485650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,0:00,,,40.67582,-73.930466,"(40.67582, -73.930466)",DEAN STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4485686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/06/2021,17:50,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4486297,Ambulance,Sedan,,, +12/01/2021,18:00,BRONX,10466,40.88897,-73.85893,"(40.88897, -73.85893)",,,716 EAST 227 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,5:45,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",CHURCH AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485814,Taxi,Sedan,,, +12/11/2021,2:20,,,,,,fordham rrd,webster avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485955,Sedan,,,, +12/11/2021,0:10,QUEENS,11413,40.67243,-73.75637,"(40.67243, -73.75637)",140 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4485395,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/11/2021,12:30,,,40.86957,-73.82023,"(40.86957, -73.82023)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485448,Sedan,Sedan,,, +12/11/2021,22:21,BROOKLYN,11236,40.63484,-73.904976,"(40.63484, -73.904976)",AVENUE K,EAST 86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485588,Sedan,,,, +12/10/2021,18:20,BRONX,10473,40.823177,-73.842705,"(40.823177, -73.842705)",,,751 ZEREGA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4486116,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,22:38,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,7:42,BROOKLYN,11208,40.669804,-73.88155,"(40.669804, -73.88155)",BLAKE AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,10:25,BRONX,10451,40.822838,-73.928764,"(40.822838, -73.928764)",RIVER AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486123,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,23:20,BROOKLYN,11205,40.697186,-73.96864,"(40.697186, -73.96864)",,,16 WAVERLY AVENUE,1,0,1,0,0,0,0,0,,,,,,4485468,Sedan,,,, +12/09/2021,23:00,BROOKLYN,11204,40.616833,-73.98802,"(40.616833, -73.98802)",,,1922 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486172,Sedan,,,, +12/11/2021,21:00,BROOKLYN,11224,40.576706,-73.972824,"(40.576706, -73.972824)",WEST 5 STREET,WEST BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485541,Sedan,,,, +12/08/2021,12:15,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4486084,Taxi,,,, +12/11/2021,21:50,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486009,Sedan,Sedan,,, +12/11/2021,16:55,,,40.687992,-73.98962,"(40.687992, -73.98962)",SMITH STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4485838,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,13:33,BROOKLYN,11225,40.657696,-73.96236,"(40.657696, -73.96236)",,,150 OCEAN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4464449,Sedan,,,, +10/05/2021,23:50,MANHATTAN,10001,40.749878,-73.995766,"(40.749878, -73.995766)",,,303 WEST 30 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,10:05,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4464508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464954,2 dr sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,21:30,BROOKLYN,11211,40.711834,-73.95215,"(40.711834, -73.95215)",,,156 HOPE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464909,Sedan,Sedan,,, +10/05/2021,1:30,,,40.889183,-73.88906,"(40.889183, -73.88906)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464182,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,19:50,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4464487,Sedan,Sedan,Taxi,, +10/05/2021,19:45,,,40.606888,-74.170654,"(40.606888, -74.170654)",,,276 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464642,Sedan,Sedan,Sedan,, +10/05/2021,8:45,BROOKLYN,11223,40.601795,-73.97257,"(40.601795, -73.97257)",AVENUE S,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464531,Sedan,Sedan,,, +10/05/2021,11:30,MANHATTAN,10065,40.763042,-73.956535,"(40.763042, -73.956535)",YORK AVENUE,EAST 66 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4464846,Sedan,Bus,,, +10/05/2021,0:00,STATEN ISLAND,10306,40.582756,-74.13041,"(40.582756, -74.13041)",MEISNER AVENUE,ROCKLAND AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Driver Inattention/Distraction,,,,4464281,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,9:50,BROOKLYN,11231,40.67769,-74.00041,"(40.67769, -74.00041)",LUQUER STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4464537,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck +09/30/2021,6:55,,,40.606815,-74.18339,"(40.606815, -74.18339)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464952,Dump,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,6:30,,,40.66925,-73.93944,"(40.66925, -73.93944)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465025,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/05/2021,11:08,,,40.665115,-73.92931,"(40.665115, -73.92931)",CROWN STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464764,Sedan,,,, +10/05/2021,6:07,BRONX,10469,40.859646,-73.86176,"(40.859646, -73.86176)",ASTOR AVENUE,BRONXWOOD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464313,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,9:55,BRONX,10470,40.90252,-73.85114,"(40.90252, -73.85114)",,,4626 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4464420,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,15:30,QUEENS,11373,40.734768,-73.86487,"(40.734768, -73.86487)",,,59-01 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464576,Sedan,TOW TRUCK,,, +10/05/2021,15:47,QUEENS,11434,40.687332,-73.77967,"(40.687332, -73.77967)",116 AVENUE,168 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4464596,Sedan,Sedan,,, +10/05/2021,6:40,BRONX,10467,,,,Dr Theodore Kazimiroff Blvd,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4464656,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,18:10,BROOKLYN,11220,40.641945,-73.99928,"(40.641945, -73.99928)",,,4600 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464692,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,9:30,BROOKLYN,11208,40.68365,-73.87219,"(40.68365, -73.87219)",FULTON STREET,CRESCENT STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4464387,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,8:43,QUEENS,11691,40.602356,-73.75953,"(40.602356, -73.75953)",CORNAGA AVENUE,GIPSON STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464346,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,14:54,QUEENS,11436,40.667908,-73.79474,"(40.667908, -73.79474)",135 AVENUE,145 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,9:28,,,40.717155,-73.94924,"(40.717155, -73.94924)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464369,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,10:00,BROOKLYN,11211,40.713634,-73.94595,"(40.713634, -73.94595)",MANHATTAN AVENUE,DEVOE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464348,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,20:55,MANHATTAN,10040,40.853714,-73.92681,"(40.853714, -73.92681)",AMSTERDAM AVENUE,WEST 190 STREET,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,,,,4464988,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,15:38,,,40.85071,-73.865906,"(40.85071, -73.865906)",BRONXDALE AVENUE,ANTIN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542849,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,7:20,MANHATTAN,10010,40.73722,-73.9814,"(40.73722, -73.9814)",2 AVENUE,EAST 22 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464329,Sedan,E-Bike,,, +10/05/2021,18:00,QUEENS,11413,40.677925,-73.75486,"(40.677925, -73.75486)",SPRINGFIELD BOULEVARD,136 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464688,Sedan,,,, +10/05/2021,21:27,MANHATTAN,10003,40.72618,-73.99128,"(40.72618, -73.99128)",,,5 EAST 3 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4464524,Box Truck,,,, +10/05/2021,19:57,BRONX,10457,40.843643,-73.90676,"(40.843643, -73.90676)",MONROE AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464547,Ambulance,,,, +10/05/2021,18:08,BRONX,10469,40.865314,-73.84911,"(40.865314, -73.84911)",ALLERTON AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464723,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,23:46,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464606,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,14:26,MANHATTAN,10037,40.814053,-73.93484,"(40.814053, -73.93484)",EAST 138 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464697,Bus,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,10:30,,,40.785805,-73.942856,"(40.785805, -73.942856)",EAST 100 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,11:09,BROOKLYN,11204,40.615433,-73.99775,"(40.615433, -73.99775)",17 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4464401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,14:12,,,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,9:17,MANHATTAN,10023,40.77543,-73.98398,"(40.77543, -73.98398)",WEST 67 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465077,Box Truck,Sedan,,, +10/05/2021,23:40,,,,,,EAST 138 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464593,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,5:45,BROOKLYN,11237,40.706573,-73.922874,"(40.706573, -73.922874)",WYCKOFF AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464891,Sedan,,,, +10/02/2021,3:54,MANHATTAN,10128,40.783054,-73.944885,"(40.783054, -73.944885)",,,1855 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465150,Sedan,Dump,,, +10/05/2021,8:45,QUEENS,11385,40.70934,-73.86267,"(40.70934, -73.86267)",,,88-16 RUTLEDGE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4464422,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,8:01,,,40.688698,-73.942085,"(40.688698, -73.942085)",THROOP AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464469,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/04/2021,17:20,,,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465000,,,,, +10/05/2021,15:15,MANHATTAN,10128,40.780064,-73.94705,"(40.780064, -73.94705)",EAST 91 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464845,Box Truck,Sedan,,, +10/05/2021,22:00,MANHATTAN,10036,40.760124,-73.99265,"(40.760124, -73.99265)",,,426 WEST 44 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464625,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,16:35,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464673,Tractor Truck Diesel,Sedan,,, +10/05/2021,21:25,,,40.876534,-73.87076,"(40.876534, -73.87076)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4464823,Station Wagon/Sport Utility Vehicle,,,, +10/03/2021,20:15,,,40.704823,-73.92459,"(40.704823, -73.92459)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464967,Sedan,,,, +10/05/2021,0:00,,,40.7059,-73.963104,"(40.7059, -73.963104)",TAYLOR STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4464515,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,17:57,,,,,,BROOKLYN BATTERY TUNNEL,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4464922,Sedan,Sedan,Sedan,Sedan, +10/05/2021,0:40,,,40.673183,-74.00262,"(40.673183, -74.00262)",LORRAINE STREET,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4464538,Sedan,Bus,,, +10/05/2021,14:49,BRONX,10462,40.852337,-73.86393,"(40.852337, -73.86393)",BARNES AVENUE,BRADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464478,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,18:00,,,40.62332,-73.99713,"(40.62332, -73.99713)",15 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4464587,Sedan,Tractor Truck Diesel,,, +10/05/2021,21:45,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465053,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,15:10,,,40.599827,-74.17823,"(40.599827, -74.17823)",TRAVIS AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464433,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +10/05/2021,20:50,MANHATTAN,10036,40.76224,-73.99186,"(40.76224, -73.99186)",,,454 WEST 47 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464875,Taxi,Bike,,, +10/05/2021,23:14,MANHATTAN,10128,40.78069,-73.9466,"(40.78069, -73.9466)",EAST 92 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4464562,Station Wagon/Sport Utility Vehicle,Bike,,, +10/05/2021,17:23,BROOKLYN,11210,40.62769,-73.935555,"(40.62769, -73.935555)",AVENUE J,EAST 42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464488,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,12:43,BROOKLYN,11226,40.64934,-73.96331,"(40.64934, -73.96331)",,,1720 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464564,Sedan,,,, +10/05/2021,14:15,BROOKLYN,11229,40.608677,-73.94733,"(40.608677, -73.94733)",,,1722 EAST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464532,Sedan,,,, +10/05/2021,14:30,BROOKLYN,11215,40.666134,-73.99224,"(40.666134, -73.99224)",4 AVENUE,16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464944,Tractor Truck Diesel,Sedan,,, +10/05/2021,3:00,STATEN ISLAND,10306,40.57982,-74.13478,"(40.57982, -74.13478)",,,57 SCHEFFELIN AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4464195,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,15:21,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465007,Sedan,Taxi,,, +10/05/2021,5:05,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,15:45,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464782,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/03/2021,19:54,QUEENS,11102,40.776546,-73.92377,"(40.776546, -73.92377)",19 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464905,Sedan,,,, +10/05/2021,5:15,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4464293,Sedan,Sedan,,, +10/02/2021,15:30,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464953,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,11:00,BROOKLYN,11204,40.61996,-73.982285,"(40.61996, -73.982285)",59 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4464427,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +10/05/2021,16:20,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",NORTH CONDUIT AVENUE,118 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464533,Station Wagon/Sport Utility Vehicle,,,, +09/29/2021,13:00,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/05/2021,12:30,BROOKLYN,11203,40.651196,-73.93032,"(40.651196, -73.93032)",,,891 UTICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,8:15,,,40.63932,-74.02356,"(40.63932, -74.02356)",65 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464758,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,15:50,BRONX,10465,,,,,,4356 locust point drive,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,3:06,BROOKLYN,11236,40.63739,-73.91038,"(40.63739, -73.91038)",FLATLANDS AVENUE,EAST 84 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464509,Sedan,E-Scooter,,, +10/05/2021,7:15,BRONX,10465,40.821167,-73.82262,"(40.821167, -73.82262)",,,2815 DEWEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464997,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,8:23,,,40.793377,-73.97086,"(40.793377, -73.97086)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464352,Sedan,,,, +10/05/2021,8:37,BROOKLYN,11228,40.62258,-74.005066,"(40.62258, -74.005066)",71 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464375,Box Truck,Bus,,, +10/05/2021,13:45,,,40.729446,-74.00518,"(40.729446, -74.00518)",CLARKSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464618,Bus,Sedan,,, +10/05/2021,16:30,,,40.60413,-74.02015,"(40.60413, -74.02015)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,9:00,STATEN ISLAND,10310,40.626453,-74.12976,"(40.626453, -74.12976)",,,1194 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464700,Sedan,,,, +10/03/2021,16:40,BRONX,10467,0,0,"(0.0, 0.0)",EAST 216 STREET,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4465037,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,8:40,QUEENS,11366,40.720955,-73.80935,"(40.720955, -73.80935)",79 AVENUE,PARSONS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4464341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,20:10,QUEENS,11373,40.743416,-73.88873,"(40.743416, -73.88873)",,,76-02 WOODSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,16:48,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464627,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,8:40,STATEN ISLAND,10314,40.605213,-74.12084,"(40.605213, -74.12084)",MANOR ROAD,NORWALK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464364,Sedan,,,, +09/17/2021,22:18,BROOKLYN,11207,40.688553,-73.91245,"(40.688553, -73.91245)",HALSEY STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464894,Tow Truck / Wrecker,Sedan,,, +10/05/2021,15:15,MANHATTAN,10001,40.749073,-73.99946,"(40.749073, -73.99946)",9 AVENUE,WEST 27 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4464958,Bus,Bus,,, +10/05/2021,17:43,STATEN ISLAND,10304,40.63001,-74.08173,"(40.63001, -74.08173)",SAINT PAULS AVENUE,BEACH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464733,Sedan,Sedan,,, +10/05/2021,15:16,MANHATTAN,10010,40.74048,-73.99106,"(40.74048, -73.99106)",,,4 WEST 21 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4464443,Sedan,fire truck,,, +10/05/2021,14:00,,,40.671406,-73.96133,"(40.671406, -73.96133)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464501,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/10/2021,19:00,,,40.900925,-73.88852,"(40.900925, -73.88852)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465093,Station Wagon/Sport Utility Vehicle,PK,,, +10/05/2021,20:00,BROOKLYN,11237,40.710667,-73.93361,"(40.710667, -73.93361)",MORGAN AVENUE,STAGG STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464886,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/05/2021,14:30,QUEENS,11101,40.738205,-73.92823,"(40.738205, -73.92823)",38 STREET,GREENPOINT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464603,Sedan,,,, +10/05/2021,0:00,BRONX,10457,40.847485,-73.90553,"(40.847485, -73.90553)",TOPPING AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464301,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,6:25,STATEN ISLAND,10304,40.619728,-74.08358,"(40.619728, -74.08358)",GORDON STREET,LAUREL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4464695,Sedan,Sedan,Sedan,, +10/05/2021,11:10,BRONX,10467,40.877502,-73.86282,"(40.877502, -73.86282)",,,766 EAST 211 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4464413,Station Wagon/Sport Utility Vehicle,Dump,,, +10/05/2021,12:30,,,40.60719,-74.16243,"(40.60719, -74.16243)",VICTORY BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464640,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,18:41,BROOKLYN,11210,40.629055,-73.94833,"(40.629055, -73.94833)",AVENUE I,EAST 29 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464575,Pick-up Truck,Bike,,, +10/05/2021,17:00,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,18:20,,,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464987,Sedan,Sedan,,, +10/05/2021,16:51,BRONX,10452,40.831974,-73.9235,"(40.831974, -73.9235)",EAST 165 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464546,Station Wagon/Sport Utility Vehicle,,,, +09/17/2021,19:02,BROOKLYN,11207,,,,BUSHWICK AVENUE,COOPER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464888,Sedan,Sedan,,, +10/05/2021,19:18,BROOKLYN,11217,40.685513,-73.97429,"(40.685513, -73.97429)",HANSON PLACE,SOUTH PORTLAND AVENUE,,2,0,0,0,0,0,2,0,Pavement Defective,,,,,4464460,Sedan,,,, +10/05/2021,14:30,QUEENS,11362,40.766273,-73.740074,"(40.766273, -73.740074)",NORTHERN BOULEVARD,247 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4464701,Sedan,Taxi,,, +10/05/2021,18:40,QUEENS,11419,40.695854,-73.818924,"(40.695854, -73.818924)",130 STREET,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4464826,Sedan,,,, +10/05/2021,14:45,QUEENS,11418,40.694798,-73.84026,"(40.694798, -73.84026)",,,88-17 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,18:00,,,,,,RIEGALMAN BOARDWALK WEST,STILLWELL AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424768,Bike,,,, +10/05/2021,17:45,,,40.86242,-73.89405,"(40.86242, -73.89405)",EAST FORDHAM ROAD,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464650,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,7:55,BROOKLYN,11205,40.69476,-73.976135,"(40.69476, -73.976135)",,,81 NORTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464324,Convertible,,,, +10/05/2021,10:00,BRONX,10459,40.821,-73.8969,"(40.821, -73.8969)",EAST 163 STREET,INTERVALE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464554,Station Wagon/Sport Utility Vehicle,Bike,,, +10/05/2021,8:15,BROOKLYN,11207,40.68014,-73.88941,"(40.68014, -73.88941)",ARLINGTON AVENUE,BARBEY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4464386,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +10/05/2021,14:45,,,40.63448,-73.962204,"(40.63448, -73.962204)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464565,Sedan,,,, +10/05/2021,15:45,BROOKLYN,11208,40.68419,-73.8703,"(40.68419, -73.8703)",FULTON STREET,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464453,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,8:15,QUEENS,11368,40.752056,-73.85421,"(40.752056, -73.85421)",,,112-44 ROOSEVELT AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464553,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/05/2021,15:30,,,,,,GRAND STREET,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,20:50,BROOKLYN,11236,40.642113,-73.90307,"(40.642113, -73.90307)",EAST 94 STREET,FLATLANDS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464513,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/05/2021,5:45,,,40.525616,-74.229416,"(40.525616, -74.229416)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464947,Tanker,Stake or Rack,,, +10/05/2021,1:00,QUEENS,11415,40.712,-73.82546,"(40.712, -73.82546)",QUEENS BOULEVARD,HOOVER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464251,Sedan,,,, +10/04/2021,17:25,BROOKLYN,11213,40.675846,-73.945564,"(40.675846, -73.945564)",,,1206 BERGEN STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465008,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,17:00,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",ELIOT AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4464775,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,16:58,,,40.68665,-73.91315,"(40.68665, -73.91315)",ELDERT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,11:25,STATEN ISLAND,10305,40.586105,-74.09109,"(40.586105, -74.09109)",SEAVIEW AVENUE,SIMPSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464365,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +10/05/2021,0:00,,,40.8133,-73.930405,"(40.8133, -73.930405)",EAST 138 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464589,Sedan,Bike,,, +04/24/2022,5:46,BROOKLYN,11220,0,0,"(0.0, 0.0)",,,5604 4 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4521498,Sedan,Sedan,,, +10/05/2021,12:00,BRONX,10472,40.832176,-73.86534,"(40.832176, -73.86534)",,,1821 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464393,Sedan,,,, +10/05/2021,18:40,BROOKLYN,11235,40.589565,-73.939804,"(40.589565, -73.939804)",NOSTRAND AVENUE,AVENUE Z,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464619,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,17:10,BROOKLYN,11208,40.671207,-73.877235,"(40.671207, -73.877235)",,,304 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,13:04,,,40.807095,-73.945984,"(40.807095, -73.945984)",WEST 124 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464437,,,,, +10/05/2021,3:00,STATEN ISLAND,10310,40.629684,-74.11123,"(40.629684, -74.11123)",FOREST AVENUE,BEMENT AVENUE,,1,0,0,0,0,0,1,0,Animals Action,,,,,4464674,Sedan,,,, +10/05/2021,8:35,MANHATTAN,10016,40.74513,-73.98696,"(40.74513, -73.98696)",,,261 5 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464333,Taxi,Bike,,, +10/05/2021,9:30,BRONX,10454,40.80777,-73.9239,"(40.80777, -73.9239)",,,175 WILLIS AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,,,,,4464590,E-Bike,,,, +10/05/2021,9:05,BRONX,10469,40.86941,-73.84264,"(40.86941, -73.84264)",ADEE AVENUE,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464658,Tractor Truck Gasoline,Sedan,Station Wagon/Sport Utility Vehicle,, +10/05/2021,21:02,BROOKLYN,11230,40.626213,-73.97416,"(40.626213, -73.97416)",EAST 3 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464699,Sedan,E-Scooter,,, +10/05/2021,7:05,,,40.7856331,-73.855986,"(40.7856331, -73.855986)",111 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464362,Sedan,Dump,,, +06/04/2021,9:39,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4424934,Sedan,Sedan,Sedan,, +10/05/2021,8:01,BRONX,10460,40.83854,-73.868256,"(40.83854, -73.868256)",,,1516 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2022,13:00,BROOKLYN,11214,40.60722,-73.99043,"(40.60722, -73.99043)",,,2138 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4567612,Sedan,,,, +10/05/2021,12:35,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464390,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/02/2021,17:15,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465095,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,6:40,QUEENS,11379,40.721485,-73.873924,"(40.721485, -73.873924)",,,63-25 DRY HARBOR ROAD,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,Unspecified,,,4464426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,19:12,BRONX,10466,40.888588,-73.849884,"(40.888588, -73.849884)",EAST 230 STREET,PAULDING AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,,,4465065,AMBULANCE,Sedan,Station Wagon/Sport Utility Vehicle,, +10/05/2021,0:00,,,,,,QUEENS BOULEVARD,108 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464774,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,22:00,BROOKLYN,11220,40.647102,-74.007614,"(40.647102, -74.007614)",,,504 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464991,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,7:00,,,40.745068,-73.936356,"(40.745068, -73.936356)",30 PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,7:35,BROOKLYN,11207,40.672607,-73.89992,"(40.672607, -73.89992)",GLENMORE AVENUE,WILLIAMS AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4464451,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,8:00,BROOKLYN,11210,40.637234,-73.94811,"(40.637234, -73.94811)",,,1983 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464323,Sedan,Refrigerated Van,,, +10/05/2021,12:50,,,,,,NEEDHAM AVENUE,EAST 222 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4464416,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,14:27,QUEENS,11101,40.75203,-73.92915,"(40.75203, -73.92915)",NORTHERN BOULEVARD,35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464581,Sedan,E-Bike,,, +10/05/2021,13:43,,,,,,MOTT AVENUE,CORNAGA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464408,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,20:00,,,40.701008,-73.9424,"(40.701008, -73.9424)",BROADWAY,GRAHAM AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4464916,Sedan,,,, +10/05/2021,17:20,,,40.716415,-73.91153,"(40.716415, -73.91153)",56 STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464676,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,17:38,BRONX,10470,40.900486,-73.85411,"(40.900486, -73.85411)",EAST 239 STREET,RICHARDSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4464481,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/05/2021,17:55,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464609,Sedan,Sedan,,, +10/05/2021,16:45,BROOKLYN,11204,40.624947,-73.97712,"(40.624947, -73.97712)",20 AVENUE,DAHILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,17:30,,,40.597095,-74.18205,"(40.597095, -74.18205)",BARON BOULEVARD,VICTORY BOULEVARD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464645,Station Wagon/Sport Utility Vehicle,Bike,,, +12/11/2021,3:41,MANHATTAN,10027,40.81394,-73.948425,"(40.81394, -73.948425)",8 AVENUE,WEST 131 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Other Vehicular,,,,4485935,Sedan,Taxi,,, +12/11/2021,4:30,,,40.69294,-73.999374,"(40.69294, -73.999374)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4486185,Station Wagon/Sport Utility Vehicle,,,, +05/01/2021,19:10,QUEENS,11434,40.686516,-73.78883,"(40.686516, -73.78883)",157 STREET,115 AVENUE,,0,1,0,0,0,0,0,1,Traffic Control Disregarded,Unspecified,,,,4413106,Motorcycle,Sedan,,, +06/04/2021,14:26,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423910,Sedan,Sedan,,, +05/31/2021,10:00,,,40.743343,-73.97203,"(40.743343, -73.97203)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4424500,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,6:40,MANHATTAN,10032,40.83907,-73.94353,"(40.83907, -73.94353)",,,115 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424089,Sedan,,,, +06/06/2021,22:35,BRONX,10467,40.882496,-73.86989,"(40.882496, -73.86989)",,,3560 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4424264,Sedan,Sedan,,, +06/06/2021,17:52,,,40.76541,-73.96798,"(40.76541, -73.96798)",EAST 63 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424180,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,23:40,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,15:26,QUEENS,11420,40.68302,-73.81139,"(40.68302, -73.81139)",,,111-21 131 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424771,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,19:30,,,40.679863,-73.83884,"(40.679863, -73.83884)",ROCKAWAY BOULEVARD,101 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4464529,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/06/2021,2:15,,,40.638966,-73.94251,"(40.638966, -73.94251)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,5:14,,,40.601948,-73.99382,"(40.601948, -73.99382)",86 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424134,Sedan,Motorcycle,,, +06/06/2021,20:33,BRONX,10462,40.833366,-73.85139,"(40.833366, -73.85139)",NEWBOLD AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,17:08,BRONX,10457,,,,,,2170 Webster Ave,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424208,Sedan,,,, +06/06/2021,1:08,BRONX,10462,40.85377,-73.869194,"(40.85377, -73.869194)",,,2100 BRONX PARK EAST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4424526,Van,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +06/05/2021,10:58,QUEENS,11385,40.712864,-73.90531,"(40.712864, -73.90531)",,,60-04 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424864,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,11:02,BROOKLYN,11234,40.63321,-73.92259,"(40.63321, -73.92259)",EAST 56 STREET,AVENUE H,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4424949,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,3:10,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4423767,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,3:15,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",EAST 149 STREET,SAINT ANNS AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4424217,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,17:25,MANHATTAN,10036,40.76187,-73.99014,"(40.76187, -73.99014)",,,689 9 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424760,Sedan,,,, +06/04/2021,2:10,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",GRAND AVENUE,RUST STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,0:00,STATEN ISLAND,10305,40.58984,-74.08663,"(40.58984, -74.08663)",LACONIA AVENUE,BURGHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424472,Sedan,,,, +06/06/2021,1:38,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4423829,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/06/2021,15:15,QUEENS,11368,40.739983,-73.8652,"(40.739983, -73.8652)",,,53-31 97 STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4424048,E-Bike,,,, +06/06/2021,1:30,QUEENS,11420,40.66723,-73.82374,"(40.66723, -73.82374)",,,117-05 150 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424283,Sedan,,,, +06/06/2021,9:35,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424312,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,0:00,,,40.676144,-73.893074,"(40.676144, -73.893074)",BRADFORD STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424399,Moped,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,17:32,,,40.804367,-73.93533,"(40.804367, -73.93533)",EAST 126 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424420,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,18:00,BROOKLYN,11201,40.693783,-73.987206,"(40.693783, -73.987206)",JAY STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423980,Sedan,Bus,,, +06/06/2021,10:26,QUEENS,11434,40.667084,-73.78698,"(40.667084, -73.78698)",NORTH CONDUIT AVENUE,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423916,Sedan,Sedan,,, +05/21/2021,22:45,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4424901,Taxi,E-Bike,,, +05/22/2021,19:51,MANHATTAN,10009,40.723022,-73.982704,"(40.723022, -73.982704)",,,47 AVENUE B,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4425021,Sedan,,,, +06/06/2021,5:00,QUEENS,11413,40.68406,-73.75819,"(40.68406, -73.75819)",GRAYSON STREET,122 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423952,Sedan,Sedan,,, +06/06/2021,14:51,QUEENS,11362,40.75158,-73.74572,"(40.75158, -73.74572)",233 STREET,WEST ALLEY ROAD,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4423920,Sedan,Sedan,,, +05/20/2021,21:53,MANHATTAN,10018,40.75108,-73.98686,"(40.75108, -73.98686)",WEST 36 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424796,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,19:00,BROOKLYN,11217,40.687943,-73.98141,"(40.687943, -73.98141)",LIVINGSTON STREET,NEVINS STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4424037,Bus,E-Bike,,, +06/06/2021,10:35,BROOKLYN,11226,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423862,Moped,Sedan,,, +06/06/2021,11:30,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4424414,Sedan,,,, +06/06/2021,3:30,QUEENS,11420,40.682285,-73.80805,"(40.682285, -73.80805)",134 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424195,Sedan,Sedan,,, +06/06/2021,21:15,BROOKLYN,11230,40.6112,-73.9626,"(40.6112, -73.9626)",,,1893 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424230,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,22:45,BROOKLYN,11236,40.639286,-73.89869,"(40.639286, -73.89869)",AVENUE K,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,13:30,,,40.666252,-73.86205,"(40.666252, -73.86205)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424360,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,22:00,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4424425,Taxi,Sedan,,, +06/06/2021,2:25,,,40.716194,-73.996086,"(40.716194, -73.996086)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4423879,Sedan,Sedan,,, +06/06/2021,3:15,,,40.604996,-73.99427,"(40.604996, -73.99427)",83 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423995,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,10:00,,,40.68704,-73.90575,"(40.68704, -73.90575)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424148,Pick-up Truck,Sedan,,, +06/06/2021,15:10,BRONX,10455,40.81595,-73.89792,"(40.81595, -73.89792)",,,766 FOX STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424893,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,8:24,MANHATTAN,10022,40.764896,-73.97256,"(40.764896, -73.97256)",5 AVENUE,EAST 60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425028,Sedan,,,, +06/06/2021,1:22,QUEENS,11419,40.69297,-73.81538,"(40.69297, -73.81538)",101 AVENUE,132 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4424310,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,13:30,BROOKLYN,11203,40.65561,-73.92616,"(40.65561, -73.92616)",,,900 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4424588,Sedan,,,, +06/02/2021,13:40,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",RALPH AVENUE,FULTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424902,Sedan,E-Bike,,, +06/06/2021,0:37,,,40.7106,-73.98469,"(40.7106, -73.98469)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424057,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,17:15,,,40.717342,-73.99118,"(40.717342, -73.99118)",ALLEN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4424999,Station Wagon/Sport Utility Vehicle,Bus,,, +06/06/2021,18:28,,,40.754105,-73.72321,"(40.754105, -73.72321)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4424109,Sedan,,,, +05/25/2021,16:15,MANHATTAN,10035,40.807316,-73.93741,"(40.807316, -73.93741)",,,1890 PARK AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,13:00,QUEENS,11109,,,,,,45-45 CENTER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423940,Sedan,,,, +06/06/2021,12:30,QUEENS,11434,40.691895,-73.77822,"(40.691895, -73.77822)",LINDEN BOULEVARD,172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,1:20,,,40.666595,-73.87176,"(40.666595, -73.87176)",FOUNTAIN AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4424381,Sedan,,,, +06/06/2021,8:25,BROOKLYN,11207,40.65626,-73.89574,"(40.65626, -73.89574)",WILLIAMS AVENUE,DE WITT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4424404,4 dr sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/11/2021,9:49,MANHATTAN,10009,40.72392,-73.985954,"(40.72392, -73.985954)",,,138 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425022,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,14:30,QUEENS,11101,40.75394,-73.92968,"(40.75394, -73.92968)",,,37-01 33 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491410,Sedan,Sedan,,, +05/29/2021,8:36,MANHATTAN,10017,40.750774,-73.97655,"(40.750774, -73.97655)",EAST 41 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Using On Board Navigation Device,Unspecified,,,,4424779,Sedan,Sedan,,, +06/06/2021,0:34,QUEENS,11420,40.68079,-73.806305,"(40.68079, -73.806305)",115 AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4424191,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,9:28,,,40.83639,-73.91588,"(40.83639, -73.91588)",EAST 169 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424693,Sedan,,,, +06/06/2021,7:00,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424221,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,18:47,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424130,Sedan,,,, +06/06/2021,17:30,,,40.6427,-73.87661,"(40.6427, -73.87661)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4424297,Sedan,Sedan,Sedan,, +06/06/2021,9:45,,,,,,WEST SHORE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4424873,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/05/2021,22:52,,,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464858,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,18:26,,,40.679325,-73.9193,"(40.679325, -73.9193)",MACDOUGAL STREET,,,5,0,1,0,0,0,4,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4424539,Sedan,Sedan,Sedan,E-Scooter,Station Wagon/Sport Utility Vehicle +06/06/2021,12:00,QUEENS,11423,40.707607,-73.7664,"(40.707607, -73.7664)",,,190-51 103 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424913,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,3:50,QUEENS,11372,40.755173,-73.888954,"(40.755173, -73.888954)",,,78-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424242,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/06/2021,18:15,BROOKLYN,11234,40.6146,-73.92448,"(40.6146, -73.92448)",FILLMORE AVENUE,EAST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424135,Sedan,,,, +06/06/2021,7:55,QUEENS,11369,40.768658,-73.87131,"(40.768658, -73.87131)",,,99-11 23 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424244,Sedan,Sedan,,, +06/06/2021,20:00,BROOKLYN,11214,40.58525,-73.98728,"(40.58525, -73.98728)",BAY 50 STREET,CROPSEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424209,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,23:00,,,,,,MANHATTAN BR UPPER,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4424746,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,2:44,BROOKLYN,11217,40.686928,-73.98484,"(40.686928, -73.98484)",ATLANTIC AVENUE,BOND STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4423722,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,7:30,BRONX,10469,40.867046,-73.86036,"(40.867046, -73.86036)",,,2800 BOSTON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424823,Sedan,Sedan,,, +06/01/2021,19:45,BROOKLYN,11217,40.684814,-73.98353,"(40.684814, -73.98353)",DEAN STREET,NEVINS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424962,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,16:50,,,40.76465,-73.823494,"(40.76465, -73.823494)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424101,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,0:15,QUEENS,11434,40.677322,-73.790955,"(40.677322, -73.790955)",SUTPHIN BOULEVARD,121 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424491,Sedan,,,, +05/17/2021,10:47,STATEN ISLAND,10312,40.534325,-74.193016,"(40.534325, -74.193016)",HUGUENOT AVENUE,DRUMGOOLE ROAD EAST,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424948,FIRETRUCK,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,7:17,QUEENS,11412,40.707176,-73.76443,"(40.707176, -73.76443)",,,193-20 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4424912,Sedan,Sedan,Sedan,, +06/06/2021,23:23,,,,,,BEACH CHANNEL DRIVE,RIIS PARK,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4424617,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,0:15,MANHATTAN,10036,40.753788,-73.981606,"(40.753788, -73.981606)",,,11 WEST 42 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Turning Improperly,,,,4423784,Sedan,E-Bike,,, +06/06/2021,15:30,BROOKLYN,11222,40.729523,-73.95304,"(40.729523, -73.95304)",,,740 LEONARD STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4424074,Sedan,Sedan,Sedan,, +06/06/2021,17:30,BROOKLYN,11223,40.58576,-73.97442,"(40.58576, -73.97442)",SHELL ROAD,AVENUE Z,,1,0,0,0,0,0,1,0,Glare,,,,,4424210,Sedan,,,, +06/06/2021,2:08,BROOKLYN,11212,40.66143,-73.91644,"(40.66143, -73.91644)",LIVONIA AVENUE,LEGION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4424833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/28/2021,16:40,,,40.6771,-73.92479,"(40.6771, -73.92479)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465034,,,,, +06/06/2021,14:10,BROOKLYN,11217,40.68122,-73.98047,"(40.68122, -73.98047)",4 AVENUE,WARREN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424463,Sedan,,,, +06/06/2021,14:52,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424537,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,15:47,BRONX,10459,40.829353,-73.89289,"(40.829353, -73.89289)",,,1226 SIMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424186,Ambulance,,,, +06/01/2021,17:52,BROOKLYN,11212,40.670746,-73.91294,"(40.670746, -73.91294)",,,17 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424935,Sedan,,,, +06/04/2021,15:05,QUEENS,11106,40.758274,-73.93336,"(40.758274, -73.93336)",36 AVENUE,CRESCENT STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424804,Sedan,E-Bike,,, +06/06/2021,15:30,QUEENS,11378,40.733913,-73.901085,"(40.733913, -73.901085)",MAURICE AVENUE,TYLER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423938,Sedan,Pick-up Truck,,, +06/06/2021,15:28,BRONX,10469,40.864002,-73.834045,"(40.864002, -73.834045)",,,1806 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,15:00,BRONX,10462,40.832893,-73.84944,"(40.832893, -73.84944)",,,2261 ELLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424370,Sedan,,,, +05/27/2021,23:05,,,40.87787,-73.8701,"(40.87787, -73.8701)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424920,Sedan,,,, +06/06/2021,20:00,,,,,,OLD FULTON STREET,FRONT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,13:55,,,40.886467,-73.85107,"(40.886467, -73.85107)",PAULDING AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4424430,Sedan,Motorbike,,, +05/23/2021,14:30,,,40.632755,-73.92984,"(40.632755, -73.92984)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424856,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,1:10,,,40.67417,-73.95671,"(40.67417, -73.95671)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423882,Taxi,,,, +06/06/2021,16:55,BRONX,10453,40.85183,-73.91258,"(40.85183, -73.91258)",HARRISON AVENUE,KINGSLAND PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424262,Sedan,Motorbike,,, +06/06/2021,23:19,BROOKLYN,11207,40.662014,-73.886826,"(40.662014, -73.886826)",HEGEMAN AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424382,Sedan,Sedan,,, +06/06/2021,3:58,MANHATTAN,10040,40.86258,-73.925385,"(40.86258, -73.925385)",POST AVENUE,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4423946,Sedan,Sedan,Sedan,Sedan, +06/06/2021,18:25,BROOKLYN,11211,40.711063,-73.95009,"(40.711063, -73.95009)",,,529 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424145,Sedan,Sedan,,, +06/06/2021,14:00,BROOKLYN,11203,40.656357,-73.92696,"(40.656357, -73.92696)",,,109 EAST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424589,Sedan,,,, +06/06/2021,20:00,,,,,,8th avenue,West 40th street,,0,0,0,0,0,0,0,0,,,,,,4424778,,,,, +06/06/2021,7:35,,,40.6041,-74.06908,"(40.6041, -74.06908)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4424443,Sedan,,,, +06/06/2021,0:03,BROOKLYN,11203,40.639793,-73.929115,"(40.639793, -73.929115)",UTICA AVENUE,FOSTER AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4424085,Sedan,Sedan,,, +06/06/2021,19:47,MANHATTAN,10002,40.713207,-73.97739,"(40.713207, -73.97739)",FDR DRIVE,GRAND STREET,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,,,,,4424153,Sedan,,,, +06/06/2021,23:25,BROOKLYN,11208,40.66216,-73.87284,"(40.66216, -73.87284)",WORTMAN AVENUE,ATKINS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4425039,,,,, +06/05/2021,20:12,,,40.7756,-73.956345,"(40.7756, -73.956345)",EAST 81 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425027,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/04/2021,17:00,BRONX,10474,40.813213,-73.88616,"(40.813213, -73.88616)",,,641 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424894,Sedan,,,, +06/06/2021,16:00,QUEENS,11423,40.713398,-73.762505,"(40.713398, -73.762505)",,,197-09 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4424556,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/01/2021,1:00,MANHATTAN,10002,40.716454,-73.98058,"(40.716454, -73.98058)",DELANCEY STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4425000,Sedan,Sedan,Sedan,Sedan, +06/06/2021,12:30,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424333,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,7:40,,,40.65661,-73.93091,"(40.65661, -73.93091)",CLARKSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4464474,Motorcycle,Sedan,,, +06/06/2021,4:20,BROOKLYN,11212,40.66457,-73.91237,"(40.66457, -73.91237)",,,656 BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423826,Sedan,Motorcycle,,, +06/06/2021,9:35,BRONX,10467,40.877525,-73.86443,"(40.877525, -73.86443)",EAST 211 STREET,HOLLAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4424424,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/06/2021,2:55,QUEENS,11368,40.736214,-73.85795,"(40.736214, -73.85795)",,,99-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424040,Sedan,Sedan,,, +10/05/2021,6:30,,,40.756485,-73.94005,"(40.756485, -73.94005)",21 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464897,Sedan,,,, +06/06/2021,15:00,BRONX,10458,,,,SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424268,Sedan,Sedan,,, +06/06/2021,20:30,BRONX,10452,40.8421,-73.92624,"(40.8421, -73.92624)",UNIVERSITY AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424194,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,15:00,BROOKLYN,11208,40.679653,-73.88556,"(40.679653, -73.88556)",FULTON STREET,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425038,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,1:08,QUEENS,11419,40.6922,-73.834595,"(40.6922, -73.834595)",,,111-16 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4424791,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,16:15,BROOKLYN,11226,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,DITMAS AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4424229,Sedan,Sedan,,, +06/06/2021,23:15,,,40.692528,-73.79096,"(40.692528, -73.79096)",160 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424558,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,15:45,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4424108,Motorcycle,Pick-up Truck,,, +06/06/2021,13:10,BRONX,10466,40.897247,-73.846275,"(40.897247, -73.846275)",,,4320 EDSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424434,Sedan,Box Truck,,, +06/06/2021,20:30,,,40.692,-73.92646,"(40.692, -73.92646)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4424510,E-Bike,Sedan,,, +06/06/2021,22:30,QUEENS,11368,40.738686,-73.8579,"(40.738686, -73.8579)",,,57-67 XENIA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,7:00,BROOKLYN,11207,40.659744,-73.87846,"(40.659744, -73.87846)",,,410 WORTMAN AVENUE,0,0,0,0,0,0,0,0,,,,,,4424398,,,,, +06/06/2021,6:03,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4423858,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,19:50,QUEENS,11429,40.70765,-73.750084,"(40.70765, -73.750084)",,,207-19 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424234,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/06/2021,2:29,,,40.695847,-73.96588,"(40.695847, -73.96588)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4423978,Sedan,,,, +06/06/2021,0:28,,,40.60729,-74.14086,"(40.60729, -74.14086)",SOUTH GANNON AVENUE,WOOLLEY AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Outside Car Distraction,Unspecified,,,4424246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/06/2021,12:06,QUEENS,11354,40.77558,-73.84267,"(40.77558, -73.84267)",126 STREET,25 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424100,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,16:20,BRONX,10475,40.86932,-73.828255,"(40.86932, -73.828255)",,,2063 BARTOW AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4424233,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/06/2021,16:57,MANHATTAN,10009,40.72325,-73.980545,"(40.72325, -73.980545)",,,653 EAST 5 STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4424691,Sedan,Sedan,,, +06/06/2021,16:10,,,40.830994,-73.928116,"(40.830994, -73.928116)",ANDERSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424189,Sedan,Sedan,,, +06/06/2021,21:45,,,40.575565,-73.98121,"(40.575565, -73.98121)",SURF AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424747,Sedan,,,, +06/06/2021,0:15,QUEENS,11691,40.593056,-73.77532,"(40.593056, -73.77532)",ROCKAWAY FREEWAY,BEACH 44 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4423723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,14:15,MANHATTAN,10014,40.73337,-74.00258,"(40.73337, -74.00258)",WEST 4 STREET,GROVE STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Passing Too Closely,,,,4424824,PK,Bike,,, +06/06/2021,15:00,BROOKLYN,11220,40.646637,-74.01589,"(40.646637, -74.01589)",3 AVENUE,52 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4424481,Sedan,,,, +06/02/2021,21:00,,,,,,GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424959,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,14:00,BROOKLYN,11238,40.6792,-73.9553,"(40.6792, -73.9553)",ATLANTIC AVENUE,FRANKLIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424921,Moped,,,, +06/06/2021,1:45,BROOKLYN,11208,40.683647,-73.87219,"(40.683647, -73.87219)",CRESCENT STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4424383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,3:47,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4423944,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,5:53,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,Driver Inexperience,Driver Inexperience,,4423947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/06/2021,15:39,BRONX,10460,40.840057,-73.870964,"(40.840057, -73.870964)",VANNEST AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4424300,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,8:50,STATEN ISLAND,10314,40.621017,-74.13181,"(40.621017, -74.13181)",JEWETT AVENUE,COLLEGE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4424819,Sedan,Pick-up Truck,,, +06/06/2021,12:47,QUEENS,11001,40.736744,-73.70488,"(40.736744, -73.70488)",,,263-14 EAST WILLISTON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,5:39,,,40.824425,-73.87271,"(40.824425, -73.87271)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424371,Sedan,,,, +06/05/2021,11:44,QUEENS,11378,40.724007,-73.894165,"(40.724007, -73.894165)",,,69-05 58 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,6:20,BROOKLYN,11212,40.654137,-73.91234,"(40.654137, -73.91234)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424084,Sedan,Sedan,,, +06/06/2021,15:20,,,,,,ELTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4424405,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/06/2021,14:30,BROOKLYN,11238,40.675743,-73.96424,"(40.675743, -73.96424)",,,420 PARK PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424919,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,0:20,QUEENS,11691,40.596123,-73.778305,"(40.596123, -73.778305)",,,423 BEACH 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543193,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,19:30,,,40.857903,-73.86468,"(40.857903, -73.86468)",PELHAM PARKWAY NORTH,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,13:59,BROOKLYN,11207,40.669792,-73.8924,"(40.669792, -73.8924)",SUTTER AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424401,Sedan,Bike,,, +06/06/2021,10:00,BRONX,10475,40.882576,-73.833145,"(40.882576, -73.833145)",,,3475 BIVONA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424429,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,6:30,QUEENS,11367,40.717518,-73.81785,"(40.717518, -73.81785)",,,141-40 UNION TURNPIKE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423888,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,13:30,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423985,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,8:40,MANHATTAN,10009,40.72517,-73.97588,"(40.72517, -73.97588)",,,434 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424895,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,17:31,QUEENS,11433,40.696865,-73.794136,"(40.696865, -73.794136)",,,107-15 160 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424907,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,10:17,BROOKLYN,11222,40.732826,-73.95679,"(40.732826, -73.95679)",,,116 HURON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424073,Sedan,,,, +06/06/2021,14:10,,,40.82413,-73.94098,"(40.82413, -73.94098)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424214,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,2:40,,,40.81094,-73.94318,"(40.81094, -73.94318)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424882,Sedan,Sedan,,, +10/05/2021,2:48,,,40.797836,-73.96946,"(40.797836, -73.96946)",WEST 101 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464294,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,12:34,BROOKLYN,11211,40.716778,-73.95602,"(40.716778, -73.95602)",,,205 NORTH 7 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4424803,Sedan,E-Scooter,,, +06/06/2021,10:25,QUEENS,11101,40.735527,-73.93698,"(40.735527, -73.93698)",VANDAM STREET,35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423937,Sedan,,,, +06/06/2021,1:03,MANHATTAN,10032,40.8414,-73.94055,"(40.8414, -73.94055)",,,622 WEST 168 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424096,Ambulance,Ambulance,,, +06/06/2021,9:30,,,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4423835,Sedan,,,, +06/06/2021,9:36,QUEENS,11373,40.746834,-73.87151,"(40.746834, -73.87151)",,,94-24 41 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424041,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,18:40,MANHATTAN,10023,0,0,"(0.0, 0.0)",COLUMBUS AVENUE,WEST 68 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4424966,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,17:30,BRONX,10453,40.846893,-73.92055,"(40.846893, -73.92055)",UNIVERSITY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4424288,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/06/2021,15:40,BROOKLYN,11204,40.611217,-73.98417,"(40.611217, -73.98417)",BAY PARKWAY,WEST 10 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424007,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,5:55,,,40.80582,-73.90926,"(40.80582, -73.90926)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4424662,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +06/06/2021,19:10,,,40.654533,-73.860916,"(40.654533, -73.860916)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4424406,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/06/2021,19:00,BROOKLYN,11214,40.607464,-73.99834,"(40.607464, -73.99834)",,,1901 83 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424132,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,13:12,,,40.650223,-73.86843,"(40.650223, -73.86843)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4424369,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,20:04,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,8:30,BROOKLYN,11208,40.666595,-73.87176,"(40.666595, -73.87176)",FOUNTAIN AVENUE,LINDEN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424397,Sedan,,,, +06/06/2021,16:06,QUEENS,11368,,,,,,55-02 103 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424202,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,20:33,BROOKLYN,11217,40.678806,-73.97806,"(40.678806, -73.97806)",,,11 STERLING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424533,Sedan,Pick-up Truck,,, +05/14/2021,13:30,BRONX,10452,40.83767,-73.91921,"(40.83767, -73.91921)",GERARD AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,14:20,,,40.62566,-74.14036,"(40.62566, -74.14036)",,,331 DECKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424120,Sedan,,,, +06/06/2021,12:30,BROOKLYN,11212,40.66411,-73.926346,"(40.66411, -73.926346)",,,52 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424592,Sedan,,,, +06/06/2021,19:50,BROOKLYN,11238,40.680473,-73.9614,"(40.680473, -73.9614)",ATLANTIC AVENUE,GRAND AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424107,Sedan,Sedan,,, +06/06/2021,2:19,BROOKLYN,11220,40.641327,-74.00709,"(40.641327, -74.00709)",52 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423818,Sedan,Sedan,,, +06/06/2021,19:10,MANHATTAN,10013,40.71836,-73.9968,"(40.71836, -73.9968)",,,128 MOTT STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424751,Sedan,,,, +06/06/2021,4:45,MANHATTAN,10011,40.74047,-73.99829,"(40.74047, -73.99829)",WEST 17 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423965,Sedan,Sedan,,, +06/06/2021,14:54,,,,,,BROOKLYN QNS EXPRESSWAY,WOODHULL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424158,PK,Sedan,,, +05/28/2021,2:27,BROOKLYN,11233,40.68376,-73.929245,"(40.68376, -73.929245)",,,270 REID AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4424936,Ambulance,Sedan,,, +06/06/2021,4:30,QUEENS,11385,40.71204,-73.90342,"(40.71204, -73.90342)",,,62-66 60 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424835,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,0:02,MANHATTAN,10033,40.850506,-73.93287,"(40.850506, -73.93287)",SAINT NICHOLAS AVENUE,WEST 183 STREET,,1,0,1,0,0,0,0,0,,,,,,4424498,,,,, +06/06/2021,19:15,BRONX,10456,40.835754,-73.904396,"(40.835754, -73.904396)",,,1420 WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4424187,Sedan,,,, +06/04/2021,17:36,,,40.64098,-73.8874,"(40.64098, -73.8874)",AVENUE M,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:34,MANHATTAN,10023,40.77353,-73.98534,"(40.77353, -73.98534)",AMSTERDAM AVENUE,WEST 64 STREET,,0,1,0,1,0,0,0,0,Traffic Control Disregarded,,,,,4425001,ELECTRIC S,,,, +06/06/2021,19:00,BRONX,10458,40.852524,-73.88432,"(40.852524, -73.88432)",,,2322 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424267,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,17:00,,,40.70028,-73.941154,"(40.70028, -73.941154)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424514,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,2:00,BROOKLYN,11206,40.70191,-73.93699,"(40.70191, -73.93699)",BUSHWICK AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424142,Sedan,Sedan,,, +06/06/2021,3:51,,,40.649982,-73.91183,"(40.649982, -73.91183)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424086,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/06/2021,15:32,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424733,Pick-up Truck,,,, +05/25/2021,14:00,MANHATTAN,10001,40.751537,-73.991905,"(40.751537, -73.991905)",,,243 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424777,Bike,,,, +06/06/2021,0:30,BROOKLYN,11203,40.66129,-73.93225,"(40.66129, -73.93225)",,,847 MIDWOOD STREET,4,0,0,0,0,0,4,0,Unspecified,,,,,4424318,Sedan,,,, +06/06/2021,20:44,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4424445,Sedan,Sedan,,, +06/06/2021,17:05,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",COHANCY STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4424193,Sedan,,,, +06/06/2021,17:00,BROOKLYN,11208,0,0,"(0.0, 0.0)",CONDUIT BOULEVARD,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425043,Taxi,Sedan,Sedan,, +06/06/2021,21:40,QUEENS,11427,40.728024,-73.74764,"(40.728024, -73.74764)",217 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424235,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/01/2021,11:00,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424871,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,19:53,,,40.75595,-73.99074,"(40.75595, -73.99074)",8 AVENUE,,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4424552,Sedan,Sedan,Taxi,Pedicab, +05/11/2021,18:00,STATEN ISLAND,10312,40.533634,-74.19268,"(40.533634, -74.19268)",HUGUENOT AVENUE,WEST TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,13:40,BRONX,10458,40.858738,-73.88576,"(40.858738, -73.88576)",,,574 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424254,Sedan,Bus,,, +04/28/2021,16:00,MANHATTAN,10039,40.824074,-73.93887,"(40.824074, -73.93887)",,,239 WEST 148 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424924,Sedan,,,, +06/06/2021,14:10,BROOKLYN,11249,40.722027,-73.95704,"(40.722027, -73.95704)",,,111 NORTH 12 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4424569,Sedan,Sedan,,, +06/06/2021,0:15,QUEENS,11692,40.59241,-73.789,"(40.59241, -73.789)",ROCKAWAY FREEWAY,BEACH 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,13:30,MANHATTAN,10011,40.736668,-73.997345,"(40.736668, -73.997345)",AVENUE OF THE AMERICAS,WEST 13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4424828,Box Truck,,,, +06/06/2021,0:10,QUEENS,11412,40.696163,-73.76881,"(40.696163, -73.76881)",DUNKIRK STREET,QUENCER ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4424735,Sedan,,,, +06/06/2021,12:47,QUEENS,11360,40.78643,-73.793274,"(40.78643, -73.793274)",CROSS ISLAND PARKWAY,201 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424116,Sedan,Sedan,,, +06/06/2021,3:20,,,40.645256,-73.874954,"(40.645256, -73.874954)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424384,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,9:43,BROOKLYN,11238,40.686695,-73.966034,"(40.686695, -73.966034)",,,151 GREENE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423948,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,0:05,,,40.674385,-73.87897,"(40.674385, -73.87897)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424379,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,0:56,,,40.80405,-73.91737,"(40.80405, -73.91737)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424790,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/06/2021,15:09,MANHATTAN,10022,,,,EAST 58 STREET,QUEENSBORO BRIDGE APPROACH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424499,Sedan,Sedan,,, +06/06/2021,17:33,QUEENS,11368,40.74408,-73.851845,"(40.74408, -73.851845)",,,52-11 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424201,Sedan,Sedan,,, +06/06/2021,15:15,BROOKLYN,11210,40.62573,-73.9564,"(40.62573, -73.9564)",AVENUE J,OCEAN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4424227,,,,, +06/06/2021,17:14,BRONX,10466,40.892475,-73.8545,"(40.892475, -73.8545)",EAST 233 STREET,BARNES AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4424437,Sedan,Sedan,,, +06/06/2021,0:00,BRONX,10458,,,,WEBSTER AVENUE,BEDFORD PARK BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424289,Sedan,Sedan,,, +06/06/2021,17:27,,,40.686745,-73.96553,"(40.686745, -73.96553)",GREENE AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424001,Station Wagon/Sport Utility Vehicle,Bike,,, +06/06/2021,13:40,BROOKLYN,11226,40.65415,-73.949936,"(40.65415, -73.949936)",LENOX ROAD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424082,Station Wagon/Sport Utility Vehicle,Ambulance,,, +06/06/2021,9:50,,,,,,QUEENS MIDTOWN TUNNEL,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4424917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,18:00,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,1:00,BROOKLYN,11213,40.677773,-73.93587,"(40.677773, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424886,Taxi,,,, +06/06/2021,16:00,,,40.852146,-73.91741,"(40.852146, -73.91741)",WEST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424303,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,19:20,BROOKLYN,11237,40.69499,-73.9073,"(40.69499, -73.9073)",IRVING AVENUE,WEIRFIELD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424150,Sedan,E-Bike,,, +06/02/2021,16:43,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425037,Sedan,Sedan,,, +06/06/2021,12:30,BROOKLYN,11217,40.68556,-73.973946,"(40.68556, -73.973946)",,,91 HANSON PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424814,Sedan,Sedan,,, +06/03/2021,21:00,QUEENS,11365,40.731304,-73.8032,"(40.731304, -73.8032)",,,70-26 166 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424958,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,17:50,,,40.61613,-74.00819,"(40.61613, -74.00819)",14 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424008,Sedan,,,, +06/06/2021,17:05,,,40.654137,-73.91234,"(40.654137, -73.91234)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424087,Sedan,Sedan,,, +06/06/2021,23:28,BROOKLYN,11236,40.633858,-73.911446,"(40.633858, -73.911446)",EAST 80 STREET,AVENUE J,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,9:25,BROOKLYN,11208,40.677498,-73.87149,"(40.677498, -73.87149)",PINE STREET,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424402,Sedan,Sedan,,, +06/06/2021,21:03,BROOKLYN,11207,40.6818,-73.88978,"(40.6818, -73.88978)",JAMAICA AVENUE,BARBEY STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4424407,Station Wagon/Sport Utility Vehicle,Moped,,, +06/06/2021,9:35,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,7,0,0,0,0,0,7,0,Following Too Closely,Unspecified,Unspecified,,,4423865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/06/2021,18:50,BRONX,10465,40.827576,-73.82324,"(40.827576, -73.82324)",,,3669 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424232,Sedan,,,, +06/06/2021,5:00,BROOKLYN,11213,40.675583,-73.94041,"(40.675583, -73.94041)",,,1335 BERGEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423943,Sedan,Sedan,,, +06/06/2021,23:45,,,40.609917,-73.89746,"(40.609917, -73.89746)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424315,Sedan,,,, +06/06/2021,8:35,,,40.696198,-73.98869,"(40.696198, -73.98869)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423830,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,0:15,,,40.83516,-73.94561,"(40.83516, -73.94561)",WEST 158 STREET,RIVERSIDE DRIVE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424097,E-Scooter,Bike,,, +06/06/2021,12:45,BROOKLYN,11207,40.679096,-73.887314,"(40.679096, -73.887314)",FULTON STREET,WARWICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424400,Sedan,,,, +06/05/2021,19:12,,,40.77526,-73.81758,"(40.77526, -73.81758)",149 STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4424989,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/05/2021,12:15,,,40.678154,-73.94416,"(40.678154, -73.94416)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4464379,Sedan,Box Truck,,, +06/06/2021,15:00,QUEENS,11429,40.717926,-73.735374,"(40.717926, -73.735374)",AMBOY LANE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,22:08,QUEENS,11375,40.71944,-73.84526,"(40.71944, -73.84526)",BURNS STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424775,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,11:21,BROOKLYN,11212,40.65584,-73.919586,"(40.65584, -73.919586)",EAST 93 STREET,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424593,Sedan,,,, +06/06/2021,21:08,,,40.60205,-74.01334,"(40.60205, -74.01334)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424133,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,12:52,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424479,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,23:30,BROOKLYN,11233,40.67777,-73.928314,"(40.67777, -73.928314)",,,30 HUNTERFLY PLACE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4424531,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2021,0:19,,,40.844677,-73.9245,"(40.844677, -73.9245)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424188,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,17:40,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425002,Sedan,Sedan,,, +06/06/2021,17:45,QUEENS,11372,40.75234,-73.87625,"(40.75234, -73.87625)",,,35-19 91 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4423967,Sedan,,,, +06/03/2021,11:15,QUEENS,11372,40.74694,-73.89051,"(40.74694, -73.89051)",ROOSEVELT AVENUE,75 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4424938,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,22:45,STATEN ISLAND,10308,40.54958,-74.137375,"(40.54958, -74.137375)",HYLAN BOULEVARD,KEEGANS LANE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424799,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,4:37,,,40.82548,-73.86294,"(40.82548, -73.86294)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Fell Asleep,Driver Inattention/Distraction,,,,4424361,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,10:21,,,40.898815,-73.86223,"(40.898815, -73.86223)",EAST 236 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4424422,Sedan,Sedan,Sedan,Sedan, +06/06/2021,10:00,QUEENS,11373,40.73147,-73.873764,"(40.73147, -73.873764)",,,86-33 59 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424042,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,17:55,,,,,,Oceana drive west,Oceana drive east,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424206,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,19:30,BRONX,10473,40.819,-73.86432,"(40.819, -73.86432)",SEWARD AVENUE,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4424391,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,1:30,BRONX,10457,40.845642,-73.89771,"(40.845642, -73.89771)",EAST 176 STREET,BATHGATE AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4424266,Sedan,,,, +06/06/2021,6:15,MANHATTAN,10003,40.735645,-73.98546,"(40.735645, -73.98546)",,,201 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4423903,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,0:01,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",NEWTOWN AVENUE,31 STREET,,3,0,0,0,0,0,3,0,View Obstructed/Limited,,,,,4423823,Taxi,,,, +06/06/2021,18:00,QUEENS,11365,40.741833,-73.80545,"(40.741833, -73.80545)",,,57-18 163 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424102,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,17:30,BROOKLYN,11226,40.650887,-73.96466,"(40.650887, -73.96466)",CATON AVENUE,PARADE PLACE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4424906,Sedan,Bike,,, +06/06/2021,17:00,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4424215,Sedan,Sedan,Sedan,, +06/06/2021,16:30,BROOKLYN,11211,40.717422,-73.93914,"(40.717422, -73.93914)",,,302 JACKSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424061,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,2:25,STATEN ISLAND,10314,40.612633,-74.128555,"(40.612633, -74.128555)",,,1933 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424643,Sedan,,,, +06/06/2021,12:40,,,,,,Seagirt Boulevard,Beach 9 street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4424757,Sedan,Sedan,Sedan,Sedan, +06/06/2021,2:59,,,40.794243,-73.931145,"(40.794243, -73.931145)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424493,Sedan,Sedan,,, +06/03/2021,12:00,BRONX,10462,40.83477,-73.85394,"(40.83477, -73.85394)",,,1320 ODELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424847,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,3:06,,,40.78818,-73.81703,"(40.78818, -73.81703)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424127,,,,, +06/06/2021,23:00,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,17:25,,,,,,,,79 EAST DRIVE,2,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4424170,Bike,E-Scooter,,, +05/27/2021,4:14,,,40.816677,-73.893845,"(40.816677, -73.893845)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4424896,Sedan,Box Truck,Sedan,, +06/06/2021,5:23,QUEENS,11418,40.69761,-73.82005,"(40.69761, -73.82005)",130 STREET,92 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4424306,Sedan,Sedan,Sedan,, +06/06/2021,7:45,BRONX,10465,40.825226,-73.823685,"(40.825226, -73.823685)",,,2842 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424933,Sedan,,,, +06/05/2021,15:30,BROOKLYN,11234,,,,,,5100 Kings Plaza,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424993,Station Wagon/Sport Utility Vehicle,Bus,,, +10/05/2021,22:15,BROOKLYN,11212,40.661015,-73.90853,"(40.661015, -73.90853)",ROCKAWAY AVENUE,RIVERDALE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464502,Sedan,,,, +06/06/2021,1:15,BROOKLYN,11207,40.66314,-73.88003,"(40.66314, -73.88003)",LINDEN BOULEVARD,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424385,Sedan,,,, +06/06/2021,12:34,BROOKLYN,11217,0,0,"(0.0, 0.0)",SOUTH OXFORD STREET,FULTON STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4424813,Station Wagon/Sport Utility Vehicle,Bike,,, +06/06/2021,23:46,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",HULL AVENUE,EAST GUN HILL ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424292,,,,, +06/06/2021,0:33,,,40.67043,-73.928185,"(40.67043, -73.928185)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423942,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,9:25,,,40.725517,-73.896416,"(40.725517, -73.896416)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4424014,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,13:17,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4424426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,22:00,,,40.824085,-73.874344,"(40.824085, -73.874344)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424412,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,13:04,BROOKLYN,11213,40.669735,-73.93104,"(40.669735, -73.93104)",UTICA AVENUE,LINCOLN PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465027,Carry All,Sedan,,, +06/02/2021,16:05,QUEENS,11385,40.712864,-73.90531,"(40.712864, -73.90531)",,,60-04 METROPOLITAN AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424851,Sedan,Bike,,, +05/28/2021,18:44,,,,,,CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4424943,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/06/2021,8:30,BROOKLYN,11229,40.59548,-73.955765,"(40.59548, -73.955765)",,,2255 EAST 15 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4424503,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,6:35,,,40.57892,-73.97497,"(40.57892, -73.97497)",SHEEPSHEAD BAY ROAD,WEST 6 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425033,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,3:28,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,5,0,0,0,0,0,5,0,Other Vehicular,Driver Inattention/Distraction,,,,4424192,Sedan,,,, +06/06/2021,10:00,,,40.764267,-73.9158,"(40.764267, -73.9158)",38 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424712,Pick-up Truck,,,, +06/06/2021,19:25,,,40.70753,-73.96443,"(40.70753, -73.96443)",BEDFORD AVENUE,DIVISION AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424736,Sedan,,,, +06/06/2021,0:47,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",PROSPECT AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4423761,Taxi,scooter,,, +06/05/2021,17:00,BROOKLYN,11238,40.680237,-73.96425,"(40.680237, -73.96425)",WASHINGTON AVENUE,PACIFIC STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4424915,Sedan,Bike,,, +06/06/2021,17:51,BROOKLYN,11210,40.632915,-73.95033,"(40.632915, -73.95033)",,,135 AMERSFORT PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,,,4424231,Sedan,Sedan,Sedan,, +06/06/2021,6:30,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424261,Sedan,,,, +05/30/2021,15:00,,,40.686905,-73.94463,"(40.686905, -73.94463)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424830,Sedan,,,, +06/06/2021,2:11,,,40.631542,-74.14891,"(40.631542, -74.14891)",GRANITE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424113,Sedan,Taxi,Taxi,, +06/06/2021,18:00,BRONX,10469,40.87443,-73.852165,"(40.87443, -73.852165)",BOSTON ROAD,PEARSALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424438,Sedan,Sedan,,, +06/06/2021,18:00,BROOKLYN,11207,40.684513,-73.909386,"(40.684513, -73.909386)",MOFFAT STREET,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424149,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,23:00,MANHATTAN,10011,40.741665,-74.00293,"(40.741665, -74.00293)",,,347 WEST 16 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424889,Sedan,,,, +06/06/2021,0:25,,,40.77074,-73.87841,"(40.77074, -73.87841)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424240,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,0:00,BROOKLYN,11223,40.600388,-73.97359,"(40.600388, -73.97359)",,,155 LAKE STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4424000,Sedan,Sedan,Sedan,, +06/06/2021,1:45,,,40.67398,-73.899315,"(40.67398, -73.899315)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424380,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/06/2021,14:50,,,40.751522,-73.99396,"(40.751522, -73.99396)",8 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424448,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,16:57,,,40.688553,-73.962845,"(40.688553, -73.962845)",LAFAYETTE AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4424088,Station Wagon/Sport Utility Vehicle,Bike,,, +06/06/2021,11:15,BROOKLYN,11225,40.66769,-73.95732,"(40.66769, -73.95732)",,,1020 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424081,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,13:20,BROOKLYN,11208,40.679653,-73.88556,"(40.679653, -73.88556)",FULTON STREET,CLEVELAND STREET,,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4424403,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,0:00,,,40.556923,-74.17485,"(40.556923, -74.17485)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4424865,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/06/2021,18:20,BROOKLYN,11234,40.62601,-73.92471,"(40.62601, -73.92471)",AVENUE K,EAST 53 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424136,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,21:00,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",LEFFERTS BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4424196,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,7:40,,,40.736534,-73.85611,"(40.736534, -73.85611)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424784,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,23:53,,,40.642174,-74.02064,"(40.642174, -74.02064)",3 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424575,Sedan,,,, +06/05/2021,2:40,,,40.731964,-73.98816,"(40.731964, -73.98816)",EAST 12 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425023,Taxi,,,, +06/06/2021,0:00,,,,,,,,10 MORRIS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424226,Station Wagon/Sport Utility Vehicle,conedison,,, +06/06/2021,3:33,MANHATTAN,10016,40.74456,-73.971375,"(40.74456, -73.971375)",EAST 36 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424128,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,9:00,,,40.716652,-73.8259,"(40.716652, -73.8259)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4424956,Sedan,,,, +06/06/2021,17:00,QUEENS,11434,40.67439,-73.77939,"(40.67439, -73.77939)",,,131-07 160 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424518,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,20:52,BROOKLYN,11234,40.625965,-73.93319,"(40.625965, -73.93319)",KINGS HIGHWAY,TROY AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4424545,Sedan,Motorcycle,,, +06/06/2021,10:37,BROOKLYN,11212,40.661446,-73.92829,"(40.661446, -73.92829)",EAST 91 STREET,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424594,Sedan,,,, +06/06/2021,18:10,BROOKLYN,11229,40.600426,-73.941895,"(40.600426, -73.941895)",NOSTRAND AVENUE,AVENUE U,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424178,Sedan,Sedan,,, +10/05/2021,18:00,,,40.78801,-73.844734,"(40.78801, -73.844734)",11 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4464811,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,1:50,QUEENS,11413,40.651398,-73.75888,"(40.651398, -73.75888)",,,230-59 ROCKAWAY BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4423863,Sedan,Van Camper,,, +10/05/2021,0:00,,,40.66188,-73.94557,"(40.66188, -73.94557)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,13:15,BRONX,10474,40.81653,-73.88975,"(40.81653, -73.88975)",,,1241 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464572,Box Truck,Van,,, +10/05/2021,7:46,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464827,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,23:00,,,40.64137,-73.87729,"(40.64137, -73.87729)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4464491,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,8:20,,,40.771477,-73.8173,"(40.771477, -73.8173)",149 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464445,Sedan,,,, +09/23/2021,7:04,,,40.640625,-74.014984,"(40.640625, -74.014984)",58 STREET,,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4464930,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,10:26,BROOKLYN,11232,40.648045,-74.00009,"(40.648045, -74.00009)",40 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464956,Box Truck,,,, +10/05/2021,18:24,BRONX,10453,40.852882,-73.91561,"(40.852882, -73.91561)",,,1847 LORING PLACE SOUTH,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4464598,Station Wagon/Sport Utility Vehicle,Bus,,, +10/05/2021,20:40,BROOKLYN,11226,40.634907,-73.96132,"(40.634907, -73.96132)",EAST 17 STREET,FOSTER AVENUE,,1,0,1,0,0,0,0,0,,,,,,4464741,Sedan,,,, +10/05/2021,15:20,,,40.708942,-73.941765,"(40.708942, -73.941765)",HUMBOLDT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464520,Sedan,Sedan,,, +05/25/2021,22:09,BRONX,10472,40.828514,-73.879974,"(40.828514, -73.879974)",,,1500 WESTCHESTER AVENUE,0,1,0,1,0,0,0,0,Unspecified,,,,,4420918,Sedan,,,, +10/04/2021,21:00,BROOKLYN,11208,40.67994,-73.88468,"(40.67994, -73.88468)",ELTON STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465049,Sedan,,,, +10/05/2021,20:15,QUEENS,11102,40.771984,-73.91891,"(40.771984, -73.91891)",HOYT AVENUE NORTH,28 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4464883,Sedan,Sedan,,, +10/05/2021,17:46,MANHATTAN,10065,40.765606,-73.97203,"(40.765606, -73.97203)",,,800 5 AVENUE,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4464566,Sedan,Sedan,,, +06/21/2021,6:00,BROOKLYN,11237,40.696903,-73.91907,"(40.696903, -73.91907)",,,282 WILSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464889,Sedan,,,, +10/05/2021,6:20,QUEENS,11362,40.758343,-73.73062,"(40.758343, -73.73062)",MARATHON PARKWAY,60 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4464263,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,23:20,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465015,Taxi,,,, +10/02/2021,5:30,BROOKLYN,11221,40.68685,-73.92349,"(40.68685, -73.92349)",,,93 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,18:17,MANHATTAN,10027,40.814556,-73.96249,"(40.814556, -73.96249)",,,500 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464473,Sedan,,,, +10/05/2021,12:07,MANHATTAN,10029,40.792725,-73.947395,"(40.792725, -73.947395)",,,105 EAST 106 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4464633,Sedan,Sedan,,, +10/05/2021,12:01,BRONX,10456,40.82935,-73.90254,"(40.82935, -73.90254)",,,1185 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4464366,Sedan,,,, +10/05/2021,12:00,MANHATTAN,10019,40.768433,-73.98696,"(40.768433, -73.98696)",,,440 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464621,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/05/2021,7:00,BROOKLYN,11234,40.609287,-73.91275,"(40.609287, -73.91275)",,,2228 EAST 57 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464986,Station Wagon/Sport Utility Vehicle,Bus,,, +10/05/2021,20:45,,,40.71942,-73.820656,"(40.71942, -73.820656)",VLEIGH PLACE,78 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4464812,Sedan,Sedan,,, +10/05/2021,15:40,QUEENS,11414,40.659172,-73.839874,"(40.659172, -73.839874)",CROSS BAY BOULEVARD,159 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,19:30,BROOKLYN,11212,40.661156,-73.90759,"(40.661156, -73.90759)",RIVERDALE AVENUE,THATFORD AVENUE,,1,0,1,0,0,0,0,0,,,,,,4464545,,,,, +10/05/2021,17:00,,,40.722057,-73.80279,"(40.722057, -73.80279)",UNION TURNPIKE,165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464706,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,16:15,QUEENS,11691,40.604244,-73.74342,"(40.604244, -73.74342)",,,745 CEDAR LAWN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464583,Sedan,,,, +10/05/2021,9:32,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464407,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,10:00,BRONX,10473,40.81351,-73.86019,"(40.81351, -73.86019)",,,411 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464436,Sedan,Sedan,,, +10/05/2021,8:00,QUEENS,11426,40.72867,-73.720924,"(40.72867, -73.720924)",247 STREET,88 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464335,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,20:50,MANHATTAN,10024,40.783844,-73.979996,"(40.783844, -73.979996)",WEST 79 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4465069,Sedan,Sedan,Sedan,, +10/05/2021,9:59,BRONX,10454,40.810947,-73.927155,"(40.810947, -73.927155)",EAST 138 STREET,LINCOLN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464591,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,19:10,,,40.60589,-74.07427,"(40.60589, -74.07427)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4464499,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/02/2021,11:00,,,40.8636899,-73.9170643,"(40.8636899, -73.9170643)",WEST 207 STREET,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4465003,Sedan,Sedan,Sedan,Sedan,Sedan +10/05/2021,13:13,BROOKLYN,11214,40.590527,-73.99292,"(40.590527, -73.99292)",,,1875 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4464409,Sedan,,,, +10/05/2021,8:55,QUEENS,11357,40.77883,-73.80136,"(40.77883, -73.80136)",,,160-62 21 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464446,Sedan,,,, +10/05/2021,17:25,QUEENS,11373,40.730064,-73.87157,"(40.730064, -73.87157)",WOODHAVEN BOULEVARD,60 DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464746,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,7:00,,,40.82892,-73.83717,"(40.82892, -73.83717)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464660,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,17:39,BROOKLYN,11211,40.710243,-73.9584,"(40.710243, -73.9584)",HAVEMEYER STREET,BORINQUEN PLACE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4515392,,,,, +10/05/2021,8:04,MANHATTAN,10010,40.738216,-73.98568,"(40.738216, -73.98568)",GRAMERCY PARK NORTH,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464332,Station Wagon/Sport Utility Vehicle,Bus,,, +10/05/2021,6:34,BRONX,10474,40.817753,-73.888664,"(40.817753, -73.888664)",HUNTS POINT AVENUE,GILBERT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464552,Sedan,Sedan,,, +10/05/2021,0:47,BRONX,10457,40.83648,-73.897736,"(40.83648, -73.897736)",CLAREMONT PARKWAY,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4464360,Sedan,Sedan,,, +10/05/2021,19:40,BRONX,10453,40.85078,-73.91222,"(40.85078, -73.91222)",WEST 177 STREET,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4464597,Sedan,,,, +10/05/2021,5:18,BROOKLYN,11203,40.651108,-73.94283,"(40.651108, -73.94283)",EAST 37 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464322,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,13:47,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4464452,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,12:15,MANHATTAN,10001,40.74707,-73.99107,"(40.74707, -73.99107)",,,128 WEST 29 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464657,Box Truck,Ambulance,,, +10/05/2021,17:29,,,40.646515,-73.958115,"(40.646515, -73.958115)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464580,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,13:00,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4464389,Sedan,Sedan,,, +09/29/2021,16:30,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4464955,Sedan,,,, +10/01/2021,16:50,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464898,E-Scooter,E-Bike,,, +10/05/2021,15:15,,,40.626373,-73.99754,"(40.626373, -73.99754)",14 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4464505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,18:52,MANHATTAN,10003,40.73705,-73.99285,"(40.73705, -73.99285)",,,79 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4464485,Flat Rack,Taxi,,, +10/05/2021,0:00,MANHATTAN,10027,40.81151,-73.94649,"(40.81151, -73.94649)",WEST 129 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4464767,Sedan,,,, +10/05/2021,19:50,BRONX,10454,40.804256,-73.9193,"(40.804256, -73.9193)",EAST 134 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464852,Ambulance,Sedan,,, +10/05/2021,8:40,BROOKLYN,11236,40.645626,-73.89763,"(40.645626, -73.89763)",FLATLANDS AVENUE,EAST 101 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464512,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,7:05,BROOKLYN,11207,40.671715,-73.8882,"(40.671715, -73.8882)",BELMONT AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464385,Sedan,Sedan,,, +10/05/2021,9:45,QUEENS,11377,40.746998,-73.89646,"(40.746998, -73.89646)",38 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464349,Garbage or Refuse,Taxi,,, +10/05/2021,8:30,BROOKLYN,11232,40.6572,-74.004684,"(40.6572, -74.004684)",3 AVENUE,33 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464989,Sedan,Sedan,,, +10/05/2021,9:00,,,40.73807,-73.93756,"(40.73807, -73.93756)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464608,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,23:13,BROOKLYN,11230,40.615406,-73.97424,"(40.615406, -73.97424)",,,1463 MC DONALD AVENUE,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4464693,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,9:00,QUEENS,11378,40.722622,-73.89368,"(40.722622, -73.89368)",69 STREET,59 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,15:53,BROOKLYN,11229,40.59592,-73.941025,"(40.59592, -73.941025)",AVENUE W,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464530,Dump,,,, +04/02/2022,7:00,,,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515709,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,17:00,QUEENS,11373,40.74646,-73.878105,"(40.74646, -73.878105)",,,41-42 FORLEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464571,Sedan,Sedan,,, +10/05/2021,9:05,,,,,,BRUCKNER BOULEVARD,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4464345,Van,Sedan,,, +10/05/2021,6:10,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464300,Sedan,Sedan,,, +10/05/2021,18:45,QUEENS,11365,40.73169,-73.80509,"(40.73169, -73.80509)",164 STREET,JEWEL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4464456,Sedan,,,, +10/05/2021,14:30,BROOKLYN,11222,40.73051,-73.94341,"(40.73051, -73.94341)",,,330 MONITOR STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464535,Sedan,Sedan,,, +10/05/2021,13:10,BROOKLYN,11201,,,,FLATBUSH AVENUE EXTENSION,FULTON STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464423,Sedan,E-Scooter,,, +10/01/2021,11:50,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4464910,Box Truck,Sedan,Sedan,, +04/02/2022,12:15,QUEENS,11435,40.695976,-73.808975,"(40.695976, -73.808975)",,,97-11 BRISBIN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4515966,Sedan,Sedan,,, +10/05/2021,16:04,,,,,,GRAND CENTRAL PARKWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464786,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/30/2021,11:10,,,40.670887,-73.93649,"(40.670887, -73.93649)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4465028,AMBULANCE,Sedan,,, +10/05/2021,12:15,BROOKLYN,11203,40.645622,-73.929726,"(40.645622, -73.929726)",,,1109 UTICA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4464476,Sedan,Tow Truck / Wrecker,,, +10/05/2021,10:51,MANHATTAN,10016,40.750744,-73.978676,"(40.750744, -73.978676)",,,99 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464829,Sedan,,,, +10/05/2021,5:45,BROOKLYN,11211,40.712265,-73.95548,"(40.712265, -73.95548)",GRAND STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,,,,,,4465131,,,,, +10/05/2021,14:57,BRONX,10451,40.820858,-73.912575,"(40.820858, -73.912575)",3 AVENUE,EAST 157 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464592,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,10:38,BROOKLYN,11211,40.7198,-73.953476,"(40.7198, -73.953476)",DRIGGS AVENUE,NORTH 12 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464368,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,17:00,BRONX,10472,40.82615,-73.87766,"(40.82615, -73.87766)",BOYNTON AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464638,Station Wagon/Sport Utility Vehicle,Bus,,, +04/02/2022,0:28,,,40.67019,-73.93935,"(40.67019, -73.93935)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4515820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/05/2021,21:30,QUEENS,11434,40.67165,-73.76382,"(40.67165, -73.76382)",180 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4464586,Sedan,Sedan,Sedan,Sedan,Sedan +10/05/2021,7:20,BROOKLYN,11234,40.620125,-73.94081,"(40.620125, -73.94081)",KINGS HIGHWAY,AVENUE M,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464355,Sedan,Sedan,,, +10/05/2021,10:42,MANHATTAN,10016,40.74668,-73.9745,"(40.74668, -73.9745)",2 AVENUE,EAST 37 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464410,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/05/2021,18:42,STATEN ISLAND,10301,40.64512,-74.091225,"(40.64512, -74.091225)",,,47 VANBUREN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464698,Sedan,,,, +10/05/2021,21:29,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",CANAL STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,9:15,MANHATTAN,10006,40.707966,-74.013596,"(40.707966, -74.013596)",GREENWICH STREET,RECTOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464337,Box Truck,Box Truck,,, +09/28/2021,19:00,,,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4465033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,10:30,QUEENS,11358,40.750134,-73.80751,"(40.750134, -73.80751)",OAK AVENUE,ROSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464815,Sedan,,,, +10/05/2021,11:35,MANHATTAN,10003,40.726868,-73.988914,"(40.726868, -73.988914)",,,88 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464519,Ambulance,,,, +10/02/2021,8:50,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464924,Sedan,Box Truck,,, +10/05/2021,5:35,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,20:40,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464550,Sedan,Tractor Truck Gasoline,,, +10/05/2021,16:58,BRONX,10474,40.815,-73.89402,"(40.815, -73.89402)",GARRISON AVENUE,LONGWOOD AVENUE,,2,0,2,0,0,0,0,0,View Obstructed/Limited,,,,,4464567,Van,,,, +09/29/2021,20:25,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465020,Sedan,,,, +10/05/2021,9:23,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464722,Sedan,,,, +10/05/2021,16:00,,,40.70215,-73.82033,"(40.70215, -73.82033)",132 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464498,Sedan,Sedan,,, +09/24/2021,13:45,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",PACIFIC STREET,UTICA AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4465070,Bike,Sedan,,, +10/05/2021,17:25,BRONX,10459,40.82099,-73.89589,"(40.82099, -73.89589)",EAST 163 STREET,KELLY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4464561,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,13:00,BRONX,10460,40.839996,-73.86832,"(40.839996, -73.86832)",EAST TREMONT AVENUE,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464406,Sedan,Sedan,,, +10/05/2021,8:00,QUEENS,11423,40.708927,-73.77733,"(40.708927, -73.77733)",JAMAICA AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464331,Sedan,,,, +10/05/2021,17:30,MANHATTAN,10017,40.755356,-73.977425,"(40.755356, -73.977425)",EAST 46 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4464624,Sedan,E-Bike,,, +10/05/2021,19:00,QUEENS,11369,40.76052,-73.87379,"(40.76052, -73.87379)",95 STREET,31 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4464748,Sedan,E-Bike,,, +10/05/2021,17:14,,,40.879055,-73.851875,"(40.879055, -73.851875)",,,EAST 218 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,,,,4464448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,14:50,BRONX,10462,40.83419,-73.84525,"(40.83419, -73.84525)",NEWBOLD AVENUE,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464435,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,19:30,QUEENS,11385,40.70245,-73.89837,"(40.70245, -73.89837)",,,60-21 69 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464668,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,22:45,BROOKLYN,11207,40.68011,-73.89599,"(40.68011, -73.89599)",VERMONT STREET,SUNNYSIDE AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4465046,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,13:35,QUEENS,11432,40.7088,-73.789474,"(40.7088, -73.789474)",,,90-31 171 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,19:35,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464527,Sedan,,,, +10/04/2021,15:50,QUEENS,11432,40.708668,-73.80393,"(40.708668, -73.80393)",,,87-10 155 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464980,Moped,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,1:53,BROOKLYN,11237,40.707653,-73.921776,"(40.707653, -73.921776)",SAINT NICHOLAS AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464890,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,12:30,QUEENS,11368,40.747066,-73.8569,"(40.747066, -73.8569)",,,46-20 108 STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464540,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/05/2021,11:15,BROOKLYN,11203,40.65166,-73.92841,"(40.65166, -73.92841)",,,365 EAST 52 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464477,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,16:11,MANHATTAN,10016,40.742252,-73.97769,"(40.742252, -73.97769)",EAST 30 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464832,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/05/2021,15:28,BRONX,10461,40.854015,-73.843506,"(40.854015, -73.843506)",,,2025 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4464880,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,11:15,BROOKLYN,11206,40.70915,-73.93955,"(40.70915, -73.93955)",,,210 SCHOLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464899,Sedan,Pick-up Truck,,, +10/05/2021,16:40,,,40.598976,-73.97602,"(40.598976, -73.97602)",WEST 4 STREET,,,1,0,1,0,0,0,0,0,,,,,,4464506,,,,, +12/10/2021,18:00,,,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,,,2,0,0,0,1,0,1,0,Other Vehicular,Other Vehicular,,,,4486004,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/02/2022,0:00,BRONX,10467,40.873806,-73.86929,"(40.873806, -73.86929)",,,3317 BARKER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Backing Unsafely,,,,4516203,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,23:24,QUEENS,11385,40.70041,-73.90368,"(40.70041, -73.90368)",HANCOCK STREET,SENECA AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516170,E-Bike,,,, +04/02/2022,1:25,,,40.708763,-73.99929,"(40.708763, -73.99929)",SOUTH STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515440,TOW TRUCK,Sedan,,, +04/02/2022,0:53,QUEENS,11379,40.724606,-73.8789,"(40.724606, -73.8789)",,,61-08 80 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4515775,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,6:39,MANHATTAN,10035,40.797676,-73.93729,"(40.797676, -73.93729)",EAST 117 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516030,Sedan,Pick-up Truck,,, +04/02/2022,22:39,,,40.795326,-73.9713,"(40.795326, -73.9713)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515892,Sedan,Sedan,,, +04/01/2022,18:05,BRONX,10472,40.830822,-73.88211,"(40.830822, -73.88211)",,,1283 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4516141,Sedan,Motorscooter,,, +03/27/2022,14:00,BRONX,10452,40.83823,-73.91866,"(40.83823, -73.91866)",,,12 EAST CLARKE PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4516283,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/02/2022,2:00,QUEENS,11372,40.75198,-73.882835,"(40.75198, -73.882835)",35 AVENUE,84 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4515481,Sedan,Taxi,Sedan,, +04/02/2022,16:04,BROOKLYN,11211,40.711903,-73.94902,"(40.711903, -73.94902)",LORIMER STREET,POWERS STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515905,Sedan,Bike,,, +03/30/2022,18:44,BRONX,10473,40.821804,-73.87664,"(40.821804, -73.87664)",STORY AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,7:20,,,40.732555,-73.92509,"(40.732555, -73.92509)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516270,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/02/2022,22:20,BROOKLYN,11207,40.678738,-73.89887,"(40.678738, -73.89887)",BUSHWICK AVENUE,FANCHON PLACE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4516097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,11:50,BROOKLYN,11206,40.706917,-73.93972,"(40.706917, -73.93972)",JOHNSON AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515495,Sedan,Sedan,,, +04/02/2022,9:50,QUEENS,11377,40.73662,-73.89417,"(40.73662, -73.89417)",,,50-15 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515666,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,10:44,,,40.823257,-73.94293,"(40.823257, -73.94293)",WEST 145 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515979,Van,,,, +04/01/2022,5:49,QUEENS,11691,40.60555,-73.75629,"(40.60555, -73.75629)",,,22-30 MOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516007,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,16:44,,,40.72142,-73.99904,"(40.72142, -73.99904)",BROOME STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516035,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,9:45,BRONX,10466,40.889057,-73.829346,"(40.889057, -73.829346)",,,1600 EAST 233 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4516048,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/02/2022,15:38,QUEENS,11355,40.762226,-73.81532,"(40.762226, -73.81532)",,,149-17 41 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515602,Sedan,,,, +04/02/2022,18:15,,,40.691753,-73.966576,"(40.691753, -73.966576)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515529,Station Wagon/Sport Utility Vehicle,Bike,,, +04/02/2022,13:20,BRONX,10456,40.83354,-73.89631,"(40.83354, -73.89631)",PROSPECT AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515559,Sedan,Moped,,, +04/02/2022,4:10,BROOKLYN,11201,40.69346,-73.9782,"(40.69346, -73.9782)",,,271 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4515530,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,18:04,QUEENS,11435,40.713043,-73.82334,"(40.713043, -73.82334)",,,82-35 134 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4516253,Sedan,,,, +04/02/2022,19:35,BROOKLYN,11210,40.636448,-73.94513,"(40.636448, -73.94513)",NEW YORK AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515651,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,14:00,QUEENS,11372,40.7568,-73.873665,"(40.7568, -73.873665)",JUNCTION BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515509,Sedan,Sedan,,, +04/01/2022,14:33,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4516047,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,7:50,BROOKLYN,11233,,,,thomas s. boyland st,dean street,,1,0,0,0,0,0,1,0,Unspecified,,,,,4464711,Sedan,,,, +04/02/2022,23:30,QUEENS,11419,40.690247,-73.82497,"(40.690247, -73.82497)",120 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515879,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,3:00,BROOKLYN,11211,40.714455,-73.93502,"(40.714455, -73.93502)",,,1027 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515912,Box Truck,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,4:55,BROOKLYN,11207,40.654793,-73.88999,"(40.654793, -73.88999)",GEORGIA AVENUE,WORTMAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516082,Sedan,,,, +03/25/2022,21:55,MANHATTAN,10012,40.72306,-73.99302,"(40.72306, -73.99302)",,,250 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516011,Sedan,Sedan,,, +04/02/2022,18:20,BROOKLYN,11232,40.660595,-73.995224,"(40.660595, -73.995224)",,,220 23 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515524,Sedan,Dump,,, +04/02/2022,11:30,,,40.66366,-73.90146,"(40.66366, -73.90146)",LIVONIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515621,Sedan,Flat Bed,,, +04/02/2022,19:00,,,40.746864,-73.87717,"(40.746864, -73.87717)",ELMHURST AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4515788,Sedan,Sedan,Sedan,Sedan, +03/31/2022,7:40,,,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4516005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,19:00,BRONX,10466,40.889027,-73.86316,"(40.889027, -73.86316)",,,3984 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516158,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,13:35,BROOKLYN,11223,40.605877,-73.98598,"(40.605877, -73.98598)",KINGS HIGHWAY,WEST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515667,Sedan,,,, +04/02/2022,19:42,BROOKLYN,11207,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,LIVONIA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515742,,,,, +04/02/2022,16:00,BRONX,10463,40.88379,-73.911606,"(40.88379, -73.911606)",WEST 232 STREET,NETHERLAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4516258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,14:35,,,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4515541,Motorcycle,Pick-up Truck,,, +04/02/2022,3:10,BRONX,10466,40.884064,-73.8513,"(40.884064, -73.8513)",,,1037 EAST 224 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516139,Sedan,,,, +04/01/2022,10:30,MANHATTAN,10013,40.71632,-73.99631,"(40.71632, -73.99631)",,,155 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516020,Sedan,,,, +04/02/2022,2:42,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4516041,Sedan,Sedan,,, +03/30/2022,19:32,BROOKLYN,11201,40.689857,-73.99842,"(40.689857, -73.99842)",HICKS STREET,AMITY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4516128,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +04/02/2022,15:44,,,40.80834,-73.92775,"(40.80834, -73.92775)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4516235,Sedan,,,, +04/02/2022,19:36,,,40.82451,-73.95186,"(40.82451, -73.95186)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515834,Station Wagon/Sport Utility Vehicle,Moped,,, +04/01/2022,18:30,,,40.655632,-73.95987,"(40.655632, -73.95987)",PARKSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516179,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,15:40,,,,,,CROSS BAY BOULEVARD,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4515907,Sedan,Sedan,,, +04/02/2022,22:01,,,40.75887,-73.82064,"(40.75887, -73.82064)",SANFORD AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515763,Sedan,Bike,,, +03/30/2022,14:09,QUEENS,11691,40.59514,-73.754,"(40.59514, -73.754)",BEACH 20 STREET,SEAGIRT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516000,Sedan,Bus,,, +04/02/2022,3:00,BRONX,10465,40.812595,-73.82705,"(40.812595, -73.82705)",,,198 EMERSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516293,Motorcycle,,,, +04/02/2022,20:12,,,40.735325,-73.98987,"(40.735325, -73.98987)",EAST 15 STREET,UNION SQUARE EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515678,Taxi,Bus,,, +04/02/2022,1:45,BRONX,10472,40.826794,-73.881615,"(40.826794, -73.881615)",,,1138 COLGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516146,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,9:00,MANHATTAN,10001,40.744946,-73.99133,"(40.744946, -73.99133)",,,777 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,,4516056,Sedan,Sedan,Sedan,, +04/24/2022,17:01,BROOKLYN,11234,40.62135,-73.91747,"(40.62135, -73.91747)",,,2320 RALPH AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4522068,Sedan,,,, +04/02/2022,23:10,QUEENS,11106,40.76221,-73.92298,"(40.76221, -73.92298)",,,31-61 33 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4515948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,21:50,MANHATTAN,10001,40.75462,-73.99713,"(40.75462, -73.99713)",WEST 35 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515778,Sedan,Sedan,,, +04/02/2022,17:50,QUEENS,11420,40.68083,-73.827194,"(40.68083, -73.827194)",109 AVENUE,113 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4515949,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,11:52,BROOKLYN,11211,40.714455,-73.935295,"(40.714455, -73.935295)",METROPOLITAN AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,11:15,BROOKLYN,11225,40.659016,-73.95673,"(40.659016, -73.95673)",BEDFORD AVENUE,RUTLAND ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516185,Motorbike,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,1:00,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515451,Sedan,Sedan,Sedan,Sedan, +03/29/2022,5:35,,,40.553123,-74.177155,"(40.553123, -74.177155)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4516263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,16:00,BROOKLYN,11226,40.64701,-73.95812,"(40.64701, -73.95812)",,,995 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4515731,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,17:30,,,40.735313,-73.994125,"(40.735313, -73.994125)",EAST 13 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516112,Taxi,E-Bike,,, +04/02/2022,12:15,BROOKLYN,11225,40.666344,-73.95203,"(40.666344, -73.95203)",,,250 CROWN STREET,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4516169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,10:55,STATEN ISLAND,10307,40.51107,-74.24669,"(40.51107, -74.24669)",CRAIG AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4515483,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,20:30,BRONX,10472,40.826656,-73.8739,"(40.826656, -73.8739)",WATSON AVENUE,MORRISON AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4516195,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/02/2022,8:45,MANHATTAN,10003,40.735214,-73.99172,"(40.735214, -73.99172)",EAST 14 STREET,UNION SQUARE WEST,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4515677,Bus,,,, +04/02/2022,9:00,,,40.70952,-73.95433,"(40.70952, -73.95433)",SOUTH 3 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4515899,Carry All,Sedan,,, +03/27/2022,4:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516271,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,11:00,,,40.776905,-73.84623,"(40.776905, -73.84623)",COLLEGE POINT BOULEVARD,25 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515769,Sedan,,,, +03/30/2022,12:00,QUEENS,11378,40.72593,-73.91837,"(40.72593, -73.91837)",56 ROAD,50 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516092,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,0:27,BRONX,10473,40.82389,-73.87461,"(40.82389, -73.87461)",,,1600 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516145,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,8:30,STATEN ISLAND,10305,40.616035,-74.073944,"(40.616035, -74.073944)",TOMPKINS AVENUE,LYNHURST AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4515821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,16:39,QUEENS,11365,40.733097,-73.804985,"(40.733097, -73.804985)",164 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516257,4 dr sedan,Sedan,,, +04/02/2022,17:16,STATEN ISLAND,10312,40.544487,-74.176506,"(40.544487, -74.176506)",ARDEN AVENUE,ANNADALE ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515537,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,12:29,MANHATTAN,10036,40.755516,-73.98363,"(40.755516, -73.98363)",WEST 43 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4515569,Station Wagon/Sport Utility Vehicle,Moped,,, +03/28/2022,18:10,MANHATTAN,10013,40.71771,-73.99952,"(40.71771, -73.99952)",,,225 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516016,Sedan,Sedan,,, +04/02/2022,8:49,,,40.70183,-73.91933,"(40.70183, -73.91933)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515717,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/27/2022,3:30,MANHATTAN,10014,40.72911,-74.01068,"(40.72911, -74.01068)",WEST STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4516069,Sedan,,,, +04/04/2020,15:00,,,40.790295,-73.9694,"(40.790295, -73.9694)",WEST 92 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516281,Sedan,Bus,,, +12/14/2021,12:30,QUEENS,11413,40.66098,-73.76391,"(40.66098, -73.76391)",,,146-56 183 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4487252,,,,, +04/02/2022,16:00,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",4 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,5:15,QUEENS,11432,40.706722,-73.806244,"(40.706722, -73.806244)",,,150-50 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515964,Sedan,Sedan,,, +03/29/2022,18:00,,,40.68389,-73.93823,"(40.68389, -73.93823)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516022,Sedan,,,, +04/02/2022,23:25,MANHATTAN,10036,40.756985,-73.987144,"(40.756985, -73.987144)",,,214 WEST 43 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515545,Sedan,Tractor Truck Diesel,,, +04/02/2022,14:57,,,,,,BROOKLYN BRIDGE,,,7,0,0,0,0,0,7,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4515785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +03/28/2022,16:55,,,40.64712,-74.01517,"(40.64712, -74.01517)",51 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516162,Sedan,,,, +07/02/2022,11:29,MANHATTAN,10031,40.817596,-73.95319,"(40.817596, -73.95319)",WEST 133 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4543014,Sedan,Sedan,,, +04/02/2022,8:48,,,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,1,0,1,0,0,0,0,0,,,,,,4516083,Sedan,,,, +04/02/2022,23:49,,,40.836403,-73.875595,"(40.836403, -73.875595)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4515696,Sedan,Sedan,Sedan,, +04/02/2022,17:44,STATEN ISLAND,10306,40.5758,-74.12734,"(40.5758, -74.12734)",,,3189 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4515809,Sedan,,,, +04/02/2022,6:35,BRONX,10472,40.828693,-73.87774,"(40.828693, -73.87774)",,,1550 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4516149,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,23:30,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516010,Sedan,Bus,,, +04/02/2022,10:30,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4515494,Sedan,Motorcycle,,, +03/14/2022,16:00,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516055,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,0:00,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515652,Sedan,Tractor Truck Diesel,,, +03/31/2022,22:30,MANHATTAN,10037,40.809494,-73.935814,"(40.809494, -73.935814)",PARK AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516029,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,18:05,BRONX,10469,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4515971,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,17:30,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4515878,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/02/2022,19:22,,,40.716034,-73.80416,"(40.716034, -73.80416)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516249,Sedan,Sedan,,, +04/02/2022,12:29,BROOKLYN,11211,40.71052,-73.95821,"(40.71052, -73.95821)",,,187 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515910,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,8:41,BRONX,10472,40.826656,-73.8739,"(40.826656, -73.8739)",MORRISON AVENUE,WATSON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4516150,Bus,Sedan,,, +04/02/2022,17:42,,,40.68064,-73.95338,"(40.68064, -73.95338)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4515740,Bus,Sedan,,, +04/01/2022,20:50,,,40.816044,-73.91195,"(40.816044, -73.91195)",SAINT ANNS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516071,Sedan,,,, +04/01/2022,10:40,BRONX,10459,40.8205,-73.891075,"(40.8205, -73.891075)",,,925 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516129,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,12:37,BROOKLYN,11201,40.69538,-73.985115,"(40.69538, -73.985115)",,,11 METROTECH CENTER,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,16:04,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516034,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,13:40,QUEENS,11372,40.754776,-73.892815,"(40.754776, -73.892815)",NORTHERN BOULEVARD,74 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4515508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,9:31,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504720,Sedan,,,, +12/20/2021,18:56,MANHATTAN,10024,40.779476,-73.97358,"(40.779476, -73.97358)",CENTRAL PARK WEST,WEST 77 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491331,Box Truck,Sedan,,, +12/28/2021,15:00,BROOKLYN,11234,40.617626,-73.92869,"(40.617626, -73.92869)",,,1757 EAST 48 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491312,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,12:10,BROOKLYN,11204,40.615578,-73.994995,"(40.615578, -73.994995)",,,1774 72 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490986,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/29/2021,13:06,QUEENS,11373,40.730274,-73.88722,"(40.730274, -73.88722)",,,74-25 GRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,19:00,QUEENS,11423,40.71094,-73.77885,"(40.71094, -73.77885)",,,90-05 182 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4491632,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +12/30/2021,11:00,,,40.789497,-73.78225,"(40.789497, -73.78225)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4490638,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,6:00,QUEENS,11106,40.757393,-73.93547,"(40.757393, -73.93547)",37 AVENUE,24 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491113,Sedan,Sedan,,, +12/30/2021,14:35,BROOKLYN,11219,40.636456,-74.000534,"(40.636456, -74.000534)",FORT HAMILTON PARKWAY,53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490968,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,18:35,,,40.840927,-73.912704,"(40.840927, -73.912704)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490954,Sedan,,,, +12/28/2021,21:26,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491308,Sedan,,,, +12/30/2021,18:02,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490870,E-Bike,,,, +12/31/2021,11:08,BRONX,10466,40.896694,-73.853516,"(40.896694, -73.853516)",BYRON AVENUE,EAST 237 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491165,Sedan,Sedan,Sedan,, +12/31/2021,12:50,BRONX,10463,40.884033,-73.89797,"(40.884033, -73.89797)",BAILEY AVENUE,WEST 238 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4491102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,0:11,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490855,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/29/2021,0:05,BROOKLYN,11210,40.622204,-73.94405,"(40.622204, -73.94405)",AVENUE L,EAST 32 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4490346,Sedan,Sedan,,, +12/20/2021,9:30,MANHATTAN,10029,40.78545,-73.946236,"(40.78545, -73.946236)",,,1895 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491226,Sedan,E-Scooter,,, +12/24/2021,16:40,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",39 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4491391,Sedan,Sedan,,, +12/30/2021,5:00,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",85 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490619,Sedan,,,, +12/30/2021,11:10,,,40.77652,-73.915924,"(40.77652, -73.915924)",23 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4491115,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,10:00,,,40.82269,-73.94947,"(40.82269, -73.94947)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Oversized Vehicle,,,,4490973,Station Wagon/Sport Utility Vehicle,fire truck,,, +12/31/2021,16:10,QUEENS,11354,40.75899,-73.83454,"(40.75899, -73.83454)",COLLEGE POINT BOULEVARD,39 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491029,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,18:37,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490749,Station Wagon/Sport Utility Vehicle,Bus,,, +12/29/2021,23:40,,,,,,Pitkin avenue,Thomas S boylan,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4491173,Bike,Sedan,,, +12/31/2021,9:17,QUEENS,11435,,,,138 Street,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491634,Sedan,Box Truck,,, +12/29/2021,15:30,MANHATTAN,10022,40.758152,-73.9724,"(40.758152, -73.9724)",,,101 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490674,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,8:55,MANHATTAN,10038,40.711777,-73.99971,"(40.711777, -73.99971)",SAINT JAMES PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4491429,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/23/2021,17:01,,,40.610146,-74.099884,"(40.610146, -74.099884)",MILFORD DRIVE,,,1,0,0,0,0,0,1,0,Illnes,,,,,4491543,Sedan,,,, +12/31/2021,5:35,,,40.77279,-73.837135,"(40.77279, -73.837135)",ULMER STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490815,Sedan,Bus,,, +12/25/2021,13:00,BRONX,10471,40.911236,-73.90009,"(40.911236, -73.90009)",TYNDALL AVENUE,WEST 262 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4490897,Sedan,Sedan,,, +12/29/2021,17:30,BRONX,10463,,,,238 STREET,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490929,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,13:34,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491594,Sedan,Box Truck,,, +12/29/2021,5:15,,,40.710735,-73.961815,"(40.710735, -73.961815)",SOUTH 5 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,0:00,BRONX,10472,40.836708,-73.87527,"(40.836708, -73.87527)",EAST 177 STREET,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491074,Pick-up Truck,Sedan,,, +12/30/2021,1:06,BROOKLYN,11219,40.629013,-74.011635,"(40.629013, -74.011635)",,,6821 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Drugs (illegal),,,,,4490680,Sedan,,,, +12/30/2021,15:45,,,40.660847,-73.8403,"(40.660847, -73.8403)",CROSS BAY BOULEVARD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490868,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/31/2021,13:38,BROOKLYN,11235,40.585747,-73.948845,"(40.585747, -73.948845)",,,3090 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,10:49,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4491061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,23:38,BROOKLYN,11224,40.572784,-73.99597,"(40.572784, -73.99597)",SURF AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491354,Sedan,,,, +12/31/2021,4:26,BROOKLYN,11203,40.647655,-73.930954,"(40.647655, -73.930954)",,,569 EAST 49 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4491154,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +12/28/2021,13:46,,,40.58774,-73.809875,"(40.58774, -73.809875)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491290,Bus,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,21:43,,,40.685764,-73.9415,"(40.685764, -73.9415)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490890,Sedan,Sedan,,, +12/31/2021,12:00,BROOKLYN,11215,40.676014,-73.97947,"(40.676014, -73.97947)",,,716 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491423,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,3:49,,,40.672062,-73.925255,"(40.672062, -73.925255)",BUFFALO AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4490793,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/21/2021,8:20,BROOKLYN,11207,40.672344,-73.892746,"(40.672344, -73.892746)",,,2156 PITKIN AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4491271,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,12:29,QUEENS,11106,40.766064,-73.93089,"(40.766064, -73.93089)",21 STREET,31 DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490459,Ambulance,Bike,,, +12/31/2021,17:49,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491006,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,17:57,QUEENS,11366,40.736073,-73.77356,"(40.736073, -73.77356)",199 STREET,73 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491005,Sedan,Bike,,, +12/30/2021,4:35,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4490554,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,21:10,BROOKLYN,11236,40.64757,-73.89856,"(40.64757, -73.89856)",EAST 102 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4491214,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,11:30,BROOKLYN,11232,40.654953,-74.00703,"(40.654953, -74.00703)",37 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490716,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/28/2021,23:10,MANHATTAN,10026,40.800278,-73.95353,"(40.800278, -73.95353)",,,138 WEST 112 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491138,Ambulance,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,0:00,BROOKLYN,11211,40.708786,-73.954445,"(40.708786, -73.954445)",,,336 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4491507,Sedan,E-Bike,Sedan,, +12/24/2021,13:00,,,40.570835,-74.16983,"(40.570835, -74.16983)",RICHMOND AVENUE,FOREST HILL ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491106,Pick-up Truck,,,, +12/28/2021,1:12,MANHATTAN,10003,40.73129,-73.9904,"(40.73129, -73.9904)",4 AVENUE,EAST 10 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491461,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,22:04,,,40.711422,-73.77622,"(40.711422, -73.77622)",184 PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,11:15,QUEENS,11374,40.725147,-73.86971,"(40.725147, -73.86971)",WOODHAVEN BOULEVARD,62 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490961,Sedan,,,, +12/25/2021,9:30,BRONX,10452,40.834164,-73.922226,"(40.834164, -73.922226)",RIVER AVENUE,MCCLELLAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491193,Taxi,,,, +12/30/2021,9:30,,,40.765686,-73.82913,"(40.765686, -73.82913)",137 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490728,Pick-up Truck,UNKNOWN,,, +12/31/2021,6:31,,,40.76645,-73.9085,"(40.76645, -73.9085)",44 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4491401,Sedan,Sedan,,, +12/30/2021,13:00,,,40.62072,-74.029205,"(40.62072, -74.029205)",4 AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4490754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van,, +12/31/2021,13:10,BRONX,10451,40.824215,-73.909195,"(40.824215, -73.909195)",,,514 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,15:20,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4490769,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,17:13,,,40.664055,-73.9427,"(40.664055, -73.9427)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,8:45,BROOKLYN,11238,40.677513,-73.95913,"(40.677513, -73.95913)",CLASSON AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491494,Bike,Sedan,,, +12/25/2021,13:15,BRONX,10467,40.88008,-73.883606,"(40.88008, -73.883606)",,,9 EAST MOSHOLU PARKWAY NORTH,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4491038,Sedan,,,, +12/29/2021,19:25,BROOKLYN,11234,0,0,"(0.0, 0.0)",RALPH AVENUE,AVENUE J,,2,0,0,0,0,0,2,0,Physical Disability,,,,,4490501,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,8:00,BRONX,10468,40.868282,-73.90108,"(40.868282, -73.90108)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490909,Van,Bus,,, +12/29/2021,17:45,BRONX,10463,40.87729,-73.90633,"(40.87729, -73.90633)",,,2910 EXTERIOR STREET,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4490922,Sedan,Sedan,,, +12/14/2021,0:50,STATEN ISLAND,10305,40.616035,-74.073944,"(40.616035, -74.073944)",TOMPKINS AVENUE,LYNHURST AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4490941,Sedan,Sedan,,, +12/24/2021,14:00,BROOKLYN,11239,40.652462,-73.87658,"(40.652462, -73.87658)",,,590 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491238,Sedan,,,, +12/31/2021,15:45,BRONX,10466,40.880318,-73.841286,"(40.880318, -73.841286)",ELY AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491057,Sedan,,,, +12/29/2021,11:20,MANHATTAN,10075,40.776318,-73.962135,"(40.776318, -73.962135)",MADISON AVENUE,EAST 79 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4490523,Motorcycle,,,, +12/29/2021,19:05,QUEENS,11355,40.755745,-73.83076,"(40.755745, -73.83076)",SANFORD AVENUE,FRAME PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490507,,,,, +12/28/2021,15:24,BROOKLYN,11226,40.647995,-73.952774,"(40.647995, -73.952774)",VERONICA PLACE,ALBEMARLE ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4491338,Station Wagon/Sport Utility Vehicle,Bike,,, +12/30/2021,12:05,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490878,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,17:40,STATEN ISLAND,10306,40.56895,-74.12491,"(40.56895, -74.12491)",TYSENS LANE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491010,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,23:40,QUEENS,11426,40.723083,-73.72817,"(40.723083, -73.72817)",JAMAICA AVENUE,239 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490548,Sedan,Sedan,,, +12/30/2021,13:00,,,40.682537,-73.95002,"(40.682537, -73.95002)",NOSTRAND AVENUE,,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4491528,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,11:15,BRONX,10473,40.822914,-73.84893,"(40.822914, -73.84893)",,,784 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4490478,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,13:20,BROOKLYN,11208,40.66638,-73.86109,"(40.66638, -73.86109)",STANLEY AVENUE,FORBELL STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491243,Sedan,Sedan,,, +12/29/2021,6:45,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490768,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,9:15,,,,,,PLAZA DRIVE,WEST CLARKE PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425187,Sedan,Pick-up Truck,,, +12/31/2021,11:25,,,40.58774,-73.809875,"(40.58774, -73.809875)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4491514,Sedan,,,, +12/31/2021,12:43,BROOKLYN,11215,40.667847,-73.99404,"(40.667847, -73.99404)",3 AVENUE,15 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4490993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,15:10,,,40.795956,-73.97083,"(40.795956, -73.97083)",WEST 98 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491143,Sedan,Bike,,, +12/30/2021,1:35,QUEENS,11367,40.717323,-73.82496,"(40.717323, -73.82496)",,,135-09 UNION TURNPIKE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4490661,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,17:47,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491260,Sedan,,,, +12/29/2021,13:45,BROOKLYN,11207,40.670193,-73.88969,"(40.670193, -73.88969)",VAN SICLEN AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491297,Sedan,Dump,,, +12/31/2021,1:20,QUEENS,11367,40.7317,-73.82561,"(40.7317, -73.82561)",,,141-04 68 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491469,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,16:15,QUEENS,11435,40.69911,-73.81233,"(40.69911, -73.81233)",138 PLACE,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491617,Sedan,Taxi,,, +12/29/2021,6:30,,,40.557568,-74.207,"(40.557568, -74.207)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Failure to Yield Right-of-Way,,,,4490686,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/30/2021,1:30,BRONX,10456,40.821712,-73.90646,"(40.821712, -73.90646)",TRINITY AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490965,Sedan,,,, +12/30/2021,0:05,BROOKLYN,11235,40.589985,-73.95568,"(40.589985, -73.95568)",AVENUE Y,EAST 14 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,Unspecified,Unspecified,Unspecified,4490978,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +12/29/2021,18:30,QUEENS,11366,40.73223,-73.77856,"(40.73223, -73.77856)",193 STREET,75 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,11:30,,,,,,UNION TURNPIKE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4491202,Sedan,,,, +12/21/2021,0:00,,,40.89664,-73.88053,"(40.89664, -73.88053)",JEROME AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4491089,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,17:14,BROOKLYN,11201,40.693886,-73.999245,"(40.693886, -73.999245)",FURMAN STREET,JORALEMON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490733,Pick-up Truck,,,, +12/30/2021,9:26,MANHATTAN,10128,40.780754,-73.95258,"(40.780754, -73.95258)",EAST 89 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491230,Box Truck,E-Bike,,, +12/29/2021,23:57,BROOKLYN,11218,40.643745,-73.97009,"(40.643745, -73.97009)",BEVERLEY ROAD,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4491322,Taxi,Sedan,,, +12/29/2021,15:40,,,40.623886,-73.89559,"(40.623886, -73.89559)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Aggressive Driving/Road Rage,Unspecified,,,4490773,Taxi,Sedan,Sedan,, +12/29/2021,9:05,BROOKLYN,11210,40.622307,-73.94312,"(40.622307, -73.94312)",AVENUE L,NEW YORK AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490494,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/29/2021,23:30,BROOKLYN,11234,,,,Flatbush avenue,Belt parkway,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491042,Sedan,Sedan,,, +12/30/2021,0:12,QUEENS,11362,,,,,,263-07 57 avenue,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4490539,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/30/2021,11:05,,,40.82413,-73.94098,"(40.82413, -73.94098)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4490624,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,11:00,BROOKLYN,11208,40.677944,-73.87604,"(40.677944, -73.87604)",,,92 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491281,E-Bike,,,, +04/08/2022,12:30,QUEENS,11365,40.73037,-73.81092,"(40.73037, -73.81092)",,,70-30 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4522176,Sedan,,,, +12/31/2021,3:10,QUEENS,11412,40.691444,-73.75211,"(40.691444, -73.75211)",119 AVENUE,199 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4491652,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,17:50,,,40.645042,-73.99965,"(40.645042, -73.99965)",8 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491037,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,5:00,MANHATTAN,10011,40.737663,-73.99348,"(40.737663, -73.99348)",,,16 WEST 16 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4490946,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,13:05,,,,,,HORACE HARDING EXPRESSWAY,MAIN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Following Too Closely,,,,4490727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,16:40,QUEENS,11434,40.6769,-73.78158,"(40.6769, -73.78158)",BAISLEY BOULEVARD,LAKEVIEW LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,1:30,MANHATTAN,10011,40.741642,-73.997444,"(40.741642, -73.997444)",7 AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490910,Sedan,Van,,, +12/31/2021,18:00,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491073,Sedan,Sedan,,, +12/29/2021,20:15,QUEENS,11420,40.667736,-73.826614,"(40.667736, -73.826614)",150 AVENUE,114 PLACE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4490555,,,,, +12/24/2021,21:00,STATEN ISLAND,10304,40.62387,-74.07922,"(40.62387, -74.07922)",TOMPKINS AVENUE,TOMPKINS STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490937,Sedan,Sedan,,, +12/30/2021,6:44,,,,,,CATON AVENUE,caton ave ocean pkwy,,1,0,0,0,0,0,1,0,Unspecified,,,,,4490592,Sedan,,,, +12/30/2021,14:30,MANHATTAN,10038,40.709938,-74.0045,"(40.709938, -74.0045)",,,80 GOLD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490882,Sedan,,,, +12/29/2021,19:21,QUEENS,11358,40.757874,-73.788506,"(40.757874, -73.788506)",NORTHERN BOULEVARD,193 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490513,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,20:42,QUEENS,11355,40.75388,-73.822815,"(40.75388, -73.822815)",KISSENA BOULEVARD,CHERRY AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4490814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +12/31/2021,18:03,QUEENS,11377,40.753284,-73.90691,"(40.753284, -73.90691)",BROADWAY,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4491109,,,,, +12/27/2021,11:00,BROOKLYN,11206,40.70951,-73.95088,"(40.70951, -73.95088)",UNION AVENUE,TEN EYCK STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Backing Unsafely,,,,4491127,Sedan,,,, +12/29/2021,21:20,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490741,Sedan,Sedan,,, +12/28/2021,23:40,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491628,Station Wagon/Sport Utility Vehicle,Chassis Cab,Station Wagon/Sport Utility Vehicle,, +12/30/2021,21:10,,,40.71312,-73.83376,"(40.71312, -73.83376)",UNION TURNPIKE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4490760,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/27/2021,21:00,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491264,Station Wagon/Sport Utility Vehicle,,,, +10/03/2020,21:10,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4354571,Motorcycle,,,, +01/04/2021,17:50,,,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4381580,Bike,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,12:35,,,40.602947,-73.89932,"(40.602947, -73.89932)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491065,Sedan,Sedan,,, +12/27/2021,13:03,STATEN ISLAND,10304,40.626183,-74.07426,"(40.626183, -74.07426)",,,450 FRONT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4490942,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,22:20,QUEENS,11422,40.673798,-73.73179,"(40.673798, -73.73179)",MERRICK BOULEVARD,242 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490997,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,12:00,,,40.67772,-73.86486,"(40.67772, -73.86486)",ELDERTS LANE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4491301,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,2:30,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490809,Sedan,,,, +12/20/2021,8:58,MANHATTAN,10069,40.775013,-73.990776,"(40.775013, -73.990776)",RIVERSIDE BOULEVARD,WEST 63 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4491332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,3:30,BROOKLYN,11203,40.643604,-73.94301,"(40.643604, -73.94301)",CLARENDON ROAD,BROOKLYN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424080,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,21:00,BRONX,10454,40.8086,-73.909775,"(40.8086, -73.909775)",SAINT MARYS STREET,CONCORD AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4424212,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,17:00,,,40.85183,-73.91258,"(40.85183, -73.91258)",HARRISON AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4425380,Taxi,,,, +05/20/2021,22:35,QUEENS,11427,,,,,,89-77 VANDERVEER STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4418930,Pick-up Truck,Sedan,,, +05/29/2021,5:50,BRONX,10472,40.829468,-73.874756,"(40.829468, -73.874756)",,,1619 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4422101,,,,, +06/07/2021,8:50,,,40.698105,-73.7827,"(40.698105, -73.7827)",172 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Alcohol Involvement,,,4424564,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/07/2021,14:20,BRONX,10459,40.821075,-73.89004,"(40.821075, -73.89004)",,,1023 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425356,Sedan,Sedan,,, +06/07/2021,7:05,BRONX,10460,40.83677,-73.88597,"(40.83677, -73.88597)",EAST 174 STREET,VYSE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424681,Sedan,,,, +06/07/2021,16:30,BROOKLYN,11234,40.628407,-73.923996,"(40.628407, -73.923996)",AVENUE J,EAST 54 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424623,E-Bike,Sedan,,, +06/06/2021,21:35,,,40.660824,-73.95065,"(40.660824, -73.95065)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425266,E-Bike,Sedan,,, +06/03/2021,23:10,,,40.66725,-73.88799,"(40.66725, -73.88799)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,15:43,BROOKLYN,11207,40.65371,-73.89246,"(40.65371, -73.89246)",LOUISIANA AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425042,Sedan,Sedan,,, +06/07/2021,0:00,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424930,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,0:05,BROOKLYN,11205,40.697716,-73.967735,"(40.697716, -73.967735)",FLUSHING AVENUE,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4424151,Bike,,,, +06/07/2021,16:42,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424606,Sedan,,,, +06/06/2021,7:45,BROOKLYN,11220,40.64685,-74.019264,"(40.64685, -74.019264)",2 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425288,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:07,BRONX,10453,40.848255,-73.90976,"(40.848255, -73.90976)",WALTON AVENUE,EAST 176 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4424774,Moped,,,, +06/07/2021,8:00,,,40.691456,-73.9178,"(40.691456, -73.9178)",WOODBINE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424649,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,6:00,,,40.607555,-74.08711,"(40.607555, -74.08711)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424869,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,14:35,MANHATTAN,10027,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,LENOX AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4425098,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,14:45,MANHATTAN,10028,40.77731,-73.95841,"(40.77731, -73.95841)",,,115 EAST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425164,Sedan,Sedan,,, +06/07/2021,0:35,,,,,,MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4424218,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/07/2021,21:16,,,40.742474,-73.95277,"(40.742474, -73.95277)",50 AVENUE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424659,Sedan,,,, +06/07/2021,12:55,BROOKLYN,11207,40.668926,-73.88748,"(40.668926, -73.88748)",BLAKE AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425040,Sedan,Sedan,,, +06/06/2021,20:12,,,40.843105,-73.91044,"(40.843105, -73.91044)",MOUNT EDEN PARKWAY,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4425404,Station Wagon/Sport Utility Vehicle,Bike,,, +06/07/2021,9:30,MANHATTAN,10027,40.809605,-73.94981,"(40.809605, -73.94981)",,,253 WEST 125 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4425091,Pick-up Truck,,,, +06/07/2021,21:45,,,,,,Queens midtown expressway fontag,58 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4424836,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/29/2021,19:18,BROOKLYN,11220,40.645103,-74.01033,"(40.645103, -74.01033)",50 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490874,Sedan,,,, +06/07/2021,0:30,,,40.68056,-73.93458,"(40.68056, -73.93458)",BAINBRIDGE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424530,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:04,QUEENS,11430,40.66615,-73.80575,"(40.66615, -73.80575)",134 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424686,Sedan,,,, +06/05/2021,15:26,BROOKLYN,11203,40.65241,-73.9264,"(40.65241, -73.9264)",,,5403 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425247,Sedan,Sedan,,, +06/07/2021,16:45,QUEENS,11434,40.680523,-73.7633,"(40.680523, -73.7633)",MERRICK BOULEVARD,EVELETH ROAD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4424728,Sedan,Pick-up Truck,,, +06/07/2021,1:50,,,40.697536,-73.87106,"(40.697536, -73.87106)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4424783,Sedan,,,, +06/07/2021,15:25,STATEN ISLAND,10305,40.585487,-74.093124,"(40.585487, -74.093124)",,,1780 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424798,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,10:30,QUEENS,11419,40.69252,-73.81693,"(40.69252, -73.81693)",,,130-04 101 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424484,Sedan,,,, +06/07/2021,5:47,BRONX,10473,40.815403,-73.85871,"(40.815403, -73.85871)",LACOMBE AVENUE,UNDERHILL AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424413,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,15:15,BROOKLYN,11218,40.64305,-73.9764,"(40.64305, -73.9764)",EAST 4 STREET,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4425133,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/04/2021,14:37,BROOKLYN,11219,40.636692,-73.9832,"(40.636692, -73.9832)",,,4117 15 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425146,Sedan,Bike,,, +06/05/2021,22:10,QUEENS,11385,40.707092,-73.89724,"(40.707092, -73.89724)",FRESH POND ROAD,MADISON STREET,,2,0,1,0,0,0,1,0,Unspecified,Unspecified,,,,4425194,Station Wagon/Sport Utility Vehicle,Pedestrian,,, +06/07/2021,10:40,QUEENS,11375,40.711823,-73.83612,"(40.711823, -73.83612)",UNION TURNPIKE,MARKWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424464,Taxi,,,, +06/07/2021,4:12,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4424417,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,15:45,BROOKLYN,11207,40.664616,-73.894875,"(40.664616, -73.894875)",,,602 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,17:50,QUEENS,11411,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4418953,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/07/2021,14:00,QUEENS,11436,40.67875,-73.794,"(40.67875, -73.794)",146 STREET,119 AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4424519,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,8:25,,,40.86553,-73.86056,"(40.86553, -73.86056)",ALLERTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424299,Sedan,,,, +06/07/2021,14:28,STATEN ISLAND,10306,40.58185,-74.129395,"(40.58185, -74.129395)",ROCKLAND AVENUE,BURTON COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4424797,Sedan,Station Wagon/Sport Utility Vehicle,Bus,, +06/01/2021,19:41,,,40.57892,-73.97497,"(40.57892, -73.97497)",SHEEPSHEAD BAY ROAD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4425382,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,1:50,BROOKLYN,11236,40.64272,-73.90606,"(40.64272, -73.90606)",,,9220 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424637,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:30,BROOKLYN,11230,40.625595,-73.9576,"(40.625595, -73.9576)",AVENUE J,EAST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424665,Sedan,Bus,,, +06/01/2021,20:12,BRONX,10474,40.812775,-73.88701,"(40.812775, -73.88701)",,,623 COSTER STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4425257,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,8:30,BROOKLYN,11213,40.66777,-73.94514,"(40.66777, -73.94514)",BROOKLYN AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425314,Sedan,,,, +06/07/2021,18:50,STATEN ISLAND,10304,40.616543,-74.07818,"(40.616543, -74.07818)",,,94 PARK HILL LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424820,Sedan,Sedan,Sedan,, +06/07/2021,7:55,BROOKLYN,11237,40.706116,-73.92891,"(40.706116, -73.92891)",,,109 GRATTAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424749,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:15,,,40.83302,-73.862724,"(40.83302, -73.862724)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4424805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,2:25,BROOKLYN,11208,40.679237,-73.867294,"(40.679237, -73.867294)",,,144 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4424408,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/07/2021,10:50,,,,,,SHORE PARKWAY,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424495,Sedan,Bus,,, +06/07/2021,11:14,MANHATTAN,10027,40.814754,-73.95896,"(40.814754, -73.95896)",,,3170 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4424611,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:18,STATEN ISLAND,10305,40.581852,-74.092026,"(40.581852, -74.092026)",,,112 SLATER BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425126,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,13:35,MANHATTAN,10001,40.752052,-74.000984,"(40.752052, -74.000984)",WEST 30 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Backing Unsafely,,,,4425205,Sedan,Sedan,,, +06/07/2021,13:20,,,40.748203,-73.84962,"(40.748203, -73.84962)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4424726,Taxi,Taxi,Sedan,, +06/07/2021,13:13,MANHATTAN,10001,,,,12 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,16:58,BROOKLYN,11218,,,,OCEAN PARKWAY,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425134,Sedan,Sedan,,, +06/07/2021,0:25,BROOKLYN,11215,40.677414,-73.98607,"(40.677414, -73.98607)",,,279 3 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Backing Unsafely,,,,4424534,Sedan,Sedan,,, +06/07/2021,23:12,QUEENS,11385,40.705456,-73.90666,"(40.705456, -73.90666)",,,666 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425180,Sedan,Box Truck,,, +06/07/2021,11:24,BROOKLYN,11212,40.664314,-73.907814,"(40.664314, -73.907814)",,,340 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424580,Sedan,Sedan,,, +06/07/2021,17:00,,,40.629387,-74.13745,"(40.629387, -74.13745)",,,503 HEBERTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425068,Sedan,,,, +06/07/2021,8:40,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424435,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,2:15,BROOKLYN,11220,40.64423,-74.014915,"(40.64423, -74.014915)",54 STREET,4 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4424868,Sedan,,,, +06/07/2021,15:00,MANHATTAN,10013,40.717808,-73.99692,"(40.717808, -73.99692)",,,173 HESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424764,Bus,Sedan,,, +06/07/2021,2:29,BRONX,10451,,,,MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4424789,Motorcycle,,,, +06/06/2021,20:35,QUEENS,11379,40.71235,-73.89129,"(40.71235, -73.89129)",,,66-26 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425195,Sedan,,,, +06/07/2021,7:08,BROOKLYN,11220,40.637547,-74.003845,"(40.637547, -74.003845)",9 AVENUE,54 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,21:35,BROOKLYN,11217,40.67907,-73.97385,"(40.67907, -73.97385)",,,266 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4424860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/07/2021,16:30,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425054,Sedan,,,, +06/07/2021,19:20,BROOKLYN,11201,40.69546,-73.99399,"(40.69546, -73.99399)",HENRY STREET,PIERREPONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424631,Sedan,TRUCK LADD,,, +06/07/2021,18:16,QUEENS,11411,40.695877,-73.742516,"(40.695877, -73.742516)",,,217-20 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424940,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,15:00,BROOKLYN,11236,40.648266,-73.90581,"(40.648266, -73.90581)",ROCKAWAY PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424660,Sedan,,,, +06/07/2021,18:20,,,40.65745,-73.956566,"(40.65745, -73.956566)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4425267,Sedan,,,, +06/07/2021,17:00,,,40.792362,-73.96418,"(40.792362, -73.96418)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424597,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,19:48,BROOKLYN,11232,40.65711,-74.00152,"(40.65711, -74.00152)",31 STREET,4 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4425291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,8:47,QUEENS,11413,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4422567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,6:33,BRONX,10473,40.827,-73.84359,"(40.827, -73.84359)",ZEREGA AVENUE,QUIMBY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425105,Bus,Sedan,,, +06/07/2021,11:00,BROOKLYN,11211,40.71558,-73.960144,"(40.71558, -73.960144)",NORTH 3 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424541,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,17:30,QUEENS,11106,40.764614,-73.937805,"(40.764614, -73.937805)",11 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491119,Sedan,Pick-up Truck,,, +06/05/2021,23:18,BROOKLYN,11218,,,,OCEAN PARKWAY,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4425138,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +06/07/2021,14:00,BROOKLYN,11223,40.588737,-73.974014,"(40.588737, -73.974014)",,,1 BOUCK COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4424673,Sedan,,,, +06/07/2021,16:55,,,40.654446,-73.74569,"(40.654446, -73.74569)",BROOKVILLE BOULEVARD,148 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424607,Sedan,Motorcycle,,, +06/07/2021,17:41,BROOKLYN,11211,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,HUMBOLDT STREET,,2,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4424701,E-Bike,,,, +12/30/2021,11:11,,,,,,PARK DRIVE,CITY ISLAND CIRCLE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4490644,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:20,BROOKLYN,11229,40.609657,-73.95622,"(40.609657, -73.95622)",,,1722 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424675,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,14:28,,,40.702255,-73.92008,"(40.702255, -73.92008)",STOCKHOLM STREET,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4424651,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,11:23,,,40.597122,-74.00418,"(40.597122, -74.00418)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4424994,Sedan,,,, +06/07/2021,1:05,,,40.677605,-74.002754,"(40.677605, -74.002754)",HAMILTON AVENUE,NELSON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424159,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,23:05,,,40.769333,-73.912445,"(40.769333, -73.912445)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,23:00,BROOKLYN,11217,40.683464,-73.97569,"(40.683464, -73.97569)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425171,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,13:00,MANHATTAN,10002,40.717342,-73.99118,"(40.717342, -73.99118)",GRAND STREET,ALLEN STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4424572,Station Wagon/Sport Utility Vehicle,Bike,,, +06/07/2021,13:26,BRONX,10457,,,,,,2236 Webster Ave,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424844,Sedan,,,, +06/07/2021,19:50,BROOKLYN,11234,40.609055,-73.93677,"(40.609055, -73.93677)",FILLMORE AVENUE,EAST 31 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425162,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,3:47,BROOKLYN,11204,40.630283,-73.97816,"(40.630283, -73.97816)",18 AVENUE,DAHILL ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4425137,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/07/2021,18:30,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424925,Sedan,Sedan,,, +06/07/2021,6:20,BRONX,10457,40.84744,-73.89968,"(40.84744, -73.89968)",EAST TREMONT AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4424255,Sedan,Sedan,Sedan,, +06/07/2021,9:15,BROOKLYN,11207,40.669792,-73.8924,"(40.669792, -73.8924)",SUTTER AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425041,Sedan,Sedan,,, +06/07/2021,9:00,BROOKLYN,11222,40.73068,-73.94923,"(40.73068, -73.94923)",GREENPOINT AVENUE,PROVOST STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424540,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/05/2021,21:15,BRONX,10457,40.842667,-73.90685,"(40.842667, -73.90685)",EAST MOUNT EDEN AVENUE,MONROE AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4425405,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,13:55,BROOKLYN,11221,40.69808,-73.92536,"(40.69808, -73.92536)",MYRTLE AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424652,Sedan,Sedan,,, +06/06/2021,8:30,MANHATTAN,10026,40.801037,-73.95142,"(40.801037, -73.95142)",,,108 WEST 114 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425092,Sedan,,,, +06/07/2021,19:50,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424601,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,19:45,QUEENS,11385,40.700123,-73.90622,"(40.700123, -73.90622)",MYRTLE AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424834,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,16:38,,,40.83639,-73.91588,"(40.83639, -73.91588)",EAST 169 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425410,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,13:30,BROOKLYN,11220,40.63948,-74.016174,"(40.63948, -74.016174)",60 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424877,Sedan,,,, +06/05/2021,23:28,MANHATTAN,10029,40.79226,-73.93654,"(40.79226, -73.93654)",,,420 EAST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4425367,Sedan,Sedan,Sedan,Sedan, +06/07/2021,15:57,BROOKLYN,11234,40.61232,-73.93172,"(40.61232, -73.93172)",FILLMORE AVENUE,EAST 38 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4424626,Sedan,Sedan,,, +06/06/2021,18:16,MANHATTAN,10033,40.848736,-73.93234,"(40.848736, -73.93234)",AUDUBON AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425221,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,4:30,BROOKLYN,11218,40.638065,-73.97735,"(40.638065, -73.97735)",EAST 2 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425147,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/07/2021,15:00,BROOKLYN,11208,40.66811,-73.88215,"(40.66811, -73.88215)",,,988 DUMONT AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425064,Station Wagon/Sport Utility Vehicle,Bike,,, +06/07/2021,22:30,,,40.671627,-73.96263,"(40.671627, -73.96263)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425268,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,9:07,MANHATTAN,10035,40.808514,-73.93938,"(40.808514, -73.93938)",,,26 EAST 129 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4424427,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,7:00,BROOKLYN,11232,40.66159,-73.99686,"(40.66159, -73.99686)",23 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424468,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,11:05,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424754,Motorcycle,Sedan,,, +05/26/2021,14:30,QUEENS,11413,40.651405,-73.758896,"(40.651405, -73.758896)",,,230-19 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420701,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,10:00,BROOKLYN,11219,40.636192,-73.99258,"(40.636192, -73.99258)",,,1254 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425142,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,15:00,QUEENS,11423,40.710403,-73.77146,"(40.710403, -73.77146)",,,187-19 JAMAICA AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4424565,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/07/2021,14:40,,,40.576744,-73.98372,"(40.576744, -73.98372)",MERMAID AVENUE,,,2,0,2,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4424811,,,,, +12/29/2021,4:45,,,,,,margaret corbin drive,fort tyron place,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4490859,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,1:30,BROOKLYN,11207,40.665874,-73.89724,"(40.665874, -73.89724)",DUMONT AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424409,Sedan,,,, +06/07/2021,17:40,,,40.825573,-73.918465,"(40.825573, -73.918465)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424680,Sedan,Sedan,,, +06/07/2021,18:30,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424767,Sedan,,,, +06/07/2021,7:45,QUEENS,11420,40.672527,-73.821266,"(40.672527, -73.821266)",133 AVENUE,118 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4424452,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,19:30,QUEENS,11361,40.76631,-73.77341,"(40.76631, -73.77341)",38 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424610,Sedan,Sedan,,, +06/07/2021,16:45,MANHATTAN,10018,40.75836,-73.99841,"(40.75836, -73.99841)",,,544 WEST 39 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424900,Sedan,,,, +06/07/2021,23:15,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",FULTON STREET,PENNSYLVANIA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425046,E-Bike,Sedan,,, +06/07/2021,13:40,STATEN ISLAND,10301,40.620686,-74.11002,"(40.620686, -74.11002)",BARD AVENUE,CLOVE ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4424821,Sedan,Sedan,,, +06/04/2021,16:20,BROOKLYN,11211,40.709015,-73.95965,"(40.709015, -73.95965)",,,252 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425327,Sedan,,,, +06/07/2021,11:30,BROOKLYN,11229,40.588226,-73.92391,"(40.588226, -73.92391)",,,67 NOEL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424560,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,9:00,QUEENS,11693,40.5837,-73.81705,"(40.5837, -73.81705)",,,142 BEACH 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424619,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,5:30,BROOKLYN,11203,40.654327,-73.9221,"(40.654327, -73.9221)",KINGS HIGHWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425212,Sedan,Sedan,,, +06/07/2021,8:59,MANHATTAN,10028,40.780178,-73.95721,"(40.780178, -73.95721)",EAST 86 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425200,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,21:50,BROOKLYN,11218,40.637955,-73.97832,"(40.637955, -73.97832)",,,115 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425130,Sedan,,,, +06/07/2021,16:45,MANHATTAN,10030,40.817173,-73.94606,"(40.817173, -73.94606)",WEST 136 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Other Vehicular,,,,4424881,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/07/2021,16:45,BRONX,10452,40.836105,-73.917435,"(40.836105, -73.917435)",GRAND VIEW PLACE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425186,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,6:32,,,40.854874,-73.916794,"(40.854874, -73.916794)",WEST 179 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424737,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,0:23,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424284,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,20:20,BRONX,10473,40.824875,-73.85389,"(40.824875, -73.85389)",,,2061 STORY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424802,Sedan,Sedan,,, +05/17/2021,10:30,QUEENS,11422,40.66394,-73.73822,"(40.66394, -73.73822)",,,241-28 141 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4418952,Sedan,Sedan,,, +06/07/2021,12:20,BROOKLYN,11217,40.685764,-73.981865,"(40.685764, -73.981865)",,,490 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4424521,Sedan,Sedan,,, +12/30/2021,9:45,BROOKLYN,11220,40.639786,-74.0266,"(40.639786, -74.0266)",SHORE ROAD DRIVE,RIDGE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/05/2021,6:50,,,40.68088,-73.9633,"(40.68088, -73.9633)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425310,Sedan,,,, +06/07/2021,18:36,QUEENS,11420,40.66609,-73.82809,"(40.66609, -73.82809)",NORTH CONDUIT AVENUE,114 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4424773,Sedan,Box Truck,,, +06/07/2021,9:30,BROOKLYN,11236,40.642086,-73.89892,"(40.642086, -73.89892)",,,1595 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424636,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,3:10,MANHATTAN,10033,40.84989,-73.93332,"(40.84989, -73.93332)",SAINT NICHOLAS AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425211,Sedan,Sedan,,, +06/07/2021,8:26,BROOKLYN,11207,40.657753,-73.89612,"(40.657753, -73.89612)",LINDEN BOULEVARD,WILLIAMS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4425058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +06/07/2021,16:30,,,40.70942,-73.99319,"(40.70942, -73.99319)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424664,Sedan,Sedan,,, +06/07/2021,21:45,BRONX,10456,40.834526,-73.89775,"(40.834526, -73.89775)",,,662 CROTONA PARK SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4424883,Sedan,,,, +06/07/2021,16:00,BROOKLYN,11226,40.653812,-73.95567,"(40.653812, -73.95567)",,,101 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425245,Sedan,Van,,, +06/07/2021,8:30,BROOKLYN,11212,40.664837,-73.91343,"(40.664837, -73.91343)",,,220 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424578,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,11:25,MANHATTAN,10010,40.7406,-73.989426,"(40.7406, -73.989426)",EAST 22 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4424812,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +06/07/2021,14:15,BROOKLYN,11217,,,,7 AVENUE,PARK PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424861,Sedan,,,, +06/07/2021,7:21,,,40.583874,-73.823044,"(40.583874, -73.823044)",ROCKAWAY BEACH BOULEVARD,BEACH 102 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4424618,Sedan,Bus,,, +06/07/2021,16:15,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424782,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,7:53,BRONX,10462,40.85029,-73.86555,"(40.85029, -73.86555)",BRONXDALE AVENUE,HUNT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424298,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,17:56,QUEENS,11372,40.755264,-73.88817,"(40.755264, -73.88817)",NORTHERN BOULEVARD,79 STREET,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,,,,,4424670,Motorcycle,,,, +06/07/2021,12:01,,,40.8047,-73.91243,"(40.8047, -73.91243)",EAST 138 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424483,van,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,20:48,,,,,,BOSTON ROAD,CLAREMONT PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passenger Distraction,,,,4424677,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/07/2021,9:00,BRONX,10460,40.837975,-73.86956,"(40.837975, -73.86956)",,,1750 MANSION STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,7:20,QUEENS,11413,40.66698,-73.75488,"(40.66698, -73.75488)",222 STREET,143 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424669,Dump,,,, +06/01/2021,22:10,BROOKLYN,11212,40.658646,-73.923935,"(40.658646, -73.923935)",CLARKSON AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4425251,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/07/2021,6:30,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4424939,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Pick-up Truck, +06/07/2021,19:45,QUEENS,11434,40.659584,-73.76785,"(40.659584, -73.76785)",148 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424630,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,12:00,,,40.776276,-73.95795,"(40.776276, -73.95795)",EAST 81 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passenger Distraction,Unspecified,,,4425029,Motorcycle,Sedan,Sedan,, +06/07/2021,1:39,BROOKLYN,11234,40.63032,-73.9213,"(40.63032, -73.9213)",FLATLANDS AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424162,Sedan,Sedan,,, +06/04/2021,22:39,BROOKLYN,11236,40.64452,-73.91207,"(40.64452, -73.91207)",EAST 89 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425079,Sedan,TRACTOR TR,,, +06/06/2021,4:19,BROOKLYN,11214,40.60325,-73.99969,"(40.60325, -73.99969)",,,8684 20 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4425324,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,9:30,QUEENS,11378,40.72415,-73.89869,"(40.72415, -73.89869)",GRAND AVENUE,66 STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4424843,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,17:15,,,40.64479,-74.01433,"(40.64479, -74.01433)",4 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425167,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,14:20,QUEENS,11426,40.725304,-73.721085,"(40.725304, -73.721085)",,,247-07 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,13:14,BROOKLYN,11218,40.637817,-73.97956,"(40.637817, -73.97956)",CORTELYOU ROAD,DAHILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425143,Van,,,, +06/07/2021,18:01,BROOKLYN,11224,40.576885,-74.00323,"(40.576885, -74.00323)",NEPTUNE AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424769,Sedan,Sedan,,, +06/07/2021,1:24,MANHATTAN,10001,40.747852,-73.99291,"(40.747852, -73.99291)",7 AVENUE,WEST 29 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4424451,Taxi,Sedan,,, +06/07/2021,8:10,BRONX,10475,,,,,,691 COOP CITY BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4424454,Sedan,Bike,,, +06/07/2021,5:20,,,40.70089,-73.94221,"(40.70089, -73.94221)",BROADWAY,GRAHAM AVENUE,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424702,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/07/2021,1:30,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,View Obstructed/Limited,,,,4425076,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/07/2021,8:40,BROOKLYN,11223,40.58672,-73.97234,"(40.58672, -73.97234)",WEST 3 STREET,DANK COURT,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4424494,Box Truck,Chassis Cab,,, +06/07/2021,12:30,BROOKLYN,11221,40.691353,-73.92142,"(40.691353, -73.92142)",BUSHWICK AVENUE,LINDEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424756,Sedan,,,, +05/30/2021,0:55,QUEENS,11101,40.759308,-73.944176,"(40.759308, -73.944176)",VERNON BOULEVARD,38 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4425104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,15:15,,,40.78911,-73.96656,"(40.78911, -73.96656)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4424559,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,20:14,,,40.708324,-73.84314,"(40.708324, -73.84314)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424792,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,17:16,BROOKLYN,11218,40.642517,-73.987915,"(40.642517, -73.987915)",12 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425141,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,0:20,BROOKLYN,11203,40.65812,-73.934006,"(40.65812, -73.934006)",WINTHROP STREET,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424322,Sedan,,,, +06/07/2021,15:35,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424703,Sedan,,,, +06/07/2021,20:00,BROOKLYN,11218,40.644093,-73.97635,"(40.644093, -73.97635)",,,416 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425391,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,14:55,,,40.803677,-73.92209,"(40.803677, -73.92209)",EAST 132 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424786,Ambulance,,,, +06/07/2021,20:55,,,40.804012,-73.93097,"(40.804012, -73.93097)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424809,Sedan,,,, +06/07/2021,2:24,,,40.649956,-73.884125,"(40.649956, -73.884125)",PENNSYLVANIA AVENUE,CROTON LOOP,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4424410,Sedan,Sedan,Sedan,Sedan, +06/07/2021,11:09,,,40.633926,-74.13021,"(40.633926, -74.13021)",,,1426 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4424486,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/03/2021,9:51,BROOKLYN,11230,40.62685,-73.97643,"(40.62685, -73.97643)",,,1080 MC DONALD AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425131,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,16:11,BROOKLYN,11219,40.64337,-73.995346,"(40.64337, -73.995346)",,,975 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425136,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,14:34,MANHATTAN,10035,40.807915,-73.937965,"(40.807915, -73.937965)",,,70 EAST 129 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4424538,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,20:01,BROOKLYN,11221,40.690266,-73.91546,"(40.690266, -73.91546)",EVERGREEN AVENUE,CORNELIA STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4424657,Sedan,Sedan,,, +05/24/2021,18:00,BROOKLYN,11220,40.640263,-74.019035,"(40.640263, -74.019035)",61 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425114,Sedan,,,, +06/07/2021,16:18,BRONX,10458,40.858433,-73.885124,"(40.858433, -73.885124)",EAST FORDHAM ROAD,ARTHUR AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424842,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,20:10,BROOKLYN,11421,40.68683,-73.86703,"(40.68683, -73.86703)",ELDERTS LANE,RIDGEWOOD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425061,,,,, +06/07/2021,8:53,BROOKLYN,11211,40.711212,-73.96339,"(40.711212, -73.96339)",BEDFORD AVENUE,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424421,Tow Truck / Wrecker,Sedan,,, +06/07/2021,16:10,,,40.79335,-73.97275,"(40.79335, -73.97275)",WEST 94 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4424566,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,1:20,BRONX,10468,40.861744,-73.911804,"(40.861744, -73.911804)",WEST FORDHAM ROAD,CEDAR AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424291,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,10:57,BRONX,10465,40.81859,-73.82221,"(40.81859, -73.82221)",,,387 BRINSMADE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425414,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,10:27,BRONX,10461,40.84733,-73.85131,"(40.84733, -73.85131)",,,1650 HAIGHT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424527,Pick-up Truck,,,, +06/07/2021,10:40,BROOKLYN,11225,40.663483,-73.9627,"(40.663483, -73.9627)",,,450 FLATBUSH AVENUE,4,0,0,0,0,0,4,0,Failure to Keep Right,Unspecified,,,,4425176,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/07/2021,16:30,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,EAST 173 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424688,Sedan,,,, +06/07/2021,3:16,BROOKLYN,11233,40.68207,-73.92808,"(40.68207, -73.92808)",,,385 DECATUR STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424513,Sedan,Taxi,,, +06/07/2021,14:30,STATEN ISLAND,10305,40.61476,-74.069016,"(40.61476, -74.069016)",ANDERSON STREET,VIRGINIA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4425229,Sedan,Sedan,,, +06/07/2021,22:40,,,40.696228,-73.97348,"(40.696228, -73.97348)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424932,Sedan,Sedan,,, +06/07/2021,8:00,,,40.71445,-73.9306,"(40.71445, -73.9306)",GRAND STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424793,Station Wagon/Sport Utility Vehicle,Carry All,,, +06/07/2021,10:55,QUEENS,11434,40.66677,-73.77952,"(40.66677, -73.77952)",,,165-16 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425271,Sedan,,,, +06/07/2021,10:35,QUEENS,11355,40.753166,-73.82194,"(40.753166, -73.82194)",KISSENA BOULEVARD,ELDER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424603,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,17:12,,,40.695415,-73.90806,"(40.695415, -73.90806)",HANCOCK STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424753,Sedan,,,, +06/07/2021,14:00,BRONX,10472,40.827297,-73.86919,"(40.827297, -73.86919)",WATSON AVENUE,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424801,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,12:10,BROOKLYN,11229,40.601974,-73.93278,"(40.601974, -73.93278)",,,2240 BURNETT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/07/2021,23:44,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",ROSEDALE AVENUE,STORY AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4424646,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/07/2021,16:45,STATEN ISLAND,10306,40.57863,-74.11543,"(40.57863, -74.11543)",RICHMOND ROAD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4424876,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,17:11,MANHATTAN,10027,40.80761,-73.95305,"(40.80761, -73.95305)",WEST 121 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425096,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,15:00,,,40.712635,-73.7554,"(40.712635, -73.7554)",99 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424585,Bus,Sedan,,, +06/05/2021,13:13,,,40.78263,-73.9512,"(40.78263, -73.9512)",EAST 92 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425399,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,9:30,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424916,Sedan,Bus,,, +06/03/2021,7:40,BROOKLYN,11211,40.706463,-73.96078,"(40.706463, -73.96078)",LEE AVENUE,WILSON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425345,Sedan,,,, +06/07/2021,0:20,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424273,Sedan,,,, +06/07/2021,14:21,MANHATTAN,10028,40.777504,-73.954956,"(40.777504, -73.954956)",3 AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425032,Station Wagon/Sport Utility Vehicle,Van,,, +06/07/2021,0:40,BROOKLYN,11212,40.65855,-73.91573,"(40.65855, -73.91573)",EAST 98 STREET,LEGION STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424576,Sedan,E-Bike,,, +07/02/2022,20:00,,,40.858986,-73.89382,"(40.858986, -73.89382)",WEBSTER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543344,Sedan,,,, +06/07/2021,12:30,STATEN ISLAND,10305,40.585842,-74.09275,"(40.585842, -74.09275)",,,1771 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424473,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,13:24,,,40.73736,-73.934074,"(40.73736, -73.934074)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424620,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,2:47,BROOKLYN,11219,40.626823,-73.996796,"(40.626823, -73.996796)",NEW UTRECHT AVENUE,61 STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4425148,Station Wagon/Sport Utility Vehicle,Bike,,, +12/30/2021,22:30,QUEENS,11370,40.758854,-73.88502,"(40.758854, -73.88502)",,,31-23 83 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4491160,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/07/2021,13:15,BROOKLYN,11238,40.683727,-73.96092,"(40.683727, -73.96092)",,,72 DOWNING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424850,Sedan,,,, +06/06/2021,8:50,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4425260,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,11:30,MANHATTAN,10031,40.818394,-73.95089,"(40.818394, -73.95089)",WEST 135 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490969,Sedan,Sedan,,, +06/07/2021,17:09,QUEENS,11434,40.669144,-73.76591,"(40.669144, -73.76591)",FARMERS BOULEVARD,143 ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4424627,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,17:23,QUEENS,11385,40.70485,-73.90562,"(40.70485, -73.90562)",WOODWARD AVENUE,PALMETTO STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425199,Sedan,Sedan,,, +06/07/2021,23:26,BRONX,10452,40.842464,-73.92414,"(40.842464, -73.92414)",OGDEN AVENUE,WEST 171 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4424684,Motorbike,Motorbike,,, +06/07/2021,13:00,BROOKLYN,11217,40.677456,-73.97344,"(40.677456, -73.97344)",,,14 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424863,Box Truck,,,, +06/07/2021,18:13,QUEENS,11364,40.74874,-73.77832,"(40.74874, -73.77832)",FRANCIS LEWIS BOULEVARD,53 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,,,,4424609,Station Wagon/Sport Utility Vehicle,Bike,,, +06/07/2021,5:30,,,40.689976,-73.79955,"(40.689976, -73.79955)",LIVERPOOL STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4424561,Multi-Wheeled Vehicle,Pick-up Truck,,, +06/07/2021,18:49,QUEENS,11366,40.725777,-73.79175,"(40.725777, -73.79175)",UTOPIA PARKWAY,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4424957,Motorcycle,Sedan,,, +06/07/2021,18:00,BROOKLYN,11239,40.6468,-73.88496,"(40.6468, -73.88496)",LOUISIANA AVENUE,TWIN PINES DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425045,Sedan,3-Door,,, +06/07/2021,18:30,BRONX,10462,40.849236,-73.86922,"(40.849236, -73.86922)",SAGAMORE STREET,UNIONPORT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424732,Sedan,,,, +06/07/2021,14:55,STATEN ISLAND,10310,40.639675,-74.11777,"(40.639675, -74.11777)",,,66 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424822,Sedan,,,, +06/07/2021,17:25,,,40.608765,-73.986725,"(40.608765, -73.986725)",74 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424635,Sedan,Pick-up Truck,,, +05/25/2021,20:50,BROOKLYN,11226,40.641804,-73.95154,"(40.641804, -73.95154)",,,1154 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425213,Sedan,,,, +06/07/2021,0:50,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4424671,Sedan,Pick-up Truck,Sedan,, +06/07/2021,17:40,QUEENS,11105,40.775593,-73.91135,"(40.775593, -73.91135)",,,22-29 31 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425103,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,16:46,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424880,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,17:13,,,40.752243,-73.70212,"(40.752243, -73.70212)",UNION TURNPIKE,LANGDALE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421333,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,8:00,,,40.598827,-74.16685,"(40.598827, -74.16685)",,,37 MULBERRY CIRCLE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,, +06/07/2021,13:53,,,40.835705,-73.88875,"(40.835705, -73.88875)",EAST 173 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424678,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/29/2021,18:30,BROOKLYN,11218,,,,OCEAN PARKWAY,AVENUE C,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425144,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,10:44,BRONX,10474,40.809364,-73.88322,"(40.809364, -73.88322)",,,410 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424887,Sedan,Box Truck,,, +06/07/2021,0:45,BROOKLYN,11223,40.591534,-73.97401,"(40.591534, -73.97401)",,,2511 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424181,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,13:44,MANHATTAN,10026,40.800972,-73.947174,"(40.800972, -73.947174)",,,11 WEST 116 STREET,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4425089,Station Wagon/Sport Utility Vehicle,G AMB,,, +06/07/2021,9:00,QUEENS,11358,40.756104,-73.800804,"(40.756104, -73.800804)",45 AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424973,Taxi,Sedan,,, +06/07/2021,14:00,MANHATTAN,10001,40.753925,-73.99761,"(40.753925, -73.99761)",WEST 34 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424583,Sedan,Box Truck,,, +06/07/2021,19:10,QUEENS,11417,40.68043,-73.842926,"(40.68043, -73.842926)",,,96-02 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4424770,Moped,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,11:50,QUEENS,11356,40.785633,-73.855995,"(40.785633, -73.855995)",14 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424455,Sedan,,,, +06/07/2021,14:00,QUEENS,11372,40.75276,-73.87539,"(40.75276, -73.87539)",35 AVENUE,92 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424758,E-Bike,,,, +06/07/2021,21:00,,,40.830437,-73.83748,"(40.830437, -73.83748)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,9:00,BROOKLYN,11208,40.679485,-73.87929,"(40.679485, -73.87929)",ATLANTIC AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425057,Sedan,Tractor Truck Diesel,,, +06/07/2021,14:56,BROOKLYN,11215,,,,,,109 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424852,Cargo van,Box Truck,,, +06/07/2021,21:00,MANHATTAN,10027,40.812252,-73.955284,"(40.812252, -73.955284)",,,435 WEST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424639,Bike,,,, +05/22/2021,2:35,BROOKLYN,11203,40.64232,-73.926254,"(40.64232, -73.926254)",,,5310 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425249,Sedan,,,, +06/07/2021,15:00,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4424663,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Box Truck, +06/06/2021,13:00,BROOKLYN,11215,40.660137,-73.983925,"(40.660137, -73.983925)",PROSPECT AVENUE,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425304,Sedan,,,, +06/07/2021,12:15,BROOKLYN,11238,40.686108,-73.96644,"(40.686108, -73.96644)",,,384 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424815,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,8:32,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",MONTROSE AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4424696,Ambulance,Tractor Truck Diesel,,, +12/24/2021,21:30,BROOKLYN,11207,40.66364,-73.88469,"(40.66364, -73.88469)",,,761 BARBEY STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4491247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,0:00,,,40.70927,-73.797325,"(40.70927, -73.797325)",HILLSIDE AVENUE,165 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,8:10,BROOKLYN,11230,40.621353,-73.96993,"(40.621353, -73.96993)",,,1115 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425140,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/07/2021,1:30,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4424324,Motorcycle,,,, +06/07/2021,17:30,BROOKLYN,11232,40.64828,-73.998955,"(40.64828, -73.998955)",,,715 39 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425117,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,15:20,,,40.75928,-73.959274,"(40.75928, -73.959274)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424707,Sedan,PK,,, +06/07/2021,15:00,,,,,,MEEKER AVENUE,MC GUINNESS BLVD SOUTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4424614,Sedan,Sedan,Dump,, +06/05/2021,9:30,MANHATTAN,10033,40.849907,-73.93977,"(40.849907, -73.93977)",,,44 PINEHURST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425210,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,10:30,QUEENS,11691,40.59457,-73.76441,"(40.59457, -73.76441)",SEAGIRT AVENUE,BEACH 32 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425074,Sedan,,,, +06/07/2021,19:25,BROOKLYN,11220,40.635544,-74.01123,"(40.635544, -74.01123)",,,752B 61 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425166,Sedan,,,, +06/07/2021,0:55,QUEENS,11434,40.675266,-73.78261,"(40.675266, -73.78261)",128 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424515,Sedan,Sedan,,, +06/07/2021,7:00,,,,,,LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Turning Improperly,,,,4424562,Motorcycle,Sedan,,, +06/07/2021,13:56,,,40.737545,-74.00387,"(40.737545, -74.00387)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424826,Sedan,Sedan,,, +06/30/2022,19:00,,,40.66059,-73.931335,"(40.66059, -73.931335)",RUTLAND ROAD,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4543318,E-Scooter,,,, +06/07/2021,21:00,QUEENS,11415,40.703022,-73.83125,"(40.703022, -73.83125)",85 AVENUE,120 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424787,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,17:55,BROOKLYN,11233,40.678276,-73.910805,"(40.678276, -73.910805)",ROCKAWAY AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424794,Sedan,Sedan,,, +06/07/2021,13:23,QUEENS,11101,40.748398,-73.94479,"(40.748398, -73.94479)",44 ROAD,23 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,6:39,BROOKLYN,11219,40.62847,-74.002525,"(40.62847, -74.002525)",12 AVENUE,63 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424319,Sedan,Sedan,,, +12/29/2021,17:23,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490607,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,14:14,BROOKLYN,11226,40.64471,-73.957985,"(40.64471, -73.957985)",,,1067 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424668,Sedan,,,, +06/07/2021,14:55,BROOKLYN,11212,40.661705,-73.92487,"(40.661705, -73.92487)",,,163 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425242,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,17:13,BROOKLYN,11249,40.71799,-73.96424,"(40.71799, -73.96424)",,,200 KENT AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4425323,Tow Truck / Wrecker,,,, +06/07/2021,5:55,BROOKLYN,11236,40.644554,-73.916046,"(40.644554, -73.916046)",,,97 NORTH MARKET STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424449,Station Wagon/Sport Utility Vehicle,TRAILER,,, +06/03/2021,10:50,,,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425233,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,18:33,BROOKLYN,11229,40.60216,-73.94707,"(40.60216, -73.94707)",BEDFORD AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4515936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/07/2021,4:26,,,,,,EAST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4424290,Sedan,Sedan,,, +06/07/2021,14:30,,,40.82267,-73.92007,"(40.82267, -73.92007)",EAST 156 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424785,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,9:50,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",BREWER BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4418921,Sedan,Pick-up Truck,,, +06/07/2021,7:40,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,17:40,QUEENS,11414,40.658897,-73.8418,"(40.658897, -73.8418)",159 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424687,Sedan,Sedan,,, +06/07/2021,10:13,,,40.612442,-74.15922,"(40.612442, -74.15922)",,,1471 RICHMOND AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4424485,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,15:00,BROOKLYN,11208,40.676605,-73.88157,"(40.676605, -73.88157)",,,766 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425044,Sedan,Box Truck,,, +06/07/2021,14:45,BRONX,10466,40.884617,-73.83195,"(40.884617, -73.83195)",,,4007 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4424922,Sedan,,,, +06/07/2021,15:55,,,40.738544,-73.90293,"(40.738544, -73.90293)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424621,Sedan,,,, +06/07/2021,10:40,,,40.810917,-73.902725,"(40.810917, -73.902725)",EAST 149 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425352,Tractor Truck Diesel,,,, +06/07/2021,11:54,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",HEMPSTEAD AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424604,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,20:26,BRONX,10457,40.849354,-73.889,"(40.849354, -73.889)",,,665 EAST 181 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4424837,Ambu,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,8:00,,,40.620438,-74.1672,"(40.620438, -74.1672)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4424874,Sedan,Pick-up Truck,Sedan,, +06/07/2021,21:20,MANHATTAN,10025,40.79525,-73.97321,"(40.79525, -73.97321)",WEST END AVENUE,WEST 96 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424628,Taxi,,,, +05/31/2021,16:12,,,40.783417,-73.956955,"(40.783417, -73.956955)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425370,Convertible,Bus,,, +05/27/2021,20:04,,,40.843136,-73.91097,"(40.843136, -73.91097)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4425188,Ambulance,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/07/2021,1:39,BROOKLYN,11212,40.67045,-73.911896,"(40.67045, -73.911896)",,,55 CHESTER STREET,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424567,E-Bike,Sedan,,, +06/07/2021,7:10,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424482,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/07/2021,22:45,,,40.71217,-74.00557,"(40.71217, -74.00557)",PARK ROW,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425150,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,8:31,,,40.82579,-73.941055,"(40.82579, -73.941055)",BRADHURST AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unsafe Speed,,,,4424419,Taxi,Bike,,, +06/07/2021,17:40,BROOKLYN,11208,40.674232,-73.86177,"(40.674232, -73.86177)",CONDUIT BOULEVARD,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425060,Sedan,Sedan,,, +06/07/2021,15:00,MANHATTAN,10002,40.715034,-73.99681,"(40.715034, -73.99681)",BOWERY,BAYARD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4424750,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,6:10,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425279,Sedan,Van,,, +06/07/2021,13:24,BRONX,10473,40.818592,-73.86731,"(40.818592, -73.86731)",,,1710 SEWARD AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4424800,Sedan,Sedan,,, +04/02/2022,1:17,MANHATTAN,10013,40.723305,-74.00299,"(40.723305, -74.00299)",BROOME STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4515594,Sedan,,,, +06/07/2021,16:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424647,Sedan,Sedan,,, +06/07/2021,11:05,,,40.58848,-73.991875,"(40.58848, -73.991875)",SHORE PARKWAY,BAY 44 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4424776,Sedan,Bike,,, +06/07/2021,17:12,,,40.62546,-74.14845,"(40.62546, -74.14845)",,,894 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424683,Sedan,,,, +06/07/2021,7:30,BROOKLYN,11207,40.65906,-73.88459,"(40.65906, -73.88459)",VAN SICLEN AVENUE,STANLEY AVENUE,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4424411,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/07/2021,1:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424276,Sedan,,,, +06/07/2021,16:00,QUEENS,11374,40.728302,-73.8549,"(40.728302, -73.8549)",66 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424574,3-Door,Sedan,,, +06/05/2021,18:55,BROOKLYN,11219,40.634468,-73.99271,"(40.634468, -73.99271)",13 AVENUE,50 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425135,Taxi,E-Bike,,, +06/07/2021,19:10,,,40.74498,-73.89325,"(40.74498, -73.89325)",41 AVENUE,72 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4424658,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/07/2021,13:45,BROOKLYN,11215,40.668793,-73.97999,"(40.668793, -73.97999)",,,267 7 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424535,Box Truck,Box Truck,,, +06/05/2021,18:38,,,40.842247,-73.91403,"(40.842247, -73.91403)",WALTON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425403,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,21:10,BRONX,10470,40.898876,-73.85539,"(40.898876, -73.85539)",NEREID AVENUE,RICHARDSON AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4424931,Sedan,Sedan,,, +06/07/2021,16:05,,,40.57944,-73.979614,"(40.57944, -73.979614)",NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4425036,Station Wagon/Sport Utility Vehicle,Bike,,, +06/07/2021,12:00,QUEENS,11385,40.71018,-73.91085,"(40.71018, -73.91085)",,,2022 STANHOPE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424845,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,5:00,MANHATTAN,10026,40.803726,-73.95779,"(40.803726, -73.95779)",MANHATTAN AVENUE,WEST 114 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425094,Sedan,,,, +06/06/2021,21:35,BRONX,10465,40.828938,-73.82823,"(40.828938, -73.82823)",,,931 QUINCY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425415,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,10:33,BROOKLYN,11236,40.641724,-73.919624,"(40.641724, -73.919624)",,,1437 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425261,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,1:45,BROOKLYN,11203,40.64668,-73.92403,"(40.64668, -73.92403)",EAST 56 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424587,Convertible,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,0:00,BROOKLYN,11220,40.646786,-74.008575,"(40.646786, -74.008575)",47 STREET,5 AVENUE,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4424866,Sedan,E-Bike,,, +06/04/2021,10:42,BROOKLYN,11204,40.631596,-73.98494,"(40.631596, -73.98494)",48 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425132,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,13:54,QUEENS,11102,40.77074,-73.93002,"(40.77074, -73.93002)",,,30-02 14 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424713,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,16:11,BROOKLYN,11219,40.630688,-73.98947,"(40.630688, -73.98947)",52 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4425145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,17:30,QUEENS,11378,40.726444,-73.90317,"(40.726444, -73.90317)",63 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425179,Sedan,Sedan,,, +06/07/2021,11:40,MANHATTAN,10029,40.788055,-73.94433,"(40.788055, -73.94433)",EAST 102 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424458,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/07/2021,13:28,MANHATTAN,10003,40.731117,-73.985855,"(40.731117, -73.985855)",,,193 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424772,Sedan,E-Bike,,, +06/07/2021,13:55,,,40.66118,-73.95696,"(40.66118, -73.95696)",BEDFORD AVENUE,,,17,0,1,0,0,0,16,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4425069,Bus,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/07/2021,12:18,BROOKLYN,11237,40.705482,-73.92826,"(40.705482, -73.92826)",THAMES STREET,PORTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424699,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,8:30,,,40.749054,-73.95222,"(40.749054, -73.95222)",44 DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424436,Pick-up Truck,Tractor Truck Diesel,,, +06/07/2021,5:50,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",ROCKAWAY BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424516,Station Wagon/Sport Utility Vehicle,Ambulance,,, +06/07/2021,20:30,MANHATTAN,10037,40.80999,-73.93754,"(40.80999, -73.93754)",,,2095 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424808,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,17:00,STATEN ISLAND,10305,40.59761,-74.084496,"(40.59761, -74.084496)",,,1250 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424795,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,8:00,,,40.825573,-73.918465,"(40.825573, -73.918465)",EAST 161 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424393,Sedan,,,, +06/03/2021,7:38,,,40.803726,-73.95779,"(40.803726, -73.95779)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425095,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,15:45,BRONX,10452,40.83955,-73.91595,"(40.83955, -73.91595)",EAST 170 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425384,Sedan,Sedan,,, +04/02/2022,0:00,MANHATTAN,10128,40.782005,-73.95167,"(40.782005, -73.95167)",3 AVENUE,EAST 91 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515954,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,18:00,,,40.667942,-73.99074,"(40.667942, -73.99074)",4 AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4424853,Sedan,Bike,,, +05/22/2021,16:40,,,40.7861,-73.93967,"(40.7861, -73.93967)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425206,Sedan,Sedan,,, +06/07/2021,21:30,,,40.605595,-73.98404,"(40.605595, -73.98404)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424634,Sedan,Bike,,, +06/07/2021,19:30,QUEENS,11432,40.71781,-73.80358,"(40.71781, -73.80358)",164 STREET,82 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424953,Pick-up Truck,,,, +06/07/2021,8:17,BROOKLYN,11223,40.598976,-73.97602,"(40.598976, -73.97602)",WEST 4 STREET,AVENUE T,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424992,Sedan,Sedan,,, +06/07/2021,1:26,,,40.73319,-73.866875,"(40.73319, -73.866875)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424185,Sedan,Sedan,,, +06/06/2021,17:39,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425139,Station Wagon/Sport Utility Vehicle,Bike,,, +06/07/2021,22:55,BROOKLYN,11210,40.63677,-73.95,"(40.63677, -73.95)",,,582 EAST 28 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4424667,Sedan,Sedan,Sedan,Sedan, +06/07/2021,14:11,BRONX,10468,40.861744,-73.911804,"(40.861744, -73.911804)",CEDAR AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424679,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,13:20,BROOKLYN,11203,40.639744,-73.92987,"(40.639744, -73.92987)",,,4914 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425248,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,0:45,MANHATTAN,10026,40.80133,-73.950195,"(40.80133, -73.950195)",WEST 115 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425090,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,14:50,,,40.665398,-73.95093,"(40.665398, -73.95093)",MONTGOMERY STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425321,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,5:25,BROOKLYN,11220,40.648705,-74.01177,"(40.648705, -74.01177)",,,348 47 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4424582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,21:33,MANHATTAN,10033,40.847546,-73.93565,"(40.847546, -73.93565)",,,612 WEST 178 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4424818,Sedan,Sedan,,, +06/07/2021,14:25,QUEENS,11693,40.587337,-73.81306,"(40.587337, -73.81306)",BEACH 88 STREET,ROCKAWAY BEACH BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4424612,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,14:00,BROOKLYN,11220,40.641186,-74.014404,"(40.641186, -74.014404)",57 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425118,Sedan,E-Scooter,,, +05/29/2021,14:50,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421508,Sedan,Sedan,,, +06/04/2021,18:05,,,40.63509,-74.160255,"(40.63509, -74.160255)",,,83 HARBOR ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4425218,Sedan,,,, +06/07/2021,16:50,BROOKLYN,11223,40.596107,-73.968445,"(40.596107, -73.968445)",,,2217 EAST 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424672,Bus,Sedan,,, +06/07/2021,8:10,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4424502,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/07/2021,7:35,BROOKLYN,11228,40.623585,-74.00671,"(40.623585, -74.00671)",,,1215 71 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424316,Sedan,,,, +06/07/2021,12:10,MANHATTAN,10002,40.716965,-73.99443,"(40.716965, -73.99443)",CHRYSTIE STREET,HESTER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424759,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,20:25,BRONX,10460,40.832047,-73.88775,"(40.832047, -73.88775)",,,1468 BRYANT AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,Unsafe Speed,Unspecified,,4490974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/07/2021,7:37,,,40.703556,-73.78805,"(40.703556, -73.78805)",170 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424563,Bus,,,, +06/07/2021,9:30,BROOKLYN,11222,40.730026,-73.945244,"(40.730026, -73.945244)",,,273 RUSSELL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424542,Van,Sedan,,, +06/07/2021,19:30,BRONX,10454,40.80563,-73.922554,"(40.80563, -73.922554)",,,480 EAST 134 STREET,2,0,0,0,0,0,2,0,Oversized Vehicle,Other Vehicular,,,,4424788,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,7:30,,,40.64882,-74.00288,"(40.64882, -74.00288)",41 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425099,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,1:05,,,40.812622,-73.92934,"(40.812622, -73.92934)",EAST 138 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425377,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/07/2021,19:40,,,40.78597,-73.96885,"(40.78597, -73.96885)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424608,Box Truck,Sedan,,, +06/07/2021,1:30,QUEENS,11354,40.764988,-73.82067,"(40.764988, -73.82067)",146 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424638,Sedan,Sedan,,, +06/07/2021,14:25,BROOKLYN,11207,40.66632,-73.89926,"(40.66632, -73.89926)",,,357 HINSDALE STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425056,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,23:26,BRONX,10474,40.818615,-73.889175,"(40.818615, -73.889175)",HUNTS POINT AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424890,Sedan,Tractor Truck Diesel,,, +06/07/2021,3:50,QUEENS,11378,40.715412,-73.912834,"(40.715412, -73.912834)",FLUSHING AVENUE,54 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425196,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,15:14,BROOKLYN,11203,40.652855,-73.94577,"(40.652855, -73.94577)",,,362 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425241,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,0:40,,,40.756367,-73.96012,"(40.756367, -73.96012)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424661,Sedan,Sedan,,, +06/06/2021,17:58,,,40.80417,-73.966705,"(40.80417, -73.966705)",BROADWAY,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4425292,Sedan,,,, +06/07/2021,13:45,BRONX,10458,40.863266,-73.89203,"(40.863266, -73.89203)",,,2573 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424596,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,20:30,,,,,,PROSPECT EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4425165,Sedan,Sedan,,, +06/07/2021,21:26,,,40.726044,-73.90204,"(40.726044, -73.90204)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4424867,Station Wagon/Sport Utility Vehicle,Bus,,, +06/07/2021,8:50,QUEENS,11385,40.70938,-73.86964,"(40.70938, -73.86964)",,,80-00 COOPER AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4424879,Tractor Truck Diesel,,,, +05/16/2021,12:45,BRONX,10459,40.82098,-73.89388,"(40.82098, -73.89388)",EAST 163 STREET,FOX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425354,Sedan,Sedan,,, +06/07/2021,18:54,BRONX,10470,40.90489,-73.84964,"(40.90489, -73.84964)",,,4759 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4424923,Sedan,,,, +06/07/2021,18:35,QUEENS,11101,40.74413,-73.927055,"(40.74413, -73.927055)",38 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4424622,Sedan,Station Wagon/Sport Utility Vehicle,Bus,, +12/31/2021,4:20,,,40.757393,-73.93547,"(40.757393, -73.93547)",24 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4491114,Sedan,Sedan,,, +12/24/2021,8:00,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491276,Sedan,Sedan,,, +12/29/2021,8:51,,,40.702564,-73.790565,"(40.702564, -73.790565)",LIBERTY AVENUE,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491642,Sedan,Sedan,,, +12/30/2021,0:05,,,40.614193,-73.8972,"(40.614193, -73.8972)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4490722,Sedan,Sedan,Sedan,Sedan, +12/28/2021,10:30,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491018,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,20:00,BRONX,10457,40.83933,-73.89904,"(40.83933, -73.89904)",EAST 172 STREET,FULTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491439,Sedan,,,, +12/19/2021,9:45,BRONX,10463,40.88425,-73.900635,"(40.88425, -73.900635)",,,193 WEST 237 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490901,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,16:25,,,,,,PELHAM PARKWAY,WILLIAMSBRIDGE ROAD,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,Other Vehicular,,,4490562,Sedan,Ambulance,Sedan,, +12/15/2021,20:10,MANHATTAN,10023,40.7736,-73.98158,"(40.7736, -73.98158)",WEST 66 STREET,COLUMBUS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491317,Sedan,,,, +12/31/2021,21:50,,,,,,RANDALL AVENUE,CROSS BRONX EXPRESSWAY EXTENSION,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491450,Sedan,,,, +12/31/2021,8:25,BROOKLYN,11239,40.638542,-73.875694,"(40.638542, -73.875694)",,,855 LOUISIANA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491560,Sedan,Sedan,Sedan,, +12/31/2021,0:15,,,40.786068,-73.83744,"(40.786068, -73.83744)",131 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490824,Sedan,,,, +12/22/2021,8:00,BRONX,10463,40.879616,-73.9043,"(40.879616, -73.9043)",,,5604 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4490914,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,9:50,BRONX,10451,40.816856,-73.92076,"(40.816856, -73.92076)",,,310 EAST 149 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4491080,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +12/30/2021,7:33,BROOKLYN,11236,40.64255,-73.904106,"(40.64255, -73.904106)",,,91 CONKLIN AVENUE,0,0,0,0,0,0,0,0,,,,,,4490700,Sedan,,,, +12/31/2021,3:40,STATEN ISLAND,10306,40.568764,-74.11149,"(40.568764, -74.11149)",HYLAN BOULEVARD,ROSS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4491017,Sedan,Sedan,,, +12/30/2021,5:45,,,40.710976,-73.97962,"(40.710976, -73.97962)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490620,Sedan,Sedan,,, +12/29/2021,20:45,BRONX,10456,40.833218,-73.89946,"(40.833218, -73.89946)",JEFFERSON PLACE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Turning Improperly,,,,4490701,Sedan,Sedan,,, +12/31/2021,5:12,,,40.58489,-73.92885,"(40.58489, -73.92885)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491372,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,18:35,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491032,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,5:16,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490675,Sedan,,,, +12/23/2021,10:00,MANHATTAN,10033,40.852272,-73.93881,"(40.852272, -73.93881)",,,106 PINEHURST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490864,Sedan,Garbage or Refuse,,, +12/31/2021,13:45,,,40.62539,-74.135376,"(40.62539, -74.135376)",,,1351 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491049,Sedan,Sedan,Sedan,, +12/29/2021,2:45,,,40.820095,-73.89024,"(40.820095, -73.89024)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490348,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,18:00,,,40.5466,-74.22888,"(40.5466, -74.22888)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490886,Sedan,,,, +12/31/2021,13:40,QUEENS,11422,40.665348,-73.73066,"(40.665348, -73.73066)",,,247-22 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491149,Sedan,Box Truck,,, +12/31/2021,3:42,BROOKLYN,11212,40.66485,-73.91501,"(40.66485, -73.91501)",,,127 BLAKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491177,Sedan,,,, +12/23/2021,21:18,BRONX,10463,40.87526,-73.90227,"(40.87526, -73.90227)",,,2988 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490933,PUMPER,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,21:00,QUEENS,11368,40.73777,-73.85507,"(40.73777, -73.85507)",,,59-27 XENIA STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4490584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/31/2021,1:45,QUEENS,11434,40.661224,-73.76906,"(40.661224, -73.76906)",,,146-70 177 STREET,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4490803,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,19:15,BRONX,10463,40.87802,-73.90241,"(40.87802, -73.90241)",BAILEY AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490928,Sedan,,,, +12/25/2021,0:00,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490913,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,17:10,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",NEWBURG STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4490854,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,20:50,QUEENS,11418,40.702415,-73.817314,"(40.702415, -73.817314)",,,135-20 JAMAICA AVENUE,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4491079,Sedan,Sedan,,, +12/29/2021,7:30,QUEENS,11377,40.73516,-73.89784,"(40.73516, -73.89784)",MAURICE AVENUE,67 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490436,Box Truck,E-Scooter,,, +12/20/2021,7:13,BRONX,10471,40.904358,-73.89642,"(40.904358, -73.89642)",,,6469 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490869,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,4:15,QUEENS,11378,40.72754,-73.90799,"(40.72754, -73.90799)",,,59-20 BORDEN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490559,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,9:22,BROOKLYN,11229,40.609123,-73.9503,"(40.609123, -73.9503)",EAST 23 STREET,QUENTIN ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491001,Sedan,,,, +12/30/2021,8:36,MANHATTAN,10029,40.788055,-73.94433,"(40.788055, -73.94433)",EAST 102 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490676,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,23:17,BROOKLYN,11203,40.654045,-73.92673,"(40.654045, -73.92673)",EAST 54 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491155,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,14:05,,,40.722977,-74.005066,"(40.722977, -74.005066)",AVENUE OF THE AMERICAS,GRAND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4491060,Box Truck,Bike,,, +12/31/2021,15:19,BROOKLYN,11215,40.669216,-73.991615,"(40.669216, -73.991615)",,,181 12 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,Unspecified,,4491424,Sedan,Sedan,Sedan,Sedan, +12/25/2021,3:16,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490891,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,12:05,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491180,Sedan,Sedan,,, +12/27/2021,15:36,BROOKLYN,11229,40.59603,-73.93994,"(40.59603, -73.93994)",,,2938 AVENUE W,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491378,Sedan,Sedan,,, +12/20/2021,20:09,STATEN ISLAND,10309,40.516335,-74.23283,"(40.516335, -74.23283)",PAGE AVENUE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491209,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,0:30,STATEN ISLAND,10306,40.57455,-74.11616,"(40.57455, -74.11616)",NORTH RAILROAD AVENUE,CLOISTER PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4490613,Sedan,,,, +12/31/2021,4:20,BROOKLYN,11236,40.648266,-73.90581,"(40.648266, -73.90581)",ROCKAWAY PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490785,Sedan,Sedan,,, +12/30/2021,0:15,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4491633,Sedan,Sedan,,, +12/31/2021,15:00,BROOKLYN,11223,40.590748,-73.968376,"(40.590748, -73.968376)",AVENUE X,EAST 2 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4491002,Sedan,,,, +12/30/2021,7:55,,,40.60729,-74.14086,"(40.60729, -74.14086)",WOOLLEY AVENUE,SOUTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,11:34,QUEENS,11417,40.681988,-73.83698,"(40.681988, -73.83698)",LIBERTY AVENUE,104 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490987,Sedan,,,, +12/25/2021,13:00,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491187,Sedan,Sedan,,, +12/30/2021,8:00,,,,,,CLEARVIEW EXPRESSWAY,26 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/01/2021,15:50,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491501,Sedan,,,, +12/28/2021,7:13,,,40.80297,-73.96387,"(40.80297, -73.96387)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4490955,Sedan,Bus,,, +12/27/2021,5:00,,,40.710274,-73.77774,"(40.710274, -73.77774)",183 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491611,Sedan,Sedan,,, +12/31/2021,0:29,,,40.901016,-73.90408,"(40.901016, -73.90408)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490923,Sedan,,,, +12/30/2021,6:30,,,40.609642,-73.89738,"(40.609642, -73.89738)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490881,Sedan,Sedan,,, +12/27/2021,21:45,QUEENS,11426,40.726192,-73.723404,"(40.726192, -73.723404)",245 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490970,Sedan,,,, +12/29/2021,15:28,QUEENS,11362,40.753647,-73.7444,"(40.753647, -73.7444)",CROSS ISLAND PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4490512,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,17:26,BROOKLYN,11235,40.592205,-73.93551,"(40.592205, -73.93551)",AVENUE Y,COYLE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490526,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,11:50,,,40.66804,-73.86055,"(40.66804, -73.86055)",LORING AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491272,Sedan,,,, +12/30/2021,19:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,0:20,BROOKLYN,11208,40.67936,-73.879745,"(40.67936, -73.879745)",ATLANTIC AVENUE,HALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491232,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,13:18,MANHATTAN,10002,40.71942,-73.979034,"(40.71942, -73.979034)",,,140 COLUMBIA STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491013,Sedan,Sedan,,, +12/27/2021,21:13,MANHATTAN,10025,40.80521,-73.967125,"(40.80521, -73.967125)",,,611 WEST 111 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490918,Sedan,,,, +12/29/2021,12:00,QUEENS,11691,40.597057,-73.78203,"(40.597057, -73.78203)",,,441 BEACH 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490576,Sedan,,,, +12/31/2021,7:06,,,40.61156,-74.18877,"(40.61156, -74.18877)",CHELSEA ROAD,CURRY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491045,Sedan,,,, +12/30/2021,21:20,QUEENS,11104,40.743916,-73.92519,"(40.743916, -73.92519)",39 PLACE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490776,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/31/2021,8:15,QUEENS,11354,40.76407,-73.80914,"(40.76407, -73.80914)",NORTHERN BOULEVARD,156 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491028,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,19:57,,,,,,CITY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491451,Motorcycle,,,, +12/30/2021,10:20,BROOKLYN,11210,40.627235,-73.94698,"(40.627235, -73.94698)",,,2370 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491313,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,17:43,BROOKLYN,11234,40.619423,-73.91921,"(40.619423, -73.91921)",AVENUE N,EAST 58 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Keep Right,Unspecified,,,4491050,Bike,Sedan,,, +12/29/2021,18:00,,,,,,BAINBRIDGE AVENUE,RESERVOIR OVAL EAST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490896,Sedan,,,, +12/29/2021,17:50,BROOKLYN,11220,40.648705,-74.010254,"(40.648705, -74.010254)",46 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490498,Bike,,,, +12/30/2021,10:25,,,40.725727,-73.90037,"(40.725727, -73.90037)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490710,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,17:05,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",86 STREET,4 AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4490743,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,6:24,,,,,,VERRAZANO BRIDGE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,5:26,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4490519,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/30/2021,0:16,BRONX,10451,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490623,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,19:30,BROOKLYN,11237,40.70618,-73.92846,"(40.70618, -73.92846)",PORTER AVENUE,GRATTAN STREET,,1,0,0,0,0,0,1,0,Other Vehicular,View Obstructed/Limited,Unspecified,,,4491101,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/30/2021,19:36,QUEENS,11373,40.74459,-73.884674,"(40.74459, -73.884674)",BAXTER AVENUE,LAYTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490848,Sedan,PK,,, +12/25/2021,13:00,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491239,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,18:42,BROOKLYN,11226,40.6528,-73.95968,"(40.6528, -73.95968)",,,2126 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515729,Sedan,,,, +12/31/2021,23:00,QUEENS,11429,40.707085,-73.75114,"(40.707085, -73.75114)",,,109-62 FRANCIS LEWIS BOULEVARD,1,0,0,0,0,0,1,0,Physical Disability,,,,,4491118,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,8:38,BRONX,10471,40.911324,-73.90658,"(40.911324, -73.90658)",PALISADE AVENUE,WEST 261 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490873,Sedan,Sedan,,, +12/30/2021,2:00,QUEENS,11366,40.726055,-73.8083,"(40.726055, -73.8083)",,,160-10 75 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4490781,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,14:00,QUEENS,11377,40.7497,-73.902565,"(40.7497, -73.902565)",60 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4490982,Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/30/2021,3:05,QUEENS,11436,40.67819,-73.80144,"(40.67819, -73.80144)",FOCH BOULEVARD,140 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490567,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,19:00,BROOKLYN,11207,40.668816,-73.89895,"(40.668816, -73.89895)",SUTTER AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491303,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,16:42,BRONX,10470,40.898952,-73.867455,"(40.898952, -73.867455)",EAST 237 STREET,KATONAH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491056,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,11:40,BRONX,10473,40.824207,-73.858795,"(40.824207, -73.858795)",WHITE PLAINS ROAD,STORY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490632,Sedan,Ambulance,,, +12/30/2021,7:50,,,40.699535,-73.75647,"(40.699535, -73.75647)",MURDOCK AVENUE,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,Unspecified,,,4490950,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +12/30/2021,18:55,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491390,Sedan,Sedan,,, +12/25/2021,16:33,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,ALABAMA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491256,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,22:22,BRONX,10469,40.867462,-73.8443,"(40.867462, -73.8443)",ARNOW AVENUE,FENTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491171,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,15:40,BROOKLYN,11235,40.583702,-73.944626,"(40.583702, -73.944626)",,,2211 EMMONS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515934,Bus,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,1:15,QUEENS,11423,40.711525,-73.76951,"(40.711525, -73.76951)",,,92-33 190 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491629,Convertible,Sedan,Station Wagon/Sport Utility Vehicle,, +12/24/2021,22:45,MANHATTAN,10002,40.71975,-73.992165,"(40.71975, -73.992165)",DELANCEY STREET,FORSYTH STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491428,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,11:34,BROOKLYN,11236,40.629936,-73.90448,"(40.629936, -73.90448)",EAST 82 STREET,AVENUE M,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491219,Station Wagon/Sport Utility Vehicle,Dump,,, +12/27/2021,21:52,,,40.872314,-73.91274,"(40.872314, -73.91274)",,,WEST 220 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491495,Sedan,Ambulance,,, +12/31/2021,16:00,BRONX,10455,40.81014,-73.908226,"(40.81014, -73.908226)",WALES AVENUE,EAST 145 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4491083,Sedan,,,, +12/27/2021,12:30,STATEN ISLAND,10314,40.621017,-74.13181,"(40.621017, -74.13181)",JEWETT AVENUE,COLLEGE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4490945,School Bus,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,9:14,,,40.88809,-73.89254,"(40.88809, -73.89254)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490906,Sedan,Sedan,,, +12/30/2021,17:50,MANHATTAN,10035,40.80657,-73.936615,"(40.80657, -73.936615)",,,111 EAST 128 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490832,Sedan,,,, +12/30/2021,7:00,BROOKLYN,11214,40.605072,-74.004944,"(40.605072, -74.004944)",RUTHERFORD PLACE,18 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4491167,,,,, +12/28/2021,14:40,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4491604,Sedan,,,, +12/24/2021,12:00,BROOKLYN,11208,40.679382,-73.8673,"(40.679382, -73.8673)",,,135 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,23:19,MANHATTAN,10009,40.723984,-73.97581,"(40.723984, -73.97581)",,,118 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491460,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,6:40,,,40.61135,-74.09847,"(40.61135, -74.09847)",NARROWS ROAD NORTH,CLOVE ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4490938,Sedan,,,, +12/31/2021,19:40,BRONX,10459,40.831123,-73.89148,"(40.831123, -73.89148)",,,1327 SOUTHERN BOULEVARD,0,1,0,0,0,0,0,1,Turning Improperly,Unsafe Speed,,,,4491128,Station Wagon/Sport Utility Vehicle,E-scooter,,, +12/27/2021,7:55,BROOKLYN,11226,40.64102,-73.94739,"(40.64102, -73.94739)",,,3105 AVENUE D,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491337,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,18:10,QUEENS,11364,40.750076,-73.77894,"(40.750076, -73.77894)",,,50-33 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490731,Van,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,11:00,QUEENS,11694,40.581764,-73.83848,"(40.581764, -73.83848)",,,116-02 BEACH CHANNEL DRIVE,4,0,4,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491291,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,21:25,MANHATTAN,10018,,,,west 38 street,8 avenue,,1,0,1,0,0,0,0,0,,,,,,4491533,,,,, +12/29/2021,19:36,MANHATTAN,10029,40.795334,-73.93589,"(40.795334, -73.93589)",,,2234 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491024,Motorcycle,Sedan,Sedan,, +12/29/2021,9:48,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4490455,Sedan,Van,,, +12/30/2021,17:00,QUEENS,11418,40.69467,-73.83307,"(40.69467, -73.83307)",91 AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490772,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,9:50,,,40.61022,-74.09389,"(40.61022, -74.09389)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4491009,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,19:30,,,40.777958,-73.90847,"(40.777958, -73.90847)",21 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490551,Sedan,Sedan,,, +12/29/2021,21:20,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490977,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,18:22,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490748,Sedan,Sedan,,, +12/27/2021,1:00,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4491266,Sedan,Sedan,,, +12/30/2021,13:00,,,40.656643,-74.00527,"(40.656643, -74.00527)",3 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,4490715,Sedan,Sedan,Sedan,, +12/21/2021,13:20,,,,,,Beach 70 street,Aquatic drIve,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491286,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,18:15,BROOKLYN,11234,40.625824,-73.92762,"(40.625824, -73.92762)",UTICA AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,,,,4491041,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,6:25,MANHATTAN,10025,40.80297,-73.96387,"(40.80297, -73.96387)",AMSTERDAM AVENUE,CATHEDRAL PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491135,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,10:40,BROOKLYN,11218,40.63586,-73.981445,"(40.63586, -73.981445)",,,1570 41 STREET,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4490652,Tow Truck / Wrecker,Box Truck,,, +12/30/2021,21:35,BROOKLYN,11204,40.61536,-73.987076,"(40.61536, -73.987076)",20 AVENUE,67 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4490949,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,0:35,,,40.627037,-74.16483,"(40.627037, -74.16483)",,,2239 FOREST AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4491105,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,21:00,QUEENS,11419,40.686028,-73.82506,"(40.686028, -73.82506)",LIBERTY AVENUE,118 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4490877,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/31/2021,20:55,BROOKLYN,11221,40.69749,-73.92008,"(40.69749, -73.92008)",WILSON AVENUE,GREENE AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4491122,Bus,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,13:29,MANHATTAN,10021,40.773006,-73.96033,"(40.773006, -73.96033)",LEXINGTON AVENUE,EAST 76 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4490685,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,0:22,QUEENS,11373,40.7387,-73.87095,"(40.7387, -73.87095)",92 STREET,53 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490833,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,15:00,QUEENS,11415,40.71164,-73.83591,"(40.71164, -73.83591)",UNION TURNPIKE,PARK LANE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490960,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,6:53,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4490591,Sedan,Sedan,Sedan,, +12/30/2021,16:44,MANHATTAN,10128,40.776604,-73.94663,"(40.776604, -73.94663)",EAST 87 STREET,YORK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491224,Sedan,,,, +12/27/2021,15:30,QUEENS,11423,40.708843,-73.7783,"(40.708843, -73.7783)",,,182-21 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4491622,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,15:40,BROOKLYN,11235,40.587543,-73.958206,"(40.587543, -73.958206)",EAST 12 STREET,AVENUE Z,,1,0,1,0,0,0,0,0,,,,,,4425011,,,,, +12/30/2021,19:28,QUEENS,11377,40.740517,-73.89236,"(40.740517, -73.89236)",45 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490777,Station Wagon/Sport Utility Vehicle,Bike,,, +12/30/2021,17:00,BROOKLYN,11216,40.680634,-73.94048,"(40.680634, -73.94048)",DECATUR STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4491192,Sedan,,,, +12/30/2021,8:30,QUEENS,11103,40.76577,-73.919,"(40.76577, -73.919)",34 STREET,30 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491399,,,,, +12/30/2021,23:40,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491436,Sedan,,,, +12/30/2021,23:46,,,40.63773,-74.1321,"(40.63773, -74.1321)",BENNETT STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491110,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,16:55,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491326,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,23:48,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",RALPH AVENUE,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491176,,,,, +12/18/2021,19:00,MANHATTAN,10024,40.781013,-73.97247,"(40.781013, -73.97247)",,,195 CENTRAL PARK WEST,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4491320,Sedan,,,, +12/30/2021,3:31,,,40.7024,-73.9605,"(40.7024, -73.9605)",BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4491124,Sedan,,,, +12/26/2021,21:00,BROOKLYN,11207,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491263,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,12:00,BROOKLYN,11215,40.668102,-73.980576,"(40.668102, -73.980576)",7 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,,,,4491425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,2:30,QUEENS,11385,40.709846,-73.859566,"(40.709846, -73.859566)",WOODHAVEN BOULEVARD,74 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491210,Sedan,Sedan,,, +12/29/2021,21:00,BRONX,10466,40.890823,-73.85694,"(40.890823, -73.85694)",,,756 EAST 230 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491486,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,5:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490629,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,14:30,BROOKLYN,11207,40.67742,-73.89587,"(40.67742, -73.89587)",,,2675 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,5:15,,,40.62236,-74.174355,"(40.62236, -74.174355)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4491014,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,14:40,MANHATTAN,10023,40.778477,-73.98546,"(40.778477, -73.98546)",WEST 70 STREET,WEST END AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4491333,Sedan,E-Scooter,,, +12/28/2021,19:57,QUEENS,11432,40.71603,-73.80823,"(40.71603, -73.80823)",,,150-47 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4491468,Sedan,Sedan,Sedan,, +12/31/2021,9:16,,,40.83997,-73.87792,"(40.83997, -73.87792)",EAST TREMONT AVENUE,EAST 177 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4491580,Sedan,Sedan,,, +12/31/2021,19:56,BROOKLYN,11224,40.579052,-73.98415,"(40.579052, -73.98415)",NEPTUNE AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491353,Sedan,Bus,,, +12/31/2021,21:20,QUEENS,11420,40.670044,-73.818115,"(40.670044, -73.818115)",122 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491084,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,19:05,BROOKLYN,11219,40.627144,-74.00032,"(40.627144, -74.00032)",13 AVENUE,63 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4490753,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,21:43,,,40.67994,-73.941216,"(40.67994, -73.941216)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4491522,Sedan,,,, +12/29/2021,11:43,MANHATTAN,10035,40.796833,-73.93336,"(40.796833, -73.93336)",,,448 EAST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,15:08,MANHATTAN,10001,40.74671,-73.98639,"(40.74671, -73.98639)",,,4 WEST 31 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490694,Sedan,Sedan,,, +12/24/2021,11:00,BROOKLYN,11208,40.679737,-73.878395,"(40.679737, -73.878395)",ATLANTIC AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491242,Sedan,Sedan,Sedan,, +10/06/2021,15:30,,,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4465295,,,,, +12/29/2021,20:40,BROOKLYN,11220,40.640472,-74.01513,"(40.640472, -74.01513)",,,5817 5 AVENUE,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4490530,Sedan,Sedan,,, +12/29/2021,18:05,BROOKLYN,11214,40.593933,-73.99137,"(40.593933, -73.99137)",,,8768 25 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490992,Sedan,,,, +12/31/2021,3:30,MANHATTAN,10011,40.743332,-73.99991,"(40.743332, -73.99991)",,,196 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491141,Sedan,Sedan,,, +12/27/2021,18:45,BROOKLYN,11208,40.664894,-73.875946,"(40.664894, -73.875946)",LINDEN BOULEVARD,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491280,Bus,Tractor Truck Diesel,,, +12/29/2021,20:00,BRONX,10460,40.83325,-73.890205,"(40.83325, -73.890205)",,,1490 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4490702,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +12/29/2021,15:17,,,40.764248,-73.92763,"(40.764248, -73.92763)",31 DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490581,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,13:30,,,40.679634,-73.94959,"(40.679634, -73.94959)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4490691,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,11:55,,,40.858707,-73.9037,"(40.858707, -73.9037)",JEROME AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490964,Sedan,E-Bike,,, +12/28/2021,13:10,,,40.867275,-73.91922,"(40.867275, -73.91922)",VERMILYEA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490858,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,11:35,,,40.765434,-73.86268,"(40.765434, -73.86268)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4490642,Sedan,Sedan,,, +12/25/2021,12:27,BRONX,10469,40.85971,-73.85736,"(40.85971, -73.85736)",WILLIAMSBRIDGE ROAD,ASTOR AVENUE,,2,0,2,0,0,0,0,0,Unsafe Speed,,,,,4490865,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,5:23,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4490372,Sedan,Station Wagon/Sport Utility Vehicle,PASSENGER,, +12/31/2021,6:10,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490887,Sedan,Sedan,,, +12/28/2021,10:30,,,40.66762,-73.94237,"(40.66762, -73.94237)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491316,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,1:30,BROOKLYN,11223,40.60326,-73.96653,"(40.60326, -73.96653)",,,1872 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4490981,,,,, +12/30/2021,4:15,QUEENS,11429,40.71232,-73.73202,"(40.71232, -73.73202)",HEMPSTEAD AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4490802,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/29/2021,23:05,,,,,,WEST 55 STREET,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491150,Sedan,Sedan,,, +12/16/2021,11:15,QUEENS,11691,40.606586,-73.755875,"(40.606586, -73.755875)",,,22-29 DIX AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490932,Ambulance,Sedan,,, +12/31/2021,18:30,,,40.764816,-73.814964,"(40.764816, -73.814964)",150 STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491196,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/29/2021,7:15,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491363,Station Wagon/Sport Utility Vehicle,,,, +12/23/2021,8:00,STATEN ISLAND,10301,40.640614,-74.08703,"(40.640614, -74.08703)",TAFT AVENUE,JERSEY STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491641,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,16:58,BROOKLYN,11201,40.69816,-73.97834,"(40.69816, -73.97834)",,,21 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491019,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,6:28,BROOKLYN,11236,40.627724,-73.901924,"(40.627724, -73.901924)",,,28 PAERDEGAT 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491229,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,8:24,BROOKLYN,11215,40.674194,-73.97686,"(40.674194, -73.97686)",,,790 PRESIDENT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491419,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/31/2021,22:50,BROOKLYN,11212,,,,Blake ave,Thomas s Boyland street,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491181,Sedan,,,, +12/26/2021,16:00,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/31/2021,18:15,,,40.73691,-73.86784,"(40.73691, -73.86784)",56 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491387,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,9:05,QUEENS,11692,40.592728,-73.79813,"(40.592728, -73.79813)",BEACH CHANNEL DRIVE,BEACH 69 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491513,Sedan,,,, +12/31/2021,8:50,,,40.715977,-73.81082,"(40.715977, -73.81082)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4490919,Sedan,Sedan,,, +12/31/2021,17:30,,,40.79184,-73.823524,"(40.79184, -73.823524)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491033,Sedan,Sedan,,, +12/22/2021,18:08,,,40.715973,-73.77111,"(40.715973, -73.77111)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491616,Station Wagon/Sport Utility Vehicle,Van,,, +12/18/2021,3:07,BROOKLYN,11208,40.66524,-73.86746,"(40.66524, -73.86746)",,,899 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491296,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,6:08,,,40.583447,-74.159935,"(40.583447, -74.159935)",,,51 WESTPORT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491046,Sedan,Sedan,,, +12/31/2021,22:50,,,,,,EAST 14 STREET,FDR DRIVE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4491157,Taxi,Sedan,,, +12/23/2021,10:28,BROOKLYN,11210,40.62948,-73.94447,"(40.62948, -73.94447)",NEW YORK AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491051,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,20:23,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490744,Sedan,Sedan,,, +12/29/2021,16:40,QUEENS,11355,40.758663,-73.82906,"(40.758663, -73.82906)",,,136-46 41 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490518,Sedan,E-Scooter,,, +12/29/2021,12:02,,,40.723347,-73.939316,"(40.723347, -73.939316)",MORGAN AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490520,Van,,,, +12/30/2021,14:45,QUEENS,11426,40.7258,-73.719215,"(40.7258, -73.719215)",,,247-67 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4490723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,15:21,STATEN ISLAND,10309,40.53171,-74.202896,"(40.53171, -74.202896)",DRUMGOOLE ROAD EAST,FOSTER ROAD,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4490885,Sedan,Sedan,,, +12/29/2021,0:00,MANHATTAN,10065,40.765724,-73.959,"(40.765724, -73.959)",,,353 EAST 68 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4490538,Sedan,,,, +12/30/2021,17:00,BRONX,10467,40.86358,-73.86642,"(40.86358, -73.86642)",,,2507 CRUGER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4490738,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,19:30,,,40.717754,-73.75815,"(40.717754, -73.75815)",90 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4491610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/18/2021,16:40,BRONX,10467,40.88568,-73.87901,"(40.88568, -73.87901)",,,3604 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490900,Sedan,Sedan,,, +12/29/2021,12:55,QUEENS,11691,40.60104,-73.74764,"(40.60104, -73.74764)",MOTT AVENUE,CAFFREY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490566,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,19:10,BROOKLYN,11201,40.68817,-73.98399,"(40.68817, -73.98399)",BOND STREET,SCHERMERHORN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4491246,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +12/29/2021,0:10,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4490762,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,0:00,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4491444,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,19:00,BRONX,10471,40.90647,-73.906784,"(40.90647, -73.906784)",,,5701 ARLINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490917,Pick-up Truck,,,, +12/29/2021,3:21,,,40.599052,-73.99808,"(40.599052, -73.99808)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490487,Sedan,Sedan,,, +12/31/2021,19:48,BROOKLYN,11205,40.69348,-73.96544,"(40.69348, -73.96544)",,,489 MYRTLE AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4491067,Taxi,Sedan,,, +12/30/2021,3:20,QUEENS,11427,40.738346,-73.73389,"(40.738346, -73.73389)",,,79-25 WINCHESTER BOULEVARD,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4490724,Sedan,,,, +12/29/2021,21:05,QUEENS,11375,40.736004,-73.84991,"(40.736004, -73.84991)",,,108-25 62 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490996,Sedan,,,, +12/23/2021,15:15,,,40.67765,-73.87058,"(40.67765, -73.87058)",CONDUIT BOULEVARD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4491553,Sedan,,,, +12/28/2021,0:49,,,40.645344,-73.87897,"(40.645344, -73.87897)",PENNSYLVANIA AVENUE,HORNELL LOOP,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491275,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,20:00,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491257,Taxi,Sedan,,, +12/28/2021,23:40,,,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4491233,Sedan,Sedan,,, +12/30/2021,18:52,BROOKLYN,11211,40.71126,-73.95777,"(40.71126, -73.95777)",,,164 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490757,Sedan,Armored Truck,,, +12/31/2021,3:05,BROOKLYN,11234,40.621216,-73.93539,"(40.621216, -73.93539)",FLATBUSH AVENUE,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491044,Sedan,,,, +12/29/2021,15:58,,,40.840263,-73.84717,"(40.840263, -73.84717)",GLEBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491452,Sedan,Sedan,,, +12/30/2021,14:20,QUEENS,11101,40.743416,-73.95387,"(40.743416, -73.95387)",VERNON BOULEVARD,49 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4490775,Sedan,Bike,,, +12/23/2021,18:30,MANHATTAN,10029,40.787918,-73.947845,"(40.787918, -73.947845)",,,193 EAST 100 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491023,Sedan,,,, +11/29/2021,7:44,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491552,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,7:15,BROOKLYN,11234,40.604538,-73.91352,"(40.604538, -73.91352)",,,2324 NATIONAL DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,0:00,MANHATTAN,10128,40.783337,-73.94497,"(40.783337, -73.94497)",,,336 EAST 96 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490537,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/29/2021,15:00,MANHATTAN,10036,40.757828,-73.99308,"(40.757828, -73.99308)",9 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490907,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/23/2021,19:24,QUEENS,11432,40.71231,-73.78521,"(40.71231, -73.78521)",,,178-02 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491608,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,14:24,BROOKLYN,11207,40.67007,-73.89927,"(40.67007, -73.89927)",WILLIAMS AVENUE,BELMONT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4491250,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,12:17,MANHATTAN,10034,40.872173,-73.912895,"(40.872173, -73.912895)",,,5134 BROADWAY,1,0,1,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4491496,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,17:35,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4491252,Sedan,Sedan,Sedan,, +12/22/2021,22:00,BRONX,10463,40.876877,-73.9034,"(40.876877, -73.9034)",ALBANY CRESCENT,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490912,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,14:15,QUEENS,11420,40.682537,-73.80716,"(40.682537, -73.80716)",135 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4490558,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/30/2021,5:00,MANHATTAN,10019,40.763256,-73.98062,"(40.763256, -73.98062)",,,153 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490677,Sedan,,,, +12/26/2021,5:35,QUEENS,11369,40.7639,-73.88064,"(40.7639, -73.88064)",,,88-20 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4490902,Sedan,,,, +12/30/2021,23:20,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,21:21,QUEENS,11385,40.704155,-73.90752,"(40.704155, -73.90752)",ONDERDONK AVENUE,GATES AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491208,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +12/28/2021,14:09,BROOKLYN,11234,40.617424,-73.94315,"(40.617424, -73.94315)",EAST 33 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490880,Box Truck,Bike,Station Wagon/Sport Utility Vehicle,, +12/29/2021,13:50,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4490511,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,17:34,QUEENS,11358,40.753986,-73.80769,"(40.753986, -73.80769)",159 STREET,46 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4491034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,13:40,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4491325,Sedan,Taxi,,, +12/29/2021,12:12,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4490578,Van,Box Truck,,, +12/31/2021,16:10,,,40.833397,-73.93538,"(40.833397, -73.93538)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4491012,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,13:00,QUEENS,11104,40.745007,-73.91928,"(40.745007, -73.91928)",43 AVENUE,45 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490471,E-Bike,Bike,,, +12/31/2021,19:50,QUEENS,11356,40.78928,-73.84095,"(40.78928, -73.84095)",127 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491070,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,18:00,QUEENS,11366,40.728794,-73.79868,"(40.728794, -73.79868)",171 STREET,73 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4491003,Station Wagon/Sport Utility Vehicle,Bike,,, +12/29/2021,14:30,QUEENS,11428,40.72106,-73.74026,"(40.72106, -73.74026)",93 AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490552,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,9:35,BROOKLYN,11208,40.659756,-73.866684,"(40.659756, -73.866684)",,,830 FOUNTAIN AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4491245,Van,,,, +12/31/2021,11:54,BROOKLYN,11214,40.60728,-74.00887,"(40.60728, -74.00887)",,,109 BAY 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490934,Sedan,,,, +12/27/2021,12:00,,,40.58388,-73.82305,"(40.58388, -73.82305)",BEACH 102 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491287,Sedan,Sedan,,, +12/29/2021,19:30,,,,,,BOSCOMBE AVENUE,West shore expressway,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490719,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,19:45,,,40.863113,-73.920616,"(40.863113, -73.920616)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491500,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,22:45,,,40.765423,-73.89001,"(40.765423, -73.89001)",,,ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4491134,Taxi,Taxi,Sedan,, +12/29/2021,17:30,,,40.82206,-73.92041,"(40.82206, -73.92041)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490545,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,0:20,,,40.771374,-73.877144,"(40.771374, -73.877144)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491100,Sedan,,,, +12/31/2021,13:50,QUEENS,11004,40.736553,-73.71194,"(40.736553, -73.71194)",HILLSIDE AVENUE,256 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490956,Sedan,Box Truck,,, +12/25/2021,17:00,BRONX,10460,40.849308,-73.88481,"(40.849308, -73.88481)",EAST 182 STREET,PROSPECT AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4490857,E-Bike,,,, +12/30/2021,20:25,,,,,,GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4490763,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,19:59,QUEENS,11366,40.73125,-73.78214,"(40.73125, -73.78214)",188 STREET,75 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491473,,,,, +11/18/2021,10:55,,,40.811203,-73.96158,"(40.811203, -73.96158)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490971,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,2:05,BROOKLYN,11206,40.69854,-73.94116,"(40.69854, -73.94116)",MARCUS GARVEY BOULEVARD,PARK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491195,Sedan,,,, +12/29/2021,11:40,STATEN ISLAND,10306,40.560825,-74.13482,"(40.560825, -74.13482)",AMBOY ROAD,BUFFALO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490614,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,0:00,BRONX,10467,40.865467,-73.86541,"(40.865467, -73.86541)",HOLLAND AVENUE,ALLERTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490735,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,1:30,MANHATTAN,10065,40.76524,-73.95788,"(40.76524, -73.95788)",EAST 68 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491639,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,19:40,BROOKLYN,11208,40.665474,-73.86752,"(40.665474, -73.86752)",CRESCENT STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4491278,Sedan,Sedan,,, +12/30/2021,15:30,QUEENS,11421,40.691246,-73.85088,"(40.691246, -73.85088)",89 AVENUE,WOODHAVEN BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4490771,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/31/2021,8:40,,,40.765266,-73.81517,"(40.765266, -73.81517)",150 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491027,Sedan,,,, +12/30/2021,16:30,BRONX,10467,40.879253,-73.88313,"(40.879253, -73.88313)",,,55 EAST MOSHOLU PARKWAY NORTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490751,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,7:30,QUEENS,11378,40.724186,-73.898605,"(40.724186, -73.898605)",,,66-02 GRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490672,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,20:00,BROOKLYN,11217,40.679523,-73.97521,"(40.679523, -73.97521)",,,92 6 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491427,Sedan,,,, +12/30/2021,12:00,,,40.62026,-74.16774,"(40.62026, -74.16774)",FAHY AVENUE,FELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4490821,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,0:40,MANHATTAN,10011,40.747715,-74.004265,"(40.747715, -74.004265)",,,500 WEST 23 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4490895,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,19:46,BROOKLYN,11234,40.61301,-73.93499,"(40.61301, -73.93499)",AVENUE R,EAST 36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4491040,Sedan,Sedan,Sedan,Sedan, +12/30/2021,3:52,BROOKLYN,11203,40.650684,-73.92354,"(40.650684, -73.92354)",,,5690 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4490595,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/23/2021,0:25,BROOKLYN,11236,40.634365,-73.88883,"(40.634365, -73.88883)",SEAVIEW AVENUE,EAST 98 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491576,Sedan,Sedan,,, +12/31/2021,15:25,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,101 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4490998,Sedan,,,, +12/30/2021,6:40,QUEENS,11372,40.74744,-73.885796,"(40.74744, -73.885796)",ROOSEVELT AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4490850,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/25/2021,5:00,BROOKLYN,11204,40.610588,-73.98971,"(40.610588, -73.98971)",,,2071 74 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,23:38,QUEENS,11417,40.68424,-73.83808,"(40.68424, -73.83808)",104 STREET,103 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,5:48,,,40.758255,-73.7772,"(40.758255, -73.7772)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490590,pas,Van,,, +12/25/2021,0:15,BROOKLYN,11208,40.67086,-73.863174,"(40.67086, -73.863174)",ELDERTS LANE,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4491240,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,9:30,BRONX,10462,40.852356,-73.86489,"(40.852356, -73.86489)",BRADY AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4490437,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,22:41,BRONX,10469,40.86289,-73.85016,"(40.86289, -73.85016)",BOUCK AVENUE,MACE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4490866,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/31/2021,16:30,BROOKLYN,11223,40.606533,-73.970436,"(40.606533, -73.970436)",,,1780 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,4:05,STATEN ISLAND,10310,40.63392,-74.12514,"(40.63392, -74.12514)",CASTLETON AVENUE,BODINE STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4490939,Sedan,Sedan,,, +04/02/2022,13:32,BROOKLYN,11225,40.668964,-73.95059,"(40.668964, -73.95059)",NOSTRAND AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516177,Sedan,,,, +12/29/2021,8:29,BROOKLYN,11223,40.59639,-73.96522,"(40.59639, -73.96522)",,,2174 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490528,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/28/2021,13:45,MANHATTAN,10024,40.781837,-73.979294,"(40.781837, -73.979294)",WEST 77 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491336,Taxi,,,, +12/30/2021,18:23,BRONX,10467,40.874214,-73.866104,"(40.874214, -73.866104)",CRUGER AVENUE,BARTHOLDI STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491055,Sedan,E-Scooter,,, +12/30/2021,10:28,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",ROCKAWAY BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4490633,Sedan,Pick-up Truck,,, +12/31/2021,0:36,BROOKLYN,11208,40.67936,-73.879745,"(40.67936, -73.879745)",ATLANTIC AVENUE,HALE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491292,Sedan,Sedan,,, +12/28/2021,19:16,BRONX,10467,40.872787,-73.87651,"(40.872787, -73.87651)",,,3162 DECATUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490924,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,14:50,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490892,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,14:00,BRONX,10455,40.811584,-73.90868,"(40.811584, -73.90868)",EAST 147 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490805,Sedan,,,, +12/31/2021,6:50,,,,,,VERMONT STREET,HIGHLAND BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4491273,Sedan,,,, +12/27/2021,17:10,,,40.60235,-74.189644,"(40.60235, -74.189644)",CHELSEA ROAD,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491111,Sedan,Sedan,,, +12/28/2021,4:55,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4491008,Van,,,, +12/31/2021,17:48,BRONX,10467,40.86392,-73.8674,"(40.86392, -73.8674)",,,2548 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4491130,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,5:50,BROOKLYN,11210,40.636074,-73.951096,"(40.636074, -73.951096)",FARRAGUT ROAD,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4491314,Sedan,Sedan,Sedan,, +04/02/2022,14:00,,,40.627285,-74.12366,"(40.627285, -74.12366)",FOREST AVENUE,RAYMOND PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515829,Sedan,Sedan,,, +12/30/2021,1:40,QUEENS,11432,40.71181,-73.78785,"(40.71181, -73.78785)",175 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4491630,Bus,Station Wagon/Sport Utility Vehicle,GARBAGE TR,, +12/30/2021,12:53,BROOKLYN,11219,40.640564,-73.99222,"(40.640564, -73.99222)",,,1143 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490966,Sedan,,,, +12/30/2021,13:27,QUEENS,11417,40.678165,-73.84871,"(40.678165, -73.84871)",,,89-01 107 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4490988,Sedan,,,, +12/29/2021,19:59,BROOKLYN,11236,40.65187,-73.90456,"(40.65187, -73.90456)",AVENUE D,EAST 101 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4491220,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/29/2021,6:22,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491188,Sedan,Box Truck,,, +12/30/2021,9:20,QUEENS,11355,40.762794,-73.83558,"(40.762794, -73.83558)",NORTHERN BOULEVARD,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4490640,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,11:30,BROOKLYN,11234,40.625507,-73.91789,"(40.625507, -73.91789)",,,2133 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4491284,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/27/2021,23:45,STATEN ISLAND,10310,40.628708,-74.11902,"(40.628708, -74.11902)",FOREST AVENUE,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490944,Sedan,,,, +12/23/2021,17:00,BROOKLYN,11207,40.662674,-73.89738,"(40.662674, -73.89738)",WILLIAMS AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491267,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,11:50,BROOKLYN,11213,40.668068,-73.93578,"(40.668068, -73.93578)",,,1602 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490713,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,21:40,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490811,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,16:37,MANHATTAN,10036,40.756557,-73.986115,"(40.756557, -73.986115)",BROADWAY,WEST 43 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491534,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,2:29,BROOKLYN,11208,40.669064,-73.86557,"(40.669064, -73.86557)",LINDEN BOULEVARD,LINCOLN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491299,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +12/29/2021,19:25,,,40.83163,-73.92252,"(40.83163, -73.92252)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490622,Sedan,,,, +12/30/2021,17:37,QUEENS,11412,40.69977,-73.755585,"(40.69977, -73.755585)",199 STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491117,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/18/2021,21:00,QUEENS,11372,40.7517,-73.894135,"(40.7517, -73.894135)",,,34-23 72 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491465,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,19:00,QUEENS,11368,40.754116,-73.858536,"(40.754116, -73.858536)",,,36-19 109 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491168,,,,, +12/30/2021,0:28,,,0,0,"(0.0, 0.0)",CITY ISLAND ROAD,SHORE ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4490570,Sedan,,,, +12/24/2021,22:00,,,40.884388,-73.90759,"(40.884388, -73.90759)",GREYSTONE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490861,Sedan,,,, +12/30/2021,23:30,,,40.74084,-73.72681,"(40.74084, -73.72681)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4490872,Sedan,,,, +12/29/2021,19:00,BROOKLYN,11207,40.66531,-73.890305,"(40.66531, -73.890305)",BRADFORD STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491304,Sedan,,,, +12/29/2021,22:45,,,40.668137,-73.783356,"(40.668137, -73.783356)",136 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,11:15,QUEENS,11102,,,,,,2404 23 street,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491393,Sedan,Box Truck,,, +12/30/2021,19:30,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490730,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/30/2021,19:00,QUEENS,11366,40.732475,-73.77766,"(40.732475, -73.77766)",75 AVENUE,194 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4490782,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,12:30,BROOKLYN,11219,40.642097,-73.99211,"(40.642097, -73.99211)",,,4112 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490651,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/30/2021,14:40,BRONX,10461,40.85479,-73.84368,"(40.85479, -73.84368)",,,2050 EASTCHESTER ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4490951,Sedan,,,, +03/24/2022,5:40,,,40.5861,-73.97128,"(40.5861, -73.97128)",WEST 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516187,Sedan,,,, +12/31/2021,12:30,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491093,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,12:05,MANHATTAN,10002,40.71832,-73.994415,"(40.71832, -73.994415)",,,243 GRAND STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Oversized Vehicle,,,,4491432,Sedan,Pick-up Truck,,, +12/31/2021,21:14,BRONX,10469,40.87126,-73.84992,"(40.87126, -73.84992)",BOUCK AVENUE,BURKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491169,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,9:25,BRONX,10452,40.839832,-73.92392,"(40.839832, -73.92392)",NELSON AVENUE,WEST 169 STREET,,3,0,3,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490698,Sedan,,,, +12/31/2021,20:20,QUEENS,11413,40.683437,-73.74787,"(40.683437, -73.74787)",,,219-07 130 DRIVE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4491020,Sedan,Sedan,,, +12/31/2021,20:14,,,40.607464,-74.085144,"(40.607464, -74.085144)",NARROWS ROAD NORTH,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491647,Sedan,,,, +12/31/2021,10:35,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",OCEAN AVENUE,ALBEMARLE ROAD,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4491319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/31/2021,12:35,,,40.73769,-73.76858,"(40.73769, -73.76858)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,19:40,,,40.70616,-73.75747,"(40.70616, -73.75747)",HOLLIS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490899,Sedan,,,, +12/31/2021,21:05,BRONX,10455,40.81346,-73.90605,"(40.81346, -73.90605)",EAST 150 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491082,Sedan,,,, +12/30/2021,18:30,QUEENS,11373,40.746624,-73.886604,"(40.746624, -73.886604)",,,40-40 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490830,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,1:35,,,40.755566,-73.79172,"(40.755566, -73.79172)",45 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4515452,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/31/2021,16:00,STATEN ISLAND,10304,40.605553,-74.0837,"(40.605553, -74.0837)",,,493 MOSEL AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4491015,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,16:36,,,40.90347,-73.88628,"(40.90347, -73.88628)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4490927,Sedan,,,, +12/30/2021,12:47,BRONX,10451,40.824493,-73.91256,"(40.824493, -73.91256)",,,443 EAST 162 STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4490704,Sedan,,,, +12/31/2021,21:54,,,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491234,Sedan,Bus,,, +12/29/2021,0:00,,,,,,,,3384 FT Independence,0,0,0,0,0,0,0,0,Unspecified,,,,,4490920,Van,,,, +12/30/2021,12:30,QUEENS,11373,40.748142,-73.87643,"(40.748142, -73.87643)",CASE STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4490838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,2:15,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4490381,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,15:00,QUEENS,11413,40.666714,-73.75156,"(40.666714, -73.75156)",225 STREET,143 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490888,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,13:39,MANHATTAN,10036,40.760155,-73.9988,"(40.760155, -73.9988)",WEST 41 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491144,Garbage or Refuse,Sedan,,, +12/30/2021,12:00,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491059,Sedan,Motorcycle,,, +12/31/2021,15:40,,,40.600105,-73.93323,"(40.600105, -73.93323)",AVENUE V,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491052,Sedan,,,, +12/30/2021,10:00,,,40.595135,-73.75321,"(40.595135, -73.75321)",BEACH 17 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4490862,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,1:20,QUEENS,11385,40.700653,-73.89628,"(40.700653, -73.89628)",MYRTLE AVENUE,60 LANE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4490594,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/30/2021,22:07,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4491352,Sedan,,,, +12/29/2021,16:06,BRONX,10467,40.879353,-73.87429,"(40.879353, -73.87429)",,,3356 PERRY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490745,Station Wagon/Sport Utility Vehicle,Ambulance,,, +06/06/2021,10:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425693,Sedan,Sedan,,, +12/29/2021,17:30,,,40.733917,-73.9219,"(40.733917, -73.9219)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4490521,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/26/2021,2:20,QUEENS,11419,40.689186,-73.8207,"(40.689186, -73.8207)",,,124-05 103 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,4491366,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/23/2021,17:38,,,40.590706,-74.165794,"(40.590706, -74.165794)",RICHMOND AVENUE,NOME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491107,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/23/2021,13:40,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491523,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,16:00,QUEENS,11436,40.68161,-73.7964,"(40.68161, -73.7964)",116 AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491125,Sedan,,,, +12/29/2021,14:38,BROOKLYN,11215,40.665894,-73.97774,"(40.665894, -73.97774)",,,533 8 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491420,Sedan,,,, +12/28/2021,12:10,,,40.62633,-74.17498,"(40.62633, -74.17498)",,,2501 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491047,Sedan,Sedan,,, +12/26/2021,1:30,BROOKLYN,11208,40.679813,-73.87327,"(40.679813, -73.87327)",,,334 EUCLID AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491262,Sedan,,,, +12/29/2021,9:35,BROOKLYN,11214,40.583656,-73.98656,"(40.583656, -73.98656)",BAY 52 STREET,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,15:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516267,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/19/2021,10:31,BROOKLYN,11215,40.66845,-73.99354,"(40.66845, -73.99354)",3 AVENUE,14 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4418119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/30/2021,1:55,,,40.683037,-73.96478,"(40.683037, -73.96478)",FULTON STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4422972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/05/2021,16:53,BROOKLYN,11216,40.68899,-73.94503,"(40.68899, -73.94503)",,,263 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4423626,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/05/2021,17:35,BROOKLYN,11234,40.610188,-73.939354,"(40.610188, -73.939354)",MARINE PARKWAY,AVENUE R,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4423831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +06/06/2021,13:00,STATEN ISLAND,10304,40.606155,-74.08308,"(40.606155, -74.08308)",NARROWS ROAD SOUTH,MOSEL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424480,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,16:50,BRONX,10451,40.813587,-73.9273,"(40.813587, -73.9273)",EAST 140 STREET,CANAL PLACE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4425378,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/08/2021,14:00,MANHATTAN,10024,40.783897,-73.97407,"(40.783897, -73.97407)",COLUMBUS AVENUE,WEST 82 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4424967,Bike,,,, +06/05/2021,20:29,BROOKLYN,11212,,,,LINDEN BOULEVARD,POWELL STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425732,Sedan,Sedan,,, +06/08/2021,11:15,,,40.63529,-74.1636,"(40.63529, -74.1636)",DAVIDSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425082,Pick-up Truck,,,, +06/08/2021,17:05,BROOKLYN,11211,40.712494,-73.950455,"(40.712494, -73.950455)",,,99 AINSLIE STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4425010,Sedan,,,, +06/05/2021,15:15,,,40.519424,-74.196205,"(40.519424, -74.196205)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425658,Sedan,Pick-up Truck,,, +06/05/2021,17:35,,,40.69309,-73.94296,"(40.69309, -73.94296)",PULASKI STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425458,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/08/2021,14:40,,,40.757725,-73.779274,"(40.757725, -73.779274)",204 STREET,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4425433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,1:27,QUEENS,11420,40.681274,-73.81162,"(40.681274, -73.81162)",LINDEN BOULEVARD,130 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4424674,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,13:13,QUEENS,11354,40.764347,-73.82595,"(40.764347, -73.82595)",BOWNE STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424988,Station Wagon/Sport Utility Vehicle,Bus,,, +06/03/2021,19:00,BROOKLYN,11203,40.655334,-73.93077,"(40.655334, -73.93077)",LENOX ROAD,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425702,Sedan,Sedan,,, +06/08/2021,10:27,MANHATTAN,10003,40.725582,-73.989876,"(40.725582, -73.989876)",EAST 3 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4425161,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,19:25,MANHATTAN,10021,40.76685,-73.95376,"(40.76685, -73.95376)",EAST 72 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425034,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/08/2021,11:23,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4425363,Sedan,Sedan,,, +06/04/2021,13:00,,,40.694363,-73.958,"(40.694363, -73.958)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425520,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,7:30,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4425602,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,3:10,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4424729,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,14:05,BROOKLYN,11207,40.669792,-73.8924,"(40.669792, -73.8924)",SUTTER AVENUE,WYONA STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4425050,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,23:45,QUEENS,11415,40.70277,-73.82986,"(40.70277, -73.82986)",,,85-24 121 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4425454,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +05/13/2021,10:40,MANHATTAN,10022,40.76161,-73.97076,"(40.76161, -73.97076)",EAST 57 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425496,Sedan,Taxi,,, +06/08/2021,20:39,QUEENS,11419,40.684963,-73.82926,"(40.684963, -73.82926)",,,104-88 113 STREET,2,0,2,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4425258,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,3:11,QUEENS,11368,40.75687,-73.85706,"(40.75687, -73.85706)",34 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4424761,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,2:15,STATEN ISLAND,10312,40.543335,-74.164276,"(40.543335, -74.164276)",RICHMOND AVENUE,AMBOY ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4491184,Station Wagon/Sport Utility Vehicle,Bus,,, +06/08/2021,13:41,BROOKLYN,11232,40.652954,-74.00215,"(40.652954, -74.00215)",36 STREET,5 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425087,Pick-up Truck,Sedan,Sedan,, +06/06/2021,12:00,STATEN ISLAND,10309,40.543728,-74.21876,"(40.543728, -74.21876)",,,741 BLOOMINGDALE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,16:32,,,40.81207,-73.93603,"(40.81207, -73.93603)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/08/2021,18:09,BROOKLYN,11215,40.663883,-73.9841,"(40.663883, -73.9841)",14 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425173,Sedan,,,, +06/08/2021,15:27,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425215,Carry All,Sedan,,, +06/08/2021,11:00,BROOKLYN,11226,40.64214,-73.95447,"(40.64214, -73.95447)",,,2510 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424905,Sedan,,,, +06/08/2021,12:00,BROOKLYN,11229,40.610264,-73.954704,"(40.610264, -73.954704)",KINGS HIGHWAY,EAST 19 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424848,Station Wagon/Sport Utility Vehicle,TRUCK,,, +06/03/2021,9:33,MANHATTAN,10029,40.793816,-73.94402,"(40.793816, -73.94402)",,,171 EAST 109 STREET,1,0,1,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4425552,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,18:30,QUEENS,11385,40.69789,-73.899376,"(40.69789, -73.899376)",SENECA AVENUE,SUMMERFIELD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425582,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,10:45,MANHATTAN,10011,40.733612,-73.999565,"(40.733612, -73.999565)",AVENUE OF THE AMERICAS,WEST 8 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425629,Sedan,Box Truck,,, +06/08/2021,8:15,MANHATTAN,10018,40.752316,-73.985954,"(40.752316, -73.985954)",AVENUE OF THE AMERICAS,WEST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424892,Box Truck,Box Truck,,, +06/08/2021,7:28,QUEENS,11434,40.683144,-73.76859,"(40.683144, -73.76859)",MERRICK BOULEVARD,SUNBURY ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4424849,Sedan,Sedan,,, +06/08/2021,5:51,BRONX,10452,40.84518,-73.91417,"(40.84518, -73.91417)",CROSS BRONX EXPRESSWAY,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425470,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,15:30,BRONX,10466,40.887695,-73.8627,"(40.887695, -73.8627)",,,643 EAST 224 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424929,Sedan,,,, +06/08/2021,8:00,BRONX,10462,40.85566,-73.869835,"(40.85566, -73.869835)",,,2180 BRONX PARK EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4424816,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,6:37,BRONX,10460,40.8386,-73.86469,"(40.8386, -73.86469)",,,1523 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425204,Sedan,Tow Truck / Wrecker,,, +06/05/2021,23:11,,,40.857327,-73.904526,"(40.857327, -73.904526)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425768,Sedan,Motorbike,,, +06/08/2021,13:40,QUEENS,11372,40.748848,-73.8723,"(40.748848, -73.8723)",,,94-14 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425019,Sedan,Armored Truck,,, +06/08/2021,0:30,BROOKLYN,11207,40.672943,-73.892265,"(40.672943, -73.892265)",,,258 BRADFORD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425062,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,7:25,BROOKLYN,11217,40.68515,-73.97741,"(40.68515, -73.97741)",,,13 HANSON PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4425683,Sedan,,,, +06/06/2021,14:00,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",BEDFORD AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425709,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/08/2021,19:25,QUEENS,11414,40.660847,-73.8403,"(40.660847, -73.8403)",CROSS BAY BOULEVARD,158 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425236,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,16:44,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425121,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,7:50,,,40.85901,-73.927635,"(40.85901, -73.927635)",ELLWOOD STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4425225,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/08/2021,6:45,,,40.684395,-73.97835,"(40.684395, -73.97835)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4424839,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,10:30,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424911,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,16:25,BROOKLYN,11231,40.684177,-73.992195,"(40.684177, -73.992195)",BUTLER STREET,SMITH STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4424997,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,17:30,MANHATTAN,10034,,,,WEST 207 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425539,Sedan,,,, +05/21/2021,16:10,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4425646,Sedan,Sedan,,, +06/08/2021,10:00,QUEENS,11105,40.777756,-73.89871,"(40.777756, -73.89871)",41 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425113,Flat Bed,Sedan,,, +06/08/2021,18:16,BRONX,10475,40.87564,-73.829,"(40.87564, -73.829)",,,140 DEKRUIF PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425417,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,11:42,BRONX,10457,,,,EAST 175 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425556,Sedan,Sedan,,, +06/08/2021,19:00,QUEENS,11411,40.693882,-73.72966,"(40.693882, -73.72966)",116 AVENUE,231 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4424945,Sedan,Sedan,,, +06/01/2021,23:05,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4425619,Sedan,,,, +06/08/2021,16:50,QUEENS,11358,40.760654,-73.7948,"(40.760654, -73.7948)",,,171-10 STATION ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4424978,Sedan,Sedan,,, +06/08/2021,17:50,,,40.85935,-73.90117,"(40.85935, -73.90117)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425483,Sedan,Sedan,,, +06/08/2021,11:30,BRONX,10469,40.8595,-73.84301,"(40.8595, -73.84301)",EASTCHESTER ROAD,ASTOR AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4424859,Sedan,PK,,, +06/08/2021,16:16,BRONX,10459,40.825947,-73.88784,"(40.825947, -73.88784)",LOWELL STREET,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425357,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,11:25,,,40.685368,-73.9109,"(40.685368, -73.9109)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425153,Bus,Sedan,,, +06/08/2021,13:00,,,40.822456,-73.92692,"(40.822456, -73.92692)",EAST 153 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4425189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/04/2021,15:00,MANHATTAN,10003,40.732845,-73.995926,"(40.732845, -73.995926)",5 AVENUE,EAST 9 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425630,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,18:14,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",EAST 165 STREET,WALTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425778,Sedan,,,, +06/08/2021,14:05,BROOKLYN,11222,40.73175,-73.94552,"(40.73175, -73.94552)",RUSSELL STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425329,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,22:55,QUEENS,11435,40.70806,-73.8073,"(40.70806, -73.8073)",150 STREET,87 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4425463,Sedan,Sedan,,, +06/08/2021,16:43,BROOKLYN,11211,40.713493,-73.95153,"(40.713493, -73.95153)",,,440 UNION AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425015,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,23:29,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",PARK AVENUE,CLAREMONT PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425439,Sedan,E-Bike,,, +06/08/2021,17:50,BROOKLYN,11208,40.68464,-73.87584,"(40.68464, -73.87584)",RIDGEWOOD AVENUE,CHESTNUT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425051,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,9:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4425694,Sedan,,,, +06/08/2021,7:30,,,40.754158,-73.96271,"(40.754158, -73.96271)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424984,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,2:50,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",CHURCH AVENUE,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4425703,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/08/2021,0:51,,,40.75205,-73.92792,"(40.75205, -73.92792)",36 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425107,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,21:22,QUEENS,11436,40.669006,-73.79459,"(40.669006, -73.79459)",133 AVENUE,145 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4425531,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/08/2021,6:00,,,40.741917,-73.823425,"(40.741917, -73.823425)",HORACE HARDING EXPRESSWAY,146 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424952,Box Truck,,,, +06/08/2021,12:45,BROOKLYN,11218,,,,OCEAN PARKWAY,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,12:40,BROOKLYN,11201,40.69349,-73.97917,"(40.69349, -73.97917)",MYRTLE AVENUE,NAVY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425562,Sedan,Sedan,,, +06/08/2021,7:45,,,,,,,,526 gulf ave,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425072,Tractor Truck Diesel,Sedan,,, +06/08/2021,17:46,,,40.786423,-73.82394,"(40.786423, -73.82394)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Pavement Slippery,,,,4424990,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,18:43,BROOKLYN,11235,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425073,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/08/2021,18:34,MANHATTAN,10001,40.749054,-73.99576,"(40.749054, -73.99576)",WEST 29 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425035,Van,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,4:03,,,40.725174,-73.97274,"(40.725174, -73.97274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425449,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,5:22,MANHATTAN,10021,40.770424,-73.964325,"(40.770424, -73.964325)",PARK AVENUE,EAST 71 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424692,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,23:30,MANHATTAN,10012,40.722935,-73.994644,"(40.722935, -73.994644)",,,27 PRINCE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425491,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,16:50,QUEENS,11385,40.703377,-73.86343,"(40.703377, -73.86343)",MYRTLE AVENUE,UNION TURNPIKE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4425611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,12:49,QUEENS,11358,40.76259,-73.80464,"(40.76259, -73.80464)",NORTHERN BOULEVARD,161 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Backing Unsafely,,,,4424974,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/08/2021,18:41,MANHATTAN,10027,40.813374,-73.956276,"(40.813374, -73.956276)",AMSTERDAM AVENUE,WEST 125 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425294,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,13:35,BROOKLYN,11217,40.68139,-73.97553,"(40.68139, -73.97553)",,,204 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491426,4 dr sedan,E-Bike,,, +06/07/2021,13:45,BRONX,10458,40.85467,-73.885765,"(40.85467, -73.885765)",,,667 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425560,Sedan,,,, +06/07/2021,22:00,BROOKLYN,11208,40.66428,-73.87004,"(40.66428, -73.87004)",,,650 FOUNTAIN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425429,Tractor Truck Diesel,Sedan,,, +06/08/2021,5:29,MANHATTAN,10022,40.759235,-73.97036,"(40.759235, -73.97036)",,,643 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424730,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,16:10,MANHATTAN,10012,40.725643,-73.99207,"(40.725643, -73.99207)",BOWERY,EAST 2 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4425456,Pick-up Truck,Bike,,, +06/08/2021,14:20,BROOKLYN,11234,0,0,"(0.0, 0.0)",EAST 58 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4424951,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,9:39,BROOKLYN,11207,40.659546,-73.89823,"(40.659546, -73.89823)",,,200 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425047,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,15:42,,,40.848694,-73.93047,"(40.848694, -73.93047)",AMSTERDAM AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425498,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,19:45,MANHATTAN,10000,40.768383,-73.971054,"(40.768383, -73.971054)",,,20 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424985,Taxi,Sedan,,, +06/08/2021,21:39,BROOKLYN,11236,40.651157,-73.918144,"(40.651157, -73.918144)",REMSEN AVENUE,AVENUE A,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425244,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,17:44,,,,,,SHORE PARKWAY,OCEAN PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425383,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,13:00,BROOKLYN,11207,40.679886,-73.90526,"(40.679886, -73.90526)",,,1924 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4425734,Sedan,,,, +06/07/2021,11:49,STATEN ISLAND,10307,40.516804,-74.23348,"(40.516804, -74.23348)",,,280 PAGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425659,Sedan,Sedan,,, +05/22/2021,14:00,BROOKLYN,11233,40.678448,-73.92467,"(40.678448, -73.92467)",,,18 BUFFALO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,6:30,BRONX,10452,40.841183,-73.91588,"(40.841183, -73.91588)",,,1455 TOWNSEND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425474,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,3:30,BROOKLYN,11221,40.690014,-73.92399,"(40.690014, -73.92399)",,,880 QUINCY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425696,Sedan,Sedan,,, +06/08/2021,8:57,BROOKLYN,11217,40.681927,-73.97611,"(40.681927, -73.97611)",,,450 DEAN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4424858,Sedan,Box Truck,,, +06/08/2021,15:30,,,40.699013,-73.82366,"(40.699013, -73.82366)",126 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424898,Sedan,Sedan,,, +06/08/2021,23:45,BROOKLYN,11232,40.652954,-74.00215,"(40.652954, -74.00215)",36 STREET,5 AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4425124,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,14:45,BROOKLYN,11236,40.634552,-73.91477,"(40.634552, -73.91477)",EAST 78 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425571,Sedan,Sedan,,, +06/08/2021,20:58,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4424968,Sedan,,,, +06/08/2021,20:41,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",WEST 204 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425228,Sedan,Bike,,, +05/29/2021,20:15,,,40.8252,-73.867714,"(40.8252, -73.867714)",ROSEDALE AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425515,Sedan,E-Scooter,,, +06/08/2021,8:46,,,40.789734,-73.9661,"(40.789734, -73.9661)",WEST 93 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424840,Sedan,Sedan,,, +06/08/2021,11:51,BROOKLYN,11236,40.645546,-73.90566,"(40.645546, -73.90566)",FARRAGUT ROAD,EAST 95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425081,Sedan,Sedan,,, +06/08/2021,17:00,,,40.690216,-73.907295,"(40.690216, -73.907295)",WILSON AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4425154,Sedan,,,, +06/08/2021,1:52,MANHATTAN,10030,40.819206,-73.947044,"(40.819206, -73.947044)",SAINT NICHOLAS AVENUE,WEST 138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424884,Sedan,E-Scooter,,, +06/08/2021,17:30,,,40.61042,-73.98212,"(40.61042, -73.98212)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424996,Taxi,,,, +06/08/2021,12:47,BROOKLYN,11208,40.663853,-73.87516,"(40.663853, -73.87516)",,,613 BERRIMAN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425423,Sedan,Sedan,,, +06/02/2021,0:00,MANHATTAN,10003,40.728405,-73.992676,"(40.728405, -73.992676)",,,403 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425462,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,19:45,QUEENS,11414,40.659645,-73.84869,"(40.659645, -73.84869)",84 STREET,158 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4425237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/08/2021,16:05,MANHATTAN,10016,40.745686,-73.97213,"(40.745686, -73.97213)",1 AVENUE,EAST 37 STREET,,1,0,1,0,0,0,0,0,,,,,,4425722,,,,, +06/08/2021,16:45,BROOKLYN,11201,,,,Old Fulton Street,Prospect street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424961,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,16:55,,,40.59581,-73.94204,"(40.59581, -73.94204)",AVENUE W,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425006,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,22:48,STATEN ISLAND,10312,40.5433,-74.16424,"(40.5433, -74.16424)",RICHMOND AVENUE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425654,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,16:00,STATEN ISLAND,10309,40.523956,-74.21568,"(40.523956, -74.21568)",AMBOY ROAD,BLOOMINGDALE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425644,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,13:05,MANHATTAN,10033,40.851093,-73.93244,"(40.851093, -73.93244)",SAINT NICHOLAS AVENUE,WEST 184 STREET,,2,0,0,0,1,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4425540,E-Bike,Motorcycle,,, +06/08/2021,10:02,BROOKLYN,11226,40.64161,-73.96356,"(40.64161, -73.96356)",CORTELYOU ROAD,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425400,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,13:50,QUEENS,11379,40.707306,-73.87659,"(40.707306, -73.87659)",,,70-10 74 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425621,Station Wagon/Sport Utility Vehicle,DUMP,,, +06/08/2021,10:40,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4425120,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +06/08/2021,0:28,,,40.68607,-73.91605,"(40.68607, -73.91605)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424755,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,0:01,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425222,Sedan,Sedan,,, +06/08/2021,15:00,BROOKLYN,11233,40.68403,-73.91755,"(40.68403, -73.91755)",,,713 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424937,Sedan,Sedan,,, +06/03/2021,17:55,BROOKLYN,11226,40.64893,-73.949135,"(40.64893, -73.949135)",,,3014 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425707,Sedan,,,, +06/08/2021,10:00,BROOKLYN,11224,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425159,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,11:00,,,40.707222,-73.952095,"(40.707222, -73.952095)",HEWES STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425086,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,12:00,BROOKLYN,11206,40.70362,-73.953156,"(40.70362, -73.953156)",,,215 HEYWARD STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425018,Station Wagon/Sport Utility Vehicle,,,, +05/18/2021,12:00,STATEN ISLAND,10309,40.542603,-74.20835,"(40.542603, -74.20835)",,,655 ROSSVILLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425653,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/07/2021,7:55,MANHATTAN,10033,40.84721,-73.93979,"(40.84721, -73.93979)",FORT WASHINGTON AVENUE,WEST 176 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425468,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,20:55,BROOKLYN,11207,40.682747,-73.889755,"(40.682747, -73.889755)",,,217 SUNNYSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425055,Sedan,,,, +06/08/2021,23:00,,,40.636086,-73.95091,"(40.636086, -73.95091)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425401,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,20:11,STATEN ISLAND,10312,,,,Richmond Avenue,Prol place,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,19:05,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4424977,Pick-up Truck,Sedan,,, +06/08/2021,11:45,STATEN ISLAND,10301,40.64557,-74.08875,"(40.64557, -74.08875)",,,35 YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425231,Sedan,,,, +06/08/2021,17:36,BROOKLYN,11222,40.733425,-73.95818,"(40.733425, -73.95818)",FRANKLIN STREET,GREEN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425330,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,17:24,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425005,Sedan,,,, +06/08/2021,16:24,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425172,Sedan,,,, +06/08/2021,9:00,QUEENS,11414,40.660706,-73.84129,"(40.660706, -73.84129)",158 AVENUE,92 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4424810,Sedan,Sedan,,, +06/08/2021,18:43,BROOKLYN,11208,40.67187,-73.867226,"(40.67187, -73.867226)",BLAKE AVENUE,AUTUMN AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4425067,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,10:00,BROOKLYN,11210,40.626472,-73.94958,"(40.626472, -73.94958)",,,2702 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424904,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,13:00,BROOKLYN,11238,40.68545,-73.96934,"(40.68545, -73.96934)",,,408 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425767,Sedan,,,, +06/08/2021,13:20,QUEENS,11691,40.595383,-73.779945,"(40.595383, -73.779945)",BEACH 49 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425075,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,9:50,QUEENS,11358,40.77332,-73.79396,"(40.77332, -73.79396)",,,169-43 26 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424972,Van,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,15:10,BROOKLYN,11207,40.66112,-73.89255,"(40.66112, -73.89255)",,,659 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425066,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,18:43,BROOKLYN,11206,40.707653,-73.93984,"(40.707653, -73.93984)",BUSHWICK AVENUE,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4425682,Sedan,Sedan,,, +06/08/2021,18:45,QUEENS,11691,40.595947,-73.739044,"(40.595947, -73.739044)",,,300 SEAGIRT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4425438,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,16:58,BRONX,10451,40.821053,-73.91246,"(40.821053, -73.91246)",,,3077 3 AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4425014,Motorscooter,,,, +06/06/2021,12:00,BRONX,10452,40.838947,-73.916435,"(40.838947, -73.916435)",ELLIOT PLACE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425451,Station Wagon/Sport Utility Vehicle,FIRE TURCK,,, +06/02/2021,21:00,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CENTRE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425492,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/08/2021,14:50,BROOKLYN,11210,40.627632,-73.93652,"(40.627632, -73.93652)",AVENUE J,ALBANY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425720,Sedan,Bike,,, +06/08/2021,19:50,BROOKLYN,11201,40.69403,-73.98251,"(40.69403, -73.98251)",,,118 PRINCE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425263,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,17:30,BROOKLYN,11225,40.662846,-73.94284,"(40.662846, -73.94284)",KINGSTON AVENUE,LEFFERTS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425610,Sedan,Sedan,,, +06/08/2021,17:30,,,40.71362,-73.75508,"(40.71362, -73.75508)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4425575,Sedan,Pick-up Truck,,, +06/08/2021,18:40,,,40.698696,-73.93477,"(40.698696, -73.93477)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425155,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,12:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4424875,Sedan,Pick-up Truck,,, +06/08/2021,0:00,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,9:45,QUEENS,11103,0,0,"(0.0, 0.0)",46 STREET,30 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425108,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/29/2021,13:41,MANHATTAN,10002,40.709484,-73.99403,"(40.709484, -73.99403)",MARKET SLIP,SOUTH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425490,Sedan,,,, +06/08/2021,14:45,BROOKLYN,11230,40.629513,-73.97259,"(40.629513, -73.97259)",,,443 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4424910,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,8:50,QUEENS,11373,40.743675,-73.88711,"(40.743675, -73.88711)",78 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425129,Sedan,E-Bike,,, +06/03/2021,12:50,,,40.699192,-73.95519,"(40.699192, -73.95519)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425530,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,16:55,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4424960,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/08/2021,23:48,BRONX,10452,40.83562,-73.927864,"(40.83562, -73.927864)",WEST 166 STREET,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425190,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,21:31,BROOKLYN,11236,40.639847,-73.91055,"(40.639847, -73.91055)",GLENWOOD ROAD,EAST 86 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,10:34,,,40.703575,-74.011604,"(40.703575, -74.011604)",BRIDGE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424827,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/08/2021,15:00,,,40.828075,-73.88543,"(40.828075, -73.88543)",WESTCHESTER AVENUE,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425109,Sedan,Sedan,,, +06/05/2021,19:50,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,WEST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425776,Pick-up Truck,,,, +06/08/2021,2:15,MANHATTAN,10128,40.784237,-73.947075,"(40.784237, -73.947075)",EAST 96 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4424717,E-Bike,,,, +06/08/2021,10:46,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",FLATBUSH AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425175,Sedan,Bike,,, +06/08/2021,8:40,,,40.857605,-73.93778,"(40.857605, -73.93778)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Steering Failure,Unsafe Speed,,,,4425227,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,11:26,BROOKLYN,11201,40.696198,-73.98869,"(40.696198, -73.98869)",ADAMS STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424841,Sedan,Sedan,,, +06/08/2021,13:58,QUEENS,11433,40.696217,-73.78415,"(40.696217, -73.78415)",,,169-14 109 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4424909,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,14:40,MANHATTAN,10034,40.865364,-73.92439,"(40.865364, -73.92439)",ACADEMY STREET,VERMILYEA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425541,E-Bike,Sedan,,, +06/08/2021,22:00,BRONX,10460,40.844807,-73.88211,"(40.844807, -73.88211)",,,906 EAST 180 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425559,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,7:00,BROOKLYN,11234,40.614754,-73.936615,"(40.614754, -73.936615)",,,3614 QUENTIN ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424950,Sedan,Sedan,,, +06/08/2021,11:08,,,40.668957,-73.898026,"(40.668957, -73.898026)",SUTTER AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4425048,Motorcycle,,,, +06/07/2021,12:50,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",WATTS STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425533,Taxi,,,, +06/08/2021,22:20,BROOKLYN,11213,40.663555,-73.93162,"(40.663555, -73.93162)",UTICA AVENUE,EMPIRE BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425262,Sedan,Sedan,,, +06/08/2021,8:37,BROOKLYN,11215,40.665813,-73.97584,"(40.665813, -73.97584)",7 STREET,PROSPECT PARK WEST,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4424857,Sedan,Sedan,Sedan,, +06/08/2021,14:45,BROOKLYN,11225,40.657486,-73.95031,"(40.657486, -73.95031)",,,1218 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424969,Sedan,Bus,,, +06/08/2021,5:37,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4424806,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,13:45,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424941,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +05/06/2021,11:57,QUEENS,11385,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,81 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425613,Sedan,Sedan,,, +06/08/2021,12:30,BROOKLYN,11224,40.57554,-73.979645,"(40.57554, -73.979645)",WEST 12 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425100,Sedan,,,, +06/08/2021,10:00,BROOKLYN,11205,40.6911,-73.97342,"(40.6911, -73.97342)",,,185 WASHINGTON PARK,0,0,0,0,0,0,0,0,Unspecified,,,,,4424926,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,6:15,,,40.51351,-74.237366,"(40.51351, -74.237366)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4425660,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,16:30,BRONX,10457,40.843124,-73.89796,"(40.843124, -73.89796)",,,4068 3 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4425436,Sedan,Pick-up Truck,,, +06/08/2021,23:29,MANHATTAN,10022,40.757698,-73.9694,"(40.757698, -73.9694)",3 AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,20:24,BROOKLYN,11203,40.64209,-73.93018,"(40.64209, -73.93018)",,,4905 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,,,,,4425698,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,17:15,,,40.74614,-73.81417,"(40.74614, -73.81417)",ROSE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424986,Bike,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,18:10,MANHATTAN,10035,40.80118,-73.93975,"(40.80118, -73.93975)",EAST 120 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4425123,Taxi,,,, +06/08/2021,13:55,,,40.62707,-74.01865,"(40.62707, -74.01865)",BAY RIDGE PARKWAY,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425220,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/08/2021,15:45,BROOKLYN,11215,40.66416,-73.990524,"(40.66416, -73.990524)",5 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425168,Bus,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,13:45,MANHATTAN,10028,40.77759,-73.9591,"(40.77759, -73.9591)",EAST 82 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425026,Sedan,Sedan,,, +06/08/2021,21:20,BRONX,10461,40.83741,-73.847595,"(40.83741, -73.847595)",ZEREGA AVENUE,TRATMAN AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425381,Sedan,Sedan,,, +06/08/2021,13:10,,,,,,EAST 149 STREET,,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425472,E-Bike,,,, +06/08/2021,14:14,QUEENS,11694,40.5763,-73.84717,"(40.5763, -73.84717)",ROCKAWAY BEACH BOULEVARD,BEACH 128 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4425508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/08/2021,7:00,,,40.831398,-73.83097,"(40.831398, -73.83097)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4424981,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,17:58,BROOKLYN,11208,40.663788,-73.86808,"(40.663788, -73.86808)",WORTMAN AVENUE,PINE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425425,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,14:35,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425723,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,18:00,QUEENS,11355,0,0,"(0.0, 0.0)",MAIN STREET,60 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424976,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,17:30,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491388,Sedan,,,, +05/15/2021,3:00,MANHATTAN,10009,40.72986,-73.98366,"(40.72986, -73.98366)",,,194 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425452,Sedan,Sedan,,, +06/07/2021,19:00,BRONX,10473,40.819016,-73.84804,"(40.819016, -73.84804)",CASTLE HILL AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425623,Sedan,Sedan,Sedan,, +06/08/2021,6:10,MANHATTAN,10011,40.743557,-73.99974,"(40.743557, -73.99974)",,,200 8 AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4424899,Taxi,Box Truck,,, +06/08/2021,18:45,BROOKLYN,11235,40.586475,-73.94697,"(40.586475, -73.94697)",EAST 22 STREET,VOORHIES AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4425007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,5:40,BROOKLYN,11233,40.67889,-73.92221,"(40.67889, -73.92221)",,,1922 FULTON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425586,Sedan,,,, +04/26/2021,12:30,,,40.76889,-73.9821,"(40.76889, -73.9821)",WEST 60 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4425499,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,10:30,BROOKLYN,11231,40.67627,-74.003204,"(40.67627, -74.003204)",HENRY STREET,WEST 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425307,Sedan,,,, +05/30/2021,13:00,QUEENS,11364,40.74405,-73.75123,"(40.74405, -73.75123)",,,69-39 224 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425690,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,11:38,BROOKLYN,11236,40.653522,-73.90855,"(40.653522, -73.90855)",,,706 BRISTOL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425738,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,17:21,BROOKLYN,11205,40.69904,-73.95655,"(40.69904, -73.95655)",,,461 FLUSHING AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pavement Slippery,,,,4425012,Station Wagon/Sport Utility Vehicle,Bike,,, +06/04/2021,16:45,BROOKLYN,11236,40.64546,-73.90267,"(40.64546, -73.90267)",,,1417 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4425641,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/08/2021,9:00,,,40.607185,-74.16239,"(40.607185, -74.16239)",VICTORY BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425085,Sedan,Box Truck,,, +06/08/2021,18:05,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WYTHE AVENUE,WILLIAMSBURG STREET EAST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425332,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,13:07,BROOKLYN,11214,40.61255,-74.00226,"(40.61255, -74.00226)",,,1666 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4424995,Sedan,,,, +06/08/2021,17:36,,,40.709923,-73.99047,"(40.709923, -73.99047)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424963,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,15:16,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425442,Sedan,Sedan,Sedan,, +06/08/2021,19:00,BRONX,10458,40.85876,-73.89736,"(40.85876, -73.89736)",EAST 184 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4425461,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,9:15,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,17:10,,,40.677032,-73.824684,"(40.677032, -73.824684)",ROCKAWAY BOULEVARD,114 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,14:21,BROOKLYN,11206,40.70386,-73.93838,"(40.70386, -73.93838)",,,370 BUSHWICK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4425017,Bike,,,, +06/07/2021,5:30,,,40.54785,-74.18826,"(40.54785, -74.18826)",JEFFERSON BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4425655,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,13:29,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",69 STREET,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491211,Sedan,E-Bike,,, +06/04/2021,16:15,,,40.682114,-73.95367,"(40.682114, -73.95367)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425527,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,12:20,BROOKLYN,11219,40.63941,-73.98755,"(40.63941, -73.98755)",,,4103 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425394,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,16:45,MANHATTAN,10003,40.739674,-73.99095,"(40.739674, -73.99095)",EAST 20 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4425592,Sedan,Sedan,,, +06/08/2021,11:40,QUEENS,11691,40.606224,-73.754,"(40.606224, -73.754)",,,21-11 DIX AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425078,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,11:15,,,40.708076,-73.78238,"(40.708076, -73.78238)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425580,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,22:20,,,40.728035,-73.97183,"(40.728035, -73.97183)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4425411,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,4:00,QUEENS,11373,40.74468,-73.884605,"(40.74468, -73.884605)",,,80-30 BAXTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424721,Ambulance,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,8:00,MANHATTAN,10022,40.763588,-73.97142,"(40.763588, -73.97142)",MADISON AVENUE,EAST 59 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4425494,E-Scooter,,,, +05/18/2021,21:22,,,40.69731,-73.932274,"(40.69731, -73.932274)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425444,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,8:15,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424980,Sedan,Dump,,, +06/08/2021,8:30,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425156,Sedan,,,, +06/08/2021,12:50,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",LINDEN BOULEVARD,NEWBURG STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inexperience,Unspecified,Unspecified,Unspecified,4424888,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/08/2021,11:20,,,40.645947,-73.9951,"(40.645947, -73.9951)",9 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425149,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,17:40,BRONX,10452,40.832314,-73.93161,"(40.832314, -73.93161)",SEDGWICK AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425775,Sedan,Sedan,,, +06/06/2020,22:01,,,40.69642,-73.95978,"(40.69642, -73.95978)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425467,Sedan,,,, +06/08/2021,22:30,BROOKLYN,11214,40.603245,-73.988815,"(40.603245, -73.988815)",,,8123 23 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425316,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,21:45,MANHATTAN,10029,40.788692,-73.93787,"(40.788692, -73.93787)",FDR DRIVE,EAST 106 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,Following Too Closely,,4425025,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/04/2021,9:00,BROOKLYN,11249,40.704838,-73.9633,"(40.704838, -73.9633)",,,99 WILSON STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425671,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,20:20,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425053,Sedan,,,, +06/07/2021,8:09,BROOKLYN,11212,40.658394,-73.91557,"(40.658394, -73.91557)",EAST 98 STREET,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425706,Sedan,,,, +06/08/2021,18:40,STATEN ISLAND,10304,40.62962,-74.07667,"(40.62962, -74.07667)",BAY STREET,WAVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425232,Sedan,,,, +06/08/2021,11:00,BROOKLYN,11236,,,,,,8725 Avenue D,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425101,Sedan,Sedan,,, +06/08/2021,8:30,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4424918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,18:50,,,40.739162,-73.78556,"(40.739162, -73.78556)",64 AVENUE,188 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424955,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,15:35,BRONX,10453,40.851807,-73.90683,"(40.851807, -73.90683)",EAST 179 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425568,Sedan,Multi-Wheeled Vehicle,,, +06/08/2021,9:00,QUEENS,11414,40.659172,-73.839874,"(40.659172, -73.839874)",CROSS BAY BOULEVARD,159 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4424832,Sedan,Sedan,Sedan,, +06/05/2021,6:45,,,40.663685,-73.803085,"(40.663685, -73.803085)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4425537,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/08/2021,11:30,BROOKLYN,11201,40.690784,-73.97877,"(40.690784, -73.97877)",,,155 ASHLAND PLACE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425111,Sedan,Bike,,, +06/08/2021,12:45,,,40.602055,-73.94803,"(40.602055, -73.94803)",EAST 24 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4425004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,16:00,STATEN ISLAND,10312,40.54132,-74.2005,"(40.54132, -74.2005)",,,53 DESERRE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425652,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,17:05,,,40.700592,-73.85457,"(40.700592, -73.85457)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425487,Sedan,Sedan,,, +06/04/2021,18:50,,,40.705414,-73.829216,"(40.705414, -73.829216)",123 STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4425606,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,13:10,MANHATTAN,10003,40.73631,-73.98709,"(40.73631, -73.98709)",,,61 IRVING PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4424927,Sedan,,,, +06/08/2021,20:24,BROOKLYN,11209,40.62938,-74.025665,"(40.62938, -74.025665)",77 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4424964,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,0:20,MANHATTAN,10002,40.71829,-73.987434,"(40.71829, -73.987434)",DELANCEY STREET,NORFOLK STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425240,Sedan,Sedan,,, +06/08/2021,9:30,BROOKLYN,11236,40.640034,-73.910286,"(40.640034, -73.910286)",,,8605 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4425182,Sedan,,,, +06/08/2021,22:10,QUEENS,11385,40.707848,-73.897255,"(40.707848, -73.897255)",,,61-27 WOODBINE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425197,Sedan,,,, +06/04/2021,14:35,,,40.54326,-74.19731,"(40.54326, -74.19731)",HUGUENOT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425656,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,6:50,MANHATTAN,10032,40.83856,-73.94586,"(40.83856, -73.94586)",RIVERSIDE DRIVE,WEST 162 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4424825,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/04/2021,0:40,QUEENS,11430,40.665245,-73.80204,"(40.665245, -73.80204)",NASSAU EXPRESSWAY,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425761,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,13:25,BROOKLYN,11208,40.679955,-73.86743,"(40.679955, -73.86743)",,,103 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425065,Carry All,Sedan,Sedan,, +06/06/2021,14:20,STATEN ISLAND,10309,40.541553,-74.20989,"(40.541553, -74.20989)",WOODROW ROAD,LENEVAR AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425664,Sedan,Sedan,,, +06/08/2021,9:00,,,,,,PROSPECT EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4425717,Sedan,Sedan,,, +06/08/2021,12:35,QUEENS,11372,40.750626,-73.87595,"(40.750626, -73.87595)",37 AVENUE,91 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4424870,Pick-up Truck,Sedan,,, +06/06/2021,11:00,STATEN ISLAND,10307,40.508675,-74.23372,"(40.508675, -74.23372)",BEDELL AVENUE,DELL COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425662,Sedan,,,, +06/08/2021,11:55,BROOKLYN,11238,40.68251,-73.96766,"(40.68251, -73.96766)",,,525 VANDERBILT AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425116,Sedan,Bike,,, +06/08/2021,4:30,,,40.58665,-73.934456,"(40.58665, -73.934456)",SHORE PARKWAY,COYLE STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4424781,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,15:00,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,,,,,,4424971,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,12:43,BROOKLYN,11215,40.677414,-73.98305,"(40.677414, -73.98305)",4 AVENUE,UNION STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425174,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,11:46,MANHATTAN,10030,40.819065,-73.93892,"(40.819065, -73.93892)",,,143 WEST 142 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425614,Sedan,,,, +06/08/2021,12:40,MANHATTAN,10021,40.76817,-73.9528,"(40.76817, -73.9528)",EAST 74 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425088,Sedan,,,, +06/08/2021,12:10,BROOKLYN,11226,40.649506,-73.96293,"(40.649506, -73.96293)",,,1805 CHURCH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424908,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,16:00,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425459,Moped,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:00,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,Unspecified,,,,4425426,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,19:00,,,40.586205,-73.93417,"(40.586205, -73.93417)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,8:11,BROOKLYN,11212,40.663967,-73.92003,"(40.663967, -73.92003)",,,152 TAPSCOTT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425730,Sedan,,,, +06/08/2021,16:30,QUEENS,11356,40.78463,-73.83634,"(40.78463, -73.83634)",132 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,Unspecified,,4424987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/08/2021,13:00,,,40.765125,-73.952126,"(40.765125, -73.952126)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425259,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/08/2021,21:54,,,40.771065,-73.95965,"(40.771065, -73.95965)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425379,,,,, +06/08/2021,17:35,BRONX,10454,40.802914,-73.92029,"(40.802914, -73.92029)",SAINT ANNS AVENUE,EAST 132 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4425013,Sedan,,,, +06/04/2021,17:55,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",MERRICK BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425755,Sedan,,,, +05/22/2021,12:00,BROOKLYN,11236,40.65329,-73.91919,"(40.65329, -73.91919)",EAST 91 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4425627,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +06/08/2021,8:35,BROOKLYN,11210,40.632355,-73.95084,"(40.632355, -73.95084)",EAST 27 STREET,CAMPUS ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4424903,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,0:40,BROOKLYN,11233,40.677055,-73.9224,"(40.677055, -73.9224)",,,1883 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425587,PK,Sedan,,, +06/08/2021,10:41,BROOKLYN,11217,40.68156,-73.975655,"(40.68156, -73.975655)",,,196 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4424854,Tractor Truck Diesel,Sedan,,, +05/31/2021,22:23,BRONX,10452,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425471,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,15:15,MANHATTAN,10029,40.796787,-73.937294,"(40.796787, -73.937294)",,,308 EAST 116 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4425122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,11:28,BROOKLYN,11212,40.661446,-73.92829,"(40.661446, -73.92829)",RUTLAND ROAD,EAST 91 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425701,Sedan,Bike,,, +06/08/2021,17:20,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",69 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425217,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,16:45,,,40.621822,-74.04125,"(40.621822, -74.04125)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424942,Bus,Sedan,,, +06/08/2021,9:30,QUEENS,11412,40.70334,-73.76666,"(40.70334, -73.76666)",109 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425030,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,23:12,BROOKLYN,11234,40.615166,-73.91864,"(40.615166, -73.91864)",AVENUE T,EAST 58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425163,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,23:36,,,40.603516,-74.19273,"(40.603516, -74.19273)",,,501 INDUSTRY ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425083,Concrete Mixer,Sedan,,, +06/08/2021,0:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424846,Sedan,Flat Bed,,, +06/08/2021,0:09,BROOKLYN,11206,40.700592,-73.950294,"(40.700592, -73.950294)",UNION AVENUE,WALLABOUT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424745,Sedan,Bike,,, +06/08/2021,15:00,,,40.736732,-73.85451,"(40.736732, -73.85451)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424975,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,21:15,BRONX,10457,40.845238,-73.900894,"(40.845238, -73.900894)",PARK AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425557,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,13:29,BROOKLYN,11208,40.67206,-73.869194,"(40.67206, -73.869194)",,,646 CRESCENT STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4425049,Sedan,Sedan,,, +06/08/2021,15:02,QUEENS,11413,40.66439,-73.76245,"(40.66439, -73.76245)",145 ROAD,183 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424946,Sedan,Sedan,,, +04/08/2021,17:18,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425434,Pick-up Truck,,,, +05/19/2021,18:45,MANHATTAN,10009,40.726257,-73.983406,"(40.726257, -73.983406)",,,115 AVENUE A,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425453,Taxi,Pick-up Truck,,, +06/08/2021,18:40,QUEENS,11101,40.73955,-73.94531,"(40.73955, -73.94531)",BORDEN AVENUE,25 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425299,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,18:00,MANHATTAN,10036,,,,12 AVENUE,WEST 43 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425501,PK,,,, +05/27/2021,18:30,,,40.691456,-73.98735,"(40.691456, -73.98735)",JAY STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425691,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,14:40,,,40.899895,-73.90668,"(40.899895, -73.90668)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4424982,Box Truck,,,, +06/08/2021,23:10,,,40.70775,-73.932304,"(40.70775, -73.932304)",JOHNSON AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4425336,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,22:35,MANHATTAN,10033,40.850906,-73.93829,"(40.850906, -73.93829)",WEST 181 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425544,Sedan,,,, +06/08/2021,22:55,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,12:14,QUEENS,11435,40.68916,-73.80198,"(40.68916, -73.80198)",INWOOD STREET,109 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425581,Sedan,Sedan,,, +06/05/2021,16:30,MANHATTAN,10005,40.705795,-74.00987,"(40.705795, -74.00987)",EXCHANGE PLACE,WILLIAM STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4425617,PK,,,, +06/08/2021,8:15,MANHATTAN,10001,40.748436,-73.9962,"(40.748436, -73.9962)",8 AVENUE,WEST 28 STREET,,2,0,1,0,1,0,0,0,Unspecified,,,,,4424891,Bike,,,, +06/08/2021,17:58,BROOKLYN,11207,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,MOFFAT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425157,Pick-up Truck,Sedan,,, +06/08/2021,17:25,BRONX,10452,40.838127,-73.91931,"(40.838127, -73.91931)",WEST CLARKE PLACE,JEROME AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4425485,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,10:30,BROOKLYN,11201,40.68852,-73.984856,"(40.68852, -73.984856)",,,233 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425102,Flat Rack,Sedan,,, +06/08/2021,9:00,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4424862,Box Truck,,,, +06/08/2021,14:20,MANHATTAN,10003,40.739674,-73.99095,"(40.739674, -73.99095)",WEST 20 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424928,Pick-up Truck,Bike,,, +06/08/2021,10:25,MANHATTAN,10040,40.859234,-73.931366,"(40.859234, -73.931366)",BROADWAY,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425226,Sedan,,,, +06/08/2021,21:00,MANHATTAN,10128,40.786602,-73.956726,"(40.786602, -73.956726)",EAST 94 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425201,Sedan,,,, +06/08/2021,4:40,BRONX,10457,40.84964,-73.89661,"(40.84964, -73.89661)",WASHINGTON AVENUE,EAST 179 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4424838,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/27/2021,0:58,,,40.84474,-73.922585,"(40.84474, -73.922585)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,11:35,BROOKLYN,11233,40.681236,-73.928734,"(40.681236, -73.928734)",REID AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425588,Sedan,,,, +06/08/2021,14:30,BROOKLYN,11213,40.66492,-73.94196,"(40.66492, -73.94196)",,,679 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425325,Sedan,,,, +06/05/2021,7:00,,,40.827984,-73.84329,"(40.827984, -73.84329)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425647,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,16:30,BRONX,10454,40.81417,-73.92122,"(40.81417, -73.92122)",3 AVENUE,EAST 145 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425016,TRUCK COMM,,,, +06/08/2021,14:30,BRONX,10451,40.82442,-73.90977,"(40.82442, -73.90977)",,,499 EAST 163 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425440,E-Bike,Sedan,,, +06/08/2021,16:21,BROOKLYN,11221,40.68607,-73.91605,"(40.68607, -73.91605)",BROADWAY,WEIRFIELD STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425445,E-Bike,,,, +06/08/2021,6:00,,,40.79162,-73.94885,"(40.79162, -73.94885)",PARK AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4424727,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,8:35,STATEN ISLAND,10304,40.62732,-74.07426,"(40.62732, -74.07426)",WATER STREET,FRONT STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425567,Sedan,Sedan,,, +06/08/2021,10:00,BROOKLYN,11208,40.666595,-73.87176,"(40.666595, -73.87176)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425063,Tractor Truck Diesel,Sedan,,, +06/08/2021,0:00,BROOKLYN,11236,40.632965,-73.883415,"(40.632965, -73.883415)",,,5995 SHORE PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425080,Sedan,,,, +06/06/2021,17:10,BROOKLYN,11211,40.711956,-73.95919,"(40.711956, -73.95919)",,,215 ROEBLING STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,5:00,MANHATTAN,10012,40.720673,-73.99679,"(40.720673, -73.99679)",,,181 MULBERRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425495,Pick-up Truck,,,, +06/05/2021,17:05,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425716,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,17:00,QUEENS,11429,40.707615,-73.74016,"(40.707615, -73.74016)",110 ROAD,217 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424979,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2021,16:45,QUEENS,11420,40.676956,-73.82428,"(40.676956, -73.82428)",,,114-10 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4425235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,8:05,,,40.71598,-73.97579,"(40.71598, -73.97579)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,15:50,QUEENS,11434,40.6707,-73.77366,"(40.6707, -73.77366)",140 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Turning Improperly,,,,4425538,Sedan,Sedan,,, +06/07/2021,15:20,STATEN ISLAND,10312,40.563446,-74.169754,"(40.563446, -74.169754)",DRUMGOOLE ROAD WEST,RICHMOND AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425657,Sedan,Bike,,, +06/08/2021,13:00,,,40.6229,-74.14943,"(40.6229, -74.14943)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425071,Sedan,,,, +12/30/2021,16:30,QUEENS,11375,40.719578,-73.84325,"(40.719578, -73.84325)",,,71-58 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,6:25,,,40.770554,-73.83551,"(40.770554, -73.83551)",ULMER STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4424817,Sedan,Dump,,, +06/08/2021,15:10,BROOKLYN,11237,40.69798,-73.91257,"(40.69798, -73.91257)",PALMETTO STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4425151,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,22:53,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425243,Sedan,Sedan,,, +06/08/2021,18:00,,,40.742043,-73.95436,"(40.742043, -73.95436)",VERNON BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424965,Sedan,,,, +06/08/2021,9:05,QUEENS,11367,40.73436,-73.81478,"(40.73436, -73.81478)",,,67-35 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424954,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,16:35,MANHATTAN,10032,40.83718,-73.942604,"(40.83718, -73.942604)",BROADWAY,WEST 162 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425184,Bike,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,10:50,,,0,0,"(0.0, 0.0)",PARK AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425526,Sedan,,,, +05/31/2021,21:30,QUEENS,11433,,,,164 street,110 avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425760,Pick-up Truck,Sedan,Sedan,, +06/08/2021,18:30,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4424991,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/08/2021,14:22,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425020,Sedan,,,, +05/28/2021,0:01,,,40.786495,-73.94839,"(40.786495, -73.94839)",3 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425465,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,17:50,BRONX,10461,40.84299,-73.82625,"(40.84299, -73.82625)",JARVIS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425412,Sedan,,,, +06/04/2021,13:30,STATEN ISLAND,10309,40.5325,-74.222145,"(40.5325, -74.222145)",QUAIL LANE,PHEASANT LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425663,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,17:00,BROOKLYN,11207,40.663685,-73.89858,"(40.663685, -73.89858)",,,453 HINSDALE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4425052,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/07/2021,18:55,BROOKLYN,11203,40.64337,-73.938194,"(40.64337, -73.938194)",,,1225 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425705,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,10:00,,,40.765125,-73.952126,"(40.765125, -73.952126)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4424983,Sedan,,,, +04/01/2022,0:42,MANHATTAN,10025,40.802315,-73.96172,"(40.802315, -73.96172)",,,1 MORNINGSIDE DRIVE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4516110,E-Bike,,,, +06/08/2021,20:43,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425353,Garbage or Refuse,Van,,, +06/08/2021,17:30,BROOKLYN,11220,40.639225,-74.0021,"(40.639225, -74.0021)",51 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425388,Sedan,Sedan,,, +06/08/2021,11:55,BROOKLYN,11212,40.66987,-73.90956,"(40.66987, -73.90956)",,,1721 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425731,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,1:20,BROOKLYN,11207,40.666443,-73.90026,"(40.666443, -73.90026)",,,350 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425428,Sedan,,,, +06/08/2021,12:01,BROOKLYN,11229,40.59938,-73.95141,"(40.59938, -73.95141)",OCEAN AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425009,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,15:07,,,40.676487,-73.82133,"(40.676487, -73.82133)",117 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490876,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,20:20,,,,,,WEST 82 STREET,HENRY HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4491334,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,20:40,,,,,,EXTERIOR STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490806,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,23:15,BROOKLYN,11206,40.701103,-73.939255,"(40.701103, -73.939255)",BEAVER STREET,FAYETTE STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4491121,,,,, +12/30/2021,9:00,BRONX,10469,40.859406,-73.84187,"(40.859406, -73.84187)",ASTOR AVENUE,WOODHULL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490668,Sedan,,,, +12/31/2021,20:49,,,40.718887,-73.76447,"(40.718887, -73.76447)",HILLSIDE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491614,Sedan,Taxi,,, +12/31/2021,8:19,BROOKLYN,11207,40.66879,-73.88839,"(40.66879, -73.88839)",BLAKE AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491293,Sedan,Motorcycle,,, +12/27/2021,12:20,QUEENS,11372,40.748383,-73.88893,"(40.748383, -73.88893)",,,37-26 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491162,Sedan,Pick-up Truck,,, +12/28/2021,18:38,BRONX,10453,40.85668,-73.90811,"(40.85668, -73.90811)",HARRISON AVENUE,WEST 181 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4490963,Box Truck,Sedan,,, +12/30/2021,6:50,,,40.773006,-73.96033,"(40.773006, -73.96033)",EAST 76 STREET,,,0,0,0,0,0,0,0,0,,,,,,4490684,,,,, +12/30/2021,22:34,BRONX,10457,40.83846,-73.90175,"(40.83846, -73.90175)",CLAREMONT PARKWAY,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490976,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,11:38,QUEENS,11433,40.698494,-73.79159,"(40.698494, -73.79159)",164 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491623,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,14:55,,,40.850807,-73.86781,"(40.850807, -73.86781)",UNIONPORT ROAD,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491221,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/24/2021,17:00,BROOKLYN,11249,40.718967,-73.96104,"(40.718967, -73.96104)",WYTHE AVENUE,NORTH 6 STREET,,1,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4491086,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/31/2021,1:30,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490778,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,7:10,,,40.710976,-73.97962,"(40.710976, -73.97962)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490720,Sedan,Sedan,,, +12/29/2021,20:33,BRONX,10451,40.813625,-73.93153,"(40.813625, -73.93153)",,,110 EAST 138 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4490542,Sedan,,,, +12/31/2021,18:41,,,,,,TAPSCOTT STREET,EAST 98 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491175,Sedan,Motorcycle,,, +12/29/2021,12:29,,,40.872112,-73.91628,"(40.872112, -73.91628)",WEST 218 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491497,Sedan,,,, +12/31/2021,9:00,BROOKLYN,11236,40.63819,-73.90472,"(40.63819, -73.90472)",,,8912 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,,,,,4491228,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,17:12,BROOKLYN,11207,40.66685,-73.8907,"(40.66685, -73.8907)",DUMONT AVENUE,BRADFORD STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4491253,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,21:00,MANHATTAN,10027,40.80882,-73.948,"(40.80882, -73.948)",,,132 WEST 125 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491445,Sedan,Sedan,,, +12/29/2021,22:49,BRONX,10457,40.845177,-73.90235,"(40.845177, -73.90235)",,,1752 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490565,Sedan,,,, +12/28/2021,14:21,BROOKLYN,11218,40.63257,-73.976295,"(40.63257, -73.976295)",,,751 EAST 2 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491324,Sedan,,,, +12/28/2021,17:00,BRONX,10463,40.88425,-73.900635,"(40.88425, -73.900635)",,,193 WEST 237 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490916,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,11:14,,,40.68295,-74.00635,"(40.68295, -74.00635)",HAMILTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490488,Sedan,,,, +12/31/2021,12:57,BROOKLYN,11226,40.652744,-73.959854,"(40.652744, -73.959854)",,,2118 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491485,Box Truck,Sedan,Sedan,, +12/30/2021,10:25,,,40.59589,-74.085884,"(40.59589, -74.085884)",QUINTARD STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4490903,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,12:30,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4490725,Sedan,Sedan,,, +12/15/2021,9:00,MANHATTAN,10034,40.862564,-73.9165,"(40.862564, -73.9165)",,,300 WEST 206 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491491,Flat Bed,,,, +12/31/2021,18:06,QUEENS,11355,40.75425,-73.827835,"(40.75425, -73.827835)",FRANKLIN AVENUE,MAIN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491035,Sedan,,,, +12/30/2021,7:00,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WYTHE AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4490627,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,16:45,BROOKLYN,11214,40.606327,-73.99647,"(40.606327, -73.99647)",20 AVENUE,83 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490948,Sedan,,,, +12/26/2021,23:35,BRONX,10457,40.846863,-73.90142,"(40.846863, -73.90142)",WEBSTER AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491581,Sedan,Sedan,,, +12/31/2021,15:15,,,40.78168,-73.84595,"(40.78168, -73.84595)",COLLEGE POINT BOULEVARD,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4491030,Sedan,Box Truck,,, +12/21/2021,19:05,BRONX,10468,40.87229,-73.90096,"(40.87229, -73.90096)",WEST 197 STREET,WEBB AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Backing Unsafely,Unspecified,Unspecified,,4490884,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/29/2021,14:30,BRONX,10471,40.893856,-73.896065,"(40.893856, -73.896065)",,,6063 BROADWAY,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4490931,Sedan,E-Bike,,, +12/29/2021,7:00,BRONX,10454,40.806274,-73.91411,"(40.806274, -73.91411)",EAST 139 STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4490546,Dump,Box Truck,,, +12/29/2021,14:45,BRONX,10461,40.83702,-73.8464,"(40.83702, -73.8464)",,,2412 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490572,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,10:20,QUEENS,11366,40.728275,-73.79179,"(40.728275, -73.79179)",,,75-01 177 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4490783,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/21/2021,22:00,MANHATTAN,10012,40.729553,-74.000885,"(40.729553, -74.000885)",,,101 MAC DOUGAL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491412,Ambulance,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,17:30,BROOKLYN,11206,40.70372,-73.94293,"(40.70372, -73.94293)",,,60 MOORE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490758,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,17:50,,,40.703724,-73.95979,"(40.703724, -73.95979)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490764,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,21:32,MANHATTAN,10037,40.81506,-73.94018,"(40.81506, -73.94018)",,,527 LENOX AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4490952,Box Truck,,,, +12/31/2021,16:55,BRONX,10461,40.843006,-73.84856,"(40.843006, -73.84856)",EAST TREMONT AVENUE,OVERING STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491062,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,11:00,BRONX,10466,40.89213,-73.85341,"(40.89213, -73.85341)",BUSSING AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490482,Station Wagon/Sport Utility Vehicle,,,, +12/26/2021,11:40,BROOKLYN,11208,40.68012,-73.884094,"(40.68012, -73.884094)",,,3000 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,1:53,,,40.656914,-73.95315,"(40.656914, -73.95315)",ROGERS AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4490991,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/23/2021,0:00,QUEENS,11693,40.585304,-73.818054,"(40.585304, -73.818054)",BEACH 96 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4491512,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,13:45,BRONX,10467,40.86543,-73.86737,"(40.86543, -73.86737)",WHITE PLAINS ROAD,ALLERTON AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4491140,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,19:30,BRONX,10472,40.82774,-73.87706,"(40.82774, -73.87706)",,,1144 WARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491095,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,14:20,BRONX,10462,40.83177,-73.854164,"(40.83177, -73.854164)",,,1204 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4490689,Sedan,,,, +12/28/2021,12:50,BROOKLYN,11205,40.68825,-73.971886,"(40.68825, -73.971886)",,,316 CARLTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4490959,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,19:04,,,,,,,,245 GULF AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491104,Sedan,Sedan,,, +12/27/2021,23:38,BROOKLYN,11208,40.677563,-73.874985,"(40.677563, -73.874985)",LIBERTY AVENUE,CRYSTAL STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4491249,Taxi,,,, +12/29/2021,21:40,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490980,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/28/2021,14:25,,,40.65463,-73.92201,"(40.65463, -73.92201)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Following Too Closely,Following Too Closely,,,4491328,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/31/2021,12:00,QUEENS,11385,40.711452,-73.8598,"(40.711452, -73.8598)",,,72-04 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4491207,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,17:44,QUEENS,11101,40.748276,-73.93918,"(40.748276, -73.93918)",JACKSON AVENUE,42 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4490516,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,, +12/31/2021,20:00,QUEENS,11412,40.708576,-73.758644,"(40.708576, -73.758644)",,,104-16 200 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491609,Sedan,,,, +12/26/2021,19:30,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,11:35,BRONX,10452,40.838158,-73.92324,"(40.838158, -73.92324)",SHAKESPEARE AVENUE,WEST 168 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,16:40,QUEENS,11416,40.68566,-73.84681,"(40.68566, -73.84681)",,,97-18 WOODHAVEN BOULEVARD,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4491358,Station Wagon/Sport Utility Vehicle,Bus,,, +12/30/2021,1:23,,,40.587444,-73.812164,"(40.587444, -73.812164)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491289,Ambulance,Sedan,,, +12/30/2021,15:50,BRONX,10469,40.878365,-73.85893,"(40.878365, -73.85893)",BRONXWOOD AVENUE,EAST 214 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490729,Flat Bed,Sedan,,, +12/26/2021,0:00,,,,,,atlantic ave,norwood street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491274,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,10:00,,,,,,CROSS ISLAND PARKWAY,SOUTHERN STATE PARKWAY,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4490462,Sedan,,,, +12/31/2021,14:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491536,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/29/2021,18:45,BRONX,10457,40.853138,-73.9017,"(40.853138, -73.9017)",EAST 180 STREET,ANTHONY AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4490580,Sedan,Taxi,,, +12/29/2021,4:30,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4490755,Sedan,,,, +12/31/2021,16:15,,,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491007,Bike,E-Bike,,, +12/30/2021,15:30,BROOKLYN,11214,40.607445,-73.99531,"(40.607445, -73.99531)",20 AVENUE,81 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490935,Sedan,E-Bike,,, +12/28/2021,18:40,BRONX,10455,40.813232,-73.90908,"(40.813232, -73.90908)",EAST 149 STREET,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491071,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,22:13,BROOKLYN,11207,40.667637,-73.8996,"(40.667637, -73.8996)",,,309 HINSDALE STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4491244,Sedan,Sedan,Sedan,, +12/31/2021,12:37,MANHATTAN,10028,40.77656,-73.95271,"(40.77656, -73.95271)",2 AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4491269,E-Bike,Taxi,,, +12/24/2021,19:25,QUEENS,11692,40.58963,-73.797806,"(40.58963, -73.797806)",,,190 BEACH 69 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491288,Sedan,,,, +12/29/2021,20:50,,,40.759037,-73.8879,"(40.759037, -73.8879)",31 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490718,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,15:40,BROOKLYN,11206,40.706806,-73.94878,"(40.706806, -73.94878)",,,17 MONTROSE AVENUE,0,0,0,0,0,0,0,0,Animals Action,,,,,4491133,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,22:20,,,40.76332,-73.77385,"(40.76332, -73.77385)",41 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4490532,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,8:51,BRONX,10471,40.91013,-73.90322,"(40.91013, -73.90322)",RIVERDALE AVENUE,WEST 261 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4490871,Sedan,Sedan,,, +12/31/2021,7:00,BROOKLYN,11206,40.701683,-73.941696,"(40.701683, -73.941696)",,,28 DEBEVOISE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,21:00,,,,,,FORT INDEPENDENCE STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490852,,,,, +12/28/2021,12:56,BROOKLYN,11207,40.65766,-73.89705,"(40.65766, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4491307,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +12/29/2021,14:00,BRONX,10462,40.836407,-73.85519,"(40.836407, -73.85519)",,,1514 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491075,Sedan,,,, +12/29/2021,12:30,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490634,Sedan,,,, +03/18/2022,5:15,MANHATTAN,10038,40.7081,-73.999405,"(40.7081, -73.999405)",FDR DRIVE,BROOKLYN BRIDGE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Following Too Closely,,,4516026,Sedan,Sedan,Sedan,, +12/22/2021,6:35,BRONX,10465,40.829685,-73.8253,"(40.829685, -73.8253)",LAFAYETTE AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4491227,,,,, +12/11/2021,23:48,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4491194,Sedan,Sedan,,, +12/29/2021,18:00,,,40.60102,-74.004364,"(40.60102, -74.004364)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490615,Station Wagon/Sport Utility Vehicle,,,, +12/16/2021,22:26,QUEENS,11103,40.759064,-73.91229,"(40.759064, -73.91229)",46 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491116,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,11:40,BRONX,10474,40.811092,-73.89335,"(40.811092, -73.89335)",LEGGETT AVENUE,TRUXTON STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4490799,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,0:56,QUEENS,11106,40.760998,-73.94104,"(40.760998, -73.94104)",,,36-21 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491409,Sedan,Sedan,,, +12/27/2021,14:13,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4491442,Sedan,,,, +12/30/2021,23:37,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491174,Sedan,,,, +12/26/2021,1:30,BROOKLYN,11207,40.66322,-73.893654,"(40.66322, -73.893654)",PENNSYLVANIA AVENUE,RIVERDALE AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4491254,Sedan,Sedan,Sedan,Sedan, +12/31/2021,20:48,BRONX,10462,40.855015,-73.869644,"(40.855015, -73.869644)",,,2160 BRONX PARK EAST,1,0,0,0,0,0,1,0,Turning Improperly,Other Vehicular,,,,4491131,Station Wagon/Sport Utility Vehicle,Moped,,, +12/30/2021,15:00,,,40.712772,-73.77201,"(40.712772, -73.77201)",90 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491631,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,13:40,,,40.60927,-74.1513,"(40.60927, -74.1513)",SOUTH GANNON AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4490818,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,5:10,QUEENS,11373,40.731277,-73.871574,"(40.731277, -73.871574)",BOOTH STREET,WOODHAVEN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490641,Delivery,,,, +12/29/2021,5:48,BROOKLYN,11222,40.728992,-73.95067,"(40.728992, -73.95067)",CALYER STREET,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490989,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,0:15,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4491654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/25/2021,2:00,BROOKLYN,11207,40.674767,-73.88536,"(40.674767, -73.88536)",GLENMORE AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491261,Sedan,,,, +12/31/2021,23:34,MANHATTAN,10003,40.730377,-73.98638,"(40.730377, -73.98638)",2 AVENUE,EAST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491462,Sedan,Sedan,,, +12/26/2021,13:20,,,40.753986,-73.87215,"(40.753986, -73.87215)",JUNCTION BOULEVARD,34 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491164,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,11:20,STATEN ISLAND,10310,0,0,"(0.0, 0.0)",RICHMOND TERRACE,TOMPKINS COURT,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4490940,Sedan,Sedan,,, +12/26/2021,12:00,,,40.699017,-73.80696,"(40.699017, -73.80696)",94 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491613,E-Scooter,,,, +12/29/2021,19:10,BROOKLYN,11229,40.610695,-73.945816,"(40.610695, -73.945816)",,,1656 EAST 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490529,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,3:30,,,40.67834,-73.95521,"(40.67834, -73.95521)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4490925,,,,, +12/29/2021,21:22,BROOKLYN,11209,40.62335,-74.028145,"(40.62335, -74.028145)",,,8520 4 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4490509,Sedan,Sedan,Sedan,, +04/24/2022,0:15,,,40.627007,-74.13872,"(40.627007, -74.13872)",,,267 DECKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4521668,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/30/2021,18:30,QUEENS,11379,40.717827,-73.8724,"(40.717827, -73.8724)",80 STREET,DRY HARBOR ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490734,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/26/2021,15:40,BROOKLYN,11212,40.663498,-73.92129,"(40.663498, -73.92129)",,,148 EAST 98 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4491339,Sedan,,,, +12/29/2021,20:18,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4490972,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,11:25,STATEN ISLAND,10306,40.57771,-74.11758,"(40.57771, -74.11758)",RICHMOND ROAD,LOCUST AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491011,Bus,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,19:40,QUEENS,11418,40.693047,-73.83839,"(40.693047, -73.83839)",108 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4490770,Sedan,Sedan,Sedan,, +12/29/2021,19:35,QUEENS,11106,40.76354,-73.93332,"(40.76354, -73.93332)",,,33-56 21 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490553,Sedan,Bike,,, +12/30/2021,11:40,QUEENS,11385,40.702625,-73.8794,"(40.702625, -73.8794)",COOPER AVENUE,71 PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490673,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,12:30,MANHATTAN,10023,40.777905,-73.98209,"(40.777905, -73.98209)",AMSTERDAM AVENUE,WEST 71 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491315,Sedan,Box Truck,,, +12/22/2021,4:30,MANHATTAN,10029,40.792244,-73.94629,"(40.792244, -73.94629)",EAST 106 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491022,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,14:52,BROOKLYN,11209,40.630344,-74.03845,"(40.630344, -74.03845)",,,33 80 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4490750,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,11:40,QUEENS,11378,40.721844,-73.90444,"(40.721844, -73.90444)",GRAND AVENUE,61 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490712,Sedan,E-Bike,,, +12/30/2021,16:17,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491545,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,21:15,QUEENS,11377,40.75,-73.89924,"(40.75, -73.89924)",63 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491039,,,,, +12/29/2021,9:20,BROOKLYN,11234,40.624172,-73.90907,"(40.624172, -73.90907)",AVENUE N,ROYCE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,6:58,MANHATTAN,10028,40.778862,-73.958176,"(40.778862, -73.958176)",PARK AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4490450,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/29/2021,23:00,MANHATTAN,10035,40.798935,-73.93637,"(40.798935, -73.93637)",2 AVENUE,EAST 119 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490585,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,1:00,BROOKLYN,11208,40.683132,-73.88259,"(40.683132, -73.88259)",RIDGEWOOD AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491241,Sedan,Sedan,,, +12/21/2021,15:33,BRONX,10463,40.877514,-73.90517,"(40.877514, -73.90517)",,,171 WEST 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,5:16,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490679,Sedan,,,, +12/29/2021,11:10,BROOKLYN,11206,40.69987,-73.94043,"(40.69987, -73.94043)",FAYETTE STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4490557,Bus,Sedan,,, +12/31/2021,15:18,QUEENS,11421,40.694805,-73.84754,"(40.694805, -73.84754)",,,98-02 JAMAICA AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4490999,E-Bike,Sedan,,, +12/28/2021,11:30,,,40.851334,-73.94022,"(40.851334, -73.94022)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490856,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,18:30,QUEENS,11420,40.66549,-73.819534,"(40.66549, -73.819534)",NORTH CONDUIT AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4490867,Sedan,Sedan,,, +06/09/2021,17:20,BRONX,10459,40.817875,-73.89333,"(40.817875, -73.89333)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425359,Sedan,,,, +09/21/2021,19:25,,,,,,cross bay bridge,cross bay bridge,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4465783,Sedan,Bus,,, +12/31/2021,8:28,BRONX,10466,40.89024,-73.860306,"(40.89024, -73.860306)",EAST 228 STREET,LOWERRE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491054,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,21:51,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",ROOSEVELT AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491152,Sedan,Bike,,, +12/31/2021,0:30,QUEENS,11427,40.730278,-73.743965,"(40.730278, -73.743965)",,,219-44 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490804,Sedan,,,, +12/30/2021,17:20,QUEENS,11373,40.734737,-73.87227,"(40.734737, -73.87227)",57 AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491392,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,23:56,,,40.590706,-74.165794,"(40.590706, -74.165794)",RICHMOND AVENUE,NOME AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491112,Sedan,,,, +12/31/2021,17:00,MANHATTAN,10036,40.761375,-73.98781,"(40.761375, -73.98781)",,,319 WEST 48 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4491635,Bike,,,, +12/31/2021,8:11,MANHATTAN,10035,40.802116,-73.9361,"(40.802116, -73.9361)",,,221 EAST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490893,Van,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,3:10,QUEENS,11366,40.72294,-73.8002,"(40.72294, -73.8002)",UNION TURNPIKE,168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491004,,,,, +12/30/2021,15:32,MANHATTAN,10002,40.723648,-73.99103,"(40.723648, -73.99103)",EAST HOUSTON STREET,CHRYSTIE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491431,Sedan,Sedan,,, +12/30/2021,13:53,BROOKLYN,11219,40.63143,-73.993744,"(40.63143, -73.993744)",,,1362 54 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4490967,Station Wagon/Sport Utility Vehicle,Bike,,, +12/22/2021,18:30,QUEENS,11379,40.72575,-73.87756,"(40.72575, -73.87756)",ELIOT AVENUE,82 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491213,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,17:17,BROOKLYN,11204,40.61879,-73.99426,"(40.61879, -73.99426)",17 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4491189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,10:30,BROOKLYN,11212,40.662724,-73.92601,"(40.662724, -73.92601)",,,85 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490604,Sedan,,,, +12/30/2021,0:32,QUEENS,11694,40.57741,-73.83713,"(40.57741, -73.83713)",,,117-12 OCEAN PROMENADE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4491511,Pick-up Truck,,,, +12/31/2021,3:46,BROOKLYN,11207,40.68445,-73.91062,"(40.68445, -73.91062)",,,37 COOPER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490812,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,12:30,,,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4490908,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,18:45,MANHATTAN,10025,40.79866,-73.96947,"(40.79866, -73.96947)",,,240 WEST 102 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4490726,Tanker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/29/2021,4:50,,,40.88867,-73.89092,"(40.88867, -73.89092)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4490921,Sedan,,,, +12/29/2021,12:00,BROOKLYN,11207,40.663574,-73.89855,"(40.663574, -73.89855)",,,459 HINSDALE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491298,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,11:15,QUEENS,11416,40.68771,-73.85037,"(40.68771, -73.85037)",,,92-10 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4491620,Taxi,,,, +12/28/2021,20:15,BRONX,10454,40.805557,-73.912415,"(40.805557, -73.912415)",JACKSON AVENUE,EAST 139 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491072,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/20/2021,7:45,STATEN ISLAND,10301,40.64757,-74.08743,"(40.64757, -74.08743)",WESTERVELT AVENUE,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490936,Sedan,Bus,,, +12/31/2021,20:05,BROOKLYN,11229,40.608482,-73.9589,"(40.608482, -73.9589)",,,1420 KINGS HIGHWAY,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,19:15,,,40.74267,-73.82841,"(40.74267, -73.82841)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4491031,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,1:57,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490522,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,17:42,BRONX,10467,40.880657,-73.877625,"(40.880657, -73.877625)",EAST GUN HILL ROAD,WAYNE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4490746,Sedan,,,, +12/21/2021,15:42,BRONX,10463,40.884518,-73.89387,"(40.884518, -73.89387)",,,122 VANCORTLANDT AVENUE WEST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490883,Bus,Dump,,, +12/30/2021,8:45,BRONX,10459,40.82852,-73.89796,"(40.82852, -73.89796)",PROSPECT AVENUE,EAST 168 STREET,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,,,4490721,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/29/2021,16:00,QUEENS,11422,40.655598,-73.72644,"(40.655598, -73.72644)",HOOK CREEK BOULEVARD,147 DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490547,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,11:04,BRONX,10456,40.832233,-73.89869,"(40.832233, -73.89869)",,,1354 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4491026,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,18:00,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",101 AVENUE,WOODHAVEN BOULEVARD,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4490774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,3:10,,,40.648243,-74.014114,"(40.648243, -74.014114)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4490765,Sedan,Tractor Truck Diesel,,, +12/29/2021,12:21,BROOKLYN,11204,40.620815,-73.98986,"(40.620815, -73.98986)",,,1766 63 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,,,,4490489,Box Truck,Sedan,,, +12/31/2021,21:30,,,,,,WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Illnes,,,,,4491043,Sedan,,,, +12/28/2021,22:51,MANHATTAN,10018,40.755806,-73.998055,"(40.755806, -73.998055)",,,453 WEST 36 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4490894,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/31/2021,12:15,QUEENS,11419,40.69253,-73.81688,"(40.69253, -73.81688)",,,130-08 101 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490994,Box Truck,Sedan,,, +12/29/2021,16:30,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491277,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,23:57,QUEENS,11368,40.748158,-73.85406,"(40.748158, -73.85406)",111 STREET,46 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4491570,Taxi,Sedan,,, +12/31/2021,15:40,BROOKLYN,11207,40.660778,-73.89229,"(40.660778, -73.89229)",,,681 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4491235,Station Wagon/Sport Utility Vehicle,Sedan,Moped,, +12/05/2021,15:25,MANHATTAN,10027,40.806313,-73.95987,"(40.806313, -73.95987)",,,420 WEST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490926,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,1:55,,,40.691227,-73.98214,"(40.691227, -73.98214)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4490808,Sedan,Sedan,,, +12/30/2021,18:20,STATEN ISLAND,10304,40.617832,-74.08627,"(40.617832, -74.08627)",VANDUZER STREET,IRVING PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4490947,Sedan,Sedan,,, +12/29/2021,16:53,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490649,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,11:30,BRONX,10471,40.904472,-73.90716,"(40.904472, -73.90716)",ARLINGTON AVENUE,WEST 256 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490860,Sedan,Van,,, +12/29/2021,11:14,MANHATTAN,10034,0,0,"(0.0, 0.0)",WEST 207 STREET,POST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490863,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,0:10,QUEENS,11430,,,,Belt parkway,Nassau Expressway,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4490396,Sedan,,,, +12/30/2021,23:35,QUEENS,11378,40.725918,-73.89535,"(40.725918, -73.89535)",69 STREET,GRAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,22:20,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",ATLANTIC AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4490688,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/29/2021,19:54,BRONX,10456,40.830402,-73.903404,"(40.830402, -73.903404)",,,1208 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490705,Sedan,Sedan,,, +12/30/2021,18:00,,,40.687805,-73.833565,"(40.687805, -73.833565)",101 AVENUE,110 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490962,Sedan,Sedan,,, +12/31/2021,23:15,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491148,Sedan,Sedan,,, +12/31/2021,2:26,BROOKLYN,11223,40.600376,-73.98117,"(40.600376, -73.98117)",,,1906 WEST 9 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4490889,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/19/2021,19:00,,,40.853706,-73.871864,"(40.853706, -73.871864)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490979,Taxi,Sedan,,, +12/29/2021,4:20,MANHATTAN,10019,40.766777,-73.996765,"(40.766777, -73.996765)",12 AVENUE,WEST 50 STREET,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4490514,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,15:17,QUEENS,11101,40.744667,-73.931694,"(40.744667, -73.931694)",33 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515544,Sedan,Sedan,Sedan,Sedan, +12/30/2021,20:55,,,40.73556,-73.915054,"(40.73556, -73.915054)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4490779,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/31/2021,15:53,BRONX,10469,40.88335,-73.85616,"(40.88335, -73.85616)",,,3856 BRONXWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491058,Sedan,Sedan,,, +12/27/2021,16:40,,,40.587784,-74.165565,"(40.587784, -74.165565)",,,77 RICHMOND HILL ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4491108,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,6:08,,,40.61135,-74.09847,"(40.61135, -74.09847)",NARROWS ROAD NORTH,CLOVE ROAD,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4491643,Sedan,,,, +12/31/2021,20:10,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491389,Sedan,,,, +12/31/2021,20:30,QUEENS,11368,40.754276,-73.856415,"(40.754276, -73.856415)",,,111-30 37 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4491021,Sedan,AMBULANCE,,, +12/31/2021,0:16,,,40.644142,-73.95564,"(40.644142, -73.95564)",CORTELYOU ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491318,Sedan,Sedan,,, +12/25/2021,12:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491185,Sedan,Sedan,,, +12/27/2021,13:00,MANHATTAN,10003,40.730377,-73.98638,"(40.730377, -73.98638)",2 AVENUE,EAST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491459,Sedan,Van,,, +12/27/2021,21:45,QUEENS,11692,40.593124,-73.79148,"(40.593124, -73.79148)",BEACH CHANNEL DRIVE,BEACH 62 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491521,Sedan,Sedan,,, +12/30/2021,10:50,,,40.595135,-73.75321,"(40.595135, -73.75321)",BEACH 19 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490626,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,9:50,,,40.880398,-73.907646,"(40.880398, -73.907646)",CORLEAR AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490904,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,17:26,BRONX,10458,40.8649,-73.892586,"(40.8649, -73.892586)",,,260 EAST 194 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491036,Sedan,,,, +12/24/2021,21:35,STATEN ISLAND,10305,40.596733,-74.07045,"(40.596733, -74.07045)",MCCLEAN AVENUE,SAND LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491016,Bus,Sedan,,, +12/27/2021,12:00,BROOKLYN,11207,40.65536,-73.89548,"(40.65536, -73.89548)",,,819 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491302,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,20:00,STATEN ISLAND,10306,40.573524,-74.09349,"(40.573524, -74.09349)",FREEBORN STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491540,Sedan,,,, +12/30/2021,0:50,BROOKLYN,11218,40.64147,-73.984695,"(40.64147, -73.984695)",,,1320 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491587,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,13:30,BROOKLYN,11205,40.68978,-73.965195,"(40.68978, -73.965195)",DE KALB AVENUE,SAINT JAMES PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4491098,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/29/2021,18:35,,,40.83142,-73.92643,"(40.83142, -73.92643)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4490953,Sedan,Sedan,,, +12/27/2021,12:49,BROOKLYN,11239,40.652737,-73.8769,"(40.652737, -73.8769)",,,470 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491248,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,7:05,,,40.61156,-74.18877,"(40.61156, -74.18877)",CHELSEA ROAD,CURRY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491048,Sedan,,,, +09/07/2021,23:40,MANHATTAN,10030,40.819717,-73.94048,"(40.819717, -73.94048)",WEST 142 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4457216,Station Wagon/Sport Utility Vehicle,,,, +09/22/2021,13:00,QUEENS,11355,40.75584,-73.83448,"(40.75584, -73.83448)",41 AVENUE,HAIGHT STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4459979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/28/2021,20:00,,,40.71583,-73.81375,"(40.71583, -73.81375)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4462480,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/03/2021,1:30,QUEENS,11426,40.7357,-73.72497,"(40.7357, -73.72497)",,,242-20 83 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4463394,Sedan,,,, +10/03/2021,19:45,MANHATTAN,10028,40.77592,-73.95317,"(40.77592, -73.95317)",2 AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4463742,Sedan,E-Bike,,, +10/08/2021,14:00,,,40.829163,-73.93727,"(40.829163, -73.93727)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466035,Sedan,,,, +09/30/2021,20:20,BROOKLYN,11211,40.71791,-73.95341,"(40.71791, -73.95341)",ROEBLING STREET,NORTH 10 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464539,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,21:08,BROOKLYN,11212,40.65864,-73.90304,"(40.65864, -73.90304)",LOTT AVENUE,CHRISTOPHER AVENUE,,6,0,0,0,0,0,6,0,Unspecified,Unspecified,Unspecified,,,4464542,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,23:30,BRONX,10475,40.883118,-73.82518,"(40.883118, -73.82518)",TILLOTSON AVENUE,NOELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486065,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,13:04,BRONX,10456,40.82942,-73.91226,"(40.82942, -73.91226)",EAST 166 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4485630,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,21:25,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",SUTTER AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486042,Sedan,,,, +12/11/2021,21:57,,,40.643127,-73.950676,"(40.643127, -73.950676)",CLARENDON ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4485679,Sedan,Motorbike,,, +12/11/2021,5:00,MANHATTAN,10032,40.844135,-73.93752,"(40.844135, -73.93752)",WEST 173 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485560,Sedan,,,, +12/11/2021,18:50,BROOKLYN,11223,40.595886,-73.98315,"(40.595886, -73.98315)",AVENUE U,WEST 12 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4485764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/09/2021,6:58,BRONX,10462,40.83883,-73.86003,"(40.83883, -73.86003)",,,7 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486112,Bus,Sedan,,, +12/11/2021,17:13,QUEENS,11426,40.739914,-73.72469,"(40.739914, -73.72469)",CROSS ISLAND PARKWAY,81 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,12:50,BROOKLYN,11208,40.678444,-73.86886,"(40.678444, -73.86886)",LIBERTY AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4486016,Box Truck,Box Truck,Sedan,, +12/08/2021,19:45,,,40.848938,-73.93708,"(40.848938, -73.93708)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486130,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +12/11/2021,20:00,QUEENS,11106,40.75621,-73.92896,"(40.75621, -73.92896)",36 AVENUE,32 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485571,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,19:00,,,40.69831,-73.9498,"(40.69831, -73.9498)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485666,Sedan,,,, +12/10/2021,18:17,BROOKLYN,11212,40.66143,-73.91644,"(40.66143, -73.91644)",LEGION STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4486050,Sedan,Sedan,Sedan,Sedan,Sedan +12/11/2021,0:05,QUEENS,11427,40.727222,-73.74681,"(40.727222, -73.74681)",89 AVENUE,217 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,20:49,BROOKLYN,11207,40.66902,-73.89754,"(40.66902, -73.89754)",,,580 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,20:40,BROOKLYN,11214,40.606445,-74.00589,"(40.606445, -74.00589)",BAY 16 STREET,BENSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486163,Station Wagon/Sport Utility Vehicle,Convertible,,, +12/11/2021,1:05,MANHATTAN,10027,40.808796,-73.94473,"(40.808796, -73.94473)",,,330 LENOX AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4485515,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/08/2021,8:30,BROOKLYN,11208,40.67793,-73.87189,"(40.67793, -73.87189)",,,463 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4485999,Sedan,Sedan,,, +12/07/2021,17:30,,,40.608562,-73.99414,"(40.608562, -73.99414)",20 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486156,Taxi,,,, +12/11/2021,18:59,,,,,,MANHATTAN BR UPPER,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4486129,E-Scooter,,,, +12/10/2021,8:45,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486037,Sedan,,,, +12/11/2021,1:38,BRONX,10475,40.878654,-73.824066,"(40.878654, -73.824066)",,,120 CASALS PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4485315,Sedan,,,, +12/10/2021,22:00,BROOKLYN,11214,40.60567,-74.00005,"(40.60567, -74.00005)",,,1918 86 STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4486057,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,3:18,,,40.830986,-73.91139,"(40.830986, -73.91139)",CLAY AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4485482,Sedan,,,, +06/10/2021,11:48,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4425594,Sedan,Sedan,Sedan,, +10/08/2021,19:17,,,40.658028,-73.94744,"(40.658028, -73.94744)",NEW YORK AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4465492,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,0:00,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",PARSONS BOULEVARD,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4465962,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,17:50,QUEENS,11693,40.60164,-73.820274,"(40.60164, -73.820274)",CROSS BAY BOULEVARD,EAST 16 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464795,Sedan,,,, +10/05/2021,4:50,,,40.698677,-73.95886,"(40.698677, -73.95886)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4465777,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/08/2021,12:00,QUEENS,11435,40.71476,-73.82104,"(40.71476, -73.82104)",138 STREET,82 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465471,Sedan,E-Bike,,, +10/07/2021,23:10,BROOKLYN,11215,40.66969,-73.995834,"(40.66969, -73.995834)",,,200 2 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4465199,Station Wagon/Sport Utility Vehicle,Sedan,Dump,, +10/06/2021,20:00,MANHATTAN,10013,40.718834,-74.00878,"(40.718834, -74.00878)",,,90 HUDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464920,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,9:41,,,40.76758,-73.93596,"(40.76758, -73.93596)",11 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465694,Sedan,,,, +10/07/2021,2:45,QUEENS,11368,40.754776,-73.85376,"(40.754776, -73.85376)",,,37-10 114 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4464859,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,14:01,QUEENS,11368,40.74788,-73.85731,"(40.74788, -73.85731)",108 STREET,45 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465313,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,10:09,BROOKLYN,11237,40.699165,-73.914925,"(40.699165, -73.914925)",GROVE STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465181,Sedan,Sedan,,, +10/03/2021,1:00,BRONX,10469,40.87535,-73.85721,"(40.87535, -73.85721)",,,1002 EAST 211 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465832,Sedan,,,, +10/03/2021,18:00,MANHATTAN,10065,40.761566,-73.96364,"(40.761566, -73.96364)",,,1150 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466005,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,1:50,BRONX,10459,40.831966,-73.8967,"(40.831966, -73.8967)",PROSPECT AVENUE,JENNINGS STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4465167,Sedan,,,, +10/06/2021,12:45,QUEENS,11432,40.70663,-73.806595,"(40.70663, -73.806595)",150 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465470,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,0:50,,,40.78291,-73.98578,"(40.78291, -73.98578)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465078,Sedan,Sedan,,, +10/08/2021,23:35,,,40.693817,-73.80296,"(40.693817, -73.80296)",WALTHAM STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465963,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,14:50,QUEENS,11379,40.721806,-73.884384,"(40.721806, -73.884384)",,,61-25 75 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465352,Sedan,,,, +10/07/2021,21:10,BRONX,10455,40.815643,-73.896904,"(40.815643, -73.896904)",,,778 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465302,Sedan,Sedan,,, +10/07/2021,8:20,BROOKLYN,11207,40.664333,-73.89684,"(40.664333, -73.89684)",ALABAMA AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4465059,Sedan,,,, +10/03/2021,20:00,,,40.701267,-73.98772,"(40.701267, -73.98772)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4463597,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,11:33,MANHATTAN,10023,40.776016,-73.98724,"(40.776016, -73.98724)",WEST 66 STREET,WEST END AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4465723,Pick-up Truck,,,, +10/07/2021,19:00,,,40.696373,-73.979034,"(40.696373, -73.979034)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4465389,Sedan,Tractor Truck Diesel,,, +10/08/2021,16:55,QUEENS,11370,40.765423,-73.89001,"(40.765423, -73.89001)",ASTORIA BOULEVARD,79 STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4465527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,0:00,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",1 AVENUE,EAST 58 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464837,E-Scooter,,,, +10/08/2021,11:00,,,40.806614,-73.90769,"(40.806614, -73.90769)",BRUCKNER BOULEVARD,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4465315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck, +10/07/2021,11:05,BROOKLYN,11215,40.668007,-73.980644,"(40.668007, -73.980644)",,,289 7 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465186,Box Truck,Sedan,,, +10/04/2021,16:39,,,,,,WEST 157 STREET,HARLEM RIV PARK BRIDGE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,15:10,,,40.758377,-73.994385,"(40.758377, -73.994385)",WEST 41 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464968,Sedan,Taxi,,, +10/08/2021,16:10,,,40.667587,-73.77972,"(40.667587, -73.77972)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465357,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/08/2021,22:11,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465416,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,11:00,QUEENS,11101,40.75203,-73.92915,"(40.75203, -73.92915)",NORTHERN BOULEVARD,35 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465697,E-Scooter,,,, +10/06/2021,17:56,BRONX,10462,40.85586,-73.86476,"(40.85586, -73.86476)",,,2180 WALLACE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4464881,Sedan,,,, +10/06/2021,21:35,BRONX,10451,40.817978,-73.91892,"(40.817978, -73.91892)",EAST 151 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4465554,Sedan,Sedan,,, +10/08/2021,16:40,BROOKLYN,11219,40.63233,-73.98916,"(40.63233, -73.98916)",,,1465 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465649,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,16:42,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4465036,Station Wagon/Sport Utility Vehicle,Bus,Sedan,, +10/07/2021,10:30,,,40.67447,-74.001976,"(40.67447, -74.001976)",CENTRE STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465107,Tractor Truck Diesel,Sedan,,, +10/07/2021,15:15,,,40.686756,-73.9938,"(40.686756, -73.9938)",COURT STREET,WARREN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465141,Sedan,Van,,, +10/07/2021,16:25,,,40.579826,-73.97622,"(40.579826, -73.97622)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4465661,Station Wagon/Sport Utility Vehicle,Dump,Sedan,Sedan, +10/06/2021,0:00,,,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464594,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,18:36,MANHATTAN,10017,40.753,-73.969894,"(40.753, -73.969894)",EAST 47 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465916,Sedan,,,, +10/08/2021,0:30,BROOKLYN,11205,40.694405,-73.97621,"(40.694405, -73.97621)",,,39 AUBURN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465283,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,18:00,,,40.602295,-73.75863,"(40.602295, -73.75863)",CORNAGA AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4464893,Sedan,Sedan,,, +10/06/2021,20:04,,,40.73632,-73.85631,"(40.73632, -73.85631)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4465075,Sedan,Sedan,,, +10/07/2021,16:41,BRONX,10466,40.895195,-73.859795,"(40.895195, -73.859795)",,,4225 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4465213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,15:10,,,40.71717,-73.834946,"(40.71717, -73.834946)",76 ROAD,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465935,Taxi,Bike,,, +10/06/2021,8:00,QUEENS,11435,40.689945,-73.80508,"(40.689945, -73.80508)",PINEGROVE STREET,SHORE AVENUE,,4,0,0,0,0,0,4,0,Turning Improperly,Driver Inattention/Distraction,,,,4465274,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,17:42,,,40.749607,-73.966835,"(40.749607, -73.966835)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,20:00,BRONX,10451,40.824474,-73.926735,"(40.824474, -73.926735)",,,731 GERARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465345,Sedan,,,, +10/07/2021,18:40,MANHATTAN,10017,40.7501,-73.974945,"(40.7501, -73.974945)",EAST 41 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465453,Sedan,,,, +10/04/2021,8:45,BROOKLYN,11212,40.661446,-73.92829,"(40.661446, -73.92829)",EAST 91 STREET,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465539,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,15:35,,,40.792362,-73.96418,"(40.792362, -73.96418)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465013,Bus,,,, +10/08/2021,11:55,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4465434,Sedan,Sedan,,, +10/07/2021,16:15,BROOKLYN,11238,40.67443,-73.96694,"(40.67443, -73.96694)",SAINT JOHNS PLACE,UNDERHILL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465880,Sedan,Bike,,, +10/06/2021,7:20,BRONX,10462,40.832848,-73.84236,"(40.832848, -73.84236)",,,1160 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464639,Sedan,,,, +10/08/2021,8:00,,,40.605427,-74.0762,"(40.605427, -74.0762)",NARROWS ROAD SOUTH,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465219,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,8:25,BRONX,10466,40.89416,-73.851776,"(40.89416, -73.851776)",,,4240 DIGNEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465218,Sedan,,,, +10/06/2021,15:28,QUEENS,11361,40.75763,-73.782,"(40.75763, -73.782)",44 AVENUE,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464773,Sedan,Box Truck,,, +10/08/2021,16:13,QUEENS,11377,40.742836,-73.91592,"(40.742836, -73.91592)",QUEENS BOULEVARD,49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465367,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,17:00,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465384,Sedan,Sedan,,, +10/07/2021,2:17,BRONX,10474,40.811512,-73.89053,"(40.811512, -73.89053)",TIFFANY STREET,RANDALL AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4464926,Moped,,,, +10/08/2021,8:57,MANHATTAN,10028,,,,,,510 EAST 86 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465334,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,17:45,,,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465760,Sedan,Sedan,,, +10/08/2021,13:50,,,40.724274,-73.99082,"(40.724274, -73.99082)",EAST 1 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465621,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,19:20,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465306,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,9:30,,,40.674717,-74.01332,"(40.674717, -74.01332)",VAN DYKE STREET,RICHARDS STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4465589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,18:17,,,40.734432,-73.989914,"(40.734432, -73.989914)",EAST 14 STREET,UNION SQUARE EAST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465673,Box Truck,,,, +10/08/2021,16:17,MANHATTAN,10128,40.782055,-73.95373,"(40.782055, -73.95373)",LEXINGTON AVENUE,EAST 90 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4466009,Bus,Box Truck,,, +10/07/2021,9:01,BRONX,10459,40.831123,-73.89148,"(40.831123, -73.89148)",,,1327 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4465174,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,8:52,MANHATTAN,10002,40.718895,-73.97724,"(40.718895, -73.97724)",,,80 BARUCH DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465372,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,15:00,,,,,,east 175 street,university avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464940,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,18:55,BROOKLYN,11203,40.65686,-73.92703,"(40.65686, -73.92703)",CLARKSON AVENUE,EAST 54 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465532,Sedan,,,, +09/29/2021,16:27,BROOKLYN,11233,40.67725,-73.92754,"(40.67725, -73.92754)",ATLANTIC AVENUE,ROCHESTER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465805,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,8:40,QUEENS,11420,40.665997,-73.81648,"(40.665997, -73.81648)",NORTH CONDUIT AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,8:46,BRONX,10467,40.884346,-73.88706,"(40.884346, -73.88706)",WEST GUN HILL ROAD,MOSHOLU PARKWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4465238,Sedan,Sedan,Sedan,, +10/05/2021,15:50,QUEENS,11423,40.7133,-73.76456,"(40.7133, -73.76456)",,,195-47 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465976,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,8:29,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4464984,Sedan,Sedan,,, +10/06/2021,6:15,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4464752,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,6:20,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/08/2021,18:00,BROOKLYN,11228,40.615852,-74.00318,"(40.615852, -74.00318)",,,1547 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465608,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,18:15,MANHATTAN,10027,40.807907,-73.94584,"(40.807907, -73.94584)",,,66 WEST 125 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4465825,Sedan,E-Scooter,,, +10/05/2021,10:00,,,40.735413,-73.91835,"(40.735413, -73.91835)",LAUREL HILL BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465251,Dump,Sedan,,, +12/23/2021,19:00,BROOKLYN,11207,40.679535,-73.900475,"(40.679535, -73.900475)",HIGHLAND BOULEVARD,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491270,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,21:27,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465948,Motorcycle,Sedan,,, +10/07/2021,14:52,BROOKLYN,11213,40.667236,-73.93525,"(40.667236, -73.93525)",,,1595 PRESIDENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465119,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,22:40,BROOKLYN,11211,40.710243,-73.9584,"(40.710243, -73.9584)",HAVEMEYER STREET,BORINQUEN PLACE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465133,Sedan,Box Truck,,, +10/07/2021,8:00,,,40.780296,-73.825325,"(40.780296, -73.825325)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4465154,Sedan,Sedan,,, +10/08/2021,20:30,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465399,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,18:30,BRONX,10458,40.864532,-73.89091,"(40.864532, -73.89091)",,,2641 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465270,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,11:23,BROOKLYN,11229,40.604427,-73.96067,"(40.604427, -73.96067)",,,1842 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464743,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,12:30,QUEENS,11435,40.688656,-73.79562,"(40.688656, -73.79562)",SUTPHIN BOULEVARD,111 AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4464716,Sedan,Box Truck,,, +10/08/2021,7:28,,,40.708324,-73.84314,"(40.708324, -73.84314)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465504,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,17:53,BROOKLYN,11233,40.67069,-73.91703,"(40.67069, -73.91703)",SARATOGA AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491178,Sedan,,,, +10/02/2021,12:25,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4465223,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,16:18,BRONX,10456,40.830208,-73.90324,"(40.830208, -73.90324)",,,605 EAST 168 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4464769,Sedan,SCOOTER,,, +10/08/2021,14:00,BROOKLYN,11210,40.62137,-73.951675,"(40.62137, -73.951675)",EAST 24 STREET,AVENUE L,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465640,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,9:20,,,40.785294,-73.969345,"(40.785294, -73.969345)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464685,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,16:55,,,40.61917,-74.02821,"(40.61917, -74.02821)",5 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465404,Station Wagon/Sport Utility Vehicle,Dump,,, +10/07/2021,7:03,QUEENS,11434,40.666492,-73.76536,"(40.666492, -73.76536)",SOUTH CONDUIT AVENUE,179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464983,Sedan,,,, +10/07/2021,23:00,BROOKLYN,11210,40.636074,-73.951096,"(40.636074, -73.951096)",FARRAGUT ROAD,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4465628,Sedan,,,, +10/07/2021,19:22,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",OCEAN PARKWAY,AVENUE C,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465739,Sedan,Sedan,,, +10/08/2021,0:15,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465206,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,19:30,QUEENS,11423,40.709415,-73.76293,"(40.709415, -73.76293)",,,100-26 196 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465338,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,0:50,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464874,Sedan,Sedan,,, +10/08/2021,15:38,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",150 ROAD,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4465421,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,20:40,,,,,,LONG ISLAND EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,17:31,BROOKLYN,11236,40.642056,-73.88859,"(40.642056, -73.88859)",EAST 105 STREET,FLATLANDS 5 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4491329,Sedan,Sedan,,, +10/03/2021,13:40,BROOKLYN,11214,40.597923,-73.9872,"(40.597923, -73.9872)",25 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465598,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,16:11,BRONX,10451,40.82054,-73.930786,"(40.82054, -73.930786)",EXTERIOR STREET,EAST 150 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465680,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/29/2021,23:00,,,,,,PARK AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4465766,Taxi,Sedan,,, +06/06/2021,8:00,BROOKLYN,11220,,,,50 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425801,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,10:00,,,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464902,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,19:39,BROOKLYN,11207,,,,ELDERT STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465178,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:00,BROOKLYN,11217,40.674423,-73.97234,"(40.674423, -73.97234)",,,40 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465191,Sedan,Sedan,,, +10/07/2021,9:55,,,40.803555,-73.969124,"(40.803555, -73.969124)",WEST 108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465004,Sedan,,,, +10/08/2021,15:00,QUEENS,11365,40.73733,-73.810455,"(40.73733, -73.810455)",,,61-85 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465376,Sedan,,,, +10/04/2021,13:45,,,40.824562,-73.948105,"(40.824562, -73.948105)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465294,Sedan,Sedan,,, +10/07/2021,6:25,,,40.80515,-73.91105,"(40.80515, -73.91105)",EAST 139 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464945,Bus,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,22:30,,,40.694805,-73.8982,"(40.694805, -73.8982)",CYPRESS AVENUE,79 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4465788,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/06/2021,17:39,MANHATTAN,10029,40.79383,-73.93702,"(40.79383, -73.93702)",,,2175 1 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465994,Motorbike,Motorbike,,, +10/08/2021,19:03,QUEENS,11104,40.743263,-73.91964,"(40.743263, -73.91964)",45 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465393,Sedan,Bus,,, +10/08/2021,15:45,BROOKLYN,11206,40.70278,-73.946915,"(40.70278, -73.946915)",WALLABOUT STREET,THROOP AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4465483,Sedan,Sedan,Sedan,Sedan, +10/08/2021,18:52,BROOKLYN,11236,40.6358,-73.903595,"(40.6358, -73.903595)",EAST 88 STREET,AVENUE K,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465848,Sedan,,,, +10/07/2021,8:20,BROOKLYN,11234,40.6082,-73.920715,"(40.6082, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464993,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,21:50,QUEENS,11412,40.695156,-73.761765,"(40.695156, -73.761765)",FARMERS BOULEVARD,115 ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4491087,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,17:00,QUEENS,11435,40.70251,-73.80825,"(40.70251, -73.80825)",,,90-16 SUTPHIN BOULEVARD,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465255,Sedan,Bike,,, +10/08/2021,20:00,BROOKLYN,11222,40.71967,-73.93967,"(40.71967, -73.93967)",,,300 RICHARDSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465905,Station Wagon/Sport Utility Vehicle,Van,UNK,, +10/06/2021,13:00,MANHATTAN,10002,40.720654,-73.99256,"(40.720654, -73.99256)",,,161 CHRYSTIE STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464756,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/06/2021,8:12,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464847,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,2:00,,,40.67476,-73.79884,"(40.67476, -73.79884)",142 STREET,123 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465445,Sedan,,,, +10/07/2021,16:00,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4465115,Sedan,,,, +10/07/2021,8:27,MANHATTAN,10002,40.712307,-73.99437,"(40.712307, -73.99437)",MADISON STREET,MARKET STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465714,Flat Bed,Bike,,, +10/05/2021,19:58,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4465939,Sedan,Sedan,,, +10/08/2021,2:30,QUEENS,11373,40.742615,-73.88503,"(40.742615, -73.88503)",,,42-25 80 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465250,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,0:00,QUEENS,11354,40.77058,-73.84303,"(40.77058, -73.84303)",,,30-29 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4465159,Pick-up Truck,,,, +10/06/2021,12:54,,,40.84631,-73.91947,"(40.84631, -73.91947)",NELSON AVENUE,FEATHERBED LANE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4464938,Bus,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,15:15,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465051,Bus,Dump,,, +10/07/2021,10:40,,,40.665375,-73.95052,"(40.665375, -73.95052)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465120,Sedan,,,, +10/04/2021,11:20,,,40.709023,-73.798195,"(40.709023, -73.798195)",HILLSIDE AVENUE,164 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hands-free),Unspecified,,,,4465282,Flat Bed,Sedan,,, +06/08/2021,13:17,BRONX,10465,0,0,"(0.0, 0.0)",,,954 EDISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425820,Sedan,,,, +10/06/2021,18:42,QUEENS,11374,40.71659,-73.86184,"(40.71659, -73.86184)",67 ROAD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464776,Sedan,Sedan,,, +10/07/2021,9:50,MANHATTAN,10128,40.780437,-73.94989,"(40.780437, -73.94989)",EAST 90 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465149,Sedan,E-Bike,,, +10/06/2021,20:55,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,20:56,,,40.882835,-73.888016,"(40.882835, -73.888016)",GOULDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465090,Convertible,,,, +10/06/2021,7:45,,,40.75484,-73.98412,"(40.75484, -73.98412)",WEST 42 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464721,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/07/2021,13:30,,,40.67909,-73.90829,"(40.67909, -73.90829)",STONE AVENUE,,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4465035,Sedan,Sedan,,, +10/08/2021,7:41,,,40.71307,-73.75362,"(40.71307, -73.75362)",,,99 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465309,Sedan,Pick-up Truck,,, +10/08/2021,22:21,BROOKLYN,11207,40.680405,-73.88764,"(40.680405, -73.88764)",ARLINGTON AVENUE,WARWICK STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4466051,E-Bike,,,, +12/31/2021,11:00,BROOKLYN,11231,40.68005,-73.99598,"(40.68005, -73.99598)",,,116 1 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491526,Sedan,Sedan,,, +10/07/2021,9:05,,,40.73715,-73.930824,"(40.73715, -73.930824)",BORDEN AVENUE,GREENPOINT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Oversized Vehicle,Unspecified,,,4464961,Sedan,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +12/30/2021,5:20,BROOKLYN,11236,40.64077,-73.90913,"(40.64077, -73.90913)",GLENWOOD ROAD,EAST 88 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4490699,Sedan,Sedan,,, +10/07/2021,13:30,QUEENS,11373,40.739082,-73.88954,"(40.739082, -73.88954)",,,74-01 QUEENS BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,9:53,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4464977,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/08/2021,19:27,BROOKLYN,11236,40.64165,-73.90378,"(40.64165, -73.90378)",EAST 93 STREET,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465427,Bike,,,, +10/08/2021,10:05,,,40.64002,-74.13042,"(40.64002, -74.13042)",RICHMOND TERRACE,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,10:22,QUEENS,11354,40.76471,-73.830696,"(40.76471, -73.830696)",35 AVENUE,LINDEN PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465155,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,13:46,BRONX,10462,40.835518,-73.86112,"(40.835518, -73.86112)",METROPOLITAN AVENUE,WOOD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465210,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,16:00,QUEENS,11354,40.769096,-73.833664,"(40.769096, -73.833664)",31 ROAD,FARRINGTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465463,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,11:50,BRONX,10466,40.893295,-73.857,"(40.893295, -73.857)",,,705 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465024,Sedan,,,, +10/08/2021,16:00,QUEENS,11366,,,,,,75-05 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465493,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,19:50,BROOKLYN,11203,40.659286,-73.92925,"(40.659286, -73.92925)",,,66 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465082,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,15:20,BRONX,10456,40.82196,-73.9085,"(40.82196, -73.9085)",,,840 EAGLE AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4465319,Bus,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,13:51,BRONX,10470,40.895927,-73.87392,"(40.895927, -73.87392)",,,65 EAST 233 STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4465813,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,17:47,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4464868,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,19:11,BROOKLYN,11208,40.673943,-73.86393,"(40.673943, -73.86393)",SUTTER AVENUE,ELDERTS LANE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465063,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,13:15,QUEENS,11103,40.765995,-73.90751,"(40.765995, -73.90751)",,,45-15 25 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,20:34,BRONX,10452,40.84366,-73.92005,"(40.84366, -73.92005)",SHAKESPEARE AVENUE,WEST 172 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,Unspecified,,,4465348,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/07/2021,13:00,BROOKLYN,11207,40.684082,-73.90864,"(40.684082, -73.90864)",CHAUNCEY STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,12:47,BROOKLYN,11216,40.685463,-73.9506,"(40.685463, -73.9506)",NOSTRAND AVENUE,MONROE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4465772,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,23:00,MANHATTAN,10025,40.79275,-73.97132,"(40.79275, -73.97132)",AMSTERDAM AVENUE,WEST 94 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464831,Sedan,,,, +10/07/2021,14:50,,,40.691353,-73.92142,"(40.691353, -73.92142)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4465187,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,7:10,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4465795,Sedan,Sedan,Sedan,Sedan, +10/08/2021,17:20,,,,,,GRANT HIGHWAY,WEST 169 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465998,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,7:15,BRONX,10454,40.806557,-73.92685,"(40.806557, -73.92685)",,,50 BRUCKNER BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4465314,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,9:00,,,40.691822,-73.92223,"(40.691822, -73.92223)",GROVE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465441,Sedan,,,, +10/08/2021,19:20,QUEENS,11103,40.758053,-73.91864,"(40.758053, -73.91864)",,,32-13 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465703,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,7:58,BRONX,10459,40.830944,-73.89766,"(40.830944, -73.89766)",,,820 RITTER PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464932,Station Wagon/Sport Utility Vehicle,Bus,,, +10/06/2021,16:00,MANHATTAN,10039,40.835808,-73.93556,"(40.835808, -73.93556)",,,159-64 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465231,Sedan,,,, +10/08/2021,20:48,BROOKLYN,11209,40.622356,-74.03608,"(40.622356, -74.03608)",,,119 89 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465566,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,1:21,STATEN ISLAND,10305,40.59034,-74.06663,"(40.59034, -74.06663)",CAPODANNO BOULEVARD,SAND LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/06/2021,14:00,QUEENS,11356,40.78168,-73.84595,"(40.78168, -73.84595)",COLLEGE POINT BOULEVARD,20 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4464783,Tractor Truck Diesel,Sedan,,, +10/08/2021,20:15,BRONX,10462,40.85422,-73.86773,"(40.85422, -73.86773)",,,2129 WHITE PLAINS ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465478,Sedan,Bike,,, +10/02/2021,23:42,,,40.735283,-73.85984,"(40.735283, -73.85984)",LONG ISLAND EXPRESSWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4465934,Sedan,Sedan,,, +10/08/2021,16:05,,,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465583,Tractor Truck Diesel,,,, +10/08/2021,17:40,BROOKLYN,11218,40.639698,-73.973404,"(40.639698, -73.973404)",,,379 OCEAN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4465653,E-Bike,,,, +10/06/2021,0:20,BROOKLYN,11207,40.668472,-73.89603,"(40.668472, -73.89603)",,,350 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465042,Sedan,Sedan,,, +10/07/2021,22:36,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4465124,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/07/2021,23:30,QUEENS,11375,40.73028,-73.84824,"(40.73028, -73.84824)",66 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465895,Sedan,,,, +10/07/2021,11:00,QUEENS,11373,40.73138,-73.87782,"(40.73138, -73.87782)",85 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465287,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,15:30,QUEENS,11106,40.76242,-73.92391,"(40.76242, -73.92391)",,,31-71 32 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464912,Sedan,E-Bike,,, +10/07/2021,10:55,MANHATTAN,10002,40.721672,-73.992035,"(40.721672, -73.992035)",,,187 CHRYSTIE STREET,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4465719,Bike,E-Bike,,, +10/07/2021,0:00,MANHATTAN,10030,40.814373,-73.941475,"(40.814373, -73.941475)",,,107 WEST 135 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465230,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,9:10,BROOKLYN,11231,40.673653,-73.99905,"(40.673653, -73.99905)",,,205 CENTRE STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4464839,Sedan,Sedan,,, +10/06/2021,14:06,QUEENS,11385,40.702076,-73.87917,"(40.702076, -73.87917)",MYRTLE AVENUE,71 PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464913,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,14:00,BROOKLYN,11232,40.655674,-74.00515,"(40.655674, -74.00515)",,,153 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465516,Sedan,,,, +10/08/2021,9:45,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",84 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465245,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,10:23,QUEENS,11385,40.696926,-73.89463,"(40.696926, -73.89463)",,,76-02 60 LANE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,15:30,MANHATTAN,10018,40.75066,-73.987785,"(40.75066, -73.987785)",WEST 35 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465071,E-Bike,,,, +10/07/2021,14:56,BRONX,10458,40.875896,-73.88477,"(40.875896, -73.88477)",EAST 206 STREET,SAINT GEORGES CRESCENT,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465262,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,0:55,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464511,Sedan,Sedan,,, +10/07/2021,14:00,,,40.757072,-73.96986,"(40.757072, -73.96986)",EAST 52 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4465096,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,12:16,BRONX,10467,40.880836,-73.86677,"(40.880836, -73.86677)",,,3644 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465838,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,12:50,QUEENS,11366,40.73068,-73.77581,"(40.73068, -73.77581)",UNION TURNPIKE,195 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4465341,Open Body,,,, +09/23/2021,19:40,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",ELIOT AVENUE,69 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465361,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,20:07,BROOKLYN,11219,40.635937,-73.987595,"(40.635937, -73.987595)",45 STREET,14 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465145,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,21:00,,,40.577007,-73.96704,"(40.577007, -73.96704)",BRIGHTON 1 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464802,Sedan,Sedan,,, +10/07/2021,10:30,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Outside Car Distraction,,,,4465018,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,14:50,QUEENS,11414,40.66036,-73.841194,"(40.66036, -73.841194)",,,158-09 92 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4465140,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,22:50,QUEENS,11375,40.734985,-73.85066,"(40.734985, -73.85066)",108 STREET,63 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465123,Station Wagon/Sport Utility Vehicle,Bike,,, +10/06/2021,14:10,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465058,Ambulance,,,, +10/04/2021,23:00,BRONX,10468,40.859642,-73.90534,"(40.859642, -73.90534)",GRAND AVENUE,EVELYN PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4465286,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,4:00,QUEENS,11434,40.667995,-73.786766,"(40.667995, -73.786766)",BAISLEY BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464599,Sedan,,,, +09/15/2021,20:06,BRONX,10457,40.848133,-73.88885,"(40.848133, -73.88885)",EAST 180 STREET,CROTONA AVENUE,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4466041,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,13:58,BRONX,10455,40.815697,-73.91678,"(40.815697, -73.91678)",EAST 149 STREET,BERGEN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490541,Ambulance,E-Scooter,,, +10/06/2021,14:50,QUEENS,11357,40.780224,-73.80255,"(40.780224, -73.80255)",FRANCIS LEWIS BOULEVARD,WILLETS POINT BOULEVARD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464781,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/07/2021,18:00,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465214,Sedan,,,, +10/06/2021,20:00,,,40.605328,-73.74163,"(40.605328, -73.74163)",VIRGINIA STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464885,Sedan,Sedan,,, +10/08/2021,9:55,BRONX,10456,40.83,-73.91812,"(40.83, -73.91812)",SHERMAN AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465346,Station Wagon/Sport Utility Vehicle,Bus,,, +10/05/2021,7:24,BROOKLYN,11220,40.641747,-74.013824,"(40.641747, -74.013824)",56 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465273,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,23:54,BROOKLYN,11210,40.63771,-73.948166,"(40.63771, -73.948166)",,,1957 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465540,Taxi,Sedan,,, +10/07/2021,21:15,QUEENS,11422,40.670223,-73.72855,"(40.670223, -73.72855)",HOOK CREEK BOULEVARD,135 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465101,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,19:28,BROOKLYN,11205,40.697918,-73.9728,"(40.697918, -73.9728)",FLUSHING AVENUE,ADELPHI STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4465363,Sedan,Bike,,, +10/08/2021,16:45,QUEENS,11358,40.759445,-73.78964,"(40.759445, -73.78964)",192 STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465517,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,19:58,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465380,Sedan,Sedan,,, +10/06/2021,19:20,,,40.74088,-73.990074,"(40.74088, -73.990074)",5 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465755,Sedan,Bike,,, +10/08/2021,16:25,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466055,Bus,,,, +10/06/2021,18:15,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4464833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,8:00,,,,,,SANDS STREET,JAY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465012,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,0:00,QUEENS,11377,40.75419,-73.908806,"(40.75419, -73.908806)",,,51-03 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4465695,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,18:00,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465779,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,6:13,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4465215,Sedan,,,, +10/07/2021,15:35,MANHATTAN,10031,40.818394,-73.95089,"(40.818394, -73.95089)",CONVENT AVENUE,WEST 135 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465041,Bike,Sedan,,, +10/07/2021,17:40,BRONX,10458,40.858376,-73.89637,"(40.858376, -73.89637)",TIEBOUT AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465200,Pick-up Truck,Sedan,,, +10/08/2021,0:09,,,40.67973,-73.76162,"(40.67973, -73.76162)",MERRICK BOULEVARD,FARMERS BOULEVARD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4465368,Sedan,Sedan,Sedan,, +10/06/2021,21:48,,,40.74278,-73.82817,"(40.74278, -73.82817)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4464860,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +10/07/2021,12:51,,,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,,,1,0,0,0,1,0,0,0,Oversized Vehicle,Turning Improperly,,,,4465620,Tractor Truck Diesel,Bike,,, +10/08/2021,16:14,BROOKLYN,11230,40.61255,-73.96287,"(40.61255, -73.96287)",AVENUE O,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465761,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,12:28,,,40.851654,-73.91566,"(40.851654, -73.91566)",ANDREWS AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465168,Sedan,,,, +10/08/2021,12:39,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",109 AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466006,Sedan,Bike,,, +10/08/2021,15:04,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465970,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/04/2021,15:14,MANHATTAN,10003,40.73669,-73.993126,"(40.73669, -73.993126)",5 AVENUE,EAST 15 STREET,,1,0,1,0,0,0,0,0,Brakes Defective,,,,,4465672,Bike,,,, +10/02/2021,10:00,MANHATTAN,10027,40.8161,-73.9535,"(40.8161, -73.9535)",,,450 WEST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465801,Sedan,,,, +10/07/2021,6:40,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465725,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,17:58,QUEENS,11413,40.68019,-73.75545,"(40.68019, -73.75545)",MERRICK BOULEVARD,PINEVILLE LANE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4465134,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,18:16,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465089,Tractor Truck Diesel,Sedan,,, +10/08/2021,17:17,BRONX,10467,40.887444,-73.878006,"(40.887444, -73.878006)",JEROME AVENUE,BAINBRIDGE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465885,Moped,Sedan,,, +10/07/2021,12:07,BROOKLYN,11215,40.671593,-73.9843,"(40.671593, -73.9843)",5 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465183,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/06/2021,7:55,QUEENS,11366,40.724262,-73.800545,"(40.724262, -73.800545)",,,77-33 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4464720,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,12:58,BROOKLYN,11230,40.62701,-73.956635,"(40.62701, -73.956635)",,,1439 OCEAN AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464744,Taxi,Sedan,,, +10/08/2021,20:24,QUEENS,11368,40.755505,-73.86816,"(40.755505, -73.86816)",100 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465437,E-Bike,Sedan,,, +10/07/2021,10:30,MANHATTAN,10029,40.79814,-73.94051,"(40.79814, -73.94051)",,,186 EAST 116 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,18:00,BROOKLYN,11233,40.680847,-73.92563,"(40.680847, -73.92563)",PATCHEN AVENUE,CHAUNCEY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465794,Sedan,Sedan,,, +10/08/2021,14:00,QUEENS,11373,40.730885,-73.87165,"(40.730885, -73.87165)",WOODHAVEN BOULEVARD,60 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4465395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,18:15,BRONX,10464,40.846977,-73.786385,"(40.846977, -73.786385)",,,300 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465226,Sedan,,,, +10/07/2021,15:10,QUEENS,11434,40.687016,-73.77487,"(40.687016, -73.77487)",FOCH BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465128,Sedan,Sedan,,, +10/06/2021,10:08,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464796,Sedan,,,, +10/07/2021,9:06,BROOKLYN,11218,40.636406,-73.9673,"(40.636406, -73.9673)",,,493 STRATFORD ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4465258,Sedan,,,, +12/29/2021,8:05,,,40.885303,-73.82954,"(40.885303, -73.82954)",DELAVALL AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4490481,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,11:00,,,40.815826,-73.947044,"(40.815826, -73.947044)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465241,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,15:15,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,JAY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465584,Taxi,Sedan,,, +10/07/2021,21:52,QUEENS,11435,40.715702,-73.81069,"(40.715702, -73.81069)",,,147-88 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4465472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,13:18,BROOKLYN,11230,40.634174,-73.96804,"(40.634174, -73.96804)",,,377A WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465263,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,16:30,,,40.68733,-73.98183,"(40.68733, -73.98183)",SCHERMERHORN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465106,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/08/2021,13:36,QUEENS,11373,40.73675,-73.87768,"(40.73675, -73.87768)",QUEENS BOULEVARD,GRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465746,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,7:10,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464710,Sedan,Box Truck,,, +10/07/2021,6:17,MANHATTAN,10075,40.769634,-73.94841,"(40.769634, -73.94841)",FDR DRIVE,EAST 78 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4464919,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,8:00,QUEENS,11377,40.745827,-73.90111,"(40.745827, -73.90111)",63 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4464962,Sedan,,,, +10/07/2021,3:45,QUEENS,11385,40.70766,-73.913445,"(40.70766, -73.913445)",ONDERDONK AVENUE,STANHOPE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465784,Sedan,,,, +10/05/2021,15:00,BROOKLYN,11220,40.641464,-73.99976,"(40.641464, -73.99976)",9 AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465648,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/06/2021,10:35,,,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,18:17,BRONX,10460,40.844986,-73.88136,"(40.844986, -73.88136)",,,2114 DALY AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4464844,Sedan,Convertible,,, +10/08/2021,17:34,BROOKLYN,11223,40.59997,-73.96688,"(40.59997, -73.96688)",,,506 AVENUE T,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466025,Sedan,Moped,,, +10/07/2021,16:43,QUEENS,11102,40.77584,-73.922455,"(40.77584, -73.922455)",,,24-35 21 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,6:55,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465054,Sedan,,,, +10/07/2021,15:55,,,40.881264,-73.83875,"(40.881264, -73.83875)",BOSTON ROAD,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465834,Sedan,E-Bike,,, +10/08/2021,15:22,BROOKLYN,11228,40.617268,-74.01921,"(40.617268, -74.01921)",,,1053 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,14:47,BRONX,10451,40.821667,-73.915184,"(40.821667, -73.915184)",MELROSE AVENUE,EAST 157 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465318,E-Scooter,,,, +10/07/2021,16:30,BROOKLYN,11226,40.648792,-73.95228,"(40.648792, -73.95228)",ROGERS AVENUE,SNYDER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465081,,,,, +10/07/2021,13:45,MANHATTAN,10009,40.733738,-73.97719,"(40.733738, -73.97719)",,,514 EAST 20 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4465005,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,23:30,BRONX,10460,40.845493,-73.883484,"(40.845493, -73.883484)",EAST 180 STREET,MOHEGAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465195,,,,, +10/06/2021,15:30,QUEENS,11412,40.704277,-73.74986,"(40.704277, -73.74986)",FRANCIS LEWIS BOULEVARD,112 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464789,Station Wagon/Sport Utility Vehicle,Bus,,, +10/08/2021,17:00,,,40.77558,-73.84267,"(40.77558, -73.84267)",126 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465466,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,1:14,QUEENS,11412,40.69467,-73.76343,"(40.69467, -73.76343)",MEXICO STREET,TIOGA DRIVE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4465936,Sedan,Sedan,,, +09/28/2021,16:30,BROOKLYN,11233,,,,FULTON STREET,BUFFALO AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4465847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,10:04,BROOKLYN,11217,,,,DE KALB AVENUE,SOUTH ELLIOTT PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465269,Station Wagon/Sport Utility Vehicle,Bike,,, +10/06/2021,14:58,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4464851,Sedan,Sedan,,, +10/07/2021,20:24,MANHATTAN,10025,40.800507,-73.96798,"(40.800507, -73.96798)",WEST 105 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465163,Sedan,,,, +10/08/2021,16:40,QUEENS,11370,40.75975,-73.89087,"(40.75975, -73.89087)",,,30-49 77 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465525,Bike,Sedan,Sedan,, +10/05/2021,16:50,,,40.670532,-73.91488,"(40.670532, -73.91488)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465417,Station Wagon/Sport Utility Vehicle,,,, +09/25/2021,18:52,QUEENS,11434,,,,BELT PARKWAY,GUY R BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4465356,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/15/2021,6:11,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,2,0,0,0,0,0,0,0,Unspecified,,,,,4465808,E-Scooter,,,, +10/06/2021,20:00,MANHATTAN,10034,40.864895,-73.91913,"(40.864895, -73.91913)",,,148 POST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,18:45,STATEN ISLAND,10312,40.559166,-74.18021,"(40.559166, -74.18021)",,,212 WOODROW ROAD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4465327,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,23:09,STATEN ISLAND,10304,40.619,-74.084785,"(40.619, -74.084785)",TARGEE STREET,OSGOOD AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4465688,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Pick-up Truck +12/30/2021,9:15,MANHATTAN,10017,40.74959,-73.973724,"(40.74959, -73.973724)",,,225 EAST 41 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490740,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,16:33,MANHATTAN,10024,40.79174,-73.97475,"(40.79174, -73.97475)",,,257 WEST 91 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465385,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,15:45,BROOKLYN,11214,0,0,"(0.0, 0.0)",18 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465609,Sedan,Sedan,,, +10/04/2021,8:25,,,40.693436,-73.97784,"(40.693436, -73.97784)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4465290,Sedan,Bike,,, +10/02/2021,16:32,,,40.68854,-73.92384,"(40.68854, -73.92384)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465826,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/07/2021,16:34,QUEENS,11354,40.770706,-73.828636,"(40.770706, -73.828636)",140 STREET,31 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465158,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,10:28,QUEENS,11421,40.68899,-73.85309,"(40.68899, -73.85309)",,,90-01 91 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465116,Box Truck,Sedan,,, +10/07/2021,12:30,BROOKLYN,11207,40.665344,-73.900856,"(40.665344, -73.900856)",DUMONT AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465045,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,17:05,,,40.801884,-73.97344,"(40.801884, -73.97344)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465353,Station Wagon/Sport Utility Vehicle,Convertible,,, +05/29/2021,5:19,,,,,,230 street,Broadway,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4425998,Sedan,Sedan,,, +10/07/2021,22:40,,,40.586124,-73.990715,"(40.586124, -73.990715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4465662,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,16:45,STATEN ISLAND,10305,40.58594,-74.09262,"(40.58594, -74.09262)",HYLAN BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465412,Sedan,,,, +10/08/2021,3:48,QUEENS,11373,40.73274,-73.86836,"(40.73274, -73.86836)",LONG ISLAND EXPRESSWAY,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465588,Sedan,,,, +09/24/2021,15:45,BRONX,10459,40.81962,-73.89983,"(40.81962, -73.89983)",,,826 HEWITT PLACE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4465921,Sedan,,,, +10/06/2021,16:12,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465151,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,1:36,BROOKLYN,11236,40.64488,-73.893,"(40.64488, -73.893)",,,1025 EAST 104 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465501,Sedan,,,, +10/06/2021,15:15,BROOKLYN,11211,40.71504,-73.95857,"(40.71504, -73.95857)",,,639 DRIGGS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464943,Sedan,Motorcycle,,, +09/29/2021,17:20,,,40.827103,-73.94996,"(40.827103, -73.94996)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465455,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,18:00,BROOKLYN,11229,40.6104,-73.9586,"(40.6104, -73.9586)",AVENUE P,EAST 15 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/22/2021,15:40,,,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4465237,Sedan,Bike,,, +10/06/2021,7:50,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464637,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,7:34,BROOKLYN,11210,40.622204,-73.94405,"(40.622204, -73.94405)",EAST 32 STREET,AVENUE L,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4464992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,8:00,BRONX,10466,40.883556,-73.84974,"(40.883556, -73.84974)",LACONIA AVENUE,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4465222,Sedan,Sedan,,, +10/06/2021,12:55,BRONX,10451,40.823658,-73.91206,"(40.823658, -73.91206)",EAST 161 STREET,ELTON AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4464770,Sedan,,,, +10/07/2021,17:29,,,40.693863,-73.92971,"(40.693863, -73.92971)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4465190,Station Wagon/Sport Utility Vehicle,Carry All,,, +10/07/2021,8:00,BROOKLYN,11221,40.69221,-73.92293,"(40.69221, -73.92293)",BUSHWICK AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464966,Sedan,,,, +10/08/2021,18:04,BROOKLYN,11212,40.669125,-73.91451,"(40.669125, -73.91451)",AMBOY STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465429,Sedan,Sedan,,, +10/06/2021,23:00,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4464925,Sedan,Sedan,,, +10/08/2021,14:00,BROOKLYN,11211,40.7198,-73.953476,"(40.7198, -73.953476)",DRIGGS AVENUE,NORTH 12 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4465904,Van,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,18:25,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,23:20,STATEN ISLAND,10312,40.553497,-74.17334,"(40.553497, -74.17334)",,,131 STROUD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465735,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,8:40,QUEENS,11412,40.693592,-73.75122,"(40.693592, -73.75122)",201 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4465254,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,21:38,BRONX,10469,40.862595,-73.83153,"(40.862595, -73.83153)",EAST GUN HILL ROAD,ELY AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4465333,Sedan,Sedan,,, +10/08/2021,15:22,,,40.609642,-73.89738,"(40.609642, -73.89738)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4465859,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/06/2021,20:55,,,,,,E Tremont Ave,LANE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464873,Sedan,Bike,,, +10/08/2021,3:40,,,40.608253,-73.897835,"(40.608253, -73.897835)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465162,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,15:05,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",WESTCHESTER AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465305,Ambulance,,,, +10/07/2021,14:25,BROOKLYN,11236,40.641945,-73.916626,"(40.641945, -73.916626)",EAST 83 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465085,Box Truck,Sedan,,, +10/08/2021,17:25,BROOKLYN,11234,40.63267,-73.93105,"(40.63267, -73.93105)",,,4712 AVENUE H,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465947,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,18:51,BRONX,10463,40.88158,-73.898994,"(40.88158, -73.898994)",,,3446 FORT INDEPENDENCE STREET,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465322,Sedan,E-Bike,,, +10/06/2021,9:12,,,40.68812,-73.9117,"(40.68812, -73.9117)",EVERGREEN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4464901,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,11:07,BROOKLYN,11207,40.656693,-73.89464,"(40.656693, -73.89464)",DE WITT AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4465047,Sedan,Sedan,,, +10/05/2021,18:00,BRONX,10459,40.832085,-73.89561,"(40.832085, -73.89561)",,,775 JENNINGS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465173,Pick-up Truck,,,, +10/06/2021,19:00,BRONX,10460,40.841087,-73.86449,"(40.841087, -73.86449)",WHITE PLAINS ROAD,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464818,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,14:25,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4465388,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,22:38,STATEN ISLAND,10314,40.61258,-74.129166,"(40.61258, -74.129166)",VICTORY BOULEVARD,QUINLAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465683,Sedan,,,, +10/07/2021,8:05,BRONX,10465,40.83135,-73.82684,"(40.83135, -73.82684)",,,3490 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4464998,Sedan,Sedan,,, +12/30/2021,15:05,QUEENS,11367,40.726604,-73.81425,"(40.726604, -73.81425)",153 STREET,73 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4490784,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,10:40,BROOKLYN,11212,40.65584,-73.919586,"(40.65584, -73.919586)",EAST 93 STREET,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465531,Sedan,,,, +10/01/2021,18:10,MANHATTAN,10128,40.784245,-73.9471,"(40.784245, -73.9471)",2 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465993,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,7:51,QUEENS,11415,40.705128,-73.82819,"(40.705128, -73.82819)",METROPOLITAN AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465565,Sedan,Sedan,,, +10/08/2021,10:58,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465310,Sedan,Sedan,,, +10/08/2021,13:05,BROOKLYN,11213,40.66761,-73.94236,"(40.66761, -73.94236)",,,327 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465487,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,4:50,,,40.729176,-73.87898,"(40.729176, -73.87898)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,16:56,BRONX,10467,40.87367,-73.879234,"(40.87367, -73.879234)",EAST 205 STREET,BAINBRIDGE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465482,MTA BUS,Bike,,, +10/01/2021,12:36,MANHATTAN,10038,40.70767,-74.00311,"(40.70767, -74.00311)",BEEKMAN STREET,WATER STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4465323,Sedan,,,, +10/02/2021,11:43,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465426,Sedan,Sedan,,, +10/08/2021,13:20,BROOKLYN,11226,40.639584,-73.948364,"(40.639584, -73.948364)",,,1885 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465541,Sedan,,,, +10/05/2021,14:30,MANHATTAN,10280,40.709904,-74.01554,"(40.709904, -74.01554)",,,219 ALBANY STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465381,Motorcycle,Taxi,,, +10/07/2021,15:30,QUEENS,11413,40.67165,-73.741005,"(40.67165, -73.741005)",,,137-21 231 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465029,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,8:00,BROOKLYN,11214,,,,,,1962 BATH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465602,Sedan,,,, +10/07/2021,5:30,,,40.76241,-73.95443,"(40.76241, -73.95443)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464850,Sedan,Sedan,,, +10/05/2021,22:53,MANHATTAN,10031,40.829082,-73.941086,"(40.829082, -73.941086)",WEST 153 STREET,SAINT NICHOLAS PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465462,Sedan,,,, +10/03/2021,15:50,BRONX,10470,0,0,"(0.0, 0.0)",,,4553 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4465817,Sedan,,,, +10/07/2021,18:15,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4465227,Sedan,Sedan,,, +10/06/2021,20:36,BROOKLYN,11223,40.59876,-73.97794,"(40.59876, -73.97794)",AVENUE T,WEST 6 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4465494,Station Wagon/Sport Utility Vehicle,Moped,,, +10/04/2021,19:20,,,40.600136,-73.99087,"(40.600136, -73.99087)",BAY 34 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465596,Sedan,,,, +09/27/2021,11:17,BRONX,10451,40.82725,-73.91754,"(40.82725, -73.91754)",MORRIS AVENUE,EAST 163 STREET,,1,0,1,0,0,0,0,0,,,,,,4465349,,,,, +10/04/2021,9:45,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465657,Sedan,Sedan,,, +10/08/2021,20:52,,,40.709156,-73.84107,"(40.709156, -73.84107)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4465508,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/05/2021,0:00,BROOKLYN,11217,40.689735,-73.97611,"(40.689735, -73.97611)",DE KALB AVENUE,SOUTH ELLIOTT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465291,Bike,,,, +10/07/2021,9:30,BROOKLYN,11223,40.600384,-73.975365,"(40.600384, -73.975365)",,,1934 WEST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4464971,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/25/2021,15:19,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",111 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,14:30,QUEENS,11357,40.779663,-73.80284,"(40.779663, -73.80284)",,,160-12 20 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4465631,Sedan,,,, +10/06/2021,9:35,BROOKLYN,11214,40.598522,-73.98657,"(40.598522, -73.98657)",85 STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464677,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,22:11,,,40.69149,-73.92557,"(40.69149, -73.92557)",GREENE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4464907,Taxi,Sedan,,, +10/08/2021,16:05,,,40.732822,-73.8684,"(40.732822, -73.8684)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465403,Sedan,Sedan,,, +10/06/2021,12:50,MANHATTAN,10011,40.7391,-74.001015,"(40.7391, -74.001015)",,,244 WEST 14 STREET,1,0,0,0,0,0,1,0,Outside Car Distraction,,,,,4464751,Motorcycle,,,, +10/07/2021,16:20,BROOKLYN,11218,40.64545,-73.97311,"(40.64545, -73.97311)",CHURCH AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4465726,Box Truck,Sedan,,, +10/08/2021,7:30,BRONX,10472,40.828224,-73.87624,"(40.828224, -73.87624)",,,1163 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465205,Bus,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,8:00,,,40.874992,-73.81846,"(40.874992, -73.81846)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4465337,Station Wagon/Sport Utility Vehicle,Bus,,, +10/08/2021,22:30,,,40.685795,-73.911644,"(40.685795, -73.911644)",SCHAEFER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465444,Sedan,,,, +10/06/2021,18:15,BROOKLYN,11249,40.7133,-73.96742,"(40.7133, -73.96742)",SOUTH 4 STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464914,Sedan,,,, +10/06/2021,17:30,,,40.57997,-73.97466,"(40.57997, -73.97466)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4464799,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,19:23,QUEENS,11103,40.76007,-73.90928,"(40.76007, -73.90928)",,,30-24 48 STREET,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4464906,E-Bike,,,, +10/05/2021,12:43,,,40.69782,-73.927826,"(40.69782, -73.927826)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465177,Van,Box Truck,,, +10/06/2021,8:04,BROOKLYN,11207,40.672234,-73.88471,"(40.672234, -73.88471)",BELMONT AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4465062,Box Truck,Sedan,,, +10/06/2021,16:50,,,40.831074,-73.82464,"(40.831074, -73.82464)",EDISON AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464867,Pick-up Truck,,,, +10/07/2021,17:17,MANHATTAN,10025,40.79581,-73.96911,"(40.79581, -73.96911)",,,794 AMSTERDAM AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465072,Bike,Bike,,, +10/07/2021,13:40,MANHATTAN,10001,40.748684,-73.98915,"(40.748684, -73.98915)",,,100 WEST 32 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465754,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/06/2021,2:57,,,40.736534,-73.85611,"(40.736534, -73.85611)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4464569,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,16:55,,,40.674038,-73.73026,"(40.674038, -73.73026)",MERRICK BOULEVARD,243 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4465097,Pick-up Truck,Sedan,Pick-up Truck,, +10/08/2021,20:14,BRONX,10461,40.85088,-73.851814,"(40.85088, -73.851814)",,,1820 WILLIAMSBRIDGE ROAD,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465477,Sedan,Bike,,, +10/07/2021,16:37,,,40.846096,-73.91919,"(40.846096, -73.91919)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4465194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,13:00,,,40.692883,-73.95678,"(40.692883, -73.95678)",SKILLMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,14:59,QUEENS,11422,40.65973,-73.74174,"(40.65973, -73.74174)",MAYDA ROAD,241 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465017,Sedan,Sedan,,, +10/04/2021,15:35,BRONX,10462,40.84329,-73.865425,"(40.84329, -73.865425)",,,1664 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4465342,Sedan,,,, +10/06/2021,21:57,BROOKLYN,11218,40.639297,-73.98409,"(40.639297, -73.98409)",14 AVENUE,39 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465144,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,14:20,MANHATTAN,10027,40.809547,-73.94183,"(40.809547, -73.94183)",,,12 WEST 129 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4466044,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,12:45,,,40.73775,-73.768394,"(40.73775, -73.768394)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4465375,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,13:20,QUEENS,11421,40.692516,-73.85911,"(40.692516, -73.85911)",85 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465512,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,20:57,BRONX,10451,40.82461,-73.910484,"(40.82461, -73.910484)",,,481 EAST 163 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465701,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,10:01,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4465232,Sedan,Sedan,Sedan,Sedan, +10/08/2021,17:08,QUEENS,11362,40.762386,-73.742935,"(40.762386, -73.742935)",DOUGLASTON PARKWAY,RUSHMORE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4465392,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,12:30,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465536,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,17:30,QUEENS,11101,40.73376,-73.93743,"(40.73376, -73.93743)",REVIEW AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465364,Sedan,,,, +10/07/2021,16:17,MANHATTAN,10002,,,,,,57 MARKET STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465718,Sedan,,,, +10/07/2021,14:50,MANHATTAN,10001,40.751656,-73.99014,"(40.751656, -73.99014)",WEST 35 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465757,Taxi,Box Truck,,, +10/02/2021,16:37,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465420,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,10:40,BROOKLYN,11225,40.662674,-73.94562,"(40.662674, -73.94562)",LEFFERTS AVENUE,BROOKLYN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465520,Sedan,,,, +10/03/2021,2:40,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465626,Sedan,Sedan,,, +10/08/2021,10:00,BROOKLYN,11215,40.67346,-73.97942,"(40.67346, -73.97942)",GARFIELD PLACE,6 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465955,Sedan,,,, +08/15/2021,19:20,,,40.887592,-73.8572,"(40.887592, -73.8572)",BARNES AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466069,Bike,,,, +10/06/2021,10:00,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466002,Taxi,Flat Bed,,, +10/07/2021,18:25,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465129,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/20/2021,9:30,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465246,Van,Van,,, +10/06/2021,20:20,,,40.837673,-73.91922,"(40.837673, -73.91922)",GERARD AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4465679,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,19:00,QUEENS,11432,40.708694,-73.80362,"(40.708694, -73.80362)",,,87-16 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465458,Sedan,Sedan,,, +10/08/2021,8:30,,,40.736874,-73.844955,"(40.736874, -73.844955)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,20:54,,,40.843906,-73.92413,"(40.843906, -73.92413)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465347,Sedan,Sedan,,, +10/08/2021,8:05,,,40.70778,-73.79341,"(40.70778, -73.79341)",168 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4465264,Sedan,Pick-up Truck,,, +10/08/2021,10:13,,,40.671787,-73.95311,"(40.671787, -73.95311)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4465800,Sedan,Sedan,Sedan,Sedan, +10/07/2021,6:40,,,40.740364,-73.89972,"(40.740364, -73.89972)",65 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464963,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/06/2021,7:09,STATEN ISLAND,10301,40.646572,-74.08909,"(40.646572, -74.08909)",,,476 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464734,Sedan,Sedan,,, +10/06/2021,13:40,QUEENS,11432,40.713985,-73.791214,"(40.713985, -73.791214)",,,172-14 HENLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4464739,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,16:40,,,40.838017,-73.90452,"(40.838017, -73.90452)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464933,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,10:08,BROOKLYN,11228,40.62853,-74.016785,"(40.62853, -74.016785)",,,7215 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465094,Sedan,,,, +10/06/2021,15:30,MANHATTAN,10036,40.759197,-73.98463,"(40.759197, -73.98463)",7 AVENUE,WEST 47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464755,Sedan,Sedan,,, +10/08/2021,12:18,,,40.70694,-73.91774,"(40.70694, -73.91774)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465857,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,9:46,QUEENS,11106,40.763874,-73.92251,"(40.763874, -73.92251)",,,32-10 31 AVENUE,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4464957,Pick-up Truck,Bike,,, +10/08/2021,8:45,,,,,,SHELL ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465665,Sedan,Sedan,,, +10/07/2021,21:08,BROOKLYN,11212,40.66801,-73.91033,"(40.66801, -73.91033)",,,488 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465110,Sedan,,,, +10/06/2021,17:00,,,40.673992,-73.73508,"(40.673992, -73.73508)",LAURELTON PARKWAY,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464788,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,16:40,BROOKLYN,11234,40.61964,-73.91578,"(40.61964, -73.91578)",VETERANS AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465407,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/07/2021,8:15,,,40.746105,-73.7668,"(40.746105, -73.7668)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464978,Tractor Truck Diesel,Tractor Truck Diesel,,, +10/08/2021,16:10,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,,,,4465575,Bike,Bike,,, +10/07/2021,20:40,,,40.695995,-73.96742,"(40.695995, -73.96742)",PARK AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4465127,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,9:28,MANHATTAN,10035,40.798794,-73.93795,"(40.798794, -73.93795)",,,249 EAST 118 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4464704,Box Truck,Sedan,Sedan,Sedan, +10/06/2021,12:00,BROOKLYN,11220,40.636826,-74.011765,"(40.636826, -74.011765)",60 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465278,Sedan,Bus,,, +10/06/2021,16:40,BROOKLYN,11206,40.698364,-73.93773,"(40.698364, -73.93773)",,,874 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464934,Sedan,Pick-up Truck,,, +09/18/2021,6:00,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465209,MOPED,Bike,,, +10/07/2021,11:38,MANHATTAN,10009,40.728386,-73.9777,"(40.728386, -73.9777)",,,620 EAST 13 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4465652,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/28/2021,17:15,,,40.77353,-73.98534,"(40.77353, -73.98534)",WEST 64 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465440,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,7:58,BROOKLYN,11233,40.684032,-73.91742,"(40.684032, -73.91742)",MACDONOUGH STREET,SARATOGA AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465418,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,9:05,MANHATTAN,10026,40.802483,-73.946754,"(40.802483, -73.946754)",,,34 WEST 118 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4465793,Sedan,,,, +10/08/2021,8:11,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4465396,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/07/2021,10:00,BRONX,10456,40.82684,-73.916245,"(40.82684, -73.916245)",EAST 163 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465996,Sedan,,,, +10/07/2021,9:30,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,13:17,,,40.602295,-73.752174,"(40.602295, -73.752174)",BEACH 19 STREET,CORNAGA AVENUE,,1,0,0,0,0,0,1,0,Oversized Vehicle,,,,,4490573,Bus,,,, +12/29/2021,16:20,BRONX,10457,40.854954,-73.8934,"(40.854954, -73.8934)",,,2271 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4490564,Ambulance,,,, +10/07/2021,7:10,,,40.588215,-73.80515,"(40.588215, -73.80515)",ROCKAWAY BEACH BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,8:30,BROOKLYN,11234,40.62343,-73.91023,"(40.62343, -73.91023)",AVENUE N,EAST 72 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464995,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,10:00,,,40.814774,-73.94038,"(40.814774, -73.94038)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465236,E-Bike,Taxi,,, +10/07/2021,10:15,BROOKLYN,11230,40.626858,-73.96824,"(40.626858, -73.96824)",,,816 AVENUE I,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465651,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,9:16,MANHATTAN,10013,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,WALKER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464754,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/07/2021,11:40,BROOKLYN,11233,40.681934,-73.922554,"(40.681934, -73.922554)",RALPH AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465827,Box Truck,Sedan,,, +10/08/2021,10:30,,,40.71896,-74.00128,"(40.71896, -74.00128)",CANAL STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465716,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,18:30,BROOKLYN,11225,40.66135,-73.96122,"(40.66135, -73.96122)",,,524 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465117,Sedan,Sedan,,, +10/05/2021,23:10,,,40.640034,-73.877945,"(40.640034, -73.877945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4465663,Sedan,,,, +10/03/2021,13:45,BROOKLYN,11226,0,0,"(0.0, 0.0)",,,486 EAST 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465923,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/21/2021,23:20,BROOKLYN,11238,40.676548,-73.96354,"(40.676548, -73.96354)",WASHINGTON AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465802,Sedan,,,, +10/08/2021,8:45,STATEN ISLAND,10314,40.603844,-74.12074,"(40.603844, -74.12074)",MANOR ROAD,LINCOLN STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4465411,Sedan,Moped clas,,, +10/07/2021,15:30,,,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4465611,Sedan,Carry All,Tow Truck / Wrecker,, +10/08/2021,18:34,,,40.751328,-73.94109,"(40.751328, -73.94109)",QUEENS PLAZA NORTH,24 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465413,Sedan,,,, +10/07/2021,21:10,QUEENS,11375,40.720375,-73.855515,"(40.720375, -73.855515)",YELLOWSTONE BOULEVARD,EXETER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,8:25,BRONX,10474,40.807,-73.88343,"(40.807, -73.88343)",,,1321 VIELE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,5:05,BROOKLYN,11211,40.711166,-73.9489,"(40.711166, -73.9489)",GRAND STREET,LORIMER STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,13:30,,,40.579327,-74.097916,"(40.579327, -74.097916)",ADAMS AVENUE,HAVEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465112,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,17:00,,,40.701416,-73.99334,"(40.701416, -73.99334)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465016,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,15:00,,,40.71903,-74.00876,"(40.71903, -74.00876)",HUDSON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465379,Sedan,Sedan,,, +10/07/2021,19:10,BROOKLYN,11226,40.64519,-73.948,"(40.64519, -73.948)",BEVERLEY ROAD,EAST 31 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4465088,E-Bike,Sedan,,, +10/06/2021,7:29,BROOKLYN,11212,40.65559,-73.91187,"(40.65559, -73.91187)",,,7 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4464719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,21:03,QUEENS,11377,40.742805,-73.90428,"(40.742805, -73.90428)",60 STREET,43 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465247,Sedan,Bike,,, +12/30/2021,21:25,BROOKLYN,11225,40.663303,-73.960625,"(40.663303, -73.960625)",FRANKLIN AVENUE,EMPIRE BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4490759,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,9:25,QUEENS,11377,40.747623,-73.89658,"(40.747623, -73.89658)",69 STREET,37 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464797,Ambulance,Box Truck,,, +10/06/2021,13:08,BROOKLYN,11232,40.659355,-73.9992,"(40.659355, -73.9992)",27 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465225,Sedan,E-Bike,,, +10/06/2021,10:00,,,40.725243,-73.933914,"(40.725243, -73.933914)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464662,Sedan,Dump,,, +10/05/2021,17:39,BROOKLYN,11215,40.65946,-73.991806,"(40.65946, -73.991806)",6 AVENUE,22 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465279,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,15:50,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465216,Sedan,,,, +10/06/2021,15:30,,,40.612488,-73.89707,"(40.612488, -73.89707)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464771,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,22:36,BROOKLYN,11234,40.61242,-73.94026,"(40.61242, -73.94026)",,,3109 QUENTIN ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465406,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,18:49,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",PROSPECT EXPRESSWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465146,Sedan,Pick-up Truck,,, +10/08/2021,23:12,,,40.687866,-73.96879,"(40.687866, -73.96879)",VANDERBILT AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465450,Sedan,E-Scooter,,, +12/23/2021,15:04,,,40.869522,-73.8899,"(40.869522, -73.8899)",EAST 198 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4490898,Sedan,,,, +10/06/2021,12:00,,,40.60675,-74.12098,"(40.60675, -74.12098)",,,778 MANOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,11:05,MANHATTAN,10009,40.72302,-73.97998,"(40.72302, -73.97998)",,,641 EAST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465616,Sedan,,,, +10/02/2021,0:00,BRONX,10469,40.860855,-73.84145,"(40.860855, -73.84145)",,,1558 WARING AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4465332,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/06/2021,16:45,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4464760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,7:50,QUEENS,11103,40.768658,-73.90979,"(40.768658, -73.90979)",,,41-08 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4465300,Sedan,Flat Bed,,, +10/07/2021,19:10,BROOKLYN,11235,40.58689,-73.94319,"(40.58689, -73.94319)",EAST 26 STREET,VOORHIES AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4465169,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/07/2021,15:25,,,,,,OCEANIA STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,12:15,,,40.833397,-73.93538,"(40.833397, -73.93538)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4466037,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,9:20,BROOKLYN,11216,40.68218,-73.94659,"(40.68218, -73.94659)",MARCY AVENUE,HALSEY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465770,Sedan,,,, +10/07/2021,9:00,MANHATTAN,10019,40.77146,-73.994354,"(40.77146, -73.994354)",WEST 57 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464979,Sedan,Motorcycle,,, +10/08/2021,6:50,BROOKLYN,11228,40.618973,-74.00523,"(40.618973, -74.00523)",14 AVENUE,BAY RIDGE PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465600,Sedan,,,, +10/07/2021,17:45,BROOKLYN,11215,40.676147,-73.98391,"(40.676147, -73.98391)",4 AVENUE,CARROLL STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4465184,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/08/2021,19:30,QUEENS,11369,40.76052,-73.87379,"(40.76052, -73.87379)",31 AVENUE,95 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465374,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,19:05,,,40.905018,-73.88631,"(40.905018, -73.88631)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464835,Sedan,Sedan,,, +10/07/2021,10:25,BROOKLYN,11209,40.625046,-74.02446,"(40.625046, -74.02446)",5 AVENUE,81 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464949,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,22:30,BROOKLYN,11203,40.64638,-73.9288,"(40.64638, -73.9288)",BEVERLEY ROAD,EAST 51 STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unsafe Speed,,,,4465534,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,17:11,,,,,,33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465700,Sedan,Ambulance,,, +10/08/2021,21:38,,,40.6952,-73.92844,"(40.6952, -73.92844)",DE KALB AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465443,Sedan,Sedan,,, +10/06/2021,18:50,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4464990,Station Wagon/Sport Utility Vehicle,Bike,,, +12/24/2021,9:18,BRONX,10475,40.87609,-73.833435,"(40.87609, -73.833435)",,,140 DONIZETTI PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491449,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,21:30,,,40.815205,-73.947495,"(40.815205, -73.947495)",8 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465240,Sedan,,,, +10/07/2021,10:00,BROOKLYN,11230,40.610046,-73.97325,"(40.610046, -73.97325)",,,1760 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464970,Pick-up Truck,,,, +12/30/2021,23:38,,,,,,PELHAM PARKWAY,NEW ENGLAND THRUWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491063,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,17:19,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4464878,Sedan,Bus,,, +09/23/2021,17:13,BROOKLYN,11218,40.6572,-73.97402,"(40.6572, -73.97402)",,,106 PROSPECT PARK SOUTHWEST,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465545,Box Truck,Sedan,,, +10/07/2021,17:10,BRONX,10469,40.881397,-73.85427,"(40.881397, -73.85427)",,,3816 PAULDING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465039,Sedan,Ambulance,,, +10/07/2021,15:09,,,40.68916,-73.99263,"(40.68916, -73.99263)",PACIFIC STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465105,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,13:45,BROOKLYN,11219,40.63188,-73.9954,"(40.63188, -73.9954)",NEW UTRECHT AVENUE,13 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465738,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,22:40,,,40.74833,-73.896095,"(40.74833, -73.896095)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465253,Sedan,Sedan,,, +10/06/2021,16:15,STATEN ISLAND,10305,40.601204,-74.06509,"(40.601204, -74.06509)",NARROWS ROAD SOUTH,LILY POND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464825,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,16:07,BROOKLYN,11218,40.636707,-73.97286,"(40.636707, -73.97286)",,,488 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4465655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/07/2021,17:35,BRONX,10462,40.854263,-73.869385,"(40.854263, -73.869385)",BRONX PARK EAST,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465211,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,6:30,BROOKLYN,11207,40.66636,-73.882744,"(40.66636, -73.882744)",,,754 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465055,Station Wagon/Sport Utility Vehicle,Dump,,, +10/08/2021,1:31,,,40.62501,-74.16144,"(40.62501, -74.16144)",AMITY PLACE,WILCOX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465196,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,8:50,MANHATTAN,10035,40.80538,-73.93458,"(40.80538, -73.93458)",,,2345 3 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465285,,,,, +10/06/2021,17:20,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,9:11,QUEENS,11368,40.74341,-73.85152,"(40.74341, -73.85152)",,,53-02 111 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465401,Sedan,Sedan,,, +10/06/2021,4:30,,,40.7429,-73.89659,"(40.7429, -73.89659)",68 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464600,Ambulance,,,, +10/07/2021,17:10,BROOKLYN,11207,40.6757,-73.89729,"(40.6757, -73.89729)",,,2630 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4465073,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,17:13,BROOKLYN,11204,40.62977,-73.97925,"(40.62977, -73.97925)",,,4612 18 AVENUE,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4465656,Sedan,Sedan,,, +10/07/2021,7:55,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4465152,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/06/2021,12:10,BRONX,10452,40.834503,-73.93037,"(40.834503, -73.93037)",WEST 165 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465343,Sedan,,,, +10/03/2021,0:00,QUEENS,11434,40.67986,-73.7883,"(40.67986, -73.7883)",119 AVENUE,154 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465937,Sedan,,,, +10/06/2021,10:08,,,40.738754,-74.0055,"(40.738754, -74.0055)",HORATIO STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464747,Sedan,Sedan,,, +10/08/2021,15:43,QUEENS,11364,40.749485,-73.7756,"(40.749485, -73.7756)",53 AVENUE,203 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:19,,,40.64479,-74.01433,"(40.64479, -74.01433)",53 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465268,Sedan,,,, +10/06/2021,12:00,BRONX,10452,40.838715,-73.91998,"(40.838715, -73.91998)",WEST CLARKE PLACE,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464853,Sedan,,,, +10/08/2021,19:45,,,40.71582,-73.80799,"(40.71582, -73.80799)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4465456,Sedan,Sedan,,, +10/06/2021,20:13,QUEENS,11430,,,,VANWYCK EXPRESSWAY,BELT PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465136,Sedan,Tractor Truck Diesel,,, +10/07/2021,21:40,QUEENS,11422,40.65912,-73.72667,"(40.65912, -73.72667)",,,137-16 FRANKTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4465102,Pick-up Truck,Pick-up Truck,Pick-up Truck,, +10/07/2021,18:00,QUEENS,11429,40.71186,-73.73554,"(40.71186, -73.73554)",104 AVENUE,219 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465021,Sedan,Sedan,,, +10/08/2021,8:00,QUEENS,11422,40.65293,-73.73205,"(40.65293, -73.73205)",149 AVENUE,257 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465438,Sedan,,,, +10/08/2021,0:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465886,Station Wagon/Sport Utility Vehicle,UHAUL VAN,,, +10/08/2021,22:50,QUEENS,11433,40.69915,-73.78025,"(40.69915, -73.78025)",175 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465957,Sedan,Sedan,,, +10/08/2021,11:58,,,40.69078,-73.72728,"(40.69078, -73.72728)",LINDEN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465311,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,1:30,,,40.69854,-73.94116,"(40.69854, -73.94116)",PARK AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4465780,Van,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,7:00,BRONX,10473,40.82153,-73.87863,"(40.82153, -73.87863)",,,1520 STORY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4465221,Sedan,,,, +06/01/2021,17:06,STATEN ISLAND,10309,40.516457,-74.196884,"(40.516457, -74.196884)",,,392 SEGUINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465328,Sedan,,,, +10/08/2021,8:00,MANHATTAN,10031,40.825756,-73.95094,"(40.825756, -73.95094)",WEST 144 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465475,Sedan,Garbage or Refuse,,, +10/08/2021,13:00,STATEN ISLAND,10301,40.638214,-74.07589,"(40.638214, -74.07589)",,,155 BAY STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4465690,Sedan,E-Bike,,, +10/07/2021,18:30,,,40.63679,-74.154144,"(40.63679, -74.154144)",,,2812 RICHMOND TERRACE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465179,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/08/2021,18:15,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4465865,Sedan,Sedan,Sedan,, +10/07/2021,13:35,BRONX,10458,40.861942,-73.89373,"(40.861942, -73.89373)",EAST FORDHAM ROAD,ELM PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4465201,Sedan,,,, +10/08/2021,10:00,BROOKLYN,11220,40.639893,-74.00624,"(40.639893, -74.00624)",,,770 53 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465386,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/08/2021,16:30,QUEENS,11369,40.765747,-73.86409,"(40.765747, -73.86409)",DITMARS BOULEVARD,27 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465369,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,18:41,BROOKLYN,11210,40.619083,-73.950264,"(40.619083, -73.950264)",AVENUE M,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465787,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,4:25,,,40.71355,-73.73667,"(40.71355, -73.73667)",HEMPSTEAD AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4464862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,17:43,,,40.813255,-73.89804,"(40.813255, -73.89804)",,,712 BRUCKNER BOULEVARD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465448,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/06/2021,10:00,MANHATTAN,10013,40.725395,-74.00585,"(40.725395, -74.00585)",,,131 VARICK STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465157,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,19:40,BROOKLYN,11217,40.683125,-73.98744,"(40.683125, -73.98744)",BOND STREET,BALTIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465431,Sedan,Sedan,,, +10/07/2021,0:56,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4464923,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Taxi +10/06/2021,8:25,,,40.68871,-73.95499,"(40.68871, -73.95499)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465762,Sedan,Bike,,, +10/06/2021,17:39,BROOKLYN,11233,40.67725,-73.92754,"(40.67725, -73.92754)",ROCHESTER AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465030,Bike,,,, +10/08/2021,0:00,BROOKLYN,11226,40.65008,-73.96101,"(40.65008, -73.96101)",OCEAN AVENUE,CHURCH AVENUE,,1,0,1,0,0,0,0,0,,,,,,4465643,,,,, +10/05/2021,13:00,QUEENS,11364,40.731777,-73.77012,"(40.731777, -73.77012)",FRANCIS LEWIS BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465461,Sedan,Sedan,,, +10/06/2021,21:00,BRONX,10460,40.843296,-73.88685,"(40.843296, -73.88685)",EAST TREMONT AVENUE,MARMION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464841,Sedan,,,, +10/07/2021,16:25,BRONX,10455,40.81755,-73.90343,"(40.81755, -73.90343)",,,805 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465317,Sedan,,,, +10/08/2021,9:00,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,CONNER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465835,Sedan,Sedan,,, +10/08/2021,12:51,,,40.71958,-73.83978,"(40.71958, -73.83978)",ASCAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4465594,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/08/2021,13:30,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,ADAMS STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4465354,Sedan,,,, +10/06/2021,18:00,,,40.65971,-73.76364,"(40.65971, -73.76364)",147 AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464790,Sedan,Sedan,,, +10/07/2021,16:00,QUEENS,11361,40.765087,-73.782875,"(40.765087, -73.782875)",36 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465066,Sedan,Sedan,,, +10/07/2021,15:47,,,40.626713,-73.891655,"(40.626713, -73.891655)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465080,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/02/2021,15:15,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465971,Sedan,Van,,, +10/08/2021,14:30,QUEENS,11358,40.7555,-73.792725,"(40.7555, -73.792725)",UTOPIA PARKWAY,45 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,15:30,QUEENS,11417,40.680923,-73.83544,"(40.680923, -73.83544)",105 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466019,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,18:40,MANHATTAN,10011,40.738686,-73.99588,"(40.738686, -73.99588)",AVENUE OF THE AMERICAS,WEST 16 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465713,Taxi,Motorcycle,,, +10/03/2021,3:14,BROOKLYN,11236,40.64503,-73.91998,"(40.64503, -73.91998)",RALPH AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,23:05,,,40.653862,-74.008286,"(40.653862, -74.008286)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464942,Sedan,Sedan,,, +10/06/2021,0:00,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,MORNINGSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465009,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,17:57,BRONX,10461,40.851963,-73.83557,"(40.851963, -73.83557)",HUTCHINSON RIVER PARKWAY,WILKINSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4464872,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/08/2021,6:00,,,40.704544,-73.727234,"(40.704544, -73.727234)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4465164,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/29/2021,3:00,,,,,,MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465296,Sedan,,,, +10/07/2021,19:30,QUEENS,11420,40.667027,-73.81326,"(40.667027, -73.81326)",NORTH CONDUIT AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466008,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,21:50,,,40.815933,-73.90992,"(40.815933, -73.90992)",CAULDWELL AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465557,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,16:50,QUEENS,11430,,,,BELT PARKWAY,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465355,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,22:51,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4464908,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,9:10,BROOKLYN,11206,40.703575,-73.93282,"(40.703575, -73.93282)",BOGART STREET,COOK STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465233,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,20:04,BRONX,10456,40.83147,-73.90566,"(40.83147, -73.90566)",,,3531 3 AVENUE,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4465710,Motorbike,Moped,,, +10/07/2021,12:37,BROOKLYN,11238,40.67443,-73.96694,"(40.67443, -73.96694)",SAINT JOHNS PLACE,UNDERHILL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465803,Sedan,,,, +10/07/2021,10:55,BRONX,10458,40.868004,-73.88425,"(40.868004, -73.88425)",DECATUR AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4465481,Sedan,,,, +10/08/2021,18:29,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465586,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,20:25,STATEN ISLAND,10314,40.611427,-74.116844,"(40.611427, -74.116844)",REON AVENUE,SLOSSON AVENUE,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465109,Sedan,Sedan,,, +10/08/2021,2:47,BROOKLYN,11222,40.72042,-73.94128,"(40.72042, -73.94128)",,,95 HERBERT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465898,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,8:00,BROOKLYN,11219,40.631805,-73.988304,"(40.631805, -73.988304)",50 STREET,15 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465727,E-Bike,,,, +10/07/2021,17:45,BRONX,10467,40.88078,-73.88347,"(40.88078, -73.88347)",EAST 208 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465289,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,15:00,,,40.688408,-73.78236,"(40.688408, -73.78236)",166 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465941,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,10:52,BROOKLYN,11207,40.67274,-73.899,"(40.67274, -73.899)",GLENMORE AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465044,Station Wagon/Sport Utility Vehicle,3-Door,,, +10/02/2021,5:45,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",ROCKAWAY BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4465447,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,10:11,BROOKLYN,11232,40.652946,-74.002174,"(40.652946, -74.002174)",5 AVENUE,36 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465228,Sedan,,,, +10/06/2021,21:20,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAND STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465139,Moped,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,13:12,BROOKLYN,11211,40.70801,-73.95673,"(40.70801, -73.95673)",BROADWAY,RODNEY STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464915,Bus,E-Bike,,, +10/08/2021,14:40,QUEENS,11004,40.751736,-73.72102,"(40.751736, -73.72102)",,,71-02 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465397,Sedan,Sedan,,, +10/07/2021,19:50,,,40.70787,-73.95759,"(40.70787, -73.95759)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465130,Motorbike,Sedan,,, +10/06/2021,19:00,BROOKLYN,11207,40.669018,-73.89766,"(40.669018, -73.89766)",,,575 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465048,Sedan,Sedan,,, +10/06/2021,0:09,BROOKLYN,11226,40.65177,-73.95597,"(40.65177, -73.95597)",,,2150 BEDFORD AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4464579,E-Bike,Sedan,,, +10/07/2021,18:30,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",FRANCIS LEWIS BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465098,Open Body,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,14:45,,,40.88415,-73.82607,"(40.88415, -73.82607)",CONNER STREET,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465843,Sedan,Pick-up Truck,,, +10/07/2021,22:07,QUEENS,11435,40.690536,-73.807335,"(40.690536, -73.807335)",,,105-56 REMINGTON STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465339,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,11:30,BROOKLYN,11220,40.64936,-74.01284,"(40.64936, -74.01284)",47 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,17:20,BROOKLYN,11232,40.66047,-73.998024,"(40.66047, -73.998024)",4 AVENUE,25 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465265,Sedan,E-Bike,,, +10/07/2021,16:40,QUEENS,11362,40.75576,-73.73939,"(40.75576, -73.73939)",DOUGLASTON PARKWAY,61 AVENUE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4465067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,11:45,,,40.839207,-73.82537,"(40.839207, -73.82537)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464822,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,18:00,QUEENS,11416,40.681046,-73.849304,"(40.681046, -73.849304)",90 STREET,103 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465507,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,9:00,QUEENS,,40.72013,-73.79038,"(40.72013, -73.79038)",GRAND CENTRAL PARKWAY,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466046,Taxi,Sedan,,, +10/07/2021,8:45,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4464964,Sedan,Sedan,,, +10/06/2021,13:10,BROOKLYN,11226,40.643425,-73.96581,"(40.643425, -73.96581)",,,242 RUGBY ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4464740,Sedan,,,, +10/08/2021,17:30,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465514,Sedan,PK,,, +10/08/2021,9:00,MANHATTAN,10024,40.788273,-73.97239,"(40.788273, -73.97239)",,,136 WEST 88 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465307,Station Wagon/Sport Utility Vehicle,Unk,,, +10/06/2021,6:10,,,40.755745,-73.83076,"(40.755745, -73.83076)",FRAME PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4465632,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,13:50,MANHATTAN,10013,40.72012,-74.00293,"(40.72012, -74.00293)",,,324 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465324,Sedan,Sedan,,, +10/07/2021,5:00,BROOKLYN,11203,40.642254,-73.92742,"(40.642254, -73.92742)",AVENUE D,EAST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465537,Sedan,Sedan,,, +10/08/2021,9:15,QUEENS,11373,40.734673,-73.87435,"(40.734673, -73.87435)",QUEENS BOULEVARD,HOFFMAN DRIVE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4465260,Sedan,Pick-up Truck,,, +10/08/2021,0:50,,,40.684338,-73.914764,"(40.684338, -73.914764)",BOYLAND STREET,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4465423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/07/2021,9:51,BRONX,10457,40.849106,-73.89495,"(40.849106, -73.89495)",EAST 179 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4464959,LIMO,Pick-up Truck,,, +10/08/2021,15:08,QUEENS,11101,40.73572,-73.93677,"(40.73572, -73.93677)",VANDAM STREET,STARR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465365,Taxi,,,, +10/07/2021,16:50,BROOKLYN,11205,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,Unspecified,,4465758,Sedan,Sedan,Sedan,Sedan, +10/08/2021,19:30,BROOKLYN,11226,40.643303,-73.9478,"(40.643303, -73.9478)",CLARENDON ROAD,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465542,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,8:10,,,40.66606,-73.95863,"(40.66606, -73.95863)",MONTGOMERY STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4465521,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,20:25,,,40.70403,-73.81711,"(40.70403, -73.81711)",HILLSIDE AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465382,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,19:00,BROOKLYN,11206,40.708782,-73.94344,"(40.708782, -73.94344)",SCHOLES STREET,GRAHAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466070,Motorcycle,,,, +09/17/2021,8:59,BRONX,10460,40.84059,-73.86637,"(40.84059, -73.86637)",EAST TREMONT AVENUE,THIERIOT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465208,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,7:00,BROOKLYN,11236,40.633125,-73.915695,"(40.633125, -73.915695)",,,929 EAST 76 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465084,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,0:55,MANHATTAN,10016,40.748245,-73.976295,"(40.748245, -73.976295)",EAST 38 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4465495,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,19:17,BROOKLYN,11233,40.6771,-73.92479,"(40.6771, -73.92479)",ATLANTIC AVENUE,BUFFALO AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465022,Sedan,,,, +10/08/2021,14:15,QUEENS,11422,40.67416,-73.72756,"(40.67416, -73.72756)",MERRICK BOULEVARD,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465321,Sedan,Pick-up Truck,,, +10/06/2021,15:05,QUEENS,11691,40.59272,-73.78338,"(40.59272, -73.78338)",ROCKAWAY BEACH BOULEVARD,BEACH 53 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4464877,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,14:35,BROOKLYN,11213,40.67312,-73.94463,"(40.67312, -73.94463)",BROOKLYN AVENUE,PARK PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465781,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/05/2021,9:55,MANHATTAN,10010,40.7441,-73.98977,"(40.7441, -73.98977)",,,30 WEST 26 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4465678,Sedan,,,, +10/07/2021,16:30,QUEENS,11365,40.739548,-73.78608,"(40.739548, -73.78608)",,,61-26 188 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465457,Sedan,,,, +10/08/2021,12:20,,,40.79539,-73.97707,"(40.79539, -73.97707)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465350,Sedan,Sedan,,, +10/08/2021,4:36,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",FLATBUSH AVENUE,PACIFIC STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465176,Sedan,Motorcycle,,, +10/07/2021,5:47,BROOKLYN,11226,40.642887,-73.95454,"(40.642887, -73.95454)",BEDFORD AVENUE,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4464900,Station Wagon/Sport Utility Vehicle,Bus,,, +10/07/2021,11:26,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",FORT GREENE PLACE,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4465189,Sedan,,,, +10/05/2021,16:19,STATEN ISLAND,10301,40.639347,-74.09197,"(40.639347, -74.09197)",,,81 PENDLETON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465684,Sedan,Sedan,,, +10/08/2021,9:00,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465387,Sedan,Sedan,,, +10/05/2021,23:01,,,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465292,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/04/2021,5:10,,,40.670662,-73.94765,"(40.670662, -73.94765)",LINCOLN PLACE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465799,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,19:20,MANHATTAN,10027,40.81053,-73.96206,"(40.81053, -73.96206)",WEST 120 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465815,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,9:30,BRONX,10465,40.8262,-73.821686,"(40.8262, -73.821686)",EAST TREMONT AVENUE,RANDALL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464999,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,16:00,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464929,Sedan,,,, +10/07/2021,3:53,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4465721,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,8:30,MANHATTAN,10034,40.866985,-73.91998,"(40.866985, -73.91998)",,,153 VERMILYEA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464759,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,17:20,QUEENS,11385,40.710728,-73.91863,"(40.710728, -73.91863)",ONDERDONK AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465359,Sedan,,,, +10/08/2021,16:15,BROOKLYN,11211,40.714382,-73.93345,"(40.714382, -73.93345)",METROPOLITAN AVENUE,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465612,Sedan,E-Bike,,, +10/08/2021,9:40,,,40.75426,-73.74334,"(40.75426, -73.74334)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4465391,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan,, +10/08/2021,18:50,,,40.663284,-73.96096,"(40.663284, -73.96096)",EMPIRE BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465414,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,16:55,,,40.62557,-74.176575,"(40.62557, -74.176575)",GOETHALS ROAD NORTH,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465850,Sedan,,,, +09/23/2021,15:45,,,40.723835,-73.97357,"(40.723835, -73.97357)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465576,Station Wagon/Sport Utility Vehicle,Bus,,, +10/06/2021,15:45,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4464787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,9:00,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465485,Sedan,Box Truck,,, +12/26/2021,17:30,BRONX,10469,40.86307,-73.859695,"(40.86307, -73.859695)",MACE AVENUE,COLDEN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4491139,Sedan,Sedan,,, +10/06/2021,7:15,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464705,Sedan,Sedan,,, +10/06/2021,16:56,MANHATTAN,10022,40.759586,-73.968056,"(40.759586, -73.968056)",3 AVENUE,EAST 56 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465915,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/08/2021,7:11,,,40.61117,-73.97702,"(40.61117, -73.97702)",65 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4465601,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,10:30,STATEN ISLAND,10306,40.564762,-74.10083,"(40.564762, -74.10083)",,,44 ROMA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4465113,Flat Bed,,,, +10/06/2021,0:09,,,40.69595,-73.93764,"(40.69595, -73.93764)",VERNON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464935,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,20:50,,,40.59922,-73.97376,"(40.59922, -73.97376)",LAKE STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465603,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,17:35,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",MORGAN AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465950,Sedan,,,, +10/04/2021,14:10,QUEENS,11368,40.74869,-73.85772,"(40.74869, -73.85772)",108 STREET,43 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465248,Sedan,,,, +12/30/2021,15:30,BROOKLYN,11249,40.71772,-73.96202,"(40.71772, -73.96202)",,,76 NORTH 4 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490990,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,18:51,,,40.747242,-73.88766,"(40.747242, -73.88766)",ROOSEVELT AVENUE,78 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4465161,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,14:42,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465659,Sedan,Sedan,,, +10/07/2021,11:00,BRONX,10468,40.86923,-73.89604,"(40.86923, -73.89604)",JEROME AVENUE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4465243,Tractor Truck Diesel,,,, +10/06/2021,23:12,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",BAILEY AVENUE,WEST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465092,Taxi,,,, +10/07/2021,13:50,,,40.67452,-73.80321,"(40.67452, -73.80321)",135 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4465143,Bus,Sedan,,, +12/30/2021,0:05,BROOKLYN,11207,40.665993,-73.8858,"(40.665993, -73.8858)",LIVONIA AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491282,Sedan,Sedan,,, +06/10/2021,13:15,,,,,,34 avenue,50,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426559,Sedan,Bike,,, +10/06/2021,6:00,QUEENS,11373,40.746902,-73.871956,"(40.746902, -73.871956)",94 STREET,LAMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464761,Sedan,Sedan,,, +10/06/2021,17:25,QUEENS,11377,40.74841,-73.89764,"(40.74841, -73.89764)",68 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464791,Sedan,,,, +10/07/2021,12:00,QUEENS,11435,40.69474,-73.80625,"(40.69474, -73.80625)",LIVERPOOL STREET,LIBERTY AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4465010,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/03/2021,3:35,BROOKLYN,11210,40.637405,-73.93949,"(40.637405, -73.93949)",,,814 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,11:35,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",LINDEN BOULEVARD,NEWBURG STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464975,Sedan,,,, +10/08/2021,18:45,,,40.75045,-73.9873,"(40.75045, -73.9873)",AVENUE OF THE AMERICAS,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465753,Sedan,Moped,,, +12/29/2021,16:09,BRONX,10452,40.840786,-73.9232,"(40.840786, -73.9232)",NELSON AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490621,Sedan,,,, +12/30/2021,0:00,STATEN ISLAND,10306,40.563663,-74.13252,"(40.563663, -74.13252)",,,3161 AMBOY ROAD,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4490665,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,20:00,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4465275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,7:30,,,,,,UTOPIA PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464703,Sedan,Pick-up Truck,,, +10/07/2021,17:01,BROOKLYN,11212,40.654457,-73.90878,"(40.654457, -73.90878)",BRISTOL STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465419,Sedan,Sedan,,, +10/06/2021,15:05,MANHATTAN,10035,40.80573,-73.93855,"(40.80573, -73.93855)",EAST 126 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465204,Bus,Sedan,,, +10/08/2021,15:12,BROOKLYN,11226,40.64624,-73.958084,"(40.64624, -73.958084)",,,1017 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465625,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,20:00,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",PELHAM PARKWAY,BRUCKNER EXPRESSWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465336,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,17:08,BROOKLYN,11221,40.68995,-73.93124,"(40.68995, -73.93124)",,,719 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465823,Station Wagon/Sport Utility Vehicle,Moped,,, +10/06/2021,14:37,BROOKLYN,11238,40.684544,-73.96509,"(40.684544, -73.96509)",WASHINGTON AVENUE,GATES AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4465297,Pick-up Truck,,,, +10/07/2021,0:00,,,40.59145,-73.97652,"(40.59145, -73.97652)",86 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464904,Sedan,,,, +10/06/2021,8:30,BROOKLYN,11229,40.59442,-73.95463,"(40.59442, -73.95463)",AVENUE W,EAST 16 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465172,Bus,Sedan,,, +10/08/2021,10:55,QUEENS,11106,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,36 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465304,Sedan,Sedan,,, +10/08/2021,11:18,STATEN ISLAND,10304,40.59241,-74.109116,"(40.59241, -74.109116)",FOUR CORNERS ROAD,COLLEGE PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4465410,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,8:45,BROOKLYN,11206,40.698643,-73.94697,"(40.698643, -73.94697)",TOMPKINS AVENUE,ELLERY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465775,Moped,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,18:19,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",EAST 180 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4465193,Sedan,,,, +10/08/2021,14:30,QUEENS,11104,40.743263,-73.91964,"(40.743263, -73.91964)",45 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465488,Sedan,Dump,,, +10/05/2021,12:19,QUEENS,11432,40.70898,-73.80418,"(40.70898, -73.80418)",PARSONS BOULEVARD,87 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4465378,Sedan,Sedan,Sedan,, +10/08/2021,6:15,,,40.722637,-73.95419,"(40.722637, -73.95419)",NASSAU AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466003,Tractor Truck Diesel,Sedan,,, +10/06/2021,10:30,,,40.58038,-73.967606,"(40.58038, -73.967606)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464728,Station Wagon/Sport Utility Vehicle,Lift Boom,,, +10/08/2021,8:45,,,,,,SHELL ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465664,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,10:10,BROOKLYN,11231,40.67474,-73.99777,"(40.67474, -73.99777)",9 STREET,SMITH STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426638,Sedan,,,, +10/07/2021,15:53,BROOKLYN,11229,40.60677,-73.94892,"(40.60677, -73.94892)",EAST 24 STREET,AVENUE R,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4465170,Sedan,Sedan,Box Truck,, +10/07/2021,16:30,BROOKLYN,11214,40.597923,-73.9872,"(40.597923, -73.9872)",86 STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465599,Motorcycle,Sedan,,, +10/07/2021,16:20,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",WOODHAVEN BOULEVARD,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4465511,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,9:11,QUEENS,11434,40.66705,-73.77417,"(40.66705, -73.77417)",SOUTH CONDUIT AVENUE,176 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465452,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,8:40,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",101 AVENUE,WOODHAVEN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4464941,Bus,,,, +10/07/2021,21:39,QUEENS,11372,40.748962,-73.89176,"(40.748962, -73.89176)",74 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465439,Sedan,,,, +09/29/2021,18:00,BROOKLYN,11203,40.66319,-73.93727,"(40.66319, -73.93727)",LEFFERTS AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4465891,Sedan,Sedan,,, +10/06/2021,7:50,,,40.606445,-74.18011,"(40.606445, -74.18011)",,,1112 SOUTH AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4464646,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,9:25,,,,,,AVENUE L,EAST 16 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465644,Sedan,Sedan,,, +12/17/2021,5:00,BROOKLYN,11232,40.65092,-74.00333,"(40.65092, -74.00333)",,,517 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4490875,Bus,,,, +10/07/2021,9:00,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",NORTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464973,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/23/2021,15:33,BRONX,10462,40.82916,-73.844086,"(40.82916, -73.844086)",ZEREGA AVENUE,CHATTERTON AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4465220,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/07/2021,9:50,BROOKLYN,11223,40.609253,-73.96905,"(40.609253, -73.96905)",AVENUE P,EAST 5 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465147,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,22:00,QUEENS,11433,40.70269,-73.78145,"(40.70269, -73.78145)",,,173-61 106 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4465280,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,11:54,BROOKLYN,11234,40.611603,-73.91971,"(40.611603, -73.91971)",AVENUE U,EAST 55 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4465405,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/03/2021,11:00,BROOKLYN,11217,0,0,"(0.0, 0.0)",,,500 WARREN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465432,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,6:30,BROOKLYN,11238,40.681465,-73.970535,"(40.681465, -73.970535)",,,487 CARLTON AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4465451,Sedan,Bike,,, +10/07/2021,0:10,BRONX,10469,40.86774,-73.85955,"(40.86774, -73.85955)",COLDEN AVENUE,ARNOW AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4464927,,,,, +10/08/2021,14:21,BRONX,10469,40.863552,-73.85483,"(40.863552, -73.85483)",,,2524 YATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465331,Sedan,,,, +10/06/2021,0:00,QUEENS,11368,40.753056,-73.87164,"(40.753056, -73.87164)",,,35-09 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4464753,Sedan,,,, +09/10/2021,20:05,BROOKLYN,11236,40.643204,-73.90929,"(40.643204, -73.90929)",FARRAGUT ROAD,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4465931,Sedan,,,, +10/08/2021,13:26,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465867,Sedan,Sedan,,, +10/07/2021,9:00,MANHATTAN,10026,40.80123,-73.94996,"(40.80123, -73.94996)",,,41 WEST 115 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465829,Sedan,,,, +10/07/2021,16:10,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",130 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465079,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,10:18,,,40.593163,-73.9086,"(40.593163, -73.9086)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465299,Sedan,Sedan,,, +10/06/2021,13:39,,,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4465056,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,15:40,QUEENS,11432,40.71637,-73.78706,"(40.71637, -73.78706)",,,85-20 EDGERTON BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4465469,Convertible,,,, +10/03/2021,20:30,,,40.643005,-74.00533,"(40.643005, -74.00533)",49 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465284,Sedan,,,, +12/30/2021,17:00,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",126 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490842,Station Wagon/Sport Utility Vehicle,Dump,,, +10/07/2021,14:30,,,40.57397,-74.16992,"(40.57397, -74.16992)",RICHMOND AVENUE,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465197,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,12:10,QUEENS,11360,40.776665,-73.78281,"(40.776665, -73.78281)",KENNEDY STREET,26 AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4465390,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,11:00,BROOKLYN,11215,40.66792,-73.98074,"(40.66792, -73.98074)",,,298 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464836,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:00,BRONX,10456,40.820564,-73.905235,"(40.820564, -73.905235)",EAST 160 STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465316,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,18:30,,,40.74087,-73.98799,"(40.74087, -73.98799)",EAST 23 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465014,Sedan,Bus,,, +09/30/2021,13:00,BROOKLYN,11212,40.657173,-73.921074,"(40.657173, -73.921074)",EAST 93 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465533,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,16:25,BROOKLYN,11236,40.639275,-73.90746,"(40.639275, -73.90746)",EAST 88 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465569,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,8:00,BRONX,10456,40.836945,-73.91532,"(40.836945, -73.91532)",EAST CLARKE PLACE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465995,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,19:40,,,40.691914,-73.88332,"(40.691914, -73.88332)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465358,Sedan,Sedan,,, +12/26/2021,13:50,STATEN ISLAND,10301,40.61572,-74.09624,"(40.61572, -74.09624)",HOWARD AVENUE,CAMPUS ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4490943,Sedan,Sedan,,, +10/05/2021,9:30,,,40.512524,-74.2388,"(40.512524, -74.2388)",BREHAUT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465329,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,0:00,QUEENS,11692,40.589596,-73.791145,"(40.589596, -73.791145)",,,124 BEACH 62 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4465692,Sedan,Sedan,,, +10/01/2021,17:00,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465961,Sedan,Tractor Truck Diesel,,, +10/07/2021,0:00,BRONX,10469,40.87067,-73.85645,"(40.87067, -73.85645)",,,3075 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465038,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,13:30,QUEENS,11434,40.65771,-73.76757,"(40.65771, -73.76757)",149 ROAD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464863,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,12:55,BRONX,10472,40.826324,-73.88351,"(40.826324, -73.88351)",,,1127 BRONX RIVER AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,,4465202,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/07/2021,12:25,MANHATTAN,10026,40.802593,-73.95103,"(40.802593, -73.95103)",,,143 WEST 116 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465828,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,6:16,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465715,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,21:07,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Driver Inexperience,,,,4465422,Tractor Truck Diesel,Sedan,,, +10/08/2021,18:50,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Following Too Closely,Unspecified,,4465592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/06/2021,8:45,,,40.686996,-73.95685,"(40.686996, -73.95685)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4465782,Sedan,Tow Truck / Wrecker,,, +10/06/2021,17:55,QUEENS,11378,40.72382,-73.908615,"(40.72382, -73.908615)",,,56-54 59 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,22:50,BROOKLYN,11210,40.62775,-73.93462,"(40.62775, -73.93462)",EAST 43 STREET,AVENUE J,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465153,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,22:30,BROOKLYN,11215,40.675392,-73.98117,"(40.675392, -73.98117)",,,242 5 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4465972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:20,MANHATTAN,10010,40.736164,-73.97891,"(40.736164, -73.97891)",EAST 22 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465676,Cement tru,,,, +10/06/2021,0:45,,,40.76113,-73.85851,"(40.76113, -73.85851)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464750,Sedan,,,, +10/07/2021,0:00,QUEENS,11434,40.68074,-73.76963,"(40.68074, -73.76963)",127 AVENUE,174 PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465137,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,8:33,BROOKLYN,11212,40.666542,-73.91423,"(40.666542, -73.91423)",,,188 SUTTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4464718,Sedan,,,, +10/07/2021,10:44,BRONX,10473,40.813103,-73.85972,"(40.813103, -73.85972)",,,1847 PATTERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464946,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,12:44,BROOKLYN,11236,40.63949,-73.91017,"(40.63949, -73.91017)",,,724 EAST 86 STREET,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4465506,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,21:00,BROOKLYN,11221,40.69821,-73.92406,"(40.69821, -73.92406)",MYRTLE AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491120,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,11:30,,,40.68443,-73.99491,"(40.68443, -73.99491)",,,DOUGLASS STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4465224,Box Truck,Sedan,,, +10/07/2021,8:03,BROOKLYN,11234,40.616848,-73.91169,"(40.616848, -73.91169)",AVENUE U,EAST 65 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464985,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,17:00,,,40.76552,-73.98004,"(40.76552, -73.98004)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464772,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/06/2021,7:25,QUEENS,11420,40.677773,-73.809906,"(40.677773, -73.809906)",130 STREET,116 AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464879,,,,, +10/08/2021,17:15,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4465476,Van,Sedan,,, +10/08/2021,11:05,,,40.547245,-74.180244,"(40.547245, -74.180244)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4465235,Motorcycle,,,, +10/07/2021,11:40,BROOKLYN,11204,40.60897,-73.979866,"(40.60897, -73.979866)",,,1571 WEST 6 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4464969,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +10/06/2021,19:41,MANHATTAN,10013,40.719128,-74.00517,"(40.719128, -74.00517)",,,2 AVENUE OF THE AMERICAS,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4464921,Station Wagon/Sport Utility Vehicle,E-Bike,Sedan,, +10/07/2021,14:18,BROOKLYN,11219,,,,,,932 57 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4465650,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,12:18,QUEENS,11104,40.74348,-73.921486,"(40.74348, -73.921486)",43 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4465252,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,21:15,BROOKLYN,11218,40.634556,-73.973854,"(40.634556, -73.973854)",,,726 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465740,Sedan,Box Truck,,, +10/05/2021,10:00,MANHATTAN,10023,40.77221,-73.982185,"(40.77221, -73.982185)",BROADWAY,WEST 64 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465729,Taxi,Bike,,, +10/06/2021,7:58,,,,,,,,85 EAST DRIVE,1,0,1,0,0,0,0,0,,,,,,4464712,,,,, +10/06/2021,3:05,MANHATTAN,10019,40.76428,-73.97302,"(40.76428, -73.97302)",WEST 59 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4464629,Bike,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,20:38,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,2,0,0,0,0,0,2,0,Obstruction/Debris,,,,,4464805,Sedan,,,, +05/21/2021,2:38,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",PITKIN AVENUE,ROCKAWAY AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4419213,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,7:30,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4421067,Sedan,Sedan,Sedan,, +05/31/2021,14:30,,,40.720245,-73.9444,"(40.720245, -73.9444)",HUMBOLDT STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4422379,Station Wagon/Sport Utility Vehicle,Moped,,, +06/06/2021,13:45,,,,,,TILLARY STREET,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4423934,E-Scooter,,,, +05/19/2021,9:30,QUEENS,11385,40.702206,-73.89919,"(40.702206, -73.89919)",69 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4423996,,,,, +06/10/2021,6:38,MANHATTAN,10039,40.826683,-73.935394,"(40.826683, -73.935394)",WEST 153 STREET,POWELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426840,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,21:32,BROOKLYN,11204,40.630745,-73.97717,"(40.630745, -73.97717)",MC DONALD AVENUE,18 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4426821,Sedan,,,, +10/07/2021,17:40,BROOKLYN,11203,40.655397,-73.9297608,"(40.655397, -73.9297608)",LENOX ROAD,EAST 51 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465087,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/28/2021,0:30,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Driver Inattention/Distraction,,,,4426084,Sedan,Sedan,,, +06/03/2021,14:30,QUEENS,11369,40.76393,-73.87837,"(40.76393, -73.87837)",25 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426466,Sedan,,,, +06/09/2021,20:26,BROOKLYN,11229,40.60718,-73.94514,"(40.60718, -73.94514)",AVENUE R,EAST 28 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4425309,Sedan,Sedan,Sedan,, +06/11/2021,14:48,,,40.586254,-73.93608,"(40.586254, -73.93608)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4426738,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/10/2021,21:25,,,40.636086,-73.95091,"(40.636086, -73.95091)",FARRAGUT ROAD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4426326,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,17:30,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4426068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/11/2021,22:37,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",43 AVENUE,JUNCTION BOULEVARD,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4426704,Bike,Sedan,,, +06/10/2021,2:00,BROOKLYN,11207,40.66669,-73.88784,"(40.66669, -73.88784)",,,605 HENDRIX STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425431,Sedan,,,, +06/11/2021,17:45,QUEENS,11413,40.67588,-73.748535,"(40.67588, -73.748535)",222 STREET,136 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426228,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,0:05,BROOKLYN,11234,40.623978,-73.92048,"(40.623978, -73.92048)",,,5702 AVENUE L,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,Unspecified,,,4425915,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,8:55,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,20:15,MANHATTAN,10009,40.723076,-73.97649,"(40.723076, -73.97649)",EAST 7 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4426391,Sedan,Bike,,, +06/10/2021,20:03,BROOKLYN,11221,40.686363,-73.9207,"(40.686363, -73.9207)",,,64 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426493,Sedan,Sedan,,, +06/10/2021,19:40,MANHATTAN,10025,40.792095,-73.97366,"(40.792095, -73.97366)",WEST 92 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425763,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:00,BRONX,10468,40.868164,-73.900536,"(40.868164, -73.900536)",,,79 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4426067,Sedan,,,, +06/11/2021,9:00,BRONX,10470,40.904957,-73.85371,"(40.904957, -73.85371)",EAST 241 STREET,BRONX BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4426731,Sedan,Motorscooter,Sedan,, +06/10/2021,16:25,QUEENS,11372,40.75081,-73.89398,"(40.75081, -73.89398)",72 STREET,35 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425628,Sedan,,,, +06/06/2021,16:16,BROOKLYN,11216,40.68431,-73.95411,"(40.68431, -73.95411)",MADISON STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426471,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,6:51,,,,,,EAST 114 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4425957,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,18:00,,,40.645298,-74.10466,"(40.645298, -74.10466)",RICHMOND TERRACE,SNUG HARBOR ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4426564,Sedan,Sedan,,, +06/10/2021,16:20,,,40.625816,-73.99812,"(40.625816, -73.99812)",63 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425904,Sedan,,,, +06/10/2021,12:15,,,40.8287,-73.84227,"(40.8287, -73.84227)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425601,Sedan,Box Truck,,, +06/11/2021,20:14,BROOKLYN,11213,40.668495,-73.925606,"(40.668495, -73.925606)",BUFFALO AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4426535,Sedan,Taxi,,, +06/09/2021,3:24,BROOKLYN,11249,,,,KENT AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425003,Sedan,Sedan,,, +06/11/2021,5:03,,,40.659477,-73.908134,"(40.659477, -73.908134)",ROCKAWAY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426271,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,1:30,QUEENS,11372,40.75276,-73.87539,"(40.75276, -73.87539)",92 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4425994,Sedan,,,, +06/01/2021,9:58,BRONX,10457,40.84193,-73.9096,"(40.84193, -73.9096)",,,1529 MORRIS AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4426108,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,11:20,,,40.593742,-73.96085,"(40.593742, -73.96085)",AVENUE W,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425340,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,15:30,BROOKLYN,11215,40.660934,-73.983246,"(40.660934, -73.983246)",8 AVENUE,WINDSOR PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4425917,Sedan,,,, +06/10/2021,12:50,BRONX,10460,40.842625,-73.87818,"(40.842625, -73.87818)",BOSTON ROAD,EAST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425788,Sedan,Sedan,,, +06/10/2021,16:25,QUEENS,11433,,,,Guy R Brewer Boulevard,Jamaica Ave,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4425844,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/06/2021,11:25,BROOKLYN,11212,40.654137,-73.91234,"(40.654137, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4426579,Sedan,Sedan,,, +06/09/2021,16:27,,,40.761147,-73.97952,"(40.761147, -73.97952)",WEST 52 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425502,E-Scooter,,,, +06/11/2021,8:36,QUEENS,11418,40.699207,-73.823,"(40.699207, -73.823)",127 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4425962,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +06/09/2021,16:00,BRONX,10458,40.854836,-73.88319,"(40.854836, -73.88319)",,,2431 CROTONA AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4426021,Motorscooter,,,, +06/09/2021,0:30,QUEENS,11422,40.66308,-73.73377,"(40.66308, -73.73377)",,,140-27 248 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426230,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,15:55,MANHATTAN,10027,40.81632,-73.95783,"(40.81632, -73.95783)",WEST 126 STREET,WEST 129 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4426673,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,8:45,BROOKLYN,11219,40.636284,-73.98364,"(40.636284, -73.98364)",15 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4425386,Sedan,,,, +10/08/2021,17:16,QUEENS,11372,40.74848,-73.87577,"(40.74848, -73.87577)",,,90-22 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465402,Pick-up Truck,Sedan,,, +06/11/2021,21:40,,,40.753242,-73.96662,"(40.753242, -73.96662)",1 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4426184,E-Scooter,,,, +06/10/2021,10:41,,,40.69133,-73.95177,"(40.69133, -73.95177)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425574,Sedan,Sedan,,, +06/10/2021,14:00,QUEENS,11422,40.682148,-73.729614,"(40.682148, -73.729614)",237 STREET,128 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425678,Sedan,Box Truck,,, +06/10/2021,7:55,BROOKLYN,11204,40.61525,-73.97636,"(40.61525, -73.97636)",,,6006 23 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,10:00,MANHATTAN,10033,40.84501,-73.93346,"(40.84501, -73.93346)",,,501 WEST 176 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426632,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,21:50,BROOKLYN,11233,,,,Thomas S Boyland St,Atlantic Ave,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425733,Sedan,Sedan,,, +05/28/2021,20:41,BRONX,10455,40.80988,-73.90308,"(40.80988, -73.90308)",BRUCKNER BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426197,Taxi,Sedan,,, +06/09/2021,9:18,BROOKLYN,11223,40.607246,-73.96381,"(40.607246, -73.96381)",,,1715 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425125,Sedan,,,, +06/11/2021,10:05,,,40.582737,-73.95605,"(40.582737, -73.95605)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426429,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,21:01,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,WATTS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425885,Bus,Sedan,,, +06/09/2021,6:30,,,40.827423,-73.836754,"(40.827423, -73.836754)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425396,Pick-up Truck,Pick-up Truck,Tractor Truck Diesel,, +06/10/2021,9:49,STATEN ISLAND,10306,40.573727,-74.11957,"(40.573727, -74.11957)",,,165 3 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425625,Motorcycle,Sedan,,, +06/05/2021,14:00,BRONX,10465,40.827984,-73.83903,"(40.827984, -73.83903)",,,2680 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4425815,Sedan,,,, +06/11/2021,6:58,BRONX,10458,40.85487,-73.89229,"(40.85487, -73.89229)",,,507 EAST 183 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4426443,Bus,,,, +06/11/2021,17:50,QUEENS,11432,40.704826,-73.79652,"(40.704826, -73.79652)",,,163-19 JAMAICA AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4425876,Bike,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,13:05,,,40.69816,-73.92528,"(40.69816, -73.92528)",CENTRAL AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426094,Pick-up Truck,Bike,,, +06/10/2021,21:49,,,40.862534,-73.89708,"(40.862534, -73.89708)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425950,Sedan,,,, +05/31/2021,13:15,,,40.833588,-73.91498,"(40.833588, -73.91498)",GRANT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426053,Sedan,,,, +06/10/2021,10:00,QUEENS,11413,40.66343,-73.75844,"(40.66343, -73.75844)",,,220-16 145 ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425669,Sedan,,,, +05/23/2021,14:54,QUEENS,11365,40.736732,-73.80349,"(40.736732, -73.80349)",,,165-21 65 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426121,Sedan,E-Scooter,,, +06/10/2021,10:47,BROOKLYN,11249,40.716473,-73.959984,"(40.716473, -73.959984)",,,129 NORTH 4 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425549,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,6:30,,,40.735413,-73.91835,"(40.735413, -73.91835)",48 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426036,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/07/2021,13:25,BROOKLYN,11220,40.64685,-74.019264,"(40.64685, -74.019264)",54 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426744,Sedan,Tractor Truck Diesel,,, +06/09/2021,16:39,QUEENS,11102,40.7668,-73.92118,"(40.7668, -73.92118)",,,31-13 30 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426412,Pick-up Truck,,,, +06/09/2021,6:00,,,40.654636,-73.97856,"(40.654636, -73.97856)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Outside Car Distraction,Unspecified,,,4425170,Sedan,Sedan,Sedan,, +06/11/2021,13:05,BROOKLYN,11219,40.63283,-74.00516,"(40.63283, -74.00516)",60 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426829,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,14:57,BRONX,10461,40.84137,-73.826096,"(40.84137, -73.826096)",BRUCKNER BOULEVARD,CODDINGTON AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4425821,Sedan,Bike,,, +06/09/2021,17:25,BROOKLYN,11232,40.66047,-73.998024,"(40.66047, -73.998024)",4 AVENUE,25 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425290,Sedan,Box Truck,,, +06/09/2021,18:30,BRONX,10470,40.89938,-73.87102,"(40.89938, -73.87102)",,,4333 KEPLER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425972,Sedan,Sedan,,, +06/10/2021,3:15,,,40.880527,-73.901794,"(40.880527, -73.901794)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425989,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,0:00,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",CLAREMONT PARKWAY,FULTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425441,Sedan,,,, +06/10/2021,6:00,BROOKLYN,11208,40.673206,-73.86896,"(40.673206, -73.86896)",,,1328 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425939,Sedan,,,, +06/08/2021,9:00,BRONX,10458,40.865524,-73.88968,"(40.865524, -73.88968)",,,2700 MARION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426295,Sedan,Sedan,,, +06/10/2021,22:00,MANHATTAN,10022,40.762287,-73.972374,"(40.762287, -73.972374)",MADISON AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4426164,Bus,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,19:04,BROOKLYN,11209,40.621006,-74.02861,"(40.621006, -74.02861)",,,411 88 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425908,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/11/2021,20:37,BROOKLYN,11230,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,AVENUE N,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426331,E-Scooter,,,, +06/09/2021,7:00,QUEENS,11365,40.737923,-73.79033,"(40.737923, -73.79033)",183 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426145,Sedan,,,, +06/08/2021,14:34,BROOKLYN,11228,40.618023,-74.00981,"(40.618023, -74.00981)",79 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426205,Sedan,,,, +06/08/2021,6:05,,,40.69595,-73.93764,"(40.69595, -73.93764)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4426498,Bus,Dump,,, +06/11/2021,11:40,,,40.69657,-73.95844,"(40.69657, -73.95844)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426544,Sedan,Bus,,, +06/11/2021,22:20,MANHATTAN,10021,40.765263,-73.95402,"(40.765263, -73.95402)",,,525 EAST 70 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426792,Sedan,,,, +06/10/2021,14:12,,,40.840206,-73.91015,"(40.840206, -73.91015)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425773,Bus,Sedan,,, +06/10/2021,6:45,BROOKLYN,11229,40.610638,-73.956406,"(40.610638, -73.956406)",,,1724 AVENUE P,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4425977,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/09/2021,6:30,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425469,AMBULANCE,Sedan,,, +06/11/2021,23:55,BRONX,10472,40.835716,-73.8775,"(40.835716, -73.8775)",,,1460 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,20:17,,,40.715927,-73.80889,"(40.715927, -73.80889)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,9:15,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",CANAL STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426357,Sedan,Sedan,,, +06/09/2021,17:15,MANHATTAN,10003,40.734844,-73.98312,"(40.734844, -73.98312)",2 AVENUE,EAST 18 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425507,Bike,,,, +10/07/2021,23:24,,,40.663605,-73.934395,"(40.663605, -73.934395)",EMPIRE BOULEVARD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465121,Sedan,Sedan,,, +06/11/2021,11:40,,,40.584522,-73.949,"(40.584522, -73.949)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425840,Box Truck,,,, +06/06/2021,4:51,BROOKLYN,11216,40.682835,-73.94092,"(40.682835, -73.94092)",THROOP AVENUE,HALSEY STREET,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4426479,Sedan,Sedan,,, +06/10/2021,6:20,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425521,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,8:16,BROOKLYN,11220,40.64106,-74.02486,"(40.64106, -74.02486)",,,201 64 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426657,Sedan,Box Truck,,, +06/09/2021,5:55,,,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4425274,Pick-up Truck,Sedan,Sedan,, +06/11/2021,14:00,,,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426276,Sedan,Sedan,,, +06/11/2021,14:27,,,40.677982,-73.791214,"(40.677982, -73.791214)",120 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426156,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,18:30,MANHATTAN,10012,40.72179,-73.99986,"(40.72179, -73.99986)",BROADWAY,BROOME STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4426383,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,6:10,QUEENS,11354,40.7731,-73.84566,"(40.7731, -73.84566)",COLLEGE POINT BOULEVARD,28 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425853,Station Wagon/Sport Utility Vehicle,Stake or Rack,,, +06/09/2021,5:10,QUEENS,11358,40.76052,-73.7934,"(40.76052, -73.7934)",,,40-11 UTOPIA PARKWAY,1,0,0,0,0,0,1,0,Drugs (illegal),Other Vehicular,Other Vehicular,,,4425223,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,21:50,BROOKLYN,11226,40.64802,-73.952194,"(40.64802, -73.952194)",ROGERS AVENUE,ALBEMARLE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426575,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,10:45,QUEENS,11368,40.750458,-73.863,"(40.750458, -73.863)",,,39-15 103 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426456,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,12:55,QUEENS,11374,40.72844,-73.854454,"(40.72844, -73.854454)",,,99-35 66 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4490958,Sedan,Pick-up Truck,,, +06/09/2021,19:49,,,40.640163,-73.94553,"(40.640163, -73.94553)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425697,Sedan,,,, +06/10/2021,23:45,,,40.74665,-73.969124,"(40.74665, -73.969124)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425721,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,17:40,QUEENS,11414,40.667397,-73.84458,"(40.667397, -73.84458)",,,90-01 153 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425747,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,15:20,,,40.57941,-74.15452,"(40.57941, -74.15452)",,,1698 FOREST HILL ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426004,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,15:35,BROOKLYN,11201,40.698116,-73.977325,"(40.698116, -73.977325)",,,21 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425872,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,18:30,MANHATTAN,10002,40.719337,-73.985916,"(40.719337, -73.985916)",RIVINGTON STREET,SUFFOLK STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425265,Sedan,Sedan,,, +06/09/2021,15:00,BROOKLYN,11235,40.583683,-73.94455,"(40.583683, -73.94455)",,,2265 EMMONS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425224,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/13/2021,13:15,BROOKLYN,11221,40.6904,-73.92365,"(40.6904, -73.92365)",BROADWAY,GROVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,3:47,BROOKLYN,11215,40.670986,-73.984795,"(40.670986, -73.984795)",6 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425639,Sedan,Dump,,, +06/10/2021,19:12,BRONX,10472,40.830345,-73.86696,"(40.830345, -73.86696)",,,1212 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425825,Pick-up Truck,,,, +06/09/2021,6:40,,,40.68983,-73.97863,"(40.68983, -73.97863)",ASHLAND PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425285,Station Wagon/Sport Utility Vehicle,,,, +05/21/2021,11:15,,,40.815865,-73.91987,"(40.815865, -73.91987)",EAST 148 STREET,,,1,0,0,0,0,0,1,0,Pavement Defective,Unspecified,,,,4426782,Sedan,Sedan,,, +06/10/2021,19:55,,,40.738796,-73.80846,"(40.738796, -73.80846)",160 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4426178,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/09/2021,6:45,,,40.788906,-73.93765,"(40.788906, -73.93765)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Following Too Closely,Unspecified,,,4425185,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/26/2021,0:39,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Reaction to Uninvolved Vehicle,,,,4426009,Sedan,Sedan,,, +06/10/2021,1:05,,,,,,CROSS BRONX EXPRESSWAY,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4425519,Sedan,Taxi,,, +06/09/2021,18:22,BROOKLYN,11234,40.632492,-73.93415,"(40.632492, -73.93415)",TROY AVENUE,AVENUE H,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4426168,Motorcycle,,,, +06/11/2021,19:35,BROOKLYN,11233,40.672558,-73.91815,"(40.672558, -73.91815)",,,1760 PROSPECT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426280,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,23:20,BRONX,10465,40.83156,-73.822716,"(40.83156, -73.822716)",,,923 HOLLYWOOD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4425808,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,16:16,BROOKLYN,11207,40.67046,-73.88788,"(40.67046, -73.88788)",SCHENCK AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425943,Bus,,,, +06/09/2021,17:28,MANHATTAN,10029,40.794178,-73.94487,"(40.794178, -73.94487)",LEXINGTON AVENUE,EAST 109 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425372,Sedan,Sedan,,, +06/09/2021,16:21,BRONX,10457,40.84764,-73.901,"(40.84764, -73.901)",EAST TREMONT AVENUE,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4426026,Sedan,,,, +06/09/2021,15:22,BRONX,10463,40.88256,-73.91237,"(40.88256, -73.91237)",,,560 WEST 231 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426058,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,0:57,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,Unspecified,,,4464778,Sedan,ESCOOTER S,Sedan,, +06/07/2021,17:50,,,40.67043,-73.928185,"(40.67043, -73.928185)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4426503,Taxi,FIRE TRUCK,,, +06/11/2021,11:36,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426149,Sedan,Sedan,,, +06/11/2021,15:33,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",PELHAM PARKWAY,BRUCKNER EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426210,Bus,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,2:38,MANHATTAN,10002,40.720825,-73.98797,"(40.720825, -73.98797)",,,152 LUDLOW STREET,1,0,1,0,0,0,0,0,Passenger Distraction,,,,,4426314,Taxi,,,, +06/09/2021,12:37,BROOKLYN,11230,40.633373,-73.96458,"(40.633373, -73.96458)",,,1319 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425407,Sedan,Pick-up Truck,,, +06/10/2021,16:54,,,40.570465,-74.10977,"(40.570465, -74.10977)",NEW DORP LANE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425780,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,12:00,BROOKLYN,11216,40.669895,-73.95106,"(40.669895, -73.95106)",,,531 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4426523,Sedan,,,, +05/29/2021,11:46,,,40.890675,-73.89777,"(40.890675, -73.89777)",BROADWAY,MANHATTAN COLLEGE PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425793,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/10/2021,1:00,,,40.594826,-73.787254,"(40.594826, -73.787254)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425542,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,16:28,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BROWN PLACE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4426787,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/23/2021,18:01,,,40.692764,-73.94579,"(40.692764, -73.94579)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426549,Sedan,Pick-up Truck,,, +06/10/2021,15:49,,,40.877033,-73.846375,"(40.877033, -73.846375)",EASTCHESTER ROAD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4425981,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,18:40,BROOKLYN,11204,40.608078,-73.979706,"(40.608078, -73.979706)",AVENUE P,WEST 6 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4425896,Sedan,Sedan,,, +06/10/2021,5:30,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425477,Tractor Truck Diesel,Tractor Truck Diesel,,, +06/10/2021,14:58,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",WEST 39 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,16:29,,,40.575935,-74.00543,"(40.575935, -74.00543)",SEAGATE AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4426483,Sedan,Bike,,, +06/10/2021,4:03,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426077,Tractor Truck Diesel,Sedan,Sedan,, +06/11/2021,17:10,,,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426854,Sedan,Box Truck,,, +06/10/2021,8:50,BROOKLYN,11220,40.646786,-74.008575,"(40.646786, -74.008575)",5 AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425525,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/09/2021,0:00,,,40.742504,-73.73431,"(40.742504, -73.73431)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425207,Convertible,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,13:15,QUEENS,11357,40.769844,-73.83656,"(40.769844, -73.83656)",,,30-56 WHITESTONE EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4425857,Sedan,,,, +06/11/2021,13:05,BROOKLYN,11206,40.708942,-73.941765,"(40.708942, -73.941765)",SCHOLES STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426424,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,11:40,QUEENS,11358,40.749783,-73.80289,"(40.749783, -73.80289)",164 STREET,OAK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425278,Sedan,Sedan,,, +06/11/2021,18:36,QUEENS,11102,40.774624,-73.93316,"(40.774624, -73.93316)",,,4-10 27 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4426571,Sedan,E-Bike,,, +06/09/2021,23:57,BRONX,10460,40.84148,-73.88853,"(40.84148, -73.88853)",EAST 176 STREET,MARMION AVENUE,,4,0,0,0,0,0,4,0,Other Vehicular,Other Vehicular,,,,4425346,Sedan,Sedan,,, +05/27/2021,4:55,,,40.900005,-73.87919,"(40.900005, -73.87919)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426045,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,16:00,QUEENS,11373,40.74559,-73.87791,"(40.74559, -73.87791)",GLEANE STREET,ELMHURST AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426693,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,17:40,,,40.761196,-73.777725,"(40.761196, -73.777725)",CLEARVIEW EXPRESSWAY,42 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425688,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,23:43,BROOKLYN,11234,40.607178,-73.91642,"(40.607178, -73.91642)",NATIONAL DRIVE,STRICKLAND AVENUE,,4,1,0,0,0,0,4,1,Unsafe Speed,,,,,4426256,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,4:04,,,40.868496,-73.92173,"(40.868496, -73.92173)",COOPER STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426449,Sedan,Sedan,,, +06/11/2021,16:49,,,40.67801,-73.8161,"(40.67801, -73.8161)",123 STREET,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4425852,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/10/2021,21:00,BRONX,10455,40.81327,-73.905136,"(40.81327, -73.905136)",EAST 150 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425752,Station Wagon/Sport Utility Vehicle,FORKLIFT,,, +06/09/2021,11:29,,,40.852642,-73.908424,"(40.852642, -73.908424)",JEROME AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Keep Right,,,,4425466,Sedan,Bike,,, +06/09/2021,9:24,BROOKLYN,11203,40.63926,-73.93777,"(40.63926, -73.93777)",FOSTER AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425699,Sedan,Sedan,,, +06/11/2021,17:15,QUEENS,11363,40.76229,-73.75711,"(40.76229, -73.75711)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425884,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,20:16,MANHATTAN,10031,40.817593,-73.95319,"(40.817593, -73.95319)",AMSTERDAM AVENUE,WEST 133 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425293,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,0:40,QUEENS,11411,40.69377,-73.73578,"(40.69377, -73.73578)",LINDEN BOULEVARD,225 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425743,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,13:49,BROOKLYN,11214,40.608143,-74.00412,"(40.608143, -74.00412)",86 STREET,BAY 16 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425322,Sedan,Sedan,,, +06/10/2021,15:40,,,40.596222,-73.98897,"(40.596222, -73.98897)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425645,Sedan,Sedan,,, +06/09/2021,10:30,BROOKLYN,11226,40.639633,-73.954185,"(40.639633, -73.954185)",BEDFORD AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425246,Sedan,Bus,,, +06/10/2021,9:30,BROOKLYN,11234,,,,,,50 AVIATION ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4425573,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,12:30,,,40.709442,-73.9607,"(40.709442, -73.9607)",BROADWAY,ROEBLING STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4426398,LIMO,Sedan,,, +06/10/2021,16:00,QUEENS,11101,40.74629,-73.93327,"(40.74629, -73.93327)",VANDAM STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425911,Station Wagon/Sport Utility Vehicle,Bus,,, +06/10/2021,12:33,BROOKLYN,11213,40.67269,-73.93909,"(40.67269, -73.93909)",,,227 ALBANY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,16:28,BRONX,10459,40.816196,-73.896,"(40.816196, -73.896)",,,1035 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4425930,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,16:10,BRONX,10469,40.867733,-73.85861,"(40.867733, -73.85861)",ARNOW AVENUE,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425486,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,21:10,,,40.70369,-73.984634,"(40.70369, -73.984634)",BRIDGE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426222,Sedan,Sedan,,, +06/09/2021,7:50,BROOKLYN,11212,0,0,"(0.0, 0.0)",POWELL STREET,BELMONT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,,4426285,Station Wagon/Sport Utility Vehicle,Taxi,Bus,Sedan, +06/10/2021,9:10,BROOKLYN,11207,40.671047,-73.892715,"(40.671047, -73.892715)",BELMONT AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425513,Sedan,,,, +06/11/2021,7:25,BROOKLYN,11236,40.631794,-73.90288,"(40.631794, -73.90288)",,,1278 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426030,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,19:45,QUEENS,11413,40.67359,-73.749626,"(40.67359, -73.749626)",,,137-52 223 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425879,Sedan,,,, +06/11/2021,16:43,BROOKLYN,11223,40.592186,-73.9777,"(40.592186, -73.9777)",86 STREET,WEST 7 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426742,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,14:30,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425748,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,7:50,BRONX,10461,40.84281,-73.84469,"(40.84281, -73.84469)",WILLIAMSBRIDGE ROAD,HALPERIN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425812,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/28/2021,10:15,BRONX,10463,40.877407,-73.902954,"(40.877407, -73.902954)",,,3061 BAILEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426062,Convertible,,,, +06/09/2021,21:26,,,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4425564,Sedan,,,, +06/11/2021,8:45,QUEENS,11691,40.59601,-73.74267,"(40.59601, -73.74267)",,,711 SEAGIRT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426085,Sedan,,,, +06/10/2021,11:30,,,40.60148,-73.99306,"(40.60148, -73.99306)",BAY 31 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425635,Sedan,,,, +06/11/2021,16:54,QUEENS,11378,40.72785,-73.92657,"(40.72785, -73.92657)",43 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425923,Sedan,Carry All,,, +06/04/2021,15:01,BROOKLYN,11224,40.57686,-73.98266,"(40.57686, -73.98266)",MERMAID AVENUE,WEST 15 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4426366,,,,, +06/09/2021,2:23,QUEENS,11419,40.685448,-73.8324,"(40.685448, -73.8324)",,,103-15 110 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4425365,Sedan,Sedan,Sedan,, +06/10/2021,10:50,BROOKLYN,11230,40.631405,-73.95749,"(40.631405, -73.95749)",,,1270 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4425608,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/09/2021,20:00,BRONX,10461,40.843376,-73.8369,"(40.843376, -73.8369)",WESTCHESTER AVENUE,MIDDLETOWN ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4425397,Sedan,Sedan,,, +06/07/2021,15:00,BRONX,10466,40.88955,-73.84524,"(40.88955, -73.84524)",ELY AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425953,Sedan,,,, +06/11/2021,11:30,BROOKLYN,11213,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426529,Sedan,Bus,,, +06/10/2021,14:15,QUEENS,11373,40.741608,-73.88295,"(40.741608, -73.88295)",45 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426700,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,1:50,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425784,Sedan,Sedan,,, +05/28/2021,6:30,BRONX,10468,40.869045,-73.89945,"(40.869045, -73.89945)",,,2717 RESERVOIR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426013,Sedan,Sedan,,, +06/09/2021,14:40,MANHATTAN,10018,40.754707,-73.99164,"(40.754707, -73.99164)",WEST 38 STREET,8 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4426323,Bus,,,, +06/09/2021,17:00,BROOKLYN,11206,40.702568,-73.95026,"(40.702568, -73.95026)",UNION AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425335,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,19:15,MANHATTAN,10011,40.74353,-74.00554,"(40.74353, -74.00554)",,,457 WEST 17 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4425789,Station Wagon/Sport Utility Vehicle,Moped,,, +06/10/2021,17:40,,,,,,47 STREET,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426568,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +12/11/2021,13:33,,,40.74766,-73.86346,"(40.74766, -73.86346)",NATIONAL STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,22:09,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426349,Sedan,,,, +05/30/2021,9:00,,,40.693863,-73.92971,"(40.693863, -73.92971)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426488,Sedan,,,, +05/30/2021,2:38,QUEENS,11378,40.729134,-73.931015,"(40.729134, -73.931015)",LAUREL HILL BOULEVARD,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425916,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,19:30,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4426041,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/08/2021,7:00,BROOKLYN,11226,40.639584,-73.948364,"(40.639584, -73.948364)",,,1885 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426585,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,18:30,BRONX,10465,40.820053,-73.81934,"(40.820053, -73.81934)",,,2863 SAMPSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426245,Motorcycle,Sedan,,, +06/09/2021,14:05,,,40.703976,-73.92309,"(40.703976, -73.92309)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425450,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,12:37,BRONX,10472,40.829895,-73.87759,"(40.829895, -73.87759)",,,1241 WARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425833,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,22:40,QUEENS,11385,40.70188,-73.89054,"(40.70188, -73.89054)",,,71-27 65 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426131,Sedan,,,, +06/10/2021,13:55,BROOKLYN,11217,40.68792,-73.98025,"(40.68792, -73.98025)",,,29 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425684,Sedan,Bike,,, +06/09/2021,0:00,,,40.748108,-73.947365,"(40.748108, -73.947365)",21 STREET,,,3,0,3,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425298,Sedan,,,, +06/09/2021,10:49,BROOKLYN,11220,40.642757,-74.00793,"(40.642757, -74.00793)",,,629 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426073,Sedan,,,, +06/11/2021,11:30,,,,,,CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,Unspecified,,,4426442,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,8:40,QUEENS,11432,40.71492,-73.79128,"(40.71492, -73.79128)",ASPEN PLACE,MAYFIELD ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426137,Sedan,,,, +06/06/2021,22:00,BROOKLYN,11229,40.598022,-73.95434,"(40.598022, -73.95434)",,,2146 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426188,Sedan,,,, +06/09/2021,18:40,,,40.70512,-73.767914,"(40.70512, -73.767914)",LUDLUM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425579,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,16:15,,,40.844524,-73.902725,"(40.844524, -73.902725)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425710,Box Truck,Sedan,,, +06/06/2021,19:46,QUEENS,11105,40.7778,-73.91308,"(40.7778, -73.91308)",27 STREET,DITMARS BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426557,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,20:27,,,40.758705,-73.93793,"(40.758705, -73.93793)",21 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426419,Station Wagon/Sport Utility Vehicle,Moped,,, +06/11/2021,11:20,BROOKLYN,11204,40.6266,-73.98271,"(40.6266, -73.98271)",52 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426820,Sedan,,,, +05/25/2021,16:15,,,40.727318,-73.88796,"(40.727318, -73.88796)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425889,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,22:57,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425420,Sedan,Sedan,,, +06/10/2021,17:40,,,40.646328,-73.91276,"(40.646328, -73.91276)",AVENUE D,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426263,Sedan,Sedan,,, +06/11/2021,5:10,,,40.834198,-73.85169,"(40.834198, -73.85169)",WESTCHESTER AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425832,,,,, +06/09/2021,19:20,BROOKLYN,11229,40.599907,-73.94664,"(40.599907, -73.94664)",BEDFORD AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425341,Sedan,Sedan,,, +06/09/2021,8:16,,,40.67798,-73.872116,"(40.67798, -73.872116)",LIBERTY AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425421,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,19:21,,,40.700775,-73.91334,"(40.700775, -73.91334)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,16:58,BRONX,10472,40.835857,-73.87213,"(40.835857, -73.87213)",CROES AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425847,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,19:29,,,40.787064,-73.94194,"(40.787064, -73.94194)",1 AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426606,Station Wagon/Sport Utility Vehicle,Bike,,, +06/09/2021,17:15,,,40.58672,-73.97234,"(40.58672, -73.97234)",DANK COURT,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425389,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,15:55,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Alcohol Involvement,Following Too Closely,,,,4425618,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,16:48,QUEENS,11004,40.73675,-73.71104,"(40.73675, -73.71104)",HILLSIDE AVENUE,257 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4425864,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/09/2021,5:50,QUEENS,11435,40.68534,-73.80431,"(40.68534, -73.80431)",111 AVENUE,140 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4425031,Sedan,Sedan,,, +06/10/2021,14:35,,,40.62318,-74.14925,"(40.62318, -74.14925)",,,970 RICHMOND AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4425651,FORD VAN,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,18:00,QUEENS,11106,40.755783,-73.92803,"(40.755783, -73.92803)",,,33-01 36 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426394,,,,, +06/10/2021,17:10,BROOKLYN,11207,40.657738,-73.89596,"(40.657738, -73.89596)",,,1796 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4425946,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,, +06/09/2021,8:35,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425966,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,18:00,,,40.66929,-73.842445,"(40.66929, -73.842445)",CROSS BAY BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4425739,Sedan,Motorcycle,,, +06/09/2021,11:39,BROOKLYN,11214,40.602325,-73.99445,"(40.602325, -73.99445)",,,2164 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425317,Dump,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,10:27,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425554,Ambulance,Sedan,,, +06/10/2021,21:50,BROOKLYN,11212,40.670067,-73.90811,"(40.670067, -73.90811)",,,1764 PITKIN AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425729,Sedan,Bike,,, +06/11/2021,5:21,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426824,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/10/2021,10:38,BROOKLYN,11203,40.643894,-73.93826,"(40.643894, -73.93826)",ALBANY AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425708,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/10/2021,15:49,BRONX,10473,40.82486,-73.85402,"(40.82486, -73.85402)",,,2055 STORY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4425599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/11/2021,22:00,BRONX,10473,40.818336,-73.847885,"(40.818336, -73.847885)",,,575 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425888,Sedan,Sedan,,, +06/09/2021,0:00,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4425127,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +05/16/2021,20:00,BROOKLYN,11217,40.687275,-73.97916,"(40.687275, -73.97916)",,,98 ROCKWELL PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426506,Sedan,Sedan,,, +06/10/2021,12:49,STATEN ISLAND,10301,40.608334,-74.10186,"(40.608334, -74.10186)",MILFORD DRIVE,WITTEMAN PLACE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4425626,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,17:13,QUEENS,11377,40.7461,-73.91406,"(40.7461, -73.91406)",,,50-18 SKILLMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,16:50,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4425816,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,9:43,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,22:35,,,,,,FDR DRIVE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4425951,Sedan,Sedan,Sedan,Taxi,Sedan +12/10/2021,0:00,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4486095,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,19:20,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",177 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425875,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,9:39,,,,,,CLEARVIEW EXPRESSWAY,35 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426122,Sedan,Sedan,,, +06/10/2021,9:48,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425672,Bus,Sedan,,, +06/08/2021,12:00,,,40.904552,-73.847824,"(40.904552, -73.847824)",PENFIELD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425968,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,8:40,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426100,Box Truck,,,, +06/10/2021,16:50,,,40.627052,-74.16485,"(40.627052, -74.16485)",,,2239 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425985,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,14:20,,,40.880657,-73.877625,"(40.880657, -73.877625)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426289,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,17:14,,,40.82458,-73.870544,"(40.82458, -73.870544)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426511,Ambulance,,,, +06/09/2021,21:27,QUEENS,11434,40.66212,-73.770164,"(40.66212, -73.770164)",FARMERS BOULEVARD,176 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425337,Sedan,,,, +06/10/2021,11:30,QUEENS,11374,40.71917,-73.861275,"(40.71917, -73.861275)",66 AVENUE,FITCHETT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425548,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,23:30,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",SUNRISE HIGHWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4426229,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,21:59,BROOKLYN,11230,40.61255,-73.96287,"(40.61255, -73.96287)",CONEY ISLAND AVENUE,AVENUE O,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426327,Sedan,Bike,,, +06/05/2021,0:00,BRONX,10465,40.82378,-73.836426,"(40.82378, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4425817,Sedan,,,, +06/09/2021,16:03,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4425578,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,13:15,BROOKLYN,11220,40.648464,-74.00683,"(40.648464, -74.00683)",5 AVENUE,44 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425802,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/09/2021,6:40,BRONX,10466,40.892963,-73.86101,"(40.892963, -73.86101)",CARPENTER AVENUE,EAST 231 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4425973,Sedan,,,, +06/09/2021,19:25,QUEENS,11419,40.68246,-73.830025,"(40.68246, -73.830025)",107 AVENUE,111 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425360,,,,, +06/11/2021,23:10,QUEENS,11414,40.660355,-73.85577,"(40.660355, -73.85577)",157 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426813,Pick-up Truck,,,, +06/09/2021,6:40,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4426161,Sedan,Sedan,,, +06/10/2021,15:20,,,40.769863,-73.947914,"(40.769863, -73.947914)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4426773,Sedan,Sedan,,, +06/11/2021,7:14,MANHATTAN,10022,40.757435,-73.969604,"(40.757435, -73.969604)",,,866 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426296,Ambulance,Sedan,,, +06/11/2021,16:50,,,40.775642,-73.960526,"(40.775642, -73.960526)",EAST 79 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426785,Sedan,,,, +06/10/2021,4:30,,,40.690647,-73.90805,"(40.690647, -73.90805)",COVERT STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425764,,,,, +06/11/2021,22:00,BROOKLYN,11222,40.722775,-73.94707,"(40.722775, -73.94707)",MC GUINNESS BOULEVARD,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4426495,Sedan,Sedan,,, +05/18/2021,11:20,,,40.677067,-73.92281,"(40.677067, -73.92281)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4426472,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,15:18,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426203,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,16:55,,,40.62137,-74.135506,"(40.62137, -74.135506)",,,453 COLLEGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426861,Sedan,Sedan,Sedan,, +06/10/2021,19:17,MANHATTAN,10013,40.71758,-73.99831,"(40.71758, -73.99831)",,,111 MULBERRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426353,Van,,,, +06/10/2021,20:45,QUEENS,11368,40.744072,-73.86769,"(40.744072, -73.86769)",JUNCTION BOULEVARD,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426701,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/10/2021,13:10,BROOKLYN,11212,40.664597,-73.911385,"(40.664597, -73.911385)",,,272 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426272,PK,,,, +06/11/2021,22:15,BROOKLYN,11223,40.595715,-73.96508,"(40.595715, -73.96508)",OCEAN PARKWAY,AVENUE V,,1,0,0,0,0,0,1,0,Unspecified,,,,,4426745,Sedan,,,, +05/26/2021,20:00,QUEENS,11102,40.771397,-73.93281,"(40.771397, -73.93281)",,,11-28 WELLING COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426552,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,9:38,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",PITKIN AVENUE,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4425724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,18:00,MANHATTAN,10025,40.799957,-73.96053,"(40.799957, -73.96053)",WEST 108 STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,2:48,QUEENS,11102,40.768566,-73.92495,"(40.768566, -73.92495)",,,25-09 30 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426413,Sedan,,,, +06/02/2021,19:26,MANHATTAN,10018,40.757107,-73.997314,"(40.757107, -73.997314)",WEST 38 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425785,Sedan,Sedan,,, +06/09/2021,13:42,BROOKLYN,11217,40.687378,-73.98598,"(40.687378, -73.98598)",,,371 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425239,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,9:08,BROOKLYN,11205,40.693115,-73.96926,"(40.693115, -73.96926)",,,414 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425269,Sedan,Box Truck,,, +06/11/2021,6:30,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426037,Dump,,,, +06/09/2021,16:15,,,40.856487,-73.872406,"(40.856487, -73.872406)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425480,Sedan,,,, +06/11/2021,16:30,BRONX,10456,40.827496,-73.90527,"(40.827496, -73.90527)",,,590 EAST 166 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426348,Sedan,Moped,,, +06/08/2021,18:00,,,0,0,"(0.0, 0.0)",STATEN ISLAND EXPRESSWAY,BRADLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426000,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,19:18,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425828,Taxi,,,, +06/10/2021,22:00,QUEENS,11372,40.74764,-73.883804,"(40.74764, -73.883804)",,,82-06 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425714,Van,ORANGE JLG,,, +06/09/2021,14:10,,,40.71445,-73.9306,"(40.71445, -73.9306)",GRAND STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425311,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/11/2021,14:28,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4425860,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,19:12,MANHATTAN,10013,40.719902,-74.00261,"(40.719902, -74.00261)",CANAL STREET,MERCER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425532,Sedan,Sedan,,, +06/10/2021,18:50,BROOKLYN,11234,40.614414,-73.93282,"(40.614414, -73.93282)",RYDER STREET,AVENUE R,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425843,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,8:00,,,40.739082,-73.81611,"(40.739082, -73.81611)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426138,Tractor Truck Diesel,Sedan,,, +06/09/2021,15:30,,,40.62236,-74.174355,"(40.62236, -74.174355)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426069,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,17:35,,,40.79465,-73.971794,"(40.79465, -73.971794)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425865,Motorbike,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,10:05,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425677,Box Truck,Sedan,,, +06/10/2021,17:30,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",ROCKAWAY AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4426283,Garbage or Refuse,Sedan,Sedan,, +06/09/2021,12:27,,,40.761585,-73.76086,"(40.761585, -73.76086)",NORTHERN BOULEVARD,220 PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,1:10,,,40.688667,-73.87548,"(40.688667, -73.87548)",JAMAICA AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425430,Sedan,Sedan,,, +06/09/2021,16:09,BRONX,10460,40.839664,-73.87104,"(40.839664, -73.87104)",,,1280 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4425488,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,7:00,MANHATTAN,10032,40.836807,-73.946884,"(40.836807, -73.946884)",,,853 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485561,Sedan,,,, +06/11/2021,17:00,MANHATTAN,10018,40.753723,-73.98548,"(40.753723, -73.98548)",,,104 WEST 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426335,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/08/2021,13:42,MANHATTAN,10016,,,,east 40 street,tunnel exit,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426183,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,13:25,,,40.823956,-73.877144,"(40.823956, -73.877144)",BRUCKNER BOULEVARD,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4425254,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/10/2021,0:49,,,,,,FDR DRIVE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425344,Taxi,Sedan,,, +06/09/2021,0:15,,,40.68035,-73.9648,"(40.68035, -73.9648)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426502,Sedan,,,, +06/03/2021,11:06,BROOKLYN,11204,40.61312,-73.9894,"(40.61312, -73.9894)",20 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,18:35,,,40.697998,-73.92606,"(40.697998, -73.92606)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425595,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,16:18,MANHATTAN,10003,40.73329,-73.98719,"(40.73329, -73.98719)",EAST 14 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426392,Motorcycle,Sedan,,, +05/28/2021,0:39,BRONX,10463,40.881687,-73.90283,"(40.881687, -73.90283)",BROADWAY,WEST 234 STREET,,2,0,2,0,0,0,0,0,,,,,,4426005,,,,, +06/11/2021,14:08,QUEENS,11101,40.748276,-73.93918,"(40.748276, -73.93918)",JACKSON AVENUE,42 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425922,Taxi,E-Scooter,,, +06/11/2021,14:12,BRONX,10470,40.905804,-73.85302,"(40.905804, -73.85302)",,,4750 BRONX BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426734,Sedan,Sedan,Sedan,, +06/09/2021,18:05,,,40.730324,-74.00247,"(40.730324, -74.00247)",CARMINE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425634,Sedan,,,, +06/10/2021,0:36,BRONX,10460,40.839985,-73.877426,"(40.839985, -73.877426)",DEVOE AVENUE,EAST TREMONT AVENUE,,2,0,0,0,0,0,0,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4425543,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/11/2021,13:08,BRONX,10461,40.853386,-73.85377,"(40.853386, -73.85377)",,,1960 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425797,Van,Sedan,,, +06/09/2021,18:10,,,,,,QUEENSBORO BRIDGE LOWER,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4425303,Box Truck,Sedan,Sedan,Sedan,Sedan +06/06/2021,8:00,,,,,,henry hudson,west 246 sreet,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426064,Bike,Sedan,,, +06/08/2021,15:50,,,40.86155,-73.92472,"(40.86155, -73.92472)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426444,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,18:00,QUEENS,11102,40.77076,-73.92064,"(40.77076, -73.92064)",,,28-03 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426397,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,9:50,QUEENS,11423,40.709526,-73.768265,"(40.709526, -73.768265)",FARMERS BOULEVARD,99 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425871,Sedan,Taxi,,, +06/09/2021,23:50,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425350,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,7:38,,,40.6796,-73.80349,"(40.6796, -73.80349)",VANWYCK EXPRESSWAY,116 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4425757,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,22:52,QUEENS,11365,40.737778,-73.78925,"(40.737778, -73.78925)",,,64-49 184 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426107,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +05/29/2021,4:31,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4426022,Box Truck,Chassis Cab,,, +06/10/2021,14:41,QUEENS,11416,40.687405,-73.84061,"(40.687405, -73.84061)",,,97-45 103 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425961,Sedan,,,, +06/08/2021,12:27,MANHATTAN,10012,40.727688,-73.9993,"(40.727688, -73.9993)",,,510 LAGUARDIA PLACE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426358,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,17:53,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",NORTHERN BOULEVARD,76 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426463,Sedan,Sedan,,, +12/10/2021,14:30,BRONX,10467,40.876633,-73.86412,"(40.876633, -73.86412)",,,760 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4485989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/06/2021,6:16,BRONX,10459,40.824223,-73.89281,"(40.824223, -73.89281)",,,1031 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4425932,Sedan,Bike,,, +06/11/2021,21:13,BROOKLYN,11204,40.62127,-73.986,"(40.62127, -73.986)",,,1861 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4426830,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/11/2021,23:58,MANHATTAN,10003,40.73392,-73.9928,"(40.73392, -73.9928)",EAST 12 STREET,UNIVERSITY PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426719,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,9:55,,,40.7453,-73.986855,"(40.7453, -73.986855)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426223,Sedan,Pick-up Truck,,, +06/05/2021,21:20,,,40.66049,-73.962814,"(40.66049, -73.962814)",OCEAN AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4426126,Sedan,Sedan,,, +06/04/2021,18:35,,,40.891064,-73.90828,"(40.891064, -73.90828)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425990,Sedan,,,, +06/09/2021,19:00,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4426157,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,22:58,BROOKLYN,11238,40.68713,-73.96562,"(40.68713, -73.96562)",,,396 WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4425892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,17:00,,,40.866474,-73.932175,"(40.866474, -73.932175)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Passing Too Closely,Turning Improperly,,,,4426385,Sedan,Sedan,,, +06/10/2021,22:35,,,40.717014,-73.82971,"(40.717014, -73.82971)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425751,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,0:50,BROOKLYN,11203,40.659775,-73.929306,"(40.659775, -73.929306)",,,56 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426576,Sedan,,,, +12/09/2021,8:15,BROOKLYN,11207,40.665207,-73.89315,"(40.665207, -73.89315)",,,580 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4486015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,, +06/10/2021,11:30,QUEENS,11364,40.742405,-73.75348,"(40.742405, -73.75348)",SPRINGFIELD BOULEVARD,73 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425689,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,13:30,,,40.700733,-73.98974,"(40.700733, -73.98974)",PROSPECT STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425589,Bus,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,19:00,MANHATTAN,10002,40.72247,-73.987144,"(40.72247, -73.987144)",EAST HOUSTON STREET,LUDLOW STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425958,Taxi,Bike,,, +06/03/2021,17:45,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",GRAND CONCOURSE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426198,Van,,,, +05/31/2021,21:48,,,40.877068,-73.906105,"(40.877068, -73.906105)",WEST 230 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426017,Sedan,Sedan,,, +06/06/2021,19:40,QUEENS,11432,40.715496,-73.781685,"(40.715496, -73.781685)",,,86-37 AVON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426143,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/09/2021,14:50,BRONX,10465,40.83018,-73.83265,"(40.83018, -73.83265)",BRUCKNER BOULEVARD,HUNTINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426859,Pick-up Truck,Box Truck,,, +06/05/2021,19:12,BROOKLYN,11216,40.683582,-73.953964,"(40.683582, -73.953964)",PUTNAM AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426435,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,11:00,QUEENS,11420,40.67224,-73.80516,"(40.67224, -73.80516)",,,133-14 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425744,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/11/2021,22:55,QUEENS,11691,40.605274,-73.75516,"(40.605274, -73.75516)",,,21-41 MOTT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426089,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,21:55,,,40.69642,-73.95978,"(40.69642, -73.95978)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426547,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,23:00,QUEENS,11368,40.74948,-73.85761,"(40.74948, -73.85761)",,,108-30 42 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426697,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,5:33,MANHATTAN,10035,40.799248,-73.93515,"(40.799248, -73.93515)",,,324 EAST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425476,Sedan,Sedan,Sedan,, +06/04/2021,0:00,BRONX,10463,40.886623,-73.910446,"(40.886623, -73.910446)",,,3590 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426054,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,17:30,MANHATTAN,10021,40.767834,-73.95817,"(40.767834, -73.95817)",,,321 EAST 71 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426804,Sedan,Box Truck,,, +06/11/2021,8:20,QUEENS,11367,,,,,,137-44 70 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4426179,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,14:54,BROOKLYN,11212,40.66223,-73.92274,"(40.66223, -73.92274)",WINTHROP STREET,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426582,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/10/2021,9:35,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425839,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,2:30,,,40.661522,-74.00008,"(40.661522, -74.00008)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425169,Sedan,Unk,,, +06/10/2021,9:00,BROOKLYN,11221,40.70091,-73.926094,"(40.70091, -73.926094)",WILLOUGHBY AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4425524,Sedan,Sedan,,, +06/11/2021,7:25,BRONX,10456,40.82699,-73.909294,"(40.82699, -73.909294)",WASHINGTON AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4425824,Bus,,,, +06/09/2021,16:59,QUEENS,11358,40.755806,-73.797066,"(40.755806, -73.797066)",170 STREET,45 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4425286,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,12:15,,,40.74709,-73.76325,"(40.74709, -73.76325)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425792,Box Truck,Box Truck,,, +06/09/2021,18:00,MANHATTAN,10010,40.739132,-73.98178,"(40.739132, -73.98178)",,,235 EAST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425500,Sedan,,,, +06/09/2021,16:00,BROOKLYN,11230,40.61196,-73.96816,"(40.61196, -73.96816)",AVENUE O,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4426032,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +06/09/2021,22:00,BRONX,10460,40.8375,-73.880684,"(40.8375, -73.880684)",CROSS BRONX EXPRESSWAY,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425437,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,18:38,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426422,Taxi,,,, +06/10/2021,20:20,BRONX,10451,40.82751,-73.92495,"(40.82751, -73.92495)",GERARD AVENUE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4426049,Sedan,Sedan,,, +06/10/2021,17:47,BROOKLYN,11212,40.66381,-73.91117,"(40.66381, -73.91117)",DUMONT AVENUE,BRISTOL STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4426278,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/11/2021,15:25,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,12:24,MANHATTAN,10036,40.75713,-73.97825,"(40.75713, -73.97825)",,,592 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425938,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/09/2021,15:39,BRONX,10469,40.867733,-73.85861,"(40.867733, -73.85861)",ARNOW AVENUE,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4426608,Sedan,Sedan,,, +06/08/2021,2:28,,,40.768616,-73.92508,"(40.768616, -73.92508)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4426403,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/09/2021,15:14,MANHATTAN,10128,40.780693,-73.9466,"(40.780693, -73.9466)",EAST 92 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425371,Sedan,E-Scooter,,, +06/10/2021,14:33,,,40.79507,-73.93919,"(40.79507, -73.93919)",EAST 113 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425756,Tanker,Sedan,,, +06/11/2021,6:00,BROOKLYN,11238,40.6808,-73.96289,"(40.6808, -73.96289)",,,901 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425907,Sedan,,,, +06/10/2021,10:00,BROOKLYN,11215,40.66677,-73.98831,"(40.66677, -73.98831)",5 AVENUE,13 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425638,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/10/2021,11:15,QUEENS,11101,40.743416,-73.95387,"(40.743416, -73.95387)",VERNON BOULEVARD,49 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426454,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,10:52,BROOKLYN,11209,40.622295,-74.02186,"(40.622295, -74.02186)",,,8220 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4490682,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,14:50,,,40.637196,-74.14953,"(40.637196, -74.14953)",RICHMOND TERRACE,WRIGHT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491103,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,8:46,BRONX,10459,40.82193,-73.88844,"(40.82193, -73.88844)",BRUCKNER BOULEVARD,BRYANT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4425926,Sedan,Pick-up Truck,,, +06/09/2021,17:20,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425406,Tractor Truck Diesel,Sedan,,, +06/10/2021,13:56,BROOKLYN,11220,40.64592,-74.02384,"(40.64592, -74.02384)",58 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425590,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,7:30,BROOKLYN,11203,40.657608,-73.94232,"(40.657608, -73.94232)",WINTHROP STREET,KINGSTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4426674,Sedan,E-Bike,,, +06/09/2021,6:00,BRONX,10457,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425772,Sedan,Sedan,,, +06/10/2021,9:20,BROOKLYN,11213,40.674236,-73.93209,"(40.674236, -73.93209)",,,1137 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426522,Sedan,,,, +06/09/2021,23:15,BROOKLYN,11214,40.599766,-73.99483,"(40.599766, -73.99483)",BAY 31 STREET,BENSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425320,Sedan,,,, +06/11/2021,4:30,,,,,,POWELLS COVE BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426212,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,9:35,MANHATTAN,10035,40.799984,-73.94275,"(40.799984, -73.94275)",EAST 117 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425534,Sedan,Moped,,, +06/10/2021,17:20,BROOKLYN,11235,40.585556,-73.95167,"(40.585556, -73.95167)",,,1724 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425976,Sedan,Sedan,,, +06/11/2021,17:30,,,40.855362,-73.89878,"(40.855362, -73.89878)",VALENTINE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426111,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,8:39,QUEENS,11385,40.701862,-73.88178,"(40.701862, -73.88178)",,,69-30 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426130,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,13:29,,,40.815826,-73.947044,"(40.815826, -73.947044)",8 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426825,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,22:28,BRONX,10466,40.886658,-73.84765,"(40.886658, -73.84765)",,,4056 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4465212,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/30/2021,8:15,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,Unspecified,,,4426081,Sedan,Sedan,Sedan,, +06/07/2021,15:00,BRONX,10469,40.879845,-73.855156,"(40.879845, -73.855156)",,,3734 PAULDING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425965,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,9:00,BROOKLYN,11207,40.68049,-73.89252,"(40.68049, -73.89252)",,,233 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465060,Box Truck,Sedan,,, +06/11/2021,3:00,BRONX,10474,40.816864,-73.882744,"(40.816864, -73.882744)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4425927,Box Truck,,,, +06/09/2021,19:00,QUEENS,11373,40.73675,-73.87767,"(40.73675, -73.87767)",QUEENS BOULEVARD,GRAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426696,Bus,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,17:55,BRONX,10468,40.874157,-73.899445,"(40.874157, -73.899445)",RESERVOIR AVENUE,CLAFLIN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4426029,Bike,,,, +06/06/2021,9:00,QUEENS,11432,40.715984,-73.779396,"(40.715984, -73.779396)",,,183-27 DALNY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426123,Pick-up Truck,,,, +06/11/2021,17:55,BROOKLYN,11223,40.595146,-73.96356,"(40.595146, -73.96356)",,,2265 EAST 7 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426741,Moped,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,0:45,,,40.66077,-73.91975,"(40.66077, -73.91975)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Following Too Closely,,,,4426572,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,18:25,BRONX,10469,40.872414,-73.839966,"(40.872414, -73.839966)",HAMMERSLEY AVENUE,GUNTHER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4425986,Sedan,Motorbike,,, +06/09/2021,23:55,MANHATTAN,10039,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425565,Sedan,Sedan,,, +06/11/2021,17:47,QUEENS,11435,40.68936,-73.7962,"(40.68936, -73.7962)",,,110-26 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426153,Sedan,Sedan,,, +06/09/2021,17:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4425349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +05/28/2021,8:06,BRONX,10463,40.87618,-73.90943,"(40.87618, -73.90943)",,,70 MARBLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426061,Sedan,,,, +06/10/2021,20:16,,,40.575565,-73.98121,"(40.575565, -73.98121)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,21:18,BRONX,10472,40.82851,-73.88012,"(40.82851, -73.88012)",WESTCHESTER AVENUE,WHEELER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425829,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,8:00,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",JUNCTION BOULEVARD,34 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425993,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/09/2021,12:10,,,40.7295,-73.953964,"(40.7295, -73.953964)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426482,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,10:38,,,40.608105,-73.75414,"(40.608105, -73.75414)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426086,Sedan,Sedan,,, +06/10/2021,6:18,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426637,Box Truck,Tractor Truck Diesel,,, +06/08/2021,17:35,MANHATTAN,10029,40.794178,-73.94487,"(40.794178, -73.94487)",EAST 109 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426597,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,11:33,,,40.680523,-73.7633,"(40.680523, -73.7633)",EVELETH ROAD,,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4426148,Sedan,Tractor Truck Diesel,,, +06/08/2021,15:55,BRONX,10467,40.86967,-73.86527,"(40.86967, -73.86527)",ADEE AVENUE,HOLLAND AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4425954,Sedan,Sedan,,, +06/07/2021,6:00,QUEENS,11435,40.699608,-73.81424,"(40.699608, -73.81424)",,,137-30 91 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426194,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,21:30,,,40.70718,-73.92107,"(40.70718, -73.92107)",STARR STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426093,Bike,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,17:07,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465074,Bus,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,21:40,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4426776,Sedan,Sedan,,, +06/08/2021,11:28,QUEENS,11385,40.70264,-73.894356,"(40.70264, -73.894356)",,,70-14 CYPRESS HILLS STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425893,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,21:00,MANHATTAN,10010,40.73883,-73.983154,"(40.73883, -73.983154)",EAST 23 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426592,Bike,Taxi,,, +06/09/2021,16:35,QUEENS,11368,40.75067,-73.863106,"(40.75067, -73.863106)",103 STREET,39 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425506,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,14:30,BROOKLYN,11222,40.734135,-73.9583,"(40.734135, -73.9583)",FRANKLIN STREET,FREEMAN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426496,PK,,,, +06/11/2021,19:32,,,40.73736,-73.934074,"(40.73736, -73.934074)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426171,4 dr sedan,Bus,,, +06/09/2021,8:40,BROOKLYN,11224,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,NEPTUNE AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4425183,Sedan,Sedan,,, +06/09/2021,20:45,,,40.83369,-73.91386,"(40.83369, -73.91386)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425416,Sedan,Ambulance,,, +06/11/2021,14:20,BROOKLYN,11211,40.711166,-73.9489,"(40.711166, -73.9489)",LORIMER STREET,GRAND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426665,Bike,Tractor Truck Diesel,,, +06/08/2021,23:10,MANHATTAN,10016,40.789635,-73.94609,"(40.789635, -73.94609)",EAST 103 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426008,Station Wagon/Sport Utility Vehicle,Bike,,, +06/09/2021,15:10,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425273,Sedan,Sedan,,, +06/11/2021,11:30,,,40.83142,-73.92644,"(40.83142, -73.92644)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4426273,Ambulance,Box Truck,,, +06/10/2021,7:25,BRONX,10456,40.826183,-73.90975,"(40.826183, -73.90975)",,,1011 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing or Lane Usage Improper,Unspecified,,,4425807,Dump,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,16:22,BROOKLYN,11207,40.663643,-73.89084,"(40.663643, -73.89084)",RIVERDALE AVENUE,WYONA STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425942,Sedan,Bus,,, +06/04/2021,22:29,BRONX,10456,40.827938,-73.91438,"(40.827938, -73.91438)",,,1000 TELLER AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4426044,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,11:00,,,40.669094,-73.89711,"(40.669094, -73.89711)",GEORGIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425422,Sedan,Sedan,,, +06/09/2021,11:00,,,40.60635,-73.97552,"(40.60635, -73.97552)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425315,Sedan,,,, +06/09/2021,12:00,,,,,,FDR DRIVE,east houston,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425413,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,12:55,BRONX,10451,,,,,,610 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425779,Sedan,Sedan,,, +06/10/2021,15:20,,,40.79799,-73.96199,"(40.79799, -73.96199)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4425607,Bike,Sedan,,, +06/09/2021,11:03,QUEENS,11414,40.651806,-73.83806,"(40.651806, -73.83806)",,,163-30 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425364,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,16:00,QUEENS,11377,40.738438,-73.89988,"(40.738438, -73.89988)",65 PLACE,48 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425620,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,22:00,,,40.830914,-73.92047,"(40.830914, -73.92047)",EAST 165 STREET,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4426288,Sedan,Sedan,Sedan,Sedan,Sedan +06/09/2021,0:15,BROOKLYN,11236,40.631454,-73.893364,"(40.631454, -73.893364)",,,9211 SEAVIEW AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4425084,Sedan,Sedan,,, +06/11/2021,14:45,QUEENS,11416,40.683235,-73.86108,"(40.683235, -73.86108)",78 STREET,95 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426849,Sedan,Sedan,,, +06/10/2021,14:23,,,40.67505,-73.95639,"(40.67505, -73.95639)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426530,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/09/2021,6:50,STATEN ISLAND,10307,40.5088,-74.24776,"(40.5088, -74.24776)",SWINNERTON STREET,AMBOY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425661,Sedan,,,, +06/07/2021,15:45,BRONX,10468,40.868282,-73.90107,"(40.868282, -73.90107)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426072,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,23:45,MANHATTAN,10036,40.761097,-73.9969,"(40.761097, -73.9969)",,,560 WEST 43 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425796,Sedan,,,, +06/09/2021,11:00,,,40.75478,-73.97994,"(40.75478, -73.97994)",5 AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4426322,Sedan,,,, +06/09/2021,11:45,BRONX,10460,40.841774,-73.8722,"(40.841774, -73.8722)",,,500 MORRIS PARK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425553,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/11/2020,2:30,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4425947,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Sedan,, +06/09/2021,15:50,BROOKLYN,11233,40.674183,-73.92208,"(40.674183, -73.92208)",,,439 RALPH AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4425737,Sedan,,,, +06/09/2021,0:55,BROOKLYN,11216,40.691704,-73.94849,"(40.691704, -73.94849)",DE KALB AVENUE,MARCY AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426507,Sedan,E-Bike,,, +06/10/2021,16:34,,,40.597168,-73.97149,"(40.597168, -73.97149)",AVENUE U,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425980,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,16:15,,,40.69864,-73.93819,"(40.69864, -73.93819)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4426096,Sedan,,,, +06/10/2021,20:27,MANHATTAN,10024,40.784534,-73.9736,"(40.784534, -73.9736)",WEST 83 STREET,COLUMBUS AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4426239,Taxi,Bike,,, +06/11/2021,15:30,MANHATTAN,10075,40.773335,-73.95506,"(40.773335, -73.95506)",EAST 79 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426781,Bike,,,, +06/11/2021,9:15,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425834,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,21:24,BRONX,10467,40.88279,-73.869644,"(40.88279, -73.869644)",,,3620 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426737,Sedan,Sedan,,, +06/07/2021,14:10,QUEENS,11369,40.7635,-73.86313,"(40.7635, -73.86313)",,,29-53 BUTLER STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425997,Sedan,,,, +06/10/2021,12:42,BROOKLYN,11219,40.629795,-73.99553,"(40.629795, -73.99553)",,,1347 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426819,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,21:03,,,40.795586,-73.950165,"(40.795586, -73.950165)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,17:00,,,40.729794,-74.002144,"(40.729794, -74.002144)",BLEECKER STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426718,PK,E-Scooter,,, +06/09/2021,8:00,BRONX,10466,40.900265,-73.841484,"(40.900265, -73.841484)",,,2125 NEREID AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425969,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,14:30,BROOKLYN,11226,40.654457,-73.960785,"(40.654457, -73.960785)",WOODRUFF AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465267,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/11/2021,18:20,BRONX,10467,40.87686,-73.87232,"(40.87686, -73.87232)",,,3325 PARKSIDE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426290,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,17:01,,,40.84009,-73.88036,"(40.84009, -73.88036)",EAST TREMONT AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,18:17,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,21:25,BROOKLYN,11236,40.650402,-73.89422,"(40.650402, -73.89422)",EAST 108 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4426167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/11/2021,15:51,QUEENS,11372,40.7548,-73.89268,"(40.7548, -73.89268)",,,74-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4426462,Sedan,Sedan,,, +06/10/2021,10:45,BRONX,10472,40.831852,-73.86221,"(40.831852, -73.86221)",,,1248 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426512,Sedan,Sedan,,, +06/07/2021,8:00,,,40.68148,-73.95736,"(40.68148, -73.95736)",CLAVER PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426489,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/10/2021,21:21,,,40.794758,-73.94235,"(40.794758, -73.94235)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425715,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,17:38,BRONX,10457,40.843822,-73.91038,"(40.843822, -73.91038)",EAST 173 STREET,SELWYN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465344,E-Bike,Sedan,,, +06/09/2021,8:45,,,40.633274,-74.09198,"(40.633274, -74.09198)",CASTLETON AVENUE,HAVEN ESPLANADE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426567,Sedan,Sedan,,, +06/11/2021,17:15,QUEENS,11356,40.781685,-73.845024,"(40.781685, -73.845024)",123 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426209,Sedan,,,, +06/07/2021,15:51,BRONX,10463,40.883766,-73.907814,"(40.883766, -73.907814)",,,3240 RIVERDALE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4426057,Sedan,Sedan,Sedan,Sedan,Sedan +06/11/2021,15:10,BROOKLYN,11215,40.669655,-73.99253,"(40.669655, -73.99253)",3 AVENUE,12 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425861,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,0:20,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4425952,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,17:43,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425866,Sedan,Sedan,,, +06/11/2021,17:00,,,40.716812,-73.99777,"(40.716812, -73.99777)",CANAL STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426352,Sedan,Box Truck,,, +06/10/2021,0:30,,,40.710247,-73.82125,"(40.710247, -73.82125)",QUEENS BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425489,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/09/2021,14:00,,,40.59325,-74.11065,"(40.59325, -74.11065)",FOUR CORNERS ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425253,Sedan,,,, +06/09/2021,19:20,,,40.700672,-73.92164,"(40.700672, -73.92164)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425455,Station Wagon/Sport Utility Vehicle,Van,,, +06/10/2021,8:30,QUEENS,11694,40.581264,-73.82484,"(40.581264, -73.82484)",,,105-00 SHORE FRONT PARKWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,16:49,QUEENS,11357,40.77812,-73.81743,"(40.77812, -73.81743)",149 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,9:22,QUEENS,11101,40.755642,-73.93274,"(40.755642, -73.93274)",,,37-04 29 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4426402,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,10:14,BRONX,10461,40.857365,-73.84657,"(40.857365, -73.84657)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4425481,Sedan,Tow Truck / Wrecker,,, +06/11/2021,19:00,BRONX,10455,40.813652,-73.906975,"(40.813652, -73.906975)",EAST 150 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426201,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,12:05,BROOKLYN,11238,40.682804,-73.96367,"(40.682804, -73.96367)",SAINT JAMES PLACE,FULTON STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425681,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/09/2021,15:52,QUEENS,11104,40.745007,-73.91928,"(40.745007, -73.91928)",43 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425302,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/08/2021,19:30,BRONX,10463,,,,,,3333 Henry Hudson PKWY W,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426012,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,18:10,BROOKLYN,11201,40.693584,-73.98197,"(40.693584, -73.98197)",,,176 MYRTLE AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425255,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/09/2021,16:45,BRONX,10453,40.858707,-73.9037,"(40.858707, -73.9037)",JEROME AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425514,Van,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,14:00,QUEENS,11378,40.729015,-73.900246,"(40.729015, -73.900246)",65 PLACE,53 DRIVE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,23:50,,,40.738064,-73.83657,"(40.738064, -73.83657)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4425713,Sedan,Sedan,Sedan,, +06/09/2021,7:59,BRONX,10462,40.8317,-73.85275,"(40.8317, -73.85275)",,,2137 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425198,Sedan,,,, +06/11/2021,16:00,,,40.74242,-73.826546,"(40.74242, -73.826546)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,6:38,BROOKLYN,11207,40.69169,-73.90585,"(40.69169, -73.90585)",KNICKERBOCKER AVENUE,SCHAEFER STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4425457,Bus,Sedan,,, +06/08/2021,19:09,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4425811,Sedan,Sedan,Sedan,, +06/05/2021,18:30,QUEENS,11385,40.70606,-73.87593,"(40.70606, -73.87593)",74 STREET,COOPER AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426187,Bike,Sedan,,, +06/10/2021,14:25,BRONX,10452,40.84258,-73.916,"(40.84258, -73.916)",,,1510A JEROME AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426040,Pick-up Truck,Sedan,,, +05/22/2021,11:05,MANHATTAN,10029,40.788994,-73.94656,"(40.788994, -73.94656)",EAST 102 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4426023,Bike,Bike,,, +10/06/2021,9:56,BRONX,10466,40.898563,-73.85866,"(40.898563, -73.85866)",EAST 237 STREET,BRONX BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4465019,Box Truck,Box Truck,Sedan,, +06/09/2021,18:30,,,40.581875,-74.155945,"(40.581875, -74.155945)",,,41 WELLINGTON COURT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426001,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,17:00,,,40.69012,-73.92318,"(40.69012, -73.92318)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426486,Sedan,,,, +06/10/2021,7:45,BROOKLYN,11212,40.662888,-73.924965,"(40.662888, -73.924965)",,,105 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426577,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/09/2021,12:04,,,40.605312,-73.98493,"(40.605312, -73.98493)",QUENTIN ROAD,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4425510,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/11/2021,11:48,,,40.76165,-73.82715,"(40.76165, -73.82715)",UNION STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425859,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,9:00,MANHATTAN,10027,40.81095,-73.95301,"(40.81095, -73.95301)",,,361 WEST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426676,Sedan,,,, +06/09/2021,17:00,,,40.691914,-73.88363,"(40.691914, -73.88363)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Following Too Closely,Unspecified,,,4426139,Sedan,Sedan,,, +06/09/2021,6:25,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",CROTONA AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425529,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,13:54,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425838,Sedan,,,, +05/31/2021,18:40,QUEENS,11385,40.694912,-73.90388,"(40.694912, -73.90388)",,,1559 COVERT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426186,Sedan,Scooter,,, +06/09/2021,11:30,STATEN ISLAND,10301,40.63781,-74.08729,"(40.63781, -74.08729)",JERSEY STREET,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425209,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,11:18,QUEENS,11358,40.749783,-73.80289,"(40.749783, -73.80289)",164 STREET,OAK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425276,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,19:42,,,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426387,Sedan,Bike,,, +06/09/2021,22:00,,,,,,CROSS BRONX EXPRESSWAY,HARDING AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426258,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,7:20,BROOKLYN,11236,40.651234,-73.91804,"(40.651234, -73.91804)",,,9001 AVENUE A,0,0,0,0,0,0,0,0,Unspecified,,,,,4465529,Sedan,,,, +06/11/2021,17:36,BRONX,10451,40.817146,-73.92181,"(40.817146, -73.92181)",,,281 EAST 149 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4426199,Sedan,,,, +06/10/2021,17:20,MANHATTAN,10034,40.86598,-73.91954,"(40.86598, -73.91954)",,,238 SHERMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426436,Sedan,dirtbike,,, +05/14/2021,5:19,MANHATTAN,10013,40.71762,-74.00028,"(40.71762, -74.00028)",WALKER STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4426354,Sedan,Convertible,,, +05/28/2021,10:00,,,40.886375,-73.91399,"(40.886375, -73.91399)",WEST 235 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426016,Sedan,Sedan,,, +06/10/2021,16:00,BROOKLYN,11209,40.614197,-74.03603,"(40.614197, -74.03603)",,,135 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426158,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,17:09,MANHATTAN,10029,40.792187,-73.9382,"(40.792187, -73.9382)",EAST 110 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4426018,E-Bike,E-Bike,,, +06/10/2021,16:45,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,KENMARE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425704,Sedan,Pick-up Truck,,, +05/27/2021,15:00,STATEN ISLAND,10304,40.61593,-74.087425,"(40.61593, -74.087425)",VANDUZER STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426560,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/09/2021,16:00,,,40.736572,-73.907715,"(40.736572, -73.907715)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425296,Sedan,Sedan,,, +06/09/2021,15:34,BROOKLYN,11220,40.635033,-74.00879,"(40.635033, -74.00879)",,,829 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425392,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,5:35,BROOKLYN,11211,40.711212,-73.96339,"(40.711212, -73.96339)",SOUTH 5 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425685,Sedan,Bike,,, +06/10/2021,12:06,,,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425551,Station Wagon/Sport Utility Vehicle,Bike,,, +06/11/2021,8:15,,,40.606346,-73.95273,"(40.606346, -73.95273)",OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,15:36,,,40.660072,-73.93974,"(40.660072, -73.93974)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425642,Sedan,Bus,,, +06/09/2021,9:35,STATEN ISLAND,10310,40.637188,-74.11581,"(40.637188, -74.11581)",,,704 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425234,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,16:50,,,40.828068,-73.87298,"(40.828068, -73.87298)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425849,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,12:12,,,40.677845,-73.95282,"(40.677845, -73.95282)",BEDFORD AVENUE,,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4426080,E-Scooter,Sedan,,, +06/09/2021,22:20,BROOKLYN,11203,40.66306,-73.93924,"(40.66306, -73.93924)",,,654 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,Unspecified,,,4425312,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/10/2021,20:00,BRONX,10473,40.82487,-73.853935,"(40.82487, -73.853935)",,,2059 STORY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425827,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,11:20,MANHATTAN,10035,40.801918,-73.94344,"(40.801918, -73.94344)",EAST 119 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425181,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,19:35,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4425881,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,1:00,BROOKLYN,11213,40.671627,-73.93364,"(40.671627, -73.93364)",SCHENECTADY AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,7:37,,,40.828957,-73.842064,"(40.828957, -73.842064)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425818,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,11:20,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425287,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,23:30,MANHATTAN,10029,40.794178,-73.94487,"(40.794178, -73.94487)",LEXINGTON AVENUE,EAST 109 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inexperience,,,,4426011,Taxi,E-Scooter,,, +06/11/2021,1:00,QUEENS,11358,40.76173,-73.79178,"(40.76173, -73.79178)",39 AVENUE,190 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4425740,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/09/2021,17:15,,,40.83163,-73.92252,"(40.83163, -73.92252)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426050,Sedan,,,, +06/07/2021,14:13,BROOKLYN,11233,40.676132,-73.921906,"(40.676132, -73.921906)",RALPH AVENUE,PACIFIC STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426282,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,11:00,,,40.692196,-73.92488,"(40.692196, -73.92488)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425446,Sedan,,,, +06/11/2021,20:14,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4426160,Sedan,Sedan,,, +06/10/2021,11:00,,,40.674652,-73.87712,"(40.674652, -73.87712)",MILFORD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425937,Pick-up Truck,Sedan,,, +06/11/2021,18:40,,,40.771782,-73.96333,"(40.771782, -73.96333)",EAST 73 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426786,Sedan,Ambulance,,, +06/09/2021,20:45,BROOKLYN,11238,40.688553,-73.962845,"(40.688553, -73.962845)",LAFAYETTE AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425282,Station Wagon/Sport Utility Vehicle,Bike,,, +06/11/2021,22:40,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4425902,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,13:51,QUEENS,11418,40.691517,-73.838905,"(40.691517, -73.838905)",,,93-09 107 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4426862,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/11/2021,5:53,BROOKLYN,11207,40.680504,-73.90629,"(40.680504, -73.90629)",BROADWAY,DE SALES PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425765,Sedan,Sedan,,, +06/08/2021,14:30,MANHATTAN,10002,40.71992,-73.99106,"(40.71992, -73.99106)",,,160 ELDRIDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426860,Sedan,,,, +06/10/2021,10:00,QUEENS,11692,40.591175,-73.79798,"(40.591175, -73.79798)",,,305 BEACH 69 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425605,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,17:26,BROOKLYN,11216,40.678238,-73.94415,"(40.678238, -73.94415)",BROOKLYN AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426505,Sedan,Sedan,,, +06/08/2021,10:20,,,40.75348,-73.980896,"(40.75348, -73.980896)",5 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426321,Bus,Bike,,, +06/09/2021,20:44,BRONX,10473,40.816765,-73.848595,"(40.816765, -73.848595)",LACOMBE AVENUE,HOWE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4425516,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,19:20,,,40.688305,-73.75607,"(40.688305, -73.75607)",120 AVENUE,193 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inexperience,,,,4426151,Sedan,Sedan,,, +10/07/2021,20:30,QUEENS,11368,40.745728,-73.86213,"(40.745728, -73.86213)",46 AVENUE,102 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466072,Sedan,Sedan,,, +06/05/2021,16:00,MANHATTAN,10001,40.752644,-74.00428,"(40.752644, -74.00428)",11 AVENUE,WEST 29 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425786,E-Bike,,,, +06/04/2021,17:30,BRONX,10466,40.894066,-73.8384,"(40.894066, -73.8384)",EDENWALD AVENUE,SETON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425979,Sedan,,,, +06/09/2021,2:15,QUEENS,11413,40.651398,-73.75888,"(40.651398, -73.75888)",,,230-59 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425338,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/09/2021,12:34,,,,,,METROPOLITAN AVENUE,FOREST PARK DRIVE EAST,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4425479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,12:14,BRONX,10456,40.83283,-73.91129,"(40.83283, -73.91129)",EAST 168 STREET,TELLER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426115,Bus,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,12:19,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,8:00,BROOKLYN,11203,40.65035,-73.92633,"(40.65035, -73.92633)",EAST 54 STREET,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426581,Sedan,,,, +06/06/2020,21:30,BRONX,10451,40.824898,-73.927635,"(40.824898, -73.927635)",,,750 RIVER AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426043,Taxi,Bike,,, +06/09/2021,13:30,,,40.690285,-73.95433,"(40.690285, -73.95433)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425523,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,22:40,,,40.681297,-73.93472,"(40.681297, -73.93472)",LEWIS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426481,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,16:15,,,40.667477,-73.95623,"(40.667477, -73.95623)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425842,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,12:37,,,40.788418,-73.97077,"(40.788418, -73.97077)",COLUMBUS AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4425504,Sedan,,,, +06/04/2021,16:00,MANHATTAN,10014,40.73876,-74.00973,"(40.73876, -74.00973)",WEST STREET,HORATIO STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4426359,Pick-up Truck,Box Truck,,, +06/09/2021,13:00,MANHATTAN,10065,40.763893,-73.96908,"(40.763893, -73.96908)",,,525 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425375,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,20:30,QUEENS,11435,40.707375,-73.80969,"(40.707375, -73.80969)",87 AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426125,Sedan,,,, +06/09/2021,21:31,MANHATTAN,10033,40.84619,-73.93846,"(40.84619, -73.93846)",BROADWAY,WEST 175 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425577,Sedan,Sedan,,, +10/08/2021,8:15,BRONX,10451,,,,Morris Avenue,E153 street,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4465312,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,13:45,BROOKLYN,11233,40.675808,-73.913765,"(40.675808, -73.913765)",,,249 BOYLAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426279,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,14:13,,,40.74947,-73.85056,"(40.74947, -73.85056)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426688,Sedan,Pick-up Truck,,, +06/11/2021,11:00,QUEENS,11356,40.791313,-73.83896,"(40.791313, -73.83896)",,,6-07 129 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4425855,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,8:30,BROOKLYN,11211,40.707,-73.9538,"(40.707, -73.9538)",,,417 BROADWAY,1,0,0,0,1,0,0,0,Passenger Distraction,Passing or Lane Usage Improper,,,,4425331,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,16:46,MANHATTAN,10028,40.780857,-73.958824,"(40.780857, -73.958824)",EAST 86 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426774,Bike,,,, +06/10/2021,13:58,BRONX,10461,40.854183,-73.82961,"(40.854183, -73.82961)",,,2954 EAST 196 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425813,Box Truck,Sedan,,, +06/11/2021,21:02,,,40.767372,-73.950066,"(40.767372, -73.950066)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Reaction to Uninvolved Vehicle,Pavement Slippery,,,,4426611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,8:45,MANHATTAN,10032,40.836945,-73.94011,"(40.836945, -73.94011)",WEST 163 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426635,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,9:30,MANHATTAN,10025,40.796642,-73.96848,"(40.796642, -73.96848)",WEST 100 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425596,Sedan,,,, +06/10/2021,9:50,QUEENS,11372,40.75663,-73.875145,"(40.75663, -73.875145)",NORTHERN BOULEVARD,93 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425798,Box Truck,Sedan,,, +06/07/2021,16:15,QUEENS,11385,40.713333,-73.91305,"(40.713333, -73.91305)",GRANDVIEW AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425887,PK,Sedan,,, +06/09/2021,19:15,,,40.71074,-73.94548,"(40.71074, -73.94548)",MANHATTAN AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4425319,Sedan,Bike,,, +05/29/2021,14:05,,,,,,PUTNAM AVENUE WEST,VANCORTLANDT PARK WEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426006,Sedan,,,, +06/09/2021,0:10,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4425128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,17:23,STATEN ISLAND,10305,40.586845,-74.08662,"(40.586845, -74.08662)",,,242 MASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425622,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,13:45,QUEENS,11432,40.705513,-73.80153,"(40.705513, -73.80153)",,,89-14 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4426193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,11:00,QUEENS,11420,40.679523,-73.81077,"(40.679523, -73.81077)",130 STREET,115 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425745,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,14:38,,,40.77279,-73.837135,"(40.77279, -73.837135)",ULMER STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425948,Sedan,NYPD VAN,,, +06/09/2021,8:25,,,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426448,Station Wagon/Sport Utility Vehicle,Van,,, +06/09/2021,3:10,QUEENS,11413,40.676632,-73.7555,"(40.676632, -73.7555)",137 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425270,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,14:40,QUEENS,11691,40.608753,-73.76875,"(40.608753, -73.76875)",,,13-58 NORTON DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426088,Sedan,,,, +06/09/2021,22:57,BROOKLYN,11235,40.587784,-73.93513,"(40.587784, -73.93513)",,,3033 VOORHIES AVENUE,1,0,0,0,0,0,1,0,Prescription Medication,Unspecified,Unspecified,Unspecified,,4426746,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/11/2021,8:20,QUEENS,11433,,,,Guy R Brewer Blvd,107 Ave,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4425870,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,13:07,BRONX,10474,40.81594,-73.887276,"(40.81594, -73.887276)",,,770 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425351,Sedan,,,, +07/11/2021,21:30,QUEENS,11432,40.703342,-73.80021,"(40.703342, -73.80021)",JAMAICA AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426192,Sedan,Sedan,,, +06/11/2021,9:15,,,40.646328,-73.91276,"(40.646328, -73.91276)",REMSEN AVENUE,AVENUE D,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426055,Sedan,Sedan,,, +06/09/2021,13:35,BROOKLYN,11226,40.655495,-73.948975,"(40.655495, -73.948975)",,,323 CLARKSON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425725,Sedan,E-Scooter,,, +06/10/2021,15:10,,,40.67753,-73.73085,"(40.67753, -73.73085)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4425673,Sedan,Sedan,Sedan,, +06/09/2021,8:00,BRONX,10458,40.855408,-73.89176,"(40.855408, -73.89176)",,,508 EAST 184 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425558,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,13:00,QUEENS,11101,,,,,,1-50 50 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426038,Motorcycle,Sedan,,, +06/10/2021,16:10,QUEENS,11105,,,,,,36-17 20 avenue,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4426415,Sedan,Sedan,Sedan,, +06/11/2021,18:26,QUEENS,11377,40.754303,-73.89736,"(40.754303, -73.89736)",,,69-01 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4426464,Sedan,Moped,,, +06/11/2021,23:45,QUEENS,11377,40.740273,-73.89586,"(40.740273, -73.89586)",69 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4425913,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,21:13,MANHATTAN,10017,40.75409,-73.976395,"(40.75409, -73.976395)",,,200 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426328,Sedan,Sedan,,, +06/09/2021,14:50,BRONX,10475,,,,,,99 DARROW PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425823,Sedan,Sedan,,, +05/28/2021,0:20,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425933,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,18:42,BROOKLYN,11218,40.640068,-73.986885,"(40.640068, -73.986885)",13 AVENUE,40 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426831,Van,Bike,,, +06/07/2021,8:49,BRONX,10467,40.883106,-73.88097,"(40.883106, -73.88097)",,,3545 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426070,Station Wagon/Sport Utility Vehicle,Bike,,, +06/11/2021,16:15,QUEENS,11420,40.67853,-73.821236,"(40.67853, -73.821236)",,,118-06 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4426224,Station Wagon/Sport Utility Vehicle,Motorbike,Station Wagon/Sport Utility Vehicle,, +06/09/2021,11:50,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,12:15,QUEENS,11105,40.778774,-73.91445,"(40.778774, -73.91445)",CRESCENT STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426406,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,12:02,,,40.788475,-73.96702,"(40.788475, -73.96702)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4425803,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,15:13,BRONX,10463,40.875088,-73.912415,"(40.875088, -73.912415)",,,150 WEST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425991,Ambulance,,,, +06/06/2021,2:30,,,40.885952,-73.8279,"(40.885952, -73.8279)",BOSTON ROAD,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4425974,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/11/2021,15:40,MANHATTAN,10018,40.7517,-73.986404,"(40.7517, -73.986404)",WEST 37 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426338,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/09/2021,18:15,QUEENS,11419,40.68574,-73.82774,"(40.68574, -73.82774)",115 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425361,Sedan,,,, +06/06/2021,8:22,BRONX,10463,40.875183,-73.90232,"(40.875183, -73.90232)",,,2899 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426048,Sedan,,,, +06/10/2021,12:50,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4425750,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/04/2021,2:00,BRONX,10463,40.875885,-73.904144,"(40.875885, -73.904144)",,,2898 BAILEY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426033,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,15:27,BRONX,10459,40.826797,-73.89132,"(40.826797, -73.89132)",,,971 EAST 167 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425435,Sedan,Sedan,,, +06/06/2021,11:30,QUEENS,11361,40.758392,-73.781456,"(40.758392, -73.781456)",202 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426298,Sedan,,,, +06/10/2021,9:15,MANHATTAN,10037,40.81048,-73.94012,"(40.81048, -73.94012)",,,7 WEST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425566,Sedan,,,, +06/11/2021,22:00,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426180,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,18:59,BRONX,10463,40.878098,-73.905396,"(40.878098, -73.905396)",,,5545 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426060,Sedan,Tow Truck / Wrecker,,, +06/10/2021,3:23,BROOKLYN,11206,40.703922,-73.94438,"(40.703922, -73.94438)",,,50 MANHATTAN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4425343,Ford Van,,,, +05/16/2021,1:40,,,40.75332,-73.9636,"(40.75332, -73.9636)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4425919,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/05/2021,2:35,QUEENS,11101,40.755634,-73.93594,"(40.755634, -73.93594)",,,38-15 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4426393,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/10/2021,18:10,QUEENS,11365,40.736774,-73.80475,"(40.736774, -73.80475)",164 STREET,65 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426147,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/21/2021,22:45,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",ESSEX STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425959,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,15:45,MANHATTAN,10017,40.74953,-73.973564,"(40.74953, -73.973564)",,,245 EAST 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425305,Sedan,Sedan,,, +06/10/2021,10:30,QUEENS,11385,40.699955,-73.891396,"(40.699955, -73.891396)",,,74-46 64 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425612,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,16:40,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425632,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,21:00,BROOKLYN,11211,40.714752,-73.949486,"(40.714752, -73.949486)",LORIMER STREET,CONSELYEA STREET,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,Unspecified,,,4426728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,13:14,BROOKLYN,11221,40.68701,-73.93058,"(40.68701, -73.93058)",,,696 MADISON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426473,Sedan,,,, +06/09/2021,15:58,STATEN ISLAND,10301,40.637043,-74.07621,"(40.637043, -74.07621)",,,201 BAY STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426566,Sedan,Bike,,, +06/10/2021,21:44,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4426065,Taxi,Taxi,,, +06/03/2021,11:20,,,40.689445,-73.95513,"(40.689445, -73.95513)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426501,Box Truck,Box Truck,,, +06/10/2021,6:12,,,40.816616,-73.89414,"(40.816616, -73.89414)",BRUCKNER EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4426253,Motorcycle,,,, +06/03/2021,0:15,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426539,Sedan,,,, +06/11/2021,2:18,QUEENS,11373,40.741512,-73.88292,"(40.741512, -73.88292)",,,45-11 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426702,Sedan,,,, +06/11/2021,12:40,BRONX,10453,40.848877,-73.91615,"(40.848877, -73.91615)",NELSON AVENUE,MACOMBS ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426110,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,15:20,MANHATTAN,10035,40.804066,-73.93267,"(40.804066, -73.93267)",EAST 127 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425475,Sedan,Motorbike,,, +06/09/2021,20:39,MANHATTAN,10034,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,WEST 207 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425545,Sedan,,,, +06/09/2021,17:37,MANHATTAN,10022,40.76023,-73.961525,"(40.76023, -73.961525)",EAST 60 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425369,Sedan,Bike,,, +06/10/2021,12:06,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425758,Sedan,Sedan,,, +06/11/2021,15:50,,,40.595642,-73.99676,"(40.595642, -73.99676)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425898,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/10/2021,17:00,BROOKLYN,11213,40.674324,-73.94173,"(40.674324, -73.94173)",,,163 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426518,Sedan,,,, +06/10/2021,15:25,BRONX,10454,40.811596,-73.92285,"(40.811596, -73.92285)",,,354 EAST 141 STREET,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4426789,Sedan,Bike,,, +06/07/2021,16:18,,,40.695705,-73.94637,"(40.695705, -73.94637)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4426497,Sedan,Bike,,, +06/10/2021,6:51,QUEENS,11385,,,,CYPRESS HILLS STREET,Jackie Robinson parkway,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426129,Station Wagon/Sport Utility Vehicle,School Bus,,, +06/08/2020,20:43,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4425960,Sedan,,,, +06/10/2021,23:50,STATEN ISLAND,10301,40.63781,-74.08729,"(40.63781, -74.08729)",SCRIBNER AVENUE,JERSEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426587,Sedan,,,, +06/09/2021,15:00,BRONX,10457,40.84277,-73.9102,"(40.84277, -73.9102)",,,184 MOUNT EDEN PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4425418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,14:00,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425835,Pick-up Truck,Sedan,,, +06/02/2021,1:20,STATEN ISLAND,10304,40.61377,-74.08655,"(40.61377, -74.08655)",,,526 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426561,Sedan,Sedan,,, +06/10/2021,19:09,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4426249,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,21:00,MANHATTAN,10013,40.719048,-73.99648,"(40.719048, -73.99648)",GRAND STREET,MOTT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426355,Sedan,E-Bike,,, +06/11/2021,8:40,,,,,,133 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4426075,Garbage or Refuse,Sedan,,, +10/08/2021,8:13,,,40.753635,-73.91893,"(40.753635, -73.91893)",35 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4465698,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,14:00,QUEENS,11435,40.713226,-73.82343,"(40.713226, -73.82343)",HOOVER AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426141,Sedan,Box Truck,,, +06/10/2021,14:50,BROOKLYN,11204,40.617287,-73.97786,"(40.617287, -73.97786)",BAY PARKWAY,59 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,21:14,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425680,Taxi,,,, +06/10/2021,20:22,,,40.76663,-73.89605,"(40.76663, -73.89605)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4426421,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,12:30,BROOKLYN,11212,40.66932,-73.91312,"(40.66932, -73.91312)",,,1632 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426274,Sedan,Sedan,,, +06/09/2021,10:08,QUEENS,11378,,,,60 av,69 la,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425891,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,23:15,BROOKLYN,11201,40.695827,-73.98199,"(40.695827, -73.98199)",,,200 TILLARY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,17:00,QUEENS,11373,40.735836,-73.88482,"(40.735836, -73.88482)",,,51-71 GORSLINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426695,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/10/2021,2:00,,,40.75024,-73.998604,"(40.75024, -73.998604)",WEST 29 STREET,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4425584,Sedan,Sedan,,, +06/06/2021,4:52,,,40.877068,-73.906105,"(40.877068, -73.906105)",BROADWAY,WEST 230 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426047,Sedan,,,, +06/10/2021,19:43,,,40.829327,-73.84741,"(40.829327, -73.84741)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4425830,Sedan,Sedan,Tractor Truck Diesel,, +06/04/2021,22:50,BROOKLYN,11203,40.65939,-73.92926,"(40.65939, -73.92926)",,,78 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426603,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/09/2021,6:20,BROOKLYN,11206,40.707245,-73.94406,"(40.707245, -73.94406)",,,138 MONTROSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425728,,,,, +06/09/2021,12:15,,,40.65749,-73.893074,"(40.65749, -73.893074)",LINDEN BOULEVARD,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425424,Station Wagon/Sport Utility Vehicle,Hopper,,, +06/10/2021,1:00,,,40.63796,-74.13802,"(40.63796, -74.13802)",,,82 TREADWELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426002,Sedan,,,, +06/10/2021,15:30,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",HAMILTON AVENUE,COURT STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4426643,Sedan,Sedan,,, +06/10/2021,18:06,,,40.6764,-73.741325,"(40.6764, -73.741325)",229 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425718,Sedan,Sedan,,, +06/10/2021,12:34,MANHATTAN,10035,40.798626,-73.93953,"(40.798626, -73.93953)",EAST 117 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4425591,Sedan,Box Truck,Sedan,Sedan, +06/09/2021,6:05,QUEENS,11106,40.755966,-73.93027,"(40.755966, -73.93027)",,,36-40 31 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4425106,Sedan,,,, +06/10/2021,13:35,,,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4425666,Sedan,Sedan,Sedan,Sedan,Sedan +06/07/2021,19:00,QUEENS,11106,40.765747,-73.931206,"(40.765747, -73.931206)",,,31-64 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426396,Sedan,,,, +06/10/2021,17:55,BROOKLYN,11208,40.67818,-73.870705,"(40.67818, -73.870705)",LIBERTY AVENUE,CRESCENT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425944,,,,, +06/11/2021,10:48,QUEENS,11423,40.710346,-73.76904,"(40.710346, -73.76904)",190 STREET,WOODHULL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425874,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,15:00,QUEENS,11433,40.700325,-73.78904,"(40.700325, -73.78904)",MERRICK BOULEVARD,106 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4425867,Sedan,Motorscooter,,, +06/09/2021,16:00,,,40.812744,-73.937645,"(40.812744, -73.937645)",5 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4425615,Taxi,,,, +06/09/2021,17:16,BROOKLYN,11206,40.699406,-73.95338,"(40.699406, -73.95338)",LEE AVENUE,FLUSHING AVENUE,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4425328,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/14/2021,16:55,,,40.692482,-73.9203,"(40.692482, -73.9203)",LINDEN STREET,,,1,0,1,0,0,0,0,0,,,,,,4426092,Sedan,,,, +06/09/2021,15:29,BROOKLYN,11213,40.677128,-73.94,"(40.677128, -73.94)",,,1543 PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4426508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,16:00,MANHATTAN,10019,40.763794,-73.973785,"(40.763794, -73.973785)",,,4 WEST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425493,Box Truck,,,, +06/09/2021,13:15,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425256,Sedan,Sedan,,, +06/10/2021,8:40,,,40.703976,-73.92309,"(40.703976, -73.92309)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426097,Sedan,Van,,, +06/10/2021,11:35,BROOKLYN,11228,40.625267,-74.01727,"(40.625267, -74.01727)",76 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425909,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,23:15,MANHATTAN,10030,40.8166,-73.942764,"(40.8166, -73.942764)",WEST 137 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426826,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,14:47,,,40.73204,-73.87034,"(40.73204, -73.87034)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426172,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,18:45,BRONX,10469,40.87161,-73.86137,"(40.87161, -73.86137)",,,3206 BRONXWOOD AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426736,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,21:00,BRONX,10459,40.821163,-73.89691,"(40.821163, -73.89691)",,,941 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425928,Sedan,,,, +06/10/2021,10:35,,,40.830936,-73.91241,"(40.830936, -73.91241)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426119,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,5:40,QUEENS,11411,40.694042,-73.73665,"(40.694042, -73.73665)",LINDEN BOULEVARD,224 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425862,Pick-up Truck,Sedan,,, +06/06/2021,13:13,BRONX,10463,40.880295,-73.90384,"(40.880295, -73.90384)",,,5645 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4426028,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,8:41,,,40.668266,-73.84214,"(40.668266, -73.84214)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425482,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,21:00,BRONX,10469,40.882328,-73.85369,"(40.882328, -73.85369)",EAST 221 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425970,Sedan,,,, +06/09/2021,17:52,BROOKLYN,11216,40.678543,-73.949684,"(40.678543, -73.949684)",ATLANTIC AVENUE,NOSTRAND AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4426540,Sedan,Pick-up Truck,,, +06/07/2021,0:05,BRONX,10468,40.868282,-73.90107,"(40.868282, -73.90107)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4426293,Sedan,,,, +06/09/2021,8:15,QUEENS,11435,40.715183,-73.82325,"(40.715183, -73.82325)",COOLIDGE AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426124,Bus,Dump,,, +06/11/2021,23:14,MANHATTAN,10025,40.79856,-73.96337,"(40.79856, -73.96337)",WEST 105 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4426103,Sedan,Sedan,Sedan,, +06/10/2021,0:00,,,40.830154,-73.93964,"(40.830154, -73.93964)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425987,Sedan,Open Body,,, +03/09/2021,17:25,BROOKLYN,11238,40.682,-73.96867,"(40.682, -73.96867)",ATLANTIC AVENUE,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426513,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,10:00,BROOKLYN,11217,40.68733,-73.98183,"(40.68733, -73.98183)",NEVINS STREET,SCHERMERHORN STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4425810,Box Truck,Sedan,,, +06/09/2021,18:30,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425637,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,12:47,QUEENS,11691,40.60393,-73.75235,"(40.60393, -73.75235)",,,19-25 MOTT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426087,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,18:04,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425561,Flat Bed,,,, +06/09/2021,15:52,BRONX,10459,40.81616,-73.8944,"(40.81616, -73.8944)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425925,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,17:20,BRONX,10463,40.87739,-73.90924,"(40.87739, -73.90924)",,,157 WEST 228 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465103,Sedan,,,, +06/11/2021,16:00,MANHATTAN,10036,40.758533,-73.98885,"(40.758533, -73.98885)",8 AVENUE,WEST 44 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426329,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,16:59,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426834,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,15:26,QUEENS,11357,40.785362,-73.80544,"(40.785362, -73.80544)",,,157-34 LOCKE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426208,Sedan,motorhome,,, +06/01/2021,18:40,,,,,,W 244,Manhattan college parkway,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426056,Sedan,,,, +06/07/2021,17:15,BRONX,10467,40.88438,-73.86586,"(40.88438, -73.86586)",,,3780 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4425955,Tractor Truck Diesel,Sedan,,, +06/07/2021,12:00,QUEENS,11379,,,,QUEENS MIDTOWN EXPRESSWAY,79 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426531,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,16:00,,,40.83543,-73.92341,"(40.83543, -73.92341)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425777,Sedan,Sedan,,, +06/09/2021,9:00,BROOKLYN,11226,40.643257,-73.95776,"(40.643257, -73.95776)",,,1116 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4425402,Station Wagon/Sport Utility Vehicle,Bus,,, +06/10/2021,7:10,,,40.757065,-73.83863,"(40.757065, -73.83863)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426698,,,,, +06/11/2021,11:45,MANHATTAN,10001,40.753555,-73.996735,"(40.753555, -73.996735)",,,408 WEST 34 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425791,Ambulance,Sedan,,, +06/11/2021,4:25,,,40.793907,-73.84068,"(40.793907, -73.84068)",POWELLS COVE BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,3:45,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",82 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425992,Sedan,Taxi,,, +06/09/2021,19:00,STATEN ISLAND,10301,40.634003,-74.0984,"(40.634003, -74.0984)",RIDGEWOOD PLACE,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426570,Sedan,Sedan,,, +06/09/2021,12:55,,,40.712856,-73.9049,"(40.712856, -73.9049)",METROPOLITAN AVENUE,60 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4425894,Sedan,Sedan,,, +05/07/2021,8:10,MANHATTAN,10002,40.715214,-73.992905,"(40.715214, -73.992905)",,,75 CANAL STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4426351,Box Truck,Sedan,,, +06/10/2021,20:35,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4426368,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/09/2021,16:00,MANHATTAN,10006,40.709084,-74.01311,"(40.709084, -74.01311)",,,123 GREENWICH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425535,Pick-up Truck,,,, +06/09/2021,7:00,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425447,Sedan,,,, +06/10/2021,21:40,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Outside Car Distraction,Outside Car Distraction,Outside Car Distraction,Outside Car Distraction,4426775,Sedan,Sedan,Sedan,Sedan,Sedan +06/10/2021,20:50,,,40.660316,-73.913216,"(40.660316, -73.913216)",RIVERDALE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426270,Sedan,Sedan,,, +06/09/2021,15:50,BROOKLYN,11219,40.625088,-74.00003,"(40.625088, -74.00003)",,,1375 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,22:00,,,40.890293,-73.86518,"(40.890293, -73.86518)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425964,Sedan,,,, +06/11/2021,19:20,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426159,Sedan,,,, +06/01/2021,16:15,BRONX,10463,,,,W 238,Johnson ave,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425996,Sedan,,,, +06/11/2021,10:25,,,40.71445,-73.9306,"(40.71445, -73.9306)",GRAND STREET,METROPOLITAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Backing Unsafely,,,,4426670,Sedan,Box Truck,,, +06/01/2021,19:06,,,40.87626,-73.90395,"(40.87626, -73.90395)",WEST 230 STREET,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426019,Box Truck,Sedan,,, +06/09/2021,21:50,,,40.865547,-73.92728,"(40.865547, -73.92728)",DYCKMAN STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426401,Sedan,,,, +06/11/2021,22:20,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426135,Sedan,Sedan,,, +06/09/2021,15:25,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425301,Bus,Sedan,,, +05/31/2021,18:30,BRONX,10460,40.840427,-73.886734,"(40.840427, -73.886734)",EAST 176 STREET,TRAFALGAR PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426079,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,7:54,,,40.896595,-73.86081,"(40.896595, -73.86081)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426717,Sedan,Sedan,,, +06/09/2021,17:33,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4425712,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/09/2021,11:00,BROOKLYN,11223,40.60233,-73.967735,"(40.60233, -73.967735)",AVENUE S,EAST 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,22:00,BROOKLYN,11230,40.616627,-73.972664,"(40.616627, -73.972664)",,,221 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426818,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,11:00,QUEENS,11103,40.76861,-73.91113,"(40.76861, -73.91113)",,,24-27 STEINWAY STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4426427,Sedan,Sedan,,, +06/09/2021,15:20,QUEENS,11434,40.68049,-73.774704,"(40.68049, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4426152,Sedan,,,, +06/09/2021,22:00,BROOKLYN,11206,40.70109,-73.94502,"(40.70109, -73.94502)",WHIPPLE STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425686,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,14:00,QUEENS,11421,40.685486,-73.85821,"(40.685486, -73.85821)",83 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425460,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,16:39,,,,,,FARMERS BOULEVARD,,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4426154,Sedan,Sedan,,, +06/09/2021,15:40,QUEENS,11370,40.76296,-73.887665,"(40.76296, -73.887665)",25 AVENUE,81 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,16:55,BRONX,10473,40.825912,-73.857124,"(40.825912, -73.857124)",,,1994 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4425850,Sedan,,,, +06/11/2021,1:40,,,40.654797,-73.93943,"(40.654797, -73.93943)",LENOX ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426573,Sedan,Motorcycle,,, +06/09/2021,15:55,QUEENS,11420,40.675682,-73.816,"(40.675682, -73.816)",ROCKAWAY BOULEVARD,122 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425348,Convertible,Pick-up Truck,,, +06/11/2021,0:58,BROOKLYN,11236,40.63704,-73.91368,"(40.63704, -73.91368)",,,746 EAST 81 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425754,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,1:06,,,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426555,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,12:20,,,0,0,"(0.0, 0.0)",EAST 135 STREET,3 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426195,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/07/2021,20:35,BROOKLYN,11213,40.679367,-73.931335,"(40.679367, -73.931335)",FULTON STREET,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425845,Sedan,,,, +06/10/2021,15:10,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425649,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/09/2021,23:20,BROOKLYN,11212,40.659744,-73.91708,"(40.659744, -73.91708)",EAST 98 STREET,RIVERDALE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425736,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,21:48,BROOKLYN,11201,40.686096,-73.99637,"(40.686096, -73.99637)",CLINTON STREET,KANE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426628,AMBULANCE,,,, +06/09/2021,18:10,,,40.685196,-73.97829,"(40.685196, -73.97829)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425283,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,15:20,MANHATTAN,10075,40.77399,-73.95875,"(40.77399, -73.95875)",,,164 EAST 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426780,Sedan,,,, +06/09/2021,7:30,BROOKLYN,11217,40.681213,-73.98871,"(40.681213, -73.98871)",DE GRAW STREET,BOND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425306,Sedan,,,, +06/10/2021,10:30,BRONX,10458,40.855587,-73.89068,"(40.855587, -73.89068)",,,4574 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425546,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,23:02,,,40.877815,-73.868126,"(40.877815, -73.868126)",EAST GUN HILL ROAD,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465217,Sedan,,,, +06/10/2021,10:12,,,40.602356,-74.01263,"(40.602356, -74.01263)",BAY 14 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425511,Sedan,,,, +06/11/2021,0:52,,,40.689144,-73.99071,"(40.689144, -73.99071)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426287,Sedan,Bike,,, +06/10/2021,0:30,BRONX,10472,40.832058,-73.865746,"(40.832058, -73.865746)",,,1815 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4425517,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,13:00,QUEENS,11412,40.699535,-73.75647,"(40.699535, -73.75647)",MURDOCK AVENUE,198 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425759,Sedan,,,, +06/10/2021,17:34,,,40.713184,-73.767044,"(40.713184, -73.767044)",193 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4425877,Sedan,,,, +06/09/2021,13:00,MANHATTAN,10002,40.71528,-73.97648,"(40.71528, -73.97648)",FDR DRIVE,DELANCEY STREET,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425193,Sedan,Bike,,, +06/11/2021,15:00,,,,,,NOSTRAND AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426740,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,18:05,BRONX,10458,40.860237,-73.892845,"(40.860237, -73.892845)",,,2466 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4426024,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,18:49,BRONX,10459,40.8315,-73.888084,"(40.8315, -73.888084)",BRYANT AVENUE,JENNINGS STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inexperience,,,,4425806,Van,Motorbike,,, +06/09/2021,8:45,BROOKLYN,11236,40.627693,-73.90089,"(40.627693, -73.90089)",,,45 PAERDEGAT 15 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426166,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,15:35,BROOKLYN,11207,40.66279,-73.89455,"(40.66279, -73.89455)",,,563 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425941,Sedan,Sedan,,, +06/04/2021,21:28,,,40.848625,-73.93425,"(40.848625, -73.93425)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426380,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,0:05,BROOKLYN,11234,40.63656,-73.92391,"(40.63656, -73.92391)",,,849 EAST 55 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425899,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,15:29,,,40.71041,-73.98545,"(40.71041, -73.98545)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4425409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,10:52,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4425771,Sedan,,,, +06/10/2021,10:36,QUEENS,11418,40.707954,-73.83715,"(40.707954, -73.83715)",METROPOLITAN AVENUE,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426848,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,10:46,QUEENS,11385,40.705906,-73.91048,"(40.705906, -73.91048)",ONDERDONK AVENUE,BLEECKER STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4425906,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/07/2021,14:44,BROOKLYN,11215,40.67125,-73.97134,"(40.67125, -73.97134)",PROSPECT PARK WEST,CARROLL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465979,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/25/2021,21:20,QUEENS,11103,40.766647,-73.902824,"(40.766647, -73.902824)",,,24-20 49 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426551,Sedan,,,, +06/10/2021,17:19,BROOKLYN,11226,40.65297,-73.95831,"(40.65297, -73.95831)",,,2164 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426325,Sedan,Motorcycle,,, +10/07/2021,17:35,BRONX,10466,40.881264,-73.83875,"(40.881264, -73.83875)",BAYCHESTER AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465811,Sedan,Sedan,Sedan,, +06/10/2021,13:00,BRONX,10454,40.81417,-73.92122,"(40.81417, -73.92122)",3 AVENUE,EAST 145 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426082,Taxi,,,, +06/11/2021,7:45,BROOKLYN,11229,40.595238,-73.92988,"(40.595238, -73.92988)",BIJOU AVENUE,CELEST COURT,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,10:45,BROOKLYN,11222,40.7192,-73.94813,"(40.7192, -73.94813)",,,98 BAYARD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426490,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,16:30,,,40.70284,-73.90529,"(40.70284, -73.90529)",ONDERDONK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425252,Station Wagon/Sport Utility Vehicle,Bike,,, +06/11/2021,22:14,,,,,,3 AVENUE BRIDGE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426200,Sedan,,,, +06/11/2021,15:10,QUEENS,11412,40.690918,-73.7623,"(40.690918, -73.7623)",FARMERS BOULEVARD,117 ROAD,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4426150,Sedan,,,, +06/09/2021,10:00,,,40.69816,-73.92528,"(40.69816, -73.92528)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426095,Van,E-Bike,,, +06/11/2021,15:48,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4426703,Station Wagon/Sport Utility Vehicle,,,, +05/31/2021,14:00,BRONX,10451,40.820515,-73.930695,"(40.820515, -73.930695)",EXTERIOR STREET,EAST 150 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426052,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,7:48,BRONX,10452,40.835396,-73.92031,"(40.835396, -73.92031)",EAST 167 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4425473,Sedan,,,, +06/01/2021,19:11,BRONX,10463,40.88419,-73.91147,"(40.88419, -73.91147)",,,3220 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426039,Sedan,,,, +06/10/2021,6:49,MANHATTAN,10028,40.774128,-73.95086,"(40.774128, -73.95086)",,,405 EAST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426779,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,15:55,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426416,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/09/2021,9:35,BROOKLYN,11224,40.575336,-73.996445,"(40.575336, -73.996445)",WEST 30 STREET,MERMAID AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4425177,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,14:42,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4426181,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan +06/09/2021,16:20,BROOKLYN,11214,40.6093,-73.99233,"(40.6093, -73.99233)",,,2021 77 STREET,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4425313,Sedan,Sedan,,, +06/10/2021,6:05,,,40.748367,-73.89597,"(40.748367, -73.89597)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425509,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,22:30,BROOKLYN,11203,40.65422,-73.92386,"(40.65422, -73.92386)",LINDEN BOULEVARD,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426580,Sedan,Sedan,,, +06/11/2021,4:58,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4425822,Sedan,,,, +06/12/2020,2:08,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426682,Sedan,,,, +06/10/2021,3:29,QUEENS,11422,40.66932,-73.73938,"(40.66932, -73.73938)",,,138-02 234 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425741,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,0:00,,,40.81722,-73.91924,"(40.81722, -73.91924)",EAST 150 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4465555,Sedan,Pick-up Truck,,, +05/20/2021,17:34,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4426010,Sedan,,,, +06/10/2021,4:20,BROOKLYN,11218,40.645805,-73.9707,"(40.645805, -73.9707)",,,488 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426034,Sedan,Carry All,,, +06/07/2021,6:04,,,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4426051,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,18:20,BRONX,10468,40.86033,-73.898285,"(40.86033, -73.898285)",GRAND CONCOURSE,EAST 187 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425443,Sedan,Sedan,,, +06/10/2021,1:05,BROOKLYN,11207,40.674683,-73.8946,"(40.674683, -73.8946)",VERMONT STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425936,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,7:05,,,40.778614,-73.83977,"(40.778614, -73.83977)",129 STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4425275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,21:03,,,40.862602,-73.92028,"(40.862602, -73.92028)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426437,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +06/09/2021,17:54,,,40.749897,-73.93782,"(40.749897, -73.93782)",QUEENS PLAZA NORTH,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426407,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,1:30,,,40.596874,-73.79856,"(40.596874, -73.79856)",BEACH 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426614,Pick-up Truck,Sedan,,, +05/25/2021,20:20,MANHATTAN,10012,40.72639,-73.9918,"(40.72639, -73.9918)",EAST 3 STREET,BOWERY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426390,Station Wagon/Sport Utility Vehicle,Bike,,, +09/25/2021,9:30,BRONX,10457,40.84536,-73.89684,"(40.84536, -73.89684)",3 AVENUE,EAST 176 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4465180,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,1:50,MANHATTAN,10014,40.734535,-74.005615,"(40.734535, -74.005615)",,,103 CHARLES STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4425631,Sedan,,,, +06/11/2021,18:30,MANHATTAN,10022,0,0,"(0.0, 0.0)",3 AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425901,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/09/2021,14:12,QUEENS,11369,40.75868,-73.87552,"(40.75868, -73.87552)",32 AVENUE,JACKSON MILL ROAD,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4425597,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/09/2021,8:15,BRONX,10463,40.88785,-73.90355,"(40.88785, -73.90355)",,,3824 WALDO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426066,Sedan,,,, +06/11/2021,21:05,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FULTON STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,18:26,,,,,,RALPH AVENUE,EAST 80 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4426842,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/09/2021,15:38,BRONX,10474,40.82102,-73.88725,"(40.82102, -73.88725)",GARRISON AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425355,Sedan,,,, +06/11/2021,12:00,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,9:50,BRONX,10471,40.910515,-73.89663,"(40.910515, -73.89663)",,,6667 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4425995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,13:05,,,40.67277,-73.9628,"(40.67277, -73.9628)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426517,Sedan,,,, +10/08/2021,5:00,QUEENS,11365,40.73396,-73.80735,"(40.73396, -73.80735)",,,65-88 162 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4465383,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,14:25,,,40.760254,-73.967545,"(40.760254, -73.967545)",3 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425339,Van,,,, +06/11/2021,1:40,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4425918,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/10/2021,8:45,BROOKLYN,11222,,,,VANDERVORT AVENUE,LOMBARDY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425550,Sedan,Dump,,, +06/07/2021,9:46,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426114,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,19:30,BROOKLYN,11203,40.659447,-73.9312,"(40.659447, -73.9312)",,,575 UTICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4426578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/10/2021,16:16,QUEENS,11385,40.71032,-73.89937,"(40.71032, -73.89937)",FRESH POND ROAD,GROVE STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4426132,Motorcycle,Sedan,,, +06/11/2021,16:30,BROOKLYN,11233,40.678967,-73.921616,"(40.678967, -73.921616)",,,17 MACDOUGAL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426484,Sedan,Armored Truck,,, +06/08/2021,22:11,,,40.886185,-73.866974,"(40.886185, -73.866974)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425963,Sedan,Pick-up Truck,,, +06/10/2021,4:45,BRONX,10462,40.85241,-73.867775,"(40.85241, -73.867775)",BRADY AVENUE,WHITE PLAINS ROAD,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4426020,Bike,,,, +06/09/2021,9:00,BRONX,10474,40.81295,-73.88418,"(40.81295, -73.88418)",HUNTS POINT AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425934,Sedan,,,, +06/11/2021,20:34,MANHATTAN,10016,40.74025,-73.97917,"(40.74025, -73.97917)",,,476 2 AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4426225,E-Bike,,,, +06/11/2021,22:00,QUEENS,11372,40.7547,-73.89361,"(40.7547, -73.89361)",,,73-01 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426465,Sedan,Sedan,,, +06/09/2021,18:11,MANHATTAN,10036,40.755516,-73.98363,"(40.755516, -73.98363)",AVENUE OF THE AMERICAS,WEST 43 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425576,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,0:00,QUEENS,11430,40.66615,-73.80575,"(40.66615, -73.80575)",134 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425362,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,13:25,BROOKLYN,11225,40.66345,-73.94554,"(40.66345, -73.94554)",BROOKLYN AVENUE,STERLING STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426684,Motorcycle,,,, +06/09/2021,16:45,QUEENS,11416,40.679344,-73.859535,"(40.679344, -73.859535)",78 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425804,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/02/2021,8:15,,,40.580658,-73.985664,"(40.580658, -73.985664)",CROPSEY AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4426389,Sedan,Bike,,, +06/09/2021,16:10,BRONX,10465,40.831,-73.82652,"(40.831, -73.82652)",EAST TREMONT AVENUE,BARKLEY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426257,Motorcycle,Sedan,,, +05/27/2021,18:13,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426027,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,16:06,QUEENS,11423,0,0,"(0.0, 0.0)",,,191-33 FOOTHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426146,Sedan,Sedan,,, +06/09/2021,13:00,,,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426563,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,14:00,BROOKLYN,11210,40.62065,-73.95057,"(40.62065, -73.95057)",,,3346 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426330,Sedan,,,, +06/08/2021,21:45,STATEN ISLAND,10314,40.621017,-74.13181,"(40.621017, -74.13181)",COLLEGE AVENUE,JEWETT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426565,Sedan,Sedan,,, +06/08/2021,21:28,BRONX,10467,40.878807,-73.86388,"(40.878807, -73.86388)",EAST 213 STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4425956,Sedan,Sedan,,, +06/10/2021,16:30,QUEENS,11416,40.68335,-73.8412,"(40.68335, -73.8412)",100 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,22:30,BROOKLYN,11206,40.69885,-73.938576,"(40.69885, -73.938576)",BROADWAY,PARK AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4426474,Sedan,Sedan,,, +06/10/2021,18:47,BRONX,10465,40.827705,-73.83051,"(40.827705, -73.83051)",,,922 HUNTINGTON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4426206,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,14:00,QUEENS,11422,40.65299,-73.73435,"(40.65299, -73.73435)",149 AVENUE,WELLER LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425272,Sedan,,,, +06/10/2021,22:20,QUEENS,11368,40.757442,-73.86747,"(40.757442, -73.86747)",NORTHERN BOULEVARD,101 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425726,Sedan,Sedan,,, +06/11/2021,16:45,MANHATTAN,10021,40.774014,-73.96269,"(40.774014, -73.96269)",,,69 EAST 76 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426791,Pick-up Truck,Sedan,,, +06/09/2021,14:55,STATEN ISLAND,10306,40.564705,-74.12721,"(40.564705, -74.12721)",NORTH RAILROAD AVENUE,GUYON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425230,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,8:00,,,40.685047,-73.954254,"(40.685047, -73.954254)",MONROE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426545,Sedan,,,, +06/10/2021,11:09,BROOKLYN,11236,40.642292,-73.90449,"(40.642292, -73.90449)",EAST 93 STREET,CONKLIN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425640,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,19:00,,,40.857903,-73.86468,"(40.857903, -73.86468)",PELHAM PARKWAY NORTH,WALLACE AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4425478,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,14:45,BROOKLYN,11237,40.69798,-73.91257,"(40.69798, -73.91257)",PALMETTO STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426091,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/09/2021,16:30,MANHATTAN,10011,,,,7 ave,15 street,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425787,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,19:00,BRONX,10472,40.827583,-73.855835,"(40.827583, -73.855835)",,,2003 CHATTERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425826,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,7:45,BRONX,10472,40.830025,-73.872765,"(40.830025, -73.872765)",WESTCHESTER AVENUE,METCALF AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425522,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/09/2021,15:00,BROOKLYN,11215,40.656925,-73.978584,"(40.656925, -73.978584)",,,573 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425289,Sedan,,,, +06/09/2021,23:00,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425376,Sedan,Sedan,,, +06/10/2021,21:21,MANHATTAN,10033,40.846725,-73.93563,"(40.846725, -73.93563)",WEST 177 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426071,Sedan,,,, +06/11/2021,14:06,BRONX,10462,40.835556,-73.86203,"(40.835556, -73.86203)",WOOD AVENUE,VIRGINIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425837,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,23:30,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4425503,Sedan,Sedan,,, +06/10/2021,3:15,BROOKLYN,11207,40.674644,-73.88618,"(40.674644, -73.88618)",WARWICK STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425432,Sedan,Sedan,,, +10/07/2021,21:05,QUEENS,11369,40.76217,-73.87041,"(40.76217, -73.87041)",99 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465370,Sedan,Sedan,,, +06/11/2021,16:50,QUEENS,11435,40.686825,-73.7943,"(40.686825, -73.7943)",,,113-07 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426185,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,5:20,,,,,,HORACE HARDING EXPRESSWAY,RODMAN STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4425854,Motorcycle,,,, +06/10/2021,0:00,BROOKLYN,11212,40.658916,-73.9119,"(40.658916, -73.9119)",AMBOY STREET,NEWPORT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426281,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/11/2021,12:00,BROOKLYN,11236,40.65416,-73.906784,"(40.65416, -73.906784)",,,1040 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426275,Pick-up Truck,Box Truck,,, +06/09/2021,12:45,MANHATTAN,10037,40.81603,-73.935234,"(40.81603, -73.935234)",,,2311 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425216,Sedan,,,, +06/10/2021,18:00,MANHATTAN,10033,40.846046,-73.94025,"(40.846046, -73.94025)",FORT WASHINGTON AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426634,Sedan,Taxi,,, +06/09/2021,2:10,,,40.69939,-73.91938,"(40.69939, -73.91938)",KNICKERBOCKER AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425158,Sedan,Bike,,, +06/09/2021,11:00,BROOKLYN,11214,40.601807,-74.00832,"(40.601807, -74.00832)",,,8881 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425318,Sedan,,,, +06/10/2021,16:10,BROOKLYN,11222,40.728268,-73.952896,"(40.728268, -73.952896)",,,191 CALYER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426730,Sedan,,,, +06/06/2021,23:00,BRONX,10471,40.90104,-73.89689,"(40.90104, -73.89689)",BROADWAY,WEST 254 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426007,Station Wagon/Sport Utility Vehicle,Bike,,, +06/09/2021,17:30,BROOKLYN,11203,40.65563,-73.92596,"(40.65563, -73.92596)",LENOX ROAD,EAST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425700,Sedan,Sedan,,, +06/09/2021,20:30,,,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,6:05,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425295,Sedan,,,, +06/04/2021,8:30,,,40.68829,-73.9391,"(40.68829, -73.9391)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426500,Bus,Sedan,,, +06/05/2021,14:50,,,40.827423,-73.836754,"(40.827423, -73.836754)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425814,Sedan,,,, +06/10/2021,15:40,QUEENS,11421,40.692318,-73.8609,"(40.692318, -73.8609)",JAMAICA AVENUE,FOREST PARKWAY,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4425604,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,4:08,QUEENS,11385,40.69676,-73.8993,"(40.69676, -73.8993)",,,1742 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425624,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,13:40,,,40.710495,-73.76436,"(40.710495, -73.76436)",195 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4425869,Pick-up Truck,Bus,,, +06/09/2021,22:45,,,40.83088,-73.932274,"(40.83088, -73.932274)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425949,Sedan,Taxi,,, +06/10/2021,12:30,,,40.714622,-73.829704,"(40.714622, -73.829704)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,20:27,QUEENS,11435,40.70806,-73.8073,"(40.70806, -73.8073)",150 STREET,87 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4426109,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/09/2021,10:55,BRONX,10472,40.829147,-73.8793,"(40.829147, -73.8793)",,,1210 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426515,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,23:56,,,40.82092,-73.94333,"(40.82092, -73.94333)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426827,Sedan,Sedan,,, +06/11/2021,18:25,QUEENS,11104,40.745438,-73.923,"(40.745438, -73.923)",41 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425914,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,18:15,QUEENS,11422,40.670517,-73.73964,"(40.670517, -73.73964)",,,137-59 233 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426231,Station Wagon/Sport Utility Vehicle,3-Door,,, +06/10/2021,17:08,BROOKLYN,11236,40.637005,-73.91099,"(40.637005, -73.91099)",,,8301 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425674,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,10:00,,,40.873695,-73.824394,"(40.873695, -73.824394)",COOP CITY BOULEVARD,BELLAMY LOOP,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425819,Sedan,,,, +06/10/2021,14:04,BROOKLYN,11211,40.716778,-73.93635,"(40.716778, -73.93635)",MASPETH AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426480,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,13:25,MANHATTAN,10013,40.716988,-73.99825,"(40.716988, -73.99825)",,,195 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426360,Van,Van,,, +06/09/2021,19:10,QUEENS,11367,40.72449,-73.820656,"(40.72449, -73.820656)",,,73-15 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,14:42,QUEENS,11419,40.691704,-73.8198,"(40.691704, -73.8198)",,,126-18 101 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4464828,Sedan,,,, +06/02/2021,6:20,BRONX,10463,40.875298,-73.90617,"(40.875298, -73.90617)",,,2861 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425988,Sedan,,,, +06/06/2021,3:15,BRONX,10466,40.880623,-73.84047,"(40.880623, -73.84047)",BOSTON ROAD,GRACE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425975,Sedan,Sedan,,, +10/08/2021,11:30,BROOKLYN,11230,40.620094,-73.96328,"(40.620094, -73.96328)",EAST 12 STREET,AVENUE L,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465624,Sedan,,,, +06/04/2021,17:30,BRONX,10466,40.89409,-73.83825,"(40.89409, -73.83825)",,,2154 EDENWALD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426771,Sedan,Sedan,,, +06/11/2021,17:50,,,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426165,Taxi,Sedan,,, +06/10/2021,11:16,MANHATTAN,10000,40.76871,-73.969986,"(40.76871, -73.969986)",,,1 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425569,Sedan,Box Truck,,, +06/09/2021,16:45,,,40.60521,-73.985855,"(40.60521, -73.985855)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426305,Sedan,Sedan,,, +06/10/2021,17:50,,,40.597477,-73.986465,"(40.597477, -73.986465)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425695,Sedan,,,, +06/09/2021,18:18,MANHATTAN,10032,40.83089,-73.941376,"(40.83089, -73.941376)",WEST 155 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4425464,Station Wagon/Sport Utility Vehicle,ambulance,,, +06/10/2021,16:30,BROOKLYN,11234,40.609978,-73.92664,"(40.609978, -73.92664)",AVENUE T,KIMBALL STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4425719,Sedan,Sedan,,, +06/09/2021,19:20,BROOKLYN,11231,40.677937,-74.012215,"(40.677937, -74.012215)",,,329 VAN BRUNT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426639,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,14:15,BRONX,10463,40.87722,-73.90905,"(40.87722, -73.90905)",WEST 228 STREET,MARBLE HILL AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4426059,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,22:00,BRONX,10475,40.879204,-73.82601,"(40.879204, -73.82601)",,,755 COOP CITY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4426211,Sedan,Sedan,Sedan,Sedan, +06/11/2021,16:25,,,40.769028,-73.78252,"(40.769028, -73.78252)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,23:30,QUEENS,11422,40.658154,-73.73815,"(40.658154, -73.73815)",249 STREET,MAYDA ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4425742,Sedan,Sedan,Sedan,, +06/11/2021,8:48,QUEENS,11433,40.701588,-73.79488,"(40.701588, -73.79488)",,,94-45 BREWER BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425868,Sedan,Bus,,, +06/09/2021,19:25,,,,,,CROSS BRONX EXPRESSWAY,BRONX RIVER PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426362,Sedan,Sedan,Sedan,, +06/09/2021,16:11,BRONX,10472,,,,WHITE PLAINS ROAD,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425846,Station Wagon/Sport Utility Vehicle,Van Box Tr,,, +06/09/2021,17:15,,,40.663727,-73.95386,"(40.663727, -73.95386)",EMPIRE BOULEVARD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425264,Bus,Sedan,,, +06/10/2021,0:30,STATEN ISLAND,10301,40.63523,-74.08331,"(40.63523, -74.08331)",WILLIS AVENUE,AVON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426569,Bus,Sedan,,, +06/06/2021,15:54,BROOKLYN,11205,40.690346,-73.9603,"(40.690346, -73.9603)",DE KALB AVENUE,CLASSON AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4426550,Sedan,Sedan,Sedan,Sedan, +06/10/2021,4:12,,,40.854874,-73.916794,"(40.854874, -73.916794)",WEST BURNSIDE AVENUE,SEDGWICK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4425497,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,16:00,BROOKLYN,11214,40.59355,-73.98465,"(40.59355, -73.98465)",STILLWELL AVENUE,AVENUE V,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426367,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,14:55,,,,,,BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4425648,Sedan,,,, +06/09/2021,16:15,QUEENS,11415,40.70406,-73.82445,"(40.70406, -73.82445)",METROPOLITAN AVENUE,127 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4425448,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,12:37,QUEENS,11374,40.733437,-73.86418,"(40.733437, -73.86418)",,,61-35 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425250,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,7:00,BROOKLYN,11232,40.65576,-74.008354,"(40.65576, -74.008354)",,,241 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4425284,Sedan,,,, +10/07/2021,17:50,QUEENS,11001,40.727226,-73.71051,"(40.727226, -73.71051)",JAMAICA AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465031,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,17:15,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4425841,Sedan,Sedan,,, +06/10/2021,17:44,BROOKLYN,11211,40.71045,-73.95687,"(40.71045, -73.95687)",BORINQUEN PLACE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426399,Sedan,Box Truck,,, +06/10/2021,9:04,,,40.843678,-73.89426,"(40.843678, -73.89426)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4425528,Sedan,Sedan,,, +06/09/2021,0:00,,,40.83082,-73.87001,"(40.83082, -73.87001)",NOBLE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4425518,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,11:00,BROOKLYN,11223,40.6099,-73.96307,"(40.6099, -73.96307)",,,1022 AVENUE P,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425203,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,14:45,QUEENS,11355,40.75383,-73.81841,"(40.75383, -73.81841)",45 AVENUE,BOWNE STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4425858,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,7:47,,,40.68576,-73.915504,"(40.68576, -73.915504)",HALSEY STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426286,Sedan,,,, +06/11/2021,5:24,QUEENS,11102,40.771725,-73.92633,"(40.771725, -73.92633)",,,27-09 21 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4426420,Sedan,,,, +06/10/2021,4:00,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425675,Sedan,Sedan,,, +06/11/2021,13:00,BROOKLYN,11206,40.703053,-73.942505,"(40.703053, -73.942505)",GRAHAM AVENUE,VARET STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4426417,Bike,Sedan,,, +06/10/2021,7:55,BRONX,10475,,,,,,200 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4425809,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,7:15,,,40.833916,-73.92702,"(40.833916, -73.92702)",WOODYCREST AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426042,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,12:50,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426190,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/08/2021,21:30,,,40.626053,-74.177956,"(40.626053, -74.177956)",GOETHALS ROAD NORTH,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426003,Sedan,,,, +06/11/2021,2:10,QUEENS,11368,40.75815,-73.85676,"(40.75815, -73.85676)",,,112-24 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4425727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,9:10,,,40.819096,-73.94093,"(40.819096, -73.94093)",7 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425563,Sedan,Sedan,,, +06/11/2021,0:40,BRONX,10454,40.80905,-73.90862,"(40.80905, -73.90862)",,,411 WALES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425753,Taxi,Sedan,,, +06/09/2021,18:16,BRONX,10451,40.821667,-73.915184,"(40.821667, -73.915184)",MELROSE AVENUE,EAST 157 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425366,Sedan,,,, +06/10/2021,5:00,BROOKLYN,11230,40.615826,-73.9577,"(40.615826, -73.9577)",EAST 17 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4425609,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,15:30,,,40.788418,-73.97077,"(40.788418, -73.97077)",COLUMBUS AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425616,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,0:30,BRONX,10472,40.831875,-73.86636,"(40.831875, -73.86636)",WESTCHESTER AVENUE,BEACH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425110,Ambulance,,,, +06/09/2021,14:30,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4425711,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,18:30,BROOKLYN,11210,40.63474,-73.9542,"(40.63474, -73.9542)",,,637 EAST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425408,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +06/07/2021,13:06,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4426504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +06/11/2021,13:20,MANHATTAN,10010,40.74249,-73.9847,"(40.74249, -73.9847)",,,378 PARK AVENUE SOUTH,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426312,Station Wagon/Sport Utility Vehicle,Bike,,, +06/09/2021,18:40,BROOKLYN,11208,,,,,,368 ELDERT Lane,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4425427,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,8:28,,,40.8297,-73.91932,"(40.8297, -73.91932)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4425774,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/10/2021,14:45,,,40.66803,-73.87285,"(40.66803, -73.87285)",FOUNTAIN AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4425945,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,12:50,STATEN ISLAND,10309,40.541553,-74.20989,"(40.541553, -74.20989)",WOODROW ROAD,LENEVAR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4425668,Station Wagon/Sport Utility Vehicle,,,, +05/16/2021,15:30,,,40.685215,-73.95928,"(40.685215, -73.95928)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4425794,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,12:55,QUEENS,11358,40.759445,-73.78964,"(40.759445, -73.78964)",192 STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4425326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,17:41,BROOKLYN,11226,40.644405,-73.964096,"(40.644405, -73.964096)",BEVERLEY ROAD,EAST 16 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426324,Bike,Sedan,,, +06/10/2021,11:04,,,40.703587,-74.01312,"(40.703587, -74.01312)",BRIDGE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425536,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,19:00,BROOKLYN,11201,40.69051,-73.97872,"(40.69051, -73.97872)",,,161 ASHLAND PLACE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4425873,Sedan,E-Bike,,, +06/05/2021,18:50,BROOKLYN,11221,40.687557,-73.93896,"(40.687557, -73.93896)",MARCUS GARVEY BOULEVARD,GATES AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426478,Sedan,,,, +06/11/2021,19:00,MANHATTAN,10002,40.713078,-73.98507,"(40.713078, -73.98507)",MONTGOMERY STREET,MADISON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425910,Sedan,,,, +06/11/2021,18:20,QUEENS,11693,40.584858,-73.81902,"(40.584858, -73.81902)",,,97-12 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426246,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,9:15,BROOKLYN,11213,40.67043,-73.928185,"(40.67043, -73.928185)",SAINT JOHNS PLACE,ROCHESTER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4465763,Taxi,Sedan,,, +06/10/2021,15:08,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",HULL AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426106,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,16:30,BRONX,10466,40.88414,-73.84233,"(40.88414, -73.84233)",,,1220 EAST 229 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4426735,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/11/2021,10:00,BRONX,10462,40.83315,-73.852936,"(40.83315, -73.852936)",,,2148 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4425836,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,21:21,,,,,,WEST STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426356,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,17:45,STATEN ISLAND,10310,40.63426,-74.12064,"(40.63426, -74.12064)",ELIZABETH STREET,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4426562,Sedan,,,, +06/10/2021,21:15,MANHATTAN,10007,40.715996,-74.0071,"(40.715996, -74.0071)",CHURCH STREET,DUANE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4426074,Taxi,Bike,,, +06/09/2021,10:35,BRONX,10466,40.894207,-73.848946,"(40.894207, -73.848946)",BUSSING AVENUE,WICKHAM AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4425971,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,19:30,BROOKLYN,11204,40.633465,-73.9805,"(40.633465, -73.9805)",,,1666 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426807,Taxi,,,, +06/11/2021,23:02,QUEENS,11385,40.703686,-73.90918,"(40.703686, -73.90918)",SENECA AVENUE,LINDEN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426142,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,16:35,,,40.734398,-73.9223,"(40.734398, -73.9223)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,6:55,QUEENS,11105,40.77661,-73.9101,"(40.77661, -73.9101)",,,21-77 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426556,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,7:10,BRONX,10467,40.883377,-73.87957,"(40.883377, -73.87957)",,,3544 DEKALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426294,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,16:04,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425687,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,11:35,QUEENS,11369,40.77016,-73.877464,"(40.77016, -73.877464)",,,93-04 DITMARS BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426457,Sedan,Sedan,,, +06/10/2021,3:19,BROOKLYN,11211,40.71086,-73.95801,"(40.71086, -73.95801)",HAVEMEYER STREET,SOUTH 3 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425347,Taxi,E-Bike,,, +06/09/2021,23:00,,,40.685112,-73.94717,"(40.685112, -73.94717)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426514,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,23:58,MANHATTAN,10016,40.789635,-73.94609,"(40.789635, -73.94609)",EAST 103 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425851,Sedan,Bike,,, +06/11/2021,9:26,,,40.61532,-74.1603,"(40.61532, -74.1603)",,,82 LAMBERTS LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426864,Sedan,,,, +06/11/2021,8:00,,,40.82677,-73.856155,"(40.82677, -73.856155)",PUGSLEY AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4425831,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,15:00,BRONX,10463,40.876743,-73.90128,"(40.876743, -73.90128)",,,3041 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426063,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/09/2021,17:15,,,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4426378,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/11/2021,11:00,QUEENS,11432,40.713818,-73.79176,"(40.713818, -73.79176)",,,172-14 HENLEY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426182,Station Wagon/Sport Utility Vehicle,fdny ladde,,, +06/11/2021,9:30,QUEENS,11694,40.582584,-73.83022,"(40.582584, -73.83022)",BEACH 108 STREET,ROCKAWAY FREEWAY,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4426196,Sedan,Sedan,,, +06/09/2021,22:50,MANHATTAN,10029,40.789494,-73.94773,"(40.789494, -73.94773)",,,158 EAST 102 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426604,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,20:44,BROOKLYN,11234,40.6223,-73.92142,"(40.6223, -73.92142)",,,1375 EAST 56 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4425900,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/10/2021,19:00,BROOKLYN,11206,40.697853,-73.93325,"(40.697853, -73.93325)",BUSHWICK AVENUE,TROUTMAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4425762,Sedan,Sedan,,, +05/30/2021,18:55,BRONX,10463,40.87673,-73.90126,"(40.87673, -73.90126)",,,3038 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4426014,Station Wagon/Sport Utility Vehicle,Multi-Wheeled Vehicle,,, +06/11/2021,7:40,QUEENS,11434,40.664883,-73.768074,"(40.664883, -73.768074)",,,145-44 FARMERS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4425863,Box Truck,,,, +06/10/2021,17:30,,,40.850906,-73.93829,"(40.850906, -73.93829)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426408,Sedan,UNKNOWN,,, +06/10/2021,13:00,BROOKLYN,11219,40.637157,-73.99111,"(40.637157, -73.99111)",,,1273 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426035,Sedan,Van,,, +06/10/2021,7:15,,,40.757065,-73.83863,"(40.757065, -73.83863)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426699,Dump,,,, +06/10/2021,19:20,QUEENS,11421,40.69298,-73.860985,"(40.69298, -73.860985)",,,84-12 86 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425967,Sedan,,,, +06/11/2021,10:04,QUEENS,11420,40.67875,-73.8205,"(40.67875, -73.8205)",LINDEN BOULEVARD,LEFFERTS BOULEVARD,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unsafe Lane Changing,,,,4426083,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/09/2021,17:00,QUEENS,11379,40.71474,-73.88698,"(40.71474, -73.88698)",JUNIPER VALLEY ROAD,69 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425895,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,18:02,BROOKLYN,11221,40.691635,-73.936005,"(40.691635, -73.936005)",,,906 LAFAYETTE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4426492,Sedan,Sedan,Sedan,Sedan,Sedan +05/10/2021,17:40,MANHATTAN,10003,40.733303,-73.99333,"(40.733303, -73.99333)",EAST 11 STREET,UNIVERSITY PLACE,,1,0,1,0,0,0,0,0,,,,,,4426622,,,,, +06/09/2021,13:55,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426177,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,7:30,BRONX,10457,40.838963,-73.90484,"(40.838963, -73.90484)",,,1520 BROOK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426350,Sedan,Sedan,,, +06/10/2021,0:05,MANHATTAN,10003,40.73072,-73.98906,"(40.73072, -73.98906)",EAST 10 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425419,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,9:40,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4425192,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/09/2021,17:28,,,,,,WILLIAMSBRIDGE ROAD,PELHAM PARKWAY NORTH,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4425484,Sedan,,,, +06/09/2021,14:45,BRONX,10458,40.859184,-73.88663,"(40.859184, -73.88663)",,,550 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425547,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,7:05,QUEENS,11101,40.75352,-73.93448,"(40.75352, -73.93448)",39 AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426395,Sedan,,,, +06/09/2021,15:00,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4425308,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,23:00,BROOKLYN,11212,40.658997,-73.92186,"(40.658997, -73.92186)",,,289 EAST 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426586,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,19:47,QUEENS,11377,40.74251,-73.90734,"(40.74251, -73.90734)",58 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,15:20,MANHATTAN,10027,40.812378,-73.95241,"(40.812378, -73.95241)",,,364 WEST 127 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426672,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,21:22,BROOKLYN,11230,40.6222,-73.966385,"(40.6222, -73.966385)",,,921 AVENUE K,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,17:18,QUEENS,11375,40.721676,-73.835976,"(40.721676, -73.835976)",GRAND CENTRAL PARKWAY,72 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425679,Ambulance,Sedan,,, +06/11/2021,15:30,,,40.712856,-73.9049,"(40.712856, -73.9049)",METROPOLITAN AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426136,Sedan,Sedan,,, +06/11/2021,19:40,QUEENS,11432,40.71512,-73.77358,"(40.71512, -73.77358)",HILLSIDE AVENUE,188 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4425878,Sedan,Bus,,, +06/11/2021,13:00,QUEENS,11101,40.753056,-73.921455,"(40.753056, -73.921455)",,,42-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426426,Chassis Cab,Sedan,,, +06/10/2021,14:53,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4425940,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,11:13,BROOKLYN,11201,40.7007,-73.98869,"(40.7007, -73.98869)",PROSPECT STREET,ADAMS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425805,Sedan,,,, +06/02/2021,0:00,BRONX,10463,40.885918,-73.91144,"(40.885918, -73.91144)",,,590 WEST 235 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426046,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,18:05,BROOKLYN,11223,40.593014,-73.96472,"(40.593014, -73.96472)",,,2310 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4425342,Sedan,Sedan,,, +06/09/2021,3:00,BRONX,10454,40.806286,-73.9162,"(40.806286, -73.9162)",,,605 EAST 138 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425373,Sedan,,,, +06/10/2021,12:40,,,40.60589,-73.98972,"(40.60589, -73.98972)",79 STREET,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4425636,Sedan,Pick-up Truck,,, +06/09/2021,21:42,QUEENS,11379,40.716908,-73.87225,"(40.716908, -73.87225)",,,65-40 80 STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4425593,Sedan,Sedan,,, +06/10/2021,13:36,,,40.60676,-73.96373,"(40.60676, -73.96373)",KINGS HIGHWAY,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4425749,Bike,Box Truck,,, +06/10/2021,13:35,,,,,,BEACH 17 STREET,SEAGRIT BOULEVARD,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4425924,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/11/2021,18:20,QUEENS,11422,40.66712,-73.73785,"(40.66712, -73.73785)",,,138-71 BROOKVILLE BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426319,Station Wagon/Sport Utility Vehicle,3-Door,,, +06/09/2021,22:45,,,40.838203,-73.9302,"(40.838203, -73.9302)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425769,Sedan,Sedan,,, +06/09/2021,12:21,,,,,,SHORE ROAD,CITY ISLAND ROAD,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4425398,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,23:04,QUEENS,11385,40.702972,-73.888054,"(40.702972, -73.888054)",CENTRAL AVENUE,66 PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4425905,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,7:00,,,40.68333,-73.95612,"(40.68333, -73.95612)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426534,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,13:30,,,,,,EAST HAMPTON BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425790,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,16:00,BROOKLYN,11211,40.71472,-73.92961,"(40.71472, -73.92961)",GRAND STREET,VARICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425334,Tractor Truck Diesel,Tractor Truck Diesel,,, +06/09/2021,13:00,BROOKLYN,11216,40.67696,-73.94427,"(40.67696, -73.94427)",,,85 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426526,Sedan,,,, +05/28/2021,13:30,BROOKLYN,11225,40.659405,-73.9505,"(40.659405, -73.9505)",NOSTRAND AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426683,Sedan,,,, +05/27/2021,11:00,BROOKLYN,11238,40.672848,-73.9675,"(40.672848, -73.9675)",EASTERN PARKWAY,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426509,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,12:30,BROOKLYN,11212,40.66549,-73.92137,"(40.66549, -73.92137)",SUTTER AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425735,3-Door,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,19:10,BROOKLYN,11221,40.694305,-73.91852,"(40.694305, -73.91852)",CENTRAL AVENUE,LINDEN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426098,Sedan,Bike,,, +06/10/2021,19:35,BROOKLYN,11235,40.590305,-73.95265,"(40.590305, -73.95265)",,,1710 AVENUE Y,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425982,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,14:31,MANHATTAN,10016,40.746414,-73.98184,"(40.746414, -73.98184)",PARK AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425572,Sedan,Bike,,, +06/11/2021,14:00,BROOKLYN,11229,40.59487,-73.95056,"(40.59487, -73.95056)",OCEAN AVENUE,AVENUE W,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426739,Sedan,Sedan,,, +06/10/2021,15:55,BROOKLYN,11212,40.65864,-73.91374,"(40.65864, -73.91374)",STRAUSS STREET,NEWPORT STREET,,2,0,0,0,0,0,2,0,Outside Car Distraction,Other Vehicular,Unspecified,,,4426269,Sedan,Sedan,FDNY FIRE,, +06/08/2021,18:11,BRONX,10463,40.873787,-73.905266,"(40.873787, -73.905266)",,,2820 BAILEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425999,Garbage or Refuse,,,, +06/10/2021,12:00,BRONX,10460,40.853344,-73.881676,"(40.853344, -73.881676)",SOUTHERN BOULEVARD,EAST 187 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4426078,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,14:30,BROOKLYN,11213,40.66607,-73.93052,"(40.66607, -73.93052)",,,1698 CARROLL STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4426221,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,14:00,BRONX,10452,40.831913,-73.93094,"(40.831913, -73.93094)",SUMMIT AVENUE,WEST 162 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426120,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,20:09,BRONX,10459,40.819695,-73.89275,"(40.819695, -73.89275)",,,907 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4425929,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Sedan, +06/11/2021,18:00,,,,,,Broome Street and,Crosby Street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426855,Sedan,Taxi,,, +06/09/2021,23:10,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4425583,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +06/08/2021,13:13,,,40.8746,-73.9097,"(40.8746, -73.9097)",BROADWAY,WEST 225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426031,Sedan,Sedan,,, +06/10/2021,20:30,QUEENS,11691,40.60669,-73.75719,"(40.60669, -73.75719)",,,13-25 MCBRIDE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4425935,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,18:45,QUEENS,11379,40.721973,-73.88011,"(40.721973, -73.88011)",62 AVENUE,77 PLACE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425890,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,14:40,BROOKLYN,11219,40.639717,-73.99083,"(40.639717, -73.99083)",43 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426815,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,19:00,QUEENS,11101,40.74049,-73.92967,"(40.74049, -73.92967)",36 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425800,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,19:51,QUEENS,11412,40.69955,-73.747734,"(40.69955, -73.747734)",115 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4426155,Sedan,,,, +06/10/2021,0:00,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",ASTORIA BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4425598,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,8:16,BROOKLYN,11230,40.630047,-73.96158,"(40.630047, -73.96158)",,,1525 AVENUE H,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426450,DELIVERY T,Sedan,,, +06/09/2021,9:10,BRONX,10474,40.806538,-73.889244,"(40.806538, -73.889244)",,,310 TIFFANY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4425358,Box Truck,Tractor Truck Diesel,,, +06/09/2021,17:36,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426694,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,16:00,STATEN ISLAND,10301,40.64206,-74.075325,"(40.64206, -74.075325)",,,55 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426574,Sedan,,,, +10/07/2021,16:10,BROOKLYN,11205,40.699238,-73.95487,"(40.699238, -73.95487)",,,505 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4465132,Sedan,Box Truck,,, +10/08/2021,23:40,BROOKLYN,11209,40.614582,-74.02962,"(40.614582, -74.02962)",,,9516 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465460,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/24/2021,19:15,STATEN ISLAND,10301,40.636623,-74.08179,"(40.636623, -74.08179)",VICTORY BOULEVARD,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465682,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,14:05,BROOKLYN,11232,40.65543,-74.003265,"(40.65543, -74.003265)",4 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4465281,Pick-up Truck,Sedan,,, +10/06/2021,16:30,BROOKLYN,11218,40.64411,-73.97635,"(40.64411, -73.97635)",,,405 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465148,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,6:40,,,40.664516,-73.99709,"(40.664516, -73.99709)",20 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465266,Sedan,,,, +10/08/2021,20:08,,,40.67918,-73.92736,"(40.67918, -73.92736)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465812,Sedan,Sedan,,, +10/08/2021,3:00,QUEENS,11377,40.742382,-73.91195,"(40.742382, -73.91195)",QUEENS BOULEVARD,53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465244,Sedan,,,, +10/06/2021,12:52,,,40.63393,-73.948784,"(40.63393, -73.948784)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464742,Sedan,Sedan,,, +10/06/2021,17:39,MANHATTAN,10035,40.79668,-73.93492,"(40.79668, -73.93492)",EAST 117 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464965,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,15:45,,,40.874985,-73.85144,"(40.874985, -73.85144)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465814,Sedan,Sedan,,, +10/07/2021,17:56,BRONX,10463,40.883194,-73.9143,"(40.883194, -73.9143)",FAIRFIELD AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465091,Sedan,Sedan,,, +10/07/2021,8:35,QUEENS,11434,40.678703,-73.781746,"(40.678703, -73.781746)",122 AVENUE,LONG STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4464931,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,6:14,BRONX,10454,40.80715,-73.90821,"(40.80715, -73.90821)",EAST 142 STREET,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4464725,Sedan,Sedan,,, +10/06/2021,18:16,QUEENS,11354,40.763126,-73.83125,"(40.763126, -73.83125)",FARRINGTON STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464768,Sedan,Sedan,,, +10/08/2021,15:40,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,14:52,,,40.82481,-73.93679,"(40.82481, -73.93679)",WEST 150 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465239,Taxi,Sedan,,, +10/05/2021,0:00,,,40.69296,-73.93106,"(40.69296, -73.93106)",REID AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465849,Pick-up Truck,E-Bike,,, +10/07/2021,13:45,,,40.74006,-73.789894,"(40.74006, -73.789894)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464994,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,9:05,QUEENS,11427,40.728973,-73.74598,"(40.728973, -73.74598)",,,218-14 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464982,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,11:30,QUEENS,11366,,,,,,164-48 76 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4464707,Sedan,,,, +10/07/2021,10:20,,,40.61891,-73.96116,"(40.61891, -73.96116)",EAST 14 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465256,Sedan,,,, +10/07/2021,15:10,,,40.679375,-73.96408,"(40.679375, -73.96408)",WASHINGTON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465752,Sedan,,,, +10/08/2021,12:10,,,,,,MEEKER AVENUE,MC GUINNESS BLVD SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4465897,Sedan,Dump,,, +10/06/2021,15:15,BROOKLYN,11201,40.68852,-73.984856,"(40.68852, -73.984856)",,,233 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465104,Sedan,,,, +10/08/2021,11:27,,,40.660027,-73.96061,"(40.660027, -73.96061)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465892,Sedan,Sedan,,, +09/13/2021,17:13,,,40.837406,-73.86054,"(40.837406, -73.86054)",PARKCHESTER ROAD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465207,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,19:07,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465442,MOTOR SCOO,Sedan,,, +10/08/2021,9:20,BROOKLYN,11204,40.62497,-73.978485,"(40.62497, -73.978485)",,,1965 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465654,Station Wagon/Sport Utility Vehicle,Bus,,, +12/31/2021,8:00,BRONX,10457,40.838593,-73.90202,"(40.838593, -73.90202)",,,495 CLAREMONT PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4490975,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,1:10,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inexperience,,,,4465138,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,19:55,BRONX,10466,40.886765,-73.86104,"(40.886765, -73.86104)",,,3938 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4465023,Motorcycle,,,, +06/12/2021,1:21,,,,,,HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426140,Sedan,Sedan,,, +10/07/2021,14:30,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465160,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,2:15,QUEENS,11373,40.745827,-73.88526,"(40.745827, -73.88526)",,,80-15 41 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4464870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,7:04,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465064,Box Truck,Sedan,,, +10/06/2021,23:00,,,,,,G.C.P. / LAGUARDIA (CDR),,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4465068,Sedan,Sedan,,, +10/06/2021,0:48,,,40.69019,-73.7771,"(40.69019, -73.7771)",115 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4464588,Sedan,Sedan,,, +10/06/2021,16:30,,,40.651352,-73.89275,"(40.651352, -73.89275)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4465125,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,0:00,QUEENS,11385,40.70087,-73.89853,"(40.70087, -73.89853)",60 STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4464903,Sedan,,,, +10/03/2021,0:35,BRONX,10468,40.859642,-73.899826,"(40.859642, -73.899826)",EAST 184 STREET,CRESTON AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4466036,E-Bike,Sedan,,, +10/08/2021,14:46,,,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465764,Sedan,Sedan,,, +10/06/2021,17:11,STATEN ISLAND,10301,40.633755,-74.11767,"(40.633755, -74.11767)",STATE STREET,NOBLE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464918,Sedan,,,, +10/07/2021,13:45,BROOKLYN,11215,40.667336,-73.99124,"(40.667336, -73.99124)",4 AVENUE,14 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465175,Van,Bike,,, +10/04/2021,15:58,BRONX,10462,40.84353,-73.85687,"(40.84353, -73.85687)",BRONXDALE AVENUE,PIERCE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465340,Sedan,Sedan,,, +10/07/2021,20:18,BRONX,10468,40.870388,-73.90153,"(40.870388, -73.90153)",WEBB AVENUE,WEST 195 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465099,AMBULANCE,Sedan,,, +10/07/2021,16:00,BROOKLYN,11217,40.67573,-73.9746,"(40.67573, -73.9746)",LINCOLN PLACE,7 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465192,Sedan,E-Scooter,,, +10/06/2021,10:30,BROOKLYN,11203,40.652332,-73.92722,"(40.652332, -73.92722)",,,5322 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464820,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,8:40,,,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465773,Sedan,Tractor Truck Diesel,,, +10/07/2021,9:30,MANHATTAN,10002,40.71384,-73.99273,"(40.71384, -73.99273)",PIKE STREET,EAST BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465001,Sedan,,,, +08/22/2021,22:59,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,,,,,4465271,Sedan,,,, +10/07/2021,8:19,QUEENS,11433,40.696804,-73.79411,"(40.696804, -73.79411)",,,107-08 160 STREET,3,0,3,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465974,Bus,,,, +10/08/2021,9:08,BROOKLYN,11223,,,,,,2879 86 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465308,Bus,Box Truck,,, +10/04/2021,14:20,QUEENS,11367,40.735245,-73.82388,"(40.735245, -73.82388)",,,144-28 GRAVETT ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4465707,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,14:15,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465524,Sedan,,,, +10/06/2021,22:21,MANHATTAN,10030,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465234,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,13:55,,,40.69302,-73.93706,"(40.69302, -73.93706)",LEWIS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465804,Bike,E-Bike,,, +10/06/2021,23:15,BRONX,10467,40.865364,-73.87001,"(40.865364, -73.87001)",,,612 ALLERTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4465479,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/07/2021,8:15,,,40.679718,-73.773476,"(40.679718, -73.773476)",127 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465366,Sedan,Sedan,,, +10/07/2021,18:00,BROOKLYN,11201,40.701557,-73.9877,"(40.701557, -73.9877)",PEARL STREET,YORK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465587,Sedan,,,, +10/08/2021,12:05,BROOKLYN,11218,40.63203,-73.97447,"(40.63203, -73.97447)",,,4102 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465629,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,14:25,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,Following Too Closely,,,4464848,Sedan,Sedan,Sedan,, +10/08/2021,14:40,BROOKLYN,11230,40.628662,-73.976036,"(40.628662, -73.976036)",,,38 PARKVILLE AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4465759,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,19:06,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4465114,Taxi,,,, +10/08/2021,18:40,BROOKLYN,11206,40.705666,-73.93341,"(40.705666, -73.93341)",BOGART STREET,SEIGEL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465949,Sedan,,,, +10/08/2021,19:00,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",QUEENS BOULEVARD,57 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4466071,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,11:48,BROOKLYN,11213,40.66362,-73.930695,"(40.66362, -73.930695)",EAST NEW YORK AVENUE,EAST 91 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490606,Bus,Sedan,,, +10/08/2021,7:15,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465229,Sedan,Sedan,,, +10/07/2021,6:20,QUEENS,11356,40.787884,-73.84103,"(40.787884, -73.84103)",127 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4465464,Pick-up Truck,,,, +10/02/2021,13:40,MANHATTAN,10026,40.803726,-73.95376,"(40.803726, -73.95376)",,,230 WEST 116 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465822,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,12:30,BROOKLYN,11218,40.64557,-73.97279,"(40.64557, -73.97279)",,,722 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465647,Sedan,,,, +10/08/2021,17:40,MANHATTAN,10003,40.739086,-73.99139,"(40.739086, -73.99139)",EAST 19 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465660,Taxi,Pedicab,,, +10/07/2021,16:50,BRONX,10458,40.867256,-73.88363,"(40.867256, -73.88363)",EAST BEDFORD PARK BOULEVARD,WEBSTER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465298,Sedan,Bike,,, +10/07/2021,3:25,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4465166,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,8:15,STATEN ISLAND,10308,40.560085,-74.16505,"(40.560085, -74.16505)",,,680 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465409,Bus,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,12:15,,,40.716393,-73.98454,"(40.716393, -73.98454)",BROOME STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4465261,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,12:08,QUEENS,11369,40.759182,-73.86883,"(40.759182, -73.86883)",100 STREET,32 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465873,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,15:15,BROOKLYN,11201,40.68966,-74.00047,"(40.68966, -74.00047)",COLUMBIA STREET,CONGRESS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465433,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,15:00,QUEENS,11375,40.715492,-73.834404,"(40.715492, -73.834404)",77 AVENUE,KEW FOREST LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,Unspecified,,,4465362,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +10/08/2021,16:33,MANHATTAN,10035,40.802395,-73.936775,"(40.802395, -73.936775)",EAST 123 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465490,Bus,,,, +10/03/2021,7:30,,,40.828785,-73.94235,"(40.828785, -73.94235)",WEST 152 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465293,Sedan,Sedan,Sedan,, +10/08/2021,22:00,BROOKLYN,11222,40.72618,-73.93846,"(40.72618, -73.93846)",,,300 NASSAU AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,22:34,,,,,,YELLOWSTONE BOULEVARD,ALDERTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465636,Sedan,Sedan,,, +10/08/2021,7:43,,,40.67058,-73.93096,"(40.67058, -73.93096)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4465796,Bus,Bus,,, +10/06/2021,15:45,QUEENS,11105,40.7694,-73.90685,"(40.7694, -73.90685)",,,23-26 SOUND STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464911,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,9:49,MANHATTAN,10013,40.716812,-73.99777,"(40.716812, -73.99777)",CANAL STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464757,Box Truck,Sedan,,, +10/06/2021,10:12,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464702,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,18:50,BROOKLYN,11234,40.61656,-73.94024,"(40.61656, -73.94024)",,,1550 EAST 35 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4464960,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,12:37,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465011,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/08/2021,13:37,BRONX,10466,40.898308,-73.8503,"(40.898308, -73.8503)",,,1802 NEREID AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4465842,Sedan,Sedan,,, +12/31/2021,7:39,BRONX,10473,40.809074,-73.85723,"(40.809074, -73.85723)",UNDERHILL AVENUE,GILDERSLEEVE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4490930,Sedan,Box Truck,,, +10/06/2021,15:40,,,40.674744,-73.76368,"(40.674744, -73.76368)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Texting,Unspecified,,,,4464792,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,15:30,,,40.785374,-73.840294,"(40.785374, -73.840294)",128 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464784,Sedan,,,, +10/07/2021,9:00,QUEENS,11434,40.68221,-73.77257,"(40.68221, -73.77257)",BROCHER ROAD,172 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4464976,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,10:35,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465108,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,23:50,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465577,Sedan,Sedan,,, +10/07/2021,10:40,,,40.639137,-74.0202,"(40.639137, -74.0202)",63 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465276,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,11:30,BROOKLYN,11211,40.715015,-73.94682,"(40.715015, -73.94682)",,,109 CONSELYEA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465906,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,23:15,BROOKLYN,11229,40.605145,-73.94204,"(40.605145, -73.94204)",,,2948 AVENUE S,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,14:00,MANHATTAN,10035,40.804672,-73.93816,"(40.804672, -73.93816)",,,116 EAST 125 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465203,Tanker,Sedan,,, +10/02/2021,0:30,,,40.670208,-73.79156,"(40.670208, -73.79156)",147 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4465446,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,17:38,BROOKLYN,11231,40.682133,-74.00038,"(40.682133, -74.00038)",HENRY STREET,CARROLL STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464840,Sedan,Bike,,, +10/06/2021,13:25,QUEENS,11414,40.65122,-73.834984,"(40.65122, -73.834984)",96 STREET,164 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4464876,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,8:10,,,40.648922,-73.94938,"(40.648922, -73.94938)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465083,Sedan,Dump,,, +10/07/2021,15:20,BROOKLYN,11207,40.662807,-73.89646,"(40.662807, -73.89646)",RIVERDALE AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465050,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,19:35,QUEENS,11373,40.731968,-73.88478,"(40.731968, -73.88478)",GRAND AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4465156,Sedan,E-Scooter,,, +10/08/2021,5:00,BROOKLYN,11205,40.696774,-73.9726,"(40.696774, -73.9726)",,,42 ADELPHI STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4465320,Station Wagon/Sport Utility Vehicle,,,, +09/27/2021,17:00,BROOKLYN,11213,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4465769,Sedan,Sedan,,, +10/08/2021,6:28,BRONX,10459,40.831745,-73.892426,"(40.831745, -73.892426)",,,1334 WILKENS AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,0:50,BROOKLYN,11206,40.711216,-73.94043,"(40.711216, -73.94043)",BUSHWICK AVENUE,MAUJER STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464896,Motorcycle,,,, +10/08/2021,12:54,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",LEFFERTS BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465303,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,5:34,BROOKLYN,11215,40.673267,-73.98952,"(40.673267, -73.98952)",3 AVENUE,6 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Obstruction/Debris,Unspecified,,,4465188,Sedan,Sedan,Sedan,, +10/06/2021,20:54,STATEN ISLAND,10306,40.558773,-74.130165,"(40.558773, -74.130165)",,,3 HOOPER AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4464830,Sedan,Pick-up Truck,,, +10/08/2021,15:30,,,40.84773,-73.91765,"(40.84773, -73.91765)",BRANDT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466048,Station Wagon/Sport Utility Vehicle,Bus,,, +10/07/2021,14:09,,,40.66725,-73.8132,"(40.66725, -73.8132)",NORTH CONDUIT AVENUE,149 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4465142,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,15:30,QUEENS,11416,40.68572,-73.84762,"(40.68572, -73.84762)",97 AVENUE,94 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4465515,Motorbike,Sedan,,, +10/08/2021,10:35,,,,,,UTOPIA PARKWAY,67 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465377,Sedan,,,, +10/07/2021,12:06,BRONX,10466,0,0,"(0.0, 0.0)",,,716 EAST 233 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4465032,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,17:35,MANHATTAN,10029,40.78363,-73.94353,"(40.78363, -73.94353)",FDR DRIVE,EAST 97 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465720,Ambulance,Sedan,,, +10/04/2021,19:50,BROOKLYN,11249,40.71286,-73.96579,"(40.71286, -73.96579)",WYTHE AVENUE,SOUTH 4 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Headlights Defective,,,,4465484,Sedan,E-Scooter,,, +10/04/2021,7:58,BROOKLYN,11212,40.662033,-73.921135,"(40.662033, -73.921135)",,,205 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,,,,,,4465538,,,,, +10/08/2021,12:32,,,40.667328,-73.77903,"(40.667328, -73.77903)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4465325,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,9:15,BROOKLYN,11207,40.661167,-73.87969,"(40.661167, -73.87969)",STANLEY AVENUE,ASHFORD STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465043,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,11:10,BRONX,10462,40.855118,-73.8677,"(40.855118, -73.8677)",,,2153 WHITE PLAINS ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465330,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,22:00,QUEENS,11368,40.740036,-73.85289,"(40.740036, -73.85289)",VANDOREN STREET,WESTSIDE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465288,Sedan,,,, +10/07/2021,19:00,BROOKLYN,11206,40.70028,-73.941154,"(40.70028, -73.941154)",BROADWAY,SUMNER PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465198,Sedan,,,, +10/07/2021,20:55,BROOKLYN,11214,40.595104,-74.00091,"(40.595104, -74.00091)",,,8973 BAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465606,Sedan,,,, +10/06/2021,18:45,BROOKLYN,11208,40.671326,-73.87093,"(40.671326, -73.87093)",EUCLID AVENUE,BLAKE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465057,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,12:55,QUEENS,11434,,,,belt parkway,150 street,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4465940,Sedan,Sedan,Sedan,, +10/06/2021,23:34,QUEENS,11418,40.70437,-73.8177,"(40.70437, -73.8177)",,,87-42 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4464857,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,18:03,BRONX,10456,40.83419,-73.90019,"(40.83419, -73.90019)",EAST 170 STREET,FRANKLIN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4515551,Sedan,Sedan,,, +10/08/2021,13:13,QUEENS,11375,40.7365766,-73.8540497,"(40.7365766, -73.8540497)",HORACE HARDING EXPRESSWAY,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465394,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,21:40,BROOKLYN,11212,40.6705751,-73.9098301,"(40.6705751, -73.9098301)",,,61 THATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465428,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,15:00,QUEENS,11004,40.7417776,-73.707008,"(40.7417776, -73.707008)",82 AVENUE,263 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465685,Sedan,Bike,,, +12/11/2021,20:20,BROOKLYN,11235,40.594524,-73.93401,"(40.594524, -73.93401)",AVENUE X,BRIGHAM STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486265,Sedan,,,, +12/07/2021,9:20,MANHATTAN,10027,40.80826,-73.956276,"(40.80826, -73.956276)",,,59 MORNINGSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486146,Sedan,,,, +12/11/2021,13:50,MANHATTAN,10020,40.75862,-73.97739,"(40.75862, -73.97739)",,,1 WEST 50 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4486082,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,8:45,,,40.858986,-73.89382,"(40.858986, -73.89382)",WEBSTER AVENUE,EAST 187 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4486327,Sedan,Sedan,,, +12/11/2021,14:37,MANHATTAN,10017,40.7501,-73.974945,"(40.7501, -73.974945)",3 AVENUE,EAST 41 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485829,Sedan,,,, +12/10/2021,18:30,BROOKLYN,11210,40.630684,-73.94542,"(40.630684, -73.94542)",,,1628 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486138,Sedan,,,, +12/11/2021,7:16,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4485494,Sedan,Sedan,Sedan,, +12/11/2021,19:54,BRONX,10460,40.847233,-73.882,"(40.847233, -73.882)",BRONX PARK SOUTH,MOHEGAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4485966,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,8:40,BRONX,10472,40.835857,-73.87213,"(40.835857, -73.87213)",CROSS BRONX EXPRESSWAY,CROES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486106,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,6:19,,,40.625103,-74.14877,"(40.625103, -74.14877)",FOREST AVENUE,MORNINGSTAR ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485622,Sedan,Sedan,,, +12/30/2021,13:45,,,40.725727,-73.90037,"(40.725727, -73.90037)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4491203,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,12:45,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4490813,Carry All,Sedan,,, +04/02/2022,13:20,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516001,Dump,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,15:33,MANHATTAN,10065,40.76524,-73.95788,"(40.76524, -73.95788)",EAST 68 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491231,E-Scooter,,,, +12/29/2021,19:30,BROOKLYN,11210,40.628914,-73.955956,"(40.628914, -73.955956)",,,998 EAST 21 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491323,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,15:54,QUEENS,11418,40.7073,-73.835464,"(40.7073, -73.835464)",,,116-25 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491627,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,3:00,BROOKLYN,11217,40.677753,-73.97539,"(40.677753, -73.97539)",,,89 STERLING PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491422,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,22:35,BROOKLYN,11211,40.71406,-73.95292,"(40.71406, -73.95292)",RODNEY STREET,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491126,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,5:50,,,40.788956,-73.823555,"(40.788956, -73.823555)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,Unspecified,,4490825,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +12/26/2021,14:47,,,40.65591,-73.89191,"(40.65591, -73.89191)",ALABAMA AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491265,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,18:00,BROOKLYN,11213,40.66381,-73.9381,"(40.66381, -73.9381)",,,733 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4491132,Sedan,Sedan,,, +12/23/2021,14:00,BRONX,10455,40.819527,-73.91621,"(40.819527, -73.91621)",MELROSE AVENUE,EAST 154 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491081,Bus,,,, +12/31/2021,11:00,BROOKLYN,11211,40.71224,-73.957146,"(40.71224, -73.957146)",HAVEMEYER STREET,SOUTH 1 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490985,Sedan,,,, +12/24/2021,14:35,BROOKLYN,11213,40.672077,-73.941956,"(40.672077, -73.941956)",KINGSTON AVENUE,STERLING PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491492,Sedan,Bike,,, +12/28/2021,2:30,MANHATTAN,10033,40.847427,-73.931404,"(40.847427, -73.931404)",WEST 180 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4490853,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,8:25,,,40.78417,-73.84675,"(40.78417, -73.84675)",121 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4490637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:00,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516262,Sedan,Sedan,,, +04/02/2022,4:12,BROOKLYN,11233,40.676395,-73.91187,"(40.676395, -73.91187)",ATLANTIC AVENUE,GUNTHER PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515617,,,,, +03/21/2022,11:30,BROOKLYN,11205,40.69133,-73.95177,"(40.69133, -73.95177)",DE KALB AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516017,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,7:40,,,40.835777,-73.91648,"(40.835777, -73.91648)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4516292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/02/2022,23:45,BROOKLYN,11230,40.616177,-73.96456,"(40.616177, -73.96456)",,,1325 EAST 10 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4515693,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,17:18,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516043,Sedan,,,, +04/02/2022,16:10,QUEENS,11691,40.60231,-73.75092,"(40.60231, -73.75092)",,,18-33 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515521,Pick-up Truck,Sedan,,, +04/02/2022,23:30,MANHATTAN,10011,40.74044,-74.00203,"(40.74044, -74.00203)",WEST 15 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516002,Sedan,,,, +04/02/2022,5:35,,,40.801754,-73.93121,"(40.801754, -73.93121)",1 AVENUE,EAST 125 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516037,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,12:20,BROOKLYN,11249,40.712597,-73.967735,"(40.712597, -73.967735)",KENT AVENUE,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516066,Sedan,Box Truck,,, +04/02/2022,11:20,,,40.558887,-74.1977,"(40.558887, -74.1977)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515526,Sedan,,,, +04/02/2022,13:00,,,40.748276,-73.93918,"(40.748276, -73.93918)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515604,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,10:23,,,40.688305,-73.75607,"(40.688305, -73.75607)",120 AVENUE,193 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,18:55,QUEENS,11414,40.669556,-73.84634,"(40.669556, -73.84634)",SOUTH CONDUIT AVENUE,89 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515902,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,23:20,,,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516305,Sedan,,,, +04/02/2022,20:00,,,40.730946,-73.993256,"(40.730946, -73.993256)",MERCER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516105,Sedan,,,, +04/02/2022,9:32,,,40.879307,-73.90295,"(40.879307, -73.90295)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516256,Sedan,Sedan,,, +04/02/2022,23:21,,,40.818707,-73.8089,"(40.818707, -73.8089)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515535,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,16:36,,,40.702847,-73.93353,"(40.702847, -73.93353)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515719,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,12:50,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4515506,Pick-up Truck,Tractor Truck Diesel,,, +04/02/2022,22:00,,,40.837513,-73.91478,"(40.837513, -73.91478)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Following Too Closely,Turning Improperly,,,,4515658,Sedan,Sedan,,, +04/02/2022,13:15,BROOKLYN,11222,40.718918,-73.939514,"(40.718918, -73.939514)",,,280 FROST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515987,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,16:00,,,,,,WEST 158 STREET,HENRY HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515647,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,1:20,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516175,Sedan,,,, +04/02/2022,0:00,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516044,Sedan,,,, +04/02/2022,1:10,QUEENS,11385,40.71029,-73.91789,"(40.71029, -73.91789)",STARR STREET,ONDERDONK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4515772,Sedan,Sedan,,, +04/02/2022,22:10,MANHATTAN,10013,40.715584,-74.00304,"(40.715584, -74.00304)",LAFAYETTE STREET,WORTH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516015,Sedan,Bike,,, +03/30/2022,22:20,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4516054,Taxi,,,, +04/01/2022,11:25,,,40.812737,-73.93762,"(40.812737, -73.93762)",EAST 135 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4516033,Sedan,Sedan,,, +04/02/2022,11:24,,,40.785294,-73.969345,"(40.785294, -73.969345)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515890,Bike,Sedan,,, +04/01/2022,6:15,,,40.823402,-73.88179,"(40.823402, -73.88179)",BRUCKNER BOULEVARD,CLOSE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516144,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,18:00,QUEENS,11432,40.714146,-73.78989,"(40.714146, -73.78989)",,,86-15 AVA PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516275,Sedan,,,, +04/02/2022,14:00,BROOKLYN,11208,40.68907,-73.874596,"(40.68907, -73.874596)",,,833 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515745,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,10:25,BROOKLYN,11225,40.663727,-73.95386,"(40.663727, -73.95386)",EMPIRE BOULEVARD,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516163,Sedan,Sedan,,, +04/02/2022,13:35,BROOKLYN,11208,40.677498,-73.87149,"(40.677498, -73.87149)",CONDUIT BOULEVARD,PINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515739,Pick-up Truck,Sedan,,, +04/02/2022,1:40,QUEENS,11377,40.746075,-73.901985,"(40.746075, -73.901985)",,,39-40 62 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515485,Station Wagon/Sport Utility Vehicle,,,, +03/16/2022,17:31,BROOKLYN,11224,40.574894,-73.98662,"(40.574894, -73.98662)",WEST 20 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516188,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,3:50,BROOKLYN,11219,40.6406,-73.99434,"(40.6406, -73.99434)",FORT HAMILTON PARKWAY,NEW UTRECHT AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4515579,Sedan,,,, +04/02/2022,6:00,BROOKLYN,11201,40.69201,-73.991234,"(40.69201, -73.991234)",,,65 COURT STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4515810,Sedan,Sedan,Sedan,, +03/26/2022,21:10,,,40.61118,-74.15261,"(40.61118, -74.15261)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4516272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/15/2022,8:19,BROOKLYN,11236,40.648354,-73.91001,"(40.648354, -73.91001)",EAST 94 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516115,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,19:09,,,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515822,Station Wagon/Sport Utility Vehicle,Bus,,, +04/02/2022,9:50,BRONX,10466,40.890587,-73.86332,"(40.890587, -73.86332)",,,4030 BRONX BOULEVARD,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4515970,Sedan,Sedan,Sedan,Sedan, +07/02/2022,1:40,BROOKLYN,11234,40.613117,-73.92631,"(40.613117, -73.92631)",FLATBUSH AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542603,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,0:53,BRONX,10459,40.81614,-73.894875,"(40.81614, -73.894875)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,1:26,BROOKLYN,11221,40.697582,-73.92983,"(40.697582, -73.92983)",MYRTLE AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515703,Bus,Sedan,,, +03/31/2022,15:06,BROOKLYN,11225,40.666435,-73.95341,"(40.666435, -73.95341)",,,211 CROWN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516181,Bus,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,14:07,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4516214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/02/2022,2:35,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4516009,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,15:00,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4516084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,10:27,BROOKLYN,11231,40.677998,-74.00415,"(40.677998, -74.00415)",HICKS STREET,NELSON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4515873,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,5:30,QUEENS,11420,40.67854,-73.807205,"(40.67854, -73.807205)",116 AVENUE,133 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4515945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +03/31/2022,8:30,QUEENS,11691,40.595768,-73.77389,"(40.595768, -73.77389)",BEACH CHANNEL DRIVE,BEACH 42 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516286,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,21:30,BRONX,10462,40.833496,-73.858246,"(40.833496, -73.858246)",,,1982 WESTCHESTER AVENUE,3,0,0,0,0,0,3,0,Other Vehicular,,,,,4516148,Sedan,,,, +04/02/2022,16:00,MANHATTAN,10128,40.77716,-73.94794,"(40.77716, -73.94794)",,,439 EAST 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515956,Sedan,,,, +04/02/2022,12:00,,,40.67505,-73.95639,"(40.67505, -73.95639)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516154,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,0:05,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Lane Changing,,,,4515453,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,8:33,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516268,Bus,Sedan,,, +03/27/2022,12:35,BROOKLYN,11224,40.57347,-73.99929,"(40.57347, -73.99929)",,,2935 WEST 33 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516182,Sedan,,,, +04/02/2022,22:45,,,40.653656,-73.86239,"(40.653656, -73.86239)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4515744,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/18/2022,17:27,MANHATTAN,10035,40.797306,-73.93446,"(40.797306, -73.93446)",1 AVENUE,EAST 118 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4516027,Sedan,Carry All,,, +04/02/2022,5:45,BRONX,10459,40.8338,-73.88323,"(40.8338, -73.88323)",SHERIDAN EXPRESSWAY,EAST 173 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515557,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,23:22,MANHATTAN,10002,40.713535,-73.99635,"(40.713535, -73.99635)",,,33 EAST BROADWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4516018,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,18:15,,,,,,HORACE HARDING EXPRESSWAY,164 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516248,Sedan,Sedan,,, +03/31/2022,16:51,BROOKLYN,11236,40.635445,-73.91065,"(40.635445, -73.91065)",,,967 EAST 82 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,3:17,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515889,Sedan,,,, +04/02/2022,3:24,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",UNION AVENUE,GRAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515909,Sedan,Taxi,,, +03/27/2022,20:25,,,40.81269,-73.95313,"(40.81269, -73.95313)",CONVENT AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516073,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/02/2022,12:40,BROOKLYN,11249,40.716118,-73.96102,"(40.716118, -73.96102)",,,124 NORTH 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515989,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,3:33,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515643,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,18:15,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",SAYRES AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4515688,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,17:00,QUEENS,11411,40.68762,-73.72789,"(40.68762, -73.72789)",119 AVENUE,236 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515522,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,20:00,,,40.853027,-73.91827,"(40.853027, -73.91827)",WEST TREMONT AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516003,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,7:15,STATEN ISLAND,10304,40.62413,-74.08368,"(40.62413, -74.08368)",,,122 TARGEE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515804,Sedan,Sedan,,, +03/31/2022,12:31,BRONX,10463,40.87832,-73.90656,"(40.87832, -73.90656)",,,3030 GODWIN TERRACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4516260,Sedan,Sedan,,, +04/02/2022,1:51,BROOKLYN,11212,40.654675,-73.917046,"(40.654675, -73.917046)",CHURCH AVENUE,EAST 94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,2:10,BROOKLYN,11221,40.693863,-73.92971,"(40.693863, -73.92971)",DE KALB AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515707,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,8:35,,,40.749184,-73.758194,"(40.749184, -73.758194)",HORACE HARDING EXPRESSWAY,220 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,View Obstructed/Limited,,,,4516085,Sedan,Tractor Truck Diesel,,, +04/02/2022,18:25,MANHATTAN,10002,40.71786,-73.98272,"(40.71786, -73.98272)",,,50 PITT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4516038,Sedan,,,, +04/02/2022,17:27,BRONX,10468,40.867798,-73.89912,"(40.867798, -73.89912)",,,40 WEST KINGSBRIDGE ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516045,Bike,Sedan,,, +04/02/2022,15:30,,,40.743477,-73.73286,"(40.743477, -73.73286)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4515514,Motorcycle,,,, +04/02/2022,11:05,BROOKLYN,11229,40.60084,-73.93812,"(40.60084, -73.93812)",AVENUE U,FORD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515923,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/02/2022,15:00,QUEENS,11104,40.745327,-73.922066,"(40.745327, -73.922066)",43 AVENUE,42 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515543,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/31/2022,10:45,QUEENS,11421,40.69158,-73.86548,"(40.69158, -73.86548)",,,76-02 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516008,Sedan,Sedan,,, +04/02/2022,12:45,MANHATTAN,10016,40.74826,-73.97443,"(40.74826, -73.97443)",,,250 EAST 39 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515499,Sedan,Bike,,, +04/02/2022,22:17,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515720,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,21:56,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516036,Sedan,Sedan,,, +04/02/2022,4:22,BROOKLYN,11222,40.72046,-73.93798,"(40.72046, -73.93798)",,,473 MORGAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515986,Sedan,,,, +04/02/2022,0:00,QUEENS,11358,40.75327,-73.79313,"(40.75327, -73.79313)",,,172-21 46 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515603,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,15:25,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516212,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,11:40,,,40.659336,-73.92726,"(40.659336, -73.92726)",REMSEN AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4516167,Sedan,Sedan,Sedan,, +04/02/2022,11:15,,,40.61135,-74.09847,"(40.61135, -74.09847)",NARROWS ROAD NORTH,CLOVE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515812,Sedan,,,, +04/02/2022,16:50,,,40.729782,-73.89566,"(40.729782, -73.89566)",69 STREET,53 DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4515774,Sedan,Pick-up Truck,,, +03/29/2022,12:00,,,,,,LINDEN BOULEVARD,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516102,Box Truck,,,, +04/01/2022,21:00,BRONX,10462,40.835896,-73.855865,"(40.835896, -73.855865)",UNIONPORT ROAD,STARLING AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4516143,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,11:25,STATEN ISLAND,10314,40.613743,-74.11415,"(40.613743, -74.11415)",VICTORY BOULEVARD,ROYAL OAK ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4515828,Sedan,,,, +04/02/2022,7:00,MANHATTAN,10014,40.742374,-74.0088,"(40.742374, -74.0088)",WEST STREET,WEST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515588,Sedan,,,, +10/09/2021,21:22,QUEENS,11385,40.707314,-73.87114,"(40.707314, -73.87114)",,,79-12 71 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465785,Sedan,,,, +04/02/2022,16:57,BROOKLYN,11220,40.646095,-74.00928,"(40.646095, -74.00928)",,,4811 5 AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4515531,Sedan,Motorbike,,, +03/31/2022,23:00,QUEENS,11432,40.70673,-73.806274,"(40.70673, -73.806274)",,,150-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516255,Sedan,,,, +03/30/2022,23:30,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516014,Sedan,Sedan,,, +04/02/2022,0:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516049,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,13:00,BRONX,10456,40.825848,-73.90993,"(40.825848, -73.90993)",WASHINGTON AVENUE,EAST 164 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4515661,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,17:45,MANHATTAN,10024,40.787533,-73.9687,"(40.787533, -73.9687)",,,18 WEST 89 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515891,Sedan,,,, +03/31/2022,20:00,MANHATTAN,10035,40.79975,-73.93267,"(40.79975, -73.93267)",,,2360 1 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4516031,Sedan,Sedan,,, +04/02/2022,3:00,QUEENS,11433,40.69478,-73.79363,"(40.69478, -73.79363)",,,108-10 159 STREET,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4515969,Sedan,Sedan,,, +04/02/2022,20:44,BROOKLYN,11205,40.68815,-73.96986,"(40.68815, -73.96986)",,,317 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515528,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,7:23,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",QUEENS BOULEVARD,58 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515487,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,19:41,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515733,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,17:50,QUEENS,11414,40.6661,-73.85193,"(40.6661, -73.85193)",,,82-09 153 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4515903,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,6:21,MANHATTAN,10010,40.742317,-73.99144,"(40.742317, -73.99144)",,,60 WEST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515670,Sedan,,,, +03/30/2022,7:50,QUEENS,11385,40.70096,-73.88156,"(40.70096, -73.88156)",,,73-28 69 PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516172,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,16:10,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4516189,Bike,Sedan,,, +03/09/2022,18:48,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",FLATLANDS AVENUE,RALPH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516114,Sedan,,,, +04/01/2022,0:20,,,40.606102,-74.07983,"(40.606102, -74.07983)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4516273,Sedan,,,, +04/02/2022,22:50,QUEENS,11429,40.711876,-73.73029,"(40.711876, -73.73029)",224 STREET,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4515747,Station Wagon/Sport Utility Vehicle,Minibike,,, +03/29/2022,12:33,BRONX,10466,40.8871,-73.8635,"(40.8871, -73.8635)",,,626 EAST 223 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516134,Sedan,,,, +03/30/2022,14:55,QUEENS,11691,40.6028,-73.74879,"(40.6028, -73.74879)",NAMEOKE STREET,CORNAGA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516004,Sedan,,,, +04/02/2022,11:00,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515558,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,16:43,BROOKLYN,11206,40.693672,-73.95099,"(40.693672, -73.95099)",,,463 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4516028,Bus,,,, +04/02/2022,23:10,,,40.88305,-73.89983,"(40.88305, -73.89983)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516259,Pick-up Truck,Sedan,,, +03/31/2022,10:24,BRONX,10453,40.85937,-73.9068,"(40.85937, -73.9068)",AQUEDUCT AVENUE,WEST 183 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515999,Taxi,,,, +04/02/2022,21:50,BROOKLYN,11236,40.63835,-73.90889,"(40.63835, -73.90889)",FLATLANDS AVENUE,EAST 86 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4515542,Taxi,,,, +04/02/2022,16:44,BROOKLYN,11226,40.6523,-73.95264,"(40.6523, -73.95264)",,,763 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515650,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,21:55,MANHATTAN,10026,40.799515,-73.95366,"(40.799515, -73.95366)",,,150 WEST 111 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4516057,Bike,Sedan,,, +06/03/2021,0:00,,,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427045,,,,, +01/01/2022,7:33,,,40.771477,-73.91824,"(40.771477, -73.91824)",HOYT AVENUE NORTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491400,Sedan,,,, +03/30/2022,9:43,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,17:10,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515523,Sedan,Sedan,,, +03/31/2022,15:00,QUEENS,11432,40.717716,-73.811264,"(40.717716, -73.811264)",,,150-75 GOETHALS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516274,Sedan,,,, +03/25/2022,7:05,MANHATTAN,10013,40.720585,-73.99862,"(40.720585, -73.99862)",,,180 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516127,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,12:12,BRONX,10461,40.842506,-73.8453,"(40.842506, -73.8453)",,,2725 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4515835,Sedan,,,, +03/31/2022,18:35,BROOKLYN,11213,40.664856,-73.94078,"(40.664856, -73.94078)",,,729 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516180,Sedan,,,, +03/26/2022,21:29,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4516184,Sedan,Sedan,Taxi,Sedan, +04/02/2022,1:53,BRONX,10468,40.86247,-73.90029,"(40.86247, -73.90029)",EAST FORDHAM ROAD,WALTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4515477,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,0:00,BROOKLYN,11249,40.704258,-73.9657,"(40.704258, -73.9657)",TAYLOR STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515918,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,20:00,,,40.70207,-73.78315,"(40.70207, -73.78315)",106 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515961,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,10:44,,,40.608955,-74.09046,"(40.608955, -74.09046)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,22:21,QUEENS,11429,40.715015,-73.741646,"(40.715015, -73.741646)",217 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4515743,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,22:00,,,40.739082,-73.79345,"(40.739082, -73.79345)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516080,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,18:00,,,40.583664,-73.971756,"(40.583664, -73.971756)",SHORE PARKWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4515792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,21:08,QUEENS,11419,40.685806,-73.83259,"(40.685806, -73.83259)",110 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4515947,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,2:08,,,40.658398,-73.919975,"(40.658398, -73.919975)",EAST 95 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515626,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,14:00,QUEENS,11374,40.730335,-73.86763,"(40.730335, -73.86763)",BOOTH STREET,62 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515511,Sedan,,,, +03/27/2022,1:45,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516019,Sedan,Sedan,,, +03/30/2022,7:50,MANHATTAN,10012,40.72272,-73.994156,"(40.72272, -73.994156)",ELIZABETH STREET,PRINCE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516087,Flat Bed,Bike,,, +04/02/2022,5:00,BROOKLYN,11221,40.68864,-73.920555,"(40.68864, -73.920555)",BROADWAY,WOODBINE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4515708,Sedan,Sedan,Sedan,Sedan, +04/02/2022,5:20,,,40.689915,-73.7779,"(40.689915, -73.7779)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4515682,Sedan,,,, +03/31/2022,12:15,MANHATTAN,10002,40.716393,-73.98454,"(40.716393, -73.98454)",BROOME STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4516040,Sedan,Sedan,Sedan,, +04/02/2022,16:00,QUEENS,11691,40.597794,-73.783104,"(40.597794, -73.783104)",,,51-45 ALMEDA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516285,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,5:47,MANHATTAN,10025,40.80432,-73.966606,"(40.80432, -73.966606)",,,2843 BROADWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515779,Bus,Sedan,,, +04/02/2022,13:30,QUEENS,11365,40.73292,-73.807915,"(40.73292, -73.807915)",,,67-46 161 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515883,Ambulance,Sedan,,, +04/02/2022,15:50,,,40.808243,-73.92785,"(40.808243, -73.92785)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Following Too Closely,,,4516236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +03/20/2022,13:44,,,40.674313,-73.95009,"(40.674313, -73.95009)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4516155,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,2:25,,,40.745285,-73.98874,"(40.745285, -73.98874)",WEST 28 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542970,Sedan,Sedan,,, +06/07/2021,15:10,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427096,Sedan,Sedan,,, +04/02/2022,20:10,,,,,,VANWYCK EXPRESSWAY,135 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,2:48,BROOKLYN,11208,40.669044,-73.87578,"(40.669044, -73.87578)",DUMONT AVENUE,MILFORD STREET,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4515748,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/30/2022,17:10,,,40.728466,-73.90871,"(40.728466, -73.90871)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4516138,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +04/02/2022,1:50,BRONX,10473,40.815937,-73.85981,"(40.815937, -73.85981)",,,506 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4516147,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/02/2022,20:50,BROOKLYN,11225,40.66913,-73.953804,"(40.66913, -73.953804)",,,1148 UNION STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516168,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,14:31,,,40.692844,-73.99311,"(40.692844, -73.99311)",,,CLINTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515813,Sedan,,,, +04/24/2022,21:15,BROOKLYN,11234,40.612534,-73.92704,"(40.612534, -73.92704)",AVENUE S,HENDRICKSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4521652,Sedan,,,, +04/20/2022,15:49,BROOKLYN,11215,40.67712,-73.98326,"(40.67712, -73.98326)",,,232 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522142,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,0:15,BROOKLYN,11209,40.632694,-74.02728,"(40.632694, -74.02728)",,,7309 3 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522338,Sedan,E-Scooter,,, +04/24/2022,17:37,,,40.585342,-73.94157,"(40.585342, -73.94157)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4521742,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/24/2022,4:45,BRONX,10458,0,0,"(0.0, 0.0)",,,2302 CROTONA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4521820,Sedan,Sedan,Sedan,, +04/05/2022,7:56,BROOKLYN,11208,40.66638,-73.86109,"(40.66638, -73.86109)",FORBELL STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522283,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,23:15,BRONX,10463,40.880966,-73.90546,"(40.880966, -73.90546)",WEST 232 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522230,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,17:18,BRONX,10458,40.851997,-73.88555,"(40.851997, -73.88555)",EAST 183 STREET,BEAUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,17:10,,,40.710907,-73.95165,"(40.710907, -73.95165)",GRAND STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4521721,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/24/2022,2:28,BRONX,10475,40.882153,-73.83193,"(40.882153, -73.83193)",,,2175 REEDS MILL LANE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4522206,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/18/2022,13:00,,,40.881794,-73.90092,"(40.881794, -73.90092)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4522223,Sedan,Sedan,Sedan,, +04/20/2022,14:30,MANHATTAN,10026,40.80151,-73.95007,"(40.80151, -73.95007)",,,95 LENOX AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522237,Station Wagon/Sport Utility Vehicle,,,, +04/24/2022,10:16,BRONX,10458,40.859745,-73.8958,"(40.859745, -73.8958)",TIEBOUT AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521765,Station Wagon/Sport Utility Vehicle,,,, +04/25/2022,3:30,QUEENS,11417,40.670776,-73.84788,"(40.670776, -73.84788)",NORTH CONDUIT AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,19:21,BROOKLYN,11207,40.65452,-73.882225,"(40.65452, -73.882225)",FLATLANDS AVENUE,VAN SICLEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4522055,Station Wagon/Sport Utility Vehicle,,,, +04/25/2022,5:00,,,40.85937,-73.9068,"(40.85937, -73.9068)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4521888,Station Wagon/Sport Utility Vehicle,,,, +04/25/2022,19:19,,,40.769325,-73.83635,"(40.769325, -73.83635)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4522023,Tractor Truck Diesel,Sedan,,, +01/01/2022,4:30,,,,,,Southern parkway,Jfk expressway,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4491626,Sedan,Sedan,,, +05/06/2021,15:34,MANHATTAN,10019,,,,12 AVENUE,WEST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4414157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,8:00,QUEENS,11414,40.66252,-73.84071,"(40.66252, -73.84071)",CROSS BAY BOULEVARD,157 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4420181,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2022,20:00,QUEENS,11433,40.701874,-73.78928,"(40.701874, -73.78928)",,,168-26 104 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,9:17,BROOKLYN,11214,40.598766,-74.00075,"(40.598766, -74.00075)",CROPSEY AVENUE,21 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425512,Taxi,Sedan,,, +06/11/2021,16:00,MANHATTAN,10065,40.764786,-73.96844,"(40.764786, -73.96844)",EAST 62 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Tinted Windows,Cell Phone (hands-free),,,,4426784,Sedan,Pick-up Truck,,, +06/12/2021,18:00,,,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4426307,Sedan,Sedan,Sedan,, +06/12/2021,21:40,BROOKLYN,11213,40.67308,-73.93352,"(40.67308, -73.93352)",,,180 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426595,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,1:58,BROOKLYN,11237,40.70784,-73.92722,"(40.70784, -73.92722)",INGRAHAM STREET,VARICK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426418,Pick-up Truck,,,, +06/12/2021,16:50,,,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427227,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,19:00,QUEENS,11411,40.691948,-73.730675,"(40.691948, -73.730675)",LINDEN BOULEVARD,231 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427142,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,17:16,BROOKLYN,11204,40.615433,-73.99775,"(40.615433, -73.99775)",17 AVENUE,74 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4426966,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,16:05,STATEN ISLAND,10306,40.57494,-74.10527,"(40.57494, -74.10527)",PRESCOTT AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426942,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,2:00,BROOKLYN,11236,40.633106,-73.898026,"(40.633106, -73.898026)",,,1565 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4425920,Sedan,Sedan,Sedan,Sedan,Sedan +06/12/2021,21:30,,,40.693123,-73.77279,"(40.693123, -73.77279)",LINDEN BOULEVARD,177 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426376,Sedan,,,, +06/12/2021,0:00,BROOKLYN,11207,40.670364,-73.89063,"(40.670364, -73.89063)",,,429 MILLER AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4427254,Sedan,Sedan,Sedan,Sedan, +06/12/2021,22:34,BROOKLYN,11223,40.607258,-73.96727,"(40.607258, -73.96727)",OCEAN PARKWAY,QUENTIN ROAD,,8,0,0,0,0,0,8,0,Unsafe Speed,Unspecified,,,,4426755,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,3:45,QUEENS,11372,40.755054,-73.88338,"(40.755054, -73.88338)",,,33-29 84 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426459,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/11/2021,8:30,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426903,Sedan,Sedan,,, +06/11/2021,7:52,BRONX,10467,40.87367,-73.879234,"(40.87367, -73.879234)",EAST 204 STREET,EAST 205 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427007,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,14:04,QUEENS,11693,40.61488,-73.82164,"(40.61488, -73.82164)",CROSS BAY BOULEVARD,EAST 1 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4427071,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/12/2021,1:00,BROOKLYN,11219,40.62515,-74.005135,"(40.62515, -74.005135)",,,1213 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4426105,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/12/2021,16:40,BROOKLYN,11233,40.677082,-73.92296,"(40.677082, -73.92296)",,,1875 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426485,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,15:47,MANHATTAN,10011,40.743427,-73.99613,"(40.743427, -73.99613)",7 AVENUE,WEST 22 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4426962,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,17:00,BRONX,10453,40.8514,-73.90606,"(40.8514, -73.90606)",CRESTON AVENUE,EAST 179 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4426995,Sedan,Sedan,Sedan,, +06/11/2021,8:00,,,40.675053,-73.87436,"(40.675053, -73.87436)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426886,Motorscooter,Sedan,,, +06/12/2021,11:11,QUEENS,11378,40.719334,-73.906845,"(40.719334, -73.906845)",60 STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4426144,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,18:20,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426267,Sedan,,,, +06/12/2021,15:15,QUEENS,11004,40.73659,-73.71181,"(40.73659, -73.71181)",,,256-05 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426615,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,16:30,BROOKLYN,11212,40.65492,-73.92101,"(40.65492, -73.92101)",WILLMOHR STREET,EAST 91 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427169,Pick-up Truck,Sedan,,, +06/12/2021,17:40,BROOKLYN,11213,40.668068,-73.935844,"(40.668068, -73.935844)",,,1600 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426678,Station Wagon/Sport Utility Vehicle,Ambulance,,, +06/12/2021,2:27,MANHATTAN,10075,40.77071,-73.952896,"(40.77071, -73.952896)",,,427 EAST 77 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426794,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,4:00,BROOKLYN,11204,40.623367,-73.989494,"(40.623367, -73.989494)",60 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4426828,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/12/2021,17:12,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426244,Sedan,Sedan,,, +06/12/2021,12:44,QUEENS,11354,40.770153,-73.81313,"(40.770153, -73.81313)",MURRAY STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426214,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,17:50,BROOKLYN,11217,40.68358,-73.97617,"(40.68358, -73.97617)",,,620 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4427030,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,12:50,MANHATTAN,10019,,,,12 AVENUE,WEST 58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,Unspecified,,,4427058,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/05/2021,17:05,BRONX,10469,40.880337,-73.83824,"(40.880337, -73.83824)",,,3443 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427099,Sedan,,,, +06/12/2021,10:22,BROOKLYN,11234,40.622272,-73.92827,"(40.622272, -73.92827)",,,1582 EAST 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426238,Box Truck,Sedan,,, +06/12/2021,8:00,QUEENS,11354,40.769283,-73.82445,"(40.769283, -73.82445)",32 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426215,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,2:00,QUEENS,11421,40.693897,-73.85404,"(40.693897, -73.85404)",91 STREET,86 DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426977,Sedan,,,, +06/12/2021,18:35,,,40.834167,-73.92779,"(40.834167, -73.92779)",NELSON AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4426261,Sedan,Sedan,,, +06/12/2021,6:40,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",HUNTERS POINT AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426173,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,17:15,QUEENS,11414,40.659042,-73.83121,"(40.659042, -73.83121)",,,159-54 102 STREET,1,0,1,0,0,0,0,0,Brakes Defective,Unspecified,,,,4426817,Sedan,Sedan,,, +06/12/2021,13:37,MANHATTAN,10034,40.867382,-73.926414,"(40.867382, -73.926414)",SEAMAN AVENUE,BEAK STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426439,Sedan,Bike,,, +06/12/2021,19:30,,,40.833755,-73.87407,"(40.833755, -73.87407)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4426521,Sedan,Sedan,Sedan,, +06/12/2021,0:49,,,40.78959,-73.81954,"(40.78959, -73.81954)",CROSS ISLAND PARKWAY,147 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427213,Sedan,Sedan,,, +06/10/2021,0:05,MANHATTAN,10003,40.734837,-73.99076,"(40.734837, -73.99076)",BROADWAY,EAST 14 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427271,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,9:40,BROOKLYN,11209,40.623264,-74.02449,"(40.623264, -74.02449)",,,513 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426872,Sedan,,,, +06/12/2021,18:30,,,,,,,,127-16 34 street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426707,Sedan,E-Bike,,, +06/12/2021,6:55,MANHATTAN,10030,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Alcohol Involvement,,,,4426838,Sedan,Motorcycle,,, +06/12/2021,16:00,,,40.70921,-73.87017,"(40.70921, -73.87017)",80 STREET,COOPER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4426202,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,21:08,BROOKLYN,11201,40.7007,-73.98869,"(40.7007, -73.98869)",PROSPECT STREET,ADAMS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,Unspecified,,,4426251,Sedan,Sedan,,, +06/12/2021,15:45,,,40.66495,-73.993355,"(40.66495, -73.993355)",4 AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4426386,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,18:56,,,40.851044,-73.91488,"(40.851044, -73.91488)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427020,Sedan,,,, +06/07/2021,17:20,BROOKLYN,11238,40.674572,-73.96314,"(40.674572, -73.96314)",WASHINGTON AVENUE,STERLING PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4427127,Motorcycle,,,, +06/12/2021,13:21,,,40.623657,-74.02064,"(40.623657, -74.02064)",80 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426666,Sedan,Box Truck,,, +06/12/2021,21:24,,,40.650764,-73.88481,"(40.650764, -73.88481)",,,PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426915,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,5:20,,,40.876022,-73.872925,"(40.876022, -73.872925)",PARKSIDE PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4427031,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/12/2021,18:25,MANHATTAN,10010,40.74073,-73.981766,"(40.74073, -73.981766)",EAST 26 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4426268,Bike,Sedan,,, +06/12/2021,21:05,QUEENS,11385,40.705196,-73.88425,"(40.705196, -73.88425)",,,70-02 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427087,Sedan,,,, +06/12/2021,8:46,MANHATTAN,10016,40.749725,-73.98363,"(40.749725, -73.98363)",WEST 36 STREET,5 AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4426339,Sedan,Sedan,Sedan,, +06/08/2021,3:41,,,40.60507,-73.97913,"(40.60507, -73.97913)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4426983,Sedan,Sedan,,, +06/12/2021,13:30,MANHATTAN,10025,40.792854,-73.96753,"(40.792854, -73.96753)",WEST 96 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426220,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,8:00,BROOKLYN,11208,40.67911,-73.880615,"(40.67911, -73.880615)",ATLANTIC AVENUE,HIGHLAND PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426902,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,15:35,,,40.8913,-73.8507,"(40.8913, -73.8507)",EAST 233 STREET,EDENWALD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426748,Sedan,Sedan,,, +06/12/2021,14:30,MANHATTAN,10022,40.7606,-73.96434,"(40.7606, -73.96434)",2 AVENUE,EAST 59 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426803,E-Scooter,,,, +05/30/2021,19:18,,,40.88893,-73.86579,"(40.88893, -73.86579)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427100,Sedan,Sedan,,, +06/12/2021,2:55,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/22/2021,4:30,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426971,Sedan,,,, +06/12/2021,12:05,QUEENS,11101,40.75371,-73.92109,"(40.75371, -73.92109)",,,35-40 42 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426432,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,18:00,,,40.83235,-73.92107,"(40.83235, -73.92107)",EAST 166 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426948,Sedan,,,, +06/12/2021,10:50,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",MYRTLE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4426487,Ambulance,Taxi,,, +06/11/2021,22:28,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,RALPH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427229,Sedan,E-Bike,,, +06/12/2021,23:27,QUEENS,11354,40.765686,-73.82913,"(40.765686, -73.82913)",137 STREET,LEAVITT STREET,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4426364,Sedan,,,, +04/30/2021,20:00,BROOKLYN,11207,40.66748,-73.89726,"(40.66748, -73.89726)",,,585 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427256,Sedan,Sedan,,, +06/12/2021,23:18,MANHATTAN,10017,40.748177,-73.970375,"(40.748177, -73.970375)",1 AVENUE,EAST 41 STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4426640,Motorcycle,,,, +06/12/2021,0:15,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",EAST GUN HILL ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427011,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,19:30,,,,,,WEST BEDFORD PARK BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4426292,Bus,Multi-Wheeled Vehicle,,, +06/12/2021,16:00,BROOKLYN,11208,40.665176,-73.88154,"(40.665176, -73.88154)",,,793 CLEVELAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426908,Sedan,Sedan,,, +06/11/2021,18:58,BROOKLYN,11217,40.679333,-73.97533,"(40.679333, -73.97533)",6 AVENUE,PROSPECT PLACE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4427040,Taxi,Bike,,, +06/12/2021,22:50,BROOKLYN,11216,40.687244,-73.95469,"(40.687244, -73.95469)",BEDFORD AVENUE,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426548,Sedan,Sedan,,, +06/12/2021,2:00,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426379,Sedan,Sedan,,, +06/12/2021,13:36,,,40.67983,-73.9583,"(40.67983, -73.9583)",CLASSON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426553,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,5:38,QUEENS,11372,40.7494,-73.87573,"(40.7494, -73.87573)",91 STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426460,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,1:15,MANHATTAN,10037,40.809746,-73.93839,"(40.809746, -73.93839)",,,27 EAST 131 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4426954,Sedan,,,, +06/12/2021,2:50,,,40.75469,-73.99536,"(40.75469, -73.99536)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425921,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,11:17,,,40.607674,-74.00172,"(40.607674, -74.00172)",85 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,12:50,,,40.684734,-73.950455,"(40.684734, -73.950455)",MADISON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427077,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,4:33,BROOKLYN,11230,40.615204,-73.96337,"(40.615204, -73.96337)",CONEY ISLAND AVENUE,AVENUE N,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4426333,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/11/2021,14:50,,,40.661835,-73.89311,"(40.661835, -73.89311)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4426890,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,10:45,BROOKLYN,11233,40.678947,-73.92324,"(40.678947, -73.92324)",,,1904 FULTON STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4427068,Sedan,,,, +06/12/2021,20:49,BRONX,10467,0,0,"(0.0, 0.0)",JEROME AVENUE,WEST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4427034,Enclosed Body - Nonremovable Enclosure,,,, +06/12/2021,16:13,STATEN ISLAND,10305,,,,Father Capodanno Blvd,Ocean ave,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426941,Taxi,Pick-up Truck,,, +06/12/2021,6:35,BRONX,10469,40.865993,-73.84071,"(40.865993, -73.84071)",,,2740 MICKLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426112,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,14:45,MANHATTAN,10011,40.741302,-74.00207,"(40.741302, -74.00207)",,,305 WEST 16 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4426963,Ambu,4 dr sedan,,, +06/12/2021,18:12,BRONX,10458,40.86539,-73.88684,"(40.86539, -73.88684)",WEBSTER AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426291,Sedan,,,, +06/12/2021,3:20,QUEENS,11372,40.750412,-73.874016,"(40.750412, -73.874016)",ELMHURST AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426467,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,22:31,,,40.851044,-73.91488,"(40.851044, -73.91488)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426996,Taxi,Moped,,, +06/12/2021,11:50,,,40.5758,-73.96114,"(40.5758, -73.96114)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426372,Box Truck,Sedan,,, +06/11/2021,8:00,,,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426885,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,20:10,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",EAST 126 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4426907,Sedan,Sedan,,, +07/02/2022,3:49,QUEENS,11106,40.763134,-73.92093,"(40.763134, -73.92093)",,,34-07 31 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4543120,Taxi,Sedan,,, +06/12/2021,16:51,QUEENS,11411,40.68815,-73.72963,"(40.68815, -73.72963)",234 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427143,Sedan,,,, +06/01/2021,12:30,BROOKLYN,11221,40.690052,-73.92369,"(40.690052, -73.92369)",,,888 QUINCY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427062,Sedan,Sedan,,, +06/09/2021,23:22,BROOKLYN,11222,40.736275,-73.95852,"(40.736275, -73.95852)",COMMERCIAL STREET,CLAY STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4426981,Motorcycle,Sedan,,, +06/11/2021,16:47,,,40.77918,-73.9508,"(40.77918, -73.9508)",2 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427234,Sedan,E-Bike,,, +06/12/2021,17:20,BROOKLYN,11201,40.69016,-73.98161,"(40.69016, -73.98161)",,,386 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4426219,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,18:37,MANHATTAN,10029,40.78722,-73.952065,"(40.78722, -73.952065)",EAST 97 STREET,PARK AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426240,Sedan,E-Scooter,,, +06/06/2021,12:00,BROOKLYN,11225,40.658905,-73.95833,"(40.658905, -73.95833)",,,72 RUTLAND ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427046,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,17:57,,,40.608215,-73.99809,"(40.608215, -73.99809)",82 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426308,Sedan,Sedan,,, +07/01/2022,23:20,BROOKLYN,11233,40.67015,-73.92325,"(40.67015, -73.92325)",,,1652 SAINT JOHNS PLACE,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4543288,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,21:00,BRONX,10459,40.828854,-73.89932,"(40.828854, -73.89932)",UNION AVENUE,EAST 168 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426721,E-Bike,,,, +06/10/2021,21:00,BRONX,10468,,,,,,2344 DAVIDSON AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4427006,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,17:00,BROOKLYN,11201,40.692722,-73.98433,"(40.692722, -73.98433)",,,188 DUFFIELD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4426204,Sedan,Station Wagon/Sport Utility Vehicle,E-Scooter,, +06/12/2021,16:16,BRONX,10469,40.867676,-73.85571,"(40.867676, -73.85571)",ARNOW AVENUE,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4426591,Pick-up Truck,,,, +06/12/2021,18:59,BRONX,10466,40.88851,-73.86009,"(40.88851, -73.86009)",WHITE PLAINS ROAD,EAST 226 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4426749,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/30/2022,14:39,,,,,,BROADWAY,ROEBLING STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4543405,Sedan,Bike,,, +06/12/2021,12:00,BROOKLYN,11218,,,,,,155 prospect park southwest,0,0,0,0,0,0,0,0,Unspecified,,,,,4426384,Sedan,,,, +06/12/2021,23:10,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426916,Sedan,Sedan,,, +06/12/2021,3:20,MANHATTAN,10011,40.742863,-74.003975,"(40.742863, -74.003975)",WEST 17 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426970,Sedan,,,, +06/09/2021,14:00,BROOKLYN,11219,40.62547,-74.00383,"(40.62547, -74.00383)",,,1250 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426873,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,21:00,MANHATTAN,10003,40.72359,-73.98918,"(40.72359, -73.98918)",,,64 EAST 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427275,Sedan,,,, +06/12/2021,5:55,,,40.72844,-73.87116,"(40.72844, -73.87116)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4426301,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/12/2021,20:45,BROOKLYN,11206,40.706917,-73.93972,"(40.706917, -73.93972)",BUSHWICK AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426409,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,16:05,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HILLSIDE AVENUE,HOLLIS COURT BOULEVARD,,0,1,0,0,0,0,0,1,Physical Disability,Unspecified,,,,4427132,Sedan,Sedan,,, +06/06/2021,17:05,,,40.67706,-73.96598,"(40.67706, -73.96598)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,1:30,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427022,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,20:47,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426911,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,18:00,BRONX,10454,40.803715,-73.91588,"(40.803715, -73.91588)",EAST 135 STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4427090,Sedan,Sedan,,, +06/12/2021,17:57,QUEENS,11368,40.73968,-73.849495,"(40.73968, -73.849495)",,,58-32 VANCLEEF STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426706,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,10:30,,,40.621998,-73.9743,"(40.621998, -73.9743)",EAST 2 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426835,Van,,,, +06/12/2021,15:41,BROOKLYN,11236,40.632725,-73.90017,"(40.632725, -73.90017)",EAST 88 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426264,Sedan,Sedan,,, +06/10/2021,6:05,BROOKLYN,11208,40.672855,-73.87131,"(40.672855, -73.87131)",SUTTER AVENUE,EUCLID AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427259,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,20:25,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426754,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/12/2021,18:52,BRONX,10462,40.848545,-73.86161,"(40.848545, -73.86161)",RHINELANDER AVENUE,MULINER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4426610,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/12/2021,13:10,BRONX,10458,40.861023,-73.89205,"(40.861023, -73.89205)",,,2500 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426438,Sedan,,,, +06/12/2021,17:11,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427130,Sedan,Bike,,, +06/09/2021,15:44,BRONX,10468,40.865158,-73.89648,"(40.865158, -73.89648)",,,2600 CRESTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4426976,Taxi,MOPED,,, +06/12/2021,8:44,,,40.81662,-73.86571,"(40.81662, -73.86571)",ROSEDALE AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426520,Sedan,Van,,, +07/02/2022,3:15,,,40.725273,-73.89286,"(40.725273, -73.89286)",LONG ISLAND EXPRESSWAY,,,1,0,1,0,0,0,0,0,,,,,,4542644,,,,, +06/12/2021,22:10,BROOKLYN,11207,40.67657,-73.9008,"(40.67657, -73.9008)",EAST NEW YORK AVENUE,WILLIAMS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426912,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,2:50,BROOKLYN,11217,40.68546,-73.98515,"(40.68546, -73.98515)",,,209 DEAN STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4427168,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/12/2021,22:08,BROOKLYN,11210,40.633377,-73.9482,"(40.633377, -73.9482)",,,1535 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426337,Station Wagon/Sport Utility Vehicle,Bike,,, +06/12/2021,13:50,,,40.636375,-74.165085,"(40.636375, -74.165085)",,,124 GRANDVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426865,Sedan,Sedan,,, +06/12/2021,3:40,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426898,Sedan,Sedan,,, +06/12/2021,15:20,,,40.70089,-73.94221,"(40.70089, -73.94221)",BROADWAY,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426405,Sedan,,,, +06/12/2021,8:10,,,40.77139,-73.95044,"(40.77139, -73.95044)",EAST 79 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4426793,,,,, +06/12/2021,0:50,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4426169,Sedan,,,, +06/12/2021,20:00,,,40.691914,-73.88332,"(40.691914, -73.88332)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426533,Sedan,Sedan,,, +06/12/2021,16:00,,,40.69706,-73.91933,"(40.69706, -73.91933)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426243,Sedan,E-Bike,,, +06/12/2021,15:40,BROOKLYN,11203,40.651226,-73.94096,"(40.651226, -73.94096)",CHURCH AVENUE,EAST 39 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426583,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,0:13,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4426315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,16:50,QUEENS,11378,40.72262,-73.901535,"(40.72262, -73.901535)",64 STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4426532,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/11/2021,9:30,QUEENS,11373,40.74788,-73.87586,"(40.74788, -73.87586)",,,40-38 CASE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427196,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,21:00,STATEN ISLAND,10312,40.55309,-74.163284,"(40.55309, -74.163284)",,,241 CORTELYOU AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426946,Sedan,,,, +06/12/2021,16:40,QUEENS,11370,40.7666,-73.89117,"(40.7666, -73.89117)",78 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4426431,Motorcycle,,,, +06/09/2021,17:20,BROOKLYN,11209,40.634483,-74.02359,"(40.634483, -74.02359)",,,6900 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426955,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,1:55,BRONX,10474,40.82005,-73.88698,"(40.82005, -73.88698)",,,906 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4425931,Sedan,,,, +06/06/2021,2:44,,,40.695705,-73.94637,"(40.695705, -73.94637)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,Traffic Control Disregarded,,,,4426988,Sedan,Bike,,, +06/11/2021,5:04,MANHATTAN,10003,0,0,"(0.0, 0.0)",2 AVENUE,EAST 9 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4427274,Sedan,Sedan,,, +06/11/2021,15:00,BROOKLYN,11208,40.678444,-73.86886,"(40.678444, -73.86886)",LIBERTY AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426889,Sedan,Sedan,Sedan,, +06/10/2021,23:57,BROOKLYN,11216,40.68138,-73.95352,"(40.68138, -73.95352)",BEDFORD AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4427075,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,18:53,BROOKLYN,11213,40.667347,-73.9376,"(40.667347, -73.9376)",,,1538 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427047,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,20:25,BROOKLYN,11229,40.610054,-73.95342,"(40.610054, -73.95342)",,,2115 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426750,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,11:50,QUEENS,11413,40.664234,-73.74565,"(40.664234, -73.74565)",,,142-69 231 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426232,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,15:18,QUEENS,11411,40.691982,-73.735695,"(40.691982, -73.735695)",118 AVENUE,226 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4426234,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,0:07,,,40.70674,-73.92032,"(40.70674, -73.92032)",WILLOUGHBY AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426646,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/23/2022,23:27,,,0,0,"(0.0, 0.0)",HICKS STREET,WOODHULL STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4522677,Van,Sedan,,, +05/24/2021,8:00,MANHATTAN,10031,40.82394,-73.94856,"(40.82394, -73.94856)",WEST 143 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426986,Sedan,,,, +06/12/2021,14:00,BROOKLYN,11215,40.67255,-73.988045,"(40.67255, -73.988045)",,,250 6 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426250,Sedan,,,, +06/12/2021,21:00,BRONX,10460,40.835648,-73.88862,"(40.835648, -73.88862)",,,920 EAST 173 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426723,Sedan,,,, +06/11/2021,20:08,BRONX,10468,40.85965,-73.90312,"(40.85965, -73.90312)",JEROME AVENUE,NORTH STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4427010,Sedan,Sedan,,, +06/12/2021,22:00,QUEENS,11363,40.76229,-73.75711,"(40.76229, -73.75711)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426300,Sedan,,,, +06/12/2021,18:00,QUEENS,11419,40.68989,-73.81819,"(40.68989, -73.81819)",103 AVENUE,127 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4426809,Sedan,Sedan,,, +06/12/2021,6:44,,,,,,LIE OUTER ROADWAY (CDR),,,2,0,0,0,0,0,2,0,Unspecified,,,,,4426176,Sedan,,,, +06/12/2021,21:20,BROOKLYN,11206,40.69911,-73.93402,"(40.69911, -73.93402)",STANWIX STREET,MELROSE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426647,Sedan,,,, +06/12/2021,18:30,QUEENS,11420,40.670864,-73.80753,"(40.670864, -73.80753)",131 AVENUE,131 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4426800,Sedan,Sedan,,, +06/12/2021,4:00,BRONX,10465,40.850273,-73.82767,"(40.850273, -73.82767)",ARNOW PLACE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426845,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,10:20,,,,,,CLINTONVILLE STREET,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426207,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,20:20,BROOKLYN,11218,40.642174,-73.97388,"(40.642174, -73.97388)",,,295 OCEAN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4543140,Sedan,,,, +06/12/2021,14:10,QUEENS,11421,40.686665,-73.86089,"(40.686665, -73.86089)",80 STREET,91 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4427026,Sedan,Bike,,, +06/12/2021,17:54,,,40.84226,-73.87228,"(40.84226, -73.87228)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427033,Sedan,Sedan,,, +06/12/2021,4:25,BROOKLYN,11233,40.678112,-73.90784,"(40.678112, -73.90784)",EASTERN PARKWAY,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426284,Sedan,,,, +06/12/2021,10:20,,,40.730885,-73.9479,"(40.730885, -73.9479)",GREENPOINT AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4427013,Sedan,Bike,,, +06/11/2021,11:37,BROOKLYN,11207,40.678738,-73.89887,"(40.678738, -73.89887)",BUSHWICK AVENUE,FANCHON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426888,Sedan,Sedan,Sedan,, +06/09/2021,11:07,BRONX,10467,40.88173,-73.88239,"(40.88173, -73.88239)",,,3471 JEROME AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4426979,E-Scooter,,,, +06/12/2021,14:40,QUEENS,11355,40.756317,-73.83369,"(40.756317, -73.83369)",41 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4426218,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/12/2021,16:50,MANHATTAN,10002,40.710464,-73.986626,"(40.710464, -73.986626)",SOUTH STREET,CLINTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426311,Station Wagon/Sport Utility Vehicle,Bike,,, +06/12/2021,1:21,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426163,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,20:45,BROOKLYN,11236,40.63038,-73.90379,"(40.63038, -73.90379)",AVENUE M,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426265,Sedan,Sedan,Sedan,, +06/10/2021,14:55,,,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,0:04,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",COURT STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426629,Sedan,Sedan,,, +06/12/2021,18:00,,,40.737606,-73.74073,"(40.737606, -73.74073)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426255,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,14:59,QUEENS,11428,40.72026,-73.75234,"(40.72026, -73.75234)",90 AVENUE,211 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427149,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,19:24,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,0:00,BROOKLYN,11225,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543338,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,23:30,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426469,Sedan,,,, +06/12/2021,14:20,MANHATTAN,10005,40.705307,-74.00903,"(40.705307, -74.00903)",HANOVER STREET,BEAVER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427239,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,11:30,,,40.579803,-73.97184,"(40.579803, -73.97184)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426373,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,22:22,QUEENS,11368,40.741337,-73.85933,"(40.741337, -73.85933)",102 STREET,STRONG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426710,Sedan,Sedan,,, +06/12/2021,16:20,MANHATTAN,10037,40.813145,-73.938614,"(40.813145, -73.938614)",,,20 WEST 135 STREET,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,Unspecified,,,4426833,Sedan,Station Wagon/Sport Utility Vehicle,Convertible,, +06/12/2021,23:30,BRONX,10475,40.885757,-73.82837,"(40.885757, -73.82837)",,,4090 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426764,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,16:00,STATEN ISLAND,10306,40.569927,-74.09108,"(40.569927, -74.09108)",CAPODANNO BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426451,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,15:00,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4426905,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/10/2021,16:48,BRONX,10467,40.873016,-73.87488,"(40.873016, -73.87488)",,,3210 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4427004,Sedan,Motorcycle,,, +06/12/2021,14:40,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426345,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,15:45,BROOKLYN,11207,40.668007,-73.89969,"(40.668007, -73.89969)",,,289 HINSDALE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426917,Sedan,Sedan,,, +06/10/2021,11:44,,,40.70083,-73.93314,"(40.70083, -73.93314)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4427277,Station Wagon/Sport Utility Vehicle,Convertible,Station Wagon/Sport Utility Vehicle,Sedan, +06/12/2021,13:09,BROOKLYN,11230,40.61717,-73.955154,"(40.61717, -73.955154)",,,1940 BAY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426336,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,0:00,,,40.79162,-73.94885,"(40.79162, -73.94885)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4426118,Sedan,Bike,,, +06/11/2021,0:10,MANHATTAN,10035,40.80383,-73.94211,"(40.80383, -73.94211)",EAST 122 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426956,Station Wagon/Sport Utility Vehicle,Bike,,, +06/09/2021,22:38,BROOKLYN,11216,40.68218,-73.94659,"(40.68218, -73.94659)",HALSEY STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427095,Sedan,,,, +06/12/2021,11:40,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",BROADWAY,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4426241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,20:35,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426410,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/07/2021,6:55,,,40.67888,-73.93561,"(40.67888, -73.93561)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427063,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,16:35,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",VALENTINE AVENUE,EAST 178 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426997,Moped,,,, +06/12/2021,12:50,MANHATTAN,10035,40.798916,-73.94024,"(40.798916, -73.94024)",,,178 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426892,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,4:40,,,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4427224,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/12/2021,18:20,BROOKLYN,11211,40.711216,-73.94831,"(40.711216, -73.94831)",,,588 GRAND STREET,1,0,0,0,1,0,0,0,Pavement Defective,Unspecified,,,,4426425,Bike,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,18:50,BROOKLYN,11233,40.67105,-73.9233,"(40.67105, -73.9233)",,,1680 STERLING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427119,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +06/12/2021,19:55,BRONX,10469,40.86272,-73.84083,"(40.86272, -73.84083)",MACE AVENUE,MICKLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4426609,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,5:30,,,40.67911,-73.880615,"(40.67911, -73.880615)",,,HIGHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/12/2021,18:55,MANHATTAN,10012,40.723022,-73.99882,"(40.723022, -73.99882)",SPRING STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426382,Sedan,Sedan,,, +06/12/2021,16:49,QUEENS,11375,40.734947,-73.845436,"(40.734947, -73.845436)",GRAND CENTRAL PARKWAY,63 DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426302,Sedan,Sedan,,, +06/09/2021,10:32,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426950,Sedan,Sedan,,, +06/06/2021,22:20,MANHATTAN,10011,40.73988,-73.99872,"(40.73988, -73.99872)",7 AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4426969,,,,, +06/12/2021,12:00,QUEENS,11368,40.739124,-73.850075,"(40.739124, -73.850075)",,,59-20 VANDOREN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426705,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,18:01,MANHATTAN,10031,40.821705,-73.9568,"(40.821705, -73.9568)",RIVERSIDE DRIVE,WEST 136 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426874,Station Wagon/Sport Utility Vehicle,Bike,,, +06/12/2021,14:29,BROOKLYN,11201,40.69484,-73.98391,"(40.69484, -73.98391)",JOHNSON STREET,FLATBUSH AVENUE EXTENSION,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,,,,,4426434,E-Bike,,,, +06/12/2021,18:25,,,40.696846,-73.961754,"(40.696846, -73.961754)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427133,Sedan,Sedan,,, +06/12/2021,22:00,QUEENS,11385,40.71018,-73.91085,"(40.71018, -73.91085)",,,2018 STANHOPE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4426536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,8:20,BRONX,10467,40.882496,-73.88283,"(40.882496, -73.88283)",,,3472 KNOX PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4427009,Sedan,,,, +06/12/2021,21:22,BROOKLYN,11208,40.6843,-73.87222,"(40.6843, -73.87222)",,,1 CAMPUS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426910,Sedan,,,, +06/05/2021,8:00,BROOKLYN,11233,40.68005,-73.932594,"(40.68005, -73.932594)",,,73 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427067,Sedan,,,, +06/12/2021,22:30,BROOKLYN,11203,40.65422,-73.939384,"(40.65422, -73.939384)",,,806 ALBANY AVENUE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4426584,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,21:00,QUEENS,11374,40.73086,-73.8562,"(40.73086, -73.8562)",,,64-11 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427050,Sedan,,,, +06/12/2021,22:42,BROOKLYN,11208,40.66957,-73.86198,"(40.66957, -73.86198)",,,2770 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4426913,Sedan,,,, +06/12/2021,2:50,,,40.68746,-73.906494,"(40.68746, -73.906494)",MOFFAT STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4426102,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/02/2022,13:00,BROOKLYN,11212,40.67011,-73.912796,"(40.67011, -73.912796)",,,54 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,23:10,MANHATTAN,10035,40.798527,-73.93961,"(40.798527, -73.93961)",,,2142 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426952,Tractor Truck Diesel,Sedan,,, +06/12/2021,16:55,BRONX,10456,40.834354,-73.90086,"(40.834354, -73.90086)",,,596 EAST 170 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4426344,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/12/2021,18:00,BROOKLYN,11229,40.609,-73.95642,"(40.609, -73.95642)",,,1680 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426751,Sedan,,,, +06/12/2021,19:28,QUEENS,11354,40.763744,-73.83507,"(40.763744, -73.83507)",35 AVENUE,COLLINS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426235,Sedan,,,, +06/12/2021,8:50,BRONX,10466,40.89183,-73.84324,"(40.89183, -73.84324)",,,4064 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426743,Sedan,,,, +06/08/2021,12:00,BROOKLYN,11234,40.61593,-73.91312,"(40.61593, -73.91312)",EAST 63 STREET,AVENUE U,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4426974,Sedan,Motorbike,,, +06/10/2021,8:14,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4426893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,17:01,,,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426446,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,18:18,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427186,Sedan,Sedan,,, +06/12/2021,12:30,,,,,,,,1647 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426519,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,22:11,BROOKLYN,11208,40.67813,-73.87112,"(40.67813, -73.87112)",,,1033 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427258,Pick-up Truck,Sedan,,, +06/12/2021,19:00,,,40.688698,-73.85409,"(40.688698, -73.85409)",89 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426868,Sedan,,,, +06/12/2021,10:15,BROOKLYN,11231,40.679386,-73.99685,"(40.679386, -73.99685)",,,109 2 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426630,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,16:00,QUEENS,11427,40.7272,-73.74922,"(40.7272, -73.74922)",HILLSIDE AVENUE,215 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426254,Sedan,Sedan,,, +06/12/2021,11:19,,,40.767418,-73.7906,"(40.767418, -73.7906)",FRANCIS LEWIS BOULEVARD,33 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426299,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,12:15,QUEENS,11418,40.694588,-73.82591,"(40.694588, -73.82591)",121 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427044,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,14:10,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4426189,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,2:30,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427014,Sedan,Carry All,,, +06/12/2021,0:00,,,40.69324,-73.92865,"(40.69324, -73.92865)",KOSCIUSZKO STREET,BROADWAY,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4426651,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,5:23,BROOKLYN,11211,40.71778,-73.93246,"(40.71778, -73.93246)",,,300 MASPETH AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,,,4426404,Tractor Truck Diesel,Sedan,,, +06/12/2021,22:05,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4427129,MOPED,,,, +06/12/2021,12:30,MANHATTAN,10031,40.829185,-73.94472,"(40.829185, -73.94472)",,,1841 AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4426985,Bus,MOPED,,, +06/12/2021,11:51,QUEENS,11375,40.736576,-73.85406,"(40.736576, -73.85406)",HORACE HARDING EXPRESSWAY,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427074,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,19:45,QUEENS,11356,40.781693,-73.839615,"(40.781693, -73.839615)",20 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4426259,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/12/2021,23:10,,,40.72956,-73.87145,"(40.72956, -73.87145)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4426303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,11:00,,,40.63426,-74.14596,"(40.63426, -74.14596)",,,144 MORNINGSTAR ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426882,Sedan,Sedan,,, +06/12/2021,21:35,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4426801,Sedan,,,, +06/12/2021,0:51,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4426812,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,15:00,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4427135,Sedan,Motorcycle,,, +06/12/2021,1:10,,,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4426175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,23:22,,,40.828945,-73.85666,"(40.828945, -73.85666)",PUGSLEY AVENUE,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4426525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,10:08,,,,,,,,101 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4427166,Bike,,,, +06/12/2021,11:40,MANHATTAN,10009,40.72276,-73.98595,"(40.72276, -73.98595)",,,17 AVENUE A,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4427273,Station Wagon/Sport Utility Vehicle,Bike,,, +06/12/2021,16:30,QUEENS,11420,40.674896,-73.80745,"(40.674896, -73.80745)",LINCOLN STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426227,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,19:00,BROOKLYN,11221,40.69456,-73.93438,"(40.69456, -73.93438)",,,50 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427152,Sedan,,,, +06/12/2021,1:23,BROOKLYN,11225,40.668022,-73.95605,"(40.668022, -73.95605)",,,1600 BEDFORD AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,,4426680,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Bus, +06/12/2021,1:50,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4426162,Sedan,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +06/12/2021,11:15,,,40.71664,-73.97561,"(40.71664, -73.97561)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,21:24,MANHATTAN,10028,40.774895,-73.95391,"(40.774895, -73.95391)",,,1568 2 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4426795,Bike,,,, +06/12/2021,4:30,QUEENS,11385,40.701683,-73.90885,"(40.701683, -73.90885)",CYPRESS AVENUE,PALMETTO STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427081,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,23:00,BRONX,10473,40.819622,-73.86835,"(40.819622, -73.86835)",,,750 CROES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426626,Sedan,,,, +06/12/2021,13:59,BRONX,10475,40.88176,-73.82324,"(40.88176, -73.82324)",PEARTREE AVENUE,GIVAN AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4426247,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,18:00,BROOKLYN,11234,40.60276,-73.914734,"(40.60276, -73.914734)",,,2777 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426968,Sedan,Sedan,,, +06/12/2021,23:12,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426925,Sedan,Sedan,,, +06/12/2021,1:30,,,40.73603,-73.99781,"(40.73603, -73.99781)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426411,Sedan,,,, +06/12/2021,11:35,BROOKLYN,11224,40.579803,-73.97184,"(40.579803, -73.97184)",NEPTUNE AVENUE,WEST 5 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4426375,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,9:00,,,40.67158,-73.88911,"(40.67158, -73.88911)",HENDRIX STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426887,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,11:30,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426904,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,13:00,,,40.768982,-73.91064,"(40.768982, -73.91064)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426430,Sedan,Sedan,,, +06/12/2021,12:00,BROOKLYN,11237,40.702255,-73.92008,"(40.702255, -73.92008)",STOCKHOLM STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4426242,Sedan,Sedan,Sedan,Box Truck, +06/07/2021,13:00,,,40.694088,-73.93427,"(40.694088, -73.93427)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427064,Sedan,,,, +06/12/2021,16:55,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426217,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,10:15,BRONX,10468,40.865086,-73.90049,"(40.865086, -73.90049)",,,2544 DAVIDSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426978,Van,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,22:55,QUEENS,11373,40.736153,-73.86755,"(40.736153, -73.86755)",94 STREET,57 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426708,Sedan,Bike,,, +06/10/2021,19:50,BROOKLYN,11208,40.68401,-73.87837,"(40.68401, -73.87837)",LOGAN STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427249,Sedan,,,, +06/12/2021,9:35,BROOKLYN,11218,,,,OCEAN PARKWAY,BEVERLEY ROAD,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,Unspecified,,,4426832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/12/2021,15:50,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4426266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,5:00,QUEENS,11368,40.754406,-73.85581,"(40.754406, -73.85581)",112 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4426458,Sedan,,,, +06/12/2021,0:10,QUEENS,11417,40.67801,-73.84975,"(40.67801, -73.84975)",107 AVENUE,88 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4426763,Sedan,Sedan,,, +06/12/2021,16:00,QUEENS,11374,40.727753,-73.854095,"(40.727753, -73.854095)",,,99-52 66 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426602,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,5:10,,,40.743217,-73.83403,"(40.743217, -73.83403)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,,,,,4426213,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,4:10,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4426133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/12/2021,7:16,BROOKLYN,11210,40.621178,-73.95335,"(40.621178, -73.95335)",,,2208 AVENUE L,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4426334,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,18:30,BROOKLYN,11217,40.676468,-73.97647,"(40.676468, -73.97647)",,,97 LINCOLN PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427032,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,10:55,QUEENS,11369,40.762386,-73.87322,"(40.762386, -73.87322)",,,26-28 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426470,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,20:17,,,40.805805,-73.97075,"(40.805805, -73.97075)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4426277,Sedan,Sedan,Sedan,, +06/06/2021,22:50,STATEN ISLAND,10306,40.57374,-74.13195,"(40.57374, -74.13195)",RICHMOND ROAD,ALTOONA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426943,Sedan,Sedan,,, +06/09/2021,7:30,MANHATTAN,10036,40.761044,-73.998825,"(40.761044, -73.998825)",,,605 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426961,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,11:00,MANHATTAN,10024,,,,,,215 WEST 88 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543265,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/09/2021,16:45,,,40.86227,-73.8722,"(40.86227, -73.8722)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,22:50,BROOKLYN,11233,40.684032,-73.91742,"(40.684032, -73.91742)",MACDONOUGH STREET,SARATOGA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4427225,Sedan,,,, +06/12/2021,6:20,BROOKLYN,11233,40.669918,-73.91889,"(40.669918, -73.91889)",EASTERN PARKWAY,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4426347,Sedan,,,, +06/12/2021,8:05,BROOKLYN,11208,40.681892,-73.88227,"(40.681892, -73.88227)",,,127 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4426900,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/11/2021,14:13,BROOKLYN,11215,40.668728,-73.986694,"(40.668728, -73.986694)",,,458 5 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427029,Station Wagon/Sport Utility Vehicle,Bike,,, +06/12/2021,0:00,QUEENS,11358,40.749783,-73.80289,"(40.749783, -73.80289)",164 STREET,OAK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426659,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,18:20,BROOKLYN,11236,40.6263,-73.90067,"(40.6263, -73.90067)",PAERDEGAT AVENUE NORTH,SEAVIEW AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427051,E-Scooter,,,, +06/12/2021,23:40,,,40.682537,-73.95002,"(40.682537, -73.95002)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4427083,Sedan,Sedan,,, +06/12/2021,18:20,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,22:20,BROOKLYN,11235,40.588585,-73.94255,"(40.588585, -73.94255)",,,2621 EAST 27 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4426752,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/12/2021,23:21,,,40.820568,-73.959305,"(40.820568, -73.959305)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4426984,Sedan,Sedan,,, +06/12/2021,17:42,MANHATTAN,10032,40.844463,-73.93829,"(40.844463, -73.93829)",,,615 WEST 173 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4426633,Sedan,Sedan,Sedan,, +06/12/2021,14:28,MANHATTAN,10010,,,,EAST 21 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426226,Sedan,,,, +06/12/2021,20:58,,,40.760372,-73.815094,"(40.760372, -73.815094)",149 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4426260,Sedan,Motorcycle,,, +06/12/2021,2:10,,,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4426841,Sedan,Sedan,,, +06/12/2021,15:10,QUEENS,11420,40.67406,-73.820786,"(40.67406, -73.820786)",,,130-27 118 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426816,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,13:00,QUEENS,11433,40.690594,-73.79505,"(40.690594, -73.79505)",,,153-29 110 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426191,Sedan,,,, +06/10/2021,14:50,BRONX,10458,40.868366,-73.88981,"(40.868366, -73.88981)",EAST 197 STREET,BRIGGS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427003,Sedan,Sedan,,, +06/12/2021,9:00,BROOKLYN,11221,40.68926,-73.937096,"(40.68926, -73.937096)",,,582 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427065,Sedan,,,, +06/11/2021,16:29,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,6:15,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427128,Sedan,Bike,,, +06/12/2021,15:59,,,40.756474,-73.94727,"(40.756474, -73.94727)",VERNON BOULEVARD,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4426433,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,9:00,BROOKLYN,11219,40.62579,-74.00119,"(40.62579, -74.00119)",,,1301 65 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426949,Sedan,,,, +06/11/2021,16:50,MANHATTAN,10029,40.798622,-73.94163,"(40.798622, -73.94163)",EAST 116 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426953,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,0:45,,,40.63073,-74.01734,"(40.63073, -74.01734)",7 AVENUE,OVINGTON AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4426104,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,16:46,BROOKLYN,11217,40.683506,-73.97594,"(40.683506, -73.97594)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427042,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/12/2021,22:16,BRONX,10472,40.83218,-73.88001,"(40.83218, -73.88001)",,,1350 ELDER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4426524,Sedan,,,, +06/12/2021,17:30,STATEN ISLAND,10301,40.643185,-74.09876,"(40.643185, -74.09876)",,,312 FILLMORE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426590,Sedan,,,, +06/12/2021,15:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427177,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/10/2021,14:18,,,40.836155,-73.87179,"(40.836155, -73.87179)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426994,Sedan,Sedan,,, +06/12/2021,12:30,,,40.5945,-73.78806,"(40.5945, -73.78806)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427272,Sedan,,,, +06/12/2021,22:18,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",OCEAN AVENUE,ALBEMARLE ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4426340,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/12/2021,3:00,QUEENS,11421,40.693996,-73.85407,"(40.693996, -73.85407)",,,86-48 91 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426869,Sedan,,,, +06/12/2021,11:19,,,40.84764,-73.901,"(40.84764, -73.901)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426400,Sedan,Sedan,,, +06/12/2021,14:30,BRONX,10469,,,,EDSON AVENUE,NEW ENGLAND THRUWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4427015,Sedan,Sedan,,, +06/09/2021,21:30,,,40.617584,-74.04048,"(40.617584, -74.04048)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4427136,Sedan,,,, +06/12/2021,22:40,,,,,,Queens Midtown Expy Service Road,Grand Avenue,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4426538,Sedan,Sedan,,, +06/12/2021,3:55,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",WEST 46 STREET,8 AVENUE,,0,1,0,1,0,0,0,0,Unspecified,,,,,4426252,Taxi,,,, +06/12/2021,10:30,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",SKILLMAN AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426174,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,16:43,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426747,Sedan,Sedan,,, +07/02/2022,0:30,QUEENS,11103,40.764267,-73.9158,"(40.764267, -73.9158)",38 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542678,Sedan,Motorcycle,,, +06/12/2021,10:30,,,40.600956,-73.98607,"(40.600956, -73.98607)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426306,Sedan,Sedan,,, +06/12/2021,10:23,QUEENS,11363,40.777946,-73.752884,"(40.777946, -73.752884)",WEST DRIVE,GROSVENOR STREET,,2,0,0,0,0,0,2,0,Passenger Distraction,,,,,4426297,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,19:55,MANHATTAN,10065,40.761486,-73.96062,"(40.761486, -73.96062)",1 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426802,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,18:09,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4427008,Sedan,Sedan,,, +06/12/2021,11:50,MANHATTAN,10005,,,,,,42 South street,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4426381,Pick-up Truck,Box Truck,,, +06/12/2021,18:15,,,40.853462,-73.88939,"(40.853462, -73.88939)",EAST 184 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,4426440,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/12/2021,13:20,BROOKLYN,11234,40.615566,-73.929115,"(40.615566, -73.929115)",,,2228 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4426972,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,23:30,BROOKLYN,11239,40.651676,-73.869225,"(40.651676, -73.869225)",,,455 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426914,Sedan,,,, +06/12/2021,21:14,,,40.693565,-73.80769,"(40.693565, -73.80769)",LIBERTY AVENUE,LLOYD ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4427105,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,18:44,BROOKLYN,11221,40.687294,-73.938896,"(40.687294, -73.938896)",,,297 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427153,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,5:30,BROOKLYN,11206,40.69677,-73.93701,"(40.69677, -73.93701)",,,1090 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426491,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,0:00,BROOKLYN,11208,40.67662,-73.87264,"(40.67662, -73.87264)",,,1011 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427257,Sedan,Taxi,Pick-up Truck,, +06/12/2021,0:10,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426363,Sedan,Sedan,,, +06/11/2021,13:50,QUEENS,11694,40.582108,-73.837135,"(40.582108, -73.837135)",,,115-20 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4427073,Sedan,Sedan,,, +06/12/2021,9:30,,,40.666595,-73.87176,"(40.666595, -73.87176)",FOUNTAIN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4426901,Sedan,Sedan,Sedan,, +06/12/2021,16:15,BROOKLYN,11239,,,,,,490 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426909,Bus,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,15:30,,,40.54387,-74.14445,"(40.54387, -74.14445)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426932,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,0:50,MANHATTAN,10009,40.726986,-73.985756,"(40.726986, -73.985756)",1 AVENUE,EAST 7 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426414,Bike,,,, +07/02/2022,21:12,,,40.595642,-73.99676,"(40.595642, -73.99676)",23 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542788,Sedan,,,, +07/02/2022,4:25,,,40.841026,-73.887245,"(40.841026, -73.887245)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4543197,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,17:45,BROOKLYN,11206,40.701424,-73.94307,"(40.701424, -73.94307)",BROADWAY,THORNTON STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4543211,Sedan,Box Truck,,, +06/28/2022,9:05,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543233,Bus,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,6:18,QUEENS,11691,40.595608,-73.74388,"(40.595608, -73.74388)",,,150 BEACH 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543246,Sedan,,,, +07/02/2022,18:05,BROOKLYN,11204,40.618416,-73.99093,"(40.618416, -73.99093)",,,6602 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4542757,E-Bike,,,, +07/02/2022,9:00,,,40.73204,-73.87034,"(40.73204, -73.87034)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4542705,Sedan,Sedan,,, +07/01/2022,17:30,QUEENS,11420,40.667614,-73.804276,"(40.667614, -73.804276)",134 PLACE,135 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543431,Taxi,,,, +07/02/2022,17:15,QUEENS,11435,40.704082,-73.81641,"(40.704082, -73.81641)",HILLSIDE AVENUE,138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542752,Sedan,,,, +07/02/2022,13:24,QUEENS,11385,40.702938,-73.89662,"(40.702938, -73.89662)",,,60-68 69 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542707,Sedan,,,, +07/01/2022,11:38,BRONX,10460,40.840042,-73.863945,"(40.840042, -73.863945)",GUERLAIN STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543361,Bus,Sedan,,, +07/02/2022,6:50,QUEENS,11435,40.694096,-73.810814,"(40.694096, -73.810814)",,,101-11 REMINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542773,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,11:20,,,40.729515,-73.8715,"(40.729515, -73.8715)",ELIOT AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,17:30,BRONX,10455,40.818954,-73.91404,"(40.818954, -73.91404)",3 AVENUE,EAST 154 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,0:00,BRONX,10465,40.845085,-73.815735,"(40.845085, -73.815735)",,,1470 OUTLOOK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543081,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,12:49,BROOKLYN,11215,40.67285,-73.97339,"(40.67285, -73.97339)",8 AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543150,Dump,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,6:50,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,19:35,BROOKLYN,11237,40.71242,-73.923874,"(40.71242, -73.923874)",SCHOLES STREET,SCOTT AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4543215,Station Wagon/Sport Utility Vehicle,Bus,,, +06/30/2022,8:56,QUEENS,11691,40.592793,-73.77788,"(40.592793, -73.77788)",ROCKAWAY FREEWAY,BEACH 47 STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Traffic Control Disregarded,,,,4543250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,5:20,,,40.67767,-73.74066,"(40.67767, -73.74066)",133 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542700,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,17:58,QUEENS,11413,40.676212,-73.755646,"(40.676212, -73.755646)",CARSON STREET,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542761,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,21:00,QUEENS,11385,40.704155,-73.90752,"(40.704155, -73.90752)",ONDERDONK AVENUE,GATES AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542993,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,18:24,QUEENS,11414,40.666267,-73.845726,"(40.666267, -73.845726)",155 AVENUE,89 STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4543424,Station Wagon/Sport Utility Vehicle,Dirtbike,,, +04/03/2022,13:50,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",CRESCENT STREET,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,,,,,,4515750,,,,, +10/08/2021,16:51,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466166,Taxi,,,, +04/03/2022,2:00,BROOKLYN,11213,40.670395,-73.93099,"(40.670395, -73.93099)",,,240 UTICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515830,LIMO,Sedan,,, +04/25/2022,16:20,QUEENS,11413,40.672173,-73.761024,"(40.672173, -73.761024)",BEDELL STREET,140 AVENUE,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4522269,Sedan,Sedan,,, +01/01/2022,7:57,,,,,,WESTCHESTER AVENUE,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491734,Sedan,,,, +04/25/2022,16:00,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",SOUTH CONDUIT AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4522013,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,10:30,BROOKLYN,11226,40.6467,-73.95392,"(40.6467, -73.95392)",,,2501 TILDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522508,Sedan,,,, +04/22/2022,14:00,,,40.879253,-73.91996,"(40.879253, -73.91996)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522430,Sedan,Sedan,,, +04/25/2022,18:10,BROOKLYN,11237,40.71401,-73.92405,"(40.71401, -73.92405)",ONDERDONK AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4522085,Station Wagon/Sport Utility Vehicle,,,, +09/18/2021,10:50,,,40.6476772,-74.0145875,"(40.6476772, -74.0145875)",3 AVENUE,,,1,1,0,0,0,0,1,1,Illnes,Unspecified,,,,4458446,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/08/2021,19:37,BROOKLYN,11236,40.6379069,-73.8877923,"(40.6379069, -73.8877923)",EAST 102 STREET,AVENUE N,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4466265,Sedan,,,, +09/27/2021,12:20,,,40.7008471,-73.9949415,"(40.7008471, -73.9949415)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466277,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/08/2021,13:45,,,40.595921,-73.9410184,"(40.595921, -73.9410184)",AVENUE W,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4466286,Sedan,,,, +10/04/2021,15:42,MANHATTAN,10021,40.76975,-73.96061,"(40.76975, -73.96061)",EAST 72 STREET,3 AVENUE,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4464559,Bus,,,, +12/11/2021,7:55,,,40.67632,-73.763435,"(40.67632, -73.763435)",FARMERS BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4485397,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,18:00,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4485847,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,17:20,QUEENS,11357,40.790855,-73.82215,"(40.790855, -73.82215)",WHITESTONE EXPRESSWAY,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485428,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,4:42,,,40.62021,-74.16078,"(40.62021, -74.16078)",,,156 COMSTOCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485579,Sedan,,,, +12/08/2021,17:13,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486030,Station Wagon/Sport Utility Vehicle,Carry All,,, +12/10/2021,0:52,BROOKLYN,11231,40.686222,-74.00017,"(40.686222, -74.00017)",,,489 HICKS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486064,Station Wagon/Sport Utility Vehicle,,,, +12/01/2021,18:40,BRONX,10467,40.876583,-73.863914,"(40.876583, -73.863914)",,,751 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485985,Sedan,,,, +12/11/2021,11:58,QUEENS,11411,40.702286,-73.74592,"(40.702286, -73.74592)",MURDOCK AVENUE,209 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4485488,Sedan,Sedan,,, +12/11/2021,5:45,QUEENS,11367,40.71991,-73.809044,"(40.71991, -73.809044)",UNION TURNPIKE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/02/2021,11:30,BROOKLYN,11203,40.651108,-73.94283,"(40.651108, -73.94283)",CHURCH AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4486225,Sedan,,,, +11/22/2021,9:50,QUEENS,11433,40.704857,-73.784134,"(40.704857, -73.784134)",,,175-08 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4486202,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,0:00,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486117,Sedan,,,, +12/09/2021,8:22,BROOKLYN,11207,40.677578,-73.88602,"(40.677578, -73.88602)",ATLANTIC AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4486019,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/24/2021,4:00,BRONX,10460,40.837673,-73.86548,"(40.837673, -73.86548)",THIERIOT AVENUE,ARCHER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486174,Sedan,Sedan,,, +12/11/2021,3:05,BROOKLYN,11215,40.650288,-73.9978,"(40.650288, -73.9978)",36 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485812,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,4:12,BRONX,10462,40.84569,-73.8639,"(40.84569, -73.8639)",,,761 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485339,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,21:55,,,40.640053,-74.02622,"(40.640053, -74.02622)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4465618,Sedan,Taxi,Sedan,, +10/09/2021,20:45,BROOKLYN,11215,40.668842,-73.99437,"(40.668842, -73.99437)",,,106 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465980,Sedan,E-Bike,,, +10/06/2021,17:23,BROOKLYN,11219,40.635372,-73.988174,"(40.635372, -73.988174)",14 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4466194,Sedan,Sedan,,, +10/09/2021,0:39,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465425,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,21:50,QUEENS,11432,40.72186,-73.79859,"(40.72186, -73.79859)",,,169-03 81 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465704,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,13:50,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4466090,Convertible,Sedan,Station Wagon/Sport Utility Vehicle,, +10/09/2021,9:03,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4465837,Bike,,,, +10/07/2021,0:33,MANHATTAN,10040,40.854828,-73.93132,"(40.854828, -73.93132)",WEST 189 STREET,WADSWORTH AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4466162,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,8:00,QUEENS,11358,40.771126,-73.80158,"(40.771126, -73.80158)",29 AVENUE,163 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465465,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/09/2021,14:55,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4465866,Box Truck,Sedan,,, +06/26/2022,12:45,QUEENS,11691,40.60352,-73.7516,"(40.60352, -73.7516)",,,18-57 MOTT AVENUE,0,0,0,0,0,0,0,0,Vehicle Vandalism,,,,,4543210,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,13:30,MANHATTAN,10038,40.708443,-74.00689,"(40.708443, -74.00689)",,,80 JOHN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466137,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,5:02,,,40.73361,-73.92385,"(40.73361, -73.92385)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465489,PK,Sedan,,, +10/09/2021,9:47,,,40.689274,-73.99913,"(40.689274, -73.99913)",HICKS STREET,CONGRESS STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465590,Sedan,E-Bike,,, +10/09/2021,23:46,MANHATTAN,10029,40.79423,-73.94695,"(40.79423, -73.94695)",EAST 108 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4465992,Pick-up Truck,Sedan,,, +10/09/2021,22:00,QUEENS,11414,40.65245,-73.83821,"(40.65245, -73.83821)",163 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466022,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,14:58,MANHATTAN,10033,40.846138,-73.93424,"(40.846138, -73.93424)",WEST 177 STREET,AUDUBON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466096,E-Scooter,Sedan,,, +10/07/2021,16:02,BROOKLYN,11208,40.69118,-73.868065,"(40.69118, -73.868065)",ELDERTS LANE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4466111,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/09/2021,11:50,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4465563,Motorcycle,Sedan,,, +10/09/2021,14:30,,,,,,ATLANTIC AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465523,PK,,,, +10/09/2021,1:26,BRONX,10455,40.814938,-73.919716,"(40.814938, -73.919716)",,,2770 3 AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4465558,Station Wagon/Sport Utility Vehicle,Bike,,, +10/09/2021,14:30,QUEENS,11418,40.694187,-73.840004,"(40.694187, -73.840004)",,,89-07 107 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465526,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,22:10,MANHATTAN,10024,40.788315,-73.9765,"(40.788315, -73.9765)",WEST 86 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4543310,Bike,Taxi,,, +10/09/2021,15:44,BROOKLYN,11212,40.657383,-73.911514,"(40.657383, -73.911514)",LOTT AVENUE,AMBOY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,3:15,,,40.752563,-73.74328,"(40.752563, -73.74328)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465498,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,19:19,,,,,,WARWICK STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466110,Bus,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,11:12,MANHATTAN,10025,40.80584,-73.96176,"(40.80584, -73.96176)",,,1111 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465820,,,,, +10/09/2021,6:30,BROOKLYN,11222,40.724773,-73.94824,"(40.724773, -73.94824)",,,44 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465899,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +10/09/2021,12:30,BROOKLYN,11207,40.667145,-73.89948,"(40.667145, -73.89948)",BLAKE AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466124,Sedan,,,, +10/09/2021,14:30,BRONX,10454,40.80489,-73.922844,"(40.80489, -73.922844)",,,109 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,,,4466033,Station Wagon/Sport Utility Vehicle,Sedan,Van,, +10/09/2021,3:35,BROOKLYN,11207,40.656116,-73.89666,"(40.656116, -73.89666)",HINSDALE STREET,DE WITT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466115,Motorcycle,,,, +10/09/2021,6:15,,,40.707294,-73.85064,"(40.707294, -73.85064)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465513,Sedan,,,, +10/09/2021,14:30,,,40.68718,-73.79914,"(40.68718, -73.79914)",111 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465570,Station Wagon/Sport Utility Vehicle,Bike,,, +10/09/2021,12:30,MANHATTAN,10002,40.723648,-73.99103,"(40.723648, -73.99103)",EAST HOUSTON STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4465717,Bike,,,, +10/09/2021,18:00,,,,,,SHORE PARKWAY,KNAPP STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,9:49,MANHATTAN,10032,40.83405,-73.9429,"(40.83405, -73.9429)",,,545 WEST 158 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466180,Sedan,Sedan,,, +10/09/2021,9:30,BROOKLYN,11231,40.677097,-74.01541,"(40.677097, -74.01541)",CONOVER STREET,COFFEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465591,Sedan,Sedan,Sedan,, +10/09/2021,21:10,QUEENS,11369,40.758884,-73.871666,"(40.758884, -73.871666)",97 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465667,Taxi,Bike,,, +07/01/2022,15:50,,,40.675533,-73.81448,"(40.675533, -73.81448)",123 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4543432,Sedan,,,, +10/09/2021,7:20,BROOKLYN,11203,40.637455,-73.92886,"(40.637455, -73.92886)",UTICA AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465546,Sedan,Sedan,,, +10/06/2021,19:36,MANHATTAN,10034,,,,RIVERSIDE DRIVE,SEAMAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466160,,,,, +10/09/2021,0:05,BRONX,10469,40.862595,-73.83153,"(40.862595, -73.83153)",ELY AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466062,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,20:30,,,40.827984,-73.84329,"(40.827984, -73.84329)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466101,Sedan,Carry All,,, +10/07/2021,14:27,MANHATTAN,10003,40.73103,-73.989815,"(40.73103, -73.989815)",,,84 EAST 10 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4466153,Sedan,,,, +07/02/2022,21:40,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4542797,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,10:55,BROOKLYN,11221,40.68865,-73.929375,"(40.68865, -73.929375)",,,864 GATES AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4465807,Moped,,,, +09/29/2021,13:30,BROOKLYN,11212,40.65801,-73.92078,"(40.65801, -73.92078)",KINGS HIGHWAY,EAST 94 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4466202,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,22:00,BROOKLYN,11203,40.650528,-73.93415,"(40.650528, -73.93415)",,,459 EAST 46 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4465875,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/09/2021,23:56,QUEENS,11377,40.734337,-73.91025,"(40.734337, -73.91025)",58 STREET,53 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4465686,Sedan,Sedan,Sedan,, +10/09/2021,17:05,QUEENS,11417,40.681145,-73.84013,"(40.681145, -73.84013)",100 STREET,LIBERTY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466014,Station Wagon/Sport Utility Vehicle,Bike,,, +10/09/2021,4:52,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465604,Sedan,Sedan,,, +10/05/2021,8:30,,,40.787685,-73.97502,"(40.787685, -73.97502)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4466167,Box Truck,Box Truck,,, +10/09/2021,23:30,QUEENS,11433,40.696564,-73.79125,"(40.696564, -73.79125)",108 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465959,Motorcycle,,,, +10/09/2021,20:34,QUEENS,11101,40.75443,-73.916084,"(40.75443, -73.916084)",46 STREET,34 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4465708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/09/2021,0:15,,,40.699512,-73.81461,"(40.699512, -73.81461)",91 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465964,Sedan,Sedan,,, +10/09/2021,18:25,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,DYRE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4465839,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,21:38,QUEENS,11385,40.698856,-73.904076,"(40.698856, -73.904076)",WEIRFIELD STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466226,Sedan,,,, +10/09/2021,1:30,BROOKLYN,11210,40.629505,-73.94416,"(40.629505, -73.94416)",FLATBUSH AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465430,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,10:50,BRONX,10470,40.89678,-73.868256,"(40.89678, -73.868256)",,,264 EAST 234 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4542909,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/09/2021,7:35,,,40.62573,-73.9564,"(40.62573, -73.9564)",OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465635,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,3:05,MANHATTAN,10037,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4466143,Sedan,Sedan,,, +10/07/2021,8:00,STATEN ISLAND,10312,40.554695,-74.17314,"(40.554695, -74.17314)",,,53 POMPEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466189,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,9:00,QUEENS,11355,40.751453,-73.83228,"(40.751453, -73.83228)",COLLEGE POINT BOULEVARD,BLOSSOM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465468,Sedan,,,, +07/02/2022,17:00,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543366,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,0:50,BROOKLYN,11228,40.61709,-74.0021,"(40.61709, -74.0021)",,,1539 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465597,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,23:00,BRONX,10466,40.888115,-73.831314,"(40.888115, -73.831314)",,,3811 DYRE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465840,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,4:00,BRONX,10463,40.878258,-73.90221,"(40.878258, -73.90221)",,,3110 BAILEY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542722,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,0:00,,,40.735126,-73.792,"(40.735126, -73.792)",180 STREET,67 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4465693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,18:00,MANHATTAN,10005,40.705772,-74.00887,"(40.705772, -74.00887)",,,63 WALL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466136,Sedan,,,, +10/09/2021,3:55,QUEENS,11385,40.702713,-73.87143,"(40.702713, -73.87143)",,,78-15 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4465789,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/02/2022,10:05,BROOKLYN,11231,40.679306,-73.996635,"(40.679306, -73.996635)",,,120 2 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543285,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/09/2021,4:24,BROOKLYN,11203,40.64993,-73.93312,"(40.64993, -73.93312)",SCHENECTADY AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465544,,,,, +10/09/2021,9:24,,,40.809044,-73.92856,"(40.809044, -73.92856)",LINCOLN AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465559,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,23:17,BRONX,10458,40.860733,-73.88954,"(40.860733, -73.88954)",,,441 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466042,,,,, +10/09/2021,2:27,MANHATTAN,10003,40.73253,-73.98949,"(40.73253, -73.98949)",,,121 EAST 12 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Following Too Closely,Following Too Closely,,,4465619,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/08/2021,23:55,,,40.665745,-73.89816,"(40.665745, -73.89816)",WILLIAMS AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4466120,Station Wagon/Sport Utility Vehicle,E-Bike,Sedan,, +10/09/2021,12:52,QUEENS,11372,40.749397,-73.887695,"(40.749397, -73.887695)",,,78-31 37 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465518,Sedan,,,, +10/09/2021,2:30,QUEENS,11433,40.692028,-73.79709,"(40.692028, -73.79709)",,,153-05 109 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4465973,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/09/2021,20:50,,,40.849236,-73.92371,"(40.849236, -73.92371)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,7:52,BRONX,10474,40.81813,-73.89101,"(40.81813, -73.89101)",GARRISON AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465550,Sedan,,,, +06/25/2022,23:21,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4543223,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Sedan, +10/07/2021,10:35,MANHATTAN,10032,40.83492,-73.944244,"(40.83492, -73.944244)",,,3806 BROADWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4466181,Van,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,18:34,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466126,Chassis Cab,Sedan,,, +10/09/2021,20:10,BROOKLYN,11211,40.710735,-73.961815,"(40.710735, -73.961815)",SOUTH 5 STREET,DRIGGS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4465613,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,19:25,STATEN ISLAND,10304,40.626663,-74.07565,"(40.626663, -74.07565)",BAY STREET,CANAL STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465732,Sedan,Sedan,,, +10/06/2021,15:10,BROOKLYN,11235,40.59199,-73.93738,"(40.59199, -73.93738)",AVENUE Y,BATCHELDER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4466174,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,11:32,,,40.691208,-73.813545,"(40.691208, -73.813545)",133 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466028,Sedan,,,, +10/09/2021,10:20,,,40.736267,-73.772865,"(40.736267, -73.772865)",FRANCIS LEWIS BOULEVARD,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4465480,Sedan,,,, +10/09/2021,2:30,BROOKLYN,11208,40.676743,-73.86272,"(40.676743, -73.86272)",,,580 DREW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,16:44,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465580,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/16/2021,16:15,BROOKLYN,11221,40.697075,-73.93185,"(40.697075, -73.93185)",BUSHWICK AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466089,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/09/2021,16:30,QUEENS,11102,40.76598,-73.92435,"(40.76598, -73.92435)",30 DRIVE,29 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465987,Sedan,,,, +10/09/2021,8:25,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,CONNER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465819,Sedan,Sedan,,, +10/09/2021,10:06,BRONX,10463,40.883095,-73.88999,"(40.883095, -73.88999)",,,3959 SAXON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4465888,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Sedan,, +10/05/2021,18:30,STATEN ISLAND,10309,40.54167,-74.20798,"(40.54167, -74.20798)",WOODROW ROAD,ROSSVILLE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466175,Sedan,,,, +10/09/2021,0:10,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465666,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/05/2021,8:36,BROOKLYN,11208,40.671406,-73.87037,"(40.671406, -73.87037)",,,1260 BLAKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466121,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,23:55,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4466155,Sedan,Sedan,,, +10/09/2021,20:00,BROOKLYN,11230,40.62283,-73.96482,"(40.62283, -73.96482)",,,1426 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4465728,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,22:50,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466095,Sedan,E-Scooter,,, +10/09/2021,13:35,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465497,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,12:58,QUEENS,11374,40.730293,-73.85592,"(40.730293, -73.85592)",64 ROAD,99 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465933,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,17:24,QUEENS,11418,40.701057,-73.83823,"(40.701057, -73.83823)",,,85-05 112 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465562,Sedan,,,, +10/09/2021,10:55,QUEENS,11423,40.715397,-73.772766,"(40.715397, -73.772766)",189 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465965,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,11:05,BROOKLYN,11226,40.64787,-73.95574,"(40.64787, -73.95574)",ALBEMARLE ROAD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465634,Sedan,,,, +10/09/2021,18:30,BROOKLYN,11201,40.688614,-73.989174,"(40.688614, -73.989174)",SMITH STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465922,Station Wagon/Sport Utility Vehicle,Van,,, +07/01/2022,10:00,BRONX,10451,40.818348,-73.92951,"(40.818348, -73.92951)",,,501 GERARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543238,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/09/2021,5:17,BROOKLYN,11221,40.68729,-73.92176,"(40.68729, -73.92176)",,,985 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4465806,Sedan,Sedan,Sedan,, +09/26/2021,13:30,MANHATTAN,10019,40.7674158,-73.9883002,"(40.7674158, -73.9883002)",,,423 WEST 55 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466307,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,16:38,BROOKLYN,11203,40.652447,-73.92561,"(40.652447, -73.92561)",EAST 55 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466243,Bus,Sedan,,, +10/09/2021,1:28,,,40.686916,-73.97737,"(40.686916, -73.97737)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465435,Taxi,Taxi,,, +09/13/2021,17:02,,,40.81967,-73.94424,"(40.81967, -73.94424)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4466142,Sedan,Sedan,,, +10/08/2021,10:14,,,,,,TOPPING AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466082,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,0:00,,,40.64094,-74.1319,"(40.64094, -74.1319)",,,11 FERRY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4465549,Chassis Cab,Sedan,,, +10/09/2021,16:30,,,40.60891,-74.17833,"(40.60891, -74.17833)",SOUTH AVENUE,CURRY AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4465551,Sedan,Sedan,Sedan,, +10/09/2021,17:45,QUEENS,11420,40.66837,-73.80892,"(40.66837, -73.80892)",135 AVENUE,130 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466015,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,16:45,,,40.638264,-74.021095,"(40.638264, -74.021095)",65 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465568,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/09/2021,22:51,,,40.583656,-73.98656,"(40.583656, -73.98656)",CROPSEY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4466047,Sedan,Sedan,,, +10/09/2021,18:31,,,40.596184,-73.99739,"(40.596184, -73.99739)",BAY 32 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4465610,Sedan,Sedan,,, +10/09/2021,18:30,MANHATTAN,10035,40.80016,-73.93538,"(40.80016, -73.93538)",EAST 121 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4466102,Bike,Sedan,,, +10/09/2021,3:11,BROOKLYN,11236,40.637806,-73.898254,"(40.637806, -73.898254)",,,1385 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465503,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,5:46,BROOKLYN,11235,40.59106,-73.96063,"(40.59106, -73.96063)",,,2689 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4466016,Sedan,,,, +10/03/2021,22:00,MANHATTAN,10032,40.83983,-73.94236,"(40.83983, -73.94236)",,,627 WEST 165 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4466098,Sedan,Sedan,E-Scooter,, +10/05/2021,14:00,BROOKLYN,11208,40.677296,-73.87682,"(40.677296, -73.87682)",LOGAN STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4466119,Box Truck,Sedan,,, +10/09/2021,9:00,QUEENS,11372,40.750626,-73.87595,"(40.750626, -73.87595)",37 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,13:56,BROOKLYN,11220,40.637226,-74.03083,"(40.637226, -74.03083)",,,125 BAY RIDGE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465567,Sedan,Bus,,, +10/09/2021,21:40,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465595,Van,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,0:00,,,40.635864,-74.16716,"(40.635864, -74.16716)",,,104 ARLINGTON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465851,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,15:40,MANHATTAN,10039,40.824757,-73.94052,"(40.824757, -73.94052)",8 AVENUE,WEST 148 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4466140,Sedan,E-Scooter,,, +10/09/2021,6:32,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465543,Sedan,Sedan,,, +10/09/2021,13:40,,,40.730076,-73.99285,"(40.730076, -73.99285)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465622,Station Wagon/Sport Utility Vehicle,LIMIT USE,,, +10/09/2021,7:22,,,40.868572,-73.88148,"(40.868572, -73.88148)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465496,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,10:20,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4466000,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,18:27,BROOKLYN,11215,40.672794,-73.98329,"(40.672794, -73.98329)",5 AVENUE,3 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515856,Sedan,Bike,,, +04/25/2022,16:12,,,40.742676,-73.839516,"(40.742676, -73.839516)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4522369,Sedan,Sedan,,, +04/23/2022,3:40,,,40.728474,-73.882614,"(40.728474, -73.882614)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4522409,Sedan,,,, +04/25/2022,23:40,,,40.81423,-73.93444,"(40.81423, -73.93444)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4522133,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,15:33,,,40.694782,-73.85258,"(40.694782, -73.85258)",WOODHAVEN BOULEVARD,,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inexperience,,,,4465573,Sedan,Sedan,,, +10/09/2021,14:15,BROOKLYN,11220,40.647346,-74.007996,"(40.647346, -74.007996)",5 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,2:15,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",DELANCEY STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466103,Sedan,Sedan,,, +10/09/2021,3:30,BRONX,10457,40.842987,-73.900345,"(40.842987, -73.900345)",EAST 174 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4465699,Taxi,Sedan,,, +10/09/2021,0:43,MANHATTAN,10030,40.817116,-73.94801,"(40.817116, -73.94801)",WEST 135 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Unspecified,,,4466039,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/08/2021,15:20,,,40.656944,-73.88082,"(40.656944, -73.88082)",COZINE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466113,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,15:32,MANHATTAN,10032,40.839176,-73.94114,"(40.839176, -73.94114)",WEST 165 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466094,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,14:10,QUEENS,11693,40.58862,-73.81702,"(40.58862, -73.81702)",BEACH CHANNEL DRIVE,BEACH 92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465831,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,18:00,MANHATTAN,10023,40.77929,-73.98114,"(40.77929, -73.98114)",AMSTERDAM AVENUE,WEST 73 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466165,Sedan,Pick-up Truck,,, +10/09/2021,16:25,QUEENS,11373,40.741375,-73.8804,"(40.741375, -73.8804)",,,82-90 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,18:53,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,2,0,0,0,0,0,2,0,Unspecified,,,,,4466183,Taxi,,,, +10/09/2021,0:57,BROOKLYN,11218,40.645237,-73.978714,"(40.645237, -73.978714)",EAST 2 STREET,ALBEMARLE ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465658,,,,, +10/09/2021,1:45,QUEENS,11432,40.712612,-73.79323,"(40.712612, -73.79323)",HOME LAWN STREET,HIGHLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465473,4 dr sedan,,,, +10/09/2021,16:48,,,40.753563,-73.794586,"(40.753563, -73.794586)",AUBURNDALE LANE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465560,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,23:10,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",OCEAN PARKWAY,AVENUE J,,1,0,0,0,0,0,0,0,Unspecified,,,,,4466147,E-Bike,,,, +10/09/2021,7:15,QUEENS,11385,40.71009,-73.91453,"(40.71009, -73.91453)",HART STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Passing Too Closely,Other Vehicular,,4465791,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/09/2021,4:00,QUEENS,11103,40.756676,-73.920876,"(40.756676, -73.920876)",STEINWAY STREET,34 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4465986,Sedan,,,, +10/03/2021,11:55,,,40.866062,-73.92251,"(40.866062, -73.92251)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466156,Sedan,Sedan,,, +10/09/2021,15:15,QUEENS,11422,40.654415,-73.73428,"(40.654415, -73.73428)",WELLER LANE,148 ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4465711,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,21:01,BROOKLYN,11220,40.637417,-74.03126,"(40.637417, -74.03126)",,,6824 COLONIAL ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465614,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,14:20,,,40.71582,-73.81759,"(40.71582, -73.81759)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4466204,Taxi,,,, +10/09/2021,22:10,QUEENS,11420,40.666138,-73.82422,"(40.666138, -73.82422)",NORTH CONDUIT AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466027,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,13:20,,,40.53448,-74.198586,"(40.53448, -74.198586)",DRUMGOOLE ROAD WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466131,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,5:36,BRONX,10467,40.88519,-73.86529,"(40.88519, -73.86529)",CARPENTER AVENUE,EAST 220 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465818,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/11/2021,11:25,,,40.849167,-73.92393,"(40.849167, -73.92393)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4485954,Sedan,,,, +12/11/2021,13:10,STATEN ISLAND,10306,40.575356,-74.10483,"(40.575356, -74.10483)",,,2270 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485462,Box Truck,Sedan,,, +06/13/2021,20:50,,,40.82243,-73.87295,"(40.82243, -73.87295)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4427093,Sedan,,,, +10/07/2021,14:55,MANHATTAN,10033,40.849285,-73.93894,"(40.849285, -73.93894)",WEST 179 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466172,Sedan,Pallet,,, +10/09/2021,13:33,QUEENS,11432,,,,PARSONS BOULEVARD,89. AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,,,,4465966,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,21:53,MANHATTAN,10040,40.854904,-73.92965,"(40.854904, -73.92965)",SAINT NICHOLAS AVENUE,WEST 190 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4466177,Sedan,,,, +10/09/2021,1:15,,,40.766685,-73.892136,"(40.766685, -73.892136)",77 STREET,ASTORIA BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465436,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,21:50,BROOKLYN,11226,40.64495,-73.95186,"(40.64495, -73.95186)",ROGERS AVENUE,BEVERLEY ROAD,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4466217,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,18:11,MANHATTAN,10016,40.742645,-73.98246,"(40.742645, -73.98246)",LEXINGTON AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465671,Taxi,Taxi,,, +10/09/2021,20:57,BRONX,10457,40.85179,-73.90279,"(40.85179, -73.90279)",EAST BURNSIDE AVENUE,ANTHONY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4466084,Sedan,Motorbike,,, +10/09/2021,18:45,QUEENS,11370,40.760532,-73.89291,"(40.760532, -73.89291)",30 AVENUE,75 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,,,,4465553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,18:59,BROOKLYN,11208,40.67974,-73.86962,"(40.67974, -73.86962)",,,176 MC KINLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466052,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,21:33,BROOKLYN,11219,40.63275,-73.98985,"(40.63275, -73.98985)",,,1421 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466150,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,14:20,BRONX,10469,40.879135,-73.854095,"(40.879135, -73.854095)",,,1052 EAST 217 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465830,Taxi,E-Scooter,,, +10/09/2021,11:05,BRONX,10463,40.88145,-73.91685,"(40.88145, -73.91685)",,,2700 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4465887,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,20:15,BROOKLYN,11208,40.67694,-73.87388,"(40.67694, -73.87388)",,,416 CHESTNUT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466122,Sedan,,,, +10/09/2021,12:10,QUEENS,11417,40.681087,-73.846344,"(40.681087, -73.846344)",93 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466012,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/09/2021,18:20,QUEENS,11421,40.69287,-73.85456,"(40.69287, -73.85456)",,,90-01 JAMAICA AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465572,Sedan,Bike,,, +10/09/2021,16:55,,,40.615692,-73.99366,"(40.615692, -73.99366)",71 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465607,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,2:22,BROOKLYN,11236,40.64883,-73.90492,"(40.64883, -73.90492)",FOSTER AVENUE,EAST 98 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,18:15,BROOKLYN,11223,40.59256,-73.971565,"(40.59256, -73.971565)",AVENUE W,WEST 1 STREET,,3,0,1,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4466017,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +10/09/2021,8:50,BROOKLYN,11218,40.64121,-73.98123,"(40.64121, -73.98123)",,,1424 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465724,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,21:30,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465574,Bike,Sedan,,, +10/09/2021,23:50,BROOKLYN,11209,40.62986,-74.02767,"(40.62986, -74.02767)",,,317 77 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,11:50,MANHATTAN,10014,40.728603,-74.005325,"(40.728603, -74.005325)",VARICK STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466132,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,20:00,QUEENS,11432,40.709023,-73.800575,"(40.709023, -73.800575)",,,87-31 162 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515862,Sedan,,,, +04/25/2022,20:00,MANHATTAN,10011,0,0,"(0.0, 0.0)",WEST 19 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4522488,Sedan,Bike,,, +04/15/2022,20:44,,,40.685234,-73.92654,"(40.685234, -73.92654)",PATCHEN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4522571,Sedan,,,, +04/25/2022,12:20,MANHATTAN,10075,40.775284,-73.963745,"(40.775284, -73.963745)",,,25 EAST 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522075,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,4:20,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4522502,Sedan,Sedan,,, +04/25/2022,0:02,,,40.597282,-73.907455,"(40.597282, -73.907455)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522066,Sedan,,,, +10/07/2021,19:30,,,40.81982,-73.81286,"(40.81982, -73.81286)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466106,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,14:20,QUEENS,11361,40.764263,-73.77134,"(40.764263, -73.77134)",BELL BOULEVARD,40 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465502,Sedan,,,, +10/09/2021,23:45,QUEENS,11385,40.70041,-73.90368,"(40.70041, -73.90368)",MYRTLE AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465919,Sedan,Bike,,, +10/09/2021,4:25,,,40.60459,-74.12666,"(40.60459, -74.12666)",,,301 GANSEVOORT BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465548,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,18:32,BRONX,10457,40.85189,-73.894325,"(40.85189, -73.894325)",EAST 181 STREET,BATHGATE AVENUE,,5,0,0,0,0,0,5,0,Unsafe Speed,View Obstructed/Limited,,,,4466023,Sedan,Sedan,,, +10/09/2021,1:47,QUEENS,11104,40.7449,-73.91836,"(40.7449, -73.91836)",46 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,14:30,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465630,Sedan,Bike,,, +10/08/2021,8:13,,,40.839924,-73.93286,"(40.839924, -73.93286)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466097,Sedan,Sedan,,, +10/09/2021,16:24,MANHATTAN,10021,40.765835,-73.95737,"(40.765835, -73.95737)",,,368 EAST 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465999,Sedan,Sedan,,, +10/09/2021,2:20,,,40.708374,-73.84271,"(40.708374, -73.84271)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4465564,Sedan,Sedan,,, +07/01/2022,15:00,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4543274,Sedan,Motorcycle,,, +10/09/2021,15:50,MANHATTAN,10032,40.841713,-73.93558,"(40.841713, -73.93558)",WEST 171 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466185,Sedan,Sedan,,, +10/09/2021,5:57,,,40.876785,-73.87446,"(40.876785, -73.87446)",EAST 209 STREET,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unsafe Speed,,,,4465744,Sedan,Taxi,,, +10/09/2021,3:15,BRONX,10456,40.830166,-73.90624,"(40.830166, -73.90624)",,,3480 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465702,Sedan,Sedan,,, +10/05/2021,19:15,MANHATTAN,10039,40.835808,-73.93556,"(40.835808, -73.93556)",,,159-64 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466139,Sedan,,,, +10/01/2021,10:28,MANHATTAN,10023,40.774906,-73.97692,"(40.774906, -73.97692)",WEST 70 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466164,Sedan,Moped,,, +10/09/2021,1:15,QUEENS,11378,40.72641,-73.90604,"(40.72641, -73.90604)",BORDEN AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4465792,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/09/2021,18:45,,,,,,20 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465561,Sedan,,,, +10/09/2021,14:30,,,40.849403,-73.871445,"(40.849403, -73.871445)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465528,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,17:43,BROOKLYN,11232,40.656643,-74.00527,"(40.656643, -74.00527)",34 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543353,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,23:45,BRONX,10455,40.819195,-73.912506,"(40.819195, -73.912506)",,,704 BROOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466034,FDNY,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,14:50,,,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4466112,Station Wagon/Sport Utility Vehicle,Bus,,, +10/09/2021,15:20,BROOKLYN,11212,40.66452,-73.92111,"(40.66452, -73.92111)",,,2121 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465582,Sedan,,,, +10/09/2021,10:25,BRONX,10466,40.888058,-73.831314,"(40.888058, -73.831314)",,,3805 DYRE AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4465836,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,19:44,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4466091,Sedan,Sedan,Sedan,Sedan, +10/09/2021,4:00,,,40.768806,-73.900345,"(40.768806, -73.900345)",DITMARS BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,23:30,,,40.8156,-73.9343,"(40.8156, -73.9343)",HARLEM RIVER DRIVE,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4543061,Taxi,Sedan,,, +10/09/2021,3:08,QUEENS,11432,40.71035,-73.7939,"(40.71035, -73.7939)",HILLSIDE AVENUE,168 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465474,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,14:40,BROOKLYN,11226,40.654068,-73.96177,"(40.654068, -73.96177)",WOODRUFF AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465637,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,4:34,BROOKLYN,11237,40.705677,-73.926094,"(40.705677, -73.926094)",FLUSHING AVENUE,IRVING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +10/09/2021,22:45,,,40.818974,-73.89145,"(40.818974, -73.89145)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465593,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/26/2021,10:57,,,40.662846,-73.94284,"(40.662846, -73.94284)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466196,Sedan,Sedan,,, +07/02/2022,22:30,BROOKLYN,11204,40.61536,-73.987076,"(40.61536, -73.987076)",20 AVENUE,67 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543324,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,12:31,MANHATTAN,10016,40.750217,-73.979065,"(40.750217, -73.979065)",PARK AVENUE,EAST 39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466146,Sedan,Sedan,,, +10/09/2021,17:27,QUEENS,11368,40.74138,-73.8572,"(40.74138, -73.8572)",,,103-09 53 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4465675,Convertible,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,13:37,,,40.869843,-73.91588,"(40.869843, -73.91588)",WEST 215 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,17:55,QUEENS,11419,40.6832,-73.82742,"(40.6832, -73.82742)",114 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466020,Sedan,Sedan,,, +10/09/2021,12:12,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4465556,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,21:27,MANHATTAN,10035,40.806107,-73.94039,"(40.806107, -73.94039)",,,1960 MADISON AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466085,Station Wagon/Sport Utility Vehicle,MOPED,,, +07/02/2022,21:17,QUEENS,11414,40.64912,-73.837395,"(40.64912, -73.837395)",CROSS BAY BOULEVARD,165 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4543143,Sedan,,,, +10/09/2021,21:00,,,40.664898,-73.820435,"(40.664898, -73.820435)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,6:35,,,40.599827,-74.17823,"(40.599827, -74.17823)",VICTORY BOULEVARD,TRAVIS AVENUE,,0,0,0,0,0,0,0,0,Other Electronic Device,,,,,4465547,Sedan,,,, +10/09/2021,20:44,BROOKLYN,11217,40.68787,-73.978355,"(40.68787, -73.978355)",FULTON STREET,ASHLAND PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465578,Sedan,Bike,,, +10/05/2021,16:17,,,40.73384,-74.00121,"(40.73384, -74.00121)",WAVERLY PLACE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466118,Sedan,Bike,,, +10/05/2021,8:50,,,40.626328,-74.13132,"(40.626328, -74.13132)",FOREST AVENUE,JEWETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466109,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,9:30,,,40.7011,-73.84157,"(40.7011, -73.84157)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465510,Sedan,Sedan,,, +09/20/2021,3:30,,,40.810173,-73.937416,"(40.810173, -73.937416)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4459473,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/07/2021,22:12,,,40.73398,-73.99095,"(40.73398, -73.99095)",BROADWAY,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4466152,Sedan,Bike,,, +10/09/2021,4:00,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465816,Sedan,Pick-up Truck,,, +10/05/2021,7:36,BROOKLYN,11203,40.64916,-73.94537,"(40.64916, -73.94537)",,,3400 SNYDER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466203,Bus,Sedan,,, +09/15/2021,15:30,BROOKLYN,11225,40.66227,-73.952286,"(40.66227, -73.952286)",,,271 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466219,Sedan,,,, +10/09/2021,4:45,MANHATTAN,10016,40.747627,-73.976746,"(40.747627, -73.976746)",3 AVENUE,EAST 37 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,Unspecified,Unspecified,,4465454,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/09/2021,8:15,,,40.73822,-73.95316,"(40.73822, -73.95316)",MC GUINNESS BOULEVARD,ASH STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465900,Sedan,Motorcycle,,, +10/09/2021,13:43,BROOKLYN,11215,40.670357,-73.98872,"(40.670357, -73.98872)",4 AVENUE,9 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465967,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/31/2021,0:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4491855,Sedan,Taxi,Sedan,, +10/09/2021,1:00,,,40.585144,-73.98936,"(40.585144, -73.98936)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4465669,Taxi,Sedan,,, +10/09/2021,9:00,,,40.649193,-73.88768,"(40.649193, -73.88768)",LOUISIANA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466123,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,23:40,MANHATTAN,10029,40.794807,-73.94441,"(40.794807, -73.94441)",EAST 110 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465722,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,8:52,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4465945,Sedan,Bike,,, +10/09/2021,19:46,QUEENS,11418,40.70647,-73.838104,"(40.70647, -73.838104)",,,115-98 PARK LANE SOUTH,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4465571,Motorcycle,,,, +10/09/2021,13:45,,,40.74738,-73.76171,"(40.74738, -73.76171)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465499,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,19:32,BRONX,10462,40.845776,-73.863464,"(40.845776, -73.863464)",MORRIS PARK AVENUE,WALLACE AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466060,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,1:30,BROOKLYN,11220,40.642864,-74.01266,"(40.642864, -74.01266)",5 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466133,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,14:06,,,40.622234,-73.990685,"(40.622234, -73.990685)",62 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,9:10,MANHATTAN,10033,40.84619,-73.93846,"(40.84619, -73.93846)",BROADWAY,WEST 175 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466100,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,16:05,QUEENS,11432,40.711857,-73.78742,"(40.711857, -73.78742)",,,175-35 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465709,Sedan,Sedan,,, +10/09/2021,21:02,MANHATTAN,10027,40.80923,-73.94897,"(40.80923, -73.94897)",,,206 WEST 125 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4465824,Bus,Sedan,,, +10/03/2021,19:13,STATEN ISLAND,10312,40.558887,-74.1977,"(40.558887, -74.1977)",ARTHUR KILL ROAD,ARDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4466178,Sedan,Motorcycle,,, +10/09/2021,15:25,BROOKLYN,11226,40.65243,-73.953896,"(40.65243, -73.953896)",,,135 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,7:30,BRONX,10452,40.836437,-73.91842,"(40.836437, -73.91842)",EAST 168 STREET,WALTON AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465681,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/09/2021,14:00,QUEENS,11422,40.654415,-73.7339,"(40.654415, -73.7339)",,,255-27 148 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466158,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/15/2021,9:26,MANHATTAN,10017,40.74905,-73.97243,"(40.74905, -73.97243)",,,301 EAST 41 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466170,Taxi,Bike,,, +10/09/2021,22:25,MANHATTAN,10034,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466187,Sedan,Sedan,,, +10/09/2021,14:15,QUEENS,11372,40.74745,-73.88559,"(40.74745, -73.88559)",,,80-10 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465748,E-Bike,,,, +10/09/2021,21:20,BROOKLYN,11209,40.6198312,-74.0295626,"(40.6198312, -74.0295626)",90 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4465617,E-Bike,,,, +10/09/2021,7:15,,,40.841044,-73.9219463,"(40.841044, -73.9219463)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466298,Sedan,,,, +12/11/2021,15:19,QUEENS,11417,40.67858,-73.84216,"(40.67858, -73.84216)",96 STREET,108 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485868,Sedan,Sedan,,, +12/11/2021,14:30,BROOKLYN,11234,40.61222,-73.918846,"(40.61222, -73.918846)",,,5602 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485649,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,20:05,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",DELANCEY STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486213,Sedan,,,, +12/11/2021,22:30,MANHATTAN,10019,40.766697,-73.99462,"(40.766697, -73.99462)",,,609 WEST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486071,Taxi,,,, +12/11/2021,20:15,BROOKLYN,11213,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,SAINT JOHNS PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485685,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,16:32,BROOKLYN,11236,40.64113,-73.901955,"(40.64113, -73.901955)",,,1217 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542929,Station Wagon/Sport Utility Vehicle,UHAUL TRUC,,, +07/01/2022,16:47,MANHATTAN,10029,40.791912,-73.94444,"(40.791912, -73.94444)",,,1934 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543204,Sedan,,,, +12/24/2021,18:40,BROOKLYN,11210,40.62625,-73.95163,"(40.62625, -73.95163)",BEDFORD AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4489563,Convertible,Sedan,,, +12/23/2021,9:10,QUEENS,11430,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4489793,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,5:17,,,40.74693,-73.84866,"(40.74693, -73.84866)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4491857,Sedan,Sedan,,, +07/01/2022,9:21,MANHATTAN,10002,40.714462,-73.98166,"(40.714462, -73.98166)",GRAND STREET,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543412,Sedan,Bike,,, +07/01/2022,19:01,BRONX,10458,40.86581,-73.88922,"(40.86581, -73.88922)",MARION AVENUE,EAST 196 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543295,Sedan,,,, +07/01/2022,14:15,MANHATTAN,10003,40.728306,-73.99276,"(40.728306, -73.99276)",,,399 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unsafe Lane Changing,,,,4543440,Taxi,Bike,,, +07/02/2022,15:05,QUEENS,11412,40.691444,-73.75211,"(40.691444, -73.75211)",119 AVENUE,199 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4543168,Sedan,Sedan,,, +07/02/2022,19:06,STATEN ISLAND,10305,40.595848,-74.0624,"(40.595848, -74.0624)",CAPODANNO BOULEVARD,ROBIN ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4542971,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/02/2022,17:30,,,40.68509,-73.80518,"(40.68509, -73.80518)",111 AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543171,Sedan,Tractor Truck Diesel,,, +07/02/2022,14:30,QUEENS,11105,40.77278,-73.896484,"(40.77278, -73.896484)",,,48-14 20 AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4543121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/26/2022,19:24,QUEENS,11367,40.726685,-73.82183,"(40.726685, -73.82183)",MAIN STREET,72 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4543332,Sedan,Sedan,,, +07/02/2022,2:55,BROOKLYN,11222,40.72624,-73.93178,"(40.72624, -73.93178)",THOMAS STREET,GARDNER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542604,Sedan,,,, +06/30/2022,10:30,BROOKLYN,11212,,,,MOTHER GASTON BOULEVARD,Sutter ave,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543387,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,2:45,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4542874,Sedan,Sedan,,, +06/30/2022,5:20,,,40.79286,-73.96754,"(40.79286, -73.96754)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4543269,Taxi,Sedan,,, +06/10/2022,1:30,MANHATTAN,10003,40.73166,-73.98545,"(40.73166, -73.98545)",EAST 13 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543439,Sedan,Tractor Truck Diesel,,, +07/02/2022,16:49,BROOKLYN,11203,40.649693,-73.936966,"(40.649693, -73.936966)",SNYDER AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543317,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2022,3:20,QUEENS,11101,40.7485,-73.93853,"(40.7485, -73.93853)",,,28-10 JACKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4542650,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,17:45,,,40.86177,-73.89868,"(40.86177, -73.89868)",EAST 188 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4543342,Sedan,Bike,,, +07/02/2022,19:48,QUEENS,11422,40.665092,-73.72988,"(40.665092, -73.72988)",248 STREET,HOOK CREEK BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542815,Sedan,,,, +07/02/2022,16:55,,,,,,ASTORIA BLVD,49 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543122,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/27/2022,9:00,BROOKLYN,11212,40.672745,-73.90766,"(40.672745, -73.90766)",LIBERTY AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543395,Bus,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,5:11,BROOKLYN,11236,40.631554,-73.89764,"(40.631554, -73.89764)",AVENUE N,EAST 89 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4542931,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,0:17,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543264,Taxi,Taxi,,, +02/16/2022,11:50,MANHATTAN,10011,40.74284,-74.00028,"(40.74284, -74.00028)",WEST 19 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504907,Bike,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,0:00,BRONX,10466,40.894978,-73.846375,"(40.894978, -73.846375)",BUSSING AVENUE,GRACE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504891,Sedan,Sedan,,, +07/01/2022,15:50,,,40.8281,-73.92021,"(40.8281, -73.92021)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543292,Sedan,Box Truck,,, +01/01/2022,1:30,,,40.819157,-73.96038,"(40.819157, -73.96038)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491344,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,16:40,BRONX,10454,40.806107,-73.91799,"(40.806107, -73.91799)",,,520 EAST 137 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491478,Sedan,Sedan,,, +01/01/2022,13:07,QUEENS,11373,40.742737,-73.87643,"(40.742737, -73.87643)",,,89-22 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491843,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/01/2022,10:00,,,,,,VANDAM STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491791,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,2:09,QUEENS,11435,40.714996,-73.81022,"(40.714996, -73.81022)",150 STREET,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491064,Sedan,Sedan,,, +01/01/2022,21:43,BROOKLYN,11235,40.58392,-73.9379,"(40.58392, -73.9379)",,,3030 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491373,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/01/2022,2:53,BROOKLYN,11232,40.646034,-73.99678,"(40.646034, -73.99678)",,,850 40 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,17:02,MANHATTAN,10002,40.71236,-73.99375,"(40.71236, -73.99375)",MADISON STREET,MECHANICS ALLEY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491430,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,14:10,BROOKLYN,11201,0,0,"(0.0, 0.0)",,,257 GOLD STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491728,Sedan,Van,,, +01/01/2022,3:42,,,40.604618,-74.02771,"(40.604618, -74.02771)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491078,Sedan,,,, +01/01/2022,15:19,BRONX,10456,40.83375,-73.90049,"(40.83375, -73.90049)",,,1342 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491440,Taxi,,,, +12/18/2021,1:45,,,40.725433,-73.951744,"(40.725433, -73.951744)",NORMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491837,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,15:00,BRONX,10453,40.85879,-73.907364,"(40.85879, -73.907364)",AQUEDUCT AVENUE,BUCHANAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491694,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,3:46,MANHATTAN,10034,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491096,Taxi,Sedan,,, +01/01/2022,7:30,BROOKLYN,11208,40.655655,-73.87344,"(40.655655, -73.87344)",VANDALIA AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491305,Sedan,,,, +10/10/2021,18:00,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4465845,Sedan,,,, +05/19/2021,10:00,,,40.79191,-73.94151,"(40.79191, -73.94151)",2 AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418594,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/03/2021,11:05,MANHATTAN,10019,40.76172,-73.98281,"(40.76172, -73.98281)",7 AVENUE,WEST 51 STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423403,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,7:10,,,40.753387,-73.99631,"(40.753387, -73.99631)",WEST 34 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4424287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,18:43,,,40.586445,-73.98838,"(40.586445, -73.98838)",CROPSEY AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4426371,Sedan,Pick-up Truck,,, +06/13/2021,15:15,MANHATTAN,10010,40.738644,-73.98751,"(40.738644, -73.98751)",,,260 PARK AVENUE SOUTH,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4426658,Bike,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,2:58,MANHATTAN,10013,40.719936,-74.001434,"(40.719936, -74.001434)",HOWARD STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427601,Sedan,Garbage or Refuse,,, +06/13/2021,10:50,,,40.636814,-74.15767,"(40.636814, -74.15767)",,,2928 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4426866,Sedan,Sedan,,, +06/13/2021,15:32,MANHATTAN,10012,40.724167,-74.00113,"(40.724167, -74.00113)",WOOSTER STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426733,Sedan,Sedan,,, +05/22/2021,21:10,,,40.814487,-73.95547,"(40.814487, -73.95547)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4427508,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/13/2021,21:51,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4427468,Dirt Bike,,,, +06/13/2021,21:11,BROOKLYN,11207,40.685795,-73.911644,"(40.685795, -73.911644)",BUSHWICK AVENUE,SCHAEFER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Traffic Control Disregarded,,,,4427287,Sedan,Sedan,,, +06/13/2021,12:55,BROOKLYN,11212,40.663383,-73.90329,"(40.663383, -73.90329)",LIVONIA AVENUE,SACKMAN STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4427228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,0:46,BRONX,10468,40.860264,-73.90164,"(40.860264, -73.90164)",EAST 184 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426304,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:23,,,40.728832,-73.88052,"(40.728832, -73.88052)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4426709,Sedan,Sedan,,, +06/11/2021,0:50,QUEENS,11377,40.748146,-73.90426,"(40.748146, -73.90426)",38 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4427522,Sedan,Sedan,Sedan,, +06/13/2021,19:05,STATEN ISLAND,10306,40.556534,-74.12813,"(40.556534, -74.12813)",HYLAN BOULEVARD,BUFFALO STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4426945,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,7:10,BRONX,10451,40.82294,-73.91451,"(40.82294, -73.91451)",EAST 159 STREET,MELROSE AVENUE,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4426783,Sedan,Taxi,,, +06/13/2021,23:30,BROOKLYN,11234,40.643764,-73.87721,"(40.643764, -73.87721)",PENNSYLVANIA AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427134,Sedan,Sedan,,, +06/07/2021,12:36,BROOKLYN,11212,40.669117,-73.905716,"(40.669117, -73.905716)",BELMONT AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427347,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,6:35,BRONX,10457,40.851967,-73.897095,"(40.851967, -73.897095)",PARK AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427415,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,0:34,QUEENS,11429,40.713062,-73.73994,"(40.713062, -73.73994)",217 PLACE,103 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4426318,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,5:00,QUEENS,11417,40.67089,-73.840805,"(40.67089, -73.840805)",149 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426799,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,18:15,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",COURT STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427283,Sedan,Sedan,,, +06/07/2021,18:40,,,,,,49 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427651,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,23:15,QUEENS,11432,40.708515,-73.8034,"(40.708515, -73.8034)",,,87-22 PARSONS BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427337,Sedan,,,, +06/13/2021,21:43,QUEENS,11375,40.711704,-73.84477,"(40.711704, -73.84477)",KESSEL STREET,ASCAN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427076,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,7:47,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4426365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,5:11,MANHATTAN,10032,40.83496,-73.939865,"(40.83496, -73.939865)",,,1005 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4426636,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/13/2021,3:01,BRONX,10463,40.882595,-73.89796,"(40.882595, -73.89796)",WEST 238 STREET,FORT INDEPENDENCE STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4426877,Sedan,,,, +06/13/2021,2:55,QUEENS,11378,40.722298,-73.89265,"(40.722298, -73.89265)",,,69-29 59 DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4427494,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/13/2021,10:30,BROOKLYN,11207,40.674637,-73.88989,"(40.674637, -73.88989)",,,304 HENDRIX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,13:20,BROOKLYN,11214,40.610455,-73.99576,"(40.610455, -73.99576)",78 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426960,4 dr sedan,Sedan,,, +06/13/2021,18:25,STATEN ISLAND,10301,40.630806,-74.10369,"(40.630806, -74.10369)",FOREST AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427005,Sedan,,,, +06/13/2021,17:40,BRONX,10467,40.86208,-73.86748,"(40.86208, -73.86748)",,,2435 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426607,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/13/2021,12:17,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4426477,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,0:30,BRONX,10454,40.804413,-73.90967,"(40.804413, -73.90967)",,,805 EAST 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427372,Sedan,,,, +06/09/2021,6:40,BROOKLYN,11206,40.696686,-73.9378,"(40.696686, -73.9378)",MYRTLE AVENUE,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427401,Taxi,E-Bike,,, +06/08/2021,18:41,BROOKLYN,11233,40.674755,-73.91109,"(40.674755, -73.91109)",ROCKAWAY AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427444,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/25/2022,4:56,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4521862,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/13/2021,10:00,BRONX,10469,40.86158,-73.85491,"(40.86158, -73.85491)",,,2415 YATES AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4426598,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,2:36,BROOKLYN,11222,,,,,,484 VANDERVORT AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426494,Sedan,Box Truck,,, +06/04/2021,9:00,,,40.60652,-74.11913,"(40.60652, -74.11913)",WESTWOOD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427312,Sedan,,,, +06/13/2021,20:10,BRONX,10473,40.819614,-73.85967,"(40.819614, -73.85967)",SEWARD AVENUE,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426624,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,8:15,,,40.600204,-74.00284,"(40.600204, -74.00284)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426388,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,0:00,BROOKLYN,11236,40.64053,-73.90132,"(40.64053, -73.90132)",,,1246 EAST 94 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4427002,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,8:00,,,40.759483,-73.904564,"(40.759483, -73.904564)",57 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427625,Sedan,,,, +06/13/2021,3:55,BRONX,10467,40.88024,-73.86326,"(40.88024, -73.86326)",EAST 215 STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4426767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/13/2021,13:42,BROOKLYN,11218,40.641514,-73.97347,"(40.641514, -73.97347)",,,327 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426837,Van,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,22:00,BROOKLYN,11233,40.682194,-73.92261,"(40.682194, -73.92261)",,,218 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427502,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,0:20,,,40.73715,-73.930824,"(40.73715, -73.930824)",BORDEN AVENUE,GREENPOINT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427566,Sedan,Tractor Truck Diesel,,, +06/13/2021,13:25,BROOKLYN,11215,40.666904,-73.976326,"(40.666904, -73.976326)",,,595 6 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427041,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +06/13/2021,14:15,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",ALABAMA AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4426926,Station Wagon/Sport Utility Vehicle,Bike,,, +06/13/2021,5:00,BRONX,10453,40.8557,-73.91495,"(40.8557, -73.91495)",WEST 179 STREET,HENNESSEY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427023,Sedan,,,, +06/13/2021,5:50,QUEENS,11377,40.73931,-73.91947,"(40.73931, -73.91947)",48 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4426455,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,8:59,QUEENS,11004,40.73851,-73.70284,"(40.73851, -73.70284)",HILLSIDE AVENUE,266 STREET,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4426617,Sedan,Box Truck,,, +06/13/2021,17:45,BROOKLYN,11224,40.575302,-73.98453,"(40.575302, -73.98453)",WEST 17 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426716,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,6:33,,,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427360,Taxi,Sedan,,, +06/12/2021,13:27,QUEENS,11693,40.585373,-73.80963,"(40.585373, -73.80963)",SHORE FRONT PARKWAY,BEACH 84 STREET,,2,0,1,0,1,0,0,0,Unspecified,,,,,4427452,Bike,,,, +06/13/2021,9:00,BROOKLYN,11207,40.655983,-73.897575,"(40.655983, -73.897575)",DE WITT AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426920,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,18:00,BROOKLYN,11222,40.73352,-73.95707,"(40.73352, -73.95707)",,,110 GREEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427211,Sedan,Box Truck,,, +06/08/2021,13:00,,,40.625347,-74.15081,"(40.625347, -74.15081)",,,1860 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4427377,Sedan,Van,Sedan,, +06/13/2021,15:55,,,40.754707,-73.99164,"(40.754707, -73.99164)",8 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4426641,Taxi,Bike,,, +06/13/2021,14:24,,,40.828075,-73.88543,"(40.828075, -73.88543)",SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4427433,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,15:45,BROOKLYN,11209,40.624966,-74.033394,"(40.624966, -74.033394)",85 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426671,Sedan,Sedan,,, +06/08/2021,8:25,,,40.603493,-74.067345,"(40.603493, -74.067345)",VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427318,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/13/2021,10:15,QUEENS,11378,40.71319,-73.91078,"(40.71319, -73.91078)",METROPOLITAN AVENUE,ARNOLD AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4426542,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,19:30,BROOKLYN,11213,40.676216,-73.93764,"(40.676216, -73.93764)",,,1517 DEAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427126,Sedan,,,, +06/13/2021,19:07,BROOKLYN,11208,40.660652,-73.86577,"(40.660652, -73.86577)",CRESCENT STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426934,Sedan,Tractor Truck Diesel,,, +06/13/2021,10:10,,,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426989,Sedan,,,, +06/03/2021,22:15,BROOKLYN,11212,40.672676,-73.90994,"(40.672676, -73.90994)",,,1569 EAST NEW YORK AVENUE,1,0,1,0,0,0,0,0,,,,,,4427445,,,,, +06/09/2021,12:19,BRONX,10456,40.82748,-73.910866,"(40.82748, -73.910866)",,,422 EAST 165 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4427629,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,2:20,QUEENS,11435,40.702274,-73.81154,"(40.702274, -73.81154)",JAMAICA AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427107,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,15:22,,,40.83,-73.91812,"(40.83, -73.91812)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427300,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,13:35,BROOKLYN,11229,40.606197,-73.95874,"(40.606197, -73.95874)",,,1793 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426759,Sedan,,,, +06/13/2021,13:30,QUEENS,11691,40.60638,-73.754715,"(40.60638, -73.754715)",BEACH CHANNEL DRIVE,DIX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427237,Sedan,,,, +06/13/2021,3:54,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,Driver Inexperience,,,4426805,Sedan,,,, +06/02/2021,23:30,MANHATTAN,10027,40.813198,-73.95825,"(40.813198, -73.95825)",,,55 LASALLE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427511,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,23:23,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4426686,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/09/2021,16:45,QUEENS,11104,40.741585,-73.92281,"(40.741585, -73.92281)",47 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427525,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,21:50,,,40.627365,-74.166565,"(40.627365, -74.166565)",FOREST AVENUE,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426895,Sedan,Sedan,,, +06/08/2021,17:00,BROOKLYN,11207,40.66375,-73.90089,"(40.66375, -73.90089)",,,453 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4427351,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/13/2021,1:25,BROOKLYN,11237,40.695847,-73.908806,"(40.695847, -73.908806)",IRVING AVENUE,JEFFERSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426648,Bike,,,, +06/13/2021,12:27,,,,,,,,101 EAST DRIVE,1,0,0,0,1,0,0,0,Unspecified,,,,,4427165,Bike,,,, +05/31/2021,20:45,,,40.70722,-73.78957,"(40.70722, -73.78957)",170 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4427386,Garbage or Refuse,Sedan,,, +06/13/2021,12:10,BROOKLYN,11226,40.649944,-73.96703,"(40.649944, -73.96703)",CATON AVENUE,RUGBY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,17:00,,,40.73149,-73.84215,"(40.73149, -73.84215)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426711,Sedan,,,, +06/13/2021,16:39,BROOKLYN,11226,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,PARADE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426852,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,13:21,BRONX,10454,40.805557,-73.91047,"(40.805557, -73.91047)",BRUCKNER BOULEVARD,EAST 140 STREET,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4426790,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,12:20,MANHATTAN,10003,40.73117,-73.98433,"(40.73117, -73.98433)",,,346 EAST 13 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427278,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/13/2021,1:34,MANHATTAN,10017,40.75295,-73.96681,"(40.75295, -73.96681)",,,871 UN PLAZA,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426309,Station Wagon/Sport Utility Vehicle,,,, +05/28/2021,20:20,,,40.844524,-73.902725,"(40.844524, -73.902725)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,20:07,QUEENS,11433,40.691967,-73.78251,"(40.691967, -73.78251)",168 STREET,SAYRES AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4427424,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,14:44,,,40.70986,-73.96696,"(40.70986, -73.96696)",WYTHE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426664,Sedan,Box Truck,,, +06/12/2021,10:21,BRONX,10460,40.84689,-73.8853,"(40.84689, -73.8853)",,,2110 MAPES AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427413,Sedan,,,, +01/01/2022,18:21,BRONX,10466,40.890648,-73.84875,"(40.890648, -73.84875)",EAST 233 STREET,GUNTHER AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4491488,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,9:05,BROOKLYN,11233,40.67069,-73.91703,"(40.67069, -73.91703)",SARATOGA AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4427226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,1:45,QUEENS,11434,40.65979,-73.773476,"(40.65979, -73.773476)",,,147-95B FARMERS BOULEVARD,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4426320,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,18:29,BROOKLYN,11201,40.68943,-73.99688,"(40.68943, -73.99688)",AMITY STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427286,Sedan,,,, +06/13/2021,17:30,BROOKLYN,11201,40.693523,-73.980316,"(40.693523, -73.980316)",,,218 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4426645,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/08/2021,12:00,QUEENS,11101,40.752937,-73.940414,"(40.752937, -73.940414)",,,23-09 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427653,Sedan,Sedan,,, +06/13/2021,15:00,BRONX,10454,40.80489,-73.922844,"(40.80489, -73.922844)",,,109 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4426796,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/13/2021,17:00,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427338,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,19:15,BROOKLYN,11203,40.64212,-73.94381,"(40.64212, -73.94381)",,,531 EAST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426687,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,21:40,BROOKLYN,11221,40.685013,-73.929474,"(40.685013, -73.929474)",,,231 REID AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427069,Ambulance,Sedan,,, +06/10/2021,14:40,QUEENS,11103,40.758602,-73.91379,"(40.758602, -73.91379)",45 STREET,NEWTOWN ROAD,,1,0,1,0,0,0,0,0,,,,,,4427655,,,,, +06/13/2021,18:50,QUEENS,11434,40.664417,-73.76975,"(40.664417, -73.76975)",,,177-26 145 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427148,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,5:08,,,40.614082,-74.14263,"(40.614082, -74.14263)",,,381 CRYSTAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427602,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,3:41,BROOKLYN,11223,40.607338,-73.96189,"(40.607338, -73.96189)",CONEY ISLAND AVENUE,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4426753,Sedan,Tractor Truck Diesel,,, +06/10/2021,18:30,,,40.826042,-73.85933,"(40.826042, -73.85933)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4427473,Bus,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +06/08/2021,13:20,,,40.79423,-73.94695,"(40.79423, -73.94695)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427403,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,2:10,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427315,Sedan,Sedan,,, +05/25/2021,5:40,QUEENS,11423,40.717754,-73.75815,"(40.717754, -73.75815)",205 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427512,Sedan,,,, +06/13/2021,0:36,QUEENS,11385,40.7008,-73.907364,"(40.7008, -73.907364)",CYPRESS AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4426541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,14:00,BRONX,10462,40.848362,-73.86252,"(40.848362, -73.86252)",RHINELANDER AVENUE,MATTHEWS AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4426599,Sedan,Bike,,, +06/13/2021,16:30,,,40.653755,-73.88173,"(40.653755, -73.88173)",VAN SICLEN AVENUE,VANDALIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426929,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,16:45,QUEENS,11412,40.701824,-73.753494,"(40.701824, -73.753494)",113 AVENUE,202 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4427395,Sedan,Sedan,,, +06/13/2021,16:28,MANHATTAN,10011,40.739872,-73.996895,"(40.739872, -73.996895)",,,150 WEST 17 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4426660,Sedan,Sedan,,, +06/13/2021,4:25,MANHATTAN,10001,40.751404,-74.00518,"(40.751404, -74.00518)",WEST 27 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4427027,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,16:21,BRONX,10457,40.851467,-73.89557,"(40.851467, -73.89557)",EAST 180 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427345,Sedan,,,, +06/13/2021,3:50,QUEENS,11369,,,,,,107-02 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426468,Sedan,,,, +06/13/2021,2:55,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426863,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,15:30,BROOKLYN,11207,40.677887,-73.89796,"(40.677887, -73.89796)",BUSHWICK AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4426935,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,12:03,STATEN ISLAND,10310,40.631176,-74.120285,"(40.631176, -74.120285)",,,118 ELIZABETH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426589,Sedan,,,, +06/13/2021,22:30,MANHATTAN,10024,40.78913,-73.97638,"(40.78913, -73.97638)",,,260 WEST 87 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4426715,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,20:00,QUEENS,11354,40.763695,-73.81911,"(40.763695, -73.81911)",147 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427212,Station Wagon/Sport Utility Vehicle,,,, +05/21/2020,12:00,BROOKLYN,11207,40.68484,-73.90672,"(40.68484, -73.90672)",,,109 PILLING STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427297,Sedan,,,, +06/13/2021,16:08,,,40.86155,-73.92472,"(40.86155, -73.92472)",NAGLE AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4427048,Motorcycle,Sedan,,, +06/12/2021,14:00,QUEENS,11372,40.74656,-73.89413,"(40.74656, -73.89413)",,,71-26 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,16:40,BROOKLYN,11237,40.698757,-73.91885,"(40.698757, -73.91885)",GREENE AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426653,Box Truck,Sedan,,, +06/13/2021,20:55,,,40.833416,-73.90709,"(40.833416, -73.90709)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426726,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/10/2021,17:42,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",DAVIDSON AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427460,Sedan,FIRETRUCK,,, +06/13/2021,2:15,BRONX,10465,40.82656,-73.82208,"(40.82656, -73.82208)",,,3715 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,,,,,,4427451,,,,, +06/02/2021,23:20,BROOKLYN,11208,40.68319,-73.8663,"(40.68319, -73.8663)",ATLANTIC AVENUE,ELDERTS LANE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427363,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,4:30,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427185,Pick-up Truck,Sedan,,, +06/13/2021,17:44,,,,,,,,1365 BRUCKNER EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427434,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,13:49,BROOKLYN,11207,40.655563,-73.87974,"(40.655563, -73.87974)",FLATLANDS AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426924,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,4:00,,,40.606014,-74.00517,"(40.606014, -74.00517)",BAY 17 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:00,,,40.850395,-73.9228,"(40.850395, -73.9228)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427021,Sedan,Sedan,,, +06/13/2021,9:00,MANHATTAN,10017,40.748405,-73.97094,"(40.748405, -73.97094)",TUDOR CITY PLACE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426625,Sedan,Moped,,, +06/10/2021,22:11,,,40.737152,-73.90602,"(40.737152, -73.90602)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4427565,Sedan,Motorcycle,,, +06/13/2021,15:05,,,40.66879,-73.88839,"(40.66879, -73.88839)",HENDRIX STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426939,Sedan,Sedan,,, +06/13/2021,18:55,BRONX,10463,40.88437,-73.89582,"(40.88437, -73.89582)",,,3878 ORLOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426876,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,5:14,BRONX,10466,40.895496,-73.852295,"(40.895496, -73.852295)",,,4314 DIGNEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426765,Sedan,Sedan,,, +06/11/2021,18:01,BRONX,10462,40.853683,-73.86917,"(40.853683, -73.86917)",BRONX PARK EAST,MARAN PLACE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4427459,Station Wagon/Sport Utility Vehicle,Bike,,, +06/11/2021,21:52,QUEENS,11416,40.680923,-73.85503,"(40.680923, -73.85503)",84 STREET,102 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427310,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,1:00,QUEENS,11419,40.686073,-73.81564,"(40.686073, -73.81564)",,,107-46 128 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426823,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,10:54,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4427187,Sedan,Sedan,Sedan,, +06/01/2021,13:36,BROOKLYN,11217,40.685215,-73.982475,"(40.685215, -73.982475)",,,465 PACIFIC STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427491,Sedan,Ambulance,,, +01/01/2022,0:20,MANHATTAN,10017,40.75478,-73.97994,"(40.75478, -73.97994)",5 AVENUE,EAST 44 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,9:20,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427028,Sedan,Sedan,,, +06/13/2021,0:00,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427109,Sedan,Taxi,,, +06/13/2021,16:25,BRONX,10456,40.82712,-73.909744,"(40.82712, -73.909744)",,,474 EAST 165 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426725,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,5:13,BROOKLYN,11229,40.60366,-73.94734,"(40.60366, -73.94734)",,,4027 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4426958,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,0:27,BROOKLYN,11236,40.639023,-73.90462,"(40.639023, -73.90462)",,,1275 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4426377,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/13/2021,7:00,,,40.8205,-73.81183,"(40.8205, -73.81183)",MILES AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426846,Pick-up Truck,,,, +06/13/2021,15:46,BROOKLYN,11221,40.686436,-73.9292,"(40.686436, -73.9292)",,,795 PUTNAM AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4426605,Sedan,Sedan,,, +06/08/2021,19:00,QUEENS,11106,0,0,"(0.0, 0.0)",37 AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427624,Tractor Truck Diesel,Van,,, +06/13/2021,15:45,BRONX,10457,40.855686,-73.89594,"(40.855686, -73.89594)",,,2254 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426853,Sedan,,,, +06/13/2021,12:54,BROOKLYN,11206,40.706047,-73.94129,"(40.706047, -73.94129)",BOERUM STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426663,Sedan,Sedan,,, +06/13/2021,13:15,BRONX,10458,40.85441,-73.88139,"(40.85441, -73.88139)",,,2423 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426844,Motorcycle,,,, +03/27/2021,15:25,,,40.6915,-73.90956,"(40.6915, -73.90956)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427500,PK,,,, +06/13/2021,7:47,QUEENS,11691,40.60158,-73.7409,"(40.60158, -73.7409)",READS LANE,OAK DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427236,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/13/2021,14:00,BROOKLYN,11223,40.602478,-73.96636,"(40.602478, -73.96636)",OCEAN PARKWAY,AVENUE S,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4426758,Sedan,Bike,,, +06/13/2021,23:08,MANHATTAN,10009,40.72383,-73.983795,"(40.72383, -73.983795)",,,207 EAST 4 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427279,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,3:17,MANHATTAN,10022,40.75582,-73.970764,"(40.75582, -73.970764)",3 AVENUE,EAST 50 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426310,Bike,,,, +01/01/2022,5:55,QUEENS,11435,40.693344,-73.80228,"(40.693344, -73.80228)",WALTHAM STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4491624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck +06/11/2021,14:00,,,40.721943,-73.95545,"(40.721943, -73.95545)",NORTH 13 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427574,PK,,,, +06/13/2021,21:30,QUEENS,11101,40.74223,-73.95885,"(40.74223, -73.95885)",2 STREET,BORDEN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427088,E-Bike,,,, +05/29/2021,7:00,MANHATTAN,10039,40.82181,-73.939514,"(40.82181, -73.939514)",,,200 WEST 145 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427422,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,20:05,,,40.687485,-73.75057,"(40.687485, -73.75057)",122 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427396,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,14:00,BROOKLYN,11207,40.683193,-73.891266,"(40.683193, -73.891266)",,,310 HIGHLAND BOULEVARD,0,0,0,0,0,0,0,0,,,,,,4426936,,,,, +06/13/2021,7:00,STATEN ISLAND,10310,40.626842,-74.12697,"(40.626842, -74.12697)",,,1110 FOREST AVENUE,2,0,0,0,0,0,2,0,Glare,Unspecified,,,,4426588,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,16:35,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426593,Sedan,Sedan,,, +06/13/2021,22:57,MANHATTAN,10035,40.80256,-73.943,"(40.80256, -73.943)",MADISON AVENUE,EAST 120 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4426896,Sedan,E-Scooter,,, +06/06/2021,4:45,MANHATTAN,10012,40.71985,-73.994255,"(40.71985, -73.994255)",,,158 BOWERY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427325,Sedan,Sedan,,, +06/13/2021,8:28,QUEENS,11411,40.69787,-73.743034,"(40.69787, -73.743034)",SPRINGFIELD BOULEVARD,116 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4426616,Sedan,Sedan,,, +06/13/2021,0:00,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426930,Sedan,Sedan,,, +05/25/2021,19:30,BROOKLYN,11212,40.666653,-73.90275,"(40.666653, -73.90275)",,,444 BLAKE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427350,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,13:30,,,40.703545,-73.92234,"(40.703545, -73.92234)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426652,Sedan,,,, +06/13/2021,13:50,MANHATTAN,10029,40.79378,-73.945175,"(40.79378, -73.945175)",,,1738 LEXINGTON AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4426990,Taxi,Bike,,, +06/12/2021,19:10,,,40.688656,-73.760704,"(40.688656, -73.760704)",119 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427394,Sedan,,,, +06/13/2021,1:40,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426445,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,8:00,,,40.625046,-74.16651,"(40.625046, -74.16651)",,,55 ANDREA PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426906,Sedan,,,, +06/13/2021,9:30,QUEENS,11106,40.76843,-73.9354,"(40.76843, -73.9354)",,,11-21 31 DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427628,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,21:00,BROOKLYN,11210,40.62469,-73.93634,"(40.62469, -73.93634)",ALTON PLACE,EAST 40 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426975,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,0:15,,,40.854874,-73.916794,"(40.854874, -73.916794)",SEDGWICK AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4427025,Sedan,E-Scooter,,, +06/13/2021,2:35,BROOKLYN,11213,40.679367,-73.931335,"(40.679367, -73.931335)",FULTON STREET,STUYVESANT AVENUE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Passing or Lane Usage Improper,,,,4426475,Sedan,Sedan,,, +06/13/2021,15:15,QUEENS,11413,40.677883,-73.74561,"(40.677883, -73.74561)",224 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426613,Sedan,,,, +06/11/2021,12:00,BROOKLYN,11215,40.678135,-73.98492,"(40.678135, -73.98492)",,,568 UNION STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427366,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,0:00,,,,,,LINDEN PLACE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4427382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,17:04,BROOKLYN,11214,40.60548,-73.999725,"(40.60548, -73.999725)",86 STREET,BAY 22 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4426644,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,19:17,QUEENS,11417,40.67233,-73.84019,"(40.67233, -73.84019)",,,137-19 96 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426797,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,8:49,BROOKLYN,11233,40.676247,-73.907135,"(40.676247, -73.907135)",ATLANTIC AVENUE,SHERLOCK PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427352,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,5:22,,,40.728413,-73.88078,"(40.728413, -73.88078)",LONG ISLAND EXPRESSWAY,81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427079,Sedan,Sedan,,, +06/13/2021,21:55,QUEENS,11418,40.70084,-73.824585,"(40.70084, -73.824585)",,,87-09 126 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4427314,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/13/2021,14:04,BRONX,10462,40.835648,-73.855545,"(40.835648, -73.855545)",,,1470 UNIONPORT ROAD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4426527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,22:00,,,40.754707,-73.99164,"(40.754707, -73.99164)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426661,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/13/2021,5:00,,,40.630535,-73.8884,"(40.630535, -73.8884)",CANARSIE ROAD,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4426374,,,,, +06/13/2021,20:00,BRONX,10473,40.81891,-73.86819,"(40.81891, -73.86819)",,,710 CROES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426627,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,17:35,,,40.695255,-73.75554,"(40.695255, -73.75554)",197 STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4427428,Bike,,,, +01/01/2022,17:00,,,40.701195,-73.91409,"(40.701195, -73.91409)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491660,Sedan,Sedan,,, +06/13/2021,17:30,QUEENS,11413,40.678226,-73.742386,"(40.678226, -73.742386)",227 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426620,Sedan,Sedan,,, +06/12/2021,16:34,STATEN ISLAND,10301,40.643215,-74.098305,"(40.643215, -74.098305)",CLINTON AVENUE,FILLMORE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4427478,Sedan,Sedan,Sedan,, +06/13/2021,14:14,BROOKLYN,11212,40.66633,-73.91571,"(40.66633, -73.91571)",SUTTER AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4427235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,4:39,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4426993,Sedan,,,, +06/08/2021,10:00,BROOKLYN,11205,40.693104,-73.966835,"(40.693104, -73.966835)",,,181 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427514,Sedan,,,, +06/13/2021,23:01,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4426690,Sedan,Sedan,,, +06/13/2021,11:55,BROOKLYN,11208,40.673946,-73.86966,"(40.673946, -73.86966)",,,566 CRESCENT STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4426928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,23:25,BRONX,10453,40.852703,-73.921844,"(40.852703, -73.921844)",MATTHEWSON ROAD,HARLEM RIVER PARK,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427019,Sedan,,,, +06/13/2021,1:45,BROOKLYN,11214,40.60739,-74.007454,"(40.60739, -74.007454)",BENSON AVENUE,BAY 14 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4426957,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,13:44,,,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4426770,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,3:00,QUEENS,11413,40.67235,-73.75269,"(40.67235, -73.75269)",,,220-15 139 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4427141,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/11/2021,23:40,BRONX,10458,40.857056,-73.88326,"(40.857056, -73.88326)",,,2490 CAMBRELENG AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427344,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,22:00,QUEENS,11363,40.771946,-73.734406,"(40.771946, -73.734406)",NORTHERN BOULEVARD,MORGAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426679,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,4:45,QUEENS,11103,,,,GRAND CENTRAL PARKWAY,31 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4427647,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,16:30,QUEENS,11354,40.767998,-73.830864,"(40.767998, -73.830864)",137 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427215,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,22:00,,,40.63195,-74.14667,"(40.63195, -74.14667)",MORNINGSTAR ROAD,HOOKER PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427589,Sedan,Motorcycle,,, +06/13/2021,5:20,,,40.60309,-73.99262,"(40.60309, -73.99262)",84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426332,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,7:30,QUEENS,11691,,,,Seagirt Boulevard,Beach 17 street,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427281,Sedan,,,, +06/13/2021,6:28,,,40.830223,-73.834045,"(40.830223, -73.834045)",BRUCKNER BOULEVARD,BALCOM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427438,Sedan,,,, +06/13/2021,15:30,,,40.610455,-73.99576,"(40.610455, -73.99576)",78 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426600,Sedan,,,, +06/13/2021,16:24,BROOKLYN,11236,40.635696,-73.903465,"(40.635696, -73.903465)",,,1111 EAST 88 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426727,Sedan,Sedan,,, +06/13/2021,4:10,,,40.753933,-73.86122,"(40.753933, -73.86122)",37 AVENUE,107 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4427404,Bike,E-Bike,,, +06/09/2021,15:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,11:50,MANHATTAN,10024,40.779476,-73.97358,"(40.779476, -73.97358)",WEST 77 STREET,CENTRAL PARK WEST,,1,0,0,0,1,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4427101,Bike,Sedan,,, +06/08/2021,16:16,BROOKLYN,11234,40.61449,-73.92789,"(40.61449, -73.92789)",,,2285 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427503,Sedan,,,, +06/09/2021,0:30,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,AVENUE C,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427607,Dump,Sedan,,, +06/13/2021,3:20,BROOKLYN,11223,40.60566,-73.966965,"(40.60566, -73.966965)",OCEAN PARKWAY,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426756,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,8:28,BRONX,10475,40.863106,-73.82572,"(40.863106, -73.82572)",,,4100 HUTCHINSON RIVER PARKWAY EAST,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,23:20,,,40.6905,-73.86353,"(40.6905, -73.86353)",78 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4426875,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,13:29,QUEENS,11412,40.70752,-73.7641,"(40.70752, -73.7641)",194 STREET,104 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4427110,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,21:15,QUEENS,11368,40.73673,-73.85625,"(40.73673, -73.85625)",OTIS AVENUE,HORACE HARDING EXPRESSWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426713,Sedan,Bike,,, +06/13/2021,19:45,,,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Following Too Closely,Following Too Closely,,,4426654,Sedan,E-Scooter,Motorcycle,, +06/13/2021,22:35,QUEENS,11691,40.596,-73.77067,"(40.596, -73.77067)",BEACH CHANNEL DRIVE,BEACH 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427247,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/10/2021,17:00,MANHATTAN,10009,40.721676,-73.98061,"(40.721676, -73.98061)",EAST 3 STREET,AVENUE C,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427289,Van,,,, +06/13/2021,13:30,BROOKLYN,11208,40.670254,-73.85728,"(40.670254, -73.85728)",SAPPHIRE STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426923,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,1:35,MANHATTAN,10036,40.760902,-73.98713,"(40.760902, -73.98713)",,,787 8 AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427052,Sedan,Sedan,,, +06/13/2021,20:15,,,40.5837,-73.94259,"(40.5837, -73.94259)",EMMONS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4426761,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,20:22,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427462,Sedan,Sedan,,, +06/13/2021,20:46,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4426847,Taxi,,,, +06/12/2021,12:30,BROOKLYN,11233,40.675316,-73.90714,"(40.675316, -73.90714)",,,2348 PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427349,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,4:20,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543027,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,11:00,BRONX,10458,40.852524,-73.88432,"(40.852524, -73.88432)",,,2322 CROTONA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427412,Sedan,,,, +06/13/2021,22:05,,,40.698257,-73.82039,"(40.698257, -73.82039)",130 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4426856,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,21:35,QUEENS,11413,40.687485,-73.75057,"(40.687485, -73.75057)",122 AVENUE,198 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4427399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/13/2021,5:00,QUEENS,11373,40.736057,-73.87941,"(40.736057, -73.87941)",,,86-39 GRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,3:00,QUEENS,11422,40.651627,-73.73399,"(40.651627, -73.73399)",,,149-46 WELLER LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426316,Sedan,,,, +06/04/2021,20:30,,,40.73372,-73.766365,"(40.73372, -73.766365)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427335,Sedan,Sedan,,, +06/13/2021,19:43,BROOKLYN,11207,40.67398,-73.899315,"(40.67398, -73.899315)",ALABAMA AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427253,Sedan,,,, +06/13/2021,14:25,MANHATTAN,10002,40.71803,-73.989426,"(40.71803, -73.989426)",,,81 LUDLOW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426677,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,22:40,BROOKLYN,11208,40.663643,-73.87395,"(40.663643, -73.87395)",STANLEY AVENUE,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426937,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,17:19,,,40.778084,-73.82688,"(40.778084, -73.82688)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4426594,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,3:00,BROOKLYN,11207,40.662582,-73.896385,"(40.662582, -73.896385)",,,539 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4426931,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,13:15,QUEENS,11106,40.765106,-73.931465,"(40.765106, -73.931465)",,,21-25 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4427627,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,19:29,QUEENS,11416,40.681885,-73.85165,"(40.681885, -73.85165)",88 STREET,102 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427308,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,5:35,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",177 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427104,Sedan,Sedan,,, +06/13/2021,12:00,BRONX,10475,40.87989,-73.83797,"(40.87989, -73.83797)",,,3408 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4426769,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,16:30,,,40.700245,-73.92089,"(40.700245, -73.92089)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427499,Sedan,Sedan,,, +06/13/2021,11:40,,,40.767117,-73.956505,"(40.767117, -73.956505)",1 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426811,Sedan,,,, +06/09/2021,16:50,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",RALPH AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427547,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,13:00,,,40.862755,-73.901085,"(40.862755, -73.901085)",WEST FORDHAM ROAD,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427035,Bike,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,12:21,BRONX,10463,40.881794,-73.89881,"(40.881794, -73.89881)",,,3477 FORT INDEPENDENCE STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426880,Sedan,Sedan,Sedan,, +06/13/2021,12:09,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",FRANCIS LEWIS BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426619,Sedan,Sedan,,, +06/13/2021,14:15,BROOKLYN,11221,40.689922,-73.92281,"(40.689922, -73.92281)",BROADWAY,LINDEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426650,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,23:55,BROOKLYN,11212,40.66871,-73.91731,"(40.66871, -73.91731)",SARATOGA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,Unspecified,Unspecified,,4427389,Sedan,Sedan,Sedan,Sedan, +06/13/2021,4:16,,,40.868248,-73.916145,"(40.868248, -73.916145)",10 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4426447,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,12:00,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",EASTERN PARKWAY,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427353,Sedan,,,, +06/13/2021,2:03,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4426918,Taxi,Sedan,Sedan,, +06/13/2021,4:59,,,40.842678,-73.899376,"(40.842678, -73.899376)",BATHGATE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426724,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,22:20,,,40.7108,-74.00342,"(40.7108, -74.00342)",FRANKFORT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427455,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,0:15,MANHATTAN,10013,40.719685,-73.997154,"(40.719685, -73.997154)",,,162 MULBERRY STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4427324,Sedan,,,, +06/12/2021,21:00,QUEENS,11105,40.785027,-73.91382,"(40.785027, -73.91382)",19 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427421,Sedan,Sedan,,, +06/13/2021,16:12,,,40.685024,-73.98612,"(40.685024, -73.98612)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426621,Sedan,Box Truck,,, +06/13/2021,5:52,MANHATTAN,10016,40.74677,-73.9837,"(40.74677, -73.9837)",,,160 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426655,E-Scooter,,,, +06/13/2021,15:30,MANHATTAN,10019,40.76713,-73.99373,"(40.76713, -73.99373)",WEST 52 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427053,Sedan,Bike,,, +06/13/2021,13:36,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing Too Closely,Traffic Control Device Improper/Non-Working,,,,4426980,Motorscooter,Sedan,,, +06/13/2021,8:48,,,40.844864,-73.92256,"(40.844864, -73.92256)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4426998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,20:05,,,40.864132,-73.89132,"(40.864132, -73.89132)",EAST 194 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427463,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,0:52,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426441,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,14:07,BROOKLYN,11220,40.63762,-74.00734,"(40.63762, -74.00734)",,,5613 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427614,Box Truck,E-Bike,,, +06/13/2021,4:23,BROOKLYN,11236,40.63272,-73.90886,"(40.63272, -73.90886)",AVENUE K,EAST 81 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,2:12,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,,,,,4427489,Sedan,,,, +06/10/2021,16:47,BROOKLYN,11222,40.731194,-73.95781,"(40.731194, -73.95781)",,,176 FRANKLIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427573,Bus,Bike,Sedan,, +06/13/2021,12:57,QUEENS,11413,40.68519,-73.75484,"(40.68519, -73.75484)",,,122-28 192 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426558,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,17:14,STATEN ISLAND,10304,40.619774,-74.0777,"(40.619774, -74.0777)",VANDERBILT AVENUE,PARK HILL COURT,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427479,Sedan,,,, +06/13/2021,10:45,,,40.66127,-73.896065,"(40.66127, -73.896065)",NEWPORT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426922,Sedan,Sedan,,, +06/13/2021,4:20,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4426369,Sedan,,,, +06/13/2021,12:25,BROOKLYN,11211,40.706284,-73.960594,"(40.706284, -73.960594)",,,44 LEE AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4426662,Bus,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,4:07,BROOKLYN,11234,40.614166,-73.92886,"(40.614166, -73.92886)",HENDRICKSON STREET,FILLMORE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4426973,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/04/2021,13:53,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",WESTCHESTER AVENUE,STEBBINS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4427430,Sedan,,,, +06/13/2021,2:24,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426878,Sedan,Sedan,,, +06/13/2021,18:50,QUEENS,11104,40.74089,-73.92201,"(40.74089, -73.92201)",GREENPOINT AVENUE,43 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426612,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,13:30,,,,,,FDR DRIVE,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4427288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,15:00,BROOKLYN,11212,40.67029,-73.915405,"(40.67029, -73.915405)",,,1412 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427220,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,5:11,BROOKLYN,11211,,,,VANDERVORT AVENUE,MASPETH AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4426729,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,22:51,MANHATTAN,10013,,,,,,240 CANAL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427594,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,17:35,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4426691,Box Truck,,,, +06/13/2021,17:02,,,40.679634,-73.94959,"(40.679634, -73.94959)",HERKIMER STREET,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4427078,Sedan,,,, +06/13/2021,2:00,,,40.77872,-73.9893,"(40.77872, -73.9893)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4427140,Sedan,,,, +06/13/2021,0:00,BROOKLYN,11229,40.609,-73.957726,"(40.609, -73.957726)",,,1521 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4426757,Sedan,,,, +06/13/2021,15:54,BROOKLYN,11204,40.62577,-73.97983,"(40.62577, -73.97983)",19 AVENUE,51 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427608,Pick-up Truck,Van,,, +06/12/2021,16:57,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427439,Sedan,Sedan,,, +06/13/2021,0:52,,,,,,108 STREET,QUEENS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426601,Station Wagon/Sport Utility Vehicle,,,, +05/14/2021,13:40,QUEENS,11370,40.759037,-73.8879,"(40.759037, -73.8879)",31 AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427408,E-Scooter,Pick-up Truck,,, +06/13/2021,10:00,QUEENS,11354,40.77279,-73.837135,"(40.77279, -73.837135)",28 AVENUE,ULMER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426499,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,22:30,STATEN ISLAND,10312,40.55057,-74.16758,"(40.55057, -74.16758)",RICHMOND AVENUE,KATAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,13:35,BROOKLYN,11207,40.675888,-73.89523,"(40.675888, -73.89523)",,,2685 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4426927,Sedan,Sedan,,, +06/06/2021,12:50,MANHATTAN,10023,40.77622,-73.97596,"(40.77622, -73.97596)",WEST 72 STREET,CENTRAL PARK WEST,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4427519,Station Wagon/Sport Utility Vehicle,Bike,,, +01/01/2022,8:00,QUEENS,11372,40.75081,-73.89398,"(40.75081, -73.89398)",72 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4491163,Taxi,Sedan,,, +06/13/2021,5:50,MANHATTAN,10033,40.844246,-73.93372,"(40.844246, -73.93372)",WEST 175 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4426631,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,18:00,,,40.84036,-73.91807,"(40.84036, -73.91807)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4426778,Sedan,,,, +06/13/2021,1:00,STATEN ISLAND,10306,40.56477,-74.127655,"(40.56477, -74.127655)",,,99 GUYON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426947,Sedan,,,, +06/13/2021,17:00,BRONX,10465,40.8485,-73.820496,"(40.8485, -73.820496)",MIDDLETOWN ROAD,STADIUM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426867,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,11:37,,,40.760532,-73.753716,"(40.760532, -73.753716)",CROSS ISLAND PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4426476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:06,BROOKLYN,11212,40.666187,-73.916664,"(40.666187, -73.916664)",SARATOGA AVENUE,SUTTER AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4426346,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/13/2021,21:30,BROOKLYN,11211,40.70602,-73.96148,"(40.70602, -73.96148)",,,157 WILSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,21:45,QUEENS,11355,40.755486,-73.82472,"(40.755486, -73.82472)",FRANKLIN AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427378,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:00,BRONX,10455,40.8144,-73.91069,"(40.8144, -73.91069)",,,563 CAULDWELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426798,Sedan,Sedan,,, +06/13/2021,18:00,,,40.60342,-73.98865,"(40.60342, -73.98865)",81 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426642,Sedan,,,, +06/13/2021,17:30,BROOKLYN,11210,40.618584,-73.95474,"(40.618584, -73.95474)",,,2020 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,,,,,4427231,Sedan,,,, +06/13/2021,17:30,BROOKLYN,11221,40.69193,-73.91031,"(40.69193, -73.91031)",WEIRFIELD STREET,WILSON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4427282,Sedan,Sedan,,, +06/13/2021,11:40,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4427341,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,11:44,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4427506,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,0:15,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426681,Sedan,Sedan,,, +06/13/2021,3:20,,,40.675385,-73.95337,"(40.675385, -73.95337)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427118,Taxi,,,, +06/13/2021,19:45,,,40.68175,-73.96748,"(40.68175, -73.96748)",VANDERBILT AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427367,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,3:00,BROOKLYN,11208,40.682938,-73.86717,"(40.682938, -73.86717)",ATLANTIC AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426919,Sedan,,,, +06/09/2021,8:35,,,40.854763,-73.90765,"(40.854763, -73.90765)",DAVIDSON AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4427400,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,8:12,QUEENS,11436,40.681362,-73.79728,"(40.681362, -73.79728)",145 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4427432,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,14:00,,,40.675926,-73.95608,"(40.675926, -73.95608)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4426596,Bike,,,, +06/13/2021,0:50,BROOKLYN,11208,40.676495,-73.8636,"(40.676495, -73.8636)",PITKIN AVENUE,FORBELL STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4426938,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/10/2021,16:15,,,40.71673,-74.00208,"(40.71673, -74.00208)",,,FRANKLIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427322,Van,Van,,, +06/13/2021,12:30,,,40.591793,-74.136536,"(40.591793, -74.136536)",,,501 BRIELLE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4426881,4 dr sedan,Sedan,,, +06/13/2021,13:10,QUEENS,11103,40.76698,-73.9169,"(40.76698, -73.9169)",28 AVENUE,35 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4426543,Sedan,Sedan,Sedan,, +06/13/2021,3:10,QUEENS,11436,40.679363,-73.7973,"(40.679363, -73.7973)",FOCH BOULEVARD,144 STREET,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,Unspecified,,,4426623,Sedan,Sedan,Box Truck,, +06/13/2021,18:00,BROOKLYN,11236,40.632965,-73.883415,"(40.632965, -73.883415)",,,5995 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4427000,Sedan,,,, +06/13/2021,8:30,BROOKLYN,11238,40.684956,-73.96519,"(40.684956, -73.96519)",,,478 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426452,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,23:48,,,40.71604,-73.80504,"(40.71604, -73.80504)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427343,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,0:55,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491201,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,14:00,QUEENS,11368,40.75583,-73.861565,"(40.75583, -73.861565)",,,34-38 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427410,Sedan,,,, +06/13/2021,20:59,,,40.683567,-73.94106,"(40.683567, -73.94106)",HANCOCK STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427094,Sedan,E-Bike,,, +06/06/2021,21:45,QUEENS,11101,40.759308,-73.944176,"(40.759308, -73.944176)",VERNON BOULEVARD,38 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427650,E-Bike,,,, +06/13/2021,20:33,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427024,Sedan,Motorcycle,,, +06/13/2021,0:00,QUEENS,11433,40.69158,-73.79319,"(40.69158, -73.79319)",110 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427106,Sedan,Sedan,Sedan,, +05/31/2021,18:05,,,40.67533,-73.93609,"(40.67533, -73.93609)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427454,Sedan,Sedan,,, +06/13/2021,16:16,BROOKLYN,11223,40.59618,-73.960754,"(40.59618, -73.960754)",,,1110 AVENUE V,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,14:30,,,,,,ROCKAWAY FREEWAY,BEACH 39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427240,Sedan,,,, +06/13/2021,9:20,,,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427270,Sedan,Sedan,,, +06/13/2021,3:59,,,40.707436,-73.727554,"(40.707436, -73.727554)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,14:48,STATEN ISLAND,10312,40.537865,-74.19192,"(40.537865, -74.19192)",EDGEGROVE AVENUE,NIPPON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427387,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,3:30,,,40.81401,-73.94466,"(40.81401, -73.94466)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426839,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,4:10,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426857,Pick-up Truck,,,, +01/01/2022,1:50,BRONX,10466,40.895718,-73.849525,"(40.895718, -73.849525)",PITMAN AVENUE,WICKHAM AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4491166,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,10:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427336,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,22:05,BROOKLYN,11222,40.72493,-73.95147,"(40.72493, -73.95147)",,,679 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4427572,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,17:30,,,40.74975,-73.75485,"(40.74975, -73.75485)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4426675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,16:27,BRONX,10468,40.86272,-73.9085,"(40.86272, -73.9085)",,,172 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427036,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,3:30,BRONX,10456,40.831585,-73.89956,"(40.831585, -73.89956)",,,1316 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426722,Sedan,Sedan,,, +06/07/2021,9:00,BROOKLYN,11208,40.678303,-73.86525,"(40.678303, -73.86525)",,,518 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427354,Sedan,Pick-up Truck,,, +06/10/2021,18:16,BRONX,10468,40.86418,-73.90119,"(40.86418, -73.90119)",DAVIDSON AVENUE,WEST 190 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4427464,Sedan,FIRETRUCK,,, +06/13/2021,4:30,QUEENS,11417,40.68484,-73.83596,"(40.68484, -73.83596)",103 AVENUE,106 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4426850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,11:35,QUEENS,11426,40.732933,-73.71654,"(40.732933, -73.71654)",,,85-15 250 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4426618,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,2:17,MANHATTAN,10009,40.723988,-73.98504,"(40.723988, -73.98504)",,,50 AVENUE A,1,0,1,0,0,0,0,0,Unspecified,,,,,4426428,Motorcycle,,,, +06/13/2021,18:15,,,40.67325,-73.886734,"(40.67325, -73.886734)",PITKIN AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4426933,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/13/2021,4:15,MANHATTAN,10019,40.76732,-73.98433,"(40.76732, -73.98433)",,,350 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427060,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,20:30,,,40.772305,-73.77349,"(40.772305, -73.77349)",214 STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4426656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,21:45,BRONX,10472,40.82416,-73.87816,"(40.82416, -73.87816)",,,1001 ELDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426982,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,9:22,QUEENS,,40.7201,-73.79038,"(40.7201, -73.79038)",UTOPIA PARKWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4427348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,16:07,BROOKLYN,11219,40.640522,-73.99447,"(40.640522, -73.99447)",,,4416 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427609,Sedan,,,, +06/13/2021,2:50,BROOKLYN,11221,40.6944,-73.91255,"(40.6944, -73.91255)",,,1362 PUTNAM AVENUE,2,0,0,0,0,0,0,0,Other Vehicular,,,,,4426649,E-Bike,,,, +06/13/2021,22:30,QUEENS,11368,40.75085,-73.858284,"(40.75085, -73.858284)",,,108-48 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4426712,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,3:33,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4426768,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,15:00,MANHATTAN,10013,40.717464,-73.99835,"(40.717464, -73.99835)",,,108 MULBERRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427301,Sedan,,,, +06/13/2021,15:30,BROOKLYN,11211,,,,north 6th street,Driggs Ave,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4427201,Station Wagon/Sport Utility Vehicle,Moped,,, +06/12/2021,16:40,BROOKLYN,11212,40.668568,-73.91827,"(40.668568, -73.91827)",PITKIN AVENUE,LEGION STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427447,Sedan,,,, +06/11/2021,12:40,,,40.616547,-74.02607,"(40.616547, -74.02607)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4427487,Sedan,Sedan,,, +06/13/2021,16:50,QUEENS,11414,40.65804,-73.83572,"(40.65804, -73.83572)",160 AVENUE,97 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4426806,Station Wagon/Sport Utility Vehicle,,,, +06/10/2021,17:30,QUEENS,11422,40.653633,-73.72538,"(40.653633, -73.72538)",HUNGRY HARBOR ROAD,262 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,21:46,,,40.620304,-73.989,"(40.620304, -73.989)",63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426685,Sedan,E-Bike,,, +06/10/2021,1:32,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4427418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/13/2021,14:09,BROOKLYN,11212,40.659176,-73.92033,"(40.659176, -73.92033)",,,9502 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4427122,Sedan,,,, +06/13/2021,0:00,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",KINGS HIGHWAY,ROCKAWAY PARKWAY,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4427170,Sedan,Sedan,,, +06/09/2021,16:00,,,40.570877,-74.16984,"(40.570877, -74.16984)",RICHMOND AVENUE,FOREST HILL ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4427599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,23:16,BROOKLYN,11233,40.672752,-73.92171,"(40.672752, -73.92171)",,,1646 PROSPECT PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427221,Sedan,Sedan,Sedan,, +06/13/2021,7:00,MANHATTAN,10038,40.71024,-74.00418,"(40.71024, -74.00418)",,,83 GOLD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4426732,Sedan,,,, +01/01/2022,12:22,,,40.666134,-73.88492,"(40.666134, -73.88492)",LIVONIA AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491279,Sedan,Sedan,,, +01/01/2022,1:40,MANHATTAN,10010,40.73422,-73.97483,"(40.73422, -73.97483)",AVENUE C,FDR DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4491136,Sedan,,,, +01/01/2022,12:21,,,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4491659,Sedan,Sedan,,, +01/01/2022,18:25,QUEENS,11428,40.718513,-73.756386,"(40.718513, -73.756386)",90 AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4491415,Sedan,Sedan,Sedan,, +01/01/2022,17:00,BROOKLYN,11214,40.596745,-73.985275,"(40.596745, -73.985275)",86 STREET,STILLWELL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491448,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/24/2021,10:42,,,40.744194,-73.97133,"(40.744194, -73.97133)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491684,Sedan,,,, +01/01/2022,20:25,BROOKLYN,11207,40.65483,-73.89442,"(40.65483, -73.89442)",STANLEY AVENUE,ANNA COURT,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491554,Pick-up Truck,,,, +01/01/2022,2:30,,,40.80641,-73.9502,"(40.80641, -73.9502)",7 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491670,Taxi,Taxi,,, +01/01/2022,8:16,QUEENS,11004,40.737335,-73.70833,"(40.737335, -73.70833)",260 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491153,Sedan,Sedan,,, +01/01/2022,8:55,,,,,,SOUTHERN STATE PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4491222,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,4:48,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4491382,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,6:45,MANHATTAN,10022,40.756496,-73.97237,"(40.756496, -73.97237)",LEXINGTON AVENUE,EAST 50 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4491530,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,20:55,QUEENS,11369,40.760685,-73.862206,"(40.760685, -73.862206)",,,107-10 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491757,Pick-up Truck,Sedan,,, +01/01/2022,10:20,BROOKLYN,11207,40.669884,-73.899216,"(40.669884, -73.899216)",,,247 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491306,Sedan,,,, +01/01/2022,12:40,,,,,,SHORE PARKWAY,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491356,Sedan,,,, +01/01/2022,5:05,BROOKLYN,11212,40.663105,-73.90518,"(40.663105, -73.90518)",LIVONIA AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4491182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/29/2021,3:34,MANHATTAN,10036,40.756462,-73.987946,"(40.756462, -73.987946)",,,229 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491727,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,6:30,QUEENS,11417,40.684494,-73.83719,"(40.684494, -73.83719)",105 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491568,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,20:45,QUEENS,11416,40.68185,-73.8545,"(40.68185, -73.8545)",101 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,,,,,,4491640,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,20:10,BROOKLYN,11214,40.59813,-74.005,"(40.59813, -74.005)",SHORE PARKWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4491713,Sedan,Sedan,Sedan,, +12/29/2021,11:27,BROOKLYN,11203,40.66266,-73.932976,"(40.66266, -73.932976)",,,898 EAST NEW YORK AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,Unspecified,Unspecified,,4491856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck, +01/01/2022,14:43,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491406,Sedan,Sedan,,, +12/31/2021,0:30,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Unspecified,,,4491808,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/01/2022,20:24,,,40.603695,-74.01517,"(40.603695, -74.01517)",BAY 11 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4491441,Sedan,,,, +01/01/2022,19:04,QUEENS,11421,40.69595,-73.86237,"(40.69595, -73.86237)",FOREST PARKWAY,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491364,Sedan,Sedan,,, +01/01/2022,13:45,BROOKLYN,11206,40.703,-73.94425,"(40.703, -73.94425)",,,21 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491506,Sedan,Sedan,,, +01/01/2022,10:50,,,40.67327,-73.9474,"(40.67327, -73.9474)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491321,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,17:00,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4491732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,21:20,QUEENS,11414,40.65723,-73.84138,"(40.65723, -73.84138)",91 STREET,160 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491466,Sedan,,,, +01/01/2022,23:45,QUEENS,11429,40.71438,-73.73744,"(40.71438, -73.73744)",,,218-15 101 AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4491375,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2022,20:00,BRONX,10472,40.832695,-73.86367,"(40.832695, -73.86367)",WESTCHESTER AVENUE,LELAND AVENUE,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Other Vehicular,,,,4543364,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/01/2022,21:40,MANHATTAN,10011,40.7447,-74.008354,"(40.7447, -74.008354)",11 AVENUE,WEST 17 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491434,Sedan,Taxi,,, +12/29/2021,4:00,MANHATTAN,10019,40.76428,-73.9921,"(40.76428, -73.9921)",,,725 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491825,Sedan,,,, +01/01/2022,1:04,QUEENS,11385,40.702763,-73.87074,"(40.702763, -73.87074)",MYRTLE AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491066,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,21:06,QUEENS,11361,40.75958,-73.76894,"(40.75958, -73.76894)",BELL BOULEVARD,45 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491349,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,22:45,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491700,Sedan,,,, +01/02/2021,10:45,QUEENS,11377,40.74603,-73.913376,"(40.74603, -73.913376)",SKILLMAN AVENUE,51 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491789,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/01/2022,3:37,QUEENS,11419,40.685013,-73.819565,"(40.685013, -73.819565)",,,107-34 123 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491085,Sedan,Sedan,,, +01/01/2022,14:33,,,40.759945,-73.8387,"(40.759945, -73.8387)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491841,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,8:00,BROOKLYN,11239,40.65548,-73.87384,"(40.65548, -73.87384)",,,516 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491311,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,16:50,QUEENS,11434,40.68512,-73.78044,"(40.68512, -73.78044)",FOCH BOULEVARD,166 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,3:06,QUEENS,11419,40.690247,-73.82497,"(40.690247, -73.82497)",101 AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491365,Ambulance,,,, +12/30/2021,9:00,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4491691,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,6:00,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4491731,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,18:00,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4491402,Sedan,Bus,,, +01/01/2022,1:57,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491179,Sedan,Sedan,,, +01/01/2022,11:13,,,40.736164,-73.97891,"(40.736164, -73.97891)",1 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491204,Sedan,Bike,,, +01/01/2022,5:00,BROOKLYN,11207,40.667904,-73.89431,"(40.667904, -73.89431)",,,662 BLAKE AVENUE,2,0,2,0,0,0,0,0,,,,,,4491557,,,,, +01/01/2022,2:37,MANHATTAN,10002,40.71885,-73.98923,"(40.71885, -73.98923)",,,95 DELANCEY STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,Unspecified,,,4491345,Sedan,Taxi,Bike,, +01/01/2022,13:00,STATEN ISLAND,10312,40.532425,-74.192024,"(40.532425, -74.192024)",,,901 HUGUENOT AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491676,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,5:50,BROOKLYN,11210,40.6359,-73.940254,"(40.6359, -73.940254)",,,791 EAST 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,8:19,BROOKLYN,11220,40.62958,-74.01212,"(40.62958, -74.01212)",9 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,17:00,QUEENS,11368,40.743896,-73.85714,"(40.743896, -73.85714)",,,104-40 CORONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4491571,PK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/01/2022,4:45,BROOKLYN,11220,40.64647,-74.01258,"(40.64647, -74.01258)",50 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491197,Sedan,Sedan,Sedan,, +01/01/2022,3:00,MANHATTAN,10282,40.7159,-74.01649,"(40.7159, -74.01649)",,,6 RIVER TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491381,Sedan,,,, +01/01/2022,21:50,QUEENS,11372,40.75126,-73.87167,"(40.75126, -73.87167)",WARREN STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491758,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,0:19,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491687,Sedan,,,, +01/01/2022,14:49,BROOKLYN,11226,40.6523,-73.95264,"(40.6523, -73.95264)",,,763 ROGERS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491340,Sedan,Sedan,,, +01/01/2022,20:44,,,40.82215,-73.88751,"(40.82215, -73.88751)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491394,Taxi,Sedan,,, +01/03/2021,16:35,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491739,Sedan,Pick-up Truck,,, +01/01/2022,18:30,STATEN ISLAND,10306,40.564285,-74.12652,"(40.564285, -74.12652)",,,110 GUYON AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491546,Station Wagon/Sport Utility Vehicle,Bike,,, +01/01/2022,0:45,BRONX,10456,40.83394,-73.9087,"(40.83394, -73.9087)",WEBSTER AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491094,Sedan,Sedan,,, +12/12/2021,19:30,MANHATTAN,10027,40.806686,-73.94693,"(40.806686, -73.94693)",,,101 WEST 123 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491669,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,2:00,BROOKLYN,11234,40.63027,-73.93199,"(40.63027, -73.93199)",EAST 46 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491285,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,4:55,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491585,Taxi,,,, +01/01/2022,5:55,BRONX,10467,40.87155,-73.86428,"(40.87155, -73.86428)",,,3207 WALLACE AVENUE,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4491487,Sedan,,,, +01/01/2022,17:20,QUEENS,11373,40.744965,-73.87833,"(40.744965, -73.87833)",HAMPTON STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491413,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,10:55,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427112,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,15:53,QUEENS,11365,40.73818,-73.779,"(40.73818, -73.779)",,,67-18K 195 LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466059,Sedan,,,, +01/01/2022,17:36,,,40.60063,-73.9831,"(40.60063, -73.9831)",AVENUE S,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4491447,Bike,,,, +01/01/2021,20:00,,,40.83398,-73.82635,"(40.83398, -73.82635)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4491746,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,7:00,BROOKLYN,11235,40.579525,-73.95586,"(40.579525, -73.95586)",BRIGHTON 13 STREET,OCEANVIEW AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4491355,Sedan,,,, +12/31/2021,18:35,STATEN ISLAND,10312,40.532158,-74.16766,"(40.532158, -74.16766)",WEAVER STREET,HOLDRIDGE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491677,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,6:00,,,40.85005,-73.91606,"(40.85005, -73.91606)",UNIVERSITY AVENUE,MACOMBS ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4491714,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/01/2022,16:00,,,40.822144,-73.887825,"(40.822144, -73.887825)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4491386,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,19:30,MANHATTAN,10018,40.75539,-73.99518,"(40.75539, -73.99518)",,,404 WEST 37 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4491607,Taxi,Bike,,, +01/01/2022,2:15,BROOKLYN,11225,40.66173,-73.96078,"(40.66173, -73.96078)",WASHINGTON AVENUE,LEFFERTS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4491129,Sedan,Sedan,Sedan,, +01/01/2022,0:00,BROOKLYN,11212,40.6602,-73.90929,"(40.6602, -73.90929)",,,461 CHESTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491456,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,11:14,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",METROPOLITAN AVENUE,FRESH POND ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4491212,Station Wagon/Sport Utility Vehicle,Convertible,,, +01/01/2022,20:00,QUEENS,11415,40.706932,-73.825,"(40.706932, -73.825)",,,84-25 127 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4491471,Sedan,Sedan,Sedan,, +01/01/2022,21:17,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4491348,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,5:00,BROOKLYN,11212,40.663918,-73.92124,"(40.663918, -73.92124)",,,9 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491455,Sedan,,,, +12/02/2021,5:31,BROOKLYN,11220,40.637215,-74.018524,"(40.637215, -74.018524)",5 AVENUE,64 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491804,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,12:50,,,40.74297,-73.87568,"(40.74297, -73.87568)",ITHACA STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4491405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/31/2021,11:00,BRONX,10459,40.823536,-73.8939,"(40.823536, -73.8939)",,,1000 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491826,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,5:15,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/22/2021,19:36,,,40.625103,-74.14877,"(40.625103, -74.14877)",FOREST AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491698,Pick-up Truck,Sedan,,, +01/01/2022,4:14,QUEENS,11417,40.667065,-73.83444,"(40.667065, -73.83444)",,,100-03 NORTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4491572,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/01/2022,6:19,MANHATTAN,10022,40.758373,-73.971,"(40.758373, -73.971)",LEXINGTON AVENUE,EAST 53 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4491191,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,9:15,BROOKLYN,11220,40.645424,-74.01689,"(40.645424, -74.01689)",3 AVENUE,54 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4491198,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,4:00,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491516,Sedan,Sedan,,, +01/01/2022,7:10,,,40.707294,-73.85064,"(40.707294, -73.85064)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4491218,Taxi,,,, +01/01/2022,22:55,BROOKLYN,11208,40.66216,-73.87284,"(40.66216, -73.87284)",WORTMAN AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491558,Sedan,Sedan,,, +01/01/2022,3:40,,,,,,28 STREET,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4491335,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/01/2022,11:00,QUEENS,11435,40.688686,-73.8044,"(40.688686, -73.8044)",,,143-03 LAKEWOOD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4491644,Sedan,,,, +01/01/2022,2:00,MANHATTAN,10036,,,,42 street,12 avenue,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4491145,Sedan,Sedan,,, +01/01/2022,3:15,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491524,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,0:00,BROOKLYN,11222,40.723854,-73.94884,"(40.723854, -73.94884)",,,129 ECKFORD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491675,Sedan,,,, +01/01/2022,8:35,,,40.808853,-73.936264,"(40.808853, -73.936264)",EAST 131 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491158,Sedan,,,, +01/01/2022,11:12,,,,,,EAST 119 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491217,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,4:30,BROOKLYN,11207,40.679478,-73.89458,"(40.679478, -73.89458)",,,161 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491310,Sedan,,,, +01/01/2022,9:21,BRONX,10451,40.82319,-73.91439,"(40.82319, -73.91439)",,,825 MELROSE AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Other Vehicular,,,,4491437,Sedan,Sedan,,, +12/26/2021,18:12,,,40.62534,-74.13542,"(40.62534, -74.13542)",,,1350 FOREST AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491697,Sedan,Sedan,,, +01/01/2022,7:05,,,,,,EAST 128 STREET,3 AVENUE BRIDGE,,0,0,0,0,0,0,0,0,Illnes,,,,,4491172,Sedan,,,, +01/01/2022,3:18,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491346,Sedan,,,, +01/01/2022,2:16,,,40.700718,-73.929794,"(40.700718, -73.929794)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4491123,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,6:30,,,40.707294,-73.85064,"(40.707294, -73.85064)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4491294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,23:30,BROOKLYN,11237,40.709003,-73.92234,"(40.709003, -73.92234)",SCOTT AVENUE,FLUSHING AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491493,Sedan,,,, +01/01/2022,8:00,BROOKLYN,11208,40.687366,-73.86819,"(40.687366, -73.86819)",,,148 GRANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491236,Sedan,,,, +12/13/2021,16:53,BRONX,10451,40.811714,-73.92671,"(40.811714, -73.92671)",EAST 139 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491803,Sedan,,,, +01/01/2022,4:20,,,,,,Southern parkway,Jfk expressway,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4491653,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,23:50,,,40.712498,-73.97776,"(40.712498, -73.97776)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491369,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,7:00,BROOKLYN,11208,40.68086,-73.864685,"(40.68086, -73.864685)",FORBELL STREET,MC KINLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,9:15,BRONX,10452,40.834503,-73.93037,"(40.834503, -73.93037)",UNIVERSITY AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491666,Sedan,,,, +01/01/2022,20:00,BRONX,10452,40.8448,-73.92264,"(40.8448, -73.92264)",UNIVERSITY AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491602,Sedan,Sedan,,, +01/01/2022,20:55,BRONX,10467,40.863945,-73.86452,"(40.863945, -73.86452)",BOSTON ROAD,WALLACE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491418,Taxi,,,, +12/24/2021,16:51,BRONX,10462,40.841278,-73.86359,"(40.841278, -73.86359)",EAST TREMONT AVENUE,UNIONPORT ROAD,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491730,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,19:30,BRONX,10469,40.872803,-73.85428,"(40.872803, -73.85428)",,,3260 BOSTON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,14:50,,,40.75933,-73.88511,"(40.75933, -73.88511)",83 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4491759,Sedan,,,, +01/01/2022,2:14,,,,,,GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4491351,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/01/2022,4:35,,,,,,BROOKLYN BRIDGE,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4491088,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,6:00,BROOKLYN,11222,40.72391,-73.948845,"(40.72391, -73.948845)",,,132 ECKFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491833,Sedan,,,, +01/01/2022,10:34,,,40.735764,-73.97491,"(40.735764, -73.97491)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4491205,FDNY TRUCK,Sedan,Station Wagon/Sport Utility Vehicle,, +01/01/2022,15:31,,,40.744747,-73.86489,"(40.744747, -73.86489)",CORONA AVENUE,98 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4491396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,18:40,,,,,,DECATUR AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491702,Taxi,,,, +01/01/2022,5:16,QUEENS,11106,40.75658,-73.929756,"(40.75658, -73.929756)",36 AVENUE,31 STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4491403,Sedan,Sedan,Sedan,, +01/01/2022,0:20,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491482,Taxi,Taxi,,, +01/01/2022,15:00,BRONX,10451,40.81655,-73.91955,"(40.81655, -73.91955)",COURTLANDT AVENUE,EAST 149 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4491717,Taxi,Sedan,,, +01/01/2022,4:20,BROOKLYN,11220,40.644306,-74.01804,"(40.644306, -74.01804)",3 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4491380,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/01/2022,15:16,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4491341,Sedan,,,, +12/24/2021,19:10,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHAMBERS STREET,CHURCH STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4491814,Sedan,Bike,,, +07/02/2022,10:25,,,40.64902,-74.00625,"(40.64902, -74.00625)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4542721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/01/2022,12:25,STATEN ISLAND,10312,40.553314,-74.1634,"(40.553314, -74.1634)",CORTELYOU AVENUE,GENESEE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491542,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,12:55,,,,,,STATEN ISLAND EXPRESSWAY,,,8,0,0,0,0,0,8,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4491688,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/01/2022,19:50,,,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491408,Sedan,Sedan,,, +01/01/2022,20:35,MANHATTAN,10016,40.741272,-73.97535,"(40.741272, -73.97535)",EAST 30 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491457,Sedan,,,, +01/01/2022,20:40,BRONX,10473,40.82483,-73.85424,"(40.82483, -73.85424)",,,2045 STORY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491735,Convertible,,,, +01/01/2022,8:15,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4491474,Sedan,,,, +01/01/2022,22:50,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SPRINGFIELD BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491750,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,4:55,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491069,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,1:09,,,40.741028,-73.99417,"(40.741028, -73.99417)",AVENUE OF THE AMERICAS,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4491815,Dump,Sedan,,, +01/01/2022,17:36,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,101 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,4491359,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/01/2022,0:15,QUEENS,11420,40.681755,-73.81695,"(40.681755, -73.81695)",124 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491573,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,2:20,QUEENS,11429,40.70198,-73.74105,"(40.70198, -73.74105)",114 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491199,Sedan,Sedan,,, +01/01/2022,4:32,,,40.719997,-73.83379,"(40.719997, -73.83379)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491563,Sedan,,,, +01/02/2021,21:30,MANHATTAN,10036,40.755913,-73.98669,"(40.755913, -73.98669)",,,7 TIMES SQUARE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491707,Box Truck,Chassis Cab,,, +01/01/2022,15:12,BRONX,10461,40.855072,-73.85065,"(40.855072, -73.85065)",NARAGANSET AVENUE,CHOCTAW PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491417,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,20:08,MANHATTAN,10026,40.802074,-73.94979,"(40.802074, -73.94979)",,,55 WEST 116 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,View Obstructed/Limited,,,,4491446,Sedan,Bike,,, +12/28/2021,16:52,BROOKLYN,11233,40.67202,-73.91377,"(40.67202, -73.91377)",,,1650 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491680,Sedan,Box Truck,,, +01/01/2022,12:00,QUEENS,11374,40.728657,-73.863266,"(40.728657, -73.863266)",63 DRIVE,BOOTH STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4491498,Sedan,Sedan,,, +01/01/2022,11:30,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491225,Sedan,,,, +01/01/2022,5:18,,,40.614872,-73.82165,"(40.614872, -73.82165)",CROSS BAY BOULEVARD,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4491330,Sedan,,,, +01/01/2022,5:00,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4491146,Sedan,,,, +01/01/2022,17:33,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4491525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Taxi, +06/14/2021,2:07,,,40.698452,-73.92176,"(40.698452, -73.92176)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4427291,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,23:00,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4491384,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,6:03,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491237,Station Wagon/Sport Utility Vehicle,,,, +09/25/2022,5:44,,,40.635303,-74.181595,"(40.635303, -74.181595)",,,241 WESTERN AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4567369,Sedan,,,, +01/01/2022,15:18,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4491342,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,8:15,,,40.620663,-74.167145,"(40.620663, -74.167145)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4491689,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/01/2022,8:40,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,,,,4491636,Sedan,Sedan,,, +01/01/2022,13:32,BROOKLYN,11212,40.664986,-73.92224,"(40.664986, -73.92224)",,,725 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491655,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,3:58,BRONX,10465,40.8315,-73.82697,"(40.8315, -73.82697)",,,3478 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4491142,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,14:00,BROOKLYN,11212,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491454,Sedan,,,, +01/01/2022,8:26,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",ROSEDALE AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,7:30,BROOKLYN,11233,40.67681,-73.91273,"(40.67681, -73.91273)",,,27 MARCONI PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491538,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/01/2022,2:35,BRONX,10473,40.825455,-73.84954,"(40.825455, -73.84954)",CASTLE HILL AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4491097,Sedan,E-Bike,,, +01/01/2022,17:20,MANHATTAN,10027,40.812454,-73.96066,"(40.812454, -73.96066)",WEST 123 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4491347,Sedan,,,, +01/01/2022,18:33,MANHATTAN,10019,40.762333,-73.983475,"(40.762333, -73.983475)",,,1657 BROADWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491625,Sedan,Sedan,Bike,, +01/01/2022,12:30,QUEENS,11378,40.71368,-73.908424,"(40.71368, -73.908424)",,,61-45 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491490,Van,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,8:47,QUEENS,11418,40.70299,-73.82519,"(40.70299, -73.82519)",126 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4491216,Sedan,Sedan,Taxi,Sedan, +12/29/2021,0:22,BROOKLYN,11208,40.671997,-73.87742,"(40.671997, -73.87742)",SUTTER AVENUE,MONTAUK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4491850,Sedan,,,, +12/03/2021,11:45,,,40.756535,-73.876076,"(40.756535, -73.876076)",92 STREET,,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4491763,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,18:34,,,40.734882,-73.97484,"(40.734882, -73.97484)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4491397,Taxi,,,, +01/01/2022,23:50,,,40.584366,-73.9271,"(40.584366, -73.9271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491370,Sedan,,,, +12/31/2021,17:30,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491696,Sedan,,,, +12/30/2021,15:30,BRONX,10473,40.822678,-73.842575,"(40.822678, -73.842575)",ZEREGA AVENUE,HOMER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491729,Sedan,,,, +01/01/2022,18:26,BRONX,10459,40.820663,-73.89591,"(40.820663, -73.89591)",,,935 KELLY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491404,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,9:00,MANHATTAN,10030,40.814373,-73.941475,"(40.814373, -73.941475)",,,107 WEST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491206,Sedan,,,, +01/01/2022,4:35,MANHATTAN,10039,40.828316,-73.937935,"(40.828316, -73.937935)",,,2903 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4491170,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2022,18:34,QUEENS,11429,40.711533,-73.73573,"(40.711533, -73.73573)",,,104-40 219 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4542753,Van,,,, +01/01/2022,22:36,,,40.69663,-73.91857,"(40.69663, -73.91857)",MENAHAN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491661,Sedan,Sedan,,, +01/01/2022,10:30,BROOKLYN,11207,40.668346,-73.892975,"(40.668346, -73.892975)",,,461 VERMONT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491295,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,17:30,MANHATTAN,10022,40.75895,-73.96849,"(40.75895, -73.96849)",3 AVENUE,EAST 55 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491421,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,3:02,QUEENS,11101,40.75705,-73.92167,"(40.75705, -73.92167)",34 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4491599,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/01/2022,7:28,BRONX,10454,40.80661,-73.921,"(40.80661, -73.921)",BROWN PLACE,EAST 136 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491481,Sedan,Sedan,,, +07/01/2022,23:33,MANHATTAN,10012,40.72364,-73.993774,"(40.72364, -73.993774)",,,252 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543218,Sedan,Sedan,,, +01/01/2022,2:00,,,,,,NORTHERN BOULEVARD,WHITESTONE EXPRESSWAY,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4491092,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,21:15,,,40.73992,-73.81513,"(40.73992, -73.81513)",KISSENA BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4491350,Station Wagon/Sport Utility Vehicle,Bike,,, +01/01/2022,21:30,BRONX,10456,40.83332,-73.89676,"(40.83332, -73.89676)",BOSTON ROAD,EAST 170 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491438,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,3:00,BROOKLYN,11207,40.671066,-73.901436,"(40.671066, -73.901436)",PITKIN AVENUE,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,18:00,QUEENS,11417,40.68508,-73.83512,"(40.68508, -73.83512)",107 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491798,Sedan,,,, +12/23/2021,11:29,BROOKLYN,11222,40.733955,-73.95826,"(40.733955, -73.95826)",,,238 FRANKLIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4491836,Sedan,Box Truck,,, +01/01/2022,14:49,BRONX,10467,40.879253,-73.88313,"(40.879253, -73.88313)",,,55 EAST MOSHOLU PARKWAY NORTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491701,Sedan,,,, +01/01/2022,22:10,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4491361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/19/2021,23:00,BROOKLYN,11212,40.656784,-73.91379,"(40.656784, -73.91379)",EAST 98 STREET,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491721,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,13:30,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491527,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,6:00,,,,,,BROOKLYN QUEENS EXPRESSWAY E/B,58 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4491200,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,2:13,BROOKLYN,11230,40.629086,-73.97686,"(40.629086, -73.97686)",MC DONALD AVENUE,LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491582,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,14:46,QUEENS,11374,40.716038,-73.86123,"(40.716038, -73.86123)",WOODHAVEN BOULEVARD,67 DRIVE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4491499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,0:00,BROOKLYN,11233,40.680492,-73.915695,"(40.680492, -73.915695)",,,237 SUMPTER STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4491183,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/01/2022,11:02,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4491268,Taxi,,,, +12/31/2021,1:30,MANHATTAN,10027,40.808445,-73.945,"(40.808445, -73.945)",WEST 126 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491671,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,22:25,,,40.596256,-73.76684,"(40.596256, -73.76684)",SEAGIRT BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491656,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,6:24,QUEENS,11413,40.668983,-73.75367,"(40.668983, -73.75367)",222 STREET,PROSPECT COURT,,3,0,0,0,0,0,3,0,Outside Car Distraction,Unspecified,,,,4491147,Sedan,Sedan,,, +07/02/2022,15:12,BRONX,10462,40.853058,-73.867744,"(40.853058, -73.867744)",,,2090 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4542854,Taxi,Sedan,,, +01/01/2022,17:00,QUEENS,11103,40.767593,-73.912,"(40.767593, -73.912)",,,25-02 STEINWAY STREET,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4491407,Sedan,Bike,,, +01/01/2022,18:46,BROOKLYN,11223,40.607254,-73.96728,"(40.607254, -73.96728)",OCEAN PARKWAY,QUENTIN ROAD,,2,0,2,0,0,0,0,0,,,,,,4491811,,,,, +12/21/2021,18:20,BROOKLYN,11201,40.688572,-73.991104,"(40.688572, -73.991104)",PACIFIC STREET,BOERUM PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491820,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,2:48,,,,,,,,97 WEST DRIVE,1,0,0,0,0,0,0,0,Pavement Slippery,,,,,4491076,E-Bike,,,, +01/01/2022,17:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4491453,Sedan,,,, +01/01/2022,21:58,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4491475,Sedan,Sedan,,, +01/01/2022,5:29,BROOKLYN,11224,40.57558,-73.969925,"(40.57558, -73.969925)",SEA BREEZE AVENUE,WEST 1 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491357,Sedan,,,, +12/30/2021,13:15,MANHATTAN,10014,40.73908,-74.00309,"(40.73908, -74.00309)",8 AVENUE,WEST 13 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491682,Sedan,Sedan,,, +09/10/2022,20:30,,,40.720455,-73.804276,"(40.720455, -73.804276)",164 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4567927,Sedan,Sedan,,, +09/25/2021,12:08,BROOKLYN,11207,40.6527684,-73.8862898,"(40.6527684, -73.8862898)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4461074,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,12:55,BRONX,10459,40.8183517,-73.8959724,"(40.8183517, -73.8959724)",,,877 INTERVALE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4466688,E-Bike,,,, +12/11/2021,14:57,,,40.6697,-73.87494,"(40.6697, -73.87494)",NEW LOTS AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4486020,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,21:18,MANHATTAN,10013,40.721077,-74.004265,"(40.721077, -74.004265)",,,374 CANAL STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486281,Sedan,Sedan,,, +12/11/2021,23:30,BROOKLYN,11219,40.638607,-73.993546,"(40.638607, -73.993546)",,,1156 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,18:20,BRONX,10466,40.889427,-73.86295,"(40.889427, -73.86295)",EAST 226 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485972,Sedan,,,, +12/11/2021,3:55,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486005,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,5:15,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4485605,Sedan,,,, +12/11/2021,10:50,BRONX,10456,40.820747,-73.906006,"(40.820747, -73.906006)",EAST 160 STREET,JACKSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,9:35,MANHATTAN,10022,40.758327,-73.96894,"(40.758327, -73.96894)",3 AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485353,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,8:00,,,40.67356,-73.93627,"(40.67356, -73.93627)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4485698,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/11/2021,20:30,QUEENS,11372,40.75644,-73.87701,"(40.75644, -73.87701)",NORTHERN BOULEVARD,91 STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,,,4485443,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/11/2021,20:20,BROOKLYN,11226,40.640503,-73.95564,"(40.640503, -73.95564)",FLATBUSH AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485508,Station Wagon/Sport Utility Vehicle,Bus,,, +12/11/2021,18:52,,,40.75218,-73.85201,"(40.75218, -73.85201)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485693,Sedan,Sedan,,, +12/09/2021,22:00,MANHATTAN,10003,40.731018,-73.985916,"(40.731018, -73.985916)",EAST 12 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486295,Bike,,,, +12/10/2021,10:15,BROOKLYN,11207,40.67482,-73.89368,"(40.67482, -73.89368)",LIBERTY AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486041,Sedan,Sedan,,, +12/11/2021,12:30,MANHATTAN,10018,40.758305,-74.000145,"(40.758305, -74.000145)",WEST 38 STREET,11 AVENUE,,2,0,0,0,0,0,2,0,Oversized Vehicle,Pavement Slippery,,,,4485627,PK,Taxi,,, +12/07/2021,15:00,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486052,Sedan,,,, +12/11/2021,3:30,MANHATTAN,10004,,,,,,20 West street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485305,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,7:40,,,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486091,Box Truck,Sedan,,, +12/08/2021,1:30,BROOKLYN,11207,40.655174,-73.88808,"(40.655174, -73.88808)",,,941 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485998,Sedan,Sedan,,, +12/02/2021,13:50,MANHATTAN,10003,40.735203,-73.98791,"(40.735203, -73.98791)",,,33 IRVING PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4486162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,12:40,BROOKLYN,11218,40.631275,-73.97606,"(40.631275, -73.97606)",EAST 2 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4486139,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,12:00,QUEENS,11416,40.682106,-73.84584,"(40.682106, -73.84584)",103 AVENUE,94 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4485855,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,0:53,,,40.72545,-73.837776,"(40.72545, -73.837776)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,2:00,BROOKLYN,11222,40.719215,-73.94365,"(40.719215, -73.94365)",,,485 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491383,Sedan,,,, +01/01/2022,17:00,,,40.71143,-73.72845,"(40.71143, -73.72845)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4491463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/01/2022,10:42,,,40.823673,-73.87233,"(40.823673, -73.87233)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4491223,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,3:48,BROOKLYN,11201,40.688316,-74.00113,"(40.688316, -74.00113)",,,100 COLUMBIA STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491137,Sedan,Sedan,,, +10/10/2021,20:15,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4465896,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,11:00,BROOKLYN,11221,40.68949,-73.92207,"(40.68949, -73.92207)",GATES AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466088,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,10:34,QUEENS,11435,40.694183,-73.80544,"(40.694183, -73.80544)",105 AVENUE,LIVERPOOL STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4465975,Sedan,,,, +01/01/2022,15:55,QUEENS,11420,40.68354,-73.81065,"(40.68354, -73.81065)",111 AVENUE,132 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4491567,Station Wagon/Sport Utility Vehicle,,,, +12/25/2021,18:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491690,Sedan,,,, +10/10/2021,2:15,,,40.718555,-73.988205,"(40.718555, -73.988205)",ESSEX STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465623,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,21:00,QUEENS,11354,40.765266,-73.81517,"(40.765266, -73.81517)",150 STREET,NORTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4465928,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,22:00,BRONX,10451,40.82138,-73.91174,"(40.82138, -73.91174)",,,495 EAST 158 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466240,Sedan,,,, +10/10/2021,15:40,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4466031,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/01/2022,14:40,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491343,Sedan,,,, +01/01/2022,17:50,QUEENS,11372,40.75415,-73.88112,"(40.75415, -73.88112)",,,86-11 34 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491327,,,,, +10/10/2021,0:10,BROOKLYN,11210,40.63184,-73.95463,"(40.63184, -73.95463)",,,754 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465642,Sedan,Sedan,Sedan,, +10/10/2021,15:15,QUEENS,11373,40.743397,-73.88388,"(40.743397, -73.88388)",BROADWAY,81 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466049,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,17:07,MANHATTAN,10019,40.767815,-73.98951,"(40.767815, -73.98951)",WEST 55 STREET,10 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491637,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/01/2022,2:18,BROOKLYN,11201,40.689137,-73.990715,"(40.689137, -73.990715)",BOERUM PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491379,Taxi,,,, +01/01/2022,1:37,BRONX,10467,40.865505,-73.863525,"(40.865505, -73.863525)",ALLERTON AVENUE,BARNES AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4491416,,,,, +10/10/2021,2:30,,,40.74121,-73.84277,"(40.74121, -73.84277)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465677,Sedan,Sedan,,, +10/10/2021,9:30,,,40.761703,-73.88175,"(40.761703, -73.88175)",30 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4465872,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,16:34,,,40.795464,-73.96381,"(40.795464, -73.96381)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466105,Sedan,Sedan,,, +10/10/2021,20:30,BROOKLYN,11234,40.623596,-73.90996,"(40.623596, -73.90996)",,,7224 AVENUE N,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4466151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,2:25,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",WEST 178 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491755,Sedan,Sedan,,, +01/01/2022,17:58,BRONX,10456,40.834423,-73.90389,"(40.834423, -73.90389)",,,3645 3 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491443,Sedan,Bike,,, +01/01/2022,2:42,QUEENS,11373,40.731216,-73.8696,"(40.731216, -73.8696)",,,60-38 BOOTH STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491362,Sedan,,,, +06/13/2021,22:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4427745,Sedan,,,, +10/10/2021,1:52,,,40.634823,-74.160286,"(40.634823, -74.160286)",,,94 HARBOR ROAD,1,0,1,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4465852,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,9:19,QUEENS,11368,40.76141,-73.84462,"(40.76141, -73.84462)",NORTHERN BOULEVARD,126 PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4465750,Sedan,,,, +12/28/2021,15:30,MANHATTAN,10017,40.752117,-73.977684,"(40.752117, -73.977684)",EAST 42 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491725,Sedan,,,, +11/26/2021,21:29,MANHATTAN,10017,40.75332,-73.972595,"(40.75332, -73.972595)",3 AVENUE,EAST 46 STREET,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491788,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/10/2021,16:52,BRONX,10469,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4465833,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,7:30,QUEENS,11373,40.744118,-73.8801,"(40.744118, -73.8801)",,,42-42 JUDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4465751,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/01/2022,18:38,QUEENS,11368,40.74608,-73.85577,"(40.74608, -73.85577)",,,108-70 48 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4491398,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/10/2021,19:15,,,40.651264,-74.003914,"(40.651264, -74.003914)",5 AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465868,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,1:20,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4465705,Sedan,Sedan,Sedan,, +02/20/2022,4:45,,,40.57397,-74.16992,"(40.57397, -74.16992)",RICHMOND AVENUE,INDEPENDENCE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504306,Sedan,Sedan,,, +10/10/2021,11:25,QUEENS,11367,40.738495,-73.81387,"(40.738495, -73.81387)",,,154-28 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466018,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,23:50,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4466058,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/09/2021,16:00,QUEENS,11373,40.741623,-73.87918,"(40.741623, -73.87918)",WHITNEY AVENUE,MACNISH STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4426692,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,11:50,BROOKLYN,11226,40.653793,-73.96405,"(40.653793, -73.96405)",,,5 SAINT PAULS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427921,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/14/2021,19:06,MANHATTAN,10065,40.761173,-73.95789,"(40.761173, -73.95789)",YORK AVENUE,EAST 63 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427913,Sedan,Sedan,,, +05/25/2021,19:00,,,40.802914,-73.92029,"(40.802914, -73.92029)",EAST 132 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427926,Pick-up Truck,Dump,,, +06/14/2021,12:00,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4427875,Tractor Truck Diesel,,,, +05/28/2021,12:01,,,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4427969,Station Wagon/Sport Utility Vehicle,Bike,,, +06/14/2021,20:18,BROOKLYN,11214,40.58525,-73.98728,"(40.58525, -73.98728)",CROPSEY AVENUE,BAY 50 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4427965,Sedan,Bike,,, +06/14/2021,14:15,QUEENS,11412,40.704006,-73.7668,"(40.704006, -73.7668)",FARMERS BOULEVARD,109 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427915,Bus,Sedan,,, +06/14/2021,19:01,MANHATTAN,10002,40.714085,-73.98871,"(40.714085, -73.98871)",,,10 JEFFERSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427874,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/20/2022,16:30,QUEENS,11373,40.745228,-73.882576,"(40.745228, -73.882576)",JUDGE STREET,PETTIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504362,Sedan,Sedan,,, +10/10/2021,21:03,MANHATTAN,10035,40.801235,-73.941826,"(40.801235, -73.941826)",EAST 119 STREET,PARK AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4466182,Sedan,E-Bike,,, +02/03/2022,22:50,QUEENS,11385,40.695114,-73.90322,"(40.695114, -73.90322)",WYCKOFF AVENUE,NORMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504817,Pick-up Truck,,,, +10/10/2021,9:08,BROOKLYN,11220,40.63489,-74.019035,"(40.63489, -74.019035)",,,546 67 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,9:00,BROOKLYN,11221,40.690266,-73.91546,"(40.690266, -73.91546)",EVERGREEN AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,23:35,BROOKLYN,11226,40.641453,-73.96389,"(40.641453, -73.96389)",,,1526 CORTELYOU ROAD,5,0,0,0,0,0,5,0,Unspecified,,,,,4465942,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,14:06,,,,,,BELT PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427158,Sedan,Tanker,,, +06/14/2021,21:00,QUEENS,11419,40.687225,-73.821625,"(40.687225, -73.821625)",LIBERTY AVENUE,122 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427206,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,12:00,BRONX,10456,40.830936,-73.91241,"(40.830936, -73.91241)",EAST 167 STREET,TELLER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4427736,Sedan,Sedan,Sedan,, +06/13/2021,19:40,STATEN ISLAND,10312,40.5517,-74.18382,"(40.5517, -74.18382)",,,65 VINELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427683,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,1:18,BROOKLYN,11209,40.621548,-74.024704,"(40.621548, -74.024704)",,,548 85 STREET,1,0,0,0,1,0,0,0,Alcohol Involvement,,,,,4426689,Bike,,,, +06/14/2021,16:05,BROOKLYN,11229,40.606876,-73.94795,"(40.606876, -73.94795)",BEDFORD AVENUE,AVENUE R,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,10:30,MANHATTAN,10040,40.855595,-73.92733,"(40.855595, -73.92733)",WEST 192 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427361,Sedan,,,, +06/14/2021,20:16,MANHATTAN,10013,40.723305,-74.00299,"(40.723305, -74.00299)",WEST BROADWAY,WATTS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427242,Pick-up Truck,,,, +06/14/2021,21:27,BROOKLYN,11204,40.622047,-73.98886,"(40.622047, -73.98886)",,,1757 61 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427616,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,5:15,BRONX,10458,40.876495,-73.88321,"(40.876495, -73.88321)",VANCORTLANDT AVENUE EAST,MOSHOLU PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427824,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,1:10,,,40.74128,-73.90257,"(40.74128, -73.90257)",61 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4426871,Convertible,,,, +06/14/2021,11:20,,,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427250,Sedan,Sedan,,, +06/14/2021,18:00,BRONX,10452,40.84518,-73.91417,"(40.84518, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427726,Sedan,Bike,,, +06/01/2021,15:50,BROOKLYN,11203,40.646255,-73.93081,"(40.646255, -73.93081)",BEVERLEY ROAD,EAST 49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427809,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,17:00,MANHATTAN,10027,40.812622,-73.96302,"(40.812622, -73.96302)",RIVERSIDE DRIVE,WEST 122 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427509,Station Wagon/Sport Utility Vehicle,Van,,, +06/14/2021,8:19,MANHATTAN,10016,40.740395,-73.97909,"(40.740395, -73.97909)",EAST 27 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426964,Pick-up Truck,Bike,,, +06/14/2021,7:37,,,40.7736,-73.98158,"(40.7736, -73.98158)",COLUMBUS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427137,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/14/2021,15:51,BROOKLYN,11207,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,MOFFAT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,18:20,QUEENS,11421,40.687534,-73.85966,"(40.687534, -73.85966)",,,80-57 90 ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4427319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/14/2021,11:30,BROOKLYN,11215,40.673946,-73.9804,"(40.673946, -73.9804)",,,119 GARFIELD PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427371,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,0:00,QUEENS,11434,40.687622,-73.77881,"(40.687622, -73.77881)",116 AVENUE,169 STREET,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4427420,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/14/2021,15:20,QUEENS,11368,40.751026,-73.87055,"(40.751026, -73.87055)",,,37-10 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427103,Station Wagon/Sport Utility Vehicle,Bus,,, +06/14/2021,11:26,MANHATTAN,10016,40.7485,-73.974976,"(40.7485, -73.974976)",EAST 39 STREET,QUEENS MIDTOWN TUNNEL EXIT,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427055,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,10:48,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4427091,Sedan,Sedan,,, +06/14/2021,1:38,MANHATTAN,10034,,,,10 AVENUE,WEST 201 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4427056,Motorcycle,Sedan,,, +05/07/2021,20:20,BROOKLYN,11238,40.683018,-73.95885,"(40.683018, -73.95885)",CLASSON AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427756,Sedan,Sedan,,, +06/14/2021,1:00,BROOKLYN,11203,40.638542,-73.92604,"(40.638542, -73.92604)",KINGS HIGHWAY,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427123,Sedan,Sedan,,, +06/14/2021,1:00,,,40.848057,-73.90199,"(40.848057, -73.90199)",EAST TREMONT AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4426999,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,8:28,QUEENS,11436,40.678997,-73.79311,"(40.678997, -73.79311)",119 AVENUE,147 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4427419,Sedan,Taxi,,, +06/14/2021,10:40,QUEENS,11354,40.768524,-73.83345,"(40.768524, -73.83345)",,,31-22 FARRINGTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427222,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,13:52,BROOKLYN,11207,40.67956,-73.8989,"(40.67956, -73.8989)",HIGHLAND BOULEVARD,FANCHON PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4427261,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/14/2021,18:00,QUEENS,11435,40.69345,-73.806305,"(40.69345, -73.806305)",105 AVENUE,PRINCETON STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4427470,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,16:00,BRONX,10462,40.83281,-73.85558,"(40.83281, -73.85558)",,,2065 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427326,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,16:28,BRONX,10459,40.825947,-73.88784,"(40.825947, -73.88784)",LONGFELLOW AVENUE,LOWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427435,Sedan,,,, +06/14/2021,8:35,BRONX,10458,40.868366,-73.88981,"(40.868366, -73.88981)",BRIGGS AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427039,Sedan,,,, +06/14/2021,9:45,MANHATTAN,10029,40.788994,-73.94656,"(40.788994, -73.94656)",3 AVENUE,EAST 102 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427113,Sedan,E-Scooter,,, +06/14/2021,9:00,QUEENS,11414,40.657776,-73.83756,"(40.657776, -73.83756)",95 STREET,160 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427194,Sedan,Sedan,,, +06/14/2021,21:30,STATEN ISLAND,10305,40.601204,-74.06509,"(40.601204, -74.06509)",LILY POND AVENUE,NARROWS ROAD SOUTH,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4427317,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,18:00,MANHATTAN,10035,40.801205,-73.94568,"(40.801205, -73.94568)",,,4 EAST 117 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427661,Sedan,Sedan,,, +06/14/2021,19:00,QUEENS,11385,40.699226,-73.89808,"(40.699226, -73.89808)",FOREST AVENUE,SUMMERFIELD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427138,Motorscooter,Sedan,,, +06/14/2021,17:35,,,40.650856,-73.9486,"(40.650856, -73.9486)",EAST 31 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427172,Van,,,, +06/07/2021,17:45,,,40.88082,-73.90344,"(40.88082, -73.90344)",BROADWAY,WEST 233 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4427770,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/14/2021,9:15,,,40.689274,-73.92399,"(40.689274, -73.92399)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427066,Sedan,Sedan,,, +06/14/2021,19:10,BROOKLYN,11230,40.61701,-73.969124,"(40.61701, -73.969124)",AVENUE M,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427615,Sedan,Van,Bus,, +06/14/2021,19:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,3:50,,,,,,SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427388,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/14/2021,23:00,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427588,Pick-up Truck,Ambulance,,, +06/12/2021,18:56,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427746,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,9:00,QUEENS,11354,40.765137,-73.81944,"(40.765137, -73.81944)",NORTHERN BOULEVARD,147 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,14:14,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4427694,Sedan,Motorscooter,,, +06/14/2021,9:56,BROOKLYN,11208,40.68464,-73.87584,"(40.68464, -73.87584)",RIDGEWOOD AVENUE,CHESTNUT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427251,Sedan,Sedan,,, +06/14/2021,19:02,BROOKLYN,11206,40.705017,-73.94948,"(40.705017, -73.94948)",BROADWAY,LYNCH STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427180,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/14/2021,17:47,,,40.835884,-73.88341,"(40.835884, -73.88341)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427304,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,13:05,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",NORTH CONDUIT AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4427146,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,0:00,,,40.6813829,-73.953515,"(40.6813829, -73.953515)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466543,Sedan,,,, +06/14/2021,13:16,BRONX,10468,40.857418,-73.899956,"(40.857418, -73.899956)",EAST 183 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,22:28,BROOKLYN,11223,40.59424,-73.96809,"(40.59424, -73.96809)",,,2287 EAST 3 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427189,Convertible,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,0:00,MANHATTAN,10019,40.764683,-73.99179,"(40.764683, -73.99179)",10 AVENUE,WEST 50 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427276,Sedan,Sedan,,, +06/14/2021,9:00,,,40.85809,-73.901924,"(40.85809, -73.901924)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427243,Sedan,Sedan,,, +10/10/2021,8:50,BROOKLYN,11219,40.62717,-73.996704,"(40.62717, -73.996704)",14 AVENUE,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466149,Box Truck,Sedan,,, +06/14/2021,0:47,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4426714,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/08/2021,11:45,BROOKLYN,11234,40.618374,-73.9097,"(40.618374, -73.9097)",EAST 68 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427782,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,0:00,BROOKLYN,11209,40.63059,-74.028145,"(40.63059, -74.028145)",,,7611 3 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4427163,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,0:00,QUEENS,11377,40.73931,-73.91947,"(40.73931, -73.91947)",46 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4427550,Sedan,,,, +06/14/2021,15:25,MANHATTAN,10033,40.84787,-73.93641,"(40.84787, -73.93641)",WADSWORTH AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4427679,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,8:10,MANHATTAN,10029,40.799286,-73.945366,"(40.799286, -73.945366)",EAST 115 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426884,Sedan,,,, +06/14/2021,18:22,,,40.829185,-73.928764,"(40.829185, -73.928764)",EAST 161 STREET,MACOMBS DAM BRIDGE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427729,Sedan,Bus,,, +06/14/2021,1:32,QUEENS,11411,40.688644,-73.734406,"(40.688644, -73.734406)",,,119-53 229 STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4427145,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/14/2021,16:51,BROOKLYN,11207,40.664047,-73.888115,"(40.664047, -73.888115)",NEW LOTS AVENUE,VAN SICLEN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427244,Sedan,Bike,,, +06/07/2021,13:56,BROOKLYN,11236,40.65152,-73.909454,"(40.65152, -73.909454)",DITMAS AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427811,Sedan,Sedan,,, +06/14/2021,17:30,BROOKLYN,11206,40.70839,-73.939964,"(40.70839, -73.939964)",BUSHWICK AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427181,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,15:20,,,40.814297,-73.95308,"(40.814297, -73.95308)",CONVENT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427507,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,9:30,QUEENS,11101,40.752193,-73.93686,"(40.752193, -73.93686)",,,40-46 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427635,E-Bike,Sedan,,, +06/14/2021,17:30,QUEENS,11414,40.65445,-73.84547,"(40.65445, -73.84547)",,,161-08 86 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427208,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,12:30,,,40.897144,-73.88029,"(40.897144, -73.88029)",MAJOR DEEGAN EXPRESSWAY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4427765,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/14/2021,3:45,BROOKLYN,11233,40.684753,-73.917625,"(40.684753, -73.917625)",,,830 MACON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427061,Sedan,,,, +06/14/2021,9:51,BRONX,10462,40.83626,-73.85516,"(40.83626, -73.85516)",,,1502 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427092,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,15:00,BROOKLYN,11220,40.64759,-74.01142,"(40.64759, -74.01142)",4 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427330,Sedan,E-Bike,,, +06/14/2021,13:23,BRONX,10475,40.872494,-73.83314,"(40.872494, -73.83314)",,,600 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427450,Bus,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,8:18,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,WINTHROP STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4427816,Motorcycle,,,, +06/14/2021,10:20,BROOKLYN,11215,40.67571,-73.97864,"(40.67571, -73.97864)",,,783 UNION STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,3:24,BROOKLYN,11207,40.68789,-73.90724,"(40.68789, -73.90724)",CENTRAL AVENUE,COOPER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427290,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,14:50,BRONX,10457,40.844864,-73.88861,"(40.844864, -73.88861)",,,1985 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,12:50,QUEENS,11378,40.724792,-73.9088,"(40.724792, -73.9088)",,,56-20 59 STREET,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4427084,Carry All,,,, +06/14/2021,8:30,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4427193,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,19:28,MANHATTAN,10035,40.801342,-73.94598,"(40.801342, -73.94598)",EAST 117 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427664,Sedan,Motorcycle,,, +06/14/2021,11:14,STATEN ISLAND,10310,40.63093,-74.1115,"(40.63093, -74.1115)",,,446 BEMENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,Unspecified,,,4427480,Sedan,Sedan,Sedan,, +06/14/2021,19:04,BROOKLYN,11226,40.655384,-73.95084,"(40.655384, -73.95084)",,,279 CLARKSON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427154,Sedan,,,, +06/14/2021,15:40,QUEENS,11373,40.735573,-73.88111,"(40.735573, -73.88111)",GRAND AVENUE,SIMONSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427200,Bus,Sedan,,, +06/14/2021,11:50,,,,,,MADISON AVE BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4427656,Sedan,,,, +06/14/2021,13:14,BROOKLYN,11214,40.607586,-74.00318,"(40.607586, -74.00318)",,,1761 86 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4427323,Sedan,,,, +06/14/2021,7:18,,,0,0,"(0.0, 0.0)",DECKER AVENUE,BEEKMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4426959,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/14/2021,5:48,BRONX,10455,40.813175,-73.89845,"(40.813175, -73.89845)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4427429,Sedan,Sedan,,, +06/14/2021,5:51,,,40.65415,-73.949936,"(40.65415, -73.949936)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4427124,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/14/2021,23:35,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427358,Sedan,,,, +06/14/2021,15:03,BROOKLYN,11237,40.701958,-73.9239,"(40.701958, -73.9239)",SUYDAM STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427294,Sedan,Motorcycle,,, +06/14/2021,6:34,QUEENS,11356,40.787582,-73.849655,"(40.787582, -73.849655)",118 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427219,Sedan,,,, +06/07/2021,13:50,,,40.68837,-73.944916,"(40.68837, -73.944916)",LEXINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427752,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,16:14,BROOKLYN,11208,40.66459,-73.87663,"(40.66459, -73.87663)",,,2348 LINDEN BOULEVARD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4427260,Sedan,,,, +06/14/2021,18:30,MANHATTAN,10035,40.80259,-73.935265,"(40.80259, -73.935265)",,,245 EAST 124 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427658,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,17:30,BROOKLYN,11226,40.65503,-73.95002,"(40.65503, -73.95002)",,,1303 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4427171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,16:22,BRONX,10468,40.876976,-73.88966,"(40.876976, -73.88966)",PAUL AVENUE,WEST 205 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427461,Sedan,,,, +06/14/2021,19:34,BROOKLYN,11218,40.633617,-73.977715,"(40.633617, -73.977715)",,,850 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427610,Sedan,Van,,, +06/14/2021,18:34,QUEENS,11368,40.738197,-73.865456,"(40.738197, -73.865456)",,,55-07 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427199,Sedan,,,, +06/14/2021,18:00,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4427370,Sedan,,,, +06/14/2021,10:32,,,40.605732,-73.985016,"(40.605732, -73.985016)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426991,Sedan,,,, +06/14/2021,19:45,,,40.667168,-73.88087,"(40.667168, -73.88087)",LINWOOD STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427265,Sedan,,,, +06/14/2021,15:00,QUEENS,11375,40.72389,-73.84655,"(40.72389, -73.84655)",69 ROAD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427102,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,18:08,MANHATTAN,10003,40.73329,-73.98719,"(40.73329, -73.98719)",3 AVENUE,EAST 14 STREET,,1,0,0,0,1,0,0,0,Oversized Vehicle,Traffic Control Disregarded,,,,4427280,Sedan,Bike,,, +06/14/2021,10:00,BROOKLYN,11220,40.636105,-74.02292,"(40.636105, -74.02292)",4 AVENUE,SENATOR STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427162,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,19:38,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4427264,Sedan,Sedan,,, +06/04/2021,13:40,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427693,Sedan,Pick-up Truck,,, +06/14/2021,13:20,,,40.778625,-73.77587,"(40.778625, -73.77587)",26 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,15:00,,,40.696354,-73.94071,"(40.696354, -73.94071)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427719,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,0:10,,,40.59281,-73.97877,"(40.59281, -73.97877)",86 STREET,WEST 8 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4426762,Sedan,Sedan,,, +06/03/2021,15:30,QUEENS,11435,40.698406,-73.80647,"(40.698406, -73.80647)",95 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427793,Station Wagon/Sport Utility Vehicle,Bike,,, +06/14/2021,1:08,,,40.724495,-73.72469,"(40.724495, -73.72469)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4427534,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,11:50,QUEENS,11432,40.71646,-73.79235,"(40.71646, -73.79235)",HOME LAWN STREET,KENDRICK PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427355,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,3:39,,,40.702667,-73.86516,"(40.702667, -73.86516)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4427082,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,14:25,QUEENS,11377,40.740875,-73.89962,"(40.740875, -73.89962)",65 PLACE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427085,Sedan,Sedan,,, +06/14/2021,17:15,,,40.84125,-73.9094,"(40.84125, -73.9094)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427305,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/08/2021,17:25,BROOKLYN,11225,40.66379,-73.95295,"(40.66379, -73.95295)",,,273 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,19:49,BRONX,10461,40.856087,-73.85569,"(40.856087, -73.85569)",,,2141 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4427331,Sedan,,,, +06/14/2021,12:33,BROOKLYN,11234,40.614643,-73.936806,"(40.614643, -73.936806)",QUENTIN ROAD,EAST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427151,Sedan,Sedan,Sedan,, +06/14/2021,21:50,BROOKLYN,11236,40.63501,-73.914055,"(40.63501, -73.914055)",EAST 79 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4427391,Sedan,Sedan,,, +06/10/2021,23:18,,,40.697098,-73.95386,"(40.697098, -73.95386)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427978,Sedan,Sedan,,, +06/14/2021,10:00,,,40.846893,-73.92055,"(40.846893, -73.92055)",UNIVERSITY AVENUE,FEATHERBED LANE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4427018,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,15:40,BRONX,10456,40.83874,-73.913765,"(40.83874, -73.913765)",EAST 170 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4427307,Station Wagon/Sport Utility Vehicle,Bus,,, +06/14/2021,13:43,QUEENS,11355,40.75035,-73.81885,"(40.75035, -73.81885)",KISSENA BOULEVARD,JUNIPER AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4427380,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,11:30,BROOKLYN,11233,40.675236,-73.919945,"(40.675236, -73.919945)",,,2050 DEAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427446,Sedan,,,, +06/14/2021,0:40,,,40.86955,-73.91519,"(40.86955, -73.91519)",10 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427049,Sedan,Sedan,,, +06/14/2021,14:20,QUEENS,11433,40.703674,-73.79087,"(40.703674, -73.79087)",168 STREET,DOUGLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427111,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,23:40,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427919,Sedan,,,, +06/14/2021,19:00,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4427950,Sedan,Sedan,,, +06/14/2021,3:00,QUEENS,11413,40.65909,-73.75986,"(40.65909, -73.75986)",,,147-37 SPRINGFIELD LANE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4427144,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,17:35,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4427245,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,12:30,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427876,Taxi,Box Truck,,, +06/14/2021,6:40,QUEENS,11427,40.732162,-73.73598,"(40.732162, -73.73598)",,,86-47 WINCHESTER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427533,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,15:50,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4427763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,13:06,MANHATTAN,10019,40.76269,-73.98581,"(40.76269, -73.98581)",,,840 8 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4427059,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,17:45,,,40.631924,-74.016495,"(40.631924, -74.016495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427160,Tractor Truck Diesel,Sedan,,, +06/14/2021,5:00,MANHATTAN,10013,40.720825,-74.00525,"(40.720825, -74.00525)",,,39 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,,,,,4426967,Sedan,,,, +06/14/2021,9:07,,,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427125,Sedan,,,, +06/14/2021,4:25,,,40.596096,-73.76976,"(40.596096, -73.76976)",BEACH CHANNEL DRIVE,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4427298,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,17:40,BROOKLYN,11203,40.658234,-73.9321,"(40.658234, -73.9321)",WINTHROP STREET,EAST 49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427116,Ambulance,Sedan,,, +06/11/2021,11:43,MANHATTAN,10007,40.711018,-74.0108,"(40.711018, -74.0108)",CHURCH STREET,DEY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427691,E-Scooter,,,, +06/14/2021,1:00,QUEENS,11372,40.75595,-73.88165,"(40.75595, -73.88165)",86 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,1:00,,,40.709225,-73.843155,"(40.709225, -73.843155)",UNION TURNPIKE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427182,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,17:35,BRONX,10472,40.82731,-73.87794,"(40.82731, -73.87794)",,,1153 BOYNTON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4427328,Sedan,,,, +06/14/2021,23:33,,,40.68509,-73.80518,"(40.68509, -73.80518)",139 STREET,111 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4427427,Sedan,Sedan,,, +06/14/2021,22:35,BROOKLYN,11215,40.663822,-73.98224,"(40.663822, -73.98224)",,,426 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427369,Sedan,,,, +06/14/2021,21:22,BROOKLYN,11226,40.638626,-73.958855,"(40.638626, -73.958855)",,,976 OCEAN AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4427233,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,6:12,QUEENS,11377,40.760296,-73.90141,"(40.760296, -73.90141)",,,27-01 BROOKLYN QUEENS EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427632,Sedan,Ambulance,,, +06/14/2021,13:00,BROOKLYN,11203,40.655273,-73.93178,"(40.655273, -73.93178)",LENOX ROAD,EAST 49 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427815,Sedan,Sedan,,, +06/14/2021,6:25,,,40.7106,-73.98469,"(40.7106, -73.98469)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427176,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/10/2021,16:12,BRONX,10455,40.811993,-73.909515,"(40.811993, -73.909515)",,,494 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427666,Bus,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,17:20,MANHATTAN,10002,40.71277,-73.98849,"(40.71277, -73.98849)",MADISON STREET,JEFFERSON STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4427167,Bus,,,, +06/14/2021,5:20,,,40.61704,-74.00366,"(40.61704, -74.00366)",76 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4426940,Sedan,Sedan,,, +06/08/2021,12:00,BROOKLYN,11214,40.593388,-73.99477,"(40.593388, -73.99477)",,,275 BAY 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427723,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,14:46,BRONX,10472,40.82615,-73.87766,"(40.82615, -73.87766)",BOYNTON AVENUE,WATSON AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4427097,Bike,,,, +06/14/2021,19:05,BROOKLYN,11205,40.699165,-73.95548,"(40.699165, -73.95548)",,,491 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427202,Station Wagon/Sport Utility Vehicle,Bike,,, +06/13/2021,16:25,,,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,6:04,,,40.74886,-73.93755,"(40.74886, -73.93755)",JACKSON AVENUE,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427564,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,12:41,BROOKLYN,11222,40.734688,-73.95247,"(40.734688, -73.95247)",MC GUINNESS BOULEVARD,FREEMAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427209,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,15:11,BROOKLYN,11206,40.70042,-73.93452,"(40.70042, -73.93452)",NOLL STREET,STANWIX STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4427293,Sedan,Carry All,,, +06/14/2021,17:22,BROOKLYN,11219,40.644615,-73.992905,"(40.644615, -73.992905)",39 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427611,Sedan,,,, +06/14/2021,12:40,QUEENS,11417,40.680275,-73.8417,"(40.680275, -73.8417)",,,97-17 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4427192,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,0:00,,,40.69024,-73.99437,"(40.69024, -73.99437)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427155,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/09/2021,19:50,BROOKLYN,11205,40.68871,-73.95499,"(40.68871, -73.95499)",BEDFORD AVENUE,CLIFTON PLACE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4427698,Sedan,Sedan,,, +06/10/2021,16:43,STATEN ISLAND,10306,40.581264,-74.11221,"(40.581264, -74.11221)",LINCOLN AVENUE,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427742,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,11:15,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427321,Sedan,,,, +06/14/2021,11:00,,,40.783897,-73.97407,"(40.783897, -73.97407)",WEST 82 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427492,Box Truck,Sedan,,, +06/14/2021,18:30,BROOKLYN,11212,40.663174,-73.90477,"(40.663174, -73.90477)",,,345 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Failure to Yield Right-of-Way,,,,4427218,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,16:30,BROOKLYN,11207,40.678238,-73.89454,"(40.678238, -73.89454)",,,49 WYONA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427266,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,11:15,,,40.697018,-73.9976,"(40.697018, -73.9976)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,21:48,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427648,Bus,Sedan,,, +06/14/2021,12:15,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427284,Sedan,,,, +06/14/2021,20:00,BROOKLYN,11221,40.693638,-73.913315,"(40.693638, -73.913315)",WILSON AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427659,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,2:26,,,40.66929,-73.842445,"(40.66929, -73.842445)",CROSS BAY BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4426822,Sedan,Box Truck,,, +02/18/2022,15:15,BRONX,10451,40.81505,-73.92427,"(40.81505, -73.92427)",MORRIS AVENUE,EAST 143 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504781,Ambulance,,,, +06/14/2021,12:10,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427699,Sedan,Sedan,,, +06/14/2021,16:15,,,40.636505,-73.94416,"(40.636505, -73.94416)",FARRAGUT ROAD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4427174,Sedan,Sedan,Sedan,, +06/14/2021,12:15,,,40.73887,-73.81036,"(40.73887, -73.81036)",HORACE HARDING EXPRESSWAY,PARSONS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427356,Station Wagon/Sport Utility Vehicle,Beverage Truck,,, +06/14/2021,6:48,QUEENS,11377,40.74441,-73.89881,"(40.74441, -73.89881)",,,39-79 65 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427086,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,13:30,BRONX,10457,40.846863,-73.90142,"(40.846863, -73.90142)",EAST 176 STREET,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4427332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,19:00,,,,,,,,102 19 Seaview Avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4427751,Sedan,,,, +06/14/2021,11:40,,,40.700443,-73.95077,"(40.700443, -73.95077)",MARCY AVENUE,WALLABOUT STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4427577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,18:30,QUEENS,11355,,,,shea road,olmsted drive,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427230,Sedan,,,, +06/14/2021,7:30,BROOKLYN,11207,40.67158,-73.88911,"(40.67158, -73.88911)",BELMONT AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427255,Sedan,Dump,,, +06/14/2021,15:40,,,40.880657,-73.877625,"(40.880657, -73.877625)",WAYNE AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4427465,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,9:30,,,40.592484,-73.78417,"(40.592484, -73.78417)",ROCKAWAY BEACH BOULEVARD,BEACH 54 STREET,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4427299,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/14/2021,10:00,BROOKLYN,11203,40.66119,-73.933586,"(40.66119, -73.933586)",,,806 MIDWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427115,Sedan,Sedan,,, +06/14/2021,14:00,BROOKLYN,11210,40.627,-73.94476,"(40.627, -73.94476)",,,3208 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427150,Sedan,Box Truck,,, +06/12/2021,12:15,BRONX,10452,40.844376,-73.92178,"(40.844376, -73.92178)",PLIMPTON AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427975,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,13:05,BROOKLYN,11235,40.5916,-73.960686,"(40.5916, -73.960686)",AVENUE X,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427037,Sedan,,,, +06/14/2021,22:15,QUEENS,11377,40.746937,-73.89862,"(40.746937, -73.89862)",38 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427883,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/14/2021,21:00,QUEENS,11418,40.695824,-73.8211,"(40.695824, -73.8211)",ATLANTIC AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427309,Sedan,,,, +06/14/2021,16:44,QUEENS,11373,40.744457,-73.88816,"(40.744457, -73.88816)",,,41-47 77 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427198,Taxi,,,, +06/07/2021,17:17,MANHATTAN,10038,40.710396,-74.00561,"(40.710396, -74.00561)",WILLIAM STREET,BEEKMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427774,Sedan,Sedan,,, +06/14/2021,9:57,BROOKLYN,11230,40.61661,-73.956856,"(40.61661, -73.956856)",,,1397 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427117,Sedan,,,, +06/14/2021,19:10,BROOKLYN,11228,40.610523,-74.00806,"(40.610523, -74.00806)",86 STREET,BAY 11 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4427156,Sedan,Motorcycle,,, +06/14/2021,23:20,QUEENS,11378,40.71935,-73.91233,"(40.71935, -73.91233)",GRAND AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4427493,Tractor Truck Diesel,Sedan,,, +06/14/2021,9:48,QUEENS,11358,40.753765,-73.80489,"(40.753765, -73.80489)",162 STREET,46 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427381,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,19:45,QUEENS,11372,40.75472,-73.87384,"(40.75472, -73.87384)",,,34-15 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427406,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,7:08,BRONX,10465,40.827133,-73.81973,"(40.827133, -73.81973)",,,3014 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427016,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,4:15,,,40.707783,-73.932076,"(40.707783, -73.932076)",JOHNSON AVENUE,MORGAN AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4543404,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/14/2021,10:54,QUEENS,11692,40.592846,-73.79616,"(40.592846, -73.79616)",BEACH CHANNEL DRIVE,BEACH 67 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4427072,Bus,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,17:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4427320,Pick-up Truck,,,, +06/14/2021,3:15,,,40.737885,-73.98091,"(40.737885, -73.98091)",EAST 23 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426965,Sedan,,,, +06/14/2021,8:00,BROOKLYN,11228,40.618786,-74.00807,"(40.618786, -74.00807)",,,1316 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427161,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,14:01,,,40.62495,-74.14521,"(40.62495, -74.14521)",,,1686 FOREST AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427376,Bus,Sedan,,, +06/14/2021,13:40,BROOKLYN,11207,40.689365,-73.9058,"(40.689365, -73.9058)",WILSON AVENUE,COOPER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427296,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,14:10,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427108,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,14:16,,,40.620472,-74.15271,"(40.620472, -74.15271)",,,1126 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427741,Sedan,,,, +06/14/2021,15:53,,,40.830154,-73.93964,"(40.830154, -73.93964)",WEST 155 STREET,EDGECOMBE AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4427677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,6:50,BROOKLYN,11205,40.699047,-73.95649,"(40.699047, -73.95649)",,,463 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427203,Sedan,,,, +06/14/2021,22:15,QUEENS,11413,40.67063,-73.75643,"(40.67063, -73.75643)",SPRINGFIELD BOULEVARD,141 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427183,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,9:44,QUEENS,11104,40.742188,-73.91891,"(40.742188, -73.91891)",46 STREET,GREENPOINT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427526,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/14/2021,12:03,BROOKLYN,11201,40.6867,-73.9982,"(40.6867, -73.9982)",HENRY STREET,KANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427619,Sedan,,,, +06/14/2021,11:40,BROOKLYN,11222,40.72127,-73.94547,"(40.72127, -73.94547)",,,61 MC GUINNESS BLVD SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427210,Sedan,,,, +06/14/2021,10:00,,,40.885952,-73.8279,"(40.885952, -73.8279)",CONNER STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427098,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,3:34,,,40.86114,-73.91894,"(40.86114, -73.91894)",9 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427057,LIMO,,,, +06/14/2021,13:20,BROOKLYN,11223,40.593742,-73.96085,"(40.593742, -73.96085)",AVENUE W,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427762,Pick-up Truck,,,, +06/14/2021,18:56,BRONX,10462,40.833614,-73.860855,"(40.833614, -73.860855)",GRANT CIRCLE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427327,Sedan,,,, +06/14/2021,13:50,QUEENS,11413,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427426,Sedan,Sedan,,, +06/14/2021,15:45,,,40.743114,-73.77114,"(40.743114, -73.77114)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427131,Pick-up Truck,DELIVERY,,, +06/14/2021,16:00,,,40.579247,-74.16917,"(40.579247, -74.16917)",,,283 PLATINUM AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427238,Sedan,Motorcycle,,, +06/14/2021,18:00,,,40.79996,-73.94698,"(40.79996, -73.94698)",EAST 115 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4427368,Sedan,,,, +06/14/2021,15:00,BROOKLYN,11207,40.68556,-73.90719,"(40.68556, -73.90719)",CHAUNCEY STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427292,Sedan,,,, +06/14/2021,8:20,,,,,,EAST 37 STREET,TUNNEL EXIT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427054,4 dr sedan,Bus,,, +06/14/2021,8:13,,,40.753387,-73.99631,"(40.753387, -73.99631)",9 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,18:40,QUEENS,11361,40.761913,-73.76713,"(40.761913, -73.76713)",,,215-10 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,18:28,BROOKLYN,11219,40.63003,-73.990166,"(40.63003, -73.990166)",,,5302 15 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427944,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/14/2021,0:45,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",WEBSTER AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427248,Sedan,Sedan,,, +06/14/2021,17:20,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427139,Sedan,Pick-up Truck,,, +06/14/2021,2:46,,,40.66755,-73.773575,"(40.66755, -73.773575)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4427686,Sedan,,,, +06/11/2021,13:45,,,40.68431,-73.95411,"(40.68431, -73.95411)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4427725,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/14/2021,14:19,BROOKLYN,11201,40.688877,-73.98991,"(40.688877, -73.98991)",,,275 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427560,Pick-up Truck,Pick-up Truck,,, +06/05/2021,9:30,,,40.678543,-73.949684,"(40.678543, -73.949684)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4427813,Motorscooter,,,, +06/14/2021,17:20,QUEENS,11377,40.75411,-73.898705,"(40.75411, -73.898705)",BROOKLYN QUEENS EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,21:49,BROOKLYN,11218,40.63836,-73.981476,"(40.63836, -73.981476)",,,3821 15 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,21:39,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",31 STREET,NEWTOWN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427920,Sedan,Sedan,,, +06/14/2021,17:00,STATEN ISLAND,10304,40.58455,-74.109985,"(40.58455, -74.109985)",,,81 IRON MINE DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,6:00,,,40.702663,-73.86553,"(40.702663, -73.86553)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427089,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,16:05,QUEENS,11432,40.712784,-73.7833,"(40.712784, -73.7833)",,,179-25 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427357,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,8:49,,,40.88031,-73.91854,"(40.88031, -73.91854)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427772,Sedan,Sedan,,, +06/14/2021,8:06,BRONX,10456,40.82407,-73.902596,"(40.82407, -73.902596)",,,1005 TINTON AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4427303,Flat Bed,Sedan,,, +06/14/2021,9:30,,,40.614563,-73.994804,"(40.614563, -73.994804)",73 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427070,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,17:00,BROOKLYN,11226,40.638367,-73.95584,"(40.638367, -73.95584)",STEPHENS COURT,EAST 23 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427121,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,16:00,BROOKLYN,11212,40.667427,-73.91892,"(40.667427, -73.91892)",,,35 GRAFTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427442,Sedan,Box Truck,,, +06/14/2021,17:14,,,40.843678,-73.89426,"(40.843678, -73.89426)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427417,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,9:20,,,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427038,Sedan,,,, +06/07/2021,15:42,,,40.639614,-73.93202,"(40.639614, -73.93202)",FOSTER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427814,Sedan,,,, +06/14/2021,17:45,QUEENS,11368,,,,126 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427584,Sedan,Sedan,,, +06/14/2021,14:40,QUEENS,11355,40.760624,-73.81769,"(40.760624, -73.81769)",BARCLAY AVENUE,147 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427217,Station Wagon/Sport Utility Vehicle,Bike,,, +06/12/2021,16:21,QUEENS,11418,40.7011,-73.84157,"(40.7011, -73.84157)",PARK LANE SOUTH,MYRTLE AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4427696,Taxi,E-Scooter,,, +06/11/2021,18:40,QUEENS,11368,40.752308,-73.86808,"(40.752308, -73.86808)",,,99-05 37 AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427702,Sedan,E-Scooter,,, +06/14/2021,6:24,BRONX,10457,40.844154,-73.89443,"(40.844154, -73.89443)",,,1844 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426870,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,10:00,,,40.681137,-73.95567,"(40.681137, -73.95567)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427970,Taxi,Bus,,, +06/14/2021,18:15,,,40.65749,-73.893074,"(40.65749, -73.893074)",,,LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4427262,Sedan,,,, +06/14/2021,15:00,BROOKLYN,11231,40.681057,-74.00856,"(40.681057, -74.00856)",VAN BRUNT STREET,COMMERCE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427285,Bike,Taxi,,, +06/13/2021,4:50,BROOKLYN,11203,40.642197,-73.94284,"(40.642197, -73.94284)",,,1279 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427808,Sedan,,,, +07/02/2022,4:19,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,Driver Inattention/Distraction,,,,4542702,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,14:40,BRONX,10467,40.869804,-73.87928,"(40.869804, -73.87928)",,,3033 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4427467,Station Wagon/Sport Utility Vehicle,Van,,, +06/14/2021,17:50,,,40.666588,-73.80809,"(40.666588, -73.80809)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4427197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/03/2021,13:30,BROOKLYN,11237,40.711338,-73.92513,"(40.711338, -73.92513)",GARDNER AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427890,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,22:00,BROOKLYN,11207,40.653454,-73.88466,"(40.653454, -73.88466)",FLATLANDS AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427267,Sedan,Sedan,,, +06/14/2021,8:49,,,40.63464,-74.14087,"(40.63464, -74.14087)",,,222 NICHOLAS AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4427012,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,10:15,,,40.638268,-74.14368,"(40.638268, -74.14368)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427339,Flat Rack,Taxi,,, +06/14/2021,23:25,QUEENS,11378,40.71935,-73.91233,"(40.71935, -73.91233)",GRAND AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427495,Van,,,, +06/14/2021,11:55,BROOKLYN,11209,40.623043,-74.02939,"(40.623043, -74.02939)",,,366 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427157,,,,, +06/14/2021,15:18,,,40.74425,-73.7334,"(40.74425, -73.7334)",CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427147,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,22:10,,,40.71388,-73.75404,"(40.71388, -73.75404)",FRANCIS LEWIS BOULEVARD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4427384,Sedan,Tractor Truck Diesel,,, +06/14/2021,17:00,BRONX,10455,40.814575,-73.90191,"(40.814575, -73.90191)",,,652 BECK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427840,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,6:50,BROOKLYN,11201,40.689144,-73.99071,"(40.689144, -73.99071)",ATLANTIC AVENUE,BOERUM PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427191,Sedan,Moped,,, +06/14/2021,14:10,,,40.775444,-73.828445,"(40.775444, -73.828445)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4427223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/13/2021,3:43,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4427747,Sedan,,,, +06/14/2021,1:44,,,40.69862,-73.920135,"(40.69862, -73.920135)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4427660,Sedan,Sedan,,, +07/02/2022,10:40,,,40.826412,-73.9406,"(40.826412, -73.9406)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,15:05,,,,,,214 Riverside Drive,94 Street,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427114,Sedan,Dump,,, +06/14/2021,12:00,BROOKLYN,11207,40.674255,-73.89749,"(40.674255, -73.89749)",SHEFFIELD AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427252,Sedan,,,, +06/14/2021,21:00,QUEENS,11377,40.745594,-73.9034,"(40.745594, -73.9034)",61 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427179,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,22:00,BROOKLYN,11218,,,,OCEAN PARKWAY,AVENUE C,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,5:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4427646,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,20:35,MANHATTAN,10032,40.83489,-73.93776,"(40.83489, -73.93776)",WEST 162 STREET,EDGECOMBE AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427678,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,23:30,QUEENS,11420,40.675762,-73.81688,"(40.675762, -73.81688)",,,121-10 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4427205,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,16:55,QUEENS,11370,40.75855,-73.89253,"(40.75855, -73.89253)",31 AVENUE,75 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4465874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,9:00,BROOKLYN,11203,40.649395,-73.9417,"(40.649395, -73.9417)",SNYDER AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465912,Sedan,,,, +07/02/2022,16:10,BROOKLYN,11217,,,,DEGRAW STREET,NEVINS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542746,Taxi,Sedan,,, +10/10/2021,13:28,MANHATTAN,10025,40.797714,-73.96132,"(40.797714, -73.96132)",,,27 WEST 105 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,9:00,BROOKLYN,11206,40.698673,-73.94006,"(40.698673, -73.94006)",,,861 PARK AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542989,Sedan,,,, +10/10/2021,12:25,BROOKLYN,11219,40.635727,-73.99629,"(40.635727, -73.99629)",,,1169 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466195,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,3:01,BROOKLYN,11212,40.66112,-73.920135,"(40.66112, -73.920135)",ROCKAWAY PARKWAY,CLARKSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4543313,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +06/30/2022,13:10,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4543352,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +10/10/2021,19:45,QUEENS,11105,40.78009,-73.9194,"(40.78009, -73.9194)",19 STREET,22 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465989,Sedan,E-Bike,,, +07/01/2022,22:18,,,40.84023,-73.880104,"(40.84023, -73.880104)",BOSTON ROAD,,,0,1,0,1,0,0,0,0,Unspecified,Unspecified,,,,4543260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,14:48,BROOKLYN,11220,40.638878,-74.00605,"(40.638878, -74.00605)",54 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466050,Sedan,E-Bike,,, +10/10/2021,23:25,BROOKLYN,11226,40.640827,-73.950424,"(40.640827, -73.950424)",EAST 28 STREET,AVENUE D,,1,0,1,0,0,0,0,0,,,,,,4465924,,,,, +10/10/2021,11:30,BROOKLYN,11207,40.67227,-73.89596,"(40.67227, -73.89596)",,,225 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466128,Box Truck,,,, +07/02/2022,22:55,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",34 AVENUE,108 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4542834,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,18:22,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465881,Sedan,Sedan,,, +07/02/2022,13:23,BROOKLYN,11234,40.62577,-73.9113,"(40.62577, -73.9113)",AVENUE M,EAST 73 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4543002,Box Truck,Sedan,,, +07/02/2022,20:55,BROOKLYN,11226,40.64424,-73.953514,"(40.64424, -73.953514)",,,2509 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543305,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,19:00,QUEENS,11368,40.73815,-73.86543,"(40.73815, -73.86543)",,,55-49 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466075,Sedan,,,, +10/10/2021,22:40,QUEENS,11357,40.789024,-73.8077,"(40.789024, -73.8077)",,,14-04 154 STREET,0,0,0,0,0,0,0,0,,,,,,4465929,,,,, +10/10/2021,17:58,QUEENS,11373,40.747375,-73.87912,"(40.747375, -73.87912)",,,87-15 BRITTON AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4466077,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,17:50,,,,,,WILLIS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466032,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/10/2021,2:36,,,40.5432177,-74.1498384,"(40.5432177, -74.1498384)",HILLCREST STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466396,Pick-up Truck,Van,,, +10/10/2021,1:30,QUEENS,11411,40.69423,-73.737274,"(40.69423, -73.737274)",,,223-20 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4465627,Sedan,Sedan,Sedan,, +06/26/2022,14:00,,,40.593056,-73.77532,"(40.593056, -73.77532)",BEACH 44 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,4:00,QUEENS,11361,40.76265,-73.77755,"(40.76265, -73.77755)",BOYCE AVENUE,208 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4465908,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,9:16,,,40.62368,-74.028,"(40.62368, -74.028)",4 AVENUE,85 STREET,,1,0,0,0,0,0,1,0,Illnes,,,,,4542668,Sedan,,,, +06/30/2022,15:45,QUEENS,11691,40.603134,-73.75527,"(40.603134, -73.75527)",,,22-02 LORETTA ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543249,Bus,Sedan,,, +07/02/2022,18:20,QUEENS,11435,40.705746,-73.8097,"(40.705746, -73.8097)",HILLSIDE AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4542778,E-Bike,Sedan,,, +06/27/2022,15:48,QUEENS,11691,40.595257,-73.74849,"(40.595257, -73.74849)",,,14-10 SEAGIRT BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4543228,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,2:02,BRONX,10451,40.81505,-73.92427,"(40.81505, -73.92427)",EAST 143 STREET,MORRIS AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4465645,Sedan,Sedan,,, +06/24/2022,15:44,QUEENS,11691,40.609856,-73.75458,"(40.609856, -73.75458)",HORTON AVENUE,PINSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543196,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,11:30,BROOKLYN,11226,40.64531,-73.94608,"(40.64531, -73.94608)",BEVERLEY ROAD,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,10:51,QUEENS,11365,40.730114,-73.802376,"(40.730114, -73.802376)",,,71-22 167 STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4466038,Sedan,Sedan,Sedan,, +07/02/2022,9:27,BRONX,10465,40.8315,-73.82697,"(40.8315, -73.82697)",,,3478 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4543080,Sedan,Sedan,,, +10/10/2021,1:24,,,40.815845,-73.95287,"(40.815845, -73.95287)",WEST 131 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465925,Sedan,Sedan,,, +06/30/2022,10:20,BRONX,10460,0,0,"(0.0, 0.0)",,,1531 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543360,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,18:51,QUEENS,11433,40.7032,-73.7892,"(40.7032, -73.7892)",LIBERTY AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4543149,Sedan,Sedan,,, +10/10/2021,19:25,QUEENS,11434,40.682377,-73.767166,"(40.682377, -73.767166)",MERRICK BOULEVARD,125 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4465977,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,16:16,,,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543307,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,16:49,,,40.595932,-73.75963,"(40.595932, -73.75963)",SEAGIRT BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4543256,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,2:40,,,40.676895,-73.93593,"(40.676895, -73.93593)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465767,Sedan,Sedan,,, +10/10/2021,17:45,BRONX,10467,40.877636,-73.867424,"(40.877636, -73.867424)",,,688 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465841,Sedan,Sedan,,, +10/10/2021,13:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466190,Sedan,,,, +06/04/2022,4:59,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543275,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,6:07,BROOKLYN,11211,40.71458,-73.943954,"(40.71458, -73.943954)",,,751 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465901,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,13:46,BROOKLYN,11220,40.635323,-74.02025,"(40.635323, -74.02025)",,,6709 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,23:55,BROOKLYN,11221,40.692196,-73.92488,"(40.692196, -73.92488)",GREENE AVENUE,GOODWIN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466083,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,11:50,BROOKLYN,11232,40.65207,-74.00676,"(40.65207, -74.00676)",4 AVENUE,40 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466199,Pick-up Truck,,,, +10/06/2021,7:03,BROOKLYN,11221,40.6918236,-73.9222292,"(40.6918236, -73.9222292)",BUSHWICK AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466361,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,9:20,,,,,,VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491517,Sedan,Box Truck,,, +10/10/2021,5:45,QUEENS,11385,40.69759,-73.90194,"(40.69759, -73.90194)",CYPRESS AVENUE,STEPHEN STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4465786,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/10/2021,15:40,BROOKLYN,11226,40.644657,-73.95664,"(40.644657, -73.95664)",BEVERLEY ROAD,EAST 22 STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4465938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,23:55,QUEENS,11378,40.716793,-73.92155,"(40.716793, -73.92155)",GRAND AVENUE,47 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542998,Sedan,,,, +06/28/2022,12:55,QUEENS,11691,40.595787,-73.76761,"(40.595787, -73.76761)",ROCKAWAY FREEWAY,BEACH 35 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2022,7:05,,,,,,Jackie Robinson,Exit 2,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542685,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,18:40,BRONX,10475,40.884827,-73.8261,"(40.884827, -73.8261)",NOELL AVENUE,HOLLERS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465889,Sedan,Sedan,,, +10/10/2021,6:30,,,40.69119,-73.78409,"(40.69119, -73.78409)",SAYRES AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465953,Sedan,,,, +07/02/2022,16:44,BRONX,10452,40.8382,-73.92371,"(40.8382, -73.92371)",WOODYCREST AVENUE,WEST 168 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543164,Sedan,Sedan,,, +07/02/2022,14:04,BROOKLYN,11204,40.610703,-73.97959,"(40.610703, -73.97959)",,,143 AVENUE O,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4542756,Motorcycle,,,, +10/10/2021,22:30,MANHATTAN,10024,40.78202,-73.97173,"(40.78202, -73.97173)",WEST 81 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466171,Sedan,E-Scooter,,, +10/10/2021,1:05,,,,,,BELT PARKWAY,,,6,0,0,0,0,0,6,0,Lane Marking Improper/Inadequate,Unspecified,,,,4465670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,19:40,,,40.69931,-73.75736,"(40.69931, -73.75736)",197 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4543173,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/10/2021,18:45,QUEENS,11101,40.7448,-73.953415,"(40.7448, -73.953415)",VERNON BOULEVARD,47 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465869,Motorcycle,Sedan,,, +10/10/2021,22:24,BROOKLYN,11232,40.651264,-74.003914,"(40.651264, -74.003914)",5 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466218,Bike,Sedan,,, +10/10/2021,12:50,,,,,,BRUCKNER BOULEVARD,HUTCHINSON RIVER PARKWAY,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4466104,Carry All,Sedan,,, +10/10/2021,5:53,QUEENS,11417,40.674034,-73.85803,"(40.674034, -73.85803)",,,78-07 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Animals Action,,,,,4466010,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,14:59,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4542871,E-Scooter,Sedan,,, +10/10/2021,15:00,BROOKLYN,11207,40.66798,-73.893845,"(40.66798, -73.893845)",BLAKE AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466057,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,0:00,QUEENS,11433,40.693005,-73.789856,"(40.693005, -73.789856)",110 AVENUE,UNION HALL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4543154,Sedan,,,, +10/10/2021,10:11,BROOKLYN,11203,40.654594,-73.93461,"(40.654594, -73.93461)",,,296 EAST 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465911,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,17:20,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543323,Sedan,Convertible,,, +07/02/2022,20:00,,,40.721397,-73.95605,"(40.721397, -73.95605)",BERRY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543040,Sedan,,,, +10/10/2021,21:43,QUEENS,11434,40.6769,-73.78158,"(40.6769, -73.78158)",BAISLEY BOULEVARD,LAKEVIEW LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465952,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,14:30,BRONX,10469,40.867916,-73.84132,"(40.867916, -73.84132)",,,1525 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,1:50,,,40.84219,-73.89411,"(40.84219, -73.89411)",CROTONA AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4465696,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,18:15,BRONX,10469,40.87746,-73.853745,"(40.87746, -73.853745)",EAST 215 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,12:34,BROOKLYN,11206,40.705513,-73.93808,"(40.705513, -73.93808)",MC KIBBIN COURT,MC KIBBIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465846,Van,Van,,, +07/02/2022,1:19,,,40.689735,-73.72674,"(40.689735, -73.72674)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4542607,Sedan,,,, +10/10/2021,13:17,,,,,,East 175 street,EAST 175 STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Passing Too Closely,,,,4466078,Sedan,Sedan,,, +10/10/2021,15:50,,,40.71576,-73.74655,"(40.71576, -73.74655)",212 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,14:37,QUEENS,11423,40.721188,-73.77653,"(40.721188, -73.77653)",,,85-76 188 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466063,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,9:04,QUEENS,11101,40.750977,-73.934746,"(40.750977, -73.934746)",NORTHERN BOULEVARD,40 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465988,Taxi,Sedan,,, +10/10/2021,2:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4465633,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +10/10/2021,23:15,MANHATTAN,10025,40.79166,-73.96469,"(40.79166, -73.96469)",WEST 96 STREET,CENTRAL PARK WEST,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466206,Station Wagon/Sport Utility Vehicle,Moped,,, +10/10/2021,8:56,BROOKLYN,11224,40.579826,-73.97622,"(40.579826, -73.97622)",WEST 8 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,3:42,MANHATTAN,10027,40.808163,-73.95263,"(40.808163, -73.95263)",,,2272 8 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4465797,Bike,Sedan,,, +10/10/2021,22:30,BROOKLYN,11208,40.689262,-73.869774,"(40.689262, -73.869774)",,,61 NICHOLS AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4466129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,17:22,BRONX,10473,40.82194,-73.85875,"(40.82194, -73.85875)",,,1900 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4465855,Sedan,Sedan,Sedan,, +10/10/2021,21:28,MANHATTAN,10018,40.756157,-73.99125,"(40.756157, -73.99125)",,,304 WEST 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466191,Sedan,Sedan,,, +10/10/2021,17:10,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4465884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,6:00,STATEN ISLAND,10310,40.640743,-74.12003,"(40.640743, -74.12003)",RICHMOND TERRACE,VAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465733,Taxi,Sedan,,, +10/10/2021,17:30,,,40.725792,-74.01103,"(40.725792, -74.01103)",WEST STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466138,Sedan,,,, +10/10/2021,0:45,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4465745,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,1:25,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504005,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,21:36,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Other Vehicular,,,,4504341,Sedan,Bike,,, +02/16/2022,19:10,QUEENS,11421,40.694775,-73.84774,"(40.694775, -73.84774)",98 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504676,Sedan,,,, +02/20/2022,6:44,MANHATTAN,10030,40.814228,-73.945206,"(40.814228, -73.945206)",,,202 WEST 133 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passenger Distraction,,,,4504407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,18:43,BRONX,10460,40.841522,-73.87885,"(40.841522, -73.87885)",EAST 179 STREET,BOSTON ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504743,Sedan,,,, +02/20/2022,2:55,,,40.619926,-74.00066,"(40.619926, -74.00066)",15 AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4504053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,16:28,BROOKLYN,11249,40.716908,-73.96363,"(40.716908, -73.96363)",,,93 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504428,Sedan,,,, +02/18/2022,4:40,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4504815,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,19:35,BRONX,10469,40.87617,-73.84904,"(40.87617, -73.84904)",BOSTON ROAD,SEYMOUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504725,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,3:30,STATEN ISLAND,10301,40.61726,-74.102104,"(40.61726, -74.102104)",,,1130 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504107,Sedan,,,, +02/20/2022,22:10,QUEENS,11411,40.692104,-73.74273,"(40.692104, -73.74273)",219 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504284,Sedan,Pick-up Truck,,, +02/20/2022,18:40,,,40.643604,-73.94301,"(40.643604, -73.94301)",CLARENDON ROAD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504519,Sedan,Sedan,,, +07/02/2022,11:30,BROOKLYN,11212,40.665066,-73.91348,"(40.665066, -73.91348)",BLAKE AVENUE,AMBOY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4543388,Box Truck,,,, +06/29/2022,17:00,,,40.790813,-73.976456,"(40.790813, -73.976456)",WEST 89 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543268,Sedan,Sedan,,, +10/10/2021,7:20,BROOKLYN,11236,40.65295,-73.911026,"(40.65295, -73.911026)",ROCKAWAY PARKWAY,AVENUE B,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465878,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,4:20,,,40.7011,-73.84157,"(40.7011, -73.84157)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4466040,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,14:00,BROOKLYN,11206,40.700493,-73.9439,"(40.700493, -73.9439)",,,713 FLUSHING AVENUE,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4543225,Sedan,Concrete Mixer,,, +07/02/2022,0:00,,,,,,FLATBUSH AVENUE,PLAZA STREET WEST,,2,0,0,0,0,0,2,0,Unspecified,,,,,4542744,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,13:30,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542748,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,12:03,QUEENS,11694,40.581543,-73.83895,"(40.581543, -73.83895)",,,115-01 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465765,Sedan,Sedan,,, +10/10/2021,15:30,BROOKLYN,11211,40.715,-73.952446,"(40.715, -73.952446)",,,179 MEEKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465902,Sedan,Van,,, +10/10/2021,3:00,MANHATTAN,10029,40.790997,-73.95143,"(40.790997, -73.95143)",,,1468 MADISON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465691,Taxi,Sedan,,, +10/10/2021,20:10,QUEENS,11101,40.73555,-73.934784,"(40.73555, -73.934784)",BRADLEY AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465870,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,9:00,BROOKLYN,11207,40.659813,-73.87867,"(40.659813, -73.87867)",,,901 ASHFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466116,Sedan,,,, +10/10/2021,14:20,BROOKLYN,11234,40.626015,-73.90995,"(40.626015, -73.90995)",BERGEN AVENUE,BERGEN COURT,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465862,Sedan,Sedan,,, +06/24/2022,17:30,BRONX,10460,40.84022,-73.873276,"(40.84022, -73.873276)",MORRIS PARK AVENUE,LEBANON STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4543205,Sedan,Sedan,,, +06/24/2022,12:15,BRONX,10461,40.83709,-73.83416,"(40.83709, -73.83416)",,,3176 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543383,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,9:33,MANHATTAN,10027,40.81001,-73.958725,"(40.81001, -73.958725)",WEST 121 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465926,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,4:30,MANHATTAN,10040,40.854904,-73.92965,"(40.854904, -73.92965)",WEST 190 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466188,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,4:00,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4542760,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2022,3:00,MANHATTAN,10002,40.723274,-73.99122,"(40.723274, -73.99122)",,,229 CHRYSTIE STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543220,Sedan,Bike,,, +10/10/2021,7:15,BRONX,10460,40.838844,-73.87817,"(40.838844, -73.87817)",EAST 177 STREET,DEVOE AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4466029,Station Wagon/Sport Utility Vehicle,Bus,,, +06/24/2022,8:13,BROOKLYN,11206,40.70476,-73.94986,"(40.70476, -73.94986)",,,242 LYNCH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543411,Sedan,,,, +07/02/2022,20:08,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542823,Sedan,,,, +10/10/2021,11:55,BRONX,10459,40.82523,-73.8976,"(40.82523, -73.8976)",,,1066 HALL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465917,Sedan,,,, +06/28/2022,23:00,,,40.60098,-73.75555,"(40.60098, -73.75555)",BEACH 22 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543239,Sedan,Sedan,,, +10/10/2021,20:01,BROOKLYN,11209,40.62149,-74.02622,"(40.62149, -74.02622)",86 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465910,Sedan,Bus,,, +10/10/2021,0:25,,,40.624245,-74.02008,"(40.624245, -74.02008)",7 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4465646,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/10/2021,1:25,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4465844,Bike,,,, +10/10/2021,16:08,,,40.679028,-73.80399,"(40.679028, -73.80399)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465954,Sedan,,,, +10/10/2021,4:30,MANHATTAN,10013,40.72151,-74.00452,"(40.72151, -74.00452)",,,300 WEST BROADWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466661,Convertible,Sedan,,, +06/30/2022,17:37,MANHATTAN,10036,40.756977,-73.99123,"(40.756977, -73.99123)",,,327 WEST 41 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543448,Sedan,Box Truck,,, +07/02/2022,0:00,,,40.66397,-73.99777,"(40.66397, -73.99777)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4542696,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,21:50,,,40.716312,-73.81938,"(40.716312, -73.81938)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465982,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,20:06,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466093,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2022,23:41,,,40.8523,-73.8951,"(40.8523, -73.8951)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543206,Sedan,,,, +10/10/2021,1:45,,,40.632717,-73.89138,"(40.632717, -73.89138)",SEAVIEW AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4465932,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,20:40,,,40.617477,-74.02508,"(40.617477, -74.02508)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4465890,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,21:35,BRONX,10454,40.810726,-73.92465,"(40.810726, -73.92465)",ALEXANDER AVENUE,EAST 139 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4543235,Sedan,Sedan,,, +06/30/2022,22:22,QUEENS,11691,40.6034,-73.74575,"(40.6034, -73.74575)",CORNAGA AVENUE,BEACH 9 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543252,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,12:55,MANHATTAN,10024,40.783146,-73.97833,"(40.783146, -73.97833)",AMSTERDAM AVENUE,WEST 79 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4466168,Sedan,Bus,,, +07/02/2022,9:20,,,40.671085,-73.736275,"(40.671085, -73.736275)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4542703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,6:40,,,40.791405,-73.93569,"(40.791405, -73.93569)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466001,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,22:21,BRONX,10467,40.876583,-73.863914,"(40.876583, -73.863914)",,,751 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466067,Sedan,,,, +07/02/2022,4:03,QUEENS,11354,40.7731,-73.84566,"(40.7731, -73.84566)",COLLEGE POINT BOULEVARD,28 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542759,Sedan,Sedan,,, +07/02/2022,2:20,QUEENS,11420,40.66386,-73.82297,"(40.66386, -73.82297)",NASSAU EXPRESSWAY,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2022,15:30,MANHATTAN,10002,40.718815,-73.97474,"(40.718815, -73.97474)",,,500 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543437,Sedan,,,, +07/02/2022,9:50,,,40.60719,-74.16243,"(40.60719, -74.16243)",VICTORY BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542804,Sedan,Box Truck,,, +07/02/2022,2:45,,,40.768887,-73.90691,"(40.768887, -73.90691)",43 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543123,Sedan,,,, +07/01/2022,9:40,MANHATTAN,10002,40.71424,-73.98795,"(40.71424, -73.98795)",,,197 EAST BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543415,Sedan,Sedan,,, +10/10/2021,1:40,,,40.724804,-73.82983,"(40.724804, -73.82983)",VAN WYCK EXPWY,,,4,0,0,0,0,0,4,0,Pavement Defective,,,,,4465638,Sedan,,,, +06/29/2022,16:00,,,40.795456,-73.96564,"(40.795456, -73.96564)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543267,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,12:07,BRONX,10472,,,,,,100 HUGH GRANT CIRCLE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543363,Bus,Sedan,,, +10/10/2021,0:00,MANHATTAN,10022,40.758007,-73.96625,"(40.758007, -73.96625)",EAST 55 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465914,Sedan,Bike,,, +10/10/2021,0:00,,,40.576656,-74.118454,"(40.576656, -74.118454)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466209,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,10:37,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465798,Sedan,,,, +10/10/2021,14:24,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466192,Taxi,Sedan,,, +07/02/2022,1:30,QUEENS,11361,40.765663,-73.76997,"(40.765663, -73.76997)",214 PLACE,39 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4542711,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2022,21:50,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4542859,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,6:00,BROOKLYN,11204,40.60922,-73.97376,"(40.60922, -73.97376)",,,2535 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4542681,Taxi,,,, +07/02/2022,1:20,,,40.732323,-73.810776,"(40.732323, -73.810776)",JEWEL AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542786,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,13:13,BRONX,10460,40.845764,-73.88177,"(40.845764, -73.88177)",EAST 181 STREET,HONEYWELL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466026,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,13:36,BROOKLYN,11201,40.68814,-73.99751,"(40.68814, -73.99751)",,,380 HENRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466056,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,23:51,,,40.85586,-73.89462,"(40.85586, -73.89462)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543199,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,14:00,BROOKLYN,11239,40.658215,-73.873566,"(40.658215, -73.873566)",,,12496 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466125,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,12:00,BROOKLYN,11210,40.629528,-73.943954,"(40.629528, -73.943954)",,,3319 AVENUE I,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465861,Pick-up Truck,Sedan,,, +07/02/2022,12:13,BROOKLYN,11207,40.68488,-73.91396,"(40.68488, -73.91396)",,,1638 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4542766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,E-Bike,, +06/24/2022,18:00,MANHATTAN,10024,40.783897,-73.97407,"(40.783897, -73.97407)",WEST 82 STREET,COLUMBUS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543321,E-Bike,E-Bike,,, +10/10/2021,3:53,,,40.65161,-74.01062,"(40.65161, -74.01062)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465734,Sedan,Sedan,,, +07/01/2022,16:30,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543240,Sedan,Tractor Truck Diesel,,, +10/10/2021,7:45,MANHATTAN,10027,40.809692,-73.94409,"(40.809692, -73.94409)",LENOX AVENUE,WEST 128 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466141,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,22:56,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465951,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,10:20,BROOKLYN,11201,40.691853,-73.9975,"(40.691853, -73.9975)",HICKS STREET,STATE STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4542936,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/10/2021,12:30,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,20:43,BROOKLYN,11220,40.636826,-74.011765,"(40.636826, -74.011765)",7 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465893,Station Wagon/Sport Utility Vehicle,,,, +06/03/2022,18:00,MANHATTAN,10013,40.71924,-73.99997,"(40.71924, -73.99997)",,,11 HOWARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543217,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,13:00,QUEENS,11691,40.60457,-73.75355,"(40.60457, -73.75355)",MOTT AVENUE,BEACH 21 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543248,Sedan,,,, +10/10/2021,8:29,MANHATTAN,10016,40.744934,-73.975784,"(40.744934, -73.975784)",,,625 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465731,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,14:40,BROOKLYN,11222,40.721504,-73.93844,"(40.721504, -73.93844)",BEADEL STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466061,Sedan,,,, +10/10/2021,12:45,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465776,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,1:15,,,40.735413,-73.91835,"(40.735413, -73.91835)",LAUREL HILL BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4466154,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/10/2021,10:00,STATEN ISLAND,10310,40.632675,-74.116844,"(40.632675, -74.116844)",BROADWAY,CARY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465689,Fire Truck,Sedan,,, +10/10/2021,15:23,BROOKLYN,11249,40.718666,-73.9635,"(40.718666, -73.9635)",KENT AVENUE,NORTH 4 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465903,Sedan,Bike,,, +10/10/2021,20:00,BROOKLYN,11211,40.709568,-73.95196,"(40.709568, -73.95196)",,,385 SOUTH 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466108,Pick up,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,12:00,MANHATTAN,10019,40.7670445,-73.9828659,"(40.7670445, -73.9828659)",,,977 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466337,Sedan,Sedan,,, +10/10/2021,13:35,,,40.803566,-73.96715,"(40.803566, -73.96715)",BROADWAY,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465853,Taxi,E-Scooter,,, +07/01/2022,12:30,MANHATTAN,10001,40.747276,-73.989624,"(40.747276, -73.989624)",WEST 30 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543231,Box Truck,Van,,, +07/02/2022,4:00,BRONX,10465,,,,,,4142 THROGS NECK EXPRESSWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4543090,Sedan,,,, +10/10/2021,1:18,QUEENS,11433,40.706123,-73.78914,"(40.706123, -73.78914)",,,92-28 170 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4465958,,,,, +10/10/2021,14:50,QUEENS,11355,40.75372,-73.83283,"(40.75372, -73.83283)",COLLEGE POINT BOULEVARD,MAPLE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4465927,Station Wagon/Sport Utility Vehicle,Bike,,, +06/17/2022,8:30,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,9:00,BROOKLYN,11211,40.71063,-73.95817,"(40.71063, -73.95817)",,,184 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543403,Sedan,,,, +10/10/2021,5:15,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4465984,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,19:39,BROOKLYN,11236,40.6301,-73.90227,"(40.6301, -73.90227)",,,1342 EAST 84 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542922,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,9:00,BROOKLYN,11210,40.631237,-73.9563,"(40.631237, -73.9563)",,,2109 CAMPUS ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4465756,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,20:00,BROOKLYN,11210,40.63633,-73.94705,"(40.63633, -73.94705)",EAST 31 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543314,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,22:15,MANHATTAN,10010,40.74037,-73.98946,"(40.74037, -73.98946)",,,935 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4466186,Sedan,Sedan,,, +07/02/2022,15:50,,,40.69798,-73.91257,"(40.69798, -73.91257)",PALMETTO STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542876,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,16:27,QUEENS,11101,40.74729,-73.92832,"(40.74729, -73.92832)",SKILLMAN AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465871,Sedan,Sedan,,, +10/10/2021,13:20,BRONX,10458,40.856796,-73.88992,"(40.856796, -73.88992)",EAST 187 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4466030,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/10/2021,19:22,BROOKLYN,11205,40.691753,-73.966576,"(40.691753, -73.966576)",WASHINGTON AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4466252,Sedan,Bike,,, +10/10/2021,20:31,MANHATTAN,10035,40.803696,-73.93792,"(40.803696, -73.93792)",EAST 124 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466092,,,,, +10/10/2021,10:40,,,40.74121,-73.84277,"(40.74121, -73.84277)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465747,Sedan,Sedan,,, +10/10/2021,4:26,QUEENS,11369,40.76401,-73.881226,"(40.76401, -73.881226)",ASTORIA BOULEVARD,88 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,8:36,QUEENS,11101,40.750977,-73.934746,"(40.750977, -73.934746)",NORTHERN BOULEVARD,40 ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4542664,Sedan,Sedan,,, +07/01/2022,16:00,BRONX,10469,40.87459,-73.84921,"(40.87459, -73.84921)",,,3341 FISH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543335,Sedan,,,, +07/02/2022,19:26,BROOKLYN,11236,40.63701,-73.91495,"(40.63701, -73.91495)",EAST 80 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4542754,Sedan,Sedan,,, +10/10/2021,12:18,MANHATTAN,10002,40.714462,-73.98166,"(40.714462, -73.98166)",GRAND STREET,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465877,Station Wagon/Sport Utility Vehicle,Bike,,, +07/02/2022,6:00,BROOKLYN,11210,40.628574,-73.93564,"(40.628574, -73.93564)",,,1085 EAST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,10:00,BROOKLYN,11212,40.654434,-73.90898,"(40.654434, -73.90898)",,,1381 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4543397,Station Wagon/Sport Utility Vehicle,,,, +06/11/2022,4:40,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4543271,Sedan,Sedan,,, +10/10/2021,20:35,BRONX,10455,40.81228,-73.90361,"(40.81228, -73.90361)",,,542 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4465918,Sedan,,,, +07/02/2022,17:22,BROOKLYN,11222,40.724327,-73.95515,"(40.724327, -73.95515)",WYTHE AVENUE,BANKER STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543032,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2022,11:41,QUEENS,11691,40.602455,-73.76079,"(40.602455, -73.76079)",,,23-83 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543195,Sedan,,,, +10/10/2021,16:33,BROOKLYN,11218,40.63867,-73.97182,"(40.63867, -73.97182)",EAST 7 STREET,CORTELYOU ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466148,Bike,,,, +07/02/2022,12:50,,,40.802204,-73.967804,"(40.802204, -73.967804)",WEST 107 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543276,Sedan,E-Bike,,, +10/10/2021,14:05,,,40.871876,-73.84163,"(40.871876, -73.84163)",HAMMERSLEY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4465809,Sedan,Sedan,,, +10/10/2021,15:30,QUEENS,11435,40.68661,-73.80616,"(40.68661, -73.80616)",LAKEWOOD AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4466215,Sedan,Sedan,,, +07/02/2022,16:00,BROOKLYN,11226,40.637207,-73.95657,"(40.637207, -73.95657)",FOSTER AVENUE,EAST 22 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542981,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,4:00,,,40.682163,-73.889015,"(40.682163, -73.889015)",JEROME STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466127,Sedan,,,, +10/10/2021,13:35,BROOKLYN,11221,40.690563,-73.94536,"(40.690563, -73.94536)",LAFAYETTE AVENUE,TOMPKINS AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4465774,Taxi,Station Wagon/Sport Utility Vehicle,Van,, +10/10/2021,17:18,BROOKLYN,11229,40.602688,-73.933556,"(40.602688, -73.933556)",BURNETT STREET,AVENUE U,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465864,Station Wagon/Sport Utility Vehicle,Bus,,, +07/02/2022,13:00,,,40.694214,-73.95932,"(40.694214, -73.95932)",MYRTLE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542835,Station Wagon/Sport Utility Vehicle,Bus,,, +07/01/2022,5:08,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543326,Sedan,E-Bike,,, +10/10/2021,12:30,QUEENS,11101,40.753227,-73.94672,"(40.753227, -73.94672)",11 STREET,QUEENS PLAZA SOUTH,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4465736,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,20:35,BRONX,10453,40.84843,-73.91299,"(40.84843, -73.91299)",DAVIDSON AVENUE,WEST 176 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543348,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,13:20,BROOKLYN,11206,40.708942,-73.941765,"(40.708942, -73.941765)",HUMBOLDT STREET,SCHOLES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543213,Sedan,Sedan,,, +06/30/2022,22:01,MANHATTAN,10027,40.81053,-73.96206,"(40.81053, -73.96206)",WEST 120 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543261,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,11:30,BRONX,10451,40.827824,-73.91934,"(40.827824, -73.91934)",SHERMAN AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465997,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,11:36,MANHATTAN,10037,40.808853,-73.936264,"(40.808853, -73.936264)",EAST 131 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4543063,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,19:46,,,40.84097,-73.92867,"(40.84097, -73.92867)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543166,Sedan,Sedan,,, +10/10/2021,5:02,BROOKLYN,11226,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,DITMAS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4465639,Sedan,Sedan,,, +06/30/2022,17:20,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4543408,Taxi,,,, +10/10/2021,15:07,,,40.852383,-73.90365,"(40.852383, -73.90365)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466081,Sedan,,,, +10/10/2021,15:01,,,40.747295,-73.97405,"(40.747295, -73.97405)",2 AVENUE,,,1,0,0,0,1,0,0,0,Pavement Slippery,,,,,4465913,Bike,,,, +07/02/2022,18:30,QUEENS,11377,40.746906,-73.90161,"(40.746906, -73.90161)",39 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543175,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,19:46,QUEENS,11412,40.7027,-73.75591,"(40.7027, -73.75591)",112 AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4465946,Sedan,,,, +07/02/2022,12:02,MANHATTAN,10024,40.7874,-73.97522,"(40.7874, -73.97522)",,,531 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4543308,Sedan,Sedan,,, +07/02/2022,22:08,QUEENS,11368,40.753895,-73.862114,"(40.753895, -73.862114)",37 AVENUE,106 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4543297,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,18:40,QUEENS,11368,40.749718,-73.86419,"(40.749718, -73.86419)",ROOSEVELT AVENUE,102 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466073,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/10/2021,11:35,BROOKLYN,11234,40.618603,-73.93247,"(40.618603, -73.93247)",FLATBUSH AVENUE,AVENUE N,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4465860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,2:03,BRONX,10460,40.834843,-73.89588,"(40.834843, -73.89588)",,,1450 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4465706,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/10/2021,14:08,BROOKLYN,11230,40.617588,-73.96382,"(40.617588, -73.96382)",CONEY ISLAND AVENUE,AVENUE M,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466193,Sedan,E-Bike,,, +10/10/2021,21:12,BROOKLYN,11220,40.64505,-74.01173,"(40.64505, -74.01173)",,,465 51 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465894,Station Wagon/Sport Utility Vehicle,Bike,,, +10/10/2021,19:27,MANHATTAN,10001,40.749054,-73.99576,"(40.749054, -73.99576)",WEST 29 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4465882,Sedan,Bike,,, +07/02/2022,10:00,BROOKLYN,11212,40.654457,-73.90878,"(40.654457, -73.90878)",LINDEN BOULEVARD,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543390,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,17:00,,,40.602905,-74.00003,"(40.602905, -74.00003)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465930,Sedan,,,, +10/10/2021,18:11,BROOKLYN,11235,40.58371,-73.94739,"(40.58371, -73.94739)",EMMONS AVENUE,EAST 21 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4466024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,7:00,BROOKLYN,11208,40.67213,-73.876495,"(40.67213, -73.876495)",MILFORD STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466054,Sedan,Sedan,,, +10/10/2021,6:43,BRONX,10459,40.826218,-73.88882,"(40.826218, -73.88882)",,,1051 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4465920,Sedan,Sedan,Sedan,Sedan,Sedan +10/10/2021,2:16,BROOKLYN,11217,40.68127,-73.982666,"(40.68127, -73.982666)",,,560 BALTIC STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4465960,Sedan,Sedan,,, +12/11/2021,23:00,BROOKLYN,11235,40.591442,-73.96067,"(40.591442, -73.96067)",,,2671 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485765,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,15:00,MANHATTAN,10013,40.7215899,-74.0031956,"(40.7215899, -74.0031956)",,,22 WOOSTER STREET,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4466379,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +10/10/2021,17:30,,,40.5907529,-74.0883648,"(40.5907529, -74.0883648)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466401,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,16:47,BROOKLYN,11224,40.5792123,-73.9762585,"(40.5792123, -73.9762585)",SHEEPSHEAD BAY ROAD,WEST 8 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4466420,,,,, +10/10/2021,21:00,BRONX,10456,40.8315891,-73.9003883,"(40.8315891, -73.9003883)",,,1301 CLINTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466427,Sedan,,,, +10/07/2021,18:03,QUEENS,11691,40.5962568,-73.766834,"(40.5962568, -73.766834)",ROCKAWAY FREEWAY,SEAGIRT BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,15:41,BROOKLYN,11239,40.646065,-73.87979,"(40.646065, -73.87979)",,,1460 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,,4486089,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/11/2021,18:45,BROOKLYN,11201,40.69768,-73.98703,"(40.69768, -73.98703)",JAY STREET,CONCORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485447,Sedan,Bus,,, +12/11/2021,21:07,,,40.790154,-73.93675,"(40.790154, -73.93675)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485831,Sedan,,,, +12/09/2021,8:19,BRONX,10472,40.836407,-73.87678,"(40.836407, -73.87678)",,,1440 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4486110,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,20:34,MANHATTAN,10037,40.81094,-73.94318,"(40.81094, -73.94318)",WEST 130 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4485936,Sedan,,,, +12/02/2021,17:10,BROOKLYN,11213,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486137,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/11/2021,0:25,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485387,Sedan,Sedan,,, +12/11/2021,18:48,BROOKLYN,11229,40.609333,-73.948425,"(40.609333, -73.948425)",BEDFORD AVENUE,QUENTIN ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485769,Sedan,,,, +06/09/2022,14:00,,,40.7406,-73.879326,"(40.7406, -73.879326)",DONGAN AVENUE,BROADWAY,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543327,E-Bike,Sedan,,, +07/02/2022,11:03,BROOKLYN,11235,40.588066,-73.95342,"(40.588066, -73.95342)",AVENUE Z,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542920,Sedan,Sedan,,, +07/02/2022,19:03,BROOKLYN,11211,40.716778,-73.93635,"(40.716778, -73.93635)",MASPETH AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,15:15,BROOKLYN,11220,40.631813,-74.00983,"(40.631813, -74.00983)",,,6402 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2022,2:35,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4562045,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,14:39,,,40.70942,-73.99319,"(40.70942, -73.99319)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4543221,Sedan,Sedan,Sedan,, +07/02/2022,6:27,BROOKLYN,11232,40.65799,-73.996925,"(40.65799, -73.996925)",27 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,18:25,,,40.79286,-73.96754,"(40.79286, -73.96754)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543272,Taxi,Sedan,,, +07/02/2022,12:25,MANHATTAN,10022,40.764034,-73.97243,"(40.764034, -73.97243)",,,9 EAST 59 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543088,Motorcycle,,,, +07/02/2022,12:28,BROOKLYN,11204,40.634953,-73.98144,"(40.634953, -73.98144)",42 STREET,16 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543148,Sedan,,,, +06/30/2022,9:05,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543257,Motorcycle,Sedan,,, +07/01/2022,21:00,BRONX,10457,40.845028,-73.89001,"(40.845028, -73.89001)",,,1959 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543200,Sedan,,,, +07/02/2022,16:30,QUEENS,11361,40.763844,-73.769455,"(40.763844, -73.769455)",41 AVENUE,214 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542764,Sedan,Sedan,,, +07/02/2022,22:20,QUEENS,11413,40.662434,-73.74913,"(40.662434, -73.74913)",,,144-33 230 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4542818,Sedan,Sedan,,, +06/14/2022,14:31,BRONX,10460,40.846313,-73.88516,"(40.846313, -73.88516)",,,810 EAST 180 STREET,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Driver Inexperience,,,,4543442,Bus,Open Body,,, +07/02/2022,3:55,BROOKLYN,11234,40.624336,-73.91747,"(40.624336, -73.91747)",,,6624 AVENUE L,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542698,Sedan,Sedan,Sedan,, +07/01/2022,23:40,MANHATTAN,10002,40.72073,-73.988914,"(40.72073, -73.988914)",,,153 ORCHARD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543416,Sedan,Van,,, +06/25/2022,7:10,QUEENS,11691,40.59952,-73.75622,"(40.59952, -73.75622)",,,470 BEACH 22 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,6:00,QUEENS,11385,40.704678,-73.90534,"(40.704678, -73.90534)",,,716 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542996,Sedan,,,, +07/02/2022,18:27,,,40.701355,-73.88794,"(40.701355, -73.88794)",66 STREET,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543374,Bike,,,, +07/02/2022,17:04,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542770,Sedan,,,, +07/02/2022,8:00,,,40.85667,-73.86569,"(40.85667, -73.86569)",HOLLAND AVENUE,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542847,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,10:40,BROOKLYN,11210,40.638966,-73.94251,"(40.638966, -73.94251)",BROOKLYN AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543262,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,9:40,MANHATTAN,10016,40.747772,-73.985054,"(40.747772, -73.985054)",EAST 33 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543236,Taxi,,,, +06/25/2022,10:30,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",GRAND CONCOURSE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543242,Sedan,Sedan,,, +07/02/2022,4:54,,,,,,STATEN ISLAND EXPRESSWAY,WESTERN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4542690,Sedan,,,, +07/02/2022,15:00,QUEENS,11435,40.69691,-73.81124,"(40.69691, -73.81124)",138 PLACE,95 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Backing Unsafely,,,,4543153,Sedan,Box Truck,,, +07/02/2022,12:00,QUEENS,11413,40.66549,-73.755165,"(40.66549, -73.755165)",SOUTH CONDUIT AVENUE,144 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4542743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,13:40,BROOKLYN,11249,40.714287,-73.96515,"(40.714287, -73.96515)",WYTHE AVENUE,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543212,Sedan,Bike,,, +01/01/2022,0:20,BRONX,10457,40.837643,-73.90334,"(40.837643, -73.90334)",WASHINGTON AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491708,Sedan,Sedan,,, +12/27/2021,18:30,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492041,Sedan,Sedan,,, +01/04/2021,8:08,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492011,Station Wagon/Sport Utility Vehicle,TRAILER,,, +01/02/2022,12:50,QUEENS,11373,40.735065,-73.88184,"(40.735065, -73.88184)",GRAND AVENUE,VANKLEECK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492016,Sedan,Bike,,, +12/22/2021,23:40,BROOKLYN,11233,40.671608,-73.91695,"(40.671608, -73.91695)",SARATOGA AVENUE,PARK PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492005,Sedan,Box Truck,,, +12/28/2021,7:00,,,40.70274,-73.79842,"(40.70274, -73.79842)",160 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492031,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,12:51,MANHATTAN,10012,40.72409,-73.99743,"(40.72409, -73.99743)",,,75 PRINCE STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4492040,Bike,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,15:11,BROOKLYN,11207,40.679874,-73.89122,"(40.679874, -73.89122)",HENDRIX STREET,ARLINGTON AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4504589,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/14/2022,13:00,BRONX,10470,40.898876,-73.85539,"(40.898876, -73.85539)",EAST 238 STREET,RICHARDSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504683,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,3:56,MANHATTAN,10003,,,,,,72-74 East 3 street,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,Unspecified,,4504701,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/20/2022,15:10,,,,,,HAMILTON AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504250,Sedan,Sedan,,, +02/20/2022,5:30,QUEENS,11373,40.744965,-73.87833,"(40.744965, -73.87833)",HAMPTON STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4504166,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/20/2022,0:30,QUEENS,11421,40.68947,-73.86515,"(40.68947, -73.86515)",76 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504239,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,5:00,QUEENS,11373,40.746033,-73.88015,"(40.746033, -73.88015)",,,85-45 BRITTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504175,Sedan,,,, +02/19/2022,19:40,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,17:54,QUEENS,11385,40.69539,-73.898895,"(40.69539, -73.898895)",CYPRESS AVENUE,SAINT FELIX AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504271,Sedan,Sedan,,, +02/20/2022,1:00,,,40.63932,-74.02356,"(40.63932, -74.02356)",3 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4504116,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,20:50,MANHATTAN,10012,40.724693,-73.99419,"(40.724693, -73.99419)",EAST HOUSTON STREET,MOTT STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4504700,Station Wagon/Sport Utility Vehicle,Bike,,, +02/20/2022,18:21,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504382,Sedan,Sedan,,, +02/20/2022,12:48,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",GRAND STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4504453,Sedan,,,, +02/19/2022,22:15,MANHATTAN,10003,0,0,"(0.0, 0.0)",,,75 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504717,Sedan,Box Truck,,, +02/20/2022,8:30,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4504600,Sedan,Sedan,,, +07/02/2022,3:21,,,40.618946,-73.99904,"(40.618946, -73.99904)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542680,Sedan,,,, +07/02/2022,8:13,BRONX,10452,40.84275,-73.92283,"(40.84275, -73.92283)",PLIMPTON AVENUE,GRANT HIGHWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542870,Taxi,,,, +06/11/2021,14:40,MANHATTAN,10029,40.79777,-73.94435,"(40.79777, -73.94435)",,,1591 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428153,Sedan,,,, +06/30/2022,23:15,,,40.75734,-73.98602,"(40.75734, -73.98602)",WEST 44 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543234,Sedan,,,, +07/01/2022,9:20,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",EAST TREMONT AVENUE,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543198,Sedan,,,, +07/02/2022,14:50,QUEENS,11357,40.774414,-73.79786,"(40.774414, -73.79786)",FRANCIS LEWIS BOULEVARD,25 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542758,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,0:30,,,40.69919,-73.91469,"(40.69919, -73.91469)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4491657,Sedan,,,, +01/01/2022,6:00,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4491920,Sedan,,,, +01/02/2022,8:44,BRONX,10460,40.842224,-73.88776,"(40.842224, -73.88776)",,,1902 MARMION AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4491839,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,4:15,,,40.74321,-73.89608,"(40.74321, -73.89608)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491367,Sedan,,,, +01/02/2022,22:45,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4491741,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/31/2021,18:55,BROOKLYN,11236,40.642563,-73.90633,"(40.642563, -73.90633)",EAST 92 STREET,GLENWOOD ROAD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491877,Bike,Sedan,,, +07/02/2022,22:07,,,40.846687,-73.905594,"(40.846687, -73.905594)",TOPPING AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543347,Moped,,,, +12/25/2021,22:40,BRONX,10472,40.832695,-73.86367,"(40.832695, -73.86367)",WESTCHESTER AVENUE,LELAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491892,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,3:00,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491464,Ambulance,,,, +01/02/2022,8:40,BRONX,10460,40.842117,-73.88786,"(40.842117, -73.88786)",MARMION AVENUE,FAIRMOUNT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491595,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,5:55,,,40.84984,-73.934975,"(40.84984, -73.934975)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491933,Sedan,,,, +01/01/2022,4:00,,,40.83417,-73.94837,"(40.83417, -73.94837)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491960,Sedan,,,, +06/10/2021,17:41,QUEENS,11378,40.727432,-73.90713,"(40.727432, -73.90713)",MAURICE AVENUE,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4425912,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,14:10,MANHATTAN,10018,40.754055,-73.99583,"(40.754055, -73.99583)",9 AVENUE,WEST 35 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426076,Station Wagon/Sport Utility Vehicle,Scooter,,, +06/12/2021,20:38,MANHATTAN,10002,40.721935,-73.98533,"(40.721935, -73.98533)",,,250 EAST HOUSTON STREET,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4426423,Sedan,Bike,,, +06/09/2021,23:50,MANHATTAN,10011,40.731705,-74.00096,"(40.731705, -74.00096)",WEST 4 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4426720,Sedan,Multi-Wheeled Vehicle,,, +06/13/2021,7:11,,,40.860176,-73.891754,"(40.860176, -73.891754)",EAST 189 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4426879,Station Wagon/Sport Utility Vehicle,,,, +06/08/2021,13:25,,,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,BORDEN AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4427497,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,9:00,QUEENS,11361,40.759495,-73.762405,"(40.759495, -73.762405)",SPRINGFIELD BOULEVARD,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427516,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,12:00,BRONX,10451,40.824482,-73.914764,"(40.824482, -73.914764)",,,375 EAST 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427630,Bus,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,10:00,,,40.58428,-73.92529,"(40.58428, -73.92529)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427557,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,17:38,,,40.759357,-73.9582,"(40.759357, -73.9582)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,22:15,,,40.836555,-73.87135,"(40.836555, -73.87135)",NOBLE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428020,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,12:40,,,40.580223,-73.95753,"(40.580223, -73.95753)",BRIGHTON 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427967,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,0:13,BROOKLYN,11203,40.654797,-73.93943,"(40.654797, -73.93943)",LENOX ROAD,ALBANY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4427175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,17:33,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4427542,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/15/2021,23:30,MANHATTAN,10010,40.74226,-73.99126,"(40.74226, -73.99126)",,,53 WEST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,10:35,QUEENS,11419,40.684383,-73.823265,"(40.684383, -73.823265)",LEFFERTS BOULEVARD,107 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427579,Sedan,,,, +06/15/2021,10:54,QUEENS,11427,40.723515,-73.75264,"(40.723515, -73.75264)",212 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427827,Sedan,,,, +06/15/2021,17:45,QUEENS,11379,40.713516,-73.88682,"(40.713516, -73.88682)",,,66-41 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428082,Sedan,,,, +06/15/2021,6:05,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427241,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,4:00,BRONX,10460,40.836193,-73.86521,"(40.836193, -73.86521)",,,1430 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427590,Sedan,,,, +06/15/2021,15:10,,,40.862064,-73.89484,"(40.862064, -73.89484)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428017,Sedan,Moped,,, +06/15/2021,17:25,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inexperience,,,,4428074,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,17:55,BROOKLYN,11207,40.67731,-73.89913,"(40.67731, -73.89913)",JAMAICA AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427789,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,3:30,QUEENS,11419,40.68866,-73.829185,"(40.68866, -73.829185)",,,101-34 115 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4427311,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/15/2021,12:35,BROOKLYN,11228,40.619465,-74.02288,"(40.619465, -74.02288)",86 STREET,DAHLGREN PLACE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4427484,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:35,BRONX,10469,40.859097,-73.83813,"(40.859097, -73.83813)",ASTOR AVENUE,TIEMANN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4427638,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,7:00,MANHATTAN,10038,40.710575,-74.00848,"(40.710575, -74.00848)",,,144 FULTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428300,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,0:17,MANHATTAN,10035,40.8076,-73.93719,"(40.8076, -73.93719)",PARK AVENUE,EAST 129 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4427662,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,15:50,BROOKLYN,11217,40.676327,-73.97822,"(40.676327, -73.97822)",,,70 BERKELEY PLACE,6,0,0,0,0,0,6,0,Following Too Closely,Unspecified,,,,4427711,Sedan,Sedan,,, +06/15/2021,14:30,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427733,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,12:10,,,40.7293,-73.862854,"(40.7293, -73.862854)",63 DRIVE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4427456,Sedan,,,, +06/15/2021,8:20,MANHATTAN,10028,40.780178,-73.95721,"(40.780178, -73.95721)",EAST 86 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427397,Sedan,Bus,,, +06/12/2021,14:25,MANHATTAN,10030,40.815826,-73.947044,"(40.815826, -73.947044)",WEST 134 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4428106,Sedan,Sedan,,, +06/15/2021,3:15,QUEENS,11432,40.710182,-73.78336,"(40.710182, -73.78336)",,,90-29 179 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428139,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/13/2021,19:20,BROOKLYN,11220,40.645103,-74.01033,"(40.645103, -74.01033)",50 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4428184,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,10:20,BROOKLYN,11223,40.600822,-73.97355,"(40.600822, -73.97355)",,,132 LAKE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427440,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,9:50,BROOKLYN,11223,40.598415,-73.967,"(40.598415, -73.967)",,,2138 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427398,Convertible,,,, +06/15/2021,21:10,QUEENS,11372,40.748333,-73.87735,"(40.748333, -73.87735)",,,89-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428041,Box Truck,Sedan,,, +06/15/2021,10:00,BROOKLYN,11236,40.655685,-73.899414,"(40.655685, -73.899414)",AVENUE D,DE WITT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427477,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,9:24,BROOKLYN,11207,40.67974,-73.89213,"(40.67974, -73.89213)",VAN SICLEN AVENUE,ARLINGTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4427364,Sedan,Sedan,Sedan,, +06/15/2021,13:00,BRONX,10452,40.836094,-73.92927,"(40.836094, -73.92927)",WEST 166 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427731,Sedan,,,, +06/15/2021,21:00,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427570,Sedan,,,, +06/15/2021,16:00,MANHATTAN,10128,40.78257,-73.94522,"(40.78257, -73.94522)",1 AVENUE,EAST 95 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4427596,Moped,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,7:37,BRONX,10460,40.85219,-73.88201,"(40.85219, -73.88201)",SOUTHERN BOULEVARD,EAST 185 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,Other Vehicular,,,4428320,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/15/2021,11:15,BRONX,10471,40.910633,-73.9047,"(40.910633, -73.9047)",,,562 WEST 261 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427771,Sedan,,,, +06/15/2021,21:11,BRONX,10455,40.813786,-73.911476,"(40.813786, -73.911476)",,,611 EAST 149 STREET,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4427668,Sedan,Bike,,, +06/15/2021,14:22,,,,,,CLOVE ROAD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4427739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,9:01,BROOKLYN,11236,40.632023,-73.88773,"(40.632023, -73.88773)",,,2092 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,1:20,BRONX,10467,40.880283,-73.88269,"(40.880283, -73.88269)",DEKALB AVENUE,EAST 208 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4427469,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,3:36,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4427548,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,23:32,BROOKLYN,11225,40.668106,-73.95143,"(40.668106, -73.95143)",,,1184 PRESIDENT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428099,Sedan,Sedan,,, +06/13/2021,18:15,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428194,Sedan,Sedan,,, +06/15/2021,13:43,MANHATTAN,10035,40.807034,-73.939705,"(40.807034, -73.939705)",MADISON AVENUE,EAST 127 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427654,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:20,BRONX,10451,40.81612,-73.926636,"(40.81612, -73.926636)",PARK AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4427922,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,8:05,,,40.812813,-73.94181,"(40.812813, -73.94181)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428107,Bus,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,10:25,QUEENS,11693,40.60793,-73.81605,"(40.60793, -73.81605)",NOEL ROAD,WEST ROAD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4427485,Tractor Truck Diesel,Sedan,,, +06/15/2021,20:28,QUEENS,11423,40.71112,-73.778915,"(40.71112, -73.778915)",182 PLACE,90 AVENUE,,1,0,0,0,1,0,0,0,Brakes Defective,Traffic Control Disregarded,Unspecified,,,4428173,Station Wagon/Sport Utility Vehicle,Sedan,Bike,, +06/15/2021,14:00,QUEENS,11004,40.745388,-73.71508,"(40.745388, -73.71508)",,,256-11 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427529,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,16:00,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428054,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,12:00,QUEENS,11418,40.694145,-73.82774,"(40.694145, -73.82774)",,,119-15 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,,4427411,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,23:00,,,40.870224,-73.88717,"(40.870224, -73.88717)",BRIGGS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4427823,Sedan,Sedan,,, +06/15/2021,18:30,QUEENS,11434,40.683483,-73.773506,"(40.683483, -73.773506)",120 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427685,Sedan,,,, +06/15/2021,23:00,,,,,,LAURELTON PARKWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427717,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,10:00,BROOKLYN,11232,40.665287,-73.99301,"(40.665287, -73.99301)",PROSPECT EXPRESSWAY,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428187,Sedan,Sedan,,, +06/15/2021,0:50,,,40.652554,-73.92078,"(40.652554, -73.92078)",RALPH AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427817,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,10:00,BRONX,10467,40.875076,-73.86612,"(40.875076, -73.86612)",,,711 MAGENTA STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4428035,Sedan,Sedan,Sedan,, +06/15/2021,18:00,,,,,,BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427563,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,19:45,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,DE KALB AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4427987,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,17:23,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4427591,Sedan,,,, +06/15/2021,22:00,QUEENS,11411,40.68406,-73.72873,"(40.68406, -73.72873)",121 AVENUE,237 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427538,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,18:40,,,,,,NEW ENGLAND THRUWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,16:30,,,40.58695,-74.16416,"(40.58695, -74.16416)",,,112 RICHMOND HILL ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428090,Sedan,,,, +06/15/2021,8:45,BROOKLYN,11207,40.689598,-73.91025,"(40.689598, -73.91025)",ELDERT STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427496,Sedan,,,, +06/15/2021,18:06,BROOKLYN,11210,40.62709,-73.94403,"(40.62709, -73.94403)",NEW YORK AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427854,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,12:32,BROOKLYN,11217,40.683464,-73.97569,"(40.683464, -73.97569)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4428120,Taxi,Sedan,,, +06/15/2021,15:00,BROOKLYN,11218,40.634544,-73.97273,"(40.634544, -73.97273)",,,570 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427617,Sedan,,,, +06/15/2021,20:54,QUEENS,11374,40.73191,-73.87124,"(40.73191, -73.87124)",WOODHAVEN BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427543,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,14:30,QUEENS,11691,40.600216,-73.743706,"(40.600216, -73.743706)",,,802 HICKSVILLE ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427618,Sedan,Bus,,, +06/15/2021,17:15,,,40.585136,-73.95918,"(40.585136, -73.95918)",SHORE PARKWAY,EAST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427580,Sedan,Sedan,,, +06/15/2021,11:16,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4428004,Sedan,Sedan,Sedan,Sedan, +06/15/2021,5:00,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427190,Pick-up Truck,,,, +06/15/2021,16:50,BROOKLYN,11212,40.670532,-73.91488,"(40.670532, -73.91488)",EAST NEW YORK AVENUE,AMBOY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428064,Sedan,Pick-up Truck,,, +06/14/2021,14:20,,,40.75355,-73.98505,"(40.75355, -73.98505)",WEST 40 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428167,Sedan,,,, +06/15/2021,9:30,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",BROADWAY,69 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427523,Sedan,,,, +06/15/2021,14:00,,,40.668785,-73.87758,"(40.668785, -73.87758)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427799,Station Wagon/Sport Utility Vehicle,,,, +06/02/2021,12:00,MANHATTAN,10026,40.798492,-73.94923,"(40.798492, -73.94923)",,,20 WEST 112 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428150,Sedan,Sedan,,, +06/11/2021,23:10,BRONX,10466,40.883556,-73.84974,"(40.883556, -73.84974)",LACONIA AVENUE,EAST 224 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428112,Sedan,Sedan,,, +06/15/2021,7:50,MANHATTAN,10022,40.76142,-73.97243,"(40.76142, -73.97243)",,,50 EAST 56 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427951,E-Scooter,Sedan,,, +06/15/2021,3:04,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427246,Ambulance,,,, +06/14/2021,19:30,,,40.69642,-73.95978,"(40.69642, -73.95978)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428018,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,10:35,,,40.692547,-73.990974,"(40.692547, -73.990974)",COURT STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4427490,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,14:25,QUEENS,11355,40.747204,-73.816925,"(40.747204, -73.816925)",OAK AVENUE,COLDEN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427582,Sedan,Sedan,,, +06/13/2021,1:01,,,40.556454,-74.20777,"(40.556454, -74.20777)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428075,Sedan,Tractor Truck Diesel,,, +01/02/2022,11:15,,,40.676003,-73.865395,"(40.676003, -73.865395)",GRANT AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491561,Sedan,,,, +06/15/2021,16:07,BROOKLYN,11208,40.682125,-73.87752,"(40.682125, -73.87752)",,,3180 FULTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4427788,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/15/2021,18:43,BRONX,10474,40.812214,-73.885895,"(40.812214, -73.885895)",RANDALL AVENUE,FAILE STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4427841,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/15/2021,16:20,,,40.66923,-73.997154,"(40.66923, -73.997154)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427558,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,17:15,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,15:40,,,40.70722,-73.78957,"(40.70722, -73.78957)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428140,Station Wagon/Sport Utility Vehicle,Bike,,, +01/02/2022,16:00,QUEENS,11421,40.695827,-73.855385,"(40.695827, -73.855385)",85 ROAD,90 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491510,Sedan,,,, +01/02/2022,15:05,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4491548,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,11:30,BRONX,10469,40.863033,-73.85781,"(40.863033, -73.85781)",MACE AVENUE,HONE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,11:49,BROOKLYN,11233,40.67027,-73.91807,"(40.67027, -73.91807)",,,1503 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427441,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,0:33,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427674,Station Wagon/Sport Utility Vehicle,,,, +12/12/2020,16:14,MANHATTAN,10034,40.864857,-73.92572,"(40.864857, -73.92572)",,,19 VERMILYEA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428130,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,16:50,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4427517,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/15/2021,12:00,STATEN ISLAND,10308,40.563774,-74.15586,"(40.563774, -74.15586)",ARTHUR KILL ROAD,GIFFORDS LANE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4427744,Sedan,,,, +06/15/2021,12:50,,,40.730137,-73.92693,"(40.730137, -73.92693)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428081,Convertible,Sedan,,, +06/15/2021,7:50,,,40.58062,-73.95472,"(40.58062, -73.95472)",CORBIN PLACE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427390,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,0:00,,,40.674,-74.000275,"(40.674, -74.000275)",HAMILTON AVENUE,CENTRE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4427623,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,19:00,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427687,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,9:28,QUEENS,11412,40.69279,-73.76522,"(40.69279, -73.76522)",DUNKIRK DRIVE,NEWBURG STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4427425,Sedan,Sedan,,, +06/15/2021,16:00,,,40.659718,-73.94534,"(40.659718, -73.94534)",RUTLAND ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427546,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,16:00,BROOKLYN,11204,40.6266,-73.98271,"(40.6266, -73.98271)",52 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427930,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,3:45,QUEENS,11372,40.753254,-73.88021,"(40.753254, -73.88021)",,,34-49 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/15/2021,17:55,MANHATTAN,10013,40.71654,-73.996994,"(40.71654, -73.996994)",CANAL STREET,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427779,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,7:30,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",80 STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427505,Sedan,,,, +06/15/2021,21:50,,,40.606247,-73.97645,"(40.606247, -73.97645)",WEST 3 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4427553,Sedan,E-Bike,,, +06/09/2021,15:38,BROOKLYN,11203,40.65502,-73.94712,"(40.65502, -73.94712)",,,770 NEW YORK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4428210,Sedan,,,, +06/15/2021,17:05,BROOKLYN,11215,40.65925,-73.988434,"(40.65925, -73.988434)",20 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4428192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/11/2021,22:15,,,40.818516,-73.93765,"(40.818516, -73.93765)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4428102,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,21:30,BROOKLYN,11249,40.710045,-73.96853,"(40.710045, -73.96853)",SOUTH 8 STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427889,Motorcycle,Bus,,, +06/11/2021,1:05,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428176,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:34,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4427667,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,8:27,QUEENS,11418,40.69433,-73.82697,"(40.69433, -73.82697)",ATLANTIC AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4427306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,13:45,,,40.580208,-74.09975,"(40.580208, -74.09975)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427738,Bus,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,1:48,,,,,,MARINE PARKWAY BRIDGE,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4427481,Sedan,,,, +06/15/2021,10:10,QUEENS,11378,40.719566,-73.91239,"(40.719566, -73.91239)",,,58-35 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427701,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,11:40,QUEENS,11105,40.77731,-73.91239,"(40.77731, -73.91239)",28 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4427637,Sedan,,,, +06/15/2021,22:00,BROOKLYN,11206,40.70831,-73.940735,"(40.70831, -73.940735)",,,208 MESEROLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427569,Sedan,,,, +06/14/2021,7:45,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4428209,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Taxi, +06/15/2021,13:30,QUEENS,11369,40.75999,-73.87,"(40.75999, -73.87)",,,31-51 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428040,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,15:40,,,40.594917,-74.15943,"(40.594917, -74.15943)",,,1315 ROCKLAND AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4427595,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,9:00,BROOKLYN,11201,40.701332,-73.98201,"(40.701332, -73.98201)",,,209 YORK STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427900,Bus,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,11:50,,,40.55168,-74.14479,"(40.55168, -74.14479)",AMBOY ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4428296,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,18:05,QUEENS,11411,40.690296,-73.744675,"(40.690296, -73.744675)",,,120-27 218 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4427528,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/15/2021,11:30,,,40.737885,-73.98091,"(40.737885, -73.98091)",EAST 23 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427758,Sedan,Bike,,, +06/15/2021,0:00,BROOKLYN,11203,40.654034,-73.930626,"(40.654034, -73.930626)",,,793 UTICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4427818,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,13:50,BROOKLYN,11228,40.612286,-74.01098,"(40.612286, -74.01098)",86 STREET,BAY 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427552,Convertible,,,, +06/15/2021,11:30,BROOKLYN,11215,40.671345,-73.98027,"(40.671345, -73.98027)",,,445 3 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427710,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,10:53,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4427362,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/15/2021,12:00,,,40.778484,-73.94526,"(40.778484, -73.94526)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427604,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,10:00,,,40.715233,-74.005424,"(40.715233, -74.005424)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4427453,Station Wagon/Sport Utility Vehicle,Van,Station Wagon/Sport Utility Vehicle,, +06/15/2021,13:28,BROOKLYN,11231,40.6732,-74.00798,"(40.6732, -74.00798)",,,55 BAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427620,Sedan,,,, +06/15/2021,10:20,QUEENS,11101,40.751434,-73.94725,"(40.751434, -73.94725)",12 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427521,,,,, +06/15/2021,9:00,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427603,Sedan,Bike,,, +06/12/2021,15:03,BROOKLYN,11213,40.663662,-73.93562,"(40.663662, -73.93562)",,,800 EMPIRE BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428318,Sedan,Sedan,,, +06/15/2021,13:25,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427986,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,16:10,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427562,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,9:30,,,40.758484,-73.82005,"(40.758484, -73.82005)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428005,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,3:00,QUEENS,11368,40.736317,-73.857605,"(40.736317, -73.857605)",,,99-49 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427204,Box Truck,Sedan,,, +06/14/2021,12:03,BROOKLYN,11219,40.64091,-73.994316,"(40.64091, -73.994316)",44 STREET,NEW UTRECHT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428065,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,17:30,BROOKLYN,11239,40.65317,-73.866875,"(40.65317, -73.866875)",ERSKINE STREET,SEAVIEW AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4427798,Sedan,Bike,,, +06/13/2021,2:20,,,40.74456,-73.983185,"(40.74456, -73.983185)",PARK AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428165,Sedan,Sedan,,, +05/15/2021,12:29,,,,,,HENRY HUDSON PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4428131,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +06/15/2021,7:00,MANHATTAN,10032,40.844685,-73.9408,"(40.844685, -73.9408)",WEST 172 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427689,Sedan,,,, +06/15/2021,7:10,,,40.823647,-73.943855,"(40.823647, -73.943855)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4427423,Sedan,E-Bike,,, +06/15/2021,5:45,BRONX,10474,40.811157,-73.884636,"(40.811157, -73.884636)",,,530 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427431,Dump,Bus,,, +06/15/2021,20:04,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4427644,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,23:44,BROOKLYN,11233,40.67398,-73.911156,"(40.67398, -73.911156)",ROCKAWAY AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428061,Ambulance,Sedan,,, +06/15/2021,8:35,BRONX,10468,40.86951,-73.89175,"(40.86951, -73.89175)",GRAND CONCOURSE,EAST 197 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4427466,Taxi,Sedan,,, +06/15/2021,16:23,BRONX,10458,40.854153,-73.88876,"(40.854153, -73.88876)",,,2338 ARTHUR AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4427681,Sedan,,,, +06/01/2021,21:12,BROOKLYN,11207,40.675888,-73.88649,"(40.675888, -73.88649)",WARWICK STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4428089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/15/2021,17:05,QUEENS,11385,40.70588,-73.86875,"(40.70588, -73.86875)",,,77-33 80 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427504,Sedan,Pick-up Truck,,, +06/15/2021,19:45,,,40.712914,-73.734436,"(40.712914, -73.734436)",220 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427718,Station Wagon/Sport Utility Vehicle,E-Scooter,Station Wagon/Sport Utility Vehicle,, +06/01/2021,20:40,BRONX,10463,40.882877,-73.902,"(40.882877, -73.902)",,,5740 BROADWAY,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4428129,Sedan,E-Bike,,, +06/15/2021,6:45,BRONX,10455,40.81608,-73.917694,"(40.81608, -73.917694)",EAST 149 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427374,Sedan,Sedan,,, +06/15/2021,16:53,QUEENS,11101,40.75605,-73.94766,"(40.75605, -73.94766)",,,41-13 VERNON BOULEVARD,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4427645,E-Bike,,,, +06/15/2021,14:55,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427713,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,10:00,STATEN ISLAND,10308,40.543346,-74.14371,"(40.543346, -74.14371)",HARTFORD STREET,CLEVELAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427743,PK,,,, +06/15/2021,8:57,,,40.58309,-73.98637,"(40.58309, -73.98637)",CROPSEY AVENUE,,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4427392,Sedan,,,, +06/15/2021,8:55,QUEENS,11375,40.714138,-73.834915,"(40.714138, -73.834915)",77 ROAD,AUSTIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427458,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,22:50,MANHATTAN,10027,40.80929,-73.945045,"(40.80929, -73.945045)",,,105 WEST 127 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428103,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/11/2021,20:29,MANHATTAN,10037,40.811775,-73.94126,"(40.811775, -73.94126)",,,76 WEST 132 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428110,Sedan,Sedan,,, +06/15/2021,17:12,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,12:00,QUEENS,11368,,,,,,99-25 HARDING EXPRESSWAY,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4427586,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,16:25,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4428091,Sedan,Sedan,Sedan,, +06/15/2021,12:45,,,40.676937,-73.89907,"(40.676937, -73.89907)",GEORGIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427797,Sedan,Carry All,,, +06/15/2021,14:00,QUEENS,11377,40.762352,-73.89325,"(40.762352, -73.89325)",75 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428045,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,1:32,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427407,Pick-up Truck,Sedan,,, +06/15/2021,12:11,MANHATTAN,10023,40.777092,-73.98211,"(40.777092, -73.98211)",BROADWAY,WEST 70 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427518,Bike,,,, +06/15/2021,7:53,QUEENS,11432,40.716354,-73.78419,"(40.716354, -73.78419)",MIDLAND PARKWAY,DALNY ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427359,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,8:52,QUEENS,11694,40.57859,-73.85347,"(40.57859, -73.85347)",CRONSTON AVENUE,BEACH 133 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427482,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,8:36,QUEENS,11385,40.701103,-73.88789,"(40.701103, -73.88789)",,,72-11 66 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428169,Sedan,Sedan,,, +06/15/2021,13:55,,,,,,27 STREET,ASTORIA PARK SOUTH,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427640,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,10:31,BROOKLYN,11230,40.620064,-73.956566,"(40.620064, -73.956566)",,,1240 EAST 19 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4427474,Sedan,,,, +05/19/2021,23:10,BROOKLYN,11207,40.65771,-73.89668,"(40.65771, -73.89668)",,,1781 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428242,Sedan,,,, +06/15/2021,18:30,BROOKLYN,11228,40.622234,-74.00901,"(40.622234, -74.00901)",74 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4427976,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/15/2021,10:38,,,40.82698,-73.830795,"(40.82698, -73.830795)",LAFAYETTE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427724,Sedan,,,, +06/15/2021,19:30,,,40.628567,-73.888794,"(40.628567, -73.888794)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427540,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,14:00,MANHATTAN,10000,40.76871,-73.969986,"(40.76871, -73.969986)",,,1 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:00,,,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,Unspecified,,,4427735,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/15/2021,19:30,QUEENS,11432,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,ROBINSON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427705,Sedan,Sedan,,, +06/15/2021,18:40,BROOKLYN,11249,40.716206,-73.9661,"(40.716206, -73.9661)",GRAND STREET,KENT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427576,Bike,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,15:21,BRONX,10474,40.821762,-73.88563,"(40.821762, -73.88563)",,,955 WHITTIER STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4427839,E-Scooter,forklift,,, +06/10/2021,1:05,,,40.68888,-73.960014,"(40.68888, -73.960014)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428079,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/15/2021,13:39,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",225 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427532,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,22:50,BROOKLYN,11204,40.62273,-73.98842,"(40.62273, -73.98842)",,,1747 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427938,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,19:20,QUEENS,11104,40.745438,-73.923,"(40.745438, -73.923)",43 AVENUE,41 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427527,Sedan,Sedan,,, +06/15/2021,0:45,BROOKLYN,11207,40.666374,-73.88321,"(40.666374, -73.88321)",LIVONIA AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427268,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/10/2021,23:30,,,40.747833,-73.83301,"(40.747833, -73.83301)",COLLEGE POINT BOULEVARD,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,,,,,,4428007,,,,, +06/08/2021,15:04,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4428177,Sedan,,,, +06/15/2021,11:16,BROOKLYN,11212,40.66297,-73.91684,"(40.66297, -73.91684)",LEGION STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427443,Taxi,Sedan,,, +06/15/2021,20:10,QUEENS,11693,40.58774,-73.809875,"(40.58774, -73.809875)",ROCKAWAY BEACH BOULEVARD,BEACH 84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427554,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:01,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4428144,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/07/2021,0:00,BRONX,10466,40.90199,-73.844765,"(40.90199, -73.844765)",,,942 EAST 241 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428076,Sedan,Sedan,,, +06/15/2021,15:40,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427801,Motorcycle,Sedan,,, +06/14/2021,9:30,,,40.665535,-73.93699,"(40.665535, -73.93699)",CROWN STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4428323,Sedan,E-Scooter,,, +06/15/2021,16:57,BRONX,10457,40.84541,-73.902245,"(40.84541, -73.902245)",,,1791 WEBSTER AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4427559,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,20:20,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4428190,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,16:00,BRONX,10460,40.834667,-73.88936,"(40.834667, -73.88936)",,,1564 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427634,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/15/2021,10:04,BROOKLYN,11236,40.64953,-73.91633,"(40.64953, -73.91633)",AVENUE B,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427819,Taxi,Sedan,,, +06/15/2021,20:59,BROOKLYN,11234,40.621265,-73.9288,"(40.621265, -73.9288)",,,4823 AVENUE M,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4427545,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,1:55,,,40.811264,-73.95782,"(40.811264, -73.95782)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4427510,Taxi,Bike,,, +06/14/2021,5:18,MANHATTAN,10128,40.78211,-73.955795,"(40.78211, -73.955795)",EAST 89 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427996,Sedan,,,, +06/14/2021,19:45,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4428027,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,17:17,BRONX,10454,40.807472,-73.91139,"(40.807472, -73.91139)",,,334 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427665,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,11:40,BROOKLYN,11207,40.662014,-73.886826,"(40.662014, -73.886826)",HEGEMAN AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427783,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,22:43,BROOKLYN,11206,40.707493,-73.94153,"(40.707493, -73.94153)",MONTROSE AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427568,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/15/2021,16:24,BROOKLYN,11238,40.686142,-73.97069,"(40.686142, -73.97069)",,,50 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428211,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,12:25,MANHATTAN,10019,40.764885,-73.98647,"(40.764885, -73.98647)",,,364 WEST 53 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427605,Van,Taxi,,, +06/14/2021,10:27,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428088,Sedan,Tractor Truck Diesel,,, +06/15/2021,10:55,BROOKLYN,11206,40.707653,-73.93984,"(40.707653, -73.93984)",BUSHWICK AVENUE,MONTROSE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427886,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,17:16,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428149,Sedan,Sedan,,, +06/15/2021,15:43,BROOKLYN,11231,40.67905,-74.01127,"(40.67905, -74.01127)",,,143 PIONEER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427621,Sedan,Sedan,,, +06/15/2021,16:50,,,40.702312,-73.93535,"(40.702312, -73.93535)",STANWIX STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428132,Sedan,,,, +06/15/2021,9:00,MANHATTAN,10065,40.75991,-73.95882,"(40.75991, -73.95882)",EAST 61 STREET,YORK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427911,Taxi,Sedan,,, +06/15/2021,1:02,,,,,,NORTH CONDUIT AVENUE,149 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4427207,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,12:11,BRONX,10467,40.868366,-73.86624,"(40.868366, -73.86624)",,,2910 CRUGER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428066,Sedan,,,, +06/15/2021,13:30,,,40.785374,-73.840294,"(40.785374, -73.840294)",128 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428000,Sedan,,,, +06/15/2021,13:54,MANHATTAN,10016,40.748245,-73.976295,"(40.748245, -73.976295)",3 AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427531,Flat Bed,Taxi,,, +06/15/2021,10:26,MANHATTAN,10009,40.723515,-73.97615,"(40.723515, -73.97615)",,,108 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427692,Skywatch,Bus,,, +06/15/2021,10:58,BROOKLYN,11219,40.62606,-73.997025,"(40.62606, -73.997025)",62 STREET,NEW UTRECHT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427436,Sedan,,,, +06/15/2021,9:30,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427682,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,7:00,QUEENS,11372,40.74945,-73.88711,"(40.74945, -73.88711)",37 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428037,Dump,,,, +06/15/2021,22:45,BROOKLYN,11207,40.67677,-73.88949,"(40.67677, -73.88949)",ATLANTIC AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4427802,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/15/2021,17:30,BROOKLYN,11211,40.713085,-73.936035,"(40.713085, -73.936035)",,,963 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427575,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,18:32,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428316,Pick-up Truck,,,, +06/15/2021,22:46,BRONX,10472,40.83256,-73.86943,"(40.83256, -73.86943)",EAST 172 STREET,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427593,Sedan,,,, +01/02/2022,18:53,,,40.68484,-73.83596,"(40.68484, -73.83596)",103 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491515,Pick-up Truck,,,, +06/15/2021,11:50,,,40.668266,-73.84214,"(40.668266, -73.84214)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4427760,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,14:49,QUEENS,11102,40.770527,-73.92731,"(40.770527, -73.92731)",21 STREET,29 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4427641,Motorcycle,Sedan,,, +06/15/2021,16:01,BRONX,10473,40.822124,-73.85736,"(40.822124, -73.85736)",,,1950 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427472,Sedan,Sedan,,, +06/15/2021,13:08,BROOKLYN,11237,40.699165,-73.914925,"(40.699165, -73.914925)",MYRTLE AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427501,Sedan,Box Truck,,, +06/15/2021,19:30,MANHATTAN,10030,40.821968,-73.94574,"(40.821968, -73.94574)",,,634 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428125,Sedan,Sedan,,, +06/15/2021,8:00,BRONX,10451,40.81505,-73.92427,"(40.81505, -73.92427)",EAST 143 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427375,Bus,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,15:45,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428094,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:30,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4427649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,21:20,QUEENS,11377,40.742275,-73.91105,"(40.742275, -73.91105)",54 STREET,QUEENS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4427551,Sedan,Sedan,,, +06/13/2021,19:34,MANHATTAN,10029,40.79069,-73.94861,"(40.79069, -73.94861)",,,118 EAST 103 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4428206,Bike,,,, +06/15/2021,16:38,BROOKLYN,11233,40.67141,-73.916954,"(40.67141, -73.916954)",,,419 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428060,Sedan,Sedan,,, +06/09/2021,7:40,,,40.802532,-73.95303,"(40.802532, -73.95303)",7 AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428159,Sedan,E-Scooter,,, +06/15/2021,11:32,BROOKLYN,11226,40.649548,-73.958496,"(40.649548, -73.958496)",,,911 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427475,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,12:40,BROOKLYN,11238,40.68266,-73.963005,"(40.68266, -73.963005)",,,950 FULTON STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427513,Station Wagon/Sport Utility Vehicle,Bike,,, +06/15/2021,13:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427784,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,23:45,BROOKLYN,11207,40.651688,-73.88877,"(40.651688, -73.88877)",FLATLANDS AVENUE,ALABAMA AVENUE,,2,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427714,E-Scooter,Sedan,,, +06/15/2021,22:00,,,,,,BELT PARKWAY RAMP,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4427728,Sedan,Sedan,,, +06/14/2021,14:00,BROOKLYN,11203,40.654327,-73.9221,"(40.654327, -73.9221)",KINGS HIGHWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4428221,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/15/2021,7:23,BRONX,10455,40.819897,-73.91327,"(40.819897, -73.91327)",,,3033 3 AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427373,Bus,E-Scooter,,, +06/15/2021,19:25,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427600,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/11/2021,13:30,,,40.666428,-73.93691,"(40.666428, -73.93691)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428285,Sedan,Bus,,, +06/15/2021,2:07,,,40.845837,-73.892006,"(40.845837, -73.892006)",EAST TREMONT AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427416,Sedan,Sedan,Sedan,, +06/08/2021,13:53,BROOKLYN,11217,40.677715,-73.97326,"(40.677715, -73.97326)",PARK PLACE,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428258,Van,,,, +06/15/2021,13:00,BRONX,10454,40.808163,-73.92653,"(40.808163, -73.92653)",EAST 135 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427663,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,8:15,BRONX,10460,40.84022,-73.873276,"(40.84022, -73.873276)",MORRIS PARK AVENUE,LEBANON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427333,Sedan,Sedan,,, +06/15/2021,17:10,QUEENS,11377,40.75184,-73.90358,"(40.75184, -73.90358)",58 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4427520,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/15/2021,13:00,BROOKLYN,11207,40.66685,-73.8907,"(40.66685, -73.8907)",DUMONT AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427712,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,12:43,QUEENS,11379,40.722065,-73.88554,"(40.722065, -73.88554)",,,74-02 ELIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428170,Sedan,,,, +06/15/2021,15:00,BRONX,10461,40.85228,-73.8436,"(40.85228, -73.8436)",,,1958 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427639,Sedan,,,, +06/15/2021,10:00,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427457,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/21/2022,2:00,MANHATTAN,10002,40.718422,-73.98776,"(40.718422, -73.98776)",,,124 DELANCEY STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4562061,Taxi,,,, +06/15/2021,15:00,BRONX,10458,40.85999,-73.89686,"(40.85999, -73.89686)",VALENTINE AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,8:10,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",9 AVENUE,37 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4427939,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/15/2021,8:11,QUEENS,11417,40.676617,-73.8579,"(40.676617, -73.8579)",PITKIN AVENUE,79 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4427555,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/15/2021,17:50,BROOKLYN,11236,40.634632,-73.91463,"(40.634632, -73.91463)",,,7806 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,22:10,QUEENS,11435,40.693295,-73.80802,"(40.693295, -73.80802)",LIBERTY AVENUE,INWOOD STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4427794,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/15/2021,8:30,QUEENS,11411,40.69699,-73.73992,"(40.69699, -73.73992)",,,219-21 116 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427831,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,17:00,,,40.83936,-73.87281,"(40.83936, -73.87281)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,13:00,MANHATTAN,10034,40.86902,-73.91392,"(40.86902, -73.91392)",,,423 WEST 215 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428180,GARBAGE TR,Sedan,,, +06/15/2021,10:58,BRONX,10465,40.8228,-73.82755,"(40.8228, -73.82755)",,,680 BALCOM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427448,Station Wagon/Sport Utility Vehicle,Van Camper,,, +06/15/2021,19:26,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428146,Sedan,Sedan,,, +06/15/2021,11:40,,,40.83005,-73.922424,"(40.83005, -73.922424)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,12:50,,,40.71808,-73.94781,"(40.71808, -73.94781)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427671,Box Truck,Pick-up Truck,,, +06/15/2021,0:00,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",WALTON AVENUE,EAST 165 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427734,Sedan,,,, +06/15/2021,9:02,,,40.63552,-74.0167,"(40.63552, -74.0167)",6 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427483,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,17:00,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,Unspecified,4427578,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/15/2021,17:15,,,40.848038,-73.93285,"(40.848038, -73.93285)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427704,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,8:40,BRONX,10456,40.834255,-73.90404,"(40.834255, -73.90404)",,,3673 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,11:00,QUEENS,11419,40.695396,-73.81656,"(40.695396, -73.81656)",132 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427393,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,0:30,BRONX,10456,40.831768,-73.90803,"(40.831768, -73.90803)",EAST 168 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427302,Bike,,,, +06/15/2021,8:55,QUEENS,11377,40.748722,-73.89881,"(40.748722, -73.89881)",37 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427524,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,19:24,MANHATTAN,10027,40.80986,-73.94453,"(40.80986, -73.94453)",,,100 WEST 128 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428108,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/15/2021,12:30,QUEENS,11368,40.76223,-73.84228,"(40.76223, -73.84228)",,,127-42 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427587,Sedan,,,, +06/15/2021,14:15,QUEENS,11694,40.581917,-73.82978,"(40.581917, -73.82978)",ROCKAWAY BEACH BOULEVARD,BEACH 108 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427486,DUMP TRUCK,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,15:50,,,40.58309,-73.98637,"(40.58309, -73.98637)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427968,Sedan,,,, +06/13/2021,13:33,BROOKLYN,11213,40.66418,-73.93433,"(40.66418, -73.93433)",,,395 SCHENECTADY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4428016,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/02/2022,22:30,QUEENS,11102,40.766884,-73.921394,"(40.766884, -73.921394)",30 AVENUE,31 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491588,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,16:50,,,40.700424,-73.9444,"(40.700424, -73.9444)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428077,Sedan,,,, +06/15/2021,5:50,,,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4427535,Station Wagon/Sport Utility Vehicle,PK,Sedan,, +06/15/2021,14:30,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427821,Sedan,Sedan,,, +06/15/2021,20:11,BRONX,10466,40.89549,-73.8506,"(40.89549, -73.8506)",,,1769 PITMAN AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4428104,Sedan,Sedan,,, +06/15/2021,10:10,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427652,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,18:25,MANHATTAN,10027,40.809063,-73.95068,"(40.809063, -73.95068)",,,270 WEST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428136,Sedan,,,, +06/12/2021,8:16,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428171,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,13:33,BRONX,10475,40.869335,-73.8255,"(40.869335, -73.8255)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427437,Sedan,,,, +06/15/2021,18:00,QUEENS,11416,40.68816,-73.848854,"(40.68816, -73.848854)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427697,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,17:15,BROOKLYN,11207,40.683933,-73.91228,"(40.683933, -73.91228)",BROADWAY,DECATUR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428059,Sedan,Sedan,,, +06/15/2021,16:44,,,40.85162,-73.82653,"(40.85162, -73.82653)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427642,Ambulance,Taxi,,, +06/15/2021,10:35,BROOKLYN,11249,0,0,"(0.0, 0.0)",,,28 BERRY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427414,Sedan,,,, +06/15/2021,12:36,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427476,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,19:00,STATEN ISLAND,10305,40.57805,-74.079155,"(40.57805, -74.079155)",CAPODANNO BOULEVARD,BUEL AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4427740,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,12:38,BRONX,10452,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,BOSCOBEL PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427730,Sedan,Sedan,,, +06/15/2021,9:20,,,40.78876,-73.852066,"(40.78876, -73.852066)",TAIPEI COURT,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427379,Sedan,Sedan,,, +06/09/2021,22:18,,,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4428078,Sedan,Sedan,,, +06/15/2021,21:00,BRONX,10466,40.886612,-73.84771,"(40.886612, -73.84771)",,,4059 LACONIA AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4428148,Sedan,Bike,,, +06/15/2021,7:33,BROOKLYN,11212,40.66356,-73.92696,"(40.66356, -73.92696)",,,60 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427810,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/09/2021,7:40,QUEENS,11429,40.714466,-73.73457,"(40.714466, -73.73457)",,,219-02 101 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428197,Sedan,,,, +06/15/2021,19:00,BROOKLYN,11201,40.691505,-73.986305,"(40.691505, -73.986305)",,,151 LAWRENCE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,15:56,,,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427992,Sedan,,,, +06/15/2021,18:50,QUEENS,11356,0,0,"(0.0, 0.0)",132 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4428001,Sedan,Sedan,,, +06/15/2021,4:28,,,,,,BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4427232,Sedan,,,, +06/05/2021,14:55,BROOKLYN,11221,40.687954,-73.93541,"(40.687954, -73.93541)",,,714 GATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428123,Sedan,,,, +06/15/2021,13:30,,,40.77855,-73.951256,"(40.77855, -73.951256)",EAST 87 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427597,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,17:38,BRONX,10469,40.86296,-73.85391,"(40.86296, -73.85391)",MACE AVENUE,HERING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427622,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,5:30,BROOKLYN,11203,40.66139,-73.94146,"(40.66139, -73.94146)",,,580 MAPLE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428313,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,13:31,MANHATTAN,10002,40.71405,-73.99683,"(40.71405, -73.99683)",,,9 DIVISION STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4428073,COM,,,, +09/06/2022,23:30,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4561823,Sedan,,,, +06/15/2021,11:35,QUEENS,11413,40.68103,-73.74286,"(40.68103, -73.74286)",131 AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427530,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,2:50,BROOKLYN,11221,40.68706,-73.93682,"(40.68706, -73.93682)",,,509 MONROE STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427764,Sedan,Sedan,,, +06/15/2021,15:00,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427549,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/16/2021,15:25,BROOKLYN,11201,40.6889,-73.98583,"(40.6889, -73.98583)",,,197 SCHERMERHORN STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4428095,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/15/2021,21:49,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4428228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,22:06,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,Unspecified,,,4427606,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +06/15/2021,14:45,,,40.703293,-73.7961,"(40.703293, -73.7961)",BREWER BOULEVARD,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4427471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,8:45,BROOKLYN,11208,40.67833,-73.869606,"(40.67833, -73.869606)",,,1074 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427365,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,21:50,BRONX,10457,40.850243,-73.89314,"(40.850243, -73.89314)",MONTEREY AVENUE,EAST 180 STREET,,2,0,1,0,0,0,1,0,Alcohol Involvement,,,,,4427684,Sedan,,,, +06/15/2021,10:20,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:30,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4427515,4 dr sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/15/2021,8:30,,,40.698772,-73.92233,"(40.698772, -73.92233)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427498,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/15/2021,16:20,QUEENS,11411,40.69268,-73.73231,"(40.69268, -73.73231)",229 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427716,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,13:00,,,40.57645,-73.96979,"(40.57645, -73.96979)",WEST 1 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428086,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,0:00,,,40.616814,-73.94396,"(40.616814, -73.94396)",EAST 31 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427544,Sedan,Box Truck,,, +06/15/2021,19:00,BROOKLYN,11249,40.71441,-73.966934,"(40.71441, -73.966934)",,,300 KENT AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,,,,,4427571,E-Bike,,,, +06/15/2021,23:10,QUEENS,11369,40.764706,-73.868805,"(40.764706, -73.868805)",,,25-14 HUMPHREYS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428036,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/15/2021,21:19,,,40.767776,-73.903595,"(40.767776, -73.903595)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427918,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,10:55,BROOKLYN,11215,40.66495,-73.993355,"(40.66495, -73.993355)",4 AVENUE,17 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428188,Sedan,Box Truck,,, +06/15/2021,20:00,,,40.65777,-73.93962,"(40.65777, -73.93962)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428273,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,20:36,BROOKLYN,11230,40.618206,-73.96103,"(40.618206, -73.96103)",CHESTNUT AVENUE,EAST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427592,Sedan,,,, +01/02/2022,12:58,BROOKLYN,11209,40.634735,-74.02941,"(40.634735, -74.02941)",,,7100 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491480,Sedan,,,, +06/05/2021,22:59,MANHATTAN,10027,40.80949,-73.95167,"(40.80949, -73.95167)",WEST 124 STREET,8 AVENUE,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4428157,Sedan,Sedan,,, +06/15/2021,21:02,BRONX,10458,40.869884,-73.88185,"(40.869884, -73.88185)",,,366 EAST MOSHOLU PARKWAY SOUTH,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4427822,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,17:30,QUEENS,11001,40.73436,-73.710144,"(40.73436, -73.710144)",EAST WILLISTON AVENUE,257 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427856,Sedan,Sedan,,, +06/15/2021,21:39,,,40.675198,-73.789894,"(40.675198, -73.789894)",125 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427942,Sedan,,,, +06/15/2021,8:23,,,40.64018,-74.02179,"(40.64018, -74.02179)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427556,Station Wagon/Sport Utility Vehicle,Bus,,, +12/31/2021,1:10,MANHATTAN,10021,40.77039,-73.954124,"(40.77039, -73.954124)",EAST 76 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4491866,Taxi,E-Bike,,, +01/02/2022,16:47,BROOKLYN,11234,40.599617,-73.911316,"(40.599617, -73.911316)",,,2875 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4491905,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/19/2021,15:45,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4491995,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,18:20,BROOKLYN,11206,40.708416,-73.94736,"(40.708416, -73.94736)",,,71 SCHOLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491504,Sedan,,,, +01/02/2022,16:46,QUEENS,11368,40.73745,-73.863045,"(40.73745, -73.863045)",,,97-28 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491569,Sedan,,,, +01/02/2022,17:56,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491775,Sedan,,,, +01/02/2022,21:15,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4491958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,17:19,QUEENS,11361,40.76268,-73.77052,"(40.76268, -73.77052)",BELL BOULEVARD,42 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,5:05,BRONX,10468,40.867878,-73.893005,"(40.867878, -73.893005)",GRAND CONCOURSE,EAST 196 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4491673,Sedan,Sedan,,, +01/02/2022,19:10,,,40.794907,-73.94856,"(40.794907, -73.94856)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4491520,Sedan,Sedan,,, +01/02/2022,11:20,BROOKLYN,11225,40.661617,-73.960754,"(40.661617, -73.960754)",,,1119 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491860,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,12:20,,,40.725174,-73.97274,"(40.725174, -73.97274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,23:00,MANHATTAN,10018,40.75469,-73.99536,"(40.75469, -73.99536)",WEST 36 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Driver Inexperience,,,,4491705,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/30/2021,16:45,,,40.78775,-73.947464,"(40.78775, -73.947464)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491948,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,21:00,BRONX,10462,40.852425,-73.86873,"(40.852425, -73.86873)",BRONX PARK EAST,BRADY AVENUE,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4491615,Sedan,Sedan,,, +12/29/2021,7:58,MANHATTAN,10035,40.80222,-73.941086,"(40.80222, -73.941086)",,,1729 PARK AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4491912,Sedan,Sedan,,, +01/02/2022,15:41,QUEENS,11411,40.696957,-73.73514,"(40.696957, -73.73514)",,,115-70 224 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491751,Sedan,,,, +01/01/2022,2:47,QUEENS,11356,40.789677,-73.85167,"(40.789677, -73.85167)",,,8-15 115 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491913,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,14:20,BROOKLYN,11215,40.669785,-73.9858,"(40.669785, -73.9858)",5 AVENUE,8 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491880,,,,, +01/02/2022,0:51,,,,,,Vandervoort street,cherry street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491368,Sedan,Sedan,,, +01/02/2022,14:30,,,40.827557,-73.914764,"(40.827557, -73.914764)",TELLER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491665,,,,, +07/01/2022,0:15,BRONX,10468,40.868015,-73.89997,"(40.868015, -73.89997)",WEST KINGSBRIDGE ROAD,AQUEDUCT AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543315,Sedan,,,, +01/02/2022,22:20,BRONX,10461,40.835827,-73.828804,"(40.835827, -73.828804)",EDISON AVENUE,BAISLEY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4491605,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/01/2022,6:19,MANHATTAN,10022,40.758373,-73.971,"(40.758373, -73.971)",EAST 53 STREET,LEXINGTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4491881,Sedan,Sedan,,, +01/02/2022,13:40,QUEENS,11412,40.68645,-73.761185,"(40.68645, -73.761185)",120 AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4491711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,17:00,QUEENS,11368,40.73758,-73.856834,"(40.73758, -73.856834)",,,59-21 CALLOWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491840,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,16:10,,,40.782547,-73.80285,"(40.782547, -73.80285)",160 STREET,,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4491519,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,15:53,QUEENS,11434,40.664326,-73.78007,"(40.664326, -73.78007)",145 ROAD,158 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491549,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,14:40,,,40.703857,-73.91851,"(40.703857, -73.91851)",STOCKHOLM STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491658,Sedan,Sedan,,, +01/02/2022,13:53,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491505,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,15:35,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4491919,Sedan,Sedan,,, +01/02/2022,10:00,,,,,,100 STREET,37 road,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491764,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,20:06,QUEENS,11434,40.677673,-73.76277,"(40.677673, -73.76277)",FARMERS BOULEVARD,DENIS STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4491638,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,21:00,QUEENS,11421,40.686928,-73.85314,"(40.686928, -73.85314)",89 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491812,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,11:05,,,40.82451,-73.95186,"(40.82451, -73.95186)",BROADWAY,,,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4491978,Bike,,,, +01/02/2022,1:10,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491433,Sedan,Sedan,,, +01/02/2022,17:30,QUEENS,11106,40.767193,-73.93759,"(40.767193, -73.93759)",,,32-50 VERNON BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4491591,Sedan,,,, +01/02/2022,11:50,,,40.75219,-73.99347,"(40.75219, -73.99347)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4491932,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,19:20,BRONX,10457,40.85584,-73.89584,"(40.85584, -73.89584)",,,2268 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491864,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,17:52,STATEN ISLAND,10304,40.631794,-74.07606,"(40.631794, -74.07606)",,,425 BAY STREET,4,0,4,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4491901,Sedan,Sedan,,, +01/02/2022,14:15,BROOKLYN,11230,40.616318,-73.95973,"(40.616318, -73.95973)",,,1376 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491672,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,1:22,BROOKLYN,11223,40.590984,-73.97569,"(40.590984, -73.97569)",,,2911 86 STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491810,Sedan,E-Scooter,,, +01/02/2022,9:21,BROOKLYN,11219,40.62916,-74.01144,"(40.62916, -74.01144)",FORT HAMILTON PARKWAY,68 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,23:05,BROOKLYN,11234,40.61146,-73.92437,"(40.61146, -73.92437)",FLATBUSH AVENUE,AVENUE T,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4491909,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,5:40,BROOKLYN,11207,40.656693,-73.89464,"(40.656693, -73.89464)",DE WITT AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491559,Sedan,Sedan,,, +01/02/2022,7:00,QUEENS,11368,40.755394,-73.86918,"(40.755394, -73.86918)",99 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491914,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,18:15,MANHATTAN,10035,40.80467,-73.93219,"(40.80467, -73.93219)",EAST 128 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491664,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,16:02,,,40.682194,-74.00239,"(40.682194, -74.00239)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4491908,Sedan,Sedan,Sedan,, +01/02/2022,18:25,,,40.663124,-73.9509,"(40.663124, -73.9509)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,0:45,QUEENS,11413,40.66239,-73.75936,"(40.66239, -73.75936)",,,145-77 220 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491374,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,13:35,BROOKLYN,11238,40.683037,-73.96478,"(40.683037, -73.96478)",FULTON STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491532,Sedan,Sedan,,, +01/02/2022,8:30,,,40.61069,-74.1184,"(40.61069, -74.1184)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4491539,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,13:30,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4491537,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/22/2021,9:30,,,40.748302,-73.97835,"(40.748302, -73.97835)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4491954,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,1:25,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4491566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,18:15,MANHATTAN,10017,40.757286,-73.97812,"(40.757286, -73.97812)",WEST 48 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491621,Sedan,,,, +01/02/2022,10:35,BRONX,10475,40.87945,-73.83315,"(40.87945, -73.83315)",,,2107 NEW ENGLAND THRUWAY,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4491489,Sedan,Van,,, +01/02/2022,19:00,MANHATTAN,10017,40.751854,-73.97367,"(40.751854, -73.97367)",,,694 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491955,Sedan,,,, +01/02/2022,0:30,BROOKLYN,11237,40.704662,-73.92891,"(40.704662, -73.92891)",,,1081 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491508,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,3:30,,,40.656593,-73.857635,"(40.656593, -73.857635)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491565,Sedan,,,, +01/02/2022,7:10,MANHATTAN,10011,40.745293,-73.9985,"(40.745293, -73.9985)",WEST 23 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491603,Sedan,,,, +12/31/2021,0:35,,,40.791405,-73.93569,"(40.791405, -73.93569)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491885,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/02/2022,15:50,,,40.768475,-73.809494,"(40.768475, -73.809494)",155 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491518,Sedan,,,, +01/02/2022,16:10,,,40.585342,-73.94157,"(40.585342, -73.94157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Following Too Closely,,4491662,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +01/02/2022,10:15,QUEENS,11426,40.7432,-73.71935,"(40.7432, -73.71935)",UNION TURNPIKE,251 STREET,,0,1,0,0,0,0,0,1,Illnes,,,,,4491477,Sedan,,,, +01/02/2022,15:36,BROOKLYN,11217,40.68442,-73.97839,"(40.68442, -73.97839)",ATLANTIC AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491592,Tanker,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,19:55,QUEENS,11368,40.749966,-73.861755,"(40.749966, -73.861755)",104 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,,,,,,4491938,,,,, +01/02/2022,10:59,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4491579,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,21:50,MANHATTAN,10001,40.750713,-73.99082,"(40.750713, -73.99082)",,,431 7 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,6:31,QUEENS,11379,40.71255,-73.897194,"(40.71255, -73.897194)",,,63-98 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4491873,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/02/2022,14:00,MANHATTAN,10014,40.73544,-74.00395,"(40.73544, -74.00395)",,,66 PERRY STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4491683,Station Wagon/Sport Utility Vehicle,Bike,,, +01/02/2022,19:23,,,40.83829,-73.930016,"(40.83829, -73.930016)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4491668,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/02/2022,4:25,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491411,Sedan,,,, +01/02/2022,16:43,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4491550,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +01/02/2022,10:23,,,40.700737,-73.99014,"(40.700737, -73.99014)",BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4491819,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/02/2022,11:16,QUEENS,11368,40.73758,-73.856834,"(40.73758, -73.856834)",,,59-21 CALLOWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491842,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,11:33,,,,,,MADISON AVENUE,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,6:55,QUEENS,11372,40.74744,-73.885796,"(40.74744, -73.885796)",80 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491761,Sedan,,,, +01/02/2022,22:40,QUEENS,11432,40.707508,-73.79694,"(40.707508, -73.79694)",,,164-17 89 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491645,Sedan,,,, +01/02/2022,1:35,,,40.710976,-73.97962,"(40.710976, -73.97962)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4491976,Sedan,,,, +06/16/2021,12:27,BRONX,10461,,,,FINK AVENUE,WESTCHESTER SQUARE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427777,Sedan,,,, +12/18/2021,23:50,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491863,Sedan,,,, +12/26/2021,13:00,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491910,Sedan,,,, +01/03/2021,21:32,BROOKLYN,11234,40.632847,-73.928375,"(40.632847, -73.928375)",UTICA AVENUE,AVENUE H,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4491915,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,4:30,QUEENS,11434,40.666286,-73.77029,"(40.666286, -73.77029)",,,144-66 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4491376,Sedan,Sedan,,, +01/02/2022,12:24,BRONX,10458,40.852875,-73.88854,"(40.852875, -73.88854)",,,621 EAST 183 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491679,Sedan,Sedan,,, +01/02/2022,13:50,,,40.57089,-74.14791,"(40.57089, -74.14791)",ARTHUR KILL ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491544,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,17:55,MANHATTAN,10030,40.819046,-73.944695,"(40.819046, -73.944695)",WEST 139 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4491868,Taxi,MOPED,,, +12/31/2021,15:04,STATEN ISLAND,10310,40.635017,-74.117386,"(40.635017, -74.117386)",,,260 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4491898,Sedan,,,, +01/01/2022,11:43,QUEENS,11385,40.706272,-73.900215,"(40.706272, -73.900215)",,,66-61 60 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491940,Sedan,,,, +01/02/2022,16:30,BROOKLYN,11235,40.58317,-73.953445,"(40.58317, -73.953445)",EMMONS AVENUE,EAST 15 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491578,,,,, +01/02/2022,17:18,BROOKLYN,11236,40.64503,-73.91998,"(40.64503, -73.91998)",RALPH AVENUE,CLARENDON ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491619,Sedan,,,, +01/02/2022,0:01,,,40.795322,-73.929825,"(40.795322, -73.929825)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pavement Defective,Following Too Closely,Following Too Closely,Following Too Closely,,4491502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/01/2022,18:17,BRONX,10472,40.82851,-73.88012,"(40.82851, -73.88012)",WHEELER AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491956,Sedan,,,, +01/02/2022,23:40,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491796,Sedan,,,, +01/02/2022,19:30,BROOKLYN,11209,40.62578,-74.02416,"(40.62578, -74.02416)",80 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491583,Sedan,,,, +01/02/2022,10:20,QUEENS,11433,40.69401,-73.77864,"(40.69401, -73.77864)",SAYRES AVENUE,173 STREET,,2,0,0,0,0,0,2,0,Failure to Keep Right,Unspecified,,,,4491648,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,10:35,BROOKLYN,11210,40.627632,-73.95383,"(40.627632, -73.95383)",,,926 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491484,Sedan,,,, +10/09/2021,21:11,BROOKLYN,11201,40.689064,-74.00076,"(40.689064, -74.00076)",COLUMBIA STREET,WARREN STREET,,1,0,1,0,0,0,0,0,,,,,,4491907,,,,, +01/02/2022,22:20,QUEENS,11373,40.74521,-73.86937,"(40.74521, -73.86937)",,,94-42 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491531,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,14:30,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Pavement Slippery,Other Vehicular,Other Vehicular,,,4491974,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/02/2022,5:10,BROOKLYN,11215,40.670265,-73.99763,"(40.670265, -73.99763)",HAMILTON AVENUE,14 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491467,Sedan,,,, +01/02/2022,14:30,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4491663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,15:03,BRONX,10454,40.80826,-73.918816,"(40.80826, -73.918816)",BROOK AVENUE,EAST 139 STREET,,2,0,2,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4491934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/02/2022,22:40,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4491562,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,23:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4491822,PK,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,19:00,,,40.828106,-73.88568,"(40.828106, -73.88568)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491740,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,21:30,BRONX,10469,40.866634,-73.86088,"(40.866634, -73.86088)",,,2750 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4504706,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,20:00,,,40.7608738,-73.7321454,"(40.7608738, -73.7321454)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466564,Sedan,Sedan,,, +01/02/2022,15:52,BROOKLYN,11225,40.663258,-73.96121,"(40.663258, -73.96121)",,,40 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491858,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,18:45,QUEENS,11427,40.73346,-73.735466,"(40.73346, -73.735466)",WINCHESTER BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491551,Sedan,,,, +12/29/2021,6:35,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492001,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,23:41,BROOKLYN,11215,40.670887,-73.98985,"(40.670887, -73.98985)",,,224 9 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4491593,E-Bike,,,, +12/26/2021,13:03,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4491875,Sedan,Sedan,Pick-up Truck,, +12/23/2021,21:00,,,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,18:00,BROOKLYN,11203,40.66167,-73.93727,"(40.66167, -73.93727)",TROY AVENUE,MAPLE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491509,Sedan,Sedan,,, +01/02/2022,2:06,QUEENS,11428,40.720303,-73.732346,"(40.720303, -73.732346)",JAMAICA AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4491414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/02/2022,16:30,,,,,,,,61 EAST DRIVE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4491667,Carriage,E-Scooter,,, +01/02/2022,18:10,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",JEROME AVENUE,EAST FORDHAM ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491888,,,,, +01/02/2022,20:57,QUEENS,11106,40.75582,-73.93259,"(40.75582, -73.93259)",37 AVENUE,29 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491601,Sedan,,,, +01/02/2022,2:10,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4491692,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,8:10,QUEENS,11435,40.694183,-73.80544,"(40.694183, -73.80544)",105 AVENUE,LIVERPOOL STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4491957,Sedan,E-Scooter,,, +01/02/2022,12:00,STATEN ISLAND,10308,40.547348,-74.14158,"(40.547348, -74.14158)",GREENCROFT LANE,GREENCROFT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4491547,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/01/2022,6:15,,,40.713634,-73.77973,"(40.713634, -73.77973)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4491947,Sedan,Bike,,, +01/02/2022,1:22,BRONX,10467,40.882217,-73.88046,"(40.882217, -73.88046)",EAST GUN HILL ROAD,DEKALB AVENUE,,0,1,0,1,0,0,0,0,Unspecified,,,,,4491529,AMBULANCE,,,, +01/02/2022,8:11,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4491584,Sedan,Sedan,,, +01/02/2022,17:00,,,40.751858,-73.82637,"(40.751858, -73.82637)",MAIN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491503,E-Bike,,,, +12/19/2021,16:46,MANHATTAN,10026,40.801235,-73.947845,"(40.801235, -73.947845)",,,36 WEST 116 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491861,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,4:43,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4491377,Sedan,,,, +01/01/2022,23:59,BROOKLYN,11234,40.619644,-73.92211,"(40.619644, -73.92211)",,,1529 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491906,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,14:43,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",2 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491916,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,4:50,STATEN ISLAND,10312,40.538334,-74.15956,"(40.538334, -74.15956)",RICHMOND AVENUE,KOCH BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,17:04,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491778,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,14:45,BROOKLYN,11231,,,,CLINTON STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4491911,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/02/2022,4:36,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4491575,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/02/2022,1:09,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491483,Sedan,,,, +10/11/2021,3:45,,,40.7453006,-73.9868455,"(40.7453006, -73.9868455)",5 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4466645,Sedan,Sedan,,, +01/02/2022,16:23,,,40.602245,-74.12064,"(40.602245, -74.12064)",,,982 MANOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4491650,Sedan,Sedan,Sedan,, +01/02/2022,8:26,BROOKLYN,11212,40.664196,-73.92403,"(40.664196, -73.92403)",,,1084 RUTLAND ROAD,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4491618,Sedan,Sedan,,, +01/02/2022,14:30,QUEENS,11372,40.755016,-73.88148,"(40.755016, -73.88148)",,,33-19 86 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4491760,Sedan,E-Bike,,, +12/31/2021,2:18,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491867,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/19/2021,20:35,MANHATTAN,10029,40.78832,-73.941025,"(40.78832, -73.941025)",EAST 104 STREET,1 AVENUE,,2,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4491896,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/02/2022,0:25,,,40.856743,-73.917625,"(40.856743, -73.917625)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Passing or Lane Usage Improper,,,,4491699,Sedan,,,, +01/02/2022,17:09,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491835,Station Wagon/Sport Utility Vehicle,Bike,,, +02/20/2022,3:23,MANHATTAN,10029,40.794586,-73.943924,"(40.794586, -73.943924)",,,158 EAST 110 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4504143,Sedan,Sedan,Sedan,Sedan, +02/20/2022,11:45,QUEENS,11355,40.748222,-73.81221,"(40.748222, -73.81221)",QUINCE AVENUE,BOWNE STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4504257,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,9:52,QUEENS,11420,40.666218,-73.8076,"(40.666218, -73.8076)",SOUTH CONDUIT AVENUE,132 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504351,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,6:38,BRONX,10467,40.881126,-73.863,"(40.881126, -73.863)",,,724 EAST 216 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4504926,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/20/2022,8:55,BROOKLYN,11207,40.675224,-73.89097,"(40.675224, -73.89097)",LIBERTY AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4504582,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,10:00,,,40.617683,-73.98466,"(40.617683, -73.98466)",20 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504773,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,19:00,BROOKLYN,11215,40.661907,-73.99284,"(40.661907, -73.99284)",20 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,,,,,4504287,Bike,,,, +02/20/2022,23:50,,,,,,166 STREET,NADAL PLACE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4504320,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,14:00,BRONX,10456,40.833004,-73.89803,"(40.833004, -73.89803)",,,1382 CROTONA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504867,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,14:45,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504182,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,13:00,BRONX,10460,40.844982,-73.88244,"(40.844982, -73.88244)",EAST 180 STREET,HONEYWELL AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4504742,Sedan,Taxi,,, +02/20/2022,16:20,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504649,Sedan,Sedan,,, +02/11/2022,13:00,BRONX,10458,,,,BEDFORD PARK BOULEVARD,MARION AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504692,,,,, +02/18/2022,8:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4504734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/08/2022,12:26,,,40.66434,-73.93155,"(40.66434, -73.93155)",UTICA AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4504823,Bus,Sedan,Sedan,, +02/20/2022,22:50,BRONX,10460,40.83817,-73.88643,"(40.83817, -73.88643)",,,1776 BOSTON ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4504377,Sedan,Pick-up Truck,,, +02/20/2022,14:45,BRONX,10456,40.835598,-73.9138,"(40.835598, -73.9138)",EAST 169 STREET,GRANT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,20:35,BROOKLYN,11222,40.723217,-73.94271,"(40.723217, -73.94271)",,,95 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504429,Sedan,,,, +02/20/2022,10:45,QUEENS,11420,40.679756,-73.816956,"(40.679756, -73.816956)",LINDEN BOULEVARD,123 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504333,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,18:30,MANHATTAN,10017,40.75457,-73.97169,"(40.75457, -73.97169)",EAST 48 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504549,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,19:40,MANHATTAN,10003,40.732697,-73.98366,"(40.732697, -73.98366)",EAST 15 STREET,PERLMAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543006,Sedan,Box Truck,,, +07/02/2022,14:50,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542945,Sedan,,,, +06/28/2022,15:00,MANHATTAN,10025,40.795383,-73.97351,"(40.795383, -73.97351)",,,303 WEST 96 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4543266,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,16:15,,,40.717155,-73.94924,"(40.717155, -73.94924)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4543039,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2022,20:19,BROOKLYN,11214,40.603874,-73.99544,"(40.603874, -73.99544)",21 AVENUE,85 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542755,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,8:45,QUEENS,11361,40.76191,-73.77506,"(40.76191, -73.77506)",KENNEDY STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542710,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,2:30,,,40.82256,-73.87101,"(40.82256, -73.87101)",STORY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543362,Sedan,,,, +06/27/2022,8:45,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,11:00,QUEENS,11691,40.603367,-73.7531,"(40.603367, -73.7531)",,,1057 BEACH 20 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543247,PK,Sedan,,, +07/02/2022,4:00,MANHATTAN,10009,40.724575,-73.987495,"(40.724575, -73.987495)",EAST 3 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2022,16:50,,,,,,,,90 WEST DRIVE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4543107,E-Scooter,Bike,,, +06/26/2022,18:00,QUEENS,11691,40.59742,-73.74556,"(40.59742, -73.74556)",,,11-19 PLAINVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543230,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,9:40,QUEENS,11691,40.597385,-73.75101,"(40.597385, -73.75101)",,,279 BEACH 17 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,12:20,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",MERRICK BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542704,Sedan,Box Truck,,, +07/02/2022,0:54,QUEENS,11369,40.758472,-73.86676,"(40.758472, -73.86676)",,,32-48 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4542667,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2022,11:42,BROOKLYN,11207,40.683228,-73.907135,"(40.683228, -73.907135)",BUSHWICK AVENUE,GRANITE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4542875,Sedan,Sedan,,, +07/01/2022,13:10,MANHATTAN,10002,40.7211,-73.98737,"(40.7211, -73.98737)",,,111 STANTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543436,Sedan,Bike,,, +07/02/2022,0:10,QUEENS,11414,40.663452,-73.8342,"(40.663452, -73.8342)",157 AVENUE,100 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543137,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,19:04,BROOKLYN,11233,40.672497,-73.91686,"(40.672497, -73.91686)",SARATOGA AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542798,Sedan,Sedan,,, +07/02/2022,21:33,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",RUTLAND ROAD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4543319,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/25/2022,9:45,MANHATTAN,10001,40.743916,-73.98788,"(40.743916, -73.98788)",,,230 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543337,Sedan,Sedan,,, +06/30/2022,14:27,MANHATTAN,10025,,,,107 street,Central Park west,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4543270,Station Wagon/Sport Utility Vehicle,Flat bed,,, +06/21/2022,8:45,BROOKLYN,11219,,,,66 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543399,Sedan,,,, +07/02/2022,23:54,BROOKLYN,11236,40.648266,-73.90581,"(40.648266, -73.90581)",ROCKAWAY PARKWAY,FOSTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4542924,Sedan,,,, +07/02/2022,23:40,MANHATTAN,10025,40.795956,-73.97083,"(40.795956, -73.97083)",BROADWAY,WEST 98 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4543277,Sedan,Sedan,,, +07/02/2022,19:03,BRONX,10454,40.80422,-73.91135,"(40.80422, -73.91135)",WILLOW AVENUE,EAST 138 STREET,,0,1,0,0,0,0,0,1,Traffic Control Disregarded,Unspecified,,,,4543289,Motorcycle,Dump,,, +10/11/2021,4:59,BROOKLYN,11222,40.7218218,-73.9421044,"(40.7218218, -73.9421044)",,,75 MONITOR STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466872,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,15:33,QUEENS,11365,40.74216,-73.804436,"(40.74216, -73.804436)",164 STREET,BOOTH MEMORIAL AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4543428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/02/2022,14:55,QUEENS,11433,40.69849,-73.800896,"(40.69849, -73.800896)",,,155-11 LIBERTY AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4543208,Sedan,Sedan,,, +10/11/2021,21:07,,,40.75128,-73.7493,"(40.75128, -73.7493)",HORACE HARDING EXPRESSWAY,229 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466250,Sedan,E-Scooter,,, +07/02/2022,18:00,QUEENS,11367,40.72744,-73.81102,"(40.72744, -73.81102)",AGUILAR AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542751,Sedan,,,, +06/30/2022,16:45,BROOKLYN,11206,40.70152,-73.94323,"(40.70152, -73.94323)",BROADWAY,DEBEVOISE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543227,Sedan,,,, +07/02/2022,22:43,BRONX,10462,40.830616,-73.849655,"(40.830616, -73.849655)",,,2222 HAVILAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543369,AMBULANCE,Station Wagon/Sport Utility Vehicle,Sedan,, +06/30/2022,19:30,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4543203,Sedan,,,, +10/11/2021,1:10,BROOKLYN,11211,40.711422,-73.95954,"(40.711422, -73.95954)",ROEBLING STREET,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4465944,Sedan,,,, +07/02/2022,13:41,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4542742,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2022,16:00,MANHATTAN,10016,40.743473,-73.97677,"(40.743473, -73.97677)",EAST 32 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4542771,Sedan,E-Scooter,,, +06/30/2022,18:15,QUEENS,11691,40.597504,-73.75096,"(40.597504, -73.75096)",,,250 BEACH 17 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543251,Ambulance,Sedan,,, +10/11/2021,0:00,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465983,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/02/2022,9:30,BRONX,10456,40.826183,-73.90975,"(40.826183, -73.90975)",,,1011 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543243,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/02/2022,7:42,BROOKLYN,11234,40.608807,-73.924126,"(40.608807, -73.924126)",AVENUE U,COLEMAN STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4542699,Sedan,Sedan,,, +06/28/2022,14:20,BROOKLYN,11206,40.704292,-73.93669,"(40.704292, -73.93669)",,,200 MOORE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543401,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,21:04,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543273,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,5:46,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",ALLERTON AVENUE,BRONX PARK EAST,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466066,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/11/2021,12:13,BROOKLYN,11209,40.633476,-74.02992,"(40.633476, -74.02992)",73 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466235,Sedan,E-Scooter,,, +07/02/2022,8:05,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543062,Sedan,,,, +07/02/2022,16:18,BROOKLYN,11203,0,0,"(0.0, 0.0)",UTICA AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,23:00,QUEENS,11373,40.733116,-73.87058,"(40.733116, -73.87058)",WOODHAVEN BOULEVARD,HOFFMAN DRIVE,,1,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543329,Sedan,E-Bike,,, +07/02/2022,4:57,QUEENS,11361,40.761993,-73.75849,"(40.761993, -73.75849)",223 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542622,Box Truck,Sedan,,, +10/11/2021,17:45,QUEENS,11432,40.70569,-73.806145,"(40.70569, -73.806145)",150 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466220,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,12:30,QUEENS,11435,40.71615,-73.81787,"(40.71615, -73.81787)",,,141-11 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4466161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,16:09,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466211,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,16:43,BROOKLYN,11231,40.6789242,-74.0110539,"(40.6789242, -74.0110539)",VAN BRUNT STREET,PIONEER STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4466280,Sedan,Motorcycle,,, +06/16/2021,8:13,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,,,,4428003,Sedan,Sedan,,, +10/11/2021,11:00,QUEENS,11372,40.74906,-73.89082,"(40.74906, -73.89082)",75 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466163,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/02/2022,10:44,MANHATTAN,10009,40.725876,-73.97754,"(40.725876, -73.97754)",EAST 10 STREET,AVENUE C,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543441,Station Wagon/Sport Utility Vehicle,Bus,,, +10/11/2021,16:00,QUEENS,11355,40.7609,-73.81314,"(40.7609, -73.81314)",150 STREET,SANFORD AVENUE,,2,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4466231,Sedan,E-Scooter,,, +10/11/2021,0:05,,,40.686226,-73.9124,"(40.686226, -73.9124)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466086,Sedan,Sedan,,, +07/02/2022,19:30,,,40.692562,-73.80891,"(40.692562, -73.80891)",PINEGROVE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543151,Sedan,Sedan,,, +07/02/2022,12:10,QUEENS,11436,40.679096,-73.79822,"(40.679096, -73.79822)",FOCH BOULEVARD,143 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4543180,Sedan,Sedan,,, +07/01/2022,2:00,BROOKLYN,11212,40.669823,-73.90981,"(40.669823, -73.90981)",PITKIN AVENUE,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543393,E-Scooter,Sedan,,, +07/02/2022,16:00,BRONX,10466,40.8896,-73.84054,"(40.8896, -73.84054)",,,3949 WILDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4542914,Sedan,,,, +07/02/2022,19:15,QUEENS,11385,40.70008,-73.89951,"(40.70008, -73.89951)",FOREST AVENUE,STEPHEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542994,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,10:00,MANHATTAN,10013,40.722553,-74.00141,"(40.722553, -74.00141)",BROOME STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4466135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,17:05,,,,,,PELHAM PARKWAY,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466224,Sedan,Sedan,,, +06/30/2022,15:48,BROOKLYN,11211,40.70774,-73.95361,"(40.70774, -73.95361)",HOOPER STREET,SOUTH 5 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543420,Station Wagon/Sport Utility Vehicle,Bike,,, +07/02/2022,18:45,,,40.756718,-73.91422,"(40.756718, -73.91422)",BROADWAY,,,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4543167,Sedan,,,, +07/02/2022,15:15,QUEENS,11365,40.740417,-73.79645,"(40.740417, -73.79645)",59 AVENUE,174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542763,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,6:07,QUEENS,11379,40.715546,-73.89927,"(40.715546, -73.89927)",ELIOT AVENUE,63 STREET,,7,0,0,0,0,0,7,0,Alcohol Involvement,Unspecified,,,,4542687,Sedan,Pick-up Truck,,, +07/01/2022,20:20,MANHATTAN,10012,40.722298,-73.99713,"(40.722298, -73.99713)",LAFAYETTE STREET,SPRING STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543222,Sedan,Bike,,, +06/29/2022,10:15,,,40.79087,-73.972694,"(40.79087, -73.972694)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543263,Sedan,Taxi,,, +10/11/2021,11:20,,,40.687325,-73.83525,"(40.687325, -73.83525)",108 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466264,Sedan,Sedan,,, +07/02/2022,11:05,BRONX,10461,40.85308,-73.85353,"(40.85308, -73.85353)",,,1938 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542848,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,1:35,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4466179,Sedan,,,, +07/02/2022,19:45,QUEENS,11413,40.67729,-73.743935,"(40.67729, -73.743935)",226 STREET,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4542817,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,12:34,BROOKLYN,11211,40.711693,-73.95124,"(40.711693, -73.95124)",UNION AVENUE,POWERS STREET,,1,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4543407,E-Bike,Box Truck,,, +07/02/2022,17:40,BROOKLYN,11201,40.688786,-73.98358,"(40.688786, -73.98358)",LIVINGSTON STREET,BOND STREET,,3,0,0,0,0,0,3,0,Outside Car Distraction,Other Vehicular,,,,4542980,Taxi,Sedan,,, +07/02/2022,18:54,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543085,Sedan,Motorcycle,,, +06/30/2022,16:30,,,40.65104,-74.0111,"(40.65104, -74.0111)",3 AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4543354,Van,Bike,,, +07/01/2022,23:47,BRONX,10457,40.84893,-73.890465,"(40.84893, -73.890465)",HUGHES AVENUE,EAST 180 STREET,,0,1,0,0,0,0,0,1,Traffic Control Disregarded,Unspecified,,,,4543258,Station Wagon/Sport Utility Vehicle,Unknown,,, +06/17/2021,9:35,,,40.736145,-73.91155,"(40.736145, -73.91155)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428083,Tractor Truck Gasoline,Pick-up Truck,,, +07/02/2022,23:50,BROOKLYN,11201,40.695026,-73.990814,"(40.695026, -73.990814)",CADMAN PLAZA WEST,JOHNSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543309,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,12:45,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4543147,Motorcycle,Sedan,,, +07/02/2022,14:57,BROOKLYN,11236,40.64932,-73.904175,"(40.64932, -73.904175)",EAST 99 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4542927,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/11/2021,16:55,BROOKLYN,11234,40.610443,-73.925934,"(40.610443, -73.925934)",AVENUE T,COLEMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466241,,,,, +06/28/2022,3:59,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543279,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,16:35,BRONX,10468,40.8648,-73.89536,"(40.8648, -73.89536)",,,2605 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543296,Sedan,,,, +06/30/2022,13:48,,,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543316,Sedan,Tow Truck / Wrecker,,, +07/02/2022,22:56,MANHATTAN,10025,40.804436,-73.96138,"(40.804436, -73.96138)",,,449 WEST 113 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Outside Car Distraction,,,,4543011,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2022,11:30,BROOKLYN,11220,40.632084,-74.01801,"(40.632084, -74.01801)",,,614 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545604,Sedan,SANITATION,,, +07/12/2022,17:15,,,40.584137,-74.15913,"(40.584137, -74.15913)",,,288 RICHMOND HILL ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4546064,Sedan,Sedan,Sedan,, +10/11/2021,0:15,QUEENS,11435,40.70253,-73.8143,"(40.70253, -73.8143)",JAMAICA AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4465968,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,9:55,QUEENS,11374,40.71338,-73.859665,"(40.71338, -73.859665)",COOPER AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4546120,Dump,Box Truck,,, +07/12/2022,13:00,QUEENS,11416,40.687016,-73.836365,"(40.687016, -73.836365)",,,107-01 101 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545752,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,17:20,,,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4545742,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,3:10,QUEENS,11101,40.75781,-73.94584,"(40.75781, -73.94584)",VERNON BOULEVARD,40 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465990,Sedan,,,, +06/28/2022,15:30,,,40.694637,-73.949066,"(40.694637, -73.949066)",MARCY AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4546081,Bike,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,9:21,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",EAST 138 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466239,Sedan,Taxi,,, +07/12/2022,16:51,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545805,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/24/2022,8:13,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",77 AVENUE,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4513308,Sedan,,,, +04/03/2022,2:35,QUEENS,11432,40.7168,-73.78723,"(40.7168, -73.78723)",EDGERTON BOULEVARD,HENLEY ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4515884,Sedan,Sedan,,, +04/03/2022,11:29,BROOKLYN,11236,40.629436,-73.89776,"(40.629436, -73.89776)",,,1454 EAST 87 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516116,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,10:00,BROOKLYN,11237,40.701958,-73.9239,"(40.701958, -73.9239)",KNICKERBOCKER AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515994,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,11:30,BROOKLYN,11228,40.605137,-74.01729,"(40.605137, -74.01729)",BAY 8 STREET,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/11/2021,15:04,BROOKLYN,11210,40.627632,-73.936356,"(40.627632, -73.936356)",,,4104 AVENUE J,2,0,2,0,0,0,0,0,Unspecified,,,,,4466212,Sedan,,,, +10/11/2021,20:34,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,,,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,Unspecified,,,4466449,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/02/2022,3:08,BRONX,10468,40.86278,-73.906654,"(40.86278, -73.906654)",,,128 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4516680,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,19:30,,,40.604027,-73.9523,"(40.604027, -73.9523)",AVENUE S,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491809,Sedan,,,, +10/11/2021,20:17,,,40.75537,-73.722244,"(40.75537, -73.722244)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466251,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,15:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516460,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,17:30,,,40.594147,-74.18655,"(40.594147, -74.18655)",,,3955 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4516428,Sedan,Pick-up Truck,,, +10/11/2021,4:03,BROOKLYN,11210,40.622017,-73.94568,"(40.622017, -73.94568)",,,3020 AVENUE L,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4466144,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/03/2022,17:50,,,40.601734,-73.935036,"(40.601734, -73.935036)",AVENUE U,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515942,Sedan,Sedan,,, +10/11/2021,13:00,MANHATTAN,10024,40.785294,-73.969345,"(40.785294, -73.969345)",CENTRAL PARK WEST,WEST 86 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466205,Sedan,Sedan,,, +04/03/2022,19:43,MANHATTAN,10038,40.710175,-74.001144,"(40.710175, -74.001144)",PEARL STREET,ROBERT F WAGNER PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516311,Sedan,Sedan,,, +04/03/2022,3:11,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4516053,Taxi,Sedan,,, +04/02/2022,1:50,,,40.633614,-74.13715,"(40.633614, -74.13715)",,,186 PALMER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4516398,Pick-up Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/01/2022,19:00,QUEENS,11368,40.75763,-73.865685,"(40.75763, -73.865685)",NORTHERN BOULEVARD,103 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516528,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,18:20,BROOKLYN,11226,40.648983,-73.94841,"(40.648983, -73.94841)",SNYDER AVENUE,EAST 31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466246,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,20:00,STATEN ISLAND,10310,40.62345,-74.11585,"(40.62345, -74.11585)",,,39 GLENWOOD PLACE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4516605,Sedan,Sedan,,, +04/03/2022,1:55,MANHATTAN,10011,40.736633,-73.99515,"(40.736633, -73.99515)",,,46 WEST 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4515600,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +04/03/2022,20:40,MANHATTAN,10026,40.803883,-73.95003,"(40.803883, -73.95003)",,,141 WEST 118 STREET,1,0,1,0,0,0,0,0,Steering Failure,,,,,4516067,,,,, +03/31/2022,6:40,QUEENS,11370,40.766785,-73.893105,"(40.766785, -73.893105)",76 STREET,ASTORIA BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516456,Bike,,,, +10/11/2021,1:05,BRONX,10466,40.883556,-73.84974,"(40.883556, -73.84974)",LACONIA AVENUE,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466065,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,20:30,,,40.774155,-73.984886,"(40.774155, -73.984886)",WEST 65 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516499,Sedan,,,, +10/11/2021,18:25,BROOKLYN,11220,40.648705,-74.010254,"(40.648705, -74.010254)",46 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4466232,Sedan,Bike,,, +04/02/2022,12:13,MANHATTAN,10033,40.85111,-73.93061,"(40.85111, -73.93061)",AUDUBON AVENUE,WEST 185 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4516370,E-Bike,Sedan,,, +04/03/2022,6:50,BROOKLYN,11236,40.643322,-73.90908,"(40.643322, -73.90908)",,,9002 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515614,Sedan,Sedan,,, +04/03/2022,23:37,BRONX,10459,40.82364,-73.89391,"(40.82364, -73.89391)",WESTCHESTER AVENUE,FOX STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516131,E-Bike,Sedan,,, +04/03/2022,21:07,BROOKLYN,11225,40.66733,-73.95353,"(40.66733, -73.95353)",ROGERS AVENUE,CARROLL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516186,Sedan,Sedan,,, +03/28/2022,7:00,,,40.819057,-73.92923,"(40.819057, -73.92923)",EAST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4516323,Sedan,Sedan,,, +04/02/2022,2:00,BROOKLYN,11238,40.676105,-73.970436,"(40.676105, -73.970436)",,,225 STERLING PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516347,Taxi,,,, +04/03/2022,14:35,,,40.743477,-73.73286,"(40.743477, -73.73286)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4515837,Sedan,Sedan,,, +04/03/2022,9:15,QUEENS,11413,40.666397,-73.75337,"(40.666397, -73.75337)",NORTH CONDUIT AVENUE,143 ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4515749,Sedan,Sedan,,, +03/31/2022,15:55,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516560,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,18:20,MANHATTAN,10065,40.769077,-73.96741,"(40.769077, -73.96741)",,,809 MADISON AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516591,Taxi,Bike,,, +10/11/2021,6:00,QUEENS,11373,40.736862,-73.872574,"(40.736862, -73.872574)",,,90-49 55 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4466076,Sedan,Pick-up Truck,,, +04/03/2022,17:10,QUEENS,11373,40.741295,-73.88029,"(40.741295, -73.88029)",BROADWAY,WHITNEY AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516642,Sedan,E-Scooter,,, +10/11/2021,15:25,QUEENS,11435,40.687824,-73.80573,"(40.687824, -73.80573)",109 AVENUE,141 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4466216,Sedan,Sedan,,, +04/03/2022,4:35,BROOKLYN,11216,40.67164,-73.95034,"(40.67164, -73.95034)",NOSTRAND AVENUE,SAINT JOHNS PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4515826,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,8:00,QUEENS,11106,40.756866,-73.93039,"(40.756866, -73.93039)",,,30-10 36 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516475,Sedan,Sedan,,, +04/03/2022,4:05,MANHATTAN,10016,40.74592,-73.986404,"(40.74592, -73.986404)",EAST 30 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515632,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,6:50,BROOKLYN,11215,40.675945,-73.97924,"(40.675945, -73.97924)",,,763 UNION STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4516346,Sedan,Sedan,Sedan,, +04/03/2022,20:50,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516039,Sedan,,,, +04/03/2022,18:00,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516088,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,0:45,,,40.6974,-73.80952,"(40.6974, -73.80952)",95 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4465969,Sedan,,,, +04/03/2022,7:01,MANHATTAN,10035,40.80574,-73.942764,"(40.80574, -73.942764)",5 AVENUE,EAST 124 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4516364,Sedan,,,, +04/03/2022,14:45,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4516226,Sedan,Sedan,Sedan,, +03/30/2022,16:50,BROOKLYN,11215,40.668293,-73.97924,"(40.668293, -73.97924)",,,506 6 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4516356,Taxi,,,, +10/11/2021,12:00,BROOKLYN,11225,40.66579,-73.95088,"(40.66579, -73.95088)",,,905 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466200,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,2:26,,,40.73319,-73.866875,"(40.73319, -73.866875)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,,,,4466207,Sedan,Convertible,,, +04/03/2022,2:30,MANHATTAN,10012,40.72889,-74.00062,"(40.72889, -74.00062)",,,173 BLEECKER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515704,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,6:10,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,CLINTON STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4515841,Sedan,Pick-up Truck,,, +10/11/2021,16:50,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466223,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,2:30,,,40.729084,-73.93104,"(40.729084, -73.93104)",LAUREL HILL BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4515953,Sedan,,,, +04/02/2022,14:23,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Unspecified,,4516546,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/11/2021,15:00,,,40.75513,-73.96525,"(40.75513, -73.96525)",EAST 52 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4466245,Taxi,Taxi,,, +04/01/2022,4:35,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516661,Sedan,Sedan,,, +10/11/2021,8:00,BROOKLYN,11208,40.675724,-73.875496,"(40.675724, -73.875496)",,,178 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466117,Sedan,,,, +04/03/2022,12:44,BROOKLYN,11223,40.58412,-73.98187,"(40.58412, -73.98187)",,,2632 WEST 13 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516183,Taxi,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,1:45,MANHATTAN,10031,40.827057,-73.95202,"(40.827057, -73.95202)",RIVERSIDE DRIVE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516410,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,20:48,,,40.8011327,-73.9298758,"(40.8011327, -73.9298758)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4466293,Sedan,Sedan,Sedan,, +12/27/2021,5:31,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4492050,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,10:55,,,40.843678,-73.871956,"(40.843678, -73.871956)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4466222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,14:00,,,40.623886,-73.89559,"(40.623886, -73.89559)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516561,Sedan,Sedan,,, +04/03/2022,18:48,QUEENS,11385,40.701786,-73.89803,"(40.701786, -73.89803)",,,60-23 70 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4515864,Sedan,Sedan,,, +03/19/2022,21:43,STATEN ISLAND,10309,40.540184,-74.22359,"(40.540184, -74.22359)",VETERANS ROAD EAST,CLAY PIT ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4516621,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,13:48,MANHATTAN,10016,40.749485,-73.97539,"(40.749485, -73.97539)",3 AVENUE,EAST 40 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515913,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,21:25,,,40.778164,-73.98862,"(40.778164, -73.98862)",RIVERSIDE BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516485,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,4:42,QUEENS,11379,40.719063,-73.892,"(40.719063, -73.892)",,,68-01 ELIOT AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4515776,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,20:20,,,40.860176,-73.891754,"(40.860176, -73.891754)",EAST 189 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516397,Sedan,,,, +10/11/2021,8:50,BROOKLYN,11235,40.585655,-73.951706,"(40.585655, -73.951706)",,,1715 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466173,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,14:35,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4516277,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,4:15,QUEENS,11368,40.740616,-73.85857,"(40.740616, -73.85857)",,,54-17 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,19:30,BROOKLYN,11211,40.711693,-73.95124,"(40.711693, -73.95124)",UNION AVENUE,HOPE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466233,Sedan,,,, +04/01/2022,23:45,BROOKLYN,11221,40.69111,-73.91697,"(40.69111, -73.91697)",EVERGREEN AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516332,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,7:03,,,,,,FRANCIS LEWIS BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466228,Sedan,Sedan,,, +03/26/2022,16:40,,,40.742493,-73.87337,"(40.742493, -73.87337)",CORONA AVENUE,91 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516643,Sedan,,,, +04/02/2022,15:30,BRONX,10460,40.841293,-73.8828,"(40.841293, -73.8828)",EAST TREMONT AVENUE,VYSE AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4516389,Station Wagon/Sport Utility Vehicle,,,, +03/11/2022,8:45,,,40.77428,-73.97738,"(40.77428, -73.97738)",WEST 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516465,Sedan,Sedan,,, +04/03/2022,8:05,BROOKLYN,11208,40.671352,-73.88182,"(40.671352, -73.88182)",,,1000 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516023,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/23/2022,8:00,BROOKLYN,11213,40.663902,-73.93993,"(40.663902, -73.93993)",EMPIRE BOULEVARD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516438,3-Door,3-Door,,, +04/03/2022,15:45,,,40.723698,-74.00792,"(40.723698, -74.00792)",CANAL STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516070,Sedan,Sedan,,, +04/03/2022,5:30,,,40.586205,-73.93417,"(40.586205, -73.93417)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515929,Sedan,Sedan,,, +04/03/2022,19:13,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516152,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +04/03/2022,15:00,MANHATTAN,10027,40.814144,-73.95571,"(40.814144, -73.95571)",WEST 126 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4516540,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,16:22,BROOKLYN,11217,40.68603,-73.97635,"(40.68603, -73.97635)",,,125 FORT GREENE PLACE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4515870,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,21:43,QUEENS,11434,40.681778,-73.78156,"(40.681778, -73.78156)",BREWER BOULEVARD,119 ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516402,Station Wagon/Sport Utility Vehicle,Moped,,, +03/28/2022,11:10,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516565,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/11/2021,9:30,,,40.7303024,-73.8108998,"(40.7303024, -73.8108998)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466145,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,16:50,,,,,,,,12595 Atkins avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4428243,Sedan,,,, +10/11/2021,6:30,QUEENS,11421,40.694973,-73.84676,"(40.694973, -73.84676)",,,98-25 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466043,Sedan,,,, +04/03/2022,15:19,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516098,Sedan,Sedan,,, +10/11/2021,16:29,BRONX,10463,40.887512,-73.90598,"(40.887512, -73.90598)",,,475 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466213,Sedan,,,, +04/03/2022,12:52,QUEENS,11420,40.682003,-73.81606,"(40.682003, -73.81606)",111 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4515943,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/03/2022,19:54,BROOKLYN,11207,40.67385,-73.89155,"(40.67385, -73.89155)",GLENMORE AVENUE,MILLER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516099,Sedan,E-Bike,,, +04/03/2022,6:20,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",WEST FORDHAM ROAD,LORING PLACE NORTH,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4516059,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,21:19,BROOKLYN,11234,40.622456,-73.91954,"(40.622456, -73.91954)",,,1322 EAST 58 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516444,Sedan,,,, +04/03/2022,4:10,BROOKLYN,11219,40.629032,-74.00194,"(40.629032, -74.00194)",62 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515546,Pick-up Truck,,,, +04/03/2022,19:30,BRONX,10475,40.878315,-73.83271,"(40.878315, -73.83271)",,,140 DARROW PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516491,Sedan,,,, +03/25/2022,6:40,BRONX,10469,40.873344,-73.85654,"(40.873344, -73.85654)",,,3316 LURTING AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4516613,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,14:20,BROOKLYN,11201,40.694836,-73.98393,"(40.694836, -73.98393)",JOHNSON STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466247,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,12:45,QUEENS,11420,40.67052,-73.81026,"(40.67052, -73.81026)",129 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4515896,Sedan,Sedan,Sedan,, +03/28/2022,21:18,BROOKLYN,11203,40.645638,-73.946106,"(40.645638, -73.946106)",,,1135 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516375,Sedan,,,, +03/26/2022,8:20,STATEN ISLAND,10310,40.637634,-74.121315,"(40.637634, -74.121315)",,,131 WOODRUFF LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516604,Sedan,,,, +04/02/2022,1:20,,,40.640034,-73.877945,"(40.640034, -73.877945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516564,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,10:30,BROOKLYN,11207,40.67567,-73.89785,"(40.67567, -73.89785)",ATLANTIC AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4516425,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,4:53,,,40.73425,-73.86336,"(40.73425, -73.86336)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4515609,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,23:50,QUEENS,11105,40.771038,-73.89869,"(40.771038, -73.89869)",,,48-06 21 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/03/2022,16:55,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,4:10,BRONX,10468,40.863785,-73.90028,"(40.863785, -73.90028)",JEROME AVENUE,EAST 190 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516060,Sedan,Sedan,,, +10/11/2021,4:45,QUEENS,11435,,,,,,10611 Pinegrove street,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465978,Sedan,Sedan,,, +10/01/2021,14:10,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +03/27/2022,16:38,BROOKLYN,11226,40.64453,-73.94599,"(40.64453, -73.94599)",NEW YORK AVENUE,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516507,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,6:45,MANHATTAN,10016,40.7431,-73.974014,"(40.7431, -73.974014)",1 AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515931,Station Wagon/Sport Utility Vehicle,Bike,,, +04/02/2022,15:50,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4516369,Sedan,E-Bike,,, +10/11/2021,9:10,,,40.718647,-73.83771,"(40.718647, -73.83771)",QUEENS BOULEVARD,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466208,Bike,,,, +06/17/2021,23:40,,,,,,,,107 EAST DRIVE,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4428284,Bike,,,, +01/03/2022,12:00,BROOKLYN,11203,40.651646,-73.93233,"(40.651646, -73.93233)",CHURCH AVENUE,EAST 48 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492121,,,,, +04/03/2022,15:00,,,40.578106,-74.156876,"(40.578106, -74.156876)",,,1726 FOREST HILL ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516401,Sedan,Pick-up Truck,,, +04/03/2022,0:00,BROOKLYN,11237,40.702374,-73.920265,"(40.702374, -73.920265)",,,167 IRVING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515996,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,14:20,BRONX,10467,40.87877,-73.87283,"(40.87877, -73.87283)",,,350 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516681,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,22:00,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",EAST 58 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516592,Sedan,,,, +03/30/2022,15:40,MANHATTAN,10024,40.78377,-73.98391,"(40.78377, -73.98391)",WEST 77 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516483,Station Wagon/Sport Utility Vehicle,Van,,, +04/03/2022,12:28,QUEENS,11354,40.765347,-73.8354,"(40.765347, -73.8354)",COLLINS PLACE,34 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,18:09,BROOKLYN,11217,40.685226,-73.978294,"(40.685226, -73.978294)",,,123 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466227,Sedan,Sedan,,, +10/11/2021,14:30,BROOKLYN,11203,40.65249,-73.92179,"(40.65249, -73.92179)",CHURCH AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466244,Sedan,,,, +10/11/2021,1:28,BROOKLYN,11208,40.688507,-73.86962,"(40.688507, -73.86962)",,,106 NICHOLS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466130,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,19:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516242,Sedan,Sedan,,, +03/24/2022,16:20,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4516569,Sedan,Taxi,,, +04/03/2022,0:55,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515885,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,18:50,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",WEBSTER AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516359,Sedan,Multi-Wheeled Vehicle,,, +10/11/2021,10:00,QUEENS,11358,40.7497,-73.80072,"(40.7497, -73.80072)",,,47-39 167 STREET,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4466229,Sedan,,,, +04/02/2022,12:40,BRONX,10455,40.815876,-73.90051,"(40.815876, -73.90051)",LEGGETT AVENUE,KELLY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4516524,Bike,Sedan,,, +04/03/2022,11:53,,,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515705,Sedan,,,, +04/03/2022,1:00,BROOKLYN,11207,40.66685,-73.8907,"(40.66685, -73.8907)",DUMONT AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516109,Sedan,,,, +04/03/2022,17:49,,,40.615307,-74.15799,"(40.615307, -74.15799)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516278,Sedan,Sedan,,, +10/11/2021,6:22,QUEENS,11420,40.680325,-73.82898,"(40.680325, -73.82898)",111 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466107,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,0:15,BROOKLYN,11235,40.582024,-73.96564,"(40.582024, -73.96564)",,,2839 BRIGHTON 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515794,Sedan,,,, +10/11/2021,0:20,BROOKLYN,11213,40.675186,-73.933304,"(40.675186, -73.933304)",SCHENECTADY AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466197,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,14:30,QUEENS,11101,40.75303,-73.92163,"(40.75303, -73.92163)",42 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4515951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,5:01,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Passing or Lane Usage Improper,,,,4466068,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/03/2022,4:45,QUEENS,11412,40.70089,-73.75708,"(40.70089, -73.75708)",198 STREET,113 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,8:30,BRONX,10463,40.882923,-73.90828,"(40.882923, -73.90828)",,,3219 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516464,Sedan,Sedan,,, +03/31/2022,19:30,,,,,,FLATBUSH AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4516365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/11/2021,17:45,,,40.748466,-73.99247,"(40.748466, -73.99247)",7 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466221,Sedan,Bike,,, +04/03/2022,20:00,QUEENS,11377,40.744457,-73.90596,"(40.744457, -73.90596)",41 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515876,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,13:30,,,40.760525,-73.97998,"(40.760525, -73.97998)",AVENUE OF THE AMERICAS,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4515973,Station Wagon/Sport Utility Vehicle,Bike,,, +04/03/2022,2:05,BROOKLYN,11238,40.682564,-73.968765,"(40.682564, -73.968765)",,,505 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516671,Sedan,,,, +04/03/2022,18:30,BROOKLYN,11211,40.70648,-73.96375,"(40.70648, -73.96375)",BEDFORD AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516652,Bike,Sedan,,, +04/02/2022,12:34,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,4516547,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/01/2022,4:20,QUEENS,11412,40.696648,-73.76175,"(40.696648, -73.76175)",114 DRIVE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516405,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,18:10,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",QUEENS BOULEVARD,62 DRIVE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4516631,E-Bike,Sedan,,, +04/03/2022,23:20,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,Driver Inattention/Distraction,,,4516219,Sedan,Sedan,Sedan,, +04/03/2022,5:25,BROOKLYN,11236,40.632378,-73.90353,"(40.632378, -73.90353)",,,1228 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515613,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,6:10,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Passenger Distraction,,,,4466169,Dump,Box Truck,,, +04/01/2022,4:02,BROOKLYN,11238,40.672832,-73.96908,"(40.672832, -73.96908)",,,10 GRAND ARMY PLAZA,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516353,Van,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,16:30,BROOKLYN,11201,40.691135,-73.98347,"(40.691135, -73.98347)",,,436 ALBEE SQUARE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4515859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,20:55,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516310,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,20:20,BROOKLYN,11249,40.70312,-73.96443,"(40.70312, -73.96443)",WYTHE AVENUE,ROSS STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466234,Sedan,,,, +04/03/2022,9:45,BRONX,10459,40.81772,-73.89545,"(40.81772, -73.89545)",,,854 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4516122,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/03/2022,13:50,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",7 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4516032,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,12:36,,,40.696205,-73.97249,"(40.696205, -73.97249)",PARK AVENUE,ADELPHI STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516668,Sedan,,,, +10/11/2021,9:13,QUEENS,11367,40.73021,-73.81509,"(40.73021, -73.81509)",,,70-68 KISSENA BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466159,,,,, +10/11/2021,1:13,,,40.650337,-73.86849,"(40.650337, -73.86849)",BELT PARKWAY,,,0,1,0,1,0,0,0,0,Following Too Closely,Alcohol Involvement,Unspecified,Unspecified,,4466053,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +03/28/2022,4:00,QUEENS,11103,40.765198,-73.91395,"(40.765198, -73.91395)",,,28-48 STEINWAY STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4516474,Sedan,,,, +04/03/2022,22:40,QUEENS,11691,40.606853,-73.747856,"(40.606853, -73.747856)",,,12-18 CHANNING ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516081,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,14:45,,,,,,NORTH CONDUIT AVENUE,182 PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516406,Sedan,Sedan,,, +04/03/2022,18:08,BROOKLYN,11249,40.70683,-73.9684,"(40.70683, -73.9684)",KENT AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4515911,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,13:30,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516360,Sedan,Sedan,,, +03/30/2022,0:14,BRONX,10465,40.826077,-73.81808,"(40.826077, -73.81808)",,,617 HOLLYWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516392,Sedan,,,, +04/03/2022,5:50,QUEENS,11423,40.715916,-73.756775,"(40.715916, -73.756775)",205 STREET,93 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4515967,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,23:30,BRONX,10458,40.85294,-73.88309,"(40.85294, -73.88309)",,,2346 PROSPECT AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4516316,Station Wagon/Sport Utility Vehicle,AMB,AMB,Station Wagon/Sport Utility Vehicle, +01/03/2022,19:36,BRONX,10455,40.819267,-73.91378,"(40.819267, -73.91378)",,,3007 3 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4492206,Sedan,,,, +04/03/2022,2:50,BROOKLYN,11203,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515630,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,16:41,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516094,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,0:00,,,40.82451,-73.95186,"(40.82451, -73.95186)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515833,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,23:10,,,40.67624,-73.866104,"(40.67624, -73.866104)",CONDUIT BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516100,Sedan,Sedan,,, +04/03/2022,17:35,QUEENS,11417,40.6807,-73.84465,"(40.6807, -73.84465)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515895,Sedan,Sedan,,, +10/11/2021,2:53,,,40.728424,-73.880516,"(40.728424, -73.880516)",LONG ISLAND EXPRESSWAY,81 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4466184,Sedan,,,, +10/11/2021,13:50,,,40.743225,-73.83778,"(40.743225, -73.83778)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466230,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,18:00,BROOKLYN,11207,40.670727,-73.88609,"(40.670727, -73.88609)",SUTTER AVENUE,JEROME STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4516093,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,14:00,MANHATTAN,10075,40.774967,-73.9568,"(40.774967, -73.9568)",EAST 80 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516436,Sedan,Bike,,, +10/11/2021,7:55,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",WEST BROADWAY,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466134,Sedan,Box Truck,,, +04/03/2022,6:52,MANHATTAN,10012,40.723686,-73.99648,"(40.723686, -73.99648)",PRINCE STREET,LAFAYETTE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516012,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +04/03/2022,9:59,QUEENS,11368,40.7544,-73.86669,"(40.7544, -73.86669)",,,101-14 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,0:40,QUEENS,11364,40.75682,-73.749596,"(40.75682, -73.749596)",,,53-25 EAST HAMPTON BOULEVARD,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4515562,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,2:24,BRONX,10455,40.816097,-73.9178,"(40.816097, -73.9178)",MELROSE AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516493,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,8:25,BROOKLYN,11215,40.675434,-73.97797,"(40.675434, -73.97797)",UNION STREET,6 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4516373,Sedan,Bike,,, +10/11/2021,2:45,QUEENS,11361,40.754463,-73.78147,"(40.754463, -73.78147)",,,46-08 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4465981,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,17:50,STATEN ISLAND,10309,40.54013,-74.21769,"(40.54013, -74.21769)",BLOOMINGDALE ROAD,CLAY PIT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516612,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/02/2022,8:50,QUEENS,11432,40.71152,-73.78402,"(40.71152, -73.78402)",,,88-50 179 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516573,Sedan,,,, +04/03/2022,13:20,BRONX,10452,40.835396,-73.92031,"(40.835396, -73.92031)",EAST 167 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4516291,Box Truck,Sedan,,, +04/03/2022,11:25,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4515787,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +04/03/2022,11:52,BROOKLYN,11234,,,,AVENUE J,EAST 59 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515795,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,19:30,BRONX,10473,40.82583,-73.85777,"(40.82583, -73.85777)",,,1994 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4516153,Sedan,,,, +03/30/2022,23:00,MANHATTAN,10039,40.8285,-73.93779,"(40.8285, -73.93779)",WEST 154 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516489,Sedan,Sedan,,, +04/03/2022,7:10,BRONX,10469,40.864574,-73.83503,"(40.864574, -73.83503)",,,1738 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4515840,Sedan,Bus,,, +10/11/2021,10:00,BROOKLYN,11205,40.697838,-73.97078,"(40.697838, -73.97078)",FLUSHING AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466225,Van,,,, +10/11/2021,3:52,BROOKLYN,11237,40.703674,-73.91513,"(40.703674, -73.91513)",SAINT NICHOLAS AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466087,Sedan,Sedan,,, +04/03/2022,23:17,,,40.878,-73.90408,"(40.878, -73.90408)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516264,Sedan,Sedan,,, +10/11/2021,12:56,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466249,Pick-up Truck,Sedan,,, +10/11/2021,18:23,BROOKLYN,11234,40.62323,-73.92735,"(40.62323, -73.92735)",,,1982 UTICA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466242,Sedan,,,, +10/11/2021,18:50,QUEENS,11420,40.678574,-73.8281139,"(40.678574, -73.8281139)",111 STREET,111 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466271,Sedan,,,, +10/11/2021,13:10,MANHATTAN,10065,40.7648401,-73.9704958,"(40.7648401, -73.9704958)",MADISON AVENUE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466282,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,18:00,,,40.829138,-73.9113909,"(40.829138, -73.9113909)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466299,Sedan,Sedan,,, +10/11/2021,14:46,BROOKLYN,11210,40.6295919,-73.9475338,"(40.6295919, -73.9475338)",,,2266 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466323,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,14:15,QUEENS,11105,40.7804561,-73.9168286,"(40.7804561, -73.9168286)",21 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466353,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/11/2021,13:00,,,40.6732477,-73.8867271,"(40.6732477, -73.8867271)",JEROME STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466513,Sedan,Sedan,,, +10/11/2021,23:30,MANHATTAN,10025,40.7973382,-73.9624344,"(40.7973382, -73.9624344)",MANHATTAN AVENUE,WEST 104 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466692,Taxi,,,, +10/07/2021,17:30,MANHATTAN,10001,40.7533873,-73.996304,"(40.7533873, -73.996304)",WEST 34 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466706,Pick-up Truck,Sedan,,, +10/11/2021,17:45,BRONX,10453,40.8544707,-73.9100739,"(40.8544707, -73.9100739)",WEST BURNSIDE AVENUE,HARRISON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4466713,Sedan,Moped,,, +10/05/2021,8:20,BROOKLYN,11222,40.7279629,-73.950073,"(40.7279629, -73.950073)",MC GUINNESS BOULEVARD,MESEROLE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466728,Sedan,Box Truck,,, +12/11/2021,1:00,,,40.84797,-73.924774,"(40.84797, -73.924774)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485924,Tractor Truck Diesel,,,, +10/09/2021,17:17,,,40.8530276,-73.918256,"(40.8530276, -73.918256)",WEST TREMONT AVENUE,SEDGWICK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466882,,,,, +10/10/2021,15:18,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466792,Sedan,Sedan,,, +12/11/2021,23:00,,,40.758816,-73.90128,"(40.758816, -73.90128)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4485964,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,10:57,,,40.85365,-73.871704,"(40.85365, -73.871704)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485401,Sedan,Sedan,,, +12/11/2021,4:40,,,40.75539,-73.828285,"(40.75539, -73.828285)",MAPLE AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4485446,,,,, +06/15/2021,14:30,,,40.544315,-74.19587,"(40.544315, -74.19587)",BOULDER STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4428418,Bus,,,, +12/11/2021,0:15,BRONX,10473,40.806026,-73.85453,"(40.806026, -73.85453)",,,15 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486118,Sedan,,,, +11/25/2021,3:33,BRONX,10460,40.841087,-73.86449,"(40.841087, -73.86449)",EAST TREMONT AVENUE,WHITE PLAINS ROAD,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4486128,Sedan,Sedan,,, +12/11/2021,16:57,BROOKLYN,11210,40.61732,-73.94408,"(40.61732, -73.94408)",EAST 31 STREET,AVENUE N,,3,0,3,0,0,0,0,0,Brakes Defective,,,,,4485474,Sedan,,,, +12/11/2021,8:04,STATEN ISLAND,10304,40.62143,-74.07451,"(40.62143, -74.07451)",,,70 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485671,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,17:40,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",BRONX RIVER AVENUE,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4486113,Station Wagon/Sport Utility Vehicle,Bike,,, +11/28/2021,13:00,,,,,,BRIGHTON BEACH AVENUE,BRIGHTON 1 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485997,,,,, +12/11/2021,5:21,STATEN ISLAND,10304,40.625603,-74.075035,"(40.625603, -74.075035)",BROAD STREET,BAY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486081,Sedan,Sedan,,, +12/11/2021,9:30,BROOKLYN,11226,40.640827,-73.950424,"(40.640827, -73.950424)",AVENUE D,EAST 28 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,,4485413,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,23:00,,,,,,14 AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485497,Sedan,,,, +12/11/2021,4:45,BROOKLYN,11231,40.679035,-73.998985,"(40.679035, -73.998985)",,,66 3 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485350,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,10:40,BROOKLYN,11215,40.67641,-73.98047,"(40.67641, -73.98047)",5 AVENUE,UNION STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488262,Pick-up Truck,,,, +12/29/2021,17:18,BROOKLYN,11218,40.636333,-73.97102,"(40.636333, -73.97102)",,,725 DITMAS AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4490660,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/20/2021,8:35,QUEENS,11368,40.747963,-73.86337,"(40.747963, -73.86337)",,,41-16 NATIONAL STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4491854,Bike,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,12:38,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492366,Sedan,,,, +02/19/2022,3:13,BRONX,10469,40.87645,-73.848175,"(40.87645, -73.848175)",BOSTON ROAD,FENTON AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4504913,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/20/2022,19:00,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,2,0,2,0,0,0,0,0,Unspecified,,,,,4504292,Sedan,,,, +02/19/2022,20:03,BROOKLYN,11234,40.61895,-73.92689,"(40.61895, -73.92689)",UTICA AVENUE,AVENUE N,,0,1,0,1,0,0,0,0,Unspecified,,,,,4504756,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,21:30,,,40.57663,-74.00556,"(40.57663, -74.00556)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504485,Sedan,,,, +02/20/2022,12:25,BROOKLYN,11249,40.70919,-73.96848,"(40.70919, -73.96848)",SOUTH 9 STREET,KENT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504342,Sedan,Bike,,, +02/20/2022,21:16,STATEN ISLAND,10314,40.613525,-74.11685,"(40.613525, -74.11685)",VICTORY BOULEVARD,SLOSSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4504494,Sedan,Sedan,,, +02/20/2022,3:50,QUEENS,11691,40.595257,-73.74851,"(40.595257, -73.74851)",,,14-30 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4504411,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +02/20/2022,19:41,STATEN ISLAND,10306,40.574787,-74.118546,"(40.574787, -74.118546)",,,117 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504804,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,0:00,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504009,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,21:16,,,40.690086,-73.751205,"(40.690086, -73.751205)",199 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4504315,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/10/2022,8:49,MANHATTAN,10012,0,0,"(0.0, 0.0)",,,240 BOWERY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4504729,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/19/2022,21:16,BROOKLYN,11233,40.677364,-73.90798,"(40.677364, -73.90798)",EASTERN PARKWAY,HERKIMER STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4504779,Taxi,E-Bike,,, +02/20/2022,5:00,MANHATTAN,10027,40.808292,-73.94883,"(40.808292, -73.94883)",7 AVENUE,WEST 124 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504059,Sedan,Sedan,,, +02/04/2022,4:39,QUEENS,11432,40.707466,-73.7887,"(40.707466, -73.7887)",JAMAICA AVENUE,171 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4504816,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,21:00,,,40.74059,-73.94433,"(40.74059, -73.94433)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504291,Sedan,Sedan,,, +02/20/2022,3:12,BRONX,10454,40.806442,-73.92652,"(40.806442, -73.92652)",,,61 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504413,Taxi,Sedan,,, +02/18/2022,1:12,BRONX,10470,40.90008,-73.85761,"(40.90008, -73.85761)",,,4401 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4504893,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/20/2022,1:20,BROOKLYN,11211,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504334,AMBULANCE,Sedan,,, +02/18/2022,5:15,MANHATTAN,10009,40.728176,-73.98486,"(40.728176, -73.98486)",EAST 9 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504724,Garbage or Refuse,Taxi,,, +02/22/2022,8:05,BROOKLYN,11223,40.605324,-73.971245,"(40.605324, -73.971245)",,,1810 EAST 2 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4504880,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/03/2022,13:30,BROOKLYN,11221,40.68657,-73.93875,"(40.68657, -73.93875)",,,317 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516534,Sedan,Sedan,,, +06/14/2021,18:20,MANHATTAN,10035,40.80259,-73.935265,"(40.80259, -73.935265)",,,245 EAST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428441,Sedan,,,, +01/03/2022,18:58,QUEENS,11101,40.74942,-73.940544,"(40.74942, -73.940544)",42 ROAD,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491793,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,9:45,,,40.829082,-73.941086,"(40.829082, -73.941086)",SAINT NICHOLAS PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492064,Motorcycle,,,, +01/03/2022,0:00,,,40.8165,-73.946556,"(40.8165, -73.946556)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491870,Sedan,Sedan,,, +12/03/2021,8:45,BROOKLYN,11228,0,0,"(0.0, 0.0)",92 STREET,DAHLGREN PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492339,Box Truck,Sedan,,, +12/13/2021,18:39,,,40.628098,-73.99575,"(40.628098, -73.99575)",14 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492303,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,1:30,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4491564,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/03/2022,14:48,,,40.68238,-73.90565,"(40.68238, -73.90565)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491831,Sedan,,,, +01/03/2022,18:25,QUEENS,11423,40.70942,-73.7749,"(40.70942, -73.7749)",184 PLACE,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491936,Sedan,,,, +01/03/2022,7:00,BROOKLYN,11235,40.582447,-73.955925,"(40.582447, -73.955925)",CASS PLACE,BRIGHTON 11 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4492229,Sedan,Sedan,Sedan,Sedan, +01/03/2022,1:30,QUEENS,11429,40.714428,-73.73962,"(40.714428, -73.73962)",,,217-61 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491598,Sedan,Sedan,,, +01/03/2022,16:50,MANHATTAN,10012,40.726494,-74.00236,"(40.726494, -74.00236)",PRINCE STREET,SULLIVAN STREET,,0,0,0,0,0,0,0,0,,,,,,4491943,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,14:00,,,40.593155,-74.16262,"(40.593155, -74.16262)",RICHMOND AVENUE,TRAVIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/15/2021,5:00,,,40.69635,-73.94071,"(40.69635, -73.94071)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492195,Sedan,Sedan,,, +01/03/2022,5:30,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4491674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,10:10,BROOKLYN,11212,40.66438,-73.90261,"(40.66438, -73.90261)",,,393 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491776,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,9:00,,,40.825138,-73.9514,"(40.825138, -73.9514)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492073,Sedan,,,, +01/03/2022,13:25,BRONX,10468,40.875675,-73.90069,"(40.875675, -73.90069)",SEDGWICK AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492096,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,22:00,,,40.81344,-73.94135,"(40.81344, -73.94135)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492132,Sedan,,,, +01/03/2022,13:39,MANHATTAN,10026,40.80332,-73.956795,"(40.80332, -73.956795)",,,265 WEST 114 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,19:16,BROOKLYN,11219,40.630577,-74.00751,"(40.630577, -74.00751)",10 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491753,Sedan,Sedan,,, +01/03/2022,14:00,,,40.79147,-73.83988,"(40.79147, -73.83988)",128 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491718,,,,, +01/03/2022,17:45,,,40.79087,-73.972694,"(40.79087, -73.972694)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491745,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,12:02,,,40.818504,-73.91448,"(40.818504, -73.91448)",3 AVENUE,EAST 153 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4491719,Station Wagon/Sport Utility Vehicle,Bike,,, +01/03/2022,8:15,BROOKLYN,11220,40.645733,-74.020424,"(40.645733, -74.020424)",2 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491771,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,1:48,BRONX,10456,40.828613,-73.90692,"(40.828613, -73.90692)",,,3411 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491693,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,12:59,BROOKLYN,11212,40.670383,-73.90604,"(40.670383, -73.90604)",PITKIN AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492157,Sedan,,,, +01/03/2022,12:38,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4491895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/03/2022,18:30,,,40.72973,-73.91183,"(40.72973, -73.91183)",58 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491966,Sedan,,,, +12/24/2021,21:25,,,40.69979,-73.950096,"(40.69979, -73.950096)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4492185,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/03/2022,2:30,QUEENS,11434,40.671024,-73.76921,"(40.671024, -73.76921)",171 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492102,Sedan,,,, +01/01/2022,5:44,MANHATTAN,10033,40.844845,-73.93519,"(40.844845, -73.93519)",WEST 175 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492167,Sedan,,,, +01/03/2022,7:08,QUEENS,11433,40.69687,-73.78072,"(40.69687, -73.78072)",110 AVENUE,173 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491710,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,18:03,,,40.769955,-73.836426,"(40.769955, -73.836426)",WHITESTONE EXPRESSWAY,DOWNING STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491765,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,16:14,,,40.67386,-73.88259,"(40.67386, -73.88259)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4491846,Sedan,Dump,Sedan,, +12/30/2021,0:00,,,40.825756,-73.95094,"(40.825756, -73.95094)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing Too Closely,,,,4492095,Sedan,E-Bike,,, +05/03/2021,0:13,BROOKLYN,11225,40.667477,-73.95623,"(40.667477, -73.95623)",BEDFORD AVENUE,CARROLL STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492284,Bike,Sedan,,, +01/03/2022,9:00,BROOKLYN,11212,40.666744,-73.90217,"(40.666744, -73.90217)",,,419 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491777,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,11:48,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4491724,Sedan,Sedan,,, +12/28/2021,9:27,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",76 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492227,Sedan,,,, +12/31/2021,0:50,BROOKLYN,11203,0,0,"(0.0, 0.0)",LINDEN BOULEVARD,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492113,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,0:00,BRONX,10458,40.867027,-73.89111,"(40.867027, -73.89111)",EAST 196 STREET,BRIGGS AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4492145,Sedan,Sedan,,, +01/01/2022,17:18,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",167 STREET,HIGHLAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492358,Sedan,,,, +01/03/2022,10:13,MANHATTAN,10029,40.78641,-73.94625,"(40.78641, -73.94625)",,,225 EAST 99 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4491884,Sedan,,,, +01/03/2022,16:40,BROOKLYN,11218,40.639885,-73.97898,"(40.639885, -73.97898)",,,573 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4492308,Sedan,,,, +01/03/2022,12:00,,,40.70355,-73.781296,"(40.70355, -73.781296)",105 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491944,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,22:16,MANHATTAN,10019,40.76172,-73.98281,"(40.76172, -73.98281)",WEST 51 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,23:55,,,40.82682,-73.94154,"(40.82682, -73.94154)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4492085,Sedan,Sedan,Sedan,, +01/03/2022,18:38,BROOKLYN,11231,40.684814,-73.999084,"(40.684814, -73.999084)",DE GRAW STREET,HENRY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,13:00,,,40.774734,-73.98818,"(40.774734, -73.98818)",WEST 64 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,0:00,BRONX,10451,40.820984,-73.91294,"(40.820984, -73.91294)",,,467 EAST 157 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492014,Sedan,,,, +01/03/2022,20:30,,,40.8481,-73.90145,"(40.8481, -73.90145)",EAST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4491832,Taxi,,,, +01/03/2022,17:45,BRONX,10459,40.82546,-73.89036,"(40.82546, -73.89036)",,,1126 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492019,Sedan,,,, +01/03/2022,20:09,BRONX,10474,40.81235,-73.88497,"(40.81235, -73.88497)",RANDALL AVENUE,BRYANT AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4491937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,21:17,BROOKLYN,11218,40.642384,-73.98042,"(40.642384, -73.98042)",CHURCH AVENUE,DAHILL ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492317,Sedan,,,, +01/03/2022,1:45,BROOKLYN,11229,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491574,Sedan,Sedan,,, +01/03/2022,18:00,QUEENS,11420,40.668884,-73.81173,"(40.668884, -73.81173)",135 AVENUE,128 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4491801,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/27/2021,21:00,BRONX,10462,40.8349,-73.839966,"(40.8349, -73.839966)",COMMERCE AVENUE,NEWBOLD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4492201,Sedan,,,, +01/03/2022,19:54,BRONX,10454,40.808662,-73.921875,"(40.808662, -73.921875)",,,426 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492300,Sedan,Sedan,,, +01/03/2022,1:10,QUEENS,11419,40.69405,-73.82802,"(40.69405, -73.82802)",ATLANTIC AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4491600,Sedan,,,, +12/31/2021,11:25,BRONX,10461,40.84899,-73.85035,"(40.84899, -73.85035)",WILLIAMSBRIDGE ROAD,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492338,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,19:51,,,40.632538,-73.883194,"(40.632538, -73.883194)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491781,Sedan,,,, +01/03/2022,11:40,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491939,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,6:30,,,40.703114,-73.921585,"(40.703114, -73.921585)",HART STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491828,Sedan,,,, +01/01/2022,13:35,BROOKLYN,11216,40.680088,-73.94398,"(40.680088, -73.94398)",BROOKLYN AVENUE,FULTON STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4492194,Bike,,,, +01/03/2022,16:00,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492234,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,11:01,STATEN ISLAND,10301,40.63837,-74.09075,"(40.63837, -74.09075)",,,282 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491871,Sedan,,,, +01/03/2022,13:30,,,40.731064,-74.00142,"(40.731064, -74.00142)",WEST 3 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491723,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,0:00,QUEENS,11364,40.74705,-73.75565,"(40.74705, -73.75565)",,,64-45 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491747,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,20:00,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4492108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/03/2022,9:55,QUEENS,11365,40.732376,-73.79344,"(40.732376, -73.79344)",,,69-06 UTOPIA PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/02/2022,8:15,MANHATTAN,10032,40.83923,-73.94555,"(40.83923, -73.94555)",RIVERSIDE DRIVE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492171,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,10:00,,,40.81464,-73.885574,"(40.81464, -73.885574)",BRYANT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491712,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,18:22,,,40.632736,-74.1355,"(40.632736, -74.1355)",,,134 PALMER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492052,Sedan,Sedan,,, +01/01/2022,6:03,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",ROGERS AVENUE,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492116,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,14:55,BROOKLYN,11208,40.66717,-73.88086,"(40.66717, -73.88086)",NEW LOTS AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4491738,Sedan,,,, +01/03/2022,15:00,QUEENS,11373,40.74094,-73.870865,"(40.74094, -73.870865)",93 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491845,Sedan,,,, +01/03/2022,16:00,MANHATTAN,10016,40.748436,-73.984566,"(40.748436, -73.984566)",WEST 34 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492288,Bus,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,12:12,QUEENS,11365,,,,,,167-18 JEWEL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/02/2022,21:30,QUEENS,11692,,,,,,203 Beach 77st,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492189,Sedan,,,, +01/03/2022,18:25,STATEN ISLAND,10305,40.59136,-74.08785,"(40.59136, -74.08785)",HYLAN BOULEVARD,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491786,Bus,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,17:55,QUEENS,11103,40.76473,-73.91211,"(40.76473, -73.91211)",28 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491851,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,21:40,,,40.84985,-73.92671,"(40.84985, -73.92671)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492258,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/20/2021,12:55,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,WEST 145 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492101,Box Truck,,,, +01/03/2022,6:20,,,40.62495,-74.14127,"(40.62495, -74.14127)",,,344 DECKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491651,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,4:00,,,40.839237,-73.94688,"(40.839237, -73.94688)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Tire Failure/Inadequate,Obstruction/Debris,,,,4492166,Sedan,Sedan,,, +01/03/2022,19:15,,,40.66188,-73.94557,"(40.66188, -73.94557)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4491772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,22:53,BROOKLYN,11203,40.64437,-73.93061,"(40.64437, -73.93061)",CLARENDON ROAD,EAST 49 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4492120,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/02/2022,17:48,QUEENS,11379,40.716434,-73.88845,"(40.716434, -73.88845)",69 STREET,62 DRIVE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4492071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,7:30,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491893,Sedan,Sedan,,, +12/15/2021,10:40,BRONX,10457,40.851566,-73.89589,"(40.851566, -73.89589)",,,464 EAST 180 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,21:35,,,40.891838,-73.86275,"(40.891838, -73.86275)",BRONX BOULEVARD,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4491951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,PK,, +01/02/2022,14:50,,,40.681137,-73.95567,"(40.681137, -73.95567)",FULTON STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4492266,Sedan,,,, +01/03/2022,17:44,BROOKLYN,11223,40.594223,-73.96089,"(40.594223, -73.96089)",,,2542 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491807,Taxi,Sedan,,, +01/02/2022,15:21,BRONX,10461,40.843212,-73.83894,"(40.843212, -73.83894)",WATERS PLACE,FINK AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492178,Station Wagon/Sport Utility Vehicle,Bike,,, +12/04/2021,8:00,,,40.849728,-73.94079,"(40.849728, -73.94079)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4492209,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/03/2022,19:43,BROOKLYN,11208,40.655655,-73.87344,"(40.655655, -73.87344)",VANDALIA AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,14:45,MANHATTAN,10019,,,,6th ave,west 58th street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4492130,Box Truck,Van,Station Wagon/Sport Utility Vehicle,Sedan, +01/03/2022,7:05,,,40.79024,-73.97315,"(40.79024, -73.97315)",WEST 90 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491686,Dump,Sedan,,, +01/03/2022,9:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491994,Flat Bed,Sedan,,, +01/03/2022,18:14,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491752,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/03/2022,13:00,,,40.635403,-73.95718,"(40.635403, -73.95718)",FARRAGUT ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492023,Sedan,Sedan,,, +01/03/2022,20:20,QUEENS,11420,40.66691,-73.822014,"(40.66691, -73.822014)",150 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491799,Sedan,,,, +01/03/2022,17:03,QUEENS,11374,40.73011,-73.86509,"(40.73011, -73.86509)",63 AVENUE,SAUNDERS STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491988,Station Wagon/Sport Utility Vehicle,,,, +12/28/2021,9:47,BROOKLYN,11230,40.611702,-73.97046,"(40.611702, -73.97046)",AVENUE O,EAST 4 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4492307,Sedan,Sedan,Sedan,, +01/03/2022,18:25,MANHATTAN,10128,40.784245,-73.9471,"(40.784245, -73.9471)",EAST 96 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491883,3-Door,Sedan,,, +01/03/2022,15:00,,,40.613186,-73.9749,"(40.613186, -73.9749)",24 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4492319,Bike,,,, +01/03/2022,0:15,BROOKLYN,11236,40.634045,-73.88934,"(40.634045, -73.88934)",,,9729 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,17:00,BRONX,10473,40.8262,-73.85286,"(40.8262, -73.85286)",,,948 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492199,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,19:00,BROOKLYN,11226,40.639984,-73.94842,"(40.639984, -73.94842)",NEWKIRK AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4492117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/03/2022,14:14,BROOKLYN,11208,40.67226,-73.87557,"(40.67226, -73.87557)",LOGAN STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4491737,Sedan,Sedan,Sedan,, +01/03/2022,17:25,,,,,,G.C.P. / C.I.P. (CDR),,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4491742,Sedan,,,, +06/18/2021,0:14,,,,,,CROSS BRONX EXTENTION,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4428586,Sedan,,,, +01/01/2022,5:50,MANHATTAN,10031,40.827103,-73.94996,"(40.827103, -73.94996)",BROADWAY,WEST 146 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492086,Taxi,Taxi,,, +01/03/2022,6:30,QUEENS,11369,40.764343,-73.88319,"(40.764343, -73.88319)",86 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491762,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/15/2021,17:00,BROOKLYN,11212,40.65463,-73.92201,"(40.65463, -73.92201)",REMSEN AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492109,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,17:00,BROOKLYN,11234,40.60557,-73.91465,"(40.60557, -73.91465)",EAST 64 STREET,NATIONAL DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491785,Bus,Sedan,,, +01/03/2022,14:00,BROOKLYN,11226,40.655106,-73.95548,"(40.655106, -73.95548)",,,119 CLARKSON AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4492146,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Bus, +01/03/2022,11:10,BRONX,10457,40.847576,-73.90633,"(40.847576, -73.90633)",EAST 176 STREET,MONROE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4491704,Sedan,,,, +01/01/2022,2:00,,,,,,12 AVENUE,WEST 137 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492087,Sedan,Sedan,,, +01/02/2022,20:55,QUEENS,11379,40.71599,-73.87209,"(40.71599, -73.87209)",80 STREET,JUNIPER VALLEY ROAD,,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4492135,E-Scooter,,,, +01/01/2022,12:20,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,Other Vehicular,Other Vehicular,Unspecified,,4492170,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/03/2022,8:10,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",GLENWOOD ROAD,UTICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491715,Carry All,Bus,,, +01/03/2022,15:00,QUEENS,11372,40.75592,-73.87598,"(40.75592, -73.87598)",,,33-26 92 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4491756,Sedan,,,, +01/03/2022,16:27,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491780,Sedan,,,, +01/03/2022,10:45,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",108 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491941,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,3:00,BROOKLYN,11206,40.6951,-73.949165,"(40.6951, -73.949165)",,,562 MARCY AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4492198,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,13:00,MANHATTAN,10011,40.73635,-73.993385,"(40.73635, -73.993385)",,,90 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491722,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,8:15,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4491795,Sedan,Sedan,,, +01/03/2022,4:47,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4491685,Pick-up Truck,Bus,,, +01/03/2022,13:00,BROOKLYN,11203,40.66297,-73.94097,"(40.66297, -73.94097)",,,621 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4491773,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,2:06,,,40.83301,-73.95027,"(40.83301, -73.95027)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492080,Convertible,,,, +01/03/2022,15:17,,,40.637962,-74.01058,"(40.637962, -74.01058)",7 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4491768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/01/2022,5:21,BROOKLYN,11204,40.61999,-73.98392,"(40.61999, -73.98392)",,,1954 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4492306,Sedan,Sedan,Sedan,Sedan,Sedan +01/04/2021,6:45,BROOKLYN,11225,40.66522,-73.94746,"(40.66522, -73.94746)",,,513 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492148,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,11:00,BROOKLYN,11206,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491829,Sedan,Flat Bed,,, +01/03/2022,18:50,STATEN ISLAND,10310,40.63469,-74.1062,"(40.63469, -74.1062)",,,708 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492104,Sedan,,,, +01/01/2022,1:50,MANHATTAN,10032,40.833668,-73.94006,"(40.833668, -73.94006)",,,463 WEST 159 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492165,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,12:00,QUEENS,11372,40.75199,-73.895164,"(40.75199, -73.895164)",,,33-54 71 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492127,Sedan,,,, +01/03/2022,23:55,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4491926,Station Wagon/Sport Utility Vehicle,,,, +12/30/2021,2:13,MANHATTAN,10033,40.847427,-73.931404,"(40.847427, -73.931404)",AMSTERDAM AVENUE,WEST 180 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4492233,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,23:49,BROOKLYN,11210,40.61372,-73.952126,"(40.61372, -73.952126)",EAST 22 STREET,AVENUE O,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4491821,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/02/2022,22:30,BROOKLYN,11212,40.66871,-73.91731,"(40.66871, -73.91731)",PITKIN AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492289,Sedan,Sedan,Sedan,, +01/03/2022,18:25,BROOKLYN,11235,40.586536,-73.946434,"(40.586536, -73.946434)",VOORHIES AVENUE,DOOLEY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491806,Sedan,,,, +01/03/2022,6:26,,,40.825935,-73.83637,"(40.825935, -73.83637)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Illnes,,,,,4491606,Sedan,,,, +01/01/2022,21:30,BROOKLYN,11204,40.624893,-73.984406,"(40.624893, -73.984406)",55 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492322,Sedan,Sedan,,, +01/03/2022,17:00,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491748,Sedan,,,, +01/03/2022,4:35,BRONX,10457,40.85108,-73.8948,"(40.85108, -73.8948)",EAST 180 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491862,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,20:30,,,40.707664,-73.78772,"(40.707664, -73.78772)",172 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4492203,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,18:22,QUEENS,11385,40.705772,-73.89997,"(40.705772, -73.89997)",60 PLACE,PUTNAM AVENUE,,1,0,0,0,1,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4491872,E-Bike,Sedan,Station Wagon/Sport Utility Vehicle,, +04/03/2022,3:57,,,40.73367,-73.85766,"(40.73367, -73.85766)",62 DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4515875,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/05/2021,6:20,,,40.873283,-73.870384,"(40.873283, -73.870384)",ROSEWOOD STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4492211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +01/03/2022,13:00,QUEENS,11368,40.746685,-73.856316,"(40.746685, -73.856316)",,,108-04 47 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,18:00,BROOKLYN,11234,40.6217,-73.904564,"(40.6217, -73.904564)",AVENUE U,ROYCE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491787,Sedan,Sedan,,, +01/03/2022,13:31,BROOKLYN,11218,40.642384,-73.98042,"(40.642384, -73.98042)",DAHILL ROAD,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492312,Sedan,,,, +01/01/2022,17:04,QUEENS,11432,40.712883,-73.79715,"(40.712883, -73.79715)",,,85-16 167 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492352,Sedan,,,, +11/30/2021,7:15,MANHATTAN,10030,40.8232,-73.94515,"(40.8232, -73.94515)",,,676 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492099,Sedan,,,, +01/02/2022,16:30,,,40.55554,-74.17562,"(40.55554, -74.17562)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492190,Sedan,,,, +01/03/2022,19:18,,,,,,,,BRONX RIVER PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4491889,Sedan,,,, +01/03/2022,7:40,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,Unspecified,4491999,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +12/28/2021,15:00,,,40.863163,-73.91988,"(40.863163, -73.91988)",10 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492255,Moped,Pick-up Truck,,, +12/31/2021,20:00,QUEENS,11355,40.760242,-73.82144,"(40.760242, -73.82144)",,,41-08 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492045,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,0:00,,,40.862392,-73.91802,"(40.862392, -73.91802)",WEST 205 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492267,Sedan,Sedan,,, +01/03/2022,1:30,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4491590,Sedan,Sedan,,, +12/30/2021,18:30,BROOKLYN,11204,40.62717,-73.98214,"(40.62717, -73.98214)",18 AVENUE,51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492314,Sedan,,,, +01/03/2022,0:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491818,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/24/2021,14:35,BROOKLYN,11233,40.682304,-73.92596,"(40.682304, -73.92596)",PATCHEN AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,Unspecified,Unspecified,,4492118,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/03/2022,17:15,,,,,,W/B GCP EXIT RAMP,KINGSBURY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491743,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,15:50,BROOKLYN,11236,40.652096,-73.90857,"(40.652096, -73.90857)",EAST 98 STREET,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492110,Station Wagon/Sport Utility Vehicle,Bus,,, +01/01/2022,1:28,BRONX,10453,40.858707,-73.9037,"(40.858707, -73.9037)",JEROME AVENUE,EAST 183 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492364,Moped,Sedan,,, +12/20/2021,16:00,BROOKLYN,11206,40.699406,-73.95338,"(40.699406, -73.95338)",NOSTRAND AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492204,Sedan,,,, +01/03/2022,9:30,QUEENS,11691,40.609566,-73.759415,"(40.609566, -73.759415)",ENRIGHT ROAD,PEARL STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4491902,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,9:50,BRONX,10455,40.811195,-73.90882,"(40.811195, -73.90882)",,,480 CONCORD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491949,Bus,Sedan,,, +01/02/2022,12:00,BRONX,10467,40.863773,-73.87039,"(40.863773, -73.87039)",,,2526 BRONX PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492179,Sedan,,,, +12/30/2021,9:03,,,40.830265,-73.95131,"(40.830265, -73.95131)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492081,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/03/2022,16:35,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,15:20,,,,,,EAST 34 STREET,KINGS HIGHWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491784,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,5:22,,,40.73706,-73.85266,"(40.73706, -73.85266)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,,,,4491706,Convertible,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,15:15,BRONX,10463,40.881996,-73.89618,"(40.881996, -73.89618)",,,3820 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492088,FORD,,,, +01/03/2022,19:04,BROOKLYN,11208,40.674786,-73.8762,"(40.674786, -73.8762)",PITKIN AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491848,Box Truck,Pick-up Truck,,, +01/03/2022,20:00,QUEENS,11413,40.660767,-73.757416,"(40.660767, -73.757416)",146 AVENUE,223 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4491769,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,11:06,QUEENS,11377,40.73931,-73.91947,"(40.73931, -73.91947)",46 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491790,Sedan,,,, +01/03/2022,1:15,,,40.61023,-74.10529,"(40.61023, -74.10529)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4492191,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,5:03,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4492139,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,Sedan +01/03/2022,7:27,BRONX,10468,40.871002,-73.893845,"(40.871002, -73.893845)",JEROME AVENUE,MORRIS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492150,E-Scooter,Sedan,,, +01/03/2022,9:30,QUEENS,11356,40.780144,-73.84876,"(40.780144, -73.84876)",22 AVENUE,119 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491703,Sedan,,,, +01/03/2022,20:18,,,40.715263,-73.976326,"(40.715263, -73.976326)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,Unspecified,,,,4491975,Sedan,Sedan,,, +01/03/2022,10:00,BRONX,10473,40.82066,-73.84213,"(40.82066, -73.84213)",,,635 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491736,Sedan,,,, +12/26/2021,19:00,,,40.819424,-73.955574,"(40.819424, -73.955574)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492098,Sedan,,,, +01/03/2022,5:45,,,40.747902,-73.8242,"(40.747902, -73.8242)",56 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,18:08,,,40.63552,-74.0167,"(40.63552, -74.0167)",65 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491797,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,9:00,BRONX,10455,40.8149,-73.9075,"(40.8149, -73.9075)",EAST 151 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4492133,Sedan,,,, +12/24/2021,14:30,MANHATTAN,10031,40.821926,-73.95376,"(40.821926, -73.95376)",,,3399 BROADWAY,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492079,Sedan,,,, +01/03/2022,20:07,,,40.74427,-73.87137,"(40.74427, -73.87137)",43 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4491754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,17:00,QUEENS,11385,40.700123,-73.90622,"(40.700123, -73.90622)",MYRTLE AVENUE,CYPRESS AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4492346,Bike,Sedan,Sedan,, +12/31/2021,15:04,BROOKLYN,11212,40.657383,-73.911514,"(40.657383, -73.911514)",LOTT AVENUE,AMBOY STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4492290,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/03/2022,14:20,BRONX,10457,40.84468,-73.88968,"(40.84468, -73.88968)",,,740 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491865,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,17:50,,,,,,WHITESTONE EXPRESSWAY,14 AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4428743,Sedan,Bike,,, +01/03/2022,16:30,,,40.697124,-73.91106,"(40.697124, -73.91106)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491830,Sedan,,,, +01/01/2022,16:05,,,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492197,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,14:25,,,40.578938,-73.98522,"(40.578938, -73.98522)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4492230,Sedan,,,, +01/03/2022,5:27,QUEENS,11436,40.683105,-73.798134,"(40.683105, -73.798134)",145 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,14:00,BRONX,10469,40.87561,-73.84773,"(40.87561, -73.84773)",,,3369 FENTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491749,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,13:12,BROOKLYN,11217,40.68728,-73.97979,"(40.68728, -73.97979)",,,49 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491720,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,21:00,STATEN ISLAND,10310,40.626392,-74.130356,"(40.626392, -74.130356)",,,1205 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492103,Sedan,,,, +12/30/2021,18:35,MANHATTAN,10032,40.83569,-73.93739,"(40.83569, -73.93739)",EDGECOMBE AVENUE,WEST 163 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492164,Station Wagon/Sport Utility Vehicle,Bike,,, +01/03/2022,9:30,BROOKLYN,11217,40.684868,-73.97317,"(40.684868, -73.97317)",,,147 SOUTH OXFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491774,Sedan,,,, +01/03/2022,17:00,,,40.607243,-73.98726,"(40.607243, -73.98726)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491935,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,9:20,BROOKLYN,11210,40.63385,-73.94097,"(40.63385, -73.94097)",,,931 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492122,Pick-up Truck,,,, +01/03/2022,10:30,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4492069,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +01/03/2022,12:40,,,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4491716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,6:33,,,40.666355,-73.80163,"(40.666355, -73.80163)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Accelerator Defective,Unspecified,,,,4491646,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,18:14,BROOKLYN,11229,40.60913,-73.95741,"(40.60913, -73.95741)",KINGS HIGHWAY,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491805,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,20:10,MANHATTAN,10007,40.711994,-74.00811,"(40.711994, -74.00811)",BROADWAY,BARCLAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491942,Sedan,FDNY AMBUL,,, +01/03/2022,18:06,BRONX,10469,40.86997,-73.83587,"(40.86997, -73.83587)",,,2906 ELY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491779,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,21:15,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pavement Slippery,,,,4492304,Sedan,Sedan,,, +01/02/2022,20:24,BROOKLYN,11218,40.635715,-73.97661,"(40.635715, -73.97661)",,,223 DITMAS AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4492323,E-Bike,,,, +12/16/2021,16:45,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4492202,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,18:08,MANHATTAN,10019,40.763103,-73.98613,"(40.763103, -73.98613)",,,302 WEST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491823,Bus,,,, +12/24/2021,18:19,,,40.85901,-73.927635,"(40.85901, -73.927635)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492217,Sedan,,,, +12/31/2021,19:35,BRONX,10468,40.873672,-73.90176,"(40.873672, -73.90176)",SEDGWICK AVENUE,WEST 229 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492092,Bus,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,14:00,BROOKLYN,11238,40.687416,-73.972694,"(40.687416, -73.972694)",LAFAYETTE AVENUE,CUMBERLAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491744,Sedan,Sedan,,, +01/03/2022,4:36,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",ROGERS AVENUE,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4492119,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +12/28/2021,16:48,MANHATTAN,10034,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492084,Sedan,Sedan,,, +01/03/2022,16:05,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491733,Sedan,,,, +02/17/2022,16:50,,,0,0,"(0.0, 0.0)",NORTHERN BOULEVARD,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4504755,Pick-up Truck,,,, +06/18/2021,17:33,BRONX,10464,,,,ORCHARD BEACH ROAD,BARTOW CIRCLE,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4428756,Motorcycle,,,, +01/03/2022,0:45,BROOKLYN,11232,40.649094,-74.01694,"(40.649094, -74.01694)",2 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491770,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,17:13,,,40.839176,-73.94114,"(40.839176, -73.94114)",WEST 165 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492168,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/29/2021,9:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492153,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,11:00,QUEENS,11434,40.665134,-73.78155,"(40.665134, -73.78155)",,,145-07 156 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Speed,,,,4491709,Box Truck,Sedan,,, +01/03/2022,22:15,BROOKLYN,11203,40.64361,-73.94285,"(40.64361, -73.94285)",,,3602 CLARENDON ROAD,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4492205,Sedan,Sedan,,, +01/03/2022,10:55,BROOKLYN,11215,40.67678,-73.98348,"(40.67678, -73.98348)",4 AVENUE,PRESIDENT STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4491886,Pedicab,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,13:01,BROOKLYN,11204,40.626114,-73.97886,"(40.626114, -73.97886)",,,1905 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492311,Sedan,,,, +01/02/2022,23:55,BROOKLYN,11219,40.63223,-73.99504,"(40.63223, -73.99504)",13 AVENUE,54 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492316,Sedan,Sedan,,, +10/08/2021,19:34,QUEENS,11412,40.6919944,-73.7611009,"(40.6919944, -73.7611009)",LINDEN BOULEVARD,190 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467206,Sedan,Sedan,,, +10/02/2021,22:55,,,40.6213645,-74.0219785,"(40.6213645, -74.0219785)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467224,Sedan,,,, +10/11/2021,16:15,,,40.844644,-73.9057681,"(40.844644, -73.9057681)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467235,Sedan,,,, +10/10/2021,5:20,,,40.8283988,-73.9452966,"(40.8283988, -73.9452966)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4467237,Sedan,Sedan,Sedan,, +10/05/2021,15:05,BROOKLYN,11208,40.6667077,-73.8718221,"(40.6667077, -73.8718221)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467249,Sedan,Sedan,,, +09/14/2021,16:00,BROOKLYN,11217,40.6805489,-73.9732592,"(40.6805489, -73.9732592)",,,513 BERGEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467244,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,14:20,QUEENS,11101,40.7431681,-73.9427049,"(40.7431681, -73.9427049)",,,47-07 PEARSON PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467195,Sedan,,,, +12/11/2021,16:20,STATEN ISLAND,10305,40.599052,-74.08223,"(40.599052, -74.08223)",WINFIELD AVENUE,WOODLAWN AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4485465,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,20:10,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486166,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,4:30,,,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485761,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,19:50,BROOKLYN,11238,40.683037,-73.96478,"(40.683037, -73.96478)",WASHINGTON AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485451,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,10:00,BROOKLYN,11204,40.619194,-73.9795,"(40.619194, -73.9795)",58 STREET,21 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inexperience,,,,4486271,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,9:00,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",LIBERTY AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486040,Sedan,Sedan,,, +12/11/2021,11:50,MANHATTAN,10039,40.825573,-73.94121,"(40.825573, -73.94121)",,,130 BRADHURST AVENUE,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,Unspecified,,,4485937,Taxi,Bike,Sedan,, +10/15/2021,18:40,MANHATTAN,10036,,,,WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470831,Sedan,Box Truck,,, +12/11/2021,1:00,,,40.76132,-73.9171,"(40.76132, -73.9171)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4485563,Sedan,Sedan,Sedan,Sedan, +12/11/2021,8:30,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485821,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,4:00,,,40.84797,-73.924774,"(40.84797, -73.924774)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485953,Tractor Truck Diesel,Sedan,,, +12/11/2021,4:45,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485892,Sedan,Sedan,,, +12/11/2021,22:00,QUEENS,11422,40.678417,-73.729225,"(40.678417, -73.729225)",BROOKVILLE BOULEVARD,130 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4485659,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,1:47,MANHATTAN,10009,40.725777,-73.98661,"(40.725777, -73.98661)",1 AVENUE,EAST 5 STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4491597,Sedan,Sedan,Sedan,, +01/03/2022,20:43,QUEENS,11104,40.745438,-73.923,"(40.745438, -73.923)",41 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491969,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,23:47,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4491816,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/03/2022,19:31,MANHATTAN,10016,40.745712,-73.972206,"(40.745712, -73.972206)",EAST 37 STREET,QUEENS MIDTOWN TUNNEL ENTRANCE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,4:10,QUEENS,11368,40.74508,-73.86438,"(40.74508, -73.86438)",CORONA AVENUE,NATIONAL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,19:46,BROOKLYN,11235,40.578026,-73.95413,"(40.578026, -73.95413)",,,161 CORBIN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492010,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,14:49,BROOKLYN,11217,40.682316,-73.977135,"(40.682316, -73.977135)",,,430 DEAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4491766,Sedan,Bus,,, +01/03/2022,7:35,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Turning Improperly,,,,4491695,Box Truck,Box Truck,,, +12/29/2021,19:40,BROOKLYN,11226,40.65257,-73.95132,"(40.65257, -73.95132)",,,201 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492112,Sedan,Bike,,, +12/29/2021,21:35,,,,,,BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4492193,,,,, +01/03/2022,4:50,,,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS PLAZA SOUTH,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491792,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,21:35,,,40.69157,-73.99921,"(40.69157, -73.99921)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,0:15,,,40.702484,-73.85981,"(40.702484, -73.85981)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492142,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,10:42,QUEENS,11101,40.750977,-73.934746,"(40.750977, -73.934746)",NORTHERN BOULEVARD,40 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491834,Sedan,,,, +01/03/2022,21:50,MANHATTAN,10009,40.72775,-73.97619,"(40.72775, -73.97619)",EAST 13 STREET,AVENUE C,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491900,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,8:00,,,40.738403,-73.93864,"(40.738403, -73.93864)",BORDEN AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492363,Sedan,Box Truck,,, +01/03/2022,23:54,BROOKLYN,11213,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,UTICA AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,Unspecified,,4492283,Sedan,Sedan,Sedan,Sedan, +01/03/2022,20:30,QUEENS,11432,40.710583,-73.78356,"(40.710583, -73.78356)",179 STREET,90 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4491945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,19:30,MANHATTAN,10036,40.759163,-73.988396,"(40.759163, -73.988396)",WEST 45 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4491824,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,15:00,,,40.855366,-73.940254,"(40.855366, -73.940254)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492226,Sedan,,,, +01/02/2022,3:29,BROOKLYN,11232,40.66112,-74.00061,"(40.66112, -74.00061)",3 AVENUE,26 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492246,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,18:30,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492294,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/03/2022,17:00,BRONX,10462,40.84504,-73.853584,"(40.84504, -73.853584)",,,1005 PIERCE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4491869,Sedan,,,, +02/20/2022,2:00,BROOKLYN,11230,40.630608,-73.97202,"(40.630608, -73.97202)",,,155 PARKVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504368,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/14/2022,20:54,MANHATTAN,10028,40.779366,-73.95527,"(40.779366, -73.95527)",,,147 EAST 86 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4504865,Station Wagon/Sport Utility Vehicle,Ambulance,,, +02/20/2022,11:38,QUEENS,11368,40.74457,-73.858986,"(40.74457, -73.858986)",,,48-12 104 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504181,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,16:30,QUEENS,11418,40.698574,-73.82523,"(40.698574, -73.82523)",,,124-15 89 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504240,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,0:00,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516333,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,15:00,,,40.66015,-73.85333,"(40.66015, -73.85333)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,1:30,,,40.836403,-73.875595,"(40.836403, -73.875595)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515698,Tractor Truck Diesel,Sedan,,, +04/03/2022,14:06,BROOKLYN,11238,40.679047,-73.95857,"(40.679047, -73.95857)",PACIFIC STREET,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516159,Sedan,,,, +03/31/2022,12:45,MANHATTAN,10002,40.718704,-73.98526,"(40.718704, -73.98526)",,,80 CLINTON STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4516328,Station Wagon/Sport Utility Vehicle,Bike,,, +04/03/2022,0:29,BROOKLYN,11238,40.67942,-73.96823,"(40.67942, -73.96823)",VANDERBILT AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4516358,Sedan,Bike,,, +04/03/2022,5:20,,,40.69579,-73.93313,"(40.69579, -73.93313)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515721,Station Wagon/Sport Utility Vehicle,FOOD DELIV,,, +04/03/2022,18:30,,,40.744526,-73.77161,"(40.744526, -73.77161)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515839,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,1:30,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4516558,Sedan,,,, +03/31/2022,11:50,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4516563,Sedan,Sedan,,, +04/03/2022,16:25,,,,,,ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4515866,Sedan,Sedan,,, +04/03/2022,20:52,,,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,7:40,,,40.813564,-73.951324,"(40.813564, -73.951324)",WEST 129 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516541,Sedan,Sedan,,, +03/31/2022,11:00,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516372,Box Truck,Taxi,,, +03/30/2022,10:56,,,40.778606,-73.98163,"(40.778606, -73.98163)",WEST 72 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,9:53,,,40.73885,-73.810356,"(40.73885, -73.810356)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515766,Bus,Sedan,,, +04/03/2022,0:00,,,40.670666,-73.80103,"(40.670666, -73.80103)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4515886,Sedan,Sedan,,, +04/03/2022,2:45,BROOKLYN,11226,40.650078,-73.94757,"(40.650078, -73.94757)",,,31 EAST 32 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4515628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,14:00,,,40.7418,-73.72815,"(40.7418, -73.72815)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515860,Sedan,Sedan,,, +04/01/2022,4:50,,,40.516335,-74.23283,"(40.516335, -74.23283)",PAGE AVENUE,,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,Unspecified,,,,4516614,Bus,Sedan,,, +04/03/2022,13:26,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",BAYCHESTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516137,Taxi,Sedan,,, +04/03/2022,16:40,BROOKLYN,11234,40.61223,-73.9304,"(40.61223, -73.9304)",,,1926 RYDER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/20/2022,1:44,,,40.75424,-73.897934,"(40.75424, -73.897934)",NORTHERN BOULEVARD,68 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516430,Sedan,,,, +03/31/2022,20:58,,,,,,MAJOR DEEGAN EXPRESSWAY N/B RAMP,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516337,Sedan,,,, +04/03/2022,9:04,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4515939,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,12:57,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4516241,Sedan,Sedan,Sedan,, +04/02/2022,18:30,BROOKLYN,11217,40.68251,-73.976326,"(40.68251, -73.976326)",FLATBUSH AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516352,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,14:40,BRONX,10461,40.84854,-73.85526,"(40.84854, -73.85526)",,,1026 MORRIS PARK AVENUE,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4516314,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,10:30,,,40.6583141,-74.0035249,"(40.6583141, -74.0035249)",31 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466589,Sedan,,,, +04/03/2022,4:05,MANHATTAN,10010,40.73831,-73.98775,"(40.73831, -73.98775)",PARK AVENUE SOUTH,EAST 20 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516051,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,8:30,,,40.63512,-74.15312,"(40.63512, -74.15312)",,,64 VANNAME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516400,Sedan,,,, +03/27/2022,3:08,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516518,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,1:15,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4515920,LIMO,Taxi,,, +04/01/2022,14:55,MANHATTAN,10032,40.831177,-73.942085,"(40.831177, -73.942085)",,,460 WEST 155 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4516413,Station Wagon/Sport Utility Vehicle,Moped,,, +04/03/2022,21:32,,,40.698677,-73.95886,"(40.698677, -73.95886)",FRANKLIN AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4515906,Sedan,Sedan,,, +04/03/2022,3:10,QUEENS,11374,40.73611,-73.85639,"(40.73611, -73.85639)",102 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4515611,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,22:35,,,40.751545,-73.87085,"(40.751545, -73.87085)",JUNCTION BOULEVARD,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4516447,Bike,,,, +04/03/2022,22:03,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4516636,Sedan,Pick-up Truck,,, +04/03/2022,17:40,BROOKLYN,11213,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515831,Sedan,Sedan,,, +04/03/2022,3:47,BROOKLYN,11219,40.636333,-73.99883,"(40.636333, -73.99883)",,,1074 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515981,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,15:54,MANHATTAN,10021,40.771927,-73.95774,"(40.771927, -73.95774)",,,241 EAST 76 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516595,Taxi,Bike,,, +04/01/2022,14:25,BROOKLYN,11203,40.642586,-73.94193,"(40.642586, -73.94193)",,,592 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516508,Sedan,,,, +03/28/2022,18:40,,,40.635876,-74.16751,"(40.635876, -74.16751)",ARLINGTON AVENUE,ARLINGTON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516383,Sedan,DSNY sanit,,, +04/03/2022,15:05,BROOKLYN,11217,40.68875,-73.974915,"(40.68875, -73.974915)",,,25 SOUTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4515998,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,23:20,BROOKLYN,11218,40.645767,-73.98529,"(40.645767, -73.98529)",FORT HAMILTON PARKWAY,CHESTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4516647,Sedan,Sedan,Sedan,, +04/03/2022,18:15,,,40.733738,-73.95485,"(40.733738, -73.95485)",MANHATTAN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516121,Pick-up Truck,,,, +03/30/2022,23:20,BRONX,10457,40.84414,-73.900536,"(40.84414, -73.900536)",,,450 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,5:15,QUEENS,11420,40.681004,-73.81257,"(40.681004, -73.81257)",128 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4515946,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,17:34,QUEENS,11419,40.693382,-73.83039,"(40.693382, -73.83039)",,,116-02 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4515880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,23:59,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516441,Sedan,,,, +04/01/2022,12:30,MANHATTAN,10024,,,,riverside dr,west 80 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516462,Sedan,Sedan,,, +04/03/2022,14:40,,,40.67553,-73.96319,"(40.67553, -73.96319)",GRAND AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4516200,Station Wagon/Sport Utility Vehicle,Van,,, +04/01/2022,14:40,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516366,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,19:00,,,40.850067,-73.9449,"(40.850067, -73.9449)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516025,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,4:15,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516673,Sedan,Sedan,,, +04/03/2022,18:26,BROOKLYN,11208,40.66638,-73.86109,"(40.66638, -73.86109)",FORBELL STREET,STANLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516095,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,16:55,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4491981,Sedan,,,, +04/03/2022,0:21,,,40.695114,-73.93194,"(40.695114, -73.93194)",BROADWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516533,Sedan,,,, +03/28/2022,12:35,,,40.695496,-73.78394,"(40.695496, -73.78394)",110 AVENUE,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4516404,Sedan,,,, +03/31/2022,7:14,STATEN ISLAND,10304,40.62962,-74.07667,"(40.62962, -74.07667)",BAY STREET,WAVE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516603,Sedan,,,, +04/03/2022,2:55,BROOKLYN,11208,40.68559,-73.87207,"(40.68559, -73.87207)",,,455 RIDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516103,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,22:25,,,40.651047,-73.86689,"(40.651047, -73.86689)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4516577,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/23/2022,7:30,,,40.607605,-74.16246,"(40.607605, -74.16246)",,,1680 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4516407,Box Truck,,,, +04/03/2022,0:16,MANHATTAN,10016,40.752197,-73.981834,"(40.752197, -73.981834)",WEST 40 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4515585,Sprinter V,Sedan,Station Wagon/Sport Utility Vehicle,, +03/31/2022,16:12,QUEENS,11423,40.708927,-73.77733,"(40.708927, -73.77733)",JAMAICA AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516495,Sedan,Sedan,,, +04/03/2022,17:30,BROOKLYN,11210,40.62617,-73.94193,"(40.62617, -73.94193)",,,1145 EAST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516442,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,17:30,BROOKLYN,11206,40.702408,-73.94751,"(40.702408, -73.94751)",,,311 WALLABOUT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,18:05,MANHATTAN,10038,40.706406,-74.00456,"(40.706406, -74.00456)",JOHN STREET,FRONT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516306,Taxi,,,, +04/03/2022,10:55,STATEN ISLAND,10306,40.554287,-74.132805,"(40.554287, -74.132805)",JUSTIN AVENUE,THOLLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515811,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,13:33,BRONX,10463,40.88261,-73.89257,"(40.88261, -73.89257)",GOUVERNEUR AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516266,Sedan,,,, +04/03/2022,0:36,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4516473,Sedan,Sedan,,, +04/01/2022,19:20,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516384,Sedan,,,, +04/03/2022,10:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4516050,Sedan,,,, +04/03/2022,18:42,BRONX,10455,40.81626,-73.91421,"(40.81626, -73.91421)",BROOK AVENUE,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4516078,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,6:35,,,,,,FDR DRIVE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4516361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,21:40,BRONX,10469,40.871014,-73.84423,"(40.871014, -73.84423)",,,1474 HAMMERSLEY AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4516140,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,17:00,,,40.74803,-73.83315,"(40.74803, -73.83315)",BOOTH MEMORIAL AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515843,Sedan,,,, +04/03/2022,9:51,BROOKLYN,11238,40.683697,-73.97099,"(40.683697, -73.97099)",,,452 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515872,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2022,8:20,,,40.6517,-73.97698,"(40.6517, -73.97698)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,12:30,MANHATTAN,10018,40.75632,-73.999275,"(40.75632, -73.999275)",,,515 WEST 36 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4515699,Sedan,Sedan,,, +04/03/2022,17:03,,,40.814144,-73.95571,"(40.814144, -73.95571)",AMSTERDAM AVENUE,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,,,4516542,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +04/03/2022,8:30,,,40.575924,-73.99114,"(40.575924, -73.99114)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516171,Sedan,Sedan,,, +04/03/2022,20:15,,,40.698406,-73.80647,"(40.698406, -73.80647)",SUTPHIN BOULEVARD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515957,E-Bike,,,, +10/12/2021,19:30,,,40.7431388,-73.8297229,"(40.7431388, -73.8297229)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4466595,Sedan,,,, +03/28/2022,7:00,QUEENS,11102,40.766434,-73.921776,"(40.766434, -73.921776)",,,30-12 31 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516667,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,11:30,,,,,,186 LANE,188 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428999,Sedan,Sedan,,, +04/02/2022,15:40,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516487,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,7:30,STATEN ISLAND,10312,40.534325,-74.193016,"(40.534325, -74.193016)",DRUMGOOLE ROAD EAST,HUGUENOT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4516609,Sedan,Sedan,,, +04/03/2022,14:30,BROOKLYN,11206,40.69973,-73.9402,"(40.69973, -73.9402)",,,800 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515852,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,9:55,QUEENS,11365,40.73483,-73.802055,"(40.73483, -73.802055)",67 AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4515881,Sedan,Sedan,,, +04/01/2022,14:36,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4516367,Van,,,, +04/03/2022,6:00,BRONX,10459,40.828358,-73.888016,"(40.828358, -73.888016)",,,1148 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516329,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +03/29/2022,0:11,BROOKLYN,11215,40.671383,-73.97454,"(40.671383, -73.97454)",,,162 8 AVENUE,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4516342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +03/10/2022,12:19,BRONX,10454,40.80934,-73.91248,"(40.80934, -73.91248)",SAINT MARYS STREET,CYPRESS AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4516674,Bus,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,8:46,BROOKLYN,11214,40.599335,-73.99412,"(40.599335, -73.99412)",BENSON AVENUE,BAY 32 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4515669,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,12:50,BROOKLYN,11229,40.605133,-73.94216,"(40.605133, -73.94216)",,,2944 AVENUE S,0,0,0,0,0,0,0,0,Unspecified,,,,,4516091,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,1:00,QUEENS,11356,40.77861,-73.836365,"(40.77861, -73.836365)",LINDEN PLACE,23 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4515786,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/12/2021,13:25,,,40.758327,-73.96894,"(40.758327, -73.96894)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466530,Sedan,Box Truck,,, +04/03/2022,7:10,BROOKLYN,11225,40.667233,-73.95158,"(40.667233, -73.95158)",,,1147 CARROLL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516190,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,9:12,MANHATTAN,10001,40.753525,-73.994545,"(40.753525, -73.994545)",,,357 WEST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515620,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,21:42,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515893,Sedan,Sedan,,, +03/31/2022,13:00,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516327,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,5:30,BRONX,10466,40.88773,-73.82843,"(40.88773, -73.82843)",,,3641 PROVOST AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516616,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,3:03,QUEENS,11419,40.695854,-73.82095,"(40.695854, -73.82095)",,,127-02 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516132,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,15:24,QUEENS,11361,40.75693,-73.77902,"(40.75693, -73.77902)",204 STREET,45 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515838,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,15:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516461,Pick-up Truck,Sedan,,, +04/03/2022,1:42,,,40.652626,-74.00617,"(40.652626, -74.00617)",39 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4516417,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/03/2022,14:00,BROOKLYN,11226,40.649887,-73.961815,"(40.649887, -73.961815)",,,1925 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515988,Sedan,Sedan,,, +04/03/2022,14:00,BROOKLYN,11235,40.590294,-73.952866,"(40.590294, -73.952866)",AVENUE Y,EAST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4515940,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/03/2022,14:20,QUEENS,11374,40.72857,-73.85809,"(40.72857, -73.85809)",65 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516371,Sedan,E-Bike,,, +03/30/2022,11:35,,,40.59131,-74.16122,"(40.59131, -74.16122)",,,795 KLONDIKE AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4516399,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,21:19,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516006,Sedan,,,, +03/16/2022,8:02,STATEN ISLAND,10304,40.630516,-74.076645,"(40.630516, -74.076645)",,,475 BAY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516639,Sedan,,,, +04/03/2022,10:28,MANHATTAN,10031,40.827057,-73.95202,"(40.827057, -73.95202)",WEST 145 STREET,RIVERSIDE DRIVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4515832,Station Wagon/Sport Utility Vehicle,Bike,,, +03/26/2022,21:20,STATEN ISLAND,10301,40.64129,-74.08978,"(40.64129, -74.08978)",,,110 HARVARD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4516601,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/03/2022,14:20,,,40.665363,-73.73102,"(40.665363, -73.73102)",SOUTH CONDUIT AVENUE,247 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4515751,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +03/28/2022,10:00,,,40.778095,-73.9783,"(40.778095, -73.9783)",WEST 73 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516480,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,18:43,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516227,Sedan,Sedan,,, +04/01/2022,11:17,BROOKLYN,11215,40.66959,-73.9959,"(40.66959, -73.9959)",14 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4516351,Sedan,LIMO,,, +04/03/2022,14:35,BROOKLYN,11228,40.622646,-74.00666,"(40.622646, -74.00666)",,,1255 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,16:15,MANHATTAN,10001,40.743797,-73.98902,"(40.743797, -73.98902)",WEST 26 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4516052,Taxi,Bike,,, +04/03/2022,20:50,BRONX,10460,40.842762,-73.88919,"(40.842762, -73.88919)",,,786 FAIRMOUNT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516312,Sedan,,,, +04/03/2022,2:49,,,40.809044,-73.92856,"(40.809044, -73.92856)",EAST 135 STREET,LINCOLN AVENUE,,3,0,0,0,0,0,3,0,Tire Failure/Inadequate,,,,,4516119,Sedan,,,, +04/03/2022,1:20,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",SPRINGFIELD BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4515746,Sedan,,,, +04/03/2022,6:03,BROOKLYN,11236,40.63574,-73.90853,"(40.63574, -73.90853)",AVENUE J,EAST 84 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4515612,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/03/2022,20:14,,,40.684002,-73.81603,"(40.684002, -73.81603)",109 AVENUE,126 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4515901,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/21/2022,11:30,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516562,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/03/2022,1:53,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516065,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,18:30,,,40.710316,-73.75247,"(40.710316, -73.75247)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515865,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/18/2022,12:45,,,,,,111 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516429,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,12:42,BRONX,10466,40.886223,-73.851234,"(40.886223, -73.851234)",,,4015 PAULDING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516451,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,14:45,,,,,,HUTCHINSON RIVER PARKWAY,LAFAYETTE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516382,Sedan,Sedan,Tractor Truck Diesel,, +03/06/2022,16:25,MANHATTAN,10014,40.730415,-74.00252,"(40.730415, -74.00252)",,,233 BLEECKER STREET,1,0,0,0,0,0,1,0,Other Vehicular,Cell Phone (hand-Held),,,,4516510,Taxi,Bike,,, +04/03/2022,4:15,,,40.585957,-73.93233,"(40.585957, -73.93233)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4515925,Station Wagon/Sport Utility Vehicle,,,, +03/22/2022,16:24,,,,,,South avenue,Lois lane,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516395,Sedan,,,, +03/31/2022,8:35,,,40.639866,-73.87788,"(40.639866, -73.87788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516559,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,20:45,BROOKLYN,11224,40.57944,-73.979614,"(40.57944, -73.979614)",NEPTUNE AVENUE,WEST 12 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516176,Bike,,,, +03/24/2022,17:50,,,40.671474,-73.93088,"(40.671474, -73.93088)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4516580,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,3:50,QUEENS,11364,40.75684,-73.74961,"(40.75684, -73.74961)",,,53-15 EAST HAMPTON BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4516617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/03/2022,14:40,BROOKLYN,11236,40.64953,-73.91633,"(40.64953, -73.91633)",REMSEN AVENUE,AVENUE B,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2020,17:21,BROOKLYN,11204,40.62183,-73.98693,"(40.62183, -73.98693)",,,1801 60 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429239,Sedan,,,, +04/03/2022,17:04,MANHATTAN,10013,40.720856,-74.00288,"(40.720856, -74.00288)",,,11 GREENE STREET,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4516307,Sedan,Bike,Station Wagon/Sport Utility Vehicle,Sedan, +04/03/2022,16:00,BRONX,10475,40.870014,-73.832436,"(40.870014, -73.832436)",BAYCHESTER AVENUE,ALDRICH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516486,Sedan,,,, +04/03/2022,5:30,BRONX,10462,40.833496,-73.858246,"(40.833496, -73.858246)",,,1982 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516151,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,7:57,QUEENS,11385,40.70089,-73.89336,"(40.70089, -73.89336)",MYRTLE AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515777,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,1:50,BROOKLYN,11215,40.666134,-73.99224,"(40.666134, -73.99224)",4 AVENUE,16 STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4515853,Sedan,Sedan,,, +03/30/2022,23:40,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",PACIFIC STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516357,Sedan,,,, +03/29/2022,13:17,,,40.675755,-73.97143,"(40.675755, -73.97143)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4516343,Sedan,Sedan,,, +04/03/2022,0:30,BROOKLYN,11233,40.677765,-73.90793,"(40.677765, -73.90793)",,,1919 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4515702,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,15:30,QUEENS,11372,40.749397,-73.88425,"(40.749397, -73.88425)",,,37-41 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516511,Pick-up Truck,Sedan,,, +03/26/2022,9:30,STATEN ISLAND,10305,40.607235,-74.069,"(40.607235, -74.069)",,,54 MERLE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516602,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,17:38,BROOKLYN,11230,40.61959,-73.96792,"(40.61959, -73.96792)",,,717 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516385,Sedan,Sedan,,, +04/02/2022,8:46,BRONX,10474,40.80801,-73.88961,"(40.80801, -73.88961)",EAST BAY AVENUE,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516662,Garbage or Refuse,,,, +04/03/2022,1:49,,,40.71793,-74.00099,"(40.71793, -74.00099)",WALKER STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4516024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/25/2022,18:51,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516439,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,0:00,BROOKLYN,11234,40.62488,-73.93434,"(40.62488, -73.93434)",HUBBARD PLACE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516443,Sedan,,,, +04/03/2022,3:40,MANHATTAN,10019,40.76542,-73.98383,"(40.76542, -73.98383)",WEST 55 STREET,8 AVENUE,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4515586,Station Wagon/Sport Utility Vehicle,Bike,,, +03/26/2022,11:00,,,40.58369,-73.92157,"(40.58369, -73.92157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4516566,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,13:05,BROOKLYN,11222,40.725433,-73.951744,"(40.725433, -73.951744)",MANHATTAN AVENUE,NORMAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516090,Station Wagon/Sport Utility Vehicle,Bike,,, +04/03/2022,12:45,,,40.726524,-73.99585,"(40.726524, -73.99585)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516104,Sedan,Sedan,,, +03/26/2022,16:29,QUEENS,11385,40.706764,-73.85471,"(40.706764, -73.85471)",,,90-50 UNION TURNPIKE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516498,,,,, +04/03/2022,2:51,BROOKLYN,11211,40.71539,-73.933914,"(40.71539, -73.933914)",,,299 VANDERVORT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4515917,Station Wagon/Sport Utility Vehicle,,,, +03/10/2022,0:00,STATEN ISLAND,10306,40.559437,-74.12481,"(40.559437, -74.12481)",HYLAN BOULEVARD,MALONE AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4516363,Pick-up Truck,,,, +04/03/2022,4:57,BRONX,10469,40.87673,-73.847305,"(40.87673, -73.847305)",CORSA AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515955,Sedan,,,, +03/21/2022,0:00,BRONX,10459,40.823845,-73.896866,"(40.823845, -73.896866)",INTERVALE AVENUE,EAST 165 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516543,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,14:30,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",WEST KINGSBRIDGE ROAD,BAILEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516677,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,18:15,,,40.677036,-73.878654,"(40.677036, -73.878654)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516096,Open Body,Sedan,,, +06/16/2021,20:30,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429251,Sedan,,,, +01/04/2022,9:03,,,40.67984,-73.80265,"(40.67984, -73.80265)",139 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4492381,Sedan,,,, +06/11/2021,17:10,BRONX,10472,40.831287,-73.88173,"(40.831287, -73.88173)",BRONX RIVER AVENUE,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4425848,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,18:24,MANHATTAN,10028,40.779392,-73.95941,"(40.779392, -73.95941)",,,35 EAST 84 STREET,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,4426772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/11/2021,21:26,BROOKLYN,11207,40.665726,-73.884224,"(40.665726, -73.884224)",,,719 NEW LOTS AVENUE,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4426891,Sedan,,,, +06/17/2021,21:40,,,,,,,,74 WEST DRIVE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429337,Sedan,Bike,,, +06/18/2021,8:59,,,40.62577,-74.134735,"(40.62577, -74.134735)",FOREST AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429331,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,18:22,MANHATTAN,10000,40.768383,-73.971054,"(40.768383, -73.971054)",,,20 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429339,Sedan,,,, +04/03/2022,14:15,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4515842,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/03/2022,2:51,,,40.659336,-73.92726,"(40.659336, -73.92726)",EAST 54 STREET,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4515654,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,4:30,QUEENS,11366,40.727013,-73.81079,"(40.727013, -73.81079)",,,73-15 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516276,,,,, +03/31/2022,0:30,BROOKLYN,11215,40.66642,-73.97534,"(40.66642, -73.97534)",PROSPECT PARK WEST,6 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4516368,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,22:30,QUEENS,11365,40.73934,-73.7857,"(40.73934, -73.7857)",,,61-51 188 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4515882,Sedan,Sedan,,, +04/03/2022,8:30,BROOKLYN,11205,40.692802,-73.97279,"(40.692802, -73.97279)",,,158 CARLTON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4515871,Sedan,,,, +03/29/2022,17:30,MANHATTAN,10011,40.733612,-73.999565,"(40.733612, -73.999565)",WEST 8 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516330,Sedan,Bike,,, +03/30/2022,14:10,,,40.697613,-73.93639,"(40.697613, -73.93639)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516532,Sedan,,,, +04/03/2022,9:30,QUEENS,11417,40.670757,-73.84173,"(40.670757, -73.84173)",149 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4515944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,1:30,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516042,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,12:16,BRONX,10463,40.881966,-73.90335,"(40.881966, -73.90335)",,,218 WEST 234 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516466,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,19:30,,,40.625103,-74.14877,"(40.625103, -74.14877)",FOREST AVENUE,RICHMOND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516408,Sedan,Refrigerated Van,Station Wagon/Sport Utility Vehicle,, +03/23/2022,17:13,BRONX,10459,40.824127,-73.8919,"(40.824127, -73.8919)",,,1043 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4516646,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,16:24,,,40.806156,-73.9226,"(40.806156, -73.9226)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516072,Sedan,,,, +04/03/2022,5:50,BRONX,10470,40.9036,-73.85024,"(40.9036, -73.85024)",,,4702 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4515926,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2022,11:15,STATEN ISLAND,10309,40.52418,-74.2348,"(40.52418, -74.2348)",PAGE AVENUE,BOSCOMBE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516608,Sedan,Sedan,,, +04/03/2022,20:29,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",EAST 188 STREET,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516396,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,10:30,QUEENS,11433,40.698616,-73.77664,"(40.698616, -73.77664)",110 AVENUE,178 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516403,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,2:42,,,40.650948,-74.00793,"(40.650948, -74.00793)",42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516419,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,2:15,QUEENS,11355,40.754204,-73.83584,"(40.754204, -73.83584)",SANFORD AVENUE,DELONG STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4515990,Sedan,,,, +06/18/2021,16:06,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,19:05,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428968,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,17:38,BROOKLYN,11204,40.620712,-73.98509,"(40.620712, -73.98509)",60 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,4:02,,,40.728794,-74.00044,"(40.728794, -74.00044)",SULLIVAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428832,Pick-up Truck,Sedan,,, +06/18/2021,23:03,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,14:35,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,AVENUE B,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4429284,Sedan,Bus,,, +06/18/2021,0:16,QUEENS,11373,40.743595,-73.8848,"(40.743595, -73.8848)",,,42-01 80 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428275,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,8:10,BROOKLYN,11204,40.632355,-73.98015,"(40.632355, -73.98015)",17 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427933,Dump,,,, +06/17/2021,17:17,QUEENS,11354,40.76189,-73.82967,"(40.76189, -73.82967)",37 AVENUE,138 STREET,,1,0,1,0,0,0,0,0,Passenger Distraction,,,,,4428741,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,15:00,QUEENS,11101,40.743084,-73.9358,"(40.743084, -73.9358)",31 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427881,Sedan,Armored Truck,,, +06/16/2021,22:00,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428397,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,18:48,BROOKLYN,11201,40.69119,-73.9978,"(40.69119, -73.9978)",ATLANTIC AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428255,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,10:07,MANHATTAN,10032,40.843246,-73.937355,"(40.843246, -73.937355)",,,575 WEST 172 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428884,Ambulance,Sedan,,, +06/10/2021,12:45,,,40.6884,-73.95118,"(40.6884, -73.95118)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428992,Pick-up Truck,Van,,, +06/17/2021,13:40,BROOKLYN,11207,40.654484,-73.886536,"(40.654484, -73.886536)",NEW JERSEY AVENUE,COZINE AVENUE,,1,0,1,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428240,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,23:05,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428546,Sedan,Sedan,Sedan,, +06/18/2021,20:30,,,40.60235,-74.189606,"(40.60235, -74.189606)",SOUTH AVENUE,CHELSEA ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4429323,Sedan,,,, +06/17/2021,10:30,QUEENS,11436,40.666946,-73.79712,"(40.666946, -73.79712)",142 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428114,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,14:30,BROOKLYN,11237,40.71359,-73.92966,"(40.71359, -73.92966)",,,223 VARICK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4428969,,,,, +06/17/2021,3:15,,,40.549046,-74.223305,"(40.549046, -74.223305)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4428436,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,14:00,QUEENS,11385,40.708435,-73.91386,"(40.708435, -73.91386)",,,1861 STOCKHOLM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429109,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,10:30,BROOKLYN,11207,40.661358,-73.89276,"(40.661358, -73.89276)",,,644 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428386,Sedan,Sedan,,, +06/18/2021,21:50,BRONX,10466,40.895226,-73.85494,"(40.895226, -73.85494)",,,730 EAST 236 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429065,Sedan,,,, +06/16/2021,1:45,,,40.75426,-73.74334,"(40.75426, -73.74334)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427581,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,2:40,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4428769,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,9:05,BROOKLYN,11209,40.629078,-74.02876,"(40.629078, -74.02876)",,,7821 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428473,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,14:30,BROOKLYN,11207,40.674503,-73.89265,"(40.674503, -73.89265)",,,193 BRADFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486014,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,19:05,BRONX,10459,40.82384,-73.89188,"(40.82384, -73.89188)",,,1031 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427864,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,8:45,BROOKLYN,11249,40.719383,-73.96319,"(40.719383, -73.96319)",,,20 NORTH 5 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428399,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/16/2021,21:43,BROOKLYN,11249,40.71772,-73.96202,"(40.71772, -73.96202)",,,76 NORTH 4 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428261,Sedan,,,, +06/14/2021,9:00,BROOKLYN,11213,40.667686,-73.94339,"(40.667686, -73.94339)",,,1383 PRESIDENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428326,Sedan,,,, +06/04/2021,17:00,BROOKLYN,11232,40.65576,-74.008354,"(40.65576, -74.008354)",,,241 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429169,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,12:00,MANHATTAN,10038,40.71329,-73.998184,"(40.71329, -73.998184)",OLIVER STREET,SAINT JAMES PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4427979,Box Truck,Box Truck,Station Wagon/Sport Utility Vehicle,, +06/16/2021,12:13,BROOKLYN,11210,40.625015,-73.94073,"(40.625015, -73.94073)",AVENUE K,EAST 36 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4428500,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,19:25,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429249,Sedan,Motorcycle,,, +06/16/2021,16:10,BROOKLYN,11237,40.708546,-73.92287,"(40.708546, -73.92287)",FLUSHING AVENUE,INGRAHAM STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4427899,Sedan,Sedan,Sedan,, +06/17/2021,14:35,BROOKLYN,11208,40.666725,-73.86977,"(40.666725, -73.86977)",EUCLID AVENUE,LORING AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428610,Sedan,Sedan,,, +06/18/2021,22:51,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428677,Sedan,Pick-up Truck,,, +06/16/2021,1:00,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428050,Sedan,Sedan,,, +06/17/2021,14:30,BRONX,10462,40.833393,-73.85939,"(40.833393, -73.85939)",,,1935 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428158,Sedan,,,, +06/16/2021,14:35,BRONX,10458,40.86908,-73.884125,"(40.86908, -73.884125)",,,2961 MARION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,21:00,,,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,65 ROAD,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4428208,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,21:45,,,40.6026,-74.01491,"(40.6026, -74.01491)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4428696,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/16/2021,1:22,BRONX,10454,,,,,,108 WILLIS AVENUE bridge,1,0,1,0,0,0,0,0,,,,,,4427669,E-Scooter,,,, +06/13/2021,3:35,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,,,4428936,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/14/2021,16:31,BRONX,10456,40.829197,-73.914444,"(40.829197, -73.914444)",,,1052 FINDLAY AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Passing Too Closely,,,,4428367,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +06/16/2021,18:48,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",SUTTER AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427905,Sedan,Sedan,,, +06/16/2021,2:04,,,40.82092,-73.94333,"(40.82092, -73.94333)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428111,Stake or Rack,,,, +06/17/2021,18:40,BRONX,10455,40.817513,-73.91712,"(40.817513, -73.91712)",MELROSE AVENUE,EAST 151 STREET,,1,0,1,0,0,0,0,0,,,,,,4428290,,,,, +06/16/2021,1:00,,,40.726376,-73.76624,"(40.726376, -73.76624)",,,FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428943,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,23:50,,,40.690308,-73.99881,"(40.690308, -73.99881)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428358,Sedan,Sedan,Sedan,, +06/04/2021,13:30,,,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,6:40,,,40.552948,-74.168106,"(40.552948, -74.168106)",RICHMOND AVENUE,GENESEE AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4428429,Bus,,,, +06/18/2021,15:00,BROOKLYN,11236,40.642868,-73.917656,"(40.642868, -73.917656)",,,412 EAST 83 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4428532,Sedan,Bike,,, +06/16/2021,14:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428145,Sedan,Sedan,,, +06/18/2021,5:40,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4428604,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,2:00,BRONX,10458,40.86028,-73.89405,"(40.86028, -73.89405)",EAST 188 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428025,Sedan,,,, +06/18/2021,13:16,QUEENS,11411,40.697006,-73.72905,"(40.697006, -73.72905)",,,115-22 230 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428515,Sedan,Pick-up Truck,,, +06/16/2021,6:39,MANHATTAN,10040,40.85533,-73.93332,"(40.85533, -73.93332)",BROADWAY,WEST 189 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428916,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/16/2021,0:38,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",BROADWAY,WEST 178 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,23:01,BROOKLYN,11211,40.706985,-73.95509,"(40.706985, -73.95509)",,,274 DIVISION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428297,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/17/2021,22:10,,,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428295,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/16/2021,9:40,BRONX,10467,40.878674,-73.880295,"(40.878674, -73.880295)",,,3332 ROCHAMBEAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427825,Box Truck,,,, +06/17/2021,11:55,QUEENS,11412,40.690697,-73.75473,"(40.690697, -73.75473)",196 STREET,119 AVENUE,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4428451,Chassis Cab,Sedan,,, +06/15/2021,16:00,,,40.735844,-74.00597,"(40.735844, -74.00597)",HUDSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428468,Station Wagon/Sport Utility Vehicle,Bike,,, +06/16/2021,6:50,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427937,,,,, +06/16/2021,14:20,BROOKLYN,11211,40.71312,-73.93589,"(40.71312, -73.93589)",,,969 GRAND STREET,1,0,0,0,1,0,0,0,Obstruction/Debris,Unspecified,,,,4428813,Station Wagon/Sport Utility Vehicle,Bike,,, +06/17/2021,10:15,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428651,Sedan,,,, +06/17/2021,20:12,MANHATTAN,10010,40.735435,-73.97956,"(40.735435, -73.97956)",,,357 1 AVENUE,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4428390,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,12:30,QUEENS,11377,,,,,,26-45 brooklyn queens expressway wes,0,0,0,0,0,0,0,0,Unspecified,,,,,4428837,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,0:01,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4428628,Bike,,,, +06/14/2021,20:10,BROOKLYN,11225,40.668224,-73.953445,"(40.668224, -73.953445)",PRESIDENT STREET,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428712,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,20:05,,,40.709095,-73.99622,"(40.709095, -73.99622)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428997,Station Wagon/Sport Utility Vehicle,Van,,, +06/17/2021,18:24,STATEN ISLAND,10301,40.644756,-74.099724,"(40.644756, -74.099724)",RICHMOND TERRACE,TYSEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429072,Sedan,Motorcycle,,, +06/18/2021,1:07,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4428248,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/18/2021,3:17,BRONX,10468,40.864807,-73.895355,"(40.864807, -73.895355)",,,2605 GRAND CONCOURSE,1,0,1,0,0,0,0,0,,,,,,4428456,Sedan,,,, +06/16/2021,19:35,QUEENS,11373,40.74227,-73.86991,"(40.74227, -73.86991)",,,48-11 94 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4427954,Sedan,,,, +06/15/2021,9:25,STATEN ISLAND,10301,40.640564,-74.07672,"(40.640564, -74.07672)",,,54 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429053,Sedan,Bike,,, +06/11/2021,18:20,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428596,Sedan,Sedan,,, +03/24/2021,13:50,BROOKLYN,11213,40.679657,-73.93594,"(40.679657, -73.93594)",,,1615 FULTON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4428855,Sedan,Sedan,,, +06/16/2021,16:19,BRONX,10464,40.85114,-73.788475,"(40.85114, -73.788475)",,,459 CITY ISLAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427983,Box Truck,Motorcycle,,, +06/17/2021,18:00,,,40.661743,-73.94784,"(40.661743, -73.94784)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4428321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/16/2021,16:40,BROOKLYN,11213,40.67117,-73.92534,"(40.67117, -73.92534)",BUFFALO AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428977,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,13:34,BRONX,10457,40.84744,-73.89968,"(40.84744, -73.89968)",EAST TREMONT AVENUE,PARK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427998,Sedan,,,, +06/17/2021,11:54,BROOKLYN,11232,40.645386,-73.99569,"(40.645386, -73.99569)",9 AVENUE,40 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429245,Station Wagon/Sport Utility Vehicle,Bike,,, +06/16/2021,12:17,QUEENS,11691,40.60289,-73.75036,"(40.60289, -73.75036)",MOTT AVENUE,GADELL PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4427778,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/18/2021,16:55,MANHATTAN,10029,40.791557,-73.93866,"(40.791557, -73.93866)",EAST 109 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428782,Box Truck,Convertible,,, +06/18/2021,19:00,BROOKLYN,11235,40.59019,-73.95958,"(40.59019, -73.95958)",,,2478 EAST 11 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4428642,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,17:23,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",RALPH AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428875,Sedan,Sedan,,, +06/18/2021,6:50,QUEENS,11419,40.68804,-73.83275,"(40.68804, -73.83275)",101 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4428335,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,9:45,MANHATTAN,10011,40.740173,-73.999435,"(40.740173, -73.999435)",,,214 WEST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427737,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,22:36,,,40.683567,-73.94106,"(40.683567, -73.94106)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4429162,Sedan,Sedan,Sedan,Sedan, +06/15/2021,23:20,,,40.671535,-73.957664,"(40.671535, -73.957664)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428956,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,17:14,QUEENS,11385,40.701096,-73.886024,"(40.701096, -73.886024)",,,72-22 67 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428179,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +06/17/2021,13:47,QUEENS,11426,40.743256,-73.718414,"(40.743256, -73.718414)",252 STREET,80 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4428200,Pick-up Truck,Sedan,Sedan,, +06/17/2021,18:50,BROOKLYN,11228,40.618057,-74.02053,"(40.618057, -74.02053)",86 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428224,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,13:00,MANHATTAN,10014,40.726173,-74.01099,"(40.726173, -74.01099)",WEST STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428483,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,15:17,MANHATTAN,10030,40.823647,-73.943855,"(40.823647, -73.943855)",EDGECOMBE AVENUE,WEST 145 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428354,Sedan,,,, +06/16/2021,12:39,MANHATTAN,10010,40.74405,-73.989655,"(40.74405, -73.989655)",,,24 WEST 26 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427769,Sedan,Box Truck,,, +06/16/2021,9:30,BROOKLYN,11220,40.63532,-74.02324,"(40.63532, -74.02324)",4 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427748,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,6:45,QUEENS,11357,40.782536,-73.81182,"(40.782536, -73.81182)",18 AVENUE,MURRAY STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4428574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/16/2021,22:47,BRONX,10474,40.819267,-73.884865,"(40.819267, -73.884865)",SENECA AVENUE,WHITTIER STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428124,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/17/2021,18:51,BROOKLYN,11229,40.608807,-73.9532,"(40.608807, -73.9532)",QUENTIN ROAD,OCEAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4428302,Pick-up Truck,Motorcycle,,, +06/16/2021,6:32,BROOKLYN,11208,40.674103,-73.871895,"(40.674103, -73.871895)",,,1007 BELMONT AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4427804,Sedan,,,, +06/16/2021,13:18,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4428668,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,7:05,QUEENS,11385,40.70051,-73.90015,"(40.70051, -73.90015)",,,59-05 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427700,Sedan,Sedan,,, +06/18/2021,17:15,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428488,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,17:35,MANHATTAN,10003,40.73602,-73.98228,"(40.73602, -73.98228)",EAST 20 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4427997,Sedan,Bike,,, +06/17/2021,6:22,,,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428655,Garbage or Refuse,Taxi,,, +06/17/2021,14:13,BROOKLYN,11218,40.64169,-73.96949,"(40.64169, -73.96949)",CONEY ISLAND AVENUE,SLOCUM PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4428795,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,19:10,BROOKLYN,11211,40.710262,-73.953865,"(40.710262, -73.953865)",KEAP STREET,SOUTH 2 STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4428282,Bike,E-Scooter,,, +06/11/2021,23:38,,,40.514202,-74.236015,"(40.514202, -74.236015)",HALE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428422,Sedan,Sedan,,, +06/16/2021,19:39,BROOKLYN,11249,40.701942,-73.961754,"(40.701942, -73.961754)",WYTHE AVENUE,HOOPER STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4427894,Bike,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,18:32,,,40.74026,-74.005875,"(40.74026, -74.005875)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428505,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,23:00,MANHATTAN,10001,40.753525,-73.994545,"(40.753525, -73.994545)",,,357 WEST 35 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4428537,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,23:10,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428871,Motorbike,Sedan,,, +06/16/2021,10:06,BROOKLYN,11212,40.659477,-73.908134,"(40.659477, -73.908134)",ROCKAWAY AVENUE,NEWPORT STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4429003,Sedan,Sedan,Sedan,Sedan, +06/18/2021,19:15,BROOKLYN,11249,40.722286,-73.957466,"(40.722286, -73.957466)",WYTHE AVENUE,NORTH 12 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4428632,Station Wagon/Sport Utility Vehicle,Convertible,,, +06/18/2021,8:50,BROOKLYN,11214,40.606384,-74.00121,"(40.606384, -74.00121)",86 STREET,BAY 20 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428718,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,8:20,BRONX,10460,40.83639,-73.88834,"(40.83639, -73.88834)",,,1700 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,23:00,QUEENS,11420,40.672264,-73.81899,"(40.672264, -73.81899)",,,130-32 121 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427910,Sedan,,,, +06/13/2021,13:00,STATEN ISLAND,10301,40.64491,-74.07969,"(40.64491, -74.07969)",,,60 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429057,Sedan,Sedan,,, +06/17/2021,22:00,BROOKLYN,11222,40.725887,-73.94155,"(40.725887, -73.94155)",,,246 NASSAU AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428266,Sedan,Sedan,,, +06/16/2021,17:50,BRONX,10458,40.85582,-73.89264,"(40.85582, -73.89264)",WASHINGTON AVENUE,EAST 184 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428014,Taxi,,,, +06/18/2021,12:00,STATEN ISLAND,10304,40.631084,-74.08221,"(40.631084, -74.08221)",,,173 CEBRA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,12:01,BRONX,10474,40.819267,-73.884865,"(40.819267, -73.884865)",SENECA AVENUE,WHITTIER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,20:20,STATEN ISLAND,10301,40.64205,-74.07533,"(40.64205, -74.07533)",,,15 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4428378,Pick-up Truck,Pick-up Truck,,, +06/13/2021,16:30,BROOKLYN,11235,40.577213,-73.96329,"(40.577213, -73.96329)",BRIGHTON BEACH AVENUE,BRIGHTON 4 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428840,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,8:00,,,40.70453,-73.817245,"(40.70453, -73.817245)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428982,Station Wagon/Sport Utility Vehicle,Bus,,, +06/17/2021,18:40,QUEENS,11385,40.70311,-73.86655,"(40.70311, -73.86655)",MYRTLE AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428477,Sedan,Sedan,,, +06/18/2021,13:45,QUEENS,11691,40.603077,-73.74757,"(40.603077, -73.74757)",CORNAGA AVENUE,NEILSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428561,Sedan,,,, +06/17/2021,17:24,BROOKLYN,11212,40.65727,-73.91223,"(40.65727, -73.91223)",,,44 LOTT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/16/2021,12:34,QUEENS,11358,40.77109,-73.80536,"(40.77109, -73.80536)",159 STREET,29 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428006,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,8:30,,,40.704033,-73.81711,"(40.704033, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427721,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,22:50,,,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427958,Sedan,E-Bike,,, +06/18/2021,7:20,MANHATTAN,10013,40.720432,-74.00675,"(40.720432, -74.00675)",,,16 ERICSSON PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428339,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,21:50,,,40.85533,-73.93332,"(40.85533, -73.93332)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4428931,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,5:10,BROOKLYN,11207,40.67674,-73.88968,"(40.67674, -73.88968)",,,2835 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427790,Sedan,,,, +06/16/2021,11:00,MANHATTAN,10016,40.745243,-73.9848,"(40.745243, -73.9848)",MADISON AVENUE,EAST 30 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429142,Box Truck,,,, +06/16/2021,16:25,BROOKLYN,11203,40.641365,-73.94179,"(40.641365, -73.94179)",AVENUE D,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,14:03,,,40.591755,-73.9083,"(40.591755, -73.9083)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428524,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,23:00,BROOKLYN,11218,40.636982,-73.97526,"(40.636982, -73.97526)",,,622 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429267,Sedan,,,, +06/17/2021,8:58,,,40.72522,-73.894745,"(40.72522, -73.894745)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428172,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,14:40,BROOKLYN,11210,40.63447,-73.94012,"(40.63447, -73.94012)",EAST 38 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,12:30,,,40.726376,-73.76624,"(40.726376, -73.76624)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428949,Station Wagon/Sport Utility Vehicle,Tanker,,, +06/18/2021,6:11,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,21:45,QUEENS,11435,40.689247,-73.80546,"(40.689247, -73.80546)",,,107-38 REMINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428230,Sedan,Sedan,,, +06/16/2021,14:30,BROOKLYN,11207,40.655495,-73.88833,"(40.655495, -73.88833)",WORTMAN AVENUE,PENNSYLVANIA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427953,,,,, +06/16/2021,12:30,BRONX,10462,40.847824,-73.8663,"(40.847824, -73.8663)",,,1905 HUNT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428068,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,14:30,QUEENS,11104,40.742508,-73.91788,"(40.742508, -73.91788)",GREENPOINT AVENUE,47 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428181,Sedan,,,, +06/17/2021,12:00,,,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428366,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,12:36,,,40.744183,-73.7329,"(40.744183, -73.7329)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4427826,Sedan,Sedan,,, +06/16/2021,21:13,BROOKLYN,11212,40.65538,-73.9203,"(40.65538, -73.9203)",EAST 92 STREET,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428219,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Sedan, +06/16/2021,15:30,QUEENS,11420,40.668552,-73.8205,"(40.668552, -73.8205)",120 STREET,149 AVENUE,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,,,4427852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/17/2021,7:17,,,40.6818,-73.90852,"(40.6818, -73.90852)",GRANITE STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4428133,Sedan,,,, +06/16/2021,8:50,BROOKLYN,11236,40.642242,-73.910774,"(40.642242, -73.910774)",EAST 88 STREET,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427754,Sedan,Sedan,,, +06/16/2021,15:00,QUEENS,11372,40.755657,-73.884445,"(40.755657, -73.884445)",83 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428049,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,19:00,QUEENS,11368,40.747395,-73.853546,"(40.747395, -73.853546)",,,47-01 111 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4428393,Bike,,,, +06/18/2021,20:10,MANHATTAN,10026,40.797478,-73.9488,"(40.797478, -73.9488)",5 AVENUE,EAST 111 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429023,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/06/2021,21:23,QUEENS,11435,40.686913,-73.79438,"(40.686913, -73.79438)",SUTPHIN BOULEVARD,113 AVENUE,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4428410,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,21:00,QUEENS,11368,40.736214,-73.85795,"(40.736214, -73.85795)",,,99-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427966,Taxi,E-Bike,,, +06/18/2021,14:00,BROOKLYN,11239,,,,,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428724,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,16:00,BROOKLYN,11211,40.713123,-73.95351,"(40.713123, -73.95351)",RODNEY STREET,AINSLIE STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4428802,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/17/2021,6:30,MANHATTAN,10004,40.707344,-74.01203,"(40.707344, -74.01203)",,,80 BROADWAY,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4427990,Sedan,Box Truck,,, +06/18/2021,5:21,,,40.70207,-73.78315,"(40.70207, -73.78315)",173 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428509,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/17/2021,18:39,BROOKLYN,11237,40.697823,-73.90803,"(40.697823, -73.90803)",CORNELIA STREET,WYCKOFF AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428361,Bike,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,13:04,QUEENS,11360,,,,corporal kennedy street,32 ave,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4428225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,18:30,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",UNION AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428287,Sedan,Sedan,,, +06/18/2021,20:36,STATEN ISLAND,10306,40.565254,-74.1301,"(40.565254, -74.1301)",GUYON AVENUE,AMBOY ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428541,Sedan,Sedan,,, +06/16/2021,10:40,BRONX,10458,40.85876,-73.89736,"(40.85876, -73.89736)",EAST 184 STREET,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428039,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,16:15,,,40.788784,-73.79116,"(40.788784, -73.79116)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428569,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,6:30,,,40.850494,-73.91546,"(40.850494, -73.91546)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4428403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,12:56,,,40.69324,-73.92865,"(40.69324, -73.92865)",KOSCIUSZKO STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428863,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,23:12,BROOKLYN,11221,40.69412,-73.918175,"(40.69412, -73.918175)",,,357 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4427888,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,22:00,,,40.621925,-74.14166,"(40.621925, -74.14166)",,,96 CRYSTAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428092,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,12:45,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",LEFFERTS BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427906,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,18:30,STATEN ISLAND,10309,40.52864,-74.21685,"(40.52864, -74.21685)",DRUMGOOLE ROAD WEST,BLOOMINGDALE ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428432,Sedan,,,, +06/15/2021,19:05,STATEN ISLAND,10304,40.62494,-74.078545,"(40.62494, -74.078545)",BROAD STREET,QUINN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429061,Sedan,,,, +06/17/2021,22:30,MANHATTAN,10009,40.721592,-73.97477,"(40.721592, -73.97477)",EAST 6 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429275,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,18:10,QUEENS,11414,40.667324,-73.852554,"(40.667324, -73.852554)",,,151-32 82 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4428256,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/17/2021,6:45,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428492,Station Wagon/Sport Utility Vehicle,POWER SHOV,,, +06/18/2021,14:45,BROOKLYN,11211,40.710735,-73.961815,"(40.710735, -73.961815)",SOUTH 5 STREET,DRIGGS AVENUE,,10,0,0,0,0,0,10,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4428828,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +06/16/2021,17:51,,,40.71444,-73.83127,"(40.71444, -73.83127)",QUEENS BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427860,Sedan,Sedan,,, +06/17/2021,12:00,,,40.716385,-73.96143,"(40.716385, -73.96143)",BERRY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428262,Sedan,,,, +06/17/2021,20:30,,,40.75734,-73.98602,"(40.75734, -73.98602)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4429126,Taxi,Sedan,,, +06/18/2021,10:55,,,40.7563,-73.92007,"(40.7563, -73.92007)",34 AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4428844,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,19:30,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,7:50,QUEENS,11375,40.71626,-73.830734,"(40.71626, -73.830734)",GRAND CENTRAL PARKWAY,78 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428398,Sedan,Pick-up Truck,,, +06/18/2021,14:30,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Following Too Closely,Following Too Closely,,,4428520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,14:10,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4429180,Sedan,Tractor Truck Gasoline,,, +06/18/2021,22:27,,,40.84328,-73.92492,"(40.84328, -73.92492)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428755,Moped,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,18:00,,,40.597317,-73.75427,"(40.597317, -73.75427)",BEACH 20 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4427946,Sedan,Bike,,, +06/17/2021,8:15,QUEENS,11691,40.60869,-73.75174,"(40.60869, -73.75174)",,,14-20 REDFERN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428310,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,12:48,BROOKLYN,11234,40.62973,-73.922226,"(40.62973, -73.922226)",FLATLANDS AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4428163,Station Wagon/Sport Utility Vehicle,STAKE TRUC,,, +06/16/2021,11:00,QUEENS,11426,40.72667,-73.72915,"(40.72667, -73.72915)",BRADDOCK AVENUE,239 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427832,Sedan,,,, +06/18/2021,19:30,QUEENS,11691,40.594845,-73.761925,"(40.594845, -73.761925)",SEAGIRT AVENUE,BEACH 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428557,Sedan,Sedan,,, +06/15/2021,22:20,QUEENS,11432,40.71568,-73.792694,"(40.71568, -73.792694)",HOME LAWN STREET,ASPEN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428942,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,0:00,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4428620,Sedan,Sedan,Sedan,Sedan, +06/18/2021,17:15,BRONX,10467,40.86539,-73.86913,"(40.86539, -73.86913)",ALLERTON AVENUE,BARKER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428686,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/16/2021,9:00,STATEN ISLAND,10314,40.604008,-74.12074,"(40.604008, -74.12074)",,,931 MANOR ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4428055,Motorcycle,,,, +06/16/2021,20:35,BROOKLYN,11215,40.655834,-73.98123,"(40.655834, -73.98123)",19 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428186,Tractor Truck Diesel,Sedan,,, +06/08/2021,7:30,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4429091,Sedan,Tractor Truck Diesel,,, +06/17/2021,0:35,,,40.66172,-74.00011,"(40.66172, -74.00011)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428927,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,18:40,BRONX,10456,40.83142,-73.91831,"(40.83142, -73.91831)",SHERIDAN AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,Unspecified,Unspecified,,,4428371,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +06/16/2021,21:30,,,40.76736,-73.9371,"(40.76736, -73.9371)",10 STREET,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427925,Sedan,,,, +06/17/2021,17:25,BROOKLYN,11212,40.65584,-73.91526,"(40.65584, -73.91526)",,,9617 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428765,Sedan,Sedan,,, +06/16/2021,17:21,MANHATTAN,10032,40.833237,-73.94291,"(40.833237, -73.94291)",,,523 WEST 157 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,,,,4428309,Sedan,PK,,, +06/16/2021,22:21,,,40.745617,-73.75496,"(40.745617, -73.75496)",67 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427866,Sedan,Pick-up Truck,Sedan,, +06/16/2021,16:00,QUEENS,11102,40.770306,-73.91901,"(40.770306, -73.91901)",30 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427927,Sedan,Tow Truck / Wrecker,,, +06/17/2021,14:30,BROOKLYN,11218,40.645542,-73.97592,"(40.645542, -73.97592)",ALBEMARLE ROAD,EAST 5 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429241,Sedan,,,, +06/17/2021,0:53,MANHATTAN,10032,40.844456,-73.94253,"(40.844456, -73.94253)",,,100 HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,19:40,QUEENS,11417,40.680313,-73.842026,"(40.680313, -73.842026)",ROCKAWAY BOULEVARD,97 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429200,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,22:27,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427901,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,16:25,BRONX,10466,40.89696,-73.854355,"(40.89696, -73.854355)",FURMAN AVENUE,EAST 237 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428100,Pick-up Truck,Sedan,,, +06/16/2021,15:42,BROOKLYN,11221,40.68607,-73.91605,"(40.68607, -73.91605)",BROADWAY,WEIRFIELD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428346,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/16/2021,5:50,BROOKLYN,11211,40.705437,-73.956345,"(40.705437, -73.956345)",HOOPER STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427583,Sedan,,,, +06/17/2021,12:00,,,40.824432,-73.873604,"(40.824432, -73.873604)",MORRISON AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428138,Pick-up Truck,,,, +06/15/2021,19:20,,,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4428891,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,23:00,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428425,Van,Sedan,,, +06/17/2021,8:50,,,,,,STILLWELL AVENUE,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4428445,Sedan,Bus,,, +06/17/2021,19:15,QUEENS,11411,40.691452,-73.733955,"(40.691452, -73.733955)",118 AVENUE,228 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428215,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,11:15,,,40.591736,-73.79137,"(40.591736, -73.79137)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427848,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,3:05,BROOKLYN,11233,40.684227,-73.93531,"(40.684227, -73.93531)",LEWIS AVENUE,HANCOCK STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,Other Vehicular,Other Vehicular,,4428030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/17/2021,17:00,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428207,Sedan,Sedan,,, +06/16/2021,16:48,BROOKLYN,11220,40.638733,-74.01337,"(40.638733, -74.01337)",6 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428185,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,19:40,,,40.689102,-73.94507,"(40.689102, -73.94507)",GREENE AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4428080,Sedan,,,, +06/12/2021,22:27,BRONX,10457,40.843174,-73.904236,"(40.843174, -73.904236)",EAST 173 STREET,CARTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428370,Sedan,Sedan,,, +06/16/2021,7:10,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427670,Sedan,Bus,,, +06/16/2021,9:38,,,40.784992,-73.98261,"(40.784992, -73.98261)",WEST 79 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429014,Bike,Sedan,,, +06/17/2021,7:35,MANHATTAN,10016,40.746296,-73.97169,"(40.746296, -73.97169)",1 AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428113,Taxi,Sedan,,, +06/16/2021,2:17,QUEENS,11411,40.691277,-73.746254,"(40.691277, -73.746254)",SPRINGFIELD BOULEVARD,120 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4427830,Sedan,Tractor Truck Diesel,,, +06/17/2021,11:03,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4428291,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,4:00,QUEENS,11427,40.724693,-73.7541,"(40.724693, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427902,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,11:00,STATEN ISLAND,10307,40.51605,-74.24364,"(40.51605, -74.24364)",,,101 ELLIS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428430,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,23:15,,,40.668495,-73.925606,"(40.668495, -73.925606)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inexperience,,,,4429067,Sedan,Motorcycle,,, +06/16/2021,21:15,BROOKLYN,11231,40.67468,-74.016045,"(40.67468, -74.016045)",VAN BRUNT STREET,REED STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4428357,Pick-up Truck,Sedan,,, +06/18/2021,8:00,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4428605,Sedan,Sedan,,, +06/16/2021,2:45,BRONX,10465,40.825966,-73.82568,"(40.825966, -73.82568)",,,758 QUINCY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428147,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,16:18,,,40.867928,-73.88907,"(40.867928, -73.88907)",BAINBRIDGE AVENUE,EAST 197 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4428447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,E-Scooter,, +06/18/2021,10:01,BRONX,10461,40.842052,-73.83613,"(40.842052, -73.83613)",,,2821 ZULETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428587,Station Wagon/Sport Utility Vehicle,SUBURBAN,,, +06/18/2021,14:52,STATEN ISLAND,10309,40.522976,-74.23491,"(40.522976, -74.23491)",,,45 PAGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428464,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,15:40,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428807,Box Truck,Sedan,,, +06/11/2021,14:00,,,40.664333,-73.89684,"(40.664333, -73.89684)",LIVONIA AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429042,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,13:30,BROOKLYN,11221,40.685234,-73.92654,"(40.685234, -73.92654)",PATCHEN AVENUE,HANCOCK STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4427861,Bike,,,, +06/16/2021,11:15,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4428024,Box Truck,Flat Bed,,, +06/18/2021,17:20,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428742,Sedan,Sedan,,, +06/13/2021,20:00,QUEENS,11106,40.75832,-73.92506,"(40.75832, -73.92506)",,,34-06 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428833,Sedan,,,, +06/18/2021,0:00,BRONX,10451,40.820114,-73.92307,"(40.820114, -73.92307)",,,2950 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428292,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,7:45,MANHATTAN,10019,40.760605,-73.98362,"(40.760605, -73.98362)",,,745 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428053,Sedan,Box Truck,,, +06/18/2021,3:50,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",57 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428276,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/18/2021,11:30,,,40.69447,-73.78147,"(40.69447, -73.78147)",111 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428452,Sedan,,,, +06/17/2021,2:30,,,40.731304,-73.925964,"(40.731304, -73.925964)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4427882,Sedan,,,, +06/16/2021,14:45,,,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428650,Sedan,Sedan,,, +06/18/2021,12:30,BRONX,10451,40.823578,-73.91418,"(40.823578, -73.91418)",MELROSE AVENUE,EAST 160 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428815,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,13:00,,,40.67365,-73.87496,"(40.67365, -73.87496)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428241,Tractor Truck Diesel,Sedan,,, +06/18/2021,18:08,MANHATTAN,10013,40.71602,-73.998276,"(40.71602, -73.998276)",,,63 MOTT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428993,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,15:00,BRONX,10467,40.8775,-73.86399,"(40.8775, -73.86399)",,,738 EAST 211 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429095,Sedan,,,, +06/16/2021,19:05,QUEENS,11432,40.713158,-73.79727,"(40.713158, -73.79727)",167 STREET,GOTHIC DRIVE,,1,0,0,0,0,0,1,0,,,,,,4428970,,,,, +06/18/2021,17:42,BRONX,10465,40.82734,-73.82297,"(40.82734, -73.82297)",,,3683 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428707,Pick-up Truck,Sedan,,, +05/22/2021,1:35,BROOKLYN,11233,40.677055,-73.9224,"(40.677055, -73.9224)",,,1883 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4428848,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,12:35,BROOKLYN,11219,40.63785,-73.993774,"(40.63785, -73.993774)",,,1171 47 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4429276,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,10:56,BROOKLYN,11203,40.654102,-73.9258,"(40.654102, -73.9258)",LINDEN BOULEVARD,EAST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428770,Van,Van,,, +06/18/2021,14:00,STATEN ISLAND,10304,40.63089,-74.08202,"(40.63089, -74.08202)",CEBRA AVENUE,DYSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429080,Sedan,,,, +06/17/2021,16:20,QUEENS,11429,40.711437,-73.74779,"(40.711437, -73.74779)",104 AVENUE,211 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428201,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,14:45,QUEENS,11427,40.72992,-73.74243,"(40.72992, -73.74243)",BRADDOCK AVENUE,89 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,13:22,MANHATTAN,10034,40.86114,-73.91894,"(40.86114, -73.91894)",9 AVENUE,WEST 203 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,20:15,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4428257,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,10:01,MANHATTAN,10014,40.727875,-74.00543,"(40.727875, -74.00543)",VARICK STREET,KING STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427773,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,15:08,QUEENS,11426,40.74003,-73.72412,"(40.74003, -73.72412)",COMMONWEALTH BOULEVARD,81 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428516,Sedan,scooter ga,,, +06/17/2021,2:59,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427961,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,7:00,QUEENS,11102,40.767445,-73.92064,"(40.767445, -73.92064)",,,31-09 NEWTOWN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428843,Sedan,,,, +06/15/2021,14:30,MANHATTAN,10013,40.71615,-74.00874,"(40.71615, -74.00874)",,,112 WEST BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4428479,Sedan,,,, +06/17/2021,11:29,BROOKLYN,11206,0,0,"(0.0, 0.0)",LEE AVENUE,WALLABOUT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428305,Sedan,,,, +06/16/2021,16:53,,,40.651512,-74.00734,"(40.651512, -74.00734)",41 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428195,Sedan,,,, +06/16/2021,18:00,BROOKLYN,11226,40.6501,-73.960785,"(40.6501, -73.960785)",,,2010 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427844,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,23:00,,,40.70219,-73.928345,"(40.70219, -73.928345)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4428342,Bike,,,, +06/16/2021,14:32,,,40.83959,-73.88268,"(40.83959, -73.88268)",BOSTON ROAD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428010,Sedan,Sedan,,, +06/17/2021,7:10,QUEENS,11691,,,,BEACH 25 STREET,CORNAGA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428325,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,19:00,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428621,Box Truck,Sedan,Sedan,, +06/17/2021,15:35,,,40.68443,-73.9661,"(40.68443, -73.9661)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4428549,Sedan,,,, +06/14/2021,12:00,MANHATTAN,10028,40.775562,-73.95035,"(40.775562, -73.95035)",EAST 84 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428347,Sedan,,,, +06/17/2021,13:45,,,40.738796,-73.97716,"(40.738796, -73.97716)",EAST 26 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428156,Station Wagon/Sport Utility Vehicle,Bike,,, +06/17/2021,11:55,BROOKLYN,11211,40.708904,-73.95926,"(40.708904, -73.95926)",BROADWAY,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,11:15,,,40.703655,-73.822464,"(40.703655, -73.822464)",METROPOLITAN AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427722,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,16:30,,,40.768875,-73.90852,"(40.768875, -73.90852)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4427932,Station Wagon/Sport Utility Vehicle,Sedan,Dump,, +06/16/2021,9:45,,,40.82499,-73.91662,"(40.82499, -73.91662)",EAST 161 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427971,Box Truck,Sedan,,, +06/17/2021,13:35,QUEENS,11102,40.769245,-73.919044,"(40.769245, -73.919044)",,,26-34 31 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428838,Sedan,Sedan,,, +06/18/2021,23:10,BRONX,10455,40.813484,-73.90704,"(40.813484, -73.90704)",,,585 WALES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428675,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/16/2021,9:20,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4427761,Sedan,Sedan,Sedan,, +06/16/2021,13:25,BROOKLYN,11210,40.63658,-73.93747,"(40.63658, -73.93747)",,,1493 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427869,Sedan,,,, +06/18/2021,12:55,QUEENS,11367,,,,,,79-11 146 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429000,Sedan,Sedan,,, +06/18/2021,10:10,MANHATTAN,10024,40.788166,-73.9721,"(40.788166, -73.9721)",,,123 WEST 88 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428385,Box Truck,Sedan,,, +06/17/2021,0:24,,,40.840775,-73.87246,"(40.840775, -73.87246)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428069,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,16:30,BROOKLYN,11219,40.64029,-73.994804,"(40.64029, -73.994804)",FORT HAMILTON PARKWAY,45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428889,Sedan,,,, +06/17/2021,13:30,QUEENS,11375,40.720165,-73.844795,"(40.720165, -73.844795)",71 AVENUE,AUSTIN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428484,Convertible,,,, +06/18/2021,8:16,QUEENS,11419,40.692135,-73.83485,"(40.692135, -73.83485)",ATLANTIC AVENUE,111 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4428402,Sedan,Sedan,,, +06/17/2021,7:47,BRONX,10458,40.86906,-73.88914,"(40.86906, -73.88914)",BRIGGS AVENUE,EAST 198 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429327,Sedan,Sedan,,, +06/17/2021,6:40,,,40.73425,-73.86336,"(40.73425, -73.86336)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4428117,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/17/2021,7:45,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428015,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,12:31,BRONX,10456,40.831635,-73.91894,"(40.831635, -73.91894)",EAST 166 STREET,CARROLL PLACE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4428270,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,8:30,QUEENS,11377,40.740875,-73.89962,"(40.740875, -73.89962)",QUEENS BOULEVARD,65 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427836,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,8:52,QUEENS,11693,0,0,"(0.0, 0.0)",BEACH CHANNEL DRIVE,BEACH 91 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4428543,Lunch Wagon,Dump,,, +06/16/2021,10:00,,,40.72587,-73.76129,"(40.72587, -73.76129)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,17:50,BROOKLYN,11212,40.667156,-73.9101,"(40.667156, -73.9101)",ROCKAWAY AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428897,Sedan,,,, +06/17/2021,23:15,,,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428353,Taxi,Taxi,,, +06/16/2021,14:54,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427877,Box Truck,Box Truck,,, +06/16/2021,14:00,BROOKLYN,11209,40.61987,-74.02632,"(40.61987, -74.02632)",88 STREET,GELSTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428234,Sedan,,,, +06/06/2021,11:55,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428591,Sedan,,,, +06/17/2021,18:40,BROOKLYN,11234,40.632492,-73.933975,"(40.632492, -73.933975)",,,4404 AVENUE H,1,0,1,0,0,0,0,0,Unspecified,,,,,4428501,Bike,,,, +06/17/2021,14:56,STATEN ISLAND,10307,,,,,,434 Page avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4428440,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,16:05,BROOKLYN,11206,40.693615,-73.93843,"(40.693615, -73.93843)",,,319 PULASKI STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4428856,Sedan,,,, +06/14/2021,8:00,,,40.674,-73.960396,"(40.674, -73.960396)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428963,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,11:49,MANHATTAN,10065,40.761787,-73.95745,"(40.761787, -73.95745)",YORK AVENUE,EAST 64 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428379,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,13:03,QUEENS,11412,40.692123,-73.75541,"(40.692123, -73.75541)",118 AVENUE,196 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4428411,Bus,Sedan,,, +06/17/2021,18:15,,,40.748398,-73.99995,"(40.748398, -73.99995)",WEST 26 STREET,WEST STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429314,Box Truck,,,, +06/17/2021,18:30,BROOKLYN,11215,40.667625,-73.99424,"(40.667625, -73.99424)",,,578 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428728,Sedan,Sedan,,, +06/16/2021,15:12,,,,,,CALHOUN AVENUE,BRUCKNER EXPRESSWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4428609,Sedan,Sedan,,, +06/16/2021,18:25,,,40.74071,-74.00903,"(40.74071, -74.00903)",WEST STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428469,Box Truck,Sedan,,, +06/12/2021,13:12,BRONX,10465,40.83554,-73.818054,"(40.83554, -73.818054)",DEAN AVENUE,LAYTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428644,Tanker,Sedan,,, +06/18/2021,6:23,BRONX,10452,40.83988,-73.916794,"(40.83988, -73.916794)",EAST 170 STREET,TOWNSEND AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4428374,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,10:30,BROOKLYN,11221,40.689133,-73.92513,"(40.689133, -73.92513)",,,970 GATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428877,Sedan,,,, +06/17/2021,17:15,,,40.762264,-73.78527,"(40.762264, -73.78527)",FRANCIS LEWIS BOULEVARD,39 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4428229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/04/2021,16:49,BROOKLYN,11238,40.681137,-73.95567,"(40.681137, -73.95567)",FRANKLIN AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429163,Sedan,Sedan,,, +06/16/2021,21:00,BROOKLYN,11223,40.60915,-73.96998,"(40.60915, -73.96998)",EAST 4 STREET,AVENUE P,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429266,Sedan,Bike,,, +06/17/2021,14:00,QUEENS,11433,40.702396,-73.78018,"(40.702396, -73.78018)",,,177-23 106 ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428174,Pick-up Truck,,,, +06/17/2021,6:49,,,,,,Fulton St,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4428058,Sedan,,,, +06/17/2021,14:20,STATEN ISLAND,10307,40.516754,-74.23339,"(40.516754, -74.23339)",,,289 PAGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428437,Sedan,,,, +06/18/2021,12:00,BROOKLYN,11220,40.645348,-74.01375,"(40.645348, -74.01375)",4 AVENUE,52 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428496,Sedan,E-Scooter,,, +05/12/2021,8:02,BROOKLYN,11205,40.69909,-73.95608,"(40.69909, -73.95608)",FLUSHING AVENUE,SPENCER STREET,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428627,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,17:46,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428939,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,7:31,BROOKLYN,11203,40.651142,-73.92164,"(40.651142, -73.92164)",,,131 EAST 59 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428220,Motorcycle,Bus,,, +06/18/2021,0:20,QUEENS,11358,40.763496,-73.80734,"(40.763496, -73.80734)",158 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428573,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/12/2021,20:20,,,40.87831,-73.870155,"(40.87831, -73.870155)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429075,Sedan,,,, +06/16/2021,10:48,BROOKLYN,11232,40.643147,-73.99802,"(40.643147, -73.99802)",44 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,20:20,BROOKLYN,11207,40.66182,-73.88015,"(40.66182, -73.88015)",,,833 ASHFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427957,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,17:47,QUEENS,11377,40.735676,-73.90284,"(40.735676, -73.90284)",51 AVENUE,63 STREET,,2,0,0,0,0,0,2,0,Using On Board Navigation Device,Failure to Yield Right-of-Way,,,,4428533,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,1:09,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,5,0,0,0,0,0,5,0,Turning Improperly,Traffic Control Disregarded,,,,4429178,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,17:07,,,40.85078,-73.91222,"(40.85078, -73.91222)",WEST 177 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428319,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,3:50,QUEENS,11377,40.764538,-73.90439,"(40.764538, -73.90439)",,,49-09 25 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427676,Sedan,Sedan,,, +06/17/2021,9:44,BROOKLYN,11229,40.599907,-73.94664,"(40.599907, -73.94664)",BEDFORD AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4428301,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/16/2021,11:45,BROOKLYN,11208,40.677998,-73.88272,"(40.677998, -73.88272)",,,244 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427805,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/17/2021,15:46,BROOKLYN,11222,40.725906,-73.9354,"(40.725906, -73.9354)",VARICK AVENUE,MEEKER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4428265,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +06/17/2021,0:10,BRONX,10458,40.857117,-73.89907,"(40.857117, -73.89907)",RYER AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427977,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,12:30,QUEENS,11429,40.70916,-73.728546,"(40.70916, -73.728546)",,,105-01 227 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428511,Sedan,,,, +06/16/2021,17:50,BRONX,10454,40.8086,-73.909775,"(40.8086, -73.909775)",SAINT MARYS STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427936,Sedan,Sedan,,, +06/15/2021,14:15,BROOKLYN,11215,40.655834,-73.98123,"(40.655834, -73.98123)",19 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Tow Hitch Defective,Unspecified,,,,4428930,Tow Truck / Wrecker,Sedan,,, +06/18/2021,16:41,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,18:33,,,40.62553,-73.932434,"(40.62553, -73.932434)",EAST 45 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428787,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,15:30,,,40.84046,-73.88596,"(40.84046, -73.88596)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4428338,Sedan,Tractor Truck Diesel,,, +06/14/2021,19:20,BROOKLYN,11223,40.6099,-73.96307,"(40.6099, -73.96307)",,,1022 AVENUE P,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428417,Convertible,Box Truck,,, +06/18/2021,23:48,BROOKLYN,11235,40.583485,-73.95014,"(40.583485, -73.95014)",,,1825 EMMONS AVENUE,1,0,0,0,1,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4429206,Sedan,Bike,,, +06/14/2021,12:42,,,40.855568,-73.93796,"(40.855568, -73.93796)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428910,Tanker,Sedan,,, +06/16/2021,16:03,BROOKLYN,11249,40.710625,-73.96678,"(40.710625, -73.96678)",WYTHE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4427893,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,16:00,BROOKLYN,11217,40.68627,-73.97813,"(40.68627, -73.97813)",,,300 ASHLAND PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428233,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,13:30,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",UNION AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Obstruction/Debris,Driver Inattention/Distraction,,,,4428389,Sedan,Sedan,,, +06/17/2021,9:00,BROOKLYN,11221,40.692024,-73.9391,"(40.692024, -73.9391)",,,372 KOSCIUSZKO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428122,Sedan,,,, +06/16/2021,19:15,BROOKLYN,11213,40.67082,-73.935135,"(40.67082, -73.935135)",,,1303 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428952,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,21:16,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4429319,Sedan,Scooter,,, +06/17/2021,18:45,BRONX,10456,40.828594,-73.9045,"(40.828594, -73.9045)",,,590 EAST 167 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428406,Sedan,Sedan,,, +06/16/2021,19:28,,,40.671196,-73.84296,"(40.671196, -73.84296)",149 AVENUE,CROSS BAY BOULEVARD,,2,0,2,0,0,0,0,0,Glare,,,,,4427909,Sedan,,,, +06/16/2021,8:50,BROOKLYN,11233,40.67137,-73.913155,"(40.67137, -73.913155)",,,1939 PARK PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428062,Sedan,,,, +06/17/2021,23:00,BROOKLYN,11239,40.647816,-73.88612,"(40.647816, -73.88612)",,,594 LOUISIANA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428247,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,19:40,STATEN ISLAND,10304,40.608982,-74.088135,"(40.608982, -74.088135)",TARGEE STREET,DEKALB STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4429056,Sedan,Sedan,Sedan,, +06/16/2021,17:40,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4427851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,8:15,BROOKLYN,11209,40.6321,-74.03048,"(40.6321, -74.03048)",BAY RIDGE PARKWAY,RIDGE BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428472,Dump,,,, +06/17/2021,20:45,BROOKLYN,11220,40.6374,-74.01116,"(40.6374, -74.01116)",7 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428721,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,12:50,BRONX,10457,40.85437,-73.892044,"(40.85437, -73.892044)",,,2285 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428011,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,14:00,BRONX,10468,40.860287,-73.90494,"(40.860287, -73.90494)",GRAND AVENUE,NORTH STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inexperience,,,,4428455,Sedan,Sedan,,, +06/18/2021,12:00,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,2,0,0,0,1,0,1,0,Alcohol Involvement,Unspecified,,,,4428595,Motorscooter,Bike,,, +06/16/2021,21:47,,,,,,COLLEGE POINT BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4428980,Sedan,,,, +05/09/2021,11:25,,,40.686577,-73.947464,"(40.686577, -73.947464)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428613,E-Bike,Sedan,,, +06/18/2021,6:30,,,40.7502,-73.83518,"(40.7502, -73.83518)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428394,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,19:50,BRONX,10457,40.851967,-73.897095,"(40.851967, -73.897095)",EAST 180 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4428565,Sedan,,,, +06/18/2021,7:40,BRONX,10469,40.869495,-73.85566,"(40.869495, -73.85566)",LACONIA AVENUE,ADEE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4428444,Sedan,Sedan,,, +06/18/2021,2:08,,,40.721226,-73.8267,"(40.721226, -73.8267)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4428560,Sedan,Sedan,,, +06/18/2021,10:00,QUEENS,11412,40.69612,-73.74619,"(40.69612, -73.74619)",FRANCIS LEWIS BOULEVARD,LINDEN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428407,Sedan,,,, +06/17/2021,23:35,QUEENS,11368,40.74884,-73.86296,"(40.74884, -73.86296)",41 AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4429271,Pick-up Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/18/2021,1:00,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428508,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,11:37,BROOKLYN,11220,40.64612,-74.01803,"(40.64612, -74.01803)",,,259 54 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428606,Sedan,,,, +06/15/2021,0:20,MANHATTAN,10018,40.75228,-73.9897,"(40.75228, -73.9897)",7 AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429150,Van,Sedan,,, +06/17/2021,0:10,QUEENS,11368,40.752846,-73.86425,"(40.752846, -73.86425)",,,37-08 103 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4428043,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/18/2021,15:15,BROOKLYN,11223,40.594074,-73.960884,"(40.594074, -73.960884)",,,2574 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4428639,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,19:00,,,40.743156,-73.97213,"(40.743156, -73.97213)",FDR DRIVE,EAST 34 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427873,Sedan,Taxi,,, +06/17/2021,22:57,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428540,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,23:30,,,40.673565,-73.90788,"(40.673565, -73.90788)",EAST NEW YORK AVENUE,STONE AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4428870,Sedan,,,, +06/17/2021,17:15,MANHATTAN,10028,40.78028,-73.957146,"(40.78028, -73.957146)",,,1040 PARK AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4428306,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/16/2021,11:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428570,Sedan,,,, +06/17/2021,18:46,,,40.686085,-73.982666,"(40.686085, -73.982666)",NEVINS STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429193,Sedan,,,, +06/18/2021,16:20,BROOKLYN,11222,40.731842,-73.95978,"(40.731842, -73.95978)",,,21 INDIA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428631,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,11:22,MANHATTAN,10128,40.780605,-73.95225,"(40.780605, -73.95225)",,,200 EAST 89 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4428433,Sedan,,,, +06/18/2021,20:00,BRONX,10461,40.851093,-73.847534,"(40.851093, -73.847534)",,,1225 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4428693,ambulance,Pick-up Truck,,, +06/17/2021,18:25,BROOKLYN,11221,40.687557,-73.93896,"(40.687557, -73.93896)",MARCUS GARVEY BOULEVARD,GATES AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,12:00,,,40.69412,-73.96017,"(40.69412, -73.96017)",TAAFFE PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428375,Sedan,,,, +06/18/2021,17:03,,,40.860516,-73.9146,"(40.860516, -73.9146)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4429189,Station Wagon/Sport Utility Vehicle,Sedan,Convertible,, +06/16/2021,8:48,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427982,Station Wagon/Sport Utility Vehicle,Bus,,, +06/14/2021,13:30,BROOKLYN,11212,40.663517,-73.90238,"(40.663517, -73.90238)",POWELL STREET,LIVONIA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4428995,Sedan,,,, +06/15/2021,20:00,QUEENS,11434,0,0,"(0.0, 0.0)",FOCH BOULEVARD,157 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428657,Bike,,,, +06/16/2021,6:30,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427695,Sedan,,,, +06/16/2021,8:20,,,40.769604,-73.91139,"(40.769604, -73.91139)",38 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427917,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +06/18/2021,13:20,,,40.69149,-73.92557,"(40.69149, -73.92557)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428487,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,16:20,,,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428771,Sedan,Van,,, +06/17/2021,18:45,BROOKLYN,11249,,,,KENT AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4428281,Sedan,Flat Bed,,, +06/11/2021,20:30,,,,,,SEDGWICK AVENUE,WEST 161 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Other Vehicular,,,4428421,Taxi,Sedan,Pick-up Truck,, +06/14/2021,6:10,QUEENS,11378,40.717762,-73.91806,"(40.717762, -73.91806)",GRAND AVENUE,PAGE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,View Obstructed/Limited,,,,4428523,Sedan,Sedan,,, +06/16/2021,0:40,BROOKLYN,11204,40.62543,-73.98531,"(40.62543, -73.98531)",,,1744 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427928,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,17:03,,,40.785156,-73.97901,"(40.785156, -73.97901)",BROADWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427847,Van,,,, +06/16/2021,7:19,,,40.769737,-73.91244,"(40.769737, -73.91244)",37 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4427916,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/17/2021,22:43,,,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428251,Sedan,Bike,,, +06/17/2021,5:00,QUEENS,11429,40.705532,-73.738365,"(40.705532, -73.738365)",,,218-36 112 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428087,Sedan,Sedan,,, +06/16/2021,18:00,BROOKLYN,11237,40.71242,-73.92387,"(40.71242, -73.92387)",SCOTT AVENUE,SCHOLES STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427887,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +06/16/2021,10:00,MANHATTAN,10022,40.75433,-73.96527,"(40.75433, -73.96527)",,,409 EAST 51 STREET,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4428101,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +06/17/2021,23:00,BRONX,10456,40.82855,-73.90959,"(40.82855, -73.90959)",,,435 EAST 166 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428806,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,10:45,STATEN ISLAND,10301,40.626686,-74.103355,"(40.626686, -74.103355)",,,11 BIRCH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,14:33,QUEENS,11429,40.712055,-73.75319,"(40.712055, -73.75319)",FRANCIS LEWIS BOULEVARD,100 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428141,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,17:49,BROOKLYN,11232,40.665882,-73.99642,"(40.665882, -73.99642)",3 AVENUE,18 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428556,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,17:00,BROOKLYN,11211,40.718994,-73.95368,"(40.718994, -73.95368)",,,200 NORTH 11 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428269,Sedan,,,, +06/17/2021,22:00,MANHATTAN,10033,40.84554,-73.93278,"(40.84554, -73.93278)",AMSTERDAM AVENUE,WEST 177 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428825,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/16/2021,12:00,BRONX,10473,40.821693,-73.87743,"(40.821693, -73.87743)",,,1520 STORY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428029,Sedan,,,, +06/17/2021,19:46,BRONX,10460,40.835884,-73.88341,"(40.835884, -73.88341)",BOONE AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4428426,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,20:00,MANHATTAN,10025,0,0,"(0.0, 0.0)",,,212 WEST 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428214,Convertible,,,, +06/17/2021,23:38,MANHATTAN,10023,40.77303,-73.97829,"(40.77303, -73.97829)",CENTRAL PARK WEST,WEST 67 STREET,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429016,E-Bike,Box Truck,,, +06/17/2021,20:30,BRONX,10459,40.81853,-73.8989,"(40.81853, -73.8989)",DAWSON STREET,STEBBINS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428459,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,22:29,,,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428580,Sedan,Sedan,,, +06/18/2021,23:22,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",SOUTHERN BOULEVARD,BRONX RIVER PARKWAY,,0,1,0,0,0,1,0,0,Unsafe Speed,Unspecified,,,,4428754,Sedan,Bike,,, +06/18/2021,1:00,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4428311,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/17/2021,13:40,MANHATTAN,10010,40.73978,-73.97952,"(40.73978, -73.97952)",EAST 26 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428476,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,16:09,,,40.818233,-73.95273,"(40.818233, -73.95273)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4428601,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,19:15,,,,,,SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429307,Station Wagon/Sport Utility Vehicle,Bike,,, +06/17/2021,11:40,BROOKLYN,11234,40.624035,-73.91969,"(40.624035, -73.91969)",EAST 58 STREET,AVENUE L,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4428448,Sedan,Sedan,,, +06/17/2021,12:15,MANHATTAN,10024,40.784527,-73.979485,"(40.784527, -73.979485)",WEST 80 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429088,Sedan,,,, +06/17/2021,13:10,BROOKLYN,11203,40.651196,-73.93032,"(40.651196, -73.93032)",,,891 UTICA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428764,Dump,Sedan,,, +06/17/2021,15:20,BRONX,10459,40.82244,-73.90199,"(40.82244, -73.90199)",EAST 163 STREET,UNION AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428808,Sedan,Sedan,,, +06/18/2021,16:40,,,40.593163,-73.9086,"(40.593163, -73.9086)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,,,,4428504,Sedan,Sedan,,, +06/18/2021,12:25,BROOKLYN,11216,40.682507,-73.94375,"(40.682507, -73.94375)",TOMPKINS AVENUE,HALSEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428588,Sedan,Bike,,, +06/18/2021,23:52,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",111 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428654,Sedan,Sedan,,, +06/15/2021,16:10,BROOKLYN,11213,40.67019,-73.93935,"(40.67019, -73.93935)",ALBANY AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4428962,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/18/2021,15:00,BROOKLYN,11208,,,,EGAN STREET,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429047,Bus,Sprinter,,, +06/16/2021,13:15,,,40.616547,-74.02607,"(40.616547, -74.02607)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428986,Sedan,Tow Truck / Wrecker,,, +06/17/2021,18:00,,,40.653873,-74.008156,"(40.653873, -74.008156)",39 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428196,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,13:10,QUEENS,11691,40.599003,-73.74117,"(40.599003, -73.74117)",,,615 MEEHAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428330,Sedan,Sedan,,, +05/28/2021,17:15,MANHATTAN,10029,40.794205,-73.93516,"(40.794205, -73.93516)",,,455 EAST 114 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429125,Sedan,Flat Bed,,, +06/17/2021,19:39,BROOKLYN,11214,40.600204,-74.00284,"(40.600204, -74.00284)",CROPSEY AVENUE,20 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428717,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/03/2021,17:15,,,40.68175,-73.96748,"(40.68175, -73.96748)",VANDERBILT AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428536,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/16/2021,3:30,BROOKLYN,11221,40.69706,-73.91933,"(40.69706, -73.91933)",BLEECKER STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4428343,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/15/2021,10:00,,,40.546955,-74.18129,"(40.546955, -74.18129)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428431,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:00,,,40.684902,-73.92946,"(40.684902, -73.92946)",REID AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428847,Bike,,,, +06/16/2021,12:00,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4427972,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,13:00,MANHATTAN,10010,40.737553,-73.97806,"(40.737553, -73.97806)",EAST 24 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4427759,Bus,Ambulance,,, +06/16/2021,2:50,BRONX,10457,40.843655,-73.901344,"(40.843655, -73.901344)",,,4044 PARK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4427766,,,,, +06/16/2021,16:55,QUEENS,11368,40.73838,-73.85465,"(40.73838, -73.85465)",,,58-35 GRANGER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4427947,PK,,,, +06/17/2021,9:50,MANHATTAN,10002,40.722164,-73.98729,"(40.722164, -73.98729)",,,188 LUDLOW STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428137,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,13:45,BROOKLYN,11208,40.667168,-73.88087,"(40.667168, -73.88087)",NEW LOTS AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427786,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/17/2021,14:16,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",HOWARD AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428904,Sedan,Sedan,,, +06/16/2021,10:20,MANHATTAN,10019,40.76922,-73.98478,"(40.76922, -73.98478)",WEST 59 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4427962,Garbage or Refuse,,,, +06/18/2021,9:15,BRONX,10452,40.839603,-73.918144,"(40.839603, -73.918144)",ELLIOT PLACE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428706,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,18:15,MANHATTAN,10027,40.81244,-73.95255,"(40.81244, -73.95255)",,,372 WEST 127 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4428162,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/16/2021,15:10,BROOKLYN,11238,40.68308,-73.96886,"(40.68308, -73.96886)",,,483 CLERMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427835,Sedan,Motorcycle,,, +06/18/2021,15:30,,,40.769703,-73.914,"(40.769703, -73.914)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428491,Sedan,Sedan,,, +06/16/2021,14:44,BROOKLYN,11206,40.700623,-73.93645,"(40.700623, -73.93645)",FORREST STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4427991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/18/2021,7:10,BROOKLYN,11207,40.67719,-73.88754,"(40.67719, -73.88754)",,,2890 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428616,Station Wagon/Sport Utility Vehicle,Dump,,, +06/16/2021,10:56,BROOKLYN,11220,40.646458,-74.01609,"(40.646458, -74.01609)",,,5224 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428193,Box Truck,Box Truck,,, +06/16/2021,8:53,MANHATTAN,10028,40.780537,-73.958084,"(40.780537, -73.958084)",,,68 EAST 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4427708,Sedan,,,, +06/17/2021,19:30,,,40.833412,-73.85906,"(40.833412, -73.85906)",WESTCHESTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428362,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,2:00,QUEENS,11368,40.742245,-73.85326,"(40.742245, -73.85326)",,,109-19 54 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4427948,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,13:00,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4428286,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,9:30,BRONX,10459,40.81858,-73.89387,"(40.81858, -73.89387)",,,870 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428682,Sedan,Sedan,,, +06/18/2021,5:30,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428519,Box Truck,,,, +06/15/2020,20:05,BROOKLYN,11201,40.688877,-73.98991,"(40.688877, -73.98991)",,,275 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4428502,Sedan,,,, +06/17/2021,23:50,QUEENS,11101,40.755714,-73.92056,"(40.755714, -73.92056)",,,34-38 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4428842,Van,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/18/2021,12:00,MANHATTAN,10014,40.727184,-74.00335,"(40.727184, -74.00335)",,,210 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428480,Pick-up Truck,,,, +06/17/2021,20:20,,,40.71604,-73.80504,"(40.71604, -73.80504)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4428984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/16/2021,18:30,BROOKLYN,11205,40.692627,-73.959,"(40.692627, -73.959)",WILLOUGHBY AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429164,Station Wagon/Sport Utility Vehicle,Bike,,, +06/16/2021,14:00,,,,,,NEW ENGLAND THRUWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427985,Sedan,Tractor Truck Diesel,,, +06/14/2021,19:52,BROOKLYN,11237,40.691265,-73.9051,"(40.691265, -73.9051)",DECATUR STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428341,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,4:00,QUEENS,11103,40.767204,-73.910095,"(40.767204, -73.910095)",25 AVENUE,42 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4429253,Sedan,Sedan,,, +06/18/2021,18:05,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",VAN SICLEN AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428624,Sedan,Sedan,,, +06/16/2021,15:11,QUEENS,11357,40.769844,-73.83656,"(40.769844, -73.83656)",,,30-56 WHITESTONE EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428009,Sedan,Bus,,, +06/17/2021,18:21,BROOKLYN,11225,40.66978,-73.94932,"(40.66978, -73.94932)",,,576 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428317,Sedan,,,, +06/18/2021,15:30,,,40.685196,-73.97829,"(40.685196, -73.97829)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428679,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,9:10,QUEENS,11436,40.679096,-73.79822,"(40.679096, -73.79822)",FOCH BOULEVARD,143 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4427727,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/16/2021,1:20,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427785,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,9:20,MANHATTAN,10032,40.84115,-73.942696,"(40.84115, -73.942696)",,,177 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428880,Taxi,Bike,,, +06/18/2021,0:00,BROOKLYN,11203,40.654278,-73.92292,"(40.654278, -73.92292)",LINDEN BOULEVARD,EAST 58 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428763,Sedan,Tractor Truck Diesel,,, +06/16/2021,23:12,QUEENS,11385,40.7031,-73.859795,"(40.7031, -73.859795)",,,87-47 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4428175,Sedan,Sedan,,, +06/17/2021,13:38,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428703,Tractor Truck Diesel,Box Truck,,, +06/15/2021,15:43,QUEENS,11435,40.708923,-73.81877,"(40.708923, -73.81877)",,,137-75 QUEENS BOULEVARD,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4428940,Sedan,Bike,,, +06/14/2021,1:00,BROOKLYN,11233,40.68337,-73.93634,"(40.68337, -73.93634)",,,409 HALSEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428849,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,16:30,STATEN ISLAND,10306,40.57323,-74.14702,"(40.57323, -74.14702)",RICHMOND HILL ROAD,OLD MILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428645,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/17/2021,16:20,BROOKLYN,11220,40.643288,-74.0122,"(40.643288, -74.0122)",,,5313 5 AVENUE,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4428497,Bike,Sedan,,, +06/16/2021,9:40,BROOKLYN,11232,40.651676,-74.010635,"(40.651676, -74.010635)",3 AVENUE,43 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428183,Bike,Sedan,,, +06/03/2021,7:00,BRONX,10470,40.89675,-73.86864,"(40.89675, -73.86864)",,,247 EAST 234 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429098,Pick-up Truck,,,, +06/16/2021,1:55,,,40.681473,-73.72776,"(40.681473, -73.72776)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427829,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,15:10,BROOKLYN,11212,40.67007,-73.91591,"(40.67007, -73.91591)",,,1400 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428164,Sedan,Sedan,,, +06/16/2021,11:00,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4428028,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,22:30,QUEENS,11379,40.708027,-73.877594,"(40.708027, -73.877594)",,,73-23 69 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428463,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,9:15,,,40.673588,-73.73351,"(40.673588, -73.73351)",MERRICK BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428127,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,8:15,BROOKLYN,11236,40.648354,-73.91001,"(40.648354, -73.91001)",EAST 94 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427750,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,16:40,,,,,,BROOKLYN BATTERY TUNNEL,WARD STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Following Too Closely,,,,4428331,Sedan,Sedan,,, +06/18/2021,14:45,,,40.82804,-73.94251,"(40.82804, -73.94251)",WEST 151 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4428564,Sedan,Taxi,,, +06/16/2021,7:22,MANHATTAN,10024,40.784355,-73.98117,"(40.784355, -73.98117)",WEST 79 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427845,Sedan,Bus,,, +06/17/2021,23:08,,,,,,SHORE PARKWAY,HOMECREST AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4428304,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,8:26,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4427690,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/17/2021,14:34,BRONX,10472,40.829685,-73.87401,"(40.829685, -73.87401)",,,1635 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428363,Sedan,Sedan,,, +06/18/2021,18:24,BRONX,10470,40.90304,-73.849556,"(40.90304, -73.849556)",FURMAN AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429059,Sedan,,,, +06/18/2021,6:18,,,40.674145,-73.93062,"(40.674145, -73.93062)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4428293,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,12:45,MANHATTAN,10025,,,,amsterdam avenue,west 106 street,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4427807,Motorcycle,,,, +06/16/2021,19:34,,,40.689144,-73.99071,"(40.689144, -73.99071)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428490,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,16:58,,,,,,188 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,16:11,BROOKLYN,11230,40.63376,-73.963776,"(40.63376, -73.963776)",,,1411 FOSTER AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4428798,Sedan,Sedan,,, +06/16/2021,11:40,BRONX,10455,40.815975,-73.91102,"(40.815975, -73.91102)",WESTCHESTER AVENUE,EAGLE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427941,Refrigerated Van,Sedan,,, +06/18/2021,15:15,QUEENS,11434,40.68199,-73.788414,"(40.68199, -73.788414)",FOCH BOULEVARD,155 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428648,Sedan,Sedan,,, +06/17/2021,9:30,,,,,,188 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4428416,Garbage or Refuse,Sedan,,, +06/16/2021,13:00,QUEENS,11435,40.694313,-73.80794,"(40.694313, -73.80794)",102 AVENUE,BRISBIN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4427795,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,7:00,QUEENS,11101,,,,54 AVENUE,CENTER BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428384,Flat Bed,Sedan,,, +06/16/2021,13:27,BRONX,10451,40.82751,-73.92495,"(40.82751, -73.92495)",GERARD AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428085,Sedan,Sedan,,, +06/16/2021,17:54,QUEENS,11004,40.74021,-73.71036,"(40.74021, -73.71036)",,,82-37 259 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4427903,Sedan,,,, +06/12/2021,3:20,BROOKLYN,11238,40.682373,-73.96162,"(40.682373, -73.96162)",GRAND AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429011,Sedan,Sedan,,, +06/11/2021,12:15,,,40.83863,-73.93348,"(40.83863, -73.93348)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428824,Sedan,,,, +06/16/2021,17:14,BROOKLYN,11207,40.681946,-73.904884,"(40.681946, -73.904884)",BUSHWICK AVENUE,DE SALES PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,10:00,BROOKLYN,11222,40.732468,-73.953186,"(40.732468, -73.953186)",,,169 INDIA STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4428634,Sedan,Taxi,,, +06/18/2021,8:35,BRONX,10466,40.88734,-73.824615,"(40.88734, -73.824615)",,,4199 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429074,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,19:00,BROOKLYN,11215,40.674465,-73.97547,"(40.674465, -73.97547)",UNION STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428259,Sedan,,,, +06/17/2021,19:03,BRONX,10459,40.826065,-73.88784,"(40.826065, -73.88784)",,,1090 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428458,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,0:20,BROOKLYN,11207,40.66314,-73.88003,"(40.66314, -73.88003)",LINDEN BOULEVARD,CLEVELAND STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427960,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/18/2021,16:50,,,40.6997,-73.94425,"(40.6997, -73.94425)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428598,SPRINTER V,Sedan,,, +06/18/2021,14:30,,,40.797916,-73.96385,"(40.797916, -73.96385)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unsafe Lane Changing,,,,4428749,Box Truck,Sedan,,, +06/12/2021,0:26,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429176,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,10:53,QUEENS,11385,40.712006,-73.919266,"(40.712006, -73.919266)",FLUSHING AVENUE,CHARLOTTE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428522,Box Truck,Sedan,,, +06/16/2021,19:33,,,,,,141 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428979,Sedan,Tow Truck / Wrecker,,, +06/17/2021,18:20,BROOKLYN,11225,40.66213,-73.95458,"(40.66213, -73.95458)",,,211 LEFFERTS AVENUE,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428324,Pick-up Truck,Sedan,,, +06/16/2021,16:59,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",BOWERY,DELANCEY STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Passing or Lane Usage Improper,,,,4427981,Sedan,Sedan,,, +06/18/2021,18:50,QUEENS,11103,40.765957,-73.91551,"(40.765957, -73.91551)",,,28-33 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428858,Sedan,Sedan,,, +06/18/2021,8:30,,,40.675667,-73.86436,"(40.675667, -73.86436)",CONDUIT BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428608,Sedan,,,, +06/16/2021,23:15,,,40.677483,-73.93033,"(40.677483, -73.93033)",UTICA AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4428052,Sedan,Bike,,, +06/17/2021,13:00,,,40.718826,-73.98424,"(40.718826, -73.98424)",ATTORNEY STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428155,Sedan,Box Truck,,, +06/14/2021,12:30,BROOKLYN,11234,40.617554,-73.94206,"(40.617554, -73.94206)",,,3307 AVENUE N,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428789,Sedan,Sedan,,, +06/17/2021,21:50,MANHATTAN,10003,40.725582,-73.989876,"(40.725582, -73.989876)",2 AVENUE,EAST 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429265,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,20:39,BRONX,10460,40.842625,-73.87818,"(40.842625, -73.87818)",EAST 180 STREET,BOSTON ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4428337,Sedan,Moped,,, +06/16/2021,14:40,QUEENS,11365,40.739494,-73.7928,"(40.739494, -73.7928)",,,181-05 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427857,Sedan,,,, +06/18/2021,21:49,,,40.607445,-73.99531,"(40.607445, -73.99531)",20 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428689,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,10:51,BRONX,10451,40.816868,-73.92072,"(40.816868, -73.92072)",,,321 EAST 149 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428288,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/16/2021,22:07,BROOKLYN,11206,40.70653,-73.94389,"(40.70653, -73.94389)",,,155 JOHNSON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427897,E-Bike,Sedan,,, +06/10/2021,18:50,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4429215,Box Truck,Sedan,,, +06/17/2021,17:00,MANHATTAN,10028,40.775246,-73.94763,"(40.775246, -73.94763)",YORK AVENUE,EAST 85 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429233,E-Bike,,,, +06/16/2021,7:26,,,,,,PELHAM PARKWAY SOUTH,WILLIAMSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428070,Sedan,Van,,, +06/17/2021,19:42,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428271,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,7:40,,,40.844173,-73.91746,"(40.844173, -73.91746)",MACOMBS ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4428369,Sedan,Sedan,Sedan,, +06/16/2021,19:00,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427850,Pick-up Truck,Sedan,,, +06/18/2021,13:00,,,40.688934,-73.905045,"(40.688934, -73.905045)",MOFFAT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428485,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,6:38,BRONX,10454,40.80321,-73.91892,"(40.80321, -73.91892)",EAST 133 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4427672,Sedan,Sedan,Sedan,, +06/16/2021,0:15,MANHATTAN,10037,40.81719,-73.93447,"(40.81719, -73.93447)",WEST 142 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428105,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,20:00,BROOKLYN,11214,40.608006,-73.99473,"(40.608006, -73.99473)",80 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,7:04,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,0:00,STATEN ISLAND,10309,40.50773,-74.230064,"(40.50773, -74.230064)",HYLAN BOULEVARD,PAGE AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4428427,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,14:50,,,40.718815,-73.793274,"(40.718815, -73.793274)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,12:45,,,40.706142,-74.00603,"(40.706142, -74.00603)",WATER STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4427775,Sedan,Motorcycle,,, +06/17/2021,8:50,,,40.690796,-73.95637,"(40.690796, -73.95637)",SKILLMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428572,Sedan,Box Truck,,, +06/17/2021,21:53,,,40.862602,-73.92028,"(40.862602, -73.92028)",10 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428352,Sedan,Sedan,,, +06/17/2021,1:10,BROOKLYN,11220,40.63532,-74.02324,"(40.63532, -74.02324)",68 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427878,Sedan,Bike,,, +06/13/2021,23:19,MANHATTAN,10026,40.801186,-73.94768,"(40.801186, -73.94768)",,,33 WEST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428534,Sedan,,,, +06/17/2021,14:45,QUEENS,11422,40.658264,-73.72862,"(40.658264, -73.72862)",145 AVENUE,FRANKTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428202,Sedan,Sedan,,, +06/16/2021,20:55,,,40.790417,-73.95184,"(40.790417, -73.95184)",EAST 101 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428151,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,6:20,BRONX,10473,40.819016,-73.84804,"(40.819016, -73.84804)",RANDALL AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4428032,Station Wagon/Sport Utility Vehicle,Bus,,, +06/10/2021,11:30,,,40.733562,-73.79025,"(40.733562, -73.79025)",69 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428919,Pick-up Truck,Pick-up Truck,,, +06/13/2021,7:18,,,40.67295,-73.92517,"(40.67295, -73.92517)",BUFFALO AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4428964,Sedan,Sedan,Sedan,Sedan, +06/18/2021,11:16,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4428395,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +06/03/2021,23:05,QUEENS,11103,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,BROADWAY,,1,0,1,0,0,0,0,0,,,,,,4428834,,,,, +06/17/2021,16:25,BROOKLYN,11237,40.704964,-73.928116,"(40.704964, -73.928116)",FLUSHING AVENUE,PORTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4428299,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,0:00,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428412,Sedan,Sedan,,, +06/12/2021,6:00,BROOKLYN,11238,40.68157,-73.96452,"(40.68157, -73.96452)",,,555 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4428550,Sedan,Sedan,Sedan,, +06/15/2021,12:14,BROOKLYN,11208,40.66839,-73.88032,"(40.66839, -73.88032)",DUMONT AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428731,Ambulance,Sedan,,, +06/17/2021,11:19,QUEENS,11419,40.68489,-73.82148,"(40.68489, -73.82148)",121 STREET,107 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4428253,Sedan,Box Truck,,, +06/18/2021,10:46,,,40.85901,-73.927635,"(40.85901, -73.927635)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428912,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,11:50,QUEENS,11373,40.742214,-73.86871,"(40.742214, -73.86871)",,,94-54 CORONA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428277,Sedan,,,, +06/16/2021,19:48,,,40.734577,-74.010025,"(40.734577, -74.010025)",WEST STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4428470,,,,, +06/18/2021,4:50,,,40.85512,-73.872215,"(40.85512, -73.872215)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,,,,4428453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,16:09,QUEENS,11377,40.75399,-73.90031,"(40.75399, -73.90031)",62 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428839,Station Wagon/Sport Utility Vehicle,Bike,,, +06/16/2021,0:30,BROOKLYN,11206,40.705227,-73.949844,"(40.705227, -73.949844)",BROADWAY,BOERUM STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,15:19,,,40.761585,-73.76086,"(40.761585, -73.76086)",NORTHERN BOULEVARD,220 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428527,Box Truck,Sedan,,, +06/17/2021,11:00,,,40.77532,-73.77521,"(40.77532, -73.77521)",29 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428227,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/16/2021,16:11,BROOKLYN,11219,40.636703,-73.99038,"(40.636703, -73.99038)",13 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427935,Van,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,7:00,BRONX,10456,40.83334,-73.89978,"(40.83334, -73.89978)",,,643 JEFFERSON PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428817,Sedan,,,, +06/17/2021,5:20,QUEENS,11368,40.750874,-73.862236,"(40.750874, -73.862236)",,,39-06 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428044,Sedan,,,, +06/18/2021,22:22,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",3 AVENUE,EAST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428671,Sedan,Taxi,,, +06/14/2021,19:30,BROOKLYN,11217,40.686817,-73.97821,"(40.686817, -73.97821)",LAFAYETTE AVENUE,ASHLAND PLACE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4428539,Sedan,Moped,,, +06/16/2021,14:30,MANHATTAN,10031,40.817593,-73.95319,"(40.817593, -73.95319)",WEST 133 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427868,Sedan,Sedan,,, +06/17/2021,20:05,QUEENS,11436,40.67708,-73.79318,"(40.67708, -73.79318)",120 AVENUE,146 STREET,,1,0,0,0,0,0,1,0,Failure to Keep Right,Passing or Lane Usage Improper,,,,4428401,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,21:08,BROOKLYN,11212,40.666744,-73.91292,"(40.666744, -73.91292)",SUTTER AVENUE,BOYLAND STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4428890,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/18/2021,16:30,,,40.683567,-73.94106,"(40.683567, -73.94106)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428630,Sedan,Motorbike,,, +06/15/2021,22:30,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4428438,Sedan,,,, +06/16/2021,9:28,QUEENS,11377,40.74094,-73.91725,"(40.74094, -73.91725)",48 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427837,Sedan,,,, +06/16/2021,22:40,BRONX,10459,40.817875,-73.89333,"(40.817875, -73.89333)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4428096,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/16/2021,21:30,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4428116,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/17/2021,16:45,,,40.57577,-74.16981,"(40.57577, -74.16981)",,,2873 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,15:30,,,40.677483,-73.93033,"(40.677483, -73.93033)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428973,Sedan,Pick-up Truck,,, +06/16/2021,18:37,QUEENS,11385,40.70432,-73.89055,"(40.70432, -73.89055)",,,65-45 OTTO ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4429112,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,19:36,,,40.590893,-73.80114,"(40.590893, -73.80114)",BEACH CHANNEL DRIVE,BEACH 73 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428544,Station Wagon/Sport Utility Vehicle,Ambulance,,, +06/17/2021,19:15,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428759,Bike,,,, +06/16/2021,14:48,STATEN ISLAND,10304,40.615837,-74.08473,"(40.615837, -74.08473)",TARGEE STREET,METCALFE STREET,,7,0,0,0,0,0,7,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429068,Sedan,Sedan,,, +06/18/2021,5:56,,,40.72656,-73.972046,"(40.72656, -73.972046)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Reaction to Uninvolved Vehicle,Following Too Closely,,4429282,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +06/18/2021,23:58,,,40.873695,-73.824394,"(40.873695, -73.824394)",BELLAMY LOOP,COOP CITY BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428594,Sedan,,,, +06/16/2021,19:33,BROOKLYN,11207,40.68067,-73.885826,"(40.68067, -73.885826)",CLEVELAND STREET,ARLINGTON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427956,Sedan,Sedan,,, +06/16/2021,12:31,BRONX,10473,40.820747,-73.86766,"(40.820747, -73.86766)",LAFAYETTE AVENUE,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428019,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,13:15,BROOKLYN,11211,40.708942,-73.95942,"(40.708942, -73.95942)",,,260 BROADWAY,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passenger Distraction,,,,4427892,Sedan,Bike,,, +06/17/2021,16:24,QUEENS,11101,40.750248,-73.950516,"(40.750248, -73.950516)",44 AVENUE,10 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428235,Sedan,,,, +06/18/2021,5:02,,,40.86679,-73.932495,"(40.86679, -73.932495)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428380,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,1:38,,,40.611313,-74.09844,"(40.611313, -74.09844)",NARROWS ROAD NORTH,CLOVE ROAD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429055,E-Scooter,,,, +06/16/2021,7:27,BROOKLYN,11212,40.65622,-73.913155,"(40.65622, -73.913155)",STRAUSS STREET,EAST 98 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428996,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,18:00,,,40.693203,-73.953995,"(40.693203, -73.953995)",WALWORTH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428612,Sedan,,,, +06/08/2021,11:00,MANHATTAN,,,,,,,20 RANDALLS ISLAND,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428439,Chassis Cab,Sedan,,, +06/18/2021,20:18,BRONX,10458,40.86552,-73.88972,"(40.86552, -73.88972)",,,2701 MARION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4429186,Ambulance,,,, +06/16/2021,14:00,,,40.632294,-73.96678,"(40.632294, -73.96678)",CONEY ISLAND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427923,Sedan,,,, +06/17/2021,12:40,,,40.850456,-73.899315,"(40.850456, -73.899315)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428312,Sedan,Sedan,,, +06/12/2021,16:20,BRONX,10467,40.877697,-73.86762,"(40.877697, -73.86762)",,,641 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429099,Chassis Cab,Sedan,,, +06/14/2021,9:45,,,,,,WEST 125 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Oversized Vehicle,,,,4428757,Station Wagon/Sport Utility Vehicle,Bus,,, +06/18/2021,19:00,QUEENS,11102,40.76615,-73.919785,"(40.76615, -73.919785)",33 STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4428850,Sedan,E-Bike,,, +06/17/2021,16:25,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428559,Sedan,Pick-up Truck,,, +06/17/2021,15:22,BROOKLYN,11207,40.691147,-73.90891,"(40.691147, -73.90891)",,,567 WILSON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428161,Sedan,E-Bike,,, +06/15/2021,17:15,BROOKLYN,11232,40.657425,-73.99751,"(40.657425, -73.99751)",5 AVENUE,28 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4428929,Sedan,Bike,,, +06/16/2021,8:40,,,40.691704,-73.94849,"(40.691704, -73.94849)",DE KALB AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428373,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,21:30,,,40.584923,-73.982,"(40.584923, -73.982)",AVENUE Z,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429270,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,15:30,STATEN ISLAND,10305,,,,Father Capodanno Boulevard,Seaview ave,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428057,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,14:00,,,40.71699,-73.82402,"(40.71699, -73.82402)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428951,Sedan,Sedan,Sedan,, +06/18/2021,10:10,BROOKLYN,11209,40.619686,-74.03844,"(40.619686, -74.03844)",,,26 OLIVER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428526,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,23:59,BRONX,10453,40.8523,-73.91189,"(40.8523, -73.91189)",,,1885 HARRISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428307,Pick-up Truck,Sedan,,, +06/18/2021,15:00,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429194,Pick-up Truck,Sedan,,, +06/17/2021,17:40,QUEENS,11411,40.695957,-73.742744,"(40.695957, -73.742744)",LINDEN BOULEVARD,217 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428205,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,12:45,QUEENS,11433,40.69936,-73.775024,"(40.69936, -73.775024)",110 AVENUE,179 PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427929,Sedan,,,, +06/18/2021,13:40,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHAMBERS STREET,CHURCH STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428481,Taxi,Bike,,, +06/17/2021,8:40,MANHATTAN,10012,40.72495,-73.99492,"(40.72495, -73.99492)",EAST HOUSTON STREET,MULBERRY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429244,Motorcycle,Bike,,, +06/17/2021,12:15,QUEENS,11428,40.721462,-73.75013,"(40.721462, -73.75013)",,,90-14 212 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428198,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,14:00,BROOKLYN,11215,40.667885,-73.97413,"(40.667885, -73.97413)",,,78 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428063,Box Truck,,,, +06/16/2021,5:50,BRONX,10461,40.856045,-73.84395,"(40.856045, -73.84395)",,,2121 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427631,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,9:30,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4428142,Station Wagon/Sport Utility Vehicle,Refrigerated Van,Pick-up Truck,, +05/31/2021,17:25,BROOKLYN,11212,40.66172,-73.914536,"(40.66172, -73.914536)",LIVONIA AVENUE,STRAUSS STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4428894,Sedan,Sedan,,, +06/17/2021,13:00,MANHATTAN,10022,40.762287,-73.97027,"(40.762287, -73.97027)",EAST 58 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4428423,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,7:53,,,,,,KEW GARDEN ROAD,82 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428356,Sedan,,,, +06/18/2021,0:46,BROOKLYN,11207,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,COOPER STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428349,Sedan,Bike,,, +06/17/2021,8:30,,,40.792725,-73.973206,"(40.792725, -73.973206)",WEST 93 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4428097,Garbage or Refuse,Sedan,,, +06/16/2021,18:20,QUEENS,11101,40.745983,-73.95301,"(40.745983, -73.95301)",,,46-35 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427855,Sedan,,,, +06/18/2021,17:20,,,40.603188,-74.06724,"(40.603188, -74.06724)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428576,Sedan,Sedan,,, +06/18/2021,23:30,MANHATTAN,10023,40.776897,-73.97547,"(40.776897, -73.97547)",WEST 73 STREET,CENTRAL PARK WEST,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429018,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,14:00,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Aggressive Driving/Road Rage,,,,4427973,Bus,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,15:03,BRONX,10463,40.88273,-73.91606,"(40.88273, -73.91606)",,,3001 HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4427767,Pick-up Truck,,,, +06/03/2021,23:45,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428584,Sedan,Sedan,,, +06/14/2021,12:05,MANHATTAN,10010,40.739166,-73.97997,"(40.739166, -73.97997)",EAST 25 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4428391,Bike,,,, +06/18/2021,15:49,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,19:45,,,40.839294,-73.88418,"(40.839294, -73.88418)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429329,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +06/17/2021,22:30,QUEENS,11434,40.671566,-73.78466,"(40.671566, -73.78466)",ROCKAWAY BOULEVARD,132 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4428408,Convertible,,,, +06/18/2021,13:45,BROOKLYN,11207,40.661232,-73.87957,"(40.661232, -73.87957)",,,797 STANLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428602,Station Wagon/Sport Utility Vehicle,Dump,,, +05/27/2021,15:52,BROOKLYN,11237,40.70245,-73.92693,"(40.70245, -73.92693)",,,233 TROUTMAN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428344,Sedan,Box Truck,,, +06/17/2021,23:11,,,40.700436,-73.81534,"(40.700436, -73.81534)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428507,Sedan,Taxi,,, +06/16/2021,16:43,MANHATTAN,10019,40.76452,-73.98078,"(40.76452, -73.98078)",,,870 7 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4427963,,,,, +06/17/2021,20:45,BRONX,10468,40.86223,-73.91116,"(40.86223, -73.91116)",,,2297 CEDAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428449,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,20:00,,,40.611313,-74.09844,"(40.611313, -74.09844)",CLOVE ROAD,NARROWS ROAD NORTH,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4429069,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,18:00,BRONX,10456,40.833393,-73.89806,"(40.833393, -73.89806)",,,1394 CROTONA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428810,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,10:00,BROOKLYN,11220,40.643005,-74.00533,"(40.643005, -74.00533)",49 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428607,Sedan,,,, +06/17/2021,6:30,BRONX,10462,40.837402,-73.84896,"(40.837402, -73.84896)",,,1500 PARKER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428589,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,19:21,MANHATTAN,10016,40.743893,-73.9717,"(40.743893, -73.9717)",EAST 35 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428466,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,14:15,BROOKLYN,11217,40.68792,-73.98025,"(40.68792, -73.98025)",,,29 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4429048,Dump,Sedan,Sedan,, +06/17/2021,9:40,,,40.679565,-73.93436,"(40.679565, -73.93436)",FULTON STREET,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428121,Sedan,,,, +06/18/2021,11:47,,,0,0,"(0.0, 0.0)",MAIN STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428571,Sedan,,,, +06/16/2021,22:25,BRONX,10463,40.88534,-73.895096,"(40.88534, -73.895096)",,,3932 BAILEY AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4428033,Sedan,,,, +06/10/2021,15:55,,,40.825687,-73.86102,"(40.825687, -73.86102)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4428405,Sedan,Van,,, +06/16/2021,11:59,BROOKLYN,11225,40.667915,-73.95606,"(40.667915, -73.95606)",,,1593 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427896,Sedan,,,, +06/17/2021,7:00,,,40.762386,-73.911804,"(40.762386, -73.911804)",44 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4428835,Motorcycle,,,, +06/17/2021,23:28,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428716,Sedan,Sedan,,, +06/17/2021,23:10,MANHATTAN,10022,40.759624,-73.970085,"(40.759624, -73.970085)",EAST 55 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4428535,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/17/2021,1:00,,,40.54814,-74.17559,"(40.54814, -74.17559)",GRANTWOOD AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4428434,Sedan,,,, +06/16/2021,1:50,STATEN ISLAND,10314,40.618526,-74.11819,"(40.618526, -74.11819)",SLOSSON AVENUE,UTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429063,Sedan,Sedan,,, +06/17/2021,17:00,,,40.669228,-73.9556,"(40.669228, -73.9556)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428250,Sedan,Motorbike,,, +06/16/2021,20:12,BRONX,10460,40.83577,-73.88655,"(40.83577, -73.88655)",,,1696 VYSE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4427908,Sedan,Sedan,,, +06/16/2021,16:23,BROOKLYN,11219,40.631756,-73.989716,"(40.631756, -73.989716)",,,1467 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429273,Sedan,,,, +06/17/2021,9:30,BROOKLYN,11211,40.72045,-73.95271,"(40.72045, -73.95271)",DRIGGS AVENUE,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428264,Sedan,Sedan,,, +06/18/2021,22:54,BROOKLYN,11232,40.659668,-73.99518,"(40.659668, -73.99518)",24 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4428722,Bike,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,3:58,QUEENS,11378,40.71319,-73.91078,"(40.71319, -73.91078)",METROPOLITAN AVENUE,ARNOLD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428471,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,11:29,MANHATTAN,10016,40.751575,-73.982285,"(40.751575, -73.982285)",WEST 39 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429129,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,10:50,,,40.854168,-73.93371,"(40.854168, -73.93371)",WEST 187 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4428376,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/18/2021,16:44,,,,,,brooklyn queens expressway west,bulova avenue,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428846,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/17/2021,0:58,BROOKLYN,11233,40.678364,-73.90822,"(40.678364, -73.90822)",,,31 TRUXTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428867,Sedan,Sedan,,, +06/16/2021,17:25,QUEENS,11421,40.697556,-73.852776,"(40.697556, -73.852776)",PARK LANE SOUTH,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4428012,Sedan,Sedan,,, +06/16/2021,9:00,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4427943,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/18/2021,4:58,BROOKLYN,11226,40.648922,-73.94938,"(40.648922, -73.94938)",NOSTRAND AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4428768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,, +06/16/2021,0:00,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",NORTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427792,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,22:57,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4428443,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/18/2021,17:42,QUEENS,11434,40.683777,-73.76975,"(40.683777, -73.76975)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428646,Bus,Sedan,,, +06/14/2021,9:30,MANHATTAN,10003,40.734818,-73.98865,"(40.734818, -73.98865)",,,119 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428475,Sedan,,,, +06/18/2021,22:30,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",ROOSEVELT AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/18/2021,9:20,BROOKLYN,11232,40.6687,-73.9965,"(40.6687, -73.9965)",HAMILTON AVENUE,2 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4428498,Sedan,Moped,,, +06/17/2021,19:55,BROOKLYN,11212,40.669895,-73.909386,"(40.669895, -73.909386)",,,1727 PITKIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428903,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/18/2021,11:30,QUEENS,11413,40.665485,-73.75137,"(40.665485, -73.75137)",226 STREET,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428618,Sedan,Sedan,,, +06/16/2021,9:45,,,40.82924,-73.93484,"(40.82924, -73.93484)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4427834,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/19/2021,17:00,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428563,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,22:15,BROOKLYN,11224,40.575512,-73.98241,"(40.575512, -73.98241)",SURF AVENUE,WEST 15 STREET,,4,0,3,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4429289,Sedan,Sedan,Sedan,, +06/16/2021,18:02,,,40.68502,-73.97123,"(40.68502, -73.97123)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428191,Sedan,,,, +06/16/2021,8:00,MANHATTAN,10028,40.780537,-73.958084,"(40.780537, -73.958084)",,,68 EAST 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427709,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,8:30,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428934,Sedan,Sedan,,, +06/18/2021,14:48,,,40.585197,-73.95289,"(40.585197, -73.95289)",SHORE PARKWAY,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428636,Sedan,Motorbike,,, +06/16/2021,16:24,BRONX,10461,40.84675,-73.848724,"(40.84675, -73.848724)",,,1588 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428166,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,15:51,MANHATTAN,10007,40.71546,-74.00594,"(40.71546, -74.00594)",,,100 DUANE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427949,Pick-up Truck,,,, +06/18/2021,15:49,BROOKLYN,11235,40.584003,-73.93588,"(40.584003, -73.93588)",EMMONS AVENUE,BATCHELDER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428640,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,15:00,BROOKLYN,11213,40.67695,-73.93675,"(40.67695, -73.93675)",,,1629 PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428959,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,7:50,MANHATTAN,10280,,,,,,100 West Street,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4428332,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,23:08,BROOKLYN,11220,40.642548,-74.016655,"(40.642548, -74.016655)",57 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4429155,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/16/2021,23:30,QUEENS,11375,40.73295,-73.85217,"(40.73295, -73.85217)",YELLOWSTONE BOULEVARD,63 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427872,Sedan,Sedan,,, +06/17/2021,19:30,STATEN ISLAND,10306,40.582195,-74.1103,"(40.582195, -74.1103)",RICHMOND ROAD,MIDLAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4428232,Sedan,Sedan,Sedan,, +06/17/2021,12:30,,,40.782703,-73.97123,"(40.782703, -73.97123)",WEST 82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429089,Pick-up Truck,Box Truck,,, +06/12/2021,6:30,BRONX,10462,40.85476,-73.86294,"(40.85476, -73.86294)",,,2121 MATTHEWS AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428694,Sedan,Motorcycle,,, +06/17/2021,20:54,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428327,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,14:00,BROOKLYN,11207,40.6698,-73.89634,"(40.6698, -73.89634)",,,299 SHEFFIELD AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4428135,Sedan,,,, +06/17/2021,19:40,,,40.687534,-73.9775,"(40.687534, -73.9775)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428213,Station Wagon/Sport Utility Vehicle,Bus,,, +06/16/2021,16:40,BROOKLYN,11235,40.591187,-73.940125,"(40.591187, -73.940125)",,,3790 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429218,Sedan,,,, +06/16/2021,16:00,QUEENS,11433,40.69577,-73.788246,"(40.69577, -73.788246)",,,164-27 109 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4427796,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,16:05,STATEN ISLAND,10308,40.542423,-74.14592,"(40.542423, -74.14592)",HYLAN BOULEVARD,NELSON AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4427838,Sedan,Sedan,,, +06/16/2021,8:35,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428022,Dump,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,19:22,BRONX,10465,40.8485,-73.820496,"(40.8485, -73.820496)",STADIUM AVENUE,MIDDLETOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428599,Sedan,,,, +06/16/2021,20:01,,,,,,AMPERE AVENUE,KENNELWORTH PARK,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4427988,Sedan,Sedan,,, +06/17/2021,9:50,BRONX,10456,0,0,"(0.0, 0.0)",,,1109 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428805,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/17/2021,0:07,BROOKLYN,11221,40.689407,-73.913956,"(40.689407, -73.913956)",EVERGREEN AVENUE,HANCOCK STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4427994,Bike,,,, +06/17/2021,18:05,QUEENS,11101,40.748222,-73.943886,"(40.748222, -73.943886)",24 STREET,44 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428236,Sedan,,,, +06/16/2021,20:21,,,40.680542,-73.99466,"(40.680542, -73.99466)",CARROLL STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428359,AMBULANCE,,,, +06/16/2021,8:15,,,40.785343,-73.95764,"(40.785343, -73.95764)",EAST 92 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4427707,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,8:35,,,40.732403,-74.0102,"(40.732403, -74.0102)",WEST STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4428503,Motorcycle,Bus,,, +06/17/2021,11:50,,,40.70753,-73.96443,"(40.70753, -73.96443)",BEDFORD AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428280,Sedan,Bus,,, +06/18/2021,20:52,QUEENS,11436,40.686104,-73.794586,"(40.686104, -73.794586)",LINDEN BOULEVARD,149 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428653,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,23:25,MANHATTAN,10019,40.761036,-73.98702,"(40.761036, -73.98702)",WEST 48 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428420,Sedan,Sedan,,, +06/17/2021,18:22,BROOKLYN,11221,40.693825,-73.93422,"(40.693825, -73.93422)",,,59 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428874,Sedan,Sedan,,, +06/16/2021,14:00,MANHATTAN,10033,40.847412,-73.93331,"(40.847412, -73.93331)",WEST 179 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428381,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,18:07,MANHATTAN,10075,40.77175,-73.94916,"(40.77175, -73.94916)",,,525 EAST 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427914,Pick-up Truck,Taxi,,, +06/17/2021,13:50,BROOKLYN,11208,40.682983,-73.88157,"(40.682983, -73.88157)",,,87 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428246,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,10:40,BROOKLYN,11211,40.710533,-73.95514,"(40.710533, -73.95514)",RODNEY STREET,BORINQUEN PLACE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4428388,Box Truck,Tow Truck / Wrecker,,, +06/17/2021,23:30,BROOKLYN,11232,40.658413,-74.00357,"(40.658413, -74.00357)",3 AVENUE,31 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4428494,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,20:30,STATEN ISLAND,10304,40.629795,-74.074715,"(40.629795, -74.074715)",FRONT STREET,WAVE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429078,Sedan,,,, +06/17/2021,18:51,,,40.732838,-74.00213,"(40.732838, -74.00213)",BARROW STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428831,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,21:50,BROOKLYN,11249,40.716385,-73.96143,"(40.716385, -73.96143)",NORTH 3 STREET,BERRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428268,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,8:00,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428566,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,14:45,,,40.73372,-73.766365,"(40.73372, -73.766365)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428462,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,8:00,QUEENS,11432,40.71071,-73.793045,"(40.71071, -73.793045)",HILLSIDE AVENUE,HOME LAWN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428990,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,11:43,MANHATTAN,10040,40.852486,-73.927704,"(40.852486, -73.927704)",AMSTERDAM AVENUE,WEST 188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427757,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,16:29,QUEENS,11377,40.735462,-73.91749,"(40.735462, -73.91749)",49 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428705,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/17/2021,10:10,BROOKLYN,11207,40.667564,-73.89478,"(40.667564, -73.89478)",,,394 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428244,Sedan,,,, +06/11/2021,11:29,BROOKLYN,11211,40.716484,-73.95704,"(40.716484, -73.95704)",DRIGGS AVENUE,NORTH 6 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,14:10,,,40.69822,-73.943954,"(40.69822, -73.943954)",THROOP AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428579,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,23:25,MANHATTAN,10003,40.730103,-73.98657,"(40.730103, -73.98657)",,,166 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429283,Pick-up Truck,,,, +06/17/2021,17:30,BROOKLYN,11236,40.641514,-73.91741,"(40.641514, -73.91741)",FOSTER AVENUE,EAST 82 STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inexperience,Other Vehicular,Other Vehicular,,4428531,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/16/2021,18:50,,,40.65591,-73.89191,"(40.65591, -73.89191)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4427955,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,15:30,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428518,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,15:30,QUEENS,11365,40.730045,-73.802376,"(40.730045, -73.802376)",,,71-14 167 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4428920,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/16/2021,8:43,,,40.83516,-73.94561,"(40.83516, -73.94561)",WEST 158 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427688,Sedan,Sedan,,, +06/18/2021,12:45,BRONX,10451,40.818794,-73.92213,"(40.818794, -73.92213)",MORRIS AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428673,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,9:30,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427846,Sedan,Sedan,,, +06/16/2021,23:00,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427984,Sedan,Sedan,,, +06/18/2021,17:26,BRONX,10458,40.868546,-73.88832,"(40.868546, -73.88832)",EAST 198 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429175,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,15:01,BROOKLYN,11206,40.700813,-73.95447,"(40.700813, -73.95447)",MIDDLETON STREET,LEE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428298,Sedan,,,, +06/14/2021,18:00,QUEENS,11103,40.757874,-73.91769,"(40.757874, -73.91769)",,,32-15 42 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429254,Sedan,,,, +06/17/2021,19:26,QUEENS,11413,40.67652,-73.73711,"(40.67652, -73.73711)",133 AVENUE,232 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428217,Sedan,Sedan,,, +06/18/2021,5:30,BRONX,10462,40.830063,-73.844284,"(40.830063, -73.844284)",,,1066 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428364,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,16:25,,,40.689228,-73.9847,"(40.689228, -73.9847)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428489,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,14:30,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428513,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,17:20,,,,,,LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,Unspecified,,4428530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/16/2021,12:30,,,40.646378,-73.97085,"(40.646378, -73.97085)",CHURCH AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427940,Pick-up Truck,,,, +06/18/2021,12:17,BRONX,10472,40.827393,-73.85159,"(40.827393, -73.85159)",,,2149 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4428415,Sedan,Sedan,Sedan,, +06/16/2021,14:00,,,40.620502,-73.998604,"(40.620502, -73.998604)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,21:00,QUEENS,11367,40.720898,-73.823456,"(40.720898, -73.823456)",138 STREET,77 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428941,Sedan,,,, +06/03/2021,23:35,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428913,Sedan,,,, +06/16/2021,23:05,,,40.865257,-73.9096,"(40.865257, -73.9096)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4429216,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/15/2021,9:50,QUEENS,11377,40.746906,-73.90161,"(40.746906, -73.90161)",62 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,5:26,BROOKLYN,11212,40.670074,-73.90818,"(40.670074, -73.90818)",,,1761 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428115,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,23:50,,,40.729553,-73.91188,"(40.729553, -73.91188)",58 STREET,BORDEN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428383,Bike,Sedan,,, +06/16/2021,21:16,BRONX,10462,40.848957,-73.86024,"(40.848957, -73.86024)",RHINELANDER AVENUE,FOWLER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428071,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,19:30,QUEENS,11427,40.724693,-73.7541,"(40.724693, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428545,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,14:12,BRONX,10452,40.8398,-73.928665,"(40.8398, -73.928665)",WEST 167 STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428368,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/16/2021,18:00,MANHATTAN,10002,40.713207,-73.97739,"(40.713207, -73.97739)",GRAND STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427879,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,13:32,,,40.835297,-73.91291,"(40.835297, -73.91291)",EAST 169 STREET,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4428272,Sedan,Bus,,, +06/18/2021,4:10,,,40.631615,-74.016335,"(40.631615, -74.016335)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4428474,Tractor Truck Diesel,Tractor Truck Diesel,,, +06/14/2021,20:50,STATEN ISLAND,10304,40.613564,-74.07918,"(40.613564, -74.07918)",,,46 A CIRCLE LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429054,Sedan,,,, +06/16/2021,18:00,BRONX,10468,40.86661,-73.90121,"(40.86661, -73.90121)",AQUEDUCT AVENUE,WEST 192 STREET,,1,0,1,0,0,0,0,0,,,,,,4428457,Moped,,,, +06/16/2021,17:10,,,40.679276,-73.92906,"(40.679276, -73.92906)",REID AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427863,Sedan,Sedan,,, +06/18/2021,11:00,BROOKLYN,11222,40.72499,-73.94945,"(40.72499, -73.94945)",,,160 ECKFORD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428400,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,14:30,BRONX,10473,40.8218,-73.87664,"(40.8218, -73.87664)",BOYNTON AVENUE,STORY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,17:04,,,40.818638,-73.81003,"(40.818638, -73.81003)",LAWTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428597,Sedan,Taxi,,, +06/11/2021,10:45,BROOKLYN,11236,40.6298,-73.91837,"(40.6298, -73.91837)",,,1958 RALPH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429167,Sedan,,,, +06/18/2021,15:32,BROOKLYN,11207,40.67253,-73.89152,"(40.67253, -73.89152)",,,2196 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428615,Sedan,,,, +06/17/2021,18:30,,,,,,HORACE HARDING EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428983,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,18:05,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428442,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,17:50,,,40.73765,-73.90557,"(40.73765, -73.90557)",59 PLACE,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,10:48,BRONX,10459,40.8339,-73.883514,"(40.8339, -73.883514)",EAST 173 STREET,WEST FARMS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428413,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,18:55,,,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4428736,Sedan,Carry All,,, +06/17/2021,15:00,,,40.678543,-73.949684,"(40.678543, -73.949684)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428967,Sedan,Sedan,,, +06/16/2021,18:30,QUEENS,11369,40.763546,-73.88209,"(40.763546, -73.88209)",25 AVENUE,87 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428051,Sedan,,,, +06/16/2021,15:18,BROOKLYN,11206,40.70712,-73.94551,"(40.70712, -73.94551)",,,105 MONTROSE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427885,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/07/2021,9:50,BROOKLYN,11235,40.58667,-73.966156,"(40.58667, -73.966156)",OCEAN PARKWAY,AVENUE Z,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429259,Sedan,Tractor Truck Gasoline,,, +06/17/2021,22:55,,,40.754864,-73.85255,"(40.754864, -73.85255)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428278,Sedan,,,, +06/18/2021,20:30,,,40.83516,-73.94561,"(40.83516, -73.94561)",WEST 158 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428881,E-Scooter,Sedan,,, +06/14/2021,16:16,BROOKLYN,11212,40.66331,-73.92106,"(40.66331, -73.92106)",WINTHROP STREET,EAST 98 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428761,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,17:10,,,40.740856,-74.005165,"(40.740856, -74.005165)",WEST 14 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4428506,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,13:05,,,40.680088,-73.94398,"(40.680088, -73.94398)",FULTON STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4428629,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,11:52,,,40.67227,-73.99935,"(40.67227, -73.99935)",LORRAINE STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4429103,Sedan,Box Truck,,, +06/16/2021,4:00,,,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428836,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,17:30,QUEENS,11385,40.70307,-73.87864,"(40.70307, -73.87864)",72 STREET,COOPER AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,Unspecified,,,4429111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,12:55,STATEN ISLAND,10312,40.539177,-74.19543,"(40.539177, -74.19543)",RAMONA AVENUE,HUGUENOT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4428435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,14:20,BROOKLYN,11209,40.622643,-74.028435,"(40.622643, -74.028435)",,,8610 4 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,10:00,BROOKLYN,11212,40.666443,-73.924255,"(40.666443, -73.924255)",EAST NEW YORK AVENUE,PORTAL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428975,Sedan,,,, +06/17/2021,22:45,,,40.615005,-73.980225,"(40.615005, -73.980225)",BAY PARKWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428715,Station Wagon/Sport Utility Vehicle,Bike,,, +06/16/2021,9:10,BRONX,10461,40.838593,-73.83556,"(40.838593, -73.83556)",,,3101 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,17:24,QUEENS,11422,40.678204,-73.72793,"(40.678204, -73.72793)",,,243-11 130 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428203,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,11:00,QUEENS,11421,40.68945,-73.85145,"(40.68945, -73.85145)",91 AVENUE,92 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427749,Sedan,,,, +06/17/2021,19:35,STATEN ISLAND,10314,40.613525,-74.11685,"(40.613525, -74.11685)",SLOSSON AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429073,Sedan,Sedan,,, +06/17/2021,9:16,QUEENS,11422,40.67543,-73.73389,"(40.67543, -73.73389)",,,131-78 LAURELTON PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428126,Sedan,Sedan,,, +06/16/2021,21:52,MANHATTAN,10022,40.76161,-73.97076,"(40.76161, -73.97076)",EAST 57 STREET,PARK AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4427959,Box Truck,,,, +06/18/2021,8:24,QUEENS,11354,40.761166,-73.82938,"(40.761166, -73.82938)",138 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428575,Pick-up Truck,,,, +06/16/2021,6:00,,,40.730137,-73.92693,"(40.730137, -73.92693)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/17/2021,17:20,MANHATTAN,10065,40.764385,-73.96358,"(40.764385, -73.96358)",,,225 EAST 64 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4428303,Sedan,Station Wagon/Sport Utility Vehicle,E-Bike,, +06/16/2021,23:40,,,40.74209,-73.984985,"(40.74209, -73.984985)",PARK AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427999,Sedan,Sedan,,, +06/16/2021,12:13,BRONX,10468,40.868694,-73.90237,"(40.868694, -73.90237)",WEST KINGSBRIDGE ROAD,WEBB AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4427820,Sedan,Motorcycle,,, +06/17/2021,0:10,BROOKLYN,11211,40.710842,-73.95237,"(40.710842, -73.95237)",,,187 BORINQUEN PLACE,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427898,E-Scooter,Sedan,,, +06/17/2021,16:46,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428551,Sedan,Sedan,,, +06/17/2021,0:00,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428315,Van,Sedan,,, +06/16/2021,15:15,,,40.851936,-73.91078,"(40.851936, -73.91078)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,16:30,,,40.706593,-73.76161,"(40.706593, -73.76161)",196 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Glare,Backing Unsafely,Unspecified,Unspecified,,4427934,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/26/2021,18:00,BRONX,10451,40.817738,-73.924164,"(40.817738, -73.924164)",,,234 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428678,Ambulance,Ambulance,,, +06/16/2021,14:00,BRONX,10460,0,0,"(0.0, 0.0)",GROTE STREET,PROSPECT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428336,Bus,Bus,,, +06/17/2021,14:25,BROOKLYN,11226,40.645794,-73.9602,"(40.645794, -73.9602)",REGENT PLACE,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4428796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,23:05,,,40.659336,-73.92726,"(40.659336, -73.92726)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unsafe Speed,Unspecified,,,4428775,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/16/2021,11:55,MANHATTAN,10025,40.79525,-73.97321,"(40.79525, -73.97321)",WEST 96 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,16:25,MANHATTAN,10028,40.775623,-73.952484,"(40.775623, -73.952484)",,,320 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429232,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,4:00,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4427675,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,9:34,,,40.752445,-73.96461,"(40.752445, -73.96461)",EAST 49 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427849,Pick-up Truck,Sedan,,, +06/18/2021,12:45,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,WILLOW ROAD EAST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429322,Pick-up Truck,,,, +06/18/2021,11:52,,,40.68949,-73.92207,"(40.68949, -73.92207)",BROADWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4428486,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/16/2021,10:00,MANHATTAN,10034,40.863194,-73.91742,"(40.863194, -73.91742)",,,3857 9 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428182,Sedan,Bike,,, +06/16/2021,17:00,QUEENS,11428,40.727955,-73.733765,"(40.727955, -73.733765)",,,223-10 BRADDOCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427904,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,17:00,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,9:30,QUEENS,11367,,,,147 STREET,76 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428998,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,15:10,BRONX,10459,40.81969,-73.90161,"(40.81969, -73.90161)",WESTCHESTER AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428289,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,20:36,,,40.831947,-73.91987,"(40.831947, -73.91987)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428084,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,6:50,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428109,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,14:20,,,40.543575,-74.17002,"(40.543575, -74.17002)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428428,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,16:15,BRONX,10472,40.82864,-73.85344,"(40.82864, -73.85344)",OLMSTEAD AVENUE,BLACKROCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428031,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,12:56,,,,,,THROGS NECK EXPY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4428593,Dump,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,19:12,STATEN ISLAND,10314,40.611427,-74.116844,"(40.611427, -74.116844)",SLOSSON AVENUE,REON AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4429052,Sedan,,,, +06/18/2021,11:08,BROOKLYN,11223,40.60886,-73.965065,"(40.60886, -73.965065)",,,1633 EAST 8 STREET,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4428396,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,22:25,QUEENS,11357,40.783665,-73.80862,"(40.783665, -73.80862)",,,17-04 CLINTONVILLE STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4428745,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,13:52,,,40.79166,-73.96469,"(40.79166, -73.96469)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428152,Bus,Sedan,,, +06/17/2021,18:00,QUEENS,11362,40.75158,-73.74572,"(40.75158, -73.74572)",HORACE HARDING EXPRESSWAY,233 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428294,Sedan,Sedan,,, +06/17/2021,4:40,BROOKLYN,11213,40.669018,-73.93502,"(40.669018, -73.93502)",,,1009 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428978,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck, +06/01/2021,10:00,BROOKLYN,11221,40.68879,-73.928276,"(40.68879, -73.928276)",,,941 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428859,Sedan,,,, +06/18/2021,23:20,,,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428611,Bus,Sedan,,, +06/17/2021,23:55,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428254,Sedan,Sedan,,, +06/16/2021,7:33,MANHATTAN,10017,40.75457,-73.97169,"(40.75457, -73.97169)",3 AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428467,Taxi,Garbage or Refuse,,, +06/17/2021,18:00,QUEENS,11434,40.675312,-73.777145,"(40.675312, -73.777145)",BREWER BOULEVARD,132 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428454,Sedan,,,, +06/16/2021,17:00,,,40.757874,-73.788506,"(40.757874, -73.788506)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,14:30,,,40.679737,-73.76162,"(40.679737, -73.76162)",MERRICK BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428652,Sedan,,,, +06/17/2021,7:13,,,40.833412,-73.85906,"(40.833412, -73.85906)",WESTCHESTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4428046,Sedan,Bike,,, +06/18/2021,7:22,BRONX,10457,40.83848,-73.900986,"(40.83848, -73.900986)",,,3855 3 AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4428818,Bus,E-Bike,,, +06/16/2021,11:00,,,40.726967,-73.89655,"(40.726967, -73.89655)",68 STREET,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428178,Pick-up Truck,Sedan,,, +06/16/2021,11:05,MANHATTAN,10019,,,,WEST 56 STREET,12 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4427952,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,13:40,QUEENS,11411,40.70114,-73.73827,"(40.70114, -73.73827)",219 STREET,114 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4428199,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,18:50,BROOKLYN,11223,40.60929,-73.968765,"(40.60929, -73.968765)",,,509 AVENUE P,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429243,Van,Flat Bed,,, +06/05/2021,20:06,BROOKLYN,11205,40.691563,-73.96953,"(40.691563, -73.96953)",VANDERBILT AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4428538,Moped,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,23:00,BROOKLYN,11228,40.618244,-74.0024,"(40.618244, -74.0024)",15 AVENUE,74 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428720,Sedan,Sedan,,, +06/17/2021,14:47,BRONX,10451,40.826855,-73.922676,"(40.826855, -73.922676)",GRAND CONCOURSE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4428365,Sedan,Sedan,,, +06/17/2021,18:45,,,40.502773,-74.25184,"(40.502773, -74.25184)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428218,Sedan,Motorcycle,,, +06/10/2021,19:55,MANHATTAN,10065,40.764305,-73.9688,"(40.764305, -73.9688)",,,540 PARK AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4428350,Station Wagon/Sport Utility Vehicle,Bike,,, +06/10/2021,8:00,BROOKLYN,11233,40.680607,-73.91953,"(40.680607, -73.91953)",,,219 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428860,Sedan,,,, +06/17/2021,16:03,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428328,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,9:58,,,40.81821,-73.96144,"(40.81821, -73.96144)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unsafe Lane Changing,Unspecified,Unspecified,4427768,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/15/2021,16:07,,,40.75595,-73.99074,"(40.75595, -73.99074)",WEST 40 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4429127,Sedan,Bike,,, +06/18/2021,21:40,STATEN ISLAND,10301,40.640053,-74.08018,"(40.640053, -74.08018)",BENZIGER AVENUE,DANIEL LOW TERRACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429077,Pick-up Truck,Sedan,,, +06/16/2021,18:33,,,40.829185,-73.928764,"(40.829185, -73.928764)",MACOMBS DAM BRIDGE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427974,Sedan,Moped,,, +06/18/2021,23:24,BROOKLYN,11235,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON BEACH AVENUE,BRIGHTON 5 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428864,Sedan,Garbage or Refuse,,, +06/17/2021,13:42,,,40.66478,-73.88642,"(40.66478, -73.88642)",NEW LOTS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,6:05,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,EAST 138 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427945,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,12:00,BROOKLYN,11221,40.69816,-73.92528,"(40.69816, -73.92528)",DE KALB AVENUE,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427755,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,9:10,BROOKLYN,11208,40.673946,-73.87297,"(40.673946, -73.87297)",,,965 BELMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4427803,Sedan,,,, +06/18/2021,17:12,BROOKLYN,11224,40.575428,-73.977875,"(40.575428, -73.977875)",WEST 10 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428841,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,9:00,,,40.852673,-73.919106,"(40.852673, -73.919106)",UNDERCLIFF AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4428322,Sedan,,,, +06/17/2021,17:00,BROOKLYN,11233,40.67428,-73.916695,"(40.67428, -73.916695)",SARATOGA AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428901,Sedan,E-Bike,,, +06/16/2021,22:49,QUEENS,11355,40.754375,-73.8234,"(40.754375, -73.8234)",KISSENA BOULEVARD,BEECH AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428008,Sedan,Bike,,, +06/16/2021,13:16,MANHATTAN,10128,40.78126,-73.949265,"(40.78126, -73.949265)",,,1752 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427995,Sedan,Box Truck,,, +06/16/2021,11:10,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4427720,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/30/2021,0:00,,,40.693874,-73.91777,"(40.693874, -73.91777)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,13:40,BROOKLYN,11206,40.70321,-73.94626,"(40.70321, -73.94626)",BROADWAY,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428803,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,13:50,BROOKLYN,11232,40.66175,-73.99562,"(40.66175, -73.99562)",,,188 22 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4428928,Sedan,Pick-up Truck,,, +06/17/2021,14:30,MANHATTAN,10025,40.795532,-73.975845,"(40.795532, -73.975845)",WEST 95 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428154,Pick-up Truck,Sedan,,, +06/18/2021,13:04,,,40.855133,-73.93688,"(40.855133, -73.93688)",FORT WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428924,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Motorcycle, +06/17/2021,13:00,,,40.71142,-73.95313,"(40.71142, -73.95313)",KEAP STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,19:00,,,40.733555,-73.89499,"(40.733555, -73.89499)",69 PLACE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428521,Sedan,,,, +06/18/2021,17:14,,,40.616913,-73.98187,"(40.616913, -73.98187)",62 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428688,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,11:00,QUEENS,11377,40.748386,-73.89897,"(40.748386, -73.89897)",,,37-02 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428482,Sedan,,,, +06/17/2021,17:30,,,40.70558,-73.739716,"(40.70558, -73.739716)",SPRINGFIELD BOULEVARD,112 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4428204,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/17/2021,0:15,QUEENS,11372,40.752262,-73.87719,"(40.752262, -73.87719)",,,35-07 90 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428038,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/17/2021,19:10,BROOKLYN,11236,40.63787,-73.90963,"(40.63787, -73.90963)",FLATLANDS AVENUE,EAST 85 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428231,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,8:09,BROOKLYN,11206,40.703156,-73.94731,"(40.703156, -73.94731)",,,37 THROOP AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4427891,Sedan,Bus,,, +06/16/2021,10:15,,,40.605305,-74.162224,"(40.605305, -74.162224)",RICHMOND AVENUE,CROFT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/17/2021,7:43,,,40.814304,-73.89653,"(40.814304, -73.89653)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Lane Marking Improper/Inadequate,,,,4428098,Sedan,Dump,,, +06/16/2021,0:10,BROOKLYN,11222,40.72515,-73.95261,"(40.72515, -73.95261)",LORIMER STREET,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427657,Sedan,Bike,,, +06/16/2021,14:44,BROOKLYN,11215,40.662804,-73.98834,"(40.662804, -73.98834)",PROSPECT AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428189,Sedan,,,, +06/16/2021,13:40,MANHATTAN,10021,40.76849,-73.95157,"(40.76849, -73.95157)",,,525 EAST 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427912,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,14:25,QUEENS,11423,40.720726,-73.760185,"(40.720726, -73.760185)",,,205-05 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429005,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,6:15,,,40.828236,-73.88602,"(40.828236, -73.88602)",WHITLOCK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428819,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,16:19,QUEENS,11103,40.760345,-73.92008,"(40.760345, -73.92008)",,,31-81 37 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427931,Bike,Sedan,,, +06/17/2021,10:45,,,40.694275,-73.99243,"(40.694275, -73.99243)",MONTAGUE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428249,Pick-up Truck,,,, +06/15/2021,19:00,,,40.761036,-73.98702,"(40.761036, -73.98702)",8 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428424,Sedan,,,, +06/17/2021,11:10,BROOKLYN,11226,40.64193,-73.95841,"(40.64193, -73.95841)",DORCHESTER ROAD,EAST 21 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4428143,Sedan,,,, +06/17/2021,21:53,,,40.834187,-73.909584,"(40.834187, -73.909584)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428267,Sedan,,,, +06/16/2021,17:36,BROOKLYN,11236,40.648056,-73.89162,"(40.648056, -73.89162)",,,952 EAST 108 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4427853,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/18/2021,8:10,,,40.602528,-74.015114,"(40.602528, -74.015114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/16/2021,17:15,QUEENS,11418,40.703022,-73.83768,"(40.703022, -73.83768)",84 AVENUE,BABBAGE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4428013,Sedan,,,, +06/17/2021,7:54,BRONX,10462,40.84321,-73.85591,"(40.84321, -73.85591)",,,1550 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428355,Sedan,Bus,,, +06/17/2021,0:40,BROOKLYN,11216,40.67765,-73.949776,"(40.67765, -73.949776)",NOSTRAND AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428976,Taxi,Sedan,,, +06/17/2021,20:00,STATEN ISLAND,10304,40.623253,-74.08383,"(40.623253, -74.08383)",BROAD STREET,TARGEE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428392,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/17/2021,18:53,,,40.822002,-73.82015,"(40.822002, -73.82015)",REVERE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428590,Sedan,Sedan,,, +06/18/2021,12:30,BRONX,10468,40.861347,-73.897736,"(40.861347, -73.897736)",GRAND CONCOURSE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429328,Station Wagon/Sport Utility Vehicle,F550,,, +06/17/2021,8:30,,,40.65806,-73.93497,"(40.65806, -73.93497)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428314,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,4:05,,,40.677338,-73.927536,"(40.677338, -73.927536)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428854,Sedan,,,, +06/18/2021,21:42,,,40.67693,-74.00211,"(40.67693, -74.00211)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429101,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,13:58,QUEENS,11691,40.60457,-73.75355,"(40.60457, -73.75355)",MOTT AVENUE,BEACH 21 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428558,Bus,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,19:37,BRONX,10458,40.861877,-73.89316,"(40.861877, -73.89316)",,,345 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428450,Station Wagon/Sport Utility Vehicle,Bus,,, +06/17/2021,19:40,QUEENS,11412,40.692936,-73.75774,"(40.692936, -73.75774)",LINDEN BOULEVARD,194 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4428656,Sedan,Sedan,Sedan,, +06/18/2021,17:50,BRONX,10469,40.872066,-73.85525,"(40.872066, -73.85525)",,,3225 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,22:38,BROOKLYN,11210,40.636627,-73.94226,"(40.636627, -73.94226)",FARRAGUT ROAD,BROOKLYN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427871,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,23:30,BRONX,10456,40.821552,-73.90567,"(40.821552, -73.90567)",EAST 161 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4428812,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/17/2021,15:40,BROOKLYN,11221,40.69579,-73.93313,"(40.69579, -73.93313)",BROADWAY,WILLOUGHBY AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,11:30,,,40.67295,-73.92517,"(40.67295, -73.92517)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428958,Sedan,Sedan,,, +03/25/2021,17:00,BROOKLYN,11238,40.68272,-73.96321,"(40.68272, -73.96321)",,,991 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429051,Sedan,,,, +06/18/2021,4:35,BROOKLYN,11222,40.72711,-73.94958,"(40.72711, -73.94958)",,,138 MC GUINNESS BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428333,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,23:00,BROOKLYN,11206,40.702568,-73.95026,"(40.702568, -73.95026)",UNION AVENUE,LORIMER STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4428308,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,21:20,BROOKLYN,11234,40.621418,-73.92614,"(40.621418, -73.92614)",EAST 51 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428542,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,20:00,BROOKLYN,11233,40.682236,-73.913536,"(40.682236, -73.913536)",,,523 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428873,Sedan,,,, +06/10/2021,15:00,BRONX,10451,40.81455,-73.92917,"(40.81455, -73.92917)",,,315 GRAND CONCOURSE,1,0,1,0,0,0,0,0,Unspecified,,,,,4428674,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,7:50,,,40.601,-73.979385,"(40.601, -73.979385)",WEST 7 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4428695,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,20:30,,,40.6679,-73.84204,"(40.6679, -73.84204)",CROSS BAY BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4429199,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,8:40,QUEENS,11101,40.742855,-73.942635,"(40.742855, -73.942635)",,,47-22 PEARSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428382,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,21:00,BROOKLYN,11214,40.61515,-74.00204,"(40.61515, -74.00204)",16 AVENUE,77 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4428237,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,15:11,BROOKLYN,11217,40.685074,-73.9779,"(40.685074, -73.9779)",ASHLAND PLACE,HANSON PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428493,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,2:15,,,40.688988,-73.84591,"(40.688988, -73.84591)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4428345,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,11:13,,,40.86446,-73.91895,"(40.86446, -73.91895)",10 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4428914,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/18/2021,11:55,,,40.673588,-73.73351,"(40.673588, -73.73351)",MERRICK BOULEVARD,BROOKVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428514,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,0:20,BROOKLYN,11230,40.620476,-73.96634,"(40.620476, -73.96634)",,,1178 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429274,Sedan,Sedan,,, +06/16/2021,17:13,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428446,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,21:00,,,40.780148,-73.847855,"(40.780148, -73.847855)",120 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428567,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,2:01,,,40.847412,-73.93331,"(40.847412, -73.93331)",AUDUBON AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4428377,Motorcycle,Moped,,, +06/13/2021,21:53,QUEENS,11366,40.72291,-73.80468,"(40.72291, -73.80468)",164 STREET,78 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4428991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,12:45,,,40.884014,-73.8791,"(40.884014, -73.8791)",DEKALB AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429217,Sedan,Sedan,,, +06/18/2021,18:58,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428659,Station Wagon/Sport Utility Vehicle,Bus,,, +06/18/2021,9:55,QUEENS,11105,40.7791,-73.91799,"(40.7791, -73.91799)",,,21-11 22 DRIVE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4428845,4 dr sedan,Station Wagon/Sport Utility Vehicle,4 dr sedan,Sedan, +06/16/2021,17:05,,,,,,,,228 WESTMINISTER ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4427924,Concrete Mixer,,,, +06/16/2021,12:37,QUEENS,11435,40.694378,-73.803764,"(40.694378, -73.803764)",106 AVENUE,WALTHAM STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4427791,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/16/2021,9:45,MANHATTAN,10011,40.740173,-73.999435,"(40.740173, -73.999435)",,,214 WEST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427706,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,18:25,MANHATTAN,10019,40.762917,-73.98566,"(40.762917, -73.98566)",8 AVENUE,WEST 51 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4427964,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,1:20,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4428023,Sedan,,,, +06/17/2021,23:42,BROOKLYN,11233,0,0,"(0.0, 0.0)",EASTERN PARKWAY,BOYLAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,11:15,BRONX,10474,40.818905,-73.89022,"(40.818905, -73.89022)",,,1012 GARRISON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4427842,Sedan,Tractor Truck Diesel,,, +06/16/2021,11:15,BROOKLYN,11225,40.666138,-73.948074,"(40.666138, -73.948074)",NEW YORK AVENUE,CROWN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4427833,Sedan,Sedan,,, +06/17/2021,18:30,BROOKLYN,11219,40.63225,-74.00577,"(40.63225, -74.00577)",61 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,0:45,,,40.853477,-73.82622,"(40.853477, -73.82622)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4427989,Sedan,,,, +06/17/2021,14:00,MANHATTAN,10006,40.710876,-74.01439,"(40.710876, -74.01439)",LIBERTY STREET,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428160,Van,,,, +06/18/2021,9:45,BROOKLYN,11208,40.68059,-73.86618,"(40.68059, -73.86618)",,,266 MC KINLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428619,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,20:46,BRONX,10462,40.847363,-73.8579,"(40.847363, -73.8579)",MORRIS PARK AVENUE,BOGART AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428360,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/18/2021,22:20,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4428933,Sedan,,,, +06/06/2021,18:50,BROOKLYN,11211,40.714104,-73.949036,"(40.714104, -73.949036)",,,593 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4428419,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/18/2021,1:15,,,40.751682,-73.836006,"(40.751682, -73.836006)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,0:00,BROOKLYN,11228,40.61752,-74.01963,"(40.61752, -74.01963)",,,1037 86 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428525,Sedan,Sedan,,, +06/16/2021,17:30,BROOKLYN,11204,40.615356,-73.976234,"(40.615356, -73.976234)",60 STREET,23 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4427867,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,21:36,BROOKLYN,11223,40.59616,-73.96104,"(40.59616, -73.96104)",AVENUE V,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,23:30,MANHATTAN,10017,40.752693,-73.97305,"(40.752693, -73.97305)",3 AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428119,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,8:10,,,40.831493,-73.85444,"(40.831493, -73.85444)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428067,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,13:00,,,40.754105,-73.72321,"(40.754105, -73.72321)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428226,Convertible,Sedan,,, +06/17/2021,16:50,QUEENS,11434,40.684254,-73.762405,"(40.684254, -73.762405)",ANDERSON ROAD,180 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428404,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,12:30,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428822,Sedan,,,, +06/17/2021,18:23,BROOKLYN,11234,,,,,,6000 SHORE PARKWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428245,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,12:00,BRONX,10456,40.827755,-73.9117,"(40.827755, -73.9117)",BROOK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427907,Sedan,Sedan,,, +06/12/2021,12:50,STATEN ISLAND,10312,40.533253,-74.192474,"(40.533253, -74.192474)",,,867 HUGUENOT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,19:55,STATEN ISLAND,10310,40.63237,-74.13017,"(40.63237, -74.13017)",HURST STREET,JEWETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429064,Sedan,,,, +06/16/2021,16:30,,,40.724262,-73.93745,"(40.724262, -73.93745)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428263,Sedan,Sedan,,, +06/16/2021,17:14,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",SEAVIEW AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,16:39,,,40.611313,-74.09844,"(40.611313, -74.09844)",NARROWS ROAD NORTH,CLOVE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429058,Sedan,Sedan,,, +06/16/2021,12:00,BROOKLYN,11220,40.636425,-74.00501,"(40.636425, -74.00501)",56 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429255,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,11:02,,,40.792244,-73.94419,"(40.792244, -73.94419)",3 AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4429021,Sedan,,,, +06/16/2021,18:25,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428212,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/18/2021,2:10,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Following Too Closely,,,,4428585,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,18:34,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inexperience,,,,4428461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,3:20,QUEENS,11369,40.76165,-73.8673,"(40.76165, -73.8673)",ASTORIA BOULEVARD,102 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4428048,Sedan,,,, +06/17/2021,7:20,,,40.663227,-73.93159,"(40.663227, -73.93159)",UTICA AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,12:30,MANHATTAN,10014,40.729046,-74.01073,"(40.729046, -74.01073)",WEST STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428478,Box Truck,BOOM LIFT/,,, +06/16/2021,7:47,MANHATTAN,10031,40.825813,-73.94229,"(40.825813, -73.94229)",,,321 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428562,Sedan,,,, +05/17/2021,23:48,BROOKLYN,11220,40.641987,-74.01724,"(40.641987, -74.01724)",58 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4428723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,21:32,BROOKLYN,11208,40.672394,-73.869255,"(40.672394, -73.869255)",,,627 CRESCENT STREET,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4428603,Motorcycle,,,, +06/14/2021,8:45,QUEENS,11434,40.68199,-73.788414,"(40.68199, -73.788414)",155 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,19:11,,,,,,MANOR ROAD,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,18:10,QUEENS,11432,40.70636,-73.792534,"(40.70636, -73.792534)",168 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4428510,Sedan,,,, +06/18/2021,1:14,BRONX,10456,40.82781,-73.90885,"(40.82781, -73.90885)",,,1075 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4428414,Sedan,Sedan,,, +06/17/2021,14:30,BRONX,10455,40.817863,-73.905014,"(40.817863, -73.905014)",EAST 156 STREET,TINTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428372,Sedan,,,, +06/17/2021,22:26,BRONX,10456,40.83711,-73.913734,"(40.83711, -73.913734)",MARCY PLACE,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428274,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,23:10,BROOKLYN,11235,40.58683,-73.935455,"(40.58683, -73.935455)",,,2741 FORD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428641,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/17/2021,10:15,QUEENS,11418,40.701157,-73.81619,"(40.701157, -73.81619)",,,89-00 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428072,AMB,AMB,,, +06/16/2021,13:37,QUEENS,11435,40.705185,-73.811714,"(40.705185, -73.811714)",,,144-01 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,23:00,,,40.749844,-73.938995,"(40.749844, -73.938995)",28 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4427880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,10:00,,,40.573708,-73.99072,"(40.573708, -73.99072)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4429269,Sedan,,,, +06/14/2021,12:30,BROOKLYN,11232,40.65823,-74.00035,"(40.65823, -74.00035)",29 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429156,Sedan,Moped,,, +07/03/2022,12:23,BROOKLYN,11230,40.624344,-73.96315,"(40.624344, -73.96315)",,,1016 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542985,Sedan,,,, +10/12/2021,12:27,,,40.8617006,-73.8913807,"(40.8617006, -73.8913807)",WEBSTER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4466477,Sedan,,,, +12/21/2021,19:00,,,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4491283,Sedan,,,, +01/01/2022,4:45,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4492572,Sedan,,,, +02/20/2022,9:00,,,40.663017,-73.94003,"(40.663017, -73.94003)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504633,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,11:35,,,40.589066,-74.138626,"(40.589066, -74.138626)",BRIELLE AVENUE,ROCKLAND AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4504308,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,16:53,MANHATTAN,10003,40.73053,-73.98859,"(40.73053, -73.98859)",,,119 EAST 10 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4504713,Sedan,,,, +02/14/2022,22:05,MANHATTAN,10011,40.74189,-74.00471,"(40.74189, -74.00471)",,,75 9 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4504906,Sedan,,,, +02/20/2022,12:30,BROOKLYN,11201,40.696014,-73.98414,"(40.696014, -73.98414)",TILLARY STREET,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504145,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,0:00,STATEN ISLAND,10304,40.626663,-74.07565,"(40.626663, -74.07565)",BAY STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504508,Sedan,Moped,,, +02/20/2022,1:35,BROOKLYN,11211,40.717426,-73.95561,"(40.717426, -73.95561)",,,202 NORTH 8 STREET,0,0,0,0,0,0,0,0,Animals Action,,,,,4504662,Sedan,,,, +02/20/2022,14:40,QUEENS,11411,40.701767,-73.734344,"(40.701767, -73.734344)",114 AVENUE,223 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4504201,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +02/20/2022,1:35,MANHATTAN,10128,40.785923,-73.955124,"(40.785923, -73.955124)",EAST 94 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4504348,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +02/17/2022,13:20,BRONX,10467,40.88891,-73.877235,"(40.88891, -73.877235)",,,3701 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504774,Station Wagon/Sport Utility Vehicle,Ambulance,,, +02/19/2022,12:10,BROOKLYN,11201,40.70379,-73.98756,"(40.70379, -73.98756)",PEARL STREET,PLYMOUTH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,0:01,BRONX,10458,40.85586,-73.89462,"(40.85586, -73.89462)",PARK AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4504719,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,22:14,,,40.78896,-73.97595,"(40.78896, -73.97595)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504298,Sedan,Moped,,, +02/20/2022,15:10,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504358,Sedan,,,, +02/20/2022,0:00,BRONX,10458,40.87143,-73.88702,"(40.87143, -73.88702)",,,225 EAST BEDFORD PARK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4504765,Sedan,,,, +02/20/2022,2:00,QUEENS,11361,40.765736,-73.762375,"(40.765736, -73.762375)",40 AVENUE,221 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504597,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,8:00,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",CLOVE ROAD,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504106,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,5:30,MANHATTAN,10013,40.71813,-74.00141,"(40.71813, -74.00141)",,,86 WALKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504705,Sedan,Box Truck,,, +02/20/2022,1:33,QUEENS,11435,40.70283,-73.809364,"(40.70283, -73.809364)",,,89-38 146 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/14/2022,0:00,QUEENS,11101,40.73572,-73.93677,"(40.73572, -73.93677)",VANDAM STREET,STARR AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4504675,Chassis Cab,Bus,,, +02/20/2022,16:45,BROOKLYN,11213,40.66362,-73.930695,"(40.66362, -73.930695)",EAST NEW YORK AVENUE,EAST 91 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504518,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,17:17,BROOKLYN,11235,40.58263,-73.95408,"(40.58263, -73.95408)",,,10 SHORE BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504381,Sedan,E-Scooter,,, +02/17/2022,17:00,,,40.67643,-73.89128,"(40.67643, -73.89128)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504837,Sedan,School Bus,,, +02/20/2022,0:00,BROOKLYN,11212,40.658318,-73.90516,"(40.658318, -73.90516)",,,230 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504440,Pick-up Truck,,,, +02/16/2022,15:35,BRONX,10463,40.87515,-73.909096,"(40.87515, -73.909096)",,,5227 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504767,Sedan,Sedan,,, +12/02/2021,17:45,,,40.824562,-73.87259,"(40.824562, -73.87259)",BRUCKNER BOULEVARD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4486103,Ambulance,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/12/2021,16:05,QUEENS,11375,40.7205667,-73.8458956,"(40.7205667, -73.8458956)",AUSTIN STREET,70 ROAD,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4466569,Sedan,,,, +10/12/2021,18:42,,,40.6689504,-73.9338885,"(40.6689504, -73.9338885)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4466590,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,21:49,,,40.737222,-73.9813911,"(40.737222, -73.9813911)",EAST 22 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466601,Moped,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,23:15,QUEENS,11434,40.6666971,-73.7671284,"(40.6666971, -73.7671284)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4466619,Sedan,Sedan,Sedan,Sedan, +12/11/2021,14:26,QUEENS,11369,40.76635,-73.873024,"(40.76635, -73.873024)",24 AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485546,Sedan,Sedan,,, +10/12/2021,19:14,MANHATTAN,10028,40.7765594,-73.95055,"(40.7765594, -73.95055)",,,371 EAST 85 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466637,Sedan,,,, +10/12/2021,12:00,BROOKLYN,11211,40.7149303,-73.9428822,"(40.7149303, -73.9428822)",,,371 HUMBOLDT STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4466644,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/10/2021,18:24,BROOKLYN,11207,40.658264,-73.89133,"(40.658264, -73.89133)",,,1916 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486031,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,4:54,BROOKLYN,11218,40.637863,-73.96841,"(40.637863, -73.96841)",,,812 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4485530,LIMO,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/11/2021,7:15,,,40.66309,-73.962395,"(40.66309, -73.962395)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4485322,Motorcycle,,,, +12/10/2021,22:22,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4486053,Sedan,Sedan,,, +12/10/2021,20:09,,,40.70904,-73.84146,"(40.70904, -73.84146)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4486175,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,16:30,BROOKLYN,11212,40.656765,-73.91815,"(40.656765, -73.91815)",WILLMOHR STREET,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485441,Sedan,,,, +12/11/2021,16:12,QUEENS,11365,,,,,,7023 175 street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485610,Sedan,Sedan,,, +12/11/2021,9:50,,,40.874992,-73.81846,"(40.874992, -73.81846)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4486147,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/27/2021,12:00,BRONX,10473,40.81979,-73.87995,"(40.81979, -73.87995)",,,820 COLGATE AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4486096,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/08/2021,9:00,BROOKLYN,11207,40.67956,-73.8989,"(40.67956, -73.8989)",HIGHLAND BOULEVARD,FANCHON PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486001,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,18:45,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",3 AVENUE,EAST 125 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486298,Bus,Sedan,,, +12/11/2021,12:35,,,40.588955,-74.167595,"(40.588955, -74.167595)",RICHMOND AVENUE,RICHMOND HILL ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485623,Sedan,,,, +12/09/2021,17:00,MANHATTAN,10026,40.805096,-73.95488,"(40.805096, -73.95488)",WEST 117 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486195,,,,, +12/11/2021,20:00,QUEENS,11377,40.741047,-73.91818,"(40.741047, -73.91818)",47 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485746,Sedan,,,, +12/11/2021,5:25,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4486006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,4:10,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",30 AVENUE,STEINWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485573,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,13:30,QUEENS,11434,40.664722,-73.76907,"(40.664722, -73.76907)",BREWER BOULEVARD,145 DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4485489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,4:30,QUEENS,11415,40.706142,-73.83177,"(40.706142, -73.83177)",LEFFERTS BOULEVARD,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4486045,E-Bike,,,, +12/11/2021,22:56,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4486063,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,14:07,BRONX,10459,40.820282,-73.89212,"(40.820282, -73.89212)",,,924 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492013,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,15:40,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4492264,Sedan,Motorcycle,Sedan,, +01/04/2022,23:10,BRONX,10455,40.816032,-73.90809,"(40.816032, -73.90809)",JACKSON AVENUE,EAST 152 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492072,Van,,,, +01/04/2022,18:00,BROOKLYN,11211,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,ROEBLING STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4492548,Station Wagon/Sport Utility Vehicle,Bike,,, +09/02/2021,11:40,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492498,Tractor Truck Diesel,,,, +01/04/2022,1:03,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4491800,Sedan,,,, +01/04/2022,16:35,QUEENS,11354,40.765057,-73.81293,"(40.765057, -73.81293)",NORTHERN BOULEVARD,MURRAY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,20:44,,,40.709415,-73.87022,"(40.709415, -73.87022)",COOPER AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492141,Sedan,Sedan,,, +01/02/2022,7:00,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492465,Sedan,,,, +01/04/2022,2:00,BROOKLYN,11207,40.672234,-73.88471,"(40.672234, -73.88471)",ASHFORD STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491852,Sedan,Box Truck,,, +01/04/2022,10:11,BROOKLYN,11226,40.655678,-73.95909,"(40.655678, -73.95909)",,,270 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492155,Sedan,,,, +01/06/2021,7:00,QUEENS,11413,40.661934,-73.76048,"(40.661934, -73.76048)",SPRINGFIELD BOULEVARD,146 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492543,Sedan,,,, +01/04/2022,7:20,BROOKLYN,11208,40.67936,-73.879745,"(40.67936, -73.879745)",ATLANTIC AVENUE,HALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492437,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,6:31,BROOKLYN,11228,40.61516,-74.023964,"(40.61516, -74.023964)",PARROTT PLACE,92 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491879,Sedan,Pick-up Truck,,, +01/04/2022,0:35,MANHATTAN,10003,40.732563,-73.99159,"(40.732563, -73.99159)",,,68 EAST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491991,Sedan,,,, +01/04/2022,10:30,BROOKLYN,11225,40.659725,-73.95681,"(40.659725, -73.95681)",BEDFORD AVENUE,MIDWOOD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492278,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,10:00,,,,,,,,80a DAFFODIL LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492344,Sedan,,,, +12/31/2021,16:30,,,,,,,,59 37 street,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492386,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,18:54,QUEENS,11378,40.721996,-73.9004,"(40.721996, -73.9004)",,,57-63 65 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4492408,Sedan,,,, +01/04/2022,15:00,,,40.826523,-73.93116,"(40.826523, -73.93116)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491972,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,12:15,MANHATTAN,10019,40.761147,-73.97952,"(40.761147, -73.97952)",AVENUE OF THE AMERICAS,WEST 52 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4491925,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,9:50,QUEENS,11101,40.740276,-73.92782,"(40.740276, -73.92782)",48 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491965,Sedan,Sedan,,, +01/04/2022,7:42,BRONX,10453,0,0,"(0.0, 0.0)",UNIVERSITY AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4491927,Sedan,Sedan,,, +01/02/2022,15:28,BROOKLYN,11209,40.636566,-74.031586,"(40.636566, -74.031586)",,,7001 COLONIAL ROAD,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4492577,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,21:50,QUEENS,11356,40.778603,-73.846115,"(40.778603, -73.846115)",23 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4491986,Sedan,,,, +01/04/2022,8:31,QUEENS,11385,40.698013,-73.90265,"(40.698013, -73.90265)",CYPRESS AVENUE,GEORGE STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4491897,Sedan,,,, +12/25/2021,18:04,,,,,,FOREST PARK DRIVE,JACKIE ROBINSON,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492407,Bike,,,, +01/04/2022,9:05,,,40.65434,-73.94704,"(40.65434, -73.94704)",LENOX ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492123,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,18:30,MANHATTAN,10005,40.705322,-74.00888,"(40.705322, -74.00888)",,,76 BEAVER STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492181,Garbage or Refuse,Sedan,,, +01/02/2022,19:43,STATEN ISLAND,10304,,,,skyline dr,studio lane,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492420,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,7:15,,,40.74091,-73.83727,"(40.74091, -73.83727)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4492359,Sedan,Sedan,,, +01/01/2022,17:26,QUEENS,11385,40.713062,-73.90891,"(40.713062, -73.90891)",METROPOLITAN AVENUE,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492413,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,8:50,BROOKLYN,11249,40.71697,-73.9608,"(40.71697, -73.9608)",BERRY STREET,NORTH 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491921,Sedan,,,, +01/04/2022,0:00,BROOKLYN,11218,40.649975,-73.97772,"(40.649975, -73.97772)",,,104 EAST 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491980,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,19:00,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492056,Sedan,Box Truck,,, +01/04/2022,17:40,BRONX,10467,40.864235,-73.86452,"(40.864235, -73.86452)",,,2515 WALLACE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4492337,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/29/2021,20:47,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4492488,E-Bike,PK,,, +01/04/2022,6:13,,,40.730972,-73.92204,"(40.730972, -73.92204)",54 ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4491992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,15:05,,,40.750965,-73.94027,"(40.750965, -73.94027)",QUEENS PLAZA NORTH,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492027,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,13:15,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",EAST 144 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4492597,Sedan,Sedan,,, +01/04/2022,13:37,BROOKLYN,11215,40.660137,-73.983925,"(40.660137, -73.983925)",PROSPECT AVENUE,8 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Turning Improperly,,,,4491950,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/01/2022,7:22,MANHATTAN,10033,40.845432,-73.93658,"(40.845432, -73.93658)",WEST 175 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492464,Sedan,,,, +01/01/2022,18:46,,,40.877106,-73.90616,"(40.877106, -73.90616)",BROADWAY,WEST 230 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Driver Inattention/Distraction,,,,4492374,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2021,13:56,,,40.743397,-73.9384,"(40.743397, -73.9384)",47 AVENUE,29 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4492399,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/04/2022,19:00,BROOKLYN,11207,40.674385,-73.88795,"(40.674385, -73.88795)",BARBEY STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4492456,Sedan,,,, +01/04/2022,5:18,BROOKLYN,11206,40.70739,-73.95054,"(40.70739, -73.95054)",MESEROLE STREET,UNION AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4492555,Sedan,,,, +01/04/2022,0:00,,,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4492089,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +01/04/2022,12:48,,,40.672226,-73.94472,"(40.672226, -73.94472)",BROOKLYN AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492517,Sedan,Box Truck,,, +01/04/2022,10:30,,,40.655632,-73.95987,"(40.655632, -73.95987)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492156,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,11:40,BROOKLYN,11234,40.61441,-73.941505,"(40.61441, -73.941505)",AVENUE P,EAST 32 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492034,Sedan,Sedan,,, +01/04/2022,19:00,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492298,Sedan,Taxi,,, +01/04/2022,10:40,,,40.80684,-73.9275,"(40.80684, -73.9275)",ALEXANDER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491998,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/31/2021,17:00,MANHATTAN,10032,40.838207,-73.93723,"(40.838207, -73.93723)",,,457 WEST 166 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492472,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,15:00,QUEENS,11354,40.76877,-73.82754,"(40.76877, -73.82754)",32 AVENUE,LEAVITT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,4:00,BRONX,10461,40.843517,-73.83384,"(40.843517, -73.83384)",MIDDLETOWN ROAD,PILGRIM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,21:35,BROOKLYN,11236,40.6405,-73.88814,"(40.6405, -73.88814)",AVENUE M,EAST 104 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4492238,Sedan,Sedan,,, +10/13/2021,10:00,BRONX,10456,40.8323449,-73.9044514,"(40.8323449, -73.9044514)",,,540 EAST 169 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466854,Sedan,,,, +01/04/2022,3:15,,,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4492147,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,17:40,BRONX,10459,40.820213,-73.90053,"(40.820213, -73.90053)",,,864 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4492527,Bus,,,, +01/04/2022,0:38,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4491802,Sedan,,,, +01/04/2022,21:22,QUEENS,11101,40.754066,-73.915276,"(40.754066, -73.915276)",34 AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492615,Sedan,Bike,,, +01/04/2022,11:10,QUEENS,11368,40.737694,-73.85721,"(40.737694, -73.85721)",59 AVENUE,CALLOWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,2:45,,,40.873592,-73.88506,"(40.873592, -73.88506)",EAST 203 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492494,Sedan,,,, +01/04/2022,5:06,QUEENS,11102,40.7767,-73.93427,"(40.7767, -73.93427)",,,2-15 26 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491853,Sedan,Box Truck,,, +01/02/2022,20:55,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,13:00,,,40.60485,-74.02559,"(40.60485, -74.02559)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4491997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,8:51,,,40.66626,-73.95957,"(40.66626, -73.95957)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492149,Sedan,,,, +01/04/2022,14:39,BROOKLYN,11234,40.610188,-73.939354,"(40.610188, -73.939354)",AVENUE R,MARINE PARKWAY,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492035,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,7:00,BROOKLYN,11208,40.680904,-73.86765,"(40.680904, -73.86765)",,,77 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492436,Sedan,,,, +01/03/2022,0:01,MANHATTAN,10033,40.84552,-73.93469,"(40.84552, -73.93469)",WEST 176 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492470,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/04/2022,12:45,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492074,Sedan,Sedan,,, +01/04/2022,22:50,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492586,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,7:45,QUEENS,11433,40.69678,-73.78375,"(40.69678, -73.78375)",,,109-25 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491946,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/04/2022,13:30,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",65 PLACE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491967,Taxi,Pick-up Truck,,, +01/04/2022,18:14,QUEENS,11365,40.737602,-73.79583,"(40.737602, -73.79583)",,,61-19 FRESH MEADOW LANE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4492362,Sedan,,,, +01/04/2022,10:00,QUEENS,11373,40.74163,-73.880714,"(40.74163, -73.880714)",,,82-77 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4492015,Sedan,,,, +01/04/2022,2:55,,,,,,SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492416,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,8:48,,,40.86314,-73.8636,"(40.86314, -73.8636)",MACE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4491922,Sedan,Sedan,,, +01/04/2022,17:40,,,,,,OLD AMBOY ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492252,Sedan,,,, +01/04/2022,17:45,,,40.682343,-73.800835,"(40.682343, -73.800835)",142 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4492376,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,16:45,BROOKLYN,11223,40.59285,-73.97381,"(40.59285, -73.97381)",,,2437 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,17:32,BRONX,10457,40.847775,-73.88916,"(40.847775, -73.88916)",,,2081 CROTONA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492055,Sedan,Sedan,,, +12/28/2021,0:34,,,40.824425,-73.87271,"(40.824425, -73.87271)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492489,Sedan,UNKNOWN,,, +01/03/2022,13:00,BROOKLYN,11237,40.706512,-73.9309,"(40.706512, -73.9309)",KNICKERBOCKER AVENUE,HARRISON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492554,Sedan,Box Truck,,, +12/16/2021,23:00,STATEN ISLAND,10301,40.63326,-74.095184,"(40.63326, -74.095184)",,,381 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,13:55,BROOKLYN,11212,40.66479,-73.91532,"(40.66479, -73.91532)",BLAKE AVENUE,STRAUSS STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492006,Van,Box Truck,,, +01/04/2022,3:24,QUEENS,11375,40.732513,-73.853645,"(40.732513, -73.853645)",,,102-15 63 DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4492063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/03/2022,17:58,BRONX,10461,40.844154,-73.84591,"(40.844154, -73.84591)",,,1486 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492475,Sedan,Sedan,,, +01/04/2022,8:55,QUEENS,11365,40.731426,-73.79867,"(40.731426, -73.79867)",JEWEL AVENUE,171 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492354,Sedan,,,, +01/04/2022,5:30,MANHATTAN,10035,40.80641,-73.94227,"(40.80641, -73.94227)",5 AVENUE,EAST 125 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491878,Box Truck,Sedan,,, +12/31/2021,14:50,QUEENS,11378,40.718555,-73.91518,"(40.718555, -73.91518)",54 STREET,GRAND AVENUE,,2,0,0,0,0,0,2,0,Oversized Vehicle,Unspecified,,,,4492412,Dump,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,9:34,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,ADAMS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4491987,Tractor Truck Gasoline,,,, +01/04/2022,16:00,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",MERRICK BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492380,Bus,Sedan,,, +09/06/2022,6:34,,,40.696274,-73.97446,"(40.696274, -73.97446)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4561778,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,8:00,,,40.863235,-73.92693,"(40.863235, -73.92693)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,14:50,STATEN ISLAND,10304,40.630924,-74.07728,"(40.630924, -74.07728)",,,24 WILLIAM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492106,Sedan,Sedan,,, +01/04/2022,10:04,,,40.594425,-73.995316,"(40.594425, -73.995316)",CROPSEY AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4492173,Sedan,Sedan,,, +01/04/2022,13:00,BROOKLYN,11233,40.6772,-73.92661,"(40.6772, -73.92661)",ATLANTIC AVENUE,SUYDAM PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492477,Sedan,Bus,,, +01/04/2022,17:44,MANHATTAN,10022,40.76229,-73.974464,"(40.76229, -73.974464)",WEST 56 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492025,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,21:56,,,40.58406,-73.96901,"(40.58406, -73.96901)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4492417,Sedan,,,, +01/02/2022,21:00,BROOKLYN,11207,40.665474,-73.9,"(40.665474, -73.9)",DUMONT AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492457,Sedan,Pick-up Truck,,, +01/04/2022,21:09,BRONX,10456,40.82881,-73.90828,"(40.82881, -73.90828)",,,1138 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492062,Sedan,Sedan,Sedan,, +12/23/2021,17:40,BRONX,10457,40.853306,-73.89613,"(40.853306, -73.89613)",,,4426 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492385,Sedan,,,, +01/04/2022,8:50,,,40.764706,-73.811005,"(40.764706, -73.811005)",154 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,14:45,,,40.90651,-73.84889,"(40.90651, -73.84889)",WHITE PLAINS ROAD,EAST 243 STREET,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4492212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,17:01,QUEENS,11364,40.749237,-73.77547,"(40.749237, -73.77547)",,,53-27 203 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491971,Sedan,PK,,, +01/04/2022,19:30,,,40.842163,-73.88902,"(40.842163, -73.88902)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492241,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,8:20,,,40.766666,-73.9304,"(40.766666, -73.9304)",31 ROAD,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,Outside Car Distraction,,,,4492020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,16:15,MANHATTAN,10007,40.712532,-74.007675,"(40.712532, -74.007675)",BROADWAY,PARK PLACE,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4492187,Sedan,,,, +12/18/2021,10:27,BRONX,10466,40.888477,-73.841835,"(40.888477, -73.841835)",,,1225 EAST 233 STREET,1,0,1,0,0,0,0,0,Accelerator Defective,,,,,4492514,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,16:35,BRONX,10453,40.84825,-73.90975,"(40.84825, -73.90975)",EAST 176 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492083,Sedan,Sedan,,, +12/17/2021,15:00,,,40.693394,-73.78894,"(40.693394, -73.78894)",110 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492538,Sedan,Pick-up Truck,,, +02/20/2022,22:00,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504319,Sedan,Sedan,,, +06/19/2021,23:56,BRONX,10467,40.886,-73.86264,"(40.886, -73.86264)",,,676 EAST 222 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4429117,Sedan,Sedan,,, +01/04/2022,5:03,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",BRUCKNER BOULEVARD,EAST 140 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4491813,Sedan,Sedan,,, +01/02/2022,19:00,BROOKLYN,11207,40.67643,-73.89128,"(40.67643, -73.89128)",ATLANTIC AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492440,Sedan,,,, +12/23/2021,0:00,QUEENS,11434,40.680946,-73.79225,"(40.680946, -73.79225)",,,116-60 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492377,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,15:40,MANHATTAN,10013,40.716278,-74.00454,"(40.716278, -74.00454)",BROADWAY,WORTH STREET,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4491959,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,16:30,,,,,,VANCORTLANDT PARK WEST,ORLOFF AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491962,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,16:29,BROOKLYN,11219,40.63923,-73.99756,"(40.63923, -73.99756)",,,1025 48 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492305,Sedan,Box Truck,,, +01/03/2022,18:30,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492611,Tractor Truck Diesel,Sedan,,, +01/04/2022,19:00,QUEENS,11361,40.75744,-73.7735,"(40.75744, -73.7735)",,,45-60 OCEANIA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4491979,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/31/2021,10:00,,,40.83872,-73.91378,"(40.83872, -73.91378)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4492371,Sedan,Sedan,,, +01/04/2022,4:30,BROOKLYN,11220,40.636078,-74.019714,"(40.636078, -74.019714)",5 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4492003,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/04/2022,13:00,BROOKLYN,11224,40.579052,-73.98415,"(40.579052, -73.98415)",NEPTUNE AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4492402,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,5:40,,,,,,FREDERICK DOUGLASS BLVD,HARLEM RIVER DRIVE GREENWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491904,Sedan,UNK,,, +01/04/2022,16:10,BROOKLYN,11204,40.62202,-73.98726,"(40.62202, -73.98726)",60 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492313,Sedan,Sedan,,, +01/02/2022,9:30,MANHATTAN,10009,40.724136,-73.98191,"(40.724136, -73.98191)",,,82 AVENUE B,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4492390,Sedan,,,, +01/02/2022,2:07,QUEENS,11367,40.7338,-73.81481,"(40.7338, -73.81481)",KISSENA BOULEVARD,MELBOURNE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492415,Sedan,Sedan,,, +01/04/2022,7:15,,,40.744667,-73.971146,"(40.744667, -73.971146)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Tire Failure/Inadequate,,,,4491923,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/04/2022,12:57,,,40.716682,-73.98244,"(40.716682, -73.98244)",DELANCEY STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491977,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,14:45,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4491996,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,19:07,BRONX,10467,40.880405,-73.87873,"(40.880405, -73.87873)",,,3457 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492151,Ambulance,,,, +01/04/2022,14:25,BROOKLYN,11239,40.65393,-73.86744,"(40.65393, -73.86744)",,,911 ERSKINE STREET,1,0,1,0,0,0,0,0,,,,,,4492439,,,,, +01/04/2022,6:00,,,0,0,"(0.0, 0.0)",ESSEX STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492582,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,7:50,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Glare,Unspecified,,,,4491930,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,9:45,QUEENS,11368,40.73916,-73.857956,"(40.73916, -73.857956)",101 STREET,MARTENSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492017,Bus,Sedan,,, +01/04/2022,6:30,BRONX,10459,40.8205,-73.891075,"(40.8205, -73.891075)",,,925 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4491890,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,16:10,BROOKLYN,11225,40.65768,-73.9503,"(40.65768, -73.9503)",,,1209 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492280,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,9:55,,,40.742935,-73.82773,"(40.742935, -73.82773)",HORACE HARDING EXPRESSWAY,138 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4491983,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/04/2022,13:35,,,40.759617,-73.961975,"(40.759617, -73.961975)",EAST 59 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492507,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,13:20,,,40.68777,-73.98701,"(40.68777, -73.98701)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4491989,Sedan,,,, +01/04/2022,16:45,BROOKLYN,11224,40.576706,-73.972824,"(40.576706, -73.972824)",WEST BRIGHTON AVENUE,WEST 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492404,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,15:38,,,40.699436,-73.91229,"(40.699436, -73.91229)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492036,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,14:06,,,40.739162,-73.78556,"(40.739162, -73.78556)",188 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492361,Sedan,Sedan,,, +01/03/2022,1:00,QUEENS,11378,40.721626,-73.90312,"(40.721626, -73.90312)",FLUSHING AVENUE,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492410,E-Bike,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,16:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492383,Sedan,,,, +01/04/2022,0:54,BROOKLYN,11203,40.6483,-73.92807,"(40.6483, -73.92807)",EAST 52 STREET,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492126,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,20:45,,,40.835484,-73.9494,"(40.835484, -73.9494)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4492469,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,23:39,QUEENS,11435,40.70591,-73.809105,"(40.70591, -73.809105)",,,147-20 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492030,Sedan,Sedan,,, +01/04/2022,18:00,BRONX,10473,40.82311,-73.88076,"(40.82311, -73.88076)",COLGATE AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492490,Sedan,,,, +01/04/2022,15:00,MANHATTAN,10019,40.766285,-73.98186,"(40.766285, -73.98186)",WEST 57 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492024,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,8:30,,,40.636784,-74.018974,"(40.636784, -74.018974)",5 AVENUE,65 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4491874,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,15:55,,,40.710316,-73.77173,"(40.710316, -73.77173)",JAMAICA AVENUE,187 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492539,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,13:17,QUEENS,11377,40.735596,-73.89901,"(40.735596, -73.89901)",GARFIELD AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491968,Sedan,Sedan,,, +01/04/2022,10:45,BRONX,10456,40.827316,-73.91035,"(40.827316, -73.91035)",,,446 EAST 165 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492065,Box Truck,Sedan,,, +01/04/2022,13:22,BROOKLYN,11208,0,0,"(0.0, 0.0)",CRESCENT STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492444,Pick-up Truck,,,, +01/04/2022,21:10,MANHATTAN,10021,40.767494,-73.95933,"(40.767494, -73.95933)",EAST 70 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4492078,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/04/2022,7:30,MANHATTAN,10033,,,,WEST 181 STREET,COLONEL ROBERT MAGAW PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492268,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,14:15,BRONX,10475,40.882538,-73.82697,"(40.882538, -73.82697)",TILLOTSON AVENUE,MERRITT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492458,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,11:25,MANHATTAN,10035,40.795895,-73.93253,"(40.795895, -73.93253)",,,322 PLEASANT AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492054,Sedan,Sedan,,, +01/04/2022,18:15,BROOKLYN,11229,40.6104,-73.9586,"(40.6104, -73.9586)",AVENUE P,EAST 15 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492007,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,20:25,BROOKLYN,11213,40.67597,-73.933235,"(40.67597, -73.933235)",DEAN STREET,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4492520,Sedan,Sedan,Sedan,, +01/04/2022,22:50,BROOKLYN,11206,40.708675,-73.94454,"(40.708675, -73.94454)",,,110 SCHOLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4492551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +01/04/2022,10:00,BROOKLYN,11226,40.63758,-73.962654,"(40.63758, -73.962654)",,,1601 DITMAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492351,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,12:00,,,40.613777,-74.08359,"(40.613777, -74.08359)",SOBEL COURT,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492422,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,7:05,QUEENS,11413,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492100,Sedan,,,, +01/04/2022,12:00,BRONX,10466,40.89718,-73.854195,"(40.89718, -73.854195)",,,4359 FURMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492214,Sedan,,,, +06/18/2021,8:25,,,40.63272,-74.1617,"(40.63272, -74.1617)",,,178 LOCKMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429346,Sedan,,,, +10/14/2021,10:12,MANHATTAN,10010,40.7388389,-73.9799517,"(40.7388389, -73.9799517)",,,432 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467062,Bike,,,, +01/04/2022,8:35,MANHATTAN,10032,40.841076,-73.93977,"(40.841076, -73.93977)",WEST 168 STREET,BROADWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492474,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,1:50,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,AVENUE B,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504714,,,,, +10/14/2021,8:30,,,40.6212541,-74.0028565,"(40.6212541, -74.0028565)",14 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467111,Box Truck,Bike,,, +12/11/2021,12:35,BROOKLYN,11215,,,,5 Ave,23 Street,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485809,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/11/2021,2:49,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,BOSTON ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4485986,Dump,Taxi,,, +12/11/2021,2:35,,,40.687557,-73.93896,"(40.687557, -73.93896)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4485643,Sedan,Sedan,Sedan,, +12/10/2021,2:17,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486240,Sedan,Flat Bed,,, +12/11/2021,13:52,BROOKLYN,11203,40.659023,-73.93118,"(40.659023, -73.93118)",,,600 UTICA AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485702,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,6:45,BRONX,10472,40.8311,-73.85716,"(40.8311, -73.85716)",PUGSLEY AVENUE,GLEASON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486109,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,3:45,BROOKLYN,11207,40.668987,-73.89514,"(40.668987, -73.89514)",,,340 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486018,Sedan,Sedan,,, +11/30/2021,7:11,,,40.85206,-73.934784,"(40.85206, -73.934784)",BROADWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486153,Sedan,Bus,Tractor Truck Diesel,, +12/11/2021,19:45,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/24/2021,14:29,BRONX,10473,40.822075,-73.84711,"(40.822075, -73.84711)",,,2253 HOMER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486141,Sedan,,,, +12/10/2021,0:00,BROOKLYN,11208,40.685696,-73.87161,"(40.685696, -73.87161)",HEMLOCK STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486021,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,1:45,,,40.665855,-73.750046,"(40.665855, -73.750046)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4485306,Sedan,,,, +12/09/2021,10:45,,,40.654686,-73.87772,"(40.654686, -73.87772)",GATEWAY DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4486092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,21:14,,,40.59654,-73.93538,"(40.59654, -73.93538)",AVENUE W,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4486047,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +12/11/2021,0:00,,,40.753693,-73.89831,"(40.753693, -73.89831)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4485545,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,5:00,,,40.664993,-73.80229,"(40.664993, -73.80229)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4485864,Sedan,Tractor Truck Diesel,,, +12/11/2021,0:00,BROOKLYN,11211,40.711464,-73.945854,"(40.711464, -73.945854)",,,669 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485432,Sedan,,,, +12/11/2021,17:54,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485835,Sedan,PK,Sedan,, +12/11/2021,23:35,BRONX,10453,40.854874,-73.916794,"(40.854874, -73.916794)",SEDGWICK AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Passing Too Closely,,,4486069,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/09/2021,15:30,BROOKLYN,11207,40.667114,-73.899734,"(40.667114, -73.899734)",,,523 BLAKE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486002,,,,, +12/11/2021,7:22,BRONX,10456,40.83062,-73.903145,"(40.83062, -73.903145)",,,1230 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4485656,Sedan,Sedan,Sedan,Sedan, +12/11/2021,23:15,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486293,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/11/2021,23:55,BROOKLYN,11203,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485681,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,18:00,,,40.7422,-73.840965,"(40.7422, -73.840965)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485977,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,14:20,,,40.85882,-73.9368,"(40.85882, -73.9368)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4485762,Sedan,,,, +01/04/2022,21:49,,,40.70412,-73.85405,"(40.70412, -73.85405)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4492245,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +01/04/2022,12:36,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",WEST 230 STREET,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4492480,MOTOR SCOO,,,, +01/04/2022,0:42,BROOKLYN,11222,40.72083,-73.93814,"(40.72083, -73.93814)",MORGAN AVENUE,DIVISION PLACE,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,,,,4491817,Sedan,Dump,,, +12/26/2021,22:30,,,0,0,"(0.0, 0.0)",BROADWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4490583,Sedan,,,, +01/02/2022,9:50,,,40.674,-73.960396,"(40.674, -73.960396)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492521,Sedan,Sedan,,, +01/04/2022,22:30,MANHATTAN,10001,40.74533,-73.99105,"(40.74533, -73.99105)",,,793 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4492029,Garbage or Refuse,,,, +01/03/2022,7:10,,,40.839622,-73.870285,"(40.839622, -73.870285)",EAST 180 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492378,Sedan,,,, +01/04/2022,15:47,BROOKLYN,11228,40.62524,-74.00947,"(40.62524, -74.00947)",11 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491963,Sedan,Bus,,, +01/01/2022,13:00,BRONX,10452,40.836624,-73.92612,"(40.836624, -73.92612)",NELSON AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492372,Sedan,Box Truck,,, +01/04/2022,14:30,BROOKLYN,11206,40.708755,-73.946815,"(40.708755, -73.946815)",,,149 LEONARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492557,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,13:32,BROOKLYN,11239,40.650017,-73.87057,"(40.650017, -73.87057)",,,360 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492452,Sedan,,,, +01/04/2022,10:10,BROOKLYN,11203,40.64632,-73.92981,"(40.64632, -73.92981)",UTICA AVENUE,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492125,Sedan,Pick-up Truck,,, +01/04/2022,10:15,MANHATTAN,10021,40.768177,-73.95692,"(40.768177, -73.95692)",,,340 EAST 72 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492172,Station Wagon/Sport Utility Vehicle,Dump,,, +01/04/2022,20:30,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",116 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492418,Station Wagon/Sport Utility Vehicle,Minibike,,, +01/04/2022,17:02,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492281,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,21:20,QUEENS,11377,40.73642,-73.88939,"(40.73642, -73.88939)",51 AVENUE,73 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4491982,Sedan,,,, +01/04/2022,19:21,BROOKLYN,11235,40.58038,-73.967606,"(40.58038, -73.967606)",OCEAN PARKWAY,NEPTUNE AVENUE,,0,1,0,1,0,0,0,0,Unspecified,,,,,4492002,Sedan,,,, +01/04/2022,8:30,BRONX,10458,40.858242,-73.88868,"(40.858242, -73.88868)",,,2465 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4491917,Sedan,Sedan,Sedan,, +01/04/2022,15:59,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,4,0,0,0,0,0,4,0,Physical Disability,Unspecified,,,,4492320,Sedan,Sedan,,, +01/04/2022,12:00,QUEENS,11691,40.599525,-73.74708,"(40.599525, -73.74708)",,,368 BEACH 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492059,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/06/2021,8:30,QUEENS,11373,40.741547,-73.86755,"(40.741547, -73.86755)",,,50-05 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492605,Sedan,,,, +01/04/2022,15:00,,,40.745125,-73.83143,"(40.745125, -73.83143)",58 ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4491984,Sedan,Sedan,,, +01/04/2022,17:20,MANHATTAN,10065,40.763428,-73.96522,"(40.763428, -73.96522)",EAST 62 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492009,E-Scooter,,,, +12/14/2021,20:50,STATEN ISLAND,10305,40.604397,-74.069,"(40.604397, -74.069)",NARROWS ROAD NORTH,FINGERBOARD ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492433,Sedan,,,, +01/04/2022,19:40,QUEENS,11355,40.755432,-73.815346,"(40.755432, -73.815346)",45 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4492396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/26/2021,19:10,STATEN ISLAND,10301,40.63823,-74.078316,"(40.63823, -74.078316)",,,69 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4492405,Sedan,,,, +01/04/2022,7:00,BRONX,10456,40.831024,-73.9027,"(40.831024, -73.9027)",,,1265 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4491903,Sedan,Van,,, +01/04/2022,22:30,BRONX,10461,40.849182,-73.85386,"(40.849182, -73.85386)",MORRIS PARK AVENUE,LURTING AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4492186,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,9:50,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4491953,Sedan,,,, +01/04/2022,15:00,QUEENS,11378,40.723183,-73.90706,"(40.723183, -73.90706)",,,59-31 MASPETH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492347,Sedan,,,, +01/04/2022,7:05,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491887,Station Wagon/Sport Utility Vehicle,Bus,,, +01/04/2022,16:45,BRONX,10474,40.818375,-73.8908,"(40.818375, -73.8908)",,,845 BARRETTO STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4492018,Sedan,,,, +01/02/2022,1:29,BRONX,10463,,,,MAJOR DEEGAN EXPRESSWAY,VANCORTLANDT PARK SOUTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492387,Sedan,Sedan,,, +01/04/2022,12:18,BROOKLYN,11225,40.667744,-73.95902,"(40.667744, -73.95902)",,,905 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492279,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,15:37,QUEENS,11358,40.757797,-73.79123,"(40.757797, -73.79123)",NORTHERN BOULEVARD,190 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4491973,Station Wagon/Sport Utility Vehicle,Sedan,TOW TRUCK,, +01/02/2022,21:00,,,40.706917,-73.93972,"(40.706917, -73.93972)",BUSHWICK AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492550,,,,, +01/04/2022,12:45,,,,,,Edward L Grant Highwa,Plimpton Avenue,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492492,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/04/2022,15:15,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,CREST ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492066,Ambulance,Sedan,,, +01/04/2022,18:55,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",DE KALB AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4492038,Bus,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,9:58,BROOKLYN,11207,40.67924,-73.89889,"(40.67924, -73.89889)",,,11 FANCHON PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492438,Sedan,,,, +01/01/2022,19:40,,,40.83512,-73.94552,"(40.83512, -73.94552)",RIVERSIDE DRIVE,WEST 158 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492468,Sedan,Sedan,,, +01/04/2022,21:00,,,40.844864,-73.92256,"(40.844864, -73.92256)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492082,Tractor Truck Diesel,Sedan,,, +01/04/2022,16:39,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491970,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,10:10,BROOKLYN,11236,40.639824,-73.91432,"(40.639824, -73.91432)",,,602 EAST 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4491929,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,4:45,MANHATTAN,10002,40.72075,-73.98804,"(40.72075, -73.98804)",,,149 LUDLOW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492580,Sedan,,,, +01/04/2022,5:50,QUEENS,11427,40.72506,-73.75898,"(40.72506, -73.75898)",,,208-90 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4492360,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,5:53,QUEENS,11385,40.69278,-73.902405,"(40.69278, -73.902405)",,,15-11 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492409,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,22:40,QUEENS,11375,40.735645,-73.853584,"(40.735645, -73.853584)",62 ROAD,YELLOWSTONE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,14:35,,,40.769283,-73.82445,"(40.769283, -73.82445)",32 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492136,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,9:00,MANHATTAN,10035,40.800217,-73.94045,"(40.800217, -73.94045)",,,1907 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492382,Sedan,,,, +01/04/2022,18:35,,,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,4492265,Sedan,Sedan,Sedan,Sedan,Sedan +01/04/2022,0:00,,,,,,PELHAM PARKWAY SOUTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4491924,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,8:30,STATEN ISLAND,10306,40.56527,-74.134605,"(40.56527, -74.134605)",CLARKE AVENUE,WILDER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4491876,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,9:15,QUEENS,11106,40.76116,-73.93041,"(40.76116, -73.93041)",,,25-09 34 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492022,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,8:07,,,40.66644,-73.95361,"(40.66644, -73.95361)",ROGERS AVENUE,,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4492152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,6:00,,,40.698406,-73.80647,"(40.698406, -73.80647)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429511,Sedan,Box Truck,,, +01/04/2022,17:30,QUEENS,11422,40.660286,-73.74298,"(40.660286, -73.74298)",BROOKVILLE BOULEVARD,MAYDA ROAD,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Driver Inattention/Distraction,,,,4491993,Sedan,,,, +01/02/2022,4:30,QUEENS,11369,40.759075,-73.86985,"(40.759075, -73.86985)",32 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4492502,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/29/2021,19:51,QUEENS,11432,40.717834,-73.77491,"(40.717834, -73.77491)",188 STREET,HENLEY ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4492540,Sedan,Sedan,Sedan,, +01/04/2022,0:00,,,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492442,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,16:46,MANHATTAN,10003,40.73602,-73.98228,"(40.73602, -73.98228)",EAST 20 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4492032,Station Wagon/Sport Utility Vehicle,Bike,,, +01/04/2022,15:54,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492462,Sedan,Sedan,,, +01/04/2022,9:30,BROOKLYN,11218,40.640736,-73.98344,"(40.640736, -73.98344)",,,1371 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492321,Sedan,,,, +01/04/2022,4:55,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4491964,Sedan,Bus,,, +12/31/2021,14:10,BRONX,10467,40.86543,-73.86737,"(40.86543, -73.86737)",ALLERTON AVENUE,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,,,,,,4492379,,,,, +01/03/2022,9:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492600,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,20:24,,,40.670124,-73.95528,"(40.670124, -73.95528)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,6:15,BRONX,10469,40.879753,-73.85338,"(40.879753, -73.85338)",,,1023 EAST 218 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491952,Sedan,,,, +01/04/2022,14:32,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4491985,Bus,Sedan,,, +01/03/2022,17:15,QUEENS,11385,40.693844,-73.90119,"(40.693844, -73.90119)",CODY AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4492414,,,,, +12/31/2021,18:25,QUEENS,11379,40.721485,-73.86658,"(40.721485, -73.86658)",WOODHAVEN BOULEVARD,64 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492406,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,3:25,,,40.888065,-73.88772,"(40.888065, -73.88772)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4491918,Sedan,,,, +01/04/2022,18:30,,,40.6496,-73.88371,"(40.6496, -73.88371)",PENNSYLVANIA AVENUE,DELMAR LOOP,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492453,Sedan,,,, +01/04/2022,19:35,QUEENS,11370,40.765724,-73.89239,"(40.765724, -73.89239)",,,75-20 ASTORIA BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492090,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/03/2022,8:30,,,40.585,-73.82622,"(40.585, -73.82622)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492519,Sedan,,,, +01/03/2022,13:00,BROOKLYN,11238,40.67443,-73.96694,"(40.67443, -73.96694)",SAINT JOHNS PLACE,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492522,Sedan,Sedan,,, +01/04/2022,0:05,,,40.78729,-73.81345,"(40.78729, -73.81345)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4491838,Sedan,,,, +01/04/2022,23:00,MANHATTAN,10038,40.708237,-74.0047,"(40.708237, -74.0047)",,,50 FULTON STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4492182,Sedan,Sedan,,, +01/04/2022,16:12,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4492249,Sedan,Sedan,,, +01/04/2022,12:55,BROOKLYN,11226,40.647602,-73.955734,"(40.647602, -73.955734)",,,2298 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4492028,Sedan,,,, +01/04/2022,15:30,STATEN ISLAND,10301,40.61152,-74.098625,"(40.61152, -74.098625)",CLOVE ROAD,LITTLE CLOVE ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492419,,,,, +01/04/2022,12:35,BRONX,10458,40.85579,-73.881,"(40.85579, -73.881)",,,2475 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492058,Sedan,,,, +01/04/2022,18:30,QUEENS,11435,40.70377,-73.80522,"(40.70377, -73.80522)",150 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4492232,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,0:43,BROOKLYN,11222,40.72536,-73.93971,"(40.72536, -73.93971)",,,619 MORGAN AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4491899,Sedan,Sedan,,, +01/02/2022,12:00,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492373,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,3:04,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,WEST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4492434,Sedan,,,, +01/04/2022,23:00,MANHATTAN,10065,40.763363,-73.95925,"(40.763363, -73.95925)",EAST 65 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492012,Sedan,Sedan,Sedan,, +01/04/2022,17:20,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",79 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492000,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,17:25,STATEN ISLAND,10310,40.62619,-74.11968,"(40.62619, -74.11968)",CLOVE LAKE PLACE,CLOVE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492398,Sedan,,,, +01/04/2022,4:00,,,40.618927,-74.16268,"(40.618927, -74.16268)",,,831 GOETHALS ROAD NORTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/04/2022,11:50,,,40.639977,-73.92623,"(40.639977, -73.92623)",FOSTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492124,Sedan,Box Truck,,, +01/04/2022,16:10,BROOKLYN,11249,40.715733,-73.96448,"(40.715733, -73.96448)",GRAND STREET,WYTHE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492556,Sedan,,,, +12/28/2021,15:05,BRONX,10462,40.839405,-73.858574,"(40.839405, -73.858574)",,,1511 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492487,Sedan,,,, +01/04/2022,17:00,MANHATTAN,10027,40.80766,-73.94316,"(40.80766, -73.94316)",,,40 WEST 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4492160,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +01/04/2022,23:20,BROOKLYN,11226,40.644512,-73.963135,"(40.644512, -73.963135)",BEVERLEY ROAD,EAST 17 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492033,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,17:00,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Other Vehicular,,,,4492463,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,18:15,MANHATTAN,10032,40.841652,-73.94115,"(40.841652, -73.94115)",,,650 WEST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492473,Ambulance,Ambulance,,, +12/31/2021,10:03,,,40.83981,-73.91314,"(40.83981, -73.91314)",EAST 171 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492493,Sedan,Sedan,,, +01/04/2022,22:05,BROOKLYN,11249,40.72028,-73.963135,"(40.72028, -73.963135)",,,2 NORTH 6 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4492067,,,,, +02/17/2022,23:00,BRONX,10460,40.8466,-73.88346,"(40.8466, -73.88346)",CROTONA PARKWAY,EAST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504736,Sedan,,,, +02/20/2022,17:25,QUEENS,11417,40.674576,-73.84844,"(40.674576, -73.84844)",133 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504356,Sedan,Sedan,,, +02/16/2022,11:00,BROOKLYN,11218,40.642845,-73.97826,"(40.642845, -73.97826)",EAST 2 STREET,BEVERLEY ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504681,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,11:05,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",UTICA AVENUE,CHURCH AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4504113,,,,, +02/20/2022,18:15,,,40.71241,-73.83468,"(40.71241, -73.83468)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Brakes Defective,,,,4504469,Sedan,Sedan,,, +02/20/2022,19:40,QUEENS,11368,40.755207,-73.86705,"(40.755207, -73.86705)",,,34-21 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504248,Sedan,Sedan,,, +02/20/2022,23:00,STATEN ISLAND,10304,40.6094,-74.09011,"(40.6094, -74.09011)",NARROWS ROAD NORTH,RICHMOND ROAD,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4504496,Sedan,,,, +03/13/2021,22:18,BRONX,10462,40.83365,-73.845146,"(40.83365, -73.845146)",,,1235 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4399662,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/14/2021,17:40,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",LENOX ROAD,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,4:39,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428752,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,15:12,,,40.718678,-73.9405,"(40.718678, -73.9405)",KINGSLAND AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429640,Sedan,,,, +06/19/2021,20:30,,,40.68651,-73.954544,"(40.68651, -73.954544)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428988,Sedan,,,, +06/19/2021,21:17,STATEN ISLAND,10306,40.57548,-74.12265,"(40.57548, -74.12265)",RICHMOND ROAD,GELDNER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4429541,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/19/2021,1:25,,,40.76548,-73.913704,"(40.76548, -73.913704)",STEINWAY STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428861,Sedan,E-Bike,,, +06/17/2021,22:30,MANHATTAN,10011,40.741665,-74.00114,"(40.741665, -74.00114)",8 AVENUE,WEST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429377,Sedan,Sedan,,, +06/17/2021,15:51,,,40.82146,-73.94461,"(40.82146, -73.94461)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4429353,Pick-up Truck,Sedan,,, +06/19/2021,3:30,QUEENS,11411,40.68922,-73.72908,"(40.68922, -73.72908)",,,118-40 234 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4428548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/19/2021,21:27,BROOKLYN,11230,40.6337,-73.96719,"(40.6337, -73.96719)",CONEY ISLAND AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428804,Sedan,Sedan,,, +06/18/2021,12:35,,,40.5433,-74.16424,"(40.5433, -74.16424)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429549,Sedan,,,, +06/19/2021,10:00,,,40.671925,-73.904526,"(40.671925, -73.904526)",POWELL STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428905,Sedan,,,, +06/19/2021,20:24,,,40.828953,-73.837,"(40.828953, -73.837)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429304,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,17:06,,,40.609463,-73.97419,"(40.609463, -73.97419)",65 STREET,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4429412,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/19/2021,19:00,BRONX,10461,40.84137,-73.84996,"(40.84137, -73.84996)",,,1712 SEDDON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429463,Sedan,,,, +06/19/2021,0:00,,,40.69285,-73.90355,"(40.69285, -73.90355)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4428581,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/19/2021,12:30,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4428911,Taxi,Sedan,,, +06/15/2021,12:56,MANHATTAN,10001,40.747234,-73.99337,"(40.747234, -73.99337)",WEST 28 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429373,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,18:33,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",VARICK STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429690,Sedan,PK,,, +06/18/2021,7:00,,,40.70847,-73.81969,"(40.70847, -73.81969)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4429404,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,23:40,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429252,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,0:10,BROOKLYN,11207,40.665176,-73.89122,"(40.665176, -73.89122)",LIVONIA AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428622,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,1:15,,,40.764053,-73.99225,"(40.764053, -73.99225)",10 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429701,Sedan,,,, +05/23/2021,15:51,MANHATTAN,10036,40.762806,-73.993164,"(40.762806, -73.993164)",10 AVENUE,WEST 47 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429700,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,17:30,BROOKLYN,11209,40.635853,-74.031876,"(40.635853, -74.031876)",,,7039 COLONIAL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4428733,Sedan,,,, +06/19/2021,14:08,MANHATTAN,10011,40.73986,-73.995026,"(40.73986, -73.995026)",WEST 18 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429008,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,18:56,MANHATTAN,10013,40.717133,-74.00458,"(40.717133, -74.00458)",,,91 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429529,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,9:30,BRONX,10470,40.89999,-73.85301,"(40.89999, -73.85301)",EAST 239 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429066,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,23:00,QUEENS,11354,40.77124,-73.84371,"(40.77124, -73.84371)",30 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4429134,Sedan,Bus,,, +06/19/2021,4:15,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4429202,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,15:20,QUEENS,11377,40.74539,-73.90559,"(40.74539, -73.90559)",ROOSEVELT AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428704,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,12:55,QUEENS,11356,0,0,"(0.0, 0.0)",20 AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428666,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,14:35,QUEENS,11372,40.751816,-73.89606,"(40.751816, -73.89606)",,,34-35 70 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4429433,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,2:51,BROOKLYN,11215,40.670147,-73.98549,"(40.670147, -73.98549)",,,409 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429454,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,12:45,,,40.55554,-74.17562,"(40.55554, -74.17562)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4429485,4 dr sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +06/19/2021,16:30,QUEENS,11385,40.700592,-73.85457,"(40.700592, -73.85457)",WOODHAVEN BOULEVARD,FOREST PARK DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428698,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,14:00,QUEENS,11356,40.787884,-73.84103,"(40.787884, -73.84103)",11 AVENUE,127 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428667,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,9:45,MANHATTAN,10011,40.740173,-73.999435,"(40.740173, -73.999435)",,,214 WEST 16 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429391,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,17:50,,,40.667786,-73.88442,"(40.667786, -73.88442)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428727,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,2:55,BROOKLYN,11235,40.58369,-73.94808,"(40.58369, -73.94808)",,,2027 EMMONS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428638,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,2:04,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,6,0,0,0,0,0,6,0,Other Vehicular,Unsafe Speed,,,,4429201,Sedan,Sedan,,, +06/19/2021,14:40,QUEENS,11373,40.741028,-73.87697,"(40.741028, -73.87697)",88 STREET,SAINT JAMES AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429672,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,0:32,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428893,Sedan,,,, +06/19/2021,22:00,BROOKLYN,11225,40.660255,-73.95968,"(40.660255, -73.95968)",,,20 MAPLE STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4428925,Sedan,Sedan,,, +06/18/2021,11:30,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",NEW DORP LANE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,13:00,,,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Keep Right,,,,,4429583,Motorscooter,,,, +06/19/2021,1:00,QUEENS,11691,40.59449,-73.77892,"(40.59449, -73.77892)",,,354 BEACH 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429231,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,0:35,STATEN ISLAND,10310,40.631252,-74.126884,"(40.631252, -74.126884)",,,780 POST AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4429081,Sedan,Sedan,Sedan,, +06/19/2021,13:15,,,,,,SHORE PARKWAY,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429219,Sedan,Sedan,,, +06/19/2021,13:00,,,40.702045,-73.9156,"(40.702045, -73.9156)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428662,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,15:30,QUEENS,11361,40.766857,-73.76269,"(40.766857, -73.76269)",221 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428711,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,22:08,BROOKLYN,11237,40.711224,-73.92859,"(40.711224, -73.92859)",SCHOLES STREET,VARICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428823,Sedan,Tractor Truck Diesel,,, +06/18/2021,13:38,MANHATTAN,10035,40.79821,-73.93984,"(40.79821, -73.93984)",,,2130 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429429,Ambulance,Van,,, +06/18/2021,16:30,QUEENS,11366,40.725822,-73.79162,"(40.725822, -73.79162)",,,176-57 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,23:30,BROOKLYN,11208,40.68528,-73.87735,"(40.68528, -73.87735)",,,88 RICHMOND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429044,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,5:45,QUEENS,11372,40.75543,-73.87776,"(40.75543, -73.87776)",,,33-45 90 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429436,Sedan,,,, +06/19/2021,10:30,BROOKLYN,11209,40.623383,-74.02221,"(40.623383, -74.02221)",,,8126 6 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428734,Sedan,,,, +06/17/2021,15:15,MANHATTAN,10010,40.738903,-73.98731,"(40.738903, -73.98731)",EAST 21 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429475,Sedan,Sedan,,, +06/19/2021,11:35,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428778,Sedan,Sedan,,, +06/16/2021,9:10,MANHATTAN,10035,40.80142,-73.93446,"(40.80142, -73.93446)",EAST 123 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429395,Ambulance,Sedan,,, +06/19/2021,16:00,BROOKLYN,11238,40.684666,-73.96404,"(40.684666, -73.96404)",GATES AVENUE,SAINT JAMES PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428680,Sedan,Sedan,,, +06/19/2021,16:40,BRONX,10451,40.82212,-73.911575,"(40.82212, -73.911575)",,,3114 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4429297,Station Wagon/Sport Utility Vehicle,MOTORCYCLE,,, +06/19/2021,16:44,BROOKLYN,11231,40.66947,-74.00958,"(40.66947, -74.00958)",,,700 COLUMBIA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429104,TL,,,, +06/19/2021,23:50,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4429166,Sedan,Sedan,Tractor Truck Gasoline,Sedan, +06/18/2021,8:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429486,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,9:53,MANHATTAN,10036,40.761158,-73.99512,"(40.761158, -73.99512)",,,504 WEST 44 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4429687,Bus,Sedan,,, +06/19/2021,15:00,BRONX,10454,40.80623,-73.91206,"(40.80623, -73.91206)",EAST 140 STREET,JACKSON AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4429285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,15:14,BRONX,10472,40.82705,-73.87104,"(40.82705, -73.87104)",WATSON AVENUE,FTELEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429387,Pick-up Truck,Bike,,, +06/19/2021,17:38,BROOKLYN,11233,40.681587,-73.91905,"(40.681587, -73.91905)",,,334 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428876,Box Truck,Sedan,,, +06/18/2021,16:12,,,40.823566,-73.93768,"(40.823566, -73.93768)",WEST 148 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4429358,Sedan,Sedan,,, +06/19/2021,14:00,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4428915,Sedan,Bike,,, +06/18/2021,14:25,STATEN ISLAND,10304,,,,NARROWS ROAD SOUTH,TARGEE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429542,Sedan,Taxi,,, +06/19/2021,20:00,QUEENS,11413,,,,225 STREET,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428790,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,9:30,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4429555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,23:10,,,40.648254,-73.971405,"(40.648254, -73.971405)",CATON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429027,,,,, +06/17/2021,12:35,,,40.58153,-73.96195,"(40.58153, -73.96195)",BRIGHTON 7 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429422,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,4:40,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4429326,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/13/2021,20:03,,,40.85394,-73.91468,"(40.85394, -73.91468)",WEST BURNSIDE AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Speed,,,,4429440,Sedan,Motorcycle,,, +06/19/2021,17:28,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",WALTON AVENUE,EAST 149 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4428957,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/19/2021,5:55,BRONX,10457,40.83933,-73.89904,"(40.83933, -73.89904)",FULTON AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4428809,Sedan,Sedan,Sedan,, +06/19/2021,16:43,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428960,Sedan,,,, +06/19/2021,10:52,BROOKLYN,11212,40.657063,-73.90751,"(40.657063, -73.90751)",,,945 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428906,Sedan,,,, +06/19/2021,22:13,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4429366,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,2:20,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",EAST 51 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428552,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,17:40,QUEENS,11416,40.684456,-73.85966,"(40.684456, -73.85966)",ROCKAWAY BOULEVARD,81 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4429400,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,14:12,BROOKLYN,11206,40.69474,-73.93741,"(40.69474, -73.93741)",,,82 LEWIS AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429467,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/19/2021,2:55,,,40.653267,-73.93927,"(40.653267, -73.93927)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4428773,MACK TRUCK,Sedan,,, +06/19/2021,15:40,,,40.768036,-73.905266,"(40.768036, -73.905266)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429262,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,19:00,BROOKLYN,11233,40.680267,-73.93454,"(40.680267, -73.93454)",,,438 LEWIS AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429462,Sedan,Sedan,,, +06/19/2021,10:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429439,Sedan,Sedan,,, +06/17/2021,15:20,MANHATTAN,10039,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429352,Box Truck,Sedan,,, +06/19/2021,2:58,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428582,Sedan,Sedan,,, +06/16/2021,8:22,MANHATTAN,10011,40.74769,-74.00417,"(40.74769, -74.00417)",WEST 23 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429374,Bus,Ambulance,,, +06/19/2021,14:45,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",225 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4428738,Sedan,,,, +06/19/2021,3:15,MANHATTAN,10006,40.70983,-74.01468,"(40.70983, -74.01468)",WEST STREET,ALBANY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429691,Taxi,,,, +06/17/2021,7:20,QUEENS,11418,40.706985,-73.83782,"(40.706985, -73.83782)",PARK LANE SOUTH,GROSVENOR ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4429405,Sedan,Sedan,Sedan,, +06/19/2021,22:45,,,40.67399,-73.73506,"(40.67399, -73.73506)",LAURELTON PARKWAY,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428793,Sedan,,,, +06/19/2021,17:55,QUEENS,11691,40.596085,-73.76216,"(40.596085, -73.76216)",SEAGIRT BOULEVARD,BEACH 29 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429250,AMBULANCE,,,, +06/16/2021,17:34,MANHATTAN,10013,40.726437,-74.00566,"(40.726437, -74.00566)",VARICK STREET,VANDAM STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4429693,Motorcycle,,,, +06/19/2021,13:12,,,40.853474,-73.906456,"(40.853474, -73.906456)",EAST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429318,Sedan,,,, +06/17/2021,16:00,QUEENS,11414,40.667324,-73.852554,"(40.667324, -73.852554)",,,151-32 82 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429643,Sedan,Sedan,,, +06/19/2021,6:29,BROOKLYN,11233,40.678574,-73.916306,"(40.678574, -73.916306)",SARATOGA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428865,Sedan,,,, +06/18/2021,17:20,,,40.705746,-73.8097,"(40.705746, -73.8097)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429512,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,17:30,BROOKLYN,11225,40.663483,-73.9627,"(40.663483, -73.9627)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429455,Sedan,Pick-up Truck,,, +06/17/2021,15:10,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429394,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,16:30,,,40.563915,-74.11637,"(40.563915, -74.11637)",TYSENS LANE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429543,Sedan,Sedan,,, +06/19/2021,2:07,BRONX,10454,40.807213,-73.92841,"(40.807213, -73.92841)",,,26 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428676,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,12:20,,,40.62707,-74.01865,"(40.62707, -74.01865)",7 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4428699,Sedan,Sedan,,, +06/19/2021,22:00,BRONX,10466,40.90049,-73.84479,"(40.90049, -73.84479)",,,4430 WILDER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429085,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,23:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4429446,Sedan,Sedan,,, +06/19/2021,23:00,BROOKLYN,11206,40.71074,-73.94548,"(40.71074, -73.94548)",MAUJER STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428753,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,11:40,QUEENS,11420,40.68329,-73.81153,"(40.68329, -73.81153)",131 STREET,111 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unsafe Speed,,,,4429223,Sedan,Sedan,,, +06/19/2021,14:43,,,40.829407,-73.87307,"(40.829407, -73.87307)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429410,Sedan,Taxi,,, +06/19/2021,7:05,QUEENS,11358,40.7673,-73.794556,"(40.7673, -73.794556)",171 STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4428663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,16:10,BROOKLYN,11213,40.677483,-73.93033,"(40.677483, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428981,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,12:51,BROOKLYN,11231,40.67632,-74.01142,"(40.67632, -74.01142)",WOLCOTT STREET,RICHARDS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429105,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,3:50,,,40.85543,-73.855354,"(40.85543, -73.855354)",LYDIG AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4428685,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,22:30,BRONX,10456,40.833416,-73.90709,"(40.833416, -73.90709)",PARK AVENUE,EAST 169 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428820,Sedan,,,, +06/13/2021,10:25,,,40.5953,-74.1619,"(40.5953, -74.1619)",RICHMOND AVENUE,ROCKLAND AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4429347,Sedan,,,, +06/19/2021,16:36,STATEN ISLAND,10301,40.63916,-74.0874,"(40.63916, -74.0874)",JERSEY STREET,BENZIGER AVENUE,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4429383,Sedan,Bike,,, +06/19/2021,13:32,,,40.765865,-73.95742,"(40.765865, -73.95742)",EAST 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429236,Dump,Ambulance,,, +06/15/2021,19:20,BROOKLYN,11212,40.664707,-73.92824,"(40.664707, -73.92824)",EAST 94 STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429612,Sedan,,,, +06/19/2021,11:00,QUEENS,11429,40.7135,-73.7518,"(40.7135, -73.7518)",99 AVENUE,208 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428747,Sedan,,,, +06/19/2021,5:30,,,40.764297,-73.90304,"(40.764297, -73.90304)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428851,Sedan,Sedan,,, +06/19/2021,11:30,,,40.589493,-74.149734,"(40.589493, -74.149734)",ROCKLAND AVENUE,MCDIVITT AVENUE,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4429502,Sedan,,,, +06/19/2021,21:21,BROOKLYN,11236,40.640373,-73.89702,"(40.640373, -73.89702)",ROCKAWAY PARKWAY,AVENUE K,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429491,Taxi,,,, +06/17/2021,10:50,QUEENS,11372,40.750137,-73.8806,"(40.750137, -73.8806)",86 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4429430,Sedan,,,, +06/12/2021,19:40,,,40.84645,-73.91439,"(40.84645, -73.91439)",DAVIDSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429340,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,2:15,,,40.69706,-73.91933,"(40.69706, -73.91933)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429477,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,10:40,,,40.72626,-73.95522,"(40.72626, -73.95522)",MESEROLE AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429079,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/19/2021,6:27,,,40.67526,-73.88203,"(40.67526, -73.88203)",ESSEX STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4428617,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,4:37,BRONX,10452,40.832623,-73.92537,"(40.832623, -73.92537)",JEROME AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429212,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,1:19,BROOKLYN,11220,40.642303,-74.01324,"(40.642303, -74.01324)",55 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428729,Taxi,Sedan,,, +06/16/2021,6:45,,,40.821117,-73.957466,"(40.821117, -73.957466)",RIVERSIDE DRIVE,,,2,0,0,0,1,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4429582,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,16:18,,,40.87137,-73.836586,"(40.87137, -73.836586)",ADEE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429115,Sedan,Sedan,,, +06/19/2021,22:42,MANHATTAN,10010,40.739506,-73.98476,"(40.739506, -73.98476)",LEXINGTON AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429006,Pick-up Truck,Sedan,,, +06/19/2021,20:00,MANHATTAN,10032,40.83196,-73.9439,"(40.83196, -73.9439)",,,525 WEST 155 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4428887,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,17:00,,,40.725975,-73.7575,"(40.725975, -73.7575)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429499,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/18/2021,21:50,BRONX,10460,40.841087,-73.86447,"(40.841087, -73.86447)",WHITE PLAINS ROAD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429390,Sedan,Sedan,,, +06/19/2021,18:45,MANHATTAN,10002,40.72048,-73.98904,"(40.72048, -73.98904)",,,145 ORCHARD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4428922,Sedan,Sedan,Sedan,, +06/18/2021,7:35,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429341,Bus,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,23:17,MANHATTAN,10013,40.72084,-74.00066,"(40.72084, -74.00066)",BROADWAY,GRAND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4429528,Bike,,,, +06/19/2021,16:15,BROOKLYN,11236,40.646175,-73.920105,"(40.646175, -73.920105)",RALPH AVENUE,COVENTRY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428777,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,23:10,QUEENS,11420,40.677006,-73.81261,"(40.677006, -73.81261)",126 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429225,Sedan,,,, +06/19/2021,12:30,QUEENS,11368,40.744072,-73.86769,"(40.744072, -73.86769)",JUNCTION BOULEVARD,46 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4429291,Minibike,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,18:00,BROOKLYN,11206,40.7058,-73.94391,"(40.7058, -73.94391)",,,124 BOERUM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4428829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/19/2021,17:30,BROOKLYN,11214,40.598515,-74.00562,"(40.598515, -74.00562)",,,1445 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4429124,Sedan,Sedan,,, +06/19/2021,7:00,BROOKLYN,11234,40.620186,-73.92506,"(40.620186, -73.92506)",,,1611 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428637,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,13:20,BROOKLYN,11217,40.68532,-73.98071,"(40.68532, -73.98071)",ATLANTIC AVENUE,3 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4428946,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,3:32,,,40.840927,-73.912704,"(40.840927, -73.912704)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4428702,Sedan,Sedan,,, +06/19/2021,12:10,QUEENS,11368,40.747913,-73.86551,"(40.747913, -73.86551)",,,99-07 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429667,Sedan,Sedan,,, +06/19/2021,16:03,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4428961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,18:40,QUEENS,11361,40.76631,-73.77341,"(40.76631, -73.77341)",213 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,17:00,MANHATTAN,10034,40.87225,-73.919464,"(40.87225, -73.919464)",WEST 215 STREET,INDIAN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428937,Sedan,,,, +06/19/2021,16:17,QUEENS,11419,40.69145,-73.81261,"(40.69145, -73.81261)",,,134-05 LIBERTY AVENUE,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4429535,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,0:20,,,40.81401,-73.94466,"(40.81401, -73.94466)",7 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4429357,Sedan,Sedan,,, +06/19/2021,17:50,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",PITKIN AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428872,Sedan,E-Bike,,, +06/14/2021,10:54,MANHATTAN,10018,40.75806,-73.99768,"(40.75806, -73.99768)",,,528 WEST 39 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4429367,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,0:10,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",EAST 51 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4428553,E-Bike,Sedan,,, +06/18/2021,19:08,BRONX,10472,40.82829,-73.87528,"(40.82829, -73.87528)",,,1168 STRATFORD AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4429401,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,0:50,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429609,Sedan,Sedan,,, +06/19/2021,18:50,,,40.639256,-73.968796,"(40.639256, -73.968796)",CORTELYOU ROAD,CONEY ISLAND AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429258,Taxi,Bike,,, +06/16/2021,7:53,,,40.677483,-73.93033,"(40.677483, -73.93033)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429466,Sedan,Sedan,,, +06/17/2021,18:00,BRONX,10470,40.89802,-73.86958,"(40.89802, -73.86958)",,,226 EAST 236 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429450,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,14:00,BROOKLYN,11231,40.684387,-74.00302,"(40.684387, -74.00302)",COLUMBIA STREET,UNION STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,16:32,BROOKLYN,11236,40.64312,-73.90921,"(40.64312, -73.90921)",,,1056 REMSEN AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4428684,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,11:27,BRONX,10460,40.842464,-73.86664,"(40.842464, -73.86664)",,,623 MEAD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428687,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,12:06,BROOKLYN,11203,40.6491,-73.94649,"(40.6491, -73.94649)",NEW YORK AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429032,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,9:10,MANHATTAN,10035,40.798393,-73.939,"(40.798393, -73.939)",,,212 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429399,Sedan,,,, +06/19/2021,18:28,MANHATTAN,10022,40.757225,-73.96636,"(40.757225, -73.96636)",,,300 EAST 54 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4428710,Taxi,,,, +06/19/2021,4:50,BRONX,10466,40.889126,-73.843994,"(40.889126, -73.843994)",,,1179 EAST 233 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429096,Sedan,Sedan,,, +06/18/2021,14:30,,,40.60309,-73.99262,"(40.60309, -73.99262)",84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429415,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,20:10,,,40.761406,-73.80385,"(40.761406, -73.80385)",162 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428746,Bike,Sedan,,, +06/19/2021,13:20,BRONX,10458,40.866383,-73.88515,"(40.866383, -73.88515)",WEBSTER AVENUE,OLIVER PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429182,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,13:50,BROOKLYN,11225,40.663483,-73.9627,"(40.663483, -73.9627)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429444,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/19/2021,3:10,QUEENS,11434,40.67667,-73.790665,"(40.67667, -73.790665)",122 AVENUE,SUTPHIN BOULEVARD,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,Unspecified,,,4428649,Sedan,Sedan,Sedan,, +06/19/2021,16:04,BROOKLYN,11249,40.716385,-73.96143,"(40.716385, -73.96143)",NORTH 3 STREET,BERRY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,18:03,,,40.763485,-73.98895,"(40.763485, -73.98895)",9 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429686,Bike,Sedan,,, +06/19/2021,8:00,,,40.659264,-74.002396,"(40.659264, -74.002396)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429149,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/19/2021,21:00,QUEENS,11414,40.660503,-73.8306,"(40.660503, -73.8306)",159 AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429222,Sedan,,,, +06/19/2021,11:50,QUEENS,11354,40.773773,-73.824684,"(40.773773, -73.824684)",PARSONS BOULEVARD,27 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428664,Sedan,,,, +06/19/2021,15:44,,,40.757637,-73.96342,"(40.757637, -73.96342)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4428709,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,16:51,,,40.80256,-73.943,"(40.80256, -73.943)",MADISON AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429431,Taxi,Bike,,, +06/19/2021,12:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429438,Sedan,Sedan,,, +06/19/2021,23:00,BROOKLYN,11212,40.66386,-73.91092,"(40.66386, -73.91092)",,,231 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428908,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,13:04,MANHATTAN,10035,40.802498,-73.94092,"(40.802498, -73.94092)",EAST 121 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4429425,Sedan,Sedan,,, +06/19/2021,16:55,,,40.76736,-73.9371,"(40.76736, -73.9371)",10 STREET,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429257,Sedan,Minibike,,, +06/19/2021,9:45,MANHATTAN,10016,40.748436,-73.984566,"(40.748436, -73.984566)",5 AVENUE,WEST 34 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429393,Taxi,,,, +06/19/2021,14:14,MANHATTAN,10002,40.71142,-73.99608,"(40.71142, -73.99608)",,,10 MONROE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428672,Sedan,Sedan,,, +06/19/2021,3:15,,,40.810993,-73.95429,"(40.810993, -73.95429)",HANCOCK PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4428758,Sedan,,,, +06/17/2021,19:00,MANHATTAN,10039,40.824196,-73.94224,"(40.824196, -73.94224)",,,85 BRADHURST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428351,Sedan,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle, +06/19/2021,4:00,,,,,,SHORE PARKWAY,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428635,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,2:00,MANHATTAN,10036,40.7571,-73.98246,"(40.7571, -73.98246)",,,1170 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429695,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,11:06,BROOKLYN,11220,40.642776,-74.02003,"(40.642776, -74.02003)",59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4428730,Sedan,Sedan,,, +06/14/2021,18:54,MANHATTAN,10035,40.801575,-73.93438,"(40.801575, -73.93438)",,,2401 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429468,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,15:40,,,40.776104,-73.97975,"(40.776104, -73.97975)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429015,Sedan,Box Truck,,, +06/19/2021,19:30,BROOKLYN,11228,40.610523,-74.00806,"(40.610523, -74.00806)",86 STREET,BAY 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428719,Station Wagon/Sport Utility Vehicle,fire truck,,, +06/19/2021,23:20,,,40.707264,-73.773476,"(40.707264, -73.773476)",HENDERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4429514,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/26/2021,11:25,MANHATTAN,10029,40.786358,-73.94419,"(40.786358, -73.94419)",,,342 EAST 100 STREET,1,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,,,,4429355,Sedan,E-Scooter,,, +06/19/2021,11:00,BRONX,10463,40.873676,-73.90815,"(40.873676, -73.90815)",,,50 WEST 225 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429187,Sedan,PK,,, +06/18/2021,14:30,,,40.56763,-74.11263,"(40.56763, -74.11263)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429544,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,9:05,BROOKLYN,11226,40.644722,-73.96122,"(40.644722, -73.96122)",BEVERLEY ROAD,EAST 19 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4428800,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,5:05,,,40.614925,-74.11699,"(40.614925, -74.11699)",SLOSSON AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4429083,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,10:00,BROOKLYN,11225,40.663956,-73.95032,"(40.663956, -73.95032)",,,357 EMPIRE BOULEVARD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4429122,E-Bike,,,, +06/19/2021,1:58,BROOKLYN,11212,40.65883,-73.91245,"(40.65883, -73.91245)",,,80 NEWPORT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4428899,Sedan,Sedan,Sedan,Sedan, +06/19/2021,20:30,STATEN ISLAND,10304,40.618916,-74.08369,"(40.618916, -74.08369)",OSGOOD AVENUE,GORDON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429312,Sedan,,,, +06/18/2021,10:50,BRONX,10473,,,,st Lawrence avenue,randall avenue,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,16:31,BROOKLYN,11203,40.637455,-73.92886,"(40.637455, -73.92886)",FARRAGUT ROAD,UTICA AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4428781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,15:19,MANHATTAN,10019,40.763454,-73.985275,"(40.763454, -73.985275)",,,869 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429688,Sedan,,,, +06/14/2021,23:10,MANHATTAN,10018,40.75649,-73.997765,"(40.75649, -73.997765)",10 AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429348,Ambulance,Sedan,,, +06/17/2021,18:00,MANHATTAN,10000,40.781143,-73.961754,"(40.781143, -73.961754)",,,27 TRANSVERSE ROAD NUMBER THREE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4429621,Van,Bus,,, +08/23/2022,18:33,BROOKLYN,11226,40.652462,-73.95334,"(40.652462, -73.95334)",,,155 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4562256,Motorcycle,,,, +06/19/2021,14:02,BROOKLYN,11203,40.64124,-73.943726,"(40.64124, -73.943726)",AVENUE D,EAST 35 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4428776,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,2:54,,,40.688553,-73.91245,"(40.688553, -73.91245)",HALSEY STREET,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4428583,E-Scooter,Sedan,,, +06/15/2021,19:42,MANHATTAN,10011,40.743866,-73.99952,"(40.743866, -73.99952)",,,212 8 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429368,Bike,Sedan,,, +06/17/2021,15:40,,,40.620438,-74.1672,"(40.620438, -74.1672)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4429483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,15:47,BROOKLYN,11209,40.625652,-74.02422,"(40.625652, -74.02422)",,,8004 5 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4428700,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/19/2021,11:53,BROOKLYN,11206,40.69862,-73.940544,"(40.69862, -73.940544)",,,857 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428852,Bus,,,, +06/19/2021,17:30,BROOKLYN,11217,40.68251,-73.976326,"(40.68251, -73.976326)",FLATBUSH AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429456,Station Wagon/Sport Utility Vehicle,Van,,, +06/19/2021,3:15,MANHATTAN,10001,,,,WEST 30 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429406,Box Truck,Sedan,,, +06/19/2021,19:15,,,,,,GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429277,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,21:24,STATEN ISLAND,10305,,,,dea court,mason ave,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429539,Sedan,,,, +06/18/2021,10:00,MANHATTAN,10002,40.72081,-73.99076,"(40.72081, -73.99076)",,,52 RIVINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429657,Sedan,,,, +06/19/2021,0:00,BROOKLYN,11233,40.68191,-73.935974,"(40.68191, -73.935974)",,,261 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428866,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,1:25,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429488,Sedan,Box Truck,,, +06/19/2021,17:50,,,40.67983,-73.9583,"(40.67983, -73.9583)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4429001,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,6:00,BRONX,10455,40.81846,-73.91489,"(40.81846, -73.91489)",EAST 153 STREET,ELTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429292,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,7:30,BROOKLYN,11211,40.709755,-73.95707,"(40.709755, -73.95707)",MARCY AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4428814,Motorcycle,Sedan,Sedan,, +06/19/2021,20:00,BROOKLYN,11207,40.666416,-73.88297,"(40.666416, -73.88297)",,,917 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428748,Sedan,,,, +06/18/2021,20:11,,,40.817173,-73.94606,"(40.817173, -73.94606)",WEST 136 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4429362,Sedan,Bike,,, +06/18/2021,13:20,,,40.754616,-73.997116,"(40.754616, -73.997116)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429381,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,5:12,BRONX,10467,40.880108,-73.86133,"(40.880108, -73.86133)",,,3674 BARNES AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4429071,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/19/2021,19:37,,,40.776237,-73.95587,"(40.776237, -73.95587)",EAST 82 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429237,Sedan,Bike,,, +06/19/2021,0:30,MANHATTAN,10032,40.841076,-73.93977,"(40.841076, -73.93977)",WEST 168 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4428886,Taxi,Bike,,, +06/18/2021,15:00,QUEENS,11416,40.68369,-73.85657,"(40.68369, -73.85657)",,,83-26 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4429503,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,7:28,,,40.672226,-73.94472,"(40.672226, -73.94472)",STERLING PLACE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4428953,Sedan,Sedan,,, +06/17/2021,19:30,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429414,Sedan,,,, +06/19/2021,1:30,BRONX,10453,40.846893,-73.92055,"(40.846893, -73.92055)",WEST 174 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429338,Sedan,Sedan,,, +06/13/2021,4:56,BRONX,10463,40.873394,-73.90671,"(40.873394, -73.90671)",EXTERIOR STREET,WEST 225 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4429460,Sedan,,,, +06/19/2021,18:52,BRONX,10454,40.80265,-73.91351,"(40.80265, -73.91351)",,,749 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428965,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,20:40,BROOKLYN,11215,40.668823,-73.97333,"(40.668823, -73.97333)",PROSPECT PARK WEST,2 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429452,Pick-up Truck,Sedan,,, +06/19/2021,17:57,,,40.69143,-73.78871,"(40.69143, -73.78871)",UNION HALL STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429342,Refrigerated Van,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,0:45,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428554,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,18:37,,,40.82681,-73.85361,"(40.82681, -73.85361)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,11:40,MANHATTAN,10011,,,,WEST 23 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4429364,Motorcycle,Dump,,, +06/19/2021,21:53,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4428780,Sedan,,,, +06/19/2021,6:35,QUEENS,11379,40.712227,-73.88436,"(40.712227, -73.88436)",METROPOLITAN AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429108,Sedan,Sedan,,, +06/19/2021,0:20,,,40.6131,-73.97858,"(40.6131, -73.97858)",23 AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,Unspecified,Unspecified,,4428690,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/19/2021,20:10,BRONX,10466,40.881264,-73.83875,"(40.881264, -73.83875)",BAYCHESTER AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,19:33,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,13:30,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",9 AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429279,Sedan,Sedan,,, +06/19/2021,23:55,BROOKLYN,11212,40.66727,-73.91975,"(40.66727, -73.91975)",,,606 HOWARD AVENUE,0,0,0,0,0,0,0,0,Tinted Windows,,,,,4428896,Sedan,,,, +06/06/2021,14:15,QUEENS,11423,40.72548,-73.76559,"(40.72548, -73.76559)",FRANCIS LEWIS BOULEVARD,MCLAUGHLIN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429534,Sedan,Sedan,,, +06/19/2021,10:03,,,40.641747,-74.013824,"(40.641747, -74.013824)",5 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4428921,PICK UP,Bike,,, +06/18/2021,12:30,BROOKLYN,11210,40.62929,-73.94611,"(40.62929, -73.94611)",,,3112 AVENUE I,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,Unspecified,,,4429581,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/19/2021,1:05,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,,,4429227,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +06/19/2021,15:08,BROOKLYN,11205,40.693405,-73.96629,"(40.693405, -73.96629)",,,475 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429017,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,18:00,BROOKLYN,11236,40.646626,-73.90399,"(40.646626, -73.90399)",FARRAGUT ROAD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428714,Sedan,Sedan,,, +06/19/2021,3:35,,,40.778614,-73.83977,"(40.778614, -73.83977)",23 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428744,Sedan,,,, +06/19/2021,16:00,QUEENS,11416,40.684258,-73.84604,"(40.684258, -73.84604)",WOODHAVEN BOULEVARD,101 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429443,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,7:26,,,40.701763,-73.9276,"(40.701763, -73.9276)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428660,Sedan,,,, +06/18/2021,13:22,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429427,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,21:25,BROOKLYN,11207,40.675495,-73.8997,"(40.675495, -73.8997)",ATLANTIC AVENUE,ALABAMA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4429035,Sedan,Taxi,,, +06/19/2021,10:40,,,40.584522,-73.949,"(40.584522, -73.949)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428827,Box Truck,,,, +06/18/2021,19:00,QUEENS,11365,40.73283,-73.79291,"(40.73283, -73.79291)",69 AVENUE,178 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429498,Sedan,,,, +06/17/2021,17:35,MANHATTAN,10001,40.749054,-73.99576,"(40.749054, -73.99576)",8 AVENUE,WEST 29 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429397,Box Truck,Sedan,,, +06/12/2021,12:00,BROOKLYN,11221,40.685184,-73.93551,"(40.685184, -73.93551)",,,314 LEWIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429465,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,14:47,BROOKLYN,11207,40.660656,-73.8809,"(40.660656, -73.8809)",,,765 STANLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428725,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,21:56,QUEENS,11101,40.745174,-73.93726,"(40.745174, -73.93726)",30 STREET,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4428750,Sedan,Sedan,Sedan,, +06/19/2021,16:57,QUEENS,11691,40.59892,-73.7637,"(40.59892, -73.7637)",,,29-49 FAR ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4429240,Sedan,,,, +06/19/2021,9:40,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429151,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,4:25,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4429195,Sedan,Sedan,,, +06/15/2021,8:01,BROOKLYN,11233,40.674946,-73.9194,"(40.674946, -73.9194)",,,369 HOWARD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429506,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,7:20,QUEENS,11104,40.74914,-73.91561,"(40.74914, -73.91561)",39 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4428647,Sedan,E-Scooter,,, +06/14/2021,2:07,,,40.88809,-73.89254,"(40.88809, -73.89254)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429666,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,8:38,MANHATTAN,10040,40.86155,-73.92472,"(40.86155, -73.92472)",DYCKMAN STREET,NAGLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4428935,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,16:44,QUEENS,11435,40.692165,-73.80638,"(40.692165, -73.80638)",INWOOD STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429523,Sedan,Sedan,,, +06/09/2021,17:49,BROOKLYN,11201,40.695908,-73.98322,"(40.695908, -73.98322)",TILLARY STREET,GOLD STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429589,Pick-up Truck,,,, +06/19/2021,14:00,,,40.84698,-73.91065,"(40.84698, -73.91065)",EAST 175 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428683,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,14:25,QUEENS,11435,40.694546,-73.80212,"(40.694546, -73.80212)",SUTPHIN BOULEVARD,SOUTH ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,5:45,BRONX,10470,40.90022,-73.8535,"(40.90022, -73.8535)",,,687 EAST 239 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429070,Sedan,Sedan,,, +06/19/2021,7:39,,,40.8499,-73.90919,"(40.8499, -73.90919)",WALTON AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4428623,Sedan,Sedan,,, +06/19/2021,23:00,QUEENS,11358,40.76071,-73.79072,"(40.76071, -73.79072)",,,40-35 191 STREET,0,0,0,0,0,0,0,0,Steering Failure,Other Vehicular,,,,4428762,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,23:56,,,,,,20 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429144,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,22:50,MANHATTAN,10019,40.766533,-73.9783,"(40.766533, -73.9783)",,,180 CENTRAL PARK SOUTH,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429705,Sedan,Bike,,, +06/19/2021,19:24,BROOKLYN,11237,40.69835,-73.91103,"(40.69835, -73.91103)",RIDGEWOOD PLACE,WOODBINE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4429469,Sedan,,,, +06/19/2021,1:04,BROOKLYN,11238,40.687492,-73.96262,"(40.687492, -73.96262)",,,293 GRAND AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4429009,E-Bike,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,, +06/19/2021,17:00,,,40.85162,-73.82653,"(40.85162, -73.82653)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,,4428708,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/17/2021,23:53,MANHATTAN,10018,40.75742,-73.99993,"(40.75742, -73.99993)",,,557 WEST 37 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429378,Station Wagon/Sport Utility Vehicle,Van Camper,,, +06/17/2021,14:10,,,40.58789,-74.15319,"(40.58789, -74.15319)",TRAVIS AVENUE,KELLY BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4429350,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,10:55,,,40.756058,-73.94283,"(40.756058, -73.94283)",12 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428853,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,12:04,BRONX,10460,40.83639,-73.88485,"(40.83639, -73.88485)",,,985 EAST 174 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429623,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,16:45,BROOKLYN,11230,40.632088,-73.96891,"(40.632088, -73.96891)",,,302 PARKVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428801,Sedan,,,, +06/19/2021,0:07,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,40 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4429256,Motorcycle,,,, +06/19/2021,20:25,,,40.85208,-73.82685,"(40.85208, -73.82685)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429308,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,17:35,,,40.575924,-73.99114,"(40.575924, -73.99114)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Other Lighting Defects,Following Too Closely,,,,4428868,Sedan,Sedan,,, +06/17/2021,6:19,BRONX,10463,40.87898,-73.909035,"(40.87898, -73.909035)",WEST 230 STREET,CORLEAR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429662,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,13:05,,,40.61898,-74.163895,"(40.61898, -74.163895)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429484,Tow Truck / Wrecker,Sedan,,, +06/19/2021,10:00,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4428701,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,13:30,,,40.685093,-73.8596,"(40.685093, -73.8596)",81 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,14:00,MANHATTAN,10012,40.724236,-73.997795,"(40.724236, -73.997795)",PRINCE STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428669,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,13:00,MANHATTAN,10001,40.749146,-74.00368,"(40.749146, -74.00368)",,,500 WEST 25 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429392,Sedan,,,, +06/19/2021,19:36,,,40.883476,-73.868256,"(40.883476, -73.868256)",BRONX RIVER PARKWAY,,,9,0,0,0,0,0,9,0,Driver Inexperience,Unspecified,Unspecified,,,4429082,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/19/2021,14:00,,,40.577168,-74.11804,"(40.577168, -74.11804)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4429545,Sedan,Sedan,,, +06/17/2021,11:50,,,40.73549,-73.859634,"(40.73549, -73.859634)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428118,Convertible,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,20:25,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/19/2021,8:30,,,40.672638,-73.758575,"(40.672638, -73.758575)",SOUTHGATE PLAZA,140 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428732,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,20:10,BROOKLYN,11212,40.66687,-73.90814,"(40.66687, -73.90814)",,,251 OSBORN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428900,Sedan,Sedan,,, +06/19/2021,16:23,,,40.843204,-73.91196,"(40.843204, -73.91196)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428989,Taxi,Sedan,,, +06/19/2021,9:33,QUEENS,11356,40.788692,-73.85061,"(40.788692, -73.85061)",10 AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Animals Action,,,,,4428665,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,5:40,BROOKLYN,11232,40.64974,-73.998314,"(40.64974, -73.998314)",37 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428600,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,5:40,BROOKLYN,11203,40.650227,-73.946594,"(40.650227, -73.946594)",,,943 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4428774,Sedan,Sedan,Sedan,, +05/29/2021,0:39,,,40.72475,-73.773155,"(40.72475, -73.773155)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4429437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,20:40,BROOKLYN,11212,40.66157,-73.91548,"(40.66157, -73.91548)",LIVONIA AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428909,Sedan,Sedan,,, +06/19/2021,20:15,QUEENS,11420,40.682747,-73.812355,"(40.682747, -73.812355)",,,111-16 130 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428735,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,15:22,,,40.761036,-73.98702,"(40.761036, -73.98702)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429689,Sedan,Sedan,,, +06/17/2021,13:00,MANHATTAN,10030,40.817844,-73.94185,"(40.817844, -73.94185)",WEST 139 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4429354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/19/2021,23:00,,,40.81977,-73.93673,"(40.81977, -73.93673)",WEST 144 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429370,Sedan,,,, +06/19/2021,18:55,,,40.59626,-73.76773,"(40.59626, -73.76773)",BEACH CHANNEL DRIVE,BEACH 35 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429264,Sedan,Sedan,,, +06/19/2021,5:44,BRONX,10472,40.830124,-73.86442,"(40.830124, -73.86442)",,,1832 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,23:45,MANHATTAN,10019,40.76359,-73.98144,"(40.76359, -73.98144)",WEST 54 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429697,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,19:47,STATEN ISLAND,10308,40.56494,-74.15512,"(40.56494, -74.15512)",ARTHUR KILL ROAD,MILES AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,0:48,,,40.79292,-73.94579,"(40.79292, -73.94579)",EAST 107 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4428783,Sedan,Sedan,,, +06/19/2021,17:15,BROOKLYN,11224,40.579197,-73.98195,"(40.579197, -73.98195)",NEPTUNE AVENUE,STILLWELL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4429293,Bike,,,, +06/19/2021,4:29,,,40.79826,-73.92955,"(40.79826, -73.92955)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4429432,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,20:28,BROOKLYN,11208,40.674812,-73.86363,"(40.674812, -73.86363)",,,714 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4429037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,9:20,BROOKLYN,11215,40.670986,-73.984795,"(40.670986, -73.984795)",6 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429453,Sedan,,,, +06/15/2021,7:00,BROOKLYN,11237,40.702953,-73.91706,"(40.702953, -73.91706)",WYCKOFF AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429470,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/19/2021,8:51,BRONX,10469,40.867504,-73.84618,"(40.867504, -73.84618)",SEYMOUR AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428691,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,11:30,BRONX,10470,40.905876,-73.84994,"(40.905876, -73.84994)",EAST 242 STREET,RICHARDSON AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429113,Sedan,Sedan,,, +06/19/2021,7:52,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,19:02,MANHATTAN,10029,40.785625,-73.948204,"(40.785625, -73.948204)",,,219 EAST 97 STREET,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Other Vehicular,Other Vehicular,,,4429020,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/19/2021,13:00,BROOKLYN,11238,40.68603,-73.96643,"(40.68603, -73.96643)",,,388 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4428681,Sedan,,,, +06/19/2021,15:45,BROOKLYN,11208,40.674797,-73.867,"(40.674797, -73.867)",BELMONT AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428726,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,1:40,MANHATTAN,10065,40.760536,-73.95836,"(40.760536, -73.95836)",YORK AVENUE,EAST 62 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429220,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,18:50,QUEENS,11420,40.679253,-73.81871,"(40.679253, -73.81871)",LINDEN BOULEVARD,121 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,6:20,,,40.69939,-73.91938,"(40.69939, -73.91938)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428661,Sedan,,,, +06/19/2021,2:15,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429408,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,20:00,,,,,,WEST SHORE EXPRESSWAY,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429678,Sedan,,,, +06/18/2021,15:57,BROOKLYN,11217,40.67412,-73.972534,"(40.67412, -73.972534)",BERKELEY PLACE,8 AVENUE,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4429458,Bike,,,, +06/19/2021,15:56,,,40.59387,-73.9818,"(40.59387, -73.9818)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429280,Sedan,,,, +06/18/2021,16:42,,,,,,UNION TURNPIKE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429497,Box Truck,Sedan,,, +06/19/2021,14:00,MANHATTAN,10032,40.844597,-73.94247,"(40.844597, -73.94247)",WEST 171 STREET,HAVEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428878,Sedan,,,, +06/14/2021,2:00,MANHATTAN,10001,40.755116,-74.00248,"(40.755116, -74.00248)",11 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429359,Taxi,,,, +06/18/2021,14:55,MANHATTAN,10001,40.749985,-74.00375,"(40.749985, -74.00375)",,,526 WEST 26 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,5:04,QUEENS,11428,40.723198,-73.73358,"(40.723198, -73.73358)",93 AVENUE,222 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4428555,Sedan,Sedan,,, +06/19/2021,13:30,,,40.848114,-73.901474,"(40.848114, -73.901474)",EAST TREMONT AVENUE,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4429441,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,6:05,,,40.7265,-73.75571,"(40.7265, -73.75571)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4428932,Sedan,,,, +06/17/2021,15:08,,,40.81207,-73.93603,"(40.81207, -73.93603)",EAST 135 STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4429533,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,20:30,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",9 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,13:00,QUEENS,11413,40.676224,-73.74357,"(40.676224, -73.74357)",,,134-50 227 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429586,Sedan,Sedan,,, +06/19/2021,15:45,,,40.649982,-73.91183,"(40.649982, -73.91183)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428779,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,4:00,,,40.78029,-73.94386,"(40.78029, -73.94386)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429228,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,3:18,,,40.84503,-73.94508,"(40.84503, -73.94508)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4428826,Sedan,,,, +06/15/2021,18:59,,,40.748596,-73.89532,"(40.748596, -73.89532)",69 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429428,Sedan,,,, +06/17/2021,18:01,BRONX,10453,40.85927,-73.90931,"(40.85927, -73.90931)",,,2220 ANDREWS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429509,Ambulance,Box Truck,,, +06/19/2021,14:59,BROOKLYN,11221,40.68896,-73.93326,"(40.68896, -73.93326)",STUYVESANT AVENUE,QUINCY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428955,Sedan,Sedan,,, +06/19/2021,1:00,,,40.642002,-73.898834,"(40.642002, -73.898834)",AVENUE J,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428713,Sedan,Sedan,,, +06/19/2021,0:00,,,40.851963,-73.83557,"(40.851963, -73.83557)",WILKINSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428643,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,6:25,,,40.67578,-74.0014,"(40.67578, -74.0014)",HAMILTON AVENUE,WEST 9 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4429102,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,7:38,,,40.608307,-73.75517,"(40.608307, -73.75517)",PINSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429242,Sedan,Box Truck,,, +06/19/2021,20:30,QUEENS,11101,40.73955,-73.94531,"(40.73955, -73.94531)",BORDEN AVENUE,25 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4428751,Sedan,Pick-up Truck,,, +06/19/2021,20:00,QUEENS,11413,40.67699,-73.74308,"(40.67699, -73.74308)",227 STREET,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4428740,Sedan,Motorcycle,,, +01/05/2022,6:30,,,,,,GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4492044,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,1:00,,,40.583733,-73.91969,"(40.583733, -73.91969)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4429153,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,8:01,BRONX,10472,,,,,,86 Hugh j grant circle,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4429413,Sedan,,,, +06/11/2021,15:34,BRONX,10471,40.90414,-73.905014,"(40.90414, -73.905014)",WEST 256 STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4429664,Sedan,Sedan,Sedan,, +06/19/2021,0:12,,,40.66451,-73.91723,"(40.66451, -73.91723)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4428895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/18/2021,18:47,BRONX,10462,40.83553,-73.86317,"(40.83553, -73.86317)",WOOD AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429388,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/12/2021,1:08,,,40.607754,-74.13205,"(40.607754, -74.13205)",SOUTH GANNON AVENUE,BRADLEY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429344,Sedan,Sedan,,, +06/18/2021,15:50,,,40.61069,-74.1184,"(40.61069, -74.1184)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429487,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,18:40,QUEENS,11435,40.687508,-73.80666,"(40.687508, -73.80666)",109 AVENUE,139 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4429518,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/19/2021,22:55,MANHATTAN,10002,40.721474,-73.98764,"(40.721474, -73.98764)",,,164 LUDLOW STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4428918,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,20:45,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,AVENUE D,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429574,Sedan,,,, +06/19/2021,21:00,QUEENS,11375,40.71512,-73.83224,"(40.71512, -73.83224)",QUEENS BOULEVARD,78 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4428784,Station Wagon/Sport Utility Vehicle,,,, +05/22/2021,10:39,BROOKLYN,11221,40.68783,-73.93004,"(40.68783, -73.93004)",MONROE STREET,REID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,17:36,,,40.584343,-73.962,"(40.584343, -73.962)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429296,Sedan,Sedan,,, +06/19/2021,8:49,BRONX,10457,40.84219,-73.89411,"(40.84219, -73.89411)",CROTONA PARK NORTH,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4429333,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/19/2021,10:46,BROOKLYN,11207,40.6828,-73.90638,"(40.6828, -73.90638)",BUSHWICK AVENUE,FURMAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4429632,Sedan,Sedan,,, +06/19/2021,9:50,,,40.628246,-74.16043,"(40.628246, -74.16043)",DUBLIN PLACE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429351,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,5:25,,,,,,31 street,31 Street 25 Avenue,,0,0,0,0,0,0,0,0,Unspecified,,,,,4428857,Sedan,,,, +06/19/2021,8:30,BRONX,10459,40.82734,-73.89386,"(40.82734, -73.89386)",EAST 169 STREET,FOX STREET,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4428811,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/04/2022,16:33,BROOKLYN,11249,,,,Kent avenue,South 10 street,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516229,E-Bike,,,, +06/20/2021,4:38,,,,,,145 ST BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4428926,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:15,,,40.57761,-74.11188,"(40.57761, -74.11188)",BANCROFT AVENUE,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4492131,Sedan,,,, +06/20/2021,5:15,,,40.84106,-73.92851,"(40.84106, -73.92851)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4429092,Sedan,Sedan,,, +04/04/2022,7:36,,,40.696033,-73.984535,"(40.696033, -73.984535)",,,FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516294,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,19:00,,,40.8690581,-73.8796321,"(40.8690581, -73.8796321)",RESERVOIR OVAL WEST,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467420,Sedan,,,, +04/04/2022,15:20,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516420,Taxi,Taxi,,, +06/20/2021,0:45,QUEENS,11691,40.597057,-73.759254,"(40.597057, -73.759254)",BEACH 25 STREET,CAMP ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4429281,Sedan,,,, +07/03/2022,17:45,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",WEST 34 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4543535,Bus,,,, +10/07/2021,19:00,,,40.7376736,-74.0017682,"(40.7376736, -74.0017682)",GREENWICH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467494,Sedan,,,, +01/06/2022,14:10,QUEENS,11369,,,,,,108-01 Grand central parkway,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492533,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,3:02,QUEENS,11417,40.679897,-73.85043,"(40.679897, -73.85043)",,,88-14 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4543693,Sedan,Sedan,,, +02/24/2022,9:30,,,0,0,"(0.0, 0.0)",COOLIDGE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4505574,Sedan,Sedan,,, +03/28/2022,19:58,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4514426,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,9:45,QUEENS,11355,40.755745,-73.83076,"(40.755745, -73.83076)",FRAME PLACE,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4514496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,14:38,QUEENS,11416,40.686527,-73.83678,"(40.686527, -73.83678)",,,101-13 106 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4515366,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,17:35,BRONX,10474,40.812603,-73.887924,"(40.812603, -73.887924)",,,621 MANIDA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516130,Sedan,Sedan,,, +04/04/2022,0:00,BROOKLYN,11220,40.633602,-74.01421,"(40.633602, -74.01421)",,,676 65 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4516222,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,5:10,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516922,Box Truck,Sedan,,, +01/06/2022,16:30,,,,,,,,382 DONGAN HILL AVENUE,0,0,0,0,0,0,0,0,,,,,,4492574,,,,, +04/25/2022,8:50,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521918,Sedan,Sedan,,, +04/04/2022,11:12,BRONX,10453,40.850857,-73.90765,"(40.850857, -73.90765)",EAST TREMONT AVENUE,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4516362,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,8:25,BROOKLYN,11226,40.646515,-73.958115,"(40.646515, -73.958115)",FLATBUSH AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516290,Sedan,Sedan,,, +04/01/2022,13:39,,,40.776722,-73.979294,"(40.776722, -73.979294)",COLUMBUS AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4516794,Taxi,Bike,,, +03/28/2022,13:40,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516767,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,0:20,,,40.704063,-73.85444,"(40.704063, -73.85444)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4515877,Sedan,Sedan,,, +04/04/2022,15:34,QUEENS,11432,40.713,-73.78237,"(40.713, -73.78237)",MIDLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516250,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,8:20,QUEENS,11101,0,0,"(0.0, 0.0)",,,34-19 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516468,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,8:29,BRONX,10461,0,0,"(0.0, 0.0)",,,2467 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516313,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/04/2022,23:28,QUEENS,11356,40.781456,-73.84142,"(40.781456, -73.84142)",,,20-07 127 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4516710,Pick-up Truck,,,, +04/04/2022,2:11,QUEENS,11421,40.689243,-73.84501,"(40.689243, -73.84501)",ATLANTIC AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516013,Sedan,,,, +04/04/2022,15:30,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516322,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,16:00,QUEENS,11385,40.698753,-73.89726,"(40.698753, -73.89726)",DECATUR STREET,FOREST AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516792,E-Bike,,,, +03/17/2022,16:46,MANHATTAN,10016,40.748245,-73.976295,"(40.748245, -73.976295)",EAST 38 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516868,Bus,Motorcycle,,, +04/04/2022,10:40,BRONX,10455,40.81259,-73.90251,"(40.81259, -73.90251)",,,596 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4516660,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,7:00,BRONX,10458,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516064,Taxi,,,, +04/04/2022,15:05,QUEENS,11354,40.77452,-73.84824,"(40.77452, -73.84824)",120 STREET,26 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516206,Sedan,,,, +04/04/2022,19:12,MANHATTAN,10032,40.83516,-73.93973,"(40.83516, -73.93973)",WEST 161 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516378,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,12:05,,,40.66406,-73.89869,"(40.66406, -73.89869)",LIVONIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516421,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,18:20,BRONX,10461,40.850693,-73.85051,"(40.850693, -73.85051)",MORRIS PARK AVENUE,YATES AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516488,Moped,Sedan,,, +04/04/2022,17:31,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516539,Taxi,Sedan,,, +04/04/2022,16:30,,,40.703213,-73.90133,"(40.703213, -73.90133)",FOREST AVENUE,68 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516173,Sedan,,,, +04/04/2022,9:38,,,40.628597,-73.9024,"(40.628597, -73.9024)",EAST 80 STREET,AVENUE N,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4516113,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/04/2022,12:00,,,40.89163,-73.85184,"(40.89163, -73.85184)",EAST 233 STREET,BRONXWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,10:38,BRONX,10453,40.853523,-73.90273,"(40.853523, -73.90273)",EAST 180 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516118,Sedan,Sedan,,, +02/11/2022,0:32,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516817,Sedan,Sedan,,, +04/04/2022,8:14,QUEENS,11374,40.73091,-73.86084,"(40.73091, -73.86084)",97 STREET,63 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516201,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,9:50,MANHATTAN,10036,40.764473,-73.99522,"(40.764473, -73.99522)",,,554 WEST 48 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516076,Station Wagon/Sport Utility Vehicle,Van,,, +04/04/2022,12:45,BROOKLYN,11221,40.68603,-73.92967,"(40.68603, -73.92967)",,,205 REID AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516531,Sedan,Sedan,,, +04/04/2022,16:10,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",VANNEST AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4516302,Sedan,,,, +04/04/2022,9:20,BROOKLYN,11207,40.681946,-73.904884,"(40.681946, -73.904884)",BUSHWICK AVENUE,DE SALES PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4516334,Sedan,Sedan,,, +04/04/2022,21:25,BROOKLYN,11224,40.57475,-74.00174,"(40.57475, -74.00174)",MERMAID AVENUE,WEST 36 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516598,Sedan,,,, +04/04/2022,16:36,,,40.624817,-74.142845,"(40.624817, -74.142845)",,,1631 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516431,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/04/2022,8:30,,,40.61018,-74.03548,"(40.61018, -74.03548)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516571,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,6:50,BROOKLYN,11207,40.675755,-73.88738,"(40.675755, -73.88738)",JEROME STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,0:30,BROOKLYN,11231,40.68077,-74.00369,"(40.68077, -74.00369)",,,67 RAPELYE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516192,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,20:20,MANHATTAN,10009,40.725876,-73.97754,"(40.725876, -73.97754)",AVENUE C,EAST 10 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4516265,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/04/2022,12:10,,,40.757797,-73.79494,"(40.757797, -73.79494)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4516207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/04/2022,17:15,BROOKLYN,11211,40.714382,-73.93345,"(40.714382, -73.93345)",VANDERVORT AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516234,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,16:18,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4516833,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,9:00,BROOKLYN,11214,40.608353,-73.99078,"(40.608353, -73.99078)",21 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516125,Sedan,,,, +04/02/2022,18:00,MANHATTAN,10016,40.74063,-73.9789,"(40.74063, -73.9789)",,,486 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516703,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,9:40,QUEENS,11372,40.746845,-73.89144,"(40.746845, -73.89144)",ROOSEVELT AVENUE,74 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4516449,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/04/2022,20:15,,,40.6062,-74.01001,"(40.6062, -74.01001)",BAY 13 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516509,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,8:59,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,65 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516694,Sedan,Sedan,,, +03/30/2022,19:20,QUEENS,11435,40.701054,-73.80888,"(40.701054, -73.80888)",146 STREET,91 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516811,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,18:30,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4516298,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/04/2022,17:20,,,40.753994,-73.94244,"(40.753994, -73.94244)",21 STREET,,,1,0,1,0,0,0,0,0,,,,,,4516774,,,,, +04/04/2022,9:20,MANHATTAN,10002,40.71878,-73.986206,"(40.71878, -73.986206)",,,99 SUFFOLK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516324,Pick-up Truck,,,, +04/04/2022,15:28,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516244,Bus,Sedan,,, +04/04/2022,7:43,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",EAST TREMONT AVENUE,SOUTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4516390,Sedan,E-Bike,,, +03/27/2022,19:29,,,40.823032,-73.95738,"(40.823032, -73.95738)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4516928,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,12:14,STATEN ISLAND,10308,40.544144,-74.15364,"(40.544144, -74.15364)",RAMBLEWOOD AVENUE,SYCAMORE STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4516211,Sedan,,,, +09/24/2021,10:30,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516728,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/04/2022,14:25,BRONX,10467,40.857975,-73.86249,"(40.857975, -73.86249)",,,805 PELHAM PARKWAY NORTH,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4516345,Motorcycle,,,, +01/06/2022,18:35,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BREWER BOULEVARD,BAISLEY BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492663,Sedan,,,, +02/20/2022,16:50,QUEENS,11413,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504313,Sedan,,,, +02/20/2022,2:39,BRONX,10473,40.82256,-73.87101,"(40.82256, -73.87101)",STORY AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504463,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,23:21,BROOKLYN,11207,40.67883,-73.88816,"(40.67883, -73.88816)",FULTON STREET,JEROME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504791,Sedan,,,, +02/20/2022,10:30,BROOKLYN,11230,40.61498,-73.972015,"(40.61498, -73.972015)",,,1463 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504373,Station Wagon/Sport Utility Vehicle,,,, +02/18/2022,20:21,QUEENS,11004,40.73914,-73.709,"(40.73914, -73.709)",83 AVENUE,260 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4504808,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/20/2022,0:15,QUEENS,11413,0,0,"(0.0, 0.0)",,,222-10 134 ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504010,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,9:24,BROOKLYN,11229,40.61115,-73.95141,"(40.61115, -73.95141)",,,2214 AVENUE P,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504882,Sedan,Sedan,,, +02/18/2022,21:30,BRONX,10469,40.881786,-73.84966,"(40.881786, -73.84966)",,,1126 EAST 222 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504728,Sedan,,,, +02/20/2022,21:30,BRONX,10456,40.82194,-73.90743,"(40.82194, -73.90743)",EAST 161 STREET,CAULDWELL AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4504663,Sedan,Sedan,,, +02/20/2022,9:43,QUEENS,11428,40.727474,-73.7398,"(40.727474, -73.7398)",,,90-30 221 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504200,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,13:33,QUEENS,11004,40.74831,-73.70954,"(40.74831, -73.70954)",263 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,16:10,BROOKLYN,11208,40.663544,-73.86949,"(40.663544, -73.86949)",FOUNTAIN AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504568,Station Wagon/Sport Utility Vehicle,,,, +02/15/2022,18:25,BRONX,10466,40.88885,-73.85857,"(40.88885, -73.85857)",,,734 EAST 227 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504877,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,20:15,QUEENS,11364,40.739166,-73.76362,"(40.739166, -73.76362)",210 STREET,73 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4504253,Sedan,Sedan,,, +02/20/2022,14:28,,,40.74357,-73.83772,"(40.74357, -73.83772)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4504636,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/16/2022,6:50,,,40.835396,-73.92031,"(40.835396, -73.92031)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504912,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,4:25,,,40.751453,-73.83228,"(40.751453, -73.83228)",BLOSSOM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4504297,Taxi,Sedan,,, +02/11/2022,11:35,BRONX,10469,40.873283,-73.85555,"(40.873283, -73.85555)",,,3305 LACONIA AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4504693,Sedan,Sedan,,, +02/20/2022,11:20,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,Unspecified,,,4504128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/20/2022,1:10,BROOKLYN,11207,40.65613,-73.886894,"(40.65613, -73.886894)",,,155 WORTMAN AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4504577,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/20/2022,13:10,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,0:10,MANHATTAN,10003,40.733326,-73.989426,"(40.733326, -73.989426)",,,108 EAST 13 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4504712,Sedan,Sedan,,, +02/20/2022,1:00,BROOKLYN,11230,40.626255,-73.96256,"(40.626255, -73.96256)",,,950 EAST 14 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4504149,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,15:42,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",ROCKAWAY AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4504252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,18:39,,,40.608253,-73.897835,"(40.608253, -73.897835)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4504290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,17:25,BRONX,10456,40.832016,-73.90882,"(40.832016, -73.90882)",,,414 EAST 168 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516251,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,16:50,,,40.69608,-73.9694,"(40.69608, -73.9694)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516348,TOW TRUCK,,,, +06/16/2021,2:35,,,40.829407,-73.88546,"(40.829407, -73.88546)",SHERIDAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4427598,Sedan,Sedan,Sedan,Sedan, +06/18/2021,13:34,,,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428592,Sedan,,,, +06/20/2021,14:50,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4429130,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/20/2021,19:30,,,40.577244,-74.00004,"(40.577244, -74.00004)",WEST 33 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429306,Sedan,Sedan,,, +06/20/2021,18:10,,,40.658703,-73.854904,"(40.658703, -73.854904)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4429184,Motorcycle,,,, +06/16/2021,18:00,QUEENS,11372,40.754185,-73.87566,"(40.754185, -73.87566)",,,34-18 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429991,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,13:57,,,40.75484,-73.98412,"(40.75484, -73.98412)",WEST 42 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,4429749,Pick-up Truck,Bike,Station Wagon/Sport Utility Vehicle,, +06/20/2021,4:00,MANHATTAN,10034,40.866062,-73.92251,"(40.866062, -73.92251)",VERMILYEA AVENUE,WEST 204 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429717,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,3:35,MANHATTAN,10022,40.75645,-73.97032,"(40.75645, -73.97032)",3 AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Other Vehicular,,,,4428785,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,4:20,BRONX,10473,40.818752,-73.850105,"(40.818752, -73.850105)",,,2125 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429419,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,17:35,,,40.678173,-73.85749,"(40.678173, -73.85749)",80 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429224,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,22:45,,,40.63447,-74.13001,"(40.63447, -74.13001)",,,29 BOND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429677,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,11:43,BROOKLYN,11234,40.61815,-73.91689,"(40.61815, -73.91689)",,,1431 MILL AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429813,Sedan,Bike,,, +06/18/2021,19:35,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429936,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,3:00,,,40.69141,-73.72668,"(40.69141, -73.72668)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4428794,Sedan,,,, +06/20/2021,15:04,QUEENS,11106,40.7611,-73.93999,"(40.7611, -73.93999)",36 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429260,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/20/2021,18:00,MANHATTAN,10003,40.736546,-73.98905,"(40.736546, -73.98905)",PARK AVENUE SOUTH,EAST 17 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429743,Sedan,,,, +06/08/2021,10:20,,,40.80333,-73.94873,"(40.80333, -73.94873)",LENOX AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429795,Sedan,Box Truck,,, +06/20/2021,17:26,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429553,Sedan,,,, +06/20/2021,1:30,MANHATTAN,10032,40.843903,-73.9427,"(40.843903, -73.9427)",HAVEN AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428879,Sedan,Sedan,,, +06/20/2021,11:08,QUEENS,11691,40.602066,-73.75773,"(40.602066, -73.75773)",,,674 GRASSMERE TERRACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4429313,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,13:30,,,40.67229,-73.79391,"(40.67229, -73.79391)",145 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429345,Sedan,,,, +06/20/2021,2:21,QUEENS,11368,40.756683,-73.85793,"(40.756683, -73.85793)",34 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429434,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,23:00,BRONX,10466,40.88447,-73.83539,"(40.88447, -73.83539)",,,3629 MAROLLA PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429481,Sedan,Sedan,,, +06/20/2021,16:54,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429036,Sedan,Sedan,,, +06/20/2021,19:22,,,40.648308,-74.01412,"(40.648308, -74.01412)",3 AVENUE,,,2,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429158,E-Bike,Pick-up Truck,,, +06/20/2021,13:45,,,40.61466,-74.034706,"(40.61466, -74.034706)",99 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428987,Sedan,Bike,,, +06/19/2021,17:43,QUEENS,11368,40.755833,-73.86154,"(40.755833, -73.86154)",,,34-37 107 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429841,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,0:00,QUEENS,11434,40.685436,-73.79326,"(40.685436, -73.79326)",SUTPHIN BOULEVARD,114 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4429912,Sedan,Sedan,Sedan,, +06/20/2021,10:33,BROOKLYN,11219,40.63195,-74.00248,"(40.63195, -74.00248)",,,5911 11 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429975,Sedan,,,, +06/20/2021,16:00,BROOKLYN,11230,40.629272,-73.97308,"(40.629272, -73.97308)",,,419 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429028,Sedan,,,, +06/20/2021,14:00,BROOKLYN,11212,40.66262,-73.9084,"(40.66262, -73.9084)",,,256 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428994,Sedan,,,, +05/02/2021,20:18,BROOKLYN,11217,40.67841,-73.97911,"(40.67841, -73.97911)",5 AVENUE,SAINT JOHNS PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429770,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2021,15:55,BROOKLYN,11213,40.67202,-73.93362,"(40.67202, -73.93362)",,,214 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429060,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,2:23,BROOKLYN,11212,40.666187,-73.916664,"(40.666187, -73.916664)",SARATOGA AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4428902,Sedan,Sedan,,, +06/20/2021,1:50,,,40.867474,-73.89741,"(40.867474, -73.89741)",WEST KINGSBRIDGE ROAD,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4429479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,17:00,BROOKLYN,11223,40.59568,-73.96099,"(40.59568, -73.96099)",,,2501 CONEY ISLAND AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429209,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2021,4:55,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429524,Taxi,,,, +06/20/2021,16:35,QUEENS,11436,40.685356,-73.79723,"(40.685356, -73.79723)",LINDEN BOULEVARD,146 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429363,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,16:40,BROOKLYN,11226,,,,Well House Drive,East Lake Drive,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4429496,E-Scooter,,,, +06/20/2021,9:30,BRONX,10455,40.81408,-73.90879,"(40.81408, -73.90879)",,,583 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4428954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,1:31,,,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4429041,Sedan,Sedan,Sedan,, +06/20/2021,13:30,BROOKLYN,11234,40.616276,-73.93863,"(40.616276, -73.93863)",AVENUE P,EAST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429168,Sedan,Sedan,,, +04/04/2022,15:30,,,40.67625,-73.88405,"(40.67625, -73.88405)",ELTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516315,Bus,Sedan,,, +06/20/2021,10:00,BROOKLYN,11204,40.633278,-73.983185,"(40.633278, -73.983185)",45 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429982,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,10:54,QUEENS,11691,40.604755,-73.76076,"(40.604755, -73.76076)",,,1082 DICKENS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429343,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,20:02,,,40.863018,-73.917564,"(40.863018, -73.917564)",WEST 206 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4429709,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/19/2021,10:51,BROOKLYN,11201,,,,WILLOUGHBY STREET,FLEET PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429845,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,14:20,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4429093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,12:00,BROOKLYN,11219,40.63529,-74.00009,"(40.63529, -74.00009)",,,1071 54 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4429965,Sedan,,,, +06/20/2021,15:00,BROOKLYN,11207,40.663742,-73.8938,"(40.663742, -73.8938)",,,554 PENNSYLVANIA AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4429140,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,13:50,QUEENS,11411,40.691982,-73.735695,"(40.691982, -73.735695)",226 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Following Too Closely,,,,4429776,Sedan,Sedan,,, +06/20/2021,2:55,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429010,Sedan,Sedan,,, +06/20/2021,23:22,QUEENS,11693,40.586315,-73.80653,"(40.586315, -73.80653)",SHORE FRONT PARKWAY,BEACH 81 STREET,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4429676,Motorcycle,,,, +06/20/2021,23:21,QUEENS,11691,40.595886,-73.76386,"(40.595886, -73.76386)",SEAGIRT BOULEVARD,BEACH 31 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4429385,Sedan,Sedan,,, +06/20/2021,16:17,QUEENS,11421,40.691536,-73.85419,"(40.691536, -73.85419)",90 STREET,88 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4429459,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/19/2021,22:50,BROOKLYN,11218,40.63578,-73.97597,"(40.63578, -73.97597)",DITMAS AVENUE,EAST 3 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4429977,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,18:58,QUEENS,11428,40.720394,-73.75033,"(40.720394, -73.75033)",,,90-35 HOLLIS COURT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429595,Sedan,Sedan,,, +05/26/2021,14:09,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429754,Sedan,Bike,,, +06/20/2021,18:30,QUEENS,11420,40.666096,-73.81742,"(40.666096, -73.81742)",150 AVENUE,123 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4429197,Motorcycle,Sedan,,, +06/20/2021,2:45,,,40.831974,-73.9235,"(40.831974, -73.9235)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,15:52,,,40.768467,-73.90607,"(40.768467, -73.90607)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4429261,Sedan,Sedan,,, +06/20/2021,22:30,,,40.764866,-73.811966,"(40.764866, -73.811966)",NORTHERN BOULEVARD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4429148,Sedan,Sedan,,, +06/20/2021,0:44,,,40.876976,-73.88966,"(40.876976, -73.88966)",PAUL AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4429325,Motorcycle,Sedan,,, +06/20/2021,1:15,QUEENS,11369,40.759197,-73.86596,"(40.759197, -73.86596)",,,32-09 103 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429829,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,12:04,QUEENS,11378,40.724895,-73.89215,"(40.724895, -73.89215)",,,69-80 58 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429110,Sedan,Sedan,,, +06/20/2021,10:51,MANHATTAN,10167,40.754826,-73.97569,"(40.754826, -73.97569)",,,245 PARK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429696,Sedan,Sedan,,, +06/14/2021,3:35,,,40.780136,-73.988266,"(40.780136, -73.988266)",HENRY HUDSON PARKWAY,,,5,0,0,0,0,0,5,0,Unsafe Speed,Unsafe Speed,,,,4429857,Sedan,Sedan,,, +06/20/2021,11:40,MANHATTAN,10003,40.72996,-73.9922,"(40.72996, -73.9922)",,,10 ASTOR PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429299,Sedan,Sedan,,, +04/04/2022,17:30,QUEENS,11418,40.69945,-73.822136,"(40.69945, -73.822136)",129 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516784,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +06/20/2021,14:30,,,40.578823,-73.98628,"(40.578823, -73.98628)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429300,Sedan,,,, +04/04/2022,0:55,MANHATTAN,10025,40.8007,-73.96427,"(40.8007, -73.96427)",,,172 WEST 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4515894,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,22:50,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429735,Sedan,,,, +06/20/2021,1:40,,,40.67134,-73.73638,"(40.67134, -73.73638)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4428786,Sedan,Sedan,Sedan,, +06/20/2021,23:20,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,AVENUE C,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4429782,Sedan,Sedan,,, +06/20/2021,11:57,BRONX,10454,40.807556,-73.919235,"(40.807556, -73.919235)",EAST 138 STREET,BROOK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4429953,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2021,0:30,BROOKLYN,11207,40.667904,-73.883606,"(40.667904, -73.883606)",ASHFORD STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429136,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,23:00,BROOKLYN,11212,40.66028,-73.92576,"(40.66028, -73.92576)",WINTHROP STREET,EAST 92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Lighting Defects,,,,4429572,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,23:54,,,40.680374,-73.80445,"(40.680374, -73.80445)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4429932,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,16:00,QUEENS,11355,40.743366,-73.82765,"(40.743366, -73.82765)",138 STREET,60 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429856,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,19:00,,,40.86147,-73.925,"(40.86147, -73.925)",FORT GEORGE HILL,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429716,Sedan,,,, +06/20/2021,2:27,BROOKLYN,11206,40.71035,-73.93495,"(40.71035, -73.93495)",,,343 STAGG STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428797,Sedan,,,, +06/20/2021,18:20,MANHATTAN,10010,40.73914,-73.98294,"(40.73914, -73.98294)",,,310 3 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429745,Multi-Wheeled Vehicle,Sedan,,, +06/20/2021,18:43,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429107,Pick-up Truck,Taxi,Station Wagon/Sport Utility Vehicle,, +06/20/2021,5:37,MANHATTAN,10021,40.77373,-73.96402,"(40.77373, -73.96402)",EAST 75 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429234,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,8:22,BRONX,10466,40.893284,-73.84193,"(40.893284, -73.84193)",EDENWALD AVENUE,WILDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429796,Sedan,Sedan,,, +06/20/2021,15:00,,,,,,GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429152,Sedan,,,, +06/20/2021,18:05,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429552,Sedan,Sedan,,, +06/20/2021,2:35,MANHATTAN,10036,40.76155,-73.99408,"(40.76155, -73.99408)",10 AVENUE,WEST 45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429685,Taxi,Sedan,,, +06/20/2021,15:51,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,DAVIDSON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4429188,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,21:55,QUEENS,11370,40.759525,-73.883255,"(40.759525, -73.883255)",31 AVENUE,85 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429992,Sedan,MOTORCYCLE,,, +06/18/2021,0:02,QUEENS,11434,40.67865,-73.791466,"(40.67865, -73.791466)",119 ROAD,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429913,Sedan,Sedan,,, +05/06/2021,13:55,BROOKLYN,11215,40.67034,-73.98873,"(40.67034, -73.98873)",4 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,0:20,MANHATTAN,10003,40.732346,-73.98495,"(40.732346, -73.98495)",EAST 14 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429007,Sedan,AMB,,, +06/20/2021,17:40,QUEENS,11378,40.722897,-73.91386,"(40.722897, -73.91386)",RUST STREET,MASPETH AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4429029,Sedan,E-Bike,,, +06/20/2021,23:10,QUEENS,11691,40.6068,-73.7648,"(40.6068, -73.7648)",,,25-26 BAYSWATER AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4429372,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,3:00,QUEENS,11377,40.73989,-73.89391,"(40.73989, -73.89391)",,,70-08 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429902,Sedan,,,, +06/20/2021,20:48,BROOKLYN,11206,40.70823,-73.945076,"(40.70823, -73.945076)",,,153 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429131,Motorcycle,,,, +06/20/2021,17:00,,,40.713497,-73.75714,"(40.713497, -73.75714)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429515,Sedan,Taxi,,, +06/16/2021,13:20,BROOKLYN,11210,40.623177,-73.93748,"(40.623177, -73.93748)",,,1908 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429812,Box Truck,,,, +06/20/2021,10:05,,,40.675053,-73.947235,"(40.675053, -73.947235)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428966,Motorcycle,,,, +06/20/2021,13:55,,,40.83917,-73.83629,"(40.83917, -73.83629)",EAST TREMONT AVENUE,,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,,,,4429305,Sedan,Sedan,,, +06/20/2021,0:39,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4429386,Sedan,,,, +06/20/2021,11:20,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4429022,Sedan,Sedan,,, +06/20/2021,21:45,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4429165,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,12:45,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",WATTS STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429711,Sedan,,,, +06/19/2021,1:00,,,40.749706,-73.99157,"(40.749706, -73.99157)",7 AVENUE,,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4429753,Taxi,Bike,,, +06/20/2021,14:00,QUEENS,11435,40.70382,-73.814064,"(40.70382, -73.814064)",,,88-20 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429525,Sedan,,,, +06/20/2021,3:46,BRONX,10466,40.896687,-73.84511,"(40.896687, -73.84511)",BAYCHESTER AVENUE,PITMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429119,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,10:10,,,40.757072,-73.96986,"(40.757072, -73.96986)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429174,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,12:17,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4516848,Sedan,Sedan,Tractor Truck Diesel,, +06/18/2021,13:43,QUEENS,11369,40.767185,-73.88356,"(40.767185, -73.88356)",,,86-01 23 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,4:55,QUEENS,11369,40.76021,-73.86021,"(40.76021, -73.86021)",,,110-14 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429981,Taxi,Sedan,,, +04/04/2022,10:15,MANHATTAN,10013,40.725582,-74.004745,"(40.725582, -74.004745)",,,233 SPRING STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4516687,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,9:30,MANHATTAN,10036,40.761196,-73.99128,"(40.761196, -73.99128)",,,404 WEST 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429702,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,23:04,BROOKLYN,11218,,,,AVENUE C,OCEAN PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429966,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2021,18:40,QUEENS,11691,40.596325,-73.76673,"(40.596325, -73.76673)",ROCKAWAY FREEWAY,SEAGIRT BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429360,Sedan,Sedan,,, +06/20/2021,1:08,BROOKLYN,11212,40.65473,-73.90692,"(40.65473, -73.90692)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4428869,Sedan,Sedan,,, +06/20/2021,17:15,BROOKLYN,11236,40.634354,-73.910675,"(40.634354, -73.910675)",AVENUE J,EAST 81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429494,Sedan,Pick-up Truck,,, +06/20/2021,2:08,BRONX,10466,40.889923,-73.85931,"(40.889923, -73.85931)",WHITE PLAINS ROAD,EAST 228 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429084,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,15:40,BRONX,10462,40.836018,-73.85524,"(40.836018, -73.85524)",,,2098 STARLING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429418,Sedan,,,, +06/20/2021,20:00,BROOKLYN,11210,40.614197,-73.947464,"(40.614197, -73.947464)",KINGS HIGHWAY,EAST 27 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429311,Sedan,Sedan,,, +06/20/2021,15:08,BROOKLYN,11235,40.583797,-73.9413,"(40.583797, -73.9413)",,,2712 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,20:59,QUEENS,11372,40.74662,-73.89359,"(40.74662, -73.89359)",72 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429986,Bike,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,20:30,,,40.736546,-73.98905,"(40.736546, -73.98905)",PARK AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429768,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,2:00,,,40.733944,-73.86492,"(40.733944, -73.86492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429278,Sedan,Sedan,,, +06/20/2021,5:30,MANHATTAN,10019,40.765114,-73.974945,"(40.765114, -73.974945)",,,50 CENTRAL PARK SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429703,Sedan,Carry All,,, +06/20/2021,12:45,QUEENS,11365,40.74217,-73.79903,"(40.74217, -73.79903)",,,172-00 BOOTH MEMORIAL AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,16:30,,,40.67069,-73.91703,"(40.67069, -73.91703)",SARATOGA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429516,Sedan,Ambulance,,, +06/20/2021,11:33,QUEENS,11374,40.725945,-73.85977,"(40.725945, -73.85977)",AUSTIN STREET,65 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429606,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,5:35,,,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4429173,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/20/2021,21:24,,,40.827595,-73.85004,"(40.827595, -73.85004)",CASTLE HILL AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4429424,Sedan,Sedan,Sedan,Sedan, +06/20/2021,3:27,MANHATTAN,10032,40.83804,-73.94076,"(40.83804, -73.94076)",,,559 WEST 164 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,,4428888,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Station Wagon/Sport Utility Vehicle, +06/20/2021,16:20,BRONX,10451,40.819355,-73.91829,"(40.819355, -73.91829)",EAST 153 STREET,COURTLANDT AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4429294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,14:00,BROOKLYN,11220,40.64383,-74.011635,"(40.64383, -74.011635)",,,5217 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429033,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,17:45,,,40.575512,-73.98241,"(40.575512, -73.98241)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4429301,Sedan,Sedan,,, +06/20/2021,16:40,QUEENS,11357,40.78665,-73.8264,"(40.78665, -73.8264)",14 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429135,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,9:00,QUEENS,11373,40.74598,-73.87698,"(40.74598, -73.87698)",,,41-65 FORLEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429288,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/20/2021,14:30,,,,,,EAST 141 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4429723,Sedan,Sedan,,, +06/20/2021,16:35,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429192,Sedan,Bike,,, +06/06/2021,11:10,,,40.754055,-73.99583,"(40.754055, -73.99583)",9 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429737,Taxi,Motorcycle,,, +06/21/2020,9:30,QUEENS,11434,40.67114,-73.76741,"(40.67114, -73.76741)",140 AVENUE,173 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429784,Sedan,,,, +06/20/2021,21:42,BROOKLYN,11212,40.656643,-73.91836,"(40.656643, -73.91836)",,,1081 WILLMOHR STREET,6,0,0,0,0,0,6,0,Backing Unsafely,Unspecified,,,,4429570,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,14:13,BRONX,10455,40.815697,-73.91678,"(40.815697, -73.91678)",EAST 149 STREET,BERGEN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429948,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/19/2021,23:55,QUEENS,11375,40.7104,-73.83974,"(40.7104, -73.83974)",UNION TURNPIKE,GREENWAY SOUTH,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4429907,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/20/2021,0:50,BRONX,10472,40.83076,-73.87586,"(40.83076, -73.87586)",,,1268 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,13:28,BROOKLYN,11214,40.59143,-73.99037,"(40.59143, -73.99037)",HARWAY AVENUE,26 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429019,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,10:17,BROOKLYN,11210,40.618706,-73.95378,"(40.618706, -73.95378)",,,2115 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,,,,,4429024,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,22:50,BRONX,10457,40.84664,-73.89606,"(40.84664, -73.89606)",,,531 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4429330,Taxi,Sedan,,, +06/18/2021,8:00,MANHATTAN,10003,40.728127,-73.99366,"(40.728127, -73.99366)",,,11 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429781,E-Bike,,,, +06/20/2021,0:40,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429040,Sedan,,,, +06/20/2021,2:30,,,40.60174,-73.990395,"(40.60174, -73.990395)",84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429375,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/17/2021,19:51,QUEENS,11372,40.748352,-73.89174,"(40.748352, -73.89174)",,,37-18 74 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429828,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,12:20,,,,,,BOSTON ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,0:48,BROOKLYN,11218,40.65159,-73.98112,"(40.65159, -73.98112)",MC DONALD AVENUE,VANDERBILT STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4516765,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,3:20,,,40.70196,-73.944016,"(40.70196, -73.944016)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4428938,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,11:11,BRONX,10457,40.84576,-73.89186,"(40.84576, -73.89186)",,,690 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429332,Sedan,,,, +06/20/2021,6:15,QUEENS,11415,40.711823,-73.83612,"(40.711823, -73.83612)",UNION TURNPIKE,PARK LANE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4429445,Sedan,,,, +06/20/2021,1:15,QUEENS,11435,40.690056,-73.799644,"(40.690056, -73.799644)",,,109-11 LIVERPOOL STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4429513,Sedan,Sedan,,, +06/20/2021,4:36,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Fell Asleep,Unspecified,Unspecified,,,4428971,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/20/2021,2:15,BROOKLYN,11207,40.67091,-73.89364,"(40.67091, -73.89364)",BELMONT AVENUE,VERMONT STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4429039,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/18/2021,0:32,QUEENS,11372,40.755066,-73.8853,"(40.755066, -73.8853)",,,33-16 82 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4429838,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/18/2021,17:30,,,40.711323,-73.95464,"(40.711323, -73.95464)",SOUTH 1 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429854,Sedan,,,, +06/20/2021,14:54,BROOKLYN,11238,40.68635,-73.96241,"(40.68635, -73.96241)",GRAND AVENUE,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4429100,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/20/2021,0:01,,,40.682404,-73.75181,"(40.682404, -73.75181)",SPRINGFIELD BOULEVARD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4428788,Sedan,E-Bike,,, +06/20/2021,19:47,BRONX,10456,40.83142,-73.91831,"(40.83142, -73.91831)",EAST 166 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429235,Sedan,,,, +06/18/2021,17:30,MANHATTAN,10027,40.80812,-73.96011,"(40.80812, -73.96011)",AMSTERDAM AVENUE,WEST 118 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429830,Motorcycle,Sedan,,, +06/20/2021,16:00,BROOKLYN,11203,40.644432,-73.9296,"(40.644432, -73.9296)",UTICA AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429566,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,9:35,BROOKLYN,11217,40.68207,-73.97988,"(40.68207, -73.97988)",,,73 4 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429772,Sedan,,,, +06/20/2021,0:05,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429004,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,19:19,BROOKLYN,11211,40.7112,-73.94861,"(40.7112, -73.94861)",,,575 GRAND STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429132,Sedan,Bike,,, +06/20/2021,5:37,MANHATTAN,10032,40.838425,-73.941696,"(40.838425, -73.941696)",WEST 164 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428885,Sedan,,,, +06/20/2021,4:15,BRONX,10470,40.904243,-73.852165,"(40.904243, -73.852165)",EAST 241 STREET,MATILDA AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4429086,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,12:51,BRONX,10456,40.82124,-73.90992,"(40.82124, -73.90992)",SAINT ANNS AVENUE,EAST 159 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429957,Sedan,E-Scooter,,, +06/20/2021,22:30,,,40.75126,-73.94227,"(40.75126, -73.94227)",QUEENS PLAZA SOUTH,23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429316,Sedan,Sedan,,, +06/20/2021,14:08,BROOKLYN,11207,40.672714,-73.89032,"(40.672714, -73.89032)",VAN SICLEN AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4429046,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/20/2021,19:21,QUEENS,11372,40.75169,-73.88562,"(40.75169, -73.88562)",81 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429993,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,21:25,,,40.859303,-73.89884,"(40.859303, -73.89884)",EAST 184 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429721,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,23:01,BROOKLYN,11221,40.69825,-73.92997,"(40.69825, -73.92997)",WILLOUGHBY AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429473,Sedan,,,, +06/20/2021,16:40,,,40.584755,-73.94712,"(40.584755, -73.94712)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4429154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/20/2021,15:09,QUEENS,11412,40.701164,-73.75023,"(40.701164, -73.75023)",MURDOCK AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429371,Sedan,Sedan,,, +06/20/2021,16:10,BROOKLYN,11236,40.640583,-73.91894,"(40.640583, -73.91894)",FOSTER AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429493,Sedan,Sedan,,, +06/20/2021,19:28,BRONX,10462,40.83728,-73.85812,"(40.83728, -73.85812)",,,1550 UNIONPORT ROAD,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4429421,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,19:13,BROOKLYN,11211,40.718227,-73.950714,"(40.718227, -73.950714)",,,42 RICHARDSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429214,Station Wagon/Sport Utility Vehicle,Bus,,, +06/20/2021,0:17,MANHATTAN,10019,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429684,Sedan,Sedan,,, +06/19/2021,15:30,BRONX,10462,40.84678,-73.85526,"(40.84678, -73.85526)",VANNEST AVENUE,COLDEN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4429810,Bike,,,, +06/20/2021,21:43,,,40.790253,-73.94564,"(40.790253, -73.94564)",EAST 104 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429145,Sedan,Bike,,, +06/19/2021,1:30,MANHATTAN,10038,40.707603,-74.00573,"(40.707603, -74.00573)",,,116 JOHN STREET,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,Unspecified,Unspecified,,4429712,Sedan,Sedan,Sedan,Sedan, +06/20/2021,6:45,,,40.74643,-73.80336,"(40.74643, -73.80336)",164 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4429138,Sedan,,,, +06/20/2021,1:45,BROOKLYN,11205,40.69885,-73.95783,"(40.69885, -73.95783)",,,429 FLUSHING AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4428816,Sedan,Box Truck,,, +06/19/2021,11:34,BRONX,10461,40.850956,-73.8519,"(40.850956, -73.8519)",,,1827 WILLIAMSBRIDGE ROAD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4429741,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,17:10,BROOKLYN,11230,40.61403,-73.974,"(40.61403, -73.974)",MC DONALD AVENUE,AVENUE N,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4429972,Sedan,Sedan,,, +06/20/2021,9:18,BROOKLYN,11203,40.649277,-73.943474,"(40.649277, -73.943474)",,,3602 SNYDER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,12:19,,,40.866726,-73.89799,"(40.866726, -73.89799)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4429177,Sedan,,,, +06/20/2021,22:00,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Prescription Medication,,,,,4429914,Sedan,,,, +06/18/2021,17:05,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",2 AVENUE,EAST 125 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429798,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,16:56,BROOKLYN,11215,40.666077,-73.995224,"(40.666077, -73.995224)",17 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429585,Sedan,Sedan,,, +06/20/2021,2:40,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4429190,Sedan,Sedan,,, +06/19/2021,0:15,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429980,Sedan,,,, +06/20/2021,23:00,BRONX,10470,40.902485,-73.852516,"(40.902485, -73.852516)",RICHARDSON AVENUE,EAST 240 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4429310,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/20/2021,15:25,,,40.787025,-73.793,"(40.787025, -73.793)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,17:15,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429161,E-Scooter,,,, +06/20/2021,13:30,BRONX,10475,40.885315,-73.82726,"(40.885315, -73.82726)",,,3550 CONNER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429120,Sedan,,,, +06/16/2021,19:10,,,40.835598,-73.9138,"(40.835598, -73.9138)",,,EAST 169 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4429729,Sedan,PC,,, +06/18/2021,19:30,,,40.75034,-73.983185,"(40.75034, -73.983185)",WEST 37 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429752,Sedan,Pedicab,,, +06/20/2021,17:45,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4429356,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,20:00,,,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429526,Sedan,,,, +06/20/2021,15:05,BROOKLYN,11229,40.603127,-73.95431,"(40.603127, -73.95431)",,,1919 EAST 18 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4429207,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,20:15,QUEENS,11372,40.748417,-73.87649,"(40.748417, -73.87649)",90 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4429988,Pick-up Truck,Pick-up Truck,,, +06/20/2021,15:07,BRONX,10458,40.85857,-73.88542,"(40.85857, -73.88542)",,,590 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4429295,Taxi,,,, +06/20/2021,12:43,QUEENS,11423,40.709476,-73.76393,"(40.709476, -73.76393)",100 AVENUE,195 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429820,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,17:15,,,40.76552,-73.98004,"(40.76552, -73.98004)",WEST 57 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4429699,Station Wagon/Sport Utility Vehicle,Bike,,, +04/04/2022,8:40,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516021,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,21:45,QUEENS,11373,40.74331,-73.87451,"(40.74331, -73.87451)",91 PLACE,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429302,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,4:50,,,40.696663,-73.726906,"(40.696663, -73.726906)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4429909,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/19/2021,16:45,MANHATTAN,10029,40.78775,-73.947464,"(40.78775, -73.947464)",3 AVENUE,EAST 100 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429707,Sedan,PK,,, +06/20/2021,0:05,QUEENS,11428,40.71616,-73.744774,"(40.71616, -73.744774)",JAMAICA AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428791,Sedan,,,, +06/19/2021,16:00,MANHATTAN,10012,40.724236,-73.997795,"(40.724236, -73.997795)",PRINCE STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429785,Sedan,Sedan,,, +06/20/2021,4:40,,,40.771286,-73.9467,"(40.771286, -73.9467)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4429732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,21:18,BROOKLYN,11208,40.68148,-73.87775,"(40.68148, -73.87775)",,,210 LOGAN STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429143,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,12:00,BRONX,10462,40.83393,-73.860916,"(40.83393, -73.860916)",,,1309 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429416,Sedan,,,, +06/20/2021,12:07,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429025,Sedan,Sedan,,, +06/20/2021,7:58,,,40.785805,-73.94286,"(40.785805, -73.94286)",EAST 100 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429379,Sedan,,,, +06/20/2021,2:25,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4429761,Bike,Sedan,,, +06/20/2021,14:42,QUEENS,11361,40.76745,-73.78011,"(40.76745, -73.78011)",35 AVENUE,208 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4429592,Sedan,Sedan,,, +06/20/2021,17:28,BROOKLYN,11222,40.73185,-73.9596,"(40.73185, -73.9596)",WEST STREET,INDIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429213,Sedan,Motorcycle,,, +06/20/2021,3:30,BRONX,10457,40.84724,-73.89088,"(40.84724, -73.89088)",EAST 179 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429268,Sedan,Sedan,,, +06/20/2021,15:34,QUEENS,11435,40.701992,-73.80996,"(40.701992, -73.80996)",145 STREET,JAMAICA AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4429519,Sedan,Bike,,, +06/20/2021,3:07,,,40.66883,-73.793655,"(40.66883, -73.793655)",INWOOD STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4429320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,7:00,,,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429045,Sedan,Tractor Truck Diesel,,, +06/20/2021,14:50,BRONX,10470,40.904312,-73.85233,"(40.904312, -73.85233)",,,640 EAST 241 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429116,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,8:00,,,40.853706,-73.871864,"(40.853706, -73.871864)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429879,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,1:45,,,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428945,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,10:56,,,40.69968,-73.79864,"(40.69968, -73.79864)",LIBERTY AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429831,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2021,17:15,BRONX,10460,40.85219,-73.88201,"(40.85219, -73.88201)",SOUTHERN BOULEVARD,EAST 185 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4429335,Sedan,E-Bike,,, +06/20/2021,15:39,MANHATTAN,10016,40.743893,-73.9717,"(40.743893, -73.9717)",EAST 35 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429172,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/05/2021,2:00,,,40.753937,-73.8603,"(40.753937, -73.8603)",108 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429985,Sedan,Motorcycle,,, +06/15/2021,14:45,,,40.666862,-73.77837,"(40.666862, -73.77837)",SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429779,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2021,10:00,MANHATTAN,10030,40.82196,-73.944664,"(40.82196, -73.944664)",,,153 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429942,Sedan,,,, +06/20/2021,18:16,BROOKLYN,11205,40.69788,-73.971794,"(40.69788, -73.971794)",FLUSHING AVENUE,CLERMONT AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4429049,E-Bike,,,, +06/20/2021,6:00,BRONX,10469,40.87167,-73.8486,"(40.87167, -73.8486)",BURKE AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429123,Sedan,Sedan,,, +06/20/2021,5:30,QUEENS,11433,40.69576,-73.788216,"(40.69576, -73.788216)",,,164-62 109 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4429530,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/20/2021,15:10,BROOKLYN,11215,40.67486,-73.9765,"(40.67486, -73.9765)",,,788 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429447,Sedan,Sedan,,, +06/20/2021,19:15,,,40.688213,-73.919815,"(40.688213, -73.919815)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429474,Sedan,Sedan,,, +06/19/2021,2:15,QUEENS,11369,40.761375,-73.87978,"(40.761375, -73.87978)",,,30-25 89 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429989,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,1:35,QUEENS,11368,40.743576,-73.862,"(40.743576, -73.862)",,,99-18 ALSTYNE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429287,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,17:00,BROOKLYN,11211,40.70259,-73.95646,"(40.70259, -73.95646)",,,176 LEE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429013,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,23:46,MANHATTAN,10010,40.738316,-73.98773,"(40.738316, -73.98773)",EAST 20 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4429995,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2021,12:40,QUEENS,11691,40.60638,-73.754715,"(40.60638, -73.754715)",BEACH CHANNEL DRIVE,DIX AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4429349,Motorcycle,Sedan,,, +06/20/2021,1:45,MANHATTAN,10032,40.835323,-73.9421,"(40.835323, -73.9421)",,,894 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4428882,Sedan,Sedan,,, +06/20/2021,18:25,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WYTHE AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,6:37,,,,,,188 STREET,186 LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429442,Sedan,Sedan,,, +06/19/2021,23:30,BRONX,10451,40.821617,-73.91334,"(40.821617, -73.91334)",,,791 ELTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429959,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,23:52,,,40.85669,-73.864746,"(40.85669, -73.864746)",PELHAM PARKWAY SOUTH,WALLACE AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4429315,Sedan,Sedan,,, +06/20/2021,2:30,,,40.64404,-73.877525,"(40.64404, -73.877525)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4429038,Sedan,,,, +04/04/2022,18:09,QUEENS,11385,40.698883,-73.90816,"(40.698883, -73.90816)",,,1625 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516793,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,13:15,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",VARICK STREET,CANAL STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4429713,Sedan,Sedan,,, +06/20/2021,14:35,BRONX,10468,40.86273,-73.90357,"(40.86273, -73.90357)",,,50 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4429179,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,15:15,BROOKLYN,11232,40.66047,-73.998024,"(40.66047, -73.998024)",25 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429157,Bike,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,2:30,BROOKLYN,11214,40.60174,-73.990395,"(40.60174, -73.990395)",84 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429558,Sedan,Sedan,,, +06/20/2021,2:46,BRONX,10456,40.83836,-73.91271,"(40.83836, -73.91271)",SHERIDAN AVENUE,EAST 170 STREET,,6,0,6,0,0,0,0,0,Unsafe Speed,,,,,4429679,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,12:00,QUEENS,11417,40.67129,-73.838066,"(40.67129, -73.838066)",CENTREVILLE AVENUE,BRISTOL AVENUE,,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4429191,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,9:35,BROOKLYN,11218,40.63837,-73.97457,"(40.63837, -73.97457)",EAST 5 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429973,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,2:00,BROOKLYN,11236,40.65002,-73.91555,"(40.65002, -73.91555)",AVENUE B,EAST 91 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429031,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,16:05,MANHATTAN,10009,40.729534,-73.98389,"(40.729534, -73.98389)",,,184 1 AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4429922,Bike,,,, +06/20/2021,9:31,MANHATTAN,10013,40.71782,-73.99516,"(40.71782, -73.99516)",,,104 BOWERY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Aggressive Driving/Road Rage,,,,4429002,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +05/25/2021,0:00,BROOKLYN,11215,40.66954,-73.98941,"(40.66954, -73.98941)",,,468 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429771,Box Truck,Sedan,,, +06/20/2021,16:30,,,40.848328,-73.91842,"(40.848328, -73.91842)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429369,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/20/2021,16:10,BRONX,10464,40.85914,-73.81824,"(40.85914, -73.81824)",SHORE ROAD,PELHAM PARKWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4429492,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,17:37,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429087,Sedan,Sedan,,, +06/20/2021,5:00,QUEENS,11417,40.678173,-73.85749,"(40.678173, -73.85749)",GLENMORE AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,16:56,BRONX,10473,40.8193,-73.84596,"(40.8193, -73.84596)",,,2275 RANDALL AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4429420,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,22:00,,,40.582874,-73.98053,"(40.582874, -73.98053)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429309,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,4:50,,,40.696663,-73.726906,"(40.696663, -73.726906)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4428972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,1:15,,,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4428862,Sedan,,,, +06/20/2021,16:22,BROOKLYN,11208,40.67898,-73.8763,"(40.67898, -73.8763)",,,54 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429137,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/20/2021,20:00,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4429848,Sedan,,,, +06/20/2021,15:10,,,40.77012,-73.95741,"(40.77012, -73.95741)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429238,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,18:25,BRONX,10466,40.892513,-73.84543,"(40.892513, -73.84543)",GRACE AVENUE,EDENWALD AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4429094,Motorcycle,Sedan,,, +06/16/2021,20:30,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429719,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,9:22,MANHATTAN,10010,40.738316,-73.98773,"(40.738316, -73.98773)",EAST 20 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429742,Station Wagon/Sport Utility Vehicle,Moped,,, +06/20/2021,10:09,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429576,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,18:21,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",HUDSON STREET,LAIGHT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429800,Sedan,,,, +04/04/2022,0:40,,,40.756725,-73.96,"(40.756725, -73.96)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Following Too Closely,Unspecified,Unspecified,,4516210,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/20/2021,11:00,,,40.707027,-73.9236,"(40.707027, -73.9236)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429628,Sedan,,,, +06/17/2021,14:30,QUEENS,11372,40.750412,-73.87308,"(40.750412, -73.87308)",,,37-54 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429839,Bus,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,6:47,BRONX,10468,40.861347,-73.897736,"(40.861347, -73.897736)",EAST 188 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4429336,Sedan,Sedan,Sedan,, +06/20/2021,5:00,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429911,Sedan,Sedan,,, +06/13/2021,0:27,BRONX,10454,40.808163,-73.92653,"(40.808163, -73.92653)",EAST 135 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429962,Sedan,Sedan,,, +06/20/2021,13:11,BROOKLYN,11230,40.61814,-73.954956,"(40.61814, -73.954956)",,,1791 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429026,Sedan,Sedan,,, +06/20/2021,11:00,BRONX,10472,40.83205,-73.88115,"(40.83205, -73.88115)",,,1327 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429417,Sedan,,,, +06/20/2021,14:00,QUEENS,11428,40.719406,-73.74239,"(40.719406, -73.74239)",,,93-26 215 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,4:08,,,40.59594,-73.75924,"(40.59594, -73.75924)",SEAGIRT BOULEVARD,HIGHLAND COURT,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4429324,Sedan,,,, +06/20/2021,15:59,BROOKLYN,11237,40.705482,-73.92826,"(40.705482, -73.92826)",THAMES STREET,PORTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4429012,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,16:30,,,40.724552,-73.72452,"(40.724552, -73.72452)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4429050,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,15:15,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4429508,Sedan,Sedan,,, +06/20/2021,18:15,,,40.704308,-73.91924,"(40.704308, -73.91924)",WYCKOFF AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429478,Sedan,E-Scooter,,, +06/20/2021,8:25,BROOKLYN,11209,,,,,,800 poly pl,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4428948,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,19:00,BRONX,10466,40.88715,-73.86365,"(40.88715, -73.86365)",,,620 EAST 223 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429807,Sedan,,,, +06/18/2021,14:34,BRONX,10468,40.867474,-73.89741,"(40.867474, -73.89741)",WEST KINGSBRIDGE ROAD,JEROME AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429926,Dump,Sedan,,, +06/20/2021,20:48,,,,,,HORACE HARDING EXPRESSWAY,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4429594,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,7:30,,,40.753933,-73.86122,"(40.753933, -73.86122)",37 AVENUE,107 STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4429984,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,21:28,,,40.585228,-73.94155,"(40.585228, -73.94155)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4429204,Sedan,Sedan,,, +06/16/2021,13:01,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,21:46,MANHATTAN,10031,40.826298,-73.94808,"(40.826298, -73.94808)",,,526 WEST 146 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429733,Pick-up Truck,Sedan,,, +06/20/2021,1:05,,,40.591393,-73.907875,"(40.591393, -73.907875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428792,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,12:00,,,40.706554,-73.95832,"(40.706554, -73.95832)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429874,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/20/2021,0:55,BRONX,10457,40.845238,-73.900894,"(40.845238, -73.900894)",EAST 175 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429286,Sedan,Sedan,,, +06/20/2021,16:00,,,40.573708,-73.99072,"(40.573708, -73.99072)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429303,Sedan,,,, +06/18/2021,13:20,QUEENS,11412,40.688953,-73.75985,"(40.688953, -73.75985)",119 AVENUE,190 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4429789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,0:00,,,40.66852,-73.890175,"(40.66852, -73.890175)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429141,Sedan,Sedan,,, +06/20/2021,21:52,QUEENS,11423,40.709476,-73.76393,"(40.709476, -73.76393)",195 STREET,100 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4429520,Pick-up Truck,Sedan,,, +06/20/2021,22:45,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429170,Sedan,Sedan,,, +06/20/2021,8:58,QUEENS,11369,40.761276,-73.88074,"(40.761276, -73.88074)",,,30-24 88 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429834,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,19:00,QUEENS,11372,40.751614,-73.88641,"(40.751614, -73.88641)",,,80-05 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429990,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,10:45,QUEENS,11373,40.745754,-73.87285,"(40.745754, -73.87285)",LAMONT AVENUE,DENMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,15:20,,,40.66478,-73.88642,"(40.66478, -73.88642)",NEW LOTS AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429043,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,9:00,MANHATTAN,10002,40.720234,-73.98448,"(40.720234, -73.98448)",STANTON STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428923,Sedan,Sedan,,, +06/20/2021,22:43,QUEENS,11691,40.608654,-73.754,"(40.608654, -73.754)",,,14-23 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429382,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,20:03,STATEN ISLAND,10306,40.573704,-74.10652,"(40.573704, -74.10652)",,,2343 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429546,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,8:50,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4429128,Sedan,Sedan,,, +06/20/2021,20:39,,,40.88619,-73.857994,"(40.88619, -73.857994)",BARNES AVENUE,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4429114,Sedan,Sedan,,, +06/20/2021,14:57,BROOKLYN,11215,40.67486,-73.9765,"(40.67486, -73.9765)",,,788 UNION STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4429451,Sedan,Sedan,Pick-up Truck,Sedan, +06/13/2021,3:26,BROOKLYN,11234,40.627113,-73.932594,"(40.627113, -73.932594)",,,4514 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4429814,Sedan,,,, +06/20/2021,2:45,,,40.685047,-73.954254,"(40.685047, -73.954254)",,,MONROE STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4429160,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,21:34,BRONX,10457,40.837425,-73.90275,"(40.837425, -73.90275)",,,500 EAST 171 STREET,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429211,Sedan,Bike,,, +06/19/2021,19:45,,,40.75045,-73.9873,"(40.75045, -73.9873)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429755,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,13:03,MANHATTAN,10013,40.727028,-74.007385,"(40.727028, -74.007385)",,,333 HUDSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429708,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,14:00,BROOKLYN,11232,40.645947,-73.9951,"(40.645947, -73.9951)",39 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429978,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,15:14,BRONX,10460,40.83887,-73.87811,"(40.83887, -73.87811)",DEVOE AVENUE,EAST 177 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429263,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,17:35,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429147,Sedan,Sedan,,, +06/15/2021,14:00,QUEENS,11368,40.73976,-73.86609,"(40.73976, -73.86609)",,,53-55 96 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4429940,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,22:39,BROOKLYN,11207,40.68109,-73.90338,"(40.68109, -73.90338)",BUSHWICK AVENUE,STEWART STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4429630,Sedan,Sedan,,, +06/20/2021,9:07,MANHATTAN,10019,40.763737,-73.97583,"(40.763737, -73.97583)",,,60 WEST 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Turning Improperly,,,,4429698,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,23:17,MANHATTAN,10034,,,,10 AVENUE,WEST 201 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429715,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,16:40,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",NORTH CONDUIT AVENUE,118 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,,,4429183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,23:47,BROOKLYN,11207,40.67811,-73.89762,"(40.67811, -73.89762)",BUSHWICK AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516317,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,0:00,MANHATTAN,10029,40.793777,-73.9459,"(40.793777, -73.9459)",,,124 EAST 108 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516883,Sedan,Sedan,,, +04/04/2022,19:35,BROOKLYN,11223,40.60678,-73.96579,"(40.60678, -73.96579)",,,1800 EAST 7 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516245,Sedan,E-Scooter,,, +04/04/2022,0:00,BROOKLYN,11235,40.5916,-73.960686,"(40.5916, -73.960686)",AVENUE X,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4516659,Sedan,Sedan,Sedan,, +03/28/2022,18:00,MANHATTAN,10029,40.79428,-73.94902,"(40.79428, -73.94902)",EAST 107 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516724,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/04/2022,9:40,,,40.742283,-73.95181,"(40.742283, -73.95181)",50 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516830,Sedan,Pick-up Truck,,, +04/04/2022,14:05,,,40.824135,-73.89296,"(40.824135, -73.89296)",WESTCHESTER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516124,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,14:10,,,40.64713,-74.00463,"(40.64713, -74.00463)",44 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516161,Sedan,,,, +04/04/2022,16:50,,,,,,EAST 125 street,FIRST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516437,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,17:16,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4516223,Sedan,Tractor Truck Diesel,,, +04/04/2022,19:30,,,40.704697,-73.79681,"(40.704697, -73.79681)",163 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516578,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/29/2022,15:12,BRONX,10451,40.821224,-73.91719,"(40.821224, -73.91719)",,,301 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516912,Bus,Sedan,,, +04/04/2022,9:00,BROOKLYN,11207,40.668724,-73.89953,"(40.668724, -73.89953)",,,524 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516107,Sedan,,,, +04/04/2022,11:20,,,40.75807,-73.88204,"(40.75807, -73.88204)",86 STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Passing Too Closely,,,,4516450,Station Wagon/Sport Utility Vehicle,Moped,,, +04/04/2022,11:31,QUEENS,11385,40.702515,-73.85449,"(40.702515, -73.85449)",,,90-05 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516136,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,17:20,MANHATTAN,10019,40.76525,-73.995094,"(40.76525, -73.995094)",11 AVENUE,WEST 49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516261,Sedan,Bike,,, +04/01/2022,10:10,,,40.70332,-73.81794,"(40.70332, -73.81794)",136 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516753,FDNY FIRE,Sedan,,, +04/01/2022,17:06,,,40.71346,-73.91522,"(40.71346, -73.91522)",METROPOLITAN AVENUE,FLUSHING AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4516799,Sedan,Bike,,, +04/04/2022,0:00,STATEN ISLAND,10307,40.507736,-74.251305,"(40.507736, -74.251305)",,,7684 AMBOY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,16:10,,,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516217,Bus,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,12:00,MANHATTAN,10017,40.75337,-73.974655,"(40.75337, -73.974655)",EAST 45 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516284,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,7:07,,,40.88619,-73.857994,"(40.88619, -73.857994)",EAST 224 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4516733,Sedan,Sedan,,, +04/04/2022,0:00,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4516427,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,6:54,BROOKLYN,11203,40.640163,-73.94553,"(40.640163, -73.94553)",NEW YORK AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4516063,Bus,Sedan,,, +04/04/2022,13:15,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4516570,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,10:53,QUEENS,11374,40.72778,-73.86518,"(40.72778, -73.86518)",,,63-33 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516202,Box Truck,Sedan,,, +04/04/2022,18:45,QUEENS,11377,40.745106,-73.908646,"(40.745106, -73.908646)",ROOSEVELT AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4516463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:45,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516377,Sedan,Sedan,,, +04/04/2022,17:42,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516301,Sedan,,,, +03/27/2022,2:00,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516816,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,17:35,,,40.828915,-73.83841,"(40.828915, -73.83841)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516331,Tractor Truck Diesel,,,, +08/13/2020,19:44,,,40.905018,-73.88631,"(40.905018, -73.88631)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516741,Sedan,,,, +04/04/2022,18:20,BROOKLYN,11211,40.7064,-73.95036,"(40.7064, -73.95036)",,,202 UNION AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4516233,Station Wagon/Sport Utility Vehicle,Bike,,, +04/04/2022,16:00,QUEENS,11432,40.707863,-73.7953,"(40.707863, -73.7953)",,,89-11 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516579,Sedan,,,, +03/29/2022,7:02,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4516695,Van,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,22:55,,,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516282,Sedan,Sedan,Sedan,, +04/04/2022,13:00,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516479,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,10:15,MANHATTAN,10019,40.764153,-73.992195,"(40.764153, -73.992195)",,,721 10 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,0:00,BROOKLYN,11225,40.661125,-73.9507,"(40.661125, -73.9507)",,,1096 NOSTRAND AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516340,Sedan,Bike,,, +04/04/2022,17:16,BROOKLYN,11223,40.593685,-73.969894,"(40.593685, -73.969894)",,,2264 EAST 1 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516166,Sedan,,,, +04/04/2022,15:50,,,40.858162,-73.91699,"(40.858162, -73.91699)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516349,Station Wagon/Sport Utility Vehicle,Bulk Agriculture,,, +04/04/2022,12:00,,,40.698994,-73.96161,"(40.698994, -73.96161)",CLASSON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516228,Sedan,Sedan,,, +04/04/2022,16:51,MANHATTAN,10037,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 ST BRIDGE,LENOX AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4516339,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/02/2022,0:54,QUEENS,11435,40.70253,-73.81404,"(40.70253, -73.81404)",,,138-42 JAMAICA AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Passing Too Closely,,,,4516773,Station Wagon/Sport Utility Vehicle,Bike,,, +04/04/2022,17:00,BROOKLYN,11222,40.719616,-73.94065,"(40.719616, -73.94065)",,,96 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516297,Sedan,,,, +03/29/2022,18:15,MANHATTAN,10029,40.79423,-73.94695,"(40.79423, -73.94695)",EAST 108 STREET,PARK AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4516785,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,1:40,QUEENS,11373,40.72903,-73.881775,"(40.72903, -73.881775)",,,81-11 57 AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4515898,Tow Truck / Wrecker,Taxi,Sedan,Taxi,Sedan +04/04/2022,13:00,BROOKLYN,11207,40.665592,-73.88568,"(40.665592, -73.88568)",,,683 BARBEY STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516852,Sedan,Sedan,,, +03/25/2022,18:00,BRONX,10457,40.842285,-73.89251,"(40.842285, -73.89251)",EAST 175 STREET,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516686,Sedan,,,, +04/04/2022,16:30,QUEENS,11102,40.771347,-73.92285,"(40.771347, -73.92285)",CRESCENT STREET,ASTORIA BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516452,Station Wagon/Sport Utility Vehicle,Bike,,, +04/04/2022,10:30,MANHATTAN,10035,40.80573,-73.93855,"(40.80573, -73.93855)",EAST 126 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4516135,Taxi,Sedan,,, +04/04/2022,7:50,,,40.873657,-73.87142,"(40.873657, -73.87142)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4516142,Sedan,,,, +04/04/2022,0:00,,,40.587444,-73.812164,"(40.587444, -73.812164)",BEACH 87 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516409,Sedan,,,, +04/04/2022,14:12,,,40.86794,-73.87221,"(40.86794, -73.87221)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4516836,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/04/2022,7:50,BROOKLYN,11238,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4516191,Carry All,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,15:40,BROOKLYN,11234,40.616848,-73.91169,"(40.616848, -73.91169)",EAST 65 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4516440,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/04/2022,2:23,QUEENS,11422,40.657406,-73.74507,"(40.657406, -73.74507)",BROOKVILLE BOULEVARD,147 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516927,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,15:11,BROOKLYN,11238,40.681564,-73.96658,"(40.681564, -73.96658)",ATLANTIC AVENUE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516216,Taxi,Bus,,, +04/04/2022,6:47,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4516515,TCN,,,, +04/04/2022,11:10,QUEENS,11426,40.7267,-73.731224,"(40.7267, -73.731224)",GETTYSBURG STREET,92 ROAD,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unsafe Speed,,,,4516086,Sedan,Sedan,,, +04/04/2022,7:20,BRONX,10462,40.83432,-73.850395,"(40.83432, -73.850395)",,,2244 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516412,,,,, +04/04/2022,16:59,,,40.749825,-73.972206,"(40.749825, -73.972206)",2 AVENUE,,,2,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4516492,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/04/2022,8:18,QUEENS,11432,40.71314,-73.78179,"(40.71314, -73.78179)",HILLSIDE AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516575,Bus,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,3:00,BROOKLYN,11208,40.67341,-73.86761,"(40.67341, -73.86761)",AUTUMN AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516108,Sedan,,,, +04/04/2022,14:00,BROOKLYN,11235,40.581825,-73.96418,"(40.581825, -73.96418)",,,1 BRIGHTON 4 TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516178,Sedan,Sedan,,, +04/04/2022,17:30,QUEENS,11354,40.768753,-73.813065,"(40.768753, -73.813065)",MURRAY STREET,33 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4516209,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/04/2022,22:29,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516318,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:34,BRONX,10468,40.8674,-73.89488,"(40.8674, -73.89488)",,,2683 CRESTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516678,Station Wagon/Sport Utility Vehicle,Dump,,, +04/02/2022,7:46,BROOKLYN,11238,40.67297,-73.96745,"(40.67297, -73.96745)",EASTERN PARKWAY,UNDERHILL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516819,Sedan,Bike,,, +04/04/2022,3:20,BRONX,10474,40.81277,-73.88221,"(40.81277, -73.88221)",DRAKE STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4516123,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +04/04/2022,20:30,BROOKLYN,11220,40.63422,-74.01088,"(40.63422, -74.01088)",,,6213 8 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4516224,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/04/2022,2:02,BROOKLYN,11236,40.63814,-73.89741,"(40.63814, -73.89741)",,,1379 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516074,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,2:35,STATEN ISLAND,10305,40.604618,-74.07204,"(40.604618, -74.07204)",,,78 NARROWS ROAD SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429550,Sedan,Sedan,,, +10/14/2021,13:35,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4468029,Sedan,Sedan,,, +04/04/2022,15:55,QUEENS,11374,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,65 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516204,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/04/2022,19:00,BROOKLYN,11203,40.655754,-73.92403,"(40.655754, -73.92403)",LENOX ROAD,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516381,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,16:11,QUEENS,11428,40.715347,-73.74845,"(40.715347, -73.74845)",HOLLIS COURT BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,13:28,,,40.90347,-73.88628,"(40.90347, -73.88628)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4516771,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,12:00,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516520,Tractor Truck Gasoline,,,, +04/04/2022,8:30,BROOKLYN,11229,40.588596,-73.92321,"(40.588596, -73.92321)",,,69 EATON COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516246,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,19:40,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516433,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,17:00,,,40.71123,-73.85575,"(40.71123, -73.85575)",METROPOLITAN AVENUE,69 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516556,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,19:13,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516477,Sedan,Bike,,, +04/04/2022,16:00,BROOKLYN,11208,40.690495,-73.868904,"(40.690495, -73.868904)",,,5 GRANT AVENUE,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4516308,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/01/2022,16:49,,,40.700954,-73.825676,"(40.700954, -73.825676)",125 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516719,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,17:40,BRONX,10467,40.871487,-73.869194,"(40.871487, -73.869194)",,,655 BURKE AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4516903,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/04/2022,12:00,BROOKLYN,11201,40.68817,-73.998116,"(40.68817, -73.998116)",,,154 WARREN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516239,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,15:20,MANHATTAN,10013,40.71632,-73.99631,"(40.71632, -73.99631)",,,155 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Passing Too Closely,,,,4516756,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/04/2022,15:57,,,40.806534,-73.90758,"(40.806534, -73.90758)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516232,Sedan,Pick-up Truck,,, +04/04/2022,1:15,,,,,,FEATHERBED LANE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516058,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,17:11,BROOKLYN,11203,40.64437,-73.93061,"(40.64437, -73.93061)",CLARENDON ROAD,EAST 49 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516786,Sedan,Sedan,,, +04/04/2022,14:15,BROOKLYN,11236,40.636044,-73.890686,"(40.636044, -73.890686)",EAST 98 STREET,AVENUE N,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516164,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,22:09,,,40.61949,-73.94652,"(40.61949, -73.94652)",AVENUE M,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516287,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/27/2022,11:50,,,40.802204,-73.967804,"(40.802204, -73.967804)",WEST 107 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516897,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,11:15,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",CANAL STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516689,Sedan,,,, +04/04/2022,7:05,BRONX,10461,40.85386,-73.85515,"(40.85386, -73.85515)",,,1120 NEILL AVENUE,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4516295,E-Bike,Sedan,,, +04/04/2022,13:25,MANHATTAN,10033,40.847355,-73.93518,"(40.847355, -73.93518)",WEST 178 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516376,Sedan,,,, +04/03/2022,4:29,,,40.72545,-73.837776,"(40.72545, -73.837776)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4516698,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/04/2022,17:04,MANHATTAN,10075,40.77364,-73.95986,"(40.77364, -73.95986)",LEXINGTON AVENUE,EAST 77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516254,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,13:00,MANHATTAN,10017,40.749157,-73.9727,"(40.749157, -73.9727)",2 AVENUE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516218,Sedan,Pick-up Truck,,, +10/14/2021,19:19,MANHATTAN,10001,40.7445322,-73.9888703,"(40.7445322, -73.9888703)",WEST 27 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468148,Taxi,,,, +04/04/2022,17:14,BROOKLYN,11203,40.650948,-73.94668,"(40.650948, -73.94668)",NEW YORK AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,7:50,,,,,,EAST 222 STREET,NEEDHAM AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4516796,Sedan,Sedan,Sedan,, +04/04/2022,17:00,BROOKLYN,11207,40.672897,-73.90192,"(40.672897, -73.90192)",,,108 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516426,Sedan,Sedan,,, +04/04/2022,0:00,,,40.781853,-73.82523,"(40.781853, -73.82523)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516611,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,7:20,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516300,Sedan,,,, +04/04/2022,6:12,BROOKLYN,11225,40.655216,-73.96194,"(40.655216, -73.96194)",,,231 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516341,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,9:40,QUEENS,11429,40.70198,-73.74105,"(40.70198, -73.74105)",114 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4516926,Pick-up Truck,Sedan,,, +04/04/2022,13:00,BRONX,10466,40.886383,-73.85597,"(40.886383, -73.85597)",,,859 EAST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516731,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,14:55,BROOKLYN,11225,40.671112,-73.96008,"(40.671112, -73.96008)",,,260 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516350,Sedan,Bus,,, +03/30/2022,12:00,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Unspecified,,,,,4516742,E-Bike,,,, +04/04/2022,3:45,QUEENS,11373,40.74623,-73.89037,"(40.74623, -73.89037)",75 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4515900,Sedan,,,, +04/03/2022,19:00,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516861,Sedan,Sedan,,, +03/29/2022,1:05,,,40.80964,-73.947845,"(40.80964, -73.947845)",7 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516780,Sedan,Taxi,,, +04/04/2022,21:20,,,40.668556,-73.84714,"(40.668556, -73.84714)",151 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516238,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,1:19,,,40.768227,-73.929146,"(40.768227, -73.929146)",21 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4516455,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,9:20,,,40.879463,-73.85249,"(40.879463, -73.85249)",EAST 218 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4516156,Sedan,Sedan,,, +04/04/2022,0:34,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516445,Sedan,AMBULANCE,,, +03/30/2022,16:58,BRONX,10457,40.846462,-73.893684,"(40.846462, -73.893684)",,,593 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516690,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,23:13,MANHATTAN,10002,40.716682,-73.98244,"(40.716682, -73.98244)",DELANCEY STREET,WILLETT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516326,Moped,Sedan,,, +04/04/2022,13:56,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516585,Box Truck,Sedan,,, +04/04/2022,15:01,BROOKLYN,11219,40.633347,-73.99387,"(40.633347, -73.99387)",52 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516386,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,16:30,BROOKLYN,11235,40.580574,-73.95359,"(40.580574, -73.95359)",,,37 WEST END AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516196,Sedan,,,, +04/04/2022,12:25,BROOKLYN,11205,40.6958,-73.96369,"(40.6958, -73.96369)",,,340 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4516215,Sedan,Sedan,Sedan,, +04/04/2022,9:25,BROOKLYN,11214,40.588867,-73.98826,"(40.588867, -73.98826)",,,178 BAY 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516089,Box Truck,Ambulance,,, +04/04/2022,10:30,QUEENS,11366,40.729,-73.781845,"(40.729, -73.781845)",,,187-15 UNION TURNPIKE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516280,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,17:10,BROOKLYN,11239,40.657005,-73.87224,"(40.657005, -73.87224)",ESSEX STREET,EGAN STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4516304,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,4:15,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4516415,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,17:00,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,18:40,QUEENS,11429,40.709297,-73.739395,"(40.709297, -73.739395)",,,217-24 109 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516198,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,13:09,BROOKLYN,11220,40.638687,-74.032234,"(40.638687, -74.032234)",,,90 68 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516220,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,2:00,,,,,,13 PIERCE STREET,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516638,Sedan,Sedan,,, +04/04/2022,19:25,QUEENS,11372,40.753048,-73.89155,"(40.753048, -73.89155)",75 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516494,Station Wagon/Sport Utility Vehicle,Bike,,, +04/04/2022,9:35,BRONX,10459,40.822697,-73.886444,"(40.822697, -73.886444)",,,1361 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516521,Sedan,Sedan,,, +04/04/2022,8:58,MANHATTAN,10065,0,0,"(0.0, 0.0)",EAST 65 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516079,Sedan,,,, +04/04/2022,14:05,BRONX,10467,40.87998,-73.876175,"(40.87998, -73.876175)",,,245 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4516338,3-Door,,,, +04/04/2022,13:26,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516133,Sedan,,,, +04/04/2022,22:45,BROOKLYN,11207,40.67562,-73.88826,"(40.67562, -73.88826)",BARBEY STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516422,Sedan,,,, +04/04/2022,8:45,,,40.87918,-73.88208,"(40.87918, -73.88208)",KOSSUTH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516068,Sedan,,,, +04/04/2022,23:58,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4516225,Convertible,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,19:51,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4516490,E-Bike,,,, +04/04/2022,12:30,QUEENS,11691,40.595932,-73.75963,"(40.595932, -73.75963)",SEAGIRT BOULEVARD,BEACH 26 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4516380,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,15:23,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516174,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,18:10,,,40.685276,-73.77241,"(40.685276, -73.77241)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516795,PK,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,6:25,QUEENS,11372,40.754528,-73.87737,"(40.754528, -73.87737)",,,90-14 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516758,Sedan,,,, +04/04/2022,23:50,BROOKLYN,11230,40.631138,-73.966484,"(40.631138, -73.966484)",,,1082 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516288,Sedan,Sedan,,, +04/04/2022,18:00,BRONX,10460,40.835705,-73.888756,"(40.835705, -73.888756)",EAST 173 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516247,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,16:40,BROOKLYN,11230,40.627674,-73.96092,"(40.627674, -73.96092)",AVENUE I,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516675,Station Wagon/Sport Utility Vehicle,Bus,,, +03/27/2022,11:56,,,40.798126,-73.94832,"(40.798126, -73.94832)",5 AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Following Too Closely,,,,4516715,Sedan,Sedan,,, +04/04/2022,12:30,BROOKLYN,11211,40.716965,-73.954834,"(40.716965, -73.954834)",,,225 NORTH 8 STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4516296,Tractor Truck Diesel,,,, +04/04/2022,17:15,BRONX,10467,40.87485,-73.86425,"(40.87485, -73.86425)",,,745 MAGENTA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4516165,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,13:21,,,40.57979,-74.1275,"(40.57979, -74.1275)",ROCKLAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516120,Sedan,Sedan,,, +03/24/2022,11:00,,,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516818,,,,, +04/04/2022,15:00,QUEENS,11416,40.681,-73.85472,"(40.681, -73.85472)",,,84-42 102 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516432,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,18:10,QUEENS,11378,40.728596,-73.89086,"(40.728596, -73.89086)",72 PLACE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4516554,Sedan,,,, +04/04/2022,14:48,QUEENS,11354,40.76718,-73.811646,"(40.76718, -73.811646)",153 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4516205,E-Bike,Sedan,,, +06/21/2021,17:10,,,40.74424,-73.84717,"(40.74424, -73.84717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429675,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/04/2022,17:20,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,WATTS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516309,Box Truck,Sedan,,, +04/04/2022,16:45,QUEENS,11101,40.751957,-73.93475,"(40.751957, -73.93475)",40 AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516476,Pick-up Truck,Sedan,,, +04/04/2022,15:09,,,40.648182,-73.93001,"(40.648182, -73.93001)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516374,Bus,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,10:39,BROOKLYN,11234,40.63747,-73.91918,"(40.63747, -73.91918)",RALPH AVENUE,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4516111,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,5:28,BROOKLYN,11226,40.643303,-73.9478,"(40.643303, -73.9478)",CLARENDON ROAD,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4516062,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/04/2022,8:04,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4516230,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,8:15,,,40.84046,-73.88596,"(40.84046, -73.88596)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516321,Tractor Truck Diesel,Sedan,,, +04/04/2022,18:29,QUEENS,11354,40.77223,-73.829575,"(40.77223, -73.829575)",28 ROAD,139 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,23:29,,,40.694263,-73.95235,"(40.694263, -73.95235)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516770,Sedan,Sedan,,, +04/01/2022,3:40,QUEENS,11385,40.70416,-73.85617,"(40.70416, -73.85617)",,,81-40 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4516787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,15:09,BRONX,10460,40.83957,-73.88279,"(40.83957, -73.88279)",,,1880 BOSTON ROAD,1,0,0,0,0,0,1,0,Other Vehicular,Turning Improperly,,,,4516688,Motorcycle,Sedan,,, +04/02/2022,17:37,QUEENS,11373,40.744263,-73.876755,"(40.744263, -73.876755)",WHITNEY AVENUE,HAMPTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516901,Station Wagon/Sport Utility Vehicle,,,, +09/26/2022,13:16,BRONX,10459,40.828754,-73.889435,"(40.828754, -73.889435)",,,1001 HOME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4568202,Sedan,,,, +04/04/2022,20:20,BROOKLYN,11236,40.63083,-73.90736,"(40.63083, -73.90736)",EAST 80 STREET,PAERDEGAT 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516240,Station Wagon/Sport Utility Vehicle,,,, +03/23/2022,12:31,,,40.728287,-73.84722,"(40.728287, -73.84722)",108 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516699,PK,Sedan,,, +04/04/2022,23:40,,,40.645073,-73.97438,"(40.645073, -73.97438)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516416,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:57,MANHATTAN,10016,40.75028,-73.98113,"(40.75028, -73.98113)",MADISON AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516157,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,9:37,QUEENS,11434,40.659504,-73.76878,"(40.659504, -73.76878)",148 AVENUE,177 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516457,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +03/06/2022,0:15,,,40.812138,-73.96636,"(40.812138, -73.96636)",HENRY HUDSON PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516834,Sedan,,,, +04/04/2022,11:23,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516387,Sedan,,,, +04/04/2022,8:00,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4516126,Sedan,,,, +04/04/2022,16:20,QUEENS,11413,40.665504,-73.75694,"(40.665504, -73.75694)",221 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4516199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:32,,,40.58489,-73.92885,"(40.58489, -73.92885)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516572,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,12:50,BROOKLYN,11221,40.69431,-73.93134,"(40.69431, -73.93134)",,,2 REID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516526,Sedan,,,, +04/04/2022,2:22,MANHATTAN,10011,40.73736,-73.99685,"(40.73736, -73.99685)",AVENUE OF THE AMERICAS,WEST 14 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516101,Tractor Truck Diesel,Sedan,,, +04/03/2022,23:00,BRONX,10467,40.87139,-73.86427,"(40.87139, -73.86427)",BURKE AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516902,Sedan,E-Bike,,, +10/08/2021,8:30,MANHATTAN,10029,40.7909056,-73.9391302,"(40.7909056, -73.9391302)",EAST 108 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4465991,Box Truck,Bus,,, +04/03/2022,11:15,STATEN ISLAND,10307,40.503876,-74.24901,"(40.503876, -74.24901)",,,158 FINLAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516692,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/04/2022,17:45,BROOKLYN,11211,40.71578,-73.94631,"(40.71578, -73.94631)",SKILLMAN AVENUE,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516299,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,10:45,,,40.703823,-73.8088,"(40.703823, -73.8088)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4516776,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,9:30,MANHATTAN,10026,40.802315,-73.95041,"(40.802315, -73.95041)",,,102 WEST 116 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516781,Sedan,Sedan,,, +04/04/2022,3:05,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4515991,Sedan,,,, +04/04/2022,16:40,BRONX,10456,40.834152,-73.90001,"(40.834152, -73.90001)",,,621 EAST 170 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516336,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,15:27,BROOKLYN,11215,40.671383,-73.97454,"(40.671383, -73.97454)",,,162 8 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516354,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +03/29/2022,22:05,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4516863,Motorcycle,,,, +04/04/2022,18:19,,,40.66858,-73.84223,"(40.66858, -73.84223)",SOUTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4516237,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,13:03,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516586,Sedan,Box Truck,,, +04/04/2022,14:36,,,40.880547,-73.92234,"(40.880547, -73.92234)",PALISADE AVENUE,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516279,Sedan,Box Truck,,, +04/04/2022,11:45,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,,,,4516344,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:23,BRONX,10472,40.829502,-73.87462,"(40.829502, -73.87462)",MORRISON AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4516193,Sedan,Sedan,,, +04/04/2022,8:23,MANHATTAN,10028,40.778137,-73.95449,"(40.778137, -73.95449)",3 AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516077,Sedan,Bus,,, +04/04/2022,5:55,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4516448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,11:10,,,40.803566,-73.96715,"(40.803566, -73.96715)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516656,Sedan,Box Truck,,, +04/04/2022,20:45,STATEN ISLAND,10304,40.60769,-74.08945,"(40.60769, -74.08945)",TARGEE STREET,CLOVE ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inexperience,,,,4516213,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/04/2022,14:50,,,40.63178,-73.945625,"(40.63178, -73.945625)",FLATBUSH AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516497,Sedan,Sedan,,, +03/31/2022,20:21,BROOKLYN,11217,40.68185,-73.98004,"(40.68185, -73.98004)",4 AVENUE,SAINT MARKS PLACE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4516923,Station Wagon/Sport Utility Vehicle,Bike,,, +04/04/2022,15:00,QUEENS,11366,40.720978,-73.809074,"(40.720978, -73.809074)",,,158-16 79 AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4516252,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/04/2022,9:00,MANHATTAN,10005,40.705185,-74.00638,"(40.705185, -74.00638)",,,129 FRONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516303,Sedan,Sedan,,, +04/01/2022,16:58,,,40.783974,-73.97031,"(40.783974, -73.97031)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516813,Station Wagon/Sport Utility Vehicle,Bike,,, +03/30/2022,17:04,QUEENS,11433,40.695995,-73.782776,"(40.695995, -73.782776)",110 AVENUE,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4516745,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/04/2022,19:40,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4516325,Sedan,Bike,,, +04/04/2022,9:25,BRONX,10456,40.828392,-73.90851,"(40.828392, -73.90851)",,,1088 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4516243,Sedan,Carry All,,, +03/27/2022,14:00,BRONX,10452,40.837673,-73.91922,"(40.837673, -73.91922)",EAST 169 STREET,GERARD AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4516702,Station Wagon/Sport Utility Vehicle,Taxi,,, +03/28/2022,18:12,MANHATTAN,10001,40.750206,-74.00234,"(40.750206, -74.00234)",WEST 27 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4516729,Sedan,Sedan,,, +04/04/2022,11:43,QUEENS,11430,,,,belt pkwy,van wyck expwy,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4516759,Sedan,Sedan,Sedan,, +04/04/2022,17:20,QUEENS,11691,40.604782,-73.754005,"(40.604782, -73.754005)",MOTT AVENUE,BEACH 22 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516289,Bus,Station Wagon/Sport Utility Vehicle,,, +06/17/2022,21:20,,,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4539156,Box Truck,Sedan,,, +07/01/2022,2:28,BROOKLYN,11235,40.588978,-73.94943,"(40.588978, -73.94943)",,,2971 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4542527,Sedan,Sedan,Sedan,, +07/03/2022,6:30,QUEENS,11435,40.700565,-73.81087,"(40.700565, -73.81087)",,,143-10 91 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543144,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2022,12:45,MANHATTAN,10026,40.801155,-73.959656,"(40.801155, -73.959656)",WEST 110 STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543489,Sedan,Sedan,,, +07/03/2022,16:15,BRONX,10469,40.874737,-73.855255,"(40.874737, -73.855255)",EAST 211 STREET,LACONIA AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4543331,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2022,18:50,BROOKLYN,11238,40.68416,-73.96907,"(40.68416, -73.96907)",FULTON STREET,CLERMONT AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4543643,Taxi,Sedan,,, +07/03/2022,1:14,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4542800,Sedan,,,, +07/03/2022,8:00,BRONX,10457,40.842987,-73.900345,"(40.842987, -73.900345)",EAST 174 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543245,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,3:09,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543396,Sedan,Sedan,,, +06/24/2022,9:45,MANHATTAN,10001,,,,7 avenue,28 Street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543611,Sedan,Sedan,,, +07/03/2022,19:00,MANHATTAN,10022,40.75843,-73.973076,"(40.75843, -73.973076)",EAST 52 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4543751,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,23:00,BROOKLYN,11207,40.661,-73.8979,"(40.661, -73.8979)",NEWPORT STREET,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543812,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2022,5:25,QUEENS,11413,40.677883,-73.74561,"(40.677883, -73.74561)",MERRICK BOULEVARD,224 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542862,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,17:40,MANHATTAN,10036,40.758762,-73.98745,"(40.758762, -73.98745)",,,252 WEST 45 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4543449,Flat Rack,Sedan,,, +07/02/2022,19:10,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4543688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,17:34,MANHATTAN,10009,40.730003,-73.98354,"(40.730003, -73.98354)",1 AVENUE,EAST 12 STREET,,1,0,0,0,1,0,0,0,Brakes Defective,Other Vehicular,,,,4543739,Station Wagon/Sport Utility Vehicle,Bike,,, +07/03/2022,20:30,,,40.82657,-73.944824,"(40.82657, -73.944824)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543586,Motorcycle,,,, +07/03/2022,0:12,,,40.841274,-73.91762,"(40.841274, -73.91762)",JEROME AVENUE,MACOMBS ROAD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542881,Taxi,E-Bike,,, +07/03/2022,18:55,QUEENS,11411,40.68512,-73.73222,"(40.68512, -73.73222)",121 AVENUE,233 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543102,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,3:55,,,40.721523,-73.941795,"(40.721523, -73.941795)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4543497,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/01/2022,17:03,BROOKLYN,11221,40.693314,-73.92496,"(40.693314, -73.92496)",VAN BUREN STREET,BUSHWICK AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4543514,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,1:25,,,,,,Joe DiMaggio Hwy,West 35 Street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543541,Moped,Sedan,,, +07/02/2022,13:12,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4543558,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,14:18,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543064,Sedan,,,, +04/05/2022,8:25,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Brakes Defective,,,,4516424,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,13:19,MANHATTAN,10033,40.8442,-73.93566,"(40.8442, -73.93566)",AUDUBON AVENUE,WEST 174 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4542950,Sedan,E-Scooter,,, +07/03/2022,0:45,BROOKLYN,11207,40.679535,-73.900475,"(40.679535, -73.900475)",BUSHWICK AVENUE,HIGHLAND BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543772,Sedan,,,, +07/02/2022,16:45,BROOKLYN,11208,40.681442,-73.86962,"(40.681442, -73.86962)",,,349 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543795,Sedan,Dump,,, +07/03/2022,6:10,,,40.870907,-73.90725,"(40.870907, -73.90725)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543019,Sedan,,,, +07/03/2022,13:35,,,40.68372,-73.78468,"(40.68372, -73.78468)",LONG STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4542952,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,10:37,MANHATTAN,10021,40.766666,-73.95929,"(40.766666, -73.95929)",,,309 EAST 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543715,Sedan,Pick-up Truck,,, +07/03/2022,5:00,QUEENS,11367,40.71802,-73.815926,"(40.71802, -73.815926)",,,146-15 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543097,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,11:19,,,40.706306,-73.919586,"(40.706306, -73.919586)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4542904,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/03/2022,15:56,BROOKLYN,11235,40.590202,-73.95361,"(40.590202, -73.95361)",,,1610 AVENUE Y,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,20:00,,,,,,LONG ISLAND EXPRESSWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4543377,Motorcycle,,,, +07/03/2022,14:52,MANHATTAN,10021,40.76527,-73.95213,"(40.76527, -73.95213)",EAST 71 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543467,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/01/2022,19:32,,,40.853874,-73.94049,"(40.853874, -73.94049)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4543577,Motorcycle,,,, +06/15/2022,13:45,MANHATTAN,10032,40.83144,-73.93825,"(40.83144, -73.93825)",,,409 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4543518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/02/2022,20:25,,,40.75254,-73.85261,"(40.75254, -73.85261)",ROOSEVELT AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543562,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/03/2022,12:56,BROOKLYN,11236,40.642242,-73.910774,"(40.642242, -73.910774)",FARRAGUT ROAD,EAST 88 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542937,Sedan,Sedan,,, +07/03/2022,7:50,QUEENS,11413,40.68067,-73.75059,"(40.68067, -73.75059)",,,133-04 218 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4543069,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,3:15,BRONX,10458,40.86283,-73.89418,"(40.86283, -73.89418)",,,314 EAST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4543291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,18:45,BROOKLYN,11218,40.647625,-73.97727,"(40.647625, -73.97727)",CATON AVENUE,EAST 4 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543764,Sedan,E-Bike,,, +07/02/2022,11:29,BROOKLYN,11221,40.693832,-73.909615,"(40.693832, -73.909615)",KNICKERBOCKER AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543513,Sedan,Sedan,,, +06/30/2022,21:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543627,Sedan,Sedan,,, +07/03/2022,0:45,BROOKLYN,11208,40.67901,-73.881004,"(40.67901, -73.881004)",,,3101 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543773,Sedan,Sedan,,, +07/03/2022,1:10,MANHATTAN,10033,40.84741,-73.93723,"(40.84741, -73.93723)",,,655 WEST 177 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543104,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,18:40,QUEENS,11412,40.697517,-73.75556,"(40.697517, -73.75556)",198 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543183,Sedan,,,, +06/26/2022,17:17,BROOKLYN,11224,40.57698,-73.981575,"(40.57698, -73.981575)",MERMAID AVENUE,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543720,Sedan,,,, +07/01/2022,23:40,BROOKLYN,11223,40.59148,-73.98133,"(40.59148, -73.98133)",WEST 11 STREET,AVENUE W,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543609,Sedan,Sedan,,, +06/13/2022,14:00,,,40.688614,-73.999435,"(40.688614, -73.999435)",WARREN STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543526,Sedan,,,, +04/05/2022,6:00,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516514,Box Truck,,,, +06/30/2022,13:29,MANHATTAN,10033,40.849995,-73.93866,"(40.849995, -73.93866)",WEST 180 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543548,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,15:25,,,40.625786,-73.89309,"(40.625786, -73.89309)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4543603,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/03/2022,0:06,QUEENS,11420,40.679333,-73.818474,"(40.679333, -73.818474)",,,121-19 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4543704,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/03/2022,0:07,BRONX,10473,40.82389,-73.87461,"(40.82389, -73.87461)",,,1600 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543365,Sedan,,,, +06/27/2022,7:20,QUEENS,11004,40.746483,-73.708755,"(40.746483, -73.708755)",,,79-39 263 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4543652,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,9:50,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543192,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,14:30,QUEENS,11415,40.712,-73.82546,"(40.712, -73.82546)",QUEENS BOULEVARD,83 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543503,Sedan,Sedan,,, +07/02/2022,17:00,MANHATTAN,10036,40.761868,-73.99869,"(40.761868, -73.99869)",,,627 WEST 43 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4543758,Bus,,,, +07/03/2022,16:16,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4543115,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +06/12/2022,0:27,BRONX,10466,40.89134,-73.85852,"(40.89134, -73.85852)",EAST 230 STREET,WHITE PLAINS ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4543615,Station Wagon/Sport Utility Vehicle,Bike,,, +07/03/2022,23:40,BROOKLYN,11208,40.68464,-73.87584,"(40.68464, -73.87584)",CHESTNUT STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4543777,Sedan,Sedan,Sedan,Sedan, +07/01/2022,11:00,,,40.750317,-73.99112,"(40.750317, -73.99112)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543479,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,7:46,,,40.73851,-73.8065,"(40.73851, -73.8065)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4543254,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/03/2022,13:30,,,,,,CLEARVIEW EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543480,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,11:50,,,40.591393,-73.907875,"(40.591393, -73.907875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543406,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2022,21:00,BRONX,10474,40.80536,-73.88122,"(40.80536, -73.88122)",WHITTIER STREET,RYAWA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543671,Sedan,Sedan,,, +07/03/2022,0:40,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4542801,Sedan,Sedan,,, +07/03/2022,6:15,QUEENS,11385,40.71245,-73.91853,"(40.71245, -73.91853)",FLUSHING AVENUE,WOODWARD AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4543726,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/21/2021,1:45,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,,,,4430244,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,17:30,BROOKLYN,11212,40.655907,-73.92152,"(40.655907, -73.92152)",,,9112 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430209,Sedan,,,, +06/21/2021,22:00,QUEENS,11377,40.743687,-73.90164,"(40.743687, -73.90164)",,,41-68 63 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430289,Sedan,,,, +06/21/2021,12:30,MANHATTAN,10032,40.834793,-73.942726,"(40.834793, -73.942726)",,,559 WEST 159 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430310,Van,,,, +06/19/2021,9:00,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",EAST 170 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430279,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,12:50,,,40.678574,-74.00358,"(40.678574, -74.00358)",LUQUER STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430302,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,14:15,QUEENS,11355,40.75815,-73.8109,"(40.75815, -73.8109)",DELAWARE AVENUE,MURRAY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543162,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,7:13,MANHATTAN,10016,40.747627,-73.976746,"(40.747627, -73.976746)",EAST 37 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429599,Sedan,Flat Bed,,, +06/21/2021,23:44,BROOKLYN,11228,40.617397,-74.00879,"(40.617397, -74.00879)",,,1344 79 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4429738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,10:35,QUEENS,11414,40.666214,-73.85116,"(40.666214, -73.85116)",,,82-35 153 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429647,Sedan,Sedan,,, +06/21/2021,6:00,BRONX,10460,40.84181,-73.879425,"(40.84181, -73.879425)",,,1028 EAST 179 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430087,Sedan,,,, +06/19/2021,2:30,BRONX,10465,40.83584,-73.8364,"(40.83584, -73.8364)",BALCOM AVENUE,WATERBURY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,1:09,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429171,Sedan,Sedan,,, +06/21/2021,15:40,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429625,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,10:53,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429883,Sedan,Sedan,,, +06/21/2021,9:40,QUEENS,11373,40.746666,-73.8749,"(40.746666, -73.8749)",DENMAN STREET,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429669,Sedan,Sedan,,, +06/21/2021,7:30,STATEN ISLAND,10304,40.61289,-74.082985,"(40.61289, -74.082985)",,,240 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430036,Sedan,,,, +06/21/2021,14:00,,,40.850773,-73.93543,"(40.850773, -73.93543)",BROADWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430138,Sedan,Beverage Truck,,, +06/21/2021,0:08,BRONX,10454,40.80734,-73.91873,"(40.80734, -73.91873)",,,518 EAST 138 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4429290,Sedan,Sedan,,, +06/21/2021,14:25,BRONX,10457,0,0,"(0.0, 0.0)",,,2032 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4430080,E-Scooter,Sedan,,, +06/21/2021,5:50,MANHATTAN,10027,40.813175,-73.94662,"(40.813175, -73.94662)",,,230 WEST 131 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4430125,Sedan,,,, +06/21/2021,21:31,QUEENS,11416,40.684258,-73.84604,"(40.684258, -73.84604)",WOODHAVEN BOULEVARD,101 AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4430011,Sedan,Sedan,,, +06/21/2021,4:57,,,40.62139,-73.99555,"(40.62139, -73.99555)",66 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429398,Pick-up Truck,Sedan,Sedan,, +06/21/2021,14:15,,,40.776016,-73.78441,"(40.776016, -73.78441)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429577,Box Truck,Tractor Truck Diesel,,, +06/21/2021,23:20,QUEENS,11101,40.73695,-73.93131,"(40.73695, -73.93131)",GREENPOINT AVENUE,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4429756,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,15:43,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429805,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,21:56,QUEENS,11422,40.663998,-73.7318,"(40.663998, -73.7318)",,,248-04 139 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4429905,Sedan,Sedan,Sedan,, +06/21/2021,14:09,BROOKLYN,11219,40.635757,-73.99486,"(40.635757, -73.99486)",NEW UTRECHT AVENUE,50 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429969,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,13:55,BROOKLYN,11214,40.602722,-73.99515,"(40.602722, -73.99515)",,,2136 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429557,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,5:30,BROOKLYN,11201,,,,,,345 ADAMS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429501,Sedan,Box Truck,,, +06/11/2021,0:00,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430163,Sedan,Motorcycle,,, +06/21/2021,10:45,STATEN ISLAND,10306,40.572422,-74.14111,"(40.572422, -74.14111)",RICHMOND ROAD,LIGHTHOUSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429548,Pick-up Truck,,,, +06/21/2021,11:00,,,40.846565,-73.92589,"(40.846565, -73.92589)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4429504,tow truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/21/2021,9:00,QUEENS,11101,40.757423,-73.92247,"(40.757423, -73.92247)",34 AVENUE,37 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4430100,Sedan,Sedan,Sedan,Sedan, +06/21/2021,16:00,STATEN ISLAND,10306,40.577366,-74.11145,"(40.577366, -74.11145)",BANCROFT AVENUE,SOUTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429569,Sedan,Sedan,,, +06/21/2021,7:05,QUEENS,11419,40.693127,-73.83134,"(40.693127, -73.83134)",ATLANTIC AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429448,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,9:00,BROOKLYN,11218,,,,OCEAN PARKWAY,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429968,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,22:47,,,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4429658,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,19:00,MANHATTAN,10038,40.706787,-74.00512,"(40.706787, -74.00512)",,,180 WATER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429694,Sedan,,,, +06/15/2021,3:26,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430003,Sedan,,,, +06/21/2021,13:24,QUEENS,11369,40.76872,-73.86822,"(40.76872, -73.86822)",,,102-40 DITMARS BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429842,Sedan,Taxi,,, +06/21/2021,17:22,BROOKLYN,11219,40.637413,-73.9991,"(40.637413, -73.9991)",FORT HAMILTON PARKWAY,51 STREET,,1,0,0,0,1,0,0,0,Steering Failure,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4429976,E-Bike,Bike,,, +06/21/2021,7:40,,,40.60518,-73.98018,"(40.60518, -73.98018)",WEST 7 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429482,Sedan,,,, +06/21/2021,17:25,MANHATTAN,10011,40.735306,-74.00037,"(40.735306, -74.00037)",GREENWICH AVENUE,CHARLES STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429562,Pick-up Truck,Sedan,,, +06/21/2021,17:50,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429634,Sedan,Tractor Truck Gasoline,,, +06/19/2021,19:45,MANHATTAN,10025,40.793896,-73.96786,"(40.793896, -73.96786)",,,120 WEST 97 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430155,Station Wagon/Sport Utility Vehicle,Moped,,, +06/21/2021,21:28,,,40.601204,-74.06509,"(40.601204, -74.06509)",LILY POND AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4429801,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,19:14,BRONX,10465,40.829224,-73.826225,"(40.829224, -73.826225)",LAFAYETTE AVENUE,REVERE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4430053,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/20/2021,8:30,BRONX,10459,40.821255,-73.89167,"(40.821255, -73.89167)",,,953 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4430164,Sedan,,,, +06/21/2021,11:45,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4429578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2021,21:55,,,40.61424,-73.98824,"(40.61424, -73.98824)",BAY RIDGE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,,,4429610,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/20/2021,0:31,BROOKLYN,11234,40.607876,-73.92554,"(40.607876, -73.92554)",AVENUE U,RYDER STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4430105,Sedan,,,, +06/21/2021,9:00,,,40.716694,-73.76059,"(40.716694, -73.76059)",201 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429521,Sedan,Sedan,,, +06/18/2021,14:00,STATEN ISLAND,10310,40.63472,-74.10894,"(40.63472, -74.10894)",CASTLETON AVENUE,DAVIS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430035,Sedan,Bike,,, +06/21/2021,21:30,,,40.663227,-73.93159,"(40.663227, -73.93159)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,20:22,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4429945,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/21/2021,16:00,BROOKLYN,11224,40.575512,-73.98241,"(40.575512, -73.98241)",SURF AVENUE,WEST 15 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4430020,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,11:44,QUEENS,11106,40.757156,-73.928185,"(40.757156, -73.928185)",,,35-37 32 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,1:52,BROOKLYN,11223,40.59034,-73.972084,"(40.59034, -73.972084)",AVENUE X,WEST 2 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429652,Sedan,,,, +06/07/2021,16:34,BRONX,10471,40.9075,-73.89774,"(40.9075, -73.89774)",,,227 WEST 260 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430071,Sedan,,,, +06/21/2021,14:30,QUEENS,11373,40.742786,-73.88264,"(40.742786, -73.88264)",BROADWAY,BRITTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429680,Sedan,,,, +06/21/2021,19:15,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4429618,Sedan,Sedan,,, +06/21/2021,10:56,,,40.666294,-73.79899,"(40.666294, -73.79899)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429786,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,9:08,QUEENS,11375,40.718887,-73.8416,"(40.718887, -73.8416)",72 ROAD,AUSTIN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430147,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,19:20,STATEN ISLAND,10306,40.55848,-74.121605,"(40.55848, -74.121605)",BROOK AVENUE,AVISTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429587,Pick-up Truck,Bike,,, +06/20/2021,9:30,STATEN ISLAND,10310,40.628937,-74.117645,"(40.628937, -74.117645)",,,851 FOREST AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430043,Sedan,,,, +06/21/2021,7:00,QUEENS,11417,40.680305,-73.844536,"(40.680305, -73.844536)",CROSS BAY BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4430181,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,10:40,,,40.83932,-73.91503,"(40.83932, -73.91503)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429727,Sedan,,,, +06/21/2021,21:31,BROOKLYN,11234,40.61664,-73.918915,"(40.61664, -73.918915)",,,1588 EAST 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429626,Sedan,Sedan,,, +06/21/2021,15:00,BRONX,10467,40.874184,-73.86577,"(40.874184, -73.86577)",,,731 BARTHOLDI STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429728,Sedan,,,, +06/21/2021,16:38,QUEENS,11368,40.741337,-73.85933,"(40.741337, -73.85933)",102 STREET,STRONG AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429670,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,18:56,,,40.8827,-73.892845,"(40.8827, -73.892845)",SEDGWICK AVENUE,STEVENSON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430076,Sedan,Bus,,, +06/21/2021,2:00,BRONX,10467,40.88078,-73.88347,"(40.88078, -73.88347)",JEROME AVENUE,EAST 208 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429185,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,17:40,BROOKLYN,11228,40.611073,-74.00896,"(40.611073, -74.00896)",,,1525 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430116,Sedan,Sedan,,, +06/10/2021,22:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430268,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,12:59,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429604,Pick-up Truck,Ambulance,,, +06/15/2021,15:30,,,40.589367,-73.98093,"(40.589367, -73.98093)",AVENUE X,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430015,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,4:23,BROOKLYN,11234,40.623764,-73.92425,"(40.623764, -73.92425)",,,5313 AVENUE L,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4430239,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Taxi, +06/21/2021,17:20,BROOKLYN,11220,40.644985,-74.01769,"(40.644985, -74.01769)",55 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4430180,,,,, +06/21/2021,4:12,,,40.742607,-73.893776,"(40.742607, -73.893776)",WOODSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429317,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,8:50,QUEENS,11436,40.667473,-73.79388,"(40.667473, -73.79388)",INWOOD STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4430085,Sedan,Sedan,,, +06/21/2021,0:00,BROOKLYN,11234,40.618652,-73.9317,"(40.618652, -73.9317)",EAST 45 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4429584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,1:50,QUEENS,11368,40.744637,-73.857285,"(40.744637, -73.857285)",,,49-14 106 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429671,Sedan,,,, +06/18/2021,9:09,MANHATTAN,10030,40.81401,-73.94466,"(40.81401, -73.94466)",7 AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4430126,Sedan,Box Truck,,, +06/21/2021,12:16,BROOKLYN,11236,40.641003,-73.90817,"(40.641003, -73.90817)",,,700 EAST 89 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4429619,Sedan,Sedan,Sedan,Pick-up Truck,Sedan +05/26/2021,18:55,MANHATTAN,10007,40.71507,-74.01227,"(40.71507, -74.01227)",,,101 MURRAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430010,Tow Truck / Wrecker,Sedan,,, +06/19/2021,3:10,STATEN ISLAND,10310,40.637466,-74.12461,"(40.637466, -74.12461)",RICHMOND TERRACE,DONGAN STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4430042,Sedan,Sedan,,, +06/21/2021,13:38,QUEENS,11417,40.670628,-73.84742,"(40.670628, -73.84742)",NORTH CONDUIT AVENUE,WHITELAW STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429648,Sedan,,,, +06/21/2021,11:00,BROOKLYN,11209,40.61254,-74.03309,"(40.61254, -74.03309)",,,424 100 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430211,Sedan,,,, +06/08/2021,3:00,,,40.844448,-73.82846,"(40.844448, -73.82846)",JARVIS AVENUE,MIDDLETOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430061,Sedan,,,, +07/02/2022,22:50,,,40.82156,-73.95836,"(40.82156, -73.95836)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Passing Too Closely,,,,4543593,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,10:50,QUEENS,11102,40.777332,-73.922745,"(40.777332, -73.922745)",,,24-09 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430103,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,12:20,BRONX,10457,40.844177,-73.90292,"(40.844177, -73.90292)",WEBSTER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429510,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,16:35,BROOKLYN,11203,40.64028,-73.94363,"(40.64028, -73.94363)",NEWKIRK AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4429851,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/14/2021,11:30,BROOKLYN,11236,40.645676,-73.92007,"(40.645676, -73.92007)",,,1266 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430203,Sedan,,,, +06/21/2021,21:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429600,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,0:00,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4429999,Sedan,,,, +06/21/2021,17:20,,,40.745922,-73.97011,"(40.745922, -73.97011)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4430135,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,12:30,BROOKLYN,11222,0,0,"(0.0, 0.0)",,,90 GUERNSEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429489,Sedan,,,, +06/21/2021,3:40,,,40.82804,-73.94251,"(40.82804, -73.94251)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429736,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,22:55,BROOKLYN,11203,40.646557,-73.92593,"(40.646557, -73.92593)",BEVERLEY ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4429865,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,13:17,MANHATTAN,10013,40.717865,-74.00565,"(40.717865, -74.00565)",,,250 CHURCH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429532,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,6:50,,,40.706306,-73.919586,"(40.706306, -73.919586)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429633,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/19/2021,18:25,BRONX,10463,40.87397,-73.906494,"(40.87397, -73.906494)",,,2811 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430055,Sedan,,,, +06/21/2021,0:44,,,40.75982,-73.9139,"(40.75982, -73.9139)",31 AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4430095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,17:20,QUEENS,11432,40.726234,-73.78877,"(40.726234, -73.78877)",,,80-24 SURREY PLACE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,17:00,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,10:35,BRONX,10455,40.816032,-73.90809,"(40.816032, -73.90809)",JACKSON AVENUE,EAST 152 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429639,Station Wagon/Sport Utility Vehicle,FDNY TRUCK,,, +06/16/2021,12:50,BRONX,10474,40.81533,-73.88767,"(40.81533, -73.88767)",,,739 COSTER STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4430309,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,16:45,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430156,Sedan,Box Truck,,, +06/21/2021,20:15,,,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430047,E-Scooter,,,, +05/21/2021,18:00,,,40.825382,-73.926186,"(40.825382, -73.926186)",GERARD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430280,Sedan,,,, +06/21/2021,19:24,QUEENS,11368,40.75758,-73.85841,"(40.75758, -73.85841)",,,33-20 111 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429840,Sedan,Bike,,, +06/21/2021,4:17,QUEENS,11418,40.69169,-73.83898,"(40.69169, -73.83898)",93 AVENUE,107 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429384,Sedan,Sedan,,, +06/21/2021,0:08,BROOKLYN,11218,40.636993,-73.97619,"(40.636993, -73.97619)",,,615 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429974,Sedan,,,, +06/21/2021,0:39,,,40.65605,-73.92361,"(40.65605, -73.92361)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4429571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,7:50,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,16:00,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4429747,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle,, +06/21/2021,20:42,BRONX,10467,40.87028,-73.878395,"(40.87028, -73.878395)",EAST 202 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,,,,4429656,Sedan,,,, +06/21/2021,8:52,,,,,,49 STREET,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430099,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,8:18,MANHATTAN,10013,40.722324,-74.01178,"(40.722324, -74.01178)",WEST STREET,LAIGHT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429692,Sedan,Sedan,Sedan,, +06/18/2021,14:49,BRONX,10465,40.828125,-73.84105,"(40.828125, -73.84105)",BRUSH AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430050,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,0:20,,,40.699013,-73.79573,"(40.699013, -73.79573)",160 STREET,,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429608,Sedan,E-Bike,,, +06/19/2021,6:10,BROOKLYN,11205,40.6972,-73.952934,"(40.6972, -73.952934)",PARK AVENUE,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4430022,E-Bike,,,, +06/21/2021,18:00,BRONX,10455,40.818336,-73.907005,"(40.818336, -73.907005)",EAST 156 STREET,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429637,E-Bike,Sedan,,, +06/21/2021,12:44,BROOKLYN,11214,40.606384,-74.00121,"(40.606384, -74.00121)",86 STREET,BAY 20 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4429896,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/21/2021,9:10,,,40.607147,-74.01157,"(40.607147, -74.01157)",BAY 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,0:00,BROOKLYN,11212,40.66479,-73.91532,"(40.66479, -73.91532)",BLAKE AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429718,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,8:00,BRONX,10461,40.841526,-73.84189,"(40.841526, -73.84189)",BLONDELL AVENUE,FINK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429556,Sedan,,,, +06/21/2021,21:53,BRONX,10452,40.83163,-73.92252,"(40.83163, -73.92252)",EAST 165 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429730,Sedan,,,, +06/21/2021,18:07,MANHATTAN,10022,40.754875,-73.96853,"(40.754875, -73.96853)",2 AVENUE,EAST 50 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4429603,Taxi,Bike,,, +06/21/2021,11:35,,,40.616352,-73.98245,"(40.616352, -73.98245)",63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429714,Sedan,Box Truck,,, +06/19/2021,1:30,,,,,,101 AVENUE,VANWYCK EXPRESSWAY,,8,0,0,0,0,0,8,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4430069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,17:27,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",FLATBUSH AVENUE,PACIFIC STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4429651,Sedan,,,, +06/19/2021,3:49,,,40.892223,-73.88464,"(40.892223, -73.88464)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430077,Sedan,,,, +06/21/2021,0:04,BROOKLYN,11209,40.6334,-74.02699,"(40.6334, -74.02699)",,,7203 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429198,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,23:00,,,40.82309,-73.956345,"(40.82309, -73.956345)",WEST 138 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430118,,,,, +06/19/2021,15:35,,,40.579975,-73.97464,"(40.579975, -73.97464)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4430014,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,22:00,,,40.76268,-73.77052,"(40.76268, -73.77052)",42 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4430259,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,14:25,BROOKLYN,11236,40.649982,-73.91183,"(40.649982, -73.91183)",EAST 94 STREET,DITMAS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430204,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,16:00,BROOKLYN,11220,40.647243,-74.00633,"(40.647243, -74.00633)",,,548 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429869,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/21/2021,13:28,,,40.696564,-73.79125,"(40.696564, -73.79125)",108 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429531,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,11:50,QUEENS,11416,40.681606,-73.85536,"(40.681606, -73.85536)",84 STREET,101 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4429536,Sedan,Sedan,,, +06/21/2021,1:30,MANHATTAN,10016,40.74967,-73.98158,"(40.74967, -73.98158)",EAST 37 STREET,MADISON AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4429787,Sedan,Sedan,,, +06/23/2021,6:20,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4430000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,22:40,BROOKLYN,11208,40.6697,-73.87494,"(40.6697, -73.87494)",LOGAN STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4543804,Sedan,Sedan,,, +06/19/2021,12:45,,,40.726376,-73.76624,"(40.726376, -73.76624)",FRANCIS LEWIS BOULEVARD,GRAND CENTRAL PARKWAY,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4430114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,17:10,MANHATTAN,10003,40.72393,-73.99113,"(40.72393, -73.99113)",,,7 2 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,14:02,BROOKLYN,11211,40.711246,-73.947975,"(40.711246, -73.947975)",,,602 GRAND STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429853,Station Wagon/Sport Utility Vehicle,Bike,,, +06/21/2021,15:18,MANHATTAN,10040,40.856503,-73.93277,"(40.856503, -73.93277)",BROADWAY,WEST 190 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430145,Station Wagon/Sport Utility Vehicle,Motorscooter,Station Wagon/Sport Utility Vehicle,, +06/21/2021,18:50,BROOKLYN,11201,40.689144,-73.99071,"(40.689144, -73.99071)",BOERUM PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429591,Sedan,,,, +06/21/2021,17:15,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",CANAL STREET,VARICK STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429950,Sedan,Bike,,, +06/19/2021,10:40,BROOKLYN,11226,40.64519,-73.948,"(40.64519, -73.948)",BEVERLEY ROAD,EAST 31 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430202,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,0:41,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",JEFFERSON STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4429472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2021,16:39,,,40.685276,-73.77241,"(40.685276, -73.77241)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4429788,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,18:00,BROOKLYN,11223,40.591103,-73.97173,"(40.591103, -73.97173)",,,38 SOUTHGATE COURT,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429919,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,11:00,,,40.68218,-73.94659,"(40.68218, -73.94659)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429997,Sedan,,,, +06/21/2021,7:36,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,EAST BURNSIDE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429490,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/21/2021,11:15,,,40.790752,-73.98137,"(40.790752, -73.98137)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4429560,Sedan,Sedan,,, +06/19/2021,22:01,,,40.79599,-73.96896,"(40.79599, -73.96896)",WEST 99 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430158,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,21:57,QUEENS,11693,40.613453,-73.82044,"(40.613453, -73.82044)",,,304 CROSS BAY BOULEVARD,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4430172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,16:10,BROOKLYN,11214,40.608215,-73.99809,"(40.608215, -73.99809)",82 STREET,19 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4429580,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,16:20,,,40.765297,-73.83967,"(40.765297, -73.83967)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429673,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/02/2021,7:14,BRONX,10474,40.81802,-73.88881,"(40.81802, -73.88881)",,,854 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430152,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,20:00,QUEENS,11412,40.70317,-73.754105,"(40.70317, -73.754105)",112 AVENUE,202 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430013,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,11:00,,,40.755234,-73.941246,"(40.755234, -73.941246)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,8:28,BROOKLYN,11233,40.68623,-73.91786,"(40.68623, -73.91786)",HANCOCK STREET,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429507,Sedan,,,, +06/21/2021,17:45,QUEENS,11411,40.691715,-73.73483,"(40.691715, -73.73483)",118 AVENUE,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429601,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,0:27,BRONX,10472,40.833202,-73.86762,"(40.833202, -73.86762)",,,1306 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4429426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/21/2021,13:51,BROOKLYN,11205,40.687637,-73.97077,"(40.687637, -73.97077)",ADELPHI STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429573,Sedan,Sedan,,, +06/21/2021,11:50,MANHATTAN,10022,40.76256,-73.967026,"(40.76256, -73.967026)",,,165 EAST 60 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4430272,Pick-up Truck,,,, +06/21/2021,13:20,MANHATTAN,10029,40.792545,-73.94104,"(40.792545, -73.94104)",2 AVENUE,EAST 109 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429760,Sedan,E-Scooter,,, +06/21/2021,15:10,BROOKLYN,11203,40.653717,-73.93188,"(40.653717, -73.93188)",,,718 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429565,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/21/2021,18:21,,,40.893425,-73.88347,"(40.893425, -73.88347)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4430067,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,23:46,BROOKLYN,11207,40.653454,-73.88466,"(40.653454, -73.88466)",FLATLANDS AVENUE,VERMONT STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4543776,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,18:24,,,,,,FDR DRIVE,EAST 53 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4429620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2021,6:30,BROOKLYN,11206,40.704876,-73.93209,"(40.704876, -73.93209)",,,25 THAMES STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4429849,Sedan,Sedan,Sedan,, +06/21/2021,17:15,BROOKLYN,11218,40.641933,-73.97245,"(40.641933, -73.97245)",,,412 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429971,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,15:00,,,40.67948,-73.93291,"(40.67948, -73.93291)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429892,Sedan,,,, +06/21/2021,13:51,MANHATTAN,10013,40.718727,-74.00028,"(40.718727, -74.00028)",,,126 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429663,Box Truck,Sedan,,, +06/18/2021,18:36,STATEN ISLAND,10304,40.614594,-74.08212,"(40.614594, -74.08212)",,,180 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430039,Sedan,Sedan,,, +06/25/2022,21:10,BROOKLYN,11238,40.685738,-73.96532,"(40.685738, -73.96532)",,,425 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543642,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,16:11,MANHATTAN,10002,40.712208,-73.98072,"(40.712208, -73.98072)",JACKSON STREET,CHERRY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429614,Sedan,Sedan,,, +06/20/2021,21:10,BROOKLYN,11233,40.67655,-73.91484,"(40.67655, -73.91484)",,,2170 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430056,Sedan,,,, +06/21/2021,16:33,,,40.712578,-73.777534,"(40.712578, -73.777534)",184 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429607,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/21/2021,2:45,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4429334,Box Truck,Sedan,,, +06/18/2021,13:07,,,40.626778,-74.16309,"(40.626778, -74.16309)",,,2196 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430078,Pick-up Truck,Sedan,,, +06/16/2021,13:00,BRONX,10451,40.825573,-73.918465,"(40.825573, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430281,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,9:00,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429551,Sedan,,,, +06/21/2021,18:58,BRONX,10454,40.807808,-73.92384,"(40.807808, -73.92384)",WILLIS AVENUE,EAST 136 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429642,Sedan,,,, +06/20/2021,18:45,BROOKLYN,11210,40.636806,-73.939186,"(40.636806, -73.939186)",,,3914 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430212,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,12:55,MANHATTAN,10017,40.753876,-73.96809,"(40.753876, -73.96809)",,,333 EAST 49 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4430127,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,13:30,BROOKLYN,11224,40.580658,-73.985664,"(40.580658, -73.985664)",CROPSEY AVENUE,HART PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430017,Sedan,,,, +06/21/2021,16:00,BROOKLYN,11215,40.674,-73.982285,"(40.674, -73.982285)",5 AVENUE,1 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429649,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,10:00,BROOKLYN,11231,40.675297,-74.009926,"(40.675297, -74.009926)",DWIGHT STREET,WOLCOTT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430306,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,13:30,BRONX,10472,40.825165,-73.87742,"(40.825165, -73.87742)",,,1056 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429746,Sedan,,,, +06/04/2021,20:40,BROOKLYN,11205,40.69632,-73.960625,"(40.69632, -73.960625)",PARK AVENUE,TAAFFE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430023,Sedan,Sedan,,, +06/21/2021,0:00,BRONX,10475,40.882427,-73.8237,"(40.882427, -73.8237)",,,3333 CONNER STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429631,Sedan,Sedan,,, +06/21/2021,15:55,,,40.66606,-73.95863,"(40.66606, -73.95863)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4429596,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,9:20,BRONX,10463,40.87802,-73.90241,"(40.87802, -73.90241)",BAILEY AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430073,Sedan,Sedan,,, +05/07/2021,20:46,,,40.766994,-73.904144,"(40.766994, -73.904144)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430094,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,3:10,QUEENS,11356,40.78168,-73.84777,"(40.78168, -73.84777)",120 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4429821,,,,, +05/29/2021,19:10,MANHATTAN,10013,40.721233,-74.002525,"(40.721233, -74.002525)",,,30 GREENE STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4430007,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,20:55,BROOKLYN,11229,40.608536,-73.94541,"(40.608536, -73.94541)",,,1742 EAST 28 STREET,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,Unspecified,,,4429654,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2021,20:08,MANHATTAN,10035,,,,CENTRAL ROAD,HELL GATE CIRCLE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429720,Bike,Bike,,, +06/19/2021,21:40,QUEENS,11435,40.702744,-73.80592,"(40.702744, -73.80592)",149 STREET,LOWE COURT,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430141,Pick-up Truck,,,, +06/19/2021,22:24,STATEN ISLAND,10310,40.63173,-74.1249,"(40.63173, -74.1249)",CLOVE ROAD,CARY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430045,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,18:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430223,Taxi,Bus,,, +06/21/2021,6:00,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",WHITE PLAINS ROAD,EAST 241 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4429731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle, +06/20/2021,6:10,,,40.651108,-73.94283,"(40.651108, -73.94283)",CHURCH AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430205,Minibike,Motorcycle,,, +06/19/2021,11:50,BRONX,10463,40.8779,-73.91094,"(40.8779, -73.91094)",,,60 TERRACE VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4430051,Sedan,,,, +06/21/2021,1:11,BRONX,10456,40.8304,-73.90616,"(40.8304, -73.90616)",,,3495 3 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4429210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,19:25,BROOKLYN,11236,40.634792,-73.896965,"(40.634792, -73.896965)",AVENUE M,EAST 92 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4430121,Sedan,Sedan,,, +06/21/2021,6:25,BROOKLYN,11208,40.66659,-73.87132,"(40.66659, -73.87132)",,,1100 LORING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430074,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,3:30,,,40.666416,-73.738495,"(40.666416, -73.738495)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542863,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,10:20,,,40.635494,-74.00957,"(40.635494, -74.00957)",60 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429870,Sedan,,,, +06/21/2021,10:00,BRONX,10462,40.83134,-73.85092,"(40.83134, -73.85092)",,,1163 CASTLE HILL AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4429537,Station Wagon/Sport Utility Vehicle,Carry All,,, +06/21/2021,0:10,MANHATTAN,10023,,,,Amsterdam Avenue,West 62nd Street,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429858,Sedan,,,, +09/26/2022,18:10,QUEENS,11368,40.754456,-73.86038,"(40.754456, -73.86038)",,,36-17 108 STREET,1,0,0,0,0,0,1,0,Physical Disability,,,,,4567823,Sedan,,,, +06/21/2021,4:35,QUEENS,11103,40.759346,-73.91981,"(40.759346, -73.91981)",BROADWAY,38 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430098,Sedan,Sedan,,, +06/21/2021,14:00,,,40.585976,-73.98799,"(40.585976, -73.98799)",CROPSEY AVENUE,BAY 49 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430018,Sedan,Sedan,,, +06/21/2021,21:15,QUEENS,11411,40.69067,-73.73134,"(40.69067, -73.73134)",118 AVENUE,231 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4429661,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,22:10,,,40.735424,-73.84466,"(40.735424, -73.84466)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429682,Sedan,Sedan,,, +06/15/2021,6:00,,,40.741455,-73.84258,"(40.741455, -73.84258)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4430001,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/21/2021,5:00,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429775,Sedan,,,, +06/21/2021,17:30,QUEENS,11369,40.763626,-73.88116,"(40.763626, -73.88116)",88 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429564,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,14:15,BROOKLYN,11213,40.66838,-73.94108,"(40.66838, -73.94108)",,,1468 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429590,Station Wagon/Sport Utility Vehicle,,,, +05/23/2021,15:20,,,40.75777,-73.854164,"(40.75777, -73.854164)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4430193,Sedan,,,, +06/21/2021,11:10,BROOKLYN,11211,40.716484,-73.95704,"(40.716484, -73.95704)",DRIGGS AVENUE,NORTH 6 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4429476,Sedan,Dump,,, +06/21/2021,21:00,BRONX,10455,0,0,"(0.0, 0.0)",,,717 KELLY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430153,Sedan,,,, +06/21/2021,21:49,QUEENS,11434,40.67354,-73.78021,"(40.67354, -73.78021)",132 AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429797,Sedan,,,, +06/21/2021,15:17,BRONX,10454,40.81056,-73.92627,"(40.81056, -73.92627)",,,295 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429636,Sedan,Ambulance,,, +06/19/2021,13:20,,,,,,UTOPIA PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430113,Sedan,Sedan,,, +06/19/2021,14:00,BROOKLYN,11203,40.647114,-73.94338,"(40.647114, -73.94338)",TILDEN AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430254,Sedan,,,, +06/21/2021,11:43,BROOKLYN,11203,40.644215,-73.94308,"(40.644215, -73.94308)",,,1196 BROOKLYN AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429567,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,11:30,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",2 AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429597,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,19:00,QUEENS,11418,40.69169,-73.83898,"(40.69169, -73.83898)",107 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430008,Sedan,,,, +06/21/2021,19:30,BROOKLYN,11249,40.717995,-73.96094,"(40.717995, -73.96094)",,,85 NORTH 5 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4429929,Sedan,Bike,,, +06/21/2021,21:45,,,40.741524,-73.78456,"(40.741524, -73.78456)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4429958,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/21/2021,10:08,BROOKLYN,11207,40.668854,-73.89863,"(40.668854, -73.89863)",,,550 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429461,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,16:25,,,40.734974,-73.97987,"(40.734974, -73.97987)",,,EAST 20 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429710,Sedan,Sedan,,, +06/21/2021,12:50,QUEENS,11428,40.72106,-73.74026,"(40.72106, -73.74026)",217 STREET,93 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4429527,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,16:14,QUEENS,11432,40.71343,-73.780594,"(40.71343, -73.780594)",HILLSIDE AVENUE,182 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429818,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,5:07,,,40.85053,-73.905136,"(40.85053, -73.905136)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4429423,Sedan,Sedan,Sedan,, +06/21/2021,20:06,QUEENS,11413,40.68373,-73.75127,"(40.68373, -73.75127)",SPRINGFIELD BOULEVARD,131 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429602,Sedan,Motorcycle,,, +06/21/2021,9:55,QUEENS,11412,40.703613,-73.749565,"(40.703613, -73.749565)",112 ROAD,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4429916,Motorcycle,,,, +06/18/2021,6:00,MANHATTAN,10029,0,0,"(0.0, 0.0)",EAST 104 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430274,Sedan,Tractor Truck Diesel,,, +06/21/2021,16:50,QUEENS,11377,40.7487,-73.89617,"(40.7487, -73.89617)",BROOKLYN QUEENS EXPRESSWAY,BROADWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4429759,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/21/2021,16:35,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429559,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,12:50,QUEENS,11423,40.709476,-73.76393,"(40.709476, -73.76393)",100 AVENUE,195 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4430089,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +06/17/2021,6:13,BROOKLYN,11212,40.672447,-73.910484,"(40.672447, -73.910484)",,,1547 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4430059,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/21/2021,21:56,QUEENS,11417,40.674465,-73.84942,"(40.674465, -73.84942)",PITKIN AVENUE,133 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4429644,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/21/2021,20:10,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",FULTON AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,3:00,QUEENS,11418,40.69718,-73.84628,"(40.69718, -73.84628)",,,85-35 102 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430012,Station Wagon/Sport Utility Vehicle,,,, +05/30/2021,23:40,MANHATTAN,10019,40.76728,-73.99211,"(40.76728, -73.99211)",,,553 WEST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430038,Trailer,,,, +06/21/2021,18:00,BROOKLYN,11217,40.67968,-73.97826,"(40.67968, -73.97826)",PARK PLACE,5 AVENUE,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429650,Sedan,Bike,,, +06/19/2021,8:56,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430282,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,15:15,,,40.57333,-74.117836,"(40.57333, -74.117836)",ROSE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429554,Station Wagon/Sport Utility Vehicle,Van,,, +06/21/2021,3:50,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",CHURCH AVENUE,UTICA AVENUE,,1,0,1,0,0,0,0,0,,,,,,4430213,,,,, +06/21/2021,13:30,BRONX,10468,40.862114,-73.91331,"(40.862114, -73.91331)",,,301 WEST FORDHAM ROAD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4429505,,,,, +06/21/2021,18:30,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4430101,Sedan,,,, +06/21/2021,8:00,QUEENS,11362,40.749004,-73.73079,"(40.749004, -73.73079)",,,243-36 72 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429846,Sedan,,,, +06/21/2021,12:25,BROOKLYN,11218,40.646057,-73.98006,"(40.646057, -73.98006)",,,333 MC DONALD AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4429970,Van,Bike,,, +06/21/2021,1:30,BROOKLYN,11212,40.660107,-73.924324,"(40.660107, -73.924324)",,,217 EAST 93 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4429575,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/21/2021,15:00,MANHATTAN,10029,40.793186,-73.94057,"(40.793186, -73.94057)",EAST 110 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429665,Sedan,Motorcycle,,, +06/21/2021,12:00,BROOKLYN,11233,40.683582,-73.922844,"(40.683582, -73.922844)",,,185 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429891,Sedan,,,, +06/21/2021,15:24,BRONX,10461,40.843212,-73.83894,"(40.843212, -73.83894)",FINK AVENUE,WATERS PLACE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4429740,Sedan,,,, +06/21/2021,11:45,,,40.687008,-73.82219,"(40.687008, -73.82219)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429500,Ambulance,Sedan,,, +06/21/2021,6:54,,,40.752895,-73.98925,"(40.752895, -73.98925)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429376,Sedan,Bike,,, +06/21/2021,22:03,QUEENS,11365,40.74211,-73.78325,"(40.74211, -73.78325)",HORACE HARDING EXPRESSWAY,193 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429605,Dump,Sedan,,, +06/19/2021,3:25,,,40.54783,-74.13952,"(40.54783, -74.13952)",HYLAN BOULEVARD,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4430166,Sedan,Sedan,,, +06/21/2021,18:15,,,,,,,,1 GULF AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429674,Sedan,,,, +06/21/2021,17:31,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4429579,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +05/16/2021,15:00,BRONX,10471,40.894222,-73.89651,"(40.894222, -73.89651)",,,6087 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430066,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,16:55,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430079,Bus,Bus,,, +06/20/2021,20:30,,,40.57281,-73.99916,"(40.57281, -73.99916)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430016,FDNY AMBUL,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,6:31,MANHATTAN,10040,40.858753,-73.93161,"(40.858753, -73.93161)",,,4519 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430128,Sedan,Sedan,,, +06/21/2021,5:45,QUEENS,11357,40.780693,-73.80671,"(40.780693, -73.80671)",CLINTONVILLE STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429615,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,12:58,MANHATTAN,10019,40.76326,-73.9747,"(40.76326, -73.9747)",,,12 WEST 57 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430032,Bike,Sedan,,, +06/21/2021,7:40,BRONX,10455,40.818592,-73.90003,"(40.818592, -73.90003)",LONGWOOD AVENUE,HEWITT PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4430162,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,10:20,,,40.758427,-73.99264,"(40.758427, -73.99264)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429799,Sedan,Tractor Truck Diesel,,, +06/21/2021,6:00,BROOKLYN,11203,40.644215,-73.94306,"(40.644215, -73.94306)",,,1195 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4430208,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,9:30,QUEENS,11375,40.712948,-73.85467,"(40.712948, -73.85467)",69 AVENUE,NANSEN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,9:18,STATEN ISLAND,10305,40.586105,-74.09109,"(40.586105, -74.09109)",SEAVIEW AVENUE,SIMPSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429547,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,15:15,,,40.58588,-73.912704,"(40.58588, -73.912704)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429873,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,18:30,QUEENS,11102,40.773067,-73.93393,"(40.773067, -73.93393)",,,3-02 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4430108,Sedan,,,, +06/21/2021,22:00,QUEENS,11411,40.691456,-73.73092,"(40.691456, -73.73092)",,,117-39 231 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4429777,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,12:10,QUEENS,11429,40.714016,-73.7389,"(40.714016, -73.7389)",,,102-14 217 LANE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4429522,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,17:05,STATEN ISLAND,10308,40.551598,-74.14901,"(40.551598, -74.14901)",,,3917 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4429568,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,23:30,QUEENS,11369,40.76329,-73.87705,"(40.76329, -73.87705)",,,92-22 ASTORIA BOULEVARD,2,0,0,0,0,0,2,0,Other Vehicular,Passing or Lane Usage Improper,,,,4429994,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,8:53,BROOKLYN,11220,40.636982,-74.004425,"(40.636982, -74.004425)",55 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429967,Sedan,,,, +06/21/2021,8:00,BRONX,10466,,,,,,1881 SCHIEFELIN PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4429480,Sedan,,,, +06/17/2021,18:45,MANHATTAN,10027,40.809692,-73.94213,"(40.809692, -73.94213)",,,55 WEST 129 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430129,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,15:53,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430215,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,13:30,,,40.68871,-73.95499,"(40.68871, -73.95499)",CLIFTON PLACE,,,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430019,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,14:50,BROOKLYN,11217,40.68052,-73.97352,"(40.68052, -73.97352)",,,506 BERGEN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4429653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/10/2021,17:00,QUEENS,11101,40.757378,-73.93884,"(40.757378, -73.93884)",,,21-15 38 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430072,Sedan,,,, +06/17/2021,14:50,BRONX,10463,40.88424,-73.89767,"(40.88424, -73.89767)",,,3804 BAILEY AVENUE,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4430075,Sedan,Sedan,,, +06/21/2021,0:50,,,40.710262,-73.95802,"(40.710262, -73.95802)",BORINQUEN PLACE,SOUTH 4 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429230,Sedan,Bike,,, +06/18/2021,12:45,QUEENS,11372,40.75169,-73.88562,"(40.75169, -73.88562)",35 AVENUE,81 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4430192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,0:00,MANHATTAN,10019,40.7642,-73.9829,"(40.7642, -73.9829)",,,236 WEST 54 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4429704,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,12:40,BRONX,10466,,,,,,1881 SCHIEFELIN PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4429734,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,4:16,,,40.8166,-73.942764,"(40.8166, -73.942764)",7 AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4430124,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,21:22,,,40.662712,-73.99568,"(40.662712, -73.99568)",4 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429611,Sedan,Pick-up Truck,,, +06/19/2021,10:20,QUEENS,11366,40.72291,-73.80468,"(40.72291, -73.80468)",164 STREET,78 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430002,E-Scooter,Sedan,,, +06/21/2021,10:00,BRONX,10451,40.821396,-73.92095,"(40.821396, -73.92095)",,,699 MORRIS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2021,10:38,BRONX,10459,40.819397,-73.901436,"(40.819397, -73.901436)",,,850 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430154,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,16:21,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429724,Sedan,Flat Bed,,, +06/21/2021,12:15,,,40.672073,-73.91135,"(40.672073, -73.91135)",ROCKAWAY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429563,Sedan,Flat Bed,,, +06/21/2021,4:00,BROOKLYN,11219,40.629368,-74.00876,"(40.629368, -74.00876)",66 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429449,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,11:00,MANHATTAN,10024,40.784904,-73.970566,"(40.784904, -73.970566)",,,16 WEST 85 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429859,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,22:30,,,40.693787,-73.81173,"(40.693787, -73.81173)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430009,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,16:47,MANHATTAN,10021,40.766235,-73.95633,"(40.766235, -73.95633)",,,419 EAST 70 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429598,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/21/2021,20:15,BROOKLYN,11207,40.67826,-73.897934,"(40.67826, -73.897934)",BUSHWICK AVENUE,MARGINAL ST WEST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429588,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,22:00,MANHATTAN,10021,40.772846,-73.95996,"(40.772846, -73.95996)",,,150 EAST 76 STREET,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4429944,Convertible,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2021,2:20,MANHATTAN,10030,40.819717,-73.94048,"(40.819717, -73.94048)",7 AVENUE,WEST 142 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4430139,E-Scooter,,,, +06/21/2021,16:44,,,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429629,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,15:55,BRONX,10463,40.87662,-73.91056,"(40.87662, -73.91056)",,,44 VANCORLEAR PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429660,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,14:55,,,40.753338,-73.92028,"(40.753338, -73.92028)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4430097,Sedan,Convertible,,, +06/19/2021,1:05,,,40.695824,-73.8211,"(40.695824, -73.8211)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4430052,Sedan,Sedan,Sedan,Sedan, +06/15/2021,17:20,,,40.68115,-74.00458,"(40.68115, -74.00458)",HAMILTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430305,Pick-up Truck,Sedan,,, +06/21/2021,15:35,BRONX,10470,40.895992,-73.86634,"(40.895992, -73.86634)",,,341 EAST 233 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429681,Taxi,Pick-up Truck,,, +06/21/2021,4:00,QUEENS,11355,40.755764,-73.834595,"(40.755764, -73.834595)",,,131-42 41 AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,Passing Too Closely,,,,4429616,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,17:05,QUEENS,11413,40.65855,-73.76616,"(40.65855, -73.76616)",182 STREET,149 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4430249,Hopper,Sedan,,, +06/18/2021,7:50,BRONX,10460,40.846592,-73.881065,"(40.846592, -73.881065)",BRONX PARK SOUTH,HONEYWELL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430034,Pick-up Truck,,,, +06/20/2021,7:00,STATEN ISLAND,10301,40.612244,-74.10627,"(40.612244, -74.10627)",,,106 RENWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430044,Sedan,,,, +06/19/2021,0:50,BRONX,10468,40.869045,-73.90299,"(40.869045, -73.90299)",,,135 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4430060,Sedan,Sedan,Sedan,, +06/21/2021,7:50,QUEENS,11691,40.596325,-73.76673,"(40.596325, -73.76673)",SEAGIRT BOULEVARD,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429646,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/25/2022,5:50,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543690,Sedan,,,, +07/03/2022,0:00,BROOKLYN,11217,40.68735,-73.973175,"(40.68735, -73.973175)",,,110 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543114,Sedan,,,, +07/01/2022,15:35,,,40.76099,-73.99077,"(40.76099, -73.99077)",9 AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4543741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,0:00,BRONX,10457,40.85192,-73.89694,"(40.85192, -73.89694)",EAST 180 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543201,Sedan,Sedan,,, +07/02/2022,19:25,,,40.8612,-73.93497,"(40.8612, -73.93497)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4543583,Sedan,,,, +07/03/2022,14:20,BRONX,10459,40.825798,-73.88972,"(40.825798, -73.88972)",WESTCHESTER AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543614,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,3:00,BROOKLYN,11207,40.66852,-73.890175,"(40.66852, -73.890175)",MILLER AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543796,Station Wagon/Sport Utility Vehicle,,,, +06/22/2022,17:00,BROOKLYN,11214,,,,,,118 BAY 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543719,Sedan,,,, +07/03/2022,12:00,BROOKLYN,11233,40.678425,-73.92744,"(40.678425, -73.92744)",ROCHESTER AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4542966,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,14:00,BROOKLYN,11222,40.71982,-73.94863,"(40.71982, -73.94863)",,,424 LEONARD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543020,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,15:22,,,40.830242,-73.9497,"(40.830242, -73.9497)",RIVERSIDE DRIVE,,,2,0,1,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4543521,Bike,,,, +07/03/2022,19:00,QUEENS,11422,40.659706,-73.743546,"(40.659706, -73.743546)",BROOKVILLE BOULEVARD,NEWHALL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543339,,,,, +07/01/2022,18:10,BROOKLYN,11207,40.66645,-73.89642,"(40.66645, -73.89642)",,,391 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543791,Sedan,Sedan,Sedan,, +07/03/2022,4:38,QUEENS,11433,40.69457,-73.78871,"(40.69457, -73.78871)",,,109-47 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543145,Sedan,Sedan,,, +07/01/2022,21:00,,,40.705425,-73.78258,"(40.705425, -73.78258)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543567,Tractor Truck Diesel,Sedan,,, +07/01/2022,7:30,MANHATTAN,10019,,,,5 AVENUE,West 57th street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543750,Ambulance,Box Truck,,, +07/03/2022,4:29,BROOKLYN,11236,40.643158,-73.91796,"(40.643158, -73.91796)",CHASE COURT,EAST 83 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542938,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2022,21:50,MANHATTAN,10036,40.756985,-73.987144,"(40.756985, -73.987144)",,,214 WEST 43 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4543484,Taxi,Pedicab,,, +06/30/2022,2:10,MANHATTAN,10018,40.757732,-73.99686,"(40.757732, -73.99686)",10 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543527,Tractor Truck Diesel,Sedan,,, +07/03/2022,19:35,BROOKLYN,11217,40.68039,-73.974625,"(40.68039, -73.974625)",,,65 6 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543007,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,1:54,BRONX,10462,40.852325,-73.86379,"(40.852325, -73.86379)",,,800 BRADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4543286,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/18/2022,6:29,BROOKLYN,11233,40.680367,-73.92226,"(40.680367, -73.92226)",,,274 RALPH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4543632,Sedan,,,, +07/02/2022,12:30,QUEENS,11420,40.68319,-73.814644,"(40.68319, -73.814644)",HAWTREE CREEK ROAD,127 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4543702,Sedan,,,, +07/01/2022,22:28,STATEN ISLAND,10301,40.647163,-74.08811,"(40.647163, -74.08811)",,,456 RICHMOND TERRACE,4,0,0,0,0,0,4,0,Physical Disability,Unspecified,,,,4543578,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,3:14,QUEENS,11101,40.750977,-73.934746,"(40.750977, -73.934746)",40 ROAD,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543126,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,21:04,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,DAVIDSON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543300,E-Bike,Bus,,, +07/01/2022,19:50,,,40.66893,-73.8665,"(40.66893, -73.8665)",AUTUMN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543769,Sedan,Sedan,,, +06/20/2022,18:30,QUEENS,11692,40.59213,-73.788956,"(40.59213, -73.788956)",ROCKAWAY BEACH BOULEVARD,BEACH 59 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543622,Sedan,,,, +06/19/2022,18:00,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543517,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,8:17,,,40.70153,-73.92314,"(40.70153, -73.92314)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4542877,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,22:00,STATEN ISLAND,10301,40.64384,-74.08308,"(40.64384, -74.08308)",,,33 CRESCENT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543561,Sedan,,,, +07/03/2022,12:00,,,40.731205,-73.76454,"(40.731205, -73.76454)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4543098,Sedan,Sedan,,, +07/01/2022,13:10,BROOKLYN,11217,40.67864,-73.97352,"(40.67864, -73.97352)",FLATBUSH AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543532,Sedan,,,, +07/01/2022,19:15,MANHATTAN,10001,40.749687,-73.99344,"(40.749687, -73.99344)",,,7 PENNSYLVANIA PLAZA,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4543496,Sedan,Bike,,, +07/03/2022,15:00,BRONX,10473,40.82226,-73.84564,"(40.82226, -73.84564)",HOMER AVENUE,HAVEMEYER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543371,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2022,0:05,BROOKLYN,11214,40.582687,-73.98627,"(40.582687, -73.98627)",,,2970 CROPSEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543714,Sedan,,,, +07/03/2022,13:29,BRONX,10471,40.893856,-73.896065,"(40.893856, -73.896065)",,,6063 BROADWAY,2,0,0,0,1,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4543466,Station Wagon/Sport Utility Vehicle,Bike,,, +01/07/2022,16:35,MANHATTAN,10001,40.745968,-73.9923,"(40.745968, -73.9923)",,,144 WEST 27 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493281,Sedan,Box Truck,,, +06/22/2021,1:20,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429668,Taxi,Sedan,,, +04/05/2022,12:15,,,,,,,,102 WEST DRIVE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4516696,E-Scooter,,,, +03/27/2021,21:12,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4403290,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,17:48,BROOKLYN,11228,40.609642,-74.014946,"(40.609642, -74.014946)",,,8766 14 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423321,Sedan,Motorcycle,,, +10/26/2021,21:31,QUEENS,11105,40.769394,-73.90998,"(40.769394, -73.90998)",,,40-13 ASTORIA BOULEVARD,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4471335,Sedan,Tractor Truck Diesel,,, +11/11/2021,13:40,QUEENS,11428,40.722916,-73.73151,"(40.722916, -73.73151)",224 STREET,93 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476431,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/17/2021,13:34,BROOKLYN,11225,40.667477,-73.95623,"(40.667477, -73.95623)",BEDFORD AVENUE,CARROLL STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4487304,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/16/2021,23:33,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,WEST 180 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4488726,Tractor Truck Diesel,Sedan,,, +12/27/2021,8:27,,,40.783897,-73.97407,"(40.783897, -73.97407)",WEST 82 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4490276,Sedan,,,, +12/31/2021,16:30,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,4:35,QUEENS,11354,40.775707,-73.84633,"(40.775707, -73.84633)",COLLEGE POINT BOULEVARD,25 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4491151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,4:25,,,40.69875,-73.9834,"(40.69875, -73.9834)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4491385,Sedan,,,, +01/07/2022,3:09,,,40.600735,-73.98218,"(40.600735, -73.98218)",AVENUE S,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4493360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/02/2016,7:28,BROOKLYN,11210,40.633427,-73.95298,"(40.633427, -73.95298)",BEDFORD AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,3456194,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,13:50,QUEENS,11691,40.602192,-73.75523,"(40.602192, -73.75523)",BEACH 22 STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4493347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/04/2022,7:00,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",12 AVENUE,WEST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493353,Station Wagon/Sport Utility Vehicle,Bus,,, +01/07/2022,10:44,QUEENS,11691,40.592735,-73.76405,"(40.592735, -73.76405)",BEACH 32 STREET,SPRAY VIEW AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4493355,Pick-up Truck,,,, +06/29/2022,11:28,QUEENS,11692,40.591537,-73.78959,"(40.591537, -73.78959)",,,184 BEACH 60 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543623,Sedan,,,, +12/19/2021,20:45,MANHATTAN,10033,,,,AUDUBON AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4490839,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,15:50,,,40.817593,-73.816376,"(40.817593, -73.816376)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4504420,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/19/2022,16:28,BRONX,10466,40.89029,-73.85782,"(40.89029, -73.85782)",,,733 EAST 229 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4504914,Sedan,,,, +02/20/2022,15:21,BRONX,10458,40.86789,-73.88279,"(40.86789, -73.88279)",,,2855 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504727,Sedan,Sedan,,, +02/19/2022,23:35,MANHATTAN,10128,40.7828,-73.947685,"(40.7828, -73.947685)",,,301 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4504863,Taxi,Sedan,Sedan,, +07/03/2022,6:35,QUEENS,11377,40.736668,-73.90279,"(40.736668, -73.90279)",,,50-21 63 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4543177,Sedan,,,, +06/29/2022,14:45,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543571,Sedan,Ambulance,,, +06/30/2022,10:25,,,40.58464,-73.96017,"(40.58464, -73.96017)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4543604,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,15:17,,,40.620247,-74.13793,"(40.620247, -74.13793)",GARRISON AVENUE,LIVERMORE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543299,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2022,12:45,,,40.848625,-73.92753,"(40.848625, -73.92753)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543540,Sedan,Sedan,,, +07/03/2022,5:00,,,40.619217,-74.160355,"(40.619217, -74.160355)",,,245 JULES DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542888,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,14:44,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4493086,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,16:45,,,40.754505,-73.965706,"(40.754505, -73.965706)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492237,Sedan,Taxi,,, +01/06/2022,23:19,,,40.58381,-73.96938,"(40.58381, -73.96938)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493063,Sedan,,,, +01/06/2022,16:14,QUEENS,11366,40.72714,-73.792305,"(40.72714, -73.792305)",UTOPIA PARKWAY,76 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4492703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,15:24,BRONX,10469,40.865475,-73.85774,"(40.865475, -73.85774)",HONE AVENUE,ALLERTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492375,,,,, +01/05/2022,14:30,QUEENS,11414,40.657497,-73.83947,"(40.657497, -73.83947)",CROSS BAY BOULEVARD,160 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,9:00,MANHATTAN,10019,40.765015,-73.98484,"(40.765015, -73.98484)",,,306 WEST 54 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492822,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,20:00,,,,,,37 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492685,,,,, +01/07/2022,7:10,MANHATTAN,10035,40.802086,-73.93701,"(40.802086, -73.93701)",,,2252 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4492671,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/07/2022,8:00,MANHATTAN,10033,40.847355,-73.93518,"(40.847355, -73.93518)",SAINT NICHOLAS AVENUE,WEST 178 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493060,Sedan,,,, +01/05/2022,20:18,QUEENS,11412,40.70568,-73.77114,"(40.70568, -73.77114)",104 AVENUE,186 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4492579,Pick-up Truck,Sedan,,, +01/06/2022,7:55,MANHATTAN,10024,,,,AMSTERDAM AVENUE,W 79 st,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492879,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,19:15,QUEENS,11436,40.67819,-73.80144,"(40.67819, -73.80144)",140 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492809,Sedan,Sedan,,, +01/06/2022,8:00,BROOKLYN,11211,40.711422,-73.95954,"(40.711422, -73.95954)",SOUTH 3 STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492562,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,0:20,,,40.703632,-73.85587,"(40.703632, -73.85587)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492004,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,13:00,MANHATTAN,10003,40.738228,-73.98782,"(40.738228, -73.98782)",,,250 PARK AVENUE SOUTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492953,Sedan,Sedan,,, +01/02/2022,15:27,BROOKLYN,11217,40.68178,-73.98192,"(40.68178, -73.98192)",,,572 WARREN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493113,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,5:46,,,40.86287,-73.934784,"(40.86287, -73.934784)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492270,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,16:31,QUEENS,11360,40.781406,-73.778175,"(40.781406, -73.778175)",23 AVENUE,212 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4492826,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,8:03,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492690,Sedan,,,, +01/04/2022,4:25,,,40.689445,-73.95513,"(40.689445, -73.95513)",,,LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4492746,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,7:00,,,40.665863,-73.86478,"(40.665863, -73.86478)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492451,Sedan,Sedan,,, +01/05/2022,16:04,BROOKLYN,11229,40.603245,-73.95214,"(40.603245, -73.95214)",,,2387 OCEAN AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4492886,Box Truck,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/06/2022,9:17,,,40.617252,-74.00703,"(40.617252, -74.00703)",78 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492994,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/05/2022,13:32,MANHATTAN,10029,40.785805,-73.942856,"(40.785805, -73.942856)",1 AVENUE,EAST 100 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4492328,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/06/2022,9:00,QUEENS,11370,40.760254,-73.88717,"(40.760254, -73.88717)",,,30-41 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493150,Taxi,,,, +01/05/2022,23:40,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",HYLAN BOULEVARD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4492613,Sedan,,,, +01/05/2022,10:15,,,40.853462,-73.88939,"(40.853462, -73.88939)",EAST 184 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4492646,Carry All,Ambulance,,, +01/07/2022,6:00,BRONX,10455,40.816868,-73.91639,"(40.816868, -73.91639)",,,2902 3 AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4493312,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,0:15,,,40.703632,-73.85587,"(40.703632, -73.85587)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Unsafe Speed,,,4492042,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/07/2022,13:53,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unsafe Speed,,,,4492790,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,17:14,MANHATTAN,10019,40.76432,-73.9772,"(40.76432, -73.9772)",WEST 57 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492334,Station Wagon/Sport Utility Vehicle,Bus,,, +01/05/2022,8:50,,,40.62305,-74.02114,"(40.62305, -74.02114)",81 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,,4492576,Sedan,Sedan,Sedan,Bus, +01/07/2022,14:12,BROOKLYN,11236,40.636024,-73.89506,"(40.636024, -73.89506)",AVENUE M,EAST 95 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4492717,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,0:45,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",MYRTLE AVENUE,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492780,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,16:00,,,,,,SHELL ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493099,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,14:30,MANHATTAN,10023,40.77242,-73.97873,"(40.77242, -73.97873)",CENTRAL PARK WEST,WEST 66 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Following Too Closely,,,,4492872,Sedan,E-Bike,,, +01/05/2022,7:43,,,40.841133,-73.924,"(40.841133, -73.924)",WEST 170 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493036,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/07/2022,6:15,QUEENS,11373,40.733116,-73.87058,"(40.733116, -73.87058)",HOFFMAN DRIVE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492604,Bus,Sedan,,, +01/07/2022,23:45,MANHATTAN,10018,40.758846,-73.996056,"(40.758846, -73.996056)",,,555 10 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493129,Taxi,Sedan,,, +01/06/2022,1:42,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492511,Sedan,Sedan,,, +01/04/2022,17:45,,,40.65768,-73.925415,"(40.65768, -73.925415)",CLARKSON AVENUE,REMSEN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4493014,,,,, +01/05/2022,5:55,,,40.828842,-73.84035,"(40.828842, -73.84035)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4492051,Sedan,,,, +01/05/2022,15:33,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492723,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,17:58,BROOKLYN,11211,40.710243,-73.9584,"(40.710243, -73.9584)",BORINQUEN PLACE,HAVEMEYER STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492722,Sedan,,,, +01/05/2022,6:00,,,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4492215,Bus,Bus,,, +09/26/2022,13:09,BROOKLYN,11201,,,,FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4567914,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,16:00,STATEN ISLAND,10305,40.601707,-74.08025,"(40.601707, -74.08025)",WEST FINGERBOARD ROAD,WINDERMERE ROAD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4492905,Sedan,Sedan,,, +01/07/2022,12:09,BRONX,10456,40.83575,-73.90218,"(40.83575, -73.90218)",,,545 SAINT PAULS PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492944,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/06/2022,8:10,BROOKLYN,11231,40.673298,-74.00835,"(40.673298, -74.00835)",BAY STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492391,Sedan,,,, +01/01/2022,20:26,,,40.68603,-73.93268,"(40.68603, -73.93268)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4492859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/30/2021,20:35,,,,,,NEEDHAM AVENUE,EAST 222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493206,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,23:55,QUEENS,11370,40.76169,-73.89689,"(40.76169, -73.89689)",,,25-21 71 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492813,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:24,QUEENS,11363,40.77369,-73.741875,"(40.77369, -73.741875)",LITTLE NECK PARKWAY,39 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493173,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,16:00,BRONX,10462,40.848778,-73.8579,"(40.848778, -73.8579)",,,1854 RADCLIFF AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493332,Sedan,,,, +01/07/2022,6:15,,,40.764988,-73.82067,"(40.764988, -73.82067)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492678,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/01/2022,21:09,BROOKLYN,11233,40.67715,-73.92559,"(40.67715, -73.92559)",,,1825 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492922,Sedan,,,, +01/06/2022,7:45,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,CREST ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492424,Pick-up Truck,Sedan,,, +12/11/2021,2:00,BROOKLYN,11217,40.68037,-73.98654,"(40.68037, -73.98654)",NEVINS STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493120,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,15:00,,,40.863163,-73.8942,"(40.863163, -73.8942)",EAST KINGSBRIDGE ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492460,Sedan,Bus,,, +01/06/2022,14:10,,,40.685463,-73.9506,"(40.685463, -73.9506)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4492742,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/06/2022,1:07,MANHATTAN,10016,40.743294,-73.97989,"(40.743294, -73.97989)",,,431 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492484,Taxi,Sedan,,, +01/05/2022,9:42,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492174,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,15:20,BRONX,10466,40.89588,-73.85715,"(40.89588, -73.85715)",,,668 EAST 236 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493190,Sedan,,,, +01/07/2022,3:59,,,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492755,Sedan,Sedan,,, +01/05/2022,8:48,QUEENS,11436,40.67794,-73.8023,"(40.67794, -73.8023)",FOCH BOULEVARD,139 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4492111,Sedan,Sedan,,, +01/06/2022,16:09,BRONX,10461,0,0,"(0.0, 0.0)",WATERBURY AVENUE,MAYFLOWER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492626,Sedan,Sedan,,, +01/06/2022,10:00,QUEENS,11427,40.730373,-73.73761,"(40.730373, -73.73761)",ASHFORD STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492639,Sedan,Sedan,,, +01/07/2022,7:51,,,40.625683,-73.93344,"(40.625683, -73.93344)",KINGS HIGHWAY,AVENUE K,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,18:58,,,40.60205,-74.01334,"(40.60205, -74.01334)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492972,Pick-up Truck,Sedan,,, +01/07/2022,16:41,QUEENS,11377,40.74128,-73.90257,"(40.74128, -73.90257)",63 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492775,Sedan,Sedan,,, +01/05/2022,8:00,,,40.77417,-73.82934,"(40.77417, -73.82934)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492158,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/05/2022,9:45,QUEENS,11412,40.698566,-73.769585,"(40.698566, -73.769585)",ILION AVENUE,WOOD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492114,Station Wagon/Sport Utility Vehicle,,,, +01/08/2021,19:18,,,40.587402,-73.991615,"(40.587402, -73.991615)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4493093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,3:54,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492590,Sedan,,,, +01/06/2022,23:00,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492727,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,15:45,BROOKLYN,11221,40.689102,-73.94507,"(40.689102, -73.94507)",GREENE AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4492207,Sedan,Sedan,,, +12/16/2021,15:55,,,40.679337,-73.94405,"(40.679337, -73.94405)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493242,Bulk Agriculture,Sedan,,, +01/05/2022,5:30,,,40.735504,-73.95264,"(40.735504, -73.95264)",PULASKI BRIDGE,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,13:45,QUEENS,11106,40.762276,-73.926056,"(40.762276, -73.926056)",,,30-04 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492978,Sedan,Sedan,,, +01/05/2022,9:40,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492483,Sedan,Sedan,,, +01/06/2022,17:18,BRONX,10470,40.898895,-73.85392,"(40.898895, -73.85392)",,,4420 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493212,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,12:00,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4492710,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/07/2022,0:30,,,40.87626,-73.90395,"(40.87626, -73.90395)",WEST 230 STREET,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492864,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,6:37,BROOKLYN,11219,40.62826,-73.99915,"(40.62826, -73.99915)",13 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,4492318,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Dump,Station Wagon/Sport Utility Vehicle +01/07/2022,0:10,,,40.733524,-73.989876,"(40.733524, -73.989876)",EAST 13 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493001,Sedan,,,, +12/27/2021,17:45,QUEENS,11373,40.73482,-73.86686,"(40.73482, -73.86686)",94 STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493047,Sedan,,,, +01/07/2022,3:14,STATEN ISLAND,10301,40.640472,-74.09521,"(40.640472, -74.09521)",,,58 HENDERSON AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4493180,Sedan,Sedan,,, +01/02/2022,19:00,,,40.832916,-73.92939,"(40.832916, -73.92939)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493343,Sedan,,,, +01/05/2022,11:29,QUEENS,11373,40.739388,-73.87121,"(40.739388, -73.87121)",92 STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492342,Sedan,Sedan,,, +12/06/2021,14:20,BROOKLYN,11222,40.73083,-73.94443,"(40.73083, -73.94443)",,,333A NORTH HENRY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Alcohol Involvement,Unspecified,,,4492682,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/06/2022,22:50,BRONX,10474,40.814972,-73.883446,"(40.814972, -73.883446)",,,1365 SPOFFORD AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4492695,Sedan,,,, +01/06/2022,0:00,,,40.742252,-73.97769,"(40.742252, -73.97769)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492504,Sedan,E-Bike,,, +01/05/2022,16:37,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4492927,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,16:30,BROOKLYN,11233,40.676468,-73.91301,"(40.676468, -73.91301)",,,2053 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492801,Sedan,,,, +01/05/2022,16:51,BRONX,10457,40.846783,-73.907394,"(40.846783, -73.907394)",WEEKS AVENUE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492428,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,15:30,MANHATTAN,10009,40.730587,-73.97425,"(40.730587, -73.97425)",,,276 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,,,,,4492963,Sedan,,,, +01/04/2022,17:30,BROOKLYN,11212,40.656044,-73.90724,"(40.656044, -73.90724)",,,985 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493077,Sedan,Unknown,,, +01/05/2022,13:48,BRONX,10468,40.876194,-73.88704,"(40.876194, -73.88704)",,,3162 VILLA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4492495,Ambulance,Box Truck,,, +01/05/2022,9:05,BROOKLYN,11214,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,BATH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492094,Sedan,Sedan,,, +01/02/2022,13:00,QUEENS,11419,40.692875,-73.83219,"(40.692875, -73.83219)",ATLANTIC AVENUE,114 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4492759,Sedan,Sedan,,, +01/05/2022,8:10,,,40.693005,-73.789856,"(40.693005, -73.789856)",UNION HALL STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4492183,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,12:08,MANHATTAN,10034,40.868687,-73.92344,"(40.868687, -73.92344)",SEAMAN AVENUE,PAYSON AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4492275,E-Bike,,,, +12/23/2021,14:36,QUEENS,11373,40.739388,-73.87121,"(40.739388, -73.87121)",92 STREET,52 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493024,E-Bike,,,, +09/05/2021,5:00,BRONX,10462,40.83389,-73.85466,"(40.83389, -73.85466)",WESTCHESTER AVENUE,OLMSTEAD AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4492622,E-Bike,,,, +01/07/2022,18:47,BROOKLYN,11238,40.683216,-73.96377,"(40.683216, -73.96377)",,,242 SAINT JAMES PLACE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4492754,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,7:10,,,40.642242,-74.0752,"(40.642242, -74.0752)",RICHMOND TERRACE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4492423,Sedan,,,, +01/05/2022,7:50,,,,,,METROPOLITAN AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492552,Sedan,,,, +01/07/2022,6:10,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492627,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,8:17,BRONX,10453,40.84843,-73.91299,"(40.84843, -73.91299)",WEST 176 STREET,DAVIDSON AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492789,Bus,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,6:00,,,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Pavement Slippery,Pavement Slippery,,,4492216,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,17:50,QUEENS,11434,40.687016,-73.77487,"(40.687016, -73.77487)",MERRICK BOULEVARD,FOCH BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492654,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,17:45,STATEN ISLAND,10306,40.57161,-74.09418,"(40.57161, -74.09418)",LINCOLN AVENUE,OLYMPIA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492253,Sedan,Sedan,,, +01/06/2022,22:00,QUEENS,11417,40.676113,-73.84883,"(40.676113, -73.84883)",SUTTER AVENUE,88 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492594,Sedan,Sedan,,, +01/06/2022,13:30,,,40.64177,-74.024574,"(40.64177, -74.024574)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492532,Sedan,Sedan,,, +01/07/2022,7:55,QUEENS,11378,40.726177,-73.8981,"(40.726177, -73.8981)",,,66-49 CLINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492817,Sedan,,,, +01/07/2022,23:41,,,40.665974,-73.74061,"(40.665974, -73.74061)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492846,Tractor Truck Diesel,,,, +01/05/2022,16:00,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492445,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,21:20,BRONX,10461,40.843464,-73.83683,"(40.843464, -73.83683)",WESTCHESTER AVENUE,MIDDLETOWN ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492476,Sedan,,,, +01/06/2022,16:43,,,40.617672,-73.99542,"(40.617672, -73.99542)",17 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,16:45,BROOKLYN,11231,40.68159,-74.007935,"(40.68159, -74.007935)",SEABRING STREET,VAN BRUNT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492783,Pick-up Truck,,,, +01/07/2022,2:30,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492659,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,14:00,MANHATTAN,10001,40.755116,-74.00248,"(40.755116, -74.00248)",WEST 33 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492714,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,4:00,,,40.834187,-73.909584,"(40.834187, -73.909584)",EAST 169 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493054,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,16:15,,,40.609653,-73.91145,"(40.609653, -73.91145)",MAYFAIR DRIVE SOUTH,MILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,19:51,,,40.575428,-73.977875,"(40.575428, -73.977875)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493087,Sedan,PRIV AMBUL,,, +01/06/2022,21:45,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492585,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,19:39,QUEENS,11434,40.668865,-73.781944,"(40.668865, -73.781944)",136 AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492831,Sedan,,,, +01/05/2022,7:45,BROOKLYN,11234,40.62444,-73.9304,"(40.62444, -73.9304)",SCHENECTADY AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492302,Sedan,,,, +01/06/2022,13:55,BROOKLYN,11228,40.61833,-74.01667,"(40.61833, -74.01667)",,,8310 11 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4492566,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,8:00,QUEENS,11373,40.745796,-73.88385,"(40.745796, -73.88385)",41 AVENUE,BAXTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492335,Sedan,,,, +01/05/2022,6:07,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4492875,Taxi,,,, +01/07/2022,2:20,QUEENS,11372,40.755875,-73.882454,"(40.755875, -73.882454)",,,85-01 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492686,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,4:34,MANHATTAN,10014,40.736877,-74.00554,"(40.736877, -74.00554)",HUDSON STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492984,Sedan,,,, +01/05/2022,17:40,,,40.67948,-73.93291,"(40.67948, -73.93291)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492261,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,13:43,QUEENS,11374,40.731438,-73.866,"(40.731438, -73.866)",,,92-68 QUEENS BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492691,PK,,,, +01/07/2022,10:40,,,40.776535,-73.840805,"(40.776535, -73.840805)",25 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492825,Sedan,,,, +01/06/2022,17:16,BROOKLYN,11226,40.651253,-73.94964,"(40.651253, -73.94964)",,,1438 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493019,Bus,Sedan,,, +01/06/2022,7:10,,,40.781277,-73.80325,"(40.781277, -73.80325)",160 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492397,Sedan,Sedan,,, +01/07/2022,0:00,,,40.733955,-73.92172,"(40.733955, -73.92172)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4492735,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/28/2021,18:59,,,40.794178,-73.94487,"(40.794178, -73.94487)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493157,Sedan,,,, +01/04/2022,8:09,BRONX,10464,40.873222,-73.80849,"(40.873222, -73.80849)",,,870 SHORE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4492618,Sedan,,,, +01/05/2022,6:00,BRONX,10470,40.898273,-73.867325,"(40.898273, -73.867325)",EAST 236 STREET,KATONAH AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492221,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,18:58,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4493071,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,7:30,BRONX,10454,40.80243,-73.91507,"(40.80243, -73.91507)",,,696 EAST 134 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4493164,Pick-up Truck,Van,Van,Van, +01/04/2022,20:34,BRONX,10474,40.806828,-73.88448,"(40.806828, -73.88448)",FAILE STREET,VIELE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493295,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,9:50,QUEENS,11432,40.71343,-73.780594,"(40.71343, -73.780594)",182 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492537,Sedan,,,, +01/06/2022,14:36,BRONX,10453,40.85381,-73.91386,"(40.85381, -73.91386)",WEST BURNSIDE AVENUE,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492631,Motorcycle,Sedan,,, +01/02/2022,18:00,,,,,,33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,18:00,QUEENS,11432,40.710827,-73.79413,"(40.710827, -73.79413)",,,87-55 168 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492356,Sedan,,,, +01/07/2021,20:10,QUEENS,11004,40.74052,-73.70259,"(40.74052, -73.70259)",83 AVENUE,267 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492734,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,5:46,,,40.86287,-73.934784,"(40.86287, -73.934784)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492271,Sedan,,,, +01/05/2022,21:15,,,40.70719,-73.81873,"(40.70719, -73.81873)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492357,Sedan,,,, +01/06/2022,22:34,BROOKLYN,11206,40.70667,-73.9424,"(40.70667, -73.9424)",,,187 JOHNSON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4492749,Sedan,,,, +01/05/2022,20:15,,,40.781387,-73.95213,"(40.781387, -73.95213)",EAST 90 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4492329,Taxi,Pick-up Truck,,, +01/06/2022,16:45,STATEN ISLAND,10308,40.545753,-74.151634,"(40.545753, -74.151634)",HILLCREST AVENUE,HIGHMOUNT ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4492571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/07/2022,6:30,,,40.698193,-73.98558,"(40.698193, -73.98558)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492766,Sedan,Sedan,,, +01/05/2022,0:50,,,40.75332,-73.74477,"(40.75332, -73.74477)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4492008,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,18:07,,,40.741344,-73.95459,"(40.741344, -73.95459)",BORDEN AVENUE,VERNON BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492599,Sedan,,,, +12/28/2021,18:05,BROOKLYN,11221,40.689022,-73.92611,"(40.689022, -73.92611)",,,940 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492867,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/04/2022,22:50,BROOKLYN,11223,40.59587,-73.963715,"(40.59587, -73.963715)",EAST 7 STREET,AVENUE V,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4492890,Sedan,Box Truck,,, +12/31/2021,19:47,QUEENS,11436,40.680477,-73.7921,"(40.680477, -73.7921)",SUTPHIN BOULEVARD,FOCH BOULEVARD,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4492650,Sedan,Bike,,, +01/05/2022,18:32,BRONX,10466,40.886044,-73.85756,"(40.886044, -73.85756)",,,800 EAST 224 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492247,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,10:21,,,40.893623,-73.85525,"(40.893623, -73.85525)",,,BYRON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4492516,Sedan,Sedan,,, +01/06/2022,9:00,QUEENS,11413,40.675014,-73.7528,"(40.675014, -73.7528)",219 STREET,137 ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492645,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,9:00,,,40.753994,-73.94244,"(40.753994, -73.94244)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492630,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/06/2022,2:40,,,40.709183,-73.956825,"(40.709183, -73.956825)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4492561,Sedan,,,, +01/07/2022,3:00,QUEENS,11420,40.674805,-73.81085,"(40.674805, -73.81085)",,,117-59 127 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492793,Sedan,,,, +06/22/2021,18:15,QUEENS,11103,,,,31 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430386,Sedan,,,, +01/05/2022,0:14,,,40.703632,-73.85587,"(40.703632, -73.85587)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Pavement Slippery,Unsafe Speed,Pavement Slippery,Pavement Slippery,,4492043,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/06/2022,17:00,BROOKLYN,11225,40.665703,-73.94256,"(40.665703, -73.94256)",,,378 KINGSTON AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492578,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:00,,,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4492220,Station Wagon/Sport Utility Vehicle,PK,,, +01/05/2022,12:00,STATEN ISLAND,10305,40.58618,-74.08989,"(40.58618, -74.08989)",GARRETSON AVENUE,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492718,Sedan,,,, +01/05/2022,18:30,,,40.773335,-73.95506,"(40.773335, -73.95506)",EAST 79 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492330,Sedan,E-Bike,,, +01/05/2022,21:13,,,40.68096,-73.93765,"(40.68096, -73.93765)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4492873,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/07/2022,12:11,BROOKLYN,11201,40.694836,-73.98393,"(40.694836, -73.98393)",JOHNSON STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492779,Sedan,,,, +12/31/2021,18:32,MANHATTAN,10031,40.825817,-73.95302,"(40.825817, -73.95302)",WEST 143 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4493130,Sedan,,,, +01/06/2022,14:50,QUEENS,11368,40.743332,-73.85496,"(40.743332, -73.85496)",108 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4492606,Sedan,Sedan,Sedan,, +01/06/2022,11:30,BRONX,10475,40.878937,-73.82677,"(40.878937, -73.82677)",COOP CITY BOULEVARD,ROMBOUTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492900,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,11:54,MANHATTAN,10027,40.807842,-73.955574,"(40.807842, -73.955574)",,,370 WEST 120 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493105,Convertible,Sedan,,, +01/02/2022,2:47,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492935,Sedan,Sedan,,, +01/05/2022,6:45,,,,,,G.C.P. / C.I.P. (CDR),,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4492262,Sedan,Sedan,,, +01/06/2022,10:05,BRONX,10462,40.856606,-73.86835,"(40.856606, -73.86835)",,,640 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +01/07/2022,4:00,STATEN ISLAND,10305,40.598934,-74.06377,"(40.598934, -74.06377)",MCCLEAN AVENUE,LILY POND AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492719,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,17:37,,,40.62392,-73.9216,"(40.62392, -73.9216)",EAST 56 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4492536,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/05/2022,13:30,,,40.776188,-73.90596,"(40.776188, -73.90596)",21 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4492704,Sedan,Sedan,Sedan,Sedan, +01/05/2022,19:46,BROOKLYN,11228,40.6163,-74.01762,"(40.6163, -74.01762)",,,1125 86 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492906,Sedan,Sedan,Sedan,, +01/05/2022,14:00,QUEENS,11419,40.684383,-73.823265,"(40.684383, -73.823265)",107 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492296,Sedan,,,, +01/05/2022,6:30,BRONX,10470,40.9046,-73.852936,"(40.9046, -73.852936)",EAST 241 STREET,CARPENTER AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,4493203,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/07/2022,8:35,,,40.821754,-73.86021,"(40.821754, -73.86021)",UNDERHILL AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4492672,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,19:15,BRONX,10475,40.869423,-73.825745,"(40.869423, -73.825745)",,,2100 BARTOW AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4493328,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,16:53,QUEENS,11004,40.741188,-73.709755,"(40.741188, -73.709755)",260 STREET,82 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Other Vehicular,Unspecified,,,4492640,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/06/2022,9:50,QUEENS,11375,40.72297,-73.84448,"(40.72297, -73.84448)",70 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492593,Sedan,,,, +01/03/2022,11:45,BROOKLYN,11232,40.65476,-74.00724,"(40.65476, -74.00724)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4492687,Pick-up Truck,Sedan,,, +01/05/2022,7:50,QUEENS,11364,40.75076,-73.757835,"(40.75076, -73.757835)",SPRINGFIELD BOULEVARD,58 AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4492129,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,11:16,MANHATTAN,10010,40.74053,-73.9819,"(40.74053, -73.9819)",,,353 3 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4492161,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,21:45,BROOKLYN,11203,40.652878,-73.93053,"(40.652878, -73.93053)",,,830 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493015,Sedan,,,, +01/05/2022,5:05,STATEN ISLAND,10301,40.6421,-74.087685,"(40.6421, -74.087685)",,,177 YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492431,Sedan,,,, +01/07/2022,18:25,BROOKLYN,11223,40.598244,-73.98264,"(40.598244, -73.98264)",AVENUE T,WEST 11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492967,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,5:45,QUEENS,11423,40.711075,-73.77601,"(40.711075, -73.77601)",,,90-34 184 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,6:30,QUEENS,11378,40.71431,-73.90801,"(40.71431, -73.90801)",,,61-31 56 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492635,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,14:04,BROOKLYN,11236,40.649025,-73.89635,"(40.649025, -73.89635)",EAST 105 STREET,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492239,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,19:15,,,40.70437,-73.83283,"(40.70437, -73.83283)",,,84 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492762,Taxi,,,, +01/05/2022,10:15,,,40.551815,-74.217354,"(40.551815, -74.217354)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492499,Sedan,Tractor Truck Diesel,,, +01/06/2022,12:02,,,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492745,,,,, +01/06/2022,23:00,,,40.587013,-74.159454,"(40.587013, -74.159454)",,,260 NOME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,8:00,BROOKLYN,11207,40.677868,-73.90332,"(40.677868, -73.90332)",FULTON STREET,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493066,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,0:15,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4492767,Sedan,,,, +01/06/2022,12:54,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,40 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492612,Sedan,Sedan,,, +01/05/2022,7:12,BRONX,10471,40.908146,-73.901855,"(40.908146, -73.901855)",LIEBIG AVENUE,WEST 260 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492097,Bus,Sedan,,, +01/05/2022,21:48,,,40.7538,-73.90213,"(40.7538, -73.90213)",NORTHERN BOULEVARD,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492370,Sedan,,,, +01/05/2022,17:50,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ATLANTIC AVENUE,ELTON STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492446,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/07/2022,15:00,QUEENS,11420,40.67153,-73.82639,"(40.67153, -73.82639)",135 AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493278,Sedan,Bus,,, +01/05/2022,5:50,,,,,,WHITESTONE EXPRESSWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492140,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:02,,,40.860283,-73.9364,"(40.860283, -73.9364)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4492274,Sedan,Sedan,,, +01/07/2022,16:00,,,40.563145,-74.10787,"(40.563145, -74.10787)",WEED AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4492808,Sedan,Open Body,,, +01/06/2022,9:25,,,,,,GRAND STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,14:45,,,40.628803,-73.97404,"(40.628803, -73.97404)",FOSTER AVENUE,SETON PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4492973,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +12/15/2021,9:00,,,40.68121,-73.773,"(40.68121, -73.773)",BAISLEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492830,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,0:08,BROOKLYN,11220,40.64528,-74.01969,"(40.64528, -74.01969)",,,224 56 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492584,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,12:45,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,Unspecified,,,,4492505,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,7:11,QUEENS,11378,40.73025,-73.89706,"(40.73025, -73.89706)",,,53-44 68 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492699,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,14:33,,,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4492225,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/07/2022,0:33,BRONX,10452,40.837315,-73.92331,"(40.837315, -73.92331)",SHAKESPEARE AVENUE,ANDERSON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,4493056,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/07/2022,23:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492774,Sedan,,,, +01/05/2022,18:56,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,JAY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4492287,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,3:45,MANHATTAN,10040,40.862213,-73.9297,"(40.862213, -73.9297)",SHERMAN AVENUE,ELLWOOD STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4492667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,23:01,MANHATTAN,10016,,,,39 street,39 street,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493111,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,19:00,,,40.602303,-73.989815,"(40.602303, -73.989815)",83 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492995,Box Truck,Sedan,,, +01/07/2022,4:45,,,40.696686,-73.9378,"(40.696686, -73.9378)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4492883,Sedan,Sedan,,, +01/06/2022,16:04,,,,,,TRIBOROUGH BRIDGE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4492802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,17:00,STATEN ISLAND,10304,40.606445,-74.08735,"(40.606445, -74.08735)",CLOVE ROAD,HANOVER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492851,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2021,20:59,BROOKLYN,11204,40.62131,-73.9845,"(40.62131, -73.9845)",,,5702 19 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493148,Sedan,Tow Truck / Wrecker,,, +01/07/2022,20:35,BRONX,10456,40.82439,-73.902405,"(40.82439, -73.902405)",,,970 TINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492945,Sedan,Sedan,,, +01/07/2022,21:20,,,40.88668,-73.85433,"(40.88668, -73.85433)",EAST 226 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493193,Sedan,Sedan,,, +01/07/2022,18:15,QUEENS,11103,40.762108,-73.90652,"(40.762108, -73.90652)",49 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4492797,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/07/2022,9:07,BROOKLYN,11231,40.681038,-74.00187,"(40.681038, -74.00187)",,,79 WOODHULL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492662,Sedan,,,, +01/06/2022,14:00,BRONX,10451,40.822857,-73.909325,"(40.822857, -73.909325)",,,3204 3 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492623,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,16:23,QUEENS,11426,40.73849,-73.7253,"(40.73849, -73.7253)",,,81-18 243 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492544,Sedan,Sedan,,, +01/07/2022,4:03,,,40.77303,-73.97829,"(40.77303, -73.97829)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492880,Taxi,Sedan,,, +01/05/2022,16:30,QUEENS,11691,40.60768,-73.75206,"(40.60768, -73.75206)",,,20-50 NAMEOKE STREET,0,0,0,0,0,0,0,0,,,,,,4493317,,,,, +01/05/2022,14:00,,,40.64872,-73.96491,"(40.64872, -73.96491)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492988,Sedan,,,, +01/07/2022,20:00,STATEN ISLAND,10301,40.60599,-74.103455,"(40.60599, -74.103455)",MOHN PLACE,SHIELDS PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493172,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,21:25,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4492655,Sedan,,,, +01/07/2022,12:25,BROOKLYN,11212,40.660313,-73.902504,"(40.660313, -73.902504)",NEWPORT STREET,SACKMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493092,Sedan,,,, +01/06/2022,7:25,,,40.694496,-73.91482,"(40.694496, -73.91482)",WOODBINE STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492427,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,12:22,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",EAST MOUNT EDEN AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493037,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,20:00,QUEENS,11354,40.766342,-73.819466,"(40.766342, -73.819466)",,,147-05 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493249,Sedan,,,, +01/05/2022,15:22,,,40.683582,-73.953964,"(40.683582, -73.953964)",PUTNAM AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4492741,Sedan,Bike,,, +01/05/2022,6:24,BRONX,10461,40.843464,-73.83683,"(40.843464, -73.83683)",MIDDLETOWN ROAD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4492049,Bus,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/05/2022,9:45,,,40.897144,-73.88029,"(40.897144, -73.88029)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4492491,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,15:10,,,40.804993,-73.911354,"(40.804993, -73.911354)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492726,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,13:30,QUEENS,11416,40.68885,-73.84133,"(40.68885, -73.84133)",95 AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492208,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,8:35,BRONX,10452,40.836796,-73.91949,"(40.836796, -73.91949)",GERARD AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Failure to Yield Right-of-Way,,,,4492694,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/17/2021,8:26,MANHATTAN,10001,40.74658,-73.99756,"(40.74658, -73.99756)",8 AVENUE,WEST 25 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428465,Pick-up Truck,,,, +06/21/2021,14:15,BROOKLYN,11249,40.72118,-73.95866,"(40.72118, -73.95866)",WYTHE AVENUE,NORTH 10 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429928,Sedan,Sedan,,, +06/22/2021,10:32,BROOKLYN,11236,40.64697,-73.9135,"(40.64697, -73.9135)",,,862 REMSEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4429880,Sedan,,,, +06/22/2021,0:00,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4430058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/22/2021,15:59,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4429931,Sedan,Sedan,Sedan,, +06/22/2021,12:31,BROOKLYN,11211,40.715744,-73.95881,"(40.715744, -73.95881)",,,159 NORTH 4 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430671,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/19/2021,23:00,,,40.805725,-73.95442,"(40.805725, -73.95442)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430442,Station Wagon/Sport Utility Vehicle,Bike,,, +06/13/2021,13:29,QUEENS,11105,40.771084,-73.908226,"(40.771084, -73.908226)",STEINWAY STREET,23 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430421,Pick-up Truck,Bike,,, +06/22/2021,2:55,BRONX,10459,40.828545,-73.8919,"(40.828545, -73.8919)",SOUTHERN BOULEVARD,HOME STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4429622,Sedan,Sedan,,, +06/22/2021,22:00,BROOKLYN,11203,40.64556,-73.931694,"(40.64556, -73.931694)",,,694 EAST 48 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4429906,Sedan,Sedan,,, +06/22/2021,16:44,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430230,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,19:00,BRONX,10454,40.803474,-73.91954,"(40.803474, -73.91954)",,,152 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429956,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,18:15,BROOKLYN,11226,40.651325,-73.95692,"(40.651325, -73.95692)",,,61 MARTENSE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430381,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,14:20,,,40.72713,-73.81248,"(40.72713, -73.81248)",KISSENA BOULEVARD,73 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430482,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/20/2021,20:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430549,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,5:26,QUEENS,11430,40.66615,-73.80575,"(40.66615, -73.80575)",134 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4429655,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,10:20,BRONX,10458,40.859745,-73.8958,"(40.859745, -73.8958)",EAST 187 STREET,TIEBOUT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429983,,,,, +06/10/2021,16:30,,,40.80047,-73.95777,"(40.80047, -73.95777)",WEST 110 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4430440,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,8:00,QUEENS,11101,40.75274,-73.94206,"(40.75274, -73.94206)",,,41-51 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430471,Sedan,,,, +06/19/2021,12:27,,,40.698185,-73.9374,"(40.698185, -73.9374)",BROADWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430358,Motorcycle,,,, +06/22/2021,7:40,BRONX,10458,40.863,-73.893005,"(40.863, -73.893005)",,,2555 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429739,Sedan,,,, +06/22/2021,8:15,BROOKLYN,11211,40.71197,-73.96104,"(40.71197, -73.96104)",DRIGGS AVENUE,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429855,Box Truck,Sedan,,, +06/22/2021,19:00,BRONX,10466,40.885433,-73.82924,"(40.885433, -73.82924)",,,4063 BOSTON ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430068,Sedan,,,, +06/22/2021,17:50,BROOKLYN,11217,40.67864,-73.97352,"(40.67864, -73.97352)",FLATBUSH AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430119,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,15:50,,,,,,KINGS HIGHWAY,AVENUE K,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430240,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,16:46,MANHATTAN,10016,40.740326,-73.97312,"(40.740326, -73.97312)",EAST 30 STREET,FDR DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430301,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,4:40,QUEENS,11354,40.763687,-73.81444,"(40.763687, -73.81444)",ROOSEVELT AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4429822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,11:15,,,,,,ZEREGA AVENUE,COMMERCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429780,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,8:59,BROOKLYN,11208,40.664192,-73.87759,"(40.664192, -73.87759)",LINDEN BOULEVARD,ESSEX STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430506,Sedan,Box Truck,,, +06/16/2021,13:44,,,40.882835,-73.888016,"(40.882835, -73.888016)",GOULDEN AVENUE,,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,,,,4430532,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,22:00,MANHATTAN,10014,40.72899,-74.00345,"(40.72899, -74.00345)",,,10 BEDFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430596,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,16:00,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,NEW DORP LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429811,Sedan,Sedan,,, +06/22/2021,11:00,BROOKLYN,11220,40.635895,-74.01631,"(40.635895, -74.01631)",64 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429783,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,11:50,MANHATTAN,10026,40.80086,-73.95291,"(40.80086, -73.95291)",,,139 WEST 113 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430450,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,14:00,BROOKLYN,11205,40.69802,-73.97499,"(40.69802, -73.97499)",,,63 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4429844,Box Truck,Box Truck,,, +06/22/2021,2:40,,,,,,LIE LOWER LEVEL (CDR),,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4429757,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,23:53,,,40.777504,-73.954956,"(40.777504, -73.954956)",3 AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4430294,Taxi,Sedan,,, +06/22/2021,12:20,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4429947,Box Truck,Sedan,,, +06/22/2021,22:05,BRONX,10473,40.821198,-73.86595,"(40.821198, -73.86595)",,,801 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430027,Sedan,,,, +06/22/2021,19:55,BROOKLYN,11236,40.63787,-73.90963,"(40.63787, -73.90963)",EAST 85 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430337,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,16:47,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",BEDFORD AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4430146,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/21/2021,17:50,,,40.830154,-73.93964,"(40.830154, -73.93964)",WEST 155 STREET,EDGECOMBE AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4430318,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,11:00,,,,,,BRONX RIVER PARKWAY,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,12:30,QUEENS,11432,40.714485,-73.77619,"(40.714485, -73.77619)",HILLSIDE AVENUE,186 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429826,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,16:59,BROOKLYN,11235,40.592514,-73.95231,"(40.592514, -73.95231)",EAST 18 STREET,AVENUE X,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,3:00,MANHATTAN,10013,40.716293,-73.99632,"(40.716293, -73.99632)",,,155 CANAL STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430494,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,15:20,MANHATTAN,10004,40.706448,-74.01277,"(40.706448, -74.01277)",,,50 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430636,Motorcycle,,,, +06/22/2021,22:20,,,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430115,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/21/2021,13:50,,,40.679073,-73.92527,"(40.679073, -73.92527)",FULTON STREET,,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4430411,Sedan,E-Scooter,,, +06/06/2021,21:18,BROOKLYN,11234,40.633865,-73.919815,"(40.633865, -73.919815)",EAST 59 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430508,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,14:05,BROOKLYN,11226,40.645504,-73.955086,"(40.645504, -73.955086)",,,2391 BEDFORD AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429861,Bike,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,17:48,,,40.728065,-73.99896,"(40.728065, -73.99896)",BLEECKER STREET,,,3,0,1,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430587,Sedan,Sedan,,, +06/22/2021,14:30,,,40.68017,-73.93151,"(40.68017, -73.93151)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429893,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,17:29,MANHATTAN,10026,40.80084,-73.94906,"(40.80084, -73.94906)",,,70 WEST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430455,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,7:13,BRONX,10475,40.885952,-73.8279,"(40.885952, -73.8279)",BOSTON ROAD,CONNER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,22:30,,,40.754066,-73.915276,"(40.754066, -73.915276)",34 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4430380,Sedan,Sedan,,, +06/22/2021,21:31,BROOKLYN,11205,40.68947,-73.96911,"(40.68947, -73.96911)",VANDERBILT AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4430185,Sedan,E-Bike,,, +06/22/2021,22:05,QUEENS,11417,40.677513,-73.85726,"(40.677513, -73.85726)",,,106-44 80 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4430271,Pick-up Truck,Sedan,Pick-up Truck,, +06/21/2021,10:53,BROOKLYN,11238,40.671627,-73.96263,"(40.671627, -73.96263)",EASTERN PARKWAY,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430603,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/19/2021,1:05,BRONX,10458,40.861107,-73.89028,"(40.861107, -73.89028)",EAST FORDHAM ROAD,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430373,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,16:30,MANHATTAN,10026,40.79926,-73.95244,"(40.79926, -73.95244)",,,15 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4430446,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/22/2021,7:50,QUEENS,11373,40.732826,-73.88381,"(40.732826, -73.88381)",,,52-48 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4429939,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/21/2021,1:30,BROOKLYN,11215,40.667847,-73.99404,"(40.667847, -73.99404)",15 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4430426,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/22/2021,7:00,BRONX,10461,40.85352,-73.85272,"(40.85352, -73.85272)",,,1943 YATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429998,Sedan,,,, +06/22/2021,3:22,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429900,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,8:30,BRONX,10460,40.840664,-73.88152,"(40.840664, -73.88152)",BRYANT AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430088,Bus,Sedan,,, +06/12/2021,13:23,QUEENS,11004,40.744152,-73.71742,"(40.744152, -73.71742)",,,253-23 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430489,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,15:27,BROOKLYN,11203,40.652855,-73.945915,"(40.652855, -73.945915)",LINDEN BOULEVARD,EAST 34 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429866,Van,,,, +06/20/2021,22:15,,,40.525745,-74.22751,"(40.525745, -74.22751)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,5:40,BRONX,10474,40.81894,-73.886986,"(40.81894, -73.886986)",,,1314 SENECA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430514,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,19:35,STATEN ISLAND,10310,40.629467,-74.112434,"(40.629467, -74.112434)",,,705 FOREST AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430040,Sedan,Sedan,,, +06/22/2021,20:00,,,40.789017,-73.81865,"(40.789017, -73.81865)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429908,Sedan,Sedan,,, +06/22/2021,19:10,BROOKLYN,11235,40.57655,-73.966385,"(40.57655, -73.966385)",BRIGHTON 1 ROAD,BRIGHTON BEACH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430041,Sedan,,,, +06/22/2021,17:37,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429960,Sedan,Box Truck,,, +06/15/2021,14:15,QUEENS,11102,0,0,"(0.0, 0.0)",33 STREET,28 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430436,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,2:27,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",FULTON AVENUE,CLAREMONT PARKWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429627,Sedan,Bike,,, +06/15/2021,11:21,,,40.561077,-74.16984,"(40.561077, -74.16984)",ARTHUR KILL ROAD,RICHMOND AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4430461,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,18:40,BRONX,10459,40.82386,-73.89824,"(40.82386, -73.89824)",,,883 EAST 165 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,19:21,BROOKLYN,11209,40.61834,-74.03018,"(40.61834, -74.03018)",92 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429887,Sedan,,,, +06/22/2021,10:00,BROOKLYN,11229,40.597572,-73.93844,"(40.597572, -73.93844)",,,2241 BATCHELDER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430364,Sedan,,,, +06/19/2021,13:00,QUEENS,11432,40.714314,-73.77688,"(40.714314, -73.77688)",,,185-16 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430546,Sedan,Sedan,,, +06/12/2021,20:50,,,40.70543,-73.9181,"(40.70543, -73.9181)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4430511,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/20/2021,10:32,STATEN ISLAND,10309,40.50773,-74.230064,"(40.50773, -74.230064)",PAGE AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430418,Sedan,Sedan,,, +06/22/2021,4:27,BROOKLYN,11208,40.66795,-73.876076,"(40.66795, -73.876076)",,,418 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429659,Sedan,Sedan,,, +06/10/2021,18:00,MANHATTAN,10026,40.801205,-73.95256,"(40.801205, -73.95256)",,,71 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430441,Sedan,,,, +06/22/2021,8:21,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429864,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,16:51,BRONX,10454,40.803677,-73.92209,"(40.803677, -73.92209)",EAST 132 STREET,BROOK AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4429961,Sedan,Sedan,,, +06/20/2021,19:00,QUEENS,11368,40.751034,-73.87053,"(40.751034, -73.87053)",,,37-23 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,21:10,QUEENS,11413,40.66876,-73.75669,"(40.66876, -73.75669)",142 ROAD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429901,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/22/2021,17:04,,,40.7025,-73.91633,"(40.7025, -73.91633)",WYCKOFF AVENUE,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4430355,Box Truck,Box Truck,,, +06/22/2021,15:44,QUEENS,11419,40.685654,-73.828636,"(40.685654, -73.828636)",LIBERTY AVENUE,114 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4429933,Sedan,,,, +06/22/2021,10:05,,,40.68096,-73.93765,"(40.68096, -73.93765)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430673,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,5:00,BROOKLYN,11225,40.66149,-73.95182,"(40.66149, -73.95182)",,,334 LINCOLN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4430536,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,14:35,MANHATTAN,10027,40.81119,-73.95044,"(40.81119, -73.95044)",,,2359 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430453,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,12:31,BRONX,10466,40.893715,-73.85842,"(40.893715, -73.85842)",,,674 EAST 233 STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4429792,Sedan,,,, +06/22/2021,13:25,MANHATTAN,10037,40.81179,-73.93625,"(40.81179, -73.93625)",,,2156 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4429815,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,11:00,,,40.82256,-73.88755,"(40.82256, -73.88755)",WHITLOCK AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430161,Sedan,,,, +06/22/2021,11:00,,,40.74906,-73.89083,"(40.74906, -73.89083)",37 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430519,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/22/2021,15:00,STATEN ISLAND,10306,40.564384,-74.13186,"(40.564384, -74.13186)",,,3155 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429881,Sedan,,,, +06/16/2021,14:20,QUEENS,11372,40.754604,-73.89453,"(40.754604, -73.89453)",,,72-09 NORTHERN BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430326,Armored Truck,Bike,,, +06/16/2021,17:10,,,40.71582,-73.81759,"(40.71582, -73.81759)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430481,Sedan,Sedan,,, +06/22/2021,10:00,BROOKLYN,11214,40.59287,-73.99607,"(40.59287, -73.99607)",,,1752 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4429767,Sedan,,,, +06/22/2021,8:40,BROOKLYN,11212,,,,pitkin avenue,mother gaston blvd,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430057,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/22/2021,13:45,BRONX,10472,40.832386,-73.86457,"(40.832386, -73.86457)",WESTCHESTER AVENUE,THIERIOT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4430188,Sedan,,,, +06/22/2021,11:06,BROOKLYN,11230,40.62095,-73.9555,"(40.62095, -73.9555)",OCEAN AVENUE,AVENUE L,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429804,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,17:30,QUEENS,11433,40.689373,-73.7937,"(40.689373, -73.7937)",111 AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4429917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,16:45,STATEN ISLAND,10309,40.50877,-74.222626,"(40.50877, -74.222626)",,,6581 HYLAN BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430412,Station Wagon/Sport Utility Vehicle,,,, +06/07/2021,22:10,,,40.802467,-73.958694,"(40.802467, -73.958694)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430445,Sedan,Sedan,Sedan,, +01/06/2022,7:00,BROOKLYN,11208,40.673782,-73.87405,"(40.673782, -73.87405)",BELMONT AVENUE,CRYSTAL STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492450,Sedan,Sedan,,, +06/22/2021,11:40,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429872,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,14:30,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",JEROME AVENUE,WEST 192 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429924,Taxi,Sedan,,, +06/20/2021,1:10,MANHATTAN,10019,40.767242,-73.986206,"(40.767242, -73.986206)",WEST 56 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430654,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,10:26,BROOKLYN,11225,40.66173,-73.96078,"(40.66173, -73.96078)",WASHINGTON AVENUE,LEFFERTS AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430632,Sedan,Bike,,, +06/20/2021,20:35,QUEENS,11412,40.692123,-73.75541,"(40.692123, -73.75541)",196 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4430496,Station Wagon/Sport Utility Vehicle,Sedan,Lift Boom,, +06/20/2021,18:47,BROOKLYN,11216,40.6802,-73.953285,"(40.6802, -73.953285)",BREVOORT PLACE,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430403,Bike,,,, +06/21/2021,11:00,MANHATTAN,10014,40.73272,-74.00462,"(40.73272, -74.00462)",,,35 GROVE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430589,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,22:00,QUEENS,11423,40.712414,-73.76262,"(40.712414, -73.76262)",,,93-01 197 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430143,Sedan,,,, +06/22/2021,4:10,,,,,,LINDEN BOULEVARD,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429722,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,16:00,MANHATTAN,10032,40.833477,-73.94348,"(40.833477, -73.94348)",,,551 WEST 157 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430317,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,17:19,QUEENS,11362,40.752434,-73.74126,"(40.752434, -73.74126)",DOUGLASTON PARKWAY,WEST ALLEY ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4429847,Sedan,Sedan,,, +06/22/2021,15:00,,,40.61054,-74.103455,"(40.61054, -74.103455)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4430229,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,18:30,BRONX,10470,40.902836,-73.85329,"(40.902836, -73.85329)",EAST 240 STREET,MATILDA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430065,Sedan,Sedan,,, +06/22/2021,15:30,MANHATTAN,10021,40.76975,-73.96061,"(40.76975, -73.96061)",3 AVENUE,EAST 72 STREET,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4429946,Moped,,,, +06/22/2021,13:20,BROOKLYN,11222,40.726814,-73.95355,"(40.726814, -73.95355)",MESEROLE AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430651,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/17/2021,15:55,,,40.800552,-73.958206,"(40.800552, -73.958206)",WEST 110 STREET,DOUGLASS BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4430449,Sedan,Sedan,,, +06/22/2021,9:45,BROOKLYN,11223,40.59011,-73.97422,"(40.59011, -73.97422)",AVENUE X,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4430025,Sedan,FORKLIFT,,, +06/21/2021,0:00,BROOKLYN,11206,40.695705,-73.94637,"(40.695705, -73.94637)",TOMPKINS AVENUE,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430405,Bike,,,, +06/22/2021,16:52,BROOKLYN,11228,40.617462,-74.01039,"(40.617462, -74.01039)",13 AVENUE,80 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429890,Sedan,Sedan,,, +06/21/2021,4:55,QUEENS,11370,40.76296,-73.884834,"(40.76296, -73.884834)",,,25-42 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430328,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,3:10,BRONX,10460,40.841293,-73.8828,"(40.841293, -73.8828)",EAST TREMONT AVENUE,VYSE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430374,Sedan,,,, +06/22/2021,0:00,MANHATTAN,10009,40.724285,-73.9756,"(40.724285, -73.9756)",EAST 9 STREET,AVENUE D,,2,0,0,0,1,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4429923,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/22/2021,23:00,QUEENS,11354,40.772507,-73.809944,"(40.772507, -73.809944)",28 AVENUE,154 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4430238,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/22/2021,7:55,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4429751,Station Wagon/Sport Utility Vehicle,Bus,Bus,Station Wagon/Sport Utility Vehicle, +06/22/2021,19:30,BROOKLYN,11235,40.57987,-73.95667,"(40.57987, -73.95667)",OCEANVIEW AVENUE,BRIGHTON 12 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4430031,Sedan,Sedan,,, +06/22/2021,3:45,QUEENS,11432,40.708595,-73.7969,"(40.708595, -73.7969)",88 AVENUE,165 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4429819,Sedan,,,, +06/22/2021,6:30,,,40.67807,-73.94139,"(40.67807, -73.94139)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430046,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,17:05,BROOKLYN,11209,40.625343,-74.03617,"(40.625343, -74.03617)",,,8521 COLONIAL ROAD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4429886,Sedan,Bike,,, +06/22/2021,12:15,,,40.57587,-73.95948,"(40.57587, -73.95948)",CONEY ISLAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430030,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,7:05,QUEENS,11102,40.765224,-73.92275,"(40.765224, -73.92275)",31 STREET,30 DRIVE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4430425,Sedan,Bike,,, +06/22/2021,14:30,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4429938,Bus,,,, +06/08/2021,14:16,MANHATTAN,10026,40.80014,-73.95319,"(40.80014, -73.95319)",,,142 WEST 112 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430437,E-Bike,Moped,,, +06/22/2021,0:30,BRONX,10454,40.807213,-73.92841,"(40.807213, -73.92841)",,,26 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429638,Sedan,Sedan,,, +06/22/2021,21:45,BRONX,10469,40.87965,-73.84236,"(40.87965, -73.84236)",,,3636 BOSTON ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430462,Sedan,Sedan,,, +06/19/2021,19:10,,,40.587315,-74.15494,"(40.587315, -74.15494)",,,11 FRASER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,18:59,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4430565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,15:01,,,40.706554,-73.95832,"(40.706554, -73.95832)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430522,Sedan,Box Truck,,, +06/22/2021,17:02,,,40.681126,-73.96446,"(40.681126, -73.96446)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430189,Bus,Sedan,,, +06/22/2021,0:30,,,40.54638,-74.14727,"(40.54638, -74.14727)",CLEVELAND AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4429803,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,14:47,BROOKLYN,11230,40.62893,-73.971375,"(40.62893, -73.971375)",OCEAN PARKWAY,AVENUE H,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429806,Sedan,Box Truck,,, +06/22/2021,17:00,QUEENS,11691,40.604046,-73.756996,"(40.604046, -73.756996)",GRASSMERE TERRACE,REGINA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4430090,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,5:50,BRONX,10470,40.889217,-73.866875,"(40.889217, -73.866875)",,,3900 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4430460,Sedan,Carry All,,, +06/22/2021,14:05,QUEENS,11433,,,,GUY R BREWER BLVD,archer avenue,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4429825,Station Wagon/Sport Utility Vehicle,Bus,,, +06/22/2021,19:50,QUEENS,11693,40.58729,-73.81317,"(40.58729, -73.81317)",,,88-07 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4430176,Sedan,,,, +06/14/2021,5:30,,,40.676792,-73.737946,"(40.676792, -73.737946)",133 AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4430487,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/22/2021,13:19,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4429871,Sedan,Sedan,Sedan,, +06/22/2021,17:15,BROOKLYN,11237,40.70854,-73.927414,"(40.70854, -73.927414)",VARICK AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430276,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/16/2021,17:00,MANHATTAN,10016,40.748245,-73.976295,"(40.748245, -73.976295)",EAST 38 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430518,Bike,,,, +06/22/2021,12:00,QUEENS,11414,40.66544,-73.83519,"(40.66544, -73.83519)",COHANCY STREET,155 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4429763,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,19:39,BROOKLYN,11234,40.635426,-73.92474,"(40.635426, -73.92474)",GLENWOOD ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,Unspecified,,,4430106,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/22/2021,16:29,BROOKLYN,11229,40.60166,-73.94214,"(40.60166, -73.94214)",,,3380 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4430261,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/08/2021,16:10,MANHATTAN,10029,40.78917,-73.95275,"(40.78917, -73.95275)",MADISON AVENUE,EAST 99 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4430323,Scooter,,,, +06/22/2021,9:30,BROOKLYN,11229,40.6009,-73.937546,"(40.6009, -73.937546)",,,3036 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,,,,,4429769,Sedan,,,, +06/22/2021,11:20,QUEENS,11356,40.791855,-73.850746,"(40.791855, -73.850746)",119 STREET,POPPENHUSEN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4429824,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,22:35,BRONX,10459,40.82319,-73.889496,"(40.82319, -73.889496)",ALDUS STREET,FAILE STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4430502,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/12/2021,21:36,BROOKLYN,11234,40.614803,-73.94458,"(40.614803, -73.94458)",NOSTRAND AVENUE,MARINE PARKWAY,,2,0,1,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430510,Motorcycle,,,, +06/22/2021,14:32,,,40.65152,-73.909454,"(40.65152, -73.909454)",DITMAS AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4429863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,18:47,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429963,Bus,Sedan,,, +06/21/2021,11:35,MANHATTAN,10002,40.71766,-73.99223,"(40.71766, -73.99223)",GRAND STREET,ELDRIDGE STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4430491,Sedan,Bike,,, +06/21/2021,1:15,,,,,,FOREST AVENUE,VANPELT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4430362,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,15:30,MANHATTAN,10026,40.80602,-73.954216,"(40.80602, -73.954216)",,,2195 8 AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4430452,Bike,Sedan,,, +06/22/2021,12:15,,,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4429791,Ambulance,E-Scooter,,, +06/22/2021,17:20,QUEENS,11412,40.709007,-73.75686,"(40.709007, -73.75686)",,,104-20 202 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4429884,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,0:30,QUEENS,11356,40.7847,-73.83854,"(40.7847, -73.83854)",130 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429748,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,11:20,,,40.70022,-73.96219,"(40.70022, -73.96219)",WILLIAMSBURG STREET WEST,KENT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4429850,Sedan,Taxi,,, +06/08/2021,15:00,STATEN ISLAND,10304,40.62738,-74.08085,"(40.62738, -74.08085)",SMITH TERRACE,VANDUZER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430578,Sedan,,,, +06/22/2021,16:41,BRONX,10460,40.83995,-73.87682,"(40.83995, -73.87682)",,,1112 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4430082,Sedan,Sedan,,, +06/22/2021,13:15,QUEENS,11432,40.70569,-73.806145,"(40.70569, -73.806145)",150 STREET,88 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4429833,Sedan,Motorcycle,,, +06/23/2020,17:44,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430678,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,17:28,QUEENS,11101,40.7563,-73.92007,"(40.7563, -73.92007)",41 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4430424,Bike,,,, +06/22/2021,11:00,,,,,,,,434 SOUTH 4 ST,0,0,0,0,0,0,0,0,Unspecified,,,,,4430283,Sedan,,,, +06/22/2021,19:58,QUEENS,11426,40.74515,-73.71922,"(40.74515, -73.71922)",,,77-56 252 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429903,Sedan,,,, +06/22/2021,6:31,BRONX,10474,40.810734,-73.88838,"(40.810734, -73.88838)",,,541 BARRETTO STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430157,Sedan,Box Truck,,, +06/22/2021,7:40,BROOKLYN,11217,40.683453,-73.9883,"(40.683453, -73.9883)",,,426 BALTIC STREET,2,0,0,0,0,0,2,0,Unsafe Speed,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,4430307,Sedan,Sedan,Sedan,Sedan, +06/22/2021,13:00,QUEENS,11357,40.780224,-73.80255,"(40.780224, -73.80255)",WILLETS POINT BOULEVARD,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430235,Sedan,Motorcycle,,, +06/22/2021,6:20,BRONX,10454,40.806164,-73.909134,"(40.806164, -73.909134)",EAST 141 STREET,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4429952,Sedan,Sedan,,, +06/21/2021,17:05,QUEENS,11102,40.771515,-73.93128,"(40.771515, -73.93128)",12 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430383,Sedan,,,, +06/21/2021,0:00,QUEENS,11432,40.71234,-73.788605,"(40.71234, -73.788605)",KINGSTON PLACE,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430480,Station Wagon/Sport Utility Vehicle,Moped,,, +06/22/2021,23:22,BROOKLYN,11230,40.63029,-73.974335,"(40.63029, -73.974335)",,,122 LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429897,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,13:30,STATEN ISLAND,10309,40.552135,-74.2121,"(40.552135, -74.2121)",,,1022 ROSSVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430413,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,14:31,BROOKLYN,11220,40.634617,-74.02353,"(40.634617, -74.02353)",BAY RIDGE AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429889,Taxi,Box Truck,,, +06/09/2021,0:01,MANHATTAN,10026,40.79867,-73.95347,"(40.79867, -73.95347)",,,129 WEST 110 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4430438,Sedan,,,, +06/21/2021,21:15,MANHATTAN,10014,40.73305,-74.01014,"(40.73305, -74.01014)",,,395 WEST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/22/2021,15:00,,,40.57437,-74.10584,"(40.57437, -74.10584)",BANCROFT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4429816,Sedan,Sedan,,, +06/22/2021,16:25,BRONX,10468,40.867878,-73.893005,"(40.867878, -73.893005)",EAST 196 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4429925,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,16:44,BROOKLYN,11203,40.65764,-73.94162,"(40.65764, -73.94162)",,,554 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430538,Ambulance,Sedan,,, +06/22/2021,17:55,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430476,Sedan,Motorbike,,, +06/21/2021,18:40,BROOKLYN,11221,40.701332,-73.92684,"(40.701332, -73.92684)",STARR STREET,WILSON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430367,Bike,,,, +06/22/2021,18:00,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4429934,Station Wagon/Sport Utility Vehicle,,,, +05/29/2021,16:39,BROOKLYN,11225,40.668518,-73.96196,"(40.668518, -73.96196)",,,881 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4430605,Taxi,Sedan,,, +06/22/2021,22:20,BRONX,10467,40.879383,-73.86007,"(40.879383, -73.86007)",,,849 EAST 215 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430063,Sedan,,,, +06/21/2021,6:20,,,40.843735,-73.895905,"(40.843735, -73.895905)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430375,Sedan,,,, +06/22/2021,14:25,,,40.673008,-73.78809,"(40.673008, -73.78809)",SUTPHIN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429915,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,17:30,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,15:30,MANHATTAN,10027,40.807102,-73.95381,"(40.807102, -73.95381)",,,304 WEST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430431,Sedan,,,, +06/21/2021,10:37,MANHATTAN,10026,40.801384,-73.95388,"(40.801384, -73.95388)",,,1864 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430444,Sedan,Bike,,, +06/22/2021,15:15,,,40.81838,-73.94699,"(40.81838, -73.94699)",WEST 137 STREET,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4430134,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,0:00,BRONX,10460,40.841293,-73.8828,"(40.841293, -73.8828)",EAST TREMONT AVENUE,VYSE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430350,Sedan,Bike,,, +07/03/2022,13:08,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4543472,Sedan,,,, +07/03/2022,3:45,MANHATTAN,10003,40.736828,-73.98418,"(40.736828, -73.98418)",,,201 EAST 20 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,15:20,,,40.76552,-73.98004,"(40.76552, -73.98004)",WEST 57 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4430033,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/21/2021,15:08,BROOKLYN,11215,40.66677,-73.98831,"(40.66677, -73.98831)",5 AVENUE,13 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430486,,,,, +06/19/2021,14:00,STATEN ISLAND,10309,,,,,,3010 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430402,Sedan,,,, +06/21/2021,6:52,BROOKLYN,11203,40.65738,-73.945984,"(40.65738, -73.945984)",,,429 WINTHROP STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430542,Taxi,Bike,,, +06/22/2021,14:40,,,40.68324,-73.9439,"(40.68324, -73.9439)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430048,Sedan,Sedan,,, +06/21/2021,10:38,,,40.682915,-73.94674,"(40.682915, -73.94674)",MARCY AVENUE,,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4430528,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/22/2021,19:50,BROOKLYN,11216,40.686375,-73.94931,"(40.686375, -73.94931)",,,441 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4430406,Sedan,Sedan,,, +06/22/2021,0:00,BRONX,10455,40.81361,-73.913345,"(40.81361, -73.913345)",EAST 148 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4429641,Sedan,,,, +06/13/2021,21:00,QUEENS,11102,40.76948,-73.931046,"(40.76948, -73.931046)",,,30-52 14 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430468,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,12:15,MANHATTAN,10026,40.801403,-73.95814,"(40.801403, -73.95814)",,,320 WEST 111 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430432,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/22/2021,15:20,BROOKLYN,11203,40.65612,-73.9386,"(40.65612, -73.9386)",EAST 42 STREET,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429895,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,11:00,BROOKLYN,11205,40.696053,-73.978935,"(40.696053, -73.978935)",,,9 MONUMENT WALK,0,0,0,0,0,0,0,0,Unspecified,,,,,4430190,Sedan,,,, +06/22/2021,15:25,BRONX,10469,40.871315,-73.860374,"(40.871315, -73.860374)",BURKE AVENUE,RADCLIFF AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4429808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,17:00,BROOKLYN,11220,40.637756,-74.00721,"(40.637756, -74.00721)",56 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430177,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,20:00,MANHATTAN,10026,40.800392,-73.95461,"(40.800392, -73.95461)",,,1842 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430448,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,15:00,,,40.62615,-74.15741,"(40.62615, -74.15741)",,,2040 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430368,Sedan,Sedan,,, +06/22/2021,18:00,MANHATTAN,10013,40.72584,-74.00757,"(40.72584, -74.00757)",SPRING STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4429951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,7:30,,,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4430024,Sedan,,,, +06/13/2021,17:30,QUEENS,11412,40.69406,-73.74953,"(40.69406, -73.74953)",202 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430335,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,0:01,BRONX,10460,40.84377,-73.88956,"(40.84377, -73.88956)",PROSPECT AVENUE,ELSMERE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430083,Sedan,,,, +06/22/2021,12:59,QUEENS,11432,40.70612,-73.799835,"(40.70612, -73.799835)",,,89-20 161 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429832,Sedan,Sedan,,, +06/22/2021,15:20,BROOKLYN,11215,40.666077,-73.995224,"(40.666077, -73.995224)",17 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429868,Sedan,Bus,,, +06/21/2021,17:14,MANHATTAN,10016,40.745724,-73.97813,"(40.745724, -73.97813)",EAST 34 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4430517,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/22/2021,8:45,BROOKLYN,11215,40.671463,-73.97881,"(40.671463, -73.97881)",,,490 2 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429764,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,14:43,,,40.709095,-73.99622,"(40.709095, -73.99622)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430492,Station Wagon/Sport Utility Vehicle,PK,,, +06/22/2021,5:12,QUEENS,11105,40.776062,-73.90876,"(40.776062, -73.90876)",,,21-57 33 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4430109,Sedan,Pick-up Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +06/22/2021,14:50,BROOKLYN,11229,40.59752,-73.941345,"(40.59752, -73.941345)",,,3540 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429921,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,23:06,BROOKLYN,11211,40.71665,-73.94474,"(40.71665, -73.94474)",GRAHAM AVENUE,JACKSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,7:15,QUEENS,11433,40.707233,-73.7865,"(40.707233, -73.7865)",,,92-44 173 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4430457,Sedan,Sedan,Sedan,, +06/22/2021,14:25,BROOKLYN,11236,40.6411,-73.90463,"(40.6411, -73.90463)",EAST 92 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430554,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,17:30,STATEN ISLAND,10312,40.5595,-74.1667,"(40.5595, -74.1667)",GURLEY AVENUE,GETZ AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429836,Sedan,Sedan,,, +06/22/2021,17:17,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",EAST 36 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4429877,Taxi,Bike,,, +06/22/2021,16:50,BROOKLYN,11217,40.681,-73.97443,"(40.681, -73.97443)",,,56 6 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430352,Sedan,Bike,,, +06/22/2021,19:22,QUEENS,11417,40.679832,-73.8516,"(40.679832, -73.8516)",87 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430266,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/22/2021,11:40,,,40.837124,-73.909645,"(40.837124, -73.909645)",TELLER AVENUE,EAST 170 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430291,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,8:45,BROOKLYN,11201,40.69822,-73.984955,"(40.69822, -73.984955)",,,187 BRIDGE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430656,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,9:43,BROOKLYN,11209,40.62143,-74.02299,"(40.62143, -74.02299)",84 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429762,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/22/2021,14:00,,,,,,SHEEPSHEAD BAY ROAD,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4430029,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/22/2021,7:50,STATEN ISLAND,10314,40.58902,-74.13867,"(40.58902, -74.13867)",ROCKLAND AVENUE,BRIELLE AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4429802,Sedan,,,, +06/21/2021,1:30,,,40.608505,-74.133125,"(40.608505, -74.133125)",MANN AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,11:30,BROOKLYN,11215,40.668102,-73.980576,"(40.668102, -73.980576)",7 AVENUE,7 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430120,Sedan,,,, +06/22/2021,9:00,QUEENS,11354,40.765686,-73.82913,"(40.765686, -73.82913)",137 STREET,LEAVITT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4429744,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,12:00,BROOKLYN,11209,40.62025,-74.03237,"(40.62025, -74.03237)",,,9105 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429885,Sedan,Sedan,,, +06/22/2021,13:00,BROOKLYN,11209,40.621162,-74.037895,"(40.621162, -74.037895)",,,9102 COLONIAL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4430256,Sedan,,,, +06/21/2021,14:16,STATEN ISLAND,10304,40.6323,-74.077126,"(40.6323, -74.077126)",VANDUZER STREET,CLINTON STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4430580,Sedan,Sedan,,, +06/22/2021,12:45,QUEENS,11691,,,,BEACH 38 STREET,ROCKAWAY FWY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4430081,Sedan,Open Body,,, +06/22/2021,8:40,,,40.755486,-73.82472,"(40.755486, -73.82472)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429823,Sedan,,,, +06/19/2021,19:00,,,40.80066,-73.9544,"(40.80066, -73.9544)",WEST 112 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430443,Sedan,,,, +06/21/2021,18:01,QUEENS,11103,40.76862,-73.911156,"(40.76862, -73.911156)",,,24-30 STEINWAY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4430416,Motorcycle,,,, +06/22/2021,13:55,MANHATTAN,10002,40.717648,-73.98868,"(40.717648, -73.98868)",ESSEX STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4429927,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +06/22/2021,19:58,QUEENS,11411,40.69787,-73.743034,"(40.69787, -73.743034)",SPRINGFIELD BOULEVARD,116 AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4429904,Sedan,,,, +06/22/2021,15:15,,,40.62435,-74.13927,"(40.62435, -74.13927)",,,1520 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430360,Bike,,,, +06/06/2021,23:15,BROOKLYN,11220,40.642586,-73.998604,"(40.642586, -73.998604)",45 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,22:25,QUEENS,11417,40.678173,-73.85749,"(40.678173, -73.85749)",80 STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4429935,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/21/2021,16:10,,,40.74425,-73.7334,"(40.74425, -73.7334)",CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,Unspecified,,4430592,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/22/2021,14:10,STATEN ISLAND,10306,40.56169,-74.124626,"(40.56169, -74.124626)",,,200 ADELAIDE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429817,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,8:52,,,40.771667,-73.9867,"(40.771667, -73.9867)",WEST 61 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430539,Box Truck,Motorcycle,,, +06/22/2021,10:40,,,40.68753,-73.78495,"(40.68753, -73.78495)",BREWER BOULEVARD,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4429790,Bus,,,, +06/16/2021,1:33,MANHATTAN,10026,40.802532,-73.95303,"(40.802532, -73.95303)",POWELL BOULEVARD,WEST 115 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4430451,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,15:00,MANHATTAN,10001,40.750942,-74.00598,"(40.750942, -74.00598)",,,601 WEST 26 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430148,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,6:25,,,40.746002,-73.99427,"(40.746002, -73.99427)",7 AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430304,E-Scooter,E-Scooter,,, +06/22/2021,6:15,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429852,Sedan,,,, +06/22/2021,15:25,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,12:30,QUEENS,11354,40.75896,-73.82985,"(40.75896, -73.82985)",MAIN STREET,40 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430233,E-Bike,,,, +06/22/2021,17:00,BRONX,10467,40.883575,-73.86281,"(40.883575, -73.86281)",WHITE PLAINS ROAD,EAST 219 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430062,Sedan,,,, +06/22/2021,12:29,,,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4429774,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,7:00,MANHATTAN,10005,40.707752,-74.01171,"(40.707752, -74.01171)",BROADWAY,WALL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429706,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,14:14,BROOKLYN,11209,40.622574,-74.03142,"(40.622574, -74.03142)",,,8711 3 AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4429888,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,5:33,,,,,,CROSS ISLAND PARKWAY,SOUTHERN STATE PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4492389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/22/2021,13:13,BRONX,10468,40.859303,-73.89884,"(40.859303, -73.89884)",GRAND CONCOURSE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,15:45,BROOKLYN,11234,40.63021,-73.93294,"(40.63021, -73.93294)",KINGS HIGHWAY,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429862,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/07/2022,11:40,BROOKLYN,11236,40.65354,-73.91019,"(40.65354, -73.91019)",,,660 EAST 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493029,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,19:45,,,40.80322,-73.95253,"(40.80322, -73.95253)",WEST 116 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430439,Sedan,Sedan,,, +01/06/2022,20:40,QUEENS,11432,40.7161,-73.79646,"(40.7161, -73.79646)",,,168-41 84 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492758,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,18:16,,,,,,,,196-05 GRAND CENTRAL PARKWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430477,Sedan,Sedan,,, +06/22/2021,19:49,BROOKLYN,11210,40.63459,-73.93825,"(40.63459, -73.93825)",EAST 40 STREET,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4429898,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,16:48,,,40.708694,-73.92071,"(40.708694, -73.92071)",CYPRESS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430376,Van,,,, +06/22/2021,12:09,,,40.690975,-73.753815,"(40.690975, -73.753815)",197 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4430503,Sedan,Bus,,, +06/22/2021,10:00,QUEENS,11102,40.769096,-73.92472,"(40.769096, -73.92472)",,,29-16 CRESCENT STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4430110,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +06/22/2021,7:00,BROOKLYN,11201,40.69051,-73.97872,"(40.69051, -73.97872)",,,161 ASHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430531,Sedan,,,, +06/22/2021,18:37,STATEN ISLAND,10301,40.638268,-74.0788,"(40.638268, -74.0788)",VICTORY BOULEVARD,MONROE AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4430581,Sedan,,,, +06/22/2021,14:50,,,40.79147,-73.97411,"(40.79147, -73.97411)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429809,4 dr sedan,,,, +06/22/2021,16:20,QUEENS,11001,40.734604,-73.70828,"(40.734604, -73.70828)",,,85-19 259 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430221,Sedan,Sedan,,, +06/19/2021,16:00,MANHATTAN,10026,,,,,,211 W 117 St,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4430456,Sedan,,,, +06/22/2021,13:30,BRONX,10458,40.867958,-73.887695,"(40.867958, -73.887695)",POND PLACE,EAST 198 STREET,,1,0,1,0,0,0,0,0,,,,,,4430084,,,,, +06/22/2021,11:30,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4429794,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,15:30,QUEENS,11373,40.737156,-73.87941,"(40.737156, -73.87941)",QUEENS BOULEVARD,VANLOON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4429843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,8:20,MANHATTAN,10032,40.83696,-73.93818,"(40.83696, -73.93818)",,,469 WEST 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430321,Taxi,,,, +06/22/2021,11:10,,,40.830563,-73.92727,"(40.830563, -73.92727)",JEROME AVENUE,EAST 162 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430292,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,8:05,BRONX,10468,40.865997,-73.89981,"(40.865997, -73.89981)",DAVIDSON AVENUE,WEST 192 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429765,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,9:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430478,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,9:00,MANHATTAN,10023,40.78031,-73.98569,"(40.78031, -73.98569)",RIVERSIDE DRIVE,WEST 72 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4430540,Bike,Pick-up Truck,,, +06/22/2021,12:34,,,40.69764,-73.92932,"(40.69764, -73.92932)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,19:35,MANHATTAN,10013,40.722584,-74.00636,"(40.722584, -74.00636)",CANAL STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430638,Sedan,,,, +06/22/2021,9:50,QUEENS,11373,40.744167,-73.889015,"(40.744167, -73.889015)",,,41-57 76 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4429941,Station Wagon/Sport Utility Vehicle,,,, +03/27/2021,2:00,,,40.754055,-73.99583,"(40.754055, -73.99583)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430427,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,15:00,MANHATTAN,10026,40.804333,-73.95305,"(40.804333, -73.95305)",,,211 WEST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430433,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,0:05,QUEENS,11420,40.666138,-73.82422,"(40.666138, -73.82422)",NORTH CONDUIT AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4429645,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/21/2021,12:05,BRONX,10459,40.82319,-73.889496,"(40.82319, -73.889496)",FAILE STREET,ALDUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430515,Sedan,,,, +06/22/2021,23:00,BRONX,10472,,,,WHITE PLAINS ROAD,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4430028,Sedan,Motorcycle,,, +06/22/2021,13:00,BRONX,10472,40.830048,-73.86983,"(40.830048, -73.86983)",,,1216 NOBLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430054,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,4:55,QUEENS,11385,40.7084,-73.89801,"(40.7084, -73.89801)",FRESH POND ROAD,PALMETTO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4430470,Sedan,Sedan,Sedan,Pick-up Truck, +06/22/2021,16:05,BROOKLYN,11221,40.691826,-73.930824,"(40.691826, -73.930824)",,,65 REID AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,,,,4429894,Sedan,Sedan,,, +06/19/2021,0:00,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,LINDEN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430336,,,,, +06/22/2021,18:55,,,40.58466,-73.95086,"(40.58466, -73.95086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429920,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,20:40,,,,,,BOWERY,Bowery & Canal Street,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430493,Flatbed Pi,,,, +06/22/2021,9:50,BROOKLYN,11222,40.721504,-73.93844,"(40.721504, -73.93844)",MORGAN AVENUE,BEADEL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430669,Box Truck,Box Truck,,, +06/22/2021,10:20,,,40.76588,-73.99464,"(40.76588, -73.99464)",WEST 50 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430037,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,16:10,QUEENS,11423,40.711117,-73.77603,"(40.711117, -73.77603)",,,90-12 184 PLACE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4429827,Sedan,Sedan,,, +06/22/2021,9:50,QUEENS,11101,40.744453,-73.92983,"(40.744453, -73.92983)",QUEENS BOULEVARD,35 STREET,,3,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4429758,Sedan,E-Scooter,,, +06/22/2021,16:58,BROOKLYN,11225,40.665825,-73.957466,"(40.665825, -73.957466)",,,220 MONTGOMERY STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430183,Sedan,,,, +06/20/2021,2:30,,,40.71957,-73.75394,"(40.71957, -73.75394)",90 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430353,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,3:15,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4429878,Bike,Sedan,,, +06/22/2021,10:00,BROOKLYN,11215,40.650288,-73.9978,"(40.650288, -73.9978)",36 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429867,Sedan,,,, +06/22/2021,11:50,,,40.765545,-73.95471,"(40.765545, -73.95471)",EAST 70 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430270,Box Truck,,,, +06/21/2021,18:40,QUEENS,11432,40.713642,-73.80694,"(40.713642, -73.80694)",PARSONS BOULEVARD,84 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430483,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/22/2021,9:30,QUEENS,11374,40.73195,-73.863434,"(40.73195, -73.863434)",62 DRIVE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4429910,Sedan,,,, +06/22/2021,10:30,MANHATTAN,10021,40.767494,-73.95933,"(40.767494, -73.95933)",2 AVENUE,EAST 70 STREET,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,,,,,4429949,E-Bike,,,, +06/17/2021,21:12,MANHATTAN,10026,40.802917,-73.94969,"(40.802917, -73.94969)",,,105 WEST 117 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,5:25,STATEN ISLAND,10307,40.509205,-74.24639,"(40.509205, -74.24639)",,,7515 AMBOY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430408,Sedan,Bus,,, +02/22/2021,15:38,,,40.667477,-73.95623,"(40.667477, -73.95623)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430604,Sedan,,,, +06/18/2021,14:16,,,40.59605,-74.14188,"(40.59605, -74.14188)",FOREST HILL ROAD,JASPER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,11:19,MANHATTAN,10280,40.70628,-74.01789,"(40.70628, -74.01789)",,,50 BATTERY PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430006,Sedan,Motorcycle,,, +06/22/2021,22:50,BROOKLYN,11237,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4429899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,23:00,MANHATTAN,10029,40.79278,-73.94754,"(40.79278, -73.94754)",,,105 EAST 106 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430553,Ambulance,Sedan,,, +06/21/2021,14:30,,,40.843822,-73.892494,"(40.843822, -73.892494)",CROTONA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430379,Sedan,Sedan,,, +06/21/2021,2:00,MANHATTAN,10030,40.822163,-73.94242,"(40.822163, -73.94242)",WEST 144 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4430401,Taxi,Sedan,,, +06/18/2021,15:00,STATEN ISLAND,10307,40.51583,-74.233536,"(40.51583, -74.233536)",,,7001 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430417,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,16:35,BROOKLYN,11222,40.7246,-73.93959,"(40.7246, -73.93959)",,,581 MORGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429930,Motorcycle,Sedan,,, +01/02/2022,11:44,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4492858,Sedan,,,, +01/05/2022,22:23,BROOKLYN,11219,40.641808,-73.99429,"(40.641808, -73.99429)",43 STREET,NEW UTRECHT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492315,Sedan,,,, +01/07/2022,8:17,QUEENS,11004,40.746037,-73.71854,"(40.746037, -73.71854)",LITTLE NECK PARKWAY,SHILOH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492666,Bus,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,19:49,QUEENS,11434,40.68794,-73.789635,"(40.68794, -73.789635)",LINDEN BOULEVARD,158 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492812,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,15:20,BROOKLYN,11217,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,NEVINS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4492589,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,15:00,BRONX,10461,40.855675,-73.85549,"(40.855675, -73.85549)",,,2103 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492836,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,7:20,,,40.63359,-74.15812,"(40.63359, -74.15812)",,,119 UNION AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4492341,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,16:13,,,40.857784,-73.83081,"(40.857784, -73.83081)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,8:30,,,40.77526,-73.819664,"(40.77526, -73.819664)",25 DRIVE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492677,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,8:50,,,,,,BANCROFT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492251,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,12:02,MANHATTAN,10010,40.741478,-73.99147,"(40.741478, -73.99147)",,,41 WEST 22 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492952,Van,Box Truck,,, +01/05/2022,6:03,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4492500,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,22:15,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4492921,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,23:19,BROOKLYN,11217,40.680267,-73.9747,"(40.680267, -73.9747)",FLATBUSH AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493118,Sedan,Sedan,,, +01/07/2022,15:13,BROOKLYN,11214,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,BATH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493155,Sedan,,,, +01/06/2022,2:40,,,40.69789,-73.899376,"(40.69789, -73.899376)",SENECA AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4492818,Sedan,Sedan,Sedan,Sedan,Sedan +01/07/2022,6:50,,,40.867767,-73.92593,"(40.867767, -73.92593)",ACADEMY STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493081,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,16:30,BROOKLYN,11229,40.599922,-73.93985,"(40.599922, -73.93985)",,,2126 BROWN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492889,Sedan,,,, +01/06/2022,12:37,,,40.865364,-73.92439,"(40.865364, -73.92439)",ACADEMY STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493075,Sedan,Bike,,, +01/03/2022,12:00,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492838,Sedan,Sedan,,, +01/06/2022,16:15,MANHATTAN,10012,40.727287,-74.00064,"(40.727287, -74.00064)",THOMPSON STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493005,Taxi,,,, +01/02/2022,19:50,,,40.69603,-73.943535,"(40.69603, -73.943535)",,,MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493137,Motorcycle,Sedan,,, +01/01/2022,17:30,,,40.838947,-73.916435,"(40.838947, -73.916435)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4492936,Van,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/06/2022,8:15,BRONX,10474,40.82066,-73.887825,"(40.82066, -73.887825)",,,1200 GARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492528,Sedan,UNKNOWN,,, +01/05/2022,15:30,,,40.676743,-73.93316,"(40.676743, -73.93316)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493186,Sedan,,,, +01/05/2022,11:15,BROOKLYN,11201,40.689224,-73.99894,"(40.689224, -73.99894)",BROOKLYN QNS EXPRESSWAY,CONGRESS STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492286,Sedan,Armored Truck,,, +01/05/2022,14:00,QUEENS,11373,40.744625,-73.88122,"(40.744625, -73.88122)",JUDGE STREET,BRITTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493051,Ambulance,Van,,, +01/07/2022,7:00,QUEENS,11423,40.70967,-73.77404,"(40.70967, -73.77404)",185 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492731,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,15:00,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493088,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,4:35,,,40.640263,-74.08799,"(40.640263, -74.08799)",PROSPECT AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493179,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,17:40,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492876,Taxi,Pick-up Truck,,, +12/09/2021,22:15,MANHATTAN,10003,40.731018,-73.985916,"(40.731018, -73.985916)",EAST 12 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493306,Bike,,,, +01/06/2022,18:10,BRONX,10455,40.814934,-73.91496,"(40.814934, -73.91496)",BROOK AVENUE,EAST 149 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493097,Sedan,,,, +01/07/2022,7:20,QUEENS,11356,40.789253,-73.85182,"(40.789253, -73.85182)",9 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492798,Bus,Sedan,Sedan,, +01/05/2022,12:50,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",BROADWAY,WEST 157 STREET,,1,0,1,0,0,0,0,0,,,,,,4492459,,,,, +01/06/2022,9:00,,,40.631542,-74.14891,"(40.631542, -74.14891)",WALKER STREET,GRANITE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493223,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,6:18,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492061,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,9:05,QUEENS,11385,40.702374,-73.87544,"(40.702374, -73.87544)",MYRTLE AVENUE,73 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492349,E-Bike,,,, +01/06/2022,21:55,BROOKLYN,11210,40.624073,-73.94928,"(40.624073, -73.94928)",AVENUE K,EAST 27 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492976,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,12:05,BRONX,10460,40.838844,-73.87817,"(40.838844, -73.87817)",EAST 177 STREET,DEVOE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492169,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,11:20,MANHATTAN,10017,40.752064,-73.97351,"(40.752064, -73.97351)",3 AVENUE,EAST 44 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492709,Sedan,Sedan,,, +01/07/2022,20:10,,,40.897144,-73.88029,"(40.897144, -73.88029)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,,,4492862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,17:00,QUEENS,11373,40.734375,-73.87342,"(40.734375, -73.87342)",57 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4493022,Sedan,Sedan,,, +01/05/2022,12:00,,,40.720074,-73.988365,"(40.720074, -73.988365)",RIVINGTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4492367,Bike,Van,,, +01/05/2022,10:33,BROOKLYN,11220,40.650482,-74.01168,"(40.650482, -74.01168)",3 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492244,Sedan,Sedan,,, +01/05/2022,12:00,QUEENS,11379,40.72028,-73.86548,"(40.72028, -73.86548)",FURMANVILLE AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492348,Box Truck,Box Truck,,, +01/06/2022,2:34,MANHATTAN,10034,40.86065,-73.91966,"(40.86065, -73.91966)",,,401 WEST 202 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,13:50,,,40.70479,-73.961876,"(40.70479, -73.961876)",ROSS STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4492565,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,20:11,QUEENS,11416,40.686398,-73.84719,"(40.686398, -73.84719)",,,95-39 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,14:50,STATEN ISLAND,10306,40.58124,-74.09845,"(40.58124, -74.09845)",JEFFERSON AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,6:10,STATEN ISLAND,10307,40.5119,-74.24963,"(40.5119, -74.24963)",,,116 MAIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492026,Sedan,Sedan,,, +01/06/2022,20:10,QUEENS,11106,40.755833,-73.92816,"(40.755833, -73.92816)",36 AVENUE,33 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492601,Sedan,Sedan,,, +01/01/2022,10:57,BROOKLYN,11233,40.681644,-73.91205,"(40.681644, -73.91205)",,,438 MARION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493069,Sedan,Sedan,,, +01/07/2022,8:50,QUEENS,11411,40.690266,-73.74287,"(40.690266, -73.74287)",FRANCIS LEWIS BOULEVARD,120 AVENUE,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,,,,4492698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,23:50,,,40.891838,-73.86275,"(40.891838, -73.86275)",EAST 229 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492515,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,1:54,BROOKLYN,11221,40.68577,-73.920616,"(40.68577, -73.920616)",,,72 HOWARD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492869,Sedan,Sedan,,, +01/04/2022,11:45,QUEENS,11413,40.670887,-73.76078,"(40.670887, -73.76078)",141 AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,9:00,QUEENS,11354,40.769684,-73.82165,"(40.769684, -73.82165)",32 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492926,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,12:18,BROOKLYN,11218,40.640697,-73.975685,"(40.640697, -73.975685)",,,421 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493101,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,11:00,QUEENS,11101,40.74355,-73.958405,"(40.74355, -73.958405)",2 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492736,Sedan,,,, +01/06/2022,19:18,MANHATTAN,10009,40.73503,-73.97974,"(40.73503, -73.97974)",,,346 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492962,Pick-up Truck,,,, +01/07/2021,15:25,,,40.753925,-73.99761,"(40.753925, -73.99761)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4493124,Box Truck,Bus,,, +01/06/2022,14:50,BRONX,10465,40.827675,-73.8409,"(40.827675, -73.8409)",,,911 BRUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492901,Sedan,Box Truck,,, +12/24/2021,19:05,MANHATTAN,10012,40.725773,-73.9948,"(40.725773, -73.9948)",,,332 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493000,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +01/07/2022,22:00,,,40.850643,-73.93737,"(40.850643, -73.93737)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493106,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:30,BRONX,10466,40.88619,-73.857994,"(40.88619, -73.857994)",BARNES AVENUE,EAST 224 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493210,,,,, +01/07/2022,1:20,,,40.766155,-73.89226,"(40.766155, -73.89226)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492636,Sedan,Dump,,, +01/07/2022,16:00,BROOKLYN,11211,40.704876,-73.95571,"(40.704876, -73.95571)",MARCY AVENUE,HEWES STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492750,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,15:00,BRONX,10456,40.838192,-73.91228,"(40.838192, -73.91228)",GRANT AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4493339,Sedan,Sedan,Sedan,, +01/05/2022,13:24,,,,,,PLAZA DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,15:42,QUEENS,11415,40.709007,-73.832634,"(40.709007, -73.832634)",BEVERLY ROAD,AUDLEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492763,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:05,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492874,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/07/2022,6:51,,,,,,CROSS BAY PARKWAY,JAMAICA BAY,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492768,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,18:50,,,40.666294,-73.89445,"(40.666294, -73.89445)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492447,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,7:00,,,40.690453,-73.91176,"(40.690453, -73.91176)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492138,Sedan,Sedan,,, +01/05/2022,10:50,,,40.688786,-73.98358,"(40.688786, -73.98358)",BOND STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492143,Sedan,,,, +01/05/2022,17:22,STATEN ISLAND,10301,40.646664,-74.088936,"(40.646664, -74.088936)",RICHMOND TERRACE,JERSEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492400,Sedan,Sedan,,, +01/07/2022,5:10,QUEENS,11373,40.739586,-73.8737,"(40.739586, -73.8737)",,,90-09 51 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492598,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,14:00,,,40.637638,-74.16127,"(40.637638, -74.16127)",RICHMOND TERRACE,LOCKMAN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4543481,Sedan,Sedan,,, +01/05/2022,20:35,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,16:35,BROOKLYN,11223,40.600838,-73.98125,"(40.600838, -73.98125)",AVENUE S,WEST 9 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493324,Sedan,,,, +01/07/2022,4:04,,,,,,31 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492617,Snow Plow,Taxi,Sedan,, +01/05/2022,7:00,BRONX,10466,40.89276,-73.85256,"(40.89276, -73.85256)",BUSSING AVENUE,EAST 234 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492224,Sedan,Sedan,,, +01/07/2022,8:04,MANHATTAN,10029,40.78459,-73.94198,"(40.78459, -73.94198)",FDR DRIVE,EAST 99 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492982,Snow Plow,Sedan,,, +01/06/2022,10:35,QUEENS,11423,40.710705,-73.76346,"(40.710705, -73.76346)",99 AVENUE,196 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,16:30,QUEENS,11385,40.707264,-73.90792,"(40.707264, -73.90792)",,,1929 MENAHAN STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493160,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,16:50,,,40.691914,-73.88363,"(40.691914, -73.88363)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4492634,Box Truck,,,, +01/05/2022,8:07,MANHATTAN,10037,40.812737,-73.93762,"(40.812737, -73.93762)",EAST 135 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492077,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:30,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492784,Sedan,,,, +01/05/2022,23:04,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492401,Sedan,,,, +01/06/2022,17:00,BROOKLYN,11234,40.630886,-73.92219,"(40.630886, -73.92219)",,,5603 AVENUE I,0,0,0,0,0,0,0,0,Unspecified,,,,,4492713,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,12:00,BRONX,10459,40.818913,-73.893555,"(40.818913, -73.893555)",,,887 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4493293,Sedan,,,, +01/06/2022,19:55,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493018,Sedan,Sedan,,, +01/07/2022,10:40,,,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492998,Sedan,,,, +12/25/2021,14:37,BROOKLYN,11226,40.652294,-73.95625,"(40.652294, -73.95625)",,,72 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4492969,Sedan,,,, +01/05/2022,16:53,BRONX,10458,40.86815,-73.88437,"(40.86815, -73.88437)",,,369 EAST BEDFORD PARK BOULEVARD,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4492466,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,21:27,,,40.707294,-73.85064,"(40.707294, -73.85064)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492761,Sedan,Taxi,,, +01/07/2022,8:57,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4493168,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,5:45,,,40.614246,-74.15379,"(40.614246, -74.15379)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4492497,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/03/2022,14:00,,,40.694214,-73.95932,"(40.694214, -73.95932)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492740,Box Truck,Box Truck,,, +01/05/2022,10:45,BRONX,10474,40.811092,-73.89335,"(40.811092, -73.89335)",RANDALL AVENUE,TRUXTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493290,Tractor Truck Diesel,Bus,,, +01/05/2022,6:30,BRONX,10463,40.883648,-73.8952,"(40.883648, -73.8952)",,,3853 CANNON PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492105,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,12:34,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4492176,Sedan,,,, +01/06/2022,9:45,BRONX,10457,40.84089,-73.89817,"(40.84089, -73.89817)",,,1701 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492624,Sedan,,,, +01/05/2022,18:04,BROOKLYN,11230,40.63524,-73.967636,"(40.63524, -73.967636)",CONEY ISLAND AVENUE,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493319,Sedan,E-Bike,,, +01/05/2022,22:15,BROOKLYN,11214,40.596054,-73.99725,"(40.596054, -73.99725)",,,2266 CROPSEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492987,Sedan,,,, +01/07/2022,19:00,BRONX,10467,40.87146,-73.86827,"(40.87146, -73.86827)",BURKE AVENUE,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493196,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,17:10,,,40.63323,-73.964806,"(40.63323, -73.964806)",FOSTER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4492989,Sedan,,,, +01/06/2022,18:40,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4492629,Van,Sedan,,, +01/05/2022,7:10,BRONX,10470,40.9049,-73.849144,"(40.9049, -73.849144)",,,714 PENFIELD STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492219,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,15:21,BRONX,10459,40.822235,-73.88746,"(40.822235, -73.88746)",SHERIDAN EXPRESSWAY,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492331,Sedan,Sedan,,, +01/06/2022,13:00,BRONX,10461,40.842976,-73.844826,"(40.842976, -73.844826)",,,1422 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492619,Sedan,E-Scooter,,, +01/06/2022,12:13,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,NEW DORP LANE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4492513,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,23:30,,,40.591446,-74.145454,"(40.591446, -74.145454)",,,1170 FOREST HILL ROAD,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4492932,Sedan,,,, +01/07/2022,3:08,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Driver Inattention/Distraction,Driver Inattention/Distraction,,,4492592,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,9:55,,,40.655037,-73.935585,"(40.655037, -73.935585)",LENOX ROAD,,,1,0,0,0,1,0,0,0,Pavement Slippery,Unspecified,,,,4492128,Station Wagon/Sport Utility Vehicle,Bike,,, +01/07/2022,0:00,QUEENS,11422,40.65741,-73.72839,"(40.65741, -73.72839)",147 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492751,Sedan,Sedan,,, +01/07/2022,7:09,BROOKLYN,11223,40.586308,-73.96943,"(40.586308, -73.96943)",WEST STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493080,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,18:28,QUEENS,11357,40.789783,-73.81419,"(40.789783, -73.81419)",12 ROAD,150 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492240,Sedan,Tractor Truck Diesel,,, +01/07/2022,16:00,BROOKLYN,11209,40.62359,-74.025055,"(40.62359, -74.025055)",5 AVENUE,83 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492729,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:18,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492060,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,16:29,BROOKLYN,11236,40.638866,-73.886314,"(40.638866, -73.886314)",EAST 104 STREET,AVENUE N,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,18:30,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492720,Sedan,,,, +01/05/2022,0:20,,,40.896614,-73.860954,"(40.896614, -73.860954)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4492210,Sedan,,,, +01/07/2022,7:30,BROOKLYN,11218,40.63456,-73.96909,"(40.63456, -73.96909)",,,3723 18 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492981,Taxi,Taxi,,, +12/31/2021,0:20,QUEENS,11412,40.69733,-73.76202,"(40.69733, -73.76202)",FARMERS BOULEVARD,114 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4492651,Sedan,Sedan,,, +01/05/2022,15:56,BRONX,10456,40.83341,-73.91301,"(40.83341, -73.91301)",COLLEGE AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493031,Bus,Sedan,,, +01/05/2022,17:20,BROOKLYN,11220,40.648907,-74.01514,"(40.648907, -74.01514)",,,252 49 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492393,Sedan,,,, +12/31/2021,9:29,,,40.88263,-73.839516,"(40.88263, -73.839516)",BAYCHESTER AVENUE,,,1,0,1,0,0,0,0,0,Physical Disability,,,,,4493202,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,22:31,,,40.78809,-73.98271,"(40.78809, -73.98271)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4492857,Sedan,,,, +01/05/2022,8:08,STATEN ISLAND,10308,40.551292,-74.150375,"(40.551292, -74.150375)",GIFFORDS LANE,BROWER COURT,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492192,Sedan,,,, +01/07/2022,14:11,,,,,,,,61-12 61 road,0,0,0,0,0,0,0,0,Unspecified,,,,,4492807,Sedan,,,, +01/07/2022,7:46,BRONX,10472,40.830967,-73.86185,"(40.830967, -73.86185)",,,1207 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,12:24,BROOKLYN,11211,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492564,Pick-up Truck,,,, +01/06/2022,10:15,QUEENS,11433,40.703674,-73.79087,"(40.703674, -73.79087)",DOUGLAS AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492479,Sedan,,,, +01/07/2022,15:30,STATEN ISLAND,10310,40.626537,-74.12921,"(40.626537, -74.12921)",FOREST AVENUE,MUNDY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493182,Sedan,Sedan,,, +01/06/2022,23:55,QUEENS,11377,40.755253,-73.89874,"(40.755253, -73.89874)",,,32-41 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492688,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,1:00,QUEENS,11355,40.75919,-73.80981,"(40.75919, -73.80981)",156 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492925,Sedan,,,, +01/05/2022,19:21,,,40.68397,-73.944046,"(40.68397, -73.944046)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492263,Ambulance,Sedan,,, +01/06/2022,4:30,BROOKLYN,11224,40.579052,-73.98415,"(40.579052, -73.98415)",WEST 16 STREET,NEPTUNE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492430,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/05/2022,18:27,QUEENS,11368,40.750202,-73.870056,"(40.750202, -73.870056)",,,37-76 JUNCTION BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493122,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/06/2022,7:40,QUEENS,11368,40.746548,-73.86491,"(40.746548, -73.86491)",43 AVENUE,99 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493021,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/05/2022,0:53,BRONX,10463,40.873787,-73.905266,"(40.873787, -73.905266)",,,2820 BAILEY AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4492486,Taxi,Sedan,,, +01/06/2022,10:35,,,40.681137,-73.95567,"(40.681137, -73.95567)",FULTON STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4492744,Station Wagon/Sport Utility Vehicle,Bike,,, +01/05/2022,6:50,BROOKLYN,11208,40.66313,-73.86028,"(40.66313, -73.86028)",COZINE AVENUE,FORBELL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492455,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,23:16,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Following Too Closely,,,,4492326,Sedan,Sedan,,, +12/20/2021,20:19,BROOKLYN,11219,40.636147,-73.99097,"(40.636147, -73.99097)",13 AVENUE,47 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4493143,Sedan,E-Bike,,, +01/06/2022,17:00,QUEENS,11435,40.699787,-73.813644,"(40.699787, -73.813644)",138 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492535,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,9:15,STATEN ISLAND,10306,40.583683,-74.10792,"(40.583683, -74.10792)",RICHMOND ROAD,HUNTER AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4492610,Sedan,,,, +01/07/2022,7:00,QUEENS,11435,40.709373,-73.81014,"(40.709373, -73.81014)",85 DRIVE,148 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492757,Sedan,Sedan,,, +07/03/2022,17:01,,,40.776657,-73.827415,"(40.776657, -73.827415)",25 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4543161,Sedan,Sedan,,, +12/27/2021,6:08,,,40.706085,-73.8085,"(40.706085, -73.8085)",148 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4493299,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,12:05,BROOKLYN,11228,40.62475,-74.01358,"(40.62475, -74.01358)",,,7414 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492715,Sedan,,,, +01/05/2022,17:30,BROOKLYN,11211,40.706345,-73.957375,"(40.706345, -73.957375)",,,236 MARCY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492558,Sedan,,,, +01/06/2022,11:00,QUEENS,11379,40.71438,-73.90111,"(40.71438, -73.90111)",,,61-22 FRESH POND ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492700,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,22:05,BRONX,10453,40.85154,-73.918335,"(40.85154, -73.918335)",POPHAM AVENUE,PALISADE PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492792,Sedan,,,, +01/05/2022,7:27,STATEN ISLAND,10306,40.57125,-74.1199,"(40.57125, -74.1199)",BEACH AVENUE,SOUTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,,4492250,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/04/2022,11:05,QUEENS,11101,40.7533,-73.91476,"(40.7533, -73.91476)",,,34-03 48 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492974,Motorcycle,Station Wagon/Sport Utility Vehicle,Bus,, +01/07/2022,6:45,QUEENS,11423,40.7111,-73.776,"(40.7111, -73.776)",,,90-19 184 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4493303,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/07/2022,6:45,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,Unspecified,4492656,Sedan,Sedan,Sedan,Sedan,Sedan +01/03/2022,14:00,,,40.679367,-73.931335,"(40.679367, -73.931335)",FULTON STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4492870,Sedan,Sedan,,, +01/05/2022,11:20,BROOKLYN,11205,40.699047,-73.95649,"(40.699047, -73.95649)",,,463 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492162,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/05/2022,18:45,MANHATTAN,10002,40.712463,-73.99241,"(40.712463, -73.99241)",MADISON STREET,PIKE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493090,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,6:05,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4492773,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,22:35,BROOKLYN,11209,40.627243,-74.02357,"(40.627243, -74.02357)",78 STREET,5 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4492291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,15:00,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493038,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,23:40,QUEENS,11429,40.71393,-73.732315,"(40.71393, -73.732315)",221 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492641,Sedan,Sedan,,, +01/06/2022,16:21,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",EAST 138 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,8:06,,,40.6709,-73.95319,"(40.6709, -73.95319)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492523,Sedan,,,, +01/06/2022,0:50,BROOKLYN,11212,40.657173,-73.921074,"(40.657173, -73.921074)",KINGS HIGHWAY,EAST 93 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4493016,Sedan,,,, +01/06/2022,10:05,QUEENS,11362,40.770805,-73.735405,"(40.770805, -73.735405)",,,253-05 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492819,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,12:45,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492725,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/07/2022,22:00,STATEN ISLAND,10308,40.55243,-74.1437,"(40.55243, -74.1437)",AMBOY ROAD,FIELDWAY AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4492852,Sedan,,,, +01/06/2022,14:10,BROOKLYN,11212,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493067,Sedan,Sedan,,, +01/07/2022,1:12,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492683,Sedan,,,, +07/02/2022,9:35,BRONX,10454,40.807636,-73.921524,"(40.807636, -73.921524)",,,428 EAST 137 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543471,Sedan,,,, +01/07/2022,0:05,BRONX,10460,40.836437,-73.88498,"(40.836437, -73.88498)",,,961 EAST 174 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492946,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,11:25,,,40.693413,-73.940125,"(40.693413, -73.940125)",MARCUS GARVEY BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4492917,Pick-up Truck,Refrigerated Van,Sedan,, +01/05/2022,16:00,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492297,Sedan,,,, +01/07/2022,22:29,BROOKLYN,11203,40.64964,-73.93768,"(40.64964, -73.93768)",,,4212 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,4:00,BROOKLYN,11234,40.58635,-73.89665,"(40.58635, -73.89665)",,,3159 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492661,Sedan,,,, +01/05/2022,6:08,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492388,Sedan,Sedan,,, +01/05/2022,15:11,BROOKLYN,11216,40.674313,-73.95009,"(40.674313, -73.95009)",NOSTRAND AVENUE,PROSPECT PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492529,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,18:52,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4493263,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,1:11,BRONX,10452,40.832626,-73.925385,"(40.832626, -73.925385)",JEROME AVENUE,EAST 165 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4493050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,6:22,,,40.860283,-73.9364,"(40.860283, -73.9364)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,,,4492273,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,19:55,,,40.903122,-73.888084,"(40.903122, -73.888084)",MOSHOLU PARKWAY,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492829,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,7:45,BROOKLYN,11203,40.64419,-73.93349,"(40.64419, -73.93349)",CLARENDON ROAD,EAST 46 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493011,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/05/2022,16:15,STATEN ISLAND,10310,40.633858,-74.12596,"(40.633858, -74.12596)",CLOVE ROAD,CASTLETON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493178,Sedan,,,, +12/22/2021,11:44,BROOKLYN,11229,40.61313,-73.94625,"(40.61313, -73.94625)",,,1551 EAST 28 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492881,Sedan,Sedan,,, +01/05/2022,11:55,QUEENS,11368,40.757534,-73.86658,"(40.757534, -73.86658)",102 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492228,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,17:00,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,65 PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4492568,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/06/2022,18:35,BROOKLYN,11215,40.661427,-73.99333,"(40.661427, -73.99333)",,,689 5 AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4492583,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/07/2022,20:43,,,40.83872,-73.91378,"(40.83872, -73.91378)",EAST 170 STREET,,,1,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493057,E-Bike,,,, +01/05/2022,6:20,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493116,Sedan,Sedan,,, +01/05/2022,15:01,,,40.82482,-73.86865,"(40.82482, -73.86865)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4492426,Sedan,Tractor Truck Diesel,,, +01/05/2022,11:50,,,40.77402,-73.95457,"(40.77402, -73.95457)",EAST 80 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4492506,Station Wagon/Sport Utility Vehicle,Bike,,, +01/05/2022,18:24,BROOKLYN,11220,40.643326,-73.9998,"(40.643326, -73.9998)",,,843 45 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4492310,Sedan,Sedan,Sedan,Sedan,Sedan +01/05/2022,5:48,STATEN ISLAND,10312,40.56345,-74.169754,"(40.56345, -74.169754)",RICHMOND AVENUE,DRUMGOOLE ROAD WEST,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,4492668,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/07/2022,10:47,BROOKLYN,11236,40.627464,-73.89956,"(40.627464, -73.89956)",EAST 80 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492803,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,18:00,QUEENS,11103,40.76623,-73.915306,"(40.76623, -73.915306)",28 AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493153,Sedan,,,, +01/06/2022,12:30,BROOKLYN,11229,40.596756,-73.93342,"(40.596756, -73.93342)",KNAPP STREET,AVENUE W,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492882,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,19:51,BRONX,10471,40.908222,-73.89803,"(40.908222, -73.89803)",,,6022 HUXLEY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492350,Sedan,Sedan,,, +01/07/2022,18:15,BROOKLYN,11234,40.63147,-73.91955,"(40.63147, -73.91955)",FLATLANDS AVENUE,EAST 59 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492737,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,15:00,BROOKLYN,11233,40.67551,-73.910324,"(40.67551, -73.910324)",,,2271 PACIFIC STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493073,Sedan,Ambulance,,, +12/12/2021,11:40,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4493169,Sedan,Sedan,,, +01/05/2022,13:10,,,40.86235,-73.89997,"(40.86235, -73.89997)",MORRIS AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492616,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:21,,,40.76923,-73.91033,"(40.76923, -73.91033)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492796,Sedan,,,, +01/06/2022,2:45,BROOKLYN,11225,40.660027,-73.96061,"(40.660027, -73.96061)",FLATBUSH AVENUE,BEEKMAN PLACE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4492542,Taxi,Sedan,Sedan,, +01/07/2022,14:56,,,40.639984,-73.94842,"(40.639984, -73.94842)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4493026,Bus,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,7:03,QUEENS,11423,40.71108,-73.775986,"(40.71108, -73.775986)",,,90-37 184 PLACE,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4492732,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,5:15,,,40.66856,-73.75672,"(40.66856, -73.75672)",SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492644,Sedan,Garbage or Refuse,,, +01/05/2022,18:22,QUEENS,11377,40.74016,-73.89525,"(40.74016, -73.89525)",QUEENS BOULEVARD,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492368,Box Truck,Sedan,,, +06/26/2022,23:26,,,,,,HARLEM RIVER DRIVE RAMP,,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4543650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,21:00,BRONX,10469,40.87015,-73.84562,"(40.87015, -73.84562)",,,1381 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4430464,Sedan,Sedan,,, +01/06/2022,16:50,,,40.606457,-73.76098,"(40.606457, -73.76098)",MOTT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4492637,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,14:20,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492546,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,0:11,BROOKLYN,11210,40.636074,-73.951096,"(40.636074, -73.951096)",FLATBUSH AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492037,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,23:00,,,,,,30 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492602,Sedan,Sedan,,, +12/29/2021,19:26,BROOKLYN,11221,40.6871,-73.920845,"(40.6871, -73.920845)",,,44 HOWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492865,Sedan,Sedan,,, +01/06/2022,18:00,QUEENS,11378,40.722897,-73.91386,"(40.722897, -73.91386)",MASPETH AVENUE,RUST STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492777,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,13:30,BROOKLYN,11201,40.687992,-73.98962,"(40.687992, -73.98962)",PACIFIC STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492769,Sedan,,,, +01/06/2022,8:40,,,40.69349,-73.97917,"(40.69349, -73.97917)",ASHLAND PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492569,Tanker,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,19:00,QUEENS,11411,40.698452,-73.730316,"(40.698452, -73.730316)",,,114-120 228 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492256,Sedan,,,, +01/04/2022,21:10,,,40.575573,-73.99432,"(40.575573, -73.99432)",MERMAID AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493096,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,21:14,BROOKLYN,11208,40.670326,-73.87796,"(40.670326, -73.87796)",BLAKE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492448,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,11:01,,,40.689243,-73.98873,"(40.689243, -73.98873)",STATE STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492144,Taxi,,,, +01/07/2022,17:25,MANHATTAN,10016,40.74592,-73.986404,"(40.74592, -73.986404)",5 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493102,E-Bike,Taxi,,, +01/04/2022,14:40,QUEENS,11412,40.701164,-73.75023,"(40.701164, -73.75023)",MURDOCK AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492815,Sedan,Sedan,,, +01/07/2022,11:30,,,40.668484,-73.92532,"(40.668484, -73.92532)",,,EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493227,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/27/2021,15:00,,,40.585342,-73.94157,"(40.585342, -73.94157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4492839,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/06/2022,16:25,MANHATTAN,10026,40.797718,-73.94938,"(40.797718, -73.94938)",,,6 WEST 111 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4493125,Bike,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,20:30,QUEENS,11415,40.70874,-73.830635,"(40.70874, -73.830635)",83 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492764,Station Wagon/Sport Utility Vehicle,,,, +01/06/2021,12:45,,,40.727287,-74.00064,"(40.727287, -74.00064)",WEST HOUSTON STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493004,E-Bike,,,, +01/06/2022,9:23,BROOKLYN,11222,40.72218,-73.938736,"(40.72218, -73.938736)",LOMBARDY STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492435,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/06/2022,16:35,,,,,,BRONX WHITESTONE BRIDGE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4492902,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,19:55,BROOKLYN,11219,40.63937,-73.9948,"(40.63937, -73.9948)",11 AVENUE,46 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493142,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,6:25,BROOKLYN,11221,40.689774,-73.922585,"(40.689774, -73.922585)",,,1350 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493107,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/04/2022,15:25,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492937,Sedan,Sedan,,, +01/07/2022,13:40,MANHATTAN,10025,40.79348,-73.96686,"(40.79348, -73.96686)",,,50 WEST 97 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492712,Sedan,,,, +01/06/2022,14:07,BROOKLYN,11211,40.717834,-73.95773,"(40.717834, -73.95773)",BEDFORD AVENUE,NORTH 7 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492588,Sedan,Bike,,, +01/06/2022,15:00,BROOKLYN,11206,40.69677,-73.93701,"(40.69677, -73.93701)",,,1090 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493089,Sedan,Sedan,,, +01/06/2022,16:40,BROOKLYN,11219,40.629036,-74.01164,"(40.629036, -74.01164)",,,6818 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,8:30,,,40.887547,-73.81512,"(40.887547, -73.81512)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492834,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,17:40,BROOKLYN,11218,40.642685,-73.99122,"(40.642685, -73.99122)",FORT HAMILTON PARKWAY,40 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492325,Sedan,,,, +01/07/2022,7:01,BRONX,10461,40.84088,-73.83938,"(40.84088, -73.83938)",LITTLE LEAGUE PLACE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493336,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,11:20,BRONX,10452,40.830143,-73.92858,"(40.830143, -73.92858)",JEROME AVENUE,ANDERSON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493039,Sedan,,,, +01/01/2022,13:45,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",DE KALB AVENUE,MARCUS GARVEY BOULEVARD,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4492877,Sedan,,,, +01/07/2022,9:16,QUEENS,11361,40.764263,-73.77134,"(40.764263, -73.77134)",40 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492680,Station Wagon/Sport Utility Vehicle,Dump,,, +01/05/2022,8:14,,,40.60242,-74.13329,"(40.60242, -74.13329)",,,542 BUCHANAN AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,,,4492340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/16/2021,16:49,BRONX,10451,40.819057,-73.92923,"(40.819057, -73.92923)",GERARD AVENUE,EAST 149 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492693,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,11:30,,,40.828945,-73.90503,"(40.828945, -73.90503)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4492948,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:25,QUEENS,11355,40.74464,-73.83355,"(40.74464, -73.83355)",LAWRENCE STREET,59 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4492799,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,18:15,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492501,Sedan,Sedan,,, +01/05/2022,5:05,QUEENS,11385,40.701847,-73.85727,"(40.701847, -73.85727)",,,82-80 88 LANE,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,,,,,4492394,Pick-up Truck,,,, +01/05/2022,14:00,BRONX,10462,40.854443,-73.86482,"(40.854443, -73.86482)",LYDIG AVENUE,WALLACE AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4492188,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,9:31,,,40.58466,-73.95086,"(40.58466, -73.95086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492888,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,16:34,BRONX,10469,40.87167,-73.8486,"(40.87167, -73.8486)",BURKE AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493201,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +01/07/2022,23:58,,,40.73828,-73.80296,"(40.73828, -73.80296)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4492955,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/04/2022,17:42,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4492991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,7:00,QUEENS,11385,40.706753,-73.91437,"(40.706753, -73.91437)",STANHOPE STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493161,Sedan,Sedan,,, +01/05/2022,6:00,,,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,4492223,Sedan,Station Wagon/Sport Utility Vehicle,Bus,Box Truck,Station Wagon/Sport Utility Vehicle +01/05/2021,18:05,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Following Too Closely,,,4493079,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +01/06/2022,20:40,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,CREST ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492633,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,7:07,BRONX,10475,40.86505,-73.83001,"(40.86505, -73.83001)",,,200 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4492091,Sedan,,,, +01/07/2022,17:55,STATEN ISLAND,10301,40.634533,-74.0867,"(40.634533, -74.0867)",OXFORD PLACE,CEBRA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493183,Sedan,Sedan,,, +01/07/2022,4:19,BRONX,10472,40.83313,-73.8715,"(40.83313, -73.8715)",,,1332 CROES AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4492620,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,7:50,QUEENS,11001,40.73133,-73.70805,"(40.73133, -73.70805)",258 STREET,87 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4492403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,23:45,,,,,,FDR DRIVE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430600,Sedan,,,, +01/04/2022,13:26,,,40.669273,-73.922554,"(40.669273, -73.922554)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493187,Sedan,,,, +01/07/2022,5:50,QUEENS,11362,40.75998,-73.72388,"(40.75998, -73.72388)",60 AVENUE,256 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492752,Station Wagon/Sport Utility Vehicle,Snow Plow,,, +01/05/2022,13:55,BROOKLYN,11226,40.656185,-73.95121,"(40.656185, -73.95121)",,,672 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,Unspecified,Unspecified,Unspecified,4492285,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/07/2022,8:40,,,40.792534,-73.827255,"(40.792534, -73.827255)",MALBA DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,15:44,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",EAST 141 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4493308,Sedan,E-Bike,,, +01/07/2022,20:40,,,40.731415,-73.91723,"(40.731415, -73.91723)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492747,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,21:05,BRONX,10455,40.819054,-73.90994,"(40.819054, -73.90994)",,,601 EAST 156 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4492596,Sedan,Sedan,,, +12/31/2021,18:15,QUEENS,11434,40.679653,-73.77724,"(40.679653, -73.77724)",166 STREET,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492648,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,11:06,MANHATTAN,10010,40.742123,-73.99097,"(40.742123, -73.99097)",,,40 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492196,Van,Box Truck,,, +01/05/2022,13:25,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492231,Sedan,Sedan,,, +01/05/2022,23:38,BROOKLYN,11216,40.683647,-73.94688,"(40.683647, -73.94688)",MARCY AVENUE,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492508,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,6:55,MANHATTAN,10001,40.74959,-74.00279,"(40.74959, -74.00279)",10 AVENUE,WEST 26 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493123,Taxi,,,, +01/05/2022,22:19,BRONX,10458,40.863647,-73.8918,"(40.863647, -73.8918)",MARION AVENUE,EAST 193 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4492467,Sedan,Sedan,,, +01/05/2022,20:43,,,40.797916,-73.96385,"(40.797916, -73.96385)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492481,Sedan,Scooter,,, +01/05/2022,0:00,BRONX,10454,40.804905,-73.91883,"(40.804905, -73.91883)",EAST 135 STREET,SAINT ANNS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4492669,Sedan,Sedan,,, +01/01/2022,1:39,QUEENS,11364,40.750687,-73.752235,"(40.750687, -73.752235)",,,225-03 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492781,Sedan,Sedan,,, +01/05/2022,8:15,MANHATTAN,10035,40.806408,-73.94016,"(40.806408, -73.94016)",EAST 126 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492076,Pick-up Truck,Sedan,,, +01/06/2022,13:30,MANHATTAN,10012,40.726524,-73.99585,"(40.726524, -73.99585)",BROADWAY,BLEECKER STREET,,1,0,0,0,0,0,1,0,Passenger Distraction,Driver Inattention/Distraction,,,,4492999,Station Wagon/Sport Utility Vehicle,E SKATEBOA,,, +01/07/2022,1:00,MANHATTAN,10022,40.75513,-73.96525,"(40.75513, -73.96525)",1 AVENUE,EAST 52 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4492708,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,23:00,BRONX,10469,40.87413,-73.83796,"(40.87413, -73.83796)",,,3155 ELY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4493209,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,3:40,BROOKLYN,11233,40.67878,-73.91986,"(40.67878, -73.91986)",,,1915 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492861,Box Truck,Sedan,,, +01/02/2022,19:10,,,,,,144 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4492804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,6:25,BRONX,10460,40.839622,-73.870285,"(40.839622, -73.870285)",EAST 180 STREET,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,,,4492345,Sedan,Carry All,Station Wagon/Sport Utility Vehicle,, +01/07/2022,4:16,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",DE KALB AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,14:50,QUEENS,11434,40.681656,-73.76238,"(40.681656, -73.76238)",EVELETH ROAD,SIDWAY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492811,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,13:58,BROOKLYN,11226,40.651363,-73.96345,"(40.651363, -73.96345)",CATON AVENUE,EAST 18 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492986,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,11:11,,,,,,CLEARVIEW EXPRESSWAY,32 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,2:05,BROOKLYN,11221,40.696735,-73.93481,"(40.696735, -73.93481)",BROADWAY,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493083,Sedan,,,, +11/23/2021,8:35,BROOKLYN,11221,40.692184,-73.93136,"(40.692184, -73.93136)",,,1023 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492930,Bus,Bus,,, +01/05/2022,8:10,,,40.77926,-73.81932,"(40.77926, -73.81932)",22 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492137,Station Wagon/Sport Utility Vehicle,Bus,,, +01/02/2022,12:27,BROOKLYN,11218,40.643574,-73.97166,"(40.643574, -73.97166)",BEVERLEY ROAD,EAST 8 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493321,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/06/2022,14:22,BROOKLYN,11221,40.69535,-73.91632,"(40.69535, -73.91632)",WILSON AVENUE,GATES AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4492674,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,8:50,STATEN ISLAND,10301,40.640263,-74.08799,"(40.640263, -74.08799)",YORK AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493181,Sedan,,,, +01/06/2022,22:20,BROOKLYN,11230,40.616184,-73.9713,"(40.616184, -73.9713)",,,1401 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493100,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,15:10,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4493033,Sedan,Box Truck,,, +01/05/2022,19:25,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unsafe Lane Changing,Unspecified,,,4492425,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,18:05,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493017,Sedan,,,, +01/05/2022,6:20,,,40.73796,-73.93588,"(40.73796, -73.93588)",31 PLACE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,10:30,QUEENS,11417,40.673805,-73.83739,"(40.673805, -73.83739)",HAWTREE STREET,135 ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493270,Pick-up Truck,,,, +01/05/2022,8:00,,,40.520916,-74.235115,"(40.520916, -74.235115)",PAGE AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4492242,Sedan,Flat Bed,,, +01/05/2022,6:20,,,40.62707,-74.01865,"(40.62707, -74.01865)",BAY RIDGE PARKWAY,7 AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4492461,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/07/2022,11:00,STATEN ISLAND,10312,40.555454,-74.16389,"(40.555454, -74.16389)",LEVERETT AVENUE,CORTELYOU AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492724,Dump,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,18:01,,,40.86242,-73.89405,"(40.86242, -73.89405)",EAST FORDHAM ROAD,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492652,Sedan,Bus,,, +01/07/2022,14:40,,,40.846565,-73.92589,"(40.846565, -73.92589)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Glare,,,,,4492787,Sedan,,,, +12/29/2021,13:00,MANHATTAN,10029,40.79241,-73.94405,"(40.79241, -73.94405)",,,1947 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492980,Convertible,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,0:06,BROOKLYN,11203,40.64076,-73.930214,"(40.64076, -73.930214)",,,847 EAST 49 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4493012,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,14:14,BRONX,10456,40.83381,-73.918396,"(40.83381, -73.918396)",TUDOR PLACE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493032,Sedan,,,, +01/05/2022,18:34,BROOKLYN,11238,40.680187,-73.967964,"(40.680187, -73.967964)",DEAN STREET,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492392,Bike,Sedan,,, +12/21/2021,7:30,BROOKLYN,11233,40.6827,-73.929016,"(40.6827, -73.929016)",MACDONOUGH STREET,REID AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492856,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,11:00,BROOKLYN,11222,40.721504,-73.93844,"(40.721504, -73.93844)",MORGAN AVENUE,BEADEL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492175,Tanker,Sedan,,, +01/05/2022,5:40,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4492581,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/07/2022,16:53,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,VERMONT PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4492806,Sedan,Sedan,,, +01/05/2022,10:50,BROOKLYN,11249,40.70082,-73.958984,"(40.70082, -73.958984)",,,93 RUTLEDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492559,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,20:36,,,40.830154,-73.93964,"(40.830154, -73.93964)",EDGECOMBE AVENUE,WEST 155 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493059,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/06/2022,7:30,BRONX,10457,40.855667,-73.89968,"(40.855667, -73.89968)",RYER AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492791,Sedan,,,, +01/05/2022,18:25,BROOKLYN,11234,40.620865,-73.935,"(40.620865, -73.935)",FLATBUSH AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492292,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,16:02,,,40.7079009,-73.8488839,"(40.7079009, -73.8488839)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,6:36,MANHATTAN,10018,40.754055,-73.99583,"(40.754055, -73.99583)",WEST 35 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4492701,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:30,,,,,,168 STREET,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492954,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,19:30,BROOKLYN,11221,40.69369,-73.93121,"(40.69369, -73.93121)",DE KALB AVENUE,REID AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492923,Sedan,,,, +01/05/2022,19:40,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492269,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,13:00,,,40.8408464,-73.8725723,"(40.8408464, -73.8725723)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468040,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/02/2022,14:57,,,40.88661,-73.90704,"(40.88661, -73.90704)",WEST 236 STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4492828,Sedan,Sedan,,, +10/13/2021,14:26,BRONX,10458,40.8583759,-73.896364,"(40.8583759, -73.896364)",EAST 184 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466890,Taxi,,,, +10/14/2021,10:30,QUEENS,11434,40.6601705,-73.7738971,"(40.6601705, -73.7738971)",,,166-05 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467393,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,17:53,MANHATTAN,10002,40.7166831,-73.9824286,"(40.7166831, -73.9824286)",DELANCEY STREET,WILLETT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467710,Sedan,Bus,,, +10/14/2021,15:30,BRONX,10471,40.9022935,-73.9068383,"(40.9022935, -73.9068383)",,,5430 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467303,Sedan,,,, +10/14/2021,14:00,QUEENS,11385,40.7041807,-73.8948076,"(40.7041807, -73.8948076)",CATALPA AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467435,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,16:00,MANHATTAN,10002,40.7224015,-73.9916483,"(40.7224015, -73.9916483)",CHRYSTIE STREET,STANTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468270,E-Scooter,,,, +12/11/2021,14:00,BROOKLYN,11238,40.6839,-73.96699,"(40.6839, -73.96699)",,,480 CLINTON AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4485450,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,18:30,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485486,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,16:15,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,CITY ISLAND ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4486134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,2:15,,,40.60481,-74.023964,"(40.60481, -74.023964)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4485392,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,15:41,BRONX,10473,40.82153,-73.87863,"(40.82153, -73.87863)",,,1520 STORY AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4486114,Sedan,Motorbike,,, +12/11/2021,12:30,BROOKLYN,11215,40.673485,-73.97296,"(40.673485, -73.97296)",8 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4485776,Box Truck,,,, +12/11/2021,23:10,STATEN ISLAND,10312,40.56152,-74.17186,"(40.56152, -74.17186)",DRUMGOOLE ROAD WEST,ARTHUR KILL ROAD,,1,0,1,0,0,0,0,0,,,,,,4485598,,,,, +12/11/2021,20:10,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486212,Sedan,,,, +01/06/2022,8:40,BROOKLYN,11236,40.645164,-73.898346,"(40.645164, -73.898346)",EAST 100 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492512,Bus,Bus,,, +01/01/2022,21:10,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",FULTON STREET,RALPH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4493121,Sedan,Sedan,,, +01/05/2022,16:43,QUEENS,11385,40.70776,-73.897575,"(40.70776, -73.897575)",WOODBINE STREET,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493158,Sedan,Bus,,, +01/05/2022,21:00,BROOKLYN,11223,40.588753,-73.97394,"(40.588753, -73.97394)",,,1 BOUCK COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492887,Sedan,,,, +11/07/2021,3:00,BROOKLYN,11233,40.682194,-73.92261,"(40.682194, -73.92261)",,,218 RALPH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4492993,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +12/29/2021,17:53,MANHATTAN,10023,40.772797,-73.9822,"(40.772797, -73.9822)",COLUMBUS AVENUE,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492853,Bike,Sedan,,, +01/06/2022,15:50,QUEENS,11369,40.770313,-73.87603,"(40.770313, -73.87603)",DITMARS BOULEVARD,94 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492534,Sedan,,,, +01/05/2022,19:40,BRONX,10455,40.817574,-73.90359,"(40.817574, -73.90359)",UNION AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492299,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,7:00,QUEENS,11435,40.70902,-73.81011,"(40.70902, -73.81011)",,,85-70 148 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492706,Sedan,,,, +01/06/2022,18:00,,,40.61269,-73.982666,"(40.61269, -73.982666)",BAY PARKWAY,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4493002,Sedan,,,, +01/07/2022,21:50,QUEENS,11435,40.692165,-73.80638,"(40.692165, -73.80638)",106 AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493174,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,5:46,,,40.78031,-73.98569,"(40.78031, -73.98569)",WEST 72 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4492878,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,18:49,,,40.684082,-73.90864,"(40.684082, -73.90864)",CHAUNCEY STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492657,Sedan,Bike,,, +01/05/2022,13:00,,,40.83369,-73.91386,"(40.83369, -73.91386)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4493334,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,11:25,,,40.691017,-73.954475,"(40.691017, -73.954475)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,23:40,BROOKLYN,11213,40.66747,-73.9396,"(40.66747, -73.9396)",ALBANY AVENUE,PRESIDENT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492642,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,7:49,QUEENS,11433,40.70554,-73.78867,"(40.70554, -73.78867)",,,170-02 93 AVENUE,1,0,0,0,0,0,1,0,Tinted Windows,,,,,4492115,Sedan,,,, +01/06/2022,13:13,MANHATTAN,10065,40.767967,-73.96822,"(40.767967, -73.96822)",EAST 66 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492591,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/05/2022,18:40,BRONX,10472,40.82851,-73.88012,"(40.82851, -73.88012)",WESTCHESTER AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4492429,Sedan,Sedan,Sedan,, +01/04/2022,5:40,BROOKLYN,11233,40.67398,-73.911156,"(40.67398, -73.911156)",ROCKAWAY AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,6:00,QUEENS,11372,40.748512,-73.875565,"(40.748512, -73.875565)",91 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492689,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,14:55,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,Unspecified,,,4492728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,7:15,,,40.582874,-73.98053,"(40.582874, -73.98053)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,6:15,BRONX,10467,40.873283,-73.870384,"(40.873283, -73.870384)",ROSEWOOD STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4492213,Sedan,Sedan,Bus,, +01/05/2022,23:20,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,,,4492327,Sedan,Sedan,Sedan,, +01/07/2022,10:57,BROOKLYN,11233,40.67472,-73.91058,"(40.67472, -73.91058)",,,2310 DEAN STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493068,Snow Plow,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,13:35,BROOKLYN,11220,40.649918,-74.01226,"(40.649918, -74.01226)",3 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492739,Sedan,Sedan,Sedan,, +01/05/2022,1:32,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",FOUNTAIN AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492454,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,0:50,QUEENS,11436,40.679363,-73.7973,"(40.679363, -73.7973)",FOCH BOULEVARD,144 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4492384,Sedan,Sedan,,, +01/07/2022,16:40,MANHATTAN,10028,40.77461,-73.94809,"(40.77461, -73.94809)",YORK AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493286,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,14:50,BROOKLYN,11213,40.66602,-73.92947,"(40.66602, -73.92947)",CARROLL STREET,FORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492756,Sedan,Sedan,,, +01/05/2022,6:17,,,40.87847,-73.90363,"(40.87847, -73.90363)",WEST 231 STREET,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,Unspecified,,,4492107,Bus,Sedan,Sedan,, +01/05/2022,5:33,,,40.69078,-73.72728,"(40.69078, -73.72728)",LINDEN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4492047,Sedan,Sedan,,, +01/05/2022,19:58,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492248,Sedan,Taxi,,, +01/04/2022,15:00,,,40.77444,-73.92232,"(40.77444, -73.92232)",HOYT AVENUE NORTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492975,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,17:50,BRONX,10461,40.845886,-73.83044,"(40.845886, -73.83044)",,,1701 HOBART AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492628,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/05/2022,19:39,BRONX,10474,40.809628,-73.890045,"(40.809628, -73.890045)",TIFFANY STREET,OAK POINT AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4492333,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,7:00,BRONX,10466,40.89,-73.849106,"(40.89, -73.849106)",PAULDING AVENUE,EAST 232 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492218,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,13:01,BROOKLYN,11232,40.653828,-74.01116,"(40.653828, -74.01116)",,,211 41 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4492716,Pick-up Truck,,,, +01/06/2022,6:00,BROOKLYN,11237,40.70933,-73.92249,"(40.70933, -73.92249)",SCOTT AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492563,Pick-up Truck,,,, +01/06/2022,18:08,STATEN ISLAND,10306,40.565884,-74.1089,"(40.565884, -74.1089)",MILL ROAD,INA STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4492575,PK,Motorcycle,,, +01/07/2022,23:12,,,,,,GRAND CENTRAL PARKWAY,67 DRIVE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492771,Sedan,Sedan,,, +01/03/2022,5:45,,,40.787685,-73.97502,"(40.787685, -73.97502)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492871,Dump,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,2:56,,,40.67034,-73.942116,"(40.67034, -73.942116)",KINGSTON AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4492518,Sedan,Sedan,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/06/2022,16:00,BROOKLYN,11215,40.673485,-73.97296,"(40.673485, -73.97296)",UNION STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4493115,Convertible,Convertible,,, +01/06/2022,22:37,QUEENS,11693,40.601517,-73.8203,"(40.601517, -73.8203)",,,16-05 CROSS BAY BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4492821,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +01/06/2022,17:50,MANHATTAN,10019,40.766777,-73.98091,"(40.766777, -73.98091)",,,231 WEST 58 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492608,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/07/2022,4:20,BROOKLYN,11206,40.70982,-73.9402,"(40.70982, -73.9402)",BUSHWICK AVENUE,STAGG STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492721,Sedan,,,, +01/04/2022,18:00,STATEN ISLAND,10314,40.620968,-74.12374,"(40.620968, -74.12374)",MANOR ROAD,MARTLING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493151,Sedan,Sedan,,, +01/07/2022,8:00,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Other Vehicular,Unsafe Speed,,,4492684,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/06/2022,15:00,BROOKLYN,11249,40.718967,-73.96104,"(40.718967, -73.96104)",NORTH 6 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492939,Motorcycle,,,, +01/05/2022,16:37,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4492920,Pick-up Truck,,,, +01/05/2022,8:45,QUEENS,11361,40.76745,-73.78011,"(40.76745, -73.78011)",208 STREET,35 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4492259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,0:00,BRONX,10470,40.90304,-73.849556,"(40.90304, -73.849556)",FURMAN AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493207,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,16:50,BROOKLYN,11209,40.625294,-74.0285,"(40.625294, -74.0285)",,,365 83 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492530,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,17:34,BRONX,10473,40.809933,-73.85332,"(40.809933, -73.85332)",,,248 STEPHENS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492625,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/05/2022,16:24,QUEENS,11379,40.71599,-73.87209,"(40.71599, -73.87209)",JUNIPER VALLEY ROAD,80 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4492411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,6:58,QUEENS,11385,40.71085,-73.901276,"(40.71085, -73.901276)",MENAHAN STREET,61 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4492638,Snow Plow,Station Wagon/Sport Utility Vehicle,Sedan,, +01/05/2022,9:00,BRONX,10456,40.830936,-73.91241,"(40.830936, -73.91241)",EAST 167 STREET,TELLER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493049,Taxi,,,, +01/04/2022,12:44,,,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4493346,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,22:00,BRONX,10453,40.85154,-73.918335,"(40.85154, -73.918335)",POPHAM AVENUE,PALISADE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492788,Sedan,Sedan,,, +01/06/2022,10:57,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,22:58,,,40.724804,-73.82983,"(40.724804, -73.82983)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4492770,Sedan,,,, +01/07/2022,13:30,BROOKLYN,11234,40.623985,-73.92034,"(40.623985, -73.92034)",,,5722 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492748,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,11:24,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4492154,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,21:00,BROOKLYN,11207,40.670326,-73.88878,"(40.670326, -73.88878)",SUTTER AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4492449,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,7:04,QUEENS,11417,40.674137,-73.83903,"(40.674137, -73.83903)",LINDEN BOULEVARD,97 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4492595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,20:18,,,40.73973,-73.81762,"(40.73973, -73.81762)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,Unspecified,,,4492395,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,9:14,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE EXTENSION,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492134,Pick-up Truck,,,, +01/05/2022,14:20,BROOKLYN,11226,40.64531,-73.94608,"(40.64531, -73.94608)",NEW YORK AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492200,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,7:50,BROOKLYN,11216,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492743,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,21:44,BROOKLYN,11236,40.644623,-73.90709,"(40.644623, -73.90709)",EAST 93 STREET,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492496,Sedan,Sedan,,, +01/05/2022,18:54,BROOKLYN,11236,40.63917,-73.91604,"(40.63917, -73.91604)",FARRAGUT ROAD,EAST 81 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492482,Sedan,,,, +01/05/2022,0:07,,,40.877304,-73.90062,"(40.877304, -73.90062)",KINGSBRIDGE TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492093,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,8:55,QUEENS,11418,40.702873,-73.817055,"(40.702873, -73.817055)",KEW GARDEN ROAD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Pavement Slippery,Failure to Yield Right-of-Way,,,,4492760,Sedan,Pick-up Truck,,, +01/06/2022,0:00,BRONX,10451,40.818348,-73.92951,"(40.818348, -73.92951)",,,501 GERARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492609,Sedan,,,, +01/07/2022,12:50,,,40.87724,-73.88658,"(40.87724, -73.88658)",VILLA AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4492711,Sedan,,,, +01/07/2022,7:15,BROOKLYN,11226,40.64513,-73.948975,"(40.64513, -73.948975)",NOSTRAND AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4493020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,23:51,QUEENS,11423,40.71459,-73.757935,"(40.71459, -73.757935)",,,93-31 202 STREET,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4493298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,16:57,BROOKLYN,11210,40.63515,-73.948906,"(40.63515, -73.948906)",,,644 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492971,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,5:05,,,40.70558,-73.739716,"(40.70558, -73.739716)",SPRINGFIELD BOULEVARD,112 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4492643,Dump,Sedan,,, +01/06/2022,7:45,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,6:03,BROOKLYN,11231,40.68573,-74.002365,"(40.68573, -74.002365)",COLUMBIA STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492664,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:10,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492309,,,,, +01/06/2022,11:30,QUEENS,11378,40.73225,-73.92452,"(40.73225, -73.92452)",43 STREET,54 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492567,Garbage or Refuse,Sedan,,, +10/16/2021,1:40,MANHATTAN,10016,40.7400388,-73.9790656,"(40.7400388, -73.9790656)",,,470 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467789,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,18:00,,,40.550766,-74.15017,"(40.550766, -74.15017)",AMBOY ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492570,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,4:30,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492039,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,5:50,BRONX,10452,40.846264,-73.920586,"(40.846264, -73.920586)",FEATHERBED LANE,PLIMPTON AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,,,4492632,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,5:53,QUEENS,11385,40.704594,-73.90826,"(40.704594, -73.90826)",ONDERDONK AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492343,Sedan,Sedan,,, +01/06/2022,0:00,,,40.740982,-73.946304,"(40.740982, -73.946304)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4492369,Sedan,Pick-up Truck,,, +01/07/2022,7:25,QUEENS,11358,40.75019,-73.80821,"(40.75019, -73.80821)",OAK AVENUE,159 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4492679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,15:02,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",WEST 204 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492866,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,14:30,BRONX,10454,40.81165,-73.92104,"(40.81165, -73.92104)",WILLIS AVENUE,EAST 142 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492603,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,7:06,,,40.70559,-73.85824,"(40.70559, -73.85824)",UNION TURNPIKE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4492696,Sedan,,,, +01/05/2022,17:55,QUEENS,11422,40.66352,-73.73135,"(40.66352, -73.73135)",249 STREET,139 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Backing Unsafely,,,,4492254,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,12:44,BROOKLYN,11219,40.62425,-73.99404,"(40.62425, -73.99404)",,,1562 62 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492503,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,19:00,QUEENS,11101,40.73802,-73.93824,"(40.73802, -73.93824)",STARR AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492776,Station Wagon/Sport Utility Vehicle,,,, +12/20/2021,23:25,QUEENS,11411,40.691277,-73.746254,"(40.691277, -73.746254)",SPRINGFIELD BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492816,Sedan,,,, +01/05/2022,18:16,MANHATTAN,10018,40.75495,-73.990265,"(40.75495, -73.990265)",,,275 WEST 39 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493109,Taxi,Sedan,,, +01/07/2022,14:30,QUEENS,11362,40.75999,-73.72371,"(40.75999, -73.72371)",,,256-06 60 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492738,Sedan,,,, +01/06/2022,14:04,BROOKLYN,11212,40.675266,-73.90415,"(40.675266, -73.90415)",,,1738 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493072,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,19:45,STATEN ISLAND,10304,40.600834,-74.09622,"(40.600834, -74.09622)",SPARKHILL AVENUE,UPTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492904,Station Wagon/Sport Utility Vehicle,,,, +12/27/2021,15:09,,,40.669735,-73.93104,"(40.669735, -73.93104)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4493170,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,7:11,,,40.63997,-74.13185,"(40.63997, -74.13185)",,,27 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493217,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,13:40,MANHATTAN,10034,,,,RIVERSIDE DRIVE,seaman ave,,5,0,0,0,0,0,5,0,Unsafe Speed,Turning Improperly,Unspecified,,,4492277,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/05/2022,13:40,BRONX,10472,40.826744,-73.880646,"(40.826744, -73.880646)",,,1130 EVERGREEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492621,Sedan,,,, +01/07/2022,21:10,QUEENS,11375,40.729664,-73.85028,"(40.729664, -73.85028)",YELLOWSTONE BOULEVARD,66 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492753,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/02/2021,17:15,QUEENS,11435,40.70253,-73.8143,"(40.70253, -73.8143)",JAMAICA AVENUE,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492733,Bus,,,, +01/07/2022,1:16,,,40.839237,-73.94688,"(40.839237, -73.94688)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4493055,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,22:25,QUEENS,11420,40.68382,-73.80673,"(40.68382, -73.80673)",,,111-28 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4493271,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/07/2022,21:43,,,40.857277,-73.888466,"(40.857277, -73.888466)",EAST 188 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,4493311,Sedan,Sedan,Sedan,Sedan,Sedan +01/06/2022,2:20,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4492805,Sedan,Sedan,,, +01/06/2022,23:35,,,40.68789,-73.90724,"(40.68789, -73.90724)",COOPER STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4492670,Taxi,Sedan,,, +01/07/2022,8:30,,,40.604637,-73.97614,"(40.604637, -73.97614)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492985,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/07/2022,7:15,,,40.698193,-73.98558,"(40.698193, -73.98558)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492765,Sedan,Sedan,,, +01/05/2022,5:00,BROOKLYN,11236,40.65219,-73.9102,"(40.65219, -73.9102)",,,708 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4493013,Sedan,,,, +01/05/2022,16:38,,,40.67975,-73.92866,"(40.67975, -73.92866)",MARION STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4492892,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2021,18:04,,,40.709095,-73.99622,"(40.709095, -73.99622)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,16:35,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4492800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,16:00,BROOKLYN,11216,40.6709,-73.95319,"(40.6709, -73.95319)",ROGERS AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493228,Sedan,,,, +01/05/2022,8:00,QUEENS,11435,40.716877,-73.810905,"(40.716877, -73.810905)",,,147-01 VILLAGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492355,Sedan,,,, +01/05/2022,12:26,QUEENS,11423,40.71517,-73.77339,"(40.71517, -73.77339)",,,188-10 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492184,Sedan,Sedan,,, +01/05/2022,6:55,BROOKLYN,11220,40.635685,-74.012955,"(40.635685, -74.012955)",7 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492075,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/05/2022,7:08,BROOKLYN,11207,40.68071,-73.89566,"(40.68071, -73.89566)",,,146 HIGHLAND BOULEVARD,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4492443,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,14:47,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Other Vehicular,,,,4543345,Sedan,Sedan,,, +01/05/2022,15:00,QUEENS,11432,40.711067,-73.78159,"(40.711067, -73.78159)",,,180-07 90 AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4492236,Sedan,,,, +01/05/2022,7:05,BRONX,10470,40.900986,-73.867836,"(40.900986, -73.867836)",EAST 240 STREET,KATONAH AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,4492222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +01/05/2022,19:17,MANHATTAN,10032,40.841255,-73.9378,"(40.841255, -73.9378)",,,79 AUDUBON AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4492471,Sedan,,,, +01/05/2022,11:55,,,40.759438,-73.91309,"(40.759438, -73.91309)",31 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4492614,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,15:55,QUEENS,11385,40.710773,-73.89962,"(40.710773, -73.89962)",,,63-50 FRESH POND ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4493162,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,10:25,BROOKLYN,11217,40.683685,-73.98892,"(40.683685, -73.98892)",,,400 BALTIC STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492782,Sedan,,,, +01/02/2022,14:10,BRONX,10463,40.8843,-73.90332,"(40.8843, -73.90332)",CORLEAR AVENUE,WEST 236 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492860,Sedan,Sedan,,, +01/07/2022,6:30,QUEENS,11435,40.709373,-73.81014,"(40.709373, -73.81014)",85 DRIVE,148 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492707,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,9:00,QUEENS,11368,40.745403,-73.855484,"(40.745403, -73.855484)",,,108-20 49 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493025,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/05/2022,20:06,BROOKLYN,11238,40.68221,-73.958694,"(40.68221, -73.958694)",,,528 CLASSON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4492272,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/05/2022,14:00,BROOKLYN,11230,40.625973,-73.97624,"(40.625973, -73.97624)",MC DONALD AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492324,Box Truck,Sedan,,, +01/06/2022,18:10,BRONX,10455,40.81626,-73.91421,"(40.81626, -73.91421)",WESTCHESTER AVENUE,BROOK AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4492587,Sedan,,,, +01/05/2022,15:58,BROOKLYN,11211,40.714573,-73.960236,"(40.714573, -73.960236)",,,171 NORTH 1 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492549,Sedan,,,, +06/24/2021,15:38,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430858,Sedan,Sedan,,, +01/07/2022,5:20,,,40.683342,-73.80433,"(40.683342, -73.80433)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4492660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,15:45,BRONX,10462,40.847363,-73.8579,"(40.847363, -73.8579)",MORRIS PARK AVENUE,BOGART AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492833,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/16/2021,20:24,BROOKLYN,11221,40.700054,-73.92459,"(40.700054, -73.92459)",WILSON AVENUE,HART STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492675,E-Bike,,,, +01/05/2022,15:10,BRONX,10461,40.85278,-73.853294,"(40.85278, -73.853294)",,,1916 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,17:30,QUEENS,11436,40.679363,-73.7973,"(40.679363, -73.7973)",144 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492810,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,7:15,BRONX,10469,40.8639,-73.83385,"(40.8639, -73.83385)",,,1806 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492692,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,15:20,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,17:00,QUEENS,11428,40.723343,-73.73166,"(40.723343, -73.73166)",,,93-09 224 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4492647,Sedan,,,, +01/06/2022,17:00,,,40.804714,-73.95826,"(40.804714, -73.95826)",WEST 115 STREET,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4493103,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,15:58,BRONX,10461,40.839348,-73.84362,"(40.839348, -73.84362)",WESTCHESTER AVENUE,OVERING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492929,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,9:45,,,40.651604,-74.01051,"(40.651604, -74.01051)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492531,Sedan,Sedan,,, +01/06/2022,20:15,,,40.73378,-73.98065,"(40.73378, -73.98065)",EAST 18 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492965,Bike,Sedan,,, +01/07/2022,9:00,MANHATTAN,10040,40.85611,-73.93141,"(40.85611, -73.93141)",,,45 WADSWORTH TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493078,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,4:40,MANHATTAN,10001,40.75326,-74.00383,"(40.75326, -74.00383)",11 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4493128,Sedan,Sedan,,, +01/07/2022,3:00,BRONX,10455,40.808437,-73.904724,"(40.808437, -73.904724)",BRUCKNER BOULEVARD,EAST 144 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,14:14,BROOKLYN,11203,40.658234,-73.9321,"(40.658234, -73.9321)",WINTHROP STREET,EAST 49 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492541,Sedan,Sedan,,, +01/07/2022,17:15,BROOKLYN,11204,40.610447,-73.98497,"(40.610447, -73.98497)",BAY PARKWAY,WEST 11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,16:38,BROOKLYN,11221,40.68942,-73.92197,"(40.68942, -73.92197)",,,1366 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492855,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,14:05,QUEENS,11105,40.78163,-73.917534,"(40.78163, -73.917534)",,,21-74 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,7:54,QUEENS,11417,40.677357,-73.843925,"(40.677357, -73.843925)",CROSS BAY BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492702,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,13:28,BROOKLYN,11216,40.67416,-73.94732,"(40.67416, -73.94732)",PROSPECT PLACE,NEW YORK AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4493188,Bike,Sedan,,, +01/06/2022,10:17,BROOKLYN,11249,40.699177,-73.9605,"(40.699177, -73.9605)",KENT AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492560,PK,,,, +01/05/2022,23:50,,,40.666836,-73.7664,"(40.666836, -73.7664)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4492293,Station Wagon/Sport Utility Vehicle,Bus,,, +02/20/2022,6:00,QUEENS,11373,40.744965,-73.87833,"(40.744965, -73.87833)",HAMPTON STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,16:00,,,40.626846,-74.142006,"(40.626846, -74.142006)",,,158 HAGAMAN PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,3:53,MANHATTAN,10003,40.733032,-73.98445,"(40.733032, -73.98445)",2 AVENUE,EAST 15 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504111,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,23:00,BROOKLYN,11218,40.645107,-73.97989,"(40.645107, -73.97989)",MC DONALD AVENUE,ALBEMARLE ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543678,Sedan,Bike,,, +07/03/2022,0:34,,,40.67903,-73.9246,"(40.67903, -73.9246)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542811,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,14:50,QUEENS,11378,40.726246,-73.89481,"(40.726246, -73.89481)",,,69-17 GRAND AVENUE,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,,,,,4543730,Sedan,,,, +07/03/2022,2:20,MANHATTAN,10040,40.858147,-73.927986,"(40.858147, -73.927986)",,,96 WADSWORTH TERRACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4543591,Sedan,Sedan,,, +07/01/2022,14:30,BROOKLYN,11239,40.65256,-73.876686,"(40.65256, -73.876686)",,,550 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543792,Sedan,,,, +06/30/2022,14:35,MANHATTAN,10036,40.757828,-73.99308,"(40.757828, -73.99308)",9 AVENUE,WEST 41 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4543528,Bus,Sedan,,, +07/03/2022,17:31,QUEENS,11373,40.744724,-73.881134,"(40.744724, -73.881134)",,,84-02 BRITTON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4542999,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,19:00,QUEENS,11355,40.758484,-73.82005,"(40.758484, -73.82005)",PARSONS BOULEVARD,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543008,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,0:05,QUEENS,11421,40.69336,-73.85295,"(40.69336, -73.85295)",,,92-16 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543504,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,19:00,QUEENS,11385,40.70333,-73.906136,"(40.70333, -73.906136)",,,750 ONDERDONK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543724,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,19:30,STATEN ISLAND,10306,40.559486,-74.12246,"(40.559486, -74.12246)",BROOK AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4543068,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,15:40,MANHATTAN,10031,40.822258,-73.95616,"(40.822258, -73.95616)",RIVERSIDE DRIVE,WEST 137 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543522,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,18:30,,,40.698696,-73.93477,"(40.698696, -73.93477)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543757,E-Bike,,,, +07/03/2022,8:30,QUEENS,11101,40.75434,-73.93602,"(40.75434, -73.93602)",27 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543124,Sedan,Sedan,,, +07/02/2022,1:12,,,40.767765,-73.86499,"(40.767765, -73.86499)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4543549,Sedan,Sedan,,, +07/01/2022,14:30,BROOKLYN,11208,40.668682,-73.86814,"(40.668682, -73.86814)",,,2602B LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4543790,Sedan,Sedan,,, +07/03/2022,12:00,BROOKLYN,11237,40.706306,-73.919586,"(40.706306, -73.919586)",SUYDAM STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4542925,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,13:30,QUEENS,11415,40.711548,-73.82657,"(40.711548, -73.82657)",,,123-60 83 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543505,Sedan,,,, +07/03/2022,16:30,QUEENS,11693,40.614006,-73.820915,"(40.614006, -73.820915)",,,209 CROSS BAY BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,18:30,QUEENS,11369,40.765064,-73.882355,"(40.765064, -73.882355)",,,24-07 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543565,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,11:20,BROOKLYN,11225,40.66012,-73.95058,"(40.66012, -73.95058)",MIDWOOD STREET,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4542939,Sedan,Sedan,,, +07/03/2022,18:40,BROOKLYN,11209,40.63268,-74.02664,"(40.63268, -74.02664)",,,310 73 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4543067,Sedan,,,, +07/01/2022,22:26,BROOKLYN,11207,40.666878,-73.89847,"(40.666878, -73.89847)",,,360 WILLIAMS AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543770,Sedan,,,, +06/03/2022,10:45,BROOKLYN,11207,40.663708,-73.88474,"(40.663708, -73.88474)",,,757 BARBEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543775,Sedan,,,, +07/03/2022,0:40,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543112,Sedan,,,, +07/03/2022,0:15,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543423,Sedan,Sedan,,, +04/01/2022,21:32,,,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516949,Sedan,,,, +10/15/2021,12:50,BRONX,10467,40.8742312,-73.8764997,"(40.8742312, -73.8764997)",,,3195 HULL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468393,Sedan,,,, +07/01/2022,12:15,BROOKLYN,11219,40.630894,-73.992836,"(40.630894, -73.992836)",14 AVENUE,54 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543760,Sedan,,,, +07/02/2022,1:20,MANHATTAN,10031,40.82778,-73.9512,"(40.82778, -73.9512)",,,684 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543588,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2022,18:00,BROOKLYN,11235,40.575775,-73.961945,"(40.575775, -73.961945)",,,501 BRIGHTWATER COURT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543718,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,0:00,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4542965,Sedan,,,, +07/03/2022,6:20,QUEENS,11420,40.681274,-73.81162,"(40.681274, -73.81162)",130 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4543156,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,8:00,,,40.616035,-74.163925,"(40.616035, -74.163925)",,,170 LAMBERTS LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542887,Sedan,,,, +07/03/2022,2:15,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4543099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,7:30,,,40.682774,-73.84324,"(40.682774, -73.84324)",103 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4543499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +07/03/2022,22:30,BRONX,10458,40.866802,-73.88444,"(40.866802, -73.88444)",WEBSTER AVENUE,EAST 199 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,14:00,MANHATTAN,10032,40.83509,-73.945854,"(40.83509, -73.945854)",,,811 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543649,Pick-up Truck,Sedan,,, +07/03/2022,15:40,BROOKLYN,11229,40.60547,-73.96074,"(40.60547, -73.96074)",AVENUE R,EAST 12 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543550,Sedan,Sedan,,, +07/03/2022,21:40,BRONX,10460,40.8399,-73.87562,"(40.8399, -73.87562)",BRONX PARK AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543202,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2022,12:40,,,40.8188,-73.956024,"(40.8188, -73.956024)",BROADWAY,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,View Obstructed/Limited,,,,4543520,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,10:00,QUEENS,11372,40.753407,-73.89349,"(40.753407, -73.89349)",,,33-35 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543560,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,19:33,MANHATTAN,10040,40.856712,-73.93264,"(40.856712, -73.93264)",BROADWAY,FAIRVIEW AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543538,Bike,Sedan,,, +07/03/2022,6:21,BROOKLYN,11233,40.67229,-73.913124,"(40.67229, -73.913124)",EASTERN PARKWAY,PROSPECT PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543389,Sedan,Van,,, +06/29/2022,20:37,BRONX,10459,40.817966,-73.89451,"(40.817966, -73.89451)",,,858 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4543613,Sedan,,,, +06/23/2022,14:21,QUEENS,11368,40.74188,-73.85989,"(40.74188, -73.85989)",102 STREET,RADCLIFF AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543749,Sedan,E-Bike,,, +07/03/2022,4:30,MANHATTAN,10030,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4543187,Taxi,Bike,,, +06/22/2022,0:00,BROOKLYN,11221,40.6924,-73.92719,"(40.6924, -73.92719)",,,1194 BROADWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543633,Sedan,E-Scooter,,, +07/03/2022,15:35,BROOKLYN,11221,40.69782,-73.927826,"(40.69782, -73.927826)",MYRTLE AVENUE,HART STREET,,4,0,0,0,0,0,4,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4543176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/03/2022,5:24,QUEENS,11373,40.744263,-73.876755,"(40.744263, -73.876755)",WHITNEY AVENUE,HAMPTON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4542866,Sedan,Sedan,Sedan,, +06/28/2022,4:02,BROOKLYN,11218,40.63357,-73.978745,"(40.63357, -73.978745)",,,577 DAHILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543679,Garbage or Refuse,Sedan,Sedan,, +07/03/2022,20:30,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4543021,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,22:18,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543303,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,17:40,,,,,,BARKLEY AVENUE,THROGMORTAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492911,Sedan,,,, +07/03/2022,7:30,BROOKLYN,11207,40.67148,-73.898674,"(40.67148, -73.898674)",ALABAMA AVENUE,PITKIN AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4543797,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,1:49,,,40.763588,-73.97142,"(40.763588, -73.97142)",,,MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,22:30,,,40.849285,-73.93894,"(40.849285, -73.93894)",WEST 179 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543596,E-Bike,,,, +07/03/2022,21:00,MANHATTAN,10001,40.745422,-73.990974,"(40.745422, -73.990974)",AVENUE OF THE AMERICAS,WEST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543340,Taxi,,,, +07/03/2022,15:35,,,40.625786,-73.89309,"(40.625786, -73.89309)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4543605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2022,4:25,QUEENS,11413,40.67007,-73.74631,"(40.67007, -73.74631)",228 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543283,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2022,18:00,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",AVENUE J,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4543131,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,21:45,,,40.68902,-73.98617,"(40.68902, -73.98617)",SCHERMERHORN STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4543660,Station Wagon/Sport Utility Vehicle,Bike,,, +07/03/2022,3:51,,,,,,CROSS BAY BOULEVARD,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4543701,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,13:30,MANHATTAN,10026,40.79944,-73.95531,"(40.79944, -73.95531)",CENTRAL PARK NORTH,7 AVENUE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4543516,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/30/2022,21:34,,,,,,VERRAZANO BRIDGE UPPER,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,,,4543579,Sedan,Sedan,Sedan,, +07/03/2022,16:52,,,,,,BRONX RIVER PARKWAY,STORY AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543368,E-Bike,Sedan,,, +06/28/2022,2:50,,,40.58872,-73.99234,"(40.58872, -73.99234)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4543473,Sedan,Sedan,,, +06/29/2022,9:00,,,40.69793,-73.91028,"(40.69793, -73.91028)",RIDGEWOOD PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543754,PK,,,, +06/26/2022,13:45,QUEENS,11693,40.588047,-73.81221,"(40.588047, -73.81221)",,,216 BEACH 87 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,20:34,BROOKLYN,11207,40.679535,-73.900475,"(40.679535, -73.900475)",BUSHWICK AVENUE,HIGHLAND BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,8:10,MANHATTAN,10036,40.757847,-73.991234,"(40.757847, -73.991234)",,,351 WEST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543482,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/02/2022,4:30,BROOKLYN,11207,40.668118,-73.89292,"(40.668118, -73.89292)",VERMONT STREET,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543793,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,21:20,QUEENS,11693,40.609337,-73.81908,"(40.609337, -73.81908)",,,614 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4543624,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/03/2022,2:19,BROOKLYN,11204,40.612545,-73.97928,"(40.612545, -73.97928)",,,2297 65 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4542812,Sedan,Van,,, +06/28/2022,5:55,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543732,Sedan,,,, +06/24/2022,17:20,MANHATTAN,10033,40.844788,-73.93705,"(40.844788, -73.93705)",SAINT NICHOLAS AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543664,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,3:42,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",BROADWAY,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543185,Sedan,,,, +07/02/2022,11:30,MANHATTAN,10018,40.75767,-73.99483,"(40.75767, -73.99483)",DYER AVENUE,WEST 40 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4543529,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,14:20,BROOKLYN,11221,40.700478,-73.92534,"(40.700478, -73.92534)",WILSON AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543009,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,16:45,,,40.757732,-73.99686,"(40.757732, -73.99686)",10 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Lane Changing,,,,4543523,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,12:00,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4517045,Sedan,,,, +07/01/2022,15:50,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",BROADWAY,37 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4543598,Armored Truck,,,, +07/03/2022,23:20,BROOKLYN,11212,40.663105,-73.90518,"(40.663105, -73.90518)",LIVONIA AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543386,Sedan,Sedan,,, +07/03/2022,12:25,,,40.61111,-73.9526,"(40.61111, -73.9526)",KINGS HIGHWAY,EAST 21 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543458,Sedan,E-Scooter,,, +07/03/2022,22:36,BROOKLYN,11226,40.646885,-73.94916,"(40.646885, -73.94916)",NOSTRAND AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543573,Sedan,,,, +10/16/2021,17:41,,,40.8345141,-73.9177042,"(40.8345141, -73.9177042)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4468629,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/14/2021,7:09,QUEENS,11373,40.7439732,-73.8850947,"(40.7439732, -73.8850947)",BROADWAY,BAXTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467913,Box Truck,,,, +10/16/2021,2:30,QUEENS,11433,40.6916212,-73.7833297,"(40.6916212, -73.7833297)",SAYRES AVENUE,167 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,7:00,BROOKLYN,11208,40.677166,-73.87775,"(40.677166, -73.87775)",LIBERTY AVENUE,MILFORD STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4486088,Sedan,Bike,,, +12/11/2021,20:20,BROOKLYN,11214,40.60023,-73.9956,"(40.60023, -73.9956)",BAY PARKWAY,BENSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486161,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,16:00,QUEENS,11377,40.739895,-73.89391,"(40.739895, -73.89391)",,,70-20 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485453,Sedan,,,, +12/11/2021,13:10,QUEENS,11004,40.73817,-73.71352,"(40.73817, -73.71352)",255 STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485490,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,17:15,BRONX,10469,40.876377,-73.84601,"(40.876377, -73.84601)",EASTCHESTER ROAD,TILLOTSON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4485987,Sedan,Sedan,,, +12/11/2021,12:39,QUEENS,11691,40.595985,-73.763,"(40.595985, -73.763)",SEAGIRT BOULEVARD,BEACH 30 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485930,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,12:40,,,,,,HARLEM RIVER DRIVE,8 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,14:13,BROOKLYN,11219,40.625866,-74.00747,"(40.625866, -74.00747)",,,1133 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486241,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,2:22,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",37 AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485373,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,22:14,BROOKLYN,11238,40.681713,-73.96732,"(40.681713, -73.96732)",,,840 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4485689,Station Wagon/Sport Utility Vehicle,,,, +12/02/2021,10:50,BROOKLYN,11233,40.679203,-73.9072,"(40.679203, -73.9072)",,,108 SOMERS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486280,Sedan,,,, +12/11/2021,15:45,,,,,,G.C.P. / JEWEL (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485424,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,22:45,MANHATTAN,10007,40.7163,-74.01097,"(40.7163, -74.01097)",GREENWICH STREET,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486275,Sedan,Sedan,,, +12/11/2021,4:44,,,40.659473,-74.00244,"(40.659473, -74.00244)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485808,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,7:00,MANHATTAN,10022,40.758537,-73.97721,"(40.758537, -73.97721)",WEST 50 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485347,Sedan,,,, +12/11/2021,5:00,MANHATTAN,10029,40.790745,-73.947365,"(40.790745, -73.947365)",,,1645 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485500,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,1:00,BRONX,10469,40.87519,-73.8596,"(40.87519, -73.8596)",,,942 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4485908,Sedan,Tractor Truck Diesel,,, +12/09/2021,19:04,BROOKLYN,11214,40.60714,-73.9978,"(40.60714, -73.9978)",,,1935 83 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486167,Bike,,,, +12/11/2021,4:11,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4485760,Box Truck,Taxi,Pick-up Truck,Sedan, +07/02/2022,18:35,QUEENS,11418,40.70153,-73.82341,"(40.70153, -73.82341)",JAMAICA AVENUE,129 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4543500,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,5:15,,,40.77904,-73.9435,"(40.77904, -73.9435)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4543072,Tractor Truck Diesel,,,, +07/03/2022,2:02,,,40.761223,-73.9238,"(40.761223, -73.9238)",33 STREET,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,Unspecified,,,4543118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2022,17:30,BROOKLYN,11208,40.674923,-73.870834,"(40.674923, -73.870834)",,,435 PINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,2:30,BROOKLYN,11236,40.637627,-73.903076,"(40.637627, -73.903076)",,,1333 REMSEN AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4542932,Sedan,Sedan,,, +07/03/2022,19:40,BROOKLYN,11230,40.617004,-73.96912,"(40.617004, -73.96912)",OCEAN PARKWAY,AVENUE M,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543762,Station Wagon/Sport Utility Vehicle,Bike,,, +07/03/2022,8:15,MANHATTAN,10023,40.780704,-73.980125,"(40.780704, -73.980125)",,,320 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Other Electronic Device,,,,,4543508,Garbage or Refuse,,,, +07/03/2022,11:32,,,40.59291,-74.185104,"(40.59291, -74.185104)",,,80 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543298,Sedan,,,, +07/02/2022,14:00,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4543723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,5:23,BROOKLYN,11208,40.682587,-73.886314,"(40.682587, -73.886314)",RIDGEWOOD AVENUE,CLEVELAND STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543814,Sedan,Sedan,,, +07/03/2022,16:35,,,40.77656,-73.95271,"(40.77656, -73.95271)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,0:54,QUEENS,11419,40.690662,-73.81033,"(40.690662, -73.81033)",VANWYCK EXPRESSWAY,105 AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4543133,Sedan,Sedan,,, +06/25/2022,18:00,BROOKLYN,11209,40.631233,-74.02073,"(40.631233, -74.02073)",,,537 72 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4543580,Sedan,,,, +06/30/2022,18:15,QUEENS,11370,40.762177,-73.89227,"(40.762177, -73.89227)",,,25-02 76 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543545,Station Wagon/Sport Utility Vehicle,,,, +06/24/2022,5:20,QUEENS,11372,40.755165,-73.8891,"(40.755165, -73.8891)",78 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543551,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,0:00,BROOKLYN,11225,40.66135,-73.96122,"(40.66135, -73.96122)",,,524 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4542911,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2022,21:30,MANHATTAN,10028,40.77706,-73.957855,"(40.77706, -73.957855)",,,130 EAST 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543469,Sedan,,,, +07/03/2022,14:30,BROOKLYN,11210,40.638447,-73.95117,"(40.638447, -73.95117)",FOSTER AVENUE,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4542991,Sedan,MOPED,,, +03/13/2022,5:00,,,40.695377,-73.94921,"(40.695377, -73.94921)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4511714,Sedan,,,, +04/04/2022,8:00,,,40.82186,-73.88834,"(40.82186, -73.88834)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516815,Pick-up Truck,,,, +04/05/2022,17:20,,,40.76363,-73.9533,"(40.76363, -73.9533)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516594,Sedan,Pick-up Truck,,, +04/05/2022,14:00,MANHATTAN,10004,40.702744,-74.01221,"(40.702744, -74.01221)",,,6 WATER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516755,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,13:45,,,40.60638,-73.754715,"(40.60638, -73.754715)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516657,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,13:20,BROOKLYN,11210,40.636562,-73.94323,"(40.636562, -73.94323)",FARRAGUT ROAD,EAST 35 STREET,,1,0,1,0,0,0,0,0,,,,,,4517072,,,,, +04/04/2022,8:50,BRONX,10469,40.87437,-73.85698,"(40.87437, -73.85698)",,,1027 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,0:05,BROOKLYN,11207,40.65626,-73.89574,"(40.65626, -73.89574)",WILLIAMS AVENUE,DE WITT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4516319,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,6:35,,,40.73594,-73.85887,"(40.73594, -73.85887)",HORACE HARDING EXPRESSWAY,99 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516633,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,5:00,,,40.8880975,-73.8925325,"(40.8880975, -73.8925325)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4467566,Sedan,,,, +04/05/2022,13:30,,,40.8278,-73.95322,"(40.8278, -73.95322)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4516936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,14:37,QUEENS,11101,40.739426,-73.93464,"(40.739426, -73.93464)",VANDAM STREET,GALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516693,Box Truck,Sedan,,, +04/01/2022,19:07,,,40.692604,-73.92751,"(40.692604, -73.92751)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517015,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,7:20,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4516391,Sedan,,,, +04/05/2022,0:14,MANHATTAN,10010,40.740112,-73.98222,"(40.740112, -73.98222)",3 AVENUE,EAST 25 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,8:58,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",ALLEN STREET,DELANCEY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517070,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,23:15,BRONX,10475,40.861637,-73.82433,"(40.861637, -73.82433)",EARHART LANE,HUNTER AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4517198,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,9:21,MANHATTAN,10128,40.787224,-73.95417,"(40.787224, -73.95417)",EAST 96 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516991,Sedan,,,, +04/05/2022,16:00,QUEENS,11366,40.724686,-73.81067,"(40.724686, -73.81067)",,,76-16 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4516555,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,19:25,MANHATTAN,10012,,,,BOWERY,GREAT JONES STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468547,E-Bike,Motorscooter,,, +04/05/2022,15:30,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516806,Sedan,Sedan,,, +04/05/2022,21:39,,,40.660217,-73.89675,"(40.660217, -73.89675)",NEW LOTS AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4516855,Sedan,Sedan,Sedan,, +04/02/2022,7:50,BROOKLYN,11233,40.678776,-73.90447,"(40.678776, -73.90447)",CONWAY STREET,TRUXTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516965,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:27,BRONX,10466,40.891567,-73.83101,"(40.891567, -73.83101)",,,4028 DYRE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516529,Bus,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,11:40,BROOKLYN,11218,40.646378,-73.97085,"(40.646378, -73.97085)",CHURCH AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516496,Sedan,Bus,,, +04/05/2022,14:15,BROOKLYN,11233,40.676,-73.90485,"(40.676, -73.90485)",,,2416 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516519,Sedan,Van,,, +04/05/2022,7:25,BROOKLYN,11215,40.662132,-73.98723,"(40.662132, -73.98723)",PROSPECT AVENUE,CALDER PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516500,Sedan,Sedan,,, +04/05/2022,11:17,BRONX,10455,40.813255,-73.89804,"(40.813255, -73.89804)",,,715 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4517097,Sedan,,,, +04/05/2022,7:52,QUEENS,11354,40.75895,-73.83192,"(40.75895, -73.83192)",PRINCE STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4516550,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,7:35,BROOKLYN,11225,40.668224,-73.953445,"(40.668224, -73.953445)",PRESIDENT STREET,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516454,Sedan,Sedan,,, +04/05/2022,12:00,QUEENS,11368,40.75394,-73.86891,"(40.75394, -73.86891)",99 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516964,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,14:16,BROOKLYN,11228,40.61659,-74.0059,"(40.61659, -74.0059)",,,1451 78 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516676,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:03,BRONX,10460,40.839565,-73.865524,"(40.839565, -73.865524)",,,1844 GUERLAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4516720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,15:04,BROOKLYN,11212,40.65849,-73.90982,"(40.65849, -73.90982)",,,510 BRISTOL STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4516980,Van,Sedan,,, +04/05/2022,19:26,QUEENS,11364,40.749615,-73.76853,"(40.749615, -73.76853)",56 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4516875,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/03/2022,14:25,BROOKLYN,11233,40.670868,-73.9198,"(40.670868, -73.9198)",HOWARD AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516969,Sedan,Sedan,,, +06/05/2021,0:00,BROOKLYN,11203,40.660656,-73.93033,"(40.660656, -73.93033)",EAST 51 STREET,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431106,Sedan,Sedan,,, +01/08/2022,1:57,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inexperience,,,,4493272,Sedan,,,, +04/05/2022,9:20,MANHATTAN,10028,40.777874,-73.95175,"(40.777874, -73.95175)",EAST 86 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516472,Sedan,Bus,,, +04/05/2022,16:15,QUEENS,11377,40.73842,-73.8989,"(40.73842, -73.8989)",66 STREET,48 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4516537,Sedan,Sedan,,, +04/05/2022,17:15,QUEENS,11373,40.734097,-73.886894,"(40.734097, -73.886894)",CALAMUS AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4516641,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/05/2022,21:50,,,40.67624,-73.866104,"(40.67624, -73.866104)",CONDUIT BOULEVARD,PITKIN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516854,,,,, +04/05/2022,20:22,BROOKLYN,11229,40.602276,-73.93566,"(40.602276, -73.93566)",,,2172 GERRITSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517039,Sedan,,,, +04/05/2022,11:45,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516557,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,17:24,QUEENS,11418,40.700462,-73.83593,"(40.700462, -73.83593)",114 STREET,MYRTLE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4516619,Sedan,Sedan,,, +04/03/2022,0:45,,,40.74694,-73.89051,"(40.74694, -73.89051)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517145,Bus,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,13:20,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516504,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,11:00,BROOKLYN,11221,40.689106,-73.92539,"(40.689106, -73.92539)",,,962 GATES AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517014,Sedan,Sedan,,, +04/05/2022,14:30,BROOKLYN,11222,40.732613,-73.95804,"(40.732613, -73.95804)",,,208 FRANKLIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516905,Station Wagon/Sport Utility Vehicle,,,, +03/23/2022,6:00,BROOKLYN,11212,40.66224,-73.9186,"(40.66224, -73.9186)",,,800 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516956,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,9:30,,,40.71786,-73.948326,"(40.71786, -73.948326)",LEONARD STREET,MEEKER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4517008,Sedan,Motorbike,,, +04/03/2022,0:15,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517082,Sedan,Sedan,Sedan,, +04/05/2022,12:30,STATEN ISLAND,10304,40.61364,-74.08482,"(40.61364, -74.08482)",,,545 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516666,Sedan,,,, +04/04/2022,13:48,BRONX,10456,40.830334,-73.91895,"(40.830334, -73.91895)",EAST 165 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517056,Sedan,Sedan,,, +04/05/2022,6:35,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4516711,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,22:20,QUEENS,11420,40.66771,-73.80912,"(40.66771, -73.80912)",135 ROAD,130 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4516627,Sedan,,,, +04/05/2022,17:45,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4516844,Sedan,Sedan,,, +04/05/2022,15:55,QUEENS,11435,40.70253,-73.8143,"(40.70253, -73.8143)",QUEENS BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516582,Station Wagon/Sport Utility Vehicle,Fire truck,,, +06/26/2022,18:55,QUEENS,11694,40.581604,-73.83077,"(40.581604, -73.83077)",ROCKAWAY BEACH BOULEVARD,BEACH 109 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543515,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,16:37,,,40.69835,-73.91103,"(40.69835, -73.91103)",RIDGEWOOD PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516735,Sedan,Box Truck,,, +04/05/2022,17:30,,,,,,VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4516634,Bus,Sedan,,, +04/05/2022,21:10,,,40.696667,-73.92824,"(40.696667, -73.92824)",CEDAR STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516738,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,13:41,BRONX,10456,40.8375,-73.91061,"(40.8375, -73.91061)",COLLEGE AVENUE,EAST 170 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4517066,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Box Truck,Sedan +04/05/2022,4:05,,,40.70753,-73.96443,"(40.70753, -73.96443)",BEDFORD AVENUE,DIVISION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4516320,Sedan,,,, +04/01/2022,6:25,MANHATTAN,10065,40.76118,-73.95791,"(40.76118, -73.95791)",EAST 63 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517170,Sedan,Ambulance,,, +04/05/2022,7:09,,,40.576042,-73.99008,"(40.576042, -73.99008)",WEST 23 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516606,Bus,Sedan,,, +06/25/2021,19:38,,,40.65117,-73.9419,"(40.65117, -73.9419)",CHURCH AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431141,Bike,,,, +04/01/2022,22:48,QUEENS,11385,40.706596,-73.908585,"(40.706596, -73.908585)",WOODWARD AVENUE,MENAHAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516998,,,,, +04/05/2022,9:10,BROOKLYN,11236,40.63574,-73.90853,"(40.63574, -73.90853)",AVENUE J,EAST 84 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516393,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,20:30,MANHATTAN,10002,40.71649,-73.98854,"(40.71649, -73.98854)",,,379 GRAND STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4517071,E-Scooter,,,, +04/05/2022,15:00,QUEENS,11432,40.70858,-73.7979,"(40.70858, -73.7979)",,,88-19 164 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4516581,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +04/05/2022,17:05,QUEENS,11375,40.71574,-73.83673,"(40.71574, -73.83673)",76 ROAD,AUSTIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516700,Pick-up Truck,Sedan,,, +04/05/2022,10:57,QUEENS,11414,40.666096,-73.85197,"(40.666096, -73.85197)",,,82-07 153 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516628,Sedan,,,, +03/10/2022,15:48,BROOKLYN,11233,40.669003,-73.91839,"(40.669003, -73.91839)",EAST NEW YORK AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516986,Box Truck,Sedan,,, +03/31/2022,18:10,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/05/2022,15:03,BROOKLYN,11229,40.601048,-73.951744,"(40.601048, -73.951744)",,,2474 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,21:40,STATEN ISLAND,10306,40.568695,-74.13621,"(40.568695, -74.13621)",BARBARA STREET,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,8:47,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4516503,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,13:33,MANHATTAN,10022,40.758007,-73.96625,"(40.758007, -73.96625)",2 AVENUE,EAST 55 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516522,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/05/2022,11:25,BRONX,10457,40.84024,-73.900764,"(40.84024, -73.900764)",,,1625 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516888,PK,,,, +04/05/2022,11:44,BROOKLYN,11205,40.691048,-73.966415,"(40.691048, -73.966415)",,,253 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516596,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/02/2022,7:31,QUEENS,11379,40.712204,-73.88638,"(40.712204, -73.88638)",METROPOLITAN AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516973,Sedan,Sedan,,, +04/05/2022,13:00,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516478,Sedan,,,, +04/05/2022,17:48,BROOKLYN,11236,40.642292,-73.90449,"(40.642292, -73.90449)",EAST 93 STREET,CONKLIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4516749,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,18:00,BROOKLYN,11230,40.61372,-73.96208,"(40.61372, -73.96208)",,,1464 EAST 12 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Backing Unsafely,Unspecified,Unspecified,,4516916,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/05/2022,9:00,,,40.757374,-73.7475,"(40.757374, -73.7475)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516513,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,11:35,QUEENS,11373,40.737114,-73.87922,"(40.737114, -73.87922)",,,84-06 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516640,Station Wagon/Sport Utility Vehicle,Bike,,, +04/05/2022,1:21,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517040,Taxi,Sedan,,, +04/05/2022,7:40,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517079,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,16:30,BROOKLYN,11212,40.660328,-73.91126,"(40.660328, -73.91126)",,,815 BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516981,Sedan,,,, +04/05/2022,18:30,QUEENS,11101,40.742485,-73.95668,"(40.742485, -73.95668)",51 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516588,Sedan,,,, +04/05/2022,14:00,BROOKLYN,11211,40.711834,-73.949814,"(40.711834, -73.949814)",,,39 POWERS STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516650,Station Wagon/Sport Utility Vehicle,Bike,,, +04/05/2022,21:50,BRONX,10468,40.868095,-73.90027,"(40.868095, -73.90027)",,,67 WEST KINGSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517027,Sedan,Sedan,,, +04/05/2022,15:00,BROOKLYN,11208,40.666008,-73.87132,"(40.666008, -73.87132)",,,560 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516862,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,3:50,BROOKLYN,11207,40.663155,-73.897514,"(40.663155, -73.897514)",,,520 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4516423,Sedan,Sedan,Sedan,, +03/18/2022,18:30,BROOKLYN,11212,40.67131,-73.91309,"(40.67131, -73.91309)",EAST NEW YORK AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516968,Sedan,E-Scooter,,, +04/05/2022,8:03,,,,,,160 STREET,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,4516551,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/02/2022,21:00,BROOKLYN,11232,40.64544,-73.999214,"(40.64544, -73.999214)",,,4219 8 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4516931,Station Wagon/Sport Utility Vehicle,Bike,,, +04/05/2022,16:30,,,40.68488,-73.92311,"(40.68488, -73.92311)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516789,Sedan,Bus,,, +04/05/2022,19:35,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516672,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,15:45,,,40.733963,-73.988785,"(40.733963, -73.988785)",IRVING PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517093,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,20:35,BROOKLYN,11236,40.651157,-73.918144,"(40.651157, -73.918144)",AVENUE A,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4516718,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,15:15,BRONX,10451,40.826836,-73.92263,"(40.826836, -73.92263)",EAST 161 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,18:27,MANHATTAN,10017,40.7488,-73.96986,"(40.7488, -73.96986)",EAST 42 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4516618,E-Bike,,,, +04/04/2022,8:00,BROOKLYN,11212,40.665348,-73.922325,"(40.665348, -73.922325)",RALPH AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4516974,Sedan,Motorbike,,, +03/31/2022,9:00,BROOKLYN,11221,40.68603,-73.93268,"(40.68603, -73.93268)",STUYVESANT AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4517009,Sedan,Sedan,,, +04/05/2022,20:50,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",FAILE STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516648,Sedan,,,, +03/20/2022,2:19,MANHATTAN,10027,40.813606,-73.94868,"(40.813606, -73.94868)",,,2433 8 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4516948,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/05/2022,11:20,QUEENS,11422,40.66537,-73.73254,"(40.66537, -73.73254)",SOUTH CONDUIT AVENUE,246 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inexperience,,,,4516453,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,7:40,,,40.846443,-73.826004,"(40.846443, -73.826004)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4516726,Sedan,Pick-up Truck,Sedan,, +04/05/2022,7:33,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4516527,Sedan,Sedan,,, +04/05/2022,19:09,BROOKLYN,11218,40.65029,-73.97872,"(40.65029, -73.97872)",GREENWOOD AVENUE,EAST 3 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4516743,Bike,,,, +04/05/2022,7:30,,,40.588116,-73.97261,"(40.588116, -73.97261)",AVENUE Y,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4516600,ASPHALT RO,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,21:47,BRONX,10462,40.831924,-73.85104,"(40.831924, -73.85104)",GLEASON AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516725,Sedan,,,, +04/03/2022,11:02,,,40.823624,-73.92308,"(40.823624, -73.92308)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517055,Pick-up Truck,,,, +04/05/2022,14:07,QUEENS,11691,40.60821,-73.76554,"(40.60821, -73.76554)",,,13-51 BAY 28 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/18/2022,23:20,BRONX,10457,40.843777,-73.90947,"(40.843777, -73.90947)",EAST 173 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517067,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,7:25,BROOKLYN,11237,40.696823,-73.91487,"(40.696823, -73.91487)",KNICKERBOCKER AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516335,Sedan,Sedan,,, +04/04/2022,0:05,,,,,,VANWYCK EXPRESSWAY,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,9:00,QUEENS,11378,,,,,,69-65 Queens midtown expressway,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516997,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,16:40,BROOKLYN,11226,40.652767,-73.95606,"(40.652767, -73.95606)",,,2100 BEDFORD AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4516917,Sedan,,,, +04/05/2022,9:55,BROOKLYN,11212,40.663292,-73.92543,"(40.663292, -73.92543)",EAST 95 STREET,RUTLAND ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516512,Taxi,,,, +12/18/2021,20:22,QUEENS,11432,40.71747,-73.80021,"(40.71747, -73.80021)",,,82-85 166 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/28/2021,1:24,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4493582,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,17:00,BRONX,10462,40.847546,-73.86724,"(40.847546, -73.86724)",,,1903 WHITE PLAINS ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493622,Sedan,,,, +01/07/2022,19:38,,,40.834164,-73.922226,"(40.834164, -73.922226)",RIVER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493637,Sedan,,,, +01/07/2021,10:01,BRONX,10455,40.811398,-73.90777,"(40.811398, -73.90777)",EAST 147 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493606,Station Wagon/Sport Utility Vehicle,Snow Plow,,, +12/31/2021,16:30,QUEENS,11432,40.71818,-73.780334,"(40.71818, -73.780334)",HENLEY ROAD,SOMERSET STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493586,Sedan,Sedan,,, +01/07/2022,9:45,QUEENS,11105,40.777523,-73.90899,"(40.777523, -73.90899)",,,21-13 31 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493634,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,6:30,BRONX,10474,40.81782,-73.88816,"(40.81782, -73.88816)",,,1208 GILBERT PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493605,Dump,Sedan,,, +01/10/2020,0:00,,,40.804707,-73.91914,"(40.804707, -73.91914)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4493620,UNK BOX TR,UNK,,, +01/03/2022,3:24,,,40.75892,-73.92566,"(40.75892, -73.92566)",33 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4493633,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,18:13,MANHATTAN,10027,40.80897,-73.94833,"(40.80897, -73.94833)",7 AVENUE,WEST 125 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493574,Sedan,Bike,,, +02/20/2022,0:26,QUEENS,11433,40.69882,-73.7908,"(40.69882, -73.7908)",164 PLACE,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504279,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/20/2022,20:00,QUEENS,11354,40.76471,-73.830696,"(40.76471, -73.830696)",35 AVENUE,LINDEN PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4504539,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,1:40,,,40.704067,-73.93861,"(40.704067, -73.93861)",BUSHWICK AVENUE,MOORE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504262,Sedan,Sedan,,, +02/20/2022,20:10,BRONX,10463,40.882893,-73.89464,"(40.882893, -73.89464)",,,3862 SEDGWICK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504788,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,22:00,QUEENS,11412,40.70047,-73.75289,"(40.70047, -73.75289)",202 STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504694,Sedan,,,, +02/20/2022,18:15,BROOKLYN,11221,40.692482,-73.9203,"(40.692482, -73.9203)",EVERGREEN AVENUE,LINDEN STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,,,,,4504339,E-Bike,,,, +02/20/2022,21:45,,,40.77056,-73.91751,"(40.77056, -73.91751)",GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,,,4504625,Sedan,Sedan,Sedan,, +02/19/2021,14:15,MANHATTAN,10009,40.724285,-73.9756,"(40.724285, -73.9756)",EAST 9 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4504703,Sedan,Sedan,,, +02/19/2022,10:06,,,40.86955,-73.88175,"(40.86955, -73.88175)",EAST MOSHOLU PARKWAY SOUTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504679,Sedan,,,, +02/20/2022,23:30,,,40.816025,-73.93947,"(40.816025, -73.93947)",LENOX AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504405,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,17:27,MANHATTAN,10001,40.749546,-73.99875,"(40.749546, -73.99875)",,,367 WEST 28 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504754,Sedan,,,, +02/12/2022,20:30,MANHATTAN,10018,40.755806,-73.99809,"(40.755806, -73.99809)",,,454 WEST 36 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504905,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,20:50,,,40.61269,-73.982666,"(40.61269, -73.982666)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,Following Too Closely,,,4504325,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +02/20/2022,14:20,BROOKLYN,11218,40.64106,-73.972275,"(40.64106, -73.972275)",AVENUE C,EAST 7 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4504775,Station Wagon/Sport Utility Vehicle,Bike,,, +02/20/2022,7:35,QUEENS,11412,40.698566,-73.769585,"(40.698566, -73.769585)",ILION AVENUE,WOOD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,8:00,BROOKLYN,11226,40.641468,-73.95938,"(40.641468, -73.95938)",DORCHESTER ROAD,OCEAN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4504085,Sedan,Bike,,, +01/08/2022,9:08,BROOKLYN,11228,40.617813,-74.00644,"(40.617813, -74.00644)",14 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4493003,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/08/2022,19:45,BROOKLYN,11223,40.60792,-73.970695,"(40.60792, -73.970695)",,,1740 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493284,Sedan,,,, +01/08/2022,15:56,,,40.804417,-73.955376,"(40.804417, -73.955376)",WEST 116 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493126,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/08/2022,18:26,BROOKLYN,11207,40.65452,-73.882225,"(40.65452, -73.882225)",FLATLANDS AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,1:50,,,40.718292,-73.98248,"(40.718292, -73.98248)",RIVINGTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492772,Sedan,,,, +01/08/2022,10:30,BROOKLYN,11222,40.73285,-73.956726,"(40.73285, -73.956726)",,,117 HURON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493062,Sedan,Sedan,,, +01/04/2022,15:30,,,40.584904,-73.95831,"(40.584904, -73.95831)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4493407,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,9:16,,,40.61135,-74.09847,"(40.61135, -74.09847)",CLOVE ROAD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493185,Sedan,,,, +01/07/2022,0:45,,,40.67362,-73.884224,"(40.67362, -73.884224)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493516,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,6:30,,,40.60707,-74.09241,"(40.60707, -74.09241)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4492823,Pick-up Truck,Sedan,,, +01/08/2022,2:41,BRONX,10466,40.896687,-73.84511,"(40.896687, -73.84511)",PITMAN AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4493211,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/08/2022,13:02,,,,,,Father capodanno blvd,Lilly pond road,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4493479,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/08/2022,10:15,,,40.74779,-73.94985,"(40.74779, -73.94985)",45 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492837,Sedan,,,, +01/08/2022,2:50,,,40.73775,-73.768394,"(40.73775, -73.768394)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4492956,Sedan,,,, +01/08/2022,5:55,QUEENS,11418,40.698586,-73.814186,"(40.698586, -73.814186)",VANWYCK EXPRESSWAY,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493297,Sedan,,,, +01/08/2022,9:10,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,17:00,BRONX,10468,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEBB AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493416,Sedan,,,, +01/07/2022,15:35,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4493446,Sedan,Box Truck,,, +01/08/2022,16:30,QUEENS,11377,,,,43rd Ave,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4492915,Sedan,Sedan,,, +01/08/2022,11:45,,,40.694714,-73.93122,"(40.694714, -73.93122)",REID AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492885,Sedan,,,, +01/08/2022,15:40,,,40.64875,-74.02088,"(40.64875, -74.02088)",1 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,12:18,,,40.836544,-73.87365,"(40.836544, -73.87365)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4492891,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,18:35,,,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4492940,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,0:07,BRONX,10467,40.881668,-73.87534,"(40.881668, -73.87534)",KINGS COLLEGE PLACE,EAST 211 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492844,Station Wagon/Sport Utility Vehicle,Snow Plow,,, +01/06/2022,19:10,,,40.609505,-74.181885,"(40.609505, -74.181885)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4493445,Sedan,Pick-up Truck,,, +01/08/2022,14:00,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493145,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,20:35,,,40.71206,-73.94737,"(40.71206, -73.94737)",LEONARD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493234,Sedan,Moped,,, +01/08/2022,22:46,MANHATTAN,10035,40.797306,-73.93446,"(40.797306, -73.93446)",EAST 118 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493462,E-Bike,Sedan,,, +01/01/2022,7:23,,,40.62368,-73.99772,"(40.62368, -73.99772)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493371,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,10:23,,,40.8076,-73.93719,"(40.8076, -73.93719)",EAST 129 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493453,PK,Sedan,,, +01/08/2022,17:25,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,18 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492854,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,13:14,,,40.75855,-73.82964,"(40.75855, -73.82964)",MAIN STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492924,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,19:00,BROOKLYN,11212,40.668694,-73.90856,"(40.668694, -73.90856)",OSBORN STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493076,Sedan,,,, +01/05/2022,18:30,,,40.609463,-73.97419,"(40.609463, -73.97419)",DAHILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4493362,Sedan,Sedan,Sedan,, +01/08/2022,16:00,,,40.65452,-73.882225,"(40.65452, -73.882225)",FLATLANDS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4493531,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,6:08,MANHATTAN,10010,40.73951,-73.98475,"(40.73951, -73.98475)",EAST 23 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492957,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,9:45,QUEENS,11373,40.741688,-73.872086,"(40.741688, -73.872086)",,,48-37 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493041,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,16:00,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492896,Sedan,4 dr sedan,,, +01/06/2022,11:20,BROOKLYN,11208,40.679077,-73.86323,"(40.679077, -73.86323)",,,1242 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493515,Sedan,,,, +01/05/2022,12:30,BRONX,10458,40.86592,-73.89106,"(40.86592, -73.89106)",,,2677 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493396,Sedan,,,, +01/08/2022,7:20,BROOKLYN,11207,40.674057,-73.89886,"(40.674057, -73.89886)",,,303 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493429,Sedan,,,, +04/05/2022,14:35,BROOKLYN,11207,40.67563,-73.90151,"(40.67563, -73.90151)",,,2506 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516849,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,23:10,,,40.71143,-73.72845,"(40.71143, -73.72845)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493138,Sedan,Sedan,,, +09/08/2021,18:25,,,,,,belt parkway,stillwell ave,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493556,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,13:30,,,,,,,,21 GULF AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493218,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,13:04,,,40.655037,-73.935585,"(40.655037, -73.935585)",LENOX ROAD,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4493052,E-Bike,,,, +01/08/2022,1:41,,,40.837124,-73.909645,"(40.837124, -73.909645)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,Unspecified,,,4493337,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/08/2022,14:00,MANHATTAN,10010,40.73978,-73.97951,"(40.73978, -73.97951)",EAST 26 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4492964,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,12:04,BROOKLYN,11208,40.68419,-73.8703,"(40.68419, -73.8703)",AUTUMN AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4493520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +01/08/2022,22:00,BROOKLYN,11222,40.719948,-73.94326,"(40.719948, -73.94326)",,,54 HERBERT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4493257,Sedan,Sedan,,, +01/08/2022,12:48,MANHATTAN,10007,40.712532,-74.007675,"(40.712532, -74.007675)",BROADWAY,PARK PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493064,Sedan,,,, +01/08/2022,22:07,,,40.701916,-73.72712,"(40.701916, -73.72712)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,16:00,BRONX,10469,40.87135,-73.8385,"(40.87135, -73.8385)",,,3019 WICKHAM AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,19:10,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493570,Sedan,Sedan,,, +01/08/2022,0:55,QUEENS,11419,40.69297,-73.81538,"(40.69297, -73.81538)",132 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492778,Sedan,Sedan,,, +01/08/2022,21:00,BROOKLYN,11214,40.607235,-73.99194,"(40.607235, -73.99194)",21 AVENUE,79 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493030,Sedan,E-Bike,,, +01/06/2022,18:16,BRONX,10472,40.83411,-73.86336,"(40.83411, -73.86336)",,,1271 WHITE PLAINS ROAD,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493493,Station Wagon/Sport Utility Vehicle,Bike,,, +01/08/2022,17:30,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493539,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,4:15,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492824,Sedan,,,, +01/08/2022,21:00,QUEENS,11432,40.71025,-73.799866,"(40.71025, -73.799866)",164 STREET,HIGHLAND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492960,Sedan,Sedan,,, +01/08/2022,11:40,QUEENS,11356,40.78794,-73.84289,"(40.78794, -73.84289)",11 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4493198,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,17:25,BROOKLYN,11203,40.6462,-73.93175,"(40.6462, -73.93175)",BEVERLEY ROAD,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493053,Sedan,Sedan,,, +01/07/2022,6:30,BRONX,10462,40.837162,-73.8509,"(40.837162, -73.8509)",MANNING STREET,GLEBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493472,Sedan,,,, +01/07/2022,17:00,BROOKLYN,11207,40.66219,-73.8923,"(40.66219, -73.8923)",NEW LOTS AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493519,Sedan,,,, +01/08/2022,17:58,QUEENS,11372,40.749157,-73.86943,"(40.749157, -73.86943)",ROOSEVELT AVENUE,JUNCTION BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4493127,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,14:35,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4492895,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,4:06,BRONX,10472,40.824535,-73.876335,"(40.824535, -73.876335)",,,1009 WARD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/08/2022,9:03,BROOKLYN,11204,40.614002,-73.98636,"(40.614002, -73.98636)",,,2062 68 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,5:25,,,,,,ROCKAWAY FREEWAY,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493457,PICK-UP TR,,,, +01/08/2022,13:00,BRONX,10463,40.88265,-73.889496,"(40.88265, -73.889496)",,,3975 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4492863,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,14:55,BROOKLYN,11235,40.58945,-73.960526,"(40.58945, -73.960526)",CONEY ISLAND AVENUE,AVENUE Y,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493283,Sedan,,,, +01/07/2022,9:30,QUEENS,11375,40.721054,-73.8552,"(40.721054, -73.8552)",YELLOWSTONE BOULEVARD,DARTMOUTH STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4493398,Sedan,Sedan,,, +01/08/2022,18:09,STATEN ISLAND,10312,40.54585,-74.164604,"(40.54585, -74.164604)",WILSON AVENUE,ELTINGVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4492903,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,13:05,BRONX,10452,40.834167,-73.92779,"(40.834167, -73.92779)",WEST 165 STREET,NELSON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4493074,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,10:33,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493533,Sedan,Sedan,Sedan,, +01/07/2022,12:30,BRONX,10474,40.814026,-73.88959,"(40.814026, -73.88959)",,,1234 SPOFFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493466,Sedan,,,, +01/08/2022,12:30,QUEENS,11101,40.753075,-73.92139,"(40.753075, -73.92139)",,,42-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4492979,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +01/08/2022,13:17,BRONX,10454,40.80465,-73.922264,"(40.80465, -73.922264)",,,115 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4493112,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,4:00,BROOKLYN,11207,40.666134,-73.88492,"(40.666134, -73.88492)",LIVONIA AVENUE,JEROME STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4493524,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,7:05,,,40.645397,-73.91893,"(40.645397, -73.91893)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493369,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/08/2022,11:06,MANHATTAN,10022,40.75539,-73.969765,"(40.75539, -73.969765)",,,242 EAST 50 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4492835,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,7:27,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4493449,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,23:45,MANHATTAN,10017,40.7488,-73.96986,"(40.7488, -73.96986)",1 AVENUE,EAST 42 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4492942,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,21:20,,,40.586918,-73.96387,"(40.586918, -73.96387)",AVENUE Z,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4493405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/08/2022,10:20,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493296,Station Wagon/Sport Utility Vehicle,Van,,, +01/08/2022,23:30,BROOKLYN,11218,40.640068,-73.986885,"(40.640068, -73.986885)",13 AVENUE,40 STREET,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4493144,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +03/29/2022,14:35,MANHATTAN,10021,40.77373,-73.96402,"(40.77373, -73.96402)",EAST 75 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517169,Taxi,Box Truck,,, +01/05/2022,11:28,,,40.677155,-73.86887,"(40.677155, -73.86887)",CONDUIT BOULEVARD,GLENMORE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4493528,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,7:00,QUEENS,11368,40.742096,-73.86748,"(40.742096, -73.86748)",JUNCTION BOULEVARD,CORONA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493040,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +01/08/2022,20:11,MANHATTAN,10029,40.798374,-73.941025,"(40.798374, -73.941025)",,,161 EAST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493458,Bus,Sedan,,, +01/07/2022,19:45,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493506,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,14:00,MANHATTAN,10001,40.749367,-73.984695,"(40.749367, -73.984695)",,,7 WEST 35 STREET,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,,,,,4493108,Sedan,,,, +04/05/2022,15:15,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",47 AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516536,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,5:18,BRONX,10474,40.81005,-73.88724,"(40.81005, -73.88724)",OAK POINT AVENUE,MANIDA STREET,,1,1,0,0,0,0,1,1,Alcohol Involvement,Unspecified,,,,4492843,Sedan,Tractor Truck Diesel,,, +01/08/2022,11:00,BROOKLYN,11232,40.65201,-74.0101,"(40.65201, -74.0101)",,,4218 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493247,Sedan,Pick-up Truck,,, +01/08/2022,21:24,,,40.703823,-73.8088,"(40.703823, -73.8088)",89 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4492914,Sedan,Sedan,Sedan,, +01/08/2022,0:00,,,40.660175,-73.9282,"(40.660175, -73.9282)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,15:40,BROOKLYN,11232,40.64875,-74.02088,"(40.64875, -74.02088)",53 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493246,Sedan,Sedan,,, +01/08/2022,6:00,BROOKLYN,11207,40.67576,-73.896645,"(40.67576, -73.896645)",,,2645 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4493549,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,12:50,,,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493133,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,8:00,MANHATTAN,10026,40.799816,-73.956184,"(40.799816, -73.956184)",,,225 WEST 110 STREET,3,0,0,0,0,0,3,0,Pavement Slippery,Other Vehicular,,,,4493573,Sedan,Bus,,, +01/08/2022,2:25,BROOKLYN,11201,40.69195,-73.97897,"(40.69195, -73.97897)",,,122 ASHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492785,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,18:40,,,40.674786,-73.8762,"(40.674786, -73.8762)",PITKIN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493490,Box Truck,,,, +01/03/2022,11:00,QUEENS,11374,40.733433,-73.86418,"(40.733433, -73.86418)",,,61-35 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,0:00,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",DELANCEY STREET,ORCHARD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4492899,Sedan,,,, +01/08/2022,19:35,QUEENS,11411,40.69351,-73.73087,"(40.69351, -73.73087)",,,116-30 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4492907,Sedan,Sedan,Sedan,, +01/08/2022,12:25,BRONX,10469,40.865364,-73.85139,"(40.865364, -73.85139)",,,1241 ALLERTON AVENUE,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4493338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/08/2022,16:39,,,40.760166,-73.83262,"(40.760166, -73.83262)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492919,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,3:16,,,40.737682,-73.85206,"(40.737682, -73.85206)",LONG ISLAND EXPRESSWAY,108 STREET,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4493388,Sedan,Sedan,,, +01/08/2022,8:45,QUEENS,11102,40.771347,-73.92285,"(40.771347, -73.92285)",CRESCENT STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492977,Sedan,Sedan,,, +01/06/2022,21:00,QUEENS,11377,40.74524,-73.90037,"(40.74524, -73.90037)",,,39-37 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493433,Sedan,,,, +06/25/2021,2:37,,,,,,DELANCEY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431589,Sedan,Sedan,,, +10/16/2021,0:09,,,,,,12 AVENUE,SAINT CLAIR PLACE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4468469,Taxi,Sedan,,, +01/08/2022,0:40,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492848,Sedan,Sedan,,, +01/08/2022,16:25,,,40.881992,-73.87718,"(40.881992, -73.87718)",WAYNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493348,Sedan,Pick-up Truck,,, +10/16/2021,11:06,MANHATTAN,10016,40.748302,-73.9783384,"(40.748302, -73.9783384)",EAST 37 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467807,Pick-up Truck,Motorcycle,,, +10/16/2021,0:15,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Alcohol Involvement,,,,4468357,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,20:44,QUEENS,11354,40.759106,-73.834145,"(40.759106, -73.834145)",,,133-42 39 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4485445,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/11/2021,18:30,,,40.597267,-73.998665,"(40.597267, -73.998665)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,15:43,BROOKLYN,11239,40.64455,-73.879944,"(40.64455, -73.879944)",,,1500 HORNELL LOOP,1,0,1,0,0,0,0,0,,,,,,4486032,,,,, +12/11/2021,14:23,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485616,Sedan,,,, +12/11/2021,3:10,QUEENS,11101,40.753036,-73.94062,"(40.753036, -73.94062)",41 AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4485564,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/10/2021,13:00,QUEENS,11433,40.70647,-73.787605,"(40.70647, -73.787605)",,,92-36 172 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485992,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,4:00,BROOKLYN,11208,40.677868,-73.876945,"(40.677868, -73.876945)",,,353 LOGAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,2:30,MANHATTAN,10001,,,,10 AVENUE,25 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485625,Sedan,Sedan,,, +12/11/2021,6:00,BROOKLYN,11226,40.65023,-73.964226,"(40.65023, -73.964226)",,,28 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486178,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,21:11,BROOKLYN,11203,40.649277,-73.94361,"(40.649277, -73.94361)",SNYDER AVENUE,BROOKLYN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4485442,Bike,,,, +12/11/2021,16:05,BRONX,10475,40.871563,-73.82481,"(40.871563, -73.82481)",,,120 COOP CITY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,8:05,BROOKLYN,11203,40.649986,-73.93215,"(40.649986, -73.93215)",SNYDER AVENUE,EAST 48 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4485412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,16:40,,,40.83863,-73.84938,"(40.83863, -73.84938)",ZEREGA AVENUE,GLEBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486074,Sedan,,,, +12/11/2021,11:44,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485819,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,0:15,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,,,,4485952,Sedan,Sedan,,, +12/11/2021,21:19,BROOKLYN,11206,40.70489,-73.94617,"(40.70489, -73.94617)",,,31 LEONARD STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4485466,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +12/11/2021,17:48,BRONX,10456,40.83472,-73.89846,"(40.83472, -73.89846)",CROTONA PARK SOUTH,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Turning Improperly,,,,4485662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,12:15,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493421,Sedan,Sedan,,, +01/08/2022,0:00,,,40.80641,-73.94227,"(40.80641, -73.94227)",EAST 125 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493456,Taxi,,,, +12/01/2020,8:45,BROOKLYN,11203,40.655094,-73.934654,"(40.655094, -73.934654)",LENOX ROAD,EAST 46 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4372543,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/16/2021,10:30,BROOKLYN,11207,40.67398,-73.899315,"(40.67398, -73.899315)",LIBERTY AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427806,Bus,Sedan,,, +06/16/2021,15:14,BROOKLYN,11213,40.6643,-73.92918,"(40.6643, -73.92918)",EAST NEW YORK AVENUE,FORD STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,,,4428252,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/19/2021,20:00,QUEENS,11416,40.683235,-73.86108,"(40.683235, -73.86108)",78 STREET,95 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4428974,Sedan,Sedan,Sedan,, +06/19/2021,12:37,BROOKLYN,11235,40.592205,-73.93551,"(40.592205, -73.93551)",AVENUE Y,COYLE STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4429205,Van,Sedan,,, +01/08/2022,17:47,QUEENS,11360,40.783566,-73.77733,"(40.783566, -73.77733)",18 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4492868,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,5:41,BROOKLYN,11201,40.692234,-73.987305,"(40.692234, -73.987305)",JAY STREET,WILLOUGHBY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430996,Sedan,,,, +06/06/2021,2:50,,,40.902157,-73.847626,"(40.902157, -73.847626)",EAST 241 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431408,Sedan,Sedan,Sedan,, +06/23/2021,15:40,,,,,,STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4430227,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,22:15,STATEN ISLAND,10310,40.64215,-74.11504,"(40.64215, -74.11504)",RICHMOND TERRACE,ELM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431283,Sedan,Sedan,Sedan,, +06/25/2021,23:13,QUEENS,11377,40.74998,-73.9054,"(40.74998, -73.9054)",,,37-11 57 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4430975,Sedan,Sedan,,, +06/24/2021,18:45,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,FEATHERBED LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430711,Sedan,,,, +06/23/2021,14:29,,,,,,ROCKAWAY FREEWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4430344,Sedan,Flat Bed,Tanker,, +06/19/2021,16:18,,,40.680187,-73.755486,"(40.680187, -73.755486)",MERRICK BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431191,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,15:30,MANHATTAN,10007,40.717186,-74.0129,"(40.717186, -74.0129)",WEST STREET,CHAMBERS STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:45,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4430825,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:20,BRONX,10457,40.85185,-73.902725,"(40.85185, -73.902725)",ANTHONY AVENUE,EAST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430693,Sedan,Sedan,,, +06/17/2021,15:15,BROOKLYN,11213,40.671337,-73.9448,"(40.671337, -73.9448)",SAINT JOHNS PLACE,BROOKLYN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4431336,Bike,,,, +06/23/2021,13:30,,,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Pavement Defective,Pavement Defective,,,,4431439,Concrete Mixer,Bike,,, +06/24/2021,12:08,QUEENS,11691,40.605988,-73.75864,"(40.605988, -73.75864)",,,22-93 MOTT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,7:25,QUEENS,11378,40.72878,-73.926155,"(40.72878, -73.926155)",43 STREET,56 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430974,Sedan,,,, +06/24/2021,17:40,QUEENS,11432,40.70792,-73.784225,"(40.70792, -73.784225)",,,176-06 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430569,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,13:00,QUEENS,11373,40.73648,-73.874275,"(40.73648, -73.874275)",55 AVENUE,JUSTICE AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431409,Sedan,Bike,,, +06/25/2021,0:56,QUEENS,11358,40.758297,-73.80429,"(40.758297, -73.80429)",,,43-70 162 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4430864,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,19:58,QUEENS,11433,40.702103,-73.788605,"(40.702103, -73.788605)",104 AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431543,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,0:00,,,40.823833,-73.87807,"(40.823833, -73.87807)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430814,Sedan,,,, +06/24/2021,19:15,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4430551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/22/2021,16:37,QUEENS,11379,40.717827,-73.8724,"(40.717827, -73.8724)",80 STREET,FURMANVILLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431499,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,0:56,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4429937,Box Truck,Sedan,,, +06/25/2021,11:12,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431225,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,19:09,,,40.82942,-73.91226,"(40.82942, -73.91226)",EAST 166 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430901,E-Bike,,,, +06/24/2021,16:38,BROOKLYN,11220,40.645374,-74.004745,"(40.645374, -74.004745)",,,646 46 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4431022,Sedan,Sedan,Sedan,Sedan, +06/23/2021,23:25,BROOKLYN,11209,40.62578,-74.02416,"(40.62578, -74.02416)",80 STREET,5 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4430257,Sedan,MOPED,,, +06/24/2021,22:10,BROOKLYN,11236,40.629208,-73.90126,"(40.629208, -73.90126)",AVENUE N,EAST 84 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430827,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,17:49,QUEENS,11432,40.71112,-73.79742,"(40.71112, -73.79742)",HIGHLAND AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430698,Taxi,Sedan,,, +06/24/2021,17:10,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4430754,Sedan,Tractor Truck Diesel,,, +06/25/2021,15:23,,,40.832367,-73.82971,"(40.832367, -73.82971)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4431608,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2021,7:55,,,40.755928,-73.91928,"(40.755928, -73.91928)",42 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430399,Sedan,Bike,,, +06/23/2021,15:00,,,40.766815,-73.83038,"(40.766815, -73.83038)",137 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430869,Sedan,Sedan,,, +06/21/2021,12:45,BROOKLYN,11207,40.673714,-73.892456,"(40.673714, -73.892456)",BRADFORD STREET,GLENMORE AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430928,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,23:38,BROOKLYN,11226,40.642017,-73.96266,"(40.642017, -73.96266)",EAST 17 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431195,Sedan,,,, +06/25/2021,23:45,BROOKLYN,11235,0,0,"(0.0, 0.0)",AVENUE Z,EAST 12 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4431690,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,14:15,BRONX,10469,40.86284,-73.8468,"(40.86284, -73.8468)",,,1375 MACE AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4430311,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,8:50,MANHATTAN,10013,40.72085,-74.00394,"(40.72085, -74.00394)",CANAL STREET,WOOSTER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431061,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,19:05,BROOKLYN,11226,40.651764,-73.94854,"(40.651764, -73.94854)",,,307 MARTENSE STREET,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4431123,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,17:00,BROOKLYN,11249,40.712406,-73.966,"(40.712406, -73.966)",,,398 WYTHE AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430524,E-Bike,E-Bike,,, +06/23/2021,16:51,QUEENS,11101,40.734856,-73.93849,"(40.734856, -73.93849)",,,35-00 REVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430608,Sedan,,,, +06/25/2021,17:16,MANHATTAN,10030,40.817593,-73.945145,"(40.817593, -73.945145)",,,296D WEST 137 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431664,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,21:35,MANHATTAN,10021,40.770424,-73.964325,"(40.770424, -73.964325)",EAST 71 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430644,Taxi,Pick-up Truck,,, +06/24/2021,20:45,,,40.655457,-73.92883,"(40.655457, -73.92883)",LENOX ROAD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431140,Sedan,Bike,,, +06/23/2021,0:30,BROOKLYN,11211,40.716175,-73.949715,"(40.716175, -73.949715)",LORIMER STREET,JACKSON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430026,Sedan,Motorscooter,,, +06/24/2021,8:30,,,40.642303,-74.01324,"(40.642303, -74.01324)",55 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431376,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,11:30,QUEENS,11694,,,,,,412 BEACH 169 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4430795,Sedan,,,, +06/24/2021,7:00,QUEENS,11417,40.67256,-73.840256,"(40.67256, -73.840256)",96 STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430316,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,18:00,QUEENS,11433,40.700016,-73.80129,"(40.700016, -73.80129)",,,95-65 TUCKERTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430567,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,14:15,STATEN ISLAND,10307,40.510056,-74.247826,"(40.510056, -74.247826)",,,211 MAIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430725,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:30,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4431383,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,16:00,,,40.67591,-73.89492,"(40.67591, -73.89492)",VERMONT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430786,Sedan,,,, +06/25/2021,15:20,,,,,,PELHAM PARKWAY NORTH,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431009,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,0:01,,,,,,CROSS BRONX EXPRESSWAY EXTENSION,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430857,Sedan,Sedan,,, +06/25/2021,15:00,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",73 AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430960,Bus,Bus,,, +06/24/2021,17:30,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430598,Pick-up Truck,Sedan,,, +06/21/2021,14:13,,,40.75337,-73.974655,"(40.75337, -73.974655)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431037,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/24/2021,13:26,MANHATTAN,10013,40.72084,-74.00066,"(40.72084, -74.00066)",BROADWAY,GRAND STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430495,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,23:20,BROOKLYN,11207,40.666294,-73.89445,"(40.666294, -73.89445)",DUMONT AVENUE,PENNSYLVANIA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430943,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,12:40,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431354,Sedan,,,, +06/23/2021,9:30,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430092,Sedan,Tractor Truck Diesel,,, +06/25/2021,0:05,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430731,Sedan,Box Truck,,, +06/15/2021,16:30,QUEENS,11434,40.683422,-73.77942,"(40.683422, -73.77942)",166 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430730,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,14:34,BROOKLYN,11203,40.64457,-73.94502,"(40.64457, -73.94502)",CORTELYOU ROAD,EAST 34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430206,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,17:24,BRONX,10461,40.851963,-73.83557,"(40.851963, -73.83557)",HUTCHINSON RIVER PARKWAY,WILKINSON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430879,Sedan,,,, +06/23/2021,13:39,BROOKLYN,11217,40.679176,-73.98184,"(40.679176, -73.98184)",,,153 4 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4430896,Flat Bed,Sedan,Sedan,, +06/23/2021,18:10,BRONX,10458,40.86264,-73.88226,"(40.86264, -73.88226)",,,2691 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430348,Station Wagon/Sport Utility Vehicle,Moped,,, +06/10/2021,15:30,BROOKLYN,11231,40.6742,-73.99984,"(40.6742, -73.99984)",HAMILTON AVENUE,COURT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430846,Sedan,Beverage Truck,,, +06/24/2021,12:33,QUEENS,11101,40.75149,-73.93862,"(40.75149, -73.93862)",,,41-21 27 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431262,Sedan,Sedan,,, +06/23/2021,18:50,QUEENS,11370,40.75845,-73.89348,"(40.75845, -73.89348)",31 AVENUE,74 STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4430818,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/19/2021,22:00,BROOKLYN,11230,40.619442,-73.96923,"(40.619442, -73.96923)",,,615 AVENUE L,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431288,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,19:39,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,WALTON AVENUE,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4431079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,18:27,BRONX,10459,40.829914,-73.89361,"(40.829914, -73.89361)",,,1285 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431153,Sedan,Sedan,,, +06/24/2021,16:44,MANHATTAN,10026,40.803894,-73.95821,"(40.803894, -73.95821)",MORNINGSIDE AVENUE,WEST 114 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431443,Taxi,Sedan,Sedan,, +06/21/2021,15:50,BROOKLYN,11221,40.692623,-73.93398,"(40.692623, -73.93398)",STUYVESANT AVENUE,KOSCIUSZKO STREET,,1,0,0,0,0,0,1,0,,,,,,4431511,,,,, +06/25/2021,6:30,QUEENS,11691,40.607033,-73.76075,"(40.607033, -73.76075)",,,1344 DICKENS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430685,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,16:08,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4430884,Sedan,Sedan,Sedan,, +06/23/2021,8:20,,,40.70154,-73.93837,"(40.70154, -73.93837)",GARDEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430372,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,19:00,BROOKLYN,11203,40.654434,-73.92139,"(40.654434, -73.92139)",REMSEN AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431479,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:30,BROOKLYN,11218,40.651226,-73.97891,"(40.651226, -73.97891)",,,48 EAST 3 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4431028,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,6:40,QUEENS,11358,40.753986,-73.80769,"(40.753986, -73.80769)",159 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431307,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/23/2021,8:20,BROOKLYN,11221,40.69451,-73.930885,"(40.69451, -73.930885)",,,1082 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430410,Sedan,Box Truck,,, +06/24/2021,21:25,MANHATTAN,10029,40.796,-73.93542,"(40.796, -73.93542)",1 AVENUE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430750,Sedan,,,, +06/23/2021,20:40,QUEENS,11368,40.74403,-73.85869,"(40.74403, -73.85869)",CORONA AVENUE,104 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4431416,Sedan,,,, +06/23/2021,10:15,MANHATTAN,10027,40.80556,-73.94495,"(40.80556, -73.94495)",,,27 MOUNT MORRIS PARK WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4430454,Sedan,,,, +06/24/2021,16:15,BRONX,10465,40.815094,-73.81155,"(40.815094, -73.81155)",THROGS NECK BOULEVARD,SCHURZ AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431679,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,9:00,,,40.79611,-73.96145,"(40.79611, -73.96145)",WEST 103 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430179,Sedan,,,, +06/24/2021,18:20,,,40.578312,-73.96808,"(40.578312, -73.96808)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4431241,Sedan,Motorcycle,,, +05/27/2021,17:49,,,40.727192,-73.89328,"(40.727192, -73.89328)",GRAND AVENUE,69 LANE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431095,Sedan,E-Scooter,,, +06/22/2021,14:00,,,40.677513,-73.95913,"(40.677513, -73.95913)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4431330,Sedan,Sedan,,, +06/24/2021,11:55,BRONX,10452,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430763,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,13:00,MANHATTAN,10280,40.70927,-74.016495,"(40.70927, -74.016495)",,,225 RECTOR PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430140,Sedan,,,, +06/25/2021,2:00,MANHATTAN,10012,40.724228,-74.00423,"(40.724228, -74.00423)",,,53 SULLIVAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431597,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,21:23,BRONX,10467,40.87916,-73.86856,"(40.87916, -73.86856)",,,3534 BRONX BOULEVARD,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4431393,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/25/2021,1:11,BRONX,10468,40.864872,-73.90253,"(40.864872, -73.90253)",WEST 190 STREET,AQUEDUCT AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4430620,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,2:38,MANHATTAN,10013,40.720318,-74.012184,"(40.720318, -74.012184)",NORTH MOORE STREET,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430634,Sedan,Sedan,,, +06/24/2021,19:00,,,40.806835,-73.924355,"(40.806835, -73.924355)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430660,Dump,Sedan,,, +06/23/2021,22:35,BROOKLYN,11208,40.670135,-73.858055,"(40.670135, -73.858055)",,,2870 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4430911,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,6:51,,,40.82815,-73.93491,"(40.82815, -73.93491)",MACOMBS PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Oversized Vehicle,,,,4430782,Sedan,Box Truck,,, +06/23/2021,10:52,,,40.79216,-73.9777,"(40.79216, -73.9777)",WEST 90 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4430171,Moped,,,, +06/23/2021,2:20,QUEENS,11412,40.705494,-73.776535,"(40.705494, -73.776535)",,,182-10 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430142,Sedan,Sedan,,, +06/25/2021,8:00,QUEENS,11434,40.660347,-73.767975,"(40.660347, -73.767975)",BREWER BOULEVARD,147 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431005,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,21:05,QUEENS,11433,40.69999,-73.788666,"(40.69999, -73.788666)",,,107-05 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4430579,Sedan,,,, +06/18/2021,20:10,QUEENS,11436,40.67774,-73.79755,"(40.67774, -73.79755)",119 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430735,Sedan,,,, +06/23/2021,10:50,QUEENS,11413,40.673626,-73.76384,"(40.673626, -73.76384)",FARMERS BOULEVARD,137 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4430198,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,18:00,BROOKLYN,11203,40.65526,-73.93192,"(40.65526, -73.93192)",,,758 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4431116,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,7:25,QUEENS,11377,40.753284,-73.90691,"(40.753284, -73.90691)",NORTHERN BOULEVARD,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430111,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,17:30,BROOKLYN,11207,40.655037,-73.88797,"(40.655037, -73.88797)",,,963 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430916,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,21:55,,,40.637447,-74.01997,"(40.637447, -74.01997)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430435,Sedan,,,, +06/24/2021,10:00,BROOKLYN,11226,40.655106,-73.955246,"(40.655106, -73.955246)",,,130 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431110,Sedan,,,, +06/25/2021,15:20,,,40.583023,-73.95736,"(40.583023, -73.95736)",EAST 12 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431245,Sedan,Box Truck,,, +06/20/2021,23:35,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,5,0,0,0,0,0,5,0,Fatigued/Drowsy,Unspecified,,,,4430718,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,10:00,,,40.675354,-73.952774,"(40.675354, -73.952774)",ROGERS AVENUE,,,0,2,0,0,0,0,0,2,Unsafe Lane Changing,Unspecified,,,,4430850,Motorcycle,Dump,,, +06/23/2021,19:37,,,40.80476,-73.92417,"(40.80476, -73.92417)",WILLIS AVENUE BRIDGE APPROACH,EAST 132 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430298,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,13:50,BROOKLYN,11207,40.665474,-73.9,"(40.665474, -73.9)",SNEDIKER AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4430933,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,16:13,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430965,Sedan,Sedan,,, +04/22/2021,14:16,MANHATTAN,10012,40.720497,-73.9959,"(40.720497, -73.9959)",,,180 MOTT STREET,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4431323,Box Truck,,,, +06/04/2021,18:40,QUEENS,11426,40.72547,-73.72039,"(40.72547, -73.72039)",JAMAICA AVENUE,91 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,23:36,,,40.809284,-73.92927,"(40.809284, -73.92927)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431083,Taxi,,,, +06/24/2021,17:15,,,,,,Crotona Avenue,Boston avenue,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4431158,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/25/2021,18:00,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",NEWTOWN AVENUE,31 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4431267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/24/2021,5:26,QUEENS,11368,40.7553,-73.87009,"(40.7553, -73.87009)",98 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430325,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,12:00,,,40.81963,-73.946075,"(40.81963, -73.946075)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430690,Van,Box Truck,,, +06/19/2021,6:35,,,40.72671,-73.889305,"(40.72671, -73.889305)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4431488,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,17:55,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",150 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430703,Sedan,,,, +06/24/2021,10:49,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430475,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,16:44,BROOKLYN,11233,40.67879,-73.920395,"(40.67879, -73.920395)",,,1958 FULTON STREET,2,0,1,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,,,4431517,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,10:30,QUEENS,11413,40.685524,-73.74998,"(40.685524, -73.74998)",,,216-21 130 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,10:29,,,40.764683,-73.758606,"(40.764683, -73.758606)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430806,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,15:28,,,40.751976,-73.93197,"(40.751976, -73.93197)",HONEYWELL STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430385,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/19/2021,19:00,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431292,Station Wagon/Sport Utility Vehicle,Bus,,, +06/25/2021,14:25,QUEENS,11368,40.742455,-73.86424,"(40.742455, -73.86424)",98 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431420,Station Wagon/Sport Utility Vehicle,Carry All,,, +06/25/2021,5:30,BROOKLYN,11208,40.674377,-73.8669,"(40.674377, -73.8669)",,,604 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430905,Sedan,,,, +06/25/2021,19:00,QUEENS,11411,40.688377,-73.733536,"(40.688377, -73.733536)",,,119-49 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430985,Sedan,Sedan,,, +06/24/2021,9:00,BROOKLYN,11216,40.673065,-73.95586,"(40.673065, -73.95586)",,,685 STERLING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431345,Sedan,,,, +06/23/2021,13:46,MANHATTAN,10037,40.812744,-73.937645,"(40.812744, -73.937645)",WEST 135 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430131,Box Truck,Pick-up Truck,,, +06/24/2021,23:04,,,40.844604,-73.90348,"(40.844604, -73.90348)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430767,Sedan,Sedan,,, +06/24/2021,3:10,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",BOYLAND STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431372,Sedan,Sedan,,, +06/23/2021,10:00,QUEENS,11362,40.76298,-73.735725,"(40.76298, -73.735725)",,,248-44 VANZANDT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430187,Sedan,tractor,,, +06/25/2021,17:25,,,40.69401,-73.9611,"(40.69401, -73.9611)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4431569,Motorcycle,Motorscooter,,, +06/23/2021,11:30,,,40.761173,-73.95789,"(40.761173, -73.95789)",EAST 63 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4430264,Sedan,,,, +02/25/2021,20:15,QUEENS,11411,,,,LINDEN BOULEVARD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430952,Sedan,,,, +06/25/2021,3:16,,,40.60459,-74.02212,"(40.60459, -74.02212)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4430616,Sedan,,,, +06/24/2021,21:46,BROOKLYN,11226,40.639305,-73.96213,"(40.639305, -73.96213)",,,465 EAST 17 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431210,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,9:30,BRONX,10466,40.889343,-73.83422,"(40.889343, -73.83422)",,,1450 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431387,Sedan,,,, +06/17/2021,10:00,,,40.82499,-73.91662,"(40.82499, -73.91662)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4430762,Sedan,PK,,, +06/24/2021,19:25,,,40.81462,-73.908585,"(40.81462, -73.908585)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430665,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/24/2021,8:25,,,40.69149,-73.92557,"(40.69149, -73.92557)",BROADWAY,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,Unspecified,,,4430370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +06/24/2021,13:40,QUEENS,11101,40.742443,-73.93023,"(40.742443, -73.93023)",35 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430543,Sedan,,,, +06/23/2021,11:58,,,40.72227,-73.9411,"(40.72227, -73.9411)",MEEKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430621,Sedan,Tractor Truck Gasoline,,, +06/20/2021,14:00,BROOKLYN,11208,40.68149,-73.87972,"(40.68149, -73.87972)",,,3122 FULTON STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430794,Sedan,Sedan,,, +06/23/2021,14:24,BROOKLYN,11232,40.65823,-74.00035,"(40.65823, -74.00035)",4 AVENUE,29 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4430207,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,15:20,MANHATTAN,10020,40.758644,-73.981346,"(40.758644, -73.981346)",AVENUE OF THE AMERICAS,WEST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430653,Taxi,Bus,,, +06/23/2021,1:40,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4430243,Sedan,,,, +06/23/2021,17:38,STATEN ISLAND,10305,40.613792,-74.0667,"(40.613792, -74.0667)",,,124 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430585,Sedan,,,, +06/23/2021,12:00,QUEENS,11374,40.73191,-73.87124,"(40.73191, -73.87124)",WOODHAVEN BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,11:15,,,40.70089,-73.94221,"(40.70089, -73.94221)",BROADWAY,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430523,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/23/2021,20:00,BROOKLYN,11236,40.629322,-73.902596,"(40.629322, -73.902596)",,,1371 EAST 83 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430821,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,22:00,QUEENS,11379,40.727978,-73.871025,"(40.727978, -73.871025)",WOODHAVEN BOULEVARD,DRY HARBOR ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4431469,Sedan,Sedan,,, +06/21/2021,14:45,,,40.69223,-73.76027,"(40.69223, -73.76027)",LINDEN BOULEVARD,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4430838,Sedan,Bike,,, +06/23/2021,17:25,QUEENS,11102,40.77224,-73.92744,"(40.77224, -73.92744)",18 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430393,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:26,BRONX,10457,40.84068,-73.89828,"(40.84068, -73.89828)",EAST 173 STREET,FULTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431172,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,2:00,,,40.578117,-73.992645,"(40.578117, -73.992645)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431253,Taxi,,,, +06/23/2021,15:24,,,40.759724,-73.92061,"(40.759724, -73.92061)",37 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4430423,Sedan,Sedan,,, +06/20/2021,14:00,BROOKLYN,11208,40.68257,-73.870865,"(40.68257, -73.870865)",,,299 HEMLOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430937,Sedan,,,, +06/22/2021,23:45,BROOKLYN,11207,40.65768,-73.887794,"(40.65768, -73.887794)",STANLEY AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430789,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,1:30,,,40.813255,-73.93028,"(40.813255, -73.93028)",EAST 138 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430661,Sedan,Bus,,, +07/03/2022,10:00,,,40.617413,-74.15609,"(40.617413, -74.15609)",,,1265 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4542885,Sedan,,,, +06/22/2021,2:59,QUEENS,11423,40.728092,-73.78064,"(40.728092, -73.78064)",,,80-39 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430722,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,21:30,QUEENS,11377,40.734478,-73.8917,"(40.734478, -73.8917)",,,72-10 CALAMUS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430969,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,10:00,,,,,,underhill avenue,pidgeon meadow road,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430512,Pick-up Truck,Carry All,,, +06/25/2021,22:00,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Following Too Closely,,,4430997,Sedan,Sedan,Sedan,, +06/23/2021,11:30,BRONX,10462,40.846474,-73.86559,"(40.846474, -73.86559)",,,1847 HUNT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passenger Distraction,,,,4430574,Sedan,,,, +06/25/2021,9:50,,,40.828407,-73.84392,"(40.828407, -73.84392)",BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4430831,Bus,Sedan,Sedan,Sedan, +06/23/2021,15:50,BROOKLYN,11212,40.658672,-73.90019,"(40.658672, -73.90019)",JUNIUS STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431316,Sedan,,,, +06/24/2021,2:30,BRONX,10451,40.82247,-73.91677,"(40.82247, -73.91677)",,,786 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430293,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,18:24,QUEENS,11435,40.68838,-73.80559,"(40.68838, -73.80559)",,,107-60 142 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430557,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,9:15,MANHATTAN,10033,40.84854,-73.93753,"(40.84854, -73.93753)",,,4211 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430319,Taxi,,,, +06/15/2021,20:55,BRONX,10462,40.83566,-73.840034,"(40.83566, -73.840034)",COMMERCE AVENUE,WATERBURY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430860,Sedan,,,, +06/25/2021,12:09,,,40.72935,-73.910194,"(40.72935, -73.910194)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4431494,Station Wagon/Sport Utility Vehicle,Sedan,Tractor Truck Diesel,, +06/16/2021,10:00,QUEENS,11432,40.718445,-73.808624,"(40.718445, -73.808624)",PARSONS BOULEVARD,GOETHALS AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4430694,Sedan,,,, +06/25/2021,8:30,BROOKLYN,11207,40.675045,-73.892235,"(40.675045, -73.892235)",,,477 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430920,Pick-up Truck,Sedan,,, +06/07/2021,23:18,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431277,Sedan,Sedan,,, +06/23/2021,20:23,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430251,Sedan,,,, +06/19/2021,17:15,QUEENS,11365,,,,,,183-12 HARDING EXPRESSWAY,1,0,0,0,0,0,1,0,Pavement Slippery,Driver Inattention/Distraction,Pavement Slippery,,,4430699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/16/2021,7:08,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431554,Sedan,Sedan,,, +06/23/2021,7:54,BROOKLYN,11213,40.679184,-73.941284,"(40.679184, -73.941284)",HERKIMER STREET,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,View Obstructed/Limited,Unspecified,,,4431296,Sedan,Sedan,Sedan,, +06/23/2021,17:00,BROOKLYN,11220,40.640774,-74.02917,"(40.640774, -74.02917)",WAKEMAN PLACE,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431427,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,22:21,BROOKLYN,11236,40.63418,-73.89792,"(40.63418, -73.89792)",AVENUE M,EAST 91 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4430826,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,17:35,QUEENS,11422,40.663567,-73.734474,"(40.663567, -73.734474)",,,140-22 247 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430948,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,17:29,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4431617,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,1:25,BROOKLYN,11230,40.63529,-73.958206,"(40.63529, -73.958206)",OCEAN AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431203,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,17:20,,,40.706573,-73.922874,"(40.706573, -73.922874)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430357,Sedan,Sedan,,, +06/24/2021,16:12,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430743,Sedan,,,, +06/24/2021,20:53,BRONX,10459,40.817875,-73.89333,"(40.817875, -73.89333)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431065,Tractor Truck Gasoline,,,, +06/24/2021,16:00,QUEENS,11414,40.65603,-73.84974,"(40.65603, -73.84974)",160 AVENUE,82 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,13:10,QUEENS,11356,40.784103,-73.84854,"(40.784103, -73.84854)",15 AVENUE,119 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430217,Sedan,Tractor Truck Diesel,,, +06/22/2021,14:30,,,40.665535,-73.93699,"(40.665535, -73.93699)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4430981,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/21/2021,10:00,QUEENS,11385,40.70008,-73.89951,"(40.70008, -73.89951)",FOREST AVENUE,STEPHEN STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4431381,Sedan,Sedan,Sedan,, +06/25/2021,23:15,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4431071,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,9:40,BROOKLYN,11210,40.634827,-73.9344,"(40.634827, -73.9344)",GLENWOOD ROAD,TROY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4431127,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2021,10:00,,,40.717754,-73.75815,"(40.717754, -73.75815)",90 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430529,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,23:23,BROOKLYN,11213,40.668568,-73.944046,"(40.668568, -73.944046)",,,1429 UNION STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4430625,Sedan,Sedan,Motorcycle,, +06/18/2021,15:20,QUEENS,11435,40.6974,-73.80952,"(40.6974, -73.80952)",143 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431534,Sedan,Sedan,,, +06/23/2021,17:30,BROOKLYN,11212,40.667473,-73.90796,"(40.667473, -73.90796)",,,315 SUTTER AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4431368,Sedan,Motorbike,,, +06/22/2021,17:20,,,40.85458,-73.9162,"(40.85458, -73.9162)",WEST BURNSIDE AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430799,Sedan,,,, +01/08/2022,15:55,QUEENS,11354,40.76027,-73.83049,"(40.76027, -73.83049)",39 AVENUE,MAIN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492918,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,22:00,,,40.82406,-73.92815,"(40.82406, -73.92815)",RIVER AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4431216,Sedan,Sedan,,, +06/23/2021,21:30,QUEENS,11368,40.74673,-73.853226,"(40.74673, -73.853226)",,,48-10 111 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430742,Sedan,Sedan,,, +06/24/2021,0:56,MANHATTAN,10027,40.814487,-73.95547,"(40.814487, -73.95547)",WEST 128 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430258,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,23:47,QUEENS,11416,40.68657,-73.83794,"(40.68657, -73.83794)",,,105-17 101 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4430338,Sedan,Pick-up Truck,,, +06/25/2021,18:49,BRONX,10462,40.84267,-73.8543,"(40.84267, -73.8543)",POPLAR STREET,BRONXDALE AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4431014,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,4:18,,,,,,CROSS BRONX EXPRESSWAY EXTENSION,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4431672,Bus,Sedan,Sedan,, +06/24/2021,17:50,,,40.82572,-73.92716,"(40.82572, -73.92716)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430757,Sedan,Sedan,,, +06/25/2021,11:01,MANHATTAN,10027,40.810352,-73.9457,"(40.810352, -73.9457)",,,158 WEST 128 STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431649,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/23/2021,14:05,,,40.723835,-73.97357,"(40.723835, -73.97357)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430312,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,16:49,,,40.74119,-73.79279,"(40.74119, -73.79279)",UTOPIA PARKWAY,58 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430562,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,11:00,MANHATTAN,10128,40.781113,-73.953415,"(40.781113, -73.953415)",,,165 EAST 89 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430774,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,2:58,BROOKLYN,11218,40.63761,-73.96754,"(40.63761, -73.96754)",DORCHESTER ROAD,STRATFORD ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4429964,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,23:00,QUEENS,11429,40.71232,-73.73202,"(40.71232, -73.73202)",HEMPSTEAD AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430593,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/19/2021,13:30,BRONX,10475,40.879414,-73.833565,"(40.879414, -73.833565)",,,3313 HUNTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431341,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,18:44,QUEENS,11004,40.73832,-73.70374,"(40.73832, -73.70374)",HILLSIDE AVENUE,265 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430853,Sedan,Sedan,,, +06/24/2021,23:15,BRONX,10465,40.824352,-73.82022,"(40.824352, -73.82022)",EAST TREMONT AVENUE,SCHLEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4430873,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,12:30,MANHATTAN,10019,40.762966,-73.973976,"(40.762966, -73.973976)",WEST 57 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430648,Station Wagon/Sport Utility Vehicle,Bus,,, +06/23/2021,11:05,,,40.793716,-73.80704,"(40.793716, -73.80704)",9 AVENUE,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430236,Sedan,,,, +06/23/2021,15:43,STATEN ISLAND,10308,40.56111,-74.16194,"(40.56111, -74.16194)",ARTHUR KILL ROAD,LENNON COURT,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430500,Pick-up Truck,Sedan,,, +06/24/2021,13:35,MANHATTAN,10013,40.719624,-74.00864,"(40.719624, -74.00864)",,,112 HUDSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4430643,Sedan,,,, +06/24/2021,17:26,,,40.86268,-73.90905,"(40.86268, -73.90905)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430624,Sedan,Sedan,,, +06/24/2021,10:00,,,40.642864,-74.01266,"(40.642864, -74.01266)",54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430550,Sedan,,,, +06/23/2021,12:10,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430798,Station Wagon/Sport Utility Vehicle,Moped,,, +06/23/2021,4:30,BROOKLYN,11221,40.6893,-73.943405,"(40.6893, -73.943405)",,,639 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430049,UNKNOWN,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,8:20,QUEENS,11378,40.7267,-73.90034,"(40.7267, -73.90034)",JAY AVENUE,65 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431461,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,18:10,QUEENS,11432,40.707016,-73.79826,"(40.707016, -73.79826)",163 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4430568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,10:49,QUEENS,11354,40.770153,-73.81313,"(40.770153, -73.81313)",32 AVENUE,MURRAY STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4430216,Box Truck,Pick-up Truck,,, +06/24/2021,0:00,QUEENS,11355,,,,shea road,Roosevelt avenue,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4430726,Sedan,Sedan,,, +06/23/2021,15:00,,,40.60242,-73.99459,"(40.60242, -73.99459)",86 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430313,Sedan,Box Truck,,, +06/23/2021,8:50,QUEENS,11385,40.702976,-73.85876,"(40.702976, -73.85876)",MYRTLE AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Glare,Glare,,,,4431501,Bus,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,18:00,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",VAN SICLEN AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4430785,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,23:30,,,40.557735,-74.1807,"(40.557735, -74.1807)",WOODROW ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/24/2021,14:15,,,40.84935,-73.8712,"(40.84935, -73.8712)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430599,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,11:30,QUEENS,11357,40.781506,-73.816956,"(40.781506, -73.816956)",20 AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430875,Sedan,,,, +06/24/2021,21:30,MANHATTAN,10038,40.709087,-74.00781,"(40.709087, -74.00781)",JOHN STREET,DUTCH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431015,Sedan,,,, +06/25/2021,15:30,,,40.750256,-73.938644,"(40.750256, -73.938644)",QUEENS PLAZA NORTH,28 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430892,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/24/2021,8:30,QUEENS,11101,40.75325,-73.9123,"(40.75325, -73.9123)",,,50-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4431258,Sedan,,,, +06/25/2021,19:32,STATEN ISLAND,10309,,,,,,60 SHARROTTS ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4431470,Sedan,Sedan,,, +06/23/2021,17:55,,,40.69811,-73.91713,"(40.69811, -73.91713)",MENAHAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,10:30,BROOKLYN,11214,40.59366,-73.98469,"(40.59366, -73.98469)",STILLWELL AVENUE,BENSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430490,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,16:42,QUEENS,11413,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,150 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4431192,Tractor Truck Diesel,Sedan,,, +06/25/2021,13:25,BROOKLYN,11218,40.645462,-73.974266,"(40.645462, -73.974266)",,,201 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,5:59,QUEENS,11365,40.730537,-73.8013,"(40.730537, -73.8013)",,,168-01 71 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430727,Sedan,Sedan,,, +06/24/2021,16:25,STATEN ISLAND,10306,40.567642,-74.10421,"(40.567642, -74.10421)",,,594 NEW DORP LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430527,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,20:58,,,40.86268,-73.90905,"(40.86268, -73.90905)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4430712,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,12:40,QUEENS,11357,40.777653,-73.81143,"(40.777653, -73.81143)",23 AVENUE,WILLETS POINT BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430880,,,,, +06/23/2021,15:10,QUEENS,11378,40.731575,-73.92484,"(40.731575, -73.92484)",43 STREET,54 ROAD,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4430286,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,14:10,BROOKLYN,11212,40.654137,-73.91234,"(40.654137, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431105,Station Wagon/Sport Utility Vehicle,Convertible,,, +06/25/2021,7:44,QUEENS,11377,40.757374,-73.90369,"(40.757374, -73.90369)",31 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431263,Pick-up Truck,Bike,,, +06/24/2021,15:45,,,40.78176,-73.944145,"(40.78176, -73.944145)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4430677,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,14:10,,,40.64445,-74.07683,"(40.64445, -74.07683)",RICHMOND TERRACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,1:27,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431536,Pick-up Truck,,,, +06/22/2021,7:28,,,40.884968,-73.830345,"(40.884968, -73.830345)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431411,Sedan,,,, +06/18/2021,22:40,MANHATTAN,10012,40.726524,-73.99585,"(40.726524, -73.99585)",BROADWAY,BLEECKER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431151,Sedan,Sedan,,, +06/24/2021,22:18,BROOKLYN,11219,40.640556,-73.999756,"(40.640556, -73.999756)",,,917 48 STREET,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4431303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/25/2021,16:00,BRONX,10467,,,,,,3225 RESERVOIR OVAL EAST,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4431230,Bike,,,, +06/25/2021,17:57,BROOKLYN,11234,40.62048,-73.91736,"(40.62048, -73.91736)",,,2361 RALPH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431524,Sedan,Sedan,,, +06/24/2021,9:13,MANHATTAN,10128,40.78274,-73.94755,"(40.78274, -73.94755)",,,309 EAST 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430635,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/23/2021,14:15,STATEN ISLAND,10304,40.630302,-74.08141,"(40.630302, -74.08141)",SAINT PAULS AVENUE,CEBRA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430584,Sedan,Sedan,,, +06/22/2021,9:00,BROOKLYN,11233,40.681625,-73.912346,"(40.681625, -73.912346)",,,423 MARION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431357,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,12:00,QUEENS,11435,40.70963,-73.814545,"(40.70963, -73.814545)",,,141-45 85 ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430695,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,8:00,QUEENS,11375,40.728806,-73.84033,"(40.728806, -73.84033)",GRAND CENTRAL PARKWAY,68 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4430150,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,12:06,BROOKLYN,11234,40.617924,-73.93174,"(40.617924, -73.93174)",FLATBUSH AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430173,Sedan,Sedan,,, +06/24/2021,10:20,BROOKLYN,11207,40.66838,-73.885475,"(40.66838, -73.885475)",,,529 JEROME STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430944,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,20:30,BROOKLYN,11226,40.64301,-73.96382,"(40.64301, -73.96382)",,,309 EAST 16 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4430389,Convertible,Sedan,,, +06/24/2021,23:58,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431295,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,18:30,,,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430907,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,8:40,,,40.801754,-73.93121,"(40.801754, -73.93121)",1 AVENUE,EAST 125 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430738,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,17:00,BROOKLYN,11211,40.716698,-73.95134,"(40.716698, -73.95134)",,,32 WITHERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430629,Sedan,,,, +06/23/2021,18:15,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430228,E-Scooter,Bike,,, +06/25/2021,8:40,,,40.713436,-73.76119,"(40.713436, -73.76119)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430770,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,19:00,QUEENS,11103,40.75977,-73.91378,"(40.75977, -73.91378)",,,44-11 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430467,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,19:20,,,40.608543,-74.08886,"(40.608543, -74.08886)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430753,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,20:50,BROOKLYN,11214,40.610077,-74.00732,"(40.610077, -74.00732)",86 STREET,16 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4431072,Bike,,,, +06/25/2021,23:33,,,40.6707,-73.77366,"(40.6707, -73.77366)",140 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4430977,Sedan,Sedan,,, +06/21/2021,13:16,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,0:50,QUEENS,11375,40.724968,-73.840355,"(40.724968, -73.840355)",JEWEL AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430607,Sedan,,,, +06/25/2021,18:15,BROOKLYN,11235,40.58036,-73.96761,"(40.58036, -73.96761)",NEPTUNE AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431249,Sedan,Taxi,,, +06/23/2021,13:15,,,40.70789,-73.84652,"(40.70789, -73.84652)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4430132,Box Truck,,,, +06/23/2021,13:52,BROOKLYN,11217,40.68097,-73.98364,"(40.68097, -73.98364)",,,169 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430343,Sedan,Sedan,,, +06/24/2021,0:20,MANHATTAN,10019,40.7684,-73.99093,"(40.7684, -73.99093)",,,538 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430394,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,20:32,BROOKLYN,11218,40.64412,-73.98907,"(40.64412, -73.98907)",37 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431289,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,14:30,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431122,Sedan,Sedan,,, +06/23/2021,14:25,STATEN ISLAND,10312,40.553314,-74.1634,"(40.553314, -74.1634)",GENESEE AVENUE,CORTELYOU AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430167,Bus,E-Scooter,,, +06/24/2021,0:54,QUEENS,11420,40.682228,-73.814156,"(40.682228, -73.814156)",,,111-39 127 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4430263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/24/2021,17:46,QUEENS,11434,40.666935,-73.77734,"(40.666935, -73.77734)",SOUTH CONDUIT AVENUE,167 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431446,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,16:15,,,40.667465,-73.77176,"(40.667465, -73.77176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4430813,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,15:07,BRONX,10474,40.816864,-73.882744,"(40.816864, -73.882744)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430544,Box Truck,Tractor Truck Diesel,,, +06/07/2021,22:21,BROOKLYN,11216,,,,ST JOHNS PLACE,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4431338,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/24/2021,6:40,BROOKLYN,11207,40.66077,-73.89231,"(40.66077, -73.89231)",,,682 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430912,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,10:40,BRONX,10473,40.816284,-73.8453,"(40.816284, -73.8453)",,,449 EFFINGHAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430830,Sedan,,,, +06/24/2021,15:19,BROOKLYN,11228,40.62111,-74.00565,"(40.62111, -74.00565)",,,1316 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430572,Sedan,,,, +06/24/2021,10:18,,,,,,150 STREET,CROSS ISLAND PARKWAY,,1,1,1,1,0,0,0,0,Driver Inattention/Distraction,,,,,4430479,Pick-up Truck,,,, +06/19/2021,21:40,,,,,,KISSENA BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430707,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,13:20,QUEENS,11434,40.66437,-73.769875,"(40.66437, -73.769875)",177 PLACE,145 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430222,Sedan,,,, +06/25/2021,21:35,,,40.832767,-73.82932,"(40.832767, -73.82932)",BRUCKNER BOULEVARD,REVERE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430971,Sedan,Pick-up Truck,,, +06/06/2021,19:00,BRONX,10469,40.88302,-73.85325,"(40.88302, -73.85325)",EAST 222 STREET,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431385,,,,, +06/24/2021,16:00,BROOKLYN,11212,40.658417,-73.90978,"(40.658417, -73.90978)",,,513 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431344,Sedan,,,, +06/24/2021,13:27,,,40.824184,-73.937225,"(40.824184, -73.937225)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4430781,Sedan,Bus,,, +06/24/2021,4:14,BRONX,10468,40.867393,-73.89487,"(40.867393, -73.89487)",,,2686 CRESTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4430273,Sedan,Sedan,Sedan,, +06/24/2021,16:45,BROOKLYN,11201,40.698414,-73.984,"(40.698414, -73.984)",NASSAU STREET,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:05,,,40.648533,-74.01752,"(40.648533, -74.01752)",51 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431021,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,19:35,BROOKLYN,11207,40.66127,-73.896065,"(40.66127, -73.896065)",NEWPORT STREET,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430929,Sedan,Taxi,,, +06/19/2021,14:45,,,,,,THROGS NECK EXPRESSWAY,EAST tremont avenue,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430868,Sedan,,,, +06/24/2021,19:19,,,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431309,,,,, +06/13/2021,20:05,BRONX,10466,40.903763,-73.84325,"(40.903763, -73.84325)",MONTICELLO AVENUE,CRANFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431403,Sedan,Sedan,,, +06/20/2021,13:50,QUEENS,11040,40.739964,-73.70071,"(40.739964, -73.70071)",,,83-45 LANGDALE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430807,Sedan,,,, +06/25/2021,6:39,MANHATTAN,10007,40.713795,-74.008835,"(40.713795, -74.008835)",CHURCH STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430839,Sedan,,,, +06/25/2021,10:10,MANHATTAN,10010,40.738796,-73.97716,"(40.738796, -73.97716)",1 AVENUE,EAST 26 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431179,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,13:00,MANHATTAN,10004,40.70359,-74.01254,"(40.70359, -74.01254)",,,25 BRIDGE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431059,Dump,Box Truck,,, +06/25/2021,14:55,BROOKLYN,11215,40.662743,-73.981735,"(40.662743, -73.981735)",8 AVENUE,14 STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4430897,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,19:00,,,40.676132,-73.81924,"(40.676132, -73.81924)",ROCKAWAY BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431096,Sedan,Sedan,,, +06/24/2021,14:00,,,,,,,,7008 70 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4430802,Sedan,,,, +06/23/2021,6:40,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431331,Sedan,,,, +06/24/2021,17:15,,,40.760773,-73.984474,"(40.760773, -73.984474)",WEST 49 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4430664,Station Wagon/Sport Utility Vehicle,Bike,,, +06/18/2021,23:35,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431603,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,0:10,QUEENS,11101,40.747814,-73.9405,"(40.747814, -73.9405)",,,27-17 JACKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430617,Sedan,Sedan,Sedan,, +06/24/2021,17:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,9:11,,,,,,Randall avenue,Cross Bronx expwy service road,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430865,Bus,Box Truck,,, +06/25/2021,15:05,BROOKLYN,11207,40.67298,-73.88852,"(40.67298, -73.88852)",PITKIN AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430924,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,14:30,,,40.81457,-73.931,"(40.81457, -73.931)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4431078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/24/2021,23:53,BROOKLYN,11212,40.6599,-73.916046,"(40.6599, -73.916046)",RIVERDALE AVENUE,LEGION STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431377,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:20,,,40.804993,-73.911354,"(40.804993, -73.911354)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4430657,Sedan,Box Truck,,, +06/25/2021,10:22,BRONX,10458,40.85569,-73.881035,"(40.85569, -73.881035)",,,2475 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4431004,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,11:24,BROOKLYN,11233,40.681686,-73.92469,"(40.681686, -73.92469)",,,302 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431516,Sedan,,,, +06/23/2021,7:18,BROOKLYN,11218,,,,AVENUE C,OCEAN PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430384,Station Wagon/Sport Utility Vehicle,Bike,,, +06/25/2021,19:15,,,40.7315,-73.872086,"(40.7315, -73.872086)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4430961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,0:10,BROOKLYN,11203,40.649277,-73.94361,"(40.649277, -73.94361)",SNYDER AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4431118,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/21/2021,18:51,MANHATTAN,10030,40.8178,-73.9456,"(40.8178, -73.9456)",8 AVENUE,WEST 137 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431613,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,16:20,MANHATTAN,10031,40.832695,-73.94972,"(40.832695, -73.94972)",RIVERSIDE DRIVE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430749,Ambulance,Sedan,,, +06/23/2021,5:30,,,,,,,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4430091,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,Van, +06/23/2021,13:40,BRONX,10466,40.88839,-73.84666,"(40.88839, -73.84666)",EAST 231 STREET,LACONIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430463,Sedan,Minibike,,, +06/23/2021,13:12,BROOKLYN,11223,40.607628,-73.9639,"(40.607628, -73.9639)",QUENTIN ROAD,EAST 9 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4431691,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,14:50,,,40.699596,-73.7632,"(40.699596, -73.7632)",FARMERS BOULEVARD,113 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,8:00,BRONX,10474,40.805767,-73.88515,"(40.805767, -73.88515)",,,250 COSTER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430199,Station Wagon/Sport Utility Vehicle,,,, +06/09/2021,10:14,QUEENS,11435,40.71523,-73.822945,"(40.71523, -73.822945)",,,135-23 COOLIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430702,Sedan,,,, +06/23/2021,22:30,MANHATTAN,10002,40.72088,-73.98797,"(40.72088, -73.98797)",,,153 LUDLOW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430398,Sedan,Bike,,, +06/23/2021,22:31,,,40.68341,-73.87304,"(40.68341, -73.87304)",FULTON STREET,PINE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430939,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:12,BROOKLYN,11215,40.6634,-73.97785,"(40.6634, -73.97785)",PROSPECT PARK WEST,11 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,Unspecified,4430347,Sedan,Sedan,Sedan,Sedan,Tractor Truck Diesel +06/02/2021,20:17,BROOKLYN,11233,40.6784,-73.91308,"(40.6784, -73.91308)",FULTON STREET,SOMERS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431371,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,19:20,QUEENS,11385,40.710777,-73.86502,"(40.710777, -73.86502)",COOPER AVENUE,88 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430956,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,7:00,,,40.58209,-73.955185,"(40.58209, -73.955185)",CASS PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431243,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,20:20,BRONX,10452,40.83511,-73.91945,"(40.83511, -73.91945)",EAST 167 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4430766,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,19:40,MANHATTAN,10004,40.70509,-74.016464,"(40.70509, -74.016464)",BATTERY PLACE,WEST STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430845,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,16:10,,,40.829155,-73.93728,"(40.829155, -73.93728)",WEST 155 STREET,,,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4431650,Station Wagon/Sport Utility Vehicle,Bike,,, +06/22/2021,14:05,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431350,Station Wagon/Sport Utility Vehicle,EC3,,, +06/23/2021,19:00,BRONX,10454,40.809677,-73.92021,"(40.809677, -73.92021)",,,455 EAST 140 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4430297,Sedan,,,, +06/25/2021,1:00,BROOKLYN,11211,40.71655,-73.94569,"(40.71655, -73.94569)",,,138 JACKSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430668,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/24/2021,17:50,,,40.76657,-73.888466,"(40.76657, -73.888466)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4430817,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/24/2021,19:16,QUEENS,11375,40.73028,-73.84824,"(40.73028, -73.84824)",66 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430577,Ambulance,Sedan,,, +06/23/2021,16:30,BRONX,10469,40.87307,-73.84424,"(40.87307, -73.84424)",EASTCHESTER ROAD,BURKE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4431390,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,14:35,MANHATTAN,10035,40.805042,-73.936935,"(40.805042, -73.936935)",LEXINGTON AVENUE,EAST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430834,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,1:05,QUEENS,11368,40.75232,-73.85959,"(40.75232, -73.85959)",108 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430324,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,18:20,STATEN ISLAND,10306,40.580727,-74.0991,"(40.580727, -74.0991)",HULL AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430535,Bus,Sedan,,, +01/08/2022,16:30,MANHATTAN,10010,40.74271,-73.99297,"(40.74271, -73.99297)",,,707 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492959,Dump,Box Truck,,, +06/24/2021,17:24,STATEN ISLAND,10309,40.547794,-74.2171,"(40.547794, -74.2171)",WIRT AVENUE,WINANT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4430684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,16:45,QUEENS,11378,40.719448,-73.91193,"(40.719448, -73.91193)",,,57-10 GRAND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4431487,Bus,Sedan,Sedan,Sedan, +06/23/2021,18:00,,,40.682373,-73.96162,"(40.682373, -73.96162)",FULTON STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430242,Sedan,,,, +06/17/2021,13:58,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430900,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/14/2021,14:34,MANHATTAN,10009,40.726986,-73.985756,"(40.726986, -73.985756)",1 AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4431165,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,5:52,,,40.8575,-73.849365,"(40.8575, -73.849365)",PELHAM PARKWAY SOUTH,WILSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430469,Pick-up Truck,Motorscooter,,, +06/20/2021,1:35,BRONX,10465,40.825176,-73.83526,"(40.825176, -73.83526)",,,2600 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430883,Sedan,Sedan,,, +06/18/2021,12:50,BROOKLYN,11220,40.63981,-74.00761,"(40.63981, -74.00761)",,,720 54 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4431027,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +06/25/2021,10:00,QUEENS,11372,40.74662,-73.89359,"(40.74662, -73.89359)",ROOSEVELT AVENUE,72 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431419,Station Wagon/Sport Utility Vehicle,,,, +06/13/2021,2:18,BRONX,10455,40.812386,-73.90329,"(40.812386, -73.90329)",,,559 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431064,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,3:40,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4430822,Sedan,,,, +06/25/2021,14:45,,,40.872585,-73.88128,"(40.872585, -73.88128)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430992,Station Wagon/Sport Utility Vehicle,UNK FEMALE,,, +06/24/2021,22:40,QUEENS,11356,40.784348,-73.84487,"(40.784348, -73.84487)",15 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430872,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,22:50,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430984,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,14:40,,,40.797813,-73.971344,"(40.797813, -73.971344)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430835,Sedan,,,, +01/08/2022,9:30,BRONX,10470,40.895725,-73.87482,"(40.895725, -73.87482)",EAST 233 STREET,NAPIER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493204,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,11:20,BROOKLYN,11208,40.68176,-73.88322,"(40.68176, -73.88322)",,,118 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430936,Box Truck,,,, +06/24/2021,13:30,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,14:57,BROOKLYN,11236,40.647644,-73.91924,"(40.647644, -73.91924)",EAST 86 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431572,Sedan,Sedan,,, +06/23/2021,14:40,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,8:07,QUEENS,11378,40.728653,-73.895584,"(40.728653, -73.895584)",,,54-24 69 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430513,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,16:25,QUEENS,11372,40.74783,-73.88208,"(40.74783, -73.88208)",84 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431091,E-Scooter,,,, +06/23/2021,22:00,QUEENS,11417,40.674587,-73.85931,"(40.674587, -73.85931)",77 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430269,Sedan,Sedan,,, +06/16/2021,14:15,QUEENS,11385,40.700607,-73.89692,"(40.700607, -73.89692)",,,60-39 MYRTLE AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430968,Sedan,Bike,,, +06/21/2021,14:00,BROOKLYN,11212,40.655853,-73.910126,"(40.655853, -73.910126)",BOYLAND STREET,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431321,Sedan,Sedan,,, +06/23/2021,13:53,MANHATTAN,10029,40.799843,-73.94668,"(40.799843, -73.94668)",,,3 EAST 115 STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4430739,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,10:00,MANHATTAN,10021,40.76641,-73.95868,"(40.76641, -73.95868)",,,345 EAST 69 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430999,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:25,,,40.88671,-73.81529,"(40.88671, -73.81529)",NEW ENGLAND THRUWAY,EAST GUN HILL ROAD,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4431670,Sedan,Sedan,Sedan,Sedan, +06/25/2021,20:00,BRONX,10454,40.809574,-73.91806,"(40.809574, -73.91806)",BROOK AVENUE,EAST 141 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431638,Sedan,,,, +06/25/2021,21:45,BRONX,10451,40.8229,-73.919075,"(40.8229, -73.919075)",,,3080 PARK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431082,Sedan,Sedan,,, +06/15/2021,5:37,,,40.789577,-73.78414,"(40.789577, -73.78414)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430861,Pick-up Truck,,,, +06/24/2021,13:45,QUEENS,11357,40.777847,-73.81383,"(40.777847, -73.81383)",,,150-47 23 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,9:30,BRONX,10462,40.856213,-73.861015,"(40.856213, -73.861015)",,,2183 BOGART AVENUE,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4431008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:42,BRONX,10458,40.861874,-73.89194,"(40.861874, -73.89194)",,,385 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430803,Bus,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,22:32,BRONX,10458,40.861107,-73.89028,"(40.861107, -73.89028)",EAST FORDHAM ROAD,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4431634,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2021,8:26,,,40.54326,-74.19731,"(40.54326, -74.19731)",HUGUENOT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430409,Box Truck,Sedan,,, +06/25/2021,12:30,STATEN ISLAND,10310,40.637474,-74.11322,"(40.637474, -74.11322)",,,622 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431441,Sedan,USPS TRUCK,,, +06/24/2021,16:00,BROOKLYN,11203,40.652527,-73.94297,"(40.652527, -73.94297)",,,185 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431112,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,12:09,QUEENS,11691,40.60874,-73.74764,"(40.60874, -73.74764)",CENTRAL AVENUE,BEACH 12 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4430107,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,18:10,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,CREST ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4430331,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,21:03,BROOKLYN,11235,40.58084,-73.938995,"(40.58084, -73.938995)",SHORE BOULEVARD,NORFOLK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431686,Sedan,,,, +06/24/2021,9:37,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430915,Sedan,Sedan,,, +06/23/2021,7:48,,,40.641186,-74.02094,"(40.641186, -74.02094)",3 AVENUE,GOWANUS EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430178,Sedan,Tractor Truck Gasoline,,, +05/25/2021,11:30,,,40.58848,-73.991875,"(40.58848, -73.991875)",BAY 44 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431233,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,21:30,QUEENS,11365,40.73945,-73.79078,"(40.73945, -73.79078)",,,183-16 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430717,Sedan,Sedan,,, +06/17/2021,7:20,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430849,Sedan,Tractor Truck Diesel,,, +06/14/2021,8:20,QUEENS,11385,40.70458,-73.896,"(40.70458, -73.896)",FRESH POND ROAD,68 ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430951,Bus,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,22:00,,,40.695232,-73.859856,"(40.695232, -73.859856)",85 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430339,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,20:15,QUEENS,11433,40.70509,-73.7907,"(40.70509, -73.7907)",93 AVENUE,168 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430234,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,0:30,QUEENS,11372,40.755753,-73.883514,"(40.755753, -73.883514)",NORTHERN BOULEVARD,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430330,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/15/2021,17:58,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430689,Bus,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,0:00,,,40.759,-73.97054,"(40.759, -73.97054)",EAST 54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430556,Motorcycle,,,, +06/24/2021,4:30,,,40.876976,-73.88966,"(40.876976, -73.88966)",PAUL AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430290,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,17:50,QUEENS,11364,40.748344,-73.75872,"(40.748344, -73.75872)",,,219-02 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,11:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,1:35,,,,,,RICHMOND AVENUE,DRAPER PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4429996,Sedan,,,, +06/20/2021,2:20,QUEENS,11385,40.705765,-73.896576,"(40.705765, -73.896576)",FRESH POND ROAD,67 AVENUE,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4431495,Sedan,Sedan,,, +06/24/2021,22:51,,,40.682373,-73.96162,"(40.682373, -73.96162)",FULTON STREET,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4430594,Moped,E-Bike,,, +06/21/2021,14:40,BROOKLYN,11225,40.661873,-73.96158,"(40.661873, -73.96158)",,,510 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430980,Sedan,Box Truck,,, +06/23/2021,15:49,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4430706,Sedan,Sedan,,, +06/25/2021,23:00,QUEENS,11101,40.75514,-73.92213,"(40.75514, -73.92213)",35 AVENUE,STEINWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431270,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/23/2021,17:26,STATEN ISLAND,10312,40.536625,-74.15462,"(40.536625, -74.15462)",WINCHESTER AVENUE,KING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430499,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,20:47,BROOKLYN,11201,40.691456,-73.98735,"(40.691456, -73.98735)",SMITH STREET,FULTON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430854,Motorcycle,,,, +06/24/2021,10:30,,,40.758537,-73.97721,"(40.758537, -73.97721)",WEST 50 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430647,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +05/21/2021,17:40,QUEENS,11379,40.714417,-73.9011,"(40.714417, -73.9011)",,,61-19 FRESH POND ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4431463,Pick-up Truck,Motorscooter,,, +06/20/2021,7:14,QUEENS,11422,40.649582,-73.73702,"(40.649582, -73.73702)",HUXLEY STREET,CRAFT AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4430887,Sedan,,,, +06/21/2021,11:50,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431011,Sedan,,,, +06/24/2021,0:00,BROOKLYN,11218,40.643787,-73.969795,"(40.643787, -73.969795)",,,1011 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431201,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/24/2021,20:00,QUEENS,11368,40.736893,-73.86494,"(40.736893, -73.86494)",57 AVENUE,96 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4430744,Sedan,E-Scooter,,, +06/25/2021,15:21,BROOKLYN,11207,40.666153,-73.89542,"(40.666153, -73.89542)",DUMONT AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430904,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,22:30,,,40.68733,-73.98183,"(40.68733, -73.98183)",SCHERMERHORN STREET,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4431034,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/23/2021,21:27,QUEENS,11355,40.742737,-73.812965,"(40.742737, -73.812965)",BOOTH MEMORIAL AVENUE,155 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430876,Sedan,,,, +06/25/2021,23:53,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4431529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,22:44,BROOKLYN,11216,40.684,-73.95031,"(40.684, -73.95031)",PUTNAM AVENUE,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Illnes,,,,,4431214,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,17:22,QUEENS,11379,40.71617,-73.882385,"(40.71617, -73.882385)",PLEASANTVIEW STREET,PENELOPE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493489,Sedan,,,, +06/22/2021,8:45,BROOKLYN,11207,40.672607,-73.89992,"(40.672607, -73.89992)",GLENMORE AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430932,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,11:30,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4431017,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,14:58,BROOKLYN,11203,40.647495,-73.93286,"(40.647495, -73.93286)",,,1039 SCHENECTADY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431109,Sedan,Sedan,,, +06/24/2021,15:00,BRONX,10466,40.888252,-73.83129,"(40.888252, -73.83129)",,,3824 DYRE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431402,Station Wagon/Sport Utility Vehicle,PK,,, +06/22/2021,16:30,QUEENS,11385,40.705467,-73.90974,"(40.705467, -73.90974)",ONDERDONK AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431473,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,12:18,BROOKLYN,11219,40.629776,-73.994,"(40.629776, -73.994)",14 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431434,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,9:48,,,40.718987,-73.94635,"(40.718987, -73.94635)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430630,Tractor Truck Diesel,,,, +06/24/2021,23:24,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430758,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/24/2021,1:10,BROOKLYN,11213,40.671474,-73.93088,"(40.671474, -73.93088)",STERLING PLACE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4431553,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,10:00,BRONX,10460,40.83281,-73.88525,"(40.83281, -73.88525)",,,1521 BOONE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431157,Sedan,,,, +06/22/2021,20:00,QUEENS,11378,40.71839,-73.90417,"(40.71839, -73.90417)",60 LANE,59 ROAD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4430964,Sedan,Sedan,,, +06/25/2021,9:34,QUEENS,11691,40.603394,-73.74586,"(40.603394, -73.74586)",,,900 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430771,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,6:35,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430859,Sedan,Sedan,,, +06/25/2021,8:46,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430776,Sedan,Sedan,,, +06/25/2021,14:49,BROOKLYN,11219,40.628983,-74.00033,"(40.628983, -74.00033)",,,1245 61 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431301,Station Wagon/Sport Utility Vehicle,Carry All,,, +06/24/2021,5:30,,,40.768547,-73.90464,"(40.768547, -73.90464)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430395,Sedan,Sedan,,, +06/23/2021,0:00,BRONX,10474,40.81666,-73.888,"(40.81666, -73.888)",HUNTS POINT AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430165,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/23/2021,13:29,STATEN ISLAND,10305,40.595726,-74.08326,"(40.595726, -74.08326)",,,25 LEDYARD PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430168,Sedan,,,, +06/23/2021,14:45,,,40.582287,-74.16907,"(40.582287, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430359,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,10:15,BROOKLYN,11205,40.69802,-73.97499,"(40.69802, -73.97499)",,,63 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430591,Sedan,Tractor Truck Diesel,,, +06/23/2021,10:00,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4430186,Sedan,Sedan,Sedan,, +06/25/2021,18:35,BRONX,10466,40.881542,-73.838036,"(40.881542, -73.838036)",,,3821 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431348,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,6:52,,,,,,DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430390,Sedan,Box Truck,,, +06/24/2021,21:15,MANHATTAN,10017,40.752064,-73.97351,"(40.752064, -73.97351)",EAST 44 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431150,Taxi,,,, +06/24/2021,16:56,,,40.67461,-73.80428,"(40.67461, -73.80428)",ROCKAWAY BOULEVARD,134 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4430611,Sedan,Sedan,Sedan,Sedan,Sedan +06/23/2021,18:03,QUEENS,11361,40.76031,-73.774315,"(40.76031, -73.774315)",KENNEDY STREET,43 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430220,Station Wagon/Sport Utility Vehicle,Bike,,, +06/25/2021,7:10,BROOKLYN,11208,40.667664,-73.873695,"(40.667664, -73.873695)",HEGEMAN AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430919,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,23:39,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430428,Sedan,Sedan,,, +06/24/2021,0:00,BRONX,10474,40.81079,-73.88744,"(40.81079, -73.88744)",,,535 MANIDA STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Passing Too Closely,,,,4431067,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,16:30,BROOKLYN,11222,40.727947,-73.93999,"(40.727947, -73.93999)",,,301 NORMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430628,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,12:39,,,40.617672,-73.99542,"(40.617672, -73.99542)",70 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430122,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,15:56,BROOKLYN,11207,40.67432,-73.89708,"(40.67432, -73.89708)",,,345 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430790,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,17:31,BROOKLYN,11206,40.702,-73.93205,"(40.702, -73.93205)",CENTRAL AVENUE,NOLL STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4430361,Station Wagon/Sport Utility Vehicle,Bike,,, +06/22/2021,2:50,QUEENS,11367,40.74318,-73.8355,"(40.74318, -73.8355)",,,130-04 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430721,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,23:30,,,40.604927,-74.02372,"(40.604927, -74.02372)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431126,Sedan,Sedan,,, +06/23/2021,12:30,BROOKLYN,11208,40.66803,-73.87285,"(40.66803, -73.87285)",FOUNTAIN AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430947,Sedan,,,, +06/21/2021,23:04,,,40.67086,-73.87424,"(40.67086, -73.87424)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430930,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,19:20,BROOKLYN,11220,40.638313,-74.00663,"(40.638313, -74.00663)",8 AVENUE,55 STREET,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431294,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/22/2021,1:13,BROOKLYN,11208,40.67492,-73.87528,"(40.67492, -73.87528)",PITKIN AVENUE,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430908,Sedan,,,, +06/23/2021,14:50,BROOKLYN,11220,40.633713,-74.01143,"(40.633713, -74.01143)",,,6300 8 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431426,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,18:00,BRONX,10465,40.819523,-73.809074,"(40.819523, -73.809074)",,,4169 THROGS NECK EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431605,Sedan,,,, +06/23/2021,16:10,,,40.679276,-73.92906,"(40.679276, -73.92906)",FULTON STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430415,Bike,Box Truck,,, +06/24/2021,11:11,BRONX,10451,40.825424,-73.923485,"(40.825424, -73.923485)",EAST 158 STREET,GRAND CONCOURSE,,1,0,0,0,1,0,0,0,Unsafe Speed,Backing Unsafely,,,,4430769,E-Bike,Sedan,,, +06/09/2021,8:00,BRONX,10454,40.808163,-73.92653,"(40.808163, -73.92653)",EAST 135 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431075,Box Truck,Sedan,,, +06/24/2021,5:45,BRONX,10460,40.841904,-73.86972,"(40.841904, -73.86972)",,,1707 MELVILLE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430466,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,10:30,MANHATTAN,10034,40.867794,-73.929985,"(40.867794, -73.929985)",DYCKMAN STREET,STAFF STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430748,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,19:43,BROOKLYN,11203,40.644974,-73.92099,"(40.644974, -73.92099)",CLARENDON ROAD,EAST 59 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431125,Sedan,Sedan,,, +06/23/2021,7:47,,,40.82815,-73.93491,"(40.82815, -73.93491)",MACOMBS PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4430136,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,7:00,QUEENS,11363,40.762905,-73.753975,"(40.762905, -73.753975)",,,228-06 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430184,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,0:35,BROOKLYN,11216,40.6745,-73.9537,"(40.6745, -73.9537)",BEDFORD AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431333,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:00,,,0,0,"(0.0, 0.0)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,Unspecified,,,4431213,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,0:00,BROOKLYN,11211,40.71469,-73.942696,"(40.71469, -73.942696)",METROPOLITAN AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430618,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,23:00,MANHATTAN,10019,40.762394,-73.97861,"(40.762394, -73.97861)",WEST 54 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431146,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,22:40,BRONX,10467,40.87002,-73.86337,"(40.87002, -73.86337)",,,3020 BARNES AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4431378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,22:45,BROOKLYN,11218,40.63743,-73.979485,"(40.63743, -73.979485)",38 STREET,DAHILL ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4431304,Sedan,,,, +06/25/2021,14:30,BROOKLYN,11207,40.672882,-73.89808,"(40.672882, -73.89808)",GEORGIA AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430923,Sedan,Sedan,,, +06/25/2021,16:00,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Driver Inexperience,,,4431101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,15:07,,,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4430925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:28,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",WEST KINGSBRIDGE ROAD,BAILEY AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4430623,Sedan,,,, +06/25/2021,7:10,QUEENS,11433,40.693935,-73.80026,"(40.693935, -73.80026)",,,150-11 SHORE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431537,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,14:40,BROOKLYN,11203,40.639404,-73.92588,"(40.639404, -73.92588)",,,5374 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430214,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,0:28,BROOKLYN,11214,40.60058,-73.99161,"(40.60058, -73.99161)",86 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430314,Sedan,Sedan,,, +06/24/2021,22:00,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",109 AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430613,Sedan,Bike,,, +06/24/2021,11:30,MANHATTAN,10021,40.76781,-73.96202,"(40.76781, -73.96202)",EAST 69 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430498,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,17:33,QUEENS,11434,40.66546,-73.76389,"(40.66546, -73.76389)",145 AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430891,Sedan,,,, +06/23/2021,15:00,STATEN ISLAND,10304,40.611423,-74.085655,"(40.611423, -74.085655)",,,633 TARGEE STREET,2,0,0,0,0,0,2,0,Prescription Medication,Unspecified,,,,4430583,Sedan,Sedan,,, +06/23/2021,8:30,,,40.709225,-73.843155,"(40.709225, -73.843155)",METROPOLITAN AVENUE,UNION TURNPIKE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430149,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,23:00,,,40.835598,-73.9138,"(40.835598, -73.9138)",EAST 169 STREET,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unsafe Speed,,,,4430759,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,21:00,BRONX,10467,40.880062,-73.871,"(40.880062, -73.871)",,,3544 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4430991,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,13:00,QUEENS,11435,40.702843,-73.80836,"(40.702843, -73.80836)",,,90-01 SUTPHIN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4430231,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,19:45,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430737,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/23/2021,11:52,QUEENS,11372,40.75624,-73.87887,"(40.75624, -73.87887)",NORTHERN BOULEVARD,89 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4430104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,21:00,BROOKLYN,11208,40.671062,-73.87624,"(40.671062, -73.87624)",,,334 MILFORD STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4430791,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/18/2021,8:54,QUEENS,11385,40.703342,-73.855385,"(40.703342, -73.855385)",WOODHAVEN BOULEVARD,83 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431493,Station Wagon/Sport Utility Vehicle,Carry All,,, +06/24/2021,18:00,QUEENS,11368,,,,,,98-40 CHRISTIE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4430728,Sedan,,,, +06/23/2021,14:30,QUEENS,11433,40.6927,-73.78735,"(40.6927, -73.78735)",110 ROAD,164 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430200,Sedan,,,, +06/25/2021,1:29,,,40.68064,-73.89672,"(40.68064, -73.89672)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430918,Sedan,,,, +06/24/2021,5:00,,,40.772655,-73.95556,"(40.772655, -73.95556)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4430649,Tractor Truck Diesel,,,, +01/08/2022,19:50,QUEENS,11419,40.690838,-73.822876,"(40.690838, -73.822876)",101 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492894,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,16:29,,,40.582874,-73.98053,"(40.582874, -73.98053)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,17:46,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430351,Sedan,Bike,,, +06/24/2021,14:35,,,40.65801,-73.92078,"(40.65801, -73.92078)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431103,Sedan,Motorcycle,,, +06/25/2021,9:30,MANHATTAN,10004,40.701576,-74.01215,"(40.701576, -74.01215)",,,5 SOUTH STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430844,Sedan,Sedan,,, +06/23/2021,16:00,QUEENS,11435,40.697872,-73.802376,"(40.697872, -73.802376)",LIBERTY AVENUE,150 STREET,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4430195,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/23/2021,10:30,,,40.574905,-74.121735,"(40.574905, -74.121735)",AMBOY ROAD,RICHMOND ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430812,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,10:31,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4430679,Box Truck,Station Wagon/Sport Utility Vehicle,Flat Bed,, +06/23/2021,19:40,BROOKLYN,11236,40.644863,-73.91113,"(40.644863, -73.91113)",FOSTER AVENUE,REMSEN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4430555,,,,, +06/25/2021,16:20,QUEENS,11429,40.71274,-73.73884,"(40.71274, -73.73884)",,,218-07 104 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431455,Sedan,,,, +06/25/2021,22:00,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431269,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,14:00,QUEENS,11373,40.74156,-73.88065,"(40.74156, -73.88065)",,,82-66 BROADWAY,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4430429,Sedan,,,, +06/25/2021,16:21,QUEENS,11372,40.754414,-73.87854,"(40.754414, -73.87854)",89 STREET,34 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431087,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/25/2021,3:25,BROOKLYN,11221,40.69423,-73.93311,"(40.69423, -73.93311)",,,431 PULASKI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4431513,Ambulance,Sedan,Station Wagon/Sport Utility Vehicle,, +06/17/2021,16:45,,,40.70918,-73.81916,"(40.70918, -73.81916)",QUEENS BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430696,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,16:15,BRONX,10451,40.826855,-73.922676,"(40.826855, -73.922676)",GRAND CONCOURSE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Accelerator Defective,Following Too Closely,,,,4430886,Moped,Sedan,,, +06/23/2021,8:15,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",ROGERS AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430253,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,19:26,MANHATTAN,10036,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430388,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,15:05,,,40.74084,-73.72681,"(40.74084, -73.72681)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inexperience,,,,4431032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,20:40,BROOKLYN,11230,40.632603,-73.96617,"(40.632603, -73.96617)",,,1119 FOSTER AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431200,Bike,Sedan,,, +06/25/2021,23:04,,,40.84766,-73.83151,"(40.84766, -73.83151)",WESTCHESTER AVENUE,HOBART AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431612,Sedan,,,, +06/25/2021,18:22,BROOKLYN,11238,40.68267,-73.966736,"(40.68267, -73.966736)",,,521 CLINTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430950,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,15:06,,,40.881264,-73.83875,"(40.881264, -73.83875)",BAYCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430459,Sedan,Sedan,,, +06/25/2021,3:30,QUEENS,11368,40.74312,-73.867485,"(40.74312, -73.867485)",,,47-03 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431418,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,15:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430752,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/23/2021,12:50,,,,,,VETERANS ROAD WEST,bricktown way,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430407,Pick-up Truck,Sedan,,, +06/24/2021,16:00,BROOKLYN,11238,40.685318,-73.958305,"(40.685318, -73.958305)",,,218 GATES AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431310,E-Scooter,,,, +06/23/2021,17:40,,,,,,OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430303,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:30,QUEENS,11412,40.699844,-73.76111,"(40.699844, -73.76111)",113 AVENUE,194 STREET,,3,0,3,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4431054,,,,, +06/24/2021,13:15,BROOKLYN,11206,40.70297,-73.94333,"(40.70297, -73.94333)",,,40 VARET STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430526,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,22:40,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4430606,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:00,,,40.58382,-73.970856,"(40.58382, -73.970856)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4431244,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,14:19,BRONX,10452,40.840874,-73.91979,"(40.840874, -73.91979)",CROMWELL AVENUE,WEST 170 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430765,Station Wagon/Sport Utility Vehicle,Scooter no,,, +06/23/2021,11:35,QUEENS,11429,40.714027,-73.73824,"(40.714027, -73.73824)",,,217-93 HEMPSTEAD AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4430247,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,11:50,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4431130,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,10:00,QUEENS,11365,40.734196,-73.78355,"(40.734196, -73.78355)",,,69-60 188 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430723,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,10:35,BROOKLYN,11223,40.59651,-73.98423,"(40.59651, -73.98423)",,,2034 WEST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493010,Sedan,,,, +06/23/2021,19:41,,,,,,BRONX WHITESTONE BRIDGE,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unsafe Lane Changing,,,4431669,Sedan,Sedan,Sedan,, +06/24/2021,8:30,QUEENS,11355,40.75533,-73.83432,"(40.75533, -73.83432)",,,41-31 HAIGHT STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430545,Sedan,Sedan,,, +06/20/2021,21:30,,,40.72417,-73.7742,"(40.72417, -73.7742)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430708,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,7:50,,,40.717014,-73.82971,"(40.717014, -73.82971)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4430797,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,13:59,BROOKLYN,11234,40.611637,-73.91287,"(40.611637, -73.91287)",STRICKLAND AVENUE,EAST 60 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430241,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,6:40,BROOKLYN,11208,40.67818,-73.870705,"(40.67818, -73.870705)",CRESCENT STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,10:45,,,,,,MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430070,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,19:00,QUEENS,11361,40.75826,-73.76829,"(40.75826, -73.76829)",BELL BOULEVARD,46 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430564,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,23:35,,,40.787174,-73.81349,"(40.787174, -73.81349)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4431132,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2021,18:00,BRONX,10451,40.821167,-73.91356,"(40.821167, -73.91356)",EAST 157 STREET,ELTON AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4430658,Sedan,Sedan,Sedan,Sedan,Sedan +06/25/2021,14:00,,,40.696175,-73.98036,"(40.696175, -73.98036)",TILLARY STREET,NAVY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430855,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/25/2021,15:45,BRONX,10467,,,,EAST 213 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431386,Sedan,Moped,,, +06/23/2021,8:15,BROOKLYN,11232,40.65576,-74.008354,"(40.65576, -74.008354)",,,241 37 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4430174,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,18:50,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4431003,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,19:11,,,40.596607,-73.99453,"(40.596607, -73.99453)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430780,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/23/2021,17:20,BROOKLYN,11206,40.701122,-73.942604,"(40.701122, -73.942604)",,,728 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430275,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,20:15,BRONX,10452,40.841133,-73.924,"(40.841133, -73.924)",WEST 170 STREET,PLIMPTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4430962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,19:45,MANHATTAN,10075,40.773785,-73.95825,"(40.773785, -73.95825)",,,188 EAST 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430637,Sedan,Sedan,,, +06/24/2021,10:45,QUEENS,11434,40.68049,-73.774704,"(40.68049, -73.774704)",BEDELL STREET,BAISLEY BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430504,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,10:45,,,40.663292,-73.874756,"(40.663292, -73.874756)",STANLEY AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4430945,Van,Sedan,Garbage or Refuse,, +06/18/2021,22:28,QUEENS,11379,40.714676,-73.88506,"(40.714676, -73.88506)",70 STREET,JUNIPER VALLEY ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4431363,Sedan,Motorcycle,,, +06/19/2021,10:00,BRONX,10466,40.88449,-73.84913,"(40.88449, -73.84913)",,,1981 SCHIEFELIN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4431405,Sedan,,,, +06/24/2021,21:42,BRONX,10462,40.83605,-73.85513,"(40.83605, -73.85513)",OLMSTEAD AVENUE,STARLING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430823,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/24/2021,7:50,BROOKLYN,11218,40.64431,-73.98796,"(40.64431, -73.98796)",,,1114 36 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4431285,Sedan,,,, +06/24/2021,14:28,,,40.84148,-73.88853,"(40.84148, -73.88853)",EAST 176 STREET,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4430733,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,0:01,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4430840,Station Wagon/Sport Utility Vehicle,TOW4,,, +06/21/2021,21:03,,,40.663284,-73.96096,"(40.663284, -73.96096)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430978,Pick-up Truck,Pick-up Truck,,, +06/25/2021,20:15,,,40.57776,-73.83606,"(40.57776, -73.83606)",BEACH 116 STREET,OCEAN PROMENADE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431183,Sedan,E-Bike,,, +06/19/2021,4:30,,,40.817116,-73.94801,"(40.817116, -73.94801)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430691,Taxi,Sedan,,, +06/24/2021,11:36,BROOKLYN,11233,40.674435,-73.919464,"(40.674435, -73.919464)",BERGEN STREET,HOWARD AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431351,E-Scooter,Motorcycle,,, +06/23/2021,19:00,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",FEATHERBED LANE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,5:20,BRONX,10452,40.8313,-73.92657,"(40.8313, -73.92657)",,,1001 JEROME AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430898,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,14:00,QUEENS,11354,40.765182,-73.81414,"(40.765182, -73.81414)",NORTHERN BOULEVARD,150 PLACE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4430881,,,,, +06/14/2021,0:49,,,40.68986,-73.95147,"(40.68986, -73.95147)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Passing Too Closely,Unspecified,,,4431290,Sedan,Sedan,Sedan,, +06/23/2021,17:37,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430287,Pick-up Truck,Pick-up Truck,,, +06/23/2021,21:46,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4430955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/23/2021,23:05,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430663,Sedan,Sedan,,, +06/23/2021,20:20,BROOKLYN,11207,40.66564,-73.89228,"(40.66564, -73.89228)",,,561 VERMONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430940,Sedan,Pick-up Truck,,, +06/24/2021,1:00,QUEENS,11434,40.683186,-73.784035,"(40.683186, -73.784035)",,,161-28 118 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,10:20,QUEENS,11103,40.768047,-73.91382,"(40.768047, -73.91382)",,,25-13 37 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431264,Sedan,,,, +06/23/2021,8:20,,,,,,FDR DRIVE,EAST 52 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4430516,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +06/24/2021,17:35,BROOKLYN,11203,40.6545,-73.9445,"(40.6545, -73.9445)",,,440 LENOX ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,18:17,QUEENS,11378,40.722042,-73.91329,"(40.722042, -73.91329)",,,57-45 RUST STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430967,Sedan,,,, +06/23/2021,18:18,,,40.58466,-73.95086,"(40.58466, -73.95086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430262,Sedan,,,, +06/19/2021,19:17,,,40.839676,-73.871216,"(40.839676, -73.871216)",,,EAST TREMONT AVENUE,0,1,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430829,Station Wagon/Sport Utility Vehicle,E-Scooter,Station Wagon/Sport Utility Vehicle,, +06/21/2021,20:50,,,40.849525,-73.939926,"(40.849525, -73.939926)",PINEHURST AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431340,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,21:50,BRONX,10454,40.806076,-73.92564,"(40.806076, -73.92564)",,,85 BRUCKNER BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4431081,Sedan,,,, +06/24/2021,11:12,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430866,Sedan,Sedan,,, +06/23/2021,18:35,QUEENS,11413,40.67545,-73.73852,"(40.67545, -73.73852)",,,231-34 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4430224,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/24/2021,16:20,QUEENS,11104,40.742508,-73.91788,"(40.742508, -73.91788)",GREENPOINT AVENUE,47 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4430559,Sedan,Sedan,,, +06/24/2021,20:50,MANHATTAN,10027,40.815018,-73.95648,"(40.815018, -73.95648)",,,530 WEST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430571,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,19:40,BRONX,10467,40.881554,-73.85903,"(40.881554, -73.85903)",,,843 EAST 218 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431413,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,19:50,,,40.84554,-73.93278,"(40.84554, -73.93278)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431552,Box Truck,Box Truck,,, +04/06/2021,2:58,QUEENS,11385,40.71184,-73.905594,"(40.71184, -73.905594)",FOREST AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4430972,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan +06/22/2021,20:44,QUEENS,11413,40.65942,-73.761116,"(40.65942, -73.761116)",SPRINGFIELD BOULEVARD,147 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4431445,Station Wagon/Sport Utility Vehicle,TRAILER,,, +06/25/2021,16:29,,,40.647766,-73.95816,"(40.647766, -73.95816)",ALBEMARLE ROAD,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431208,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,22:00,QUEENS,11385,40.701046,-73.89153,"(40.701046, -73.89153)",MYRTLE AVENUE,64 PLACE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4431503,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,16:00,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",6 AVENUE,DEAN STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4431025,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,18:14,BRONX,10458,,,,EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4430378,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,0:20,,,40.71585,-73.81183,"(40.71585, -73.81183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4430484,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,21:20,QUEENS,11375,40.711823,-73.83612,"(40.711823, -73.83612)",UNION TURNPIKE,MARKWOOD ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4430296,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2021,5:30,,,40.682037,-74.00232,"(40.682037, -74.00232)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430672,Sedan,Sedan,,, +07/12/2022,17:45,,,40.709362,-73.9943,"(40.709362, -73.9943)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,15:00,QUEENS,11379,40.713463,-73.89872,"(40.713463, -73.89872)",,,62-20 62 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4431486,Sedan,,,, +06/18/2021,10:45,STATEN ISLAND,10314,40.61351,-74.12722,"(40.61351, -74.12722)",WESTCOTT BOULEVARD,COALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431442,Sedan,Sedan,,, +06/25/2021,16:39,BRONX,10459,40.821415,-73.88933,"(40.821415, -73.88933)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431063,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,9:25,BROOKLYN,11201,40.689144,-73.99071,"(40.689144, -73.99071)",ATLANTIC AVENUE,BOERUM PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430867,Sedan,Pick-up Truck,,, +06/19/2021,5:10,,,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4431630,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,22:20,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4430332,Sedan,,,, +06/24/2021,17:00,QUEENS,11373,40.734135,-73.86918,"(40.734135, -73.86918)",92 STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430745,Sedan,,,, +06/25/2021,13:30,,,40.701458,-73.80414,"(40.701458, -73.80414)",150 STREET,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4431538,Box Truck,,,, +06/24/2021,4:58,BROOKLYN,11216,40.68064,-73.95338,"(40.68064, -73.95338)",FULTON STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4431206,Sedan,Sedan,Taxi,Taxi, +06/25/2021,5:30,BRONX,10473,40.81573,-73.86262,"(40.81573, -73.86262)",,,535 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431305,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,23:59,QUEENS,11101,40.748108,-73.947365,"(40.748108, -73.947365)",21 STREET,44 DRIVE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4430983,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/29/2021,20:45,,,40.80992,-73.90722,"(40.80992, -73.90722)",BRUCKNER BOULEVARD,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,4431076,Tractor Truck Diesel,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/24/2021,20:30,QUEENS,11420,40.68034,-73.80787,"(40.68034, -73.80787)",LINCOLN STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430610,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,6:06,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",PITKIN AVENUE,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431370,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/14/2021,13:15,,,,,,SHELL ROAD,SHORE PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4431237,E-Bike,,,, +06/23/2021,20:25,BROOKLYN,11234,40.637077,-73.92638,"(40.637077, -73.92638)",,,5244 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4430801,Sedan,,,, +06/21/2021,3:45,BRONX,10466,,,,,,1861 SCHIEFELIN PLACE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4431389,Sedan,Van,Pick-up Truck,, +06/24/2021,9:00,BROOKLYN,11205,40.69802,-73.97499,"(40.69802, -73.97499)",,,63 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430533,Sedan,Sedan,,, +06/18/2021,14:40,QUEENS,11385,40.709682,-73.89891,"(40.709682, -73.89891)",FRESH POND ROAD,LINDEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430954,Bike,Sedan,,, +06/23/2021,16:06,MANHATTAN,10035,40.80118,-73.93975,"(40.80118, -73.93975)",LEXINGTON AVENUE,EAST 120 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4430740,Pick-up Truck,Bike,,, +06/25/2021,19:35,QUEENS,11373,40.74238,-73.88189,"(40.74238, -73.88189)",BROADWAY,VIETOR AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431646,AMBULANCE,,,, +06/24/2021,14:57,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4430642,Bike,Bike,,, +06/24/2021,8:00,QUEENS,11373,40.74766,-73.88257,"(40.74766, -73.88257)",GLEANE STREET,BAXTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430341,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,12:02,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430909,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,9:03,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431677,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:20,BRONX,10453,,,,UNIVERSITY AVENUE,FAME HALL TERRACE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4430631,Sedan,,,, +06/23/2021,19:21,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430537,Sedan,Sedan,,, +06/23/2021,6:35,MANHATTAN,10029,40.79591,-73.93738,"(40.79591, -73.93738)",,,332 EAST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430004,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,2:17,MANHATTAN,10003,40.735313,-73.994125,"(40.735313, -73.994125)",WEST 13 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430595,Sedan,Sedan,,, +06/25/2021,16:05,BROOKLYN,11212,40.66563,-73.91361,"(40.66563, -73.91361)",,,199 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431343,Sedan,,,, +06/24/2021,22:00,BRONX,10473,40.82256,-73.87101,"(40.82256, -73.87101)",STORY AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430851,Sedan,Sedan,,, +01/08/2022,2:05,BROOKLYN,11234,40.628147,-73.92013,"(40.628147, -73.92013)",,,1079 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:30,QUEENS,11416,40.68816,-73.848854,"(40.68816, -73.848854)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430777,E-Scooter,,,, +06/24/2021,19:30,,,40.554893,-74.139,"(40.554893, -74.139)",,,SOUTH RAILROAD AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4430560,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,8:30,,,40.673588,-73.73351,"(40.673588, -73.73351)",BROOKVILLE BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:30,BRONX,10469,40.87066,-73.85643,"(40.87066, -73.85643)",,,3060 BOSTON ROAD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431007,Dump,Sedan,,, +06/23/2021,23:17,QUEENS,11385,40.700516,-73.89799,"(40.700516, -73.89799)",MYRTLE AVENUE,NORMAN STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4431465,Moped,Moped,,, +06/23/2021,14:39,STATEN ISLAND,10306,40.566383,-74.101555,"(40.566383, -74.101555)",NEW DORP LANE,FINLEY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Turning Improperly,,,,4430169,Sedan,Bike,,, +06/25/2021,8:43,BRONX,10461,40.852955,-73.84316,"(40.852955, -73.84316)",EASTCHESTER ROAD,WILKINSON AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4431012,Bus,,,, +06/25/2021,12:30,,,40.701588,-73.7544,"(40.701588, -73.7544)",113 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,14:35,BROOKLYN,11212,40.658524,-73.92136,"(40.658524, -73.92136)",,,324 EAST 94 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431113,Bus,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:00,QUEENS,11385,40.71315,-73.910225,"(40.71315, -73.910225)",METROPOLITAN AVENUE,RENE COURT,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430836,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,9:47,MANHATTAN,10013,40.716015,-74.00883,"(40.716015, -74.00883)",WEST BROADWAY,READE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431035,Taxi,,,, +06/25/2021,9:10,,,,,,NAVY STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4430772,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,0:00,BROOKLYN,11208,40.66878,-73.88215,"(40.66878, -73.88215)",,,578 ELTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430935,Sedan,,,, +06/23/2021,17:05,QUEENS,11101,0,0,"(0.0, 0.0)",NORTHERN BOULEVARD,42 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4430391,Station Wagon/Sport Utility Vehicle,Moped,,, +06/24/2021,10:55,,,40.84206,-73.823425,"(40.84206, -73.823425)",COUNTRY CLUB ROAD,KENNELWORTH PARK,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4430877,Pick-up Truck,Bike,,, +06/25/2021,1:00,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",METROPOLITAN AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,10:59,QUEENS,11101,40.756485,-73.94005,"(40.756485, -73.94005)",21 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4431260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,18:39,BROOKLYN,11236,40.646255,-73.908905,"(40.646255, -73.908905)",FOSTER AVENUE,EAST 93 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431053,Sedan,Bike,,, +06/25/2021,8:09,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,HUNTERS POINT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431018,Taxi,Sedan,,, +10/17/2021,0:50,QUEENS,11103,40.7582225,-73.9198072,"(40.7582225, -73.9198072)",,,32-32 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467902,Sedan,,,, +06/22/2021,14:30,BROOKLYN,11217,40.677227,-73.97842,"(40.677227, -73.97842)",,,39 LINCOLN PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430894,Sedan,Box Truck,,, +06/23/2021,17:58,,,,,,FOREST PARK DRIVE,ROBINSON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431474,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,14:11,QUEENS,11432,40.720715,-73.80319,"(40.720715, -73.80319)",164 PLACE,81 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4430720,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:23,,,40.72293,-73.847336,"(40.72293, -73.847336)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430576,Sedan,PK,,, +06/23/2021,17:55,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4431001,Sedan,Sedan,,, +06/24/2021,14:00,,,40.755505,-73.96807,"(40.755505, -73.96807)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,16:33,MANHATTAN,10026,40.800663,-73.946465,"(40.800663, -73.946465)",EAST 116 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430833,Sedan,E-Scooter,,, +06/24/2021,0:00,,,40.820297,-73.90411,"(40.820297, -73.90411)",TINTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430300,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,19:40,STATEN ISLAND,10304,40.61364,-74.08482,"(40.61364, -74.08482)",,,545 TARGEE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431286,Sedan,,,, +06/24/2021,8:50,BRONX,10459,40.82839,-73.895065,"(40.82839, -73.895065)",INTERVALE AVENUE,HOME STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4431156,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/25/2021,12:07,BROOKLYN,11234,40.61146,-73.92437,"(40.61146, -73.92437)",FLATBUSH AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,14:50,QUEENS,11354,40.75895,-73.83192,"(40.75895, -73.83192)",PRINCE STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430862,Sedan,Sedan,,, +06/13/2021,22:57,BROOKLYN,11203,40.64491,-73.92192,"(40.64491, -73.92192)",CLARENDON ROAD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431497,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,10:50,,,40.610653,-73.95355,"(40.610653, -73.95355)",OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4430687,Sedan,Sedan,,, +06/23/2021,19:09,,,40.723648,-73.99103,"(40.723648, -73.99103)",EAST HOUSTON STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4430322,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,8:20,,,40.70918,-73.81916,"(40.70918, -73.81916)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430701,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,14:10,QUEENS,11375,40.722214,-73.83892,"(40.722214, -73.83892)",,,71-31 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431166,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,10:00,BRONX,10460,40.83539,-73.887825,"(40.83539, -73.887825)",EAST 173 STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492947,Sedan,Ambulance,,, +06/15/2021,17:00,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431565,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,8:19,BRONX,10467,40.880657,-73.877625,"(40.880657, -73.877625)",WAYNE AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4430804,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/25/2021,14:00,,,40.8352,-73.86599,"(40.8352, -73.86599)",CROSS BRONX EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431300,Sedan,Pick-up Truck,,, +06/24/2021,11:45,MANHATTAN,10065,40.764603,-73.960266,"(40.764603, -73.960266)",,,332 EAST 66 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431320,Sedan,,,, +06/23/2021,18:37,,,40.844875,-73.8678,"(40.844875, -73.8678)",UNIONPORT ROAD,MORRIS PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4430472,Motorscooter,,,, +06/23/2021,2:48,BROOKLYN,11237,40.69627,-73.90956,"(40.69627, -73.90956)",IRVING AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430354,Sedan,,,, +06/24/2021,15:30,,,40.830986,-73.91139,"(40.830986, -73.91139)",CLAY AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4431219,Sedan,,,, +06/23/2021,17:30,,,40.800964,-73.971016,"(40.800964, -73.971016)",WEST 104 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4430194,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,18:40,,,,,,CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430871,Sedan,,,, +06/25/2021,17:59,QUEENS,11420,40.670864,-73.80753,"(40.670864, -73.80753)",131 AVENUE,131 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431102,Taxi,,,, +07/10/2022,10:10,,,40.67066,-73.957985,"(40.67066, -73.957985)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4546195,Van,Sedan,,, +06/23/2021,2:30,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430903,Sedan,,,, +06/25/2021,20:22,BROOKLYN,11229,40.607082,-73.94607,"(40.607082, -73.94607)",AVENUE R,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431688,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,22:30,BROOKLYN,11208,40.66647,-73.882515,"(40.66647, -73.882515)",NEW LOTS AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430926,Sedan,,,, +06/25/2021,13:38,BROOKLYN,11233,40.677017,-73.92182,"(40.677017, -73.92182)",ATLANTIC AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431347,Box Truck,Sedan,,, +06/25/2021,16:00,,,40.843616,-73.87182,"(40.843616, -73.87182)",BRONX RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4431069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/23/2021,17:15,QUEENS,11357,40.783398,-73.80459,"(40.783398, -73.80459)",17 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4430219,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,11:30,BRONX,10468,40.862534,-73.89708,"(40.862534, -73.89708)",EAST FORDHAM ROAD,GRAND CONCOURSE,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4430990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:39,,,40.882217,-73.88046,"(40.882217, -73.88046)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430627,Sedan,,,, +06/23/2021,11:45,,,40.578823,-73.98628,"(40.578823, -73.98628)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430123,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,18:11,BROOKLYN,11212,40.657246,-73.90062,"(40.657246, -73.90062)",,,1661 LINDEN BOULEVARD,4,0,0,0,0,0,4,0,Lost Consciousness,,,,,4431374,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,20:00,QUEENS,11368,40.74962,-73.86665,"(40.74962, -73.86665)",99 STREET,39 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431088,Station Wagon/Sport Utility Vehicle,Bike,,, +06/25/2021,0:29,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4430614,Motorcycle,Sedan,,, +06/24/2021,7:50,BROOKLYN,11237,40.69328,-73.9043,"(40.69328, -73.9043)",IRVING AVENUE,SCHAEFER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430365,Sedan,,,, +06/25/2021,17:30,,,40.584366,-73.9271,"(40.584366, -73.9271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4431093,Sedan,Sedan,Sedan,, +06/24/2021,21:45,BRONX,10466,40.892475,-73.8545,"(40.892475, -73.8545)",EAST 233 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431397,Sedan,Sedan,,, +06/24/2021,18:00,STATEN ISLAND,10309,40.5232,-74.234886,"(40.5232, -74.234886)",,,31 PAGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430760,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,17:13,MANHATTAN,10033,40.846725,-73.93563,"(40.846725, -73.93563)",SAINT NICHOLAS AVENUE,WEST 177 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431580,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,18:46,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4430267,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,17:32,,,40.80582,-73.90926,"(40.80582, -73.90926)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430667,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,8:10,,,40.838688,-73.93779,"(40.838688, -73.93779)",AMSTERDAM AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431532,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,11:00,,,,,,,,148 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431136,Sedan,,,, +06/24/2021,22:21,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,,,4430755,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/24/2021,0:30,MANHATTAN,10003,40.734756,-73.99279,"(40.734756, -73.99279)",,,27 EAST 13 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4430588,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,8:20,QUEENS,11692,40.592987,-73.78905,"(40.592987, -73.78905)",ARVERNE BOULEVARD,BEACH 59 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4430646,Sedan,Sedan,,, +06/25/2021,9:12,,,,,,,,200 GULF AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431660,Sedan,Carry All,,, +06/23/2021,14:47,QUEENS,11433,40.696575,-73.77619,"(40.696575, -73.77619)",SAYRES AVENUE,177 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430196,Sedan,Sedan,,, +06/23/2021,19:30,,,40.76502,-73.9174,"(40.76502, -73.9174)",36 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430225,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,14:10,BRONX,10466,40.886955,-73.86298,"(40.886955, -73.86298)",,,647 EAST 223 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4430485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,23:30,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Turning Improperly,Driver Inattention/Distraction,,,,4431033,Sedan,Sedan,,, +06/24/2021,8:37,,,40.78961,-73.97362,"(40.78961, -73.97362)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430419,Sedan,Box Truck,,, +06/22/2021,3:00,QUEENS,11103,40.765995,-73.90886,"(40.765995, -73.90886)",,,25-91 44 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431255,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,6:00,QUEENS,11104,40.74181,-73.91993,"(40.74181, -73.91993)",45 STREET,GREENPOINT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430430,E-Scooter,Sedan,,, +06/23/2021,6:25,,,40.730198,-73.954254,"(40.730198, -73.954254)",GREENPOINT AVENUE,,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4430674,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/16/2021,13:16,BROOKLYN,11207,40.672577,-73.88481,"(40.672577, -73.88481)",,,400 ASHFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430787,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,13:20,MANHATTAN,10003,,,,EAST 14 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4430117,E-Bike,,,, +06/22/2021,5:50,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430931,Sedan,Bus,,, +06/23/2021,12:44,QUEENS,11367,40.719757,-73.809685,"(40.719757, -73.809685)",,,154-01 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430716,Sedan,Sedan,,, +06/23/2021,22:45,BROOKLYN,11203,40.655754,-73.94442,"(40.655754, -73.94442)",,,450 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431108,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/25/2021,9:53,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430848,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,1:20,,,40.677048,-73.9387,"(40.677048, -73.9387)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431329,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,5:00,,,40.651264,-74.003914,"(40.651264, -74.003914)",39 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430809,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,0:41,QUEENS,11372,40.755657,-73.884445,"(40.755657, -73.884445)",83 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4430329,Sedan,Bike,,, +06/24/2021,22:45,,,40.629295,-74.151596,"(40.629295, -74.151596)",,,290 LAKE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4430683,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,23:20,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4430816,Station Wagon/Sport Utility Vehicle,Bike,,, +06/25/2021,12:55,BROOKLYN,11207,40.657463,-73.89851,"(40.657463, -73.89851)",,,1729 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430922,Station Wagon/Sport Utility Vehicle,AMBU,,, +06/20/2021,23:10,,,40.674145,-73.93062,"(40.674145, -73.93062)",UTICA AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431520,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,11:30,BROOKLYN,11218,40.641182,-73.9712,"(40.641182, -73.9712)",AVENUE C,EAST 8 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4431282,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/23/2021,23:20,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4430705,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,17:20,BRONX,10458,,,,BAINBRIDGE AVENUE,EAST BEDFORD PARK BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4430993,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +06/25/2021,11:30,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4430890,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:10,BROOKLYN,11218,40.64412,-73.98907,"(40.64412, -73.98907)",37 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431436,Sedan,Sedan,,, +06/23/2021,11:48,BRONX,10459,40.832333,-73.884735,"(40.832333, -73.884735)",WEST FARMS ROAD,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430160,Sedan,Bike,,, +06/21/2021,20:14,,,40.749172,-73.967026,"(40.749172, -73.967026)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431149,Sedan,Sedan,,, +06/25/2021,0:35,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4430680,Sedan,Sedan,,, +06/25/2021,11:00,BRONX,10455,40.815697,-73.91678,"(40.815697, -73.91678)",EAST 149 STREET,BERGEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431084,Sedan,Ambulance,,, +06/23/2021,10:25,,,40.692455,-73.76814,"(40.692455, -73.76814)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431010,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,18:23,QUEENS,11412,40.695026,-73.75643,"(40.695026, -73.75643)",196 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430959,E-Bike,Sedan,,, +06/23/2021,17:33,BRONX,10457,40.84701,-73.89602,"(40.84701, -73.89602)",,,4215 3 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4430377,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,14:30,BROOKLYN,11208,40.668808,-73.86728,"(40.668808, -73.86728)",,,2630 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430946,Sedan,,,, +06/25/2021,14:25,,,40.665627,-73.909706,"(40.665627, -73.909706)",ROCKAWAY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431365,Sedan,,,, +06/23/2021,8:00,QUEENS,11692,40.589012,-73.788246,"(40.589012, -73.788246)",,,57-15 SHORE FRONT PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430093,Sedan,Box Truck,,, +06/25/2021,15:32,BROOKLYN,11203,40.649242,-73.9443,"(40.649242, -73.9443)",,,3521 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4431120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck, +06/23/2021,15:12,QUEENS,11418,40.697243,-73.813324,"(40.697243, -73.813324)",VANWYCK EXPRESSWAY,94 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430232,Bus,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,0:48,BROOKLYN,11221,40.689297,-73.93033,"(40.689297, -73.93033)",REID AVENUE,QUINCY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4430414,Sedan,Sedan,Sedan,Sedan, +06/24/2021,6:30,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431611,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,22:07,BRONX,10460,40.84539,-73.88108,"(40.84539, -73.88108)",EAST 181 STREET,DALY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4430732,Taxi,,,, +06/02/2021,3:45,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422871,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,14:10,MANHATTAN,10031,,,,,,700 ST NICHOLAS AVE,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4430650,Tow Truck / Wrecker,Sedan,,, +06/21/2021,9:30,,,40.67086,-73.87424,"(40.67086, -73.87424)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430792,Sedan,Sedan,,, +06/24/2021,20:05,BROOKLYN,11207,40.664146,-73.88186,"(40.664146, -73.88186)",HEGEMAN AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4430917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,18:05,,,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430941,Sedan,Sedan,,, +06/25/2021,19:20,,,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430958,Sedan,Box Truck,,, +06/23/2021,15:52,BROOKLYN,11225,40.663483,-73.9627,"(40.663483, -73.9627)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4430349,Sedan,,,, +06/25/2021,10:25,MANHATTAN,10013,40.721004,-74.001656,"(40.721004, -74.001656)",,,32 MERCER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430843,Sedan,Box Truck,,, +06/23/2021,0:47,,,40.78291,-73.98578,"(40.78291, -73.98578)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430182,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,16:37,,,40.888577,-73.82814,"(40.888577, -73.82814)",EAST 233 STREET,PROVOST AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431379,PK,Sedan,,, +06/21/2021,18:35,BROOKLYN,11233,40.6715,-73.91505,"(40.6715, -73.91505)",EASTERN PARKWAY,PARK PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431352,Sedan,Sedan,,, +06/25/2021,0:00,BRONX,10467,40.873825,-73.86263,"(40.873825, -73.86263)",,,801 BARTHOLDI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431656,Sedan,,,, +06/24/2021,16:00,BROOKLYN,11238,40.671967,-73.96395,"(40.671967, -73.96395)",,,159 EASTERN PARKWAY,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4431335,Sedan,Taxi,,, +06/24/2021,19:40,BROOKLYN,11220,40.637108,-74.02711,"(40.637108, -74.02711)",,,231 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430570,Sedan,Sedan,,, +06/25/2021,8:00,STATEN ISLAND,10301,40.60718,-74.10145,"(40.60718, -74.10145)",OCEAN TERRACE,STATEN ISLAND BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4430811,,,,, +06/23/2021,21:24,QUEENS,11423,40.711853,-73.77123,"(40.711853, -73.77123)",,,188-11 91 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4430547,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/24/2021,23:00,MANHATTAN,10002,40.721035,-73.98874,"(40.721035, -73.98874)",,,162 ORCHARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430973,Taxi,,,, +06/25/2021,11:11,,,,,,,,211 MC GUINNESS BLVD SOUTH,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4430796,Flat Bed,Sedan,,, +06/23/2021,13:48,,,40.710938,-73.92671,"(40.710938, -73.92671)",STEWART AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430277,Tractor Truck Diesel,Sedan,,, +06/18/2021,0:25,,,,,,168 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430709,Sedan,Sedan,,, +06/22/2021,22:00,BROOKLYN,11208,40.672855,-73.87131,"(40.672855, -73.87131)",SUTTER AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4430902,Sedan,Sedan,Sedan,, +06/21/2021,0:12,QUEENS,11385,40.70401,-73.88184,"(40.70401, -73.88184)",,,71-19 70 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431484,Sedan,,,, +06/25/2021,2:12,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4430885,Sedan,TRUCK,,, +06/24/2021,1:25,,,40.77323,-73.76513,"(40.77323, -73.76513)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Other Vehicular,,,,4430255,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,12:15,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430828,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,6:35,,,,,,HYLAN BOULEVARD,NARROWS ROAD SOUTH,,1,0,1,0,0,0,0,0,,,,,,4430497,,,,, +06/25/2021,0:25,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431029,Sedan,Sedan,,, +06/25/2021,0:00,BRONX,10475,40.86879,-73.83168,"(40.86879, -73.83168)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431606,Sedan,,,, +06/21/2021,9:12,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431066,Sedan,Beverage Truck,,, +06/25/2021,19:18,,,40.741493,-73.87503,"(40.741493, -73.87503)",90 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431421,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,12:45,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430870,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,10:09,BROOKLYN,11207,40.65114,-73.89,"(40.65114, -73.89)",FLATLANDS AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430927,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,18:52,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",SOUTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4430841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,2:30,,,40.682583,-73.788864,"(40.682583, -73.788864)",155 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431190,Sedan,Sedan,,, +06/22/2021,9:30,QUEENS,11373,40.746902,-73.871956,"(40.746902, -73.871956)",94 STREET,LAMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431406,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,10:00,BROOKLYN,11211,40.706573,-73.95907,"(40.706573, -73.95907)",,,221 ROSS STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430525,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,22:30,QUEENS,11378,40.729584,-73.92257,"(40.729584, -73.92257)",55 AVENUE,46 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430288,Tractor Truck Diesel,Van,,, +06/15/2021,14:44,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",SOUTH CONDUIT AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4427539,Dump,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,22:11,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4430714,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,3:00,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,10:00,,,40.823624,-73.92308,"(40.823624, -73.92308)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431211,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,16:00,,,40.677864,-73.872574,"(40.677864, -73.872574)",LIBERTY AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430934,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,17:12,BRONX,10455,40.81888,-73.916504,"(40.81888, -73.916504)",MELROSE AVENUE,EAST 153 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4431080,Bus,Sedan,,, +06/23/2021,17:00,,,40.84603,-73.93034,"(40.84603, -73.93034)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431542,Sedan,,,, +06/25/2021,11:45,BROOKLYN,11220,40.637756,-74.00721,"(40.637756, -74.00721)",56 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431287,Motorbike,,,, +06/25/2021,0:00,,,40.84503,-73.94508,"(40.84503, -73.94508)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Obstruction/Debris,Obstruction/Debris,,,4431549,Sedan,Sedan,Sedan,, +06/24/2021,17:30,QUEENS,11354,,,,,,34-20 Linden street,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430863,Sedan,,,, +06/24/2021,20:25,,,40.81612,-73.926636,"(40.81612, -73.926636)",EAST 144 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430659,Sedan,,,, +06/24/2021,14:16,BRONX,10466,40.884388,-73.833145,"(40.884388, -73.833145)",,,3981 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431414,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2022,16:30,,,,,,WEST 155 STREET,HENRY HUDSON PARKWAY,,2,0,0,0,2,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545973,Bike,E-Bike,,, +06/23/2021,17:44,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431155,Sedan,Sedan,,, +06/23/2021,0:00,BROOKLYN,11220,40.645664,-74.00974,"(40.645664, -74.00974)",5 AVENUE,49 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430175,TRUCK,E-Bike,,, +06/24/2021,12:02,MANHATTAN,10031,40.8236,-73.9497,"(40.8236, -73.9497)",HAMILTON PLACE,WEST 142 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430640,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,10:34,QUEENS,11433,,,,Archer avenue,Guy R Brewer boulevard,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430144,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/15/2021,17:50,QUEENS,11101,40.742485,-73.95668,"(40.742485, -73.95668)",5 STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431512,Sedan,Pick-up Truck,,, +06/23/2021,13:00,STATEN ISLAND,10301,40.6315,-74.08775,"(40.6315, -74.08775)",,,449 VICTORY BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4430582,Sedan,Sedan,,, +06/23/2021,19:45,MANHATTAN,10019,40.76712,-73.99173,"(40.76712, -73.99173)",,,533 WEST 53 STREET,0,0,0,0,0,0,0,0,Glare,Glare,,,,4430387,Station Wagon/Sport Utility Vehicle,Bike,,, +06/25/2021,18:50,BRONX,10462,40.852066,-73.868614,"(40.852066, -73.868614)",BRONXDALE AVENUE,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4431006,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,21:25,,,40.83302,-73.862724,"(40.83302, -73.862724)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430697,Sedan,,,, +06/23/2021,17:50,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430736,Sedan,Sedan,,, +06/23/2021,18:55,BRONX,10459,40.82261,-73.88711,"(40.82261, -73.88711)",,,1361 BRUCKNER BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430201,Bike,Sedan,,, +06/23/2021,13:54,BROOKLYN,11231,40.674145,-74.00601,"(40.674145, -74.00601)",LORRAINE STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430308,Bus,Sedan,,, +06/24/2021,17:10,BROOKLYN,11225,40.666084,-73.95366,"(40.666084, -73.95366)",,,300 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430979,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,7:30,BROOKLYN,11222,40.726337,-73.93181,"(40.726337, -73.93181)",,,546 GARDNER AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4430747,Tractor Truck Diesel,Tractor Truck Diesel,,, +06/24/2021,9:08,,,40.79725,-73.96805,"(40.79725, -73.96805)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430404,Sedan,,,, +06/23/2021,19:30,BROOKLYN,11238,40.68175,-73.96748,"(40.68175, -73.96748)",VANDERBILT AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430345,Sedan,Sedan,,, +06/25/2021,19:00,BROOKLYN,11236,40.653862,-73.91828,"(40.653862, -73.91828)",,,9216 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431124,Sedan,,,, +06/23/2021,2:18,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430764,Sedan,,,, +06/25/2021,16:45,,,40.578312,-73.96808,"(40.578312, -73.96808)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431247,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,14:45,,,40.580772,-73.96556,"(40.580772, -73.96556)",BRIGHTON 3 STREET,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4431238,Van,Sedan,,, +06/23/2021,12:00,MANHATTAN,10030,40.819046,-73.944695,"(40.819046, -73.944695)",8 AVENUE,WEST 139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430137,Box Truck,Sedan,,, +06/25/2021,21:55,,,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431665,Station Wagon/Sport Utility Vehicle,Bike,,, +06/23/2021,9:09,,,40.673393,-73.79048,"(40.673393, -73.79048)",147 STREET,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430086,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,22:09,,,40.641422,-73.94086,"(40.641422, -73.94086)",AVENUE D,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430458,Sedan,,,, +06/24/2021,14:07,,,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430914,Station Wagon/Sport Utility Vehicle,Bus,,, +06/24/2021,11:56,BROOKLYN,11211,,,,Debevoise ave,Maspeth ave,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4430622,Van,Sedan,,, +06/23/2021,14:15,QUEENS,11692,40.59622,-73.78465,"(40.59622, -73.78465)",,,440 BEACH 54 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430315,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,17:41,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",86 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430210,Sedan,Bus,,, +06/25/2021,23:50,,,40.712276,-73.72867,"(40.712276, -73.72867)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4431444,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,22:25,,,40.72839,-73.83302,"(40.72839, -73.83302)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,11:00,BROOKLYN,11232,40.649326,-74.01882,"(40.649326, -74.01882)",,,137 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430552,Sedan,,,, +06/23/2021,18:20,QUEENS,11435,40.693638,-73.80464,"(40.693638, -73.80464)",LIVERPOOL STREET,106 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4430566,Sedan,,,, +06/25/2021,1:19,BROOKLYN,11219,40.622005,-74.00108,"(40.622005, -74.00108)",,,1419 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4430779,Sedan,Sedan,,, +06/25/2021,16:15,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4430856,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,18:54,,,40.81218,-73.9011,"(40.81218, -73.9011)",TIMPSON PLACE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430501,Sedan,,,, +06/18/2021,13:17,BROOKLYN,11236,40.648354,-73.91001,"(40.648354, -73.91001)",EAST 94 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4431024,Sedan,Sedan,Sedan,, +06/23/2021,16:50,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,VERMONT PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431477,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,21:50,,,40.823956,-73.877144,"(40.823956, -73.877144)",BRUCKNER BOULEVARD,BOYNTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4430824,Sedan,Sedan,,, +06/24/2021,23:00,BROOKLYN,11230,40.611126,-73.96259,"(40.611126, -73.96259)",,,1897 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431197,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,2:50,,,40.66434,-73.93155,"(40.66434, -73.93155)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430601,Sedan,Sedan,,, +06/25/2021,6:50,BRONX,10460,40.84133,-73.87635,"(40.84133, -73.87635)",,,1100 LEBANON STREET,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4430729,Taxi,,,, +06/23/2021,22:50,QUEENS,11373,40.745502,-73.888374,"(40.745502, -73.888374)",77 STREET,41 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431417,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,6:45,BROOKLYN,11236,40.64908,-73.90549,"(40.64908, -73.90549)",,,1220 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4431312,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,9:22,BRONX,10459,40.817677,-73.89543,"(40.817677, -73.89543)",,,854 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431062,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,15:05,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4430692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,15:14,BROOKLYN,11215,,,,,,95 PROSPECT PARK WEST,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430895,Sedan,Bike,,, +01/08/2022,11:30,BRONX,10451,40.81722,-73.91924,"(40.81722, -73.91924)",COURTLANDT AVENUE,EAST 150 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493316,Sedan,Bike,,, +06/23/2021,18:00,QUEENS,11434,,,,177 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430248,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,6:15,BROOKLYN,11203,40.639744,-73.92984,"(40.639744, -73.92984)",,,4918 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431107,Sedan,,,, +06/23/2021,16:41,BROOKLYN,11206,40.70982,-73.9402,"(40.70982, -73.9402)",BUSHWICK AVENUE,STAGG STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4430520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:27,QUEENS,11102,40.768436,-73.91996,"(40.768436, -73.91996)",31 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431265,Sedan,Flat Bed,,, +06/24/2021,18:30,BRONX,10458,40.8677,-73.8852,"(40.8677, -73.8852)",,,372 EAST 199 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430619,Sedan,,,, +06/23/2021,23:19,,,40.628975,-74.18495,"(40.628975, -74.18495)",GULF AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4430369,Sedan,Sedan,,, +06/23/2021,14:00,BROOKLYN,11216,40.687523,-73.95476,"(40.687523, -73.95476)",,,1090 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430633,Sedan,,,, +06/24/2021,3:30,BRONX,10465,40.817863,-73.83852,"(40.817863, -73.83852)",,,545 BRUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431673,Sedan,,,, +06/21/2021,9:50,,,40.713135,-73.87528,"(40.713135, -73.87528)",78 STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430966,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,22:00,MANHATTAN,10009,40.72547,-73.98396,"(40.72547, -73.98396)",EAST 6 STREET,AVENUE A,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431164,Sedan,,,, +06/23/2021,12:35,BROOKLYN,11207,40.672195,-73.902664,"(40.672195, -73.902664)",GLENMORE AVENUE,VAN SIDERIN AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4430793,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,7:30,BRONX,10454,40.80761,-73.91341,"(40.80761, -73.91341)",EAST 141 STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430652,Box Truck,Bus,,, +06/24/2021,18:46,BROOKLYN,11204,40.611767,-73.97638,"(40.611767, -73.97638)",64 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430778,Sedan,Pick-up Truck,,, +06/23/2021,7:00,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431313,Sedan,,,, +06/23/2021,15:05,,,40.837177,-73.90799,"(40.837177, -73.90799)",CLAY AVENUE,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Turning Improperly,,,,4430756,Sedan,Sedan,,, +06/23/2021,15:25,,,40.58179,-74.11128,"(40.58179, -74.11128)",RICHMOND ROAD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4430170,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2021,2:25,,,40.677624,-73.93308,"(40.677624, -73.93308)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4431558,Sedan,,,, +06/21/2021,19:25,BROOKLYN,11221,40.688786,-73.93323,"(40.688786, -73.93323)",,,188A STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431518,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,3:50,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4430397,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,3:55,BROOKLYN,11233,40.676853,-73.91877,"(40.676853, -73.91877)",,,2074 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431318,Sedan,Tractor Truck Diesel,,, +06/24/2021,4:40,STATEN ISLAND,10304,40.62998,-74.08033,"(40.62998, -74.08033)",,,76 JACKSON STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430586,Sedan,,,, +06/23/2021,16:59,BROOKLYN,11206,40.70068,-73.93849,"(40.70068, -73.93849)",BEAVER STREET,ELLERY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430356,Motorscooter,Sedan,,, +06/23/2021,9:40,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WHITLOCK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430159,Sedan,,,, +06/23/2021,15:30,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",MERRICK BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,13:02,BRONX,10472,40.82842,-73.86068,"(40.82842, -73.86068)",WHITE PLAINS ROAD,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431293,Taxi,Sedan,,, +06/25/2021,3:39,MANHATTAN,10035,40.807034,-73.939705,"(40.807034, -73.939705)",MADISON AVENUE,EAST 127 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4430751,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan,, +06/18/2021,14:26,BROOKLYN,11216,40.67268,-73.953026,"(40.67268, -73.953026)",STERLING PLACE,ROGERS AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4431346,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,11:40,BROOKLYN,11209,40.632572,-74.02361,"(40.632572, -74.02361)",,,415 72 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430465,Station Wagon/Sport Utility Vehicle,Bike,,, +01/08/2022,12:24,BRONX,10469,40.865402,-73.85414,"(40.865402, -73.85414)",,,1142 ALLERTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492933,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,8:20,,,40.82815,-73.93491,"(40.82815, -73.93491)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430130,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:45,BRONX,10452,40.83267,-73.92687,"(40.83267, -73.92687)",,,1010 ANDERSON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4430768,Station Wagon/Sport Utility Vehicle,Bus,,, +06/12/2021,23:30,,,40.75253,-73.94384,"(40.75253, -73.94384)",21 STREET,QUEENS PLAZA NORTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431254,Sedan,Sedan,,, +06/25/2021,18:35,BROOKLYN,11212,40.66719,-73.919716,"(40.66719, -73.919716)",,,611 HOWARD AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431369,Motorcycle,Sedan,,, +06/23/2021,20:10,BROOKLYN,11213,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,TROY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430602,Sedan,Bike,,, +06/23/2021,20:47,BROOKLYN,11212,40.658783,-73.91283,"(40.658783, -73.91283)",HERZL STREET,NEWPORT STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431366,Sedan,Motorcycle,,, +06/20/2021,12:00,QUEENS,11432,40.72085,-73.7778,"(40.72085, -73.7778)",,,85-18 WICKLOW PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4430719,Sedan,Sedan,,, +06/25/2021,14:15,,,,,,MARATHON PARKWAY,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4430949,Sedan,,,, +06/22/2021,16:50,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431128,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,9:00,BROOKLYN,11207,40.65478,-73.889984,"(40.65478, -73.889984)",GEORGIA AVENUE,WORTMAN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4430910,Sedan,Sedan,,, +06/24/2021,10:38,,,40.777504,-73.954956,"(40.777504, -73.954956)",EAST 84 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4430641,Sedan,,,, +06/24/2021,11:23,,,40.608593,-74.00486,"(40.608593, -74.00486)",86 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430507,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/23/2021,16:39,BRONX,10451,40.81667,-73.91997,"(40.81667, -73.91997)",,,349 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430666,Station Wagon/Sport Utility Vehicle,Tow Truck,,, +06/23/2021,9:05,BRONX,10454,40.808273,-73.92095,"(40.808273, -73.92095)",,,466 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430295,Sedan,,,, +06/24/2021,19:45,STATEN ISLAND,10306,40.56854,-74.11431,"(40.56854, -74.11431)",,,321 BEACH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430558,Sedan,,,, +06/24/2021,16:04,QUEENS,11361,40.75904,-73.77423,"(40.75904, -73.77423)",NORTHERN BOULEVARD,OCEANIA STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4430561,Pick-up Truck,Sedan,,, +06/23/2021,4:40,,,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430021,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,4:53,,,40.867676,-73.88625,"(40.867676, -73.88625)",MARION AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430626,AMBULANCE,Sedan,,, +06/23/2021,12:50,,,40.82113,-73.92565,"(40.82113, -73.92565)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430327,Horse trai,Sedan,,, +06/03/2021,15:45,QUEENS,11411,40.694813,-73.73522,"(40.694813, -73.73522)",,,116-35 225 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431448,Sedan,Van,,, +06/25/2021,16:13,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431266,Sedan,Bus,,, +06/23/2021,10:53,,,,,,EAST DRIVE,LINCOLN ROAD DRIVE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4430342,GOLF CART,,,, +06/24/2021,17:52,BROOKLYN,11235,40.58369,-73.94808,"(40.58369, -73.94808)",,,2027 EMMONS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430686,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,20:36,BROOKLYN,11236,40.63329,-73.91214,"(40.63329, -73.91214)",PAERDEGAT 1 STREET,EAST 79 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4430852,Sedan,Sedan,,, +06/24/2021,21:35,BROOKLYN,11213,40.667576,-73.93125,"(40.667576, -73.93125)",,,304 UTICA AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430597,Station Wagon/Sport Utility Vehicle,Bus,,, +06/23/2021,12:30,,,40.84869,-73.90329,"(40.84869, -73.90329)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430704,Bus,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:50,BRONX,10459,40.830135,-73.891884,"(40.830135, -73.891884)",SOUTHERN BOULEVARD,FREEMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430245,Moped,Sedan,,, +06/24/2021,10:00,BROOKLYN,11218,40.644768,-73.971886,"(40.644768, -73.971886)",,,222 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431281,Sedan,,,, +06/23/2021,23:15,,,40.833412,-73.85906,"(40.833412, -73.85906)",CROSS BRONX EXPRESSWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430474,Sedan,Sedan,,, +06/25/2021,10:40,,,40.824757,-73.94052,"(40.824757, -73.94052)",8 AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4430783,Concrete Mixer,Sedan,,, +06/23/2021,22:18,BRONX,10466,40.88492,-73.84883,"(40.88492, -73.84883)",LACONIA AVENUE,EAST 226 STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,,,,,4431415,Bike,,,, +06/24/2021,13:30,,,40.841278,-73.86359,"(40.841278, -73.86359)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430820,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,19:57,BROOKLYN,11226,40.648643,-73.96075,"(40.648643, -73.96075)",OCEAN AVENUE,TENNIS COURT,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4431205,Sedan,Motorcycle,,, +01/08/2022,21:00,BROOKLYN,11208,40.667416,-73.87671,"(40.667416, -73.87671)",,,461 ATKINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493542,Sedan,,,, +06/24/2021,20:33,,,,,,,,85 EAST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4430746,E-Scooter,Bike,,, +06/21/2021,10:10,QUEENS,11356,40.78168,-73.84777,"(40.78168, -73.84777)",120 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431306,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,14:18,MANHATTAN,10033,40.847355,-73.93518,"(40.847355, -73.93518)",WEST 178 STREET,SAINT NICHOLAS AVENUE,,2,0,0,0,0,0,2,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4431539,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/25/2021,12:08,,,40.65777,-73.93962,"(40.65777, -73.93962)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4430982,Sedan,,,, +06/24/2021,17:25,,,40.786083,-73.796455,"(40.786083, -73.796455)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4430878,Sedan,,,, +06/25/2021,2:52,BRONX,10454,40.803944,-73.91068,"(40.803944, -73.91068)",,,777 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431077,Sedan,,,, +06/24/2021,10:22,BROOKLYN,11212,40.66365,-73.922966,"(40.66365, -73.922966)",,,116 ROCKAWAY PARKWAY,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431111,MOPED,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,8:20,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431533,Sedan,Box Truck,,, +06/23/2021,12:20,,,40.774654,-73.9541,"(40.774654, -73.9541)",EAST 81 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4430265,Sedan,,,, +06/24/2021,12:30,,,40.773964,-73.9228,"(40.773964, -73.9228)",HOYT AVENUE SOUTH,23 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431261,Sedan,,,, +06/24/2021,11:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,22:10,,,,,,BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431395,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,22:30,QUEENS,11378,40.72861,-73.88721,"(40.72861, -73.88721)",74 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431475,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,18:00,,,40.843063,-73.90954,"(40.843063, -73.90954)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4430761,,,,, +06/23/2021,20:55,,,,,,,,79 EAST DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430741,E-Scooter,,,, +06/24/2021,0:00,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,PITT STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430970,Bike,Sedan,,, +06/25/2021,7:45,MANHATTAN,10013,40.715157,-74.00212,"(40.715157, -74.00212)",CENTRE STREET,WORTH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431326,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,15:50,,,40.635887,-73.87999,"(40.635887, -73.87999)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4431121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,0:00,BROOKLYN,11236,40.651157,-73.918144,"(40.651157, -73.918144)",REMSEN AVENUE,AVENUE A,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431139,Bike,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,18:30,BRONX,10458,40.854305,-73.88732,"(40.854305, -73.88732)",,,620 EAST 186 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431647,Sedan,,,, +06/25/2021,6:30,STATEN ISLAND,10308,40.55403,-74.14052,"(40.55403, -74.14052)",AMBOY ROAD,AINSWORTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430810,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,0:14,BROOKLYN,11222,40.73351,-73.95719,"(40.73351, -73.95719)",,,106 GREEN STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4430675,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,11:00,BROOKLYN,11208,40.668613,-73.86857,"(40.668613, -73.86857)",,,2602B LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4430921,Sedan,,,, +06/25/2021,9:50,,,40.865387,-73.893456,"(40.865387, -73.893456)",EAST KINGSBRIDGE ROAD,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4430773,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,1:45,,,40.863163,-73.91988,"(40.863163, -73.91988)",10 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,21:35,,,40.654533,-73.860916,"(40.654533, -73.860916)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4430942,Pick-up Truck,Sedan,,, +06/25/2021,7:15,QUEENS,11358,40.761448,-73.80288,"(40.761448, -73.80288)",NORTHERN BOULEVARD,163 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4430874,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,0:55,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430995,Carry All,Van Camper,,, +06/25/2021,12:25,MANHATTAN,10035,40.80476,-73.93716,"(40.80476, -73.93716)",,,2082 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430805,Bus,Tow Truck / Wrecker,,, +06/16/2021,16:33,MANHATTAN,10025,40.80297,-73.96387,"(40.80297, -73.96387)",WEST 110 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431438,E-Scooter,Taxi,,, +06/25/2021,6:40,MANHATTAN,10028,40.77656,-73.95271,"(40.77656, -73.95271)",EAST 84 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4431657,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,8:14,BROOKLYN,11212,40.665512,-73.926384,"(40.665512, -73.926384)",EAST NEW YORK AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431115,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,12:34,,,40.638103,-74.00326,"(40.638103, -74.00326)",53 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4431297,Station Wagon/Sport Utility Vehicle,Bus,,, +06/23/2021,3:45,QUEENS,11691,40.595932,-73.75963,"(40.595932, -73.75963)",SEAGIRT BOULEVARD,BEACH 26 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4430333,Sedan,Sedan,,, +06/23/2021,15:00,,,40.831684,-73.85562,"(40.831684, -73.85562)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430191,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,8:00,QUEENS,11370,40.7666,-73.89117,"(40.7666, -73.89117)",ASTORIA BOULEVARD,78 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430112,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,17:10,QUEENS,11103,40.767582,-73.91201,"(40.767582, -73.91201)",,,25-22 STEINWAY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4430392,Sedan,Motorcycle,,, +06/23/2021,7:30,QUEENS,11434,40.66555,-73.77889,"(40.66555, -73.77889)",,,158-12 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4430488,,,,, +06/25/2021,16:00,BROOKLYN,11212,40.668987,-73.915436,"(40.668987, -73.915436)",PITKIN AVENUE,HERZL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431342,Bus,Sedan,,, +01/08/2022,17:30,,,40.648243,-74.014114,"(40.648243, -74.014114)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4493438,Sedan,Sedan,,, +05/19/2021,16:58,,,40.83867,-73.906456,"(40.83867, -73.906456)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431628,Sedan,,,, +06/23/2021,17:20,MANHATTAN,10022,40.75831,-73.96294,"(40.75831, -73.96294)",EAST 57 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430218,Sedan,Sedan,,, +06/25/2021,21:20,BROOKLYN,11229,40.59592,-73.941025,"(40.59592, -73.941025)",AVENUE W,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431689,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,11:00,,,40.53448,-74.198586,"(40.53448, -74.198586)",DRUMGOOLE ROAD WEST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430420,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,16:00,QUEENS,11414,40.65766,-73.83371,"(40.65766, -73.83371)",,,160-35 99 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4430609,Sedan,Bike,,, +06/25/2021,16:45,,,40.824383,-73.82396,"(40.824383, -73.82396)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4431070,Pick-up Truck,Tractor Truck Diesel,,, +06/22/2021,12:40,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430788,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/11/2021,16:10,,,40.678276,-73.910805,"(40.678276, -73.910805)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431373,Sedan,Sedan,,, +06/25/2021,9:38,,,40.84474,-73.922585,"(40.84474, -73.922585)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4430847,Tractor Truck Diesel,Flat Bed,,, +06/24/2021,21:15,,,40.72921,-73.781166,"(40.72921, -73.781166)",UNION TURNPIKE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430715,Sedan,,,, +06/25/2021,21:00,QUEENS,11428,40.722916,-73.73151,"(40.722916, -73.73151)",93 ROAD,224 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4430953,Sedan,Sedan,,, +06/23/2021,19:00,BRONX,10451,40.81505,-73.92427,"(40.81505, -73.92427)",MORRIS AVENUE,EAST 143 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4430299,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,19:08,QUEENS,11375,40.71958,-73.83978,"(40.71958, -73.83978)",QUEENS BOULEVARD,72 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430575,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,16:10,BROOKLYN,11203,40.657867,-73.938156,"(40.657867, -73.938156)",,,675 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4430541,AMBU,Van,,, +06/25/2021,2:14,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4430662,Sedan,Sedan,,, +06/25/2021,12:45,,,,,,ZEREGA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430832,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,21:00,QUEENS,11103,40.75705,-73.91283,"(40.75705, -73.91283)",NEWTOWN ROAD,47 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431268,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,11:00,,,40.63739,-74.14823,"(40.63739, -74.14823)",,,2612 RICHMOND TERRACE,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4430681,Sedan,Pick-up Truck,,, +06/23/2021,11:30,MANHATTAN,10033,40.844246,-73.93372,"(40.844246, -73.93372)",WEST 175 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,14:42,,,40.83553,-73.86317,"(40.83553, -73.86317)",WHITE PLAINS ROAD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4430815,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,5:30,QUEENS,11378,40.727432,-73.90713,"(40.727432, -73.90713)",MAURICE AVENUE,LONG ISLAND EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4431498,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,22:54,QUEENS,11365,40.735394,-73.77983,"(40.735394, -73.77983)",,,192-04 71 CRESCENT,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4430700,Sedan,Sedan,,, +06/23/2021,20:32,QUEENS,11355,40.75669,-73.808266,"(40.75669, -73.808266)",158 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4430250,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,14:44,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,VERMONT PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431492,Pick-up Truck,Sedan,,, +06/06/2021,11:04,QUEENS,11434,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4423866,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,20:10,BROOKLYN,11212,40.66514,-73.92459,"(40.66514, -73.92459)",,,41 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4431468,Sedan,Sedan,,, +06/25/2021,0:35,MANHATTAN,10021,40.766895,-73.95668,"(40.766895, -73.95668)",,,1315 1 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4430645,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,5:00,,,40.67253,-73.77119,"(40.67253, -73.77119)",137 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431013,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,12:00,,,40.704544,-73.727234,"(40.704544, -73.727234)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4430889,Sedan,Sedan,Sedan,, +06/24/2021,0:00,BROOKLYN,11237,40.709003,-73.92234,"(40.709003, -73.92234)",SCOTT AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4430521,Tractor Truck Diesel,Sedan,,, +06/24/2021,8:48,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431218,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,14:30,BROOKLYN,11208,40.68423,-73.870125,"(40.68423, -73.870125)",,,3400 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430906,Box Truck,Sedan,,, +06/25/2021,15:40,QUEENS,11422,40.6722,-73.734604,"(40.6722, -73.734604)",BROOKVILLE BOULEVARD,135 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4430986,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,14:50,,,40.827904,-73.91218,"(40.827904, -73.91218)",EAST 165 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431171,Sedan,Sedan,,, +06/25/2021,12:10,BROOKLYN,11234,40.62679,-73.92576,"(40.62679, -73.92576)",,,1347 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431036,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,14:29,,,40.68999,-73.78327,"(40.68999, -73.78327)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4430837,Sedan,Sedan,,, +06/24/2021,15:32,,,40.65616,-73.76736,"(40.65616, -73.76736)",150 ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4430530,Box Truck,Sedan,,, +06/23/2021,17:45,BROOKLYN,11208,40.6853,-73.871506,"(40.6853, -73.871506)",,,187 HEMLOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4430938,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,10:50,MANHATTAN,10004,40.704952,-74.00906,"(40.704952, -74.00906)",,,5 HANOVER SQUARE,0,0,0,0,0,0,0,0,,,,,,4430842,Box Truck,,,, +06/24/2021,16:42,BROOKLYN,11234,40.63837,-73.92402,"(40.63837, -73.92402)",,,26 PRESTON COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4430800,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,10:15,QUEENS,11435,40.712532,-73.8154,"(40.712532, -73.8154)",,,84-48 LANDER STREET,2,0,1,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4430710,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/13/2021,12:15,QUEENS,11378,40.727432,-73.90713,"(40.727432, -73.90713)",MAURICE AVENUE,LONG ISLAND EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4431094,Sedan,Sedan,,, +06/24/2021,10:00,BROOKLYN,11236,40.630264,-73.901146,"(40.630264, -73.901146)",,,1371 EAST 85 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4430548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +06/24/2021,23:48,BRONX,10469,40.869846,-73.8446,"(40.869846, -73.8446)",KNAPP STREET,FENTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431388,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,14:44,BRONX,10454,40.80321,-73.918106,"(40.80321, -73.918106)",,,164 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430284,Sedan,Bus,,, +01/08/2022,16:00,,,40.830536,-73.91948,"(40.830536, -73.91948)",CARROLL PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4493058,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/05/2022,14:00,QUEENS,11101,40.738304,-73.94018,"(40.738304, -73.94018)",,,52-11 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493379,Sedan,,,, +12/28/2021,5:05,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4493448,Sedan,Sedan,,, +01/07/2022,20:40,BRONX,10468,40.8724,-73.88981,"(40.8724, -73.88981)",JEROME AVENUE,EAST 199 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4493411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,8:40,QUEENS,11385,40.70233,-73.87604,"(40.70233, -73.87604)",,,73-09 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4493159,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/07/2022,10:30,BROOKLYN,11207,40.68016,-73.893196,"(40.68016, -73.893196)",JAMAICA AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493518,Dump,Sedan,,, +01/08/2022,12:15,BROOKLYN,11236,40.644604,-73.91996,"(40.644604, -73.91996)",,,1338 RALPH AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4493044,Station Wagon/Sport Utility Vehicle,Bike,,, +01/07/2022,15:44,BROOKLYN,11208,40.676636,-73.88144,"(40.676636, -73.88144)",LIBERTY AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493536,Sedan,,,, +01/08/2022,19:44,,,40.654797,-73.93943,"(40.654797, -73.93943)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4493035,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/08/2022,11:30,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492827,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,20:45,BROOKLYN,11205,40.694305,-73.973145,"(40.694305, -73.973145)",,,89 CARLTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492912,Sedan,Sedan,,, +01/08/2022,16:40,MANHATTAN,10040,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,POST AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4493114,Sedan,,,, +12/30/2021,12:36,,,40.67221,-73.92802,"(40.67221, -73.92802)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493499,Sedan,Tractor Truck Diesel,,, +01/08/2022,20:25,QUEENS,11372,40.75296,-73.873535,"(40.75296, -73.873535)",94 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493131,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,19:18,MANHATTAN,10021,40.769737,-73.96271,"(40.769737, -73.96271)",EAST 71 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493287,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,11:01,BROOKLYN,11208,40.67386,-73.88259,"(40.67386, -73.88259)",PITKIN AVENUE,LINWOOD STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4493509,Sedan,Sedan,,, +01/08/2022,12:00,BROOKLYN,11212,40.674477,-73.904205,"(40.674477, -73.904205)",,,25 JUNIUS STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4493070,PK,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,7:00,BROOKLYN,11226,40.65222,-73.95787,"(40.65222, -73.95787)",,,33 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4492990,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,15:09,QUEENS,11435,40.694065,-73.80142,"(40.694065, -73.80142)",107 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4493564,Sedan,Sedan,,, +01/08/2022,16:00,QUEENS,11373,40.743057,-73.87769,"(40.743057, -73.87769)",WHITNEY AVENUE,JUDGE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,4:30,QUEENS,11377,40.745197,-73.900406,"(40.745197, -73.900406)",,,39-42 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493367,Sedan,Sedan,,, +01/07/2022,12:30,BRONX,10474,40.814026,-73.88959,"(40.814026, -73.88959)",,,1234 SPOFFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493467,Sedan,,,, +01/08/2022,10:25,BROOKLYN,11230,40.62445,-73.968025,"(40.62445, -73.968025)",AVENUE J,EAST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493141,Taxi,Sedan,,, +01/08/2022,20:04,MANHATTAN,10016,40.743473,-73.97677,"(40.743473, -73.97677)",EAST 32 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493251,Sedan,Bus,,, +01/07/2022,6:10,BROOKLYN,11207,40.671047,-73.892715,"(40.671047, -73.892715)",WYONA STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493523,Pick-up Truck,,,, +01/08/2022,16:05,,,40.676815,-73.82338,"(40.676815, -73.82338)",ROCKAWAY BOULEVARD,115 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493273,Sedan,Sedan,,, +01/07/2022,6:20,BROOKLYN,11208,40.67949,-73.87927,"(40.67949, -73.87927)",ATLANTIC AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493529,Sedan,,,, +01/08/2022,1:49,QUEENS,11372,40.749317,-73.8852,"(40.749317, -73.8852)",,,37-20 81 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492814,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,11:00,STATEN ISLAND,10301,40.636692,-74.085884,"(40.636692, -74.085884)",JERSEY STREET,STANLEY AVENUE,,4,0,0,0,0,0,4,0,Passing Too Closely,Backing Unsafely,,,,4493565,Sedan,Sedan,,, +01/08/2022,15:47,,,40.74901,-73.83465,"(40.74901, -73.83465)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,14:35,BRONX,10468,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493402,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,22:00,QUEENS,11422,40.66343,-73.74079,"(40.66343, -73.74079)",BROOKVILLE BOULEVARD,143 AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4492908,Sedan,Sedan,,, +01/08/2022,6:25,BRONX,10473,40.822163,-73.842445,"(40.822163, -73.842445)",,,710 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493393,Sedan,Sedan,,, +01/04/2022,9:05,BRONX,10461,40.853806,-73.855286,"(40.853806, -73.855286)",NEILL AVENUE,TOMLINSON AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4493619,,,,, +01/08/2022,2:30,,,40.67058,-73.93096,"(40.67058, -73.93096)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4493500,Sedan,DUMP GR,,, +01/08/2022,21:03,QUEENS,11429,40.712086,-73.731026,"(40.712086, -73.731026)",,,223-03 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493154,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,8:25,,,40.70636,-73.95192,"(40.70636, -73.95192)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4493232,Bike,Sedan,,, +01/08/2022,20:00,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493459,Sedan,Sedan,,, +01/08/2022,19:40,BRONX,10457,40.844177,-73.89744,"(40.844177, -73.89744)",EAST 175 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493325,Sedan,E-Scooter,,, +01/08/2022,22:02,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4492931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,8:40,BROOKLYN,11204,40.607765,-73.98255,"(40.607765, -73.98255)",WEST 9 STREET,AVENUE P,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4492968,Sedan,Sedan,,, +01/08/2022,11:35,,,,,,CROSS ISLAND PARKWAY,SOUTHERN STATE PARKWAY,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,,,,4492849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,10:00,,,40.839447,-73.88384,"(40.839447, -73.88384)",CROSS BRONX EXPRESSWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493356,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,23:00,MANHATTAN,10002,40.72125,-73.99224,"(40.72125, -73.99224)",CHRYSTIE STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493084,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,21:50,BROOKLYN,11234,40.605335,-73.91355,"(40.605335, -73.91355)",,,2793 EAST 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4492934,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/08/2022,9:10,,,40.64507,-73.95803,"(40.64507, -73.95803)",BEVERLEY ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4492992,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/23/2021,11:00,BROOKLYN,11249,40.71048,-73.9655,"(40.71048, -73.9655)",BERRY STREET,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493468,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,14:40,BROOKLYN,11207,40.677155,-73.88773,"(40.677155, -73.88773)",JEROME STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493427,Box Truck,Sedan,,, +01/08/2022,8:30,,,40.83836,-73.92493,"(40.83836, -73.92493)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493440,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,14:30,,,40.691093,-73.72683,"(40.691093, -73.72683)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4492847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,16:22,BROOKLYN,11206,40.704346,-73.940956,"(40.704346, -73.940956)",,,50 HUMBOLDT STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493241,Motorcycle,Sedan,,, +01/08/2022,17:00,,,40.75727,-73.74765,"(40.75727, -73.74765)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492898,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/30/2021,3:34,,,40.647114,-73.94338,"(40.647114, -73.94338)",TILDEN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493365,Sedan,,,, +01/08/2022,11:20,MANHATTAN,10019,40.769543,-73.98961,"(40.769543, -73.98961)",,,530 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,9:00,,,40.604637,-73.97614,"(40.604637, -73.97614)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493023,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,18:43,BRONX,10467,40.875225,-73.873535,"(40.875225, -73.873535)",,,3259 PARKSIDE PLACE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493420,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,22:00,,,40.743664,-73.856064,"(40.743664, -73.856064)",CORONA AVENUE,51 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4493309,Sedan,Sedan,,, +01/08/2022,17:00,QUEENS,11378,40.72878,-73.926155,"(40.72878, -73.926155)",43 STREET,56 ROAD,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4492916,Sedan,Sedan,,, +01/07/2022,9:00,QUEENS,11367,40.72812,-73.819435,"(40.72812, -73.819435)",,,147-54 71 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493594,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,21:35,,,40.67134,-73.89959,"(40.67134, -73.89959)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493537,Pick-up Truck,Sedan,,, +01/08/2022,23:15,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493117,Taxi,,,, +01/08/2022,2:49,,,40.837864,-73.9114,"(40.837864, -73.9114)",EAST 170 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4493061,Sedan,Sedan,,, +12/31/2021,11:30,BROOKLYN,11222,40.719845,-73.94726,"(40.719845, -73.94726)",,,450 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493483,Sedan,,,, +01/06/2022,16:15,BROOKLYN,11207,40.662766,-73.89353,"(40.662766, -73.89353)",,,585 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493517,Sedan,,,, +01/08/2022,12:40,QUEENS,11369,40.769363,-73.87538,"(40.769363, -73.87538)",,,22-45 95 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4493132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,3:40,BROOKLYN,11238,40.68372,-73.96491,"(40.68372, -73.96491)",,,489 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4492913,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/08/2022,12:15,QUEENS,11434,40.66641,-73.78467,"(40.66641, -73.78467)",,,153-70 SOUTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4492893,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,12:35,BROOKLYN,11214,40.59039,-73.99155,"(40.59039, -73.99155)",CROPSEY AVENUE,26 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inattention/Distraction,Unspecified,Unspecified,,4493630,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/08/2022,4:53,,,40.662846,-73.94284,"(40.662846, -73.94284)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4493372,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/08/2022,4:05,,,40.61456,-74.156555,"(40.61456, -74.156555)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4493447,Sedan,,,, +01/08/2022,22:50,,,,,,163rd street and 3rd avenue,163rd street and third avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4492949,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,1:30,STATEN ISLAND,10301,40.639057,-74.08325,"(40.639057, -74.08325)",,,45 WINTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493184,Sedan,Sedan,,, +01/07/2022,15:30,BRONX,10467,40.877827,-73.879585,"(40.877827, -73.879585)",EAST 208 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493409,Sedan,Sedan,,, +01/08/2022,19:00,BROOKLYN,11223,40.596172,-73.96658,"(40.596172, -73.96658)",,,2228 EAST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493285,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/08/2022,1:30,,,40.774113,-73.98863,"(40.774113, -73.98863)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4492884,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,11:32,,,40.60226,-74.003075,"(40.60226, -74.003075)",BAY 22 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4492832,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,15:00,BROOKLYN,11203,40.648182,-73.93001,"(40.648182, -73.93001)",UTICA AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493034,Sedan,Convertible,,, +01/08/2022,19:20,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493208,Sedan,,,, +01/08/2022,11:45,QUEENS,11435,40.711037,-73.814445,"(40.711037, -73.814445)",,,142-20 84 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492958,PK,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,14:30,BROOKLYN,11207,40.678787,-73.89613,"(40.678787, -73.89613)",,,111 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493541,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,17:55,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493581,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/26/2021,15:45,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431170,Sedan,Pick-up Truck,,, +10/17/2021,19:30,MANHATTAN,10002,40.7219605,-73.9869544,"(40.7219605, -73.9869544)",,,167 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468142,Sedan,,,, +01/07/2022,1:55,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,CRESCENT STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4493496,Bike,,,, +01/08/2022,13:07,BROOKLYN,11228,40.611263,-74.007645,"(40.611263, -74.007645)",,,1559 85 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493045,Taxi,,,, +01/06/2022,21:33,,,40.678844,-73.86609,"(40.678844, -73.86609)",LIBERTY AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4493510,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,15:42,QUEENS,11691,40.59623,-73.74645,"(40.59623, -73.74645)",,,12-14 HEYSON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493361,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,21:54,BRONX,10469,40.86229,-73.83104,"(40.86229, -73.83104)",,,1990 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4492909,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/17/2021,20:51,QUEENS,11375,40.72145,-73.84399,"(40.72145, -73.84399)",QUEENS BOULEVARD,71 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4493404,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,16:35,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492257,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,7:15,BRONX,10456,40.832573,-73.91052,"(40.832573, -73.91052)",CLAY AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,19:45,,,,,,WEST 96 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492897,Taxi,,,, +01/08/2022,18:07,BROOKLYN,11215,40.664963,-73.98982,"(40.664963, -73.98982)",16 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4492938,Sedan,,,, +01/07/2022,14:27,MANHATTAN,10035,40.806187,-73.940315,"(40.806187, -73.940315)",,,1965 MADISON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4493455,Sedan,Bus,,, +01/03/2022,21:38,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4493442,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,12:25,QUEENS,11004,40.736156,-73.71371,"(40.736156, -73.71371)",HILLSIDE AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492850,Sedan,Sedan,,, +01/08/2022,8:00,,,40.666145,-73.759125,"(40.666145, -73.759125)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493139,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,19:45,BROOKLYN,11214,40.588593,-73.985695,"(40.588593, -73.985695)",,,2808 HARWAY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493557,Sedan,Sedan,,, +01/08/2022,14:00,BROOKLYN,11216,40.67268,-73.953026,"(40.67268, -73.953026)",STERLING PLACE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493566,Sedan,,,, +01/08/2022,4:55,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",WOODHAVEN BOULEVARD,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4492820,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,23:39,,,40.78922,-73.83909,"(40.78922, -73.83909)",129 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4493240,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,10:41,MANHATTAN,10065,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493280,Sedan,,,, +01/08/2022,14:43,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,EAST 54 STREET,,4,0,2,0,0,0,2,0,Pavement Slippery,Unspecified,Unspecified,,,4493042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/07/2022,17:45,,,40.55924,-74.171684,"(40.55924, -74.171684)",DRUMGOOLE ROAD EAST,WAINWRIGHT AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4493460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,5:00,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4493082,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,3:16,,,40.720238,-73.94441,"(40.720238, -73.94441)",HUMBOLDT STREET,MEEKER AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4493256,Sedan,,,, +01/08/2022,9:00,QUEENS,11357,40.791733,-73.81017,"(40.791733, -73.81017)",12 AVENUE,152 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4492928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,4:11,QUEENS,11433,,,,GUY R BREWER BLVD,PHROANE AVE,,5,1,0,0,0,0,5,1,Alcohol Involvement,Unspecified,,,,4492845,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/21/2021,16:07,,,40.672363,-73.9308,"(40.672363, -73.9308)",PARK PLACE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493504,,,,, +02/19/2022,14:15,QUEENS,11355,40.74464,-73.83355,"(40.74464, -73.83355)",59 AVENUE,LAWRENCE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4504812,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,16:34,,,40.8410655,-73.8412578,"(40.8410655, -73.8412578)",WESTCHESTER AVENUE,BLONDELL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468284,Sedan,Sedan,,, +01/08/2022,12:25,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4493395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/08/2022,4:10,QUEENS,11418,40.70695,-73.83785,"(40.70695, -73.83785)",PARK LANE SOUTH,GROSVENOR ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4493469,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/08/2022,15:00,QUEENS,11423,40.72394,-73.77845,"(40.72394, -73.77845)",188 STREET,RADNOR ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492996,Sedan,,,, +01/08/2022,21:03,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,4,0,0,0,0,0,4,0,Passenger Distraction,Unspecified,,,,4492966,Sedan,Taxi,,, +01/06/2022,14:00,BROOKLYN,11208,40.664497,-73.8778,"(40.664497, -73.8778)",,,797 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493428,Sedan,,,, +01/08/2022,17:53,MANHATTAN,10012,40.72425,-74.002205,"(40.72425, -74.002205)",,,390 WEST BROADWAY,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4493065,Sedan,Motorcycle,,, +01/08/2022,20:00,QUEENS,11373,40.74664,-73.891396,"(40.74664, -73.891396)",BROADWAY,74 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4493149,Station Wagon/Sport Utility Vehicle,Bus,,, +11/21/2021,6:30,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4493613,Sedan,,,, +01/07/2022,21:45,BROOKLYN,11207,40.67046,-73.88788,"(40.67046, -73.88788)",SUTTER AVENUE,SCHENCK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493530,Sedan,Bike,,, +01/08/2022,13:30,,,40.699715,-73.96182,"(40.699715, -73.96182)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,18:50,QUEENS,11373,40.73485,-73.87956,"(40.73485, -73.87956)",VANHORN STREET,53 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493048,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,22:45,BROOKLYN,11236,40.64542,-73.90266,"(40.64542, -73.90266)",,,1420 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4493513,Taxi,Sedan,,, +01/07/2022,2:42,,,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493522,Tractor Truck Diesel,E-Scooter,,, +01/08/2022,13:08,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",BRADFORD STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/08/2022,0:28,BROOKLYN,11215,40.668293,-73.97924,"(40.668293, -73.97924)",,,506 6 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493119,Ambulance,,,, +02/20/2022,19:04,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504241,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,14:12,BROOKLYN,11210,40.62625,-73.95163,"(40.62625, -73.95163)",AVENUE J,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504359,Sedan,Sedan,,, +02/20/2022,1:00,,,40.69205,-73.982544,"(40.69205, -73.982544)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4504897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/17/2022,15:00,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4504731,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +02/20/2022,18:00,,,40.836937,-73.927124,"(40.836937, -73.927124)",WEST 167 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504371,Sedan,Sedan,,, +02/20/2022,6:06,,,40.651688,-73.9314,"(40.651688, -73.9314)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504512,Sedan,Sedan,,, +02/19/2022,19:00,BRONX,10457,40.847713,-73.89182,"(40.847713, -73.89182)",,,623 EAST 179 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504737,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,18:00,,,40.69821,-73.92406,"(40.69821, -73.92406)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504344,Station Wagon/Sport Utility Vehicle,Bike,,, +02/20/2022,5:26,STATEN ISLAND,10312,40.542576,-74.16726,"(40.542576, -74.16726)",MOSELY AVENUE,BAMBERGER LANE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4504299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,22:57,MANHATTAN,10016,40.74371,-73.97332,"(40.74371, -73.97332)",,,401 EAST 34 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4504800,Sedan,,,, +02/11/2022,6:07,QUEENS,11385,40.696133,-73.90225,"(40.696133, -73.90225)",,,1649 NORMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504819,Sedan,Sedan,,, +10/17/2021,0:17,,,40.6071903,-74.1624214,"(40.6071903, -74.1624214)",VICTORY BOULEVARD,RICHMOND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4468367,Pick-up Truck,Sedan,,, +04/05/2022,20:00,BRONX,10459,40.82406,-73.8998,"(40.82406, -73.8998)",PROSPECT AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,15:35,QUEENS,11101,40.7493,-73.949425,"(40.7493, -73.949425)",11 STREET,44 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516587,Sedan,Sedan,,, +03/26/2022,16:00,QUEENS,11369,40.76055,-73.869064,"(40.76055, -73.869064)",,,31-15 100 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516958,Sedan,,,, +04/05/2022,7:52,,,40.769062,-73.96112,"(40.769062, -73.96112)",3 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516469,Box Truck,Sedan,,, +04/05/2022,15:50,BROOKLYN,11239,40.654686,-73.87772,"(40.654686, -73.87772)",GATEWAY DRIVE,VANDALIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516850,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,1:13,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",EASTERN PARKWAY,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4516951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/04/2022,16:40,BROOKLYN,11212,40.660675,-73.91527,"(40.660675, -73.91527)",,,818 SARATOGA AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4516972,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,12:03,,,40.688305,-73.75607,"(40.688305, -73.75607)",120 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516481,Sedan,,,, +04/05/2022,3:58,,,40.81339,-73.95627,"(40.81339, -73.95627)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4516535,E-Bike,,,, +04/05/2022,0:00,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516576,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,17:41,BRONX,10451,40.819057,-73.92923,"(40.819057, -73.92923)",EAST 149 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516701,Taxi,Sedan,,, +03/25/2022,20:00,QUEENS,11378,40.720917,-73.902916,"(40.720917, -73.902916)",,,58-25 FRESH POND ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516996,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/19/2022,17:35,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,10:00,BROOKLYN,11218,40.648586,-73.979355,"(40.648586, -73.979355)",,,140 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516502,Sedan,,,, +04/05/2022,8:45,,,40.817596,-73.95319,"(40.817596, -73.95319)",WEST 133 STREET,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4516597,Taxi,,,, +04/05/2022,0:55,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4516435,Sedan,Sedan,,, +04/05/2022,10:54,BROOKLYN,11235,40.579376,-73.96311,"(40.579376, -73.96311)",OCEANVIEW AVENUE,BRIGHTON 5 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516552,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,6:57,STATEN ISLAND,10306,40.568707,-74.11793,"(40.568707, -74.11793)",10 STREET,ALLISON AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4516821,Sedan,Sedan,,, +04/05/2022,14:20,QUEENS,11040,40.75122,-73.70266,"(40.75122, -73.70266)",,,77-70 271 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/04/2022,12:45,,,40.831944,-73.91987,"(40.831944, -73.91987)",EAST 166 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4517049,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,5:37,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4516959,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,21:24,QUEENS,11414,40.667362,-73.84419,"(40.667362, -73.84419)",,,90-30 153 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4516629,Sedan,Sedan,Sedan,Sedan, +04/05/2022,6:00,,,40.701572,-73.9313,"(40.701572, -73.9313)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516886,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,2:00,QUEENS,11379,40.71891,-73.89228,"(40.71891, -73.89228)",,,68-08 ELIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516967,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/30/2022,10:46,,,40.794807,-73.94441,"(40.794807, -73.94441)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516941,Sedan,Tow Truck / Wrecker,,, +04/05/2022,18:00,MANHATTAN,10029,40.794613,-73.9321,"(40.794613, -73.9321)",,,545 EAST 116 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516684,Sedan,,,, +04/05/2022,21:04,,,40.84771,-73.93798,"(40.84771, -73.93798)",WEST 177 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517020,Station Wagon/Sport Utility Vehicle,Bike,,, +01/09/2022,4:45,MANHATTAN,10036,40.757908,-73.9893,"(40.757908, -73.9893)",WEST 43 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4493110,Sedan,,,, +04/05/2022,6:30,,,40.726357,-73.76388,"(40.726357, -73.76388)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,12:50,BRONX,10463,40.887444,-73.907166,"(40.887444, -73.907166)",,,3709 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517042,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,8:20,,,40.786358,-73.794685,"(40.786358, -73.794685)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,8:10,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4516414,Sedan,Sedan,,, +04/01/2022,16:55,BRONX,10461,40.84443,-73.83059,"(40.84443, -73.83059)",,,1618 CROSBY AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4517068,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,8:30,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516523,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,23:18,BROOKLYN,11211,40.706,-73.95698,"(40.706, -73.95698)",KEAP STREET,MARCY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516653,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,20:10,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517002,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,9:14,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516663,Sedan,Garbage or Refuse,,, +04/05/2022,13:00,MANHATTAN,10065,40.76591,-73.96341,"(40.76591, -73.96341)",EAST 66 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516777,Sedan,Sedan,,, +03/28/2022,18:50,BRONX,10463,40.888382,-73.90875,"(40.888382, -73.90875)",,,523 WEST 238 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4517010,Station Wagon/Sport Utility Vehicle,SCOOTER,Sedan,, +04/05/2022,16:20,QUEENS,11373,40.73794,-73.866394,"(40.73794, -73.866394)",,,55-18 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,19:20,QUEENS,11413,40.679554,-73.751,"(40.679554, -73.751)",,,218-22 MERRICK BOULEVARD,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4516589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,12:00,,,40.758904,-73.9012,"(40.758904, -73.9012)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517060,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,8:30,BROOKLYN,11207,40.666443,-73.90026,"(40.666443, -73.90026)",,,350 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516858,Bus,Sedan,,, +04/05/2022,8:00,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,23:18,BRONX,10454,40.807255,-73.92721,"(40.807255, -73.92721)",,,131 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516670,Sedan,Sedan,,, +04/05/2022,23:25,,,40.841187,-73.93215,"(40.841187, -73.93215)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516727,Sedan,Sedan,,, +03/30/2022,18:44,BRONX,10451,40.82054,-73.930786,"(40.82054, -73.930786)",EXTERIOR STREET,EAST 150 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,Unspecified,,,4517026,Sedan,Sedan,Sedan,, +04/05/2022,21:04,,,40.698254,-73.90878,"(40.698254, -73.90878)",WYCKOFF AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4516746,Sedan,Sedan,,, +04/01/2022,15:05,,,40.828915,-73.83841,"(40.828915, -73.83841)",CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517031,Sedan,Sedan,,, +04/05/2022,7:55,BROOKLYN,11226,40.645256,-73.94682,"(40.645256, -73.94682)",,,3214 BEVERLEY ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516379,Sedan,Sedan,,, +04/02/2022,6:25,QUEENS,11412,40.700657,-73.757965,"(40.700657, -73.757965)",197 STREET,113 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517173,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/27/2022,17:20,QUEENS,11106,40.763763,-73.93098,"(40.763763, -73.93098)",,,33-06 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517061,Sedan,,,, +04/05/2022,23:50,,,40.5385,-74.19778,"(40.5385, -74.19778)",ELLSWORTH AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Pavement Slippery,,,,4516622,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,22:18,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516919,E-Scooter,,,, +04/05/2022,5:37,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516516,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,18:30,MANHATTAN,10019,40.766697,-73.99462,"(40.766697, -73.99462)",,,609 WEST 51 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516896,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,18:40,BROOKLYN,11223,40.585693,-73.968254,"(40.585693, -73.968254)",,,29 MURDOCK COURT,1,0,1,0,0,0,0,0,Unspecified,,,,,4517092,Sedan,,,, +04/05/2022,13:25,BRONX,10472,40.833015,-73.86371,"(40.833015, -73.86371)",,,1308 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517003,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,7:45,MANHATTAN,10035,40.80487,-73.93859,"(40.80487, -73.93859)",,,103 EAST 125 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516683,Sedan,Sedan,,, +04/05/2022,5:33,BROOKLYN,11203,40.64829,-73.944496,"(40.64829, -73.944496)",,,282 EAST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516717,Sedan,,,, +02/22/2022,18:53,BROOKLYN,11212,40.665627,-73.909706,"(40.665627, -73.909706)",ROCKAWAY AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516976,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,11:37,,,40.609142,-74.11835,"(40.609142, -74.11835)",SCHMIDTS LANE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516822,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,17:00,QUEENS,11411,40.697777,-73.745865,"(40.697777, -73.745865)",207 STREET,116 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516544,Sedan,,,, +04/05/2022,14:44,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4516584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/05/2022,7:57,,,40.703045,-73.92985,"(40.703045, -73.92985)",GEORGE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,15:40,BROOKLYN,11207,40.658882,-73.89738,"(40.658882, -73.89738)",,,642 HINSDALE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516851,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,8:30,MANHATTAN,10019,40.7677,-73.981964,"(40.7677, -73.981964)",,,2 COLUMBUS CIRCLE,0,0,0,0,0,0,0,0,Alcohol Involvement,Following Too Closely,,,,4516645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,15:00,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:53,,,40.7826,-73.79446,"(40.7826, -73.79446)",UTOPIA PARKWAY,17 AVENUE,,0,0,0,0,0,0,0,0,,,,,,4516548,,,,, +04/05/2022,16:19,BROOKLYN,11215,40.661175,-73.9886,"(40.661175, -73.9886)",,,329 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516590,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,7:50,BROOKLYN,11233,40.67265,-73.91963,"(40.67265, -73.91963)",PROSPECT PLACE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516983,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,20:32,,,40.823566,-73.93768,"(40.823566, -73.93768)",7 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4516952,Sedan,PK,,, +04/03/2022,9:15,QUEENS,11369,40.76164,-73.86723,"(40.76164, -73.86723)",ASTORIA BOULEVARD,102 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516961,Bike,,,, +04/05/2022,8:42,QUEENS,11434,40.674744,-73.76368,"(40.674744, -73.76368)",FARMERS BOULEVARD,WESTGATE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516467,Sedan,Box Truck,,, +04/05/2022,13:15,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516723,Pick-up Truck,Tractor Truck Diesel,,, +04/05/2022,10:40,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516506,Sedan,,,, +04/05/2022,21:00,,,40.67624,-73.866104,"(40.67624, -73.866104)",CONDUIT BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516856,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,7:40,,,40.68425,-73.86257,"(40.68425, -73.86257)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4516434,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,19:51,BROOKLYN,11209,40.627426,-74.0309,"(40.627426, -74.0309)",,,251 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/04/2022,20:30,,,40.818947,-73.95221,"(40.818947, -73.95221)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516950,Sedan,Bus,,, +04/05/2022,20:27,,,40.8332,-73.81702,"(40.8332, -73.81702)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4516807,Sedan,Pick-up Truck,Pick-up Truck,, +04/05/2022,15:08,QUEENS,11421,40.69595,-73.86237,"(40.69595, -73.86237)",FOREST PARKWAY,PARK LANE SOUTH,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4516530,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,21:40,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",ESSEX STREET,DELANCEY STREET,,2,0,0,0,0,0,0,0,Turning Improperly,,,,,4517076,E-Scooter,,,, +04/02/2022,11:20,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4517043,Sedan,Sedan,Sedan,Sedan,Sedan +04/05/2022,9:27,BROOKLYN,11211,40.710587,-73.95511,"(40.710587, -73.95511)",RODNEY STREET,BORINQUEN PLACE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516654,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:25,STATEN ISLAND,10301,40.63611,-74.07591,"(40.63611, -74.07591)",,,215 BAY STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516632,Ambulance,Sedan,,, +04/02/2022,10:53,QUEENS,11379,40.708595,-73.87326,"(40.708595, -73.87326)",,,69-44 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516995,Sedan,,,, +04/05/2022,1:07,BROOKLYN,11233,40.6827,-73.929016,"(40.6827, -73.929016)",REID AVENUE,MACDONOUGH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517018,Sedan,Sedan,,, +04/05/2022,10:30,BRONX,10474,40.81813,-73.89101,"(40.81813, -73.89101)",GARRISON AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516664,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,8:17,BRONX,10455,,,,,,919 Avenue Saint John,1,0,1,0,0,0,0,0,Unspecified,,,,,4516525,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,1:50,BROOKLYN,11207,40.667118,-73.88889,"(40.667118, -73.88889)",VAN SICLEN AVENUE,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4516501,Sedan,,,, +04/05/2022,15:15,QUEENS,11432,40.707275,-73.79265,"(40.707275, -73.79265)",,,168-09 91 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517102,Tow Truck / Wrecker,Sedan,,, +04/05/2022,7:55,BRONX,10456,40.825287,-73.90493,"(40.825287, -73.90493)",EAST 165 STREET,TRINITY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516884,Station Wagon/Sport Utility Vehicle,,,, +03/21/2022,17:17,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516966,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,12:56,QUEENS,11385,40.703247,-73.90844,"(40.703247, -73.90844)",SENECA AVENUE,GATES AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4516553,Moped,Bus,,, +04/05/2022,15:12,BRONX,10457,40.84571,-73.88941,"(40.84571, -73.88941)",EAST 178 STREET,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516685,Station Wagon/Sport Utility Vehicle,Bus,,, +03/23/2022,10:45,MANHATTAN,10027,40.81106,-73.95119,"(40.81106, -73.95119)",,,315 WEST 126 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Other Vehicular,Unspecified,,4516938,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/05/2022,13:20,,,40.7366,-73.98185,"(40.7366, -73.98185)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516762,Taxi,,,, +04/05/2022,10:45,BRONX,10469,40.87321,-73.85339,"(40.87321, -73.85339)",,,1154 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4516484,Sedan,,,, +04/05/2022,7:15,BRONX,10462,40.847286,-73.861145,"(40.847286, -73.861145)",MULINER AVENUE,DELANCEY PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516418,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,18:17,BROOKLYN,11224,40.579357,-73.98046,"(40.579357, -73.98046)",,,1109 NEPTUNE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516607,Sedan,Sedan,Sedan,, +04/05/2022,10:00,,,,,,WASHINGTON BRIDGE 181 ST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516706,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,7:15,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516574,Sedan,Pick-up Truck,,, +04/04/2022,10:30,QUEENS,11372,,,,,,7802 37 AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4517048,Sedan,,,, +04/05/2022,11:40,MANHATTAN,10002,40.717663,-73.98556,"(40.717663, -73.98556)",,,168 DELANCEY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517069,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,13:30,QUEENS,11385,40.71018,-73.86103,"(40.71018, -73.86103)",,,89-26 RUTLEDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516999,Sedan,,,, +04/05/2022,11:49,,,,,,VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516624,Box Truck,Bus,,, +04/02/2022,20:36,BROOKLYN,11221,40.688164,-73.9331,"(40.688164, -73.9331)",,,185 STUYVESANT AVENUE,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4517011,Sedan,Sedan,,, +04/05/2022,17:05,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516853,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +04/05/2022,14:34,QUEENS,11378,40.722225,-73.904495,"(40.722225, -73.904495)",,,57-25 61 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4516517,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,17:50,BROOKLYN,11219,40.63557,-74.000595,"(40.63557, -74.000595)",,,1044 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516930,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,13:00,,,40.743793,-73.88603,"(40.743793, -73.88603)",WOODSIDE AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517147,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,6:30,QUEENS,11426,40.72604,-73.71829,"(40.72604, -73.71829)",JAMAICA AVENUE,COMMONWEALTH BOULEVARD,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4516824,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,11:40,BROOKLYN,11208,40.664898,-73.88131,"(40.664898, -73.88131)",,,811 CLEVELAND STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516505,Sedan,,,, +04/05/2022,4:55,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516549,Sedan,,,, +03/27/2022,2:30,QUEENS,11378,40.722942,-73.90357,"(40.722942, -73.90357)",,,61-31 MASPETH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4516971,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/03/2022,18:50,BROOKLYN,11212,40.66785,-73.92103,"(40.66785, -73.92103)",TAPSCOTT STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516962,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,9:29,,,40.773335,-73.95506,"(40.773335, -73.95506)",2 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4516471,Bus,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,10:30,QUEENS,11375,40.71837,-73.84057,"(40.71837, -73.84057)",AUSTIN STREET,ASCAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517007,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,17:53,BRONX,10469,40.862766,-73.843445,"(40.862766, -73.843445)",EASTCHESTER ROAD,MACE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516669,Sedan,Bus,,, +03/28/2022,18:10,QUEENS,11385,40.709682,-73.89891,"(40.709682, -73.89891)",FRESH POND ROAD,LINDEN STREET,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4517058,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,12:21,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517065,Sedan,Flat Bed,,, +04/05/2022,0:04,BROOKLYN,11236,40.640278,-73.91102,"(40.640278, -73.91102)",,,651 EAST 86 STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4516388,Sedan,Sedan,Sedan,Sedan, +04/05/2022,10:00,BRONX,10473,40.82373,-73.85867,"(40.82373, -73.85867)",,,880 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4516721,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,16:07,QUEENS,11436,40.67045,-73.793335,"(40.67045, -73.793335)",130 AVENUE,INWOOD STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4516747,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +03/29/2022,17:20,,,40.836403,-73.875595,"(40.836403, -73.875595)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4517175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,21:00,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516620,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +03/21/2022,15:25,BROOKLYN,11212,40.668575,-73.913376,"(40.668575, -73.913376)",,,487 BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516978,Sedan,,,, +04/05/2022,9:20,QUEENS,11368,40.73686,-73.85579,"(40.73686, -73.85579)",,,98-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4516644,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,7:00,,,40.68949,-73.92207,"(40.68949, -73.92207)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516732,Sedan,Sedan,,, +04/05/2022,10:49,QUEENS,11377,40.740425,-73.89671,"(40.740425, -73.89671)",68 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516538,Sedan,,,, +04/05/2022,5:15,QUEENS,11413,40.662006,-73.7546,"(40.662006, -73.7546)",225 STREET,145 ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4516458,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,22:15,QUEENS,11361,40.764847,-73.77336,"(40.764847, -73.77336)",,,212-18 39 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4543159,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2022,9:45,BROOKLYN,11212,40.65769,-73.90769,"(40.65769, -73.90769)",,,890 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516984,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,18:28,MANHATTAN,10065,40.769222,-73.967316,"(40.769222, -73.967316)",EAST 68 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516593,Bus,Taxi,,, +10/12/2021,13:10,,,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4466596,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/06/2016,14:56,BROOKLYN,11212,40.6581825,-73.9246436,"(40.6581825, -73.9246436)",EAST 91 STREET,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,3460534,4 dr sedan,,,, +09/26/2016,16:58,BROOKLYN,11203,40.6582119,-73.9304718,"(40.6582119, -73.9304718)",,,870 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,3528065,Sedan,Sedan,Sedan,, +04/05/2022,18:05,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/05/2022,17:35,BROOKLYN,11212,40.66157,-73.91548,"(40.66157, -73.91548)",SARATOGA AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516953,Sedan,Sedan,,, +04/05/2022,18:00,,,40.704067,-73.93861,"(40.704067, -73.93861)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4516635,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,15:00,BRONX,10458,40.86764,-73.89237,"(40.86764, -73.89237)",,,209 EAST 196 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516679,Sedan,Sedan,,, +04/05/2022,23:46,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517083,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,10:40,,,,,,CONCOURSE VILLAGE EAST,EAST 153 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517035,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,15:00,BROOKLYN,11203,40.644638,-73.92644,"(40.644638, -73.92644)",,,5317 CLARENDON ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4516716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:18,,,,,,GRAND CENTRAL PARKWAY,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516625,Van,Bus,,, +03/09/2022,8:52,MANHATTAN,10016,,,,EAST 34 STREET,Tunnel exit street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517013,Sedan,,,, +04/04/2022,21:10,BRONX,10471,40.896114,-73.89677,"(40.896114, -73.89677)",,,6201 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4517025,Motorscooter,,,, +04/05/2022,23:40,BRONX,10467,40.87218,-73.86823,"(40.87218, -73.86823)",,,3236 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517044,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,16:30,BROOKLYN,11211,40.714252,-73.947235,"(40.714252, -73.947235)",,,650 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4516655,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/29/2022,16:35,MANHATTAN,10033,40.850227,-73.93982,"(40.850227, -73.93982)",,,819 WEST 180 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543542,Sedan,,,, +07/03/2022,20:16,QUEENS,11421,40.69288,-73.85453,"(40.69288, -73.85453)",,,90-07 JAMAICA AVENUE,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4543498,Sedan,Pick-up Truck,,, +07/03/2022,14:35,,,40.629646,-74.010704,"(40.629646, -74.010704)",67 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543065,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,7:05,QUEENS,11417,40.670647,-73.83527,"(40.670647, -73.83527)",,,98-45 BRISTOL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543700,,,,, +07/03/2022,3:00,BRONX,10467,40.8603,-73.86368,"(40.8603, -73.86368)",,,2336 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543640,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,13:00,BROOKLYN,11226,40.643005,-73.95263,"(40.643005, -73.95263)",EAST 26 STREET,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543306,Sedan,,,, +07/03/2022,3:15,BRONX,10456,40.819588,-73.9105,"(40.819588, -73.9105)",,,747 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4543241,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/30/2022,23:10,,,40.80647,-73.94644,"(40.80647, -73.94644)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543587,Sedan,E-Scooter,,, +06/28/2022,15:11,BRONX,10474,40.808952,-73.88792,"(40.808952, -73.88792)",,,437 BARRETTO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543612,Box Truck,Van,,, +07/03/2022,16:52,BRONX,10453,40.856388,-73.90177,"(40.856388, -73.90177)",EAST 182 STREET,CRESTON AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543343,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/03/2022,0:25,QUEENS,11375,40.7243,-73.84517,"(40.7243, -73.84517)",108 STREET,69 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543050,Sedan,Pick-up Truck,,, +07/03/2022,18:00,BROOKLYN,11207,40.672882,-73.89808,"(40.672882, -73.89808)",GLENMORE AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,14:00,,,40.73149,-73.84215,"(40.73149, -73.84215)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4542959,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,19:30,QUEENS,11361,40.763844,-73.769455,"(40.763844, -73.769455)",214 PLACE,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543717,Sedan,Sedan,,, +06/25/2022,22:45,,,40.828728,-73.95221,"(40.828728, -73.95221)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4543519,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/02/2022,19:45,,,40.75092,-73.86224,"(40.75092, -73.86224)",104 STREET,39 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543559,Sedan,,,, +07/03/2022,21:58,QUEENS,11423,40.72381,-73.76636,"(40.72381, -73.76636)",,,199-01 EPSOM COURSE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543100,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,14:29,,,40.66381,-73.91117,"(40.66381, -73.91117)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543391,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2022,19:20,MANHATTAN,10034,40.8668,-73.92374,"(40.8668, -73.92374)",,,4865 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543537,Sedan,Sedan,,, +06/28/2022,23:17,QUEENS,11374,40.722572,-73.8628,"(40.722572, -73.8628)",64 ROAD,CROMWELL CRESCENT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543491,Motorcycle,,,, +07/03/2022,3:35,,,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4542949,Sedan,Sedan,,, +07/03/2022,2:30,,,40.6992,-73.92309,"(40.6992, -73.92309)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4542873,Sedan,Sedan,Sedan,, +07/03/2022,3:37,QUEENS,11104,40.740173,-73.926926,"(40.740173, -73.926926)",39 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543174,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,4:45,BROOKLYN,11207,40.67628,-73.892166,"(40.67628, -73.892166)",ATLANTIC AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543774,Sedan,Sedan,,, +07/03/2022,11:58,BRONX,10458,40.85476,-73.888245,"(40.85476, -73.888245)",EAST 186 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4543446,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2022,21:50,MANHATTAN,10016,40.748985,-73.979965,"(40.748985, -73.979965)",EAST 37 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543111,Taxi,Sedan,,, +06/23/2022,16:10,BROOKLYN,11221,40.694107,-73.93128,"(40.694107, -73.93128)",,,9 REID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543644,Sedan,,,, +06/11/2022,18:44,BROOKLYN,11236,40.63285,-73.89119,"(40.63285, -73.89119)",,,9511 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543685,Sedan,Bike,,, +07/03/2022,8:00,,,40.82312,-73.9505,"(40.82312, -73.9505)",HAMILTON PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543594,Sedan,,,, +06/25/2022,15:09,MANHATTAN,10019,40.770294,-73.98769,"(40.770294, -73.98769)",,,1000 10 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543746,Sedan,Sedan,,, +07/03/2022,12:56,,,40.810207,-73.93951,"(40.810207, -73.93951)",5 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4543188,Van,Bike,,, +07/03/2022,4:30,MANHATTAN,10034,40.86114,-73.91894,"(40.86114, -73.91894)",WEST 203 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4543606,Sedan,,,, +07/02/2022,9:48,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543771,Sedan,Sedan,,, +07/03/2022,19:15,QUEENS,11693,40.588,-73.80729,"(40.588, -73.80729)",BEACH 81 STREET,ROCKAWAY BEACH BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,21:00,BROOKLYN,11207,40.67811,-73.89762,"(40.67811, -73.89762)",JAMAICA AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543794,Sedan,Sedan,,, +07/03/2022,18:10,,,40.67801,-73.94138,"(40.67801, -73.94138)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543018,Station Wagon/Sport Utility Vehicle,,,, +06/06/2022,15:50,BROOKLYN,11215,,,,PRESIDENT STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543531,Sedan,,,, +07/02/2022,14:30,,,40.580975,-74.00402,"(40.580975, -74.00402)",BAY VIEW AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543722,Sedan,Sedan,,, +07/03/2022,15:20,QUEENS,11419,40.68771,-73.832565,"(40.68771, -73.832565)",,,101-29 111 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543502,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,13:45,BROOKLYN,11213,40.667053,-73.93212,"(40.667053, -73.93212)",,,1674 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542990,Sedan,,,, +07/03/2022,4:00,QUEENS,11432,40.712055,-73.800964,"(40.712055, -73.800964)",,,85-19 164 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,11:00,QUEENS,11368,40.75639,-73.859726,"(40.75639, -73.859726)",34 AVENUE,109 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543564,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/03/2022,18:10,BROOKLYN,11236,40.64433,-73.919914,"(40.64433, -73.919914)",CANARSIE LANE,RALPH AVENUE,,1,0,1,0,0,0,0,0,,,,,,4493725,,,,, +04/06/2022,5:54,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4516697,Sedan,,,, +07/02/2022,2:50,QUEENS,11372,40.75169,-73.88562,"(40.75169, -73.88562)",81 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4543554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,13:44,QUEENS,11377,40.73897,-73.919556,"(40.73897, -73.919556)",,,48-52 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4542933,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,13:45,MANHATTAN,10019,40.765675,-73.97624,"(40.765675, -73.97624)",CENTRAL PARK SOUTH,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543748,Box Truck,Bike,,, +07/03/2022,21:38,BROOKLYN,11208,40.68429,-73.8744,"(40.68429, -73.8744)",,,171 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543799,Sedan,,,, +07/03/2022,5:40,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543602,Sedan,Sedan,,, +07/03/2022,13:20,BRONX,10462,40.8381,-73.85929,"(40.8381, -73.85929)",,,1551 UNIONPORT ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543367,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/04/2022,13:25,QUEENS,11372,40.750053,-73.88133,"(40.750053, -73.88133)",,,85-08 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543659,Sedan,,,, +06/03/2021,20:50,BROOKLYN,11223,40.60009,-73.96591,"(40.60009, -73.96591)",AVENUE T,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4425978,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,14:10,BROOKLYN,11217,40.685192,-73.977036,"(40.685192, -73.977036)",SAINT FELIX STREET,HANSON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431020,Sedan,,,, +06/25/2021,6:30,,,40.678097,-74.00235,"(40.678097, -74.00235)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432033,TF,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,4:13,BRONX,10466,40.889866,-73.862724,"(40.889866, -73.862724)",,,4017 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431400,Sedan,Sedan,,, +06/26/2021,17:54,,,40.83369,-73.91386,"(40.83369, -73.91386)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431228,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,11:30,BROOKLYN,11211,40.710716,-73.95359,"(40.710716, -73.95359)",BORINQUEN PLACE,KEAP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431994,Box Truck,Sedan,,, +06/26/2021,1:15,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,ALLEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431953,,,,, +06/26/2021,1:20,MANHATTAN,10029,40.789055,-73.94861,"(40.789055, -73.94861)",LEXINGTON AVENUE,EAST 101 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431768,Station Wagon/Sport Utility Vehicle,Bus,,, +06/25/2021,21:58,MANHATTAN,10036,40.76039,-73.98938,"(40.76039, -73.98938)",,,350 WEST 46 STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4431744,,,,, +06/26/2021,0:30,,,40.73361,-73.92385,"(40.73361, -73.92385)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4430976,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,2:10,BROOKLYN,11230,40.61848,-73.96107,"(40.61848, -73.96107)",,,1277 EAST 14 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4431204,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/26/2021,17:00,BROOKLYN,11211,40.707973,-73.950645,"(40.707973, -73.950645)",,,261 UNION AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431999,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,13:00,QUEENS,11372,40.747536,-73.884865,"(40.747536, -73.884865)",81 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431545,Sedan,,,, +06/26/2021,13:15,QUEENS,11434,40.681988,-73.76634,"(40.681988, -73.76634)",MERRICK BOULEVARD,126 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4431280,Sedan,Sedan,Sedan,, +06/26/2021,3:30,MANHATTAN,10036,40.7615,-73.997826,"(40.7615, -73.997826)",12 AVENUE,WEST 44 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431722,Sedan,Sedan,,, +06/18/2021,12:28,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431807,Sedan,Sedan,,, +06/25/2021,16:10,QUEENS,11435,40.704483,-73.81419,"(40.704483, -73.81419)",,,139-29 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431880,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,3:20,,,40.713135,-74.00407,"(40.713135, -74.00407)",CENTRE STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4430998,Van,Sedan,,, +06/26/2021,16:15,BROOKLYN,11233,40.68061,-73.90814,"(40.68061, -73.90814)",,,309 MACDOUGAL STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4431315,Sedan,,,, +06/25/2021,11:13,,,40.807095,-73.945984,"(40.807095, -73.945984)",WEST 124 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431766,Taxi,,,, +06/19/2021,15:45,QUEENS,11426,40.73403,-73.723656,"(40.73403, -73.723656)",HILLSIDE AVENUE,243 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4428739,Pick-up Truck,Sedan,Sedan,, +06/24/2021,10:00,BRONX,10463,40.882767,-73.88864,"(40.882767, -73.88864)",SEDGWICK AVENUE,DICKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431796,Sedan,,,, +06/26/2021,18:10,BROOKLYN,11235,40.587383,-73.95422,"(40.587383, -73.95422)",SHEEPSHEAD BAY ROAD,EAST 15 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4431692,Bike,,,, +06/26/2021,10:10,QUEENS,11411,40.69821,-73.737526,"(40.69821, -73.737526)",221 STREET,115 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431023,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,16:34,,,40.758255,-73.7772,"(40.758255, -73.7772)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431145,Sedan,,,, +06/26/2021,10:25,BROOKLYN,11209,40.618595,-74.035995,"(40.618595, -74.035995)",RIDGE BOULEVARD,94 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431424,Sedan,Bike,,, +06/23/2021,22:00,BROOKLYN,11206,40.70577,-73.9368,"(40.70577, -73.9368)",,,285 MC KIBBIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431984,Sedan,,,, +06/26/2021,17:40,,,,,,FOREST PARK DRIVE,MYRTLE AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431466,Sedan,E-Scooter,,, +06/26/2021,18:15,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",EAST 95 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431570,Sedan,,,, +06/26/2021,20:00,BRONX,10465,40.828075,-73.840065,"(40.828075, -73.840065)",,,2560 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4431609,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,14:30,QUEENS,11419,40.68811,-73.819336,"(40.68811, -73.819336)",125 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431099,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/26/2021,11:25,,,40.7483,-73.73825,"(40.7483, -73.73825)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431050,Sedan,Sedan,,, +06/25/2021,16:00,BRONX,10473,40.820297,-73.854645,"(40.820297, -73.854645)",SEWARD AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431831,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,9:00,BROOKLYN,11234,40.62051,-73.92511,"(40.62051, -73.92511)",,,1594 EAST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543670,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,20:52,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4431902,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/26/2021,0:12,QUEENS,11372,40.754387,-73.89653,"(40.754387, -73.89653)",70 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431089,Sedan,Sedan,,, +06/26/2021,13:58,QUEENS,11364,40.739567,-73.75771,"(40.739567, -73.75771)",,,73-62 BELL BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431051,Sedan,Sedan,,, +06/26/2021,21:45,MANHATTAN,10029,40.795437,-73.943954,"(40.795437, -73.943954)",LEXINGTON AVENUE,EAST 111 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431778,Sedan,Bike,,, +06/26/2021,13:50,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4431138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +06/26/2021,10:10,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431038,Sedan,Box Truck,,, +06/26/2021,0:00,,,40.86261,-73.82679,"(40.86261, -73.82679)",HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4431607,Sedan,Taxi,Sedan,, +06/26/2021,20:42,,,40.863113,-73.920616,"(40.863113, -73.920616)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432051,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,15:26,QUEENS,11106,40.76282,-73.92029,"(40.76282, -73.92029)",35 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431273,Sedan,Motorcycle,,, +06/26/2021,9:00,BROOKLYN,11216,40.678345,-73.94623,"(40.678345, -73.94623)",,,1382 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431337,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,10:45,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WILLIAMSBURG STREET EAST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431991,Sedan,,,, +06/24/2021,0:00,BROOKLYN,11211,40.701397,-73.95808,"(40.701397, -73.95808)",RUTLEDGE STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432009,Station Wagon/Sport Utility Vehicle,Bike,,, +06/26/2021,14:42,MANHATTAN,10030,40.81789,-73.93999,"(40.81789, -73.93999)",,,151 WEST 140 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431666,Sedan,,,, +06/26/2021,22:43,QUEENS,11385,40.699883,-73.90831,"(40.699883, -73.90831)",MYRTLE AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4431506,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/26/2021,19:10,BRONX,10457,40.842987,-73.900345,"(40.842987, -73.900345)",EAST 174 STREET,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4431625,Firetruck,Sedan,Sedan,, +06/26/2021,11:45,STATEN ISLAND,10312,40.55542,-74.182976,"(40.55542, -74.182976)",,,383 WOODROW ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431045,Sedan,Bike,,, +06/26/2021,17:05,BROOKLYN,11220,40.64546,-74.00638,"(40.64546, -74.00638)",6 AVENUE,47 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431117,Sedan,Bike,,, +06/26/2021,16:53,,,40.820515,-73.930695,"(40.820515, -73.930695)",EXTERIOR STREET,EAST 149 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431217,Sedan,Sedan,,, +06/26/2021,23:40,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431822,Sedan,Sedan,,, +06/25/2021,2:00,QUEENS,11419,40.687283,-73.827415,"(40.687283, -73.827415)",,,116-09 103 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431922,Sedan,,,, +06/26/2021,20:09,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",TROUTMAN STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431460,Sedan,,,, +06/22/2021,10:15,MANHATTAN,10019,40.76636,-73.97789,"(40.76636, -73.97789)",,,160 CENTRAL PARK SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431736,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2021,22:45,BROOKLYN,11208,40.669415,-73.88231,"(40.669415, -73.88231)",,,544 ELTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431834,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,15:05,QUEENS,11361,40.75776,-73.7834,"(40.75776, -73.7834)",NORTHERN BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431147,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,9:25,,,40.667095,-73.92276,"(40.667095, -73.92276)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431889,Sedan,Sedan,,, +06/26/2021,22:00,,,40.687992,-73.98962,"(40.687992, -73.98962)",SMITH STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431184,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,22:25,,,40.860264,-73.90164,"(40.860264, -73.90164)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431782,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,2:30,MANHATTAN,10012,40.72445,-74.00404,"(40.72445, -74.00404)",,,63 SULLIVAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431057,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,5:05,MANHATTAN,10019,40.76571,-73.991035,"(40.76571, -73.991035)",,,760 10 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,0:54,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4542813,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,21:40,MANHATTAN,10002,40.710815,-73.98326,"(40.710815, -73.98326)",FDR DRIVE,GOUVERNEUR SLIP EAST,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4431594,Sedan,,,, +06/04/2021,19:50,QUEENS,11373,40.745796,-73.88385,"(40.745796, -73.88385)",BAXTER AVENUE,41 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431904,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,16:11,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4431708,Sedan,Sedan,Sedan,, +06/21/2021,12:15,MANHATTAN,10029,40.795147,-73.94523,"(40.795147, -73.94523)",,,123 EAST 110 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431773,Van,Sedan,,, +06/26/2021,16:20,,,40.579975,-73.97464,"(40.579975, -73.97464)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431251,Sedan,Sedan,,, +06/26/2021,23:15,,,40.827206,-73.94246,"(40.827206, -73.94246)",WEST 150 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431750,Van,Bike,,, +06/26/2021,17:11,BROOKLYN,11212,40.65473,-73.90692,"(40.65473, -73.90692)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431319,Sedan,,,, +06/18/2021,3:45,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431995,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,8:37,BROOKLYN,11226,40.652187,-73.95847,"(40.652187, -73.95847)",,,11 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4431196,Sedan,,,, +06/24/2021,17:08,BROOKLYN,11206,40.70082,-73.957466,"(40.70082, -73.957466)",BEDFORD AVENUE,HEYWARD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432000,PK,Sedan,,, +06/26/2021,11:34,QUEENS,11428,40.72325,-73.733315,"(40.72325, -73.733315)",,,222-06 93 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4431449,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/26/2021,17:40,BRONX,10453,40.85477,-73.90299,"(40.85477, -73.90299)",CRESTON AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431812,AMBULANCE,Sedan,,, +06/26/2021,12:51,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431159,Sedan,Box Truck,,, +06/26/2021,17:41,,,40.719395,-74.00189,"(40.719395, -74.00189)",BROADWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431727,Station Wagon/Sport Utility Vehicle,Bike,,, +06/26/2021,20:00,BROOKLYN,11233,40.685184,-73.920456,"(40.685184, -73.920456)",HOWARD AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4431859,Sedan,Sedan,,, +06/26/2021,9:00,BRONX,10470,40.905975,-73.85034,"(40.905975, -73.85034)",,,660 EAST 242 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431382,Sedan,,,, +06/26/2021,19:31,QUEENS,11385,40.710365,-73.90493,"(40.710365, -73.90493)",,,63-16 FOREST AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431384,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,0:49,,,40.692425,-73.96075,"(40.692425, -73.96075)",CLASSON AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4431291,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:21,MANHATTAN,10011,40.743427,-73.99613,"(40.743427, -73.99613)",WEST 22 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431759,Bus,,,, +06/26/2021,0:40,,,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430987,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,8:25,BRONX,10453,40.848637,-73.91169,"(40.848637, -73.91169)",EAST 176 STREET,JEROME AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4431787,Bike,Sedan,,, +06/26/2021,5:00,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",167 STREET,HIGHLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4431885,Sedan,Sedan,Sedan,Sedan, +06/26/2021,22:47,,,40.649895,-73.90762,"(40.649895, -73.90762)",,,ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4431177,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/26/2021,15:50,QUEENS,11103,40.758167,-73.91857,"(40.758167, -73.91857)",,,32-68 41 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431696,Motorcycle,,,, +06/25/2021,7:30,QUEENS,11423,40.718643,-73.76625,"(40.718643, -73.76625)",197 STREET,FOOTHILL AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431879,Sedan,Sedan,,, +06/26/2021,19:20,BROOKLYN,11221,40.688232,-73.933105,"(40.688232, -73.933105)",GATES AVENUE,STUYVESANT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431858,Bus,,,, +06/24/2021,18:06,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4431742,Sedan,Sedan,,, +06/24/2021,19:20,MANHATTAN,10026,40.797478,-73.9488,"(40.797478, -73.9488)",WEST 111 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4431767,Sedan,,,, +06/26/2021,7:45,MANHATTAN,10009,40.727676,-73.98182,"(40.727676, -73.98182)",,,295 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431154,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,1:00,BRONX,10462,40.833466,-73.85057,"(40.833466, -73.85057)",,,2216 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4431298,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/24/2021,15:50,BRONX,10463,40.876316,-73.90165,"(40.876316, -73.90165)",,,3028 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Passing Too Closely,Alcohol Involvement,,,,4431797,Bus,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,6:34,,,,,,DITMAS AVENUE,WESTMINISTER ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431198,Sedan,,,, +06/26/2021,20:18,BRONX,10460,40.83945,-73.88393,"(40.83945, -73.88393)",,,1880 BOSTON ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431684,Sedan,Sedan,,, +06/26/2021,2:10,MANHATTAN,10022,40.75892,-73.97426,"(40.75892, -73.97426)",,,40 EAST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431726,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,20:57,,,40.69168,-73.99965,"(40.69168, -73.99965)",ATLANTIC AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432036,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,3:40,BRONX,10468,40.861217,-73.90437,"(40.861217, -73.90437)",GRAND AVENUE,WEST 184 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4431229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/14/2021,10:10,BROOKLYN,11217,40.6849,-73.97961,"(40.6849, -73.97961)",,,541 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431955,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,5:18,,,40.714935,-73.81636,"(40.714935, -73.81636)",COOLIDGE AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4431873,E-Scooter,,,, +06/25/2021,19:30,,,40.850018,-73.9107,"(40.850018, -73.9107)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431781,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,14:10,BROOKLYN,11210,40.617764,-73.95003,"(40.617764, -73.95003)",,,3470 BEDFORD AVENUE,2,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431207,Pick-up Truck,E-Bike,,, +12/30/2021,8:00,,,40.700123,-73.91632,"(40.700123, -73.91632)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493764,Sedan,,,, +06/26/2021,14:15,BROOKLYN,11211,40.71453,-73.9444,"(40.71453, -73.9444)",GRAHAM AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431996,Sedan,,,, +06/26/2021,14:45,BRONX,10461,40.853943,-73.858665,"(40.853943, -73.858665)",LYDIG AVENUE,HONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431056,Sedan,,,, +06/26/2021,17:00,QUEENS,11369,40.757507,-73.88193,"(40.757507, -73.88193)",,,32-19 86 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4431090,Sedan,,,, +06/26/2021,7:00,BROOKLYN,11233,40.68275,-73.922,"(40.68275, -73.922)",,,510 DECATUR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431519,Sedan,,,, +06/26/2021,14:10,MANHATTAN,10016,40.743942,-73.983635,"(40.743942, -73.983635)",EAST 29 STREET,PARK AVENUE SOUTH,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431866,E-Scooter,,,, +06/26/2021,21:30,BRONX,10460,40.834705,-73.88936,"(40.834705, -73.88936)",,,1569 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431173,Station Wagon/Sport Utility Vehicle,Moped,,, +06/26/2021,18:35,BRONX,10455,40.812664,-73.906334,"(40.812664, -73.906334)",EAST 149 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4431642,Sedan,,,, +06/24/2021,20:57,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431806,Sedan,Sedan,,, +06/26/2021,8:20,BROOKLYN,11228,40.616047,-74.025734,"(40.616047, -74.025734)",92 STREET,DAHLGREN PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4431047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2021,16:00,BRONX,10469,,,,GRACE AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431399,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +06/26/2021,9:39,QUEENS,11414,40.670555,-73.85634,"(40.670555, -73.85634)",79 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431527,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/26/2021,5:40,,,40.60461,-73.99826,"(40.60461, -73.99826)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431073,Sedan,Sedan,,, +06/26/2021,0:00,BROOKLYN,11226,40.65121,-73.95893,"(40.65121, -73.95893)",FLATBUSH AVENUE,MARTENSE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431215,Station Wagon/Sport Utility Vehicle,Bike,,, +06/25/2021,18:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4431737,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,15:35,,,40.810726,-73.92465,"(40.810726, -73.92465)",EAST 139 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,8:40,,,,,,PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431667,Bus,Sedan,,, +06/21/2021,14:15,MANHATTAN,10029,40.792244,-73.94419,"(40.792244, -73.94419)",3 AVENUE,EAST 107 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432025,Sedan,Sedan,,, +06/26/2021,16:10,BROOKLYN,11238,40.68821,-73.96583,"(40.68821, -73.96583)",LAFAYETTE AVENUE,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431163,Station Wagon/Sport Utility Vehicle,Bike,,, +06/26/2021,6:10,,,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431223,Sedan,Sedan,,, +06/21/2021,10:54,,,40.644753,-73.92493,"(40.644753, -73.92493)",KINGS HIGHWAY,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431931,Sedan,Bike,,, +06/25/2021,14:15,QUEENS,11421,40.696384,-73.86017,"(40.696384, -73.86017)",85 STREET,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431920,Sedan,,,, +06/26/2021,8:10,,,40.85407,-73.89932,"(40.85407, -73.89932)",VALENTINE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,14:00,MANHATTAN,10040,40.862614,-73.928604,"(40.862614, -73.928604)",SHERMAN AVENUE,SICKLES STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431731,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,15:00,,,40.675385,-73.95337,"(40.675385, -73.95337)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431890,Bike,Sedan,,, +06/26/2021,9:04,QUEENS,11385,40.702145,-73.89672,"(40.702145, -73.89672)",,,60-56 70 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431504,Pick-up Truck,,,, +06/26/2021,10:15,MANHATTAN,10019,40.765114,-73.98503,"(40.765114, -73.98503)",,,317 WEST 54 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431019,TOW TRUCK,Sedan,,, +06/26/2021,13:15,MANHATTAN,10018,40.757732,-73.99686,"(40.757732, -73.99686)",WEST 39 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431616,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,15:17,QUEENS,11412,40.697052,-73.75734,"(40.697052, -73.75734)",115 AVENUE,196 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4431142,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:04,BROOKLYN,11211,40.710716,-73.95359,"(40.710716, -73.95359)",BORINQUEN PLACE,KEAP STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4432007,Sedan,Bike,,, +06/26/2021,1:13,MANHATTAN,10033,40.848446,-73.9393,"(40.848446, -73.9393)",,,400 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431544,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,23:37,BROOKLYN,11228,40.616985,-74.01716,"(40.616985, -74.01716)",,,1114 85 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4431423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2021,8:29,QUEENS,11377,,,,,,26-45 brooklyn queens expressway wes,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431272,Sedan,Pick-up Truck,,, +06/22/2021,10:30,BROOKLYN,11210,40.636448,-73.94513,"(40.636448, -73.94513)",NEW YORK AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431930,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/25/2021,12:45,,,40.79292,-73.94579,"(40.79292, -73.94579)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4431777,Sedan,Taxi,,, +06/26/2021,5:10,MANHATTAN,10012,40.72032,-73.99404,"(40.72032, -73.99404)",DELANCEY STREET,BOWERY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Alcohol Involvement,,,,4431327,Sedan,Bike,,, +06/25/2021,18:45,MANHATTAN,10019,40.763485,-73.98895,"(40.763485, -73.98895)",9 AVENUE,WEST 50 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431733,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,10:15,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4431979,PK,Sedan,,, +07/01/2022,16:27,BROOKLYN,11207,40.652287,-73.887405,"(40.652287, -73.887405)",,,12091 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543788,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,19:28,BRONX,10468,40.868336,-73.90127,"(40.868336, -73.90127)",,,100 WEST KINGSBRIDGE ROAD,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4431643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,19:51,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431712,Sedan,Sedan,,, +06/26/2021,14:20,BRONX,10456,40.834507,-73.91772,"(40.834507, -73.91772)",EAST 167 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431222,Sedan,Sedan,,, +06/26/2021,19:15,BROOKLYN,11225,40.661278,-73.9536,"(40.661278, -73.9536)",,,453 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4431563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,9:00,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4431031,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/26/2021,17:01,BROOKLYN,11212,,,,,,487 CHRISTOPHER AVE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431358,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2021,5:15,QUEENS,11419,40.68489,-73.82148,"(40.68489, -73.82148)",121 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4431098,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/25/2021,15:40,,,40.868885,-73.91569,"(40.868885, -73.91569)",10 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4432049,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/26/2021,0:00,BROOKLYN,11205,40.694107,-73.96703,"(40.694107, -73.96703)",,,157 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4431391,Sedan,Sedan,Sedan,, +06/26/2021,18:18,BROOKLYN,11236,40.640728,-73.90521,"(40.640728, -73.90521)",FLATLANDS AVENUE,EAST 91 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4431176,Sedan,Sedan,Sedan,, +06/26/2021,23:14,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431356,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,16:21,BROOKLYN,11206,40.707333,-73.94321,"(40.707333, -73.94321)",GRAHAM AVENUE,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431990,Sedan,,,, +06/20/2021,12:45,MANHATTAN,10011,40.743717,-74.00417,"(40.743717, -74.00417)",,,411 WEST 18 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431749,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,17:28,BRONX,10458,,,,SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431236,Sedan,Taxi,,, +06/24/2021,20:40,MANHATTAN,10039,40.824043,-73.93884,"(40.824043, -73.93884)",,,236 WEST 148 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431760,Sedan,Sedan,,, +06/26/2021,2:10,QUEENS,11427,40.72387,-73.75541,"(40.72387, -73.75541)",,,211-14 HILLSIDE AVENUE,2,0,1,0,0,0,1,0,Unspecified,,,,,4430988,Sedan,,,, +06/26/2021,10:51,,,40.850857,-73.90765,"(40.850857, -73.90765)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431788,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,11:15,MANHATTAN,10029,40.79292,-73.94579,"(40.79292, -73.94579)",LEXINGTON AVENUE,EAST 107 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432024,Sedan,Sedan,,, +06/26/2021,1:54,,,,,,OCEAN AVENUE,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,2:37,,,40.725975,-73.7575,"(40.725975, -73.7575)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4431883,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,10:00,QUEENS,11435,40.704132,-73.815895,"(40.704132, -73.815895)",,,138-19 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431868,Sedan,,,, +06/26/2021,11:14,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4431530,Sedan,,,, +06/26/2021,14:10,BRONX,10469,40.864002,-73.834045,"(40.864002, -73.834045)",,,1806 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431068,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,14:45,BROOKLYN,11236,40.639366,-73.9113,"(40.639366, -73.9113)",GLENWOOD ROAD,EAST 85 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4431074,Sedan,Sedan,,, +06/26/2021,22:35,QUEENS,11429,40.71256,-73.732994,"(40.71256, -73.732994)",221 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431450,Station Wagon/Sport Utility Vehicle,Bus,,, +06/26/2021,3:17,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4431786,Sedan,,,, +06/26/2021,12:42,,,40.63778,-74.01794,"(40.63778, -74.01794)",63 STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4431114,Station Wagon/Sport Utility Vehicle,Bike,,, +06/26/2021,16:52,,,40.591393,-73.907875,"(40.591393, -73.907875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431521,Sedan,Sedan,,, +06/25/2021,16:36,,,40.861942,-73.89373,"(40.861942, -73.89373)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431810,Bus,Sedan,,, +06/26/2021,22:49,,,,,,232 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431162,Sedan,,,, +06/23/2021,0:00,,,40.716526,-73.82308,"(40.716526, -73.82308)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431865,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,2:45,,,40.62764,-73.89022,"(40.62764, -73.89022)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431041,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,14:27,QUEENS,11428,40.722466,-73.73692,"(40.722466, -73.73692)",SPRINGFIELD BOULEVARD,93 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431452,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,17:35,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4431585,Motorcycle,Sedan,,, +06/26/2021,17:11,,,40.879215,-73.885284,"(40.879215, -73.885284)",EAST MOSHOLU PARKWAY SOUTH,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4431631,Pick-up Truck,,,, +06/26/2021,6:30,BROOKLYN,11236,40.641567,-73.91895,"(40.641567, -73.91895)",,,8052 PRESTON COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4431048,Sedan,,,, +06/26/2021,17:00,,,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431104,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,21:00,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",MARION AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431825,Sedan,,,, +06/06/2021,14:30,QUEENS,11436,40.670326,-73.79244,"(40.670326, -73.79244)",130 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Glare,Backing Unsafely,,,,4431847,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,17:20,BROOKLYN,11228,40.614063,-74.01393,"(40.614063, -74.01393)",86 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431152,Sedan,Bus,,, +06/26/2021,4:50,BRONX,10472,40.833702,-73.870674,"(40.833702, -73.870674)",,,1360 NOBLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431299,Sedan,,,, +06/17/2021,13:03,BRONX,10463,40.879063,-73.90913,"(40.879063, -73.90913)",,,281 WEST 230 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4431813,Sedan,Van,,, +06/26/2021,0:57,BROOKLYN,11223,40.596977,-73.97324,"(40.596977, -73.97324)",AVENUE U,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431694,Box Truck,Sedan,,, +06/25/2021,19:35,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431780,Sedan,Box Truck,,, +06/26/2021,14:05,QUEENS,11412,40.692703,-73.75857,"(40.692703, -73.75857)",193 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431055,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,8:26,QUEENS,11101,40.74223,-73.95885,"(40.74223, -73.95885)",BORDEN AVENUE,2 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431174,Sedan,,,, +04/06/2022,13:20,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4516791,Sedan,,,, +06/26/2021,0:02,BROOKLYN,11225,40.663124,-73.96244,"(40.663124, -73.96244)",FLATBUSH AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Aggressive Driving/Road Rage,,,,4431030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,18:58,QUEENS,11434,40.67663,-73.77774,"(40.67663, -73.77774)",,,163-19 130 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431143,Sedan,,,, +06/26/2021,8:40,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",HIGHLAND AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431886,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/26/2021,18:10,QUEENS,11369,40.75968,-73.864075,"(40.75968, -73.864075)",105 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431430,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,3:01,QUEENS,11356,40.789677,-73.85167,"(40.789677, -73.85167)",,,8-05 115 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4431133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/25/2021,14:34,STATEN ISLAND,10309,40.53734,-74.21195,"(40.53734, -74.21195)",SHELDON AVENUE,MAGUIRE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431748,Sedan,Sedan,,, +06/26/2021,8:28,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431600,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,16:00,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431997,Sedan,Flat Rack,,, +06/26/2021,19:50,BROOKLYN,11230,40.62226,-73.96084,"(40.62226, -73.96084)",,,1111 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431199,Sedan,,,, +06/26/2021,9:40,,,40.684227,-73.93531,"(40.684227, -73.93531)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4431514,Box Truck,Sedan,,, +06/26/2021,19:30,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",PARK AVENUE,EAST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431614,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,23:00,QUEENS,11368,40.747906,-73.863235,"(40.747906, -73.863235)",,,41-25 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431547,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/26/2021,12:00,QUEENS,11102,40.76844,-73.927155,"(40.76844, -73.927155)",23 STREET,30 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431278,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,0:00,MANHATTAN,10017,40.756245,-73.97758,"(40.756245, -73.97758)",,,17 EAST 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431725,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/23/2021,16:35,BRONX,10463,40.875427,-73.906166,"(40.875427, -73.906166)",,,2880 EXTERIOR STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4431805,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2021,22:00,QUEENS,11354,40.76802,-73.826225,"(40.76802, -73.826225)",33 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431189,Sedan,,,, +06/24/2021,22:20,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4431738,Sedan,Tractor Truck Diesel,,, +06/23/2021,21:25,,,,,,BOWERY,MANHATTAN BRIDGE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432027,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,23:00,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4431181,Sedan,,,, +06/26/2021,0:45,MANHATTAN,10031,40.82077,-73.95459,"(40.82077, -73.95459)",WEST 136 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431002,Bike,,,, +06/26/2021,14:17,BROOKLYN,11234,40.621483,-73.9252,"(40.621483, -73.9252)",AVENUE M,EAST 52 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4431763,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,17:50,,,40.72176,-73.76001,"(40.72176, -73.76001)",FRANCIS LEWIS BOULEVARD,FOOTHILL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431891,Sedan,Sedan,,, +06/26/2021,12:40,QUEENS,11379,40.71793,-73.881256,"(40.71793, -73.881256)",,,63-27 75 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4431092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,10:00,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4431224,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,8:30,QUEENS,11432,40.713547,-73.79548,"(40.713547, -73.79548)",,,85-07 168 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431874,Sedan,,,, +06/26/2021,16:48,QUEENS,11426,40.73074,-73.71305,"(40.73074, -73.71305)",253 STREET,87 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431799,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/14/2021,18:25,,,,,,,,80 SIMONSON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4468909,Sedan,,,, +06/26/2021,22:39,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431702,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,0:00,BROOKLYN,11237,40.705482,-73.92826,"(40.705482, -73.92826)",PORTER AVENUE,THAMES STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431992,Sedan,Sedan,,, +06/24/2021,13:00,,,40.865547,-73.92728,"(40.865547, -73.92728)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432038,Ambulance,Pick-up Truck,,, +06/26/2021,22:14,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431231,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/26/2021,0:30,QUEENS,11692,40.59359,-73.79726,"(40.59359, -73.79726)",,,437 BEACH 68 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431915,Sedan,,,, +06/26/2021,0:05,BRONX,10466,40.88942,-73.844894,"(40.88942, -73.844894)",,,1140 EAST 233 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4431410,Sedan,,,, +06/26/2021,17:30,BROOKLYN,11215,40.66214,-73.98224,"(40.66214, -73.98224)",8 AVENUE,15 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4431714,Sedan,Dump,,, +06/26/2021,21:00,BROOKLYN,11210,40.633114,-73.94928,"(40.633114, -73.94928)",,,120 KENILWORTH PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431212,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,18:58,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431167,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,9:15,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",WEST 34 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431755,Taxi,Box Truck,,, +06/25/2021,20:50,BRONX,10454,40.80729,-73.91268,"(40.80729, -73.91268)",,,694 EAST 141 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431771,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,20:00,BROOKLYN,11210,40.636364,-73.93747,"(40.636364, -73.93747)",,,1506 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431478,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,14:42,BRONX,10461,40.841824,-73.843735,"(40.841824, -73.843735)",,,41 WESTCHESTER SQUARE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431668,Sedan,,,, +06/26/2021,6:30,QUEENS,11106,40.75832,-73.92506,"(40.75832, -73.92506)",,,34-08 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431271,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,18:00,QUEENS,11358,40.755665,-73.795204,"(40.755665, -73.795204)",171 PLACE,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4431936,Sedan,,,, +06/26/2021,13:15,BROOKLYN,11212,40.66514,-73.90236,"(40.66514, -73.90236)",,,453 DUMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4431375,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,4:00,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4431809,Sedan,Sedan,,, +06/25/2021,10:00,MANHATTAN,10012,40.72143,-73.99362,"(40.72143, -73.99362)",,,206 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431730,Sedan,,,, +06/25/2021,0:20,,,,,,168 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431878,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,13:41,BRONX,10469,40.87125,-73.85662,"(40.87125, -73.85662)",BURKE AVENUE,LURTING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431396,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,11:35,MANHATTAN,10029,40.78713,-73.945015,"(40.78713, -73.945015)",,,1955 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431869,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,23:00,MANHATTAN,10019,40.76737,-73.98445,"(40.76737, -73.98445)",,,356 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431734,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,13:05,,,40.771023,-73.95365,"(40.771023, -73.95365)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543468,Station Wagon/Sport Utility Vehicle,Van Truck,,, +06/25/2021,17:50,,,40.850822,-73.90147,"(40.850822, -73.90147)",EAST BURNSIDE AVENUE,RYER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431789,Sedan,Motorscooter,,, +06/14/2021,16:48,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431756,Station Wagon/Sport Utility Vehicle,Bus,,, +06/26/2021,21:08,QUEENS,11354,40.767284,-73.81301,"(40.767284, -73.81301)",34 AVENUE,MURRAY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431188,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,1:30,QUEENS,11435,40.70213,-73.80445,"(40.70213, -73.80445)",JAMAICA AVENUE,150 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431531,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,13:30,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BROWN PLACE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431085,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,19:00,BROOKLYN,11234,40.625652,-73.930534,"(40.625652, -73.930534)",SCHENECTADY AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431522,Sedan,Sedan,,, +06/25/2021,15:08,,,40.676594,-73.91555,"(40.676594, -73.91555)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4432059,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2021,13:50,MANHATTAN,10029,40.79157,-73.94469,"(40.79157, -73.94469)",EAST 106 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431775,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,0:36,,,40.618824,-74.15786,"(40.618824, -74.15786)",,,66 JULES DRIVE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4431703,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,15:25,QUEENS,11101,40.751976,-73.93197,"(40.751976, -73.93197)",HONEYWELL STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431276,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,16:49,,,40.675552,-73.839714,"(40.675552, -73.839714)",134 AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4431988,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,13:00,MANHATTAN,10075,40.775642,-73.960526,"(40.775642, -73.960526)",EAST 79 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Traffic Control Disregarded,,,,4431325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,12:17,,,40.75142,-73.987656,"(40.75142, -73.987656)",BROADWAY,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4543483,Station Wagon/Sport Utility Vehicle,Bike,,, +06/26/2021,9:49,,,40.809692,-73.94409,"(40.809692, -73.94409)",LENOX AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4431652,Sedan,Motorscooter,,, +06/20/2022,14:12,QUEENS,11432,40.711433,-73.78768,"(40.711433, -73.78768)",175 STREET,WARWICK CRESCENT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543736,Sedan,,,, +06/26/2021,2:06,,,40.659264,-74.002396,"(40.659264, -74.002396)",GOWANUS EXPY (BQE),,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4431131,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/26/2021,15:05,BRONX,10456,40.828533,-73.90693,"(40.828533, -73.90693)",,,3414 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431161,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,6:55,QUEENS,11365,40.730053,-73.79353,"(40.730053, -73.79353)",UTOPIA PARKWAY,73 AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431864,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,10:30,BROOKLYN,11236,40.631798,-73.901596,"(40.631798, -73.901596)",AVENUE M,EAST 86 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4431042,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/26/2021,23:26,BRONX,10463,40.880135,-73.903946,"(40.880135, -73.903946)",BROADWAY,WEST 232 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431818,Sedan,,,, +06/26/2021,16:50,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4431453,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,3:00,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431221,Sedan,Sedan,,, +06/24/2021,15:44,QUEENS,11416,40.68816,-73.848854,"(40.68816, -73.848854)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431925,Sedan,Sedan,,, +06/24/2021,19:43,BRONX,10458,,,,EAST FORDHAM ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431784,Sedan,,,, +06/25/2021,20:23,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4431882,Pick-up Truck,,,, +06/26/2021,10:51,,,40.746902,-73.834694,"(40.746902, -73.834694)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4431135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,15:30,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431168,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,18:17,,,,,,,,254 CLINTON B FISK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431678,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/26/2021,23:15,BRONX,10465,40.84372,-73.81508,"(40.84372, -73.81508)",,,1400 OUTLOOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431602,Sedan,Sedan,,, +06/25/2021,19:20,,,40.75652,-73.821434,"(40.75652, -73.821434)",ASH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431937,Sedan,,,, +06/26/2021,10:27,MANHATTAN,10017,40.751713,-73.97266,"(40.751713, -73.97266)",,,233 EAST 44 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431040,Taxi,,,, +06/26/2021,21:20,,,40.586296,-74.162994,"(40.586296, -74.162994)",MERRYMOUNT STREET,RICHMOND HILL ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432046,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,18:40,MANHATTAN,10002,40.719112,-73.9792,"(40.719112, -73.9792)",,,111 COLUMBIA STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431586,Sedan,E-Scooter,,, +06/26/2021,12:30,BROOKLYN,11212,40.663456,-73.91598,"(40.663456, -73.91598)",,,714 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4431355,Sedan,,,, +06/22/2021,13:00,BROOKLYN,11211,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432012,Sedan,,,, +06/26/2021,13:30,MANHATTAN,10010,40.737194,-73.98328,"(40.737194, -73.98328)",,,230 EAST 21 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4431060,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:20,BROOKLYN,11201,40.695908,-73.98322,"(40.695908, -73.98322)",TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4431958,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,23:30,,,40.54315,-74.17378,"(40.54315, -74.17378)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4431467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,1:22,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431026,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,18:30,QUEENS,11377,40.748295,-73.91019,"(40.748295, -73.91019)",,,51-06 WOODSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,12:00,BRONX,10462,40.844013,-73.8619,"(40.844013, -73.8619)",,,1653 BARNES AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4431574,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,7:45,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4431887,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +06/26/2021,22:03,,,,,,CROSS BAY PARKWAY,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,16:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4431100,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +06/24/2021,19:21,BRONX,10454,40.811844,-73.92572,"(40.811844, -73.92572)",,,2598 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431770,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,14:25,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431739,Sedan,Sedan,,, +06/26/2021,16:43,BRONX,10458,,,,WEBSTER AVENUE,EAST BEDFORD PARK BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4431226,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:00,BROOKLYN,11231,40.68293,-74.005684,"(40.68293, -74.005684)",SUMMIT STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4432031,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,11:40,BROOKLYN,11226,40.64364,-73.95462,"(40.64364, -73.95462)",,,2458 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431202,Sedan,Sedan,,, +06/26/2021,16:25,BROOKLYN,11235,40.58369,-73.94808,"(40.58369, -73.94808)",,,2027 EMMONS AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431693,Sedan,Bike,,, +06/26/2021,4:47,MANHATTAN,10019,40.763416,-73.97906,"(40.763416, -73.97906)",,,125 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431723,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,18:50,BRONX,10467,40.87647,-73.87579,"(40.87647, -73.87579)",,,3273 PERRY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431235,Sedan,,,, +06/26/2021,19:40,QUEENS,11367,40.730015,-73.82348,"(40.730015, -73.82348)",MAIN STREET,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432039,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,16:50,,,40.760468,-73.73256,"(40.760468, -73.73256)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431901,Sedan,Sedan,,, +07/03/2022,18:20,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543184,Sedan,Motorscooter,,, +06/24/2021,12:45,QUEENS,11423,40.724693,-73.76481,"(40.724693, -73.76481)",EPSOM COURSE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,13:45,BROOKLYN,11236,40.631397,-73.90369,"(40.631397, -73.90369)",,,1273 EAST 84 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,23:29,,,40.858994,-73.90573,"(40.858994, -73.90573)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431779,Sedan,,,, +06/26/2021,17:24,BROOKLYN,11212,40.65482,-73.91843,"(40.65482, -73.91843)",,,507 EAST 93 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4431508,Sedan,Sedan,,, +06/24/2021,13:30,BROOKLYN,11211,40.711903,-73.94902,"(40.711903, -73.94902)",LORIMER STREET,POWERS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431998,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,13:24,BROOKLYN,11220,40.639496,-74.010086,"(40.639496, -74.010086)",,,677 56 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431967,Sedan,Box Truck,,, +06/26/2021,21:26,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,17:49,,,40.85223,-73.87141,"(40.85223, -73.87141)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4431144,Motorcycle,,,, +06/26/2021,13:30,,,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431279,Sedan,Bike,,, +06/26/2021,17:15,QUEENS,11368,40.74925,-73.858025,"(40.74925, -73.858025)",,,42-10 108 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431546,Sedan,E-Bike,,, +06/26/2021,1:15,BRONX,10467,40.88117,-73.86303,"(40.88117, -73.86303)",,,725 EAST 216 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4431404,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +06/26/2021,11:12,QUEENS,11361,40.75766,-73.77989,"(40.75766, -73.77989)",,,203-11 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431049,Sedan,Sedan,,, +06/26/2021,7:00,MANHATTAN,10012,40.724403,-74.00408,"(40.724403, -74.00408)",,,61 SULLIVAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431016,Sedan,,,, +06/26/2021,18:00,MANHATTAN,10001,40.74578,-73.99185,"(40.74578, -73.99185)",,,122 WEST 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431180,Sedan,,,, +06/09/2021,8:44,,,,,,133 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4431844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2021,21:30,BROOKLYN,11216,40.683582,-73.953964,"(40.683582, -73.953964)",PUTNAM AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431311,Sedan,,,, +06/26/2021,16:00,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431148,Sedan,Pick-up Truck,,, +06/26/2021,0:10,,,40.762184,-73.993614,"(40.762184, -73.993614)",10 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431745,Sedan,Sedan,,, +06/24/2021,12:53,MANHATTAN,10026,40.80202,-73.94969,"(40.80202, -73.94969)",WEST 116 STREET,LENOX AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431765,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/30/2022,18:20,MANHATTAN,10040,40.863235,-73.92693,"(40.863235, -73.92693)",THAYER STREET,SHERMAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543575,Sedan,,,, +06/26/2021,3:00,,,40.880527,-73.901794,"(40.880527, -73.901794)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4431801,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,5:30,,,40.71445,-73.9306,"(40.71445, -73.9306)",METROPOLITAN AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431993,Sedan,,,, +06/26/2021,2:28,,,40.68111,-73.761185,"(40.68111, -73.761185)",SIDWAY PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431193,Station Wagon/Sport Utility Vehicle,Power shov,,, +07/03/2022,14:57,BRONX,10472,40.83202,-73.87323,"(40.83202, -73.87323)",METCALF AVENUE,EAST 172 STREET,,0,1,0,0,0,1,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4543294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,E-Bike, +06/24/2021,10:35,BRONX,10463,40.88243,-73.902306,"(40.88243, -73.902306)",,,5716 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4431826,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,18:51,,,40.812008,-73.951515,"(40.812008, -73.951515)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431456,Taxi,,,, +06/23/2021,19:45,QUEENS,11366,40.72531,-73.802574,"(40.72531, -73.802574)",166 STREET,76 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431870,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/26/2021,2:00,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,UTICA AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4431888,Sedan,,,, +06/26/2021,16:00,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431086,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,17:21,QUEENS,11433,40.70197,-73.8019,"(40.70197, -73.8019)",ARCHER AVENUE,153 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,22:14,,,,,,MAC CRACKEN AVENUE,RICHMAN PLAZA,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431783,Sedan,,,, +06/26/2021,15:15,QUEENS,11372,40.754025,-73.882256,"(40.754025, -73.882256)",85 STREET,34 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431433,E-Scooter,,,, +06/26/2021,13:30,MANHATTAN,10013,40.722553,-74.00141,"(40.722553, -74.00141)",BROOME STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4431058,Bike,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,14:00,QUEENS,11358,40.76259,-73.80464,"(40.76259, -73.80464)",NORTHERN BOULEVARD,161 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4431137,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,15:08,BRONX,10452,40.841496,-73.92486,"(40.841496, -73.92486)",OGDEN AVENUE,WEST 170 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4431629,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,6:59,BRONX,10475,40.868847,-73.8233,"(40.868847, -73.8233)",,,2220 BARTOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431604,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,8:52,,,40.84301,-73.86573,"(40.84301, -73.86573)",UNIONPORT ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431044,Sedan,,,, +06/21/2021,0:00,BRONX,10471,40.88939,-73.89839,"(40.88939, -73.89839)",BROADWAY,WEST 242 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4431802,Sedan,,,, +04/13/2021,13:50,MANHATTAN,10019,40.766018,-73.98121,"(40.766018, -73.98121)",,,225 WEST 57 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432053,Station Wagon/Sport Utility Vehicle,Bike,,, +06/24/2021,15:50,,,40.72848,-73.80523,"(40.72848, -73.80523)",164 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4431877,Sedan,Sedan,Sedan,, +06/26/2021,19:45,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inattention/Distraction,,,,4431704,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,5:38,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4431923,Sedan,Sedan,,, +06/26/2021,23:58,BROOKLYN,11224,40.582382,-73.9837,"(40.582382, -73.9837)",HART PLACE,WEST 15 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431252,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,15:30,MANHATTAN,10032,,,,,,898 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431751,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2021,14:29,BRONX,10454,40.809574,-73.91806,"(40.809574, -73.91806)",EAST 141 STREET,BROOK AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4431757,Sedan,,,, +06/26/2021,0:00,,,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4430994,Sedan,,,, +06/21/2021,11:00,BROOKLYN,11221,40.690563,-73.94536,"(40.690563, -73.94536)",LAFAYETTE AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4431861,Bus,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,15:00,BRONX,10475,40.881504,-73.83234,"(40.881504, -73.83234)",,,2134 REEDS MILL LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431349,Sedan,,,, +06/26/2021,15:05,BRONX,10469,40.874683,-73.840195,"(40.874683, -73.840195)",,,3209 WICKHAM AVENUE,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4431398,COMMERCIAL,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,13:30,,,40.703762,-73.94262,"(40.703762, -73.94262)",GRAHAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431985,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,19:12,,,40.84919,-73.91729,"(40.84919, -73.91729)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431792,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,15:30,,,40.699715,-73.96182,"(40.699715, -73.96182)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432010,Sedan,Box Truck,,, +06/26/2021,10:08,,,40.751835,-73.82427,"(40.751835, -73.82427)",COLDEN STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431187,Sedan,Bike,,, +06/26/2021,14:20,,,40.817173,-73.94606,"(40.817173, -73.94606)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,10:00,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:17,,,40.850494,-73.91546,"(40.850494, -73.91546)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431820,Sedan,Sedan,,, +06/22/2021,19:00,,,40.760925,-73.96705,"(40.760925, -73.96705)",EAST 58 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431942,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,8:30,BRONX,10466,40.884693,-73.83592,"(40.884693, -73.83592)",PRATT AVENUE,MAROLLA PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,Unspecified,,,4431380,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2021,10:01,BROOKLYN,11212,40.65432,-73.91788,"(40.65432, -73.91788)",EAST 93 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4431129,Sedan,Sedan,Sedan,Sedan, +06/26/2021,0:45,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4431039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,21:05,QUEENS,11417,40.680687,-73.84459,"(40.680687, -73.84459)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4431525,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,14:00,BRONX,10457,40.852978,-73.888916,"(40.852978, -73.888916)",ADAMS PLACE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431680,Sedan,Sedan,,, +06/26/2021,15:30,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,15:50,BRONX,10456,40.833076,-73.89731,"(40.833076, -73.89731)",,,1387 BOSTON ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431160,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,21:45,MANHATTAN,10002,40.72247,-73.987144,"(40.72247, -73.987144)",EAST HOUSTON STREET,LUDLOW STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431593,Sedan,,,, +06/26/2021,20:50,BRONX,10468,40.87167,-73.897804,"(40.87167, -73.897804)",RESERVOIR AVENUE,WEST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431808,Sedan,,,, +06/26/2021,9:30,BROOKLYN,11229,40.60529,-73.953766,"(40.60529, -73.953766)",,,1836 EAST 19 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432041,Sedan,,,, +06/26/2021,5:00,BROOKLYN,11226,40.65298,-73.95811,"(40.65298, -73.95811)",,,2172 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4431209,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/26/2021,9:00,QUEENS,11102,40.77211,-73.93013,"(40.77211, -73.93013)",ASTORIA BOULEVARD,12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,10:00,MANHATTAN,10029,40.790894,-73.945175,"(40.790894, -73.945175)",EAST 105 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431774,Sedan,,,, +06/25/2021,11:30,,,,,,WILLIS AVE BRIDGE,,,2,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431735,E-Scooter,Bike,,, +06/26/2021,1:20,BROOKLYN,11234,40.621624,-73.92301,"(40.621624, -73.92301)",,,5419 AVENUE M,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4431906,Sedan,Sedan,Sedan,, +06/21/2021,14:18,BROOKLYN,11203,40.651325,-73.93906,"(40.651325, -73.93906)",ALBANY AVENUE,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431964,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,0:15,MANHATTAN,10022,40.76023,-73.961525,"(40.76023, -73.961525)",1 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4431324,Sedan,Garbage or Refuse,,, +06/18/2021,17:50,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432003,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,2:00,BRONX,10462,40.845222,-73.86613,"(40.845222, -73.86613)",WHITE PLAINS ROAD,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431194,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,18:24,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4431881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,10:59,MANHATTAN,10019,40.76951,-73.988266,"(40.76951, -73.988266)",,,882 10 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4431718,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,11:12,MANHATTAN,10019,40.764057,-73.97738,"(40.764057, -73.97738)",,,1392 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431729,Station Wagon/Sport Utility Vehicle,FLAT,,, +06/24/2021,19:00,BROOKLYN,11231,40.678818,-74.00948,"(40.678818, -74.00948)",,,82 VISITATION PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432032,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,2:00,MANHATTAN,10022,40.75843,-73.973076,"(40.75843, -73.973076)",EAST 52 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431741,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,20:49,BRONX,10468,40.860287,-73.90494,"(40.860287, -73.90494)",GRAND AVENUE,NORTH STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431227,Sedan,Sedan,,, +06/29/2022,15:02,,,40.70519,-73.91478,"(40.70519, -73.91478)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543763,Pick-up Truck,Sedan,,, +07/01/2022,14:00,,,40.637638,-74.16127,"(40.637638, -74.16127)",RICHMOND TERRACE,LOCKMAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543477,Sedan,Box Truck,,, +07/03/2022,18:30,,,40.672062,-73.925255,"(40.672062, -73.925255)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543070,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,11:00,BROOKLYN,11209,40.622635,-74.03729,"(40.622635, -74.03729)",COLONIAL ROAD,89 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4542907,Motorcycle,,,, +07/01/2022,14:10,MANHATTAN,10031,40.825756,-73.95094,"(40.825756, -73.95094)",WEST 144 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543524,Sedan,Box Truck,,, +07/02/2022,9:22,MANHATTAN,10033,40.85238,-73.9315,"(40.85238, -73.9315)",WEST 186 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543582,Sedan,E-Scooter,,, +07/03/2022,20:35,,,40.69336,-73.97585,"(40.69336, -73.97585)",MYRTLE AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543116,E-Bike,,,, +06/27/2022,1:06,MANHATTAN,10034,40.86739,-73.91679,"(40.86739, -73.91679)",,,3964 10 AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Speed,Unspecified,,,4543547,Station Wagon/Sport Utility Vehicle,Motorbike,Station Wagon/Sport Utility Vehicle,, +07/01/2022,17:12,MANHATTAN,10036,40.760117,-73.98484,"(40.760117, -73.98484)",WEST 48 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Unspecified,,,,,4543752,E-Bike,Sedan,,, +07/03/2022,14:53,BROOKLYN,11234,40.62973,-73.922226,"(40.62973, -73.922226)",FLATLANDS AVENUE,EAST 56 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543282,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/03/2022,19:30,,,,,,ORCHARD BEACH,ORCHARD BEACH ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4543382,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,12:11,QUEENS,11417,40.681145,-73.84013,"(40.681145, -73.84013)",100 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543706,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2022,13:00,,,40.58699,-73.8098,"(40.58699, -73.8098)",BEACH 84 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543625,Sedan,E-Bike,,, +07/03/2022,20:27,BROOKLYN,11237,40.700245,-73.92089,"(40.700245, -73.92089)",STANHOPE STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543456,Sedan,,,, +07/03/2022,1:50,MANHATTAN,10039,40.822308,-73.93859,"(40.822308, -73.93859)",7 AVENUE,WEST 146 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4543191,Sedan,Sedan,Sedan,, +06/26/2022,23:31,BROOKLYN,11208,40.6845,-73.88194,"(40.6845, -73.88194)",,,31 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543813,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,0:00,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543608,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,16:32,MANHATTAN,10029,40.792686,-73.93941,"(40.792686, -73.93941)",,,348 EAST 110 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543620,Sedan,,,, +07/02/2022,10:06,BROOKLYN,11217,,,,Fulton street,St Felix St,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543641,Sedan,Bus,,, +07/03/2022,13:40,BROOKLYN,11203,40.64037,-73.93887,"(40.64037, -73.93887)",,,622 EAST 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543320,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,11:00,MANHATTAN,10033,40.846138,-73.93424,"(40.846138, -73.93424)",AUDUBON AVENUE,WEST 177 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4545787,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/12/2022,2:00,STATEN ISLAND,10308,40.549232,-74.15342,"(40.549232, -74.15342)",,,4111 AMBOY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4546152,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,15:00,BRONX,10472,40.831768,-73.86671,"(40.831768, -73.86671)",,,1792 WESTCHESTER AVENUE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4546177,Sedan,Sedan,Sedan,Sedan, +07/06/2022,10:25,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4546200,Station Wagon/Sport Utility Vehicle,,,, +07/12/2022,18:53,BROOKLYN,11230,40.6305,-73.96631,"(40.6305, -73.96631)",,,1115 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545852,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,0:00,,,40.7549943,-73.7453486,"(40.7549943, -73.7453486)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4467752,Sedan,,,, +01/07/2022,9:00,BROOKLYN,11212,40.657,-73.91403,"(40.657, -73.91403)",LOTT AVENUE,EAST 98 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493913,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,14:53,MANHATTAN,10009,40.725193,-73.98705,"(40.725193, -73.98705)",1 AVENUE,EAST 4 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4493901,Sedan,Sedan,Bike,, +01/06/2022,21:33,,,40.715847,-73.994934,"(40.715847, -73.994934)",CANAL STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493933,Sedan,Sedan,,, +01/05/2022,23:50,,,40.797447,-73.94671,"(40.797447, -73.94671)",EAST 112 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493902,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/31/2021,19:45,BROOKLYN,11214,40.59938,-73.99773,"(40.59938, -73.99773)",,,159 BAY 29 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4493912,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/09/2022,5:12,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493932,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,4:11,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4493903,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,11:00,BROOKLYN,11218,40.64295,-73.977325,"(40.64295, -73.977325)",EAST 3 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493931,Sedan,,,, +01/11/2021,18:45,,,40.80522,-73.93214,"(40.80522, -73.93214)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4493883,Sedan,Sedan,,, +12/19/2021,2:11,BRONX,10454,40.807228,-73.92723,"(40.807228, -73.92723)",,,129 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493905,Sedan,Sedan,,, +01/09/2022,13:30,MANHATTAN,10013,40.724422,-74.00892,"(40.724422, -74.00892)",,,511 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493908,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,12:00,QUEENS,11417,40.682655,-73.842186,"(40.682655, -73.842186)",,,103-39 98 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493894,Sedan,,,, +01/08/2022,11:15,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",PROSPECT EXPRESSWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493920,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,13:00,,,40.716278,-73.80313,"(40.716278, -73.80313)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Driver Inattention/Distraction,Unspecified,,4493909,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/20/2022,18:00,QUEENS,11423,40.720413,-73.76095,"(40.720413, -73.76095)",,,204-15 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504595,PK,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,14:25,BROOKLYN,11229,40.609043,-73.95099,"(40.609043, -73.95099)",,,2216 QUENTIN ROAD,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inattention/Distraction,,,,4504380,Sedan,Sedan,,, +02/20/2022,17:57,QUEENS,11415,40.709606,-73.82873,"(40.709606, -73.82873)",,,83-09 TALBOT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504475,Station Wagon/Sport Utility Vehicle,,,, +02/18/2022,8:15,MANHATTAN,10011,40.74601,-74.00224,"(40.74601, -74.00224)",,,401 WEST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504910,Station Wagon/Sport Utility Vehicle,PK,,, +02/20/2022,19:25,BROOKLYN,11226,40.65264,-73.949776,"(40.65264, -73.949776)",LINDEN BOULEVARD,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504762,,,,, +02/20/2022,21:16,STATEN ISLAND,10301,40.61242,-74.09936,"(40.61242, -74.09936)",TIOGA STREET,CLOVE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504498,Sedan,,,, +02/11/2022,16:30,BRONX,10468,40.870766,-73.90046,"(40.870766, -73.90046)",,,2757 CLAFLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504768,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,1:10,MANHATTAN,10029,40.785805,-73.942856,"(40.785805, -73.942856)",1 AVENUE,EAST 100 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4504044,Sedan,Sedan,Sedan,, +02/18/2022,17:10,BROOKLYN,11223,40.59065,-73.96931,"(40.59065, -73.96931)",AVENUE X,EAST 1 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504884,Station Wagon/Sport Utility Vehicle,Bike,,, +02/16/2022,12:54,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4504801,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/20/2022,3:02,QUEENS,11370,40.773808,-73.8929,"(40.773808, -73.8929)",19 AVENUE,HAZEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504324,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,1:48,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493274,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,10:15,BROOKLYN,11236,40.64503,-73.90756,"(40.64503, -73.90756)",,,1004 EAST 93 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493507,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,14:45,BROOKLYN,11214,40.59829,-74.000046,"(40.59829, -74.000046)",BAY 28 STREET,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493354,Sedan,Sedan,,, +01/08/2022,14:49,STATEN ISLAND,10307,40.508144,-74.24998,"(40.508144, -74.24998)",,,7647 AMBOY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493831,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,16:35,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493809,Sedan,,,, +01/09/2022,0:20,BROOKLYN,11201,40.69845,-73.98572,"(40.69845, -73.98572)",FLATBUSH AVENUE EXTENSION,NASSAU STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4492941,Sedan,Sedan,,, +01/09/2022,19:27,BROOKLYN,11226,40.63882,-73.95405,"(40.63882, -73.95405)",,,1286 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4493326,Sedan,,,, +12/30/2021,22:46,MANHATTAN,10031,40.82265,-73.95131,"(40.82265, -73.95131)",WEST 140 STREET,HAMILTON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,13:10,QUEENS,11375,40.716427,-73.840775,"(40.716427, -73.840775)",BORAGE PLACE,BEECHKNOLL PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493401,Sedan,,,, +01/07/2022,13:00,QUEENS,11426,40.726387,-73.727486,"(40.726387, -73.727486)",,,240-25 BRADDOCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493762,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,3:45,BROOKLYN,11226,40.652084,-73.96439,"(40.652084, -73.96439)",,,27 CROOKE AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4492983,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/09/2022,19:50,BRONX,10473,40.822697,-73.87001,"(40.822697, -73.87001)",STORY AVENUE,FTELEY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493414,Sedan,,,, +01/07/2022,15:07,STATEN ISLAND,10312,40.546017,-74.18312,"(40.546017, -74.18312)",,,182 RATHBUN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493829,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,21:35,QUEENS,11370,40.756996,-73.88657,"(40.756996, -73.88657)",,,32-19 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493729,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,5:05,QUEENS,11356,40.7847,-73.83854,"(40.7847, -73.83854)",130 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493250,Sedan,,,, +01/09/2022,20:19,BROOKLYN,11208,40.67896,-73.877235,"(40.67896, -73.877235)",,,292 LOGAN STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493521,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,21:39,QUEENS,11379,40.71638,-73.89751,"(40.71638, -73.89751)",ELIOT AVENUE,MOUNT OLIVET CRESCENT,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493568,Sedan,Pick-up Truck,,, +01/03/2022,18:00,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493666,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,18:30,QUEENS,11434,40.668446,-73.77193,"(40.668446, -73.77193)",BREWER BOULEVARD,144 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493684,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,17:55,STATEN ISLAND,10305,40.595596,-74.063126,"(40.595596, -74.063126)",ROBIN ROAD,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4493224,Sedan,Pick-up Truck,,, +01/09/2022,11:35,BROOKLYN,11234,40.635365,-73.92571,"(40.635365, -73.92571)",GLENWOOD ROAD,EAST 53 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493176,Van,,,, +01/09/2022,15:00,,,40.694363,-73.958,"(40.694363, -73.958)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493216,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle,, +01/09/2022,8:30,,,40.608776,-74.09113,"(40.608776, -74.09113)",CLOVE ROAD,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493177,Pick-up Truck,,,, +01/08/2022,23:00,STATEN ISLAND,10310,40.634125,-74.12232,"(40.634125, -74.12232)",,,1196 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4493855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/09/2022,18:29,BROOKLYN,11249,40.709515,-73.96701,"(40.709515, -73.96701)",,,437 WYTHE AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,10:00,QUEENS,11004,40.7462,-73.71354,"(40.7462, -73.71354)",,,258-01 UNION TURNPIKE,1,0,0,0,0,0,1,0,Unspecified,,,,,4493140,Sedan,,,, +01/09/2022,5:20,,,40.68525,-73.77383,"(40.68525, -73.77383)",MERRILL STREET,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4493683,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,21:15,BROOKLYN,11225,40.66188,-73.94557,"(40.66188, -73.94557)",EAST NEW YORK AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4493377,Sedan,Sedan,,, +01/09/2022,9:21,BROOKLYN,11212,40.66183,-73.92094,"(40.66183, -73.92094)",,,214 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493426,Sedan,,,, +01/09/2022,23:30,QUEENS,11368,40.757923,-73.85842,"(40.757923, -73.85842)",,,111-04 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4493714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +01/09/2022,16:17,QUEENS,11432,40.70752,-73.806435,"(40.70752, -73.806435)",,,150-65 87 ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4493595,Sedan,Sedan,,, +01/09/2022,18:15,MANHATTAN,10029,40.78744,-73.94478,"(40.78744, -73.94478)",2 AVENUE,EAST 101 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493694,Sedan,,,, +01/09/2022,8:18,BROOKLYN,11226,40.65505,-73.95631,"(40.65505, -73.95631)",CLARKSON AVENUE,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493165,Sedan,Sedan,,, +01/09/2022,11:30,QUEENS,11385,40.703777,-73.89638,"(40.703777, -73.89638)",,,60-85 CATALPA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493231,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,11:21,BRONX,10456,40.829002,-73.91557,"(40.829002, -73.91557)",EAST 165 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493340,Sedan,,,, +01/09/2022,18:51,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493548,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,0:00,,,40.697407,-73.93601,"(40.697407, -73.93601)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493776,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/09/2022,17:55,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493252,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,22:29,BROOKLYN,11212,40.666397,-73.91185,"(40.666397, -73.91185)",,,198 BRISTOL STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4493294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/09/2022,18:20,BRONX,10469,40.87844,-73.84411,"(40.87844, -73.84411)",BOSTON ROAD,TIEMANN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4493865,Sedan,,,, +01/09/2022,14:35,QUEENS,11373,40.746693,-73.87676,"(40.746693, -73.87676)",,,41-11 ELBERTSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4493195,Sedan,Sedan,,, +01/07/2022,14:17,BROOKLYN,11234,40.624165,-73.917755,"(40.624165, -73.917755)",AVENUE L,RALPH AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493754,Sedan,Sedan,,, +01/09/2022,0:00,,,40.653976,-73.952835,"(40.653976, -73.952835)",LENOX ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493644,Sedan,,,, +12/28/2021,7:00,BRONX,10465,40.815594,-73.80814,"(40.815594, -73.80814)",,,3079 MULLAN PLACE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493678,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,7:04,STATEN ISLAND,10307,40.50234,-74.24078,"(40.50234, -74.24078)",YETMAN AVENUE,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493741,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/06/2022,21:57,,,40.64939,-73.975296,"(40.64939, -73.975296)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493850,Taxi,,,, +01/09/2022,23:05,,,40.739902,-73.972855,"(40.739902, -73.972855)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4493366,Sedan,,,, +01/07/2022,8:00,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493815,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,16:00,BRONX,10467,40.884857,-73.87848,"(40.884857, -73.87848)",EAST 213 STREET,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493417,Sedan,,,, +01/09/2022,13:50,BROOKLYN,11230,40.61977,-73.966194,"(40.61977, -73.966194)",EAST 9 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,22:47,,,40.6427,-73.87661,"(40.6427, -73.87661)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493535,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,7:20,,,40.58466,-73.95086,"(40.58466, -73.95086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4493258,Sedan,,,, +01/07/2022,22:22,,,40.70183,-73.91933,"(40.70183, -73.91933)",IRVING AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493766,Sedan,Sedan,,, +01/09/2022,12:08,MANHATTAN,10035,40.8076,-73.93719,"(40.8076, -73.93719)",EAST 129 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4493461,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,14:30,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431623,Sedan,,,, +01/09/2022,20:22,BROOKLYN,11226,40.650112,-73.9607,"(40.650112, -73.9607)",,,2022 CHURCH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493327,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,17:30,MANHATTAN,10035,40.80383,-73.94211,"(40.80383, -73.94211)",EAST 122 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4493463,Sedan,Sedan,Sedan,, +01/09/2022,4:18,,,40.716713,-73.82782,"(40.716713, -73.82782)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4493403,Sedan,,,, +12/23/2021,18:24,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493825,Sedan,,,, +01/09/2022,3:10,,,40.749607,-73.89687,"(40.749607, -73.89687)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4492943,Sedan,Sedan,,, +12/21/2021,16:20,BROOKLYN,11239,40.6468,-73.88496,"(40.6468, -73.88496)",LOUISIANA AVENUE,TWIN PINES DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493877,Sedan,,,, +01/09/2022,5:30,QUEENS,11428,40.715958,-73.74565,"(40.715958, -73.74565)",JAMAICA AVENUE,212 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4493288,Sedan,,,, +01/05/2022,18:07,QUEENS,11368,40.757755,-73.862816,"(40.757755, -73.862816)",NORTHERN BOULEVARD,106 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493734,E-Scooter,,,, +01/09/2022,18:00,BRONX,10467,40.87601,-73.86214,"(40.87601, -73.86214)",EAST GUN HILL ROAD,BARNES AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493801,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,4:35,QUEENS,11377,40.74623,-73.89737,"(40.74623, -73.89737)",,,67-03 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4492997,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,14:10,,,40.52128,-74.23946,"(40.52128, -74.23946)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493830,Sedan,Sedan,,, +01/09/2022,6:30,MANHATTAN,10002,40.716923,-73.98322,"(40.716923, -73.98322)",DELANCEY STREET,PITT STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493255,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,3:01,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493408,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,15:53,BROOKLYN,11204,40.62318,-73.98611,"(40.62318, -73.98611)",18 AVENUE,58 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4493320,Sedan,,,, +01/09/2022,17:00,QUEENS,11369,40.760612,-73.872894,"(40.760612, -73.872894)",96 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,21:55,BROOKLYN,11221,40.697998,-73.92606,"(40.697998, -73.92606)",MYRTLE AVENUE,CEDAR STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493765,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/09/2022,19:02,,,40.611084,-73.99832,"(40.611084, -73.99832)",79 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493357,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,12:14,BRONX,10469,40.87689,-73.8468,"(40.87689, -73.8468)",,,3490 BOSTON ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493864,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,1:20,QUEENS,11373,40.744698,-73.87234,"(40.744698, -73.87234)",,,43-50 ELBERTSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493194,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,11:30,,,40.60802,-74.14818,"(40.60802, -74.14818)",,,782 SOUTH GANNON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493219,Sedan,,,, +01/09/2022,22:05,BROOKLYN,11217,40.686817,-73.97821,"(40.686817, -73.97821)",ASHLAND PLACE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4493623,Sedan,Taxi,,, +01/09/2022,20:00,QUEENS,11417,40.676968,-73.83527,"(40.676968, -73.83527)",133 AVENUE,CENTREVILLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493276,Sedan,,,, +01/08/2022,6:50,,,40.793816,-73.94012,"(40.793816, -73.94012)",2 AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4493698,Bus,Sedan,,, +01/09/2022,14:00,,,,,,MANOR ROAD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4493166,Sedan,Sedan,,, +01/09/2022,12:50,,,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4493492,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,20:15,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4493649,Bike,Sedan,,, +01/09/2022,7:41,,,40.86159,-73.91295,"(40.86159, -73.91295)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4493205,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/09/2022,6:45,BRONX,10452,40.84224,-73.917694,"(40.84224, -73.917694)",WEST 172 STREET,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493333,Station Wagon/Sport Utility Vehicle,,,, +12/24/2021,14:10,BRONX,10465,40.815823,-73.82272,"(40.815823, -73.82272)",,,261 BALCOM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493779,Sedan,Sedan,,, +01/09/2022,12:50,QUEENS,11379,40.724625,-73.880035,"(40.724625, -73.880035)",79 STREET,ELIOT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493840,,,,, +01/07/2022,9:00,BROOKLYN,11203,40.652752,-73.93049,"(40.652752, -73.93049)",,,835 UTICA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Passing Too Closely,,,,4493716,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,23:32,,,40.625786,-74.15491,"(40.625786, -74.15491)",FOREST AVENUE,VANNAME AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4493266,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/09/2022,17:20,BROOKLYN,11204,40.609646,-73.9829,"(40.609646, -73.9829)",,,1517 WEST 9 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493349,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,13:34,,,40.6828,-73.90638,"(40.6828, -73.90638)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493769,Sedan,Sedan,,, +01/09/2022,10:45,,,40.71493,-73.79316,"(40.71493, -73.79316)",KINGSTON PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493585,Sedan,Sedan,,, +01/09/2022,9:28,BROOKLYN,11204,40.619972,-73.99157,"(40.619972, -73.99157)",,,1735 65 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493098,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,18:51,QUEENS,11434,40.676548,-73.76838,"(40.676548, -73.76838)",133 AVENUE,BEDELL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493692,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,11:30,,,40.636242,-74.01237,"(40.636242, -74.01237)",61 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/01/2022,9:10,,,40.825817,-73.95302,"(40.825817, -73.95302)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493656,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,22:05,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,CRESCENT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493512,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,13:55,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",MURRAY STREET,WEST STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4493373,Sedan,Bike,,, +01/08/2022,8:29,STATEN ISLAND,10304,40.613014,-74.079926,"(40.613014, -74.079926)",CIRCLE LOOP,SCENIC LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493854,Sedan,,,, +01/09/2022,17:43,QUEENS,11367,40.725937,-73.8165,"(40.725937, -73.8165)",150 STREET,73 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493425,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,15:03,,,40.69793,-73.91028,"(40.69793, -73.91028)",MADISON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493771,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,14:31,BROOKLYN,11212,40.661983,-73.90198,"(40.661983, -73.90198)",POWELL STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493292,Sedan,Sedan,,, +12/13/2021,8:15,BROOKLYN,11235,40.586514,-73.96033,"(40.586514, -73.96033)",CONEY ISLAND AVENUE,MANOR COURT,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493706,Sedan,,,, +01/06/2022,15:57,STATEN ISLAND,10312,40.553516,-74.20152,"(40.553516, -74.20152)",,,25 LOMBARD COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4493743,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,23:25,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4493344,Sedan,Sedan,,, +01/03/2022,22:20,,,,,,VANDERBILT AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493665,Taxi,,,, +01/09/2022,6:47,,,,,,JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493136,Sedan,Sedan,,, +01/09/2022,11:00,,,40.836624,-73.92612,"(40.836624, -73.92612)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493441,Sedan,,,, +01/09/2022,20:15,,,40.66718,-73.95076,"(40.66718, -73.95076)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493222,Sedan,,,, +01/09/2022,9:30,,,40.86309,-73.88946,"(40.86309, -73.88946)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493464,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,20:30,BROOKLYN,11229,40.61088,-73.95415,"(40.61088, -73.95415)",,,1918 AVENUE P,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493282,Sedan,MOPED,,, +01/09/2022,22:01,,,40.792435,-73.934265,"(40.792435, -73.934265)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4493437,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +01/05/2022,18:10,,,40.59068,-73.78878,"(40.59068, -73.78878)",LARKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493814,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,14:42,BROOKLYN,11214,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,CROPSEY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431854,Sedan,Sedan,,, +12/11/2021,17:19,BRONX,10454,40.80614,-73.925804,"(40.80614, -73.925804)",,,85 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485875,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,14:36,BROOKLYN,11249,40.719513,-73.9634,"(40.719513, -73.9634)",,,10 NORTH 5 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485742,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,7:30,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485402,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,2:45,MANHATTAN,10019,40.76364,-73.97556,"(40.76364, -73.97556)",,,49 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485326,Sedan,,,, +12/11/2021,17:06,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",FLATLANDS AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4485517,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/09/2021,21:37,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4486124,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,3:45,,,40.624603,-74.079605,"(40.624603, -74.079605)",BROAD STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485673,Sedan,Sedan,,, +12/11/2021,15:38,BROOKLYN,11228,40.606525,-74.01582,"(40.606525, -74.01582)",,,255 BAY 8 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4485469,Sedan,Sedan,Sedan,, +12/08/2021,5:55,,,40.68045,-73.87586,"(40.68045, -73.87586)",ATLANTIC AVENUE,CONDUIT BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486039,Station Wagon/Sport Utility Vehicle,Bike,,, +12/03/2021,12:30,BROOKLYN,11233,40.68419,-73.91612,"(40.68419, -73.91612)",,,753 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4486055,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,17:35,BROOKLYN,11215,40.6728794,-73.9717506,"(40.6728794, -73.9717506)",,,904 UNION STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468737,2 dr sedan,Sedan,,, +12/08/2021,7:26,BROOKLYN,11207,40.67276,-73.88998,"(40.67276, -73.88998)",,,2222 PITKIN AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4486000,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/06/2021,16:13,BROOKLYN,11230,40.6301229,-73.9711255,"(40.6301229, -73.9711255)",,,630 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468865,Station Wagon/Sport Utility Vehicle,,,, +11/29/2021,6:40,,,40.82677,-73.856155,"(40.82677, -73.856155)",PUGSLEY AVENUE,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4486101,,,,, +12/11/2021,19:25,BROOKLYN,11208,40.67046,-73.87704,"(40.67046, -73.87704)",MONTAUK AVENUE,BLAKE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4486307,E-Bike,,,, +10/17/2021,15:00,,,40.608317,-74.1313086,"(40.608317, -74.1313086)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468659,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,14:30,BRONX,10469,40.873122,-73.8613216,"(40.873122, -73.8613216)",BRONXWOOD AVENUE,DUNCAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468792,Sedan,,,, +10/17/2021,22:20,,,40.6626823,-73.8500771,"(40.6626823, -73.8500771)",SHORE PARKWAY,156 AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4468210,Sedan,Sedan,,, +12/11/2021,14:00,BROOKLYN,11207,40.677868,-73.90332,"(40.677868, -73.90332)",VAN SIDERIN AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4485551,Bus,Sedan,Sedan,Pick-up Truck, +12/08/2021,0:00,BROOKLYN,11208,40.6701,-73.85829,"(40.6701, -73.85829)",,,2858 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486007,Sedan,,,, +12/11/2021,0:50,BRONX,10472,40.8283,-73.87624,"(40.8283, -73.87624)",,,1166 MANOR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486120,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,17:53,BROOKLYN,11219,40.62405,-73.999954,"(40.62405, -73.999954)",66 STREET,14 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485778,Station Wagon/Sport Utility Vehicle,,,, +12/07/2021,19:00,QUEENS,11429,40.713768,-73.74759,"(40.713768, -73.74759)",,,99-40 211 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486142,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,15:00,BROOKLYN,11208,40.678246,-73.88361,"(40.678246, -73.88361)",,,3002 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4486169,Sedan,,,, +12/11/2021,7:19,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485433,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,8:45,BROOKLYN,11237,40.708298,-73.93254,"(40.708298, -73.93254)",,,100 MORGAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485867,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/14/2021,5:50,,,40.812218,-73.899254,"(40.812218, -73.899254)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Obstruction/Debris,,,,4486579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,18:15,BRONX,10459,40.830227,-73.898575,"(40.830227, -73.898575)",UNION AVENUE,FREEMAN STREET,,1,0,1,0,0,0,0,0,,,,,,4493364,,,,, +01/07/2022,3:10,STATEN ISLAND,10309,40.518528,-74.23077,"(40.518528, -74.23077)",,,6867 AMBOY ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493826,Sedan,,,, +01/09/2022,3:45,,,40.61651,-74.02666,"(40.61651, -74.02666)",GATLING PLACE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4492950,Sedan,,,, +01/04/2022,22:15,,,40.558887,-74.1977,"(40.558887, -74.1977)",ARTHUR KILL ROAD,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4493733,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,15:43,MANHATTAN,10017,40.75348,-73.980896,"(40.75348, -73.980896)",EAST 42 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493650,Sedan,Sedan,,, +01/09/2022,9:00,QUEENS,11355,40.75451,-73.827156,"(40.75451, -73.827156)",COLDEN STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493200,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,8:40,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493213,Sedan,,,, +01/09/2022,18:45,BROOKLYN,11208,40.684647,-73.8687,"(40.684647, -73.8687)",FULTON STREET,NICHOLS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4493543,,,,, +01/07/2022,22:45,QUEENS,11434,40.661,-73.768074,"(40.661, -73.768074)",BREWER BOULEVARD,146 TERRACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493873,Sedan,,,, +01/09/2022,19:45,,,40.713085,-73.94415,"(40.713085, -73.94415)",GRAHAM AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493230,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,1:10,BRONX,10462,40.852425,-73.86873,"(40.852425, -73.86873)",BRONX PARK EAST,BRADY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4493629,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,20:33,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493261,Sedan,,,, +01/07/2022,3:30,BRONX,10463,40.885643,-73.89945,"(40.885643, -73.89945)",,,190 WEST 239 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,7:50,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",30 AVENUE,STEINWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493152,Sedan,Sedan,,, +01/09/2022,5:53,BROOKLYN,11208,40.68201,-73.88424,"(40.68201, -73.88424)",,,157 LINWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493544,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,13:40,BROOKLYN,11232,40.645947,-73.9951,"(40.645947, -73.9951)",39 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493674,Sedan,,,, +01/09/2022,19:03,MANHATTAN,10128,40.78519,-73.94934,"(40.78519, -73.94934)",3 AVENUE,EAST 96 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493696,Sedan,,,, +01/09/2022,8:00,STATEN ISLAND,10306,40.574093,-74.1192,"(40.574093, -74.1192)",ROSE AVENUE,3 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4493171,Sedan,,,, +01/09/2022,20:25,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",FOSTER AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493254,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,18:00,BRONX,10473,40.82282,-73.8691,"(40.82282, -73.8691)",STORY AVENUE,CROES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493410,Sedan,Bike,,, +01/05/2022,5:50,STATEN ISLAND,10309,40.520916,-74.235115,"(40.520916, -74.235115)",PAGE AVENUE,RICHMOND VALLEY ROAD,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4493732,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/06/2022,20:20,BRONX,10474,40.807,-73.88343,"(40.807, -73.88343)",,,1321 VIELE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493860,Tractor Truck Gasoline,,,, +01/09/2022,11:22,BRONX,10466,40.892754,-73.85774,"(40.892754, -73.85774)",WHITE PLAINS ROAD,EAST 232 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,23:00,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",LEFFERTS BOULEVARD,NORTH CONDUIT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493277,Motorbike,,,, +01/09/2022,0:34,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4493135,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,11:39,BROOKLYN,11220,40.646633,-74.00872,"(40.646633, -74.00872)",,,4717 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493245,Pick-up Truck,Sedan,,, +01/09/2022,5:38,BROOKLYN,11207,40.67856,-73.889015,"(40.67856, -73.889015)",FULTON STREET,BARBEY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493526,,,,, +01/09/2022,2:50,QUEENS,11422,40.670025,-73.73269,"(40.670025, -73.73269)",,,243-07 136 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4493237,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/07/2022,16:40,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",SOUTH CONDUIT AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493812,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,19:40,BRONX,10463,40.88118,-73.904106,"(40.88118, -73.904106)",,,222 WEST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493680,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,16:42,BROOKLYN,11218,40.634438,-73.97241,"(40.634438, -73.97241)",,,581 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493322,Sedan,,,, +01/09/2022,14:44,,,40.855286,-73.89809,"(40.855286, -73.89809)",TIEBOUT AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493615,Ambulance,Sedan,,, +01/09/2022,10:53,QUEENS,11412,40.69537,-73.76326,"(40.69537, -73.76326)",MEXICO STREET,QUENCER ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493688,Sedan,Sedan,,, +01/09/2022,21:00,BROOKLYN,11215,40.664604,-73.97685,"(40.664604, -73.97685)",9 STREET,PROSPECT PARK WEST,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4493663,,,,, +01/09/2022,22:40,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4493394,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/09/2022,18:15,MANHATTAN,10003,40.732452,-73.98732,"(40.732452, -73.98732)",,,203 EAST 13 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493307,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,0:00,BRONX,10465,40.83312,-73.81796,"(40.83312, -73.81796)",,,908 CLARENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,5:00,BRONX,10474,40.81867,-73.89191,"(40.81867, -73.89191)",BRUCKNER EXPRESSWAY,BARRETTO STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4493291,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,1:15,BROOKLYN,11220,40.648323,-74.015686,"(40.648323, -74.015686)",,,254 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493091,Sedan,,,, +01/07/2022,6:35,STATEN ISLAND,10309,40.536915,-74.22502,"(40.536915, -74.22502)",SHARROTTS ROAD,VETERANS ROAD WEST,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4493827,Bus,PK,,, +01/09/2022,11:40,,,40.624912,-74.146706,"(40.624912, -74.146706)",FOREST AVENUE,WILLOW ROAD WEST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493220,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,0:22,,,,,,PELHAM PARKWAY,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493350,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/05/2022,6:15,STATEN ISLAND,10309,40.54909,-74.22084,"(40.54909, -74.22084)",BLOOMINGDALE ROAD,VETERANS ROAD WEST,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493737,Sedan,,,, +01/09/2022,14:50,,,40.740078,-73.89969,"(40.740078, -73.89969)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493358,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,17:20,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4493511,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,2:45,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4493744,Sedan,Dump,,, +01/09/2022,17:25,BRONX,10465,40.8262,-73.821686,"(40.8262, -73.821686)",RANDALL AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493330,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,16:00,QUEENS,11103,40.760944,-73.9163,"(40.760944, -73.9163)",31 AVENUE,41 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493267,Sedan,Sedan,,, +01/08/2022,17:05,QUEENS,11692,40.589928,-73.804596,"(40.589928, -73.804596)",,,246 BEACH 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493817,Sedan,,,, +01/09/2022,15:45,,,40.53171,-74.202896,"(40.53171, -74.202896)",FOSTER ROAD,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4493834,Sedan,,,, +01/09/2022,10:55,QUEENS,11432,40.709957,-73.80541,"(40.709957, -73.80541)",,,85-60 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493584,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/06/2022,13:00,BRONX,10462,40.84711,-73.85848,"(40.84711, -73.85848)",,,925 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493721,Sedan,Sedan,,, +01/09/2022,20:35,BROOKLYN,11203,40.65374,-73.93162,"(40.65374, -73.93162)",LINDEN BOULEVARD,EAST 49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4493370,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/27/2021,23:45,,,,,,,,40 BENNETT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432151,Sedan,,,, +01/09/2022,13:36,QUEENS,11362,40.763885,-73.72671,"(40.763885, -73.72671)",,,254-65 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493451,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,8:45,BROOKLYN,11221,40.693874,-73.91777,"(40.693874, -73.91777)",CENTRAL AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493768,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,15:00,BROOKLYN,11249,40.719303,-73.96281,"(40.719303, -73.96281)",,,149 KENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493482,Sedan,,,, +01/09/2022,21:35,BROOKLYN,11237,40.69285,-73.90355,"(40.69285, -73.90355)",IRVING AVENUE,DECATUR STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493772,Sedan,Sedan,,, +01/09/2022,4:12,BROOKLYN,11228,40.619263,-74.020905,"(40.619263, -74.020905)",85 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4492951,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +07/25/2021,19:49,BRONX,10474,40.81942,-73.88392,"(40.81942, -73.88392)",EDGEWATER ROAD,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493820,Motorscooter,,,, +01/09/2022,17:00,,,40.688763,-73.80833,"(40.688763, -73.80833)",VANWYCK EXPRESSWAY,107 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4493305,Sedan,Sedan,,, +01/04/2022,9:30,BROOKLYN,11234,40.614906,-73.91329,"(40.614906, -73.91329)",,,2125 MILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493651,Sedan,Box Truck,,, +01/09/2022,15:02,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4493214,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,1:10,,,40.76816,-73.90544,"(40.76816, -73.90544)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493636,Sedan,Sedan,,, +01/07/2022,17:27,STATEN ISLAND,10301,40.63346,-74.076546,"(40.63346, -74.076546)",VANDUZER STREET,GRANT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493853,Sedan,,,, +01/05/2022,9:40,STATEN ISLAND,10312,40.537014,-74.192314,"(40.537014, -74.192314)",,,211 DARLINGTON AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,,4493738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/09/2022,20:45,MANHATTAN,10025,,,,AMSTERDAM AVENUE,WEST 106 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493391,Sedan,,,, +01/07/2022,8:00,QUEENS,11692,40.59648,-73.79652,"(40.59648, -73.79652)",,,584 BEACH 67 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493711,Sedan,,,, +01/09/2022,4:15,BROOKLYN,11207,40.670483,-73.89652,"(40.670483, -73.89652)",BELMONT AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493532,Sedan,Sedan,,, +01/09/2022,13:20,BROOKLYN,11215,40.662132,-73.98723,"(40.662132, -73.98723)",PROSPECT AVENUE,CALDER PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493236,Pick-up Truck,Pick-up Truck,,, +01/09/2022,23:32,BROOKLYN,11228,40.626293,-74.01572,"(40.626293, -74.01572)",FORT HAMILTON PARKWAY,74 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4493260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/09/2022,13:45,BROOKLYN,11223,40.60667,-73.972595,"(40.60667, -73.972595)",MC DONALD AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493156,Sedan,Sedan,,, +01/09/2022,23:06,,,40.800602,-73.97426,"(40.800602, -73.97426)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4493545,Sedan,Sedan,,, +01/09/2022,15:30,MANHATTAN,10037,40.81719,-73.93446,"(40.81719, -73.93446)",WEST 142 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4493342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,4:20,QUEENS,11422,40.652565,-73.74656,"(40.652565, -73.74656)",BROOKVILLE BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493872,Sedan,,,, +01/09/2022,21:00,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493238,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +01/09/2022,17:30,QUEENS,11105,40.781574,-73.9136,"(40.781574, -73.9136)",23 STREET,21 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493268,Sedan,,,, +01/08/2022,6:25,,,40.828743,-73.83578,"(40.828743, -73.83578)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493676,Box Truck,,,, +06/27/2021,16:54,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432206,Sedan,Sedan,,, +10/18/2021,21:30,,,40.7374934,-73.9350798,"(40.7374934, -73.9350798)",VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468577,Sedan,Sedan,,, +01/08/2022,23:30,BRONX,10463,40.874966,-73.90345,"(40.874966, -73.90345)",,,2918 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493681,Sedan,,,, +01/09/2022,10:00,BROOKLYN,11212,40.660736,-73.910385,"(40.660736, -73.910385)",BRISTOL STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493147,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,23:30,,,40.698647,-73.98346,"(40.698647, -73.98346)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493434,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/09/2022,6:17,BRONX,10466,40.896496,-73.84983,"(40.896496, -73.84983)",,,4277 WICKHAM AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4493199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/09/2022,21:00,,,40.743343,-73.97203,"(40.743343, -73.97203)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4493576,Sedan,,,, +01/09/2022,1:10,QUEENS,11418,40.695206,-73.84271,"(40.695206, -73.84271)",,,104-15 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4493134,,,,, +01/09/2022,4:05,,,40.687546,-73.8208,"(40.687546, -73.8208)",123 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493279,Sedan,Sedan,,, +01/08/2022,10:00,,,40.668507,-73.779625,"(40.668507, -73.779625)",140 AVENUE,155 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4493667,Sedan,Pick-up Truck,,, +01/09/2022,12:30,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493525,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/09/2022,13:39,,,,,,FOREST PARK DRIVE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4493225,Pick-up Truck,,,, +01/09/2022,11:31,,,40.505013,-74.24074,"(40.505013, -74.24074)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493832,Station Wagon/Sport Utility Vehicle,Bus,,, +01/02/2022,0:47,,,40.670994,-73.95496,"(40.670994, -73.95496)",BEDFORD AVENUE,,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493781,Bike,Sedan,,, +01/09/2022,16:52,BRONX,10469,40.86292,-73.85204,"(40.86292, -73.85204)",MACE AVENUE,ESPLANADE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,18:04,BROOKLYN,11218,40.636406,-73.9703,"(40.636406, -73.9703)",DITMAS AVENUE,EAST 8 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493323,,,,, +01/03/2022,15:25,STATEN ISLAND,10309,40.5199,-74.209114,"(40.5199, -74.209114)",,,182 WOODVALE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4493731,Sedan,,,, +01/08/2022,14:15,BROOKLYN,11209,40.624493,-74.03538,"(40.624493, -74.03538)",,,135 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493763,Sedan,,,, +01/09/2022,14:02,QUEENS,11691,40.605244,-73.75508,"(40.605244, -73.75508)",,,21-41 MOTT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493359,Sedan,Sedan,,, +01/09/2022,15:20,BROOKLYN,11213,40.663605,-73.934395,"(40.663605, -73.934395)",EMPIRE BOULEVARD,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493221,Sedan,Sedan,,, +01/09/2022,16:49,,,40.669098,-73.93666,"(40.669098, -73.93666)",TROY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493189,Sedan,Sedan,,, +01/09/2022,22:40,STATEN ISLAND,10305,40.612415,-74.07365,"(40.612415, -74.07365)",VIRGINIA AVENUE,FOX HILL TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493856,Sedan,,,, +01/09/2022,4:34,,,,,,CARTER AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4493614,Sedan,Sedan,Sedan,, +01/08/2022,1:15,,,40.691017,-73.77464,"(40.691017, -73.77464)",115 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4493685,Tow Truck / Wrecker,Sedan,Station Wagon/Sport Utility Vehicle,, +01/09/2022,0:30,QUEENS,11368,40.750717,-73.85877,"(40.750717, -73.85877)",ROOSEVELT AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493248,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,10:29,QUEENS,11375,40.716805,-73.852234,"(40.716805, -73.852234)",69 AVENUE,HARROW STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4493399,Sedan,Sedan,,, +01/03/2022,16:00,QUEENS,11369,40.76008,-73.87004,"(40.76008, -73.87004)",,,31-42 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493662,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,22:45,BROOKLYN,11236,40.641445,-73.90987,"(40.641445, -73.90987)",,,643 EAST 88 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493508,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,13:59,BROOKLYN,11234,40.612316,-73.9404,"(40.612316, -73.9404)",EAST 31 STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493175,Sedan,Sedan,,, +10/18/2021,17:00,BROOKLYN,11226,40.6376843,-73.963594,"(40.6376843, -73.963594)",,,489 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468622,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,2:27,BROOKLYN,11233,40.67614,-73.907166,"(40.67614, -73.907166)",ATLANTIC AVENUE,SHERLOCK PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493094,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,2:40,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493289,Dump,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,19:25,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493412,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,16:55,,,40.78717,-73.79295,"(40.78717, -73.79295)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4493253,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,22:06,MANHATTAN,10029,40.79055,-73.94828,"(40.79055, -73.94828)",,,126 EAST 103 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4493811,E-Scooter,,,, +01/07/2022,10:28,STATEN ISLAND,10307,40.50648,-74.23706,"(40.50648, -74.23706)",,,94 AMARON LANE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493828,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/05/2022,8:00,STATEN ISLAND,10309,40.54909,-74.22084,"(40.54909, -74.22084)",BLOOMINGDALE ROAD,VETERANS ROAD WEST,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Unspecified,4493736,Sedan,Sedan,Sedan,Sedan,Sedan +01/09/2022,5:11,,,,,,BRUCKNER BLVD AND BROOK AVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4493310,Sedan,Tractor Truck Diesel,,, +01/05/2022,19:47,BROOKLYN,11226,40.643013,-73.95236,"(40.643013, -73.95236)",,,2618 CLARENDON ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,19:34,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493546,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,19:00,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,,,,4493215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,3:53,BRONX,10457,40.84519,-73.900734,"(40.84519, -73.900734)",PARK AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493655,Sedan,,,, +01/04/2022,14:20,QUEENS,11364,40.73873,-73.7573,"(40.73873, -73.7573)",75 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/09/2022,12:00,,,40.679737,-73.878395,"(40.679737, -73.878395)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493534,Sedan,Sedan,,, +01/09/2022,3:50,BRONX,10469,40.877625,-73.84669,"(40.877625, -73.84669)",,,3446 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4493197,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,20:17,QUEENS,11355,40.756264,-73.823524,"(40.756264, -73.823524)",UNION STREET,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493239,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,18:14,MANHATTAN,10029,40.79157,-73.94469,"(40.79157, -73.94469)",EAST 106 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4493695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,8:20,,,40.87802,-73.90241,"(40.87802, -73.90241)",BAILEY AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4493682,,,,, +01/09/2022,8:24,QUEENS,11693,40.58974,-73.814835,"(40.58974, -73.814835)",BEACH CHANNEL DRIVE,BEACH 89 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493163,Sedan,Tanker,,, +01/09/2022,20:30,BRONX,10456,40.830544,-73.9011,"(40.830544, -73.9011)",,,1258 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4493740,Convertible,,,, +01/09/2022,9:37,BROOKLYN,11210,40.63247,-73.941826,"(40.63247, -73.941826)",,,1676 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493368,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,15:25,QUEENS,11422,40.674145,-73.72924,"(40.674145, -73.72924)",,,244-10 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4493816,Sedan,,,, +01/09/2022,15:30,,,40.784534,-73.9736,"(40.784534, -73.9736)",WEST 83 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493824,Sedan,,,, +01/09/2022,4:15,BROOKLYN,11234,40.62749,-73.93239,"(40.62749, -73.93239)",,,4526 KINGS HIGHWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4492961,Sedan,Sedan,,, +01/09/2022,11:25,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493430,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,11:10,BROOKLYN,11222,40.726147,-73.95216,"(40.726147, -73.95216)",,,727 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493485,Sedan,Sedan,,, +01/09/2022,0:30,,,40.709633,-73.767815,"(40.709633, -73.767815)",HOLLIS AVENUE,99 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,21:50,QUEENS,11368,40.757824,-73.86101,"(40.757824, -73.86101)",NORTHERN BOULEVARD,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493713,Sedan,Sedan,Sedan,, +01/09/2022,10:15,,,40.836937,-73.927124,"(40.836937, -73.927124)",WEST 167 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493341,Sedan,Sedan,,, +01/09/2022,1:35,,,40.739162,-73.9412,"(40.739162, -73.9412)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4493452,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/09/2022,4:23,BROOKLYN,11206,40.710094,-73.93722,"(40.710094, -73.93722)",STAGG STREET,WATERBURY STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4493235,Sedan,Sedan,,, +01/09/2022,10:00,QUEENS,11422,40.652565,-73.74656,"(40.652565, -73.74656)",BROOKVILLE BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493146,Sedan,Sedan,,, +12/28/2021,1:10,,,40.6525,-73.924644,"(40.6525, -73.924644)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493643,Sedan,Sedan,,, +01/06/2022,23:15,BROOKLYN,11203,40.65686,-73.92703,"(40.65686, -73.92703)",CLARKSON AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493726,Sedan,Pick-up Truck,,, +01/09/2022,17:35,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",NORTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493269,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,17:30,,,40.69637,-73.837906,"(40.69637, -73.837906)",JAMAICA AVENUE,110 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493259,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,1:04,BRONX,10465,40.828518,-73.84119,"(40.828518, -73.84119)",BRUCKNER BOULEVARD,BRUSH AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4493677,Sedan,Sedan,,, +01/09/2022,19:10,,,40.840645,-73.84205,"(40.840645, -73.84205)",WESTCHESTER AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493329,Van,Sedan,,, +01/09/2022,20:30,,,40.687416,-73.95972,"(40.687416, -73.95972)",CLASSON AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4493384,Taxi,Sedan,,, +01/11/2021,12:07,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",VICTORY BOULEVARD,WOODSTOCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493852,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,13:58,,,40.703403,-73.917786,"(40.703403, -73.917786)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493773,Van,Sedan,,, +01/09/2022,13:00,QUEENS,11372,40.74946,-73.87667,"(40.74946, -73.87667)",,,37-51 90 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493418,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,5:33,BRONX,10454,40.807453,-73.90919,"(40.807453, -73.90919)",EAST 142 STREET,WALES AVENUE,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4493315,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,10:00,BROOKLYN,11210,40.62964,-73.94224,"(40.62964, -73.94224)",,,3515 AVENUE I,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493753,Sedan,,,, +01/07/2022,23:45,,,40.696667,-73.92824,"(40.696667, -73.92824)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4493767,Sedan,Sedan,Sedan,, +01/09/2022,19:47,,,,,,BOSTON ROAD,PELHAM PARKWAY SOUTH,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4493352,Sedan,Sedan,,, +01/10/2022,16:13,,,40.832535,-73.85797,"(40.832535, -73.85797)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493784,Sedan,Sedan,,, +02/20/2022,1:09,,,40.76874,-73.90881,"(40.76874, -73.90881)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4504671,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,3:35,MANHATTAN,10016,40.744625,-73.98525,"(40.744625, -73.98525)",EAST 29 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504205,Bike,,,, +02/20/2022,12:20,,,40.72565,-73.93205,"(40.72565, -73.93205)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4504640,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/28/2021,17:30,QUEENS,11423,40.713577,-73.77971,"(40.713577, -73.77971)",,,88-01 182 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504833,Station Wagon/Sport Utility Vehicle,,,, +02/09/2022,8:30,MANHATTAN,10031,40.823315,-73.94901,"(40.823315, -73.94901)",AMSTERDAM AVENUE,WEST 142 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504732,Sedan,Sedan,,, +02/20/2022,20:48,,,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,Unspecified,,4504402,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +10/18/2021,15:50,,,40.8690581,-73.8796321,"(40.8690581, -73.8796321)",MOSHOLU PARKWAY,EAST 205 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468812,Bus,,,, +05/14/2021,11:56,QUEENS,11377,40.751083,-73.9079,"(40.751083, -73.9079)",54 STREET,37 AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4416614,Sedan,Sedan,,, +06/20/2021,0:01,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4429882,Sedan,Sedan,,, +06/18/2021,15:11,QUEENS,11368,40.73968,-73.857315,"(40.73968, -73.857315)",102 STREET,MARTENSE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4432499,Van,,,, +06/23/2021,23:50,QUEENS,11434,40.68676,-73.78449,"(40.68676, -73.78449)",BREWER BOULEVARD,116 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4432493,Sedan,Sedan,,, +06/27/2021,10:10,BRONX,10457,40.85403,-73.89334,"(40.85403, -73.89334)",BASSFORD AVENUE,FLETCHER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432511,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,9:15,QUEENS,11369,40.7578,-73.87916,"(40.7578, -73.87916)",,,32-22 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432505,Sedan,,,, +06/24/2021,2:24,,,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432510,Sedan,SCOOTER,,, +06/09/2021,15:24,QUEENS,11413,40.665737,-73.75194,"(40.665737, -73.75194)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4425280,Sedan,Sedan,Sedan,, +06/23/2021,12:21,,,40.720245,-73.9444,"(40.720245, -73.9444)",HUMBOLDT STREET,MEEKER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432485,AMBULANCE,Box Truck,,, +06/16/2021,18:15,MANHATTAN,10001,40.752644,-74.00428,"(40.752644, -74.00428)",WEST 29 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4432509,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,17:09,MANHATTAN,10018,,,,12 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432508,Sedan,Sedan,,, +06/23/2021,6:25,QUEENS,11412,40.700565,-73.76411,"(40.700565, -73.76411)",FARMERS BOULEVARD,112 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4432491,Sedan,Sedan,Van,, +06/18/2021,14:08,QUEENS,11413,40.65942,-73.761116,"(40.65942, -73.761116)",147 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428512,E-Bike,,,, +06/23/2021,13:02,QUEENS,11372,40.748333,-73.87735,"(40.748333, -73.87735)",,,89-03 ROOSEVELT AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432506,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/06/2022,11:30,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4516895,Taxi,,,, +10/18/2021,13:53,BROOKLYN,11210,40.6289654,-73.9451246,"(40.6289654, -73.9451246)",,,915 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468929,Sedan,,,, +06/27/2021,18:14,,,40.83569,-73.86857,"(40.83569, -73.86857)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,5:45,BROOKLYN,11214,40.605957,-74.00639,"(40.605957, -74.00639)",BAY 16 STREET,RUTHERFORD PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432385,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,15:50,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431710,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,3:40,,,40.835716,-73.89205,"(40.835716, -73.89205)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431619,Sedan,Sedan,,, +06/26/2021,16:00,STATEN ISLAND,10305,40.597595,-74.07143,"(40.597595, -74.07143)",,,80 SAND LANE,1,0,1,0,0,0,0,0,Unspecified,,,,,4432345,Sedan,,,, +06/27/2021,22:30,QUEENS,11369,40.76665,-73.87791,"(40.76665, -73.87791)",,,23-71 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432312,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/27/2021,5:59,BROOKLYN,11225,40.667156,-73.95356,"(40.667156, -73.95356)",,,260 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4432130,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/24/2021,16:30,,,40.700672,-73.92164,"(40.700672, -73.92164)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432112,Sedan,,,, +06/27/2021,0:52,,,40.627827,-73.89021,"(40.627827, -73.89021)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431178,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,20:30,BROOKLYN,11220,40.643703,-74.00648,"(40.643703, -74.00648)",,,647 49 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2021,20:00,STATEN ISLAND,10308,40.54387,-74.14445,"(40.54387, -74.14445)",HYLAN BOULEVARD,CLEVELAND AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4432353,Sedan,,,, +06/27/2021,11:00,BROOKLYN,11214,40.594444,-73.98602,"(40.594444, -73.98602)",BAY 43 STREET,BENSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431644,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,18:20,BROOKLYN,11207,40.67425,-73.88885,"(40.67425, -73.88885)",GLENMORE AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4432082,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,6:30,,,40.835297,-73.91291,"(40.835297, -73.91291)",EAST 169 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,Unspecified,,,4432178,Station Wagon/Sport Utility Vehicle,Bike,Sedan,, +06/25/2021,7:00,,,40.739418,-74.00387,"(40.739418, -74.00387)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432258,Sedan,,,, +06/27/2021,0:40,,,40.849403,-73.871445,"(40.849403, -73.871445)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431239,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,20:30,,,40.825428,-73.93631,"(40.825428, -73.93631)",WEST 151 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431654,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:15,,,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432126,Box Truck,Sedan,,, +06/26/2021,22:40,BROOKLYN,11222,40.733986,-73.95226,"(40.733986, -73.95226)",GREEN STREET,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432425,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,15:00,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4432165,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/25/2021,21:00,STATEN ISLAND,10314,40.61625,-74.12904,"(40.61625, -74.12904)",,,142 GOODWIN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4432060,Sedan,Sedan,,, +06/27/2021,6:08,,,40.6062,-74.01001,"(40.6062, -74.01001)",BAY 13 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4431257,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,20:05,BRONX,10456,40.83874,-73.913765,"(40.83874, -73.913765)",EAST 170 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432447,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,10:00,,,40.823624,-73.92308,"(40.823624, -73.92308)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4432446,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,0:26,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431500,Sedan,Sedan,,, +06/27/2021,20:35,,,40.673477,-73.791504,"(40.673477, -73.791504)",146 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4431716,Station Wagon/Sport Utility Vehicle,,,, +06/14/2021,21:23,,,40.694115,-73.79214,"(40.694115, -73.79214)",160 STREET,,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4432328,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2021,22:27,MANHATTAN,10001,40.754616,-73.997116,"(40.754616, -73.997116)",WEST 35 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431764,Bus,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,17:07,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",MADISON AVENUE,EAST 125 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4431872,Sedan,,,, +06/27/2021,21:58,BROOKLYN,11236,40.63868,-73.91682,"(40.63868, -73.91682)",EAST 80 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4431956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/27/2021,5:15,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431462,Sedan,,,, +06/27/2021,13:36,,,40.671505,-73.90734,"(40.671505, -73.90734)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431364,Sedan,,,, +06/26/2021,10:54,BROOKLYN,11209,40.619404,-74.02538,"(40.619404, -74.02538)",88 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4432213,Bike,Sedan,,, +06/27/2021,0:50,MANHATTAN,10014,40.736187,-74.00833,"(40.736187, -74.00833)",WASHINGTON STREET,BANK STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432248,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,14:40,STATEN ISLAND,10305,40.615055,-74.07036,"(40.615055, -74.07036)",SAINT MARYS AVENUE,TILSON PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432289,Sedan,,,, +06/27/2021,4:10,QUEENS,11429,40.713985,-73.73812,"(40.713985, -73.73812)",218 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431451,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,4:29,BROOKLYN,11212,40.666668,-73.92372,"(40.666668, -73.92372)",,,1162 EAST NEW YORK AVENUE,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4431367,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/26/2021,9:30,,,40.697727,-73.92454,"(40.697727, -73.92454)",CENTRAL AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4432148,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,17:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,6:22,BROOKLYN,11212,40.65745,-73.920166,"(40.65745, -73.920166)",,,364 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431489,Sedan,Sedan,,, +06/27/2021,0:00,,,40.627827,-73.89021,"(40.627827, -73.89021)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4431314,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,21:12,BROOKLYN,11234,40.617382,-73.943474,"(40.617382, -73.943474)",KINGS HIGHWAY,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431945,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,19:25,,,40.688847,-73.92119,"(40.688847, -73.92119)",MONROE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432402,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,13:30,,,40.7466,-73.76503,"(40.7466, -73.76503)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431636,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,0:00,,,40.590595,-74.15175,"(40.590595, -74.15175)",,,1038 ROCKLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431671,Sedan,,,, +06/25/2021,15:50,STATEN ISLAND,10306,40.57755,-74.12726,"(40.57755, -74.12726)",ROCKLAND AVENUE,SAINT GEORGE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432342,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,12:20,BRONX,10474,40.816864,-73.882744,"(40.816864, -73.882744)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432363,Box Truck,Tractor Truck Diesel,,, +06/27/2021,16:00,,,40.59038,-74.19295,"(40.59038, -74.19295)",WEST SHORE EXPRESSWAY,GLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432047,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,17:09,BRONX,10453,40.85132,-73.90842,"(40.85132, -73.90842)",EAST TREMONT AVENUE,WALTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431794,Sedan,Sedan,Sedan,, +06/27/2021,19:00,BROOKLYN,11249,40.716206,-73.9661,"(40.716206, -73.9661)",KENT AVENUE,GRAND STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432006,Bike,Sedan,,, +06/27/2021,10:00,BRONX,10473,40.813267,-73.862015,"(40.813267, -73.862015)",,,410 BEACH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431359,Sedan,,,, +06/27/2021,17:49,,,40.524612,-74.230446,"(40.524612, -74.230446)",BOSCOMBE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431476,Sedan,Sedan,,, +06/27/2021,9:30,MANHATTAN,10002,40.720222,-73.98644,"(40.720222, -73.98644)",,,145 NORFOLK STREET,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431590,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/27/2021,21:45,QUEENS,11385,40.7042,-73.88288,"(40.7042, -73.88288)",CENTRAL AVENUE,69 PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4432300,MOPED,,,, +06/27/2021,0:00,MANHATTAN,10039,40.82811,-73.93806,"(40.82811, -73.93806)",,,2890 8 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4431758,Sedan,,,, +06/26/2021,16:46,BROOKLYN,11207,40.67956,-73.8989,"(40.67956, -73.8989)",HIGHLAND BOULEVARD,FANCHON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432100,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,14:14,BROOKLYN,11224,40.579826,-73.97622,"(40.579826, -73.97622)",WEST 8 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432215,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,0:20,QUEENS,11379,40.716244,-73.88149,"(40.716244, -73.88149)",,,73-28 PENELOPE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431502,Sedan,,,, +06/23/2021,13:30,,,40.666145,-73.759125,"(40.666145, -73.759125)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432273,Sedan,Sedan,,, +06/27/2021,19:10,,,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4431567,Station Wagon/Sport Utility Vehicle,Ambulance,,, +06/26/2021,10:46,BROOKLYN,11207,40.6915,-73.90956,"(40.6915, -73.90956)",WILSON AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432154,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,3:20,BRONX,10475,40.889885,-73.82009,"(40.889885, -73.82009)",,,4330 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,5:28,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432081,Sedan,,,, +06/27/2021,2:00,,,40.74693,-73.84866,"(40.74693, -73.84866)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,Unspecified,,,4431837,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/27/2021,17:38,,,40.716312,-73.81938,"(40.716312, -73.81938)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431896,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,16:40,QUEENS,11379,40.713295,-73.883514,"(40.713295, -73.883514)",,,71-20 66 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432293,Sedan,,,, +06/25/2021,14:23,,,,,,,,305 MC GUINNESS BLVD SOUTH,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432418,Sedan,Dump,,, +06/26/2021,23:45,BROOKLYN,11239,,,,,,762 Egan Street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,14:38,,,40.683502,-73.91152,"(40.683502, -73.91152)",COOPER STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432144,Sedan,Bus,,, +06/27/2021,17:38,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,1:05,MANHATTAN,10013,40.718456,-73.99482,"(40.718456, -73.99482)",GRAND STREET,BOWERY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4432116,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,22:19,BRONX,10469,40.880947,-73.85456,"(40.880947, -73.85456)",PAULDING AVENUE,EAST 219 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,Unspecified,,4431658,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/27/2021,14:57,STATEN ISLAND,10304,40.58999,-74.1005,"(40.58999, -74.1005)",,,5 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432346,Sedan,,,, +06/27/2021,19:29,BROOKLYN,11238,40.68865,-73.96197,"(40.68865, -73.96197)",,,334 LAFAYETTE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,13:09,,,40.54881,-74.154335,"(40.54881, -74.154335)",AMBOY ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432354,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,3:50,MANHATTAN,10037,40.80832,-73.936676,"(40.80832, -73.936676)",,,1916 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431740,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/27/2021,11:07,BROOKLYN,11217,40.67671,-73.97711,"(40.67671, -73.97711)",6 AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432187,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,14:00,,,40.767982,-73.82685,"(40.767982, -73.82685)",33 AVENUE,UNION STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4431515,Sedan,,,, +06/27/2021,0:01,BROOKLYN,11207,40.675495,-73.8997,"(40.675495, -73.8997)",ATLANTIC AVENUE,ALABAMA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4432086,Sedan,Sedan,,, +06/27/2021,0:00,BROOKLYN,11229,40.607082,-73.94607,"(40.607082, -73.94607)",AVENUE R,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431698,Sedan,,,, +06/27/2021,17:05,BROOKLYN,11232,40.656708,-74.00537,"(40.656708, -74.00537)",3 AVENUE,34 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4431583,Sedan,,,, +06/27/2021,12:40,BROOKLYN,11224,40.580658,-73.985664,"(40.580658, -73.985664)",CROPSEY AVENUE,HART PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,21:45,,,40.73447,-73.86316,"(40.73447, -73.86316)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431645,Sedan,Sedan,,, +06/25/2021,11:42,BROOKLYN,11206,40.69987,-73.94043,"(40.69987, -73.94043)",BROADWAY,FAYETTE STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4432121,Sedan,Sedan,,, +06/27/2021,4:40,QUEENS,11377,,,,,,33-17 58 street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4431185,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/27/2021,20:20,,,40.703545,-73.92234,"(40.703545, -73.92234)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432158,Bike,Van,,, +06/17/2021,4:50,QUEENS,11422,40.66343,-73.74079,"(40.66343, -73.74079)",BROOKVILLE BOULEVARD,143 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432266,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,18:37,,,40.66626,-73.95957,"(40.66626, -73.95957)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431561,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,12:00,BROOKLYN,11207,40.66531,-73.890305,"(40.66531, -73.890305)",LIVONIA AVENUE,BRADFORD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432064,,,,, +06/27/2021,14:44,,,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4432257,Sedan,Ambulance,,, +06/25/2021,17:20,BROOKLYN,11249,40.718185,-73.958305,"(40.718185, -73.958305)",,,150 NORTH 7 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432228,Sedan,,,, +06/22/2021,10:01,,,40.696983,-73.935234,"(40.696983, -73.935234)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,6:36,BRONX,10468,40.863785,-73.90028,"(40.863785, -73.90028)",JEROME AVENUE,WEST 190 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431240,Motorbike,,,, +06/25/2021,2:16,BROOKLYN,11206,40.69731,-73.932274,"(40.69731, -73.932274)",BUSHWICK AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432129,Sedan,,,, +06/27/2021,0:00,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",48 STREET,QUEENS BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431510,Sedan,Sedan,,, +06/20/2021,23:16,BRONX,10452,40.83543,-73.92341,"(40.83543, -73.92341)",JEROME AVENUE,SHAKESPEARE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432430,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2021,18:00,,,40.57663,-74.00556,"(40.57663, -74.00556)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431648,Sedan,,,, +06/24/2021,17:20,MANHATTAN,10038,40.70864,-74.00734,"(40.70864, -74.00734)",,,106 WILLIAM STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432168,Sedan,UNKNOWN,,, +06/27/2021,16:03,BRONX,10469,40.8721,-73.849884,"(40.8721, -73.849884)",EAST GUN HILL ROAD,BOUCK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4431578,Motorcycle,Sedan,,, +06/27/2021,12:30,BROOKLYN,11212,40.66973,-73.91049,"(40.66973, -73.91049)",,,1697 PITKIN AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4432057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,22:31,BROOKLYN,11207,40.67748,-73.88643,"(40.67748, -73.88643)",,,2923 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432085,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,12:18,MANHATTAN,10016,40.75022,-73.979065,"(40.75022, -73.979065)",PARK AVENUE,EAST 39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432389,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,16:00,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",CLAREMONT PARKWAY,FULTON AVENUE,,3,0,0,0,0,0,3,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4431620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/22/2021,17:30,QUEENS,11368,40.75613,-73.862274,"(40.75613, -73.862274)",,,106-17 34 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432313,Sedan,,,, +06/26/2021,1:03,,,40.738552,-73.99969,"(40.738552, -73.99969)",WEST 14 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432249,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,1:00,,,40.54421,-74.141045,"(40.54421, -74.141045)",MANSION AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432348,Sedan,Pick-up Truck,,, +06/27/2021,11:20,QUEENS,11354,40.761505,-73.827065,"(40.761505, -73.827065)",,,38-19 UNION STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4431401,Sedan,,,, +06/27/2021,10:16,BROOKLYN,11201,,,,Water Street,Old Fulton Street,,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,,,,4431454,Sedan,Bus,,, +06/27/2021,0:00,,,,,,3605 sedgwick Ave,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431803,Sedan,,,, +06/27/2021,19:50,BRONX,10453,40.85396,-73.90944,"(40.85396, -73.90944)",GRAND AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432481,Sedan,,,, +06/27/2021,4:41,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",FLATLANDS AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432238,Sedan,Sedan,,, +06/27/2021,2:30,,,40.75002,-73.858406,"(40.75002, -73.858406)",108 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,4:18,,,40.7024,-73.9605,"(40.7024, -73.9605)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432013,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,11:49,,,40.82949,-73.87326,"(40.82949, -73.87326)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431360,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,16:52,QUEENS,11434,40.679653,-73.77724,"(40.679653, -73.77724)",BAISLEY BOULEVARD,166 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4431709,Sedan,,,, +06/27/2021,22:30,QUEENS,11373,40.740757,-73.89028,"(40.740757, -73.89028)",45 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431838,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,9:45,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,21:30,BROOKLYN,11238,40.682,-73.96867,"(40.682, -73.96867)",ATLANTIC AVENUE,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431588,Taxi,Sedan,,, +06/26/2021,22:00,,,40.67624,-73.866104,"(40.67624, -73.866104)",PITKIN AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432101,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,13:41,,,40.693142,-73.922,"(40.693142, -73.922)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432143,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,17:15,,,40.6229,-74.14943,"(40.6229, -74.14943)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432048,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,16:22,BRONX,10474,40.809196,-73.8929,"(40.809196, -73.8929)",TRUXTON STREET,OAK POINT AVENUE,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4432369,Van,,,, +06/27/2021,9:11,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4431541,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,9:15,,,40.725937,-74.01103,"(40.725937, -74.01103)",WEST STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431598,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,3:20,QUEENS,11372,40.74929,-73.88517,"(40.74929, -73.88517)",,,37-59 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432304,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,8:59,MANHATTAN,10038,40.710163,-74.00426,"(40.710163, -74.00426)",GOLD STREET,SPRUCE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432299,Ambulance,Box Truck,,, +06/20/2021,15:35,BROOKLYN,11219,40.625267,-74.00226,"(40.625267, -74.00226)",,,6607 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432208,Sedan,,,, +06/26/2021,1:09,BROOKLYN,11208,40.68081,-73.8849,"(40.68081, -73.8849)",ARLINGTON AVENUE,ELTON STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4432096,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/26/2021,22:40,QUEENS,11411,40.700962,-73.73244,"(40.700962, -73.73244)",114 ROAD,225 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4432275,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,18:43,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4431791,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,0:20,,,40.604294,-73.973206,"(40.604294, -73.973206)",DAHILL ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4431250,Sedan,Sedan,,, +06/27/2021,0:54,BROOKLYN,11206,40.705227,-73.949844,"(40.705227, -73.949844)",BROADWAY,BOERUM STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432004,Bike,,,, +06/26/2021,21:05,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432462,Sedan,Sedan,Sedan,, +06/27/2021,15:10,BROOKLYN,11226,40.651344,-73.947716,"(40.651344, -73.947716)",,,14 RALEIGH PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4431490,Sedan,Sedan,,, +05/06/2021,16:30,BRONX,10459,40.82406,-73.8998,"(40.82406, -73.8998)",PROSPECT AVENUE,EAST 165 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4432362,Sedan,,,, +07/04/2022,6:30,,,40.622772,-74.16503,"(40.622772, -74.16503)",,,481 LISK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543312,Sedan,,,, +06/27/2021,0:30,,,40.607655,-73.99867,"(40.607655, -73.99867)",19 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431853,Sedan,,,, +06/27/2021,8:50,,,40.680733,-73.97451,"(40.680733, -73.97451)",BERGEN STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431715,Bike,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,22:32,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4431635,Sedan,Pick-up Truck,,, +06/27/2021,13:40,QUEENS,11369,40.767467,-73.88187,"(40.767467, -73.88187)",23 AVENUE,88 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432303,Sedan,Sedan,,, +06/25/2021,21:40,,,40.70281,-73.9254,"(40.70281, -73.9254)",STARR STREET,,,2,0,1,0,1,0,0,0,Unspecified,,,,,4432147,Bike,,,, +06/27/2021,21:50,MANHATTAN,10022,40.76285,-73.967735,"(40.76285, -73.967735)",EAST 60 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4431663,Station Wagon/Sport Utility Vehicle,Bike,,, +06/26/2021,9:26,BROOKLYN,11207,40.66008,-73.885345,"(40.66008, -73.885345)",,,807 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432097,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,0:00,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4432323,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,18:45,,,40.71881,-73.83266,"(40.71881, -73.83266)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4431566,Pick-up Truck,,,, +06/27/2021,7:45,MANHATTAN,10002,40.72218,-73.99092,"(40.72218, -73.99092)",FORSYTH STREET,STANTON STREET,,1,0,0,0,0,0,0,0,Obstruction/Debris,Traffic Control Disregarded,,,,4432022,Sedan,E-Scooter,,, +06/27/2021,2:22,BROOKLYN,11207,40.676952,-73.888596,"(40.676952, -73.888596)",ATLANTIC AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432070,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,1:10,,,40.72607,-74.00991,"(40.72607, -74.00991)",WASHINGTON STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4431596,Motorcycle,,,, +06/21/2021,0:00,QUEENS,11436,40.668434,-73.80062,"(40.668434, -73.80062)",134 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432484,Sedan,,,, +06/27/2021,20:08,BRONX,10466,40.89256,-73.85978,"(40.89256, -73.85978)",,,650 EAST 231 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4431863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,5:25,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431308,Sedan,Sedan,,, +06/27/2021,6:40,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4431682,Tractor Truck Diesel,Sedan,,, +06/27/2021,16:40,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",EAST 174 STREET,BRONX RIVER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4431459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,13:52,BROOKLYN,11221,40.68502,-73.938446,"(40.68502, -73.938446)",,,357 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432400,Sedan,Sedan,,, +06/27/2021,14:23,QUEENS,11102,40.770348,-73.92371,"(40.770348, -73.92371)",,,27-02 CRESCENT STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431700,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,13:35,BROOKLYN,11236,40.643784,-73.90218,"(40.643784, -73.90218)",CONKLIN AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431560,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,9:20,,,40.63841,-74.13588,"(40.63841, -74.13588)",,,71 GROVE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431681,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,14:25,,,40.84889,-73.867455,"(40.84889, -73.867455)",WHITE PLAINS ROAD,SAGAMORE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432339,Sedan,Motorscooter,,, +06/27/2021,2:30,BRONX,10469,,,,BAYCHESTER AVENUE,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432115,Sedan,,,, +06/27/2021,18:41,BROOKLYN,11218,40.646297,-73.97195,"(40.646297, -73.97195)",,,167 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432122,Sedan,Dump,,, +06/27/2021,5:19,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431186,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,19:37,BROOKLYN,11237,40.69426,-73.91036,"(40.69426, -73.91036)",KNICKERBOCKER AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432159,Motorcycle,Sedan,,, +06/24/2021,8:50,,,40.82814,-73.8953,"(40.82814, -73.8953)",INTERVALE AVENUE,EAST 169 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4432366,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/26/2021,0:00,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432063,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,1:50,QUEENS,11413,40.651394,-73.75887,"(40.651394, -73.75887)",,,230-79 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4432264,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,7:45,QUEENS,11378,40.717793,-73.90967,"(40.717793, -73.90967)",59 DRIVE,FLUSHING AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432239,Sedan,E-Scooter,,, +06/27/2021,22:50,,,40.735424,-73.84466,"(40.735424, -73.84466)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,13:30,BRONX,10467,40.881138,-73.88307,"(40.881138, -73.88307)",,,3415 JEROME AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431425,Sedan,,,, +06/27/2021,1:00,QUEENS,11370,40.757877,-73.8839,"(40.757877, -73.8839)",84 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Alcohol Involvement,Unspecified,,,4431432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/27/2021,5:53,MANHATTAN,10032,40.833946,-73.94266,"(40.833946, -73.94266)",,,533 WEST 158 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431743,Van,,,, +06/27/2021,14:40,BROOKLYN,11221,40.69174,-73.91401,"(40.69174, -73.91401)",CORNELIA STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432157,Motorcycle,,,, +06/27/2021,10:50,QUEENS,11385,40.703285,-73.88676,"(40.703285, -73.88676)",,,67-15 CENTRAL AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4431472,Sedan,,,, +06/27/2021,11:21,,,40.84664,-73.90469,"(40.84664, -73.90469)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431811,Sedan,Box Truck,,, +06/27/2021,21:30,BRONX,10464,40.850372,-73.7879,"(40.850372, -73.7879)",,,430 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432182,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,0:05,,,40.70927,-73.797325,"(40.70927, -73.797325)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431540,Sedan,Sedan,,, +06/27/2021,18:00,BROOKLYN,11221,40.689453,-73.924034,"(40.689453, -73.924034)",,,30 RALPH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4431903,Sedan,,,, +06/25/2021,16:49,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4432237,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,8:20,MANHATTAN,10065,40.76484,-73.970505,"(40.76484, -73.970505)",EAST 61 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4431328,Van,Sedan,,, +06/27/2021,16:48,,,40.81423,-73.93444,"(40.81423, -73.93444)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4431746,Pick-up Truck,Sedan,Sedan,, +06/22/2021,22:18,BROOKLYN,11209,40.632698,-74.02432,"(40.632698, -74.02432)",,,7212 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432417,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,11:58,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4431893,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/27/2021,8:39,BROOKLYN,11211,40.715305,-73.96044,"(40.715305, -73.96044)",METROPOLITAN AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432011,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,11:58,BRONX,10473,40.825554,-73.843254,"(40.825554, -73.843254)",ZEREGA AVENUE,HERMANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431361,Sedan,Sedan,,, +06/27/2021,11:00,STATEN ISLAND,10312,40.545757,-74.178894,"(40.545757, -74.178894)",ARDEN AVENUE,EDGEGROVE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Steering Failure,,,,4431471,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,18:23,,,40.575565,-73.98121,"(40.575565, -73.98121)",SURF AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4432209,Sedan,,,, +06/11/2021,14:05,BROOKLYN,11222,40.719887,-73.93889,"(40.719887, -73.93889)",,,309 RICHARDSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432227,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/27/2021,17:45,,,40.8287,-73.84227,"(40.8287, -73.84227)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431509,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,18:20,MANHATTAN,10030,40.815693,-73.948685,"(40.815693, -73.948685)",WEST 133 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431651,Sedan,,,, +06/24/2021,21:05,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432194,Motorcycle,Sedan,,, +06/25/2021,23:00,BROOKLYN,11207,40.669792,-73.8924,"(40.669792, -73.8924)",WYONA STREET,SUTTER AVENUE,,2,0,1,0,0,0,1,0,Unspecified,,,,,4432062,Sedan,,,, +06/26/2021,0:40,BRONX,10453,40.851658,-73.90423,"(40.851658, -73.90423)",BUSH STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4432150,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,14:50,BROOKLYN,11226,40.65121,-73.95893,"(40.65121, -73.95893)",FLATBUSH AVENUE,MARTENSE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431394,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2021,11:45,QUEENS,11373,40.735634,-73.87602,"(40.735634, -73.87602)",QUEENS BOULEVARD,55 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431557,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/25/2021,14:00,QUEENS,11434,40.674744,-73.76368,"(40.674744, -73.76368)",FARMERS BOULEVARD,GARRETT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432480,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,4:00,BRONX,10460,40.836708,-73.868195,"(40.836708, -73.868195)",MERRILL STREET,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4431302,Sedan,Sedan,Sedan,, +06/25/2021,23:50,BRONX,10451,40.825573,-73.918465,"(40.825573, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4432440,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,13:50,BROOKLYN,11236,40.64952,-73.912544,"(40.64952, -73.912544)",EAST 93 STREET,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4431491,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,0:55,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,22:42,BROOKLYN,11226,40.65217,-73.96141,"(40.65217, -73.96141)",OCEAN AVENUE,CATON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4431721,Sedan,Bike,,, +06/27/2021,14:15,QUEENS,11411,40.695877,-73.742516,"(40.695877, -73.742516)",,,217-20 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431482,Sedan,,,, +06/27/2021,17:55,QUEENS,11369,40.759914,-73.87953,"(40.759914, -73.87953)",31 AVENUE,89 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,5:50,BRONX,10470,40.889217,-73.866875,"(40.889217, -73.866875)",,,3900 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432114,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,19:49,BROOKLYN,11203,40.649513,-73.93984,"(40.649513, -73.93984)",SNYDER AVENUE,EAST 40 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4431907,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/25/2021,13:54,,,40.568764,-74.11149,"(40.568764, -74.11149)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432351,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,22:50,,,40.61799,-74.0365,"(40.61799, -74.0365)",MARINE AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431579,Sedan,Sedan,,, +06/27/2021,12:00,QUEENS,11001,40.731712,-73.70624,"(40.731712, -73.70624)",260 STREET,87 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431798,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,8:00,BROOKLYN,11217,40.6851,-73.97777,"(40.6851, -73.97777)",,,1 HANSON PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431968,Sedan,,,, +06/27/2021,21:41,,,40.679184,-73.941284,"(40.679184, -73.941284)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431860,Sedan,,,, +06/27/2021,16:20,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431640,Sedan,,,, +06/26/2021,16:40,BROOKLYN,11207,40.66841,-73.90167,"(40.66841, -73.90167)",VAN SIDERIN AVENUE,SUTTER AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4432084,Sedan,Sedan,,, +06/23/2021,0:12,BRONX,10452,40.841038,-73.92813,"(40.841038, -73.92813)",,,1300 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4432176,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,11:06,BRONX,10461,40.85543,-73.855354,"(40.85543, -73.855354)",LYDIG AVENUE,WILLIAMSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,10:58,BROOKLYN,11222,40.73009,-73.95529,"(40.73009, -73.95529)",,,140 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432420,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/26/2021,22:15,BROOKLYN,11207,40.66322,-73.893654,"(40.66322, -73.893654)",PENNSYLVANIA AVENUE,RIVERDALE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4432102,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,10:56,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432370,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,12:00,,,40.72656,-73.83802,"(40.72656, -73.83802)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4431564,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +06/27/2021,0:10,,,40.62349,-74.000534,"(40.62349, -74.000534)",14 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +06/24/2021,1:40,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4432123,Sedan,Sedan,,, +06/26/2021,18:21,,,40.892235,-73.88481,"(40.892235, -73.88481)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,14:10,QUEENS,11427,40.732517,-73.740364,"(40.732517, -73.740364)",,,229-19 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431457,Sedan,Box Truck,,, +06/27/2021,23:50,BROOKLYN,11234,40.613194,-73.92631,"(40.613194, -73.92631)",FLATBUSH AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431599,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,9:00,QUEENS,11385,40.713707,-73.919014,"(40.713707, -73.919014)",,,48-05 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432250,Tractor Truck Diesel,,,, +06/26/2021,19:16,BRONX,10475,40.876144,-73.828705,"(40.876144, -73.828705)",,,133 DREISER LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432170,Bus,Sedan,,, +06/26/2021,19:15,BROOKLYN,11207,40.67509,-73.89187,"(40.67509, -73.89187)",LIBERTY AVENUE,MILLER AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4432066,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,19:45,QUEENS,11368,40.73747,-73.86305,"(40.73747, -73.86305)",,,97-27 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432455,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,8:14,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432343,Sedan,Sedan,,, +06/26/2021,17:20,,,40.752598,-73.96702,"(40.752598, -73.96702)",,,1 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4432390,Sedan,Sedan,,, +06/27/2021,16:20,BRONX,10456,40.834152,-73.90001,"(40.834152, -73.90001)",,,621 EAST 170 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4431621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/25/2021,14:00,STATEN ISLAND,10310,40.626617,-74.12874,"(40.626617, -74.12874)",,,1163 FOREST AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432297,Sedan,Sedan,,, +06/27/2021,9:15,BROOKLYN,11225,40.663483,-73.9627,"(40.663483, -73.9627)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431713,Moped,,,, +06/27/2021,4:15,BROOKLYN,11207,40.657753,-73.89612,"(40.657753, -73.89612)",LINDEN BOULEVARD,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4432071,Sedan,Sedan,,, +06/27/2021,9:22,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431587,Pick-up Truck,Sedan,,, +06/27/2021,0:00,QUEENS,11373,40.734188,-73.874,"(40.734188, -73.874)",HOFFMAN DRIVE,57 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431548,Sedan,,,, +06/24/2021,19:45,,,40.706123,-73.92214,"(40.706123, -73.92214)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432118,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,8:00,,,40.702255,-73.92008,"(40.702255, -73.92008)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432136,Sedan,,,, +06/27/2021,22:49,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4431785,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,1:15,MANHATTAN,10019,40.767815,-73.98951,"(40.767815, -73.98951)",WEST 55 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432050,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,1:56,,,40.843204,-73.91196,"(40.843204, -73.91196)",GRAND CONCOURSE,,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4431632,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,11:35,QUEENS,11385,40.703045,-73.90744,"(40.703045, -73.90744)",,,1810 PALMETTO STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432305,Sedan,Dump,,, +06/27/2021,12:00,BRONX,10461,,,,,,43-65 Marconi Street,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4431685,Sedan,Motorscooter,,, +06/10/2021,16:14,,,40.705273,-73.89634,"(40.705273, -73.89634)",FRESH POND ROAD,68 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432181,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,21:52,BROOKLYN,11208,40.673275,-73.86853,"(40.673275, -73.86853)",SUTTER AVENUE,HEMLOCK STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4432093,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/27/2021,5:59,MANHATTAN,10011,40.73736,-73.99685,"(40.73736, -73.99685)",AVENUE OF THE AMERICAS,WEST 14 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4432255,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,10:45,,,40.684277,-73.775024,"(40.684277, -73.775024)",119 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431705,Sedan,,,, +06/27/2021,21:19,MANHATTAN,10014,40.73222,-74.00356,"(40.73222, -74.00356)",7 AVENUE SOUTH,BLEECKER STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4432243,,,,, +06/25/2021,18:49,BROOKLYN,11208,40.68081,-73.8849,"(40.68081, -73.8849)",ARLINGTON AVENUE,ELTON STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,Unspecified,,4432098,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/27/2021,0:30,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4431232,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,13:01,BRONX,10475,40.86214,-73.824936,"(40.86214, -73.824936)",,,2440 HUNTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432162,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,20:29,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432119,Sedan,,,, +06/27/2021,0:00,BROOKLYN,11212,40.65634,-73.92137,"(40.65634, -73.92137)",KINGS HIGHWAY,EAST 92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431571,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2021,3:30,QUEENS,11373,40.744263,-73.876755,"(40.744263, -73.876755)",WHITNEY AVENUE,HAMPTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,6:00,BROOKLYN,11230,40.617275,-73.96667,"(40.617275, -73.96667)",AVENUE M,EAST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4431435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/27/2021,9:10,BRONX,10457,40.85651,-73.897316,"(40.85651, -73.897316)",TIEBOUT AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4431821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/29/2020,23:30,,,40.61964,-73.897316,"(40.61964, -73.897316)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432410,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,20:55,BROOKLYN,11221,40.68836,-73.91615,"(40.68836, -73.91615)",BUSHWICK AVENUE,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432146,Sedan,Sedan,,, +06/26/2021,18:54,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4432067,Sedan,,,, +06/27/2021,13:10,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431639,Sedan,,,, +06/27/2021,15:45,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4431662,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,16:22,,,40.69931,-73.75736,"(40.69931, -73.75736)",MURDOCK AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432028,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/27/2021,15:50,MANHATTAN,10036,40.76193,-73.99381,"(40.76193, -73.99381)",,,645 10 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431724,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,15:00,QUEENS,11420,40.670044,-73.818115,"(40.670044, -73.818115)",135 AVENUE,122 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4431528,Sedan,Sedan,,, +06/26/2021,12:38,BROOKLYN,11229,40.60409,-73.93137,"(40.60409, -73.93137)",,,3244 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432232,Sedan,Sedan,,, +06/27/2021,9:21,,,40.611767,-73.97638,"(40.611767, -73.97638)",64 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/23/2021,12:47,BROOKLYN,11217,40.674244,-73.97149,"(40.674244, -73.97149)",,,25 PLAZA STREET WEST,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432195,Pick-up Truck,Sedan,,, +06/27/2021,12:20,,,40.82077,-73.95459,"(40.82077, -73.95459)",BROADWAY,,,1,0,0,0,1,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4431752,Taxi,E-Bike,,, +06/27/2021,21:04,MANHATTAN,10002,40.715046,-73.992386,"(40.715046, -73.992386)",ALLEN STREET,CANAL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431592,Taxi,,,, +06/25/2021,9:53,QUEENS,11372,40.755737,-73.87689,"(40.755737, -73.87689)",,,33-24 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432302,Sedan,,,, +06/26/2021,4:15,,,40.613335,-73.99277,"(40.613335, -73.99277)",73 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432261,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,14:50,QUEENS,11426,40.72684,-73.71354,"(40.72684, -73.71354)",,,251-21 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431483,Sedan,Sedan,,, +06/27/2021,1:40,QUEENS,11368,40.74409,-73.85955,"(40.74409, -73.85955)",,,103-16 CORONA AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4431550,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/27/2021,5:03,BROOKLYN,11226,40.65242,-73.95384,"(40.65242, -73.95384)",,,138 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4431481,Sedan,Sedan,Sedan,Sedan,Sedan +06/29/2021,0:20,BROOKLYN,11203,40.65422,-73.92386,"(40.65422, -73.92386)",EAST 57 STREET,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4432333,Sedan,Box Truck,,, +06/27/2021,0:00,MANHATTAN,10022,40.761497,-73.9745,"(40.761497, -73.9745)",,,7 EAST 55 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432054,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,15:44,QUEENS,11432,40.720608,-73.79724,"(40.720608, -73.79724)",170 STREET,GOETHALS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431894,Sedan,Golf cart,,, +06/27/2021,10:05,,,40.654137,-73.91234,"(40.654137, -73.91234)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Glare,Unspecified,,,,4431908,Sedan,Ambulance,,, +06/27/2021,14:00,QUEENS,11370,40.765778,-73.88628,"(40.765778, -73.88628)",,,23-45 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432306,Sedan,,,, +06/27/2021,4:30,,,40.76812,-73.95887,"(40.76812, -73.95887)",EAST 71 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431322,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,15:33,BROOKLYN,11233,40.682762,-73.93501,"(40.682762, -73.93501)",LEWIS AVENUE,MACON STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4432399,Sedan,,,, +06/27/2021,18:16,BRONX,10465,40.823242,-73.822296,"(40.823242, -73.822296)",,,595 CALHOUN AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4431676,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/26/2021,23:40,BROOKLYN,11214,40.6081,-73.99939,"(40.6081, -73.99939)",,,1869 83 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4432321,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/17/2021,11:36,BRONX,10455,40.81234,-73.90346,"(40.81234, -73.90346)",,,551 SOUTHERN BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4432365,Sedan,E-Bike,,, +06/27/2021,15:40,BRONX,10463,40.873642,-73.90797,"(40.873642, -73.90797)",,,40 WEST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4431422,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,13:14,QUEENS,11372,40.748062,-73.89167,"(40.748062, -73.89167)",,,37-27 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432316,Sedan,,,, +06/27/2021,18:40,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Oversized Vehicle,,,,4431769,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/27/2021,6:15,,,40.76854,-73.89342,"(40.76854, -73.89342)",76 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431275,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,5:30,BROOKLYN,11236,40.62821,-73.90489,"(40.62821, -73.90489)",PAERDEGAT 11 STREET,PAERDEGAT AVENUE NORTH,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431559,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,11:30,,,40.7265,-73.75571,"(40.7265, -73.75571)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431892,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,9:20,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432452,Sedan,,,, +06/27/2021,13:15,QUEENS,11413,40.679897,-73.74757,"(40.679897, -73.74757)",221 STREET,133 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4432271,Sedan,Sedan,,, +06/27/2021,15:48,BROOKLYN,11226,40.647453,-73.958664,"(40.647453, -73.958664)",,,2123 ALBEMARLE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431720,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,5:00,BROOKLYN,11203,40.64868,-73.92207,"(40.64868, -73.92207)",,,5817 TILDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431464,Sedan,Sedan,,, +06/25/2021,14:51,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,,,,,4432132,Sedan,,,, +06/27/2021,5:15,,,40.645344,-73.87897,"(40.645344, -73.87897)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432103,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,17:50,BROOKLYN,11234,40.616673,-73.92563,"(40.616673, -73.92563)",EAST 51 STREET,AVENUE O,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431601,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,22:50,BRONX,10459,40.821976,-73.9,"(40.821976, -73.9)",,,861 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432372,Sedan,,,, +06/27/2021,17:10,BROOKLYN,11220,40.641186,-74.014404,"(40.641186, -74.014404)",57 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4431581,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/25/2021,19:54,BROOKLYN,11207,40.674114,-73.88975,"(40.674114, -73.88975)",GLENMORE AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,19:50,,,40.660633,-73.89002,"(40.660633, -73.89002)",HEGEMAN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432083,Sedan,,,, +06/27/2021,3:50,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",CLAREMONT PARKWAY,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4431622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/19/2021,13:00,BROOKLYN,11225,40.65807,-73.960434,"(40.65807, -73.960434)",FENIMORE STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4432395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,16:10,,,,,,EXTERIOR STREET,EAST 149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432286,Sedan,Sedan,,, +06/27/2021,0:00,,,40.818016,-73.96043,"(40.818016, -73.96043)",WEST 125 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431458,Station Wagon/Sport Utility Vehicle,Van,,, +05/21/2021,12:17,QUEENS,11385,40.70938,-73.86964,"(40.70938, -73.86964)",,,80-00 COOPER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4432253,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,13:00,,,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4431392,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,8:00,,,40.6087,-73.97404,"(40.6087, -73.97404)",AVENUE P,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4432149,Bus,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,19:20,QUEENS,11429,40.709316,-73.73441,"(40.709316, -73.73441)",221 STREET,107 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4431795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,16:00,,,40.570385,-74.12969,"(40.570385, -74.12969)",PARK STREET,CRANFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432352,Sedan,Pick-up Truck,,, +06/23/2021,2:30,QUEENS,11103,40.760452,-73.913376,"(40.760452, -73.913376)",,,30-91 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432479,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,17:11,BROOKLYN,11236,40.644722,-73.88792,"(40.644722, -73.88792)",,,1152 EAST 108 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431960,Sedan,,,, +06/27/2021,3:20,BROOKLYN,11236,40.650116,-73.91539,"(40.650116, -73.91539)",,,9110 AVENUE B,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4431496,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,0:00,,,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Alcohol Involvement,,,,4431641,Sedan,Sedan,,, +06/27/2021,7:00,,,40.61403,-73.98488,"(40.61403, -73.98488)",67 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431856,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,18:20,,,40.61118,-74.15261,"(40.61118, -74.15261)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431711,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,13:48,,,40.798443,-73.97089,"(40.798443, -73.97089)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431362,Sedan,,,, +06/27/2021,1:37,BROOKLYN,11223,40.605278,-73.98114,"(40.605278, -73.98114)",WEST 8 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431246,Sedan,,,, +06/27/2021,15:46,BROOKLYN,11210,40.62096,-73.94577,"(40.62096, -73.94577)",,,2607 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4431562,Sedan,Sedan,,, +06/27/2021,7:00,QUEENS,11377,40.746227,-73.91499,"(40.746227, -73.91499)",,,49-15 SKILLMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432218,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,12:00,BROOKLYN,11219,40.63981,-73.995514,"(40.63981, -73.995514)",46 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431653,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,13:20,MANHATTAN,10028,40.778603,-73.95557,"(40.778603, -73.95557)",,,157 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4431507,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2021,22:45,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4432422,Sedan,Sedan,,, +06/25/2021,19:00,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,16:00,,,40.68556,-73.90719,"(40.68556, -73.90719)",EVERGREEN AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432125,Sedan,,,, +06/24/2021,20:30,,,40.668232,-73.87838,"(40.668232, -73.87838)",NEW LOTS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432065,4 dr sedan,Sedan,,, +06/27/2021,16:40,,,,,,SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432445,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,15:20,STATEN ISLAND,10314,40.604187,-74.12076,"(40.604187, -74.12076)",,,925 MANOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432344,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/27/2021,19:50,BRONX,10467,40.861336,-73.866806,"(40.861336, -73.866806)",WARING AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431575,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,18:10,BROOKLYN,11208,40.681175,-73.87363,"(40.681175, -73.87363)",ATLANTIC AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432072,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,19:18,,,40.574005,-73.98969,"(40.574005, -73.98969)",SURF AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432210,Sedan,Sedan,,, +06/27/2021,23:10,BRONX,10458,40.866047,-73.882744,"(40.866047, -73.882744)",BEDFORD PARK BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431754,Sedan,,,, +06/25/2021,17:55,,,40.731285,-74.0103,"(40.731285, -74.0103)",WEST STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4432247,Bike,,,, +06/27/2021,2:20,BROOKLYN,11218,40.642796,-73.97945,"(40.642796, -73.97945)",MC DONALD AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431437,Sedan,Carry All,,, +06/27/2021,20:30,,,40.672016,-73.94086,"(40.672016, -73.94086)",HAMPTON PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4431845,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +06/10/2021,12:55,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432155,Sedan,Tractor Truck Diesel,,, +06/27/2021,23:30,MANHATTAN,10013,40.718777,-73.995705,"(40.718777, -73.995705)",GRAND STREET,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431728,Dump,Sedan,,, +06/27/2021,11:10,BRONX,10466,40.893677,-73.84016,"(40.893677, -73.84016)",EDENWALD AVENUE,HILL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4431412,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2021,17:55,,,40.714367,-73.746796,"(40.714367, -73.746796)",99 AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431485,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,1:00,BROOKLYN,11206,40.704563,-73.94867,"(40.704563, -73.94867)",BROADWAY,MIDDLETON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432008,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,15:00,BRONX,10454,40.80539,-73.91846,"(40.80539, -73.91846)",,,164 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516913,Taxi,,,, +06/27/2021,8:38,BROOKLYN,11214,40.60968,-73.99298,"(40.60968, -73.99298)",20 AVENUE,77 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431339,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,0:25,BRONX,10453,40.8511,-73.90468,"(40.8511, -73.90468)",EAST 179 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4432173,Sedan,,,, +06/23/2021,19:00,,,40.63237,-73.88319,"(40.63237, -73.88319)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4432409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/25/2021,7:30,MANHATTAN,10014,40.736958,-74.00651,"(40.736958, -74.00651)",BETHUNE STREET,GREENWICH STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432254,Box Truck,Dump,,, +06/26/2021,23:45,BROOKLYN,11239,,,,,,584 Egan street,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4432068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/24/2021,16:45,QUEENS,11385,40.6997,-73.9055,"(40.6997, -73.9055)",CYPRESS AVENUE,JEFFERSON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432301,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2021,16:52,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",BRONX RIVER PARKWAY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431627,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,16:42,BROOKLYN,11237,40.692974,-73.90811,"(40.692974, -73.90811)",HALSEY STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432117,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,21:35,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,4:55,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4431234,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,12:23,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",AVENUE V,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4432231,Sedan,Sedan,Sedan,, +06/27/2021,7:50,,,40.828125,-73.84105,"(40.828125, -73.84105)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4431675,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/27/2021,1:35,,,,,,116 Avenue,Foch Boulevard,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4431707,Sedan,Taxi,Sedan,, +06/27/2021,1:45,,,40.70722,-73.78957,"(40.70722, -73.78957)",170 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,,,,,,4432330,,,,, +06/13/2021,3:50,QUEENS,11379,40.714622,-73.90117,"(40.714622, -73.90117)",FRESH POND ROAD,ELIOT AVENUE,,2,1,0,0,0,0,2,1,Traffic Control Disregarded,Unspecified,,,,4432163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,13:05,BRONX,10455,40.81446,-73.89686,"(40.81446, -73.89686)",BRUCKNER BOULEVARD,EAST 156 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432364,Sedan,Sedan,,, +06/27/2021,21:15,BROOKLYN,11209,40.63286,-74.02425,"(40.63286, -74.02425)",4 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,13:20,BROOKLYN,11231,40.68515,-74.00032,"(40.68515, -74.00032)",,,168 DE GRAW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432034,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,20:40,MANHATTAN,10002,40.72218,-73.98886,"(40.72218, -73.98886)",,,190 ALLEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431591,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,21:05,,,40.749714,-73.93617,"(40.749714, -73.93617)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432202,Sedan,,,, +06/16/2021,10:45,,,40.697536,-73.87106,"(40.697536, -73.87106)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4432311,Sedan,Sedan,,, +06/27/2021,14:32,,,40.57729,-73.949165,"(40.57729, -73.949165)",DOVER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431697,Sedan,Pick-up Truck,,, +06/27/2021,1:15,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431480,Sedan,Sedan,,, +06/27/2021,6:19,,,40.80906,-73.90755,"(40.80906, -73.90755)",SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431317,Sedan,Sedan,,, +06/27/2021,4:00,,,40.87626,-73.90395,"(40.87626, -73.90395)",WEST 230 STREET,BAILEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4431823,Sedan,,,, +06/27/2021,13:41,MANHATTAN,10022,,,,MADISON AVE,EAST 52ND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432055,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,1:20,MANHATTAN,10033,40.84513,-73.93497,"(40.84513, -73.93497)",,,205 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431551,Sedan,Sedan,,, +06/27/2021,15:05,,,40.632244,-73.938,"(40.632244, -73.938)",AVENUE H,EAST 40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431523,Sedan,Taxi,,, +06/27/2021,18:13,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431895,Tractor Truck Diesel,Sedan,,, +06/01/2021,12:00,,,40.74273,-73.95412,"(40.74273, -73.95412)",VERNON BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432180,Sedan,,,, +06/23/2021,11:00,,,40.748848,-73.759026,"(40.748848, -73.759026)",HORACE HARDING EXPRESSWAY,219 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432396,Sedan,,,, +06/27/2021,15:30,BROOKLYN,11232,,,,41 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431584,Sedan,Sedan,,, +06/27/2021,5:15,,,40.80934,-73.91248,"(40.80934, -73.91248)",CYPRESS AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4431637,Sedan,,,, +06/25/2021,17:46,BROOKLYN,11221,40.695282,-73.92576,"(40.695282, -73.92576)",EVERGREEN AVENUE,STANHOPE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432145,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,16:15,BROOKLYN,11207,40.653755,-73.88599,"(40.653755, -73.88599)",,,1069 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4432099,Sedan,,,, +06/15/2021,10:14,STATEN ISLAND,10304,40.610725,-74.08635,"(40.610725, -74.08635)",TARGEE STREET,STEUBEN STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432296,Bike,Sedan,,, +06/27/2021,6:00,QUEENS,11369,40.759075,-73.86985,"(40.759075, -73.86985)",32 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432317,Sedan,Van,,, +06/27/2021,23:30,BRONX,10466,40.89124,-73.84302,"(40.89124, -73.84302)",,,4034 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431659,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,19:18,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432357,Sedan,Sedan,,, +06/27/2021,21:30,QUEENS,11369,40.7576,-73.87626,"(40.7576, -73.87626)",,,32-61 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431576,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,10:30,MANHATTAN,10003,40.73319,-73.99489,"(40.73319, -73.99489)",,,7 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432259,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,0:45,BROOKLYN,11207,40.65591,-73.89191,"(40.65591, -73.89191)",STANLEY AVENUE,ALABAMA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432080,Sedan,SCOOTER,,, +06/27/2021,3:15,BROOKLYN,11207,40.66314,-73.88003,"(40.66314, -73.88003)",LINDEN BOULEVARD,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432087,Sedan,,,, +06/25/2021,22:45,,,40.663605,-73.934395,"(40.663605, -73.934395)",SCHENECTADY AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,,,4432376,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,7:17,BROOKLYN,11208,40.666256,-73.87696,"(40.666256, -73.87696)",HEGEMAN AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,10:51,MANHATTAN,10011,40.743256,-74.00488,"(40.743256, -74.00488)",,,425 WEST 17 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431618,Sedan,Sedan,,, +07/04/2022,19:31,,,,,,,,87 EAST DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543402,Bike,Bike,,, +01/10/2022,7:00,,,,,,CONNER STREET,TILLOTSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493436,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,0:00,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516947,Sedan,Sedan,,, +07/04/2022,10:00,,,,,,,,61 WEST DRIVE,1,0,0,0,1,0,0,0,Unspecified,,,,,4543454,Bike,,,, +06/28/2021,8:27,MANHATTAN,10022,,,,58 street,3 avenue,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431817,Box Truck,,,, +04/06/2022,3:15,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4517085,Sedan,,,, +09/30/2021,23:37,BROOKLYN,11226,40.6500815,-73.9610074,"(40.6500815, -73.9610074)",CHURCH AVENUE,OCEAN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4463414,Sedan,Sedan,,, +10/14/2021,0:00,,,40.8361011,-73.8703842,"(40.8361011, -73.8703842)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469082,Sedan,Sedan,,, +10/16/2021,11:30,,,40.8792169,-73.8852769,"(40.8792169, -73.8852769)",JEROME AVENUE,EAST MOSHOLU PARKWAY SOUTH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469342,Sedan,Bike,,, +10/18/2021,13:35,BROOKLYN,11206,40.702895,-73.9442166,"(40.702895, -73.9442166)",MANHATTAN AVENUE,VARET STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4468589,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,19:00,QUEENS,11103,40.7632944,-73.9189771,"(40.7632944, -73.9189771)",,,30-74 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469038,Sedan,Sedan,,, +09/29/2021,22:40,BROOKLYN,11233,40.6746537,-73.9091555,"(40.6746537, -73.9091555)",EASTERN PARKWAY,DEAN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462348,Garbage or Refuse,E-Bike,,, +10/18/2021,11:32,BROOKLYN,11201,40.691922,-73.9789481,"(40.691922, -73.9789481)",WILLOUGHBY STREET,ASHLAND PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468655,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,20:51,,,40.7654658,-73.7430328,"(40.7654658, -73.7430328)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4468544,Sedan,Sedan,Sedan,, +04/07/2022,17:35,,,,,,VANWYCK EXPRESSWAY,133 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4517101,Sedan,Sedan,,, +01/10/2022,22:00,BRONX,10466,40.8947,-73.85606,"(40.8947, -73.85606)",,,710 EAST 235 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493806,Sedan,,,, +04/07/2022,23:30,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4517180,Sedan,,,, +07/03/2022,6:30,,,40.84763,-73.866005,"(40.84763, -73.866005)",RHINELANDER AVENUE,HUNT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543915,Sedan,,,, +06/24/2022,20:20,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4544006,Sedan,Sedan,Sedan,Sedan, +10/18/2021,10:00,BROOKLYN,11220,,,,55 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468561,Station Wagon/Sport Utility Vehicle,,,, +12/22/2021,0:38,,,40.764896,-73.97256,"(40.764896, -73.97256)",5 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4488662,Pick-up Truck,,,, +01/06/2022,16:00,BROOKLYN,11214,40.60288,-74.00244,"(40.60288, -74.00244)",,,132 BAY 22 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494128,Station Wagon/Sport Utility Vehicle,Bus,,, +01/07/2022,17:45,BRONX,10456,40.830765,-73.90863,"(40.830765, -73.90863)",,,3466 PARK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4494153,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,16:25,BRONX,10455,40.820133,-73.91307,"(40.820133, -73.91307)",3 AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,13:45,QUEENS,11377,40.74395,-73.89768,"(40.74395, -73.89768)",,,41-035 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494125,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,20:37,,,40.681515,-73.90412,"(40.681515, -73.90412)",EASTERN PARKWAY,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494134,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/10/2022,6:54,BROOKLYN,11222,40.726387,-73.94883,"(40.726387, -73.94883)",,,142 NORMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494152,Pick-up Truck,,,, +11/03/2021,16:28,,,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494132,Bus,,,, +01/12/2021,3:00,BROOKLYN,11222,40.724464,-73.95118,"(40.724464, -73.95118)",,,650 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494149,Sedan,,,, +01/04/2022,5:10,,,40.598904,-74.00712,"(40.598904, -74.00712)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,7:49,MANHATTAN,10029,40.792606,-73.94712,"(40.792606, -73.94712)",,,115 EAST 106 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4494145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,20:06,BROOKLYN,11212,40.667988,-73.90447,"(40.667988, -73.90447)",SUTTER AVENUE,SACKMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4504439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/17/2022,20:29,BRONX,10467,40.877632,-73.867386,"(40.877632, -73.867386)",WILLETT AVENUE,EAST GUN HILL ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504715,Sedan,,,, +02/20/2022,15:00,QUEENS,11355,40.75681,-73.81027,"(40.75681, -73.81027)",MURRAY STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504544,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,17:15,QUEENS,11377,40.744167,-73.91248,"(40.744167, -73.91248)",52 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504261,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,21:15,QUEENS,11367,40.739773,-73.83031,"(40.739773, -73.83031)",,,63-12 136 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504295,Sedan,,,, +02/20/2022,7:27,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",EAST 34 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504130,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/15/2022,14:41,MANHATTAN,10027,0,0,"(0.0, 0.0)",WEST 126 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504921,Sedan,,,, +04/06/2022,2:05,QUEENS,11369,40.760048,-73.878334,"(40.760048, -73.878334)",,,90-21 31 AVENUE,0,0,0,0,0,0,0,0,,,,,,4517255,,,,, +01/10/2022,16:15,BROOKLYN,11211,40.714203,-73.956474,"(40.714203, -73.956474)",,,354 METROPOLITAN AVENUE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4493555,Station Wagon/Sport Utility Vehicle,Bike,Station Wagon/Sport Utility Vehicle,, +01/10/2022,1:33,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4493693,Taxi,,,, +01/10/2022,21:10,BROOKLYN,11204,40.61212,-73.98323,"(40.61212, -73.98323)",BAY PARKWAY,68 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4493608,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/01/2021,15:11,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",MORRIS AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494054,Ambulance,,,, +01/10/2022,0:15,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493262,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,9:25,QUEENS,11367,40.717358,-73.82171,"(40.717358, -73.82171)",UNION TURNPIKE,VLEIGH PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,10:00,BROOKLYN,11212,40.663204,-73.90447,"(40.663204, -73.90447)",,,345 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493631,Sedan,,,, +01/08/2021,12:20,BROOKLYN,11207,40.654846,-73.88569,"(40.654846, -73.88569)",COZINE AVENUE,VERMONT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494019,Pick-up Truck,,,, +01/10/2022,0:43,QUEENS,11423,40.715004,-73.75719,"(40.715004, -73.75719)",,,93-28 204 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4493302,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/10/2022,18:38,BROOKLYN,11207,40.672043,-73.89487,"(40.672043, -73.89487)",PITKIN AVENUE,NEW JERSEY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493641,Sedan,,,, +12/24/2021,9:00,,,40.6826,-73.95597,"(40.6826, -73.95597)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494122,Sedan,,,, +12/28/2021,3:00,,,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493987,Sedan,,,, +01/10/2022,1:25,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493374,Sedan,Van,,, +01/10/2022,8:40,QUEENS,11435,40.70097,-73.81423,"(40.70097, -73.81423)",138 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Turning Improperly,Unspecified,Unspecified,,4493497,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan, +01/10/2022,11:50,MANHATTAN,10006,40.70973,-74.013824,"(40.70973, -74.013824)",,,140 WASHINGTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493702,Sedan,Sedan,,, +01/10/2022,12:28,QUEENS,11385,40.69876,-73.89288,"(40.69876, -73.89288)",,,62-57 75 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493748,Sedan,,,, +01/10/2022,10:16,QUEENS,11385,40.697144,-73.8917,"(40.697144, -73.8917)",64 STREET,78 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493841,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,6:03,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4493941,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/10/2022,5:55,,,40.690517,-73.84766,"(40.690517, -73.84766)",96 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493474,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,4:47,MANHATTAN,10034,,,,RIVERSIDE DRIVE,SEAMAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4493406,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,9:00,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4493454,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/10/2022,1:37,BRONX,10468,40.867474,-73.89741,"(40.867474, -73.89741)",JEROME AVENUE,EAST KINGSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4493413,Sedan,,,, +01/10/2022,2:39,,,40.702667,-73.86516,"(40.702667, -73.86516)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4493488,Sedan,,,, +01/10/2022,7:58,BROOKLYN,11233,40.669918,-73.91889,"(40.669918, -73.91889)",EASTERN PARKWAY,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493380,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,15:15,BROOKLYN,11230,40.611954,-73.96817,"(40.611954, -73.96817)",OCEAN PARKWAY,AVENUE O,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493924,Sedan,,,, +01/10/2022,6:00,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",SAINT ANNS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493624,Sedan,Flat Bed,,, +01/10/2022,16:20,,,40.852306,-73.89811,"(40.852306, -73.89811)",EAST 180 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493653,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,14:45,BRONX,10465,40.827866,-73.823586,"(40.827866, -73.823586)",EAST TREMONT AVENUE,PHILIP AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493974,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,16:40,,,40.722584,-73.8509,"(40.722584, -73.8509)",AUSTIN STREET,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493756,Sedan,Sedan,,, +01/09/2022,6:15,BRONX,10467,40.865406,-73.86838,"(40.865406, -73.86838)",ALLERTON AVENUE,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493949,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,5:30,QUEENS,11373,40.743397,-73.88388,"(40.743397, -73.88388)",BROADWAY,81 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493389,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/10/2022,12:20,STATEN ISLAND,10305,40.587067,-74.09162,"(40.587067, -74.09162)",HYLAN BOULEVARD,GARRETSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493478,Pick-up Truck,Sedan,,, +01/10/2022,21:00,STATEN ISLAND,10312,40.549084,-74.1621,"(40.549084, -74.1621)",LAMOKA AVENUE,CORTELYOU AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493597,Pick-up Truck,,,, +01/10/2022,9:00,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493727,Sedan,Sedan,,, +01/08/2022,15:06,QUEENS,11412,40.701588,-73.7544,"(40.701588, -73.7544)",113 AVENUE,201 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4494036,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,8:45,QUEENS,11433,40.700325,-73.78904,"(40.700325, -73.78904)",MERRICK BOULEVARD,106 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493498,Sedan,Sedan,,, +01/10/2022,14:48,BROOKLYN,11220,40.63982,-74.02443,"(40.63982, -74.02443)",,,260 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493571,Sedan,,,, +01/10/2022,8:00,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493431,Bus,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,17:30,QUEENS,11361,40.758392,-73.781456,"(40.758392, -73.781456)",43 AVENUE,202 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494016,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,10:12,BROOKLYN,11229,40.605698,-73.95866,"(40.605698, -73.95866)",AVENUE R,EAST 14 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493791,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,6:50,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4493871,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/09/2022,14:50,,,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493999,Sedan,,,, +01/10/2022,18:58,BROOKLYN,11238,40.686863,-73.96448,"(40.686863, -73.96448)",GREENE AVENUE,SAINT JAMES PLACE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4493616,Sedan,E-Bike,,, +01/04/2022,17:00,QUEENS,11432,40.71001,-73.79474,"(40.71001, -73.79474)",HILLSIDE AVENUE,168 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494061,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,22:00,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493580,Sedan,,,, +01/10/2022,20:35,MANHATTAN,10002,40.720173,-73.98865,"(40.720173, -73.98865)",,,94 RIVINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493709,FIRE TRUCK,Sedan,,, +01/10/2022,15:08,BROOKLYN,11207,40.672176,-73.89397,"(40.672176, -73.89397)",PITKIN AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493514,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,7:00,,,,,,SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469183,Sedan,,,, +01/09/2022,14:14,BROOKLYN,11201,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4494026,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +01/10/2022,10:55,BROOKLYN,11219,40.641346,-73.99807,"(40.641346, -73.99807)",,,950 46 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4493671,Station Wagon/Sport Utility Vehicle,Bike,,, +01/10/2022,10:00,QUEENS,11365,40.73791,-73.77444,"(40.73791, -73.77444)",199 STREET,69 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493590,Sedan,Sedan,,, +01/10/2022,20:45,BROOKLYN,11218,40.644047,-73.9875,"(40.644047, -73.9875)",36 STREET,MINNA STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493672,Sedan,,,, +01/10/2022,22:34,BROOKLYN,11233,0,0,"(0.0, 0.0)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493632,Taxi,,,, +01/05/2022,9:58,,,40.600716,-74.19508,"(40.600716, -74.19508)",SOUTH AVENUE,MEREDITH AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4494087,Station Wagon/Sport Utility Vehicle,Commercial,,, +01/10/2022,0:20,,,40.631577,-74.185005,"(40.631577, -74.185005)",,,400 WESTERN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4493265,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,16:41,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",50 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493562,Sedan,Sedan,,, +12/30/2021,9:25,,,40.69299,-73.95583,"(40.69299, -73.95583)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493993,Pick-up Truck,Sedan,,, +12/11/2021,19:10,QUEENS,11369,40.76159,-73.871216,"(40.76159, -73.871216)",,,26-25 98 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494053,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,0:31,BRONX,10459,40.831173,-73.88829,"(40.831173, -73.88829)",,,1441 BRYANT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4493313,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/10/2022,13:31,QUEENS,11411,40.696617,-73.73227,"(40.696617, -73.73227)",115 ROAD,227 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493503,Sedan,Sedan,,, +01/10/2022,18:21,BROOKLYN,11239,40.648956,-73.88301,"(40.648956, -73.88301)",,,1310 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493638,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,23:50,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493583,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,14:05,,,40.640945,-73.94852,"(40.640945, -73.94852)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493985,,,,, +01/07/2022,8:25,BROOKLYN,11203,40.653103,-73.9257,"(40.653103, -73.9257)",,,204 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494024,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,4:19,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493424,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,8:39,,,40.881504,-73.879364,"(40.881504, -73.879364)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493465,Sedan,,,, +01/10/2022,9:30,,,40.683933,-73.91228,"(40.683933, -73.91228)",BROADWAY,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493777,Sedan,Bike,,, +01/10/2022,13:30,,,40.80844,-73.96489,"(40.80844, -73.96489)",WEST 116 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493558,Sedan,,,, +01/05/2022,7:24,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Pavement Slippery,Pavement Slippery,,,4493956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/10/2022,6:45,QUEENS,11373,40.742508,-73.8821,"(40.742508, -73.8821)",,,82-23 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4493390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,10:41,BRONX,10463,40.881306,-73.90009,"(40.881306, -73.90009)",,,3418 BAILEY AVENUE,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4493687,Sedan,,,, +01/10/2022,12:36,QUEENS,11435,40.692066,-73.810165,"(40.692066, -73.810165)",,,142-06 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4493793,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/10/2022,9:30,BROOKLYN,11220,40.635387,-74.02523,"(40.635387, -74.02523)",,,325 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4493439,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,15:00,BROOKLYN,11229,40.59758,-73.94813,"(40.59758, -73.94813)",AVENUE V,EAST 23 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493596,Pick-up Truck,,,, +12/14/2021,3:15,BROOKLYN,11213,40.672516,-73.93356,"(40.672516, -73.93356)",PARK PLACE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4494037,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/09/2022,14:45,MANHATTAN,10033,40.84509,-73.936844,"(40.84509, -73.936844)",,,1289 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493978,Sedan,Sedan,,, +01/10/2022,16:09,QUEENS,11418,40.699936,-73.82516,"(40.699936, -73.82516)",,,87-44 125 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493551,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,7:45,,,40.592552,-73.78702,"(40.592552, -73.78702)",ARVERNE BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493601,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,5:00,BROOKLYN,11211,,,,LEONARD STREET,DEVOE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468315,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,20:00,QUEENS,11368,40.75067,-73.863106,"(40.75067, -73.863106)",103 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494031,Bus,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,20:20,MANHATTAN,10034,40.860664,-73.92171,"(40.860664, -73.92171)",10 AVENUE,WEST 201 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493755,PK,,,, +02/20/2022,4:00,,,40.68536,-73.88221,"(40.68536, -73.88221)",HIGHLAND BOULEVARD,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4504578,Sedan,,,, +02/20/2022,1:17,,,40.676815,-73.82338,"(40.676815, -73.82338)",ROCKAWAY BOULEVARD,115 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4504355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,6:00,QUEENS,11385,40.703957,-73.8957,"(40.703957, -73.8957)",FRESH POND ROAD,CATALPA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493345,Sedan,Sedan,,, +01/10/2022,17:41,BROOKLYN,11224,40.57522,-73.997505,"(40.57522, -73.997505)",WEST 31 STREET,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493947,Sedan,,,, +01/10/2022,13:13,BRONX,10469,40.86595,-73.85576,"(40.86595, -73.85576)",,,2722 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493491,Sedan,,,, +10/18/2021,20:50,,,40.6655296,-73.7446592,"(40.6655296, -73.7446592)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468892,Sedan,Sedan,,, +01/10/2022,9:25,,,,,,EAST GUN HILL ROAD,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493804,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,12:00,MANHATTAN,10012,40.724873,-74.001656,"(40.724873, -74.001656)",,,411 WEST BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4493701,Van,,,, +09/03/2021,15:40,,,40.8239402,-73.9485521,"(40.8239402, -73.9485521)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469036,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/10/2022,17:50,BRONX,10467,40.864655,-73.863556,"(40.864655, -73.863556)",BARNES AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4493621,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,21:50,BROOKLYN,11203,40.649986,-73.93215,"(40.649986, -73.93215)",EAST 48 STREET,SNYDER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493648,Sedan,,,, +10/18/2021,16:25,,,40.6660744,-73.8415842,"(40.6660744, -73.8415842)",CROSS BAY BOULEVARD,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4468587,SCHOOL BUS,Sedan,,, +10/18/2021,21:40,BROOKLYN,11220,40.6392099,-74.0198264,"(40.6392099, -74.0198264)",,,6201 4 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468564,Sedan,Sedan,,, +10/10/2021,5:30,STATEN ISLAND,10305,40.6070995,-74.0609903,"(40.6070995, -74.0609903)",BAY STREET,SCHOOL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469268,Sedan,,,, +10/18/2021,14:25,,,40.6903696,-73.927546,"(40.6903696, -73.927546)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469251,Sedan,Bus,,, +10/18/2021,18:30,BROOKLYN,11206,40.7014101,-73.9433975,"(40.7014101, -73.9433975)",,,700 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468969,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,16:57,MANHATTAN,10039,40.8216382,-73.9390768,"(40.8216382, -73.9390768)",7 AVENUE,WEST 145 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4468996,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,22:29,,,40.7452528,-73.8700626,"(40.7452528, -73.8700626)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468628,Sedan,Sedan,,, +12/07/2021,23:38,BROOKLYN,11207,40.683685,-73.89052,"(40.683685, -73.89052)",,,337 HIGHLAND BOULEVARD,3,0,0,0,0,0,3,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4486087,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +12/11/2021,16:50,BROOKLYN,11235,40.586376,-73.952255,"(40.586376, -73.952255)",,,1668 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485763,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,10:30,BRONX,10459,40.82327,-73.88776,"(40.82327, -73.88776)",,,1028 ALDUS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485421,Sedan,,,, +12/11/2021,22:15,QUEENS,11104,40.74743,-73.925476,"(40.74743, -73.925476)",SKILLMAN AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485454,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,17:35,,,40.706345,-73.85159,"(40.706345, -73.85159)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4485962,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/10/2022,6:55,QUEENS,11368,40.75781,-73.86174,"(40.75781, -73.86174)",,,107-07 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4494032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,15:30,QUEENS,11385,40.69622,-73.89988,"(40.69622, -73.89988)",CYPRESS AVENUE,DECATUR STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4493569,Sedan,Sedan,,, +01/09/2022,20:00,,,40.716713,-73.82782,"(40.716713, -73.82782)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493958,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,10:00,BROOKLYN,11205,40.693203,-73.953995,"(40.693203, -73.953995)",WILLOUGHBY AVENUE,WALWORTH STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4494000,Garbage or Refuse,Tractor Truck Diesel,,, +01/10/2022,14:50,QUEENS,11373,40.73138,-73.87782,"(40.73138, -73.87782)",85 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493600,Sedan,,,, +01/10/2022,1:15,STATEN ISLAND,10312,40.533157,-74.15504,"(40.533157, -74.15504)",HYLAN BOULEVARD,RETFORD AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4493833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,6:10,,,40.723648,-73.99103,"(40.723648, -73.99103)",2 AVENUE,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493378,Sedan,Van,,, +01/10/2022,14:30,QUEENS,11363,40.76436,-73.74748,"(40.76436, -73.74748)",,,232-02 NORTHERN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4493661,Sedan,Pick-up Truck,,, +01/10/2022,1:13,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",WEST 179 STREET,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4493473,Convertible,,,, +01/10/2022,8:20,,,40.846504,-73.82629,"(40.846504, -73.82629)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493673,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,13:50,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,12:00,MANHATTAN,10035,40.797688,-73.93344,"(40.797688, -73.93344)",,,414 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493658,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,12:15,MANHATTAN,10024,40.783844,-73.979996,"(40.783844, -73.979996)",WEST 79 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4494057,Bus,Sedan,,, +01/10/2022,16:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493612,Sedan,Bus,,, +01/04/2022,15:55,,,40.74701,-73.977196,"(40.74701, -73.977196)",3 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494092,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/10/2022,0:23,BROOKLYN,11218,40.64802,-73.979546,"(40.64802, -73.979546)",,,3115 FORT HAMILTON PARKWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4493275,Station Wagon/Sport Utility Vehicle,Bike,,, +09/07/2021,21:45,,,40.666748,-73.764534,"(40.666748, -73.764534)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493992,Sedan,Sedan,,, +01/10/2022,11:33,MANHATTAN,10016,40.742252,-73.97769,"(40.742252, -73.97769)",EAST 30 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,4493795,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +01/10/2022,7:50,QUEENS,11356,40.784657,-73.8523,"(40.784657, -73.8523)",14 ROAD,115 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493443,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/10/2022,11:45,BROOKLYN,11203,40.650352,-73.92616,"(40.650352, -73.92616)",,,5404 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493717,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,8:30,BROOKLYN,11212,40.661983,-73.90198,"(40.661983, -73.90198)",POWELL STREET,RIVERDALE AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4493477,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,8:00,,,40.743137,-73.82973,"(40.743137, -73.82973)",HORACE HARDING EXPRESSWAY,136 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493782,Tractor Truck Diesel,Sedan,,, +01/10/2022,14:11,,,40.657795,-73.86847,"(40.657795, -73.86847)",VANDALIA AVENUE,ERSKINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4493550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,19:07,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493879,Sedan,FIRETRUCK,,, +01/10/2022,2:35,BROOKLYN,11238,40.68046,-73.96136,"(40.68046, -73.96136)",GRAND AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493383,Sedan,,,, +01/10/2022,20:00,BROOKLYN,11212,40.66495,-73.92288,"(40.66495, -73.92288)",RUTLAND ROAD,EAST 98 STREET,,1,0,1,0,0,0,0,0,,,,,,4493718,,,,, +01/10/2022,15:51,,,40.789444,-73.98212,"(40.789444, -73.98212)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4493849,Sedan,Sedan,,, +01/07/2022,0:00,BROOKLYN,11226,40.654343,-73.94995,"(40.654343, -73.94995)",,,1337 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493953,PK,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,8:59,QUEENS,11355,,,,ROOSEVELT AVENUE,shea road,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,,,,4426262,Motorcycle,Sedan,,, +01/10/2022,1:50,,,,,,OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4493392,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/18/2021,17:00,QUEENS,11422,40.65753,-73.73862,"(40.65753, -73.73862)",249 STREET,NEWHALL AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4428517,,,,, +06/26/2021,1:23,,,40.77202,-73.956024,"(40.77202, -73.956024)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431000,Sedan,,,, +06/16/2021,17:39,QUEENS,11040,40.753555,-73.70362,"(40.753555, -73.70362)",77 AVENUE,HEWLETT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,1:30,BROOKLYN,11220,40.6366392,-74.0275995,"(40.6366392, -74.0275995)",,,6825 MADELINE COURT,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468572,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +06/28/2021,4:20,QUEENS,11354,40.77512,-73.806694,"(40.77512, -73.806694)",25 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431938,Sedan,,,, +06/23/2021,23:04,,,40.610165,-73.92289,"(40.610165, -73.92289)",FLATBUSH AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432757,Sedan,Sedan,,, +06/28/2021,16:17,,,40.59981,-74.00857,"(40.59981, -74.00857)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432127,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,9:05,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,15:39,BROOKLYN,11238,40.68544,-73.97228,"(40.68544, -73.97228)",FULTON STREET,CUMBERLAND STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4432680,Motorcycle,,,, +06/28/2021,10:20,BRONX,10458,40.85696,-73.89021,"(40.85696, -73.89021)",,,525 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432522,Sedan,Sedan,,, +06/28/2021,8:00,QUEENS,11101,40.75134,-73.93746,"(40.75134, -73.93746)",,,28-14 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432482,Sedan,Sedan,,, +06/28/2021,3:20,MANHATTAN,10017,40.75425,-73.96899,"(40.75425, -73.96899)",2 AVENUE,EAST 49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431615,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,16:56,BROOKLYN,11220,,,,3 AVENUE,51 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4431966,Sedan,Sedan,,, +05/26/2021,16:35,,,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432720,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,12:44,,,40.583992,-73.96752,"(40.583992, -73.96752)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432214,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,15:00,BROOKLYN,11231,40.68191,-74.00504,"(40.68191, -74.00504)",WOODHULL STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432037,Sedan,Sedan,,, +06/28/2021,12:11,,,40.786423,-73.82394,"(40.786423, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432381,Sedan,Sedan,,, +06/28/2021,6:45,MANHATTAN,10011,40.744015,-74.00851,"(40.744015, -74.00851)",WEST 16 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4432559,Box Truck,Sedan,,, +06/28/2021,6:40,,,40.78569,-73.7872,"(40.78569, -73.7872)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432617,Box Truck,Pick-up Truck,,, +06/28/2021,4:25,BRONX,10467,40.859566,-73.86855,"(40.859566, -73.86855)",,,2280 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431687,Sedan,Sedan,,, +06/28/2021,16:20,MANHATTAN,10019,40.76222,-73.97875,"(40.76222, -73.97875)",,,1335 AVENUE OF THE AMERICAS,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432056,E-Scooter,Bike,,, +06/28/2021,13:20,BRONX,10457,40.85225,-73.89928,"(40.85225, -73.89928)",EAST 180 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432520,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,18:27,QUEENS,11436,40.671566,-73.79031,"(40.671566, -73.79031)",148 STREET,SUTTER AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4432833,Sedan,Bike,,, +06/21/2021,15:00,MANHATTAN,10018,40.759514,-73.99926,"(40.759514, -73.99926)",WEST 40 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432552,Sedan,Box Truck,,, +06/28/2021,12:45,QUEENS,11433,40.694183,-73.78953,"(40.694183, -73.78953)",,,109-46 BREWER BOULEVARD,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4432326,Sedan,Sedan,,, +06/28/2021,0:00,MANHATTAN,10030,40.820293,-73.94378,"(40.820293, -73.94378)",WEST 141 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4431761,Sedan,,,, +06/27/2021,11:00,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4432847,E-Scooter,,,, +06/27/2021,22:05,MANHATTAN,10004,40.706657,-74.015915,"(40.706657, -74.015915)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4432843,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2021,16:00,,,40.741528,-73.98753,"(40.741528, -73.98753)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431916,Sedan,Bus,,, +06/28/2021,16:00,,,40.76416,-73.968895,"(40.76416, -73.968895)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432135,Sedan,,,, +06/25/2021,21:25,MANHATTAN,10016,40.74956,-73.9813,"(40.74956, -73.9813)",,,21 EAST 37 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432702,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/14/2021,13:30,,,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432713,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/11/2021,17:00,,,40.86219,-73.8717,"(40.86219, -73.8717)",BRONX RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4485941,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/28/2021,21:15,BROOKLYN,11237,40.70377,-73.93116,"(40.70377, -73.93116)",FLUSHING AVENUE,WILSON AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4432167,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2021,13:04,MANHATTAN,10282,40.71509,-74.01596,"(40.71509, -74.01596)",NORTH END AVENUE,VESEY STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4432220,Van,,,, +06/28/2021,23:00,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4432263,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/28/2021,12:50,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4431867,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,12:50,MANHATTAN,10016,40.747627,-73.976746,"(40.747627, -73.976746)",EAST 37 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431829,Flat Rack,Sedan,,, +06/27/2021,13:47,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432578,Chassis Cab,Sedan,,, +06/28/2021,23:00,,,40.626034,-73.98327,"(40.626034, -73.98327)",53 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432602,Sedan,,,, +06/23/2021,3:55,BROOKLYN,11224,40.57686,-73.98266,"(40.57686, -73.98266)",MERMAID AVENUE,WEST 15 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4432651,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/28/2021,10:45,,,40.744244,-73.82954,"(40.744244, -73.82954)",59 AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4431851,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,5:30,BRONX,10466,40.895367,-73.86072,"(40.895367, -73.86072)",BRONX BOULEVARD,EAST 234 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431830,Sedan,Box Truck,,, +06/22/2021,19:00,STATEN ISLAND,10314,40.6101,-74.11668,"(40.6101, -74.11668)",SLOSSON AVENUE,LORTEL AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432534,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/08/2021,13:00,,,40.67753,-73.73085,"(40.67753, -73.73085)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4424944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/28/2021,8:02,BROOKLYN,11226,40.652565,-73.95108,"(40.652565, -73.95108)",,,212 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431911,Sedan,Pick-up Truck,,, +06/28/2021,8:15,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",BOYLAND STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431793,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/28/2021,9:00,,,,,,LIE OUTER ROADWAY (CDR),,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4432256,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,19:27,BROOKLYN,11203,40.637455,-73.92886,"(40.637455, -73.92886)",UTICA AVENUE,FARRAGUT ROAD,,1,1,0,0,0,0,1,1,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4432786,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/28/2021,11:40,MANHATTAN,10029,40.79507,-73.93919,"(40.79507, -73.93919)",2 AVENUE,EAST 113 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432023,Van,,,, +06/28/2021,14:36,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432076,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,13:40,QUEENS,11374,40.73251,-73.857056,"(40.73251, -73.857056)",99 STREET,63 ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432708,Bike,,,, +06/25/2021,13:40,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432725,Sedan,Sedan,,, +06/28/2021,10:45,QUEENS,11368,40.757168,-73.86743,"(40.757168, -73.86743)",,,33-04 101 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4432308,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,13:40,,,,,,BRUCKNER EXPRESSWAY,PELHAM BAY PARK,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4432185,Sedan,Sedan,,, +06/28/2021,21:40,,,40.639645,-74.008835,"(40.639645, -74.008835)",55 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432278,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,15:55,,,40.66546,-73.74246,"(40.66546, -73.74246)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4431898,Sedan,,,, +06/28/2021,9:59,BRONX,10460,40.83928,-73.886604,"(40.83928, -73.886604)",EAST 175 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431976,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/27/2021,5:26,,,40.843678,-73.89426,"(40.843678, -73.89426)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432574,Tractor Truck Diesel,,,, +06/28/2021,8:00,,,40.735134,-74.00607,"(40.735134, -74.00607)",PERRY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432660,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,15:00,,,40.694126,-73.90581,"(40.694126, -73.90581)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432166,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,8:38,,,40.765427,-73.7246,"(40.765427, -73.7246)",LITTLE NECK PARKWAY,NASSAU BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432443,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,12:00,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",EAST 187 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432579,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,8:25,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4431917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,11:30,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4432642,Garbage or Refuse,Sedan,,, +06/28/2021,10:20,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4431949,Sedan,Sedan,,, +06/11/2021,13:00,STATEN ISLAND,10304,40.619205,-74.07719,"(40.619205, -74.07719)",PARK HILL AVENUE,PARK HILL COURT,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4432539,Sedan,Sedan,,, +06/28/2021,8:45,BROOKLYN,11226,40.65259,-73.950836,"(40.65259, -73.950836)",,,221 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431836,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,16:00,BROOKLYN,11203,40.658234,-73.9321,"(40.658234, -73.9321)",EAST 49 STREET,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432375,Sedan,,,, +06/28/2021,20:07,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4432198,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,12:00,,,40.594585,-73.90858,"(40.594585, -73.90858)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432234,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,0:00,BRONX,10472,0,0,"(0.0, 0.0)",,,1134 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432653,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,6:00,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432817,Sedan,,,, +06/28/2021,7:00,STATEN ISLAND,10306,40.577477,-74.10839,"(40.577477, -74.10839)",GREELEY AVENUE,EDISON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432349,Sedan,,,, +06/26/2021,14:20,STATEN ISLAND,10304,40.59018,-74.10089,"(40.59018, -74.10089)",LIBERTY AVENUE,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4432530,Station Wagon/Sport Utility Vehicle,FLATBED,Sedan,Sedan, +06/28/2021,14:35,BROOKLYN,11211,40.708424,-73.95791,"(40.708424, -73.95791)",BROADWAY,MARCY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4432018,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,14:10,QUEENS,11105,40.777042,-73.909584,"(40.777042, -73.909584)",,,21-51 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,14:00,BROOKLYN,11212,40.658707,-73.90602,"(40.658707, -73.90602)",,,540 OSBORN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432058,Sedan,,,, +06/12/2021,21:30,,,40.675945,-73.94715,"(40.675945, -73.94715)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432715,ESCOOTER S,Sedan,,, +06/28/2021,0:17,,,40.62764,-73.89022,"(40.62764, -73.89022)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4431961,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,17:04,,,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432721,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,10:50,,,40.76285,-73.967735,"(40.76285, -73.967735)",LEXINGTON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432142,Sedan,,,, +01/10/2022,1:28,QUEENS,11419,40.685566,-73.83343,"(40.685566, -73.83343)",103 AVENUE,109 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493476,Sedan,Sedan,,, +06/28/2021,19:50,MANHATTAN,10001,40.747234,-73.99337,"(40.747234, -73.99337)",WEST 28 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432563,Sedan,,,, +06/28/2021,0:45,QUEENS,11419,40.68971,-73.826866,"(40.68971, -73.826866)",118 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,Unspecified,4431926,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/28/2021,23:54,BROOKLYN,11213,40.677597,-73.932365,"(40.677597, -73.932365)",,,1673 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432401,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,13:00,BROOKLYN,11237,40.705254,-73.92535,"(40.705254, -73.92535)",JEFFERSON STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432588,Sedan,,,, +06/28/2021,20:10,,,,,,ELTON STREET,GATEWAY DRIVE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4432092,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,22:30,BROOKLYN,11238,40.683315,-73.9689,"(40.683315, -73.9689)",,,473 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431969,Sedan,Sedan,,, +06/28/2021,11:25,,,40.584003,-73.92157,"(40.584003, -73.92157)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4432040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/28/2021,11:19,BRONX,10457,40.84219,-73.89411,"(40.84219, -73.89411)",CROTONA AVENUE,CROTONA PARK NORTH,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,4:21,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431626,Sedan,,,, +06/28/2021,10:52,MANHATTAN,10032,40.841076,-73.93977,"(40.841076, -73.93977)",BROADWAY,WEST 168 STREET,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4432543,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/27/2021,16:14,QUEENS,11366,40.72755,-73.80027,"(40.72755, -73.80027)",75 AVENUE,169 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,18:00,BROOKLYN,11207,40.666718,-73.89162,"(40.666718, -73.89162)",DUMONT AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493639,Sedan,,,, +06/28/2021,15:00,BROOKLYN,11203,40.649986,-73.93215,"(40.649986, -73.93215)",SNYDER AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4432334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/28/2021,22:00,,,40.7014,-73.91858,"(40.7014, -73.91858)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,19:09,BRONX,10460,40.849308,-73.88481,"(40.849308, -73.88481)",PROSPECT AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432582,Taxi,Sedan,,, +06/28/2021,7:30,QUEENS,11377,40.755825,-73.903404,"(40.755825, -73.903404)",58 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432478,Sedan,Sedan,,, +06/28/2021,1:30,QUEENS,11436,40.683857,-73.7955,"(40.683857, -73.7955)",147 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431706,Sedan,Sedan,,, +06/28/2021,8:00,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432521,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,15:50,QUEENS,11415,40.704338,-73.82545,"(40.704338, -73.82545)",METROPOLITAN AVENUE,126 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4431924,Bike,,,, +06/27/2021,14:32,QUEENS,11436,40.673508,-73.800285,"(40.673508, -73.800285)",140 STREET,BASCOM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432834,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,14:40,BROOKLYN,11223,40.590748,-73.968376,"(40.590748, -73.968376)",AVENUE X,EAST 2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432042,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,11:05,MANHATTAN,10001,40.7497,-74.00497,"(40.7497, -74.00497)",,,564 WEST 25 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432553,Sedan,,,, +06/28/2021,10:12,BROOKLYN,11234,40.629368,-73.88477,"(40.629368, -73.88477)",,,2200 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431962,Garbage or Refuse,PK,,, +06/28/2021,12:00,QUEENS,11433,40.697353,-73.79185,"(40.697353, -73.79185)",,,107-42 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432325,Bus,Sedan,Sedan,, +06/28/2021,17:53,MANHATTAN,10038,40.705868,-74.00377,"(40.705868, -74.00377)",,,89 SOUTH STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4432839,Bike,,,, +06/28/2021,23:15,BROOKLYN,11223,40.601463,-73.97555,"(40.601463, -73.97555)",WEST 3 STREET,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432388,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,18:29,BROOKLYN,11234,40.62374,-73.92448,"(40.62374, -73.92448)",EAST 53 STREET,AVENUE L,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4432765,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,20:50,BROOKLYN,11219,40.625454,-74.00566,"(40.625454, -74.00566)",12 AVENUE,OVINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432002,Sedan,,,, +06/06/2021,8:19,BROOKLYN,11234,40.61212,-73.919014,"(40.61212, -73.919014)",EAST 56 STREET,AVENUE U,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432681,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,20:53,,,40.697407,-73.93601,"(40.697407, -73.93601)",BROADWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432603,Sedan,Sedan,,, +06/27/2021,21:00,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432537,Sedan,Sedan,,, +06/28/2021,17:14,QUEENS,11369,40.762268,-73.86535,"(40.762268, -73.86535)",,,29-40 GILLMORE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432716,Sedan,,,, +06/28/2021,12:30,MANHATTAN,10014,40.734577,-74.00522,"(40.734577, -74.00522)",,,102 CHARLES STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4431835,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/28/2021,3:00,,,40.769283,-73.82445,"(40.769283, -73.82445)",32 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431852,Sedan,Sedan,,, +06/28/2021,18:24,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4432189,Bike,Sedan,,, +06/28/2021,23:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,3:45,,,,,,UTOPIA PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4431939,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/28/2021,2:20,QUEENS,11385,40.702076,-73.87917,"(40.702076, -73.87917)",71 PLACE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432288,Sedan,Sedan,,, +06/28/2021,10:14,MANHATTAN,10011,40.740833,-74.00294,"(40.740833, -74.00294)",,,325 WEST 15 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432558,Box Truck,Sedan,,, +06/28/2021,9:20,,,40.884144,-73.91502,"(40.884144, -73.91502)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4431819,Sedan,,,, +06/28/2021,14:00,BRONX,10467,40.874928,-73.86498,"(40.874928, -73.86498)",MAGENTA STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432111,Sedan,,,, +06/28/2021,15:46,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432199,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,5:00,,,40.860535,-73.914345,"(40.860535, -73.914345)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4431846,Sedan,,,, +06/28/2021,15:00,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4431974,Taxi,,,, +06/28/2021,10:06,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4432444,Sedan,Ambulance,,, +06/28/2021,20:45,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432525,Sedan,Taxi,,, +06/28/2021,8:58,QUEENS,11369,40.761738,-73.88151,"(40.761738, -73.88151)",,,87-21 30 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432310,Sedan,,,, +06/24/2021,21:30,BROOKLYN,11238,40.680187,-73.967964,"(40.680187, -73.967964)",VANDERBILT AVENUE,DEAN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432731,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2021,16:29,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431932,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,21:00,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4431981,Sedan,,,, +06/28/2021,20:32,MANHATTAN,10032,40.833412,-73.93902,"(40.833412, -73.93902)",,,545 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432671,Sedan,Sedan,,, +06/28/2021,12:13,QUEENS,11365,40.73332,-73.79114,"(40.73332, -73.79114)",69 AVENUE,180 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432659,Sedan,Sedan,,, +06/26/2021,19:40,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",SOUTHERN BOULEVARD,EAST 180 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4432575,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,19:46,BROOKLYN,11211,40.714073,-73.95074,"(40.714073, -73.95074)",,,539 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432426,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,22:47,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4432646,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +06/28/2021,17:30,BRONX,10466,40.902355,-73.84569,"(40.902355, -73.84569)",,,4535 WILDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432183,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,6:40,BRONX,10472,40.828518,-73.8799,"(40.828518, -73.8799)",,,1502 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4431753,Sedan,Motorcycle,,, +06/28/2021,20:30,QUEENS,11413,40.676117,-73.74046,"(40.676117, -73.74046)",230 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432269,Sedan,,,, +06/28/2021,17:00,,,40.644753,-73.92493,"(40.644753, -73.92493)",CLARENDON ROAD,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4431912,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/03/2021,16:53,BROOKLYN,11213,40.673103,-73.92793,"(40.673103, -73.92793)",ROCHESTER AVENUE,PROSPECT PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432724,Sedan,E-Bike,,, +06/28/2021,15:10,BROOKLYN,11209,40.617107,-74.02997,"(40.617107, -74.02997)",,,9319 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432212,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,22:37,BROOKLYN,11225,40.66407,-73.94847,"(40.66407, -73.94847)",,,415 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432133,Sedan,,,, +06/28/2021,19:56,,,,,,FDR DRIVE,EAST 115 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,0:00,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432670,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,23:20,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4432533,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/28/2021,14:05,BROOKLYN,11239,,,,,,632 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4432075,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/28/2021,12:48,BRONX,10455,40.80988,-73.90308,"(40.80988, -73.90308)",EAST 149 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4432432,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/26/2021,13:27,MANHATTAN,10022,40.75831,-73.96294,"(40.75831, -73.96294)",EAST 57 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432701,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,8:45,BROOKLYN,11228,40.627567,-74.01065,"(40.627567, -74.01065)",,,6912 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431948,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,9:15,STATEN ISLAND,10301,40.6377,-74.082886,"(40.6377, -74.082886)",,,115 CORSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432290,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,16:00,STATEN ISLAND,10304,40.604084,-74.08521,"(40.604084, -74.08521)",MOSEL AVENUE,GRASMERE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432350,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,23:16,QUEENS,11417,40.677876,-73.85064,"(40.677876, -73.85064)",107 AVENUE,87 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,6:20,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4427184,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,2:30,MANHATTAN,10006,40.7077,-74.0155,"(40.7077, -74.0155)",WEST THAMES STREET,WEST STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432219,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:40,MANHATTAN,10001,40.750214,-73.988815,"(40.750214, -73.988815)",,,124 WEST 34 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431790,Sedan,Sedan,,, +06/28/2021,5:17,,,40.681686,-73.871574,"(40.681686, -73.871574)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4432089,Bus,Sedan,,, +06/28/2021,10:40,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4431862,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,20:00,QUEENS,11355,40.750706,-73.82322,"(40.750706, -73.82322)",COLDEN STREET,45 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432784,Sedan,Bike,,, +06/28/2021,16:50,BROOKLYN,11207,40.68097,-73.8915,"(40.68097, -73.8915)",JAMAICA AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4432106,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/28/2021,17:00,,,40.779697,-73.81221,"(40.779697, -73.81221)",MURRAY STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431943,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,1:30,,,40.68857,-73.8757,"(40.68857, -73.8757)",CYPRESS HILL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/31/2021,18:40,,,40.677048,-73.9387,"(40.677048, -73.9387)",PACIFIC STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432707,,,,, +06/28/2021,13:13,,,40.755554,-73.91848,"(40.755554, -73.91848)",43 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:15,BROOKLYN,11211,40.70992,-73.9623,"(40.70992, -73.9623)",BROADWAY,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432017,Bus,Sedan,,, +06/25/2021,7:20,QUEENS,11379,40.721485,-73.86658,"(40.721485, -73.86658)",64 ROAD,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432514,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,0:00,BROOKLYN,11225,40.668983,-73.951126,"(40.668983, -73.951126)",,,1218 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493991,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,16:00,,,40.59614,-73.99385,"(40.59614, -73.99385)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432544,Sedan,,,, +06/12/2021,9:15,,,40.67341,-73.93348,"(40.67341, -73.93348)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432730,Sedan,Sedan,Sedan,, +06/28/2021,23:37,BROOKLYN,11226,40.652412,-73.95423,"(40.652412, -73.95423)",,,123 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4432331,Sedan,Sedan,Bike,Sedan, +06/28/2021,1:30,MANHATTAN,10030,40.817398,-73.94274,"(40.817398, -73.94274)",,,200 WEST 138 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432622,Sedan,,,, +06/25/2021,8:50,QUEENS,11434,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4430957,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2021,20:59,BROOKLYN,11218,40.635983,-73.97411,"(40.635983, -73.97411)",EAST 5 STREET,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432597,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/28/2021,9:30,BROOKLYN,11235,40.58575,-73.953674,"(40.58575, -73.953674)",,,1511 VOORHIES AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,8:02,BRONX,10473,40.8223,-73.873,"(40.8223, -73.873)",MORRISON AVENUE,STORY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493422,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,12:40,,,40.671947,-73.779,"(40.671947, -73.779)",134 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4431848,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,20:08,BROOKLYN,11204,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,65 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4432153,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle, +06/25/2021,2:10,,,40.837864,-73.9114,"(40.837864, -73.9114)",EAST 170 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4432542,Sedan,Pick-up Truck,,, +06/28/2021,13:42,QUEENS,11413,40.660103,-73.75684,"(40.660103, -73.75684)",,,146-16 224 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431897,Sedan,Sedan,,, +06/28/2021,7:35,BROOKLYN,11217,40.679577,-73.978325,"(40.679577, -73.978325)",5 AVENUE,BALTIC STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4432191,Tractor Truck Diesel,,,, +06/28/2021,16:10,MANHATTAN,10018,40.757732,-73.99686,"(40.757732, -73.99686)",WEST 39 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432562,Sedan,Sedan,,, +06/28/2021,16:00,,,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4431929,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/28/2021,10:36,BROOKLYN,11234,40.608204,-73.920715,"(40.608204, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4432235,Sedan,Box Truck,,, +06/24/2021,15:00,BROOKLYN,11218,0,0,"(0.0, 0.0)",,,1624 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432592,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,7:29,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4431814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,19:15,,,40.878468,-73.82827,"(40.878468, -73.82827)",COOP CITY BOULEVARD,DREISER LOOP,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4432160,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/22/2021,12:30,MANHATTAN,10034,40.865547,-73.92728,"(40.865547, -73.92728)",BROADWAY,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432814,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,22:55,,,40.828,-73.84701,"(40.828, -73.84701)",BRUCKNER BOULEVARD,HAVEMEYER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432222,Sedan,Sedan,,, +06/28/2021,11:52,BRONX,10472,40.83114,-73.879776,"(40.83114, -73.879776)",ELDER AVENUE,EAST 172 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432287,Sedan,Pick-up Truck,,, +06/28/2021,9:00,,,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431827,Box Truck,Sedan,,, +06/28/2021,15:00,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431884,Box Truck,Motorcycle,,, +06/27/2021,17:40,BRONX,10457,40.852768,-73.89217,"(40.852768, -73.89217)",EAST 182 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432576,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,19:10,,,40.845837,-73.892006,"(40.845837, -73.892006)",EAST TREMONT AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432581,Sedan,,,, +06/28/2021,15:15,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4431921,Bike,Moped,,, +06/28/2021,22:05,BROOKLYN,11223,40.60648,-73.96462,"(40.60648, -73.96462)",KINGS HIGHWAY,EAST 8 STREET,,1,0,1,0,0,0,0,0,,,,,,4432043,Sedan,,,, +06/28/2021,20:09,MANHATTAN,10018,40.75649,-73.997765,"(40.75649, -73.997765)",10 AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432564,Sedan,Sedan,,, +06/28/2021,1:05,QUEENS,11435,40.695335,-73.80121,"(40.695335, -73.80121)",SOUTH ROAD,150 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4432329,Sedan,Sedan,,, +06/26/2021,19:00,STATEN ISLAND,10304,40.606163,-74.09093,"(40.606163, -74.09093)",TARGEE STREET,BALTIC AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4432536,Sedan,,,, +06/28/2021,11:00,BRONX,10462,40.835133,-73.86195,"(40.835133, -73.86195)",,,1380 VIRGINIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431833,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,18:30,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431940,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/12/2021,14:11,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,10:36,,,40.794132,-73.94281,"(40.794132, -73.94281)",EAST 110 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431776,Box Truck,Sedan,,, +06/21/2021,16:30,,,40.81792,-73.949745,"(40.81792, -73.949745)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432841,Sedan,,,, +06/28/2021,11:40,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4431913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/21/2021,16:52,MANHATTAN,10038,40.712753,-73.99774,"(40.712753, -73.99774)",,,3 HENRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432626,Sedan,Sedan,,, +06/28/2021,8:05,,,40.665546,-73.9537,"(40.665546, -73.9537)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4432138,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,16:43,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",SOUTHERN BOULEVARD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4431905,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/18/2021,12:51,,,40.626488,-74.16007,"(40.626488, -74.16007)",,,2121 FOREST AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4432683,Sedan,,,, +06/28/2021,22:29,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,2,0,0,0,2,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4432486,Sedan,E-Bike,,, +06/28/2021,11:38,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432236,Pick-up Truck,,,, +06/04/2021,16:05,,,40.668495,-73.925606,"(40.668495, -73.925606)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432717,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,10:27,BROOKLYN,11236,40.636757,-73.891495,"(40.636757, -73.891495)",,,1502 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431963,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/28/2021,14:20,BROOKLYN,11215,40.675774,-73.98421,"(40.675774, -73.98421)",4 AVENUE,GARFIELD PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,5:30,,,40.857105,-73.90936,"(40.857105, -73.90936)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4432268,Sedan,,,, +06/28/2021,18:56,,,40.57281,-73.99916,"(40.57281, -73.99916)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432217,Sedan,Box Truck,,, +06/28/2021,7:50,,,40.674,-74.000275,"(40.674, -74.000275)",HAMILTON AVENUE,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432030,Sedan,,,, +06/28/2021,0:19,,,40.609886,-73.98556,"(40.609886, -73.98556)",72 STREET,,,1,0,0,0,0,0,1,0,Animals Action,,,,,4432386,Sedan,,,, +06/25/2021,13:45,MANHATTAN,10018,40.759514,-73.99926,"(40.759514, -73.99926)",11 AVENUE,WEST 40 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432557,Sedan,,,, +06/28/2021,18:35,MANHATTAN,10022,40.75738,-73.966705,"(40.75738, -73.966705)",EAST 54 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431952,Sedan,E-Bike,,, +06/27/2021,21:50,MANHATTAN,10034,40.87122,-73.91416,"(40.87122, -73.91416)",BROADWAY,WEST 218 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432818,Sedan,,,, +06/28/2021,1:50,BROOKLYN,11229,40.587986,-73.91973,"(40.587986, -73.91973)",GERRITSEN AVENUE,LOIS AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4432449,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,1:00,MANHATTAN,10027,40.818386,-73.95632,"(40.818386, -73.95632)",,,3280 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4432742,Sedan,,,, +06/28/2021,11:20,BROOKLYN,11209,40.628353,-74.02908,"(40.628353, -74.02908)",,,7920 3 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431947,Bike,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,4:30,MANHATTAN,10019,40.7688,-73.988785,"(40.7688, -73.988785)",,,862 10 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431732,Sedan,Sedan,,, +06/24/2021,17:00,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432517,Sedan,Box Truck,,, +06/28/2021,6:50,MANHATTAN,10029,40.78879,-73.940216,"(40.78879, -73.940216)",,,400 EAST 105 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,0:08,BROOKLYN,11221,40.68738,-73.92089,"(40.68738, -73.92089)",HOWARD AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431855,Sedan,,,, +06/28/2021,14:09,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",130 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431982,Sedan,,,, +06/28/2021,20:30,BROOKLYN,11218,40.643578,-73.9899,"(40.643578, -73.9899)",,,3800 FORT HAMILTON PARKWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4432604,Taxi,Bike,,, +06/23/2021,21:25,,,40.74702,-74.00466,"(40.74702, -74.00466)",10 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4432554,Sedan,,,, +06/28/2021,13:50,BROOKLYN,11203,40.654327,-73.9221,"(40.654327, -73.9221)",LINDEN BOULEVARD,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432337,Station Wagon/Sport Utility Vehicle,Dump,,, +06/23/2021,22:15,MANHATTAN,10001,40.752033,-73.99106,"(40.752033, -73.99106)",,,224 WEST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432854,Motorcycle,Sedan,,, +06/24/2021,19:00,,,40.69613,-73.987114,"(40.69613, -73.987114)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432710,Sedan,,,, +06/26/2021,15:00,,,40.606865,-73.89829,"(40.606865, -73.89829)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Lane Changing,,,,4432769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,15:10,BRONX,10454,40.801,-73.91371,"(40.801, -73.91371)",EAST 133 STREET,WILLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432014,Sedan,,,, +06/28/2021,19:57,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4432655,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2021,0:46,BROOKLYN,11225,40.662174,-73.953705,"(40.662174, -73.953705)",ROGERS AVENUE,LEFFERTS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432131,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,13:15,STATEN ISLAND,10305,40.58524,-74.093414,"(40.58524, -74.093414)",BUEL AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4432355,Sedan,,,, +06/28/2021,23:20,,,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,65 ROAD,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4431972,Sedan,Sedan,,, +06/28/2021,18:14,QUEENS,11429,40.70861,-73.7288,"(40.70861, -73.7288)",227 STREET,106 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4431933,Sedan,Sedan,,, +06/28/2021,20:00,QUEENS,11105,40.775223,-73.90318,"(40.775223, -73.90318)",,,20-56 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432490,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,18:38,MANHATTAN,10025,40.804886,-73.96248,"(40.804886, -73.96248)",WEST 113 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4493559,Ambulance,,,, +06/28/2021,22:04,MANHATTAN,10025,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432175,Sedan,,,, +06/28/2021,8:40,QUEENS,11370,40.757267,-73.88663,"(40.757267, -73.88663)",,,32-05 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/28/2021,20:30,,,40.852386,-73.90369,"(40.852386, -73.90369)",EAST BURNSIDE AVENUE,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4432020,Station Wagon/Sport Utility Vehicle,Moped,,, +06/28/2021,13:10,,,40.70918,-73.81916,"(40.70918, -73.81916)",QUEENS BOULEVARD,MAIN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432672,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,8:00,BROOKLYN,11208,40.66882,-73.867226,"(40.66882, -73.867226)",,,2632 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4432090,Sedan,Sedan,,, +06/28/2021,5:00,MANHATTAN,10011,40.742126,-74.002205,"(40.742126, -74.002205)",,,333 WEST 17 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432561,Sedan,,,, +06/28/2021,17:47,,,40.71882,-73.9468,"(40.71882, -73.9468)",MANHATTAN AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432423,Sedan,,,, +06/15/2021,13:44,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4427536,Sedan,Sedan,,, +06/28/2021,14:00,,,40.706062,-73.91626,"(40.706062, -73.91626)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432609,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +06/28/2021,18:05,BROOKLYN,11207,40.66047,-73.89205,"(40.66047, -73.89205)",,,701 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432107,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,2:00,BROOKLYN,11220,40.639782,-74.00151,"(40.639782, -74.00151)",9 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432600,Sedan,,,, +06/28/2021,20:00,BRONX,10455,40.814835,-73.91054,"(40.814835, -73.91054)",,,587 CAULDWELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432436,Sedan,,,, +06/28/2021,6:30,MANHATTAN,10030,40.820293,-73.94378,"(40.820293, -73.94378)",WEST 141 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431674,Sedan,,,, +06/25/2021,5:58,MANHATTAN,10011,40.74649,-74.001335,"(40.74649, -74.001335)",WEST 23 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4432550,Sedan,Sedan,Sedan,, +06/28/2021,22:00,,,40.753487,-73.93795,"(40.753487, -73.93795)",40 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432494,Box Truck,,,, +06/28/2021,19:00,MANHATTAN,10002,40.712646,-73.98998,"(40.712646, -73.98998)",MADISON STREET,RUTGERS STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431951,E-Bike,Sedan,,, +06/28/2021,14:10,QUEENS,11105,40.77687,-73.90493,"(40.77687, -73.90493)",,,36-01 20 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4432205,Pick-up Truck,,,, +06/28/2021,6:50,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4431849,Pick-up Truck,Sedan,Sedan,, +06/28/2021,11:20,BROOKLYN,11215,40.67007,-73.98816,"(40.67007, -73.98816)",,,249 9 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432192,Sedan,Sedan,,, +06/27/2021,4:03,,,40.720245,-73.9444,"(40.720245, -73.9444)",MC GUINNESS BLVD SOUTH,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432812,Sedan,,,, +06/27/2021,1:05,,,40.608776,-74.09113,"(40.608776, -74.09113)",CLOVE ROAD,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432532,Sedan,Sedan,,, +06/28/2021,18:08,,,40.845985,-73.884476,"(40.845985, -73.884476)",EAST 180 STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4432338,Sedan,Sedan,,, +06/28/2021,18:00,QUEENS,11434,40.679653,-73.77724,"(40.679653, -73.77724)",BAISLEY BOULEVARD,166 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432029,Sedan,,,, +06/26/2021,13:50,BROOKLYN,11215,40.667027,-73.9952,"(40.667027, -73.9952)",3 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,7:00,BROOKLYN,11207,40.65204,-73.887955,"(40.65204, -73.887955)",GEORGIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432074,Sedan,,,, +06/22/2021,17:23,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,PACIFIC STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4432723,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle +06/28/2021,12:40,STATEN ISLAND,10314,40.613163,-74.121414,"(40.613163, -74.121414)",VICTORY BOULEVARD,WINTHROP PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432292,Sedan,Sedan,,, +06/28/2021,9:00,,,40.670006,-73.95328,"(40.670006, -73.95328)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432139,Sedan,Sedan,,, +06/28/2021,10:10,,,40.742405,-73.75348,"(40.742405, -73.75348)",SPRINGFIELD BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4431900,Sedan,,,, +06/28/2021,16:01,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Outside Car Distraction,Unspecified,,,4431928,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,16:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432590,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,9:30,,,,,,EAST 58 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4431815,Box Truck,,,, +06/24/2021,18:35,BRONX,10467,40.872173,-73.86319,"(40.872173, -73.86319)",BARNES AVENUE,SOUTH OAK DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4432571,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,17:25,,,40.845016,-73.82567,"(40.845016, -73.82567)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4432161,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,8:00,QUEENS,11419,40.685074,-73.83029,"(40.685074, -73.83029)",112 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431978,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,10:35,BRONX,10473,40.82463,-73.85566,"(40.82463, -73.85566)",STORY AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432666,Sedan,,,, +06/28/2021,13:47,BRONX,10472,40.827183,-73.86011,"(40.827183, -73.86011)",,,1038 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432541,Sedan,Sedan,,, +06/28/2021,7:10,QUEENS,11435,40.71281,-73.809845,"(40.71281, -73.809845)",150 STREET,84 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432621,Sedan,Sedan,,, +06/28/2021,14:40,BROOKLYN,11203,40.63773,-73.93472,"(40.63773, -73.93472)",,,1432 TROY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431909,Sedan,Sedan,,, +06/28/2021,18:10,QUEENS,11428,40.7139,-73.7539,"(40.7139, -73.7539)",,,206-12 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431934,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,15:00,,,40.613388,-73.995995,"(40.613388, -73.995995)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432322,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/28/2021,7:30,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432223,Tractor Truck Diesel,Sedan,,, +06/28/2021,12:40,QUEENS,11379,40.70926,-73.87782,"(40.70926, -73.87782)",,,73-20 69 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432242,Van,Sedan,,, +06/28/2021,7:21,BRONX,10452,40.841423,-73.92867,"(40.841423, -73.92867)",MAJOR DEEGAN EXPRESSWAY,DEPOT PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4432676,PK,Sedan,Sedan,, +06/28/2021,10:12,QUEENS,11434,40.666386,-73.78487,"(40.666386, -73.78487)",,,153-70 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431804,Pick-up Truck,Sedan,,, +06/26/2021,19:26,MANHATTAN,10002,,,,GRAND STREET,FORSYTH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432783,Sedan,Bike,,, +06/28/2021,22:41,BROOKLYN,11207,40.6545,-73.88222,"(40.6545, -73.88222)",VAN SICLEN AVENUE,FLATLANDS AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4432078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,6:18,BROOKLYN,11203,40.660233,-73.93712,"(40.660233, -73.93712)",TROY AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493376,Sedan,,,, +05/24/2021,22:42,BROOKLYN,11213,40.675186,-73.933304,"(40.675186, -73.933304)",SCHENECTADY AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432729,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,8:00,QUEENS,11368,40.740967,-73.85851,"(40.740967, -73.85851)",,,102-17 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431841,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,2:35,QUEENS,11413,40.661392,-73.76003,"(40.661392, -73.76003)",,,146-28 220 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4432687,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/28/2021,19:48,BROOKLYN,11228,40.626293,-74.01572,"(40.626293, -74.01572)",FORT HAMILTON PARKWAY,74 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432171,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/28/2021,6:51,QUEENS,11434,40.67997,-73.77624,"(40.67997, -73.77624)",,,167-02 BAISLEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4431762,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,21:20,,,40.721497,-73.83531,"(40.721497, -73.83531)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,20:50,BRONX,10473,40.822678,-73.842575,"(40.822678, -73.842575)",ZEREGA AVENUE,HOMER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4432221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/22/2021,18:37,MANHATTAN,10001,,,,broadway,30th street,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432853,Taxi,E-Scooter,,, +06/19/2021,15:45,MANHATTAN,10012,40.723198,-73.99866,"(40.723198, -73.99866)",,,530 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4432627,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,2:10,,,40.66813,-73.93675,"(40.66813, -73.93675)",TROY AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4432137,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,12:40,BRONX,10473,40.822613,-73.876816,"(40.822613, -73.876816)",,,942 BOYNTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431875,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:25,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4432523,Sedan,Tractor Truck Diesel,,, +06/28/2021,14:20,QUEENS,11372,40.74755,-73.88461,"(40.74755, -73.88461)",,,81-10 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432453,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,18:45,BROOKLYN,11211,40.707222,-73.952095,"(40.707222, -73.952095)",HEWES STREET,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431986,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/26/2021,21:00,BROOKLYN,11236,40.636513,-73.89681,"(40.636513, -73.89681)",,,1445 EAST 94 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432747,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,21:37,,,40.794235,-73.962814,"(40.794235, -73.962814)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431965,Sedan,E-Bike,,, +06/28/2021,20:19,QUEENS,11432,40.712307,-73.785225,"(40.712307, -73.785225)",,,178-02 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432327,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,18:35,,,40.686756,-73.975525,"(40.686756, -73.975525)",SOUTH ELLIOTT PLACE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4432384,Sedan,Sedan,,, +06/28/2021,13:51,BRONX,10454,40.80714,-73.929955,"(40.80714, -73.929955)",,,82 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432015,Sedan,,,, +06/28/2021,14:45,QUEENS,11378,40.726097,-73.91943,"(40.726097, -73.91943)",49 STREET,56 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432775,Sedan,,,, +06/25/2021,16:44,,,40.541924,-74.18563,"(40.541924, -74.18563)",DRUMGOOLE ROAD WEST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432649,Sedan,Sedan,,, +06/28/2021,2:00,,,40.72656,-73.83802,"(40.72656, -73.83802)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Pavement Slippery,,,,4431857,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,23:10,,,40.679638,-73.9048,"(40.679638, -73.9048)",BROADWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4432605,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,12:00,,,40.828407,-73.84392,"(40.828407, -73.84392)",BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431832,Sedan,Sedan,,, +06/23/2021,18:58,STATEN ISLAND,10304,40.63001,-74.08173,"(40.63001, -74.08173)",SAINT PAULS AVENUE,BEACH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432535,Sedan,,,, +06/28/2021,13:00,BROOKLYN,11215,40.67389,-73.990776,"(40.67389, -73.990776)",,,167 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432186,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,16:30,,,40.67828,-73.958855,"(40.67828, -73.958855)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432718,Sedan,,,, +06/10/2021,8:40,,,40.667038,-73.7682,"(40.667038, -73.7682)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4425676,Sedan,Sedan,Sedan,Sedan, +01/10/2022,14:07,BRONX,10462,40.832752,-73.844925,"(40.832752, -73.844925)",GLEASON AVENUE,ZEREGA AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4493494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,16:00,,,40.7613,-73.80952,"(40.7613, -73.80952)",156 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431914,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,19:30,BROOKLYN,11231,40.683826,-73.99128,"(40.683826, -73.99128)",,,95 BUTLER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432035,Sedan,Sedan,,, +06/28/2021,17:34,,,40.577644,-73.99688,"(40.577644, -73.99688)",WEST 30 STREET,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4432216,Sedan,Taxi,,, +06/28/2021,17:38,,,40.61785,-73.988075,"(40.61785, -73.988075)",65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432128,Sedan,,,, +06/28/2021,9:30,QUEENS,11358,40.756397,-73.804535,"(40.756397, -73.804535)",45 AVENUE,162 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4431828,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,9:00,BRONX,10467,40.856323,-73.87244,"(40.856323, -73.87244)",BRONX RIVER PARKWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4431747,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,8:14,BROOKLYN,11209,40.6304,-74.02074,"(40.6304, -74.02074)",,,553 73 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431946,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,8:20,BRONX,10472,40.84827,-73.88312,"(40.84827, -73.88312)",EAST 182 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432580,Sedan,,,, +06/28/2021,9:30,MANHATTAN,10019,40.767918,-73.985725,"(40.767918, -73.985725)",WEST 57 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432052,Sedan,Flat Rack,,, +06/28/2021,14:25,,,40.74565,-73.92485,"(40.74565, -73.92485)",43 AVENUE,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4431919,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2021,11:50,QUEENS,11105,40.774357,-73.912865,"(40.774357, -73.912865)",31 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432483,Pick-up Truck,Sedan,,, +06/13/2021,19:39,BRONX,10457,40.84465,-73.89177,"(40.84465, -73.89177)",,,1912 CROTONA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4432519,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/28/2021,19:55,BROOKLYN,11212,40.65691,-73.91395,"(40.65691, -73.91395)",,,488 EAST 98 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432336,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,18:15,MANHATTAN,10001,40.74955,-74.00654,"(40.74955, -74.00654)",WEST 24 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432555,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,18:06,,,40.81574,-73.95456,"(40.81574, -73.95456)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432842,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/17/2021,20:30,QUEENS,11103,40.765392,-73.9182,"(40.765392, -73.9182)",35 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432711,Motorcycle,Sedan,,, +06/27/2021,22:10,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY NORTH,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432831,E-Bike,,,, +06/28/2021,21:20,BROOKLYN,11234,40.621777,-73.920395,"(40.621777, -73.920395)",EAST 57 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,,,,,4431954,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,15:00,MANHATTAN,10004,40.70419,-74.01321,"(40.70419, -74.01321)",,,2 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493704,Van,,,, +06/27/2021,11:45,BRONX,10458,40.86079,-73.89229,"(40.86079, -73.89229)",,,2486 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432577,Moped,Sedan,,, +06/28/2021,12:57,,,,,,EAST TREMONT AVENUE,WESTCHESTER SQUARE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,17:00,BROOKLYN,11220,40.635868,-74.00559,"(40.635868, -74.00559)",9 AVENUE,57 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432601,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/12/2021,20:45,QUEENS,11412,40.7027,-73.75591,"(40.7027, -73.75591)",112 AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4432628,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:05,,,,,,LINDEN PLACE,WHITESTONE EXPRESSWAY,,1,0,0,0,0,0,1,0,Oversized Vehicle,,,,,4431850,Tractor Truck Diesel,,,, +06/28/2021,13:00,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",MERRICK BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4432207,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,0:00,BRONX,10473,40.82097,-73.88256,"(40.82097, -73.88256)",,,1410 STORY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4432540,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,10:36,BROOKLYN,11213,40.66469,-73.93811,"(40.66469, -73.93811)",,,810 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432140,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,9:00,MANHATTAN,10128,40.78389,-73.950294,"(40.78389, -73.950294)",3 AVENUE,EAST 94 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4431840,Bike,,,, +06/28/2021,10:35,,,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4431910,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2021,10:06,,,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432284,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,17:17,,,40.73059,-73.99242,"(40.73059, -73.99242)",EAST 8 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432251,Sedan,Sedan,,, +06/28/2021,10:59,,,40.748985,-73.979965,"(40.748985, -73.979965)",EAST 37 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4431816,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,7:00,,,,,,HUDSON BLVD WEST,WEST 35 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432556,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,7:48,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432809,Sedan,Sedan,,, +06/26/2021,12:54,,,40.69564,-73.7711,"(40.69564, -73.7711)",MURDOCK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432607,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:22,STATEN ISLAND,10308,40.55464,-74.14608,"(40.55464, -74.14608)",KATAN AVENUE,GREAVES AVENUE,,0,0,0,0,0,0,0,0,Glare,,,,,4432347,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,20:34,BRONX,10475,40.877686,-73.824936,"(40.877686, -73.824936)",,,100 CARVER LOOP,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4432663,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,17:00,BROOKLYN,11206,40.70679,-73.933716,"(40.70679, -73.933716)",BOGART STREET,INGRAHAM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432019,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,20:40,,,40.770256,-73.91586,"(40.770256, -73.91586)",33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432489,Pick-up Truck,Box Truck,,, +06/28/2021,21:23,,,40.68777,-73.98701,"(40.68777, -73.98701)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4432507,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,1:05,,,40.62491,-74.14356,"(40.62491, -74.14356)",,,1648 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4431683,Sedan,,,, +06/28/2021,18:20,BROOKLYN,11218,40.63784,-73.97942,"(40.63784, -73.97942)",,,1 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432589,Motorcycle,,,, +06/28/2021,22:00,BROOKLYN,11208,40.68857,-73.8757,"(40.68857, -73.8757)",CYPRESS HILL STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432077,Sedan,Sedan,,, +06/28/2021,19:05,BRONX,10467,40.884277,-73.86243,"(40.884277, -73.86243)",WHITE PLAINS ROAD,EAST 220 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432110,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,12:00,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432705,Sedan,,,, +06/10/2021,13:30,,,40.637745,-74.07603,"(40.637745, -74.07603)",BAY STREET,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432551,Sedan,,,, +06/18/2021,23:20,QUEENS,11364,40.74733,-73.755806,"(40.74733, -73.755806)",64 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432727,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,11:44,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",EAST 36 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431950,Sedan,Sedan,,, +06/28/2021,17:00,STATEN ISLAND,10310,40.634274,-74.12042,"(40.634274, -74.12042)",,,1138 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432294,Sedan,,,, +06/27/2021,14:30,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4432272,Sedan,Motorcycle,,, +06/28/2021,21:44,BRONX,10457,40.83933,-73.89904,"(40.83933, -73.89904)",EAST 172 STREET,FULTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4431977,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,11:35,STATEN ISLAND,10304,40.632607,-74.07812,"(40.632607, -74.07812)",,,63 CLINTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432573,FIRE,Sedan,,, +06/27/2021,22:45,BRONX,10472,40.82628,-73.87673,"(40.82628, -73.87673)",WATSON AVENUE,WARD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432678,Sedan,,,, +06/28/2021,11:42,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4432091,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/28/2021,12:43,BROOKLYN,11234,40.61743,-73.932495,"(40.61743, -73.932495)",QUENTIN ROAD,HENDRICKSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4431899,Sedan,Sedan,Sedan,, +06/28/2021,8:21,,,40.583565,-73.98759,"(40.583565, -73.98759)",BAY 52 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4431800,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,13:20,,,40.596878,-74.16226,"(40.596878, -74.16226)",,,2066 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4432197,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/28/2021,11:45,QUEENS,11432,40.704845,-73.80112,"(40.704845, -73.80112)",PARSONS BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4432324,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,20:50,QUEENS,11422,40.66343,-73.74079,"(40.66343, -73.74079)",BROOKVILLE BOULEVARD,143 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431935,Pick-up Truck,Bike,,, +06/28/2021,14:00,BROOKLYN,11203,40.651787,-73.93017,"(40.651787, -73.93017)",,,5011 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4431927,Station Wagon/Sport Utility Vehicle,Carry All,,, +06/28/2021,19:00,BROOKLYN,11228,40.620136,-74.00403,"(40.620136, -74.00403)",73 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432224,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2021,10:18,,,,,,12 AVENUE,WEST 38 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432560,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,17:49,BROOKLYN,11201,40.69901,-73.99679,"(40.69901, -73.99679)",,,160 FURMAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432782,Sedan,Sedan,,, +06/28/2021,10:50,BROOKLYN,11238,40.683266,-73.96587,"(40.683266, -73.96587)",FULTON STREET,WAVERLY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431970,Sedan,Sedan,,, +06/28/2021,12:02,,,40.794132,-73.94281,"(40.794132, -73.94281)",EAST 110 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432026,Sedan,Sedan,,, +06/26/2021,16:50,,,,,,HYLAN BOULEVARD,NARROWS ROAD SOUTH,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,4:07,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432441,Sedan,,,, +06/28/2021,9:03,QUEENS,11372,40.75065,-73.87582,"(40.75065, -73.87582)",,,91-05 37 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432654,Box Truck,,,, +06/28/2021,0:15,BROOKLYN,11208,40.68675,-73.867386,"(40.68675, -73.867386)",,,589 RIDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432073,Sedan,Sedan,,, +06/21/2021,2:30,,,40.67612,-73.936005,"(40.67612, -73.936005)",DEAN STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,17:48,BROOKLYN,11236,40.635757,-73.902336,"(40.635757, -73.902336)",,,1138 EAST 89 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4431959,Sedan,,,, +06/11/2021,21:54,MANHATTAN,10002,40.723717,-73.99275,"(40.723717, -73.99275)",,,275 BOWERY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432620,Box Truck,PK,,, +06/28/2021,14:00,BRONX,10459,40.821003,-73.89787,"(40.821003, -73.89787)",EAST 163 STREET,ROGERS PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432373,Ambulance,,,, +06/28/2021,15:23,,,40.742676,-73.73361,"(40.742676, -73.73361)",GRAND CENTRAL PARKWAY,WINCHESTER BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4432414,Sedan,Sedan,Sedan,, +06/17/2021,15:30,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432753,Sedan,Tractor Truck Diesel,,, +06/28/2021,11:50,,,40.579803,-73.97184,"(40.579803, -73.97184)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432465,Sedan,,,, +06/28/2021,18:30,QUEENS,11419,40.68246,-73.830025,"(40.68246, -73.830025)",111 STREET,107 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431989,Bike,,,, +12/30/2021,19:16,,,40.771667,-73.9867,"(40.771667, -73.9867)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494056,nys ambula,Taxi,,, +01/10/2022,15:40,BROOKLYN,11231,40.674114,-73.998085,"(40.674114, -73.998085)",GARNET STREET,SMITH STREET,,1,0,1,0,0,0,0,0,,,,,,4493889,,,,, +01/10/2022,6:59,QUEENS,11432,40.709473,-73.805016,"(40.709473, -73.805016)",PARSONS BOULEVARD,86 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493587,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,8:00,BROOKLYN,11206,40.70025,-73.93774,"(40.70025, -73.93774)",BEAVER STREET,PARK STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493774,Sedan,Bike,,, +01/10/2022,14:00,QUEENS,11428,40.719334,-73.74952,"(40.719334, -73.74952)",,,91-27 HOLLIS COURT BOULEVARD,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4493946,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,11:00,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493818,Ambulance,Pick-up Truck,,, +01/10/2022,17:50,BRONX,10461,40.85182,-73.857,"(40.85182, -73.857)",,,1954 HONE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493627,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/05/2022,15:45,STATEN ISLAND,10304,40.609276,-74.08447,"(40.609276, -74.08447)",,,322 HANOVER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494022,Sedan,Sedan,Sedan,, +01/10/2022,21:15,BROOKLYN,11209,40.6219,-74.02874,"(40.6219, -74.02874)",,,8702 4 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4493577,Sedan,Sedan,Sedan,, +01/05/2022,16:20,,,40.70097,-73.81423,"(40.70097, -73.81423)",90 AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4494046,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,15:55,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",TROUTMAN STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4493567,Carry All,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,5:50,,,40.74901,-73.83465,"(40.74901, -73.83465)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4493314,Sedan,,,, +01/10/2022,10:00,BROOKLYN,11207,40.67007,-73.89927,"(40.67007, -73.89927)",WILLIAMS AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494102,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,10:00,,,40.711945,-73.82303,"(40.711945, -73.82303)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4493470,Sedan,Sedan,,, +01/10/2022,14:26,,,40.825504,-73.886086,"(40.825504, -73.886086)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493603,Flat Bed,,,, +01/06/2022,23:00,,,40.69979,-73.950096,"(40.69979, -73.950096)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493996,Sedan,,,, +01/10/2022,15:15,BRONX,10458,40.87305,-73.882965,"(40.87305, -73.882965)",EAST 203 STREET,EAST MOSHOLU PARKWAY SOUTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493610,Sedan,Pick-up Truck,,, +01/10/2022,12:50,MANHATTAN,10038,40.70993,-74.00716,"(40.70993, -74.00716)",,,119 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493700,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,16:00,BROOKLYN,11225,40.657696,-73.95279,"(40.657696, -73.95279)",,,215 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494005,Sedan,,,, +01/10/2022,18:30,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4493593,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,16:36,QUEENS,11419,40.689236,-73.82852,"(40.689236, -73.82852)",116 STREET,101 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4493552,Sedan,,,, +01/09/2022,22:20,QUEENS,11385,40.699963,-73.90752,"(40.699963, -73.90752)",,,55-28 MYRTLE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494068,E-Bike,Sedan,,, +01/10/2022,15:30,,,40.849995,-73.93866,"(40.849995, -73.93866)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4493752,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,19:25,,,40.84231,-73.93515,"(40.84231, -73.93515)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4493979,Sedan,,,, +01/10/2022,16:40,,,40.639256,-73.968796,"(40.639256, -73.968796)",CORTELYOU ROAD,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493618,Station Wagon/Sport Utility Vehicle,Bus,,, +01/10/2022,10:36,BROOKLYN,11215,40.67135,-73.97332,"(40.67135, -73.97332)",,,24 MONTGOMERY PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Oversized Vehicle,,,4493664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +01/10/2022,11:15,BROOKLYN,11217,,,,,,283 WYCKOFF STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4494030,Garbage or Refuse,Sedan,,, +01/10/2022,23:55,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4493675,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/03/2022,9:40,QUEENS,11369,40.76199,-73.86934,"(40.76199, -73.86934)",100 STREET,ASTORIA BOULEVARD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4494033,Sedan,,,, +01/10/2022,1:43,,,40.70722,-73.78957,"(40.70722, -73.78957)",170 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493300,Sedan,Bus,,, +01/10/2022,14:35,,,40.668964,-73.95059,"(40.668964, -73.95059)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494078,Box Truck,Sedan,,, +01/10/2022,12:23,,,40.70118,-73.98778,"(40.70118, -73.98778)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493575,Sedan,Sedan,,, +01/10/2022,15:10,BROOKLYN,11234,40.63189,-73.928276,"(40.63189, -73.928276)",,,1656 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493798,Sedan,Sedan,,, +01/10/2022,0:00,QUEENS,11423,40.718136,-73.75726,"(40.718136, -73.75726)",FRANCIS LEWIS BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,21:13,,,40.832558,-73.857346,"(40.832558, -73.857346)",NEWBOLD AVENUE,CROSS BRONX EXPRESSWAY,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4493785,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,16:46,BROOKLYN,11216,40.680088,-73.94398,"(40.680088, -73.94398)",FULTON STREET,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493997,Sedan,Sedan,,, +01/10/2022,23:00,MANHATTAN,10028,40.779762,-73.94437,"(40.779762, -73.94437)",EAST 92 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493626,Sedan,,,, +01/10/2022,0:00,,,40.645397,-73.91893,"(40.645397, -73.91893)",BRANTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493647,Sedan,Sedan,,, +01/08/2022,23:30,BROOKLYN,11237,40.69969,-73.91557,"(40.69969, -73.91557)",MENAHAN STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493962,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,11:20,,,40.57754,-73.99789,"(40.57754, -73.99789)",NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493705,Station Wagon/Sport Utility Vehicle,Bike,,, +01/10/2022,8:05,,,40.60343,-74.001854,"(40.60343, -74.001854)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4493481,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,14:00,BROOKLYN,11208,40.663887,-73.87827,"(40.663887, -73.87827)",,,2300 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,9:00,,,40.74502,-73.715775,"(40.74502, -73.715775)",255 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493385,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/10/2022,14:50,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493719,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/10/2022,8:30,,,,,,SHEA STADIUM,NORTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493599,Sedan,Pick-up Truck,,, +01/10/2022,9:25,,,40.71407,-73.99751,"(40.71407, -73.99751)",OLIVER STREET,CHATHAM SQUARE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493486,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,15:40,MANHATTAN,10025,40.797558,-73.96684,"(40.797558, -73.96684)",,,140 WEST 102 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493553,Sedan,,,, +01/09/2022,19:20,MANHATTAN,10032,40.84231,-73.93515,"(40.84231, -73.93515)",AMSTERDAM AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4493980,Sedan,E-Scooter,,, +01/10/2022,17:00,STATEN ISLAND,10304,40.62198,-74.07826,"(40.62198, -74.07826)",TOMPKINS AVENUE,HILL STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4493857,Sedan,,,, +01/10/2022,19:00,BROOKLYN,11231,40.67769,-74.00041,"(40.67769, -74.00041)",LUQUER STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493890,Sedan,,,, +01/10/2022,7:32,,,40.79293,-73.94791,"(40.79293, -73.94791)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493382,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,9:00,,,40.557453,-74.20417,"(40.557453, -74.20417)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4493435,Sedan,,,, +01/10/2022,13:35,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4493750,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,7:20,MANHATTAN,10019,40.765934,-73.976875,"(40.765934, -73.976875)",,,110 CENTRAL PARK SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,18:23,,,40.719437,-73.94063,"(40.719437, -73.94063)",KINGSLAND AVENUE,RICHARDSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493560,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,8:50,QUEENS,11355,40.75765,-73.825195,"(40.75765, -73.825195)",SANFORD AVENUE,UNION STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493846,Sedan,,,, +01/10/2022,17:33,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493703,Bus,,,, +01/10/2022,4:33,QUEENS,11416,40.689095,-73.84047,"(40.689095, -73.84047)",95 AVENUE,104 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,,4493475,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/19/2021,19:24,,,40.70576,-73.80167,"(40.70576, -73.80167)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,20:30,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4493604,Box Truck,,,, +01/10/2022,7:56,QUEENS,11367,40.717434,-73.82374,"(40.717434, -73.82374)",UNION TURNPIKE,138 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4493588,Bus,Station Wagon/Sport Utility Vehicle,,, +12/18/2021,21:00,,,40.680855,-73.93855,"(40.680855, -73.93855)",DECATUR STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493990,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,17:30,MANHATTAN,10002,40.71749,-73.99171,"(40.71749, -73.99171)",,,303 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494020,Tanker,Sedan,,, +01/10/2022,13:50,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493611,Sedan,,,, +01/10/2022,13:08,BROOKLYN,11206,40.702343,-73.94239,"(40.702343, -73.94239)",GRAHAM AVENUE,COOK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493471,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,7:10,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493419,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,22:30,QUEENS,11422,40.669567,-73.73604,"(40.669567, -73.73604)",,,240-03 137 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493757,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,9:00,QUEENS,11429,40.708267,-73.73032,"(40.708267, -73.73032)",,,225-20 107 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493945,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Sedan,, +01/10/2022,14:15,,,40.824837,-73.87053,"(40.824837, -73.87053)",FTELEY AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,21:23,BRONX,10467,40.858124,-73.86813,"(40.858124, -73.86813)",,,2220 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493628,Sedan,,,, +01/10/2022,20:15,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4493813,Sedan,,,, +01/10/2022,16:36,QUEENS,11436,40.66857,-73.798355,"(40.66857, -73.798355)",140 STREET,134 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4493697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/10/2022,8:45,QUEENS,11411,40.702957,-73.74332,"(40.702957, -73.74332)",212 STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4493397,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,2:04,MANHATTAN,10065,40.762104,-73.960144,"(40.762104, -73.960144)",1 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Traffic Control Disregarded,,,,4493331,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,18:36,BRONX,10469,40.88219,-73.85066,"(40.88219, -73.85066)",LACONIA AVENUE,EAST 222 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493563,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,19:00,BROOKLYN,11210,40.61864,-73.945335,"(40.61864, -73.945335)",,,2699 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493640,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,11:00,QUEENS,11422,40.664654,-73.732376,"(40.664654, -73.732376)",247 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,5:30,,,40.694714,-73.93122,"(40.694714, -73.93122)",REID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494055,Sedan,,,, +01/12/2021,16:26,BROOKLYN,11207,40.675705,-73.89747,"(40.675705, -73.89747)",,,2625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4494105,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,14:40,QUEENS,11413,40.68422,-73.75104,"(40.68422, -73.75104)",193 STREET,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4493995,Firetruck,Sedan,,, +01/10/2022,15:15,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493578,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,17:30,QUEENS,11374,40.726322,-73.85687,"(40.726322, -73.85687)",66 AVENUE,BOOTH STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494011,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,11:20,QUEENS,11369,40.76121,-73.86034,"(40.76121, -73.86034)",,,110-16 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4493722,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/10/2022,7:15,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4493450,Sedan,,,, +01/10/2022,3:32,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4493802,Sedan,,,, +01/10/2022,15:10,BROOKLYN,11235,40.581345,-73.96283,"(40.581345, -73.96283)",BRIGHTON 6 STREET,NEPTUNE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4493707,Sedan,,,, +01/10/2022,6:56,BROOKLYN,11218,40.647297,-73.9803,"(40.647297, -73.9803)",CATON AVENUE,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,9:10,MANHATTAN,10033,40.851433,-73.93509,"(40.851433, -73.93509)",WEST 183 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493487,Station Wagon/Sport Utility Vehicle,Dump,,, +01/10/2022,18:45,BROOKLYN,11209,40.628918,-74.0249,"(40.628918, -74.0249)",,,424 77 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493950,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,8:54,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493922,,,,, +01/10/2022,6:40,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493386,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,3:00,BROOKLYN,11238,40.68375,-73.95899,"(40.68375, -73.95899)",MADISON STREET,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493998,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,11:35,BROOKLYN,11238,40.684986,-73.966225,"(40.684986, -73.966225)",,,444 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,22:14,QUEENS,11427,40.722996,-73.75788,"(40.722996, -73.75788)",,,87-15 209 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494063,Sedan,,,, +01/08/2022,23:06,BROOKLYN,11213,40.66655,-73.93927,"(40.66655, -73.93927)",,,1466 CARROLL STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4494080,Sedan,,,, +01/10/2022,3:15,QUEENS,11433,40.699757,-73.79359,"(40.699757, -73.79359)",BREWER BOULEVARD,SOUTH ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4493301,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,15:00,,,40.85378,-73.887566,"(40.85378, -73.887566)",HUGHES AVENUE,CRESCENT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493654,Sedan,,,, +01/10/2022,12:30,MANHATTAN,10019,40.763023,-73.97815,"(40.763023, -73.97815)",WEST 55 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493686,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,18:45,,,,,,16 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493572,Sedan,,,, +12/17/2021,19:51,BRONX,10458,40.861023,-73.89205,"(40.861023, -73.89205)",,,2500 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493966,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,18:30,MANHATTAN,10128,40.781414,-73.946075,"(40.781414, -73.946075)",,,1797 1 AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4493598,Taxi,Sedan,,, +01/10/2022,8:20,BROOKLYN,11228,40.625774,-74.016495,"(40.625774, -74.016495)",BAY RIDGE PARKWAY,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4493670,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,13:00,QUEENS,11355,40.753914,-73.83015,"(40.753914, -73.83015)",POPLE AVENUE,SAULL STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4493480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,11:20,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,,,,,4432408,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,13:00,BROOKLYN,11238,40.6886045,-73.9630593,"(40.6886045, -73.9630593)",,,317 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4469053,Sedan,Sedan,,, +01/10/2022,0:17,BROOKLYN,11233,40.67921,-73.91375,"(40.67921, -73.91375)",BOYLAND STREET,HULL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493381,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,14:20,QUEENS,11432,40.704845,-73.80112,"(40.704845, -73.80112)",PARSONS BOULEVARD,90 AVENUE,,2,0,2,0,0,0,0,0,Turning Improperly,,,,,4493790,Sedan,,,, +01/10/2022,15:00,MANHATTAN,10032,40.84092,-73.93751,"(40.84092, -73.93751)",,,525 WEST 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493981,Sedan,Sedan,,, +01/10/2022,14:30,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4493554,PK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/10/2022,14:45,,,40.738464,-73.808624,"(40.738464, -73.808624)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493527,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/10/2022,11:30,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493868,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,12:10,QUEENS,11420,40.677048,-73.80547,"(40.677048, -73.80547)",FOCH BOULEVARD,134 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4493591,Sedan,,,, +01/10/2022,21:00,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493625,Sedan,Sedan,,, +01/09/2021,19:45,QUEENS,11372,40.75149,-73.88748,"(40.75149, -73.88748)",79 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4494034,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,17:19,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4493646,Sedan,Bus,,, +01/10/2022,21:28,,,40.716156,-73.728775,"(40.716156, -73.728775)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493579,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/10/2022,19:40,MANHATTAN,10026,40.803116,-73.95633,"(40.803116, -73.95633)",WEST 114 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Outside Car Distraction,Unspecified,,,,4494015,Station Wagon/Sport Utility Vehicle,Bike,,, +12/24/2021,0:00,BRONX,10474,40.812096,-73.88334,"(40.812096, -73.88334)",,,565 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494027,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,10:37,BROOKLYN,11213,40.67888,-73.93561,"(40.67888, -73.93561)",TROY AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494052,Sedan,Sedan,,, +01/10/2022,7:36,QUEENS,11691,40.602432,-73.76041,"(40.602432, -73.76041)",DICKENS STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493607,Bus,Sedan,,, +01/28/2022,18:00,BRONX,10475,40.87805,-73.83482,"(40.87805, -73.83482)",PALMER AVENUE,GIVAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504876,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,0:40,BROOKLYN,11211,40.710262,-73.953865,"(40.710262, -73.953865)",KEAP STREET,SOUTH 2 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4504263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,7:25,,,40.81328,-73.89749,"(40.81328, -73.89749)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4504302,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/20/2022,19:20,,,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504721,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,20:06,QUEENS,11412,40.704544,-73.751755,"(40.704544, -73.751755)",205 STREET,111 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4504689,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/14/2022,16:54,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4504697,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,11:30,QUEENS,11361,40.760998,-73.771675,"(40.760998, -73.771675)",212 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504121,Sedan,,,, +02/20/2022,15:15,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4504457,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,17:35,QUEENS,11364,40.75157,-73.751396,"(40.75157, -73.751396)",CLOVERDALE BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,16:30,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4504593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,9:13,MANHATTAN,10032,40.841267,-73.94025,"(40.841267, -73.94025)",,,600 WEST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504109,Sedan,,,, +06/15/2022,10:00,,,,,,WILLETS POINT BOULEVARD,25 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4537614,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/24/2022,0:35,BRONX,10459,40.82255,-73.90042,"(40.82255, -73.90042)",,,948 PROSPECT AVENUE,1,0,1,0,0,0,0,0,,,,,,4541911,,,,, +06/26/2022,15:40,BRONX,10459,40.824654,-73.89194,"(40.824654, -73.89194)",WESTCHESTER AVENUE,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4542713,,,,, +06/28/2022,19:11,QUEENS,11691,40.607147,-73.749596,"(40.607147, -73.749596)",NEILSON STREET,CENTRAL AVENUE,,2,0,2,0,0,0,0,0,Driver Inexperience,,,,,4543237,Sedan,,,, +07/04/2022,16:55,,,40.69578,-73.917076,"(40.69578, -73.917076)",LINDEN STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4543451,Sedan,,,, +06/27/2022,12:17,MANHATTAN,10018,40.757065,-74.00106,"(40.757065, -74.00106)",WEST 36 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543819,Taxi,Sedan,,, +07/04/2022,9:58,,,40.68488,-73.92311,"(40.68488, -73.92311)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543645,Sedan,Bike,,, +10/15/2021,16:59,BRONX,10457,40.8503081,-73.8864328,"(40.8503081, -73.8864328)",EAST 182 STREET,CROTONA AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469461,Bike,Sedan,,, +07/03/2022,21:55,BROOKLYN,11234,40.606457,-73.92518,"(40.606457, -73.92518)",,,2263 EAST 38 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4544009,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/29/2022,13:31,BROOKLYN,11213,40.671104,-73.92811,"(40.671104, -73.92811)",,,215 ROCHESTER AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543979,Sedan,,,, +07/04/2022,0:30,,,40.715958,-73.81275,"(40.715958, -73.81275)",GRAND CENTRAL PKWY,,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4543106,Sedan,Sedan,Sedan,Sedan, +07/04/2022,6:20,QUEENS,11370,40.75651,-73.89692,"(40.75651, -73.89692)",70 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4543563,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/28/2022,15:10,,,40.759018,-73.855156,"(40.759018, -73.855156)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543864,Sedan,Sedan,,, +07/04/2022,23:56,,,40.683804,-73.833534,"(40.683804, -73.833534)",LIBERTY AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543708,Taxi,Sedan,,, +06/29/2022,9:52,BRONX,10459,40.82517,-73.896866,"(40.82517, -73.896866)",,,1073 INTERVALE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543949,Sedan,Bike,,, +07/04/2022,22:15,QUEENS,11691,40.59552,-73.75855,"(40.59552, -73.75855)",,,25-11 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544091,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,0:08,MANHATTAN,10128,40.781387,-73.95213,"(40.781387, -73.95213)",EAST 90 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543160,Sedan,Sedan,,, +07/04/2022,23:45,MANHATTAN,10009,40.72267,-73.98297,"(40.72267, -73.98297)",EAST 3 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,Unspecified,,4543740,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/24/2022,16:30,QUEENS,11691,,,,,,21-22 CORNAGA AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4544067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,19:10,BROOKLYN,11235,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543924,Pick-up Truck,Sedan,,, +07/04/2022,6:37,,,40.675507,-74.00075,"(40.675507, -74.00075)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,,,,4543209,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,16:06,QUEENS,11419,40.681923,-73.831924,"(40.681923, -73.831924)",107 AVENUE,109 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4543418,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +06/27/2022,11:20,MANHATTAN,10014,40.734577,-74.00522,"(40.734577, -74.00522)",,,102 CHARLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543824,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2022,23:00,MANHATTAN,10030,40.816376,-73.948364,"(40.816376, -73.948364)",SAINT NICHOLAS AVENUE,WEST 134 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Unspecified,,,4543842,Sedan,Sedan,,, +05/12/2022,15:00,QUEENS,11377,40.73566,-73.9019,"(40.73566, -73.9019)",64 STREET,51 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543869,SCHOOL BUS,Station Wagon/Sport Utility Vehicle,,, +06/22/2022,5:50,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543898,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,16:18,BRONX,10460,40.837368,-73.88777,"(40.837368, -73.88777)",SOUTHERN BOULEVARD,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543376,Sedan,moped,,, +07/04/2022,12:24,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,MORRIS AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Other Vehicular,,,,4543322,Sedan,Motorcycle,,, +07/04/2022,17:00,BROOKLYN,11201,40.689583,-73.9974,"(40.689583, -73.9974)",,,83 AMITY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543359,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,9:05,QUEENS,11368,40.73968,-73.857315,"(40.73968, -73.857315)",102 STREET,MARTENSE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543328,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2022,4:43,MANHATTAN,10027,40.80867,-73.95763,"(40.80867, -73.95763)",MORNINGSIDE DRIVE,WEST 120 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4544036,Bike,Sedan,,, +07/04/2022,4:00,QUEENS,11417,40.684483,-73.834816,"(40.684483, -73.834816)",,,103-31 107 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4543409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2022,5:45,BROOKLYN,11234,40.61729,-73.92773,"(40.61729, -73.92773)",,,1786 EAST 49 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543280,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van,, +04/07/2022,17:26,,,,,,2461 Nostrand Avenue,Avenue K,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517308,Sedan,E-Bike,,, +12/11/2021,11:58,MANHATTAN,10031,40.82052,-73.956055,"(40.82052, -73.956055)",,,629 WEST 135 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485393,Sedan,Sedan,,, +12/03/2021,13:38,BRONX,10472,40.82842,-73.86068,"(40.82842, -73.86068)",WHITE PLAINS ROAD,WATSON AVENUE,,0,0,0,0,0,0,0,0,Texting,Unsafe Lane Changing,,,,4486102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,8:45,,,,,,HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486151,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,8:41,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4486003,Sedan,,,, +12/11/2021,1:52,,,40.70996,-73.989334,"(40.70996, -73.989334)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486211,Sedan,Sedan,,, +12/11/2021,22:09,BROOKLYN,11219,40.626183,-73.994156,"(40.626183, -73.994156)",15 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485634,Station Wagon/Sport Utility Vehicle,,,, +12/07/2021,9:55,,,40.721115,-73.80551,"(40.721115, -73.80551)",UNION TURNPIKE,162 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486043,Sedan,,,, +12/07/2021,8:30,,,,,,,,1972 0CEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486048,Sedan,,,, +12/11/2021,2:00,,,40.659355,-73.9992,"(40.659355, -73.9992)",27 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4485307,Sedan,Pick-up Truck,,, +12/05/2021,0:00,,,40.831684,-73.85562,"(40.831684, -73.85562)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486132,Sedan,Sedan,,, +12/11/2021,14:00,QUEENS,11368,40.749454,-73.85474,"(40.749454, -73.85474)",,,43-05 111 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4485688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/11/2021,21:06,QUEENS,11385,40.70318,-73.86058,"(40.70318, -73.86058)",,,87-17 MYRTLE AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4485719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,18:13,QUEENS,11368,40.74159,-73.86186,"(40.74159, -73.86186)",99 STREET,CHRISTIE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486291,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,23:05,BROOKLYN,11208,40.67552,-73.8802,"(40.67552, -73.8802)",GLENMORE AVENUE,BERRIMAN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486093,,,,, +12/11/2021,13:00,BROOKLYN,11235,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,BRIGHTON BEACH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485544,Sedan,,,, +12/10/2021,23:55,MANHATTAN,10026,40.80186,-73.949295,"(40.80186, -73.949295)",,,40 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485980,Sedan,Sedan,Sedan,, +10/11/2021,19:12,BROOKLYN,11220,40.6365472,-74.0286584,"(40.6365472, -74.0286584)",RIDGE BOULEVARD,BAY RIDGE AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4466238,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,8:46,MANHATTAN,10029,40.796795,-73.94718,"(40.796795, -73.94718)",EAST 111 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4485596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/07/2021,7:00,,,40.7854284,-73.9839899,"(40.7854284, -73.9839899)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unsafe Lane Changing,,,4469609,Sedan,Sedan,,, +12/10/2021,14:30,BRONX,10473,40.823086,-73.856186,"(40.823086, -73.856186)",,,1985 TURNBULL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486115,Station Wagon/Sport Utility Vehicle,,,, +10/02/2021,15:32,MANHATTAN,10023,40.7784761,-73.9854489,"(40.7784761, -73.9854489)",WEST END AVENUE,WEST 70 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469613,Station Wagon/Sport Utility Vehicle,MOPED,,, +10/15/2021,15:30,,,40.60965,-73.897371,"(40.60965, -73.897371)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Driver Inattention/Distraction,,,,4469620,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/11/2021,23:30,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486252,Sedan,,,, +12/11/2021,20:43,BROOKLYN,11225,40.661972,-73.94401,"(40.661972, -73.94401)",,,570 EAST NEW YORK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4485704,Sedan,,,, +10/12/2021,16:25,,,40.8102194,-73.9020722,"(40.8102194, -73.9020722)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,21:20,MANHATTAN,10025,40.80148,-73.96786,"(40.80148, -73.96786)",,,2760 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485449,Bus,Bike,,, +12/11/2021,0:14,QUEENS,11104,40.741188,-73.92383,"(40.741188, -73.92383)",,,47-21 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485371,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,4:30,,,40.69684,-73.98707,"(40.69684, -73.98707)",JAY STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485837,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,16:00,,,40.84196,-73.915306,"(40.84196, -73.915306)",TOWNSEND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543896,Sedan,,,, +07/04/2022,23:00,,,40.84453,-73.901764,"(40.84453, -73.901764)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4543689,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,20:00,,,40.671997,-73.87742,"(40.671997, -73.87742)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543779,Sedan,Sedan,,, +06/28/2022,13:50,,,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543846,Box Truck,Sedan,,, +07/02/2022,15:57,BRONX,10462,40.837063,-73.851906,"(40.837063, -73.851906)",,,2223 MANNING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543905,Sedan,,,, +07/04/2022,8:45,,,,,,VICTORY BOULEVARD,KING EXPRESSWAY,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4543302,Motorcycle,,,, +07/04/2022,19:05,BRONX,10465,40.826797,-73.82237,"(40.826797, -73.82237)",EAST TREMONT AVENUE,DILL PLACE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4543381,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,9:55,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543600,Box Truck,Sedan,,, +07/02/2022,16:00,MANHATTAN,10031,40.828445,-73.94155,"(40.828445, -73.94155)",WEST 152 STREET,SAINT NICHOLAS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544108,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,7:50,MANHATTAN,10039,40.82519,-73.937675,"(40.82519, -73.937675)",,,225 WEST 150 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543841,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,5:20,,,,,,WESTCHESTER AVENUE,SHERIDAN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543969,Sedan,,,, +06/19/2022,3:45,BROOKLYN,11217,40.684856,-73.97805,"(40.684856, -73.97805)",FLATBUSH AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4541268,Sedan,Sedan,,, +07/04/2022,2:35,BROOKLYN,11206,40.699913,-73.95014,"(40.699913, -73.95014)",UNION AVENUE,GERRY STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4543419,Sedan,Sedan,Sedan,, +07/04/2022,23:25,QUEENS,11422,40.672787,-73.72928,"(40.672787, -73.72928)",245 STREET,133 DRIVE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4543493,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,3:01,BROOKLYN,11206,40.71106,-73.942116,"(40.71106, -73.942116)",HUMBOLDT STREET,MAUJER STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,Unspecified,,,4544043,Sedan,Sedan,,, +07/04/2022,13:30,QUEENS,11411,40.688934,-73.73225,"(40.688934, -73.73225)",231 STREET,119 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543341,Sedan,Sedan,,, +06/25/2022,14:15,,,40.830727,-73.83756,"(40.830727, -73.83756)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4543947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,19:45,STATEN ISLAND,10306,40.56173,-74.10672,"(40.56173, -74.10672)",,,215 MILTON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543855,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,17:45,,,,,,Cross Bay Blvd,Jamaica bay wild life,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543878,Bus,Sedan,,, +06/28/2022,22:05,BRONX,10463,40.882416,-73.89933,"(40.882416, -73.89933)",,,3600 BAILEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543940,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,16:47,MANHATTAN,10016,40.747295,-73.97405,"(40.747295, -73.97405)",EAST 38 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544024,Taxi,Bike,,, +07/04/2022,18:09,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543662,Sedan,Sedan,Taxi,, +07/04/2022,14:18,BROOKLYN,11233,40.67339,-73.91678,"(40.67339, -73.91678)",SARATOGA AVENUE,SAINT MARKS AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543983,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/04/2022,19:40,BROOKLYN,11237,40.70324,-73.91439,"(40.70324, -73.91439)",SAINT NICHOLAS AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543744,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,6:40,STATEN ISLAND,10301,40.638844,-74.08471,"(40.638844, -74.08471)",WINTER AVENUE,BISMARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543525,Sedan,Sedan,,, +07/02/2022,17:17,MANHATTAN,10028,40.779827,-73.956406,"(40.779827, -73.956406)",,,114 EAST 86 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543832,Sedan,Moped,,, +07/04/2022,1:15,BRONX,10467,40.889156,-73.87869,"(40.889156, -73.87869)",,,3545 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544097,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,17:30,QUEENS,11355,40.760372,-73.815094,"(40.760372, -73.815094)",149 STREET,SANFORD AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543433,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/25/2022,22:50,MANHATTAN,10026,40.800827,-73.952835,"(40.800827, -73.952835)",,,133 WEST 113 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543962,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,5:00,QUEENS,11430,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4543422,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2022,17:40,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543806,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,19:47,,,40.703983,-73.77435,"(40.703983, -73.77435)",ARCADE AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4543568,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,17:30,,,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4543807,Sedan,Motorcycle,,, +07/04/2022,17:20,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",LEFFERTS BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Following Too Closely,Unspecified,,,4543709,Sedan,,,, +07/04/2022,0:10,BROOKLYN,11232,40.64727,-73.99731,"(40.64727, -73.99731)",39 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543997,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,0:20,STATEN ISLAND,10305,40.60026,-74.07499,"(40.60026, -74.07499)",WEST FINGERBOARD ROAD,BRIARCLIFF ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543113,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,23:34,BROOKLYN,11211,40.711323,-73.95464,"(40.711323, -73.95464)",RODNEY STREET,SOUTH 1 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2022,11:35,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4543475,Tractor Truck Diesel,Bike,,, +06/29/2022,15:37,BRONX,10452,40.837997,-73.921036,"(40.837997, -73.921036)",WEST 169 STREET,INWOOD AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4543933,ELECTRIC S,Sedan,,, +07/04/2022,23:54,BROOKLYN,11220,40.64591,-74.01317,"(40.64591, -74.01317)",51 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4543977,,,,, +07/04/2022,5:50,,,40.67151,-73.76455,"(40.67151, -73.76455)",140 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543169,Pick-up Truck,,,, +06/06/2022,12:00,BRONX,10466,40.890232,-73.83979,"(40.890232, -73.83979)",,,3984 MURDOCK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544008,Sedan,Sedan,,, +07/04/2022,18:00,,,40.744038,-73.81804,"(40.744038, -73.81804)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Glare,Glare,,,,4543430,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,10:56,QUEENS,11417,40.681988,-73.83698,"(40.681988, -73.83698)",104 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,23:50,QUEENS,11436,40.67868,-73.799706,"(40.67868, -73.799706)",142 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4544068,Sedan,Sedan,Sedan,Sedan,Sedan +07/04/2022,12:15,BROOKLYN,11215,40.672768,-73.98672,"(40.672768, -73.98672)",4 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543533,Station Wagon/Sport Utility Vehicle,,,, +06/21/2022,12:27,BRONX,10471,,,,JEROME AVENUE,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543923,Sedan,Sedan,,, +06/28/2022,14:32,MANHATTAN,10026,,,,,,307 WEST 118 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543960,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2022,12:00,BROOKLYN,11233,40.6809,-73.931656,"(40.6809, -73.931656)",BAINBRIDGE STREET,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543647,Sedan,,,, +07/01/2022,18:20,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",UNION AVENUE,GRAND STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544039,Sedan,Station Wagon/Sport Utility Vehicle,E-Scooter,, +07/04/2022,16:54,,,40.77299,-73.982086,"(40.77299, -73.982086)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543336,Taxi,Bus,,, +07/04/2022,8:30,BRONX,10462,40.83272,-73.85621,"(40.83272, -73.85621)",,,2035 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543370,Sedan,,,, +07/04/2022,14:30,,,40.565643,-74.10003,"(40.565643, -74.10003)",NEW DORP LANE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543850,Station Wagon/Sport Utility Vehicle,,,, +06/07/2022,20:45,BRONX,10475,40.882538,-73.82697,"(40.882538, -73.82697)",TILLOTSON AVENUE,MERRITT AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Tinted Windows,,,,4543909,Sedan,Sedan,,, +07/02/2022,23:44,,,,,,BEACH 56 PLACE,BOARDWALK,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544090,PK,Sedan,,, +07/04/2022,12:48,BROOKLYN,11226,40.65149,-73.95382,"(40.65149, -73.95382)",,,159 MARTENSE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543304,Sedan,Sedan,Sedan,, +06/22/2022,20:35,MANHATTAN,10018,40.758976,-73.99394,"(40.758976, -73.99394)",WEST 42 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543818,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,2:30,STATEN ISLAND,10306,40.576023,-74.13615,"(40.576023, -74.13615)",,,247 NUGENT STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4543856,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,19:20,,,40.669094,-73.89711,"(40.669094, -73.89711)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543351,Sedan,Sedan,,, +07/04/2022,2:12,BROOKLYN,11226,40.648506,-73.9474,"(40.648506, -73.9474)",,,87 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543574,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,20:58,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543971,Sedan,E-Bike,,, +07/03/2022,20:22,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544015,Sedan,Sedan,,, +07/01/2022,19:30,QUEENS,11369,40.760612,-73.872894,"(40.760612, -73.872894)",31 AVENUE,96 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543916,E-Bike,Sedan,,, +07/04/2022,13:34,MANHATTAN,10009,40.72826,-73.984795,"(40.72826, -73.984795)",,,150 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4543443,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/04/2022,19:56,BROOKLYN,11201,40.69056,-73.98511,"(40.69056, -73.98511)",FULTON STREET,HOYT STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543630,E-Bike,Sedan,,, +07/02/2022,20:40,MANHATTAN,10012,40.726933,-73.99992,"(40.726933, -73.99992)",WEST HOUSTON STREET,LAGUARDIA PLACE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4544112,Taxi,Bike,,, +07/01/2022,2:45,BRONX,10459,40.823177,-73.88996,"(40.823177, -73.88996)",,,979 ALDUS STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4543965,,,,, +06/29/2022,22:15,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4543845,Taxi,Sedan,,, +07/04/2022,2:55,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",116 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543182,Sedan,,,, +07/02/2022,18:52,,,,,,PELHAM PARKWAY,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543904,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,3:10,,,40.6845,-73.81428,"(40.6845, -73.81428)",128 STREET,109 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4543410,Sedan,Sedan,,, +07/04/2022,14:40,,,,,,ASTORIA BOULEVARD,49 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4543863,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2022,19:40,MANHATTAN,10035,40.806644,-73.9407,"(40.806644, -73.9407)",,,29 EAST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543822,Sedan,Sedan,,, +07/04/2022,23:30,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543687,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,12:02,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4544031,Sedan,Sedan,Sedan,, +07/04/2022,13:45,BROOKLYN,11207,40.662563,-73.89146,"(40.662563, -73.89146)",VERMONT STREET,NEW LOTS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4543778,Sedan,,,, +06/30/2022,10:20,BRONX,10459,40.819477,-73.89987,"(40.819477, -73.89987)",HEWITT PLACE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543966,Sedan,,,, +07/04/2022,14:58,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543486,E-Bike,Sedan,,, +06/02/2022,18:09,BRONX,10467,40.8585,-73.86783,"(40.8585, -73.86783)",BOSTON ROAD,THWAITES PLACE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4543910,Sedan,E-Scooter,,, +07/04/2022,3:20,BROOKLYN,11224,40.57557,-73.981224,"(40.57557, -73.981224)",SURF AVENUE,STILLWELL AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4543941,,,,, +07/04/2022,20:50,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",EAST 135 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543629,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +06/29/2022,19:29,BRONX,10457,40.844715,-73.91228,"(40.844715, -73.91228)",WALTON AVENUE,EAST 174 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4543868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,11:54,QUEENS,11434,40.671825,-73.774506,"(40.671825, -73.774506)",BREWER BOULEVARD,137 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543278,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,0:30,BROOKLYN,11207,40.663452,-73.89206,"(40.663452, -73.89206)",,,642 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543802,Sedan,,,, +07/04/2022,2:00,BRONX,10457,40.842346,-73.89836,"(40.842346, -73.89836)",EAST 174 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543375,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,14:57,BROOKLYN,11208,40.663788,-73.86808,"(40.663788, -73.86808)",PINE STREET,WORTMAN AVENUE,,2,0,0,0,0,0,2,0,Obstruction/Debris,Unspecified,,,,4543811,Sedan,Sedan,,, +07/04/2022,9:47,MANHATTAN,10037,40.807816,-73.93493,"(40.807816, -73.93493)",,,2178 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Other Vehicular,,,,4543474,Taxi,Sedan,,, +07/04/2022,1:30,BROOKLYN,11208,40.674232,-73.86177,"(40.674232, -73.86177)",SUTTER AVENUE,CONDUIT BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543801,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/10/2022,15:40,,,40.67066,-73.904205,"(40.67066, -73.904205)",PITKIN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4543982,Bike,Sedan,,, +07/04/2022,21:20,,,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4543658,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,4:30,QUEENS,11372,40.75334,-73.8793,"(40.75334, -73.8793)",,,34-16 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543998,Sedan,Sedan,,, +07/04/2022,0:55,BROOKLYN,11204,40.62318,-73.98611,"(40.62318, -73.98611)",18 AVENUE,58 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543132,E-Scooter,,,, +07/03/2022,18:45,QUEENS,11433,40.69401,-73.77864,"(40.69401, -73.77864)",SAYRES AVENUE,173 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544062,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,5:10,,,40.578938,-73.98522,"(40.578938, -73.98522)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543929,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,16:40,STATEN ISLAND,10305,40.58623,-74.09001,"(40.58623, -74.09001)",,,354 GARRETSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543858,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/04/2022,18:17,BROOKLYN,11203,40.654076,-73.93549,"(40.654076, -73.93549)",,,320 EAST 45 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543350,Pick-up Truck,E-Bike,,, +07/04/2022,16:07,,,40.609627,-74.14955,"(40.609627, -74.14955)",VICTORY BOULEVARD,NORTH GANNON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4543355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Motorcycle, +06/24/2022,19:00,QUEENS,11375,40.72145,-73.851944,"(40.72145, -73.851944)",BURNS STREET,68 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543833,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/27/2022,16:02,BROOKLYN,11206,40.700966,-73.94093,"(40.700966, -73.94093)",,,793 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4544046,Station Wagon/Sport Utility Vehicle,Bus,,, +07/04/2022,0:02,BRONX,10456,40.82944,-73.90031,"(40.82944, -73.90031)",,,1198 TINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543380,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2022,15:25,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543852,Sedan,Sedan,,, +07/03/2022,16:00,BRONX,10468,40.87167,-73.897804,"(40.87167, -73.897804)",RESERVOIR AVENUE,WEST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544096,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,19:05,BROOKLYN,11228,40.617115,-74.014336,"(40.617115, -74.014336)",83 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543438,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2022,4:12,,,40.845795,-73.92548,"(40.845795, -73.92548)",SEDGWICK AVENUE,WASHINGTON BRIDGE,,2,0,0,0,0,0,2,0,Other Vehicular,Alcohol Involvement,,,,4543881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,12:55,BRONX,10469,40.863487,-73.85586,"(40.863487, -73.85586)",,,2515 LACONIA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4543287,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2022,15:25,MANHATTAN,10002,40.712463,-73.99241,"(40.712463, -73.99241)",PIKE STREET,MADISON STREET,,1,0,1,0,0,0,0,0,,,,,,4543835,,,,, +06/10/2022,7:22,,,40.56757,-73.88277,"(40.56757, -73.88277)",BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4543874,Sedan,Sedan,,, +06/22/2022,12:30,QUEENS,11694,40.579193,-73.84885,"(40.579193, -73.84885)",,,461 BEACH 128 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543907,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,3:58,BROOKLYN,11212,40.656307,-73.91887,"(40.656307, -73.91887)",WILLMOHR STREET,EAST 94 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543311,Sedan,Motorscooter,,, +01/11/2022,17:00,,,40.782887,-73.9439,"(40.782887, -73.9439)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494126,Sedan,Sedan,,, +04/08/2022,10:38,STATEN ISLAND,10306,40.552475,-74.11389,"(40.552475, -74.11389)",,,126 FOX LANE,0,0,0,0,0,0,0,0,,,,,,4517480,Sedan,,,, +07/04/2022,22:43,BRONX,10468,40.875195,-73.888565,"(40.875195, -73.888565)",EAST 204 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543379,Station Wagon/Sport Utility Vehicle,,,, +06/17/2022,16:30,QUEENS,11368,40.74883,-73.869225,"(40.74883, -73.869225)",,,40-09 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544116,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,15:59,QUEENS,11357,40.792957,-73.79763,"(40.792957, -73.79763)",166 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4543429,Sedan,Sedan,,, +07/04/2022,1:00,BRONX,10467,40.88291,-73.88168,"(40.88291, -73.88168)",,,10 WEST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543716,Sedan,,,, +07/03/2022,9:46,,,40.66925,-73.93944,"(40.66925, -73.93944)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4544102,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,21:25,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4429613,Sedan,Bike,,, +06/26/2021,1:05,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4430989,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +06/26/2021,2:59,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4431097,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/24/2021,11:22,,,40.774048,-73.92449,"(40.774048, -73.92449)",21 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4431259,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,3:45,BROOKLYN,11224,40.58061,-73.98565,"(40.58061, -73.98565)",CROPSEY AVENUE,HART PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4543928,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,6:30,,,40.735794,-73.85807,"(40.735794, -73.85807)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,5:30,QUEENS,11413,40.651398,-73.75888,"(40.651398, -73.75888)",,,230-59 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432694,Sedan,Sedan,,, +06/23/2021,21:38,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4433212,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,9:46,BRONX,10457,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,BELMONT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4433223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,13:41,QUEENS,11378,40.7285,-73.91798,"(40.7285, -73.91798)",55 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433176,Sedan,Pick-up Truck,,, +06/24/2021,2:10,,,40.626316,-74.179726,"(40.626316, -74.179726)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433210,Sedan,,,, +06/24/2021,21:35,BRONX,10456,40.838036,-73.9103,"(40.838036, -73.9103)",,,1421 COLLEGE AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4433218,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,23:17,MANHATTAN,10031,40.824078,-73.94889,"(40.824078, -73.94889)",WEST 143 STREET,HAMILTON PLACE,,1,0,0,0,0,0,0,0,Passenger Distraction,Passenger Distraction,,,,4433187,Sedan,E-Scooter,,, +06/10/2021,18:20,BROOKLYN,11222,40.725433,-73.951744,"(40.725433, -73.951744)",MANHATTAN AVENUE,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433231,Station Wagon/Sport Utility Vehicle,Bike,,, +06/20/2022,8:30,BROOKLYN,11249,,,,WALLABOUT STREET,HEYWARD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544038,Taxi,Bus,,, +07/04/2022,16:07,,,,,,MANHATTAN BRIDGE,BOWERY,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4543334,Sedan,Sedan,,, +07/04/2022,2:30,,,40.632294,-73.96678,"(40.632294, -73.96678)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543455,Sedan,,,, +07/04/2022,4:50,BROOKLYN,11229,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4543255,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/04/2022,12:30,QUEENS,11417,40.67526,-73.85451,"(40.67526, -73.85451)",SUTTER AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543413,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/19/2022,18:03,MANHATTAN,10014,40.735134,-74.00607,"(40.735134, -74.00607)",HUDSON STREET,PERRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543827,Sedan,Bike,,, +07/04/2022,17:18,BROOKLYN,11233,40.68414,-73.91657,"(40.68414, -73.91657)",,,737 MACDONOUGH STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4543392,Sedan,,,, +07/03/2022,16:15,BROOKLYN,11233,40.668278,-73.92005,"(40.668278, -73.92005)",HOWARD AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4543981,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/29/2021,16:33,BROOKLYN,11209,40.62143,-74.02299,"(40.62143, -74.02299)",FORT HAMILTON PARKWAY,84 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4432379,Station Wagon/Sport Utility Vehicle,DELIVERY T,,, +06/29/2021,23:10,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Driverless/Runaway Vehicle,,,,4432527,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,15:40,BRONX,10452,40.843204,-73.91196,"(40.843204, -73.91196)",GRAND CONCOURSE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4432442,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,19:35,MANHATTAN,10018,40.753475,-73.99254,"(40.753475, -73.99254)",WEST 36 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Outside Car Distraction,,,,4432920,Sedan,Sedan,,, +06/22/2021,17:52,BROOKLYN,11211,40.71949,-73.95595,"(40.71949, -73.95595)",BEDFORD AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4432891,Sedan,Sedan,,, +06/29/2021,0:25,BROOKLYN,11232,40.656536,-74.00357,"(40.656536, -74.00357)",,,139 33 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431971,Sedan,Dump,,, +06/29/2021,17:45,QUEENS,11413,40.66547,-73.75447,"(40.66547, -73.75447)",,,223-20 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432413,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,17:21,BROOKLYN,11212,,,,Mother Gaston Boulevard,Sutter Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432637,Sedan,Sedan,,, +06/29/2021,19:29,MANHATTAN,10029,40.7923,-73.95046,"(40.7923, -73.95046)",EAST 104 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432467,Sedan,Moped,,, +06/29/2021,23:28,MANHATTAN,10038,40.71022,-74.00775,"(40.71022, -74.00775)",FULTON STREET,NASSAU STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432837,Dump,Sedan,,, +06/28/2021,20:08,BROOKLYN,11210,40.63497,-73.951225,"(40.63497, -73.951225)",,,43 KENILWORTH PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432992,Sedan,,,, +06/23/2021,21:37,,,40.686905,-73.94463,"(40.686905, -73.94463)",TOMPKINS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433088,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,2:11,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",MORRIS AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432016,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,19:23,,,40.57275,-73.997055,"(40.57275, -73.997055)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4432472,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/07/2021,11:00,BRONX,10451,40.82005,-73.92088,"(40.82005, -73.92088)",,,281 EAST 153 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432917,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,12:10,,,40.63256,-73.96087,"(40.63256, -73.96087)",EAST 17 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4432979,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,20:50,BROOKLYN,11234,40.62333,-73.93095,"(40.62333, -73.93095)",,,4624 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432762,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,1:04,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4432095,,,,, +06/29/2021,3:05,BROOKLYN,11203,40.63759,-73.927864,"(40.63759, -73.927864)",FARRAGUT ROAD,EAST 51 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4432332,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/29/2021,20:50,QUEENS,11414,40.65958,-73.83705,"(40.65958, -73.83705)",96 STREET,159 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,13:10,BROOKLYN,11235,40.588936,-73.94554,"(40.588936, -73.94554)",AVENUE Z,EAST 24 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4432599,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,18:15,QUEENS,11377,40.73842,-73.8989,"(40.73842, -73.8989)",48 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432643,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,13:40,,,40.604618,-74.162384,"(40.604618, -74.162384)",RICHMOND AVENUE,ETON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432682,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,13:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432279,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,6:30,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432203,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,18:07,,,40.629166,-74.128815,"(40.629166, -74.128815)",MARION STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543885,Sedan,Box Truck,,, +06/29/2021,11:15,MANHATTAN,10038,40.709503,-74.00167,"(40.709503, -74.00167)",DOVER STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433057,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/28/2021,14:50,BROOKLYN,11233,40.668503,-73.92558,"(40.668503, -73.92558)",,,1315 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4433129,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,8:05,BROOKLYN,11205,40.691105,-73.97044,"(40.691105, -73.97044)",,,209 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2021,9:40,QUEENS,11101,40.75343,-73.93782,"(40.75343, -73.93782)",,,25-19 40 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432204,Sedan,Sedan,,, +06/29/2021,8:05,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432933,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,8:01,,,,,,queens midtown expressway,69 street,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432309,Van,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,2:55,MANHATTAN,10016,40.747684,-73.97879,"(40.747684, -73.97879)",EAST 36 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432141,Taxi,Sedan,,, +06/29/2021,10:20,BROOKLYN,11230,40.616714,-73.971855,"(40.616714, -73.971855)",,,315 AVENUE M,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,13:20,BROOKLYN,11206,40.70137,-73.94457,"(40.70137, -73.94457)",,,48 WHIPPLE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4432460,Pick-up Truck,,,, +06/29/2021,5:45,QUEENS,11106,40.75855,-73.924866,"(40.75855, -73.924866)",34 AVENUE,34 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432495,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,21:00,QUEENS,11361,40.76049,-73.767525,"(40.76049, -73.767525)",215 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4432728,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,14:40,,,40.701103,-73.939255,"(40.701103, -73.939255)",FAYETTE STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432612,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,10:25,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432690,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,9:29,QUEENS,11419,40.684357,-73.830925,"(40.684357, -73.830925)",,,104-71 111 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2022,11:24,MANHATTAN,10011,40.74283,-74.007706,"(40.74283, -74.007706)",WEST 15 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4543536,Sedan,Van,Sedan,, +06/29/2021,18:19,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4432427,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2021,14:55,,,40.67613,-73.884865,"(40.67613, -73.884865)",LIBERTY AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433017,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/23/2021,22:00,BROOKLYN,11216,40.680717,-73.9463,"(40.680717, -73.9463)",MACDONOUGH STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433150,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,16:21,BROOKLYN,11218,40.640522,-73.984634,"(40.640522, -73.984634)",,,1348 38 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432596,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,17:23,MANHATTAN,10001,40.751816,-73.99744,"(40.751816, -73.99744)",,,380 9 AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4432875,Motorbike,Bike,,, +06/29/2021,20:00,BROOKLYN,11207,40.66701,-73.9004,"(40.66701, -73.9004)",BLAKE AVENUE,SNEDIKER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4433022,Sedan,Bike,,, +06/29/2021,2:25,BROOKLYN,11203,40.65255,-73.93049,"(40.65255, -73.93049)",,,848 UTICA AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4432335,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,23:49,,,40.676872,-73.94985,"(40.676872, -73.94985)",NOSTRAND AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4433123,Taxi,,,, +06/29/2021,17:02,QUEENS,11365,40.751892,-73.779816,"(40.751892, -73.779816)",FRANCIS LEWIS BOULEVARD,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432397,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,14:00,,,40.587067,-74.09162,"(40.587067, -74.09162)",GARRETSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543849,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,3:45,BROOKLYN,11234,40.62175,-73.93202,"(40.62175, -73.93202)",,,1599 EAST 45 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432229,,,,, +06/29/2021,18:11,MANHATTAN,10004,40.706657,-74.015915,"(40.706657, -74.015915)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432836,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,16:10,,,40.769737,-73.91244,"(40.769737, -73.91244)",37 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432630,Sedan,,,, +06/29/2021,13:15,,,40.8492,-73.82716,"(40.8492, -73.82716)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432662,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,13:00,QUEENS,11375,,,,71 DRIVE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433137,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,17:39,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAHAM AVENUE,GRAND STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432804,Sedan,E-Scooter,,, +06/26/2021,16:45,QUEENS,11101,40.756,-73.9427,"(40.756, -73.9427)",,,12-07 40 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432926,Sedan,,,, +06/29/2021,9:25,QUEENS,11373,40.739883,-73.868996,"(40.739883, -73.868996)",94 STREET,52 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4432456,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/24/2021,14:03,MANHATTAN,10001,40.750893,-73.99629,"(40.750893, -73.99629)",,,350 WEST 31 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4432899,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +06/29/2021,19:48,BRONX,10453,40.858387,-73.90279,"(40.858387, -73.90279)",EAST 183 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432473,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/20/2022,18:30,,,40.60436,-74.1243,"(40.60436, -74.1243)",,,90 HOLDEN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4504310,Sedan,Sedan,Sedan,, +06/29/2021,23:05,BRONX,10473,40.824207,-73.858795,"(40.824207, -73.858795)",WHITE PLAINS ROAD,STORY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432568,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,23:43,,,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433001,Sedan,Bus,,, +06/29/2021,18:18,,,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432358,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/22/2021,20:15,MANHATTAN,10036,40.75934,-73.99197,"(40.75934, -73.99197)",,,608 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432859,Sedan,,,, +06/28/2021,17:45,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433029,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,2:30,QUEENS,11370,40.760746,-73.89081,"(40.760746, -73.89081)",,,77-22 30 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4432504,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,21:00,BROOKLYN,11201,40.694813,-73.98327,"(40.694813, -73.98327)",JOHNSON STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432415,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,15:40,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432512,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,10:55,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4432468,Pick-up Truck,Sedan,,, +06/20/2021,3:05,,,40.697403,-73.83641,"(40.697403, -73.83641)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4432908,,,,, +06/29/2021,1:30,,,40.690292,-73.98444,"(40.690292, -73.98444)",DUFFIELD STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4431973,Sedan,,,, +06/29/2021,17:15,QUEENS,11379,40.721268,-73.870674,"(40.721268, -73.870674)",PENELOPE AVENUE,83 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432975,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,20:19,QUEENS,11378,40.72143,-73.892746,"(40.72143, -73.892746)",69 STREET,60 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433101,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,14:37,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",3 AVENUE,EAST 36 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432391,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +06/29/2021,13:38,,,40.74084,-73.72681,"(40.74084, -73.72681)",CROSS ISLAND PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Following Too Closely,,,,4432781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,14:00,BROOKLYN,11205,40.69217,-73.95194,"(40.69217, -73.95194)",,,230 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433087,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/29/2021,16:00,BROOKLYN,11208,40.666595,-73.87176,"(40.666595, -73.87176)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433025,Bus,Sedan,,, +06/23/2021,15:15,MANHATTAN,10016,40.75147,-73.98205,"(40.75147, -73.98205)",,,2 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,0:31,BROOKLYN,11223,40.593327,-73.964645,"(40.593327, -73.964645)",OCEAN PARKWAY,AVENUE W,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4432044,Motorcycle,,,, +06/26/2021,21:30,,,40.74915,-73.98828,"(40.74915, -73.98828)",AVENUE OF THE AMERICAS,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4432919,Motorcycle,,,, +06/29/2021,0:00,QUEENS,11434,40.658657,-73.771996,"(40.658657, -73.771996)",,,168-35 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4432356,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,12:45,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432469,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,7:30,BROOKLYN,11226,40.65399,-73.96415,"(40.65399, -73.96415)",PARKSIDE AVENUE,SAINT PAULS PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432980,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,18:25,BROOKLYN,11234,40.615383,-73.92891,"(40.615383, -73.92891)",,,2240 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432760,Sedan,Tow Truck / Wrecker,,, +06/29/2021,12:00,,,40.696335,-73.930504,"(40.696335, -73.930504)",HART STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432857,Sedan,Sedan,,, +06/29/2021,16:05,BROOKLYN,11223,40.608788,-73.96214,"(40.608788, -73.96214)",,,1989 CONEY ISLAND AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4432448,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/29/2021,2:50,STATEN ISLAND,10301,40.64471,-74.07704,"(40.64471, -74.07704)",,,78 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433059,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,14:40,,,40.58731,-74.19818,"(40.58731, -74.19818)",,,4390 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432948,Sedan,NYPD ESU T,,, +06/29/2021,11:10,,,40.824913,-73.8689,"(40.824913, -73.8689)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432226,Sedan,Box Truck,,, +06/29/2021,8:38,QUEENS,11434,40.659485,-73.76783,"(40.659485, -73.76783)",,,148-09 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432262,Sedan,Refrigerated Van,,, +06/29/2021,17:12,QUEENS,11430,,,,NASSAU EXPRESSWAY,NORTH HANGAR ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,7:45,BROOKLYN,11217,40.684883,-73.97317,"(40.684883, -73.97317)",,,147 SOUTH OXFORD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433047,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,19:50,BROOKLYN,11236,40.63328,-73.8905,"(40.63328, -73.8905)",SAINT JUDE PLACE,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4432380,Sedan,,,, +06/29/2021,12:11,,,40.75519,-73.97122,"(40.75519, -73.97122)",EAST 49 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432703,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,17:55,BROOKLYN,11208,40.660095,-73.87347,"(40.660095, -73.87347)",COZINE AVENUE,SHEPHERD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4432988,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,2:05,,,40.730434,-73.875595,"(40.730434, -73.875595)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4432193,Sedan,Tractor Truck Diesel,,, +06/29/2021,11:07,MANHATTAN,10032,40.833843,-73.94851,"(40.833843, -73.94851)",RIVERSIDE DRIVE,WEST 155 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4432526,Tractor Truck Diesel,Sedan,Sedan,, +06/29/2021,21:30,BRONX,10467,40.882893,-73.8581,"(40.882893, -73.8581)",,,850 EAST 220 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432632,Sedan,Sedan,,, +06/29/2021,6:46,QUEENS,11385,40.702126,-73.89164,"(40.702126, -73.89164)",CENTRAL AVENUE,64 PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432244,Box Truck,Tractor Truck Diesel,,, +06/29/2021,14:08,BROOKLYN,11222,40.721794,-73.94804,"(40.721794, -73.94804)",,,55 ECKFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432424,Sedan,,,, +06/29/2021,15:05,,,40.76555,-73.83911,"(40.76555, -73.83911)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432876,Station Wagon/Sport Utility Vehicle,LIMO,,, +06/26/2021,18:29,MANHATTAN,10018,,,,W 37 ST,Avenue of americas,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432925,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,18:20,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432750,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,21:45,,,,,,GRAND ARMY PLAZA,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432368,Sedan,,,, +06/29/2021,17:30,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432433,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,10:45,BROOKLYN,11205,40.69841,-73.956924,"(40.69841, -73.956924)",,,744 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433154,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,12:00,,,40.6884,-73.95118,"(40.6884, -73.95118)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433149,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,17:00,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4433018,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/29/2021,23:31,,,40.636818,-74.15794,"(40.636818, -74.15794)",RICHMOND TERRACE,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432865,Sedan,Sedan,,, +06/20/2021,9:38,BROOKLYN,11213,40.677624,-73.93308,"(40.677624, -73.93308)",SCHENECTADY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433126,Sedan,Sedan,,, +06/29/2021,8:22,BROOKLYN,11219,40.640274,-73.99025,"(40.640274, -73.99025)",12 AVENUE,42 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4432611,Pick-up Truck,,,, +06/29/2021,0:10,BROOKLYN,11208,40.673676,-73.86576,"(40.673676, -73.86576)",SUTTER AVENUE,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432094,Sedan,Sedan,,, +06/29/2021,1:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432688,Sedan,,,, +02/18/2022,12:57,BROOKLYN,11218,40.640068,-73.986885,"(40.640068, -73.986885)",40 STREET,13 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4504685,E-Bike,Bike,,, +06/29/2021,23:04,BROOKLYN,11212,40.658516,-73.90108,"(40.658516, -73.90108)",,,631 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432636,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,10:20,QUEENS,11419,40.690044,-73.81481,"(40.690044, -73.81481)",131 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432546,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,11:30,BROOKLYN,11206,40.710217,-73.9358,"(40.710217, -73.9358)",,,328 STAGG STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432459,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,16:40,BROOKLYN,11216,40.68218,-73.94659,"(40.68218, -73.94659)",MARCY AVENUE,HALSEY STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4433153,Sedan,,,, +06/27/2021,21:45,QUEENS,11421,40.687164,-73.85232,"(40.687164, -73.85232)",ATLANTIC AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4432931,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,20:59,MANHATTAN,10002,,,,EAST BROADWAY,PIKE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432492,Sedan,Sedan,,, +06/23/2021,6:19,MANHATTAN,10001,,,,,,231 W 29 street,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4432866,Sedan,,,, +06/29/2021,15:54,,,40.586205,-73.93417,"(40.586205, -73.93417)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432394,Sedan,Sedan,,, +06/29/2021,9:30,QUEENS,11413,40.671684,-73.75647,"(40.671684, -73.75647)",SPRINGFIELD BOULEVARD,141 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432704,Tractor Truck Diesel,Sedan,,, +06/29/2021,21:40,BROOKLYN,11211,40.71817,-73.945,"(40.71817, -73.945)",,,435 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432810,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,21:22,BROOKLYN,11201,40.687397,-73.995735,"(40.687397, -73.995735)",WARREN STREET,CLINTON STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4432431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/29/2021,14:45,QUEENS,11377,40.752563,-73.90526,"(40.752563, -73.90526)",56 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432641,Sedan,,,, +06/29/2021,2:35,MANHATTAN,10168,0,0,"(0.0, 0.0)",EAST 42 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432134,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,22:55,QUEENS,11372,40.75587,-73.88234,"(40.75587, -73.88234)",,,85-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,13:50,QUEENS,11429,40.70622,-73.72792,"(40.70622, -73.72792)",CROSS ISLAND PARKWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4432276,Sedan,Sedan,,, +06/29/2021,0:21,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,2,1,0,0,0,0,2,1,Unspecified,Unspecified,Unspecified,Unspecified,,4432515,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/29/2021,19:49,BROOKLYN,11223,40.601463,-73.97555,"(40.601463, -73.97555)",WEST 3 STREET,AVENUE S,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432387,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,11:00,QUEENS,11106,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432500,Sedan,Sedan,,, +06/25/2021,16:40,,,40.760353,-73.99124,"(40.760353, -73.99124)",9 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432898,Armored Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,17:50,,,40.73594,-73.85887,"(40.73594, -73.85887)",HORACE HARDING EXPRESSWAY,99 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432454,Sedan,Box Truck,,, +06/29/2021,23:10,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432910,Sedan,Sedan,,, +06/29/2021,0:25,BROOKLYN,11232,40.656536,-74.00357,"(40.656536, -74.00357)",,,139 33 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4431975,Sedan,Dump,,, +06/26/2021,18:18,BROOKLYN,11234,40.607635,-73.92159,"(40.607635, -73.92159)",AVENUE V,HENDRICKSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4432976,MOTOR HOME,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2021,11:40,,,40.7324,-73.76561,"(40.7324, -73.76561)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432780,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,18:00,BRONX,10466,40.896004,-73.842,"(40.896004, -73.842)",BUSSING AVENUE,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433099,Sedan,,,, +06/29/2021,13:41,MANHATTAN,10003,40.738228,-73.987785,"(40.738228, -73.987785)",,,249 PARK AVENUE SOUTH,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433048,E-Scooter,Sedan,,, +06/29/2021,18:17,BRONX,10469,40.879856,-73.845,"(40.879856, -73.845)",,,1277 EAST 222 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432633,Sedan,,,, +06/29/2021,8:05,BROOKLYN,11234,40.635303,-73.92668,"(40.635303, -73.92668)",GLENWOOD ROAD,EAST 52 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432241,Box Truck,Sedan,,, +06/29/2021,12:20,BRONX,10452,40.843975,-73.913864,"(40.843975, -73.913864)",EAST MOUNT EDEN AVENUE,TOWNSEND AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432245,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/29/2021,15:36,BRONX,10460,40.842365,-73.89005,"(40.842365, -73.89005)",,,770 EAST 176 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432583,Sedan,,,, +06/26/2021,16:23,QUEENS,11385,40.70049,-73.90134,"(40.70049, -73.90134)",MYRTLE AVENUE,ONDERDONK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432973,Sedan,,,, +06/29/2021,10:46,BROOKLYN,11205,40.694008,-73.97102,"(40.694008, -73.97102)",,,131 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4432282,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/29/2021,14:00,MANHATTAN,10012,40.7227,-73.99504,"(40.7227, -73.99504)",,,236 MOTT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4432619,Sedan,,,, +06/29/2021,21:50,,,40.634922,-73.96132,"(40.634922, -73.96132)",EAST 17 STREET,,,1,0,1,0,0,0,0,0,,,,,,4433000,,,,, +06/29/2021,19:10,BRONX,10455,40.813858,-73.89752,"(40.813858, -73.89752)",,,729 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4432367,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,12:00,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432665,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,15:26,,,40.73305,-74.00642,"(40.73305, -74.00642)",HUDSON STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433043,E-Scooter,Box Truck,,, +06/29/2021,5:10,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432174,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,19:30,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432586,Bike,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,19:00,QUEENS,11101,40.749844,-73.95225,"(40.749844, -73.95225)",44 ROAD,VERNON BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432645,Sedan,Bike,,, +06/30/2022,22:44,BRONX,10475,40.86128,-73.821625,"(40.86128, -73.821625)",,,100 ERSKINE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543903,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,9:49,,,40.76311,-73.962524,"(40.76311, -73.962524)",EAST 63 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4432196,Sedan,Flat Rack,,, +06/29/2021,11:15,BRONX,10475,40.88298,-73.828384,"(40.88298, -73.828384)",,,2249 NEW ENGLAND THRUWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432281,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/29/2021,15:40,BROOKLYN,11208,40.675446,-73.88069,"(40.675446, -73.88069)",,,800 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433019,Flat Bed,,,, +06/29/2021,17:20,BROOKLYN,11208,40.680763,-73.88528,"(40.680763, -73.88528)",,,255 ARLINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,15:35,BRONX,10462,40.847225,-73.85824,"(40.847225, -73.85824)",,,935 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432341,Pick-up Truck,Van,,, +06/29/2021,18:50,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432470,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2021,20:02,BROOKLYN,11230,40.625088,-73.96217,"(40.625088, -73.96217)",,,1402 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,,,,,4433008,Sedan,,,, +06/29/2021,7:00,,,40.74132,-73.78478,"(40.74132, -73.78478)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432779,Box Truck,Chassis Cab,,, +06/15/2021,8:45,,,40.60809,-74.162285,"(40.60809, -74.162285)",,,1650 RICHMOND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432941,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,3:52,BRONX,10473,40.821693,-73.87743,"(40.821693, -73.87743)",,,1520 STORY AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,,4432225,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/29/2021,11:45,QUEENS,11358,40.769543,-73.7924,"(40.769543, -73.7924)",UTOPIA PARKWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432382,Sedan,Bike,,, +06/29/2021,4:45,MANHATTAN,10035,40.802357,-73.941,"(40.802357, -73.941)",,,1735 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432124,Sedan,,,, +06/29/2021,15:10,QUEENS,11372,40.7568,-73.873665,"(40.7568, -73.873665)",NORTHERN BOULEVARD,JUNCTION BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,15:07,BROOKLYN,11228,40.621635,-74.009636,"(40.621635, -74.009636)",BAY RIDGE PARKWAY,12 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4433108,Sedan,Bike,,, +06/29/2021,19:55,MANHATTAN,10011,40.744015,-74.00851,"(40.744015, -74.00851)",WEST 16 STREET,11 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4432565,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/29/2021,12:00,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432295,Sedan,Sedan,,, +06/25/2021,19:40,,,40.749725,-73.98363,"(40.749725, -73.98363)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432897,Sedan,,,, +06/29/2021,22:58,,,40.828217,-73.8414,"(40.828217, -73.8414)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4432667,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,23:15,STATEN ISLAND,10305,40.589603,-74.089386,"(40.589603, -74.089386)",HYLAN BOULEVARD,RARITAN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,13:09,BRONX,10467,40.87673,-73.86444,"(40.87673, -73.86444)",,,754 EAST GUN HILL ROAD,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432616,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,7:33,,,40.81394,-73.948425,"(40.81394, -73.948425)",8 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4432686,Sedan,Sedan,,, +06/29/2021,19:00,BRONX,10459,40.832424,-73.892426,"(40.832424, -73.892426)",,,870 JENNINGS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432640,Sedan,,,, +06/29/2021,17:10,,,40.71445,-73.9306,"(40.71445, -73.9306)",GRAND STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4432464,REFG,Station Wagon/Sport Utility Vehicle,TRAILER,, +06/28/2021,17:00,MANHATTAN,10010,40.739925,-73.9818,"(40.739925, -73.9818)",,,206 EAST 25 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432985,Sedan,,,, +06/29/2021,19:43,BROOKLYN,11203,40.651512,-73.93521,"(40.651512, -73.93521)",EAST 45 STREET,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4432404,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/29/2021,7:57,MANHATTAN,10001,40.747044,-73.98713,"(40.747044, -73.98713)",,,25 WEST 31 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4432880,Sedan,Sedan,Sedan,, +06/29/2021,10:08,,,,,,FDR DRIVE,east 50 street,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432393,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,8:50,QUEENS,11106,40.763134,-73.92093,"(40.763134, -73.92093)",,,34-07 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543867,Sedan,,,, +06/18/2021,20:40,MANHATTAN,10036,40.758427,-73.99264,"(40.758427, -73.99264)",9 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4432915,Sedan,Sedan,,, +06/27/2021,7:02,,,40.678238,-73.94415,"(40.678238, -73.94415)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4433127,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +06/29/2021,1:09,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4432265,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/29/2021,11:30,BRONX,10455,40.814365,-73.910706,"(40.814365, -73.910706)",,,561 CAULDWELL AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4432434,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,22:45,,,40.613075,-74.12257,"(40.613075, -74.12257)",VICTORY BOULEVARD,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4433060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,20:45,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",MAURICE AVENUE,55 DRIVE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432982,Sedan,Bike,,, +06/29/2021,9:30,,,40.810627,-73.95828,"(40.810627, -73.95828)",AMSTERDAM AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4432848,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/29/2021,23:43,QUEENS,11374,40.728962,-73.85523,"(40.728962, -73.85523)",65 ROAD,99 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432792,Sedan,,,, +06/29/2021,22:30,BROOKLYN,11235,40.58873,-73.94739,"(40.58873, -73.94739)",EAST 22 STREET,AVENUE Z,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432450,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,8:43,,,40.829647,-73.94439,"(40.829647, -73.94439)",,,AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4433145,Sedan,,,, +06/29/2021,12:10,STATEN ISLAND,10310,40.632675,-74.116844,"(40.632675, -74.116844)",BROADWAY,CARY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432545,Sedan,E-Scooter,,, +06/29/2021,9:35,,,40.806477,-73.908455,"(40.806477, -73.908455)",BRUCKNER BOULEVARD,SOUTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432819,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,9:45,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",7 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432419,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,17:45,MANHATTAN,10002,40.718685,-73.99051,"(40.718685, -73.99051)",,,100 ALLEN STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432374,Sedan,Sedan,,, +06/25/2021,9:30,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4432902,Box Truck,,,, +06/20/2021,4:45,,,40.757908,-73.9893,"(40.757908, -73.9893)",WEST 43 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432922,Taxi,,,, +06/29/2021,11:30,,,40.69612,-73.74619,"(40.69612, -73.74619)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432608,Sedan,,,, +06/29/2021,17:23,QUEENS,11434,40.667084,-73.78698,"(40.667084, -73.78698)",BAISLEY BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432751,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,7:40,,,,,,2nd Ave,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432458,Box Truck,,,, +06/20/2021,16:30,BROOKLYN,11216,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4433156,Ambulance,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,15:05,QUEENS,11369,40.760307,-73.87582,"(40.760307, -73.87582)",93 STREET,31 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4432502,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,5:30,BROOKLYN,11230,40.62771,-73.960686,"(40.62771, -73.960686)",,,1615 AVENUE I,0,0,0,0,0,0,0,0,Unspecified,,,,,4432999,Sedan,,,, +06/25/2021,17:50,MANHATTAN,10018,40.75531,-73.99309,"(40.75531, -73.99309)",,,350 WEST 38 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4432863,Sedan,Box Truck,,, +06/27/2021,18:30,STATEN ISLAND,10308,40.5453,-74.14767,"(40.5453, -74.14767)",,,103 MONTICELLO TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433078,Sedan,,,, +06/29/2021,14:50,,,,,,155 AVENUE,CROSS BAY BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Lane Marking Improper/Inadequate,,,,4432516,Sedan,Bike,,, +06/27/2021,12:55,BROOKLYN,11218,40.638523,-73.98131,"(40.638523, -73.98131)",15 AVENUE,38 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433053,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,2:34,MANHATTAN,10016,40.7495,-73.98308,"(40.7495, -73.98308)",,,7 EAST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432867,Sedan,Sedan,,, +06/29/2021,0:00,QUEENS,11420,40.67906,-73.81936,"(40.67906, -73.81936)",,,120-20 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4431983,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,9:40,BROOKLYN,11226,40.650887,-73.96466,"(40.650887, -73.96466)",CATON AVENUE,PARADE PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432977,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,18:30,STATEN ISLAND,10309,40.532227,-74.204056,"(40.532227, -74.204056)",,,1792 DRUMGOOLE ROAD WEST,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4432904,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,18:08,,,40.648655,-73.92232,"(40.648655, -73.92232)",TILDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432403,Box Truck,Sedan,,, +06/29/2021,18:15,,,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4432634,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,11:00,BRONX,10452,40.83142,-73.92644,"(40.83142, -73.92644)",EAST 164 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432246,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,11:00,,,,,,WEST 155 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4432624,Sedan,Sedan,,, +06/29/2021,8:30,QUEENS,11415,40.70617,-73.83461,"(40.70617, -73.83461)",,,83-30 118 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432930,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,20:15,BROOKLYN,11211,40.714714,-73.95842,"(40.714714, -73.95842)",,,270 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432795,Moped,Sedan,,, +06/29/2021,10:29,,,,,,72 3 PLACE,CLINTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432463,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,18:59,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433214,Pick-up Truck,Sedan,,, +06/29/2021,16:30,MANHATTAN,10002,40.71356,-73.99631,"(40.71356, -73.99631)",,,32 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432477,Station Wagon/Sport Utility Vehicle,0,,, +06/29/2021,20:05,BROOKLYN,11203,40.655273,-73.93178,"(40.655273, -73.93178)",LENOX ROAD,EAST 49 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4432719,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,12:20,BRONX,10466,40.897068,-73.843376,"(40.897068, -73.843376)",PITMAN AVENUE,WILDER AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4432566,Sedan,,,, +06/29/2021,1:58,STATEN ISLAND,10301,40.644302,-74.086914,"(40.644302, -74.086914)",,,151 JERSEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,0:50,QUEENS,11374,40.726185,-73.87022,"(40.726185, -73.87022)",WOODHAVEN BOULEVARD,62 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,21:15,BROOKLYN,11211,40.71625,-73.95519,"(40.71625, -73.95519)",ROEBLING STREET,NORTH 7 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433039,Bike,,,, +06/29/2021,8:40,BRONX,10452,40.83852,-73.92619,"(40.83852, -73.92619)",WEST 168 STREET,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432179,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2021,14:14,MANHATTAN,10001,40.752655,-73.99312,"(40.752655, -73.99312)",,,494 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433011,Sedan,Van,,, +06/29/2021,19:25,MANHATTAN,10035,40.80226,-73.94428,"(40.80226, -73.94428)",,,22 EAST 119 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4432587,Station Wagon/Sport Utility Vehicle,Moped,,, +06/29/2021,19:07,,,40.671196,-73.84296,"(40.671196, -73.84296)",CROSS BAY BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432429,Sedan,,,, +06/28/2021,14:40,,,40.6972,-73.952934,"(40.6972, -73.952934)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433152,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,4:05,BROOKLYN,11214,40.59566,-73.99314,"(40.59566, -73.99314)",24 AVENUE,BATH AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4432963,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/25/2021,15:10,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433093,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,8:30,BRONX,10467,40.879883,-73.880486,"(40.879883, -73.880486)",,,111 EAST 210 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4432298,Sedan,,,, +06/29/2021,18:55,QUEENS,11355,40.75855,-73.82964,"(40.75855, -73.82964)",KISSENA BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Passing or Lane Usage Improper,,,,4432377,Sedan,Bike,,, +06/29/2021,19:25,,,40.613194,-73.92631,"(40.613194, -73.92631)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432758,Sedan,Bus,,, +06/29/2021,15:45,,,,,,FORT GEORGE HILL,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4432650,Sedan,Sedan,Sedan,, +06/29/2021,17:30,BRONX,10461,40.842804,-73.83104,"(40.842804, -73.83104)",,,1536 GILLESPIE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432668,Station Wagon/Sport Utility Vehicle,,,, +06/23/2021,20:00,QUEENS,11374,40.728474,-73.85174,"(40.728474, -73.85174)",66 ROAD,102 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433157,Sedan,,,, +06/29/2021,10:02,,,40.702953,-73.91706,"(40.702953, -73.91706)",HIMROD STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432169,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,11:38,QUEENS,11105,40.778587,-73.90174,"(40.778587, -73.90174)",,,19-30 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432497,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,3:39,,,40.591293,-74.15302,"(40.591293, -74.15302)",,,1076 ROCKLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433207,Sedan,Sedan,,, +06/29/2021,12:00,MANHATTAN,10035,40.802753,-73.93358,"(40.802753, -73.93358)",EAST 125 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4432240,Bus,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,0:00,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4433192,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,9:30,MANHATTAN,10002,40.716515,-73.99463,"(40.716515, -73.99463)",,,61 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4432606,Pick-up Truck,Sedan,Sedan,, +06/29/2021,4:15,BROOKLYN,11207,40.663643,-73.89084,"(40.663643, -73.89084)",RIVERDALE AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4432108,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,14:41,QUEENS,11354,40.762424,-73.831665,"(40.762424, -73.831665)",,,36-38 MAIN STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4432383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,18:38,QUEENS,11101,40.742443,-73.93023,"(40.742443, -73.93023)",35 STREET,47 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432644,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,20:45,,,40.6427,-73.87661,"(40.6427, -73.87661)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433114,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,19:00,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432549,Sedan,,,, +06/29/2021,7:36,,,40.64647,-74.01258,"(40.64647, -74.01258)",4 AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4432280,Sedan,Bike,,, +06/27/2021,17:15,,,40.748436,-73.984566,"(40.748436, -73.984566)",5 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432921,Station Wagon/Sport Utility Vehicle,Bus,,, +06/22/2021,13:45,MANHATTAN,10016,40.748436,-73.984566,"(40.748436, -73.984566)",5 AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4432887,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/29/2021,12:54,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4432435,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/29/2021,22:45,QUEENS,11411,40.690914,-73.72819,"(40.690914, -73.72819)",LINDEN BOULEVARD,234 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432412,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,15:04,BROOKLYN,11234,40.619408,-73.91208,"(40.619408, -73.91208)",AVENUE T,EAST 67 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432767,Sedan,Sedan,,, +06/29/2021,16:11,MANHATTAN,10014,40.727154,-74.005554,"(40.727154, -74.005554)",CHARLTON STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432840,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,0:00,MANHATTAN,10025,40.79395,-73.97417,"(40.79395, -73.97417)",WEST 94 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432451,Sedan,,,, +06/17/2021,8:32,BROOKLYN,11233,40.671402,-73.92236,"(40.671402, -73.92236)",,,526 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4433128,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,12:29,BROOKLYN,11212,40.665833,-73.92244,"(40.665833, -73.92244)",,,699 RALPH AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432274,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,20:45,QUEENS,11414,40.66331,-73.84287,"(40.66331, -73.84287)",,,156-31 91 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543696,Sedan,,,, +06/29/2021,1:22,BRONX,10456,40.835297,-73.91291,"(40.835297, -73.91291)",MORRIS AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4432211,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,20:45,,,40.60518,-73.98018,"(40.60518, -73.98018)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432936,Sedan,,,, +06/29/2021,17:22,,,40.890293,-73.86518,"(40.890293, -73.86518)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4432613,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,0:15,,,40.666035,-73.7592,"(40.666035, -73.7592)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432689,Station Wagon/Sport Utility Vehicle,PICKUP,,, +06/29/2021,18:00,,,40.61463,-74.16393,"(40.61463, -74.16393)",ARLENE STREET,KIRSHON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432684,Sedan,Sedan,,, +06/29/2021,16:42,BROOKLYN,11204,40.613655,-73.978,"(40.613655, -73.978)",23 AVENUE,63 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4432320,Taxi,Taxi,,, +06/29/2021,14:20,,,40.58481,-73.98301,"(40.58481, -73.98301)",STILLWELL AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4432466,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,20:35,BRONX,10456,40.830353,-73.90347,"(40.830353, -73.90347)",EAST 168 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4432639,Ambulance,Sedan,,, +06/29/2021,0:50,,,40.596745,-73.985275,"(40.596745, -73.985275)",86 STREET,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4432529,Sedan,,,, +06/29/2021,10:49,BROOKLYN,11229,40.5998,-73.9476,"(40.5998, -73.9476)",AVENUE U,EAST 24 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432200,Bus,Sedan,,, +06/29/2021,3:30,BROOKLYN,11208,40.666676,-73.87008,"(40.666676, -73.87008)",,,1132 LORING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432079,Sedan,Dump,,, +06/29/2021,18:25,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",EAST 36 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4432392,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,20:25,BROOKLYN,11207,40.67334,-73.88617,"(40.67334, -73.88617)",,,2335 PITKIN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433023,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/29/2021,18:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4432471,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2021,4:20,BRONX,10462,40.845528,-73.86461,"(40.845528, -73.86461)",,,742B MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432340,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,17:10,MANHATTAN,10001,40.752563,-73.99434,"(40.752563, -73.99434)",,,323 WEST 34 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4432895,Motorcycle,Sedan,,, +06/28/2021,7:10,QUEENS,11419,40.693577,-73.82874,"(40.693577, -73.82874)",,,94-11 118 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432916,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,21:00,,,40.620865,-73.935,"(40.620865, -73.935)",FLATBUSH AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432788,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,18:03,,,40.733433,-73.9955,"(40.733433, -73.9955)",5 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432983,Station Wagon/Sport Utility Vehicle,Moped,,, +06/29/2021,21:00,BROOKLYN,11226,40.651367,-73.95592,"(40.651367, -73.95592)",BEDFORD AVENUE,MARTENSE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432405,Sedan,Motorcycle,,, +06/29/2021,20:00,BRONX,10454,40.807903,-73.92005,"(40.807903, -73.92005)",EAST 138 STREET,BROWN PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,16:25,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433020,Sedan,Sedan,,, +06/29/2021,23:00,BROOKLYN,11235,40.586517,-73.933304,"(40.586517, -73.933304)",,,3845 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4432594,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,2:15,BROOKLYN,11234,40.63321,-73.92259,"(40.63321, -73.92259)",EAST 56 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433054,Sedan,Sedan,,, +06/29/2021,18:20,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4433115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/29/2021,11:10,,,,,,,,8019 penele avenue,0,0,0,0,0,0,0,0,Unspecified,,,,,4432252,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,17:20,BROOKLYN,11212,40.659477,-73.908134,"(40.659477, -73.908134)",NEWPORT STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432635,Sedan,Sedan,,, +06/29/2021,22:00,,,40.829155,-73.93728,"(40.829155, -73.93728)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432952,Sedan,,,, +06/29/2021,16:13,,,40.832535,-73.85797,"(40.832535, -73.85797)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432567,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,2:22,BROOKLYN,11234,40.632847,-73.928375,"(40.632847, -73.928375)",UTICA AVENUE,AVENUE H,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4432233,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,14:55,QUEENS,11379,40.71283,-73.87821,"(40.71283, -73.87821)",,,74-04 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Illnes,,,,,4432307,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,23:45,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432695,Sedan,,,, +06/29/2021,10:15,MANHATTAN,10003,40.730007,-73.99292,"(40.730007, -73.99292)",,,741 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4432673,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,6:40,MANHATTAN,10032,40.83089,-73.941376,"(40.83089, -73.941376)",SAINT NICHOLAS AVENUE,WEST 155 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432184,Taxi,,,, +06/22/2021,13:05,MANHATTAN,10014,40.736412,-74.00195,"(40.736412, -74.00195)",WAVERLY PLACE,WEST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432984,Sedan,,,, +06/27/2021,8:00,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433077,Tow Truck,Sedan,,, +06/29/2021,22:59,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432797,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,17:45,,,40.68138,-73.95352,"(40.68138, -73.95352)",HALSEY STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4433151,Sedan,,,, +06/29/2021,20:23,MANHATTAN,10029,40.798565,-73.94799,"(40.798565, -73.94799)",,,1345 5 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432457,Sedan,Taxi,,, +06/29/2021,17:00,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432900,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,15:35,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432907,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,1:05,QUEENS,11420,40.686497,-73.80805,"(40.686497, -73.80805)",,,109-58 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4431987,Sedan,Sedan,,, +06/19/2021,21:56,BROOKLYN,11207,40.655037,-73.88797,"(40.655037, -73.88797)",,,963 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4433030,Sedan,Sedan,,, +06/29/2021,8:20,QUEENS,11377,40.76214,-73.90191,"(40.76214, -73.90191)",,,26-45 BROOKLYN QUEENS EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432496,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,7:20,MANHATTAN,10001,40.75414,-74.0059,"(40.75414, -74.0059)",,,677 WEST 30 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432518,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,14:35,,,40.62308,-74.1759,"(40.62308, -74.1759)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4433213,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/28/2021,19:27,BROOKLYN,11218,40.6329,-73.97264,"(40.6329, -73.97264)",,,3916 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432978,Sedan,Sedan,,, +06/29/2021,8:50,,,40.684166,-73.92931,"(40.684166, -73.92931)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432398,Sedan,Taxi,,, +07/04/2022,22:58,BRONX,10473,40.82143,-73.87941,"(40.82143, -73.87941)",STORY AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543957,Pick-up Truck,,,, +06/29/2021,18:40,QUEENS,11416,40.67928,-73.86047,"(40.67928, -73.86047)",77 STREET,LIBERTY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432428,Sedan,Sedan,Sedan,, +06/29/2021,15:20,BROOKLYN,11208,40.681686,-73.871574,"(40.681686, -73.871574)",ATLANTIC AVENUE,CRESCENT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433014,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,3:20,,,40.713135,-74.00407,"(40.713135, -74.00407)",CENTRE STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4433158,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,9:00,BRONX,10456,40.829697,-73.91313,"(40.829697, -73.91313)",EAST 166 STREET,TELLER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432285,Sedan,E-Bike,,, +06/29/2021,0:15,BROOKLYN,11204,40.612175,-73.99397,"(40.612175, -73.99397)",BAY RIDGE PARKWAY,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432152,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,15:10,MANHATTAN,10001,40.74555,-73.98934,"(40.74555, -73.98934)",,,41 WEST 28 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432625,Sedan,,,, +06/29/2021,17:35,,,40.621857,-73.93823,"(40.621857, -73.93823)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432759,Box Truck,Sedan,,, +06/29/2021,16:30,BROOKLYN,11219,40.63011,-74.01001,"(40.63011, -74.01001)",FORT HAMILTON PARKWAY,66 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432378,Sedan,Pick-up Truck,,, +06/29/2021,17:00,QUEENS,11375,40.726295,-73.84104,"(40.726295, -73.84104)",69 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432359,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,9:30,QUEENS,11367,40.720684,-73.81868,"(40.720684, -73.81868)",MAIN STREET,77 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432652,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,12:00,BROOKLYN,11230,40.6251,-73.962036,"(40.6251, -73.962036)",,,1422 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432998,Carry All,,,, +06/29/2021,22:53,BROOKLYN,11209,40.61983,-74.02957,"(40.61983, -74.02957)",4 AVENUE,90 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4432416,Bike,,,, +06/29/2021,15:00,BROOKLYN,11237,40.705658,-73.93171,"(40.705658, -73.93171)",MORGAN AVENUE,GRATTAN STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432461,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,1:05,,,40.879383,-73.82544,"(40.879383, -73.82544)",CARVER LOOP,COOP CITY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432927,Sedan,Sedan,,, +06/29/2021,6:15,MANHATTAN,10001,40.747894,-73.989174,"(40.747894, -73.989174)",WEST 31 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4432871,Taxi,Sedan,,, +06/23/2021,19:18,MANHATTAN,10029,40.795006,-73.9485,"(40.795006, -73.9485)",,,1618 MADISON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433139,Sedan,Bike,,, +06/26/2021,1:53,MANHATTAN,10029,40.792927,-73.94791,"(40.792927, -73.94791)",EAST 106 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433206,Sedan,Sedan,,, +06/29/2021,16:55,QUEENS,11103,40.762386,-73.911804,"(40.762386, -73.911804)",30 AVENUE,44 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432503,Sedan,E-Bike,,, +06/23/2022,8:20,QUEENS,11433,40.6947,-73.78343,"(40.6947, -73.78343)",110 ROAD,169 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544085,Bus,Sedan,,, +06/29/2021,23:42,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",RYER AVENUE,EAST 181 STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unsafe Speed,,,,4432476,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,0:00,,,40.63844,-74.036766,"(40.63844, -74.036766)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4432406,Motorcycle,,,, +06/27/2021,20:30,,,40.691948,-73.939835,"(40.691948, -73.939835)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433089,Sedan,,,, +06/29/2021,21:00,MANHATTAN,10028,40.775562,-73.95035,"(40.775562, -73.95035)",1 AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432828,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,12:45,MANHATTAN,10036,40.757538,-73.98956,"(40.757538, -73.98956)",,,668 8 AVENUE,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432862,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/22/2021,16:50,BROOKLYN,11222,40.734447,-73.95496,"(40.734447, -73.95496)",FREEMAN STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4432888,Sedan,Chassis Cab,,, +06/29/2021,18:41,,,40.83694,-73.927124,"(40.83694, -73.927124)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432439,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/04/2022,4:00,,,40.696423,-73.81328,"(40.696423, -73.81328)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543506,Sedan,Sedan,,, +06/29/2022,4:59,MANHATTAN,10026,40.80202,-73.94969,"(40.80202, -73.94969)",WEST 116 STREET,LENOX AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543972,Sedan,E-Scooter,,, +07/04/2022,8:30,,,40.843296,-73.917816,"(40.843296, -73.917816)",MACOMBS ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4543485,Motorcycle,,,, +07/04/2022,2:15,,,40.68783,-73.74973,"(40.68783, -73.74973)",122 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4543178,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,23:25,BRONX,10469,40.87307,-73.85041,"(40.87307, -73.85041)",GIVAN AVENUE,BOUCK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4544000,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,19:02,BRONX,10473,40.814728,-73.85919,"(40.814728, -73.85919)",,,461 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543372,Sedan,Sedan,,, +07/04/2022,21:55,,,40.684814,-73.98353,"(40.684814, -73.98353)",DEAN STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4543634,Sedan,Bike,,, +07/04/2022,15:00,QUEENS,11412,40.69168,-73.75127,"(40.69168, -73.75127)",200 STREET,119 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544073,Sedan,Motorbike,,, +07/03/2022,15:45,,,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543935,Sedan,E-Bike,,, +07/04/2022,11:30,MANHATTAN,10033,40.84582,-73.9335,"(40.84582, -73.9335)",,,506 WEST 177 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543648,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,9:57,,,40.628185,-74.14792,"(40.628185, -74.14792)",MORNINGSTAR ROAD,DIXON AVENUE,,0,0,0,0,0,0,0,0,,,,,,4543821,,,,, +10/19/2021,18:55,QUEENS,11379,,,,METROPOLITAN AVENUE,73 PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469438,Sedan,Sedan,,, +07/04/2022,5:00,BROOKLYN,11226,40.641354,-73.9534,"(40.641354, -73.9534)",,,376 EAST 25 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543572,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,17:48,QUEENS,11373,40.73363,-73.87477,"(40.73363, -73.87477)",,,87-21 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543444,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,8:40,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543991,Sedan,,,, +07/02/2022,18:35,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544013,Sedan,Sedan,,, +06/21/2022,20:15,MANHATTAN,10039,40.82382,-73.93831,"(40.82382, -73.93831)",,,206 WEST 148 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Other Vehicular,,,,4543844,Van,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,17:45,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543917,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,23:15,QUEENS,11365,40.73186,-73.8108,"(40.73186, -73.8108)",,,67-15 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543683,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2022,4:45,BROOKLYN,11207,40.663292,-73.89313,"(40.663292, -73.89313)",,,614 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543803,Sedan,Pick-up Truck,,, +06/29/2022,10:24,,,40.662575,-73.93448,"(40.662575, -73.93448)",EAST NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Turning Improperly,,,,4544095,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +06/29/2022,1:00,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543964,Sedan,Taxi,,, +07/04/2022,15:40,MANHATTAN,10037,40.809494,-73.935814,"(40.809494, -73.935814)",PARK AVENUE,EAST 132 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4543816,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,11:38,BRONX,10474,40.8118,-73.88865,"(40.8118, -73.88865)",RANDALL AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543967,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,3:10,,,40.648254,-73.971405,"(40.648254, -73.971405)",CATON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543134,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,20:00,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Defective,Following Too Closely,,,,4544064,Pick-up Truck,Sedan,,, +06/03/2022,7:15,,,40.677563,-73.93309,"(40.677563, -73.93309)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4543993,Sedan,,,, +07/04/2022,5:00,QUEENS,11416,40.685017,-73.84336,"(40.685017, -73.84336)",98 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4543501,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,13:20,STATEN ISLAND,10304,40.602425,-74.091354,"(40.602425, -74.091354)",TARGEE STREET,VENICE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543859,Sedan,,,, +07/04/2022,7:00,,,40.72935,-73.910194,"(40.72935, -73.910194)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543356,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,18:00,STATEN ISLAND,10308,40.550434,-74.13608,"(40.550434, -74.13608)",HYLAN BOULEVARD,AINSWORTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543853,Pick-up Truck,,,, +07/04/2022,16:46,BROOKLYN,11236,40.641,-73.91185,"(40.641, -73.91185)",,,622 EAST 86 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544026,Sedan,Sedan,,, +07/02/2022,19:30,,,40.585335,-73.98749,"(40.585335, -73.98749)",CROPSEY AVENUE,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,13:15,MANHATTAN,10028,,,,EAST 86 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468916,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,22:07,QUEENS,11420,40.680042,-73.80894,"(40.680042, -73.80894)",115 AVENUE,132 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543695,Sedan,,,, +07/04/2022,17:42,BROOKLYN,11219,40.631104,-73.9962,"(40.631104, -73.9962)",13 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543753,Box Truck,Taxi,,, +07/03/2022,19:37,BRONX,10468,40.875675,-73.90069,"(40.875675, -73.90069)",WEST 231 STREET,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543911,Sedan,Sedan,,, +07/01/2022,20:45,QUEENS,11377,40.75141,-73.90257,"(40.75141, -73.90257)",,,59-16 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,22:05,BRONX,10465,40.845085,-73.815735,"(40.845085, -73.815735)",,,1470 OUTLOOK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4543385,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,20:35,,,40.625652,-73.930534,"(40.625652, -73.930534)",AVENUE K,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4543435,Sedan,Sedan,Sedan,Sedan, +07/04/2022,12:35,BRONX,10452,40.8283,-73.92447,"(40.8283, -73.92447)",GERARD AVENUE,EAST 162 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543293,Bus,Sedan,,, +07/02/2022,19:00,QUEENS,11691,40.602432,-73.76041,"(40.602432, -73.76041)",DICKENS STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,5:12,,,40.852818,-73.90476,"(40.852818, -73.90476)",CRESTON AVENUE,EAST BURNSIDE AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543838,Taxi,Bike,,, +07/04/2022,12:00,QUEENS,11101,40.741024,-73.9547,"(40.741024, -73.9547)",,,51-98 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4543610,Sedan,,,, +06/26/2022,23:30,BROOKLYN,11211,40.707523,-73.96115,"(40.707523, -73.96115)",ROEBLING STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544045,E-Bike,,,, +07/04/2022,14:59,BROOKLYN,11212,40.66307,-73.911964,"(40.66307, -73.911964)",,,713 BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543398,Pick-up Truck,Sedan,,, +07/04/2022,14:40,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543445,Sedan,,,, +06/30/2021,1:26,,,,,,NARROWS ROAD SOUTH,HYLAN BOULEVARD,,3,0,0,0,0,0,3,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4432538,Sedan,Sedan,,, +10/19/2021,6:58,,,,,,LINDEN PLACE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468919,Motorcycle,Sedan,,, +01/11/2022,14:30,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493882,Carry All,Sedan,,, +09/14/2021,7:45,,,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4459271,Taxi,,,, +01/11/2022,3:00,,,40.6041,-74.06908,"(40.6041, -74.06908)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4494413,Pick-up Truck,,,, +01/10/2022,16:32,,,40.612328,-74.13418,"(40.612328, -74.13418)",VICTORY BOULEVARD,BYRNE AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4494420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/24/2021,6:39,,,40.69603,-73.943535,"(40.69603, -73.943535)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4401758,Taxi,Bike,,, +10/09/2021,18:30,,,40.68578,-73.9544,"(40.68578, -73.9544)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470373,Sedan,Sedan,,, +01/10/2022,14:00,,,40.625103,-74.14877,"(40.625103, -74.14877)",FOREST AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494419,Motorcycle,Sedan,,, +01/07/2021,15:35,QUEENS,11373,40.741486,-73.873924,"(40.741486, -73.873924)",91 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494410,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,15:22,,,40.717175,-74.01288,"(40.717175, -74.01288)",WEST STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494418,Bus,Pick-up Truck,,, +07/15/2021,17:00,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4438502,Dump,Sedan,,, +01/14/2021,0:49,MANHATTAN,10019,40.76531,-73.99134,"(40.76531, -73.99134)",WEST 51 STREET,10 AVENUE,,2,0,1,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4494431,Sedan,Sedan,,, +01/11/2022,3:00,,,40.6041,-74.06908,"(40.6041, -74.06908)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4494414,Sedan,,,, +12/25/2021,5:15,QUEENS,11412,40.70537,-73.775826,"(40.70537, -73.775826)",183 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4494429,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,13:50,BROOKLYN,11203,40.64668,-73.92403,"(40.64668, -73.92403)",EAST 56 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504522,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,15:00,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504251,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/17/2022,19:22,QUEENS,11385,40.700123,-73.90622,"(40.700123, -73.90622)",CYPRESS AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4504818,Sedan,Sedan,,, +01/28/2022,13:40,BROOKLYN,11219,40.62779,-74.00065,"(40.62779, -74.00065)",,,1281 TABOR COURT,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4504777,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,16:43,,,,,,PELHAM PARKWAY SOUTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,6:30,MANHATTAN,10005,40.704823,-74.006905,"(40.704823, -74.006905)",FRONT STREET,WALL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543921,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,13:10,QUEENS,11694,40.578888,-73.83669,"(40.578888, -73.83669)",,,133 BEACH 116 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4543875,PK,Sedan,,, +07/04/2022,12:05,BRONX,10460,40.835884,-73.88341,"(40.835884, -73.88341)",BOONE AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543887,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,10:00,,,40.665848,-73.75187,"(40.665848, -73.75187)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543284,Sedan,,,, +07/04/2022,23:59,BROOKLYN,11207,40.66701,-73.9004,"(40.66701, -73.9004)",SNEDIKER AVENUE,BLAKE AVENUE,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,Unspecified,,,4543782,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/04/2022,7:10,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543349,Sedan,,,, +06/12/2022,7:17,MANHATTAN,10030,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543843,Sedan,Box Truck,,, +07/04/2022,1:35,BROOKLYN,11236,40.641853,-73.9078,"(40.641853, -73.9078)",,,1124 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543219,Convertible,Sedan,Sedan,, +07/04/2022,8:45,BROOKLYN,11225,40.659855,-73.9606,"(40.659855, -73.9606)",,,568 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543461,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,21:15,MANHATTAN,10011,,,,Avenue of the americas,16 street,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517617,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,23:57,BROOKLYN,11225,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4543870,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,17:15,QUEENS,11435,40.69911,-73.81233,"(40.69911, -73.81233)",138 PLACE,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485988,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,6:54,,,40.698624,-73.73223,"(40.698624, -73.73223)",115 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485485,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,10:45,BRONX,10458,40.85703,-73.88534,"(40.85703, -73.88534)",HUGHES AVENUE,EAST 189 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485934,Sedan,Pick-up Truck,,, +12/08/2021,15:40,BRONX,10473,40.82066,-73.868355,"(40.82066, -73.868355)",,,1707 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486108,Sedan,,,, +12/11/2021,20:30,QUEENS,11102,40.773533,-73.92309,"(40.773533, -73.92309)",,,25-07 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485572,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,17:45,,,40.8117585,-73.9314396,"(40.8117585, -73.9314396)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4468993,Tanker,Sedan,,, +12/11/2021,5:23,BRONX,10451,40.825455,-73.91317,"(40.825455, -73.91317)",EAST 163 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485655,Sedan,Sedan,,, +11/28/2021,4:40,,,40.85208,-73.82685,"(40.85208, -73.82685)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486066,Station Wagon/Sport Utility Vehicle,Carry All,,, +12/09/2021,16:15,BROOKLYN,11208,40.673008,-73.87038,"(40.673008, -73.87038)",SUTTER AVENUE,PINE STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486025,Sedan,,,, +12/10/2021,12:30,BROOKLYN,11217,40.68496,-73.979744,"(40.68496, -73.979744)",,,537 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486188,Sedan,Box Truck,,, +12/07/2021,17:42,,,,,,MEEKER AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4486276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,20:00,,,40.6190494,-74.1447928,"(40.6190494, -74.1447928)",WILLOWBROOK ROAD,DEVENS STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4469395,Sedan,Sedan,,, +10/14/2021,21:00,,,40.5917631,-73.908294,"(40.5917631, -73.908294)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4469409,Sedan,Sedan,Sedan,, +12/11/2021,17:47,BROOKLYN,11210,40.63771,-73.948166,"(40.63771, -73.948166)",,,1957 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485680,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +12/11/2021,7:44,BROOKLYN,11233,40.67584,-73.91655,"(40.67584, -73.91655)",PACIFIC STREET,SARATOGA AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4485553,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,12:20,BROOKLYN,11214,40.59501,-74.00104,"(40.59501, -74.00104)",,,9000 BAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486160,Sedan,,,, +12/11/2021,19:50,,,40.66629,-73.87268,"(40.66629, -73.87268)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4486008,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/08/2021,20:30,BROOKLYN,11207,40.669228,-73.8962,"(40.669228, -73.8962)",SUTTER AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486017,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,12:09,BROOKLYN,11208,40.659412,-73.8708,"(40.659412, -73.8708)",FLATLANDS AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486036,Sedan,,,, +12/11/2021,13:00,BROOKLYN,11204,40.62202,-73.98726,"(40.62202, -73.98726)",18 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485618,Taxi,,,, +12/11/2021,6:22,,,40.752056,-74.00099,"(40.752056, -74.00099)",WEST 30 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4487006,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/08/2021,22:20,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",UNION AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486969,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,0:28,BROOKLYN,11249,40.718662,-73.9576,"(40.718662, -73.9576)",,,152 NORTH 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486279,Sedan,,,, +12/14/2021,6:55,,,,,,133 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4486563,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,15:30,MANHATTAN,10036,40.75868,-73.983345,"(40.75868, -73.983345)",,,157 WEST 47 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486717,Box Truck,,,, +12/14/2021,14:48,,,,,,GRAND ARMY PLAZA,PLAZA STREET WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4486603,Sedan,Box Truck,,, +12/08/2021,15:41,,,40.725918,-73.89535,"(40.725918, -73.89535)",BORDEN AVENUE,GRAND AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4486929,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,5:31,BRONX,10466,40.883556,-73.84974,"(40.883556, -73.84974)",EAST 224 STREET,LACONIA AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4493866,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,20:00,,,40.682663,-73.77589,"(40.682663, -73.77589)",MARSDEN STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494002,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,15:22,BROOKLYN,11234,40.621216,-73.93539,"(40.621216, -73.93539)",FLATBUSH AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493923,Bus,Sedan,,, +01/11/2022,14:00,MANHATTAN,10038,40.7103,-74.00106,"(40.7103, -74.00106)",,,375 PEARL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494365,Sedan,,,, +01/11/2022,9:10,BRONX,10469,40.87123,-73.85604,"(40.87123, -73.85604)",BOSTON ROAD,BURKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494323,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,6:50,,,40.768013,-73.90423,"(40.768013, -73.90423)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493635,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,16:30,BRONX,10457,40.842754,-73.89359,"(40.842754, -73.89359)",,,1805 CROTONA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4493898,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/11/2022,12:00,,,40.765224,-73.9317,"(40.765224, -73.9317)",21 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4494162,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,15:45,BROOKLYN,11220,40.63752,-74.00533,"(40.63752, -74.00533)",,,862 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493943,Sedan,Sedan,,, +12/04/2021,9:00,STATEN ISLAND,10301,40.62434,-74.09396,"(40.62434, -74.09396)",VICTORY BOULEVARD,THERESA PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494276,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,7:15,BROOKLYN,11219,40.628643,-74.005936,"(40.628643, -74.005936)",65 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493669,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,13:42,,,40.730118,-73.86232,"(40.730118, -73.86232)",63 DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493957,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,20:19,BROOKLYN,11220,40.64801,-74.010994,"(40.64801, -74.010994)",,,4716 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494357,Van,Sedan,Sedan,, +01/08/2022,17:14,QUEENS,11237,40.701923,-73.91217,"(40.701923, -73.91217)",SAINT NICHOLAS,GROVE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494240,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,8:15,,,40.763844,-73.769455,"(40.763844, -73.769455)",41 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493708,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,17:36,QUEENS,11429,40.703857,-73.743645,"(40.703857, -73.743645)",,,113-39 212 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493839,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,22:47,BROOKLYN,11234,40.626537,-73.914894,"(40.626537, -73.914894)",,,1168 EAST 72 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4494028,Sedan,Sedan,,, +01/11/2022,13:18,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494071,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,1:55,BROOKLYN,11220,40.638103,-74.00326,"(40.638103, -74.00326)",9 AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494175,Sedan,Sedan,,, +01/11/2022,17:55,BROOKLYN,11215,40.668365,-73.99362,"(40.668365, -73.99362)",,,552 3 AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494202,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/11/2022,15:00,BROOKLYN,11235,40.59085,-73.94779,"(40.59085, -73.94779)",AVENUE Y,EAST 22 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4493800,Sedan,Sedan,,, +01/11/2022,12:00,,,40.75619,-73.746414,"(40.75619, -73.746414)",CROSS ISLAND PARKWAY,,,5,0,0,0,0,0,5,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4493751,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/11/2022,10:05,,,40.702625,-73.81323,"(40.702625, -73.81323)",139 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493792,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,0:30,,,40.71331,-73.744,"(40.71331, -73.744)",215 STREET,102 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493758,Sedan,,,, +01/11/2022,17:30,,,,,,Baisley Ave,merrill street,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493835,Sedan,Sedan,,, +01/11/2022,8:30,,,,,,MC GUINNESS BLVD SOUTH,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4493720,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/11/2022,15:03,BROOKLYN,11217,40.681286,-73.97543,"(40.681286, -73.97543)",,,231 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494201,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,16:50,,,40.7422,-73.840965,"(40.7422, -73.840965)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4493936,Sedan,Sedan,,, +01/11/2022,19:26,,,40.824554,-73.94196,"(40.824554, -73.94196)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Other Vehicular,,,4493965,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/06/2022,3:40,,,40.730194,-73.887566,"(40.730194, -73.887566)",74 STREET,GRAND AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4494233,Sedan,Sedan,,, +01/11/2022,16:30,,,40.60235,-74.189644,"(40.60235, -74.189644)",CHELSEA ROAD,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494089,Sedan,Tractor Truck Gasoline,,, +01/10/2022,7:49,MANHATTAN,10014,40.729652,-74.00221,"(40.729652, -74.00221)",AVENUE OF THE AMERICAS,DOWNING STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494215,Sedan,Sedan,,, +01/11/2022,8:50,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4493742,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/11/2022,9:40,BRONX,10467,40.877945,-73.86616,"(40.877945, -73.86616)",WHITE PLAINS ROAD,EAST 211 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4493808,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/11/2022,10:00,MANHATTAN,10005,40.707695,-74.01021,"(40.707695, -74.01021)",PINE STREET,NASSAU STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493910,Sedan,,,, +01/11/2022,18:30,QUEENS,11357,40.781673,-73.82733,"(40.781673, -73.82733)",,,141-07 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494070,Sedan,,,, +01/09/2022,16:00,MANHATTAN,10037,40.809196,-73.937126,"(40.809196, -73.937126)",,,68 EAST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494299,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,21:00,,,40.72543,-73.99678,"(40.72543, -73.99678)",WEST HOUSTON STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543825,Sedan,Bike,,, +01/11/2022,5:20,,,40.70276,-73.86323,"(40.70276, -73.86323)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493884,Bus,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:38,BROOKLYN,11207,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,HALSEY STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4493770,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,20:23,MANHATTAN,10011,40.73656,-74.0011,"(40.73656, -74.0011)",7 AVENUE SOUTH,WEST 11 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4494266,Sedan,Sedan,Sedan,Sedan, +01/11/2022,4:34,BRONX,10459,40.827454,-73.88797,"(40.827454, -73.88797)",,,1131 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4494155,Sedan,Sedan,,, +01/04/2022,7:00,,,40.81094,-73.94318,"(40.81094, -73.94318)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,18:27,QUEENS,11375,40.71201,-73.84994,"(40.71201, -73.84994)",MANSE STREET,71 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4494256,Motorscooter,,,, +01/09/2022,22:50,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",WALTON AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494387,Sedan,Sedan,Sedan,, +01/11/2022,22:39,BROOKLYN,11230,40.619873,-73.96527,"(40.619873, -73.96527)",AVENUE L,EAST 10 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493929,Sedan,Sedan,,, +01/04/2022,0:01,,,,,,EXTERIOR STREET,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494330,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,12:00,BROOKLYN,11232,40.646927,-74.00126,"(40.646927, -74.00126)",42 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493959,Sedan,,,, +01/11/2022,21:32,QUEENS,11417,40.67989,-73.85051,"(40.67989, -73.85051)",,,88-02 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493893,,,,, +01/11/2022,10:33,,,,,,bruckner expressway service ramp,brush avenue,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494043,Sedan,,,, +01/11/2022,12:55,,,,,,GRAND CENTRAL PARKWAY,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4493847,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/10/2022,13:00,BROOKLYN,11213,40.67221,-73.92802,"(40.67221, -73.92802)",PARK PLACE,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494290,Sedan,,,, +01/11/2022,13:01,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4493977,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,15:30,BRONX,10457,40.851566,-73.88772,"(40.851566, -73.88772)",,,2231 BELMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493899,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,18:30,MANHATTAN,10032,40.840195,-73.94307,"(40.840195, -73.94307)",FORT WASHINGTON AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4493982,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,6:15,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432879,Sedan,Sedan,,, +01/11/2022,13:26,QUEENS,11413,40.668186,-73.75211,"(40.668186, -73.75211)",,,142-08 224 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493944,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,15:48,,,40.59068,-73.78878,"(40.59068, -73.78878)",LARKIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494345,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,2:11,BROOKLYN,11208,40.679405,-73.88069,"(40.679405, -73.88069)",,,245 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4493642,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,17:55,BROOKLYN,11208,40.676712,-73.87765,"(40.676712, -73.87765)",,,120 MILFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4493876,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,3:20,BRONX,10452,40.830994,-73.928116,"(40.830994, -73.928116)",WEST 162 STREET,ANDERSON AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4494322,Garbage or Refuse,Sedan,,, +01/11/2022,0:07,BRONX,10463,40.887253,-73.902374,"(40.887253, -73.902374)",WEST 240 STREET,IRWIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493689,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/13/2021,12:46,,,,,,KISSENA BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494360,Sedan,Tractor Truck Diesel,,, +01/11/2022,20:50,,,40.73652,-73.8701,"(40.73652, -73.8701)",92 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4493845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,19:59,BRONX,10462,40.84274,-73.854485,"(40.84274, -73.854485)",,,1514 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493952,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +01/11/2022,22:31,BROOKLYN,11229,40.60389,-73.95349,"(40.60389, -73.95349)",AVENUE S,EAST 19 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,5:50,,,40.703083,-73.85766,"(40.703083, -73.85766)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4494239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/12/2021,14:35,BROOKLYN,11233,40.679146,-73.92657,"(40.679146, -73.92657)",FULTON STREET,SUMPTER STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4494285,Sedan,Sedan,,, +01/11/2022,15:58,BROOKLYN,11234,40.635452,-73.9245,"(40.635452, -73.9245)",,,5417 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493925,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:40,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",225 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493761,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,12:00,,,40.59679,-73.97494,"(40.59679, -73.97494)",VILLAGE ROAD NORTH,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493794,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,16:48,BROOKLYN,11206,40.708275,-73.93875,"(40.708275, -73.93875)",,,7 BUSHWICK PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493867,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,22:25,BROOKLYN,11213,40.66545,-73.928665,"(40.66545, -73.928665)",,,368 ROCHESTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494227,Sedan,,,, +01/11/2022,2:45,QUEENS,11421,40.691563,-73.86563,"(40.691563, -73.86563)",76 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493745,Sedan,,,, +01/11/2022,17:20,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4494001,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/31/2021,11:15,QUEENS,11103,40.755394,-73.911964,"(40.755394, -73.911964)",49 STREET,NEWTOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494156,Sedan,,,, +01/11/2022,10:53,BRONX,10460,40.840546,-73.86649,"(40.840546, -73.86649)",,,1838 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4493786,Sedan,Sedan,Sedan,, +01/11/2022,17:30,BRONX,10455,40.816307,-73.90806,"(40.816307, -73.90806)",JACKSON AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493906,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,15:19,,,40.832897,-73.862274,"(40.832897, -73.862274)",WESTCHESTER AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494302,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,17:53,QUEENS,11375,40.7174,-73.8572,"(40.7174, -73.8572)",SELFRIDGE STREET,YELLOWSTONE BOULEVARD,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4494251,4 dr sedan,,,, +07/04/2022,3:15,,,40.747974,-73.75999,"(40.747974, -73.75999)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543378,Taxi,,,, +06/30/2021,8:30,,,,,,WEST 155 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4432950,Sedan,,,, +10/20/2021,20:00,,,40.8044198,-73.9553688,"(40.8044198, -73.9553688)",WEST 116 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passenger Distraction,,,,4469294,commercial,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,22:19,BRONX,10456,40.830334,-73.91895,"(40.830334, -73.91895)",EAST 165 STREET,SHERIDAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4494386,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,12:45,QUEENS,11423,40.714436,-73.759995,"(40.714436, -73.759995)",199 STREET,93 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4494234,Pick-up Truck,Sedan,,, +01/11/2022,15:56,BRONX,10459,40.822144,-73.89491,"(40.822144, -73.89491)",,,975 TIFFANY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493859,Bus,Sedan,,, +01/11/2022,10:50,MANHATTAN,10019,40.764484,-73.9816,"(40.764484, -73.9816)",,,213 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493917,Van,PK,,, +01/01/2022,10:00,QUEENS,11368,40.753456,-73.855316,"(40.753456, -73.855316)",,,38-01 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494293,Sedan,,,, +01/11/2022,13:33,,,40.606415,-74.162285,"(40.606415, -74.162285)",,,1725 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:56,QUEENS,11434,40.680805,-73.76389,"(40.680805, -73.76389)",MERRICK BOULEVARD,129 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493699,Sedan,,,, +01/11/2022,23:00,STATEN ISLAND,10306,40.57862,-74.10168,"(40.57862, -74.10168)",BEDFORD AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494214,Sedan,,,, +01/11/2022,10:20,,,40.540634,-74.18552,"(40.540634, -74.18552)",DRUMGOOLE ROAD EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493836,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,14:00,QUEENS,11101,40.75069,-73.91771,"(40.75069, -73.91771)",,,45-02 37 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494160,Box Truck,Sedan,,, +01/11/2022,8:15,,,40.709305,-73.84369,"(40.709305, -73.84369)",METROPOLITAN AVENUE,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Obstruction/Debris,View Obstructed/Limited,,,,4494013,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,21:06,MANHATTAN,10013,40.716637,-73.99729,"(40.716637, -73.99729)",,,170 CANAL STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4493935,Station Wagon/Sport Utility Vehicle,Moped,,, +01/11/2022,6:37,BROOKLYN,11206,40.700058,-73.93279,"(40.700058, -73.93279)",EVERGREEN AVENUE,GEORGE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493964,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/07/2021,0:00,,,40.831264,-73.87885,"(40.831264, -73.87885)",BOYNTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494295,Sedan,,,, +01/11/2022,15:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493881,Station Wagon/Sport Utility Vehicle,,,, +12/31/2021,14:23,BRONX,10461,40.84139,-73.83468,"(40.84139, -73.83468)",MAYFLOWER AVENUE,WELLMAN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4494228,Sedan,,,, +01/10/2022,10:15,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494257,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:00,BROOKLYN,11212,40.667366,-73.92274,"(40.667366, -73.92274)",UNION STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493915,Station Wagon/Sport Utility Vehicle,Bus,,, +01/01/2022,10:00,BROOKLYN,11219,40.6395,-74.00106,"(40.6395, -74.00106)",,,908 50 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494174,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,7:30,BROOKLYN,11203,40.64468,-73.94215,"(40.64468, -73.94215)",CORTELYOU ROAD,EAST 37 STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4493715,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,21:06,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493970,Sedan,Sedan,,, +01/11/2022,15:32,BROOKLYN,11223,40.598312,-73.96119,"(40.598312, -73.96119)",CONEY ISLAND AVENUE,AVENUE U,,1,0,0,0,1,0,0,0,Unspecified,,,,,4493799,Station Wagon/Sport Utility Vehicle,Bike,,, +01/11/2022,19:00,MANHATTAN,10032,40.838127,-73.946526,"(40.838127, -73.946526)",,,900 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493983,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,18:44,BROOKLYN,11208,40.6905,-73.87096,"(40.6905, -73.87096)",JAMAICA AVENUE,LINCOLN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4493875,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/11/2022,15:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4493969,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +01/05/2022,6:57,BRONX,10451,40.82406,-73.92815,"(40.82406, -73.92815)",EAST 153 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,4494329,Sedan,Box Truck,Ambulance,Station Wagon/Sport Utility Vehicle,Box Truck +06/30/2021,19:09,BROOKLYN,11226,40.64422,-73.95989,"(40.64422, -73.95989)",,,755 OCEAN AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4433003,Sedan,Bike,,, +01/11/2022,9:22,BROOKLYN,11218,40.643646,-73.989784,"(40.643646, -73.989784)",FORT HAMILTON PARKWAY,38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493928,Taxi,Van,,, +01/08/2022,16:00,,,40.780125,-73.95304,"(40.780125, -73.95304)",EAST 88 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494349,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,5:16,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4493652,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,20:26,,,40.682846,-73.95382,"(40.682846, -73.95382)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433091,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/11/2022,14:00,,,40.73594,-73.85887,"(40.73594, -73.85887)",HORACE HARDING EXPRESSWAY,99 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494250,Sedan,,,, +01/11/2022,22:01,BRONX,10468,40.862694,-73.90251,"(40.862694, -73.90251)",,,24 WEST FORDHAM ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494157,Sedan,Sedan,,, +01/11/2022,12:20,,,40.797367,-73.96053,"(40.797367, -73.96053)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4493783,Sedan,E-Bike,,, +01/11/2022,13:32,BRONX,10462,40.838318,-73.863655,"(40.838318, -73.863655)",,,1507 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493787,Sedan,Sedan,,, +01/11/2022,14:46,BRONX,10461,40.837177,-73.8342,"(40.837177, -73.8342)",,,3175 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4494044,Sedan,,,, +02/12/2021,23:10,,,40.678154,-73.94416,"(40.678154, -73.94416)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4391796,Sedan,Sedan,,, +01/11/2022,11:41,QUEENS,11105,40.77351,-73.91168,"(40.77351, -73.91168)",,,33-14 23 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,15:40,QUEENS,11691,40.6048,-73.74975,"(40.6048, -73.74975)",,,11-40 BAYPORT PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494140,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,12:30,,,40.61622,-74.08324,"(40.61622, -74.08324)",VANDERBILT AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4493858,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,11:10,BRONX,10467,40.883953,-73.86262,"(40.883953, -73.86262)",,,3813 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494197,SELF,,,, +01/11/2022,9:30,QUEENS,11368,40.7435,-73.86599,"(40.7435, -73.86599)",,,97-31 CORONA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493730,Ambulance,Sedan,,, +01/11/2022,10:30,,,40.827595,-73.85004,"(40.827595, -73.85004)",CASTLE HILL AVENUE,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494045,Sedan,,,, +01/09/2022,7:41,MANHATTAN,10036,40.7591,-73.99214,"(40.7591, -73.99214)",9 AVENUE,WEST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4494187,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,8:30,STATEN ISLAND,10305,40.601204,-74.06509,"(40.601204, -74.06509)",LILY POND AVENUE,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494220,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/11/2022,4:15,,,40.85947,-73.915726,"(40.85947, -73.915726)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4493746,Tanker,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,0:53,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493805,Sedan,,,, +01/11/2022,15:15,QUEENS,11367,40.741043,-73.825134,"(40.741043, -73.825134)",MAIN STREET,62 AVENUE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4493844,Sedan,Sedan,,, +01/11/2022,13:20,BROOKLYN,11210,40.638603,-73.94827,"(40.638603, -73.94827)",NOSTRAND AVENUE,FOSTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493954,,,,, +01/09/2022,20:30,MANHATTAN,10031,40.82943,-73.94196,"(40.82943, -73.94196)",SAINT NICHOLAS AVENUE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494245,Pick-up Truck,,,, +01/11/2022,8:30,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4493760,Sedan,,,, +01/11/2022,16:24,,,40.77323,-73.76513,"(40.77323, -73.76513)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493869,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:25,,,40.589207,-73.804474,"(40.589207, -73.804474)",AQUATIC DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493712,Sedan,Sedan,,, +01/11/2022,19:44,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493837,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,20:32,,,40.793556,-73.967026,"(40.793556, -73.967026)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4494035,Sedan,,,, +01/11/2022,8:25,,,40.70128,-73.93952,"(40.70128, -73.93952)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493821,Box Truck,Sedan,,, +01/04/2022,2:50,BRONX,10451,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,SHERMAN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4494325,Sedan,Sedan,,, +01/02/2022,1:55,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4494198,Sedan,Sedan,,, +01/11/2022,17:00,BRONX,10457,40.84549,-73.888985,"(40.84549, -73.888985)",,,740 EAST 178 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493896,Bus,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:40,,,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494123,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/11/2022,16:35,STATEN ISLAND,10305,40.60194,-74.08219,"(40.60194, -74.08219)",CLOVE ROAD,FINGERBOARD ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494213,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,15:27,BROOKLYN,11220,40.63491,-74.01017,"(40.63491, -74.01017)",61 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493939,Sedan,Sedan,,, +01/11/2022,15:40,,,40.684963,-73.935455,"(40.684963, -73.935455)",LEWIS AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494283,Sedan,E-Bike,,, +01/11/2022,8:30,,,40.63671,-74.01908,"(40.63671, -74.01908)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493887,Sedan,Bus,,, +01/10/2022,15:02,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4494311,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,20:30,BROOKLYN,11207,40.663918,-73.88899,"(40.663918, -73.88899)",RIVERDALE AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493880,Sedan,,,, +01/11/2022,9:20,BRONX,10465,40.814545,-73.81506,"(40.814545, -73.81506)",,,2894 SCHURZ AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4493690,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,18:00,,,40.78389,-73.950294,"(40.78389, -73.950294)",EAST 94 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494350,Sedan,Box Truck,,, +01/11/2022,0:58,BRONX,10473,40.821297,-73.84728,"(40.821297, -73.84728)",,,2237 SEWARD AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493796,Sedan,E-Scooter,,, +01/11/2022,22:55,MANHATTAN,10019,40.76261,-73.98686,"(40.76261, -73.98686)",,,317 WEST 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493918,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/11/2022,7:00,QUEENS,11375,40.728954,-73.847565,"(40.728954, -73.847565)",108 STREET,67 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494253,Sedan,,,, +01/11/2022,10:00,BROOKLYN,11218,40.638523,-73.98131,"(40.638523, -73.98131)",15 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493926,Pick-up Truck,Sedan,Sedan,, +01/11/2022,18:30,QUEENS,11411,40.686966,-73.735306,"(40.686966, -73.735306)",,,120-52 229 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494012,Sedan,,,, +01/05/2022,6:00,QUEENS,11375,40.72098,-73.840866,"(40.72098, -73.840866)",110 STREET,72 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494258,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,12:20,BROOKLYN,11222,40.72125,-73.93651,"(40.72125, -73.93651)",VANDERVORT AVENUE,DIVISION PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4493904,Dump,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,18:50,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493861,Pick-up Truck,Box Truck,,, +12/21/2021,14:05,BRONX,10455,40.810635,-73.90176,"(40.810635, -73.90176)",,,523 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494336,Sedan,,,, +01/08/2022,10:00,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Following Too Closely,View Obstructed/Limited,,,4494385,Station Wagon/Sport Utility Vehicle,Box Truck,Taxi,, +01/11/2022,20:09,BRONX,10459,40.820145,-73.89609,"(40.820145, -73.89609)",,,915 KELLY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494077,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,13:14,QUEENS,11385,40.70281,-73.9077,"(40.70281, -73.9077)",SENECA AVENUE,PALMETTO STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494235,,,,, +01/11/2022,21:24,MANHATTAN,10012,40.722034,-73.99651,"(40.722034, -73.99651)",,,50 SPRING STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493934,Bus,Sedan,,, +01/11/2022,21:50,,,,,,THROGS NECK EXPY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,Unspecified,,,4493971,Sedan,Sedan,Sedan,, +01/10/2022,13:50,,,40.69037,-73.92755,"(40.69037, -73.92755)",PATCHEN AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4494292,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,13:30,MANHATTAN,10003,40.735714,-73.98704,"(40.735714, -73.98704)",,,134 EAST 17 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517629,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,15:06,BROOKLYN,11234,40.628643,-73.92019,"(40.628643, -73.92019)",EAST 58 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544011,Sedan,Pedicab,,, +01/11/2022,13:44,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",111 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493988,Sedan,Sedan,,, +01/07/2022,19:15,BRONX,10473,40.819878,-73.85777,"(40.819878, -73.85777)",WHITE PLAINS ROAD,SEWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4494296,TRAILER,Pick-up Truck,Sedan,, +01/11/2022,1:15,MANHATTAN,10037,40.809494,-73.935814,"(40.809494, -73.935814)",PARK AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4493659,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,8:30,,,40.683037,-73.9261,"(40.683037, -73.9261)",PATCHEN AVENUE,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494340,Sedan,,,, +01/11/2022,18:00,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4493886,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,7:45,QUEENS,11106,40.761147,-73.92497,"(40.761147, -73.92497)",,,32-76 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494158,Sedan,,,, +01/11/2022,13:53,BRONX,10473,40.823257,-73.84902,"(40.823257, -73.84902)",CASTLE HILL AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493788,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,18:16,BRONX,10468,40.86469,-73.89959,"(40.86469, -73.89959)",,,2543 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494146,Sedan,,,, +12/19/2021,12:51,BROOKLYN,11215,40.663395,-73.986595,"(40.663395, -73.986595)",,,230 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494391,Sedan,,,, +01/10/2022,20:33,QUEENS,11374,40.72963,-73.85558,"(40.72963, -73.85558)",65 AVENUE,99 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494254,Sedan,,,, +01/11/2022,11:35,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4493938,Station Wagon/Sport Utility Vehicle,PK,,, +01/11/2022,17:30,,,40.696983,-73.935234,"(40.696983, -73.935234)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493963,Sedan,,,, +01/10/2022,10:13,BRONX,10461,40.839478,-73.84598,"(40.839478, -73.84598)",,,1472 SAINT PETERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4494229,Sedan,Sedan,Sedan,Sedan, +01/11/2022,23:50,QUEENS,11378,40.71976,-73.906845,"(40.71976, -73.906845)",,,59-39 58 DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494040,Sedan,Sedan,,, +01/11/2022,16:15,QUEENS,11357,40.797737,-73.82699,"(40.797737, -73.82699)",WHITESTONE EXPRESSWAY,WHITESTONE BRIDGE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4493819,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,17:06,BROOKLYN,11232,40.649303,-74.0203,"(40.649303, -74.0203)",1 AVENUE,52 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4493851,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,12:05,QUEENS,11101,40.747528,-73.94123,"(40.747528, -73.94123)",JACKSON AVENUE,43 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493735,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,23:05,,,40.680115,-73.7287,"(40.680115, -73.7287)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494051,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,15:00,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493914,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,11:30,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4493822,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,16:23,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4493862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,23:20,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4494236,Sedan,,,, +01/09/2022,22:25,MANHATTAN,10001,40.746487,-73.99543,"(40.746487, -73.99543)",,,236 WEST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494189,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,13:00,BROOKLYN,11215,40.663876,-73.97748,"(40.663876, -73.97748)",,,150 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494199,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,10:46,QUEENS,11369,40.763683,-73.87927,"(40.763683, -73.87927)",ASTORIA BOULEVARD,90 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493724,Sedan,Armored Truck,,, +01/11/2022,17:00,,,,,,HUTCHINSON RIVER PARKWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493968,Sedan,,,, +01/11/2022,1:08,BROOKLYN,11221,40.697918,-73.92083,"(40.697918, -73.92083)",WILSON AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4493778,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/11/2022,20:30,,,40.69099,-73.98932,"(40.69099, -73.98932)",LIVINGSTON STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4494072,Bike,,,, +01/11/2022,10:20,,,40.762074,-73.91869,"(40.762074, -73.91869)",31 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4493710,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,23:11,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493874,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,20:30,BRONX,10460,40.844536,-73.87948,"(40.844536, -73.87948)",,,975 EAST 181 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494184,Sedan,,,, +01/11/2022,23:44,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494029,Taxi,Sedan,,, +01/11/2022,12:00,QUEENS,11416,40.685513,-73.84162,"(40.685513, -73.84162)",101 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493803,Sedan,,,, +12/30/2021,18:10,,,40.837425,-73.92037,"(40.837425, -73.92037)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494382,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,23:05,BRONX,10472,40.828205,-73.86244,"(40.828205, -73.86244)",,,1863 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494317,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,11:00,,,40.748226,-73.75979,"(40.748226, -73.75979)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4493919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +01/11/2022,8:30,MANHATTAN,10128,40.78122,-73.949326,"(40.78122, -73.949326)",,,1751 2 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4493897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,5:50,QUEENS,11385,40.713062,-73.90891,"(40.713062, -73.90891)",METROPOLITAN AVENUE,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,15:17,BROOKLYN,11206,40.696934,-73.935616,"(40.696934, -73.935616)",,,1132 MYRTLE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494280,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,15:07,,,40.598003,-73.99191,"(40.598003, -73.99191)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493927,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,11:01,BROOKLYN,11229,40.612076,-73.94895,"(40.612076, -73.94895)",,,3692 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493797,Station Wagon/Sport Utility Vehicle,Dump,,, +01/11/2022,12:10,MANHATTAN,10013,40.716587,-74.008385,"(40.716587, -74.008385)",WEST BROADWAY,DUANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493759,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/11/2022,15:00,,,40.66345,-73.84747,"(40.66345, -73.84747)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4494095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/08/2022,12:00,,,,,,124 PLACE,CUTHBERT ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4494209,Sedan,,,, +01/11/2022,19:00,QUEENS,11413,40.67587,-73.75316,"(40.67587, -73.75316)",,,218-24 137 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4493838,Sedan,,,, +01/11/2022,14:30,BROOKLYN,11218,40.640453,-73.977806,"(40.640453, -73.977806)",EAST 2 STREET,AVENUE C,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493940,Sedan,,,, +01/11/2022,21:39,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",GRAND CONCOURSE,EAST 158 STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4494167,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,11:45,QUEENS,11413,40.683376,-73.76043,"(40.683376, -73.76043)",FARMERS BOULEVARD,MONTAUK STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4494003,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,10:43,,,,,,BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4493747,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,5:30,,,,,,PELHAM PARKWAY,BOSTON ROAD,,2,0,0,0,0,0,2,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4493691,Sedan,Sedan,,, +01/11/2022,0:00,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4493878,Sedan,,,, +01/11/2022,13:00,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4493955,Sedan,,,, +01/11/2022,9:00,BROOKLYN,11220,40.63745,-74.02196,"(40.63745, -74.02196)",4 AVENUE,66 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4493843,Taxi,Bus,,, +01/04/2022,22:25,,,40.823536,-73.93108,"(40.823536, -73.93108)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4494324,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,5:10,BROOKLYN,11220,40.644905,-74.01303,"(40.644905, -74.01303)",,,420 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494356,Sedan,Bike,,, +07/01/2021,21:25,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4433180,Sedan,,,, +01/10/2022,12:15,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4494252,Taxi,Sedan,Box Truck,, +11/05/2021,14:28,,,40.68187,-73.955826,"(40.68187, -73.955826)",HANCOCK STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4478560,Sedan,,,, +01/11/2022,18:50,BROOKLYN,11231,40.677273,-73.99254,"(40.677273, -73.99254)",,,103 3 STREET,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4493888,Sedan,E-Bike,,, +12/24/2021,13:29,QUEENS,11436,40.675278,-73.79335,"(40.675278, -73.79335)",INWOOD STREET,123 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494260,Sedan,Sedan,,, +01/11/2022,11:10,QUEENS,11432,40.70841,-73.80328,"(40.70841, -73.80328)",PARSONS BOULEVARD,87 ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494064,Ambulance,Sedan,,, +01/11/2022,14:45,,,40.697083,-73.83048,"(40.697083, -73.83048)",118 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493789,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,12:32,BRONX,10465,40.828445,-73.8224,"(40.828445, -73.8224)",PHILIP AVENUE,EDISON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494159,Sedan,,,, +01/11/2022,13:18,QUEENS,11385,40.703686,-73.90918,"(40.703686, -73.90918)",LINDEN STREET,SENECA AVENUE,,2,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494041,4 dr sedan,E-Bike,,, +01/11/2022,8:55,,,,,,WEST 155 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4493775,Station Wagon/Sport Utility Vehicle,Convertible,,, +01/11/2022,11:38,QUEENS,11101,40.749676,-73.94372,"(40.749676, -73.94372)",23 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493823,Sedan,,,, +01/11/2022,11:30,STATEN ISLAND,10306,40.566383,-74.101555,"(40.566383, -74.101555)",NEW DORP LANE,FINLEY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494218,Sedan,Sedan,,, +01/10/2022,20:45,BROOKLYN,11215,40.673813,-73.99238,"(40.673813, -73.99238)",2 AVENUE,7 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494200,Sedan,Tractor Truck Diesel,,, +01/11/2022,10:00,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493739,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,8:40,QUEENS,11375,40.72389,-73.84655,"(40.72389, -73.84655)",69 ROAD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494255,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,21:13,BROOKLYN,11204,40.62451,-73.98831,"(40.62451, -73.98831)",17 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493930,Sedan,Sedan,,, +01/10/2022,14:20,BROOKLYN,11232,40.65039,-74.00851,"(40.65039, -74.00851)",4 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494331,Station Wagon/Sport Utility Vehicle,,,, +01/13/2021,16:20,,,40.702564,-73.790565,"(40.702564, -73.790565)",LIBERTY AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,2:54,,,40.685,-73.96117,"(40.685, -73.96117)",DOWNING STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4493668,Sedan,PK,Sedan,, +01/11/2022,21:00,STATEN ISLAND,10309,40.527924,-74.21649,"(40.527924, -74.21649)",DRUMGOOLE ROAD EAST,BLOOMINGDALE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493967,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,15:19,QUEENS,11434,40.67897,-73.75985,"(40.67897, -73.75985)",MERRICK BOULEVARD,BELKNAP STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493994,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,0:30,,,40.70276,-73.86323,"(40.70276, -73.86323)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4493885,Taxi,Taxi,,, +12/19/2021,16:20,QUEENS,11433,40.703293,-73.7961,"(40.703293, -73.7961)",BREWER BOULEVARD,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494230,Sedan,Box Truck,,, +01/11/2022,7:00,BROOKLYN,11230,40.61257,-73.962715,"(40.61257, -73.962715)",,,1101 AVENUE O,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493911,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,13:00,,,40.833206,-73.82797,"(40.833206, -73.82797)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4493973,Sedan,Pick-up Truck,,, +01/11/2022,8:30,BRONX,10466,40.89171,-73.83559,"(40.89171, -73.83559)",STRANG AVENUE,DURYEA AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4493810,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,8:40,BROOKLYN,11226,40.651546,-73.95257,"(40.651546, -73.95257)",ROGERS AVENUE,MARTENSE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493723,Sedan,Bus,,, +01/11/2022,8:35,,,40.835724,-73.90579,"(40.835724, -73.90579)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4494154,Sedan,Sedan,Sedan,, +01/05/2022,22:35,,,40.746113,-73.73576,"(40.746113, -73.73576)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494238,Tractor Truck Diesel,,,, +01/11/2022,17:40,QUEENS,11101,40.740223,-73.954865,"(40.740223, -73.954865)",54 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493863,Sedan,,,, +01/11/2022,19:26,,,40.665844,-73.753685,"(40.665844, -73.753685)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4493848,Sedan,Sedan,Sedan,, +01/07/2022,16:28,,,40.816025,-73.93947,"(40.816025, -73.93947)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4494193,Sedan,E-Scooter,,, +01/11/2022,8:40,MANHATTAN,10028,40.780174,-73.95932,"(40.780174, -73.95932)",MADISON AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4493900,Dump,Sedan,,, +01/11/2022,17:00,QUEENS,11373,40.74459,-73.884674,"(40.74459, -73.884674)",BAXTER AVENUE,LAYTON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4493937,Ambulance,Ambulance,,, +01/11/2022,14:50,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4494388,Bus,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,22:55,BRONX,10469,40.87558,-73.8456,"(40.87558, -73.8456)",,,3337 EASTCHESTER ROAD,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4494298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/11/2022,7:35,QUEENS,11374,40.72789,-73.86117,"(40.72789, -73.86117)",BOOTH STREET,64 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493961,Sedan,Bus,,, +01/11/2022,18:55,QUEENS,11414,40.659172,-73.839874,"(40.659172, -73.839874)",CROSS BAY BOULEVARD,159 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4493891,Sedan,Sedan,,, +01/11/2022,10:02,BROOKLYN,11219,40.631504,-74.00296,"(40.631504, -74.00296)",11 AVENUE,60 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4494262,Station Wagon/Sport Utility Vehicle,Bike,,, +01/05/2022,12:15,,,40.686764,-73.93282,"(40.686764, -73.93282)",STUYVESANT AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4494291,Sedan,,,, +01/04/2022,16:30,,,40.819317,-73.93032,"(40.819317, -73.93032)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494321,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,14:11,,,40.621433,-73.987854,"(40.621433, -73.987854)",18 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493921,Sedan,E-Bike,,, +02/20/2022,10:00,BROOKLYN,11206,40.70566,-73.939514,"(40.70566, -73.939514)",,,300 BUSHWICK AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4504340,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +02/11/2022,20:20,MANHATTAN,10003,40.73129,-73.9904,"(40.73129, -73.9904)",4 AVENUE,EAST 10 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504726,Sedan,Bus,,, +02/20/2022,7:45,BRONX,10457,40.842987,-73.900345,"(40.842987, -73.900345)",EAST 174 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504745,Sedan,Sedan,,, +02/20/2022,22:08,,,40.838203,-73.9302,"(40.838203, -73.9302)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4504372,Sedan,Sedan,,, +02/20/2022,13:20,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,2:40,,,40.74631,-73.86827,"(40.74631, -73.86827)",JUNCTION BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504177,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,20:30,BROOKLYN,11211,40.70535,-73.962494,"(40.70535, -73.962494)",WILSON STREET,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504845,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,15:35,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,,,,,4504607,Station Wagon/Sport Utility Vehicle,,,, +02/17/2022,21:15,MANHATTAN,10009,40.72547,-73.98396,"(40.72547, -73.98396)",AVENUE A,EAST 6 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504702,Taxi,E-Bike,,, +02/20/2022,16:24,QUEENS,11412,40.69073,-73.76403,"(40.69073, -73.76403)",FOCH BOULEVARD,LOVINGHAM PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504282,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,18:30,,,40.527847,-74.21787,"(40.527847, -74.21787)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4504406,Pick-up Truck,,,, +02/20/2022,17:46,BRONX,10467,40.88577,-73.87895,"(40.88577, -73.87895)",,,3610 JEROME AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4504678,Sedan,,,, +02/20/2022,21:20,BROOKLYN,11236,40.65295,-73.911026,"(40.65295, -73.911026)",ROCKAWAY PARKWAY,AVENUE B,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504511,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,19:11,BROOKLYN,11201,40.6898636,-73.9795113,"(40.6898636, -73.9795113)",DE KALB AVENUE,ROCKWELL PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4469622,Sedan,,,, +06/26/2022,23:30,,,40.80333,-73.94873,"(40.80333, -73.94873)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543974,Sedan,,,, +07/04/2022,22:00,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,TILLARY STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543635,E-Bike,,,, +07/04/2022,12:00,QUEENS,11370,40.76151,-73.88361,"(40.76151, -73.88361)",85 STREET,30 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543546,Sedan,,,, +07/04/2022,17:35,BROOKLYN,11224,40.576508,-73.98584,"(40.576508, -73.98584)",MERMAID AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543926,Motorcycle,Sedan,,, +07/04/2022,17:00,BRONX,10473,40.813297,-73.85822,"(40.813297, -73.85822)",UNDERHILL AVENUE,PATTERSON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543953,Sedan,Bike,,, +07/04/2022,17:45,BROOKLYN,11236,40.64117,-73.91204,"(40.64117, -73.91204)",,,608 EAST 86 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4543656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,21:58,BRONX,10473,40.82054,-73.84838,"(40.82054, -73.84838)",,,670 CASTLE HILL AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4543373,Sedan,,,, +07/04/2022,16:15,QUEENS,11373,40.745216,-73.869354,"(40.745216, -73.869354)",,,94-44 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543330,Sedan,Pick-up Truck,,, +06/28/2022,6:28,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",COURT STREET,HAMILTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544037,Forklift,,,, +07/04/2022,0:11,STATEN ISLAND,10310,40.634056,-74.11213,"(40.634056, -74.11213)",,,328 BEMENT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4543847,Sedan,Sedan,Sedan,, +07/04/2022,19:07,BRONX,10465,40.82735,-73.82463,"(40.82735, -73.82463)",REVERE AVENUE,PHILIP AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4543902,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/04/2022,7:30,BROOKLYN,11249,40.709915,-73.96854,"(40.709915, -73.96854)",,,420 KENT AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4543417,Sedan,Sedan,Sedan,Sedan,Sedan +06/30/2022,9:30,QUEENS,11370,40.756714,-73.894905,"(40.756714, -73.894905)",,,72-02 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543866,Sedan,Sedan,Sedan,, +07/04/2022,4:20,QUEENS,11378,,,,Long island expressway,Maurice avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543179,Sedan,,,, +07/04/2022,15:37,MANHATTAN,10029,40.797527,-73.93901,"(40.797527, -73.93901)",,,243 EAST 116 STREET,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4543476,Sedan,E-Scooter,,, +07/04/2022,23:10,QUEENS,11385,40.69527,-73.90351,"(40.69527, -73.90351)",WYCKOFF AVENUE,COVERT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4543731,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,12:22,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543427,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,22:30,BROOKLYN,11212,40.667637,-73.90673,"(40.667637, -73.90673)",,,308 SUTTER AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4543980,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2022,17:51,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",ROCKAWAY PARKWAY,RUTLAND ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4544003,Sedan,Sedan,,, +06/25/2022,18:50,MANHATTAN,10019,40.761658,-73.986565,"(40.761658, -73.986565)",WEST 49 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543934,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2022,22:20,QUEENS,11412,40.702908,-73.76096,"(40.702908, -73.76096)",111 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,,4544074,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/04/2022,1:58,QUEENS,11417,40.6846,-73.836845,"(40.6846, -73.836845)",,,105-19 103 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543507,Sedan,,,, +07/03/2022,15:19,QUEENS,11693,40.588966,-73.81145,"(40.588966, -73.81145)",BEACH 86 STREET,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543944,Sedan,,,, +07/03/2022,14:49,,,40.845165,-73.90754,"(40.845165, -73.90754)",WEEKS AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543840,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,22:01,,,40.7605,-73.95699,"(40.7605, -73.95699)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544121,Sedan,Taxi,,, +06/26/2021,22:10,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433269,Motorcycle,,,, +07/04/2022,19:00,MANHATTAN,10010,40.74291,-73.99281,"(40.74291, -73.99281)",WEST 23 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543358,Station Wagon/Sport Utility Vehicle,Bike,,, +06/08/2022,16:37,QUEENS,11373,40.747547,-73.871605,"(40.747547, -73.871605)",,,94-29 40 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543862,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,15:14,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",UNION AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544044,Sedan,E-Scooter,,, +07/03/2022,5:46,BROOKLYN,11237,40.69969,-73.91557,"(40.69969, -73.91557)",MENAHAN STREET,IRVING AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543831,E-Bike,Sedan,,, +07/04/2022,19:42,BRONX,10453,40.85078,-73.91222,"(40.85078, -73.91222)",WEST TREMONT AVENUE,WEST 177 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543346,,,,, +06/21/2022,13:15,BROOKLYN,11204,,,,MC DONALD AVENUE,BAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4543906,Sedan,,,, +06/12/2022,6:00,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4543889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,0:26,,,40.5726,-74.16669,"(40.5726, -74.16669)",FOREST HILL ROAD,INDEPENDENCE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,17:21,BROOKLYN,11229,40.59617,-73.93882,"(40.59617, -73.93882)",,,2953 AVENUE W,1,0,1,0,0,0,0,0,,,,,,4544077,Sedan,,,, +06/30/2022,5:45,BROOKLYN,11201,40.701527,-73.986755,"(40.701527, -73.986755)",YORK STREET,JAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543939,Sedan,,,, +07/04/2022,15:22,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543682,Sedan,Bus,,, +07/03/2022,23:03,BROOKLYN,11233,40.67629,-73.91002,"(40.67629, -73.91002)",ATLANTIC AVENUE,PLEASANT PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4543990,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,19:15,BROOKLYN,11213,40.669434,-73.9255,"(40.669434, -73.9255)",BUFFALO AVENUE,LINCOLN PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543994,Sedan,E-Bike,,, +07/04/2022,0:05,QUEENS,11433,40.704185,-73.78599,"(40.704185, -73.78599)",LIBERTY AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4543146,Sedan,Sedan,,, +07/04/2022,22:15,BROOKLYN,11208,40.667953,-73.87007,"(40.667953, -73.87007)",EUCLID AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543780,Sedan,E-Bike,,, +06/27/2022,1:31,MANHATTAN,10014,40.742374,-74.0088,"(40.742374, -74.0088)",WEST 14 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543817,Sedan,,,, +06/30/2022,16:00,QUEENS,11106,40.765144,-73.93926,"(40.765144, -73.93926)",,,9-08 34 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544066,Sedan,,,, +07/04/2022,5:55,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HOLLIS COURT BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543494,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,19:59,,,40.8854,-73.89723,"(40.8854, -73.89723)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4543912,Sedan,Sedan,Sedan,Sedan,Motorcycle +07/04/2022,11:30,QUEENS,11101,40.743416,-73.95387,"(40.743416, -73.95387)",49 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543601,Sedan,Sedan,,, +07/01/2022,18:25,MANHATTAN,10031,40.82269,-73.94947,"(40.82269, -73.94947)",WEST 141 STREET,AMSTERDAM AVENUE,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4544106,Sedan,E-Bike,,, +07/04/2022,9:36,BROOKLYN,11208,40.67677,-73.880516,"(40.67677, -73.880516)",LIBERTY AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543805,Sedan,,,, +07/04/2022,20:00,BRONX,10461,40.842175,-73.83004,"(40.842175, -73.83004)",ZULETTE AVENUE,CROSBY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543384,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/04/2022,6:38,BROOKLYN,11210,40.623383,-73.94429,"(40.623383, -73.94429)",,,1150 EAST 32 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4543281,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,20:30,STATEN ISLAND,10306,40.582756,-74.13041,"(40.582756, -74.13041)",MANOR ROAD,ROCKLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543854,Sedan,,,, +07/04/2022,16:00,,,40.59281,-73.97877,"(40.59281, -73.97877)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543922,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,20:30,,,,,,WESTMINISTER ROAD,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494076,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,12:30,QUEENS,11375,40.7141316,-73.8349409,"(40.7141316, -73.8349409)",AUSTIN STREET,77 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469717,Sedan,,,, +07/04/2022,21:05,BRONX,10458,40.852245,-73.88447,"(40.852245, -73.88447)",,,2302 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543447,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,12:47,QUEENS,11355,40.753,-73.825516,"(40.753, -73.825516)",COLDEN STREET,CHERRY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543434,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/19/2022,23:48,QUEENS,11694,40.58301,-73.82607,"(40.58301, -73.82607)",ROCKAWAY BEACH BOULEVARD,BEACH 105 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543877,Sedan,Sedan,Sedan,, +07/04/2022,13:05,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,Unspecified,,4544092,Sedan,Sedan,Sedan,Sedan, +07/04/2022,2:35,QUEENS,11432,40.714695,-73.77531,"(40.714695, -73.77531)",HILLSIDE AVENUE,187 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543569,Sedan,Sedan,Tractor Truck Diesel,, +07/04/2022,14:00,QUEENS,11417,40.670338,-73.837234,"(40.670338, -73.837234)",,,97-27 ECKFORD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543694,Sedan,,,, +06/30/2022,20:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544025,Sedan,Sedan,,, +07/02/2022,23:20,,,40.811935,-73.88773,"(40.811935, -73.88773)",RANDALL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543968,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,11:40,MANHATTAN,10019,40.766712,-73.98289,"(40.766712, -73.98289)",WEST 57 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4543747,Sedan,Bike,,, +07/04/2022,18:25,,,40.78065,-73.976425,"(40.78065, -73.976425)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543509,Sedan,Bike,,, +06/16/2022,17:29,,,40.562126,-73.90231,"(40.562126, -73.90231)",ROCKAWAY POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543945,Sedan,,,, +06/28/2022,20:21,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4543963,Station Wagon/Sport Utility Vehicle,,,, +06/28/2022,16:40,,,40.80907,-73.94455,"(40.80907, -73.94455)",WEST 127 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4543975,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,9:45,,,40.870186,-73.84703,"(40.870186, -73.84703)",SEXTON PLACE,FISH AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4543638,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,0:25,,,40.674038,-73.73026,"(40.674038, -73.73026)",243 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494113,Sedan,Sedan,,, +10/13/2021,10:50,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469753,Tractor Truck Diesel,Sedan,,, +03/31/2022,0:00,,,,,,170-186 Van Brunt St,BOWNE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4515179,E-Bike,Sedan,,, +04/01/2022,16:50,MANHATTAN,10029,40.790253,-73.94564,"(40.790253, -73.94564)",3 AVENUE,EAST 104 STREET,,0,1,0,1,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4515533,E-Scooter,,,, +04/04/2022,8:00,BROOKLYN,11219,40.625034,-74.0061,"(40.625034, -74.0061)",12 AVENUE,BAY RIDGE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516221,Sedan,,,, +04/07/2022,20:20,BROOKLYN,11238,40.677044,-73.972374,"(40.677044, -73.972374)",,,318 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517675,Van,Taxi,,, +04/06/2022,19:00,BROOKLYN,11231,40.67665,-74.01618,"(40.67665, -74.01618)",,,175 VAN DYKE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516842,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,6:00,QUEENS,11427,40.72425,-73.75354,"(40.72425, -73.75354)",,,88-33 212 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4517640,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,3:15,,,,,,CROSS ISLAND PARKWAY,,,2,1,0,0,0,0,2,1,Unsafe Speed,,,,,4517277,Sedan,,,, +04/07/2022,6:30,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516970,Sedan,Box Truck,,, +04/08/2022,4:50,,,40.689445,-73.95513,"(40.689445, -73.95513)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4517407,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +04/08/2022,11:54,QUEENS,11423,40.710724,-73.77058,"(40.710724, -73.77058)",,,188-14 WOODHULL AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4517259,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,6:30,QUEENS,11356,40.784676,-73.83764,"(40.784676, -73.83764)",131 STREET,15 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4517245,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/08/2022,2:00,,,40.686226,-73.9124,"(40.686226, -73.9124)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517639,Sedan,,,, +04/07/2022,20:05,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,FLUSHING AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517154,,,,, +04/08/2022,18:50,,,40.688614,-73.989174,"(40.688614, -73.989174)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517468,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,0:48,BROOKLYN,11223,40.596615,-73.97652,"(40.596615, -73.97652)",AVENUE U,WEST 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517393,Tractor Truck Diesel,Sedan,,, +04/06/2022,13:15,STATEN ISLAND,10309,40.526264,-74.20153,"(40.526264, -74.20153)",SEGUINE AVENUE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517137,Sedan,,,, +04/06/2022,0:00,,,40.691452,-73.733955,"(40.691452, -73.733955)",228 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516626,Taxi,Sedan,,, +04/07/2022,14:51,,,40.63178,-73.945625,"(40.63178, -73.945625)",FLATBUSH AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,Unspecified,,,4517534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/08/2022,9:00,BRONX,10466,40.89487,-73.85657,"(40.89487, -73.85657)",EAST 235 STREET,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517708,Sedan,,,, +04/06/2022,5:30,,,40.68719,-73.974625,"(40.68719, -73.974625)",SOUTH PORTLAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516877,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,19:40,BROOKLYN,11216,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517409,Sedan,Sedan,,, +04/08/2022,3:05,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517264,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,17:55,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,10:30,BRONX,10466,40.892525,-73.85962,"(40.892525, -73.85962)",,,657 EAST 231 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517047,Box Truck,Sedan,,, +04/04/2022,16:00,BRONX,10459,40.830666,-73.89064,"(40.830666, -73.89064)",,,1280 HOE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4517477,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,15:00,,,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517571,Sedan,Sedan,,, +04/08/2022,16:00,,,40.612377,-74.13324,"(40.612377, -74.13324)",VICTORY BOULEVARD,MANN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517946,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,4:28,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516920,Sedan,Sedan,,, +04/08/2022,15:12,,,40.698376,-73.983055,"(40.698376, -73.983055)",NASSAU STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4517735,Tractor Truck Diesel,Bus,,, +04/02/2022,0:10,QUEENS,11432,40.707226,-73.804504,"(40.707226, -73.804504)",HILLSIDE AVENUE,153 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517869,Sedan,,,, +10/20/2021,17:00,BROOKLYN,11201,40.699521,-73.9898046,"(40.699521, -73.9898046)",RED CROSS PLACE,CADMAN PLAZA EAST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469874,Sedan,,,, +04/07/2022,20:08,MANHATTAN,10016,40.74445,-73.97304,"(40.74445, -73.97304)",EAST 35 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517119,Sedan,,,, +04/07/2022,14:52,,,40.702667,-73.86516,"(40.702667, -73.86516)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517187,Sedan,Sedan,,, +04/07/2022,19:40,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517220,Sedan,Sedan,,, +04/06/2022,6:45,,,40.71373,-74.01385,"(40.71373, -74.01385)",WEST STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517897,Taxi,,,, +04/06/2022,3:47,MANHATTAN,10035,40.808334,-73.940865,"(40.808334, -73.940865)",EAST 128 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4516691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,17:05,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4517365,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,18:00,BROOKLYN,11218,40.639145,-73.98427,"(40.639145, -73.98427)",,,3918 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516932,Sedan,Sedan,,, +04/08/2022,1:20,BROOKLYN,11206,40.70823,-73.94165,"(40.70823, -73.94165)",HUMBOLDT STREET,MESEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517152,Sedan,,,, +04/08/2022,7:51,MANHATTAN,10016,40.7431,-73.974014,"(40.7431, -73.974014)",1 AVENUE,EAST 33 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517291,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/08/2022,17:30,QUEENS,11432,40.711765,-73.80812,"(40.711765, -73.80812)",,,151-10 85 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517353,Sedan,Sedan,,, +04/04/2022,11:50,MANHATTAN,10003,40.730564,-73.99052,"(40.730564, -73.99052)",4 AVENUE,EAST 9 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517688,Sedan,Bike,,, +04/08/2022,14:40,QUEENS,11355,40.753,-73.825516,"(40.753, -73.825516)",COLDEN STREET,CHERRY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517455,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +04/07/2022,21:28,BROOKLYN,11236,40.64715,-73.916214,"(40.64715, -73.916214)",DITMAS AVENUE,EAST 88 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,7:30,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4517723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,18:00,BROOKLYN,11201,40.689476,-73.99036,"(40.689476, -73.99036)",,,66 BOERUM PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517103,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,16:27,MANHATTAN,10007,40.717175,-74.01288,"(40.717175, -74.01288)",CHAMBERS STREET,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517593,Sedan,E-Bike,,, +04/06/2022,0:08,QUEENS,11421,40.685963,-73.85654,"(40.685963, -73.85654)",ATLANTIC AVENUE,85 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516709,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,13:40,STATEN ISLAND,10309,40.552807,-74.21822,"(40.552807, -74.21822)",,,2535 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4517297,Sedan,Bus,,, +04/08/2022,10:45,BRONX,10455,40.815475,-73.903305,"(40.815475, -73.903305)",,,660 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517296,Sedan,Sedan,,, +04/06/2022,8:00,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",LINCOLN AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516823,Pick-up Truck,,,, +04/07/2022,6:58,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517488,Sedan,Sedan,,, +04/08/2022,13:50,,,40.71423,-73.81646,"(40.71423, -73.81646)",MAIN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517522,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,20:58,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,16:23,BROOKLYN,11210,40.629505,-73.94416,"(40.629505, -73.94416)",FLATBUSH AVENUE,AVENUE I,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4517436,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,17:14,BROOKLYN,11222,40.72404,-73.93606,"(40.72404, -73.93606)",PORTER AVENUE,CHERRY STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4517826,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/08/2022,13:54,BROOKLYN,11229,40.608463,-73.95631,"(40.608463, -73.95631)",EAST 17 STREET,QUENTIN ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517397,Sedan,,,, +04/03/2022,15:32,BRONX,10474,40.806843,-73.88434,"(40.806843, -73.88434)",,,1300 VIELE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517761,Tractor Truck Diesel,Tractor Truck Diesel,,, +04/08/2022,16:59,,,40.686264,-73.9567,"(40.686264, -73.9567)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517910,Bus,,,, +04/07/2022,14:40,MANHATTAN,10013,40.720222,-74.00606,"(40.720222, -74.00606)",,,8 BEACH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517252,Sedan,,,, +04/08/2022,15:18,BROOKLYN,11211,40.71277,-73.94749,"(40.71277, -73.94749)",AINSLIE STREET,LEONARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517499,Sedan,Sedan,,, +04/06/2022,22:00,BRONX,10472,40.831287,-73.88173,"(40.831287, -73.88173)",EVERGREEN AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517005,Sedan,,,, +04/05/2022,11:30,,,40.88415,-73.82607,"(40.88415, -73.82607)",CONNER STREET,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517713,Sedan,Box Truck,,, +04/07/2022,10:40,BROOKLYN,11207,40.66239,-73.88594,"(40.66239, -73.88594)",HENDRIX STREET,HEGEMAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4517053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/08/2022,17:18,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4517316,Sedan,Motorcycle,,, +04/07/2022,11:07,MANHATTAN,10012,40.726116,-74.0016,"(40.726116, -74.0016)",PRINCE STREET,THOMPSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517080,Sedan,Sedan,,, +04/06/2022,16:10,QUEENS,11434,40.68378,-73.789734,"(40.68378, -73.789734)",155 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516797,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:13,QUEENS,11434,40.675312,-73.777145,"(40.675312, -73.777145)",BREWER BOULEVARD,132 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517807,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,20:05,BROOKLYN,11205,40.693363,-73.96674,"(40.693363, -73.96674)",,,463 MYRTLE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517329,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,8:22,QUEENS,11692,40.58955,-73.79972,"(40.58955, -73.79972)",,,70-20 ROCKAWAY BEACH BOULEVARD,1,0,1,0,0,0,0,0,,,,,,4516751,Sedan,,,, +04/05/2022,14:20,QUEENS,11374,40.73162,-73.856606,"(40.73162, -73.856606)",63 DRIVE,99 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,17:15,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",MADISON AVENUE,EAST 125 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4517232,Sedan,,,, +04/05/2022,6:40,,,40.824455,-73.886406,"(40.824455, -73.886406)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517546,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,16:30,BROOKLYN,11214,40.607883,-74.00696,"(40.607883, -74.00696)",,,68 BAY 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517349,Sedan,,,, +04/06/2022,12:00,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,8:51,,,40.681736,-73.805305,"(40.681736, -73.805305)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516754,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/15/2022,18:50,MANHATTAN,10009,40.72292,-73.98584,"(40.72292, -73.98584)",,,23 AVENUE A,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4517684,Sedan,,,, +04/07/2022,12:33,,,40.71508,-73.73789,"(40.71508, -73.73789)",218 STREET,100 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517162,Sedan,Sedan,,, +04/07/2022,19:50,MANHATTAN,10023,40.77224,-73.990005,"(40.77224, -73.990005)",WEST END AVENUE,WEST 60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517301,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,10:50,BRONX,10462,40.83555,-73.84816,"(40.83555, -73.84816)",,,2300 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4516810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,8:50,BRONX,10465,40.82806,-73.82859,"(40.82806, -73.82859)",SWINTON AVENUE,LAFAYETTE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517847,Sedan,,,, +04/06/2022,7:27,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,0:09,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433482,Sedan,Sedan,,, +01/13/2022,17:15,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494366,Sedan,,,, +10/22/2021,13:15,,,40.7199104,-73.8090389,"(40.7199104, -73.8090389)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469948,Sedan,Sedan,,, +04/08/2022,18:08,BROOKLYN,11229,40.610947,-73.953606,"(40.610947, -73.953606)",OCEAN AVENUE,AVENUE P,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517553,Sedan,,,, +04/06/2022,22:30,,,40.687363,-73.99004,"(40.687363, -73.99004)",SMITH STREET,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4517078,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,12:15,BROOKLYN,11211,40.71752,-73.95281,"(40.71752, -73.95281)",,,250 NORTH 10 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517836,Station Wagon/Sport Utility Vehicle,Carry All,,, +04/06/2022,19:58,BROOKLYN,11234,40.63606,-73.92683,"(40.63606, -73.92683)",KINGS HIGHWAY,EAST 52 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4517284,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,14:20,QUEENS,11421,40.688946,-73.85322,"(40.688946, -73.85322)",90 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4517442,Sedan,,,, +04/07/2022,0:00,BRONX,10455,40.81527,-73.904434,"(40.81527, -73.904434)",EAST 152 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516911,Sedan,E-Bike,,, +04/07/2022,16:40,QUEENS,11102,40.767735,-73.9185,"(40.767735, -73.9185)",33 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:11,MANHATTAN,10016,40.743942,-73.983635,"(40.743942, -73.983635)",EAST 29 STREET,PARK AVENUE SOUTH,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4517774,Bike,,,, +04/06/2022,12:08,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517919,Sedan,Pick-up Truck,,, +04/06/2022,14:10,BRONX,10460,40.84616,-73.88145,"(40.84616, -73.88145)",,,2141 HONEYWELL AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4516939,Sedan,,,, +04/08/2022,9:15,QUEENS,11416,40.68648,-73.844925,"(40.68648, -73.844925)",97 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517256,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,6:40,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4517269,Sedan,,,, +04/06/2022,17:35,STATEN ISLAND,10314,40.608967,-74.12735,"(40.608967, -74.12735)",NORTH GANNON AVENUE,GANSEVOORT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517095,Sedan,,,, +04/07/2022,18:07,BROOKLYN,11230,40.613136,-73.96838,"(40.613136, -73.96838)",,,1455 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,13:25,QUEENS,11385,40.7122,-73.86208,"(40.7122, -73.86208)",COOPER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517383,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,5:37,BROOKLYN,11209,40.62633,-74.0269,"(40.62633, -74.0269)",,,8105 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517017,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/03/2022,22:42,MANHATTAN,10001,40.749573,-73.98523,"(40.749573, -73.98523)",,,30 WEST 35 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517539,Sedan,E-Bike,,, +04/07/2022,17:30,BROOKLYN,11233,40.676132,-73.921906,"(40.676132, -73.921906)",RALPH AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517666,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/06/2022,4:35,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4517086,Sedan,,,, +04/06/2022,8:30,,,40.696823,-73.91487,"(40.696823, -73.91487)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516740,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,20:23,MANHATTAN,10029,40.78459,-73.94198,"(40.78459, -73.94198)",FDR DRIVE,EAST 99 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517333,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,12:25,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516802,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,15:05,,,40.788948,-73.94057,"(40.788948, -73.94057)",1 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Driver Inattention/Distraction,,,,4516882,Bus,Sedan,,, +04/06/2022,19:38,MANHATTAN,10010,40.74345,-73.9882,"(40.74345, -73.9882)",WEST 26 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517611,Bike,Taxi,,, +04/07/2022,15:00,BRONX,10462,40.83557,-73.8623,"(40.83557, -73.8623)",WOOD ROAD,WOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517195,Pick-up Truck,Bus,,, +04/08/2022,22:46,,,40.742474,-73.95277,"(40.742474, -73.95277)",JACKSON AVENUE,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517328,Sedan,Taxi,,, +04/07/2022,18:11,QUEENS,11356,40.78168,-73.84686,"(40.78168, -73.84686)",20 AVENUE,121 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4517237,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,6:43,BRONX,10454,40.808807,-73.9107,"(40.808807, -73.9107)",SAINT MARYS STREET,JACKSON AVENUE,,4,0,0,0,0,0,4,0,Pavement Slippery,Unspecified,,,,4433562,Sedan,Sedan,,, +04/06/2022,11:30,BRONX,10473,40.819523,-73.848145,"(40.819523, -73.848145)",,,616 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517004,Sedan,,,, +04/06/2022,21:10,BROOKLYN,11211,40.707634,-73.96378,"(40.707634, -73.96378)",,,104 DIVISION AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4517130,Station Wagon/Sport Utility Vehicle,Bike,,, +04/07/2022,23:10,BRONX,10460,40.839622,-73.870285,"(40.839622, -73.870285)",EAST TREMONT AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517201,Sedan,Sedan,,, +04/08/2022,13:45,QUEENS,11436,40.668438,-73.79012,"(40.668438, -73.79012)",133 AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517364,Sedan,Sedan,,, +04/06/2022,11:45,,,40.60604,-73.978294,"(40.60604, -73.978294)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516825,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/28/2022,2:10,MANHATTAN,10022,40.76092,-73.96704,"(40.76092, -73.96704)",3 AVENUE,EAST 58 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4517228,Sedan,Sedan,,, +04/06/2022,22:46,BROOKLYN,11207,40.665474,-73.9,"(40.665474, -73.9)",DUMONT AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516865,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,14:16,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517167,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/06/2022,8:00,,,40.677746,-73.73096,"(40.677746, -73.73096)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4516763,Box Truck,,,, +04/07/2022,19:34,MANHATTAN,10019,40.765423,-73.98582,"(40.765423, -73.98582)",,,354 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517118,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,11:08,QUEENS,11106,40.75917,-73.92765,"(40.75917, -73.92765)",,,34-25 31 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4517400,Sedan,Sedan,,, +04/07/2022,9:05,,,40.66901,-73.99678,"(40.66901, -73.99678)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517421,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,6:12,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4517033,Pick-up Truck,,,, +04/08/2022,8:55,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517930,Motorcycle,,,, +04/07/2022,6:05,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,4517063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle +04/08/2022,12:40,BROOKLYN,11212,40.65431,-73.90975,"(40.65431, -73.90975)",BOYLAND STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517587,Sedan,Sedan,,, +04/08/2022,8:11,,,40.71346,-73.91522,"(40.71346, -73.91522)",METROPOLITAN AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517356,Box Truck,Sedan,,, +04/08/2022,7:45,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517233,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,13:35,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517288,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/31/2022,22:40,,,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4517634,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,12:27,STATEN ISLAND,10314,40.605213,-74.12084,"(40.605213, -74.12084)",MANOR ROAD,NORWALK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4517113,Sedan,Sedan,Van,, +04/07/2022,23:30,BROOKLYN,11238,40.678326,-73.97203,"(40.678326, -73.97203)",PROSPECT PLACE,CARLTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517676,Taxi,,,, +04/07/2022,16:20,BROOKLYN,11232,40.66874,-73.99668,"(40.66874, -73.99668)",HAMILTON AVENUE,2 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4517158,Sedan,Sedan,,, +04/08/2022,20:20,QUEENS,11004,40.747444,-73.71501,"(40.747444, -73.71501)",,,255-37 75 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517413,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,17:03,BROOKLYN,11222,40.721992,-73.93652,"(40.721992, -73.93652)",,,106 BEADEL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4516907,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,0:30,BROOKLYN,11228,40.620876,-74.00072,"(40.620876, -74.00072)",,,1479 70 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517141,Sedan,E-Bike,,, +10/22/2021,18:30,,,40.872494,-73.8814629,"(40.872494, -73.8814629)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,,,,,,4470026,,,,, +04/06/2022,1:03,MANHATTAN,10010,40.736885,-73.978546,"(40.736885, -73.978546)",EAST 23 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4516933,Taxi,Motorcycle,,, +04/08/2022,16:50,QUEENS,11354,40.770817,-73.82192,"(40.770817, -73.82192)",BAYSIDE AVENUE,146 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4517458,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,22:50,QUEENS,11106,40.763863,-73.92248,"(40.763863, -73.92248)",,,32-14 31 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,7:00,BROOKLYN,11210,40.633354,-73.95081,"(40.633354, -73.95081)",,,100 AMERSFORT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517558,Sedan,,,, +04/06/2022,14:40,,,40.716354,-73.78419,"(40.716354, -73.78419)",MIDLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516872,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,15:30,QUEENS,11385,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,81 ROAD,,6,0,0,0,0,0,6,0,Failure to Yield Right-of-Way,Unspecified,,,,4517265,Taxi,Bus,,, +08/09/2021,18:41,QUEENS,11370,40.773808,-73.8929,"(40.773808, -73.8929)",HAZEN STREET,19 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4517408,Bike,,,, +04/07/2022,8:55,MANHATTAN,10029,40.79486,-73.94649,"(40.79486, -73.94649)",EAST 109 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4516992,Sedan,Pick-up Truck,,, +04/08/2022,14:30,BRONX,10468,40.871243,-73.899315,"(40.871243, -73.899315)",UNIVERSITY AVENUE,STRONG STREET,,1,0,1,0,0,0,0,0,,,,,,4517309,,,,, +04/07/2022,19:55,MANHATTAN,10027,40.811264,-73.95782,"(40.811264, -73.95782)",AMSTERDAM AVENUE,WEST 123 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517740,E-Bike,,,, +04/06/2022,11:34,,,,,,47 STREET,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4517191,Flat Bed,Pick-up Truck,Sedan,, +04/06/2022,5:30,QUEENS,11377,40.749336,-73.90671,"(40.749336, -73.90671)",56 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516829,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,20:15,,,40.694,-73.92351,"(40.694, -73.92351)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517646,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,8:39,,,40.69854,-73.94116,"(40.69854, -73.94116)",MARCUS GARVEY BOULEVARD,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517748,Sedan,,,, +04/07/2022,22:58,,,,,,EAST 59 STREET,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517875,Sedan,Sedan,,, +04/07/2022,20:00,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517123,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,8:30,BRONX,10462,40.852337,-73.86393,"(40.852337, -73.86393)",BRADY AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517205,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,19:39,QUEENS,11106,40.76812,-73.93169,"(40.76812, -73.93169)",,,14-49 31 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4517370,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +04/06/2022,22:40,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516878,Pick-up Truck,Sedan,,, +04/06/2022,6:55,BROOKLYN,11212,40.661575,-73.90868,"(40.661575, -73.90868)",,,750 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516954,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,0:00,MANHATTAN,10009,40.724457,-73.98472,"(40.724457, -73.98472)",,,63 AVENUE A,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517693,Ambulance,Sedan,,, +04/08/2022,16:30,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517323,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/06/2022,17:30,MANHATTAN,10005,40.708614,-74.00938,"(40.708614, -74.00938)",NASSAU STREET,LIBERTY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516921,Sedan,,,, +04/07/2022,11:15,QUEENS,11373,40.738045,-73.87724,"(40.738045, -73.87724)",,,86-22 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517148,Sedan,Bus,,, +04/08/2022,23:50,QUEENS,11377,40.752563,-73.90526,"(40.752563, -73.90526)",BROADWAY,56 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517341,Bike,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,2:28,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516630,Sedan,Tractor Truck Gasoline,,, +10/22/2021,7:20,,,40.8120666,-73.8957823,"(40.8120666, -73.8957823)",LEGGETT AVENUE,BARRY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470066,Sedan,Box Truck,,, +04/08/2022,0:53,BRONX,10453,40.846577,-73.913155,"(40.846577, -73.913155)",JEROME AVENUE,CLIFFORD PLACE,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4517176,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,15:30,QUEENS,11355,40.75097,-73.825775,"(40.75097, -73.825775)",MAIN STREET,ELDER AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4517451,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/07/2022,8:34,BRONX,10456,40.835285,-73.90076,"(40.835285, -73.90076)",,,580 CROTONA PARK SOUTH,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4517481,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,9:06,,,40.680244,-73.87661,"(40.680244, -73.87661)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517224,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,5:46,,,40.67624,-73.866104,"(40.67624, -73.866104)",PITKIN AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,15:40,,,40.732887,-73.920586,"(40.732887, -73.920586)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517107,Van,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,18:30,BROOKLYN,11207,40.675602,-73.89973,"(40.675602, -73.89973)",ATLANTIC AVENUE,ALABAMA AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4517219,Sedan,,,, +04/07/2022,12:16,QUEENS,11103,40.76258,-73.91387,"(40.76258, -73.91387)",,,30-16 42 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517204,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/08/2022,2:31,,,40.738598,-73.79523,"(40.738598, -73.79523)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4517136,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,5:12,QUEENS,11101,40.753742,-73.92984,"(40.753742, -73.92984)",,,37-25 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4517369,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +04/07/2022,22:20,BROOKLYN,11206,40.701862,-73.94383,"(40.701862, -73.94383)",BROADWAY,WHIPPLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517153,Sedan,,,, +04/06/2022,15:18,QUEENS,11101,40.75416,-73.94941,"(40.75416, -73.94941)",VERNON BOULEVARD,QUEENS PLAZA SOUTH,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516828,Sedan,E-Bike,,, +04/05/2022,16:00,STATEN ISLAND,10309,40.528,-74.23547,"(40.528, -74.23547)",,,3010 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517292,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,16:30,BROOKLYN,11217,40.680218,-73.97789,"(40.680218, -73.97789)",5 AVENUE,WARREN STREET,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4516924,Bus,,,, +04/08/2022,17:25,QUEENS,11356,40.784187,-73.84582,"(40.784187, -73.84582)",15 AVENUE,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4517456,Sedan,Motorcycle,,, +04/05/2022,23:19,QUEENS,11366,40.727104,-73.80509,"(40.727104, -73.80509)",164 STREET,75 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517352,Sedan,Sedan,,, +04/08/2022,15:45,BRONX,10475,40.890133,-73.81974,"(40.890133, -73.81974)",,,4340 BOSTON ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517725,Sedan,,,, +04/08/2022,5:28,,,,,,VANDAM STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517181,Sedan,Tractor Truck Diesel,,, +04/07/2022,20:46,BRONX,10460,40.838013,-73.88669,"(40.838013, -73.88669)",,,1762 BOSTON ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4517483,Sedan,,,, +04/08/2022,14:50,MANHATTAN,10016,40.749725,-73.98363,"(40.749725, -73.98363)",5 AVENUE,EAST 36 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517694,Motorcycle,Sedan,,, +04/08/2022,16:52,BROOKLYN,11206,40.699524,-73.95236,"(40.699524, -73.95236)",,,555 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517515,Bike,,,, +04/06/2022,15:28,QUEENS,11432,40.71321,-73.78153,"(40.71321, -73.78153)",,,181-25 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516873,Sedan,Sedan,,, +04/07/2022,0:00,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4517942,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,14:30,QUEENS,11415,40.704006,-73.82537,"(40.704006, -73.82537)",,,85-15 126 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517293,Sedan,,,, +04/07/2022,21:35,BROOKLYN,11228,40.619926,-74.01298,"(40.619926, -74.01298)",,,1158 79 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4517122,Sedan,Chassis Cab,,, +04/02/2022,23:23,,,40.584625,-73.94713,"(40.584625, -73.94713)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517278,Sedan,Sedan,,, +04/07/2022,16:15,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517489,Sedan,Sedan,,, +06/26/2021,0:00,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4433687,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,18:00,MANHATTAN,10017,40.755737,-73.97836,"(40.755737, -73.97836)",,,12 EAST 46 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,Other Vehicular,Other Vehicular,,4516898,Sedan,Station Wagon/Sport Utility Vehicle,Bike,E-Bike, +04/08/2022,16:30,,,40.655743,-73.85908,"(40.655743, -73.85908)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517825,Sedan,Sedan,,, +04/08/2022,8:20,BRONX,10463,40.88949,-73.90965,"(40.88949, -73.90965)",,,541 WEST 239 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517246,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,14:44,QUEENS,11691,40.60339,-73.75133,"(40.60339, -73.75133)",,,18-47 MOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517909,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,19:00,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",VALENTINE AVENUE,EAST 178 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4517214,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,23:16,MANHATTAN,10065,40.76118,-73.95791,"(40.76118, -73.95791)",YORK AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517166,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,9:10,BROOKLYN,11217,40.687748,-73.980125,"(40.687748, -73.980125)",,,25 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517261,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,12:00,,,40.70604,-73.94129,"(40.70604, -73.94129)",BOERUM STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4516761,Sedan,Sedan,,, +04/06/2022,12:25,BRONX,10473,40.81478,-73.863335,"(40.81478, -73.863335)",SAINT LAWRENCE AVENUE,LACOMBE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4516783,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,18:38,,,40.848667,-73.939186,"(40.848667, -73.939186)",WEST 178 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517597,Sedan,,,, +04/07/2022,8:52,BROOKLYN,11203,40.65063,-73.94664,"(40.65063, -73.94664)",,,923 NEW YORK AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inattention/Distraction,Unspecified,,,4517024,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/08/2022,14:02,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517541,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,16:45,BROOKLYN,11233,40.671608,-73.91695,"(40.671608, -73.91695)",SARATOGA AVENUE,PARK PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517304,Sedan,Taxi,,, +03/13/2022,5:37,BRONX,10468,40.874157,-73.899445,"(40.874157, -73.899445)",CLAFLIN AVENUE,RESERVOIR AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4517209,Sedan,Sedan,,, +04/06/2022,2:30,BROOKLYN,11249,40.713535,-73.96731,"(40.713535, -73.96731)",,,325 KENT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516843,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:00,MANHATTAN,10031,40.83112,-73.94786,"(40.83112, -73.94786)",,,617 WEST 152 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,15:55,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517089,Station Wagon/Sport Utility Vehicle,Dump,,, +04/05/2022,22:14,,,40.768795,-73.78583,"(40.768795, -73.78583)",203 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4517319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +04/08/2022,15:15,BROOKLYN,11221,40.689857,-73.92535,"(40.689857, -73.92535)",,,856 QUINCY STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517749,Sedan,Bus,,, +04/08/2022,6:58,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,4517641,Sedan,Sedan,Sedan,Sedan, +04/08/2022,13:00,,,40.74712,-73.94239,"(40.74712, -73.94239)",JACKSON AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4517342,Bike,,,, +04/07/2022,21:50,QUEENS,11691,40.610046,-73.7536,"(40.610046, -73.7536)",,,14-79 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517186,Sedan,,,, +04/06/2022,8:00,QUEENS,11418,40.70221,-73.82695,"(40.70221, -73.82695)",,,86-04 124 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516744,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,17:30,MANHATTAN,10001,40.749985,-73.98617,"(40.749985, -73.98617)",,,71 WEST 35 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4516963,Sedan,Pedicab,,, +04/07/2022,8:40,BRONX,10475,40.872723,-73.833725,"(40.872723, -73.833725)",,,650 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517034,Bus,Box Truck,,, +04/08/2022,19:20,,,,,,QUEENSBORO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517865,Sedan,,,, +04/06/2022,9:57,QUEENS,11428,40.724144,-73.73604,"(40.724144, -73.73604)",WINCHESTER BOULEVARD,EDMORE AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4516769,Station Wagon/Sport Utility Vehicle,Bike,,, +04/06/2022,5:52,QUEENS,11419,40.68779,-73.820175,"(40.68779, -73.820175)",LIBERTY AVENUE,124 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516881,Sedan,,,, +04/01/2022,6:51,QUEENS,11692,40.5918,-73.79706,"(40.5918, -73.79706)",,,324 BEACH 68 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517392,Sedan,Bus,,, +04/07/2022,21:20,QUEENS,11435,40.713226,-73.82343,"(40.713226, -73.82343)",HOOVER AVENUE,134 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517131,Sedan,E-Bike,,, +04/02/2022,6:00,QUEENS,11370,40.75687,-73.88276,"(40.75687, -73.88276)",,,32-53 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517548,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,23:41,QUEENS,11385,40.69757,-73.90758,"(40.69757, -73.90758)",JEFFERSON AVENUE,WYCKOFF AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517412,Sedan,E-Bike,,, +04/07/2022,19:54,QUEENS,11421,40.692318,-73.8609,"(40.692318, -73.8609)",JAMAICA AVENUE,FOREST PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517157,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,9:18,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4517096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,8:45,QUEENS,11364,40.73578,-73.746544,"(40.73578, -73.746544)",SPRINGFIELD BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517273,Bus,Sedan,,, +04/06/2022,14:00,BROOKLYN,11206,40.70164,-73.938034,"(40.70164, -73.938034)",,,849 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4516838,Sedan,Sedan,,, +04/05/2022,11:40,,,40.6967,-73.91031,"(40.6967, -73.91031)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517636,Sedan,Tractor Truck Diesel,,, +04/08/2022,8:24,BROOKLYN,11214,40.614227,-73.99901,"(40.614227, -73.99901)",17 AVENUE,76 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517348,Sedan,Sedan,,, +04/06/2022,6:29,BRONX,10459,40.82244,-73.90199,"(40.82244, -73.90199)",UNION AVENUE,EAST 163 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516890,Station Wagon/Sport Utility Vehicle,,,, +03/28/2022,11:43,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,Unspecified,,,4517241,Sedan,Sedan,Sedan,, +04/07/2022,20:45,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4517707,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,8:35,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",FULTON STREET,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517573,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,0:00,BRONX,10456,40.831024,-73.9027,"(40.831024, -73.9027)",,,1265 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517476,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +04/07/2022,10:30,QUEENS,11102,40.765095,-73.925064,"(40.765095, -73.925064)",31 AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517384,Sedan,Sedan,,, +03/25/2022,1:55,,,40.610477,-74.09396,"(40.610477, -74.09396)",STATEN ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,,,,4517422,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,23:00,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517934,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,12:15,MANHATTAN,10018,40.760777,-74.00219,"(40.760777, -74.00219)",WEST 40 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4517734,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,6:28,,,40.72616,-73.76698,"(40.72616, -73.76698)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4517525,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +04/06/2022,10:30,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517811,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/08/2022,23:50,,,40.657093,-73.95026,"(40.657093, -73.95026)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517378,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,8:25,,,40.80522,-73.93214,"(40.80522, -73.93214)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4517236,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,19:22,BRONX,10465,40.829685,-73.8253,"(40.829685, -73.8253)",EAST TREMONT AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4517196,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/12/2021,0:11,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485476,Sedan,Sedan,,, +10/22/2021,17:00,BRONX,10462,40.8367759,-73.8635829,"(40.8367759, -73.8635829)",,,1443 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4470260,Sedan,,,, +04/07/2022,10:28,,,40.588562,-74.14584,"(40.588562, -74.14584)",FOREST HILL ROAD,ROCKLAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,10:42,BROOKLYN,11223,40.597874,-73.98549,"(40.597874, -73.98549)",STILLWELL AVENUE,85 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517470,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,19:18,QUEENS,11435,40.705173,-73.8117,"(40.705173, -73.8117)",,,144-20 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517901,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:20,QUEENS,11373,40.740433,-73.86922,"(40.740433, -73.86922)",,,51-06 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517565,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,22:54,MANHATTAN,10018,40.756153,-73.998024,"(40.756153, -73.998024)",,,475 10 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4517757,Sedan,Pick-up Truck,,, +04/05/2022,15:59,BROOKLYN,11213,40.6665,-73.931335,"(40.6665, -73.931335)",,,337 UTICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517229,Flat Bed,Sedan,,, +04/05/2022,21:24,,,40.67533,-73.93609,"(40.67533, -73.93609)",BERGEN STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517683,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,7:30,BROOKLYN,11233,40.683037,-73.9261,"(40.683037, -73.9261)",PATCHEN AVENUE,MACDONOUGH STREET,,1,0,1,0,0,0,0,0,,,,,,4517016,,,,, +04/08/2022,17:30,,,40.636387,-73.94611,"(40.636387, -73.94611)",FARRAGUT ROAD,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517622,Sedan,E-Bike,,, +04/08/2022,22:00,BROOKLYN,11204,40.624947,-73.97712,"(40.624947, -73.97712)",50 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517849,Sedan,Bike,,, +04/08/2022,13:35,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,8:15,MANHATTAN,10001,40.75458,-73.99915,"(40.75458, -73.99915)",WEST 34 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516708,Sedan,,,, +04/08/2022,14:35,QUEENS,11435,40.69474,-73.80625,"(40.69474, -73.80625)",LIBERTY AVENUE,LIVERPOOL STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing Too Closely,,,,4517300,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,15:34,BRONX,10459,40.82419,-73.891884,"(40.82419, -73.891884)",,,1046 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516812,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,9:15,MANHATTAN,10023,40.77537,-73.98772,"(40.77537, -73.98772)",WEST 65 STREET,WEST END AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517268,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/07/2022,7:58,BRONX,10457,40.85213,-73.89278,"(40.85213, -73.89278)",,,4439 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517041,Sedan,Box Truck,,, +03/30/2022,16:45,BROOKLYN,11212,40.65887,-73.904106,"(40.65887, -73.904106)",,,812 STONE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517589,Sedan,Motorcycle,,, +04/06/2022,15:19,BROOKLYN,11212,40.66885,-73.91635,"(40.66885, -73.91635)",PITKIN AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516979,Station Wagon/Sport Utility Vehicle,Bus,,, +04/04/2022,9:10,BROOKLYN,11203,40.65011,-73.94177,"(40.65011, -73.94177)",,,271 EAST 38 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4517616,Sedan,Sedan,Sedan,, +04/01/2022,12:03,MANHATTAN,10029,40.788223,-73.94276,"(40.788223, -73.94276)",,,310 EAST 103 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517332,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,22:09,BROOKLYN,11229,40.60887,-73.958015,"(40.60887, -73.958015)",,,1507 KINGS HIGHWAY,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4517434,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,22:45,BROOKLYN,11223,40.596584,-73.98422,"(40.596584, -73.98422)",,,2031 WEST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516910,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,16:30,QUEENS,11356,40.786205,-73.834564,"(40.786205, -73.834564)",133 PLACE,14 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4517240,Box Truck,Flat Bed,,, +04/08/2022,16:20,BROOKLYN,11229,40.5963,-73.959785,"(40.5963, -73.959785)",AVENUE V,EAST 12 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517396,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,18:30,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517161,Sedan,Pick-up Truck,,, +04/08/2022,22:00,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4517416,Sedan,Sedan,,, +06/30/2021,12:05,,,40.638897,-74.01678,"(40.638897, -74.01678)",61 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433873,PICK UP,Dump,,, +04/06/2022,19:01,MANHATTAN,10012,40.725494,-74.00115,"(40.725494, -74.00115)",,,438 WEST BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516937,Sedan,,,, +04/07/2022,14:45,QUEENS,11361,40.757706,-73.76385,"(40.757706, -73.76385)",47 AVENUE,217 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4517127,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,4:30,QUEENS,11368,40.757755,-73.8626,"(40.757755, -73.8626)",,,106-12 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4517251,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,20:15,BROOKLYN,11239,,,,Gateway Drive,Schroeders Ave,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516864,Bus,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,19:01,BROOKLYN,11226,40.655075,-73.96136,"(40.655075, -73.96136)",,,188 PARKSIDE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4517533,Sedan,,,, +04/08/2022,18:30,,,40.6104,-73.9586,"(40.6104, -73.9586)",EAST 15 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4517925,Bike,,,, +04/07/2022,11:45,BRONX,10466,40.896687,-73.84511,"(40.896687, -73.84511)",BAYCHESTER AVENUE,PITMAN AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4517090,Sedan,Sedan,,, +04/07/2022,23:10,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517495,Sedan,Sedan,,, +04/06/2022,2:34,BRONX,10466,40.888138,-73.82661,"(40.888138, -73.82661)",,,1635 EAST 233 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517712,Sedan,Dump,,, +04/06/2022,15:43,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517739,Bus,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,15:00,,,40.768982,-73.91064,"(40.768982, -73.91064)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4517404,Sedan,Sedan,Sedan,, +04/07/2022,11:40,BROOKLYN,11215,40.673714,-73.98168,"(40.673714, -73.98168)",,,327 1 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517671,Station Wagon/Sport Utility Vehicle,,,, +03/26/2022,14:40,MANHATTAN,10018,40.758137,-73.99787,"(40.758137, -73.99787)",,,516 WEST 39 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,View Obstructed/Limited,,,,4517659,Station Wagon/Sport Utility Vehicle,Convertible,,, +04/07/2022,17:30,QUEENS,11004,40.747433,-73.70811,"(40.747433, -73.70811)",79 AVENUE,264 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517417,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,14:38,BROOKLYN,11212,40.665207,-73.91252,"(40.665207, -73.91252)",BOYLAND STREET,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,,4517586,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/04/2022,12:30,MANHATTAN,10018,40.754055,-73.99583,"(40.754055, -73.99583)",9 AVENUE,WEST 35 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517726,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,16:44,,,40.71286,-73.96579,"(40.71286, -73.96579)",SOUTH 4 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517516,Sedan,Sedan,,, +04/07/2022,17:25,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517114,Sedan,Sedan,,, +04/08/2022,23:00,MANHATTAN,10027,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517792,Sedan,E-Bike,,, +04/06/2022,22:09,BRONX,10459,40.82244,-73.90199,"(40.82244, -73.90199)",EAST 163 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4516889,Sedan,,,, +04/08/2022,0:15,MANHATTAN,10011,40.73773,-73.99659,"(40.73773, -73.99659)",,,541 AVENUE OF THE AMERICAS,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,16:45,,,40.686752,-73.99605,"(40.686752, -73.99605)",BALTIC STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517305,Sedan,Sedan,,, +04/08/2022,1:57,BROOKLYN,11217,40.680218,-73.97789,"(40.680218, -73.97789)",5 AVENUE,WARREN STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4517677,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,21:04,BROOKLYN,11213,40.6727,-73.93635,"(40.6727, -73.93635)",TROY AVENUE,PARK PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517770,Motorscooter,,,, +04/08/2022,14:38,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,View Obstructed/Limited,,,,4517459,Station Wagon/Sport Utility Vehicle,Dump,,, +03/18/2022,8:08,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,8:10,,,40.66925,-73.93944,"(40.66925, -73.93944)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517687,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,6:45,,,,,,PARK AVENUE,NAVY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494607,Sedan,,,, +04/08/2022,14:10,QUEENS,11370,40.772045,-73.892166,"(40.772045, -73.892166)",,,19-46 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517379,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,8:48,BROOKLYN,11207,40.676014,-73.89398,"(40.676014, -73.89398)",ATLANTIC AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4517052,Sedan,Box Truck,,, +04/03/2022,4:00,,,40.768356,-73.904884,"(40.768356, -73.904884)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,,,,4517841,Sedan,Sedan,,, +04/06/2022,9:11,QUEENS,11355,40.748104,-73.83126,"(40.748104, -73.83126)",133 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516714,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,9:12,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",3 AVENUE,EAST 180 STREET,,1,0,1,0,0,0,0,0,,,,,,4516944,,,,, +04/06/2022,22:13,BROOKLYN,11210,40.636074,-73.951096,"(40.636074, -73.951096)",FLATBUSH AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517552,Taxi,Taxi,,, +04/08/2022,10:40,MANHATTAN,10075,40.772556,-73.95562,"(40.772556, -73.95562)",,,1496 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517283,Van,,,, +04/08/2022,13:45,QUEENS,11418,40.691795,-73.84376,"(40.691795, -73.84376)",102 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517441,Sedan,,,, +04/08/2022,20:17,BRONX,10458,40.856922,-73.88642,"(40.856922, -73.88642)",,,2461 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4517610,Sedan,Sedan,,, +04/06/2022,14:24,QUEENS,11415,40.70648,-73.82648,"(40.70648, -73.82648)",,,84-77 AUSTIN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4516955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/06/2022,19:40,BROOKLYN,11234,40.6287,-73.91926,"(40.6287, -73.91926)",AVENUE J,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4516847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,18:05,BRONX,10457,40.844177,-73.89744,"(40.844177, -73.89744)",3 AVENUE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516943,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,15:30,,,40.7132,-73.97723,"(40.7132, -73.97723)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517140,Sedan,Sedan,,, +04/06/2022,14:08,BROOKLYN,11211,40.717323,-73.956894,"(40.717323, -73.956894)",,,183 NORTH 7 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4516906,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/17/2021,20:15,QUEENS,11413,40.666286,-73.785934,"(40.666286, -73.785934)",153 PLACE,SOUTH CONDUIT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4428216,Dump,,,, +06/24/2021,0:00,BROOKLYN,11232,40.659107,-73.99576,"(40.659107, -73.99576)",25 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4430808,E-Bike,Sedan,,, +07/02/2021,16:30,BROOKLYN,11220,40.639782,-74.00151,"(40.639782, -74.00151)",9 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433996,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,14:55,BROOKLYN,11230,40.61196,-73.96816,"(40.61196, -73.96816)",OCEAN PARKWAY,AVENUE O,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433999,Sedan,,,, +06/17/2021,12:48,BROOKLYN,11234,40.6103,-73.92173,"(40.6103, -73.92173)",,,5200 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434010,Sedan,Sedan,,, +07/02/2021,8:44,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434015,CAMPER VAN,,,, +07/02/2021,19:35,BRONX,10458,40.859425,-73.8947,"(40.859425, -73.8947)",MARION AVENUE,EAST 187 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434033,Sedan,,,, +07/02/2021,10:12,BROOKLYN,11204,40.624767,-73.987206,"(40.624767, -73.987206)",,,1713 57 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434000,Sedan,Bike,,, +06/27/2021,22:58,BROOKLYN,11219,40.634468,-73.99271,"(40.634468, -73.99271)",13 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,17:46,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434034,Sedan,,,, +04/08/2022,1:45,QUEENS,11368,40.740276,-73.848595,"(40.740276, -73.848595)",,,111-26 CORONA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517149,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,0:35,MANHATTAN,10019,40.76222,-73.97875,"(40.76222, -73.97875)",,,1335 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516649,Taxi,,,, +04/07/2022,10:38,,,40.84825,-73.90975,"(40.84825, -73.90975)",EAST 176 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517177,Sedan,Van,,, +10/15/2021,19:35,,,40.6763604,-73.8664247,"(40.6763604, -73.8664247)",CONDUIT BOULEVARD,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4470469,Sedan,,,, +07/01/2021,21:50,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433526,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,8:30,QUEENS,11378,40.72593,-73.91837,"(40.72593, -73.91837)",50 STREET,56 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432773,Carry All,Sedan,,, +07/01/2021,20:43,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4433814,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,0:30,,,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433503,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,12:57,BRONX,10453,40.85809,-73.901924,"(40.85809, -73.901924)",EAST 183 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433230,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,14:58,,,40.71406,-73.95292,"(40.71406, -73.95292)",METROPOLITAN AVENUE,MEEKER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432893,Tractor Truck Diesel,Sedan,,, +07/02/2021,18:40,BROOKLYN,11229,40.614788,-73.94658,"(40.614788, -73.94658)",KINGS HIGHWAY,EAST 28 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433724,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,17:46,BROOKLYN,11223,40.602478,-73.96636,"(40.602478, -73.96636)",OCEAN PARKWAY,AVENUE S,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432826,Sedan,,,, +07/01/2021,8:45,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",EAST 162 STREET,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4433345,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,23:00,MANHATTAN,10128,40.780693,-73.9466,"(40.780693, -73.9466)",EAST 92 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4433204,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,18:07,BRONX,10458,40.861954,-73.89105,"(40.861954, -73.89105)",,,2543 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4433189,Sedan,,,, +06/22/2021,16:27,BRONX,10456,40.830536,-73.91571,"(40.830536, -73.91571)",EAST 166 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433502,Pick-up Truck,Sedan,,, +06/30/2021,13:00,STATEN ISLAND,10312,40.561077,-74.16984,"(40.561077, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433074,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,13:50,,,40.716,-73.74546,"(40.716, -73.74546)",HEMPSTEAD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4433384,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/29/2021,14:00,,,,,,,,1 GULF AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,11:02,BROOKLYN,11212,40.659172,-73.913895,"(40.659172, -73.913895)",,,2238 STRAUSS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433055,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,2:00,BROOKLYN,11222,40.7263,-73.94913,"(40.7263, -73.94913)",NORMAN AVENUE,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432421,Motorcycle,Sedan,,, +06/30/2021,17:00,QUEENS,11385,40.69469,-73.90252,"(40.69469, -73.90252)",SUMMERFIELD AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433755,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:27,MANHATTAN,10016,40.748184,-73.979965,"(40.748184, -73.979965)",,,107 EAST 36 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4433424,Sedan,,,, +06/30/2021,2:58,BROOKLYN,11249,40.716785,-73.964806,"(40.716785, -73.964806)",,,50 NORTH 1 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4432805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2021,17:10,BRONX,10459,40.817875,-73.89333,"(40.817875, -73.89333)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4433347,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,10:10,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433215,Sedan,Tractor Truck Diesel,,, +07/01/2021,5:24,BRONX,10451,40.819786,-73.91216,"(40.819786, -73.91216)",BROOK AVENUE,EAST 156 STREET,,0,1,0,0,0,1,0,0,Unspecified,Unspecified,,,,4433274,Sedan,E-Bike,,, +06/30/2021,14:45,BROOKLYN,11204,40.61747,-73.98129,"(40.61747, -73.98129)",61 STREET,21 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4432953,Sedan,Sedan,,, +07/01/2021,20:20,BROOKLYN,11238,40.671627,-73.96263,"(40.671627, -73.96263)",EASTERN PARKWAY,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433389,Sedan,,,, +06/30/2021,14:00,,,40.71781,-73.80358,"(40.71781, -73.80358)",164 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433451,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/22/2021,7:01,BROOKLYN,11233,40.67024,-73.918144,"(40.67024, -73.918144)",,,1499 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433733,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,22:02,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432855,Sedan,Sedan,,, +06/29/2021,16:00,QUEENS,11427,40.724693,-73.7541,"(40.724693, -73.7541)",212 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433590,Sedan,DUMP TRUCK,,, +07/01/2021,13:02,QUEENS,11368,40.744934,-73.86792,"(40.744934, -73.86792)",JUNCTION BOULEVARD,44 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,16:45,BROOKLYN,11207,40.67273,-73.8961,"(40.67273, -73.8961)",,,202 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433032,Sedan,,,, +07/01/2021,16:17,BROOKLYN,11236,40.63787,-73.90963,"(40.63787, -73.90963)",FLATLANDS AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433110,Sedan,Sedan,,, +07/01/2021,10:23,,,40.740692,-73.84418,"(40.740692, -73.84418)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433161,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,18:50,,,,,,SHORE ROAD,CITY ISLAND ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4433692,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,17:20,,,40.623123,-74.1676,"(40.623123, -74.1676)",SOUTH AVENUE,LISK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433934,Sedan,,,, +06/27/2021,23:46,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,5,0,0,0,0,0,5,0,Unsafe Lane Changing,Unspecified,,,,4433315,Sedan,Sedan,,, +06/30/2021,17:56,,,40.844116,-73.89857,"(40.844116, -73.89857)",BATHGATE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432864,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/01/2021,10:04,QUEENS,11415,40.711002,-73.834435,"(40.711002, -73.834435)",,,118-16 80 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433072,Sedan,Sedan,,, +06/26/2021,0:35,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433245,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,13:30,BROOKLYN,11249,40.70683,-73.9684,"(40.70683, -73.9684)",KENT AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433953,Pick-up Truck,,,, +07/02/2021,12:51,,,40.662014,-73.886826,"(40.662014, -73.886826)",VAN SICLEN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433306,Sedan,,,, +06/30/2021,8:00,BRONX,10468,40.877365,-73.88533,"(40.877365, -73.88533)",GRAND CONCOURSE,VANCORTLANDT AVENUE EAST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433538,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,15:10,QUEENS,11434,,,,BELT PARKWAY,150 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4433377,Sedan,Pick-up Truck,,, +07/02/2021,15:42,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",CLAREMONT PARKWAY,FULTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433485,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,15:00,QUEENS,11429,40.706047,-73.73188,"(40.706047, -73.73188)",111 AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433102,Sedan,Sedan,,, +06/30/2021,5:05,MANHATTAN,10002,40.714077,-73.98985,"(40.714077, -73.98985)",,,169 EAST BROADWAY,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4433580,Box Truck,,,, +07/02/2021,22:50,,,40.695713,-73.926506,"(40.695713, -73.926506)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4433467,Tanker,Sedan,,, +07/01/2021,13:30,STATEN ISLAND,10310,40.63943,-74.1177,"(40.63943, -74.1177)",BROADWAY,MARKHAM LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433911,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,7:42,MANHATTAN,10022,40.75613,-73.96761,"(40.75613, -73.96761)",2 AVENUE,EAST 52 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432584,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/01/2021,17:50,BRONX,10465,40.828125,-73.84105,"(40.828125, -73.84105)",BRUCKNER BOULEVARD,BRUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433251,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,22:10,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433250,Chassis Cab,Box Truck,,, +06/30/2021,7:50,BROOKLYN,11236,40.650063,-73.90738,"(40.650063, -73.90738)",,,9701 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432749,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,7:25,BROOKLYN,11215,40.67255,-73.988045,"(40.67255, -73.988045)",,,250 6 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433399,Sedan,,,, +07/01/2021,16:15,,,40.7432,-73.89589,"(40.7432, -73.89589)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433418,Sedan,Box Truck,,, +06/30/2021,11:30,MANHATTAN,10035,40.79925,-73.93907,"(40.79925, -73.93907)",3 AVENUE,EAST 118 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432903,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,23:40,,,40.67828,-73.958855,"(40.67828, -73.958855)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4517644,Sedan,Convertible,,, +06/26/2021,23:10,QUEENS,11433,40.703712,-73.78752,"(40.703712, -73.78752)",LIBERTY AVENUE,171 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4433366,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,12:40,,,40.695995,-73.96742,"(40.695995, -73.96742)",WASHINGTON AVENUE,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433797,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/01/2021,13:40,BROOKLYN,11221,40.68925,-73.92165,"(40.68925, -73.92165)",,,1380 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4433657,,,,, +06/29/2021,14:45,QUEENS,11368,40.75776,-73.862816,"(40.75776, -73.862816)",106 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4433338,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,12:45,BRONX,10467,,,,,,757 EAST 219 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433821,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/24/2021,10:15,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4433629,Sedan,Sedan,,, +07/02/2021,11:45,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433700,Sedan,Bus,,, +06/30/2021,13:10,BROOKLYN,11223,40.59801,-73.9638,"(40.59801, -73.9638)",,,720 AVENUE U,1,0,1,0,0,0,0,0,Unspecified,,,,,4433197,Sedan,,,, +07/02/2021,21:45,QUEENS,11368,40.757694,-73.864624,"(40.757694, -73.864624)",NORTHERN BOULEVARD,104 STREET,,1,0,0,0,0,0,0,0,Brakes Defective,Pavement Slippery,,,,4433404,Sedan,E-Bike,,, +06/30/2021,7:52,,,40.75771,-73.93216,"(40.75771, -73.93216)",36 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432928,Sedan,Sedan,,, +07/02/2021,18:35,QUEENS,11374,40.713394,-73.85956,"(40.713394, -73.85956)",WOODHAVEN BOULEVARD,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4433572,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,21:41,,,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433846,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,16:25,BROOKLYN,11214,40.60144,-74.00155,"(40.60144, -74.00155)",BATH AVENUE,20 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432957,Sedan,Bike,,, +06/28/2021,19:18,MANHATTAN,10032,40.83349,-73.94158,"(40.83349, -73.94158)",AMSTERDAM AVENUE,WEST 158 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,6:55,BROOKLYN,11207,40.663204,-73.89848,"(40.663204, -73.89848)",,,480 HINSDALE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4432969,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/30/2021,8:30,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4432733,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,16:00,,,40.700626,-73.9868,"(40.700626, -73.9868)",PROSPECT STREET,JAY STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433766,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/01/2021,16:00,MANHATTAN,10010,40.742275,-73.989235,"(40.742275, -73.989235)",BROADWAY,WEST 24 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433651,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,21:50,MANHATTAN,10011,40.740078,-73.99485,"(40.740078, -73.99485)",,,620 AVENUE OF THE AMERICAS,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433867,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2021,1:18,,,40.820293,-73.94378,"(40.820293, -73.94378)",WEST 141 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4433283,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,11:00,BRONX,10458,40.876163,-73.881516,"(40.876163, -73.881516)",VANCORTLANDT AVENUE EAST,EAST MOSHOLU PARKWAY NORTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432661,Sedan,TRACTOR,,, +07/01/2021,14:47,BROOKLYN,11220,40.639225,-74.0021,"(40.639225, -74.0021)",51 STREET,9 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4433987,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,8:00,BROOKLYN,11213,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433125,Sedan,,,, +07/01/2021,21:10,QUEENS,11413,40.677925,-73.75486,"(40.677925, -73.75486)",SPRINGFIELD BOULEVARD,136 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433144,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,12:30,QUEENS,11377,40.746235,-73.89895,"(40.746235, -73.89895)",39 AVENUE,65 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433174,Sedan,,,, +06/29/2021,9:30,,,40.73197,-73.78651,"(40.73197, -73.78651)",184 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433434,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,19:35,BROOKLYN,11207,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4433302,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/30/2021,0:30,MANHATTAN,10016,40.74639,-73.977646,"(40.74639, -73.977646)",3 AVENUE,EAST 35 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432700,Sedan,Sedan,,, +06/30/2021,2:40,BRONX,10461,40.842476,-73.85319,"(40.842476, -73.85319)",,,2400 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4432664,Sedan,,,, +06/30/2021,14:06,MANHATTAN,10024,40.785156,-73.97901,"(40.785156, -73.97901)",BROADWAY,WEST 81 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4433533,Sedan,Bike,,, +07/01/2021,11:00,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433084,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,16:10,QUEENS,11434,40.68125,-73.764824,"(40.68125, -73.764824)",MERRICK BOULEVARD,ANDERSON ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433255,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,13:14,BROOKLYN,11236,40.63998,-73.89657,"(40.63998, -73.89657)",,,1699 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432744,Sedan,Taxi,Sedan,, +07/01/2021,13:20,BROOKLYN,11204,40.61626,-73.99309,"(40.61626, -73.99309)",70 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433671,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,6:35,,,40.81207,-73.93603,"(40.81207, -73.93603)",MADISON AVENUE,EAST 135 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432598,Sedan,Van,,, +06/28/2021,17:15,QUEENS,11366,40.731663,-73.78736,"(40.731663, -73.78736)",73 AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433439,Sedan,Sedan,,, +07/01/2021,2:00,BROOKLYN,11212,40.65817,-73.92072,"(40.65817, -73.92072)",,,9407 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4432968,Sedan,,,, +07/02/2021,7:00,BROOKLYN,11203,40.66297,-73.94097,"(40.66297, -73.94097)",,,621 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433662,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,15:20,BROOKLYN,11201,40.6985,-73.98698,"(40.6985, -73.98698)",NASSAU STREET,JAY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433771,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,23:36,,,40.60235,-74.189606,"(40.60235, -74.189606)",SOUTH AVENUE,CHELSEA ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4433238,Sedan,Box Truck,Box Truck,, +07/02/2021,10:55,QUEENS,11385,40.713116,-73.9096,"(40.713116, -73.9096)",,,54-29 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433370,Van,,,, +04/08/2022,10:50,BROOKLYN,11236,40.637444,-73.90155,"(40.637444, -73.90155)",AVENUE K,EAST 91 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517272,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,14:00,QUEENS,11365,40.732323,-73.810776,"(40.732323, -73.810776)",PARSONS BOULEVARD,JEWEL AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433456,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,10:00,,,40.66743,-73.76676,"(40.66743, -73.76676)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433492,Sedan,,,, +06/30/2021,17:48,,,40.678543,-73.949684,"(40.678543, -73.949684)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433862,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,11:40,QUEENS,11355,40.7613,-73.80952,"(40.7613, -73.80952)",SANFORD AVENUE,156 STREET,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4433638,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,17:00,BRONX,10467,40.865467,-73.86541,"(40.865467, -73.86541)",ALLERTON AVENUE,HOLLAND AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4433705,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +06/17/2021,15:10,BRONX,10470,40.90486,-73.84894,"(40.90486, -73.84894)",,,731 PENFIELD STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433803,Sedan,,,, +06/30/2021,16:30,QUEENS,11414,40.673805,-73.85719,"(40.673805, -73.85719)",,,133-40 79 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432873,Sedan,Sedan,,, +07/01/2021,22:10,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433201,Sedan,Sedan,,, +07/01/2021,0:00,,,40.706123,-73.92214,"(40.706123, -73.92214)",STARR STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433221,Sedan,,,, +06/30/2021,16:40,BROOKLYN,11226,40.640285,-73.9567,"(40.640285, -73.9567)",,,2212 DITMAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4432993,Sedan,,,, +07/02/2021,22:29,BROOKLYN,11234,40.61895,-73.92689,"(40.61895, -73.92689)",AVENUE N,UTICA AVENUE,,2,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433408,Bus,E-Scooter,,, +07/01/2021,14:00,BROOKLYN,11210,40.627758,-73.93436,"(40.627758, -73.93436)",,,4318 AVENUE J,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433326,Sedan,Sedan,,, +07/01/2021,9:29,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",VERNON BOULEVARD,36 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432935,Pick-up Truck,Sedan,,, +04/06/2022,23:30,,,40.73442,-73.92238,"(40.73442, -73.92238)",LONG ISLAND EXPRESSWAY,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517106,Sedan,,,, +06/21/2021,13:30,BROOKLYN,11226,40.65487,-73.96191,"(40.65487, -73.96191)",PARKSIDE AVENUE,OCEAN AVENUE,,1,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4433428,E-Bike,Sedan,,, +07/02/2021,20:25,QUEENS,11417,40.678787,-73.84427,"(40.678787, -73.84427)",CROSS BAY BOULEVARD,107 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,17:39,BROOKLYN,11203,40.656063,-73.93957,"(40.656063, -73.93957)",ALBANY AVENUE,CLARKSON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4433891,Sedan,Bike,,, +07/01/2021,9:50,,,40.797035,-73.929825,"(40.797035, -73.929825)",EAST 120 STREET,PALADINO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432974,Sedan,,,, +06/30/2021,7:56,BRONX,10455,40.814934,-73.91496,"(40.814934, -73.91496)",EAST 149 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432648,Sedan,,,, +07/02/2021,11:10,MANHATTAN,10000,40.78082,-73.96197,"(40.78082, -73.96197)",,,26 TRANSVERSE ROAD NUMBER THREE,1,0,0,0,0,0,1,0,Passing Too Closely,,,,,4433287,Motorcycle,,,, +07/02/2021,6:00,,,40.766617,-73.8389,"(40.766617, -73.8389)",WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4433923,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,8:43,BROOKLYN,11203,40.65342,-73.92378,"(40.65342, -73.92378)",,,108 EAST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432737,mini van,,,, +06/30/2021,19:30,BROOKLYN,11249,40.71923,-73.96145,"(40.71923, -73.96145)",,,65 NORTH 6 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432813,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,7:31,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433476,Sedan,Pick-up Truck,,, +07/01/2021,9:45,QUEENS,11433,40.69815,-73.79241,"(40.69815, -73.79241)",BREWER BOULEVARD,107 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433120,Sedan,Flat Bed,,, +07/02/2021,14:45,BROOKLYN,11223,40.58794,-73.97429,"(40.58794, -73.97429)",AVENUE Y,SHELL ROAD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433744,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,17:50,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433982,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,8:00,QUEENS,11418,40.701015,-73.84107,"(40.701015, -73.84107)",,,109-04 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433282,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,15:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432924,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,9:16,,,40.693733,-73.990456,"(40.693733, -73.990456)",COURT STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4433045,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +07/01/2021,18:07,BROOKLYN,11220,40.632,-74.011475,"(40.632, -74.011475)",,,847 65 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433130,Taxi,Sedan,,, +07/02/2021,12:55,,,40.70058,-73.80775,"(40.70058, -73.80775)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433314,Sedan,Sedan,,, +06/30/2021,18:10,,,40.668636,-73.79189,"(40.668636, -73.79189)",133 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432752,Bus,Sedan,,, +07/01/2021,10:10,,,40.640263,-74.019035,"(40.640263, -74.019035)",61 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433170,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,9:10,BROOKLYN,11203,40.65788,-73.93801,"(40.65788, -73.93801)",,,681 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432791,Sedan,,,, +04/08/2022,14:07,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4517452,Sedan,Sedan,,, +06/30/2021,10:00,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4432677,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/30/2021,21:35,BROOKLYN,11207,40.662014,-73.886826,"(40.662014, -73.886826)",VAN SICLEN AVENUE,HEGEMAN AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433031,Sedan,,,, +07/02/2021,11:25,BRONX,10459,40.82351,-73.89418,"(40.82351, -73.89418)",,,995 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433341,Motorcycle,,,, +07/02/2021,15:02,STATEN ISLAND,10306,40.584015,-74.1025,"(40.584015, -74.1025)",SOUTH RAILROAD AVENUE,JEFFERSON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433358,Sedan,,,, +06/30/2021,11:20,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432944,Sedan,Tractor Truck Diesel,,, +07/02/2021,2:00,BROOKLYN,11230,40.612583,-73.96263,"(40.612583, -73.96263)",,,1113 AVENUE O,0,0,0,0,0,0,0,0,Unspecified,,,,,4433718,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,13:45,QUEENS,11373,40.73438,-73.869286,"(40.73438, -73.869286)",,,58-56 92 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433778,Sedan,Sedan,,, +06/30/2021,17:10,BROOKLYN,11226,40.645016,-73.950874,"(40.645016, -73.950874)",BEVERLEY ROAD,EAST 28 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4432962,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,9:40,QUEENS,11427,40.723732,-73.75935,"(40.723732, -73.75935)",,,86-92 208 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4433461,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/11/2021,6:50,,,40.67151,-73.76455,"(40.67151, -73.76455)",FARMERS BOULEVARD,140 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4433309,Bus,Sedan,Sedan,, +07/01/2021,11:20,QUEENS,11101,40.74387,-73.956215,"(40.74387, -73.956215)",49 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433175,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,6:45,BRONX,10465,40.82218,-73.82929,"(40.82218, -73.82929)",,,650 BUTTRICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433242,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,17:00,,,,,,NORTH CONDUIT AVENUE,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4433496,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,19:20,,,40.8453,-73.93827,"(40.8453, -73.93827)",WEST 174 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4433015,Sedan,,,, +06/14/2021,22:47,BROOKLYN,11220,40.64983,-74.00909,"(40.64983, -74.00909)",44 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433528,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,17:00,STATEN ISLAND,10308,40.542908,-74.15579,"(40.542908, -74.15579)",ARMSTRONG AVENUE,SYCAMORE STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4433080,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,11:44,BRONX,10474,40.811707,-73.8893,"(40.811707, -73.8893)",,,1225 RANDALL AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4433351,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:20,,,40.678394,-73.94692,"(40.678394, -73.94692)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433857,Sedan,,,, +06/30/2021,6:50,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",111 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432835,Sedan,Bus,,, +07/01/2021,13:20,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433062,Sedan,Sedan,,, +06/30/2021,10:05,QUEENS,11414,40.66405,-73.84211,"(40.66405, -73.84211)",92 STREET,156 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,16:07,QUEENS,11413,40.679955,-73.75215,"(40.679955, -73.75215)",,,216-19 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4433380,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/01/2021,17:58,MANHATTAN,10075,40.77454,-73.95793,"(40.77454, -73.95793)",,,180 EAST 79 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433205,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/30/2021,9:40,,,40.738518,-73.80001,"(40.738518, -73.80001)",HORACE HARDING EXPRESSWAY,169 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433443,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,7:58,BRONX,10466,40.890945,-73.85992,"(40.890945, -73.85992)",EAST 229 STREET,LOWERRE PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4433810,Sedan,Sedan,,, +06/30/2021,21:15,BROOKLYN,11206,40.70002,-73.95451,"(40.70002, -73.95451)",,,218 WALLABOUT STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432800,Sedan,,,, +06/30/2021,4:24,BRONX,10456,40.83,-73.91812,"(40.83, -73.91812)",SHERMAN AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,,4433216,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +06/30/2021,22:20,,,40.86341,-73.93001,"(40.86341, -73.93001)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433830,Sedan,,,, +06/28/2021,10:29,BRONX,10459,,,,,,888 Rev James Polite Ave,0,0,0,0,0,0,0,0,Unspecified,,,,,4433346,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,15:25,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4433472,Sedan,Sedan,,, +07/01/2021,0:01,MANHATTAN,10009,40.7252,-73.98706,"(40.7252, -73.98706)",EAST 4 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4433739,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,20:25,BROOKLYN,11212,40.67132,-73.90864,"(40.67132, -73.90864)",,,61 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4432912,Sedan,Sedan,Sedan,, +07/01/2021,8:51,BRONX,10458,40.85723,-73.88738,"(40.85723, -73.88738)",,,2460 HOFFMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433263,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,0:21,BROOKLYN,11236,40.653378,-73.90658,"(40.653378, -73.90658)",ROCKAWAY AVENUE,DITMAS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,10:47,,,40.70766,-73.78773,"(40.70766, -73.78773)",172 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433116,Sedan,Sedan,,, +06/30/2021,1:42,BROOKLYN,11234,40.618877,-73.908936,"(40.618877, -73.908936)",AVENUE U,EAST 69 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432761,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,16:55,BROOKLYN,11215,40.677414,-73.98305,"(40.677414, -73.98305)",4 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433513,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,13:30,,,,,,,,208 RODNEY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433951,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:00,,,40.66996,-73.90889,"(40.66996, -73.90889)",PITKIN AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433614,Sedan,E-Bike,,, +06/27/2021,17:30,QUEENS,11368,40.739918,-73.85254,"(40.739918, -73.85254)",,,57-02 VANDOREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433683,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,9:30,BROOKLYN,11207,40.669228,-73.8962,"(40.669228, -73.8962)",SUTTER AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433036,Sedan,,,, +07/01/2021,19:51,,,40.67753,-73.73085,"(40.67753, -73.73085)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4433134,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2021,13:36,STATEN ISLAND,10310,40.6354,-74.106674,"(40.6354, -74.106674)",,,355 BARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433916,Ambulance,Sedan,,, +07/01/2021,23:00,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",177 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433319,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/01/2021,5:20,QUEENS,11373,40.746403,-73.877426,"(40.746403, -73.877426)",,,88-36 ELMHURST AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432883,AMBULANCE,Sedan,,, +07/02/2021,4:20,MANHATTAN,10027,40.813374,-73.956276,"(40.813374, -73.956276)",WEST 125 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433751,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,11:51,BRONX,10460,40.83999,-73.87757,"(40.83999, -73.87757)",,,1095 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433262,Taxi,,,, +06/30/2021,22:35,BROOKLYN,11211,40.70648,-73.96375,"(40.70648, -73.96375)",BEDFORD AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432806,Sedan,FIRETRUCK,,, +06/30/2021,14:10,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,17:38,MANHATTAN,10024,40.785294,-73.969345,"(40.785294, -73.969345)",CENTRAL PARK WEST,WEST 86 STREET,,0,1,0,0,0,1,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4433548,Box Truck,Bike,,, +06/30/2021,21:00,BROOKLYN,11211,40.71564,-73.94076,"(40.71564, -73.94076)",,,49 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433277,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,21:11,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4432856,Sedan,,,, +07/01/2021,14:08,QUEENS,11411,40.689465,-73.733986,"(40.689465, -73.733986)",229 STREET,119 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4433067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,10:00,,,40.757473,-73.91582,"(40.757473, -73.91582)",44 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433294,Sedan,UNKOWN,,, +06/30/2021,2:22,,,40.866066,-73.89438,"(40.866066, -73.89438)",EAST KINGSBRIDGE ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4432438,Bus,,,, +06/30/2021,9:14,QUEENS,11693,40.590107,-73.814095,"(40.590107, -73.814095)",BEACH CHANNEL DRIVE,BEACH 88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433096,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,17:10,QUEENS,11413,40.681946,-73.73827,"(40.681946, -73.73827)",130 AVENUE,229 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433879,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,16:30,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4433373,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,20:20,BROOKLYN,11217,40.683464,-73.97569,"(40.683464, -73.97569)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433393,Sedan,Sedan,,, +07/01/2021,18:40,QUEENS,11429,40.71567,-73.73531,"(40.71567, -73.73531)",,,218-70 99 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,8:40,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",CANAL STREET,LAFAYETTE STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4432785,Sedan,Sedan,,, +07/01/2021,11:40,,,40.80751,-73.93413,"(40.80751, -73.93413)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433007,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,18:57,BROOKLYN,11234,40.6146,-73.92448,"(40.6146, -73.92448)",EAST 52 STREET,FILLMORE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433160,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,18:00,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4433133,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,13:00,BRONX,10468,40.86531,-73.90333,"(40.86531, -73.90333)",UNIVERSITY AVENUE,WEST 190 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433052,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,11:13,QUEENS,11412,40.70537,-73.775826,"(40.70537, -73.775826)",183 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Other Vehicular,Following Too Closely,,,4433318,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/30/2021,6:50,QUEENS,11414,40.664192,-73.841125,"(40.664192, -73.841125)",CROSS BAY BOULEVARD,156 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4432547,Sedan,Bike,,, +06/30/2021,16:28,STATEN ISLAND,10308,40.56042,-74.1595,"(40.56042, -74.1595)",GURLEY AVENUE,BROOKFIELD AVENUE,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4433073,Sedan,Sedan,,, +06/30/2021,20:00,,,40.742676,-73.73361,"(40.742676, -73.73361)",GRAND CENTRAL PARKWAY,WINCHESTER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432756,Sedan,,,, +06/29/2021,10:00,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",EAST 175 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433246,Sedan,,,, +06/30/2021,10:00,,,40.684082,-73.90864,"(40.684082, -73.90864)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432858,Sedan,E-Bike,,, +07/02/2021,16:27,QUEENS,11411,40.695957,-73.742744,"(40.695957, -73.742744)",217 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433378,Sedan,Sedan,,, +07/02/2021,11:36,,,40.667904,-73.883606,"(40.667904, -73.883606)",DUMONT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433305,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,15:18,MANHATTAN,10031,40.828297,-73.95087,"(40.828297, -73.95087)",RIVERSIDE DRIVE,WEST 147 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433582,Sedan,Box Truck,,, +06/30/2021,19:16,,,40.77958,-73.98183,"(40.77958, -73.98183)",BROADWAY,WEST 73 STREET,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4433103,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,15:18,BROOKLYN,11215,40.676285,-73.98701,"(40.676285, -73.98701)",3 AVENUE,1 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4433395,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/02/2021,11:34,QUEENS,11357,40.789238,-73.80486,"(40.789238, -73.80486)",157 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4433550,Sedan,Sedan,,, +07/02/2021,22:15,QUEENS,11377,40.73793,-73.90856,"(40.73793, -73.90856)",58 STREET,58 PLACE,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4433413,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,9:54,MANHATTAN,10028,40.77847,-73.95314,"(40.77847, -73.95314)",,,233 EAST 86 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433788,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,22:31,QUEENS,11364,,,,,,221-84 GARLAND DRIVE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4432801,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,7:05,BROOKLYN,11226,40.641468,-73.95938,"(40.641468, -73.95938)",OCEAN AVENUE,DORCHESTER ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433002,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/01/2021,7:27,BROOKLYN,11226,40.644722,-73.95545,"(40.644722, -73.95545)",,,2316 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4433728,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,16:00,BRONX,10466,40.889435,-73.855194,"(40.889435, -73.855194)",,,820 EAST 229 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433815,Sedan,,,, +07/01/2021,18:00,BRONX,10453,40.856403,-73.9073,"(40.856403, -73.9073)",WEST 181 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433247,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,8:30,,,40.67509,-73.89187,"(40.67509, -73.89187)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433035,Sedan,Tractor Truck Diesel,,, +07/01/2021,13:24,BROOKLYN,11222,40.72169,-73.9429,"(40.72169, -73.9429)",,,76 NORTH HENRY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433232,Station Wagon/Sport Utility Vehicle,Van,,, +06/26/2021,13:30,BROOKLYN,11217,40.68114,-73.976166,"(40.68114, -73.976166)",,,458 BERGEN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433400,Sedan,E-Scooter,,, +06/30/2021,8:37,BRONX,10469,40.865345,-73.85102,"(40.865345, -73.85102)",ALLERTON AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432827,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,18:20,,,40.695114,-73.93194,"(40.695114, -73.93194)",BROADWAY,HART STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4433656,Bike,,,, +06/26/2021,19:30,BRONX,10466,40.892197,-73.85804,"(40.892197, -73.85804)",,,4152 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433798,Sedan,Taxi,,, +07/02/2021,1:05,BRONX,10468,40.86175,-73.9119,"(40.86175, -73.9119)",,,296 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,14:56,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",EAST TREMONT AVENUE,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433699,Sedan,,,, +07/02/2021,19:30,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433840,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,18:00,QUEENS,11385,40.69941,-73.91081,"(40.69941, -73.91081)",,,749 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433756,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,17:12,BROOKLYN,11201,40.695007,-73.98831,"(40.695007, -73.98831)",,,55 JOHNSON STREET,4,0,0,0,0,0,4,0,View Obstructed/Limited,,,,,4433146,Bus,,,, +06/30/2021,20:17,BRONX,10469,40.872414,-73.839966,"(40.872414, -73.839966)",HAMMERSLEY AVENUE,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4433090,Sedan,Sedan,,, +07/01/2021,13:36,STATEN ISLAND,10301,40.635483,-74.09091,"(40.635483, -74.09091)",BRIGHTON AVENUE,GLEN AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4433912,Sedan,Sedan,,, +07/01/2021,19:00,,,40.588547,-74.1453,"(40.588547, -74.1453)",,,849 ROCKLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,12:30,MANHATTAN,10028,40.777702,-73.951324,"(40.777702, -73.951324)",,,305 EAST 86 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4432675,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,16:20,,,40.665737,-73.75194,"(40.665737, -73.75194)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4432709,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/02/2021,20:55,,,40.708057,-73.92255,"(40.708057, -73.92255)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433468,Sedan,Sedan,,, +07/01/2021,8:49,QUEENS,11106,40.757393,-73.93547,"(40.757393, -73.93547)",24 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432939,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,22:14,,,40.851685,-73.94312,"(40.851685, -73.94312)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433829,Sedan,,,, +07/01/2021,9:00,BRONX,10469,0,0,"(0.0, 0.0)",,,2570 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4433430,Sedan,,,, +07/02/2021,0:00,BROOKLYN,11236,40.63889,-73.90702,"(40.63889, -73.90702)",,,913 EAST 88 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433258,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,15:30,QUEENS,11414,40.669876,-73.84741,"(40.669876, -73.84741)",SOUTH CONDUIT AVENUE,88 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433140,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,15:22,,,40.737785,-73.93496,"(40.737785, -73.93496)",VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432774,Van,Sedan,,, +07/02/2021,10:50,QUEENS,11429,40.712944,-73.74524,"(40.712944, -73.74524)",102 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4433290,Sedan,,,, +07/01/2021,11:30,BROOKLYN,11213,,,,St Johns Place,Schenectady Avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432987,Sedan,Carry All,,, +06/30/2021,9:30,BROOKLYN,11210,40.624382,-73.94643,"(40.624382, -73.94643)",NOSTRAND AVENUE,AVENUE K,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433273,Sedan,,,, +07/01/2021,7:48,BROOKLYN,11212,40.655388,-73.90301,"(40.655388, -73.90301)",,,1550 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4433622,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,18:00,QUEENS,11385,40.703377,-73.86343,"(40.703377, -73.86343)",MYRTLE AVENUE,UNION TURNPIKE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4433504,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,13:00,,,40.75888,-73.93011,"(40.75888, -73.93011)",29 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433295,Sedan,UNKOWN,,, +07/01/2021,6:49,MANHATTAN,10022,40.75831,-73.96294,"(40.75831, -73.96294)",EAST 57 STREET,1 AVENUE,,0,1,0,0,0,0,0,1,Driver Inattention/Distraction,Unspecified,,,,4433109,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/24/2021,14:11,,,40.58646,-73.81544,"(40.58646, -73.81544)",ROCKAWAY BEACH BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433777,Sedan,Bike,,, +06/30/2021,12:15,STATEN ISLAND,10305,40.586494,-74.092125,"(40.586494, -74.092125)",SEAVIEW AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432656,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,8:30,BROOKLYN,11222,0,0,"(0.0, 0.0)",,,249 HURON STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4432892,Van,Box Truck,,, +06/30/2021,15:10,BRONX,10457,40.852673,-73.88989,"(40.852673, -73.88989)",,,2286 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Following Too Closely,,,,4432945,Sedan,Sedan,,, +06/29/2021,15:55,,,40.84852,-73.935936,"(40.84852, -73.935936)",WEST 179 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433823,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,18:00,QUEENS,11373,40.7444,-73.88606,"(40.7444, -73.88606)",,,79-01 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433676,Ambulance,,,, +06/30/2021,11:00,,,,,,KINGS HIGHWAY,AVENUE K,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432693,Sedan,Sedan,,, +06/30/2021,18:04,BROOKLYN,11249,40.718773,-73.962204,"(40.718773, -73.962204)",,,50 NORTH 5 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432811,Box Truck,Sedan,,, +06/30/2021,22:10,MANHATTAN,10032,40.83089,-73.941376,"(40.83089, -73.941376)",WEST 155 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4433333,Sedan,Bike,,, +07/01/2021,8:57,,,,,,WILLIAMSBURG STREET WEST,KENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,20:42,BROOKLYN,11215,40.661507,-73.980934,"(40.661507, -73.980934)",,,458 15 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433875,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,10:30,,,40.70453,-73.817245,"(40.70453, -73.817245)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433435,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,0:30,BRONX,10474,40.812534,-73.88377,"(40.812534, -73.88377)",HUNTS POINT AVENUE,RANDALL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433350,,,,, +06/30/2021,17:30,STATEN ISLAND,10308,40.542423,-74.14592,"(40.542423, -74.14592)",HYLAN BOULEVARD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4433079,Sedan,,,, +06/30/2021,17:10,,,40.64507,-73.95803,"(40.64507, -73.95803)",BEVERLEY ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432994,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,7:57,,,40.859974,-73.900795,"(40.859974, -73.900795)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433226,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,17:30,BROOKLYN,11234,40.636204,-73.923874,"(40.636204, -73.923874)",,,869 EAST 55 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432768,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,22:00,,,40.71008,-73.84848,"(40.71008, -73.84848)",METROPOLITAN AVENUE,72 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4433499,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,12:15,BRONX,10458,40.87148,-73.88521,"(40.87148, -73.88521)",,,2980 BRIGGS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433963,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,22:34,BROOKLYN,11212,40.660095,-73.92605,"(40.660095, -73.92605)",,,1009 WINTHROP STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433890,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,20:30,,,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433301,Sedan,Sedan,,, +06/30/2021,12:58,,,40.8047,-73.91243,"(40.8047, -73.91243)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432821,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,3:16,,,40.825954,-73.94337,"(40.825954, -73.94337)",WEST 148 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433184,Sedan,Sedan,,, +06/29/2021,6:50,BROOKLYN,11204,40.610676,-73.988365,"(40.610676, -73.988365)",73 STREET,21 AVENUE,,2,0,0,0,0,0,2,0,Glare,Unspecified,,,,4433561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,22:00,,,40.719013,-73.79419,"(40.719013, -73.79419)",GRAND CENTRAL PARKWAY,172 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4433452,Sedan,Sedan,,, +07/01/2021,9:00,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433388,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,19:10,MANHATTAN,10033,40.850414,-73.93455,"(40.850414, -73.93455)",WADSWORTH AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433847,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,9:30,BRONX,10475,40.87521,-73.833694,"(40.87521, -73.833694)",,,850 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433327,Bus,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,17:01,BROOKLYN,11218,40.648117,-73.97135,"(40.648117, -73.97135)",,,397 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433359,Sedan,Bike,,, +07/02/2021,18:03,BROOKLYN,11230,40.625515,-73.9583,"(40.625515, -73.9583)",,,1816 AVENUE J,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433719,Pick-up Truck,Sedan,,, +06/27/2021,13:09,BROOKLYN,11234,40.61222,-73.918846,"(40.61222, -73.918846)",,,5602 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433587,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,17:30,BROOKLYN,11218,40.648823,-73.971565,"(40.648823, -73.971565)",CONEY ISLAND AVENUE,KERMIT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433419,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,13:30,MANHATTAN,10003,40.735947,-73.9839,"(40.735947, -73.9839)",,,245 EAST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433652,Sedan,,,, +06/29/2021,12:46,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433322,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,16:50,,,40.635494,-74.00957,"(40.635494, -74.00957)",60 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433868,Sedan,Sedan,,, +07/02/2021,1:25,BROOKLYN,11205,40.69786,-73.96395,"(40.69786, -73.96395)",FLUSHING AVENUE,STEUBEN STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4433179,Sedan,,,, +06/30/2021,13:50,QUEENS,11432,40.70675,-73.80224,"(40.70675, -73.80224)",PARSONS BOULEVARD,88 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433121,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,16:40,BROOKLYN,11208,40.68857,-73.8757,"(40.68857, -73.8757)",CYPRESS HILL STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433040,Sedan,Taxi,,, +06/21/2021,16:30,,,40.58017,-73.82886,"(40.58017, -73.82886)",BEACH 108 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433385,Sedan,,,, +07/02/2021,21:10,BRONX,10461,40.845066,-73.84541,"(40.845066, -73.84541)",,,1624 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4433693,Sedan,Sedan,Sedan,, +06/30/2021,5:18,QUEENS,11432,40.721302,-73.79853,"(40.721302, -73.79853)",,,81-24 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433447,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,9:45,BROOKLYN,11212,40.6553,-73.90318,"(40.6553, -73.90318)",LINDEN BOULEVARD,STONE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433627,Box Truck,Box Truck,,, +06/27/2021,15:00,BROOKLYN,11211,40.708675,-73.956314,"(40.708675, -73.956314)",RODNEY STREET,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433941,Sedan,Sedan,,, +07/01/2021,13:20,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433171,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/30/2021,7:40,MANHATTAN,10024,40.782463,-73.97883,"(40.782463, -73.97883)",AMSTERDAM AVENUE,WEST 78 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4433532,Sedan,Bike,,, +07/01/2021,7:02,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,,4432934,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck, +07/02/2021,15:59,BRONX,10456,,,,THIRD AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433486,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/19/2021,14:58,MANHATTAN,10018,40.75457,-73.99325,"(40.75457, -73.99325)",,,336 WEST 37 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4433672,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,4:45,BRONX,10473,40.819878,-73.85777,"(40.819878, -73.85777)",WHITE PLAINS ROAD,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4432572,Sedan,Sedan,,, +06/30/2021,0:00,QUEENS,11385,40.70434,-73.89919,"(40.70434, -73.89919)",,,60-17 68 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432972,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,13:08,QUEENS,11691,40.602802,-73.74879,"(40.602802, -73.74879)",CORNAGA AVENUE,NAMEOKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433254,Station Wagon/Sport Utility Vehicle,Sedan,Flat Bed,, +06/30/2021,17:30,BROOKLYN,11236,40.642708,-73.91006,"(40.642708, -73.91006)",FARRAGUT ROAD,EAST 89 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432745,Sedan,Sedan,,, +06/30/2021,18:53,,,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433220,Pick-up Truck,Sedan,,, +06/30/2021,16:20,,,40.81404,-73.9367,"(40.81404, -73.9367)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432951,Sedan,,,, +06/18/2021,14:32,,,40.69911,-73.93402,"(40.69911, -73.93402)",STANWIX STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4433463,Motorcycle,Sedan,,, +06/30/2021,15:38,MANHATTAN,10037,40.810696,-73.93913,"(40.810696, -73.93913)",,,2159 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432901,Sedan,Sedan,,, +07/02/2021,16:16,STATEN ISLAND,10301,40.61242,-74.09936,"(40.61242, -74.09936)",CLOVE ROAD,TIOGA STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4433919,Sedan,Sedan,,, +07/02/2021,10:45,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433480,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,3:08,BROOKLYN,11201,40.699844,-73.991035,"(40.699844, -73.991035)",CADMAN PLAZA WEST,MIDDAGH STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4433767,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,17:17,BRONX,10457,40.843216,-73.90345,"(40.843216, -73.90345)",,,1692 WEBSTER AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4433286,Sedan,Sedan,,, +07/02/2021,10:55,QUEENS,11378,40.72362,-73.88802,"(40.72362, -73.88802)",60 AVENUE,72 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4433365,Sedan,Sedan,,, +07/01/2021,16:00,MANHATTAN,10030,40.817997,-73.940285,"(40.817997, -73.940285)",,,164 WEST 140 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433907,Station Wagon/Sport Utility Vehicle,UNK,,, +06/30/2021,22:12,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4432845,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,0:30,,,40.8188,-73.95603,"(40.8188, -73.95603)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433183,Sedan,,,, +06/25/2021,9:20,QUEENS,11372,40.755737,-73.87687,"(40.755737, -73.87687)",,,33-29 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433337,Sedan,,,, +07/01/2021,9:14,,,40.718075,-73.97511,"(40.718075, -73.97511)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433083,Pick-up Truck,Sedan,,, +06/30/2021,18:26,BROOKLYN,11230,40.61196,-73.96816,"(40.61196, -73.96816)",OCEAN PARKWAY,AVENUE O,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433986,Sedan,Sedan,,, +06/14/2021,12:40,BRONX,10459,40.821854,-73.890305,"(40.821854, -73.890305)",,,936 HOE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433354,Motorcycle,,,, +06/30/2021,15:30,QUEENS,11420,40.68204,-73.808914,"(40.68204, -73.808914)",133 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432872,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,13:50,BROOKLYN,11207,40.66685,-73.8907,"(40.66685, -73.8907)",DUMONT AVENUE,BRADFORD STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4433041,Sedan,Sedan,,, +07/02/2021,0:30,QUEENS,11358,40.757843,-73.78929,"(40.757843, -73.78929)",,,192-14 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433196,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/30/2021,16:30,QUEENS,11377,40.73842,-73.8989,"(40.73842, -73.8989)",48 AVENUE,66 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4432790,Sedan,Sedan,Sedan,, +07/02/2021,16:38,MANHATTAN,10022,40.759575,-73.96803,"(40.759575, -73.96803)",EAST 56 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4433423,E-Scooter,,,, +07/01/2021,10:19,MANHATTAN,10012,40.72318,-73.99399,"(40.72318, -73.99399)",,,233 ELIZABETH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433707,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,6:30,,,40.736103,-73.90567,"(40.736103, -73.90567)",TYLER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432989,Tractor Truck Diesel,12 PASS VA,,, +06/28/2021,7:50,,,40.77041,-73.87558,"(40.77041, -73.87558)",95 STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4433403,Station Wagon/Sport Utility Vehicle,Bike,,, +07/02/2021,12:44,BROOKLYN,11204,40.615185,-73.98367,"(40.615185, -73.98367)",65 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433565,Sedan,Box Truck,,, +07/01/2021,12:09,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434014,Sedan,Tractor Truck Diesel,,, +07/02/2021,17:20,QUEENS,11412,40.699066,-73.76699,"(40.699066, -73.76699)",MANGIN AVENUE,MAYVILLE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,Unspecified,4433601,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/28/2021,18:55,BRONX,10459,40.828213,-73.89523,"(40.828213, -73.89523)",TIFFANY STREET,INTERVALE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4433342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/02/2021,13:20,BROOKLYN,11209,40.626328,-74.03284,"(40.626328, -74.03284)",83 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433522,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,19:57,BROOKLYN,11217,40.683464,-73.97569,"(40.683464, -73.97569)",,,625 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4433392,Sedan,Sedan,,, +07/02/2021,18:15,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433516,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,11:56,QUEENS,11434,40.688362,-73.77663,"(40.688362, -73.77663)",116 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433355,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,8:00,QUEENS,11432,,,,HILLSIDE AVENUE,DALNY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433460,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,17:14,,,40.83301,-73.95027,"(40.83301, -73.95027)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4433583,Sedan,,,, +07/02/2021,21:36,QUEENS,11411,40.69067,-73.73134,"(40.69067, -73.73134)",231 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4433415,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2021,9:30,BROOKLYN,11208,40.675007,-73.865456,"(40.675007, -73.865456)",,,1180 BELMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433016,Sedan,,,, +07/02/2021,1:20,,,40.5796,-73.954445,"(40.5796, -73.954445)",CORBIN PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433645,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/30/2021,11:32,BRONX,10454,40.80705,-73.90824,"(40.80705, -73.90824)",,,358 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432820,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/02/2021,15:10,QUEENS,11422,40.67234,-73.72793,"(40.67234, -73.72793)",HOOK CREEK BOULEVARD,133 DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433495,Sedan,Motorbike,,, +06/13/2021,17:30,BROOKLYN,11213,40.677048,-73.9387,"(40.677048, -73.9387)",PACIFIC STREET,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433860,E-Bike,Sedan,,, +07/01/2021,21:15,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433259,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,15:37,BROOKLYN,11218,40.65029,-73.97872,"(40.65029, -73.97872)",EAST 3 STREET,GREENWOOD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4433529,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/29/2021,15:00,,,40.57858,-73.9884,"(40.57858, -73.9884)",WEST 21 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4433637,Flat Bed,,,, +07/02/2021,17:20,QUEENS,11426,40.75274,-73.72413,"(40.75274, -73.72413)",,,249-16 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4433381,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/02/2021,14:30,,,,,,HUTCHINSON RIVER PARKWAY,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4433689,Sedan,Sedan,,, +06/26/2021,12:55,MANHATTAN,10069,40.777843,-73.98775,"(40.777843, -73.98775)",WEST 68 STREET,FREEDOM PLACE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4433536,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,14:30,MANHATTAN,10065,40.76198,-73.9618,"(40.76198, -73.9618)",,,328 EAST 62 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4433323,Sedan,,,, +07/01/2021,4:35,BROOKLYN,11203,40.647076,-73.94435,"(40.647076, -73.94435)",TILDEN AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432956,Sedan,Sedan,,, +06/30/2021,7:30,BROOKLYN,11206,40.69918,-73.941284,"(40.69918, -73.941284)",,,17 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,6:01,BROOKLYN,11235,,,,EAST 13 STREET,AVENUE Z,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,1:50,QUEENS,11432,40.7164,-73.80797,"(40.7164, -73.80797)",,,82-85 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433438,Sedan,,,, +06/30/2021,12:33,BROOKLYN,11215,40.676033,-73.981575,"(40.676033, -73.981575)",,,646 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432732,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,12:05,,,40.687943,-73.98141,"(40.687943, -73.98141)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433759,Sedan,Sedan,,, +07/02/2021,5:24,QUEENS,11101,40.737537,-73.929955,"(40.737537, -73.929955)",HUNTERS POINT AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4433237,Sedan,Sedan,,, +07/01/2021,4:13,,,40.699505,-73.88883,"(40.699505, -73.88883)",CYPRESS HILLS STREET,COOPER AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4433369,Sedan,,,, +07/02/2021,17:58,QUEENS,11354,40.761166,-73.82938,"(40.761166, -73.82938)",138 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4433475,Bus,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,11:45,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432885,Sedan,Box Truck,,, +06/30/2021,20:00,,,40.713993,-73.831924,"(40.713993, -73.831924)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4432778,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,20:00,QUEENS,11414,40.653854,-73.834694,"(40.653854, -73.834694)",,,162-48 97 STREET,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4432878,Convertible,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,0:00,BROOKLYN,11235,40.59397,-73.939125,"(40.59397, -73.939125)",,,2964 AVENUE X,0,0,0,0,0,0,0,0,Unspecified,,,,,4433200,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,13:18,BROOKLYN,11222,40.724636,-73.94818,"(40.724636, -73.94818)",NASSAU AVENUE,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433061,Sedan,Box Truck,,, +06/30/2021,8:30,BROOKLYN,11235,40.57909,-73.96447,"(40.57909, -73.96447)",OCEANVIEW AVENUE,BRIGHTON 3 PLACE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4432832,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,11:45,QUEENS,11422,40.67363,-73.73278,"(40.67363, -73.73278)",MERRICK BOULEVARD,241 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433068,Sedan,Sedan,,, +07/02/2021,16:47,MANHATTAN,10028,40.774902,-73.953926,"(40.774902, -73.953926)",,,1567 2 AVENUE,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/30/2021,0:50,,,40.856792,-73.91742,"(40.856792, -73.91742)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,Unspecified,,,4432474,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/30/2021,18:35,,,40.897884,-73.83969,"(40.897884, -73.83969)",MUNDY LANE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433097,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:20,BROOKLYN,11217,40.681786,-73.974144,"(40.681786, -73.974144)",,,38 6 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433512,Sedan,Sedan,,, +07/02/2021,5:45,QUEENS,11417,40.682186,-73.836044,"(40.682186, -73.836044)",,,104-31 105 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433225,Sedan,Sedan,,, +06/26/2021,20:05,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433806,Sedan,,,, +07/01/2021,12:00,MANHATTAN,10035,40.806652,-73.939995,"(40.806652, -73.939995)",,,1976 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433006,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,5:00,,,40.898506,-73.87938,"(40.898506, -73.87938)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4433374,Tractor Truck Diesel,,,, +07/01/2021,23:00,BROOKLYN,11236,40.64926,-73.90551,"(40.64926, -73.90551)",,,1253 ROCKAWAY AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,Unspecified,,,4433164,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/02/2021,15:38,BROOKLYN,11232,40.6586,-74.00339,"(40.6586, -74.00339)",,,850 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433407,Sedan,,,, +07/02/2021,16:45,QUEENS,11378,40.71732,-73.9105,"(40.71732, -73.9105)",,,57-50 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,4433540,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,21:05,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,AVENUE D,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4433738,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,4:45,BRONX,10468,40.862534,-73.89708,"(40.862534, -73.89708)",GRAND CONCOURSE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433264,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,16:40,BROOKLYN,11213,40.663998,-73.94153,"(40.663998, -73.94153)",,,621 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4433427,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/02/2021,21:06,BRONX,10474,40.808575,-73.885895,"(40.808575, -73.885895)",EAST BAY AVENUE,COSTER STREET,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4433576,van,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,14:43,BROOKLYN,11217,40.67707,-73.975685,"(40.67707, -73.975685)",,,109 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433396,Van,Sedan,,, +06/26/2021,18:40,MANHATTAN,10003,40.731018,-73.985916,"(40.731018, -73.985916)",2 AVENUE,EAST 12 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433749,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,16:49,,,40.76524,-73.95788,"(40.76524, -73.95788)",1 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4433789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,12:30,QUEENS,11366,,,,,,7541 190TH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,14:04,,,40.76027,-73.80401,"(40.76027, -73.80401)",162 STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,,,,,4433552,Bike,,,, +06/26/2021,3:40,,,40.6929,-73.928055,"(40.6929, -73.928055)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433661,Sedan,,,, +07/02/2021,11:56,BROOKLYN,11218,,,,OCEAN PARKWAY,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433991,Pick-up Truck,Sedan,,, +07/01/2021,18:29,QUEENS,11417,40.682415,-73.83617,"(40.682415, -73.83617)",LIBERTY AVENUE,105 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433141,Sedan,,,, +06/30/2021,5:05,,,,,,ANDREWS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4433278,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +06/22/2021,11:51,MANHATTAN,10033,40.847427,-73.931404,"(40.847427, -73.931404)",AMSTERDAM AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,2:45,,,40.680992,-73.75509,"(40.680992, -73.75509)",PINEVILLE LANE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4433491,Sedan,Sedan,Sedan,, +07/02/2021,9:19,BRONX,10457,40.8523,-73.8951,"(40.8523, -73.8951)",EAST 181 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433291,Bus,Sedan,,, +07/02/2021,12:57,QUEENS,11413,40.676155,-73.75566,"(40.676155, -73.75566)",SPRINGFIELD BOULEVARD,CARSON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433379,Sedan,Bike,,, +06/08/2021,8:17,MANHATTAN,10024,40.786484,-73.97218,"(40.786484, -73.97218)",WEST 86 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433296,Sedan,Bike,,, +07/01/2021,4:30,,,40.843204,-73.91196,"(40.843204, -73.91196)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4433838,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,2:30,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4432946,Sedan,,,, +06/30/2021,7:50,QUEENS,11411,40.690144,-73.7296,"(40.690144, -73.7296)",118 AVENUE,233 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432692,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/30/2021,13:00,QUEENS,11427,40.728584,-73.7446,"(40.728584, -73.7446)",219 STREET,89 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4432696,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,17:30,BROOKLYN,11207,40.684082,-73.90864,"(40.684082, -73.90864)",BUSHWICK AVENUE,CHAUNCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432913,Sedan,Van,,, +06/30/2021,20:00,,,40.880245,-73.85494,"(40.880245, -73.85494)",EAST 218 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433095,Sedan,,,, +06/30/2021,6:40,,,40.742012,-73.78278,"(40.742012, -73.78278)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,13:00,MANHATTAN,10003,40.725582,-73.989876,"(40.725582, -73.989876)",2 AVENUE,EAST 3 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433899,E-Bike,revel,,, +07/01/2021,3:00,QUEENS,11106,40.762527,-73.93805,"(40.762527, -73.93805)",35 AVENUE,12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432940,Sedan,RV,,, +06/29/2021,10:50,BRONX,10469,40.87241,-73.85478,"(40.87241, -73.85478)",,,3236 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433698,Sedan,,,, +07/01/2021,16:48,,,40.59399,-73.9962,"(40.59399, -73.9962)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433113,Sedan,,,, +06/30/2021,15:45,,,40.769848,-73.98432,"(40.769848, -73.98432)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432766,Box Truck,Sedan,,, +06/30/2021,21:31,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4433442,Sedan,,,, +06/30/2021,13:35,,,,,,MEEKER AVENUE,VANDERVORT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432964,,,,, +07/02/2021,11:46,,,40.665062,-73.90281,"(40.665062, -73.90281)",POWELL STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433609,Sedan,Sedan,,, +07/01/2021,11:30,,,40.754105,-73.72321,"(40.754105, -73.72321)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,9:00,STATEN ISLAND,10305,40.59841,-74.08393,"(40.59841, -74.08393)",WINFIELD AVENUE,PARKINSON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432629,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,22:21,QUEENS,11436,40.67868,-73.799706,"(40.67868, -73.799706)",142 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4433310,Sedan,Sedan,Sedan,, +06/30/2021,0:00,MANHATTAN,10035,40.802116,-73.9361,"(40.802116, -73.9361)",,,221 EAST 123 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432914,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/30/2021,17:30,BRONX,10461,40.840702,-73.827835,"(40.840702, -73.827835)",,,1381 MERRY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433241,Sedan,,,, +07/02/2021,6:30,QUEENS,11368,40.737297,-73.863625,"(40.737297, -73.863625)",,,97-15 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433681,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,15:30,,,40.764122,-73.812775,"(40.764122, -73.812775)",MURRAY STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433471,Sedan,,,, +07/02/2021,5:48,,,,,,HOME LAWN STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433453,Sedan,,,, +06/30/2021,15:40,,,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,11:52,BRONX,10460,40.84291,-73.86844,"(40.84291, -73.86844)",,,1718 GARFIELD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433431,Sedan,,,, +07/02/2021,20:15,BRONX,10458,40.85602,-73.88846,"(40.85602, -73.88846)",EAST 187 STREET,HOFFMAN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434031,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/30/2021,22:22,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432959,Sedan,,,, +07/01/2021,11:25,QUEENS,11422,40.666397,-73.73857,"(40.666397, -73.73857)",BROOKVILLE BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433289,Sedan,Sedan,,, +07/01/2021,7:46,BROOKLYN,11212,40.66259,-73.90863,"(40.66259, -73.90863)",,,248 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433623,Box Truck,,,, +06/30/2021,23:40,MANHATTAN,10003,40.73416,-73.98863,"(40.73416, -73.98863)",,,4 IRVING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432986,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,3:56,MANHATTAN,10032,40.837803,-73.94215,"(40.837803, -73.94215)",WEST 163 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433268,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,8:20,QUEENS,11373,40.74459,-73.884674,"(40.74459, -73.884674)",LAYTON STREET,BAXTER AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4433679,Sedan,Bike,,, +06/30/2021,12:44,QUEENS,11434,40.67396,-73.778824,"(40.67396, -73.778824)",160 STREET,132 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432657,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,16:37,QUEENS,11427,40.728893,-73.75342,"(40.728893, -73.75342)",,,215-12 86 AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4432735,Sedan,,,, +07/02/2021,11:40,BROOKLYN,11203,40.655273,-73.93178,"(40.655273, -73.93178)",LENOX ROAD,EAST 49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433869,Sedan,Sedan,,, +06/30/2021,20:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433746,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,13:59,,,40.701794,-73.80634,"(40.701794, -73.80634)",JAMAICA AVENUE,148 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4433122,Sedan,,,, +06/22/2021,7:40,,,40.85798,-73.93091,"(40.85798, -73.93091)",BROADWAY TERRACE,,,1,0,0,0,0,0,0,0,Pavement Slippery,,,,,4433696,E-Scooter,,,, +07/01/2021,12:30,BROOKLYN,11211,40.711903,-73.96295,"(40.711903, -73.96295)",BEDFORD AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433942,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/01/2021,17:01,MANHATTAN,10033,40.849606,-73.932655,"(40.849606, -73.932655)",,,570 WEST 182 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433842,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,9:15,QUEENS,11367,40.72073,-73.813416,"(40.72073, -73.813416)",,,150-31 78 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433446,Sedan,Box Truck,Sedan,, +07/01/2021,9:30,,,40.74223,-73.9933,"(40.74223, -73.9933)",WEST 22 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433653,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,17:03,,,40.74132,-73.78478,"(40.74132, -73.78478)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,6:30,BROOKLYN,11238,40.688503,-73.96337,"(40.688503, -73.96337)",,,333 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433132,Sedan,,,, +06/30/2021,19:43,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HILLSIDE AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432755,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,10:00,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432860,Sedan,Sedan,,, +06/30/2021,8:41,,,40.699512,-73.81461,"(40.699512, -73.81461)",91 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433117,Sedan,Flat Bed,,, +07/01/2021,9:39,BROOKLYN,11226,40.645794,-73.9602,"(40.645794, -73.9602)",OCEAN AVENUE,REGENT PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433005,Sedan,Sedan,,, +07/02/2021,16:30,QUEENS,11109,40.743168,-73.93659,"(40.743168, -73.93659)",,,47-20 CENTER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433411,Sedan,,,, +04/08/2022,1:45,BROOKLYN,11207,40.658417,-73.897255,"(40.658417, -73.897255)",,,666 HINSDALE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,7:00,BROOKLYN,11220,40.634747,-74.01752,"(40.634747, -74.01752)",66 STREET,6 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4432674,Pick-up Truck,Sedan,,, +07/01/2021,12:10,BRONX,10459,40.831966,-73.8967,"(40.831966, -73.8967)",PROSPECT AVENUE,JENNINGS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433279,Sedan,Sedan,,, +07/02/2021,20:55,QUEENS,11420,40.686203,-73.808945,"(40.686203, -73.808945)",,,109-57 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433521,Sedan,Sedan,,, +06/30/2021,16:40,QUEENS,11354,40.763687,-73.81444,"(40.763687, -73.81444)",150 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432776,Sedan,Sedan,,, +07/02/2021,2:49,BROOKLYN,11236,40.626736,-73.90161,"(40.626736, -73.90161)",PAERDEGAT AVENUE NORTH,PAERDEGAT 15 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4433257,Sedan,,,, +06/30/2021,7:00,,,40.861347,-73.897736,"(40.861347, -73.897736)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432591,Sedan,Sedan,,, +06/25/2021,7:00,MANHATTAN,10023,40.778095,-73.9783,"(40.778095, -73.9783)",COLUMBUS AVENUE,WEST 73 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433311,Box Truck,Box Truck,,, +06/30/2021,2:00,BRONX,10465,40.84232,-73.81976,"(40.84232, -73.81976)",,,3234 SPENCER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433248,Sedan,Pick-up Truck,,, +06/30/2021,18:29,BROOKLYN,11236,40.63226,-73.90088,"(40.63226, -73.90088)",AVENUE M,EAST 87 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432746,Sedan,Sedan,,, +06/30/2021,6:25,QUEENS,11365,40.731354,-73.80048,"(40.731354, -73.80048)",,,70-14 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433441,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,22:00,QUEENS,11413,40.67545,-73.74404,"(40.67545, -73.74404)",227 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433167,Station Wagon/Sport Utility Vehicle,UNK,,, +07/02/2021,18:38,BRONX,10468,40.860577,-73.90255,"(40.860577, -73.90255)",JEROME AVENUE,WEST 184 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4433481,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,15:35,BRONX,10458,40.863625,-73.89424,"(40.863625, -73.89424)",,,281 EAST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433773,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,0:42,QUEENS,11419,40.689766,-73.82663,"(40.689766, -73.82663)",,,118-16 101 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432906,Sedan,Sedan,Sedan,, +07/01/2021,13:25,BROOKLYN,11233,40.683414,-73.92282,"(40.683414, -73.92282)",RALPH AVENUE,MACDONOUGH STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4433655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,12:00,QUEENS,11378,40.729603,-73.897705,"(40.729603, -73.897705)",,,67-04 53 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433364,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,14:20,QUEENS,11364,40.749054,-73.749535,"(40.749054, -73.749535)",228 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432740,Bus,Sedan,,, +07/02/2021,11:30,MANHATTAN,10032,40.844685,-73.9408,"(40.844685, -73.9408)",FORT WASHINGTON AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433332,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,19:40,BRONX,10455,40.816566,-73.90766,"(40.816566, -73.90766)",,,675 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4433191,Bike,,,, +07/01/2021,9:10,MANHATTAN,10007,40.717186,-74.0129,"(40.717186, -74.0129)",WEST STREET,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,16:00,BRONX,10466,40.889725,-73.85872,"(40.889725, -73.85872)",,,708 EAST 228 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433805,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,8:45,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432965,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,10:00,BROOKLYN,11223,40.593994,-73.98072,"(40.593994, -73.98072)",86 STREET,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433643,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,7:00,,,40.602028,-74.18777,"(40.602028, -74.18777)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4433209,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,21:33,,,40.67689,-73.900055,"(40.67689, -73.900055)",ALABAMA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433406,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,18:50,QUEENS,11361,40.76551,-73.77089,"(40.76551, -73.77089)",39 AVENUE,STONE STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4432802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,20:35,QUEENS,11105,40.77506,-73.913864,"(40.77506, -73.913864)",29 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432938,Station Wagon/Sport Utility Vehicle,Carry All,,, +07/02/2021,0:00,BRONX,10459,40.819836,-73.89491,"(40.819836, -73.89491)",,,940 TIFFANY STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4433574,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,22:10,,,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433736,Sedan,Sedan,,, +06/30/2021,22:54,,,40.776646,-73.819664,"(40.776646, -73.819664)",147 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433474,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,8:55,BROOKLYN,11212,40.65439,-73.91984,"(40.65439, -73.91984)",,,1015 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432971,Bus,Box Truck,,, +07/02/2021,18:00,QUEENS,11434,40.673008,-73.78809,"(40.673008, -73.78809)",ROCKAWAY BOULEVARD,150 STREET,,3,0,0,0,0,0,3,0,Passenger Distraction,Unspecified,,,,4434013,Sedan,Bus,,, +06/28/2021,23:15,QUEENS,11370,40.75731,-73.88381,"(40.75731, -73.88381)",,,32-30 84 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4433272,Sedan,Sedan,,, +06/30/2021,19:50,MANHATTAN,10039,40.826935,-73.93892,"(40.826935, -73.93892)",,,2850 8 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4432955,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +05/05/2021,18:58,BRONX,10456,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433848,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/30/2021,13:28,,,40.84731,-73.9149,"(40.84731, -73.9149)",GRAND AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432851,Sedan,Sedan,,, +07/01/2021,9:20,,,40.56015,-74.19968,"(40.56015, -74.19968)",WEST SHORE EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4433585,Sedan,,,, +06/30/2021,14:00,BROOKLYN,11208,40.675404,-73.87192,"(40.675404, -73.87192)",PITKIN AVENUE,EUCLID AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4433034,Bus,Sedan,Sedan,, +06/30/2021,21:05,QUEENS,11369,40.76233,-73.87136,"(40.76233, -73.87136)",ASTORIA BOULEVARD,98 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4433107,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,11:20,,,40.69564,-73.99739,"(40.69564, -73.99739)",MONTAGUE TERRACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433768,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,17:14,,,40.812725,-73.94931,"(40.812725, -73.94931)",WEST 129 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4433285,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,12:50,BROOKLYN,11237,40.709732,-73.92792,"(40.709732, -73.92792)",,,108 VARICK AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432796,Bike,Sedan,,, +06/28/2021,18:15,BRONX,10465,40.826023,-73.83996,"(40.826023, -73.83996)",,,911 BRUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,11:20,MANHATTAN,10001,40.74482,-73.98953,"(40.74482, -73.98953)",,,39 WEST 27 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433049,Sedan,Box Truck,,, +04/06/2022,23:21,BROOKLYN,11218,40.644047,-73.9875,"(40.644047, -73.9875)",36 STREET,MINNA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517508,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,11:40,QUEENS,11435,40.695637,-73.80372,"(40.695637, -73.80372)",105 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4433317,Taxi,Bike,,, +06/30/2021,0:00,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",QUEENS BOULEVARD,50 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432789,Sedan,Sedan,,, +06/29/2021,14:00,QUEENS,11435,40.71204,-73.81599,"(40.71204, -73.81599)",,,141-40 PERSHING CRESCENT,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433436,Sedan,,,, +06/30/2021,0:40,BRONX,10473,40.81981,-73.84823,"(40.81981, -73.84823)",,,635 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432569,Taxi,Sedan,,, +07/01/2021,12:29,QUEENS,11411,40.701767,-73.734344,"(40.701767, -73.734344)",223 STREET,114 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4433069,Bus,Sedan,,, +07/01/2021,15:15,BRONX,10461,40.83732,-73.84265,"(40.83732, -73.84265)",,,1371 SEABURY AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433688,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,22:35,,,40.704716,-73.92875,"(40.704716, -73.92875)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4433172,Sedan,Sedan,,, +06/28/2021,19:35,,,40.540447,-74.165,"(40.540447, -74.165)",OAKDALE STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433375,Sedan,Sedan,,, +06/30/2021,9:50,BROOKLYN,11223,40.6048,-73.966805,"(40.6048, -73.966805)",AVENUE R,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433968,Sedan,Bus,,, +06/30/2021,16:37,,,40.687748,-73.96979,"(40.687748, -73.96979)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432712,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:30,,,40.779476,-73.97358,"(40.779476, -73.97358)",,,WEST 77 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4433531,Sedan,Open Body,,, +07/01/2021,17:35,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433300,Sedan,Taxi,,, +06/30/2021,18:25,BRONX,10454,40.803513,-73.92168,"(40.803513, -73.92168)",,,517 EAST 132 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4432822,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,1:07,QUEENS,11436,40.66934,-73.79863,"(40.66934, -73.79863)",133 AVENUE,140 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433489,Sedan,,,, +07/01/2021,22:30,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433147,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,10:00,QUEENS,11361,40.760628,-73.766754,"(40.760628, -73.766754)",,,215-09 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4433104,Sedan,,,, +06/30/2021,16:30,BROOKLYN,11210,40.63566,-73.95195,"(40.63566, -73.95195)",,,1 KENILWORTH PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433010,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,17:20,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAPLE AVENUE,MAIN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433469,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,21:00,STATEN ISLAND,10301,40.612717,-74.0984,"(40.612717, -74.0984)",,,830 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433913,Sedan,,,, +07/02/2021,8:30,BROOKLYN,11230,40.621605,-73.96998,"(40.621605, -73.96998)",,,1101 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,23:08,BRONX,10459,40.819878,-73.90153,"(40.819878, -73.90153)",,,866 PROSPECT AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4433343,UTILITY VE,Sedan,,, +07/01/2021,20:06,BRONX,10466,40.896626,-73.84892,"(40.896626, -73.84892)",,,4319 BRUNER AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4433816,Sedan,Sedan,Sedan,, +07/02/2021,8:06,QUEENS,11434,40.69225,-73.76669,"(40.69225, -73.76669)",LINDEN BOULEVARD,180 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4433253,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,16:00,QUEENS,11385,40.698006,-73.89476,"(40.698006, -73.89476)",,,75-33 60 LANE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4433360,Box Truck,Sedan,Sedan,, +07/02/2021,15:11,BRONX,10453,40.85447,-73.91008,"(40.85447, -73.91008)",HARRISON AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433505,Sedan,Box Truck,,, +07/02/2021,11:20,,,40.622585,-73.96281,"(40.622585, -73.96281)",EAST 13 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433722,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,21:52,QUEENS,11419,40.684994,-73.82927,"(40.684994, -73.82927)",,,104-52 113 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4433202,Sedan,Sedan,,, +06/28/2021,11:45,STATEN ISLAND,10304,40.624115,-74.08114,"(40.624115, -74.08114)",,,191 BROAD STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4433908,Sedan,Pick-up Truck,,, +06/23/2021,16:55,,,40.715927,-73.957634,"(40.715927, -73.957634)",DRIGGS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433233,Sedan,Sedan,,, +07/02/2021,17:00,BROOKLYN,11220,40.642963,-74.02193,"(40.642963, -74.02193)",,,235 60 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433420,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,11:40,BROOKLYN,11215,40.67427,-73.98109,"(40.67427, -73.98109)",,,91 GARFIELD PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433401,Sedan,,,, +06/24/2021,7:55,,,40.849144,-73.93548,"(40.849144, -73.93548)",WEST 180 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433824,Sedan,E-Bike,,, +06/30/2021,9:30,BROOKLYN,11231,40.68079,-73.99174,"(40.68079, -73.99174)",UNION STREET,HOYT STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4432829,Sedan,Pick-up Truck,,, +07/02/2021,18:18,QUEENS,11355,40.75782,-73.83033,"(40.75782, -73.83033)",,,133-17 41 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433479,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,22:40,BROOKLYN,11214,40.606674,-73.99252,"(40.606674, -73.99252)",21 AVENUE,80 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4433178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +06/24/2021,23:43,BROOKLYN,11206,40.70191,-73.93699,"(40.70191, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433464,Convertible,,,, +06/30/2021,16:35,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4432896,Sedan,Carry All,,, +06/25/2021,11:11,BRONX,10475,40.884457,-73.83283,"(40.884457, -73.83283)",,,4008 BOSTON ROAD,2,0,0,0,0,0,2,0,Passenger Distraction,Driver Inattention/Distraction,,,,4433800,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,13:15,,,40.67624,-73.866104,"(40.67624, -73.866104)",PITKIN AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433026,Sedan,,,, +07/02/2021,18:16,,,40.746403,-73.97973,"(40.746403, -73.97973)",EAST 34 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433673,Bus,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,17:45,QUEENS,11378,40.73253,-73.89588,"(40.73253, -73.89588)",,,52-39 69 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4433494,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/30/2021,23:44,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WILLIAMSBURG STREET EAST,WYTHE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4432808,Sedan,,,, +07/01/2021,6:00,BRONX,10474,40.816612,-73.88989,"(40.816612, -73.88989)",,,800 BARRETTO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433349,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:30,BROOKLYN,11226,40.648067,-73.951195,"(40.648067, -73.951195)",ALBEMARLE ROAD,EAST 28 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433876,Sedan,Sedan,,, +07/01/2021,6:30,,,40.613655,-73.978,"(40.613655, -73.978)",63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433636,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:04,,,,,,CROSS BAY BLVD,JAMAICA BAY WIDLIFE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4433386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,21:00,QUEENS,11411,40.693573,-73.74096,"(40.693573, -73.74096)",118 AVENUE,220 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432770,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/30/2021,18:30,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4433064,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/30/2021,18:00,STATEN ISLAND,10308,40.56146,-74.16097,"(40.56146, -74.16097)",ARTHUR KILL ROAD,ABINGDON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433076,Sedan,Bus,,, +07/01/2021,8:30,QUEENS,11412,40.697746,-73.75468,"(40.697746, -73.75468)",199 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,11:40,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4433500,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,23:45,MANHATTAN,10009,40.722527,-73.986115,"(40.722527, -73.986115)",,,5 AVENUE A,1,0,0,0,0,0,1,0,Unspecified,,,,,4433742,Taxi,,,, +07/02/2021,14:05,BRONX,10454,40.807514,-73.92913,"(40.807514, -73.92913)",,,14 BRUCKNER BOULEVARD,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4433564,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,10:47,,,40.772697,-73.93269,"(40.772697, -73.93269)",ASTORIA BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432932,Pick-up Truck,Sedan,,, +06/30/2021,18:49,,,40.63079,-73.94552,"(40.63079, -73.94552)",FLATBUSH AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4432995,Sedan,Sedan,Sedan,, +06/30/2021,10:40,MANHATTAN,10011,40.738476,-73.99739,"(40.738476, -73.99739)",,,130 WEST 15 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4432844,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,23:09,,,40.827103,-73.94997,"(40.827103, -73.94997)",BROADWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,View Obstructed/Limited,,,,4433185,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/02/2021,11:30,BRONX,10462,40.835625,-73.85207,"(40.835625, -73.85207)",CASTLE HILL AVENUE,LYON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433328,Sedan,,,, +07/02/2021,14:35,BROOKLYN,11205,40.692036,-73.969635,"(40.692036, -73.969635)",,,186 VANDERBILT AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4433598,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,13:30,BROOKLYN,11238,40.67783,-73.97223,"(40.67783, -73.97223)",,,628 CARLTON AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Other Vehicular,,,,4433387,Carry All,Convertible,,, +06/30/2021,10:15,QUEENS,11368,40.74274,-73.85118,"(40.74274, -73.85118)",,,54-12 111 STREET,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4432881,Sedan,,,, +07/02/2021,7:50,,,40.72766,-73.92938,"(40.72766, -73.92938)",BROOKLYN QUEENS EXPRESSWAY,,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4433265,Sedan,Sedan,,, +07/01/2021,8:05,MANHATTAN,10009,40.721928,-73.97936,"(40.721928, -73.97936)",,,330 EAST 4 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4433741,Sedan,Pick-up Truck,,, +07/01/2021,22:30,BRONX,10452,40.83932,-73.91503,"(40.83932, -73.91503)",EAST 170 STREET,WYTHE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433843,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,18:00,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433515,Pick-up Truck,Sedan,,, +07/02/2021,13:33,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433624,Sedan,Sedan,,, +07/01/2021,16:15,,,40.689697,-73.98296,"(40.689697, -73.98296)",BOND STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433112,,,,, +07/01/2021,18:20,STATEN ISLAND,10304,40.628544,-74.07648,"(40.628544, -74.07648)",BAY STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433918,Sedan,Sedan,,, +06/29/2021,18:00,,,40.694794,-73.98246,"(40.694794, -73.98246)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433760,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,10:50,QUEENS,11423,40.71005,-73.76616,"(40.71005, -73.76616)",193 STREET,99 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,1:43,,,40.580975,-74.00402,"(40.580975, -74.00402)",BAY VIEW AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433985,Sedan,Sedan,,, +07/01/2021,9:30,BROOKLYN,11207,40.656883,-73.885155,"(40.656883, -73.885155)",,,215 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433038,Sedan,,,, +07/02/2021,1:00,QUEENS,11355,40.752934,-73.819786,"(40.752934, -73.819786)",UNION STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433478,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/02/2021,2:38,,,40.801155,-73.959656,"(40.801155, -73.959656)",CATHEDRAL PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4433260,Taxi,,,, +07/01/2021,21:02,BROOKLYN,11234,40.61278,-73.93969,"(40.61278, -73.93969)",QUENTIN ROAD,EAST 32 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433159,Sedan,Bike,,, +06/30/2021,9:58,QUEENS,11417,40.68424,-73.83808,"(40.68424, -73.83808)",103 AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432886,Sedan,,,, +07/01/2021,16:00,BRONX,10469,40.86587,-73.85102,"(40.86587, -73.85102)",,,2725 THROOP AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,15:20,QUEENS,11417,40.672478,-73.848,"(40.672478, -73.848)",,,137-18 88 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433142,Sedan,Motorcycle,,, +07/01/2021,11:41,BROOKLYN,11222,40.72775,-73.942,"(40.72775, -73.942)",NORMAN AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433042,Carry All,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,5:38,,,40.761597,-73.9246,"(40.761597, -73.9246)",32 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432498,Pick-up Truck,,,, +06/30/2021,19:58,BRONX,10467,40.878807,-73.86557,"(40.878807, -73.86557)",,,3574 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433098,Sedan,,,, +07/01/2021,21:00,,,40.652786,-73.91997,"(40.652786, -73.91997)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433889,Sedan,,,, +06/29/2021,7:40,QUEENS,11378,40.719822,-73.908264,"(40.719822, -73.908264)",,,58-39 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433371,Pick-up Truck,Sedan,,, +07/02/2021,7:29,BROOKLYN,11208,40.66717,-73.87108,"(40.66717, -73.87108)",,,2520 LINDEN BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4433304,Sedan,,,, +07/01/2021,13:45,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4433297,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,14:52,,,40.60115,-73.97839,"(40.60115, -73.97839)",AVENUE S,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433065,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,0:10,BROOKLYN,11203,40.659386,-73.93917,"(40.659386, -73.93917)",,,692 FENIMORE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,14:00,,,40.786938,-73.979294,"(40.786938, -73.979294)",,,WEST 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433535,Sedan,,,, +07/01/2021,9:00,,,,,,,,80 WELLINGTON COURT,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4432947,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,13:20,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",EAST 126 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4432698,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,18:00,,,40.731506,-73.895805,"(40.731506, -73.895805)",69 STREET,53 AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4433541,,,,, +07/01/2021,19:09,,,,,,WEST STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433339,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,9:17,BROOKLYN,11221,40.68863,-73.92969,"(40.68863, -73.92969)",,,897 GATES AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433666,Taxi,Sedan,,, +06/29/2021,17:27,QUEENS,11435,40.68928,-73.79611,"(40.68928, -73.79611)",SUTPHIN BOULEVARD,110 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433356,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/30/2021,11:30,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433578,Sedan,,,, +07/02/2021,11:20,BRONX,10453,40.858994,-73.90573,"(40.858994, -73.90573)",WEST 183 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4433292,Taxi,,,, +07/02/2021,0:05,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433458,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/30/2021,17:20,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432942,Station Wagon/Sport Utility Vehicle,Bus,,, +07/02/2021,20:29,QUEENS,11434,40.681286,-73.76979,"(40.681286, -73.76979)",126 AVENUE,174 PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433397,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,7:10,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,23:00,STATEN ISLAND,10305,40.598934,-74.06377,"(40.598934, -74.06377)",LILY POND AVENUE,MCCLEAN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4433584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/02/2021,20:00,QUEENS,11356,40.78417,-73.84675,"(40.78417, -73.84675)",121 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433553,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,21:50,,,40.737785,-73.93496,"(40.737785, -73.93496)",BORDEN AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433416,Sedan,,,, +06/29/2021,20:39,MANHATTAN,10012,40.724846,-73.999,"(40.724846, -73.999)",,,101 PRINCE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4433240,Sedan,,,, +07/01/2021,14:30,MANHATTAN,10002,,,,PIKE STREET,EAST BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433082,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,13:48,MANHATTAN,10023,40.77048,-73.983864,"(40.77048, -73.983864)",WEST 61 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433530,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/01/2021,13:10,,,40.739185,-73.901764,"(40.739185, -73.901764)",LAUREL HILL BOULEVARD,64 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433012,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,11:35,MANHATTAN,10030,40.820255,-73.94562,"(40.820255, -73.94562)",WEST 140 STREET,EDGECOMBE AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4433353,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,23:33,BRONX,10465,40.820213,-73.82537,"(40.820213, -73.82537)",DEWEY AVENUE,BALCOM AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4432850,Sedan,Sedan,,, +07/02/2021,23:00,,,40.879814,-73.86149,"(40.879814, -73.86149)",EAST 215 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4433818,Sedan,Sedan,Sedan,, +07/02/2021,21:15,MANHATTAN,10002,40.716965,-73.99443,"(40.716965, -73.99443)",HESTER STREET,CHRYSTIE STREET,,2,0,0,0,1,0,1,0,Traffic Control Disregarded,Unspecified,,,,4433703,Sedan,Bike,,, +06/30/2021,14:30,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433490,Sedan,Bus,,, +07/02/2021,12:30,QUEENS,11422,40.635643,-73.74013,"(40.635643, -73.74013)",ROCKAWAY BOULEVARD,3 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433382,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,18:02,BROOKLYN,11229,40.592503,-73.959145,"(40.592503, -73.959145)",EAST 12 STREET,CRAWFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,21:05,,,40.57089,-74.1479,"(40.57089, -74.1479)",ARTHUR KILL ROAD,CLARKE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4432870,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/01/2021,16:00,,,40.610214,-74.1202,"(40.610214, -74.1202)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4433219,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,14:22,,,40.865795,-73.920006,"(40.865795, -73.920006)",SHERMAN AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,Unspecified,,,4433712,Sedan,Sedan,Sedan,, +07/02/2021,16:08,,,40.63747,-73.91918,"(40.63747, -73.91918)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,Unspecified,,,4433422,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/01/2021,12:45,,,40.765545,-73.95471,"(40.765545, -73.95471)",EAST 70 STREET,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4433324,Taxi,Bike,,, +07/02/2021,17:10,,,40.73384,-74.00121,"(40.73384, -74.00121)",GROVE STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433836,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,13:46,,,40.678543,-73.949684,"(40.678543, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433859,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,9:10,,,40.648026,-74.014084,"(40.648026, -74.014084)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4432990,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,2:00,BROOKLYN,11212,40.657135,-73.90365,"(40.657135, -73.90365)",NEW LOTS AVENUE,STONE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4432909,Sedan,,,, +07/02/2021,12:00,QUEENS,11385,40.713814,-73.92058,"(40.713814, -73.92058)",,,47-05 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433754,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,20:03,QUEENS,11361,40.761246,-73.76986,"(40.761246, -73.76986)",,,43-20 BELL BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432739,Sedan,Pick-up Truck,,, +06/29/2021,20:00,BROOKLYN,11215,40.665947,-73.9831,"(40.665947, -73.9831)",,,481 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433391,Sedan,,,, +06/30/2021,15:08,,,40.683304,-73.917274,"(40.683304, -73.917274)",SARATOGA AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4433654,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,13:35,QUEENS,11368,40.753254,-73.86967,"(40.753254, -73.86967)",,,35-18 98 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4433426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,10:05,QUEENS,11367,40.734203,-73.824875,"(40.734203, -73.824875)",,,144-40 MELBOURNE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433449,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,23:42,BROOKLYN,11212,40.661854,-73.92627,"(40.661854, -73.92627)",,,125 EAST 93 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433894,Sedan,Sedan,,, +07/02/2021,18:50,BROOKLYN,11212,40.657288,-73.90756,"(40.657288, -73.90756)",,,925 ROCKAWAY AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433610,Sedan,E-Bike,,, +06/30/2021,14:05,QUEENS,11355,40.75819,-73.82318,"(40.75819, -73.82318)",SANFORD AVENUE,BOWNE STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4432764,Sedan,,,, +07/02/2021,22:43,QUEENS,11414,40.664192,-73.841125,"(40.664192, -73.841125)",CROSS BAY BOULEVARD,156 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4433520,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,18:09,MANHATTAN,10017,40.750492,-73.97172,"(40.750492, -73.97172)",2 AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433136,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,7:55,BRONX,10452,40.846283,-73.92061,"(40.846283, -73.92061)",FEATHERBED LANE,PLIMPTON AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4432631,Sedan,E-Scooter,,, +06/23/2021,6:15,,,,,,,,21 GULF AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433933,,,,, +06/30/2021,19:52,,,40.58153,-73.96195,"(40.58153, -73.96195)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4433644,Sedan,,,, +07/01/2021,13:20,BROOKLYN,11238,40.680473,-73.9614,"(40.680473, -73.9614)",ATLANTIC AVENUE,GRAND AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4433118,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,9:00,BRONX,10454,40.80723,-73.92055,"(40.80723, -73.92055)",EAST 137 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432918,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,12:20,,,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433646,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,20:00,BROOKLYN,11218,40.639896,-73.97,"(40.639896, -73.97)",,,367 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433989,Sedan,,,, +09/24/2022,10:10,BROOKLYN,11208,40.682186,-73.86982,"(40.682186, -73.86982)",ATLANTIC AVENUE,AUTUMN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4568425,Sedan,,,, +07/01/2021,19:00,QUEENS,11415,40.70703,-73.831665,"(40.70703, -73.831665)",ABINGDON ROAD,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433280,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,17:40,BRONX,10458,40.866802,-73.88444,"(40.866802, -73.88444)",WEBSTER AVENUE,EAST 199 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4432816,Taxi,Sedan,,, +07/01/2021,15:40,MANHATTAN,10002,40.720745,-73.98617,"(40.720745, -73.98617)",STANTON STREET,NORFOLK STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433182,Station Wagon/Sport Utility Vehicle,Bike,,, +07/02/2021,1:38,BRONX,10465,40.848183,-73.82028,"(40.848183, -73.82028)",,,1665 STADIUM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433690,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,9:59,,,,,,Meeker ave,Metropoloitan ave,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433275,Sedan,,,, +06/30/2021,6:00,BRONX,10469,40.87823,-73.85848,"(40.87823, -73.85848)",,,905 EAST 214 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433094,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,18:45,BROOKLYN,11213,40.66688,-73.931305,"(40.66688, -73.931305)",,,321 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433163,Sedan,,,, +06/30/2021,14:00,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4432741,Sedan,,,, +06/30/2021,18:30,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432771,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/01/2021,7:55,QUEENS,11434,40.69044,-73.77636,"(40.69044, -73.77636)",115 AVENUE,173 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4432996,Pick-up Truck,,,, +07/02/2021,21:53,BRONX,10455,40.815384,-73.902306,"(40.815384, -73.902306)",,,671 KELLY STREET,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4433575,Sedan,,,, +06/30/2021,9:23,BROOKLYN,11212,40.66112,-73.920135,"(40.66112, -73.920135)",ROCKAWAY PARKWAY,CLARKSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432960,Sedan,Sedan,,, +06/27/2021,0:30,BROOKLYN,11201,,,,Old Fulton St,Hicks St,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433782,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,22:15,QUEENS,11370,40.763054,-73.886734,"(40.763054, -73.886734)",82 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432966,FIRE TRUCK,Sedan,,, +07/01/2021,17:50,MANHATTAN,10002,40.710094,-73.9898,"(40.710094, -73.9898)",SOUTH STREET,RUTGERS SLIP,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433186,Sedan,Sedan,Sedan,, +06/29/2021,9:39,,,40.787685,-73.97502,"(40.787685, -73.97502)",WEST 86 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4433307,Sedan,,,, +06/30/2021,9:08,BRONX,10467,40.87795,-73.88026,"(40.87795, -73.88026)",,,136 EAST 208 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4432615,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,5:25,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433454,Sedan,Sedan,,, +06/28/2021,16:10,BROOKLYN,11249,40.719967,-73.95545,"(40.719967, -73.95545)",,,110 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4433236,Box Truck,,,, +07/02/2021,23:40,MANHATTAN,10016,40.74216,-73.977745,"(40.74216, -73.977745)",,,540 2 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433659,Sedan,,,, +06/30/2021,17:00,QUEENS,11433,40.70213,-73.77642,"(40.70213, -73.77642)",,,107-15 180 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433368,,,,, +07/01/2021,20:00,BRONX,10468,40.86871,-73.90594,"(40.86871, -73.90594)",,,2607 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433866,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,14:44,BROOKLYN,11214,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4433329,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/01/2021,2:19,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",77 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432877,Sedan,,,, +07/01/2021,15:20,BRONX,10454,40.806156,-73.9226,"(40.806156, -73.9226)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433195,Tractor Truck Diesel,Sedan,,, +06/17/2021,16:00,,,40.630516,-74.139565,"(40.630516, -74.139565)",,,501 PORT RICHMOND AVENUE,1,0,1,0,0,0,0,0,,,,,,4433336,,,,, +06/29/2021,10:00,,,40.71709,-73.82631,"(40.71709, -73.82631)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4433445,Pick-up Truck,Sedan,,, +07/02/2021,10:10,BRONX,10466,40.88656,-73.83019,"(40.88656, -73.83019)",CONNER STREET,ROMBOUTS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433812,Station Wagon/Sport Utility Vehicle,FORKLIFT,,, +07/01/2021,16:24,,,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433224,Sedan,,,, +07/02/2021,23:44,,,40.624706,-74.0415,"(40.624706, -74.0415)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4433523,Sedan,,,, +07/02/2021,12:35,BROOKLYN,11234,40.628387,-73.92431,"(40.628387, -73.92431)",FLATLANDS AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4433410,Sedan,Sedan,Tow Truck / Wrecker,, +07/02/2021,16:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434035,Sedan,Sedan,,, +06/30/2021,11:30,QUEENS,11413,40.671757,-73.745255,"(40.671757, -73.745255)",228 STREET,138 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432691,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,3:05,BRONX,10460,40.842888,-73.868416,"(40.842888, -73.868416)",,,1716 GARFIELD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433697,Sedan,,,, +07/01/2021,19:34,BRONX,10454,0,0,"(0.0, 0.0)",EAST 135 STREET,WILLIS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433193,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,2:49,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4433641,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,23:15,QUEENS,11385,40.696747,-73.90613,"(40.696747, -73.90613)",WEIRFIELD STREET,WYCKOFF AVENUE,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4433539,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,15:40,,,,,,Father Zeiser place,University Avenue,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433483,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/30/2021,10:40,QUEENS,11105,40.778778,-73.90018,"(40.778778, -73.90018)",STEINWAY PLACE,19 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4432929,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,8:27,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433470,Sedan,Sedan,,, +07/01/2021,14:11,STATEN ISLAND,10314,,,,,,1534 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433914,Sedan,Sedan,,, +06/30/2021,8:53,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432585,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,16:45,QUEENS,11373,40.733536,-73.87035,"(40.733536, -73.87035)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433674,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,14:40,,,40.740692,-73.84418,"(40.740692, -73.84418)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4432777,Motorcycle,,,, +06/30/2021,20:10,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4432958,Sedan,Sedan,,, +07/01/2021,18:20,BRONX,10465,40.819176,-73.81685,"(40.819176, -73.81685)",,,2910 MILES AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4433252,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,22:22,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433168,Tractor Truck Gasoline,Sedan,,, +06/28/2021,17:15,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433312,Bus,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,15:40,QUEENS,11365,40.73332,-73.79114,"(40.73332, -73.79114)",180 STREET,69 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433440,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,7:30,,,40.68665,-73.91315,"(40.68665, -73.91315)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433465,Sedan,Sedan,,, +06/30/2021,16:45,BROOKLYN,11212,40.665398,-73.90964,"(40.665398, -73.90964)",,,589 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4432905,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,8:20,QUEENS,11378,40.722004,-73.916565,"(40.722004, -73.916565)",MASPETH AVENUE,PAGE PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4433363,Tractor Truck Diesel,Tractor Truck Diesel,,, +06/30/2021,14:00,QUEENS,11362,40.768707,-73.72889,"(40.768707, -73.72889)",BATES ROAD,CONCORD STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4432734,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/01/2021,6:57,BROOKLYN,11211,,,,,,333 VANDERVORT AVENUE,2,0,0,0,0,0,2,0,Backing Unsafely,Unsafe Speed,,,,4433948,Sedan,Motorcycle,,, +06/30/2021,3:15,STATEN ISLAND,10301,40.63029,-74.08891,"(40.63029, -74.08891)",VICTORY BOULEVARD,FOREST AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433909,Bus,,,, +06/16/2021,15:30,BROOKLYN,11232,40.653362,-74.0089,"(40.653362, -74.0089)",40 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433872,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,15:30,STATEN ISLAND,10308,40.539288,-74.14855,"(40.539288, -74.14855)",GLOVER STREET,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433075,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,10:00,,,40.70579,-74.003876,"(40.70579, -74.003876)",SOUTH STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433331,Sedan,,,, +07/01/2021,10:15,MANHATTAN,10011,40.738506,-73.99747,"(40.738506, -73.99747)",,,134 WEST 15 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,18:30,BRONX,10457,40.844833,-73.909386,"(40.844833, -73.909386)",EAST 174 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433501,Carry All,,,, +06/30/2021,4:40,QUEENS,11433,40.700695,-73.789406,"(40.700695, -73.789406)",,,105-09 MERRICK BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433316,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,16:45,BRONX,10451,40.821274,-73.91743,"(40.821274, -73.91743)",COURTLANDT AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,13:45,BRONX,10453,40.848328,-73.91842,"(40.848328, -73.91842)",BRANDT PLACE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433228,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,11:50,QUEENS,11362,40.75271,-73.74144,"(40.75271, -73.74144)",65 AVENUE,DOUGLASTON PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433425,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,22:40,,,40.743114,-73.77114,"(40.743114, -73.77114)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Tire Failure/Inadequate,,,,4433405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,5:30,BROOKLYN,11206,40.71074,-73.94548,"(40.71074, -73.94548)",MANHATTAN AVENUE,MAUJER STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432803,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,13:00,BRONX,10459,40.817875,-73.89333,"(40.817875, -73.89333)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433348,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/01/2021,8:34,BROOKLYN,11226,40.64168,-73.96342,"(40.64168, -73.96342)",,,1603 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4433004,Motorcycle,,,, +04/05/2022,8:50,MANHATTAN,10009,40.729084,-73.98133,"(40.729084, -73.98133)",EAST 12 STREET,AVENUE A,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517690,Bike,E-Scooter,,, +06/19/2021,16:03,BRONX,10474,40.81666,-73.888,"(40.81666, -73.888)",HUNTS POINT AVENUE,LAFAYETTE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,4:10,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433608,Sedan,,,, +06/29/2021,17:24,BRONX,10466,40.891544,-73.85397,"(40.891544, -73.85397)",,,816 EAST 232 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434016,Sedan,,,, +07/02/2021,12:57,BROOKLYN,11215,40.665096,-73.98134,"(40.665096, -73.98134)",,,533 11 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433390,Sedan,,,, +07/01/2021,5:20,,,,,,HORACE HARDING EXPRESSWAY,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4433450,Sedan,,,, +07/02/2021,14:55,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",SUTPHIN BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433361,Sedan,,,, +07/02/2021,13:30,BROOKLYN,11226,40.64097,-73.956116,"(40.64097, -73.956116)",,,1206 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,,,,4433723,Sedan,Box Truck,,, +07/01/2021,19:00,BROOKLYN,11218,,,,OCEAN PARKWAY,CORTELYOU ROAD,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4433995,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,17:00,BROOKLYN,11207,40.665607,-73.899086,"(40.665607, -73.899086)",DUMONT AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433033,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,17:00,MANHATTAN,10128,40.781944,-73.94761,"(40.781944, -73.94761)",,,333 EAST 93 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,18:00,BROOKLYN,11249,40.715977,-73.96079,"(40.715977, -73.96079)",,,134 NORTH 3 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433234,Sedan,,,, +06/29/2021,17:49,BROOKLYN,11212,40.66495,-73.92288,"(40.66495, -73.92288)",RUTLAND ROAD,EAST 98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433870,School Bus,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,19:00,,,40.829945,-73.93005,"(40.829945, -73.93005)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433745,Sedan,,,, +07/02/2021,15:00,QUEENS,11366,40.721466,-73.804535,"(40.721466, -73.804535)",164 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4433457,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,6:40,,,,,,GOWANUS RAMP,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4433635,Sedan,Bus,,, +07/02/2021,7:55,BRONX,10470,40.89664,-73.87049,"(40.89664, -73.87049)",EAST 233 STREET,KEPLER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433820,Sedan,Sedan,,, +07/02/2021,18:30,BROOKLYN,11220,40.635357,-74.021286,"(40.635357, -74.021286)",,,470 SENATOR STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,8:20,BROOKLYN,11206,40.702312,-73.94465,"(40.702312, -73.94465)",BROADWAY,BARTLETT STREET,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4433173,Sedan,,,, +06/25/2021,10:00,BRONX,10457,40.85214,-73.894806,"(40.85214, -73.894806)",,,486 EAST 181 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434005,Station Wagon/Sport Utility Vehicle,,,, +06/22/2021,18:15,MANHATTAN,10034,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,WEST 207 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4433701,Flat Bed,Sedan,,, +06/30/2021,14:00,,,40.63552,-74.0167,"(40.63552, -74.0167)",65 STREET,6 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432714,Pick-up Truck,Sedan,,, +07/01/2021,19:40,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",77 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433148,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/30/2021,0:46,,,40.796528,-73.97412,"(40.796528, -73.97412)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4432669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2021,13:06,QUEENS,11370,40.757385,-73.88855,"(40.757385, -73.88855)",79 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4433085,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,17:00,STATEN ISLAND,10305,40.576107,-74.08244,"(40.576107, -74.08244)",CAPODANNO BOULEVARD,SLATER BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,,,,4432937,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,10:45,MANHATTAN,10023,40.771667,-73.9867,"(40.771667, -73.9867)",WEST 61 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433534,Sedan,,,, +06/30/2021,20:05,,,40.56015,-74.19968,"(40.56015, -74.19968)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433211,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,19:38,QUEENS,11413,40.673626,-73.76384,"(40.673626, -73.76384)",137 AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4433256,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/01/2021,5:00,QUEENS,11372,40.75419,-73.87564,"(40.75419, -73.87564)",,,34-17 92 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4432970,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/30/2021,13:25,BROOKLYN,11236,40.63132,-73.902336,"(40.63132, -73.902336)",AVENUE M,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4432748,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,20:50,MANHATTAN,10027,40.815685,-73.9583,"(40.815685, -73.9583)",BROADWAY,WEST 125 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432852,Box Truck,,,, +07/02/2021,12:20,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",69 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433510,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,19:23,BROOKLYN,11218,0,0,"(0.0, 0.0)",36 STREET,TEHAMA STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,12:45,,,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432954,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,22:30,BROOKLYN,11211,40.718403,-73.955696,"(40.718403, -73.955696)",,,194 NORTH 9 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4432894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,20:30,MANHATTAN,10001,40.747852,-73.99291,"(40.747852, -73.99291)",WEST 29 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433678,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,11:00,MANHATTAN,10030,40.815388,-73.94181,"(40.815388, -73.94181)",,,151 WEST 136 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433284,Sedan,Sedan,,, +06/29/2021,9:27,BROOKLYN,11201,40.693146,-73.99509,"(40.693146, -73.99509)",HENRY STREET,JORALEMON STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433772,Station Wagon/Sport Utility Vehicle,Van,,, +07/02/2021,13:45,BROOKLYN,11201,40.696033,-73.98453,"(40.696033, -73.98453)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433765,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,11:39,,,40.87844,-73.84411,"(40.87844, -73.84411)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517949,Sedan,,,, +06/30/2021,1:18,,,40.86786,-73.84123,"(40.86786, -73.84123)",EAST GUN HILL ROAD,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4432570,Sedan,Sedan,,, +06/30/2021,16:49,BROOKLYN,11234,40.633278,-73.92162,"(40.633278, -73.92162)",AVENUE H,EAST 57 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432787,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/29/2021,11:55,QUEENS,11365,40.736946,-73.77796,"(40.736946, -73.77796)",,,195-25 69 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4433437,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,16:55,STATEN ISLAND,10304,40.59669,-74.093834,"(40.59669, -74.093834)",,,1250 RICHMOND ROAD,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4433131,Sedan,,,, +06/30/2021,17:34,BROOKLYN,11212,40.66367,-73.91213,"(40.66367, -73.91213)",DUMONT AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432861,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,15:19,QUEENS,11434,40.670967,-73.7701,"(40.670967, -73.7701)",140 AVENUE,170 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4432754,CMIX,Sedan,,, +06/29/2021,17:06,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433244,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,10:45,BROOKLYN,11233,40.676647,-73.91633,"(40.676647, -73.91633)",,,1993 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433056,Pick-up Truck,Sedan,,, +06/30/2021,10:15,MANHATTAN,10013,40.717297,-74.00157,"(40.717297, -74.00157)",WHITE STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433070,Sedan,,,, +07/01/2021,16:00,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,VAN SICLEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433299,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,21:45,QUEENS,11434,40.68651,-73.76815,"(40.68651, -73.76815)",BAISLEY BOULEVARD,119 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433376,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +06/30/2021,8:15,,,40.62147,-73.95072,"(40.62147, -73.95072)",AVENUE L,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433009,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,11:27,BRONX,10454,40.80505,-73.90928,"(40.80505, -73.90928)",,,794 EAST 140 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433563,Concrete Mixer,Box Truck,,, +06/30/2021,20:00,BRONX,10474,40.8165,-73.890076,"(40.8165, -73.890076)",,,1239 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433344,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,18:30,,,40.81636,-73.954094,"(40.81636, -73.954094)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4433734,Sedan,Box Truck,,, +06/30/2021,19:06,QUEENS,11361,,,,CORPORAL KENNEDY STREET,35 AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433105,Sedan,,,, +07/02/2021,5:00,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433249,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,7:24,,,40.85132,-73.90842,"(40.85132, -73.90842)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434011,Bus,Box Truck,,, +07/01/2021,14:50,,,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4433851,Sedan,,,, +06/28/2021,20:34,QUEENS,11372,40.747177,-73.891495,"(40.747177, -73.891495)",,,37-65 74 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433595,Sedan,Pick-up Truck,,, +06/30/2021,5:42,QUEENS,11419,40.687004,-73.82836,"(40.687004, -73.82836)",103 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4433203,PK,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/02/2021,16:00,,,40.73448,-73.92243,"(40.73448, -73.92243)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433417,Sedan,Sedan,,, +07/02/2021,20:00,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433402,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,16:20,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,MORGAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432798,Pick-up Truck,Sedan,,, +06/28/2021,12:15,BROOKLYN,11221,40.69659,-73.93479,"(40.69659, -73.93479)",,,4 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433658,Sedan,PK,,, +06/30/2021,14:30,BROOKLYN,11208,40.65576,-73.87319,"(40.65576, -73.87319)",ELTON STREET,VANDALIA AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4433027,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2021,14:00,BRONX,10469,40.87442,-73.84606,"(40.87442, -73.84606)",CORSA AVENUE,GIVAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4433801,Sedan,Sedan,,, +06/30/2021,11:20,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433124,Pick-up Truck,,,, +06/30/2021,15:20,,,40.59553,-73.99886,"(40.59553, -73.99886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432923,Sedan,,,, +06/30/2021,12:14,,,40.79347,-73.93726,"(40.79347, -73.93726)",1 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433143,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,3:35,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4433493,Box Truck,Sedan,Sedan,, +06/24/2021,8:55,MANHATTAN,10034,40.861935,-73.92078,"(40.861935, -73.92078)",10 AVENUE,WEST 203 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4433706,Sedan,Sedan,,, +06/27/2021,22:14,,,40.783024,-73.98213,"(40.783024, -73.98213)",WEST 77 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433313,Sedan,Sedan,,, +09/27/2022,16:58,,,,,,JUNCTION BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4568455,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/01/2021,3:30,BROOKLYN,11211,40.711422,-73.95954,"(40.711422, -73.95954)",ROEBLING STREET,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433169,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,8:15,BROOKLYN,11208,40.686882,-73.87908,"(40.686882, -73.87908)",JAMAICA AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433298,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,22:29,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,PARK PLACE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433856,Sedan,Sedan,,, +07/01/2021,15:00,BROOKLYN,11249,40.718666,-73.9635,"(40.718666, -73.9635)",NORTH 4 STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433276,Sedan,,,, +06/30/2021,11:30,MANHATTAN,10017,40.750854,-73.97147,"(40.750854, -73.97147)",,,815 2 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4432699,Station Wagon/Sport Utility Vehicle,Van,,, +07/02/2021,16:30,,,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433858,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,16:30,BRONX,10467,40.882587,-73.88104,"(40.882587, -73.88104)",,,7 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433092,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,22:30,BROOKLYN,11233,40.677765,-73.90792,"(40.677765, -73.90792)",,,1919 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432911,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,11:45,,,40.6015,-74.129364,"(40.6015, -74.129364)",HAROLD STREET,GRAVES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432685,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,18:00,BROOKLYN,11236,40.646114,-73.904785,"(40.646114, -73.904785)",EAST 96 STREET,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4432743,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,0:15,,,40.865795,-73.920006,"(40.865795, -73.920006)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433826,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,13:00,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433271,Sedan,Sedan,,, +06/30/2021,15:30,BROOKLYN,11203,40.64632,-73.92981,"(40.64632, -73.92981)",UTICA AVENUE,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4433893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,10:00,,,40.7295,-73.953964,"(40.7295, -73.953964)",MILTON STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4432981,E-Bike,,,, +06/30/2021,17:20,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,SNYDER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432967,Sedan,E-Bike,,, +06/30/2021,8:27,BROOKLYN,11207,40.663754,-73.90083,"(40.663754, -73.90083)",,,455 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4432638,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/02/2021,9:50,BROOKLYN,11209,40.628563,-74.028984,"(40.628563, -74.028984)",79 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433288,Station Wagon/Sport Utility Vehicle,Dump,,, +07/01/2021,21:00,BROOKLYN,11233,40.68387,-73.92543,"(40.68387, -73.92543)",,,637 MACON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4433781,Sedan,,,, +07/01/2021,16:55,STATEN ISLAND,10310,40.640636,-74.11005,"(40.640636, -74.11005)",,,147 DAVIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433917,Sedan,Sedan,,, +07/01/2021,14:00,QUEENS,11363,40.76229,-73.75711,"(40.76229, -73.75711)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4433106,Sedan,Sedan,,, +07/01/2021,18:00,STATEN ISLAND,10305,40.612377,-74.06355,"(40.612377, -74.06355)",,,35 NEW LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433915,Sedan,Sedan,,, +07/01/2021,13:30,MANHATTAN,10004,,,,,,52 BEAVER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433239,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,3:45,QUEENS,11355,40.754498,-73.834076,"(40.754498, -73.834076)",HAIGHT STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4433473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,10:38,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4433686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,14:15,QUEENS,11365,40.736275,-73.81055,"(40.736275, -73.81055)",,,65-18 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433433,Sedan,Sedan,,, +07/01/2021,17:30,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4433155,Box Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +06/30/2021,16:08,,,40.836605,-73.93931,"(40.836605, -73.93931)",AMSTERDAM AVENUE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4433013,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,16:30,BROOKLYN,11215,40.664394,-73.99394,"(40.664394, -73.99394)",18 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4433181,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,13:45,MANHATTAN,10013,40.71648,-74.010925,"(40.71648, -74.010925)",,,305 GREENWICH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432838,Sedan,,,, +06/30/2021,18:54,BRONX,10458,40.86886,-73.892235,"(40.86886, -73.892235)",,,2780 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4433063,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,12:30,,,40.60212,-74.013145,"(40.60212, -74.013145)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433066,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,5:25,,,40.728848,-73.75087,"(40.728848, -73.75087)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4432528,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,18:15,,,40.715763,-73.74654,"(40.715763, -73.74654)",JAMAICA AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433135,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,0:00,BRONX,10456,40.832428,-73.905205,"(40.832428, -73.905205)",,,3593 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432874,Tractor Truck Diesel,Sedan,,, +07/02/2021,23:25,BRONX,10469,40.8703,-73.839905,"(40.8703, -73.839905)",ADEE AVENUE,TIEMANN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4433802,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/30/2021,9:25,BROOKLYN,11222,40.720627,-73.93889,"(40.720627, -73.93889)",,,44 DIVISION PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432890,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,15:45,BROOKLYN,11229,40.60803,-73.960045,"(40.60803, -73.960045)",KINGS HIGHWAY,EAST 13 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433198,Bus,,,, +07/01/2021,8:05,QUEENS,11379,40.715355,-73.886154,"(40.715355, -73.886154)",,,69-09 65 DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433372,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,18:30,BRONX,10466,40.885845,-73.83124,"(40.885845, -73.83124)",,,3664 DYRE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433100,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,13:20,BROOKLYN,11207,40.69126,-73.907455,"(40.69126, -73.907455)",,,241 COVERT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4433222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,0:01,MANHATTAN,10016,40.747974,-73.97951,"(40.747974, -73.97951)",,,120 EAST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432793,Box Truck,Sedan,,, +06/22/2021,15:52,BRONX,10466,40.886486,-73.82625,"(40.886486, -73.82625)",,,4151 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433811,Sedan,,,, +07/01/2021,9:00,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432991,Sedan,Sedan,,, +07/02/2021,7:58,BROOKLYN,11207,40.668255,-73.892006,"(40.668255, -73.892006)",BLAKE AVENUE,WYONA STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4433303,Sedan,Sedan,,, +07/02/2021,18:45,BRONX,10457,40.84692,-73.89756,"(40.84692, -73.89756)",,,484 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4434006,Motorbike,,,, +07/01/2021,8:30,,,40.738754,-74.00647,"(40.738754, -74.00647)",GREENWICH STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433340,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,18:50,MANHATTAN,10009,40.729248,-73.98368,"(40.729248, -73.98368)",,,401 EAST 11 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433740,Sedan,Bike,,, +06/25/2021,18:20,BROOKLYN,11212,40.666756,-73.921684,"(40.666756, -73.921684)",,,2025 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433555,Sedan,,,, +07/01/2021,18:10,,,40.84771,-73.93798,"(40.84771, -73.93798)",WEST 177 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433266,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,19:08,MANHATTAN,10034,40.867275,-73.91922,"(40.867275, -73.91922)",VERMILYEA AVENUE,ISHAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433844,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,13:20,QUEENS,11361,,,,bell blvd,43rd avenue,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433514,Sedan,,,, +07/02/2021,18:15,,,40.68318,-73.7893,"(40.68318, -73.7893)",116 ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,8:46,BROOKLYN,11212,40.66185,-73.9029,"(40.66185, -73.9029)",SACKMAN STREET,RIVERDALE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433625,Sedan,,,, +06/29/2021,19:00,,,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433664,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2021,13:40,BRONX,10468,40.863155,-73.90079,"(40.863155, -73.90079)",,,2467 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4432815,Sedan,Sedan,,, +07/02/2021,1:38,MANHATTAN,10065,40.76468,-73.9643,"(40.76468, -73.9643)",3 AVENUE,EAST 64 STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4433795,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,8:00,QUEENS,11432,40.70778,-73.79341,"(40.70778, -73.79341)",168 STREET,90 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4433119,Pick-up Truck,,,, +07/02/2021,12:00,,,40.63665,-73.96805,"(40.63665, -73.96805)",CONEY ISLAND AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433988,Sedan,Sedan,,, +07/02/2021,9:00,BROOKLYN,11223,40.601604,-73.96277,"(40.601604, -73.96277)",,,1952 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433281,Box Truck,,,, +07/01/2021,17:17,MANHATTAN,10029,40.79931,-73.943245,"(40.79931, -73.943245)",EAST 116 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433261,Ambulance,Sedan,,, +07/02/2021,10:15,,,40.747906,-73.710304,"(40.747906, -73.710304)",UNION TURNPIKE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433497,Sedan,,,, +07/01/2021,12:00,BROOKLYN,11203,40.65239,-73.92655,"(40.65239, -73.92655)",CHURCH AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433865,Sedan,Sedan,,, +07/02/2021,19:47,QUEENS,11368,40.748154,-73.85403,"(40.748154, -73.85403)",111 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4433675,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,15:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,7:30,MANHATTAN,10282,40.71755,-74.01367,"(40.71755, -74.01367)",,,345 CHAMBERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433330,Sedan,Box Truck,,, +07/01/2021,14:00,BRONX,10458,,,,EAST BEDFORD PARK BOULEVARD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433188,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,16:00,QUEENS,11432,40.72147,-73.78444,"(40.72147, -73.78444)",MIDLAND PARKWAY,SURREY PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433444,Sedan,Dump,,, +07/02/2021,7:05,BRONX,10453,40.85394,-73.91468,"(40.85394, -73.91468)",WEST BURNSIDE AVENUE,LORING PLACE SOUTH,,0,0,0,0,0,0,0,0,Alcohol Involvement,Turning Improperly,Unspecified,Unspecified,,4433293,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/30/2021,8:15,STATEN ISLAND,10314,40.6148,-74.12066,"(40.6148, -74.12066)",BEECHWOOD PLACE,DONGAN AVENUE,,1,0,1,0,0,0,0,0,Passenger Distraction,,,,,4433910,Sedan,,,, +07/01/2021,9:35,BROOKLYN,11221,40.687504,-73.91465,"(40.687504, -73.91465)",BUSHWICK AVENUE,WEIRFIELD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433466,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,22:10,BROOKLYN,11217,40.678684,-73.98219,"(40.678684, -73.98219)",4 AVENUE,DE GRAW STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433394,Moped,Box Truck,,, +07/02/2021,3:50,BROOKLYN,11223,40.59401,-73.96086,"(40.59401, -73.96086)",,,2575 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4433525,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,11:00,QUEENS,11435,40.692646,-73.800865,"(40.692646, -73.800865)",,,146-56 LAKEWOOD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433325,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:35,BROOKLYN,11221,40.687523,-73.918625,"(40.687523, -73.918625)",,,1468 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4433667,Sedan,Bike,,, +07/02/2021,14:00,,,40.729687,-73.99861,"(40.729687, -73.99861)",THOMPSON STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433835,Sedan,,,, +06/30/2021,21:30,,,40.744923,-73.83709,"(40.744923, -73.83709)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432882,Sedan,Tractor Truck Diesel,,, +06/30/2021,18:30,,,,,,HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4432738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,8:30,BRONX,10452,40.83932,-73.91503,"(40.83932, -73.91503)",WYTHE PLACE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432614,Sedan,Sedan,,, +06/30/2021,10:54,BRONX,10457,40.842754,-73.8904,"(40.842754, -73.8904)",,,1874 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432943,Sedan,Bus,,, +06/30/2021,12:49,BROOKLYN,11236,40.636646,-73.89285,"(40.636646, -73.89285)",,,1863 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432997,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,10:00,QUEENS,11004,40.745186,-73.71416,"(40.745186, -73.71416)",,,79-35 257 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433883,Sedan,Garbage or Refuse,,, +06/30/2021,12:00,QUEENS,11101,40.745815,-73.945656,"(40.745815, -73.945656)",JACKSON AVENUE,23 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432772,Box Truck,Bike,,, +06/30/2021,2:11,QUEENS,11355,40.752262,-73.83446,"(40.752262, -73.83446)",,,131-35 AVERY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4432763,Sedan,,,, +06/30/2021,22:00,BROOKLYN,11212,40.65739,-73.92508,"(40.65739, -73.92508)",,,317 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432961,Sedan,Sedan,,, +07/01/2021,9:30,STATEN ISLAND,10306,40.572906,-74.13705,"(40.572906, -74.13705)",RICHMOND ROAD,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433111,Sedan,,,, +06/23/2021,23:28,BROOKLYN,11212,40.657524,-73.91055,"(40.657524, -73.91055)",BOYLAND STREET,LOTT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433613,Sedan,Sedan,,, +07/02/2021,8:25,QUEENS,11412,40.694534,-73.74783,"(40.694534, -73.74783)",204 STREET,118 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4433308,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +07/01/2021,17:50,,,40.582287,-74.16907,"(40.582287, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433932,Sedan,,,, +06/20/2021,9:30,QUEENS,11385,40.709633,-73.90223,"(40.709633, -73.90223)",60 PLACE,GROVE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433367,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,22:10,BROOKLYN,11222,40.72934,-73.95576,"(40.72934, -73.95576)",,,123 MILTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433235,Sedan,,,, +07/01/2021,15:45,,,40.777023,-73.8126,"(40.777023, -73.8126)",24 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433477,Sedan,Sedan,,, +06/30/2021,9:22,,,40.703587,-73.944336,"(40.703587, -73.944336)",MANHATTAN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432807,Bike,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,19:35,BRONX,10465,40.84615,-73.818344,"(40.84615, -73.818344)",AMPERE AVENUE,LIBRARY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4432849,Sedan,Sedan,Sedan,, +06/30/2021,21:24,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,NEW DORP LANE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433081,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,0:10,BRONX,10457,,,,WADE SQUARE,OAK TREE PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433044,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,12:43,QUEENS,11101,40.748543,-73.94964,"(40.748543, -73.94964)",44 DRIVE,11 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4433177,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,6:00,,,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4433352,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2021,14:10,BRONX,10466,40.89193,-73.848076,"(40.89193, -73.848076)",EDENWALD AVENUE,WICKHAM AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4433804,Sedan,Sedan,,, +06/30/2021,18:12,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",3 AVENUE,EAST 144 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433194,Sedan,Sedan,,, +06/30/2021,13:35,,,,,,VANWYCK EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4432869,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,0:00,,,40.63887,-74.13125,"(40.63887, -74.13125)",,,57 PARK AVENUE,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4433335,Motorcycle,,,, +06/30/2021,13:00,BRONX,10452,40.843376,-73.91768,"(40.843376, -73.91768)",,,1500 MACOMBS ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4433217,Sedan,Moped,,, +06/30/2021,19:30,BROOKLYN,11211,40.701397,-73.95808,"(40.701397, -73.95808)",RUTLEDGE STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4432799,Sedan,TRAILER,,, +07/01/2021,20:19,QUEENS,11372,40.749157,-73.86943,"(40.749157, -73.86943)",JUNCTION BOULEVARD,ROOSEVELT AVENUE,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433162,Pick-up Truck,Bike,,, +07/02/2021,9:59,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433542,Sedan,,,, +06/29/2021,19:30,BROOKLYN,11234,40.633636,-73.92847,"(40.633636, -73.92847)",,,1588 UTICA AVENUE,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4433409,Sedan,Sedan,,, +06/30/2021,18:09,BROOKLYN,11208,40.665474,-73.86752,"(40.665474, -73.86752)",CRESCENT STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4433028,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,16:19,MANHATTAN,10025,40.806133,-73.961555,"(40.806133, -73.961555)",AMSTERDAM AVENUE,WEST 115 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433752,Sedan,Sedan,,, +06/26/2021,23:40,BRONX,10462,40.845222,-73.86613,"(40.845222, -73.86613)",MORRIS PARK AVENUE,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4433429,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +06/28/2021,14:20,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433518,Sedan,Sedan,,, +06/29/2021,20:40,MANHATTAN,10034,40.869,-73.92033,"(40.869, -73.92033)",COOPER STREET,ISHAM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433714,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,17:16,QUEENS,11101,40.75366,-73.94758,"(40.75366, -73.94758)",10 STREET,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433579,Sedan,Tractor Truck Gasoline,,, +07/02/2021,14:40,MANHATTAN,10025,40.80111,-73.965225,"(40.80111, -73.965225)",AMSTERDAM AVENUE,WEST 107 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433357,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,10:54,BROOKLYN,11207,40.682316,-73.88814,"(40.682316, -73.88814)",RIDGEWOOD AVENUE,WARWICK STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4433037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,18:39,QUEENS,11423,40.720726,-73.760185,"(40.720726, -73.760185)",,,205-07 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433462,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,2:50,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",TROUTMAN STREET,WOODWARD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433362,Sedan,Pick-up Truck,Sedan,, +07/02/2021,6:15,QUEENS,11418,40.692726,-73.81065,"(40.692726, -73.81065)",VANWYCK EXPRESSWAY,LLOYD ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,2:20,,,40.65763,-73.85625,"(40.65763, -73.85625)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4433229,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:00,,,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,10:27,QUEENS,11411,40.697525,-73.746826,"(40.697525, -73.746826)",FRANCIS LEWIS BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433051,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,15:55,,,40.866047,-73.87207,"(40.866047, -73.87207)",SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4433984,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,18:17,BRONX,10451,40.81505,-73.92427,"(40.81505, -73.92427)",MORRIS AVENUE,EAST 143 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432825,Sedan,Bike,,, +04/08/2022,15:00,,,40.716114,-73.824905,"(40.716114, -73.824905)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,21:45,BROOKLYN,11229,40.610504,-73.95767,"(40.610504, -73.95767)",AVENUE P,EAST 16 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4517537,Tractor Truck Diesel,,,, +04/07/2022,20:00,BRONX,10469,40.87571,-73.84206,"(40.87571, -73.84206)",GIVAN AVENUE,SEXTON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517720,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,16:00,,,40.82814,-73.8953,"(40.82814, -73.8953)",EAST 169 STREET,INTERVALE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517484,Bike,,,, +04/02/2022,15:00,QUEENS,11102,40.775185,-73.92139,"(40.775185, -73.92139)",,,24-21 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517578,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,15:30,BROOKLYN,11213,40.677048,-73.9387,"(40.677048, -73.9387)",PACIFIC STREET,ALBANY AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4517697,,,,, +04/07/2022,14:40,BROOKLYN,11211,40.717304,-73.94655,"(40.717304, -73.94655)",,,382 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4517835,Sedan,Van,,, +04/07/2022,14:00,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517210,Sedan,,,, +04/08/2022,19:00,QUEENS,11428,40.716675,-73.75502,"(40.716675, -73.75502)",93 AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517324,Sedan,Sedan,,, +04/07/2022,16:54,MANHATTAN,10003,40.73773,-73.98818,"(40.73773, -73.98818)",PARK AVENUE SOUTH,EAST 19 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517626,Sedan,,,, +04/08/2022,20:40,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517338,Sedan,,,, +04/05/2022,18:00,QUEENS,11355,40.753384,-73.82218,"(40.753384, -73.82218)",,,44-25 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517457,Sedan,Sedan,,, +04/07/2022,8:39,,,40.742283,-73.95181,"(40.742283, -73.95181)",50 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517343,Sedan,Van,,, +04/07/2022,11:24,,,40.69444,-73.815125,"(40.69444, -73.815125)",133 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4517036,Sedan,Sedan,,, +04/06/2022,7:20,BROOKLYN,11238,40.68553,-73.95656,"(40.68553, -73.95656)",FRANKLIN AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516768,Sedan,Bus,,, +04/06/2022,13:49,BROOKLYN,11236,40.64775,-73.9066,"(40.64775, -73.9066)",FOSTER AVENUE,EAST 96 STREET,,1,0,1,0,0,0,0,0,,,,,,4516772,,,,, +04/06/2022,16:45,,,40.69733,-73.78456,"(40.69733, -73.78456)",109 AVENUE,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4516993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/06/2022,20:07,BROOKLYN,11201,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,DE KALB AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517174,E-Bike,,,, +04/06/2022,12:30,BRONX,10466,40.87987,-73.842026,"(40.87987, -73.842026)",BOSTON ROAD,BRUNER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4516801,Sedan,Pick-up Truck,Sedan,Sedan, +04/06/2022,17:17,MANHATTAN,10033,40.84654,-73.93521,"(40.84654, -73.93521)",,,586 WEST 177 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4517028,Sedan,,,, +04/07/2022,0:30,,,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517906,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,21:46,BRONX,10459,40.81889,-73.89609,"(40.81889, -73.89609)",BECK STREET,INTERVALE AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517190,Pick-up Truck,Bike,,, +04/06/2022,15:30,BROOKLYN,11220,40.6313,-74.01034,"(40.6313, -74.01034)",65 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516837,Sedan,,,, +04/08/2022,18:35,QUEENS,11370,40.757877,-73.8839,"(40.757877, -73.8839)",32 AVENUE,84 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4517557,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +04/06/2022,13:00,MANHATTAN,10035,40.802402,-73.94519,"(40.802402, -73.94519)",,,1473 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517064,Sedan,,,, +04/07/2022,20:00,QUEENS,11691,40.609108,-73.74685,"(40.609108, -73.74685)",CENTRAL AVENUE,BEACH 9 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517917,,,,, +07/03/2021,0:00,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4433508,Sedan,,,, +10/17/2021,7:09,,,40.6803904,-73.949557,"(40.6803904, -73.949557)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4470664,Sedan,Bike,,, +04/04/2022,22:08,BROOKLYN,11233,40.67942,-73.91854,"(40.67942, -73.91854)",,,83 MACDOUGAL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517745,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,13:45,,,40.85821,-73.91679,"(40.85821, -73.91679)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,,,,4517208,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,7:43,QUEENS,11370,40.76087,-73.88349,"(40.76087, -73.88349)",,,30-25 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516736,Sedan,Sedan,,, +04/08/2022,5:55,BROOKLYN,11236,40.65055,-73.902245,"(40.65055, -73.902245)",,,10110 FOSTER AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4517357,Sedan,Sedan,Sedan,Courier, +04/07/2022,4:45,QUEENS,11435,40.69571,-73.805756,"(40.69571, -73.805756)",101 AVENUE,WALTHAM STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516994,Sedan,,,, +04/08/2022,13:45,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517287,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,16:08,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517874,Sedan,Sedan,,, +04/08/2022,9:00,MANHATTAN,10032,40.842228,-73.943954,"(40.842228, -73.943954)",,,1050 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517604,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,22:31,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4517574,Sedan,Sedan,,, +04/04/2022,9:40,,,40.827904,-73.91218,"(40.827904, -73.91218)",EAST 165 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517542,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,5:00,,,40.66933,-73.777,"(40.66933, -73.777)",158 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4517057,Sedan,,,, +04/07/2022,0:00,MANHATTAN,10032,40.831566,-73.942986,"(40.831566, -73.942986)",WEST 155 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517335,Sedan,,,, +04/02/2022,20:10,QUEENS,11375,40.7104,-73.83974,"(40.7104, -73.83974)",UNION TURNPIKE,GREENWAY SOUTH,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4517754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/07/2022,14:30,,,40.728832,-73.88052,"(40.728832, -73.88052)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4517088,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,7:30,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517314,Sedan,Sedan,,, +03/30/2022,8:00,BROOKLYN,11222,40.719864,-73.93589,"(40.719864, -73.93589)",VANDERVORT AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4517873,Tractor Truck Diesel,Refrigerated Van,,, +04/06/2022,8:00,BROOKLYN,11228,40.62868,-74.01665,"(40.62868, -74.01665)",72 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516748,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,12:54,BROOKLYN,11234,40.625896,-73.92816,"(40.625896, -73.92816)",,,4915 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4516800,Sedan,,,, +04/05/2022,11:47,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517077,,,,, +04/07/2022,22:20,QUEENS,11692,40.590397,-73.78874,"(40.590397, -73.78874)",,,118 BEACH 59 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4517197,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,16:45,,,40.865383,-73.89348,"(40.865383, -73.89348)",VALENTINE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517902,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/04/2022,20:10,BROOKLYN,11233,40.672497,-73.91686,"(40.672497, -73.91686)",PROSPECT PLACE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4517564,Sedan,,,, +04/08/2022,13:22,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517812,Carry All,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,10:30,QUEENS,11106,40.76407,-73.93666,"(40.76407, -73.93666)",,,12-20 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517566,Sedan,,,, +04/04/2022,6:15,QUEENS,11105,40.77045,-73.911644,"(40.77045, -73.911644)",,,23-85 37 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,17:00,BROOKLYN,11232,40.65021,-74.01577,"(40.65021, -74.01577)",48 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516827,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,14:00,,,40.709415,-73.87022,"(40.709415, -73.87022)",80 STREET,COOPER AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4516925,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,10:32,,,,,,Macon street,Macon,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494788,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,13:40,BRONX,10472,40.835835,-73.87308,"(40.835835, -73.87308)",CROSS BRONX EXPRESSWAY,FTELEY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517192,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,15:20,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",QUEENS BOULEVARD,62 DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517105,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,20:22,BROOKLYN,11218,40.640205,-73.98001,"(40.640205, -73.98001)",DAHILL ROAD,AVENUE C,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517513,Sedan,Taxi,,, +04/06/2022,1:00,MANHATTAN,10065,40.765614,-73.9607,"(40.765614, -73.9607)",2 AVENUE,EAST 67 STREET,,1,0,1,0,0,0,0,0,,,,,,4517165,,,,, +04/06/2022,10:00,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516760,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/08/2022,18:15,STATEN ISLAND,10304,40.59493,-74.09799,"(40.59493, -74.09799)",RICHMOND ROAD,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,15:17,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,11:31,BROOKLYN,11204,40.6215,-73.9925,"(40.6215, -73.9925)",,,1682 64 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4516845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,20:56,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517303,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/06/2022,6:15,,,40.75819,-73.82318,"(40.75819, -73.82318)",SANFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516713,Sedan,Bus,,, +03/30/2022,10:00,QUEENS,11434,40.68698,-73.789604,"(40.68698, -73.789604)",157 STREET,114 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517359,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,13:40,,,40.64978,-73.94947,"(40.64978, -73.94947)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,15:45,BROOKLYN,11217,40.68787,-73.978355,"(40.68787, -73.978355)",ASHLAND PLACE,FULTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516814,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,23:00,QUEENS,11370,40.755646,-73.89675,"(40.755646, -73.89675)",,,32-37 70 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4517555,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,21:30,,,40.666138,-73.948074,"(40.666138, -73.948074)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517225,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,16:09,BRONX,10457,40.847324,-73.90375,"(40.847324, -73.90375)",ANTHONY AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516988,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,16:15,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517818,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,20:10,,,,,,BEACH CHANNEL DRIVE,BEACH 71 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4517433,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,8:14,QUEENS,11692,40.58886,-73.80203,"(40.58886, -73.80203)",ROCKAWAY BEACH BOULEVARD,BEACH 74 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516805,Sedan,Moped,,, +04/07/2022,19:05,,,40.608807,-73.9532,"(40.608807, -73.9532)",OCEAN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517391,Sedan,,,, +04/07/2022,10:02,BROOKLYN,11205,40.698,-73.97479,"(40.698, -73.97479)",FLUSHING AVENUE,CUMBERLAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517247,Van,Sedan,,, +04/07/2022,20:37,,,40.5442,-74.22293,"(40.5442, -74.22293)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517139,Sedan,,,, +04/07/2022,13:00,MANHATTAN,10002,40.71709,-73.98804,"(40.71709, -73.98804)",,,50 NORFOLK STREET,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4517073,Taxi,,,, +03/30/2022,9:10,BROOKLYN,11203,40.65871,-73.934074,"(40.65871, -73.934074)",,,620 SCHENECTADY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517788,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,10:50,BROOKLYN,11217,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517262,Bus,Sedan,,, +04/08/2022,22:50,,,40.725174,-73.83739,"(40.725174, -73.83739)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517506,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,14:20,QUEENS,11434,40.666454,-73.78413,"(40.666454, -73.78413)",SOUTH CONDUIT AVENUE,153 COURT,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4516874,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,12:05,MANHATTAN,10032,40.845367,-73.94053,"(40.845367, -73.94053)",FORT WASHINGTON AVENUE,WEST 173 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517021,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,14:10,,,40.642017,-73.96266,"(40.642017, -73.96266)",CORTELYOU ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517718,Sedan,Bus,,, +04/08/2022,15:45,QUEENS,11428,40.715843,-73.74613,"(40.715843, -73.74613)",,,212-50 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517948,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/08/2022,11:00,BRONX,10457,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4517609,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/07/2022,10:50,BRONX,10466,40.891937,-73.85278,"(40.891937, -73.85278)",,,855 EAST 233 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,Unspecified,Unspecified,,4517084,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/07/2022,12:00,QUEENS,11432,40.70731,-73.804245,"(40.70731, -73.804245)",,,153-23 HILLSIDE AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4517318,Sedan,Sedan,,, +04/07/2022,8:24,BROOKLYN,11207,40.67477,-73.8966,"(40.67477, -73.8966)",,,127 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517051,Sedan,Motorcycle,,, +04/07/2022,5:20,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516915,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/06/2022,0:00,BROOKLYN,11210,40.63635,-73.94687,"(40.63635, -73.94687)",,,3107 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517729,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/06/2022,8:47,BROOKLYN,11228,40.618088,-74.02274,"(40.618088, -74.02274)",88 STREET,BATTERY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517121,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,20:16,QUEENS,11103,40.767353,-73.9177,"(40.767353, -73.9177)",34 STREET,28 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517185,Station Wagon/Sport Utility Vehicle,Bike,,, +04/02/2022,9:40,MANHATTAN,10029,40.786808,-73.94524,"(40.786808, -73.94524)",EAST 100 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517331,Sedan,,,, +04/06/2022,11:30,,,40.747112,-73.96894,"(40.747112, -73.96894)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516869,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,7:30,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4517883,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Box Truck,, +04/06/2022,14:30,,,40.620255,-73.936874,"(40.620255, -73.936874)",FLATLANDS AVENUE,RYDER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517289,Sedan,,,, +04/07/2022,16:09,,,40.748913,-73.9374,"(40.748913, -73.9374)",JACKSON AVENUE,QUEENS PLAZA SOUTH,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4517133,Taxi,E-Bike,,, +04/08/2022,13:15,QUEENS,11421,40.69595,-73.86237,"(40.69595, -73.86237)",PARK LANE SOUTH,FOREST PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:13,MANHATTAN,10031,40.82398,-73.946724,"(40.82398, -73.946724)",CONVENT AVENUE,WEST 144 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517368,Taxi,,,, +04/06/2022,11:36,BROOKLYN,11208,40.66435,-73.87231,"(40.66435, -73.87231)",STANLEY AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516860,Station Wagon/Sport Utility Vehicle,Box Truck,,, +03/31/2022,10:00,QUEENS,11368,40.75494,-73.86909,"(40.75494, -73.86909)",,,34-19 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517549,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,8:35,MANHATTAN,10022,40.762287,-73.972374,"(40.762287, -73.972374)",EAST 57 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4516704,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,2:25,BROOKLYN,11212,40.668976,-73.90668,"(40.668976, -73.90668)",STONE AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517150,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,17:50,BRONX,10464,40.859245,-73.81814,"(40.859245, -73.81814)",PELHAM PARKWAY,SHORE ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4517884,Sedan,Sedan,,, +04/06/2022,17:15,BROOKLYN,11225,40.66309,-73.962395,"(40.66309, -73.962395)",FLATBUSH AVENUE,EMPIRE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517230,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,20:08,MANHATTAN,10010,,,,,,20 WATERSIDE PLAZA,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470341,Sedan,Sedan,,, +04/08/2022,5:08,QUEENS,11354,40.764084,-73.83336,"(40.764084, -73.83336)",35 AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517453,trailer,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,18:47,MANHATTAN,10032,40.837906,-73.93835,"(40.837906, -73.93835)",AMSTERDAM AVENUE,WEST 165 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4494851,Sedan,Bike,,, +04/06/2022,8:35,,,40.763695,-73.81911,"(40.763695, -73.81911)",147 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516788,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,13:50,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4517681,Sedan,Sedan,,, +04/08/2022,6:22,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",HOWARD AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,20:40,QUEENS,11373,40.734135,-73.86918,"(40.734135, -73.86918)",59 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4516892,,,,, +04/08/2022,21:25,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517623,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/07/2022,4:15,QUEENS,11103,40.757595,-73.920135,"(40.757595, -73.920135)",,,32-48 STEINWAY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517215,Sedan,Sedan,,, +04/06/2022,9:15,,,40.545578,-74.22228,"(40.545578, -74.22228)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517182,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/07/2022,7:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4517110,Tractor Truck Diesel,,,, +04/08/2022,20:05,MANHATTAN,10032,40.83328,-73.93916,"(40.83328, -73.93916)",WEST 159 STREET,EDGECOMBE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517598,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/29/2022,11:33,QUEENS,11106,40.762447,-73.91949,"(40.762447, -73.91949)",31 AVENUE,36 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517405,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,18:27,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4517299,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,17:48,,,40.597435,-73.74621,"(40.597435, -73.74621)",BEACH 12 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517428,Sedan,,,, +04/08/2022,10:30,BROOKLYN,11221,40.69506,-73.92982,"(40.69506, -73.92982)",,,29 DODWORTH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,17:12,,,,,,BRONX RIVER PARKWAY,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517935,Ambulance,Sedan,,, +03/29/2022,18:36,MANHATTAN,10035,40.801655,-73.938896,"(40.801655, -73.938896)",,,157 EAST 121 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4517257,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,13:06,,,,,,BRONX RIVER PARKWAY,ALLERTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4517279,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/08/2022,1:05,MANHATTAN,10001,40.75045,-73.9873,"(40.75045, -73.9873)",WEST 35 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4517531,Sedan,,,, +04/08/2022,6:00,STATEN ISLAND,10308,40.550766,-74.15017,"(40.550766, -74.15017)",AMBOY ROAD,GIFFORDS LANE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4517490,Sedan,Sedan,,, +04/06/2022,18:45,,,40.60375,-73.76746,"(40.60375, -73.76746)",HEALY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,19:44,BROOKLYN,11203,40.64829,-73.944496,"(40.64829, -73.944496)",,,282 EAST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517615,Sedan,,,, +04/07/2022,22:15,MANHATTAN,10035,40.80472,-73.93824,"(40.80472, -73.93824)",,,115 EAST 125 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517235,Sedan,,,, +04/08/2022,23:41,BROOKLYN,11212,40.658672,-73.90019,"(40.658672, -73.90019)",NEW LOTS AVENUE,JUNIUS STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4517590,Sedan,,,, +04/07/2022,8:23,QUEENS,11415,40.71304,-73.82982,"(40.71304, -73.82982)",81 AVENUE,KEW GARDEN ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516977,PK,Sedan,,, +04/07/2022,17:00,BROOKLYN,11220,40.64104,-74.00361,"(40.64104, -74.00361)",,,770 50 STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4517115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/08/2022,23:00,,,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517857,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,17:00,BROOKLYN,11226,40.653774,-73.95617,"(40.653774, -73.95617)",BEDFORD AVENUE,LENOX ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4517632,Sedan,Bike,,, +04/06/2022,14:00,QUEENS,11417,40.680782,-73.83435,"(40.680782, -73.83435)",,,107-55 106 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516880,Sedan,,,, +10/20/2021,2:19,,,40.7404615,-73.8443678,"(40.7404615, -73.8443678)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469088,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,14:25,QUEENS,11385,40.699146,-73.90381,"(40.699146, -73.90381)",,,1715 WEIRFIELD STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4517411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,12:55,,,40.677845,-73.95282,"(40.677845, -73.95282)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4517769,Sedan,Carry All,,, +04/07/2022,9:08,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517472,Pick-up Truck,Sedan,,, +04/06/2022,14:55,,,40.707783,-73.932076,"(40.707783, -73.932076)",MORGAN AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516839,Sedan,Box Truck,,, +04/07/2022,7:40,QUEENS,11368,40.746906,-73.86371,"(40.746906, -73.86371)",43 AVENUE,NATIONAL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517143,Taxi,,,, +04/07/2022,13:30,QUEENS,11419,40.68862,-73.82915,"(40.68862, -73.82915)",,,101-67 115 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517156,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/03/2022,21:00,BROOKLYN,11206,40.70207,-73.9363,"(40.70207, -73.9363)",,,888 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517637,Sedan,,,, +04/01/2022,15:28,QUEENS,11385,40.70097,-73.88599,"(40.70097, -73.88599)",,,72-29 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517711,Sedan,,,, +04/06/2022,22:30,QUEENS,11412,40.693123,-73.752914,"(40.693123, -73.752914)",118 AVENUE,199 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517012,Sedan,Sedan,,, +04/06/2022,10:00,MANHATTAN,10016,40.744366,-73.974884,"(40.744366, -73.974884)",,,323 EAST 34 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517098,,,,, +04/06/2022,22:16,BROOKLYN,11223,40.597984,-73.96411,"(40.597984, -73.96411)",AVENUE U,EAST 7 STREET,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,Unspecified,,,4516909,Sedan,Sedan,Sedan,, +04/07/2022,16:35,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517242,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,7:50,QUEENS,11434,40.686745,-73.78138,"(40.686745, -73.78138)",166 STREET,116 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4517385,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,15:50,MANHATTAN,10001,40.75449,-74.006744,"(40.75449, -74.006744)",WEST 30 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517738,Sedan,,,, +04/08/2022,7:00,,,40.64316,-74.01922,"(40.64316, -74.01922)",58 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517473,4 dr sedan,,,, +04/07/2022,6:50,BROOKLYN,11222,40.729294,-73.9498,"(40.729294, -73.9498)",,,255 CALYER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4516945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,13:09,BROOKLYN,11236,40.63563,-73.91311,"(40.63563, -73.91311)",,,8013 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4517311,Dump,Sedan,,, +04/08/2022,5:45,QUEENS,11377,40.748825,-73.900764,"(40.748825, -73.900764)",,,37-14 62 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517654,Sedan,Sedan,,, +04/04/2022,9:00,,,40.69632,-73.960625,"(40.69632, -73.960625)",TAAFFE PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517755,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,19:20,BRONX,10465,40.831074,-73.82464,"(40.831074, -73.82464)",EDISON AVENUE,SOMMER PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4517189,Sedan,Sedan,Sedan,Sedan, +03/31/2022,11:58,QUEENS,11103,40.767506,-73.91205,"(40.767506, -73.91205)",,,25-95 STEINWAY STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517376,Sedan,E-Bike,,, +04/07/2022,21:41,,,40.60487,-74.02955,"(40.60487, -74.02955)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517125,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,18:41,BRONX,10457,40.847816,-73.89663,"(40.847816, -73.89663)",,,1946 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517614,Sedan,,,, +04/08/2022,12:38,BROOKLYN,11210,40.632313,-73.93687,"(40.632313, -73.93687)",,,4102 AVENUE H,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517306,Sedan,,,, +04/07/2022,8:35,BRONX,10471,40.90028,-73.89704,"(40.90028, -73.89704)",BROADWAY,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517218,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,12:55,,,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4516957,Dump,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,13:00,MANHATTAN,10018,40.75289,-73.98732,"(40.75289, -73.98732)",WEST 38 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517543,Sedan,,,, +04/05/2022,17:08,,,40.84915,-73.917336,"(40.84915, -73.917336)",WEST 176 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4517211,Sedan,Bike,,, +01/13/2022,8:23,,,40.85052,-73.92921,"(40.85052, -73.92921)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Illnes,,,,,4494998,Sedan,,,, +04/08/2022,0:15,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4517128,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,5:25,MANHATTAN,10019,40.76788,-73.9815,"(40.76788, -73.9815)",COLUMBUS CIRCLE,CENTRAL PARK SOUTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516651,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,4:35,,,,,,EAST TREMONT AVENUE,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4517178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,14:10,STATEN ISLAND,10309,40.528,-74.23547,"(40.528, -74.23547)",,,3010 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517447,Station Wagon/Sport Utility Vehicle,,,, +03/27/2022,4:40,BROOKLYN,11212,40.675205,-73.904396,"(40.675205, -73.904396)",EAST NEW YORK AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517351,Sedan,Sedan,,, +04/08/2022,23:00,,,40.742474,-73.95277,"(40.742474, -73.95277)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517344,Sedan,E scooter,,, +04/07/2022,8:15,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",WOODHAVEN BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517144,Sedan,Sedan,,, +04/06/2022,23:16,BROOKLYN,11207,40.65444,-73.89081,"(40.65444, -73.89081)",WORTMAN AVENUE,ALABAMA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4516867,Sedan,,,, +04/01/2022,11:05,MANHATTAN,10002,40.721935,-73.98533,"(40.721935, -73.98533)",,,250 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517686,Taxi,Flat Bed,,, +04/07/2022,10:37,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517037,Sedan,Box Truck,,, +04/06/2022,10:00,QUEENS,11423,40.71135,-73.754875,"(40.71135, -73.754875)",,,100-26 205 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4516775,Pick-up Truck,Sedan,,, +04/08/2022,12:13,MANHATTAN,10009,40.725193,-73.98705,"(40.725193, -73.98705)",1 AVENUE,EAST 4 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4517691,Moped,Sedan,,, +04/08/2022,12:25,BROOKLYN,11229,40.597248,-73.94926,"(40.597248, -73.94926)",,,2116 GRAVESEND NECK ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517398,Convertible,Sedan,,, +04/08/2022,3:45,MANHATTAN,10025,40.797215,-73.969925,"(40.797215, -73.969925)",BROADWAY,WEST 100 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517842,Tractor Truck Diesel,Sedan,,, +04/05/2022,8:15,MANHATTAN,10029,40.792545,-73.94104,"(40.792545, -73.94104)",EAST 109 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4517721,Sedan,Bus,,, +04/08/2022,19:30,QUEENS,11101,40.745235,-73.937706,"(40.745235, -73.937706)",SKILLMAN AVENUE,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,15:00,BROOKLYN,11212,40.659477,-73.908134,"(40.659477, -73.908134)",NEWPORT STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4517585,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,8:45,,,40.758205,-73.777405,"(40.758205, -73.777405)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,14:39,BRONX,10460,40.832294,-73.88866,"(40.832294, -73.88866)",,,1469 VYSE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517485,Sedan,Unknown,,, +04/06/2022,3:35,MANHATTAN,10011,40.744022,-74.00847,"(40.744022, -74.00847)",11 AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4517727,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,15:00,MANHATTAN,10031,40.821594,-73.95077,"(40.821594, -73.95077)",,,504 WEST 139 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4517701,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,14:05,BROOKLYN,11206,40.70941,-73.9367,"(40.70941, -73.9367)",,,288 SCHOLES STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4517518,Box Truck,Motorbike,,, +04/08/2022,0:00,,,40.665836,-73.75739,"(40.665836, -73.75739)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517286,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,17:48,QUEENS,11434,40.664722,-73.76907,"(40.664722, -73.76907)",BREWER BOULEVARD,145 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517160,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,14:00,BROOKLYN,11215,40.673267,-73.98952,"(40.673267, -73.98952)",3 AVENUE,6 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517678,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +01/12/2022,10:30,,,,,,33 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4495035,Sedan,,,, +06/13/2021,4:17,,,,,,WEST 54 STREET,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434107,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,18:00,STATEN ISLAND,10306,40.567394,-74.15229,"(40.567394, -74.15229)",ARTHUR KILL ROAD,TANGLEWOOD DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4490593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/25/2021,3:50,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4490879,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/04/2022,18:47,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,CLARENDON ROAD,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4493009,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/08/2022,9:00,BROOKLYN,11206,40.703915,-73.94817,"(40.703915, -73.94817)",LORIMER STREET,THROOP AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493233,E-Scooter,,,, +01/06/2022,17:27,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",EAST NEW YORK AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493505,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,19:29,BRONX,10462,40.85678,-73.86192,"(40.85678, -73.86192)",PELHAM PARKWAY,MULINER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4493842,Sedan,Sedan,,, +01/14/2022,22:44,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495149,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,8:30,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4495108,Sedan,Van,,, +12/25/2021,12:32,MANHATTAN,10027,40.81032,-73.95151,"(40.81032, -73.95151)",,,307 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495141,Sedan,,,, +01/14/2022,12:30,,,40.73765,-73.90557,"(40.73765, -73.90557)",LAUREL HILL BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4495122,Sedan,,,, +01/14/2022,8:31,QUEENS,11426,40.724037,-73.72568,"(40.724037, -73.72568)",242 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495147,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/28/2021,17:40,MANHATTAN,10027,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4495142,Sedan,E-Bike,,, +01/14/2022,4:45,,,,,,,,1 WASHINGTON SQUARE SOUTH,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4495110,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,5:35,QUEENS,11378,40.720524,-73.90493,"(40.720524, -73.90493)",FLUSHING AVENUE,58 ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4504163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +02/20/2022,7:05,BROOKLYN,11226,40.64388,-73.94693,"(40.64388, -73.94693)",,,278 EAST 32 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504091,Sedan,Sedan,,, +02/20/2022,18:45,,,40.680748,-73.78948,"(40.680748, -73.78948)",153 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4504316,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/20/2022,10:25,BROOKLYN,11222,40.720306,-73.943634,"(40.720306, -73.943634)",,,518 MEEKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504427,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,17:00,MANHATTAN,10025,40.80295,-73.96567,"(40.80295, -73.96567)",,,225 WEST 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504288,Sedan,,,, +02/18/2022,21:47,BROOKLYN,11208,40.683014,-73.87003,"(40.683014, -73.87003)",,,294 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504783,Sedan,,,, +02/19/2022,10:00,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504813,Sedan,Refrigerated Van,,, +02/18/2022,19:21,,,40.836403,-73.875595,"(40.836403, -73.875595)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504730,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,11:20,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504898,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,21:20,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",NORTH CONDUIT AVENUE,118 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4504327,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,5:44,BRONX,10457,40.854248,-73.89399,"(40.854248, -73.89399)",FLETCHER PLACE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504738,Sedan,Box Truck,,, +02/20/2022,7:22,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504581,Sedan,,,, +02/20/2022,15:55,,,40.681118,-73.96443,"(40.681118, -73.96443)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,8:30,QUEENS,11105,40.778557,-73.90175,"(40.778557, -73.90175)",,,19-35 37 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504673,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,9:10,BROOKLYN,11213,40.6772,-73.94147,"(40.6772, -73.94147)",PACIFIC STREET,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494931,Sedan,Sedan,,, +01/12/2022,3:43,QUEENS,11373,40.734604,-73.864784,"(40.734604, -73.864784)",,,59-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494904,Sedan,,,, +01/07/2022,4:52,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494525,Tanker,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,8:30,BROOKLYN,11222,,,,,,750 MEEKER AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unsafe Lane Changing,,,,4494226,Sedan,Dump,,, +01/13/2022,0:46,,,40.675682,-74.00119,"(40.675682, -74.00119)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4494169,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/15/2021,1:35,BROOKLYN,11234,40.613117,-73.925255,"(40.613117, -73.925255)",EAST 51 STREET,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494654,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,6:30,BROOKLYN,11213,40.66804,-73.93535,"(40.66804, -73.93535)",,,1618 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494507,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,7:35,BRONX,10468,40.8725,-73.90215,"(40.8725, -73.90215)",SEDGWICK AVENUE,WEST 197 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4494493,Bus,Sedan,,, +01/13/2022,0:00,QUEENS,11378,40.72784,-73.90408,"(40.72784, -73.90408)",54 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494902,Carry All,Tanker,,, +01/13/2022,18:10,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4494401,Sedan,Sedan,Van,, +01/14/2022,22:00,BRONX,10461,40.84325,-73.84306,"(40.84325, -73.84306)",,,1412 BLONDELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494703,Sedan,,,, +01/13/2022,7:00,,,40.679955,-73.97491,"(40.679955, -73.97491)",SAINT MARKS AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494638,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,18:20,BROOKLYN,11226,40.6535,-73.9654,"(40.6535, -73.9654)",,,115 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4494380,Van,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +01/12/2022,0:30,QUEENS,11417,40.676373,-73.85881,"(40.676373, -73.85881)",,,107-10 78 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4493892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,20:23,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",OCEAN PARKWAY,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494781,Sedan,,,, +01/11/2022,10:30,BROOKLYN,11221,40.694088,-73.93427,"(40.694088, -73.93427)",PULASKI STREET,STUYVESANT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494960,Sedan,,,, +01/12/2022,13:40,BROOKLYN,11230,40.626495,-73.96353,"(40.626495, -73.96353)",,,931 EAST 13 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494142,Sedan,Box Truck,,, +01/14/2022,12:42,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4494656,Sedan,,,, +01/14/2022,11:25,BROOKLYN,11222,40.721504,-73.93844,"(40.721504, -73.93844)",BEADEL STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494512,Sedan,Box Truck,,, +01/08/2022,9:23,MANHATTAN,10023,40.77353,-73.98534,"(40.77353, -73.98534)",AMSTERDAM AVENUE,WEST 64 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4494568,Refrigerated Van,,,, +01/12/2022,18:41,BROOKLYN,11221,40.690205,-73.93542,"(40.690205, -73.93542)",,,816 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494287,Sedan,,,, +01/07/2022,9:00,BROOKLYN,11236,40.64165,-73.89069,"(40.64165, -73.89069)",AVENUE L,EAST 103 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494717,Sedan,Sedan,,, +04/07/2022,17:45,STATEN ISLAND,10308,40.55154,-74.16011,"(40.55154, -74.16011)",ARMSTRONG AVENUE,KATAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4517111,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,17:40,BRONX,10465,40.83087,-73.82639,"(40.83087, -73.82639)",,,3513 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4494188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,17:45,BROOKLYN,11235,40.58575,-73.95368,"(40.58575, -73.95368)",,,1513 VOORHIES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494362,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,1:50,,,,,,ASTORIA BOULEVARD,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4494436,Sedan,,,, +01/14/2022,9:00,BROOKLYN,11223,40.596767,-73.961845,"(40.596767, -73.961845)",,,2174 EAST 9 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494468,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,7:08,BROOKLYN,11209,,,,FORT HAMILTON PARKWAY,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4493951,Sedan,Sedan,,, +01/14/2022,18:07,QUEENS,11426,40.73403,-73.723656,"(40.73403, -73.723656)",HILLSIDE AVENUE,243 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494609,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,21:30,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494196,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,10:10,,,,,,,,40 YUKON AVENUE,3,0,1,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470063,Sedan,Sedan,,, +01/13/2022,21:45,BROOKLYN,11208,40.67972,-73.869865,"(40.67972, -73.869865)",,,165 MC KINLEY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4494399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,16:14,BRONX,10452,40.842464,-73.92414,"(40.842464, -73.92414)",OGDEN AVENUE,WEST 171 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494539,Bus,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,20:50,QUEENS,11435,40.716118,-73.82299,"(40.716118, -73.82299)",,,135-30 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494600,Station Wagon/Sport Utility Vehicle,Bus,,, +01/07/2022,14:10,BRONX,10470,40.90355,-73.854836,"(40.90355, -73.854836)",EAST 240 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494949,Sedan,,,, +01/14/2022,7:00,QUEENS,11101,40.75844,-73.93816,"(40.75844, -73.93816)",,,37-07 21 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,18:00,BROOKLYN,11204,40.61959,-73.98974,"(40.61959, -73.98974)",,,6414 18 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,7:30,,,40.62072,-74.029205,"(40.62072, -74.029205)",4 AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494427,Sedan,Pick-up Truck,,, +01/12/2022,16:10,MANHATTAN,10034,40.86114,-73.91894,"(40.86114, -73.91894)",9 AVENUE,WEST 203 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,12:25,QUEENS,11372,40.75595,-73.88165,"(40.75595, -73.88165)",NORTHERN BOULEVARD,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494339,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,6:30,BROOKLYN,11223,40.603004,-73.96156,"(40.603004, -73.96156)",CONEY ISLAND AVENUE,AVENUE S,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,Unspecified,,,4493984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,11:26,BRONX,10456,40.83443,-73.91035,"(40.83443, -73.91035)",EAST 169 STREET,TELLER AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4494545,Station Wagon/Sport Utility Vehicle,Motorscooter,Sedan,Station Wagon/Sport Utility Vehicle, +01/12/2021,18:50,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",GRANT HIGHWAY,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494544,Sedan,,,, +01/12/2022,12:00,BROOKLYN,11206,40.707798,-73.946075,"(40.707798, -73.946075)",,,96 MESEROLE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494098,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,15:31,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",UNION AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494738,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/31/2021,17:26,BROOKLYN,11212,40.669262,-73.91356,"(40.669262, -73.91356)",PITKIN AVENUE,BOYLAND STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494776,E-Scooter,Sedan,,, +01/12/2022,14:37,QUEENS,11385,40.69759,-73.90194,"(40.69759, -73.90194)",STEPHEN STREET,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494242,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,20:38,QUEENS,11102,40.775414,-73.91984,"(40.775414, -73.91984)",24 AVENUE,24 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494681,Sedan,,,, +10/20/2021,20:01,,,,,,102 STREET,66 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469617,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/14/2022,17:11,BROOKLYN,11215,40.67046,-73.9732,"(40.67046, -73.9732)",,,319 GARFIELD PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494642,Sedan,,,, +01/02/2022,11:10,BRONX,10457,40.841816,-73.90956,"(40.841816, -73.90956)",,,1517 MORRIS AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4495069,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/13/2022,22:20,BROOKLYN,11207,40.682655,-73.910034,"(40.682655, -73.910034)",BROADWAY,CHAUNCEY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494500,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,15:25,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494758,Sedan,,,, +01/13/2022,9:45,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494265,Sedan,Tractor Truck Diesel,,, +01/14/2022,11:15,,,40.656372,-74.009384,"(40.656372, -74.009384)",2 AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4494967,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,0:10,BRONX,10472,40.827915,-73.85327,"(40.827915, -73.85327)",OLMSTEAD AVENUE,CHATTERTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494297,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,9:15,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4494564,PK,Sedan,,, +01/12/2022,23:00,,,40.788177,-73.8005,"(40.788177, -73.8005)",162 STREET,CRYDERS LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494312,Sedan,,,, +01/14/2022,5:13,BROOKLYN,11222,40.7199,-73.93884,"(40.7199, -73.93884)",,,311 RICHARDSON STREET,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4495095,Sedan,Lift Boom,,, +01/14/2022,15:53,QUEENS,11361,40.766106,-73.77231,"(40.766106, -73.77231)",,,38-31 BELL BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494577,Sedan,Sedan,,, +01/12/2022,8:55,BROOKLYN,11214,,,,,,1742 76 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494025,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,8:20,QUEENS,11433,40.70309,-73.7918,"(40.70309, -73.7918)",,,94-29 MERRICK BOULEVARD,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4494448,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,21:41,BRONX,10458,40.86074,-73.895386,"(40.86074, -73.895386)",EAST 188 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/14/2022,10:15,,,40.60855,-74.13216,"(40.60855, -74.13216)",BRADLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,3:15,BROOKLYN,11212,40.658413,-73.910774,"(40.658413, -73.910774)",,,893 BOYLAND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494794,Sedan,,,, +01/14/2022,16:30,BRONX,10452,40.837875,-73.91971,"(40.837875, -73.91971)",JEROME AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494596,Pick-up Truck,Sedan,,, +01/12/2022,15:30,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494067,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,13:00,MANHATTAN,10029,40.786957,-73.95225,"(40.786957, -73.95225)",,,1249 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494038,Sedan,,,, +01/14/2022,20:50,MANHATTAN,10012,40.726948,-73.992966,"(40.726948, -73.992966)",,,31 GREAT JONES STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494942,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,15:20,QUEENS,11368,40.737694,-73.85721,"(40.737694, -73.85721)",CALLOWAY STREET,59 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4494409,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,23:34,QUEENS,11369,40.770313,-73.87603,"(40.770313, -73.87603)",94 STREET,DITMARS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494549,Station Wagon/Sport Utility Vehicle,Bike,,, +01/12/2022,18:20,,,40.598114,-74.16249,"(40.598114, -74.16249)",,,2025 RICHMOND AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4494093,Sedan,,,, +01/12/2022,3:05,,,40.649956,-73.884125,"(40.649956, -73.884125)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4494006,Sedan,Sedan,Sedan,, +01/13/2022,8:20,BROOKLYN,11212,40.654163,-73.91154,"(40.654163, -73.91154)",,,1 BROOKDALE PLAZA,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494799,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,11:30,BRONX,10469,40.872215,-73.8469,"(40.872215, -73.8469)",BURKE AVENUE,SEYMOUR AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4494310,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +01/14/2022,8:15,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4494532,Bus,,,, +01/14/2022,15:00,QUEENS,11370,40.768833,-73.89063,"(40.768833, -73.89063)",DITMARS BOULEVARD,79 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4494687,Sedan,Sedan,,, +01/12/2022,17:32,BROOKLYN,11219,40.63937,-73.9948,"(40.63937, -73.9948)",11 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494181,Sedan,,,, +01/14/2022,23:15,QUEENS,11419,40.68989,-73.81819,"(40.68989, -73.81819)",103 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494832,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,11:30,BROOKLYN,11210,40.632767,-73.93994,"(40.632767, -73.93994)",,,930 EAST 38 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494886,Sedan,Box Truck,,, +01/12/2022,16:19,BROOKLYN,11211,40.715145,-73.956375,"(40.715145, -73.956375)",ROEBLING STREET,NORTH 5 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495080,Station Wagon/Sport Utility Vehicle,Bike,,, +01/12/2022,18:15,BROOKLYN,11215,40.669243,-73.98294,"(40.669243, -73.98294)",6 AVENUE,7 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494207,Station Wagon/Sport Utility Vehicle,,,, +06/12/2021,0:20,QUEENS,11103,40.765854,-73.914505,"(40.765854, -73.914505)",38 STREET,28 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4427626,E-Bike,Sedan,,, +06/28/2021,14:00,QUEENS,11429,40.71307,-73.75362,"(40.71307, -73.75362)",FRANCIS LEWIS BOULEVARD,99 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4432267,Sedan,Pickup with mounted Camper,,, +01/14/2022,8:15,QUEENS,11434,40.683655,-73.78266,"(40.683655, -73.78266)",118 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494504,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +01/13/2022,7:33,QUEENS,11422,40.67416,-73.72756,"(40.67416, -73.72756)",MERRICK BOULEVARD,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494517,Sedan,,,, +01/13/2022,14:00,BROOKLYN,11232,40.64994,-74.00172,"(40.64994, -74.00172)",39 STREET,6 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4494332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,0:00,MANHATTAN,10007,40.713135,-74.00407,"(40.713135, -74.00407)",CENTRE STREET,CHAMBERS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494764,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,19:00,QUEENS,11420,40.682285,-73.80805,"(40.682285, -73.80805)",LINDEN BOULEVARD,134 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494624,Station Wagon/Sport Utility Vehicle,Bike,,, +01/13/2022,11:09,BROOKLYN,11219,0,0,"(0.0, 0.0)",14 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4494270,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,7:10,,,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494787,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,13:00,BROOKLYN,11207,40.652763,-73.88942,"(40.652763, -73.88942)",,,50 COZINE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4494917,Pick-up Truck,,,, +01/12/2022,19:30,BRONX,10466,40.90152,-73.84695,"(40.90152, -73.84695)",BAYCHESTER AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4494316,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,8:59,BROOKLYN,11207,,,,WARWICK STREET,BLAKE AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494017,Sedan,,,, +01/14/2022,8:00,,,40.835484,-73.9494,"(40.835484, -73.9494)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494581,Sedan,Sedan,,, +01/12/2022,17:00,,,40.74404,-73.82754,"(40.74404, -73.82754)",138 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494083,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/12/2022,14:49,BROOKLYN,11222,40.72619,-73.952156,"(40.72619, -73.952156)",,,730 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494150,Sedan,,,, +01/14/2022,16:26,QUEENS,11101,40.75475,-73.93678,"(40.75475, -73.93678)",CRESCENT STREET,39 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494864,Sedan,,,, +01/13/2022,11:40,BRONX,10453,40.853813,-73.90851,"(40.853813, -73.90851)",WEST BURNSIDE AVENUE,DAVIDSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494444,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,16:00,QUEENS,11361,40.766266,-73.772385,"(40.766266, -73.772385)",,,38-13 BELL BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494576,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,8:00,BROOKLYN,11211,40.711704,-73.96028,"(40.711704, -73.96028)",,,183 SOUTH 3 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,8:54,,,,,,KINGS HIGHWAY,EAST 34 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494264,Sedan,,,, +01/13/2022,18:41,BROOKLYN,11209,40.622726,-74.03137,"(40.622726, -74.03137)",3 AVENUE,87 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494374,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/14/2022,8:26,QUEENS,11432,40.70675,-73.80224,"(40.70675, -73.80224)",88 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494449,Sedan,Sedan,,, +01/14/2022,15:03,QUEENS,11429,40.708813,-73.75085,"(40.708813, -73.75085)",,,109-01 207 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,13:30,BROOKLYN,11208,40.684418,-73.87131,"(40.684418, -73.87131)",CAMPUS PLACE,HEMLOCK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494099,Sedan,,,, +01/11/2022,17:10,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494476,Sedan,Sedan,Sedan,, +01/12/2022,11:30,QUEENS,11101,40.746204,-73.93234,"(40.746204, -73.93234)",,,43-34 32 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494124,Sedan,E-Bike,,, +01/13/2022,18:38,MANHATTAN,10013,40.723217,-74.00623,"(40.723217, -74.00623)",,,75 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494416,Motorcycle,,,, +01/12/2022,17:16,QUEENS,11432,40.710583,-73.78356,"(40.710583, -73.78356)",90 AVENUE,179 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494049,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,18:58,BROOKLYN,11223,40.599842,-73.96807,"(40.599842, -73.96807)",,,458 AVENUE T,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494361,Sedan,Sedan,,, +07/03/2021,11:57,BROOKLYN,11213,40.679592,-73.93488,"(40.679592, -73.93488)",FULTON STREET,TROY AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4433670,Sedan,Bike,,, +07/03/2021,22:45,QUEENS,11420,40.671947,-73.80539,"(40.671947, -73.80539)",,,129-42 133 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4433958,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,10:30,BRONX,10466,,,,SCHIEFELIN AVENUE,EAST 225 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433807,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,17:54,MANHATTAN,10031,40.823887,-73.95232,"(40.823887, -73.95232)",WEST 141 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4434382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2021,21:05,BRONX,10457,40.84097,-73.89918,"(40.84097, -73.89918)",3 AVENUE,EAST 173 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4434183,Sedan,Sedan,,, +06/28/2021,23:45,,,40.801342,-73.94598,"(40.801342, -73.94598)",WEST 117 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434161,Sedan,,,, +07/03/2021,1:42,BROOKLYN,11201,40.689243,-73.98873,"(40.689243, -73.98873)",SMITH STREET,STATE STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433412,Sedan,Bike,,, +07/03/2021,13:00,,,40.739162,-73.78556,"(40.739162, -73.78556)",188 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433750,Sedan,Sedan,,, +07/03/2021,21:15,QUEENS,11415,,,,80 ROAD,KEW GARDEN ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434070,Sedan,,,, +07/03/2021,8:30,BROOKLYN,11203,40.65474,-73.94041,"(40.65474, -73.94041)",LENOX ROAD,EAST 40 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4433854,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +06/17/2021,16:20,MANHATTAN,10026,40.798344,-73.95243,"(40.798344, -73.95243)",,,55 WEST 110 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4434143,Sedan,,,, +06/28/2021,17:29,BRONX,10463,40.879818,-73.90523,"(40.879818, -73.90523)",,,228 NAPLES TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434238,Sedan,,,, +07/03/2021,9:27,BROOKLYN,11221,40.69564,-73.929245,"(40.69564, -73.929245)",BUSHWICK AVENUE,DODWORTH STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434287,Sedan,Bike,,, +07/03/2021,2:40,MANHATTAN,10002,40.71789,-73.98948,"(40.71789, -73.98948)",LUDLOW STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4433487,Sedan,Sedan,Sedan,, +07/03/2021,17:00,MANHATTAN,10005,40.70584,-74.00852,"(40.70584, -74.00852)",,,63 WALL STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433900,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,23:39,,,40.831196,-73.90026,"(40.831196, -73.90026)",EAST 169 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434180,Taxi,Sedan,,, +07/02/2021,20:54,BROOKLYN,11206,40.69854,-73.94116,"(40.69854, -73.94116)",PARK AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434226,Sedan,Sedan,,, +06/28/2021,18:00,QUEENS,11106,40.759884,-73.9368,"(40.759884, -73.9368)",36 AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434128,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,0:00,,,40.662556,-73.91963,"(40.662556, -73.91963)",TAPSCOTT STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433620,Sedan,,,, +07/03/2021,20:51,BROOKLYN,11229,40.59861,-73.938644,"(40.59861, -73.938644)",AVENUE V,BATCHELDER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433967,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,1:22,MANHATTAN,10037,40.81186,-73.9355,"(40.81186, -73.9355)",,,45 EAST 135 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434032,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,6:30,QUEENS,11432,40.710995,-73.78741,"(40.710995, -73.78741)",175 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434088,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,16:40,QUEENS,11432,40.711304,-73.78761,"(40.711304, -73.78761)",,,87-26 175 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434102,Sedan,Sedan,,, +07/03/2021,16:50,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4433592,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,11:05,QUEENS,11355,40.753307,-73.827385,"(40.753307, -73.827385)",BLOSSOM AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433554,Station Wagon/Sport Utility Vehicle,Van,,, +07/03/2021,0:24,,,40.696354,-73.94071,"(40.696354, -73.94071)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:30,,,40.692795,-73.92116,"(40.692795, -73.92116)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434277,Sedan,,,, +06/23/2021,23:30,MANHATTAN,10039,40.82476,-73.941795,"(40.82476, -73.941795)",,,102 BRADHURST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434325,Sedan,,,, +07/03/2021,20:33,MANHATTAN,10031,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,WEST 135 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433581,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,8:30,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433556,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,22:20,MANHATTAN,10011,40.73975,-74.00253,"(40.73975, -74.00253)",WEST 14 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434199,Sedan,Bike,,, +07/03/2021,17:50,BROOKLYN,11212,40.675106,-73.90438,"(40.675106, -73.90438)",EAST NEW YORK AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433612,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,2:50,,,,,,KNAPP STREET,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433524,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,7:46,QUEENS,11412,40.7088,-73.75774,"(40.7088, -73.75774)",,,104-09 201 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4434101,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,4:06,MANHATTAN,10032,40.83543,-73.93752,"(40.83543, -73.93752)",,,596 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4433834,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/03/2021,1:56,,,40.61483,-74.1365,"(40.61483, -74.1365)",,,352 NEAL DOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433936,Sedan,,,, +06/30/2021,21:39,QUEENS,11103,40.758488,-73.91371,"(40.758488, -73.91371)",,,45-03 NEWTOWN ROAD,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4434118,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike, +06/29/2021,22:48,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Passing or Lane Usage Improper,Unspecified,,,4434046,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +07/03/2021,13:00,,,40.58407,-73.92344,"(40.58407, -73.92344)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4433546,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,21:45,QUEENS,11435,40.699352,-73.811485,"(40.699352, -73.811485)",139 STREET,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433597,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/03/2021,21:04,BRONX,10468,40.86272,-73.903114,"(40.86272, -73.903114)",,,49 WEST FORDHAM ROAD,2,0,2,0,0,0,0,0,Unspecified,,,,,4433775,Sedan,,,, +07/02/2021,9:20,MANHATTAN,10034,40.8662,-73.92807,"(40.8662, -73.92807)",DYCKMAN STREET,SEAMAN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4434250,Sedan,,,, +07/03/2021,21:20,MANHATTAN,10002,40.716976,-73.98229,"(40.716976, -73.98229)",DELANCEY STREET,WILLETT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434348,Taxi,Sedan,,, +07/03/2021,14:45,QUEENS,11355,40.747223,-73.81236,"(40.747223, -73.81236)",ROBINSON STREET,ROSE AVENUE,,1,0,0,0,0,0,1,0,Illnes,,,,,4434024,Sedan,,,, +06/18/2021,18:45,,,40.86446,-73.91895,"(40.86446, -73.91895)",10 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4434155,Sedan,Box Truck,,, +07/01/2021,22:00,,,40.877354,-73.910614,"(40.877354, -73.910614)",ADRIAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434257,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,7:10,BROOKLYN,11212,40.669785,-73.916595,"(40.669785, -73.916595)",SAINT JOHNS PLACE,EAST NEW YORK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433621,Sedan,Sedan,,, +06/21/2021,20:00,QUEENS,11692,40.59488,-73.79738,"(40.59488, -73.79738)",BEACH 68 STREET,THURSBY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4434297,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,11:58,,,40.618454,-73.98744,"(40.618454, -73.98744)",19 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433713,Sedan,,,, +06/23/2021,11:42,QUEENS,11385,40.70086,-73.882454,"(40.70086, -73.882454)",69 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434204,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,10:13,BROOKLYN,11214,40.60023,-73.9956,"(40.60023, -73.9956)",BAY PARKWAY,BENSON AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4433560,Sedan,Sedan,,, +06/16/2021,20:10,MANHATTAN,10026,40.802223,-73.954185,"(40.802223, -73.954185)",,,215 WEST 114 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434142,Sedan,Sedan,Sedan,, +07/02/2021,17:52,QUEENS,11418,40.703728,-73.82155,"(40.703728, -73.82155)",HILLSIDE AVENUE,131 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4434061,Pick-up Truck,Sedan,,, +06/30/2021,14:35,MANHATTAN,10019,40.768272,-73.98655,"(40.768272, -73.98655)",,,421 WEST 57 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4434096,Sedan,Bike,,, +07/02/2021,22:30,,,40.81467,-73.93623,"(40.81467, -73.93623)",WEST 138 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434326,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,0:00,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517415,Sedan,,,, +07/02/2021,14:53,BROOKLYN,11207,40.668655,-73.88929,"(40.668655, -73.88929)",BLAKE AVENUE,VAN SICLEN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434137,Pick-up Truck,E-Bike,,, +06/29/2021,12:00,MANHATTAN,10018,40.755867,-73.998215,"(40.755867, -73.998215)",10 AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:23,BRONX,10469,40.871876,-73.84163,"(40.871876, -73.84163)",HAMMERSLEY AVENUE,KINGSLAND AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Turning Improperly,,,,4433822,Sedan,Sedan,,, +06/29/2021,0:04,MANHATTAN,10027,40.80897,-73.94833,"(40.80897, -73.94833)",7 AVENUE,WEST 125 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4434165,Sedan,Sedan,,, +07/03/2021,19:19,BRONX,10468,40.86272,-73.903114,"(40.86272, -73.903114)",,,49 WEST FORDHAM ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433903,Sedan,Sedan,,, +07/03/2021,18:30,QUEENS,11427,40.72408,-73.75086,"(40.72408, -73.75086)",,,89-04 213 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433730,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,5:00,BROOKLYN,11220,40.64414,-73.99967,"(40.64414, -73.99967)",,,814 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433994,Sedan,,,, +06/28/2021,4:25,MANHATTAN,10034,,,,,,1793 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:25,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433631,Station Wagon/Sport Utility Vehicle,,,, +06/06/2021,0:45,,,40.80123,-73.9577,"(40.80123, -73.9577)",WEST 111 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4434147,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/01/2021,18:21,BRONX,10471,40.90426,-73.90498,"(40.90426, -73.90498)",,,5601 RIVERDALE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434261,Ambulance,Sedan,,, +07/03/2021,18:00,,,40.594406,-74.14159,"(40.594406, -74.14159)",,,23 PILCHER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433945,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,13:57,QUEENS,11379,40.71374,-73.90091,"(40.71374, -73.90091)",,,62-09 FRESH POND ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433758,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,11:30,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4433946,Sedan,Taxi,,, +07/03/2021,0:00,BROOKLYN,11203,40.63796,-73.93281,"(40.63796, -73.93281)",,,957 EAST 46 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4433855,Sedan,,,, +06/25/2021,13:19,MANHATTAN,10034,40.867027,-73.917046,"(40.867027, -73.917046)",10 AVENUE,WEST 211 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434170,Tractor Truck Diesel,,,, +07/03/2021,2:14,QUEENS,11104,40.741905,-73.91965,"(40.741905, -73.91965)",,,45-20 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4433414,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,12:00,QUEENS,11368,40.736927,-73.8648,"(40.736927, -73.8648)",,,96-08 57 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4434214,Taxi,,,, +06/23/2021,16:15,MANHATTAN,10024,40.78994,-73.98036,"(40.78994, -73.98036)",WEST 86 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434291,Sedan,Bike,,, +07/03/2021,15:05,,,,,,MANHATTAN BR UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433702,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,15:30,QUEENS,11102,40.770313,-73.920006,"(40.770313, -73.920006)",,,26-43 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434132,Sedan,,,, +07/03/2021,7:25,,,40.701958,-73.9239,"(40.701958, -73.9239)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434285,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,15:49,,,40.8746,-73.9097,"(40.8746, -73.9097)",BROADWAY,WEST 225 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4434260,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,14:25,MANHATTAN,10026,40.802338,-73.946365,"(40.802338, -73.946365)",,,17 WEST 118 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434160,Sedan,,,, +07/03/2021,1:21,MANHATTAN,10025,40.80174,-73.96477,"(40.80174, -73.96477)",AMSTERDAM AVENUE,WEST 108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4433488,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:30,BRONX,10459,40.829605,-73.88715,"(40.829605, -73.88715)",,,1316 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434182,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,1:47,BROOKLYN,11212,40.66367,-73.91213,"(40.66367, -73.91213)",BOYLAND STREET,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,4433630,Sedan,Sedan,Sedan,Pick-up Truck,Sedan +07/03/2021,5:43,,,40.677483,-73.93033,"(40.677483, -73.93033)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433861,Sedan,,,, +07/01/2021,6:00,QUEENS,11385,40.70786,-73.90731,"(40.70786, -73.90731)",,,2011 MENAHAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434227,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,23:10,BROOKLYN,11236,40.635105,-73.89117,"(40.635105, -73.89117)",,,1940 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4433735,Sedan,,,, +06/25/2021,17:21,QUEENS,11377,,,,,,2645 Brooklyn queens expressway wes,0,0,0,0,0,0,0,0,Unspecified,,,,,4434127,Motorcycle,,,, +07/02/2021,20:30,,,40.757442,-73.90084,"(40.757442, -73.90084)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434146,Sedan,Sedan,,, +07/03/2021,21:30,QUEENS,11377,40.74425,-73.90142,"(40.74425, -73.90142)",63 STREET,WOODSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433809,Sedan,,,, +06/20/2021,20:16,MANHATTAN,10031,40.8272,-73.95018,"(40.8272, -73.95018)",,,603 WEST 146 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434383,Sedan,,,, +07/03/2021,1:27,BROOKLYN,11237,40.70499,-73.91736,"(40.70499, -73.91736)",SAINT NICHOLAS AVENUE,STOCKHOLM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4434278,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +07/01/2021,22:40,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4434203,Sedan,,,, +07/03/2021,13:00,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4433559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,15:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4433586,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,15:25,,,40.607918,-74.138916,"(40.607918, -74.138916)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434051,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,19:24,BRONX,10469,40.86124,-73.86172,"(40.86124, -73.86172)",BRONXWOOD AVENUE,WARING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434266,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,12:30,QUEENS,11368,40.740776,-73.850235,"(40.740776, -73.850235)",111 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4433680,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,17:45,MANHATTAN,10019,40.761597,-73.98445,"(40.761597, -73.98445)",,,211 WEST 50 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434110,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,16:22,BRONX,10463,40.875427,-73.906166,"(40.875427, -73.906166)",,,2880 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434237,Sedan,Sedan,,, +07/03/2021,13:09,BROOKLYN,11229,40.597378,-73.94998,"(40.597378, -73.94998)",AVENUE V,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433547,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,15:30,QUEENS,11419,40.685837,-73.82686,"(40.685837, -73.82686)",LIBERTY AVENUE,116 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,19:24,MANHATTAN,10065,40.76734,-73.96868,"(40.76734, -73.96868)",MADISON AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4434063,Van,Taxi,Taxi,, +07/03/2021,15:15,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4433569,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2021,18:46,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4433774,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,21:51,MANHATTAN,10026,40.80107,-73.9554,"(40.80107, -73.9554)",,,228 WEST 112 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434156,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,1:00,MANHATTAN,10001,,,,34 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434192,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,11:30,QUEENS,11377,40.757286,-73.904465,"(40.757286, -73.904465)",,,57-06 31 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434119,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,1:26,BROOKLYN,11224,40.5787,-73.98734,"(40.5787, -73.98734)",NEPTUNE AVENUE,WEST 20 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4433649,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/03/2021,22:25,MANHATTAN,10028,40.775246,-73.94763,"(40.775246, -73.94763)",YORK AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433791,Taxi,,,, +06/19/2021,23:50,MANHATTAN,10010,40.740185,-73.986374,"(40.740185, -73.986374)",EAST 23 STREET,PARK AVENUE SOUTH,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434353,Sedan,,,, +01/14/2022,16:02,QUEENS,11368,40.76061,-73.84586,"(40.76061, -73.84586)",,,126-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494650,Sedan,,,, +06/25/2021,11:31,QUEENS,11377,40.73644,-73.89598,"(40.73644, -73.89598)",69 STREET,GARFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434346,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,23:00,BROOKLYN,11205,40.69271,-73.95391,"(40.69271, -73.95391)",,,192 WALWORTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434251,Sedan,,,, +06/22/2021,20:15,,,40.80639,-73.94431,"(40.80639, -73.94431)",MOUNT MORRIS PARK WEST,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434150,,,,, +07/01/2021,15:20,QUEENS,11413,40.66534,-73.743935,"(40.66534, -73.743935)",232 STREET,SOUTH CONDUIT AVENUE,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434298,Sedan,Bike,,, +07/03/2021,14:05,,,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,NASSAU EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,8:09,,,40.670498,-73.76643,"(40.670498, -73.76643)",142 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433507,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:09,MANHATTAN,10019,40.77006,-73.99078,"(40.77006, -73.99078)",,,555 WEST 57 STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4434105,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,15:54,BROOKLYN,11233,40.674755,-73.91109,"(40.674755, -73.91109)",ROCKAWAY AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4433615,Sedan,,,, +07/01/2021,5:50,,,40.607765,-73.98255,"(40.607765, -73.98255)",AVENUE P,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434069,Sedan,Sedan,Sedan,, +07/03/2021,18:45,,,40.583252,-73.952515,"(40.583252, -73.952515)",EMMONS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433966,LIMO,,,, +07/03/2021,17:00,,,40.830837,-73.9166,"(40.830837, -73.9166)",EAST 166 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433833,Sedan,,,, +06/29/2021,17:50,MANHATTAN,10009,40.72383,-73.983795,"(40.72383, -73.983795)",,,207 EAST 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4434352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Box Truck, +07/01/2021,13:12,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",EAST 138 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,1:10,,,40.640354,-74.13157,"(40.640354, -74.13157)",PORT RICHMOND AVENUE,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433935,Sedan,Sedan,,, +06/23/2021,0:00,MANHATTAN,10026,40.800232,-73.95101,"(40.800232, -73.95101)",,,61 LENOX AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4434151,Taxi,Van,,, +07/03/2021,20:08,,,,,,BOSTON ROAD,PELHAM PARKWAY SOUTH,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4433710,Taxi,Sedan,,, +05/07/2021,0:40,MANHATTAN,10019,40.76653,-73.98675,"(40.76653, -73.98675)",,,839 9 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4434112,Sedan,,,, +07/01/2021,17:52,QUEENS,11105,40.7716,-73.90896,"(40.7716, -73.90896)",38 STREET,23 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4434138,Taxi,Sedan,,, +07/03/2021,21:10,MANHATTAN,10028,40.778633,-73.962555,"(40.778633, -73.962555)",,,1000 5 AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4433790,Bike,,,, +07/03/2021,2:45,QUEENS,11433,40.70487,-73.78415,"(40.70487, -73.78415)",,,175-07 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434084,Sedan,,,, +07/03/2021,1:18,BROOKLYN,11223,40.597218,-73.96113,"(40.597218, -73.96113)",,,2448 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433519,Sedan,Sedan,,, +07/03/2021,23:20,BROOKLYN,11211,,,,GRAND STREET,VANDERVORT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4433940,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,15:20,QUEENS,11413,40.665955,-73.76084,"(40.665955, -73.76084)",SOUTH CONDUIT AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433591,Sedan,,,, +07/03/2021,13:00,QUEENS,11420,40.666126,-73.82518,"(40.666126, -73.82518)",NORTH CONDUIT AVENUE,116 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433954,Sedan,,,, +07/03/2021,13:10,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,,,4433694,Sedan,Sedan,Sedan,, +07/03/2021,8:50,,,40.61446,-74.1366,"(40.61446, -74.1366)",,,378 NEAL DOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433939,Sedan,,,, +06/30/2021,9:04,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4434164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,15:40,BRONX,10466,,,,BOLLER AVENUE,MAROLLA PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433819,Station Wagon/Sport Utility Vehicle,Van,,, +01/14/2022,18:55,QUEENS,11375,40.71413,-73.834946,"(40.71413, -73.834946)",AUSTIN STREET,77 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494670,Sedan,,,, +07/03/2021,14:35,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434171,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,0:20,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433421,Taxi,Sedan,,, +07/01/2021,8:00,QUEENS,11385,40.698933,-73.897064,"(40.698933, -73.897064)",,,59-00 DECATUR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434220,Sedan,,,, +06/29/2021,14:00,QUEENS,11103,40.765587,-73.91474,"(40.765587, -73.91474)",,,28-42 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434131,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,21:19,BROOKLYN,11207,40.68665,-73.91315,"(40.68665, -73.91315)",BUSHWICK AVENUE,ELDERT STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4434290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,18:50,BRONX,10468,40.87167,-73.897804,"(40.87167, -73.897804)",RESERVOIR AVENUE,WEST 197 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434267,Sedan,Sedan,,, +07/03/2021,16:40,,,40.611324,-74.00602,"(40.611324, -74.00602)",84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434066,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,12:00,BRONX,10454,40.800194,-73.91386,"(40.800194, -73.91386)",,,770 EAST 132 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433568,Tractor Truck Diesel,,,, +07/03/2021,13:26,,,40.610317,-73.98304,"(40.610317, -73.98304)",WEST 9 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433570,Sedan,,,, +07/03/2021,21:15,BROOKLYN,11230,40.619072,-73.96605,"(40.619072, -73.96605)",,,1221 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433997,Sedan,,,, +07/03/2021,2:18,QUEENS,11368,40.74664,-73.86221,"(40.74664, -73.86221)",,,102-11 44 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434213,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,17:00,QUEENS,11372,40.751144,-73.88743,"(40.751144, -73.88743)",,,35-26 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433596,Sedan,Tow Truck / Wrecker,,, +07/01/2021,22:30,,,40.603832,-74.06895,"(40.603832, -74.06895)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434052,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:55,BROOKLYN,11226,40.651016,-73.95587,"(40.651016, -73.95587)",,,2173 BEDFORD AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434244,Box Truck,,,, +07/03/2021,12:00,,,40.578938,-73.98522,"(40.578938, -73.98522)",WEST 17 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4433648,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,18:30,MANHATTAN,10019,40.762917,-73.98566,"(40.762917, -73.98566)",8 AVENUE,WEST 51 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434097,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2021,17:45,,,40.88082,-73.90344,"(40.88082, -73.90344)",BROADWAY,WEST 233 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4434265,,,,, +07/03/2021,9:18,BROOKLYN,11236,40.64275,-73.90378,"(40.64275, -73.90378)",CONKLIN AVENUE,EAST 94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4433543,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,1:20,BROOKLYN,11218,40.639755,-73.97885,"(40.639755, -73.97885)",,,581 MC DONALD AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4433998,Bike,,,, +07/01/2021,14:00,MANHATTAN,10022,40.760307,-73.9756,"(40.760307, -73.9756)",,,665 5 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434093,Sedan,,,, +07/02/2021,21:00,MANHATTAN,10019,40.767242,-73.986206,"(40.767242, -73.986206)",WEST 56 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434109,,,,, +07/03/2021,9:52,,,40.6528,-73.86389,"(40.6528, -73.86389)",BELT PARKWAY,,,2,1,0,0,0,0,2,1,Unsafe Speed,Unspecified,,,,4433549,Station Wagon/Sport Utility Vehicle,Bus,,, +07/03/2021,15:00,QUEENS,11372,40.75106,-73.872246,"(40.75106, -73.872246)",37 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433594,Ambulance,Sedan,,, +06/28/2021,15:55,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434253,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,10:31,,,40.848118,-73.93089,"(40.848118, -73.93089)",WASHINGTON BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434259,Sedan,Sedan,,, +07/03/2021,2:45,BROOKLYN,11233,40.669918,-73.91889,"(40.669918, -73.91889)",EASTERN PARKWAY,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4433628,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,9:00,,,40.67549,-73.93885,"(40.67549, -73.93885)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4433871,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,10:39,MANHATTAN,10034,40.864403,-73.923775,"(40.864403, -73.923775)",SHERMAN AVENUE,ACADEMY STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4434247,Sedan,Sedan,,, +06/29/2021,10:00,QUEENS,11103,40.76519,-73.91393,"(40.76519, -73.91393)",,,28-57 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434130,Sedan,,,, +07/01/2021,16:15,MANHATTAN,10018,40.75591,-73.99448,"(40.75591, -73.99448)",9 AVENUE,WEST 38 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,12:20,BRONX,10453,40.861862,-73.91282,"(40.861862, -73.91282)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433558,Sedan,Sedan,,, +07/03/2021,15:34,QUEENS,11373,40.74847,-73.870026,"(40.74847, -73.870026)",WARREN STREET,40 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433682,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,11:28,,,40.704536,-73.75472,"(40.704536, -73.75472)",202 STREET,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Speed,Unspecified,,,4433511,Sedan,Sedan,Sedan,, +07/03/2021,17:30,BROOKLYN,11212,40.661304,-73.91052,"(40.661304, -73.91052)",,,403 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433616,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,13:00,,,40.784992,-73.98261,"(40.784992, -73.98261)",WEST 79 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4434292,Pick-up Truck,Box Truck,,, +07/03/2021,18:40,,,,,,5 AVENUE,EAST 110 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433974,Sedan,Bike,,, +07/03/2021,0:30,QUEENS,11434,40.684277,-73.78302,"(40.684277, -73.78302)",FOCH BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4433603,Sedan,Bike,,, +06/28/2021,0:18,,,40.71679,-73.94982,"(40.71679, -73.94982)",MEEKER AVENUE,LORIMER STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434384,Bike,,,, +06/29/2021,21:30,MANHATTAN,10027,40.805836,-73.94691,"(40.805836, -73.94691)",WEST 122 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4434163,Bike,Sedan,,, +05/13/2021,20:35,,,40.759205,-73.98464,"(40.759205, -73.98464)",7 AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4434098,Motorbike,,,, +07/03/2021,22:59,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,15:25,,,40.607918,-74.138916,"(40.607918, -74.138916)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434050,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,18:15,,,40.761036,-73.98702,"(40.761036, -73.98702)",8 AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4434104,,,,, +06/30/2021,12:43,BROOKLYN,11233,40.670666,-73.91627,"(40.670666, -73.91627)",,,1880 STERLING PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434080,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,0:35,BRONX,10452,40.84128,-73.91366,"(40.84128, -73.91366)",WYTHE PLACE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433841,Taxi,,,, +06/16/2021,9:15,,,0,0,"(0.0, 0.0)",WEST 124 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434145,Sedan,Flat Bed,,, +07/03/2021,12:35,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4434235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,12:00,,,,,,CHURCH AVENUE,WESTMINISTER ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433720,Sedan,Sedan,,, +07/01/2021,13:30,,,40.807667,-73.94929,"(40.807667, -73.94929)",WEST 123 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4434157,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,18:11,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433709,Sedan,Sedan,,, +07/03/2021,6:23,,,40.79275,-73.97132,"(40.79275, -73.97132)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433498,Sedan,Box Truck,,, +07/03/2021,23:00,QUEENS,11105,40.771084,-73.908226,"(40.771084, -73.908226)",STEINWAY STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434174,Sedan,,,, +06/30/2021,17:42,,,40.713497,-73.75714,"(40.713497, -73.75714)",JAMAICA AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4434313,FIRE ENGIN,Sedan,,, +07/03/2021,14:25,BROOKLYN,11210,40.62775,-73.93462,"(40.62775, -73.93462)",EAST 43 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4433588,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,20:10,MANHATTAN,10065,40.760536,-73.95836,"(40.760536, -73.95836)",YORK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433793,Sedan,Sedan,,, +07/03/2021,17:15,,,40.693573,-73.92275,"(40.693573, -73.92275)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434279,Sedan,,,, +06/28/2021,8:28,MANHATTAN,10075,40.77071,-73.95094,"(40.77071, -73.95094)",EAST 78 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434229,Box Truck,Sedan,Sedan,, +07/01/2021,13:40,QUEENS,11102,40.76831,-73.9269,"(40.76831, -73.9269)",,,23-10 30 ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4434134,usps truck,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,1:20,BRONX,10470,40.895725,-73.87482,"(40.895725, -73.87482)",EAST 233 STREET,NAPIER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433813,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,11:00,BROOKLYN,11232,40.64882,-74.00288,"(40.64882, -74.00288)",41 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434339,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,16:22,BROOKLYN,11229,40.609787,-73.9546,"(40.609787, -73.9546)",,,1641 EAST 19 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4433965,E-Bike,Sedan,,, +07/02/2021,13:53,QUEENS,11101,40.75339,-73.92574,"(40.75339, -73.92574)",,,36-62 37 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434139,Sedan,Pick-up Truck,,, +07/03/2021,18:30,BRONX,10458,40.869522,-73.8899,"(40.869522, -73.8899)",VALENTINE AVENUE,EAST 198 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4433769,Sedan,Sedan,Sedan,, +07/03/2021,17:54,,,40.665398,-73.95093,"(40.665398, -73.95093)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433660,Sedan,,,, +07/03/2021,2:23,,,40.75855,-73.924866,"(40.75855, -73.924866)",34 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4434167,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/01/2021,17:00,BROOKLYN,11249,40.717003,-73.963806,"(40.717003, -73.963806)",,,85 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434044,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,15:10,BRONX,10456,40.833176,-73.91725,"(40.833176, -73.91725)",,,1162 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,21:40,,,40.837517,-73.91479,"(40.837517, -73.91479)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434362,Sedan,,,, +07/03/2021,10:30,,,40.61393,-74.16409,"(40.61393, -74.16409)",ARLENE STREET,LANDER AVENUE,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,,,4433943,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/18/2021,23:37,BROOKLYN,11203,40.654327,-73.9221,"(40.654327, -73.9221)",KINGS HIGHWAY,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4434241,Box Truck,Sedan,,, +06/22/2021,11:42,MANHATTAN,10026,40.803894,-73.95204,"(40.803894, -73.95204)",WEST 117 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434149,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,21:45,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4434284,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,9:30,QUEENS,11417,40.680923,-73.83544,"(40.680923, -73.83544)",107 AVENUE,105 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433955,Sedan,Sedan,,, +01/12/2022,10:00,BROOKLYN,11203,40.650974,-73.9303,"(40.650974, -73.9303)",,,903 UTICA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4494278,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/02/2021,21:00,QUEENS,11103,40.76132,-73.9171,"(40.76132, -73.9171)",STEINWAY STREET,31 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4434152,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,1:05,,,,,,GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4433459,Station Wagon/Sport Utility Vehicle,,,, +06/11/2021,0:30,QUEENS,11378,40.715355,-73.91289,"(40.715355, -73.91289)",,,54-18 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,22:23,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4434168,Sedan,Sedan,,, +07/03/2021,11:32,,,40.79465,-73.971794,"(40.79465, -73.971794)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4433716,Box Truck,,,, +06/29/2021,13:40,QUEENS,11421,40.690456,-73.85379,"(40.690456, -73.85379)",89 AVENUE,90 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4434067,Sedan,Sedan,Sedan,, +07/03/2021,16:11,,,40.61042,-73.98212,"(40.61042, -73.98212)",AVENUE O,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433571,Sedan,Sedan,,, +07/02/2021,21:00,QUEENS,11418,40.699062,-73.83238,"(40.699062, -73.83238)",,,87-21 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434056,Sedan,,,, +06/30/2021,11:30,MANHATTAN,10001,40.749638,-73.99905,"(40.749638, -73.99905)",WEST 28 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4434195,Pick-up Truck,Bus,,, +06/25/2021,17:11,,,40.864403,-73.923775,"(40.864403, -73.923775)",SHERMAN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434190,Sedan,Bike,,, +06/28/2021,7:10,BROOKLYN,11234,40.62788,-73.93251,"(40.62788, -73.93251)",KINGS HIGHWAY,AVENUE J,,0,1,0,0,0,0,0,1,Traffic Control Disregarded,Unspecified,,,,4434120,Motorcycle,Sedan,,, +07/01/2021,18:00,,,,,,GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434135,Sedan,Box Truck,,, +07/03/2021,1:09,MANHATTAN,10012,40.728794,-74.00044,"(40.728794, -74.00044)",SULLIVAN STREET,BLEECKER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433839,Pick-up Truck,,,, +07/03/2021,22:37,BRONX,10459,40.828762,-73.8964,"(40.828762, -73.8964)",EAST 169 STREET,STEBBINS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4433921,Sedan,,,, +07/02/2021,12:00,MANHATTAN,10036,40.75802,-73.98574,"(40.75802, -73.98574)",,,1535 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4434113,Sedan,,,, +07/03/2021,8:45,BRONX,10454,40.807133,-73.91824,"(40.807133, -73.91824)",,,538 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433975,Sedan,,,, +07/03/2021,12:57,QUEENS,11433,40.692528,-73.79096,"(40.692528, -73.79096)",160 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433602,Sedan,,,, +07/03/2021,20:20,QUEENS,11355,40.75425,-73.827835,"(40.75425, -73.827835)",FRANKLIN AVENUE,MAIN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433640,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,19:15,,,40.738197,-73.93774,"(40.738197, -73.93774)",BORDEN AVENUE,30 PLACE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4434264,Sedan,Trailer,,, +07/03/2021,9:20,BROOKLYN,11234,40.611763,-73.92472,"(40.611763, -73.92472)",,,2400 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433544,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,23:41,,,40.850166,-73.93576,"(40.850166, -73.93576)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434248,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,22:43,BRONX,10457,40.852787,-73.89663,"(40.852787, -73.89663)",EAST 181 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4434009,Sedan,Box Truck,,, +07/03/2021,1:57,MANHATTAN,10028,40.775993,-73.95004,"(40.775993, -73.95004)",,,1629 1 AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4433787,Moped,,,, +06/15/2021,15:00,MANHATTAN,10012,40.726135,-73.99507,"(40.726135, -73.99507)",BLEECKER STREET,CROSBY STREET,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4434351,Sedan,Bike,,, +06/21/2021,16:28,MANHATTAN,10034,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,WEST 207 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4434207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:34,BROOKLYN,11207,40.681503,-73.904106,"(40.681503, -73.904106)",BUSHWICK AVENUE,VANDERVEER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434289,Sedan,Sedan,,, +07/03/2021,3:33,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433604,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:10,BROOKLYN,11221,40.687496,-73.93297,"(40.687496, -73.93297)",STUYVESANT AVENUE,MONROE STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4433668,Bike,Taxi,,, +07/03/2021,21:30,QUEENS,11377,40.74539,-73.90559,"(40.74539, -73.90559)",59 STREET,WOODSIDE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4434123,,,,, +07/02/2021,17:42,,,40.762226,-73.96819,"(40.762226, -73.96819)",EAST 59 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4434094,Sedan,Convertible,,, +07/01/2021,17:00,QUEENS,11435,40.703823,-73.8088,"(40.703823, -73.8088)",89 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434099,Sedan,Bike,,, +07/03/2021,0:00,QUEENS,11420,40.672527,-73.821266,"(40.672527, -73.821266)",118 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434367,Sedan,,,, +07/03/2021,10:45,QUEENS,11691,40.59657,-73.7484,"(40.59657, -73.7484)",,,14-15 HEYSON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433537,Sedan,Sedan,,, +07/03/2021,9:30,,,40.611473,-74.17623,"(40.611473, -74.17623)",,,1100 SOUTH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433938,Station Wagon/Sport Utility Vehicle,,,, +06/18/2021,14:55,QUEENS,11374,40.72802,-73.86368,"(40.72802, -73.86368)",63 DRIVE,WETHEROLE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4428697,Bus,,,, +07/03/2021,12:15,BRONX,10455,40.81888,-73.916504,"(40.81888, -73.916504)",MELROSE AVENUE,EAST 153 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433567,Station Wagon/Sport Utility Vehicle,Bike,,, +06/28/2021,1:30,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Driverless/Runaway Vehicle,,,,4434386,Sedan,Sedan,,, +06/20/2021,20:30,,,40.686146,-73.78823,"(40.686146, -73.78823)",157 STREET,115 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434042,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,8:50,QUEENS,11413,40.664715,-73.75523,"(40.664715, -73.75523)",,,144-36 223 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433509,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,23:20,QUEENS,11373,40.73514,-73.86508,"(40.73514, -73.86508)",,,59-10 JUNCTION BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433684,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/02/2021,15:30,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,17:55,,,40.77929,-73.98114,"(40.77929, -73.98114)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4434293,Sedan,Motorcycle,,, +07/03/2021,21:50,BROOKLYN,11235,40.587383,-73.9542,"(40.587383, -73.9542)",,,1501 SHEEPSHEAD BAY ROAD,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433973,Sedan,Sedan,,, +07/03/2021,20:49,BROOKLYN,11209,40.628468,-74.02605,"(40.628468, -74.02605)",,,7814 4 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4433593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,13:15,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434189,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,16:50,MANHATTAN,10027,40.80708,-73.95181,"(40.80708, -73.95181)",,,262 WEST 121 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434158,Sedan,Box Truck,,, +07/03/2021,6:15,MANHATTAN,10128,40.78655,-73.95466,"(40.78655, -73.95466)",EAST 95 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4433796,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,9:50,QUEENS,11435,40.704403,-73.814445,"(40.704403, -73.814445)",HILLSIDE AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433748,Sedan,Sedan,,, +06/26/2021,9:26,QUEENS,11101,40.75446,-73.94435,"(40.75446, -73.94435)",,,41-13 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434129,Taxi,,,, +06/19/2021,18:30,,,40.808804,-73.95589,"(40.808804, -73.95589)",MORNINGSIDE AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434144,Sedan,E-Bike,,, +07/03/2021,18:15,BRONX,10469,40.872826,-73.8521,"(40.872826, -73.8521)",,,1215 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433817,Sedan,Sedan,,, +06/28/2021,22:22,,,40.708935,-73.77721,"(40.708935, -73.77721)",JAMAICA AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Lighting Defects,,,,4434317,Sedan,E-Scooter,,, +07/03/2021,14:00,QUEENS,11411,40.701885,-73.73824,"(40.701885, -73.73824)",114 AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433589,Sedan,Bus,,, +07/02/2021,8:49,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4434280,Pick-up Truck,,,, +07/03/2021,11:51,MANHATTAN,10017,,,,tunnel exit street,east 41 street,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433557,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,16:43,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",WEST 39 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434200,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/03/2021,11:00,BROOKLYN,11222,40.728928,-73.953705,"(40.728928, -73.953705)",,,842 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,9:25,QUEENS,11435,40.701786,-73.807,"(40.701786, -73.807)",147 PLACE,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434103,Sedan,,,, +07/03/2021,1:12,BROOKLYN,11234,40.639618,-73.92043,"(40.639618, -73.92043)",FOSTER AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,Unspecified,,,4433617,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,10:22,MANHATTAN,10033,40.846443,-73.935844,"(40.846443, -73.935844)",,,1331 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4433845,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,4:08,BROOKLYN,11212,40.671906,-73.91174,"(40.671906, -73.91174)",,,1519 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434079,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,3:00,QUEENS,11416,40.679344,-73.859535,"(40.679344, -73.859535)",LIBERTY AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433960,Sedan,,,, +07/03/2021,11:00,,,40.731083,-73.83442,"(40.731083, -73.83442)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433551,Sedan,Sedan,,, +07/03/2021,4:25,,,40.727318,-73.88796,"(40.727318, -73.88796)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,,,,,4433506,Sedan,,,, +07/03/2021,10:01,BRONX,10462,40.854477,-73.8667,"(40.854477, -73.8667)",CRUGER AVENUE,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4433708,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,1:13,,,,,,MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434258,Sedan,,,, +07/03/2021,5:46,,,40.636448,-73.94513,"(40.636448, -73.94513)",FARRAGUT ROAD,,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,,,,4433874,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,2:00,BROOKLYN,11212,40.667343,-73.91977,"(40.667343, -73.91977)",,,602 HOWARD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4433626,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/29/2021,11:40,MANHATTAN,10026,40.801414,-73.95946,"(40.801414, -73.95946)",,,246 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434162,Sedan,Sedan,,, +07/03/2021,20:30,BROOKLYN,11249,40.716972,-73.9608,"(40.716972, -73.9608)",NORTH 4 STREET,BERRY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434176,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,5:20,,,40.770916,-73.889046,"(40.770916, -73.889046)",81 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4434133,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/29/2021,6:30,QUEENS,11379,40.7209,-73.86605,"(40.7209, -73.86605)",WOODHAVEN BOULEVARD,GOLDINGTON COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434232,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,1:45,BROOKLYN,11226,40.650978,-73.9612,"(40.650978, -73.9612)",OCEAN AVENUE,SAINT PAULS COURT,,6,0,0,0,0,0,6,0,Unspecified,Unspecified,,,,4433721,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,15:20,QUEENS,11101,40.755863,-73.943,"(40.755863, -73.943)",,,40-15 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434140,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,12:34,BRONX,10463,40.877613,-73.911545,"(40.877613, -73.911545)",,,70 TERRACE VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434255,Sedan,,,, +07/03/2021,14:09,BRONX,10465,40.84632,-73.823074,"(40.84632, -73.823074)",AMPERE AVENUE,ROBERTSON PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434017,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,20:26,BROOKLYN,11207,40.693405,-73.90886,"(40.693405, -73.90886)",WEIRFIELD STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434274,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,8:15,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434296,Sedan,Bike,,, +07/03/2021,11:18,QUEENS,11377,40.744556,-73.895996,"(40.744556, -73.895996)",41 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433577,Taxi,,,, +06/28/2021,10:29,,,40.69366,-73.85217,"(40.69366, -73.85217)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434068,Sedan,Box Truck,,, +07/02/2021,11:25,MANHATTAN,10001,40.74913,-73.997025,"(40.74913, -73.997025)",,,330 WEST 28 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4434206,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,20:30,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",MC DONALD AVENUE,BAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433990,Sedan,,,, +07/03/2021,10:00,,,40.815975,-73.91102,"(40.815975, -73.91102)",WESTCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4433566,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,16:45,BROOKLYN,11233,40.676014,-73.903465,"(40.676014, -73.903465)",ATLANTIC AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433611,Station Wagon/Sport Utility Vehicle,,,, +07/01/2021,0:00,MANHATTAN,10019,40.77088,-73.99286,"(40.77088, -73.99286)",,,650 WEST 57 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434108,Sedan,Pick-up Truck,,, +06/30/2021,16:00,MANHATTAN,10019,40.760456,-73.98374,"(40.760456, -73.98374)",WEST 49 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,,,,4434100,Taxi,Bike,,, +07/03/2021,13:34,BROOKLYN,11229,40.60164,-73.95184,"(40.60164, -73.95184)",AVENUE T,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,18:47,BROOKLYN,11216,40.68731,-73.94761,"(40.68731, -73.94761)",QUINCY STREET,MARCY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434234,Station Wagon/Sport Utility Vehicle,Bike,,, +07/02/2021,9:30,,,,,,VERRAZANO BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434283,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,14:30,QUEENS,11102,40.770313,-73.920006,"(40.770313, -73.920006)",,,26-33 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434136,Sedan,,,, +07/01/2021,9:20,QUEENS,11694,40.57979,-73.84319,"(40.57979, -73.84319)",NEWPORT AVENUE,BEACH 122 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,6:20,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433831,Sedan,,,, +06/30/2021,11:25,MANHATTAN,10027,40.80713,-73.94967,"(40.80713, -73.94967)",,,2041 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434166,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,7:40,,,40.769703,-73.914,"(40.769703, -73.914)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4434169,Sedan,,,, +07/03/2021,6:30,,,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4433484,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,7:50,BRONX,10463,40.876637,-73.908485,"(40.876637, -73.908485)",,,125 WEST 228 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434262,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,4:48,,,40.636833,-74.13876,"(40.636833, -74.13876)",,,129 HARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4433937,Sedan,,,, +07/03/2021,14:20,QUEENS,11417,40.68142,-73.83368,"(40.68142, -73.83368)",107 AVENUE,107 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4433956,Sedan,Sedan,,, +06/24/2021,7:39,QUEENS,11385,,,,CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434224,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,23:01,,,40.677773,-73.93587,"(40.677773, -73.93587)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433715,Sedan,Sedan,,, +07/03/2021,7:41,MANHATTAN,10036,40.763466,-73.99473,"(40.763466, -73.99473)",,,539 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434114,Convertible,E-Scooter,,, +07/03/2021,0:15,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4433786,Sedan,Sedan,,, +07/02/2021,15:50,MANHATTAN,10034,40.86811,-73.91976,"(40.86811, -73.91976)",BROADWAY,ISHAM STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4434249,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,7:16,BRONX,10454,40.804256,-73.9193,"(40.804256, -73.9193)",EAST 134 STREET,SAINT ANNS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434372,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,18:05,,,40.609104,-74.15211,"(40.609104, -74.15211)",VICTORY BOULEVARD,SOUTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433944,Sedan,Sedan,,, +07/03/2021,17:21,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433599,Sedan,,,, +07/03/2021,3:40,QUEENS,11432,40.708878,-73.793205,"(40.708878, -73.793205)",,,168-23 89 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433527,Sedan,Sedan,,, +06/27/2021,21:08,,,40.69511,-73.81249,"(40.69511, -73.81249)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4434059,Sedan,Ambulance,,, +07/02/2021,6:41,,,,,,ASTORIA PARK NORTH,43 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4434126,Sedan,,,, +07/03/2021,4:55,,,40.68268,-73.922676,"(40.68268, -73.922676)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433669,Taxi,,,, +07/03/2021,10:48,QUEENS,11357,40.789177,-73.809685,"(40.789177, -73.809685)",,,152-09 14 ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433639,Sedan,Taxi,,, +07/03/2021,0:55,QUEENS,11433,40.701317,-73.78804,"(40.701317, -73.78804)",,,169-07 105 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434095,Sedan,Sedan,Sedan,, +06/11/2021,1:53,BRONX,10463,40.877495,-73.91173,"(40.877495, -73.91173)",,,76 TERRACE VIEW AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434239,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,0:35,,,40.702435,-73.99327,"(40.702435, -73.99327)",FULTON STREET,FRONT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,17:26,MANHATTAN,10032,40.837074,-73.944305,"(40.837074, -73.944305)",FORT WASHINGTON AVENUE,WEST 161 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433837,Sedan,,,, +06/30/2021,11:20,MANHATTAN,10011,40.74756,-74.00786,"(40.74756, -74.00786)",WEST 21 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4434194,Van,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,14:30,MANHATTAN,10027,40.807095,-73.945984,"(40.807095, -73.945984)",LENOX AVENUE,WEST 124 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434154,Sedan,Bike,,, +02/20/2022,16:26,,,40.824806,-73.91352,"(40.824806, -73.91352)",EAST 162 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504868,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,6:20,BRONX,10474,40.80725,-73.87972,"(40.80725, -73.87972)",,,298 HALLECK STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433920,Sedan,Sedan,,, +07/03/2021,13:00,BROOKLYN,11207,40.6663,-73.8915,"(40.6663, -73.8915)",,,495 WYONA STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4433726,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/03/2021,19:30,,,40.703472,-73.9306,"(40.703472, -73.9306)",NOLL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434288,Sedan,,,, +06/08/2021,11:40,MANHATTAN,10026,40.797806,-73.94857,"(40.797806, -73.94857)",,,1330 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434141,Sedan,Box Truck,,, +06/21/2021,14:34,MANHATTAN,10026,40.797287,-73.95016,"(40.797287, -73.95016)",,,7 WEST 110 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4434148,E-Scooter,,,, +07/03/2021,17:35,MANHATTAN,10026,40.80202,-73.94969,"(40.80202, -73.94969)",WEST 116 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434159,Sedan,Bike,,, +07/03/2021,23:15,BRONX,10470,40.889217,-73.866875,"(40.889217, -73.866875)",,,3900 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4433799,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,10:25,,,40.78587,-73.84955,"(40.78587, -73.84955)",14 AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4494305,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/12/2022,16:15,MANHATTAN,10032,40.83981,-73.93697,"(40.83981, -73.93697)",,,2178 AMSTERDAM AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494844,,,,, +01/14/2022,23:00,QUEENS,11101,40.74597,-73.927635,"(40.74597, -73.927635)",43 AVENUE,37 STREET,,1,0,1,0,0,0,0,0,,,,,,4494603,,,,, +01/14/2022,8:56,BROOKLYN,11211,40.71878,-73.94509,"(40.71878, -73.94509)",GRAHAM AVENUE,RICHARDSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494481,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,, +01/10/2022,19:04,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,18:30,QUEENS,11101,40.745815,-73.945656,"(40.745815, -73.945656)",DAVIS STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494891,Sedan,,,, +01/13/2022,13:39,BRONX,10465,40.815853,-73.81672,"(40.815853, -73.81672)",HARDING AVENUE,REVERE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4494353,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,8:45,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4494932,Sedan,Bus,,, +01/14/2022,1:10,QUEENS,11377,40.74152,-73.904594,"(40.74152, -73.904594)",60 STREET,QUEENS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4494405,Bike,,,, +01/14/2022,18:00,BROOKLYN,11203,40.65961,-73.935814,"(40.65961, -73.935814)",,,755 FENIMORE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494662,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,14:16,BRONX,10458,40.85948,-73.8872,"(40.85948, -73.8872)",,,532 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494177,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,18:45,BROOKLYN,11232,40.6532,-74.005585,"(40.6532, -74.005585)",38 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494389,Sedan,,,, +01/13/2022,6:17,,,40.608776,-74.14718,"(40.608776, -74.14718)",,,670 WILLOWBROOK ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494203,Ambulance,Sedan,,, +01/14/2022,8:21,,,40.768013,-73.90423,"(40.768013, -73.90423)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4494697,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/13/2022,14:20,,,40.676834,-73.760704,"(40.676834, -73.760704)",CRANDALL AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494508,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/14/2022,22:35,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4494804,Sedan,Sedan,,, +01/13/2022,1:38,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,MYRTLE AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4494136,Sedan,Taxi,,, +01/14/2022,10:05,,,40.8018,-73.96108,"(40.8018, -73.96108)",CATHEDRAL PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494513,Sedan,,,, +01/13/2022,20:24,BROOKLYN,11234,40.62348,-73.92155,"(40.62348, -73.92155)",,,1309 EAST 56 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494655,E-Bike,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,18:30,MANHATTAN,10001,40.752357,-73.99178,"(40.752357, -73.99178)",,,261 WEST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494859,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,3:20,,,40.749718,-73.86419,"(40.749718, -73.86419)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494248,Sedan,,,, +01/14/2022,7:00,QUEENS,11436,40.66985,-73.80064,"(40.66985, -73.80064)",132 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494557,Sedan,Sedan,,, +01/14/2022,23:30,,,40.81183,-73.96112,"(40.81183, -73.96112)",WEST 122 STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4495003,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,15:00,BRONX,10465,40.823208,-73.81965,"(40.823208, -73.81965)",,,3883 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4494440,Sedan,,,, +01/12/2022,18:10,BROOKLYN,11208,40.665474,-73.86752,"(40.665474, -73.86752)",CRESCENT STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4494104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,21:50,QUEENS,11368,40.746063,-73.85582,"(40.746063, -73.85582)",,,108-22 48 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494913,Sedan,Sedan,,, +01/11/2022,9:10,,,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495029,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2021,3:06,,,40.69864,-73.93819,"(40.69864, -73.93819)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4433663,Sedan,,,, +01/13/2022,15:00,BROOKLYN,11205,40.68842,-73.972885,"(40.68842, -73.972885)",,,247 CUMBERLAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494367,Station Wagon/Sport Utility Vehicle,Bus,,, +01/12/2022,17:50,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",LONGFELLOW AVENUE,EAST 167 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494453,Station Wagon/Sport Utility Vehicle,Bike,,, +01/14/2022,23:45,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4494614,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +01/12/2022,19:15,STATEN ISLAND,10308,40.55963,-74.153,"(40.55963, -74.153)",,,159 BARLOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,12:00,STATEN ISLAND,10309,40.522366,-74.21674,"(40.522366, -74.21674)",PENTON STREET,AMBOY ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494556,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,16:40,MANHATTAN,10019,40.765095,-73.9821,"(40.765095, -73.9821)",,,1740 BROADWAY,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4494143,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/12/2022,18:20,STATEN ISLAND,10306,40.56431,-74.110146,"(40.56431, -74.110146)",EBBITTS AVENUE,MILL ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494221,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,14:00,BRONX,10466,40.901836,-73.84548,"(40.901836, -73.84548)",EAST 241 STREET,WILDER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4494954,Sedan,Sedan,,, +01/02/2022,13:30,MANHATTAN,10024,40.785114,-73.97496,"(40.785114, -73.97496)",,,147 WEST 83 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494571,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,19:30,MANHATTAN,10011,40.74649,-74.001335,"(40.74649, -74.001335)",WEST 23 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4494190,,,,, +01/13/2022,18:53,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494395,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,15:27,QUEENS,11429,40.71464,-73.742935,"(40.71464, -73.742935)",216 STREET,99 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494588,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,3:06,,,40.80515,-73.91105,"(40.80515, -73.91105)",BRUCKNER BOULEVARD,EAST 139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493907,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,16:56,BRONX,10469,40.868546,-73.85859,"(40.868546, -73.85859)",BOSTON ROAD,PAULDING AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4494423,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/13/2022,8:30,,,40.770428,-73.92364,"(40.770428, -73.92364)",NEWTOWN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494690,Sedan,,,, +01/13/2022,9:45,BRONX,10460,40.831753,-73.88795,"(40.831753, -73.88795)",,,1455 BRYANT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494723,Sedan,Box Truck,,, +01/14/2022,4:09,BROOKLYN,11207,40.673573,-73.902084,"(40.673573, -73.902084)",SNEDIKER AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494472,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,12:25,,,40.721275,-73.9778,"(40.721275, -73.9778)",EAST 4 STREET,,,0,0,0,0,0,0,0,0,Animals Action,Turning Improperly,,,,4494118,School Bus,Sedan,,, +01/13/2022,1:35,BROOKLYN,11211,40.713955,-73.94259,"(40.713955, -73.94259)",DEVOE STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494346,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,8:48,BROOKLYN,11235,40.592175,-73.934525,"(40.592175, -73.934525)",,,2462 BRAGG STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494467,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,7:22,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494452,Sedan,,,, +01/13/2022,19:19,BROOKLYN,11229,40.61061,-73.95671,"(40.61061, -73.95671)",AVENUE P,EAST 17 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494379,Sedan,Bike,,, +01/13/2022,8:10,,,40.58584,-73.93788,"(40.58584, -73.93788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,6:30,BROOKLYN,11232,40.661037,-73.99744,"(40.661037, -73.99744)",24 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4493960,Pick-up Truck,Box Truck,,, +01/13/2022,18:30,QUEENS,11415,40.71241,-73.826454,"(40.71241, -73.826454)",QUEENS BOULEVARD,82 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494400,Sedan,,,, +01/12/2022,18:00,BROOKLYN,11208,40.67241,-73.863556,"(40.67241, -73.863556)",ELDERTS LANE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494103,Sedan,,,, +01/13/2022,8:02,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inexperience,,,,4494540,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/12/2022,17:19,,,40.68484,-73.80607,"(40.68484, -73.80607)",VANWYCK EXPRESSWAY,111 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4494191,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,7:45,STATEN ISLAND,10314,40.608833,-74.12118,"(40.608833, -74.12118)",SCHMIDTS LANE,MANOR ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494695,Sedan,,,, +01/13/2022,17:40,,,40.55554,-74.17562,"(40.55554, -74.17562)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,20:10,,,40.848694,-73.93047,"(40.848694, -73.93047)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4494987,Sedan,,,, +01/13/2022,9:00,QUEENS,11423,40.72037,-73.76101,"(40.72037, -73.76101)",,,204-02 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494428,Sedan,,,, +01/14/2022,0:00,BROOKLYN,11236,40.63466,-73.91462,"(40.63466, -73.91462)",,,7811 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494726,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,16:33,BROOKLYN,11221,40.686016,-73.94156,"(40.686016, -73.94156)",,,510 THROOP AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494955,Sedan,,,, +01/14/2022,7:15,MANHATTAN,10002,40.723648,-73.99103,"(40.723648, -73.99103)",CHRYSTIE STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494772,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,10:47,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494137,Pick-up Truck,Pick-up Truck,,, +01/12/2022,17:00,BRONX,10474,40.807434,-73.88465,"(40.807434, -73.88465)",,,325 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494338,Van,Box Truck,,, +01/12/2022,16:00,BRONX,10452,40.83898,-73.9186,"(40.83898, -73.9186)",MARCY PLACE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494541,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/14/2022,4:28,BRONX,10472,40.82866,-73.87824,"(40.82866, -73.87824)",WESTCHESTER AVENUE,BOYNTON AVENUE,,0,1,0,0,0,0,0,0,Unspecified,,,,,4494526,E-Bike,,,, +01/14/2022,6:56,BROOKLYN,11237,40.704716,-73.92875,"(40.704716, -73.92875)",FLUSHING AVENUE,KNICKERBOCKER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494753,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,10:25,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",WASHINGTON AVENUE,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494171,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,21:15,MANHATTAN,10037,40.815403,-73.93992,"(40.815403, -73.93992)",LENOX AVENUE,WEST 137 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495107,Sedan,Sedan,,, +01/06/2022,20:57,BRONX,10463,,,,FORT INDEPENDENCE STREET,Kingsbridge Terrace,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494494,Sedan,,,, +01/12/2022,9:47,,,40.877106,-73.90616,"(40.877106, -73.90616)",BROADWAY,WEST 230 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494462,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,2:00,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4494415,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,10:15,,,40.660362,-73.77553,"(40.660362, -73.77553)",ROCKAWAY BOULEVARD,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494509,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,17:21,,,40.71328,-73.76606,"(40.71328, -73.76606)",195 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4494048,Sedan,,,, +01/12/2022,20:40,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494069,Station Wagon/Sport Utility Vehicle,,,, +01/16/2021,2:30,,,40.84467,-73.9449,"(40.84467, -73.9449)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4494853,Sedan,,,, +01/12/2022,9:25,STATEN ISLAND,10310,40.623997,-74.10893,"(40.623997, -74.10893)",OAKLAND AVENUE,WHITEWOOD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4494273,Sedan,Sedan,,, +01/14/2022,18:00,BROOKLYN,11233,40.67069,-73.91703,"(40.67069, -73.91703)",SARATOGA AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494789,Sedan,,,, +04/06/2022,18:18,,,40.765125,-73.952126,"(40.765125, -73.952126)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516914,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/12/2022,10:57,MANHATTAN,10021,40.766514,-73.95402,"(40.766514, -73.95402)",,,1339 YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494114,Sedan,,,, +01/14/2022,14:18,MANHATTAN,10023,40.778793,-73.98206,"(40.778793, -73.98206)",WEST 72 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494552,Sedan,Sedan,,, +07/04/2021,16:35,,,,,,BARTOW CIRCLE,SHORE ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4434020,Taxi,Sedan,,, +01/14/2022,15:05,,,40.772102,-73.763954,"(40.772102, -73.763954)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494584,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,23:39,BRONX,10469,40.87645,-73.848175,"(40.87645, -73.848175)",BOSTON ROAD,FENTON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4494320,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,5:00,BRONX,10459,40.820816,-73.901146,"(40.820816, -73.901146)",,,890 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494567,Sedan,Sedan,,, +01/10/2022,12:11,QUEENS,11106,40.765224,-73.9317,"(40.765224, -73.9317)",21 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495030,Sedan,,,, +01/14/2022,4:55,,,40.67297,-73.96745,"(40.67297, -73.96745)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4494906,Sedan,,,, +01/14/2022,19:58,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494589,Sedan,Sedan,,, +01/11/2022,6:12,,,40.643566,-74.00475,"(40.643566, -74.00475)",48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494435,Sedan,,,, +01/12/2022,10:00,BROOKLYN,11207,40.666443,-73.893456,"(40.666443, -73.893456)",NEW JERSEY AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494018,Sedan,,,, +04/03/2022,22:00,QUEENS,11691,40.61206,-73.7698,"(40.61206, -73.7698)",,,14-78 POINT BREEZE PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517912,Sedan,,,, +01/12/2022,16:10,BROOKLYN,11203,40.649986,-73.93215,"(40.649986, -73.93215)",SNYDER AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494279,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,7:47,,,,,,11 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494060,Station Wagon/Sport Utility Vehicle,Van,,, +01/12/2022,13:52,,,,,,,,90 WEST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4494148,Bike,Bike,,, +01/14/2022,17:00,BROOKLYN,11207,40.68599,-73.90794,"(40.68599, -73.90794)",EVERGREEN AVENUE,MOFFAT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494633,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,15:00,QUEENS,11361,40.761993,-73.75849,"(40.761993, -73.75849)",223 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494375,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,10:00,BROOKLYN,11210,40.636627,-73.94226,"(40.636627, -73.94226)",BROOKLYN AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494795,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,21:53,BROOKLYN,11213,40.663963,-73.9412,"(40.663963, -73.9412)",,,636 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494661,Sedan,Van,,, +01/13/2022,18:15,BROOKLYN,11211,40.70195,-73.958694,"(40.70195, -73.958694)",BEDFORD AVENUE,PENN STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494404,Sedan,FIRETRUCK,,, +01/12/2022,23:40,,,40.573994,-73.85278,"(40.573994, -73.85278)",ROCKAWAY BEACH BOULEVARD,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4494333,Sedan,,,, +01/13/2022,21:55,QUEENS,11369,40.759823,-73.87473,"(40.759823, -73.87473)",,,31-17 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,0:10,,,40.671204,-73.90051,"(40.671204, -73.90051)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494109,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,14:20,BROOKLYN,11226,40.645473,-73.96234,"(40.645473, -73.96234)",,,240 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,18:05,,,40.60675,-74.12098,"(40.60675, -74.12098)",,,778A MANOR ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4494595,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,21:20,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494164,Sedan,,,, +01/10/2022,21:33,MANHATTAN,10016,40.74102,-73.97862,"(40.74102, -73.97862)",EAST 28 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4494489,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,16:12,BROOKLYN,11204,40.616352,-73.98245,"(40.616352, -73.98245)",21 AVENUE,63 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4494828,Sedan,Sedan,,, +01/07/2022,19:01,,,40.90034,-73.90591,"(40.90034, -73.90591)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494713,Box Truck,Sedan,,, +01/14/2022,23:15,QUEENS,11420,40.683323,-73.80755,"(40.683323, -73.80755)",LINCOLN STREET,135 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494625,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,22:35,,,40.883858,-73.855896,"(40.883858, -73.855896)",EAST 222 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4494959,Sedan,,,, +07/04/2021,0:11,,,,,,MADISON AVE BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4434038,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,15:00,,,40.674088,-73.79837,"(40.674088, -73.79837)",ROCKAWAY BOULEVARD,142 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494671,Sedan,,,, +01/12/2022,4:36,,,40.818085,-73.96048,"(40.818085, -73.96048)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4494996,Sedan,Sedan,,, +01/13/2022,15:52,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494777,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,22:23,BRONX,10457,40.854904,-73.89645,"(40.854904, -73.89645)",EAST 182 STREET,WEBSTER AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4495098,Sedan,Sedan,,, +01/14/2022,11:45,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494618,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,9:42,,,40.746143,-73.82718,"(40.746143, -73.82718)",57 ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494484,Sedan,Sedan,,, +01/12/2022,17:33,,,40.853813,-73.90851,"(40.853813, -73.90851)",WEST BURNSIDE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494445,,,,, +01/13/2022,21:30,,,,,,ROEBLING STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,2:00,STATEN ISLAND,10306,40.578613,-74.11052,"(40.578613, -74.11052)",NORTH RAILROAD AVENUE,GREELEY AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4494708,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,19:30,,,40.590015,-74.09177,"(40.590015, -74.09177)",DELAWARE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494816,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,20:00,BROOKLYN,11203,40.64457,-73.94502,"(40.64457, -73.94502)",CORTELYOU ROAD,EAST 34 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517624,Sedan,Sedan,,, +01/12/2022,7:20,,,,,,107 STREET,MURIAL COURT,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494477,Sedan,Sedan,Sedan,, +01/14/2022,18:07,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494940,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,16:24,,,40.78029,-73.94386,"(40.78029, -73.94386)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,11:47,BROOKLYN,11233,40.68056,-73.93458,"(40.68056, -73.93458)",LEWIS AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494880,Sedan,,,, +01/14/2022,1:15,QUEENS,11377,40.758896,-73.89838,"(40.758896, -73.89838)",,,30-26 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494563,Sedan,,,, +01/12/2022,7:35,BROOKLYN,11212,,,,,,10 AMBOY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4493976,Bus,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,15:58,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",CONNER STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494315,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,18:30,BRONX,10456,40.836384,-73.91446,"(40.836384, -73.91446)",,,1305 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494548,Sedan,Sedan,,, +01/12/2022,22:45,,,40.62419,-74.148994,"(40.62419, -74.148994)",RICHMOND AVENUE,MONSEY PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494094,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,14:14,MANHATTAN,10128,40.77855,-73.951256,"(40.77855, -73.951256)",EAST 87 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4494516,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,14:00,BROOKLYN,11231,40.676796,-74.01356,"(40.676796, -74.01356)",VAN BRUNT STREET,DIKEMAN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494286,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,7:00,MANHATTAN,10032,40.839867,-73.94064,"(40.839867, -73.94064)",WEST 166 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4494846,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,8:00,QUEENS,11385,40.706345,-73.91122,"(40.706345, -73.91122)",ONDERDONK AVENUE,GREENE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494237,Taxi,,,, +12/30/2021,13:20,BROOKLYN,11221,40.685295,-73.93253,"(40.685295, -73.93253)",JEFFERSON AVENUE,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494873,Sedan,Sedan,,, +01/13/2022,20:20,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494580,Sedan,Pick-up Truck,,, +01/14/2022,23:05,BROOKLYN,11206,40.704018,-73.93966,"(40.704018, -73.93966)",,,131 MOORE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494680,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,8:25,BROOKLYN,11218,40.644417,-73.9703,"(40.644417, -73.9703)",,,534 CONEY ISLAND AVENUE,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494180,Bike,,,, +04/08/2022,13:21,,,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517466,Sedan,Box Truck,,, +01/13/2022,10:50,,,40.683434,-73.8343,"(40.683434, -73.8343)",107 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494488,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/14/2022,15:44,QUEENS,11433,40.688778,-73.786446,"(40.688778, -73.786446)",LINDEN BOULEVARD,DILLON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494641,Bus,Sedan,,, +01/12/2022,8:30,QUEENS,11368,,,,GRANGER STREET,MARTENSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4494408,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/12/2022,10:58,QUEENS,11426,40.74266,-73.72108,"(40.74266, -73.72108)",249 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494665,Bus,Sedan,,, +01/12/2022,16:07,BROOKLYN,11215,40.675076,-73.98801,"(40.675076, -73.98801)",3 AVENUE,3 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4494206,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,18:30,,,40.67378,-73.779625,"(40.67378, -73.779625)",132 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494371,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,15:50,BROOKLYN,11237,40.70499,-73.91736,"(40.70499, -73.91736)",STOCKHOLM STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494499,Sedan,,,, +01/12/2022,20:35,,,40.741028,-73.99417,"(40.741028, -73.99417)",WEST 20 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4494121,Sedan,Bike,,, +01/13/2022,11:30,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4494780,Pick-up Truck,Bike,,, +01/12/2022,14:12,BRONX,10466,40.89063,-73.85892,"(40.89063, -73.85892)",WHITE PLAINS ROAD,EAST 229 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494326,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,12:05,,,40.58428,-73.92529,"(40.58428, -73.92529)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494757,Sedan,Sedan,,, +01/10/2022,15:00,BRONX,10470,40.897785,-73.87069,"(40.897785, -73.87069)",,,4284 KEPLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494966,Sedan,,,, +01/13/2022,14:01,MANHATTAN,10040,40.858856,-73.9298,"(40.858856, -73.9298)",,,1 BOGARDUS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495002,Sedan,Taxi,,, +01/13/2022,18:01,MANHATTAN,10029,40.797943,-73.94213,"(40.797943, -73.94213)",EAST 115 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494651,Sedan,Sedan,,, +01/14/2022,19:00,BROOKLYN,11207,40.672073,-73.88583,"(40.672073, -73.88583)",,,645 BELMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494928,Sedan,,,, +01/13/2022,14:52,BRONX,10460,40.83269,-73.890564,"(40.83269, -73.890564)",,,1463 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494721,Sedan,E-bike,,, +01/14/2022,15:21,BRONX,10467,40.874928,-73.86498,"(40.874928, -73.86498)",MAGENTA STREET,HOLLAND AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4494916,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/08/2022,14:12,MANHATTAN,10035,40.803024,-73.93632,"(40.803024, -73.93632)",EAST 124 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494666,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,11:40,,,40.84125,-73.9094,"(40.84125, -73.9094)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494841,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,15:00,,,40.691082,-73.98345,"(40.691082, -73.98345)",,,ALBEE SQUARE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4494988,Taxi,Box Truck,,, +01/11/2022,13:30,BROOKLYN,11233,40.67101,-73.92239,"(40.67101, -73.92239)",STERLING PLACE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494773,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,16:15,BROOKLYN,11201,40.69349,-73.97917,"(40.69349, -73.97917)",MYRTLE AVENUE,ASHLAND PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494354,Sedan,Sedan,,, +01/14/2022,19:39,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495092,Sedan,,,, +01/12/2022,18:20,BRONX,10468,40.86231,-73.909874,"(40.86231, -73.909874)",LANDING ROAD,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4494163,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/04/2022,10:00,BROOKLYN,11233,40.679928,-73.92045,"(40.679928, -73.92045)",,,122 SUMPTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494890,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,11:25,,,40.560852,-74.19991,"(40.560852, -74.19991)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4494553,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,17:10,BROOKLYN,11207,40.671616,-73.89775,"(40.671616, -73.89775)",GEORGIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494933,Sedan,,,, +07/03/2021,23:46,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434412,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,12:00,,,,,,LITTLE NECK PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495074,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,18:28,,,40.608936,-74.12566,"(40.608936, -74.12566)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4494699,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/14/2022,21:35,MANHATTAN,10029,40.786175,-73.9457,"(40.786175, -73.9457)",EAST 99 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494948,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,17:30,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4494619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/12/2022,23:30,,,40.743343,-73.97203,"(40.743343, -73.97203)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4494294,Sedan,Convertible,,, +01/11/2022,6:35,MANHATTAN,10026,40.800686,-73.952515,"(40.800686, -73.952515)",WEST 113 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495127,Bus,Sedan,,, +01/12/2022,9:00,STATEN ISLAND,10301,,,,,,715 OCEAN TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494004,Sedan,,,, +01/13/2022,8:45,MANHATTAN,10019,40.766243,-73.983215,"(40.766243, -73.983215)",,,952 8 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4494212,Sedan,Van,,, +01/04/2022,6:47,BROOKLYN,11212,40.659107,-73.923225,"(40.659107, -73.923225)",EAST 93 STREET,CLARKSON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4494798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,18:25,BRONX,10455,40.818993,-73.909744,"(40.818993, -73.909744)",EAST 156 STREET,EAGLE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Cell Phone (hands-free),,,,4494075,Sedan,,,, +01/12/2022,18:50,BROOKLYN,11236,40.63272,-73.90886,"(40.63272, -73.90886)",AVENUE K,EAST 81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494531,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,7:40,,,40.703285,-73.895454,"(40.703285, -73.895454)",FRESH POND ROAD,69 AVENUE,,1,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494686,Sedan,E-Bike,,, +01/14/2022,16:05,QUEENS,11106,40.75925,-73.932434,"(40.75925, -73.932434)",,,35-26 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494862,Sedan,Sedan,,, +01/13/2022,9:08,BROOKLYN,11205,,,,FLUSHING AVENUE,CLINTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494222,Power shov,Sedan,,, +01/12/2022,6:58,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494117,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,9:51,BROOKLYN,11229,40.600697,-73.96037,"(40.600697, -73.96037)",AVENUE T,EAST 12 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494211,Sedan,E-Bike,,, +01/13/2022,20:20,BRONX,10467,40.879112,-73.87591,"(40.879112, -73.87591)",,,3405 PUTNAM PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494503,Sedan,,,, +01/13/2022,16:50,BROOKLYN,11231,40.677353,-74.00446,"(40.677353, -74.00446)",HICKS STREET,HUNTINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494384,Sedan,,,, +01/12/2022,12:00,BROOKLYN,11218,40.647213,-73.98099,"(40.647213, -73.98099)",,,28 CATON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494176,Sedan,Bus,,, +01/13/2022,19:20,BROOKLYN,11239,40.64517,-73.88313,"(40.64517, -73.88313)",,,671 LOUISIANA AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,1:36,BROOKLYN,11212,40.662556,-73.91963,"(40.662556, -73.91963)",DUMONT AVENUE,TAPSCOTT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4493916,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,12:44,BROOKLYN,11219,40.639576,-73.998146,"(40.639576, -73.998146)",48 STREET,10 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494424,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/12/2022,13:46,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4494912,Sedan,Ambulance,,, +01/10/2022,14:50,QUEENS,11370,40.758354,-73.89441,"(40.758354, -73.89441)",31 AVENUE,73 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,16:15,BROOKLYN,11237,40.705658,-73.93171,"(40.705658, -73.93171)",GRATTAN STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494344,Bike,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,13:22,,,40.783333,-73.911415,"(40.783333, -73.911415)",20 AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4494691,Sedan,Sedan,Sedan,, +12/03/2021,14:40,QUEENS,11373,40.744907,-73.88916,"(40.744907, -73.88916)",,,41-15 76 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4494471,Sedan,,,, +01/14/2022,13:27,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,6:00,,,40.689022,-73.93925,"(40.689022, -73.93925)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4494951,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,8:20,STATEN ISLAND,10312,40.532875,-74.192276,"(40.532875, -74.192276)",,,877 HUGUENOT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4494558,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/13/2022,8:51,,,40.672195,-73.91133,"(40.672195, -73.91133)",ROCKAWAY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494785,Station Wagon/Sport Utility Vehicle,,,, +01/08/2022,20:07,,,40.864113,-73.92126,"(40.864113, -73.92126)",WEST 204 STREET,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4494977,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,14:00,QUEENS,11428,40.7171,-73.74077,"(40.7171, -73.74077)",JAMAICA AVENUE,215 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4494727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,22:30,BRONX,10461,40.851738,-73.83197,"(40.851738, -73.83197)",EDISON AVENUE,WILKINSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494831,Sedan,,,, +01/14/2022,13:10,BRONX,10466,40.888294,-73.83129,"(40.888294, -73.83129)",,,3828 DYRE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494956,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,17:39,BROOKLYN,11212,40.665627,-73.92045,"(40.665627, -73.92045)",TAPSCOTT STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4495119,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,7:00,BRONX,10463,40.877537,-73.91039,"(40.877537, -73.91039)",,,73 ADRIAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494458,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,20:30,BROOKLYN,11206,40.705284,-73.94289,"(40.705284, -73.94289)",,,103 GRAHAM AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494572,E-Scooter,,,, +01/13/2022,18:19,,,40.73407,-73.999664,"(40.73407, -73.999664)",CHRISTOPHER STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494884,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,16:15,,,40.665546,-73.9537,"(40.665546, -73.9537)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494585,Sedan,Sedan,,, +01/14/2022,4:30,STATEN ISLAND,10305,40.598454,-74.08211,"(40.598454, -74.08211)",,,1174 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494696,passenger,Sedan,,, +01/12/2022,13:00,QUEENS,11420,40.665684,-73.820435,"(40.665684, -73.820435)",NORTH CONDUIT AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4494281,Sedan,,,, +01/12/2022,12:26,,,40.78212,-73.77128,"(40.78212, -73.77128)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4494059,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/12/2022,18:42,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494062,Sedan,Sedan,,, +01/13/2022,11:30,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494249,Sedan,,,, +01/13/2022,16:45,,,40.60426,-73.75286,"(40.60426, -73.75286)",MOTT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494422,,,,, +01/12/2022,17:10,QUEENS,11365,40.73193,-73.80796,"(40.73193, -73.80796)",JEWEL AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494082,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,8:10,,,40.795536,-73.977234,"(40.795536, -73.977234)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494274,Station Wagon/Sport Utility Vehicle,Van,,, +01/13/2022,15:55,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494439,Sedan,Sedan,,, +01/12/2022,21:38,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494108,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,20:31,BROOKLYN,11226,40.65415,-73.949936,"(40.65415, -73.949936)",NOSTRAND AVENUE,LENOX ROAD,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4494802,Sedan,,,, +01/13/2022,10:00,QUEENS,11355,40.75882,-73.81121,"(40.75882, -73.81121)",MURRAY STREET,CHERRY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494306,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,22:01,MANHATTAN,10033,40.850166,-73.93576,"(40.850166, -73.93576)",WEST 181 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/10/2022,7:07,,,,,,,,148 VANCORTLANDT PARK WEST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494456,Sedan,,,, +07/02/2021,14:30,,,,,,EAST DRIVE,EAST 74 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434504,E-Scooter,Bike,,, +01/12/2022,8:11,QUEENS,11428,,,,212 PLACE,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494009,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,15:00,BROOKLYN,11217,40.687023,-73.97621,"(40.687023, -73.97621)",LAFAYETTE AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494604,Box Truck,Box Truck,,, +01/13/2022,11:25,QUEENS,11361,40.75742,-73.782776,"(40.75742, -73.782776)",,,200-14 44 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494259,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/14/2022,12:55,MANHATTAN,10026,40.80194,-73.957466,"(40.80194, -73.957466)",,,300 WEST 112 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494535,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,13:05,MANHATTAN,10018,40.75267,-73.99061,"(40.75267, -73.99061)",,,225 WEST 36 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494858,Sedan,,,, +01/14/2022,6:49,,,,,,NEW ENGLAND THRUWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494829,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,9:00,BROOKLYN,11233,40.676937,-73.91551,"(40.676937, -73.91551)",,,25 ROOSEVELT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494790,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,9:10,,,40.873795,-73.83582,"(40.873795, -73.83582)",EDSON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494301,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,15:12,QUEENS,11361,40.757626,-73.780106,"(40.757626, -73.780106)",NORTHERN BOULEVARD,203 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494583,Sedan,Sedan,,, +01/12/2022,13:35,,,,,,NEW ENGLAND THRUWAY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,,,,4494319,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,21:40,STATEN ISLAND,10310,40.634007,-74.11709,"(40.634007, -74.11709)",BROADWAY,BRITTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494562,Sedan,,,, +01/12/2022,8:00,,,40.681274,-73.90425,"(40.681274, -73.90425)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494021,Sedan,Sedan,,, +01/12/2022,21:25,BROOKLYN,11233,40.670895,-73.91405,"(40.670895, -73.91405)",BOYLAND STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494081,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,20:30,,,,,,BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4494446,Sedan,Tractor Truck Diesel,,, +12/15/2021,0:00,BROOKLYN,11212,40.67024,-73.907005,"(40.67024, -73.907005)",PITKIN AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494814,Sedan,Sedan,,, +01/13/2022,22:34,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",EAST TREMONT AVENUE,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4495099,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,5:50,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517254,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,12:45,,,40.82336,-73.947174,"(40.82336, -73.947174)",WEST 143 STREET,,,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4494451,Sedan,,,, +01/12/2022,10:00,BROOKLYN,11207,40.65626,-73.89574,"(40.65626, -73.89574)",DE WITT AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494101,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,20:37,,,40.63178,-73.945625,"(40.63178, -73.945625)",EAST 32 STREET,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494192,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,5:42,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494441,Box Truck,Sedan,,, +01/13/2022,11:50,BROOKLYN,11206,40.7011,-73.94355,"(40.7011, -73.94355)",,,30 THORNTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494343,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,22:43,BROOKLYN,11212,40.666023,-73.90709,"(40.666023, -73.90709)",,,335 BLAKE AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4494768,Sedan,,,, +01/14/2022,3:20,,,40.73487,-73.92331,"(40.73487, -73.92331)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4494412,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,8:39,BRONX,10465,,,,,,3432 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494042,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,16:00,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494573,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,13:30,BROOKLYN,11208,40.66968,-73.88237,"(40.66968, -73.88237)",BLAKE AVENUE,ELTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4494927,Sedan,Box Truck,,, +01/12/2022,12:16,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494115,Sedan,Sedan,,, +01/05/2022,9:00,STATEN ISLAND,10309,40.53213,-74.22308,"(40.53213, -74.22308)",VETERANS ROAD EAST,ENGLEWOOD AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4494551,Dump,,,, +07/01/2021,15:20,,,,,,,,1 KINGS PLAZA,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4434568,Sedan,,,, +01/12/2022,8:45,,,,,,JAMAICA AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493989,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,12:10,BROOKLYN,11238,40.682716,-73.966736,"(40.682716, -73.966736)",,,519 CLINTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,4:10,BRONX,10452,40.83163,-73.92252,"(40.83163, -73.92252)",EAST 165 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4494542,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,15:33,BROOKLYN,11211,40.71302,-73.959305,"(40.71302, -73.959305)",,,202 SOUTH 1 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4494096,Flat Bed,Sedan,,, +01/14/2022,3:24,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4494801,Sedan,Sedan,Sedan,Sedan, +01/14/2022,8:30,BROOKLYN,11207,40.655502,-73.88414,"(40.655502, -73.88414)",,,190 COZINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494473,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,23:33,BROOKLYN,11204,40.616352,-73.98245,"(40.616352, -73.98245)",21 AVENUE,63 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494875,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,0:00,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494244,Sedan,Sedan,,, +01/14/2022,15:00,MANHATTAN,10039,,,,,,279 west 150 street,0,0,0,0,0,0,0,0,Unspecified,,,,,4495106,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/14/2022,23:29,BROOKLYN,11237,40.714207,-73.92817,"(40.714207, -73.92817)",STEWART AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494679,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/12/2022,18:19,BROOKLYN,11233,40.66638,-73.9244,"(40.66638, -73.9244)",EAST NEW YORK AVENUE,EAST 98 STREET,,1,0,1,0,0,0,0,0,,,,,,4494086,,,,, +01/14/2022,16:20,BROOKLYN,11207,40.693405,-73.90886,"(40.693405, -73.90886)",KNICKERBOCKER AVENUE,WEIRFIELD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4494632,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,6:51,,,40.830975,-73.85267,"(40.830975, -73.85267)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494495,Tractor Truck Diesel,Sedan,,, +01/13/2022,21:18,BRONX,10474,40.811043,-73.88073,"(40.811043, -73.88073)",HALLECK STREET,OAK POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494383,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/13/2022,11:22,,,,,,WHITESTONE EXPRESSWAY,COLLEGE POINT BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494307,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,17:00,MANHATTAN,10128,40.779495,-73.9535,"(40.779495, -73.9535)",3 AVENUE,EAST 87 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495082,Taxi,E-Bike,,, +01/13/2022,5:00,BROOKLYN,11203,40.659756,-73.93706,"(40.659756, -73.93706)",,,561 TROY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494510,Sedan,Sedan,,, +01/14/2022,14:20,,,40.69024,-73.99437,"(40.69024, -73.99437)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494761,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,18:00,,,40.760365,-73.97377,"(40.760365, -73.97377)",MADISON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494139,Sedan,,,, +01/12/2022,0:05,STATEN ISLAND,10301,40.64649,-74.08654,"(40.64649, -74.08654)",SAINT MARKS PLACE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494272,Sedan,,,, +01/13/2022,4:55,BROOKLYN,11203,40.659447,-73.93819,"(40.659447, -73.93819)",,,710 FENIMORE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494970,Sedan,Sedan,,, +01/14/2022,19:30,QUEENS,11103,40.75859,-73.919304,"(40.75859, -73.919304)",,,32-25 STEINWAY STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494861,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,10:25,BRONX,10470,40.905735,-73.849396,"(40.905735, -73.849396)",WHITE PLAINS ROAD,EAST 242 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494314,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,17:53,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4494566,Sedan,Sedan,,, +01/12/2022,18:00,QUEENS,11429,40.703217,-73.73427,"(40.703217, -73.73427)",223 STREET,MURDOCK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494289,Sedan,Sedan,,, +01/12/2022,8:51,,,40.8562,-73.90523,"(40.8562, -73.90523)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4494185,Tractor Truck Diesel,,,, +01/13/2022,11:50,,,40.863018,-73.917564,"(40.863018, -73.917564)",WEST 206 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494995,Station Wagon/Sport Utility Vehicle,Stake or Rack,,, +10/22/2021,8:20,QUEENS,11363,,,,NORTHERN BOULEVARD,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4469770,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,18:30,QUEENS,11365,40.73199,-73.81081,"(40.73199, -73.81081)",,,67-08 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4494364,Sedan,,,, +01/08/2022,14:50,BROOKLYN,11209,40.62268,-74.03433,"(40.62268, -74.03433)",RIDGE BOULEVARD,88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494434,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,0:00,,,40.654434,-73.86084,"(40.654434, -73.86084)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494579,Sedan,Sedan,,, +01/12/2022,14:42,BROOKLYN,11213,40.67973,-73.9374,"(40.67973, -73.9374)",MARCUS GARVEY BOULEVARD,FULTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494130,Sedan,Sedan,,, +01/14/2022,12:55,,,40.743187,-73.97207,"(40.743187, -73.97207)",EAST 34 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4494537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,14:53,BROOKLYN,11209,40.62132,-74.028534,"(40.62132, -74.028534)",,,359 88 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4494376,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/14/2022,13:30,QUEENS,11422,40.664356,-73.734535,"(40.664356, -73.734535)",FRANCIS LEWIS BOULEVARD,246 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494522,Sedan,,,, +04/06/2022,13:32,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",ALLERTON AVENUE,SOUTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516935,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/13/2022,0:01,QUEENS,11417,40.68046,-73.84309,"(40.68046, -73.84309)",96 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4494120,Sedan,Sedan,,, +01/11/2022,13:00,,,40.651012,-73.91024,"(40.651012, -73.91024)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494796,Sedan,Ambulance,,, +01/12/2022,1:58,BRONX,10465,40.83115,-73.81692,"(40.83115, -73.81692)",,,3237 PHILIP AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493972,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,15:08,,,40.669228,-73.8962,"(40.669228, -73.8962)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494397,Station Wagon/Sport Utility Vehicle,Motorbike,,, +01/13/2022,13:13,QUEENS,11420,40.675003,-73.82435,"(40.675003, -73.82435)",114 PLACE,SUTTER AVENUE,,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,,,,4494478,Sedan,Sedan,,, +01/13/2022,17:25,QUEENS,11105,40.772488,-73.91183,"(40.772488, -73.91183)",,,23-20 35 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4494692,Sedan,,,, +01/12/2022,20:21,,,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494073,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,12:00,,,40.58388,-73.82305,"(40.58388, -73.82305)",BEACH 102 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494937,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/14/2022,12:14,QUEENS,11356,40.784187,-73.84582,"(40.784187, -73.84582)",COLLEGE POINT BOULEVARD,15 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494594,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/12/2022,10:05,QUEENS,11102,40.774284,-73.91995,"(40.774284, -73.91995)",,,24-14 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4494165,Sedan,Sedan,Sedan,, +01/11/2022,0:00,BROOKLYN,11214,40.609894,-73.996346,"(40.609894, -73.996346)",79 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494881,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,16:47,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4494463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,21:15,MANHATTAN,10020,40.758644,-73.981346,"(40.758644, -73.981346)",WEST 48 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4494430,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,14:00,BROOKLYN,11206,40.700123,-73.95041,"(40.700123, -73.95041)",,,442 MARCY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494348,Sedan,,,, +01/13/2022,21:40,,,40.74573,-73.98022,"(40.74573, -73.98022)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494856,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/14/2022,17:12,MANHATTAN,10029,40.79293,-73.94791,"(40.79293, -73.94791)",EAST 106 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494652,Sedan,Sedan,,, +01/12/2022,15:00,,,40.842335,-73.91619,"(40.842335, -73.91619)",JEROME AVENUE,,,1,0,0,0,0,0,0,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4494547,E-Bike,Sedan,,, +01/09/2022,23:50,QUEENS,11434,,,,Guy R Brewer Boulevard,BAISLEY BLVD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4494672,Sedan,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +01/12/2022,7:05,QUEENS,11368,40.738853,-73.858444,"(40.738853, -73.858444)",57 AVENUE,XENIA STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494909,Sedan,E-Scooter,,, +06/24/2021,15:30,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434650,Sedan,Sedan,,, +01/13/2022,18:30,BRONX,10458,40.870777,-73.88624,"(40.870777, -73.88624)",BRIGGS AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494505,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,12:55,MANHATTAN,10035,40.797306,-73.93446,"(40.797306, -73.93446)",1 AVENUE,EAST 118 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494527,Bike,Sedan,,, +01/13/2022,0:00,QUEENS,11411,40.695934,-73.743706,"(40.695934, -73.743706)",,,117-08 SPRINGFIELD BOULEVARD,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4494778,Sedan,Sedan,,, +01/14/2022,19:01,BROOKLYN,11235,40.5855,-73.95163,"(40.5855, -73.95163)",,,1730 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494754,Sedan,Bus,,, +01/12/2022,15:40,MANHATTAN,10001,40.7491,-73.99201,"(40.7491, -73.99201)",WEST 31 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494172,Sedan,Bus,,, +01/13/2022,11:35,,,40.807518,-73.92611,"(40.807518, -73.92611)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494872,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/13/2022,18:03,QUEENS,11691,40.59514,-73.754,"(40.59514, -73.754)",BEACH 20 STREET,SEAGIRT BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494483,Sedan,,,, +01/13/2022,20:08,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494847,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,23:30,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494232,Sedan,,,, +01/13/2022,16:40,,,40.663795,-73.99778,"(40.663795, -73.99778)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494355,Sedan,,,, +01/14/2022,12:28,QUEENS,11429,40.719902,-73.73214,"(40.719902, -73.73214)",,,95-20 222 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,21:14,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494889,Sedan,,,, +01/12/2022,14:40,BROOKLYN,11226,40.63755,-73.95865,"(40.63755, -73.95865)",,,1012 OCEAN AVENUE,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4494147,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,12:00,STATEN ISLAND,10304,40.59183,-74.10098,"(40.59183, -74.10098)",RICHMOND ROAD,GARRETSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494660,Bus,Sedan,,, +01/14/2022,17:40,MANHATTAN,10128,40.783966,-73.948555,"(40.783966, -73.948555)",,,224 EAST 95 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4495073,Station Wagon/Sport Utility Vehicle,COM,,, +01/13/2022,19:50,,,40.54959,-74.1374,"(40.54959, -74.1374)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,23:39,BROOKLYN,11207,40.658234,-73.89469,"(40.658234, -73.89469)",,,101 MALTA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494110,Sedan,Sedan,,, +01/13/2022,23:38,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494392,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,3:05,,,40.690308,-73.99881,"(40.690308, -73.99881)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Following Too Closely,,,,4494403,Sedan,AMBULANCE,,, +01/14/2022,21:09,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4494898,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +01/14/2022,13:00,,,40.897808,-73.85262,"(40.897808, -73.85262)",NEREID AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4494965,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,8:30,,,40.67831,-73.869804,"(40.67831, -73.869804)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494268,Sedan,Sedan,,, +01/13/2022,13:15,,,,,,SOUTHERN BLVD,AVENUE OF ST. JOHN,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494334,Sedan,,,, +01/12/2022,14:13,BROOKLYN,11218,40.6454,-73.97715,"(40.6454, -73.97715)",,,318 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494179,Sedan,,,, +01/14/2022,7:25,,,40.738476,-73.7991,"(40.738476, -73.7991)",170 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494490,Sedan,Sedan,,, +01/14/2022,17:00,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",SOUTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4494626,Bus,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,16:15,,,40.697903,-73.9468,"(40.697903, -73.9468)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495001,Sedan,,,, +01/14/2022,23:43,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4494712,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,8:20,STATEN ISLAND,10308,,,,CORBIN AVENUE,NAHANT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494216,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,17:06,,,40.804714,-73.95826,"(40.804714, -73.95826)",WEST 115 STREET,,,0,0,0,0,0,0,0,0,,,,,,4494559,,,,, +01/14/2022,17:45,QUEENS,11358,40.76027,-73.80401,"(40.76027, -73.80401)",162 STREET,SANFORD AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4494915,Bike,,,, +12/07/2021,16:30,BROOKLYN,11215,40.67427,-73.978775,"(40.67427, -73.978775)",,,234 6 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495046,Sedan,,,, +01/09/2022,14:42,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4494438,Sedan,,,, +01/14/2022,17:32,,,40.76242,-73.82752,"(40.76242, -73.82752)",37 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4494616,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,19:20,,,40.73491,-73.92057,"(40.73491, -73.92057)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494369,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,15:10,,,40.66626,-73.99596,"(40.66626, -73.99596)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4494869,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,18:35,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",VICTORY BOULEVARD,WOODSTOCK AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4494554,Sedan,Sedan,,, +01/13/2022,15:10,BROOKLYN,11220,40.639706,-74.01961,"(40.639706, -74.01961)",4 AVENUE,62 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494466,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,16:00,STATEN ISLAND,10306,40.575985,-74.10226,"(40.575985, -74.10226)",LINCOLN AVENUE,BOUNDARY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4494223,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,16:15,BROOKLYN,11230,40.634995,-73.96116,"(40.634995, -73.96116)",,,1705 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494792,Sedan,,,, +01/11/2022,15:30,STATEN ISLAND,10312,40.531918,-74.19175,"(40.531918, -74.19175)",HUGUENOT AVENUE,AMBOY ROAD,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Tinted Windows,,,,4494459,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,19:03,BROOKLYN,11219,40.62916,-74.01144,"(40.62916, -74.01144)",FORT HAMILTON PARKWAY,68 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494372,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/18/2021,11:51,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",EAST 187 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4399871,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/16/2021,4:07,,,40.669857,-73.95051,"(40.669857, -73.95051)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4399959,E-Bike,,,, +03/22/2021,11:00,QUEENS,11368,0,0,"(0.0, 0.0)",34 AVENUE,126 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4401027,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/15/2021,16:50,BROOKLYN,11211,40.715702,-73.95579,"(40.715702, -73.95579)",ROEBLING STREET,NORTH 6 STREET,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4401049,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/17/2021,14:00,,,,,,,,492 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4401347,Box Truck,Sedan,,, +03/23/2021,18:10,QUEENS,11369,40.76351,-73.878296,"(40.76351, -73.878296)",ASTORIA BOULEVARD,91 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4401373,Sedan,E-Bike,,, +03/23/2021,23:05,QUEENS,11372,0,0,"(0.0, 0.0)",34 AVENUE,89 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4401381,E-Bike,Sedan,,, +03/24/2021,11:49,QUEENS,11101,40.739273,-73.933716,"(40.739273, -73.933716)",HUNTERS POINT AVENUE,32 PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4401533,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/23/2021,16:56,BRONX,10457,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,BELMONT STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4401622,E-Bike,,,, +03/23/2021,16:29,QUEENS,11372,0,0,"(0.0, 0.0)",92 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4401810,Sedan,E-Bike,,, +03/20/2021,16:16,BROOKLYN,11236,40.629883,-73.895775,"(40.629883, -73.895775)",EAST 89 STREET,SEAVIEW AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4401826,Sedan,E-Bike,,, +03/25/2021,23:14,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4401891,E-Bike,Station Wagon/Sport Utility Vehicle,,, +03/23/2021,10:54,,,40.640553,-74.0043,"(40.640553, -74.0043)",51 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4401900,E-Bike,,,, +03/24/2021,11:35,,,40.629677,-73.94151,"(40.629677, -73.94151)",BROOKLYN AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4401917,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/26/2021,8:05,QUEENS,11368,0,0,"(0.0, 0.0)",,,104-05 CORONA AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4401922,E-Scooter,Sedan,,, +03/25/2021,19:25,BROOKLYN,11223,0,0,"(0.0, 0.0)",HIGHLAWN AVENUE,WEST 9 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4401986,Sedan,E-Bike,,, +01/12/2022,8:00,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4493942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2021,23:34,,,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4402049,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/13/2022,19:30,BROOKLYN,11219,40.637615,-73.98584,"(40.637615, -73.98584)",14 AVENUE,42 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4494425,Sedan,,,, +03/27/2021,13:19,BROOKLYN,11225,40.663853,-73.95194,"(40.663853, -73.95194)",,,315 EMPIRE BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4402126,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/22/2021,18:45,BROOKLYN,11212,0,0,"(0.0, 0.0)",JUNIUS STREET,PITKIN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4402180,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/27/2021,15:00,MANHATTAN,10018,40.755596,-73.9947,"(40.755596, -73.9947)",,,492 9 AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4402298,Sedan,E-Bike,,, +03/28/2021,5:40,BROOKLYN,11224,40.577015,-73.99027,"(40.577015, -73.99027)",,,2860 WEST 23 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4402321,Sedan,Sedan,,, +03/26/2021,16:35,BROOKLYN,11203,40.65368,-73.92477,"(40.65368, -73.92477)",,,133 EAST 56 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4402397,Sedan,E-Bike,,, +03/27/2021,13:40,,,40.678574,-73.916306,"(40.678574, -73.916306)",FULTON STREET,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4402429,Sedan,E-Bike,,, +03/28/2021,0:38,BRONX,10469,40.875256,-73.84342,"(40.875256, -73.84342)",KINGSLAND AVENUE,GIVAN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4402582,E-Scooter,,,, +03/23/2021,23:45,BROOKLYN,11207,0,0,"(0.0, 0.0)",NEW LOTS AVENUE,NEW JERSEY AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4402634,E-Bike,Sedan,,, +03/26/2021,15:17,,,40.8518,-73.909225,"(40.8518, -73.909225)",JEROME AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4402674,Bus,E-Bike,,, +03/27/2021,22:50,BRONX,10453,40.848328,-73.91842,"(40.848328, -73.91842)",UNIVERSITY AVENUE,BRANDT PLACE,,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4402697,E-Bike,,,, +03/29/2021,13:47,BROOKLYN,11232,40.64902,-74.00625,"(40.64902, -74.00625)",5 AVENUE,43 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4402832,Sedan,E-Scooter,,, +03/29/2021,18:22,BRONX,10458,40.861954,-73.89105,"(40.861954, -73.89105)",,,2543 WEBSTER AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4402869,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/25/2021,19:30,QUEENS,11385,40.69335,-73.90041,"(40.69335, -73.90041)",COOPER AVENUE,WYCKOFF AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4402989,E-Scooter,,,, +03/25/2021,11:15,MANHATTAN,10011,40.74555,-73.99908,"(40.74555, -73.99908)",,,309 WEST 23 STREET,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4402997,E-Scooter,,,, +03/27/2021,15:16,QUEENS,11385,40.71245,-73.91853,"(40.71245, -73.91853)",WOODWARD AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4403016,E-Bike,Sedan,,, +03/30/2021,19:58,MANHATTAN,10037,40.8122,-73.94226,"(40.8122, -73.94226)",LENOX AVENUE,WEST 132 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4403225,Sedan,E-Bike,,, +03/30/2021,17:40,BROOKLYN,11207,40.67298,-73.88852,"(40.67298, -73.88852)",SCHENCK AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4403300,E-Scooter,Sedan,,, +03/20/2021,8:45,,,40.68771,-73.845345,"(40.68771, -73.845345)",97 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4403333,Taxi,E-Bike,,, +03/24/2021,20:00,,,40.769222,-73.92221,"(40.769222, -73.92221)",NEWTOWN AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4403336,Sedan,E-Bike,,, +03/29/2021,16:45,QUEENS,11378,40.72593,-73.89652,"(40.72593, -73.89652)",BORDEN AVENUE,68 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4403382,E-Bike,Sedan,,, +03/31/2021,18:50,QUEENS,11691,40.59389,-73.77368,"(40.59389, -73.77368)",ROCKAWAY BEACH BOULEVARD,BEACH 42 STREET,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4403396,E-Bike,Station Wagon/Sport Utility Vehicle,,, +03/12/2021,15:00,,,40.677917,-73.93861,"(40.677917, -73.93861)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4403409,Sedan,E-Bike,,, +03/31/2021,20:18,BRONX,10458,40.872128,-73.88248,"(40.872128, -73.88248)",BAINBRIDGE AVENUE,EAST MOSHOLU PARKWAY SOUTH,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4403457,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/31/2021,14:06,BROOKLYN,11215,40.673397,-73.98279,"(40.673397, -73.98279)",2 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4403459,Sedan,E-Bike,,, +03/27/2021,9:55,,,,,,BELT PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4402156,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/27/2021,20:51,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",CROTONA AVENUE,EAST 187 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4403560,E-Scooter,,,, +04/01/2021,7:50,,,40.851818,-73.94186,"(40.851818, -73.94186)",WEST 181 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Pavement Slippery,,,,4403581,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/31/2021,18:38,,,40.69215,-73.86216,"(40.69215, -73.86216)",JAMAICA AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4403646,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/27/2021,17:25,,,40.83932,-73.91503,"(40.83932, -73.91503)",EAST 170 STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4403691,Sedan,E-Bike,,, +04/01/2021,10:18,BRONX,10451,40.816917,-73.92298,"(40.816917, -73.92298)",,,526 MORRIS AVENUE,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4403732,Taxi,E-Scooter,,, +04/01/2021,20:08,BRONX,10451,40.81612,-73.926636,"(40.81612, -73.926636)",PARK AVENUE,EAST 144 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4403734,Sedan,E-Bike,,, +03/25/2021,14:45,,,0,0,"(0.0, 0.0)",WASHINGTON AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4403841,E-Bike,Bike,,, +04/01/2021,12:18,BROOKLYN,11235,0,0,"(0.0, 0.0)",,,1311 AVENUE Z,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4403943,Station Wagon/Sport Utility Vehicle,E-Bike,,, +03/31/2021,14:35,BROOKLYN,11207,40.679337,-73.89483,"(40.679337, -73.89483)",JAMAICA AVENUE,ARLINGTON AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4403987,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/02/2021,10:20,BROOKLYN,11215,40.669655,-73.99253,"(40.669655, -73.99253)",3 AVENUE,12 STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4404044,E-Scooter,Sedan,,, +04/04/2021,1:40,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,0,0,Steering Failure,,,,,4404195,E-Scooter,,,, +03/31/2021,22:00,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4404243,E-Scooter,,,, +03/26/2021,20:01,,,40.639256,-73.968796,"(40.639256, -73.968796)",CONEY ISLAND AVENUE,CORTELYOU ROAD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4404289,Sedan,E-Bike,,, +04/04/2021,12:47,,,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,,,2,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4404351,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/03/2021,0:45,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4404367,Sedan,E-Bike,,, +04/03/2021,14:50,,,40.720245,-73.9444,"(40.720245, -73.9444)",MEEKER AVENUE,HUMBOLDT STREET,,1,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4404500,E-Scooter,,,, +04/03/2021,0:02,QUEENS,11372,40.751514,-73.887344,"(40.751514, -73.887344)",,,79-01 35 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4404550,Sedan,E-Bike,,, +04/02/2021,22:00,QUEENS,11372,40.75445,-73.87829,"(40.75445, -73.87829)",,,89-11 34 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4404568,Sedan,E-Bike,,, +04/05/2021,0:06,BRONX,10455,40.820824,-73.91562,"(40.820824, -73.91562)",EAST 156 STREET,MELROSE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4404632,Sedan,E-Bike,,, +04/05/2021,11:40,BRONX,10458,40.866802,-73.88444,"(40.866802, -73.88444)",WEBSTER AVENUE,EAST 199 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4404654,E-Scooter,,,, +04/04/2021,17:26,BROOKLYN,11205,40.690693,-73.95728,"(40.690693, -73.95728)",DE KALB AVENUE,FRANKLIN AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4404685,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/03/2021,12:30,,,40.69821,-73.92406,"(40.69821, -73.92406)",MYRTLE AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4404717,Sedan,E-Bike,,, +04/05/2021,16:20,BROOKLYN,11228,40.628204,-74.01286,"(40.628204, -74.01286)",70 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4404752,E-Bike,Sedan,,, +04/03/2021,20:35,QUEENS,11368,40.750717,-73.85877,"(40.750717, -73.85877)",108 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4404771,Sedan,E-Bike,,, +04/05/2021,2:30,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,7,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4404923,E-Scooter,E-Scooter,E-Scooter,E-Scooter,E-Scooter +04/06/2021,16:17,BROOKLYN,11229,40.597263,-73.95101,"(40.597263, -73.95101)",OCEAN AVENUE,AVENUE V,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4405064,Sedan,E-Scooter,,, +04/06/2021,7:45,BROOKLYN,11215,40.673965,-73.98571,"(40.673965, -73.98571)",4 AVENUE,3 STREET,,5,0,0,0,1,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4405166,Sedan,Station Wagon/Sport Utility Vehicle,Bike,E-Scooter, +04/07/2021,12:22,BROOKLYN,11226,40.646828,-73.96041,"(40.646828, -73.96041)",,,650 OCEAN AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4405309,Pick-up Truck,E-Bike,,, +04/07/2021,16:25,BROOKLYN,11236,40.641697,-73.898506,"(40.641697, -73.898506)",,,1600 ROCKAWAY PARKWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4405334,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/07/2021,21:42,BROOKLYN,11235,40.593807,-73.94062,"(40.593807, -73.94062)",NOSTRAND AVENUE,AVENUE X,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4405385,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/06/2021,8:56,MANHATTAN,10019,,,,12 AVENUE,WEST 54 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4405391,E-Scooter,,,, +04/07/2021,22:20,BRONX,10468,40.868385,-73.89416,"(40.868385, -73.89416)",EAST 196 STREET,CRESTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4405394,Sedan,E-Bike,,, +04/06/2021,21:13,BRONX,10459,40.82615,-73.89764,"(40.82615, -73.89764)",,,852 EAST 167 STREET,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4405401,Sedan,E-Bike,,, +04/07/2021,17:45,QUEENS,11103,40.758224,-73.91741,"(40.758224, -73.91741)",BROADWAY,42 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4405411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,E-Bike,, +04/07/2021,17:15,BROOKLYN,11237,40.705875,-73.9259,"(40.705875, -73.9259)",THAMES STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4405417,Sedan,Pick-up Truck,,, +03/24/2021,15:20,,,40.697918,-73.9728,"(40.697918, -73.9728)",FLUSHING AVENUE,,,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4405496,E-Scooter,,,, +04/05/2021,15:32,BRONX,10473,,,,CASTLE HILL AVENUE,CINCINATUS AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4405530,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/08/2021,18:04,,,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4405628,Sedan,E-Scooter,,, +04/08/2021,19:40,BROOKLYN,11206,40.70701,-73.946526,"(40.70701, -73.946526)",MONTROSE AVENUE,LEONARD STREET,,2,0,1,0,0,0,0,0,Unspecified,,,,,4405787,E-Bike,,,, +04/08/2021,16:42,,,40.709442,-73.9607,"(40.709442, -73.9607)",BROADWAY,ROEBLING STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4405806,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/09/2021,0:28,BRONX,10458,40.861107,-73.89028,"(40.861107, -73.89028)",EAST FORDHAM ROAD,3 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4405815,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/09/2021,11:55,BROOKLYN,11223,40.58925,-73.970924,"(40.58925, -73.970924)",,,2459 WEST 1 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4405874,Pick-up Truck,Pick-up Truck,,, +04/08/2021,15:40,MANHATTAN,10029,40.793278,-73.94876,"(40.793278, -73.94876)",,,60 EAST 106 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4405885,E-Bike,Sedan,,, +04/08/2021,22:00,BROOKLYN,11236,40.632717,-73.89138,"(40.632717, -73.89138)",EAST 95 STREET,SEAVIEW AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4405920,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/08/2021,10:30,BROOKLYN,11215,40.666443,-73.9886,"(40.666443, -73.9886)",,,526 5 AVENUE,2,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4405963,E-Scooter,,,, +04/10/2021,23:20,BROOKLYN,11220,40.642445,-74.00592,"(40.642445, -74.00592)",7 AVENUE,50 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4406054,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/07/2021,13:20,MANHATTAN,10011,40.73629,-73.994286,"(40.73629, -73.994286)",,,9 WEST 14 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4406133,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/01/2021,19:52,BROOKLYN,11235,40.575542,-73.96487,"(40.575542, -73.96487)",BRIGHTON 2 STREET,BRIGHTWATER COURT,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4406153,Pick-up Truck,E-Bike,,, +04/03/2021,17:34,MANHATTAN,10040,40.856503,-73.93277,"(40.856503, -73.93277)",BROADWAY,WEST 190 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4406290,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/10/2021,13:00,,,40.645298,-74.10466,"(40.645298, -74.10466)",RICHMOND TERRACE,SNUG HARBOR ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4406308,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/10/2021,15:37,QUEENS,11372,40.755753,-73.883514,"(40.755753, -73.883514)",NORTHERN BOULEVARD,84 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4406326,E-Scooter,Sedan,,, +04/10/2021,19:30,,,,,,PARK AVENUE,NAVY STREET,,1,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4406341,Sedan,E-Bike,,, +04/11/2021,1:40,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4406422,E-Bike,,,, +04/07/2021,18:00,,,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4406452,Sedan,E-Bike,,, +04/09/2021,0:37,QUEENS,11436,40.683342,-73.80433,"(40.683342, -73.80433)",139 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4406581,E-Scooter,Sedan,,, +04/10/2021,15:25,BROOKLYN,11249,40.716297,-73.962555,"(40.716297, -73.962555)",,,129 METROPOLITAN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4406674,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/06/2021,21:54,BROOKLYN,11207,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,COOPER STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4406704,Sedan,E-Bike,,, +04/12/2021,22:56,BRONX,10468,40.87016,-73.89098,"(40.87016, -73.89098)",GRAND CONCOURSE,EAST 198 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4406751,E-Scooter,,,, +04/12/2021,7:48,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,CHAMBERS STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4406777,E-Scooter,,,, +04/08/2021,16:20,BROOKLYN,11208,40.683693,-73.87964,"(40.683693, -73.87964)",RIDGEWOOD AVENUE,NORWOOD AVENUE,,2,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4406861,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/10/2021,23:34,BROOKLYN,11208,40.676765,-73.880516,"(40.676765, -73.880516)",LIBERTY AVENUE,BERRIMAN STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4406864,E-Scooter,,,, +01/14/2022,16:10,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,MENAHAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494688,Sedan,Sedan,,, +04/13/2021,18:50,BRONX,10459,40.827087,-73.89191,"(40.827087, -73.89191)",,,1122 SOUTHERN BOULEVARD,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4407157,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/12/2021,13:30,BROOKLYN,11210,40.61732,-73.94408,"(40.61732, -73.94408)",AVENUE N,EAST 31 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4407197,Sedan,E-Scooter,,, +04/06/2021,20:55,BROOKLYN,11230,40.613808,-73.96508,"(40.613808, -73.96508)",,,1442 EAST 9 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407290,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/14/2021,9:20,MANHATTAN,10003,40.73602,-73.98228,"(40.73602, -73.98228)",EAST 20 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407322,Sedan,E-Scooter,,, +04/14/2021,12:12,,,40.840645,-73.84205,"(40.840645, -73.84205)",WESTCHESTER AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4407328,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2021,1:59,,,40.751545,-73.87085,"(40.751545, -73.87085)",JUNCTION BOULEVARD,,,1,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4407378,Sedan,E-Bike,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/14/2021,12:28,MANHATTAN,10035,40.80124,-73.94183,"(40.80124, -73.94183)",PARK AVENUE,EAST 119 STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4407518,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/15/2021,15:48,QUEENS,11370,40.76151,-73.88361,"(40.76151, -73.88361)",85 STREET,30 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4407600,Sedan,E-Scooter,,, +04/15/2021,17:10,QUEENS,11377,40.75016,-73.90434,"(40.75016, -73.90434)",58 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407617,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/15/2021,3:45,QUEENS,11370,40.758743,-73.89069,"(40.758743, -73.89069)",77 STREET,31 AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4407667,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/09/2021,23:30,QUEENS,11377,40.757973,-73.897934,"(40.757973, -73.897934)",,,69-14 31 AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4407709,E-Scooter,,,, +04/14/2021,17:50,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4407742,E-Scooter,,,, +04/13/2021,15:18,BROOKLYN,11211,40.715385,-73.942825,"(40.715385, -73.942825)",HUMBOLDT STREET,CONSELYEA STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4407810,Sedan,E-Scooter,,, +04/16/2021,13:00,QUEENS,11101,40.749054,-73.95222,"(40.749054, -73.95222)",VERNON BOULEVARD,44 DRIVE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407835,Sedan,E-Bike,,, +04/17/2021,0:40,QUEENS,11369,40.764454,-73.8839,"(40.764454, -73.8839)",,,85-12 ASTORIA BOULEVARD,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4407916,E-Bike,E-Bike,,, +04/17/2021,11:40,QUEENS,11411,40.696373,-73.74525,"(40.696373, -73.74525)",207 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407939,E-Bike,Sedan,,, +04/17/2021,15:20,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",EAST 53 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4407983,Sedan,E-Bike,,, +04/18/2021,11:20,QUEENS,11692,40.59076,-73.80239,"(40.59076, -73.80239)",,,74-00 BEACH CHANNEL DRIVE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4408203,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,16:47,BROOKLYN,11221,40.6871,-73.92989,"(40.6871, -73.92989)",MADISON STREET,REID AVENUE,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408234,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,19:46,BROOKLYN,11215,40.6603,-73.990166,"(40.6603, -73.990166)",,,309 20 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494598,Sedan,,,, +04/18/2021,18:36,QUEENS,11375,40.72703,-73.85392,"(40.72703, -73.85392)",67 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408283,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/03/2021,17:48,MANHATTAN,10024,40.785294,-73.969345,"(40.785294, -73.969345)",WEST 86 STREET,CENTRAL PARK WEST,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494591,Sedan,Bike,,, +04/17/2021,14:40,BRONX,10459,40.8222,-73.896736,"(40.8222, -73.896736)",,,941 WESTCHESTER AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4408320,Sedan,E-Bike,,, +04/18/2021,19:50,,,40.877796,-73.86806,"(40.877796, -73.86806)",EAST GUN HILL ROAD,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4408406,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,13:12,MANHATTAN,10035,40.801918,-73.94344,"(40.801918, -73.94344)",MADISON AVENUE,EAST 119 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408503,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/17/2021,17:50,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4408507,E-Bike,,,, +04/17/2021,22:55,,,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4408527,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,10:35,,,40.61739,-73.99194,"(40.61739, -73.99194)",68 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4408537,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/18/2021,14:55,MANHATTAN,10035,40.80129,-73.9439,"(40.80129, -73.9439)",EAST 118 STREET,MADISON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408544,E-Scooter,,,, +04/18/2021,19:40,BRONX,10453,40.858707,-73.9037,"(40.858707, -73.9037)",JEROME AVENUE,EAST 183 STREET,,2,0,0,0,0,0,0,0,Unspecified,,,,,4408588,E-Bike,,,, +04/18/2021,17:00,QUEENS,11418,40.70299,-73.82519,"(40.70299, -73.82519)",126 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4408606,E-Bike,,,, +04/19/2021,9:35,QUEENS,11101,40.741028,-73.93432,"(40.741028, -73.93432)",VANDAM STREET,48 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4408610,Sedan,E-Bike,,, +04/19/2021,17:00,BROOKLYN,11204,40.608494,-73.97593,"(40.608494, -73.97593)",AVENUE P,WEST 2 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4408697,Sedan,E-Scooter,,, +04/18/2021,15:00,BROOKLYN,11220,40.646225,-74.00916,"(40.646225, -74.00916)",5 AVENUE,48 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408703,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/19/2021,22:38,QUEENS,11419,40.687706,-73.82588,"(40.687706, -73.82588)",103 AVENUE,118 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4408719,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/12/2021,22:50,QUEENS,11377,40.755733,-73.90436,"(40.755733, -73.90436)",32 AVENUE,57 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4408781,E-Scooter,Sedan,,, +04/15/2021,9:45,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4408782,Sedan,E-Scooter,,, +04/20/2021,4:00,,,40.67173,-73.87926,"(40.67173, -73.87926)",SUTTER AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4408813,E-Scooter,,,, +04/14/2021,10:35,,,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409001,Pick-up Truck,E-Scooter,,, +04/20/2021,22:41,,,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409079,Sedan,E-Bike,,, +04/20/2021,8:00,BROOKLYN,11226,40.64485,-73.96002,"(40.64485, -73.96002)",BEVERLEY ROAD,OCEAN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409139,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/20/2021,14:15,,,40.845303,-73.847115,"(40.845303, -73.847115)",WILLIAMSBRIDGE ROAD,POPLAR STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4409146,Sedan,E-Bike,,, +04/20/2021,16:20,BRONX,10460,40.840446,-73.86692,"(40.840446, -73.86692)",,,1831 EAST TREMONT AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4409316,E-Bike,,,, +04/22/2021,2:35,,,40.70481,-73.93932,"(40.70481, -73.93932)",BUSHWICK AVENUE,SEIGEL STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4409407,Sedan,E-Bike,,, +04/21/2021,16:00,,,40.6527,-73.956055,"(40.6527, -73.956055)",BEDFORD AVENUE,CATON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409413,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/17/2021,20:20,MANHATTAN,10014,40.739384,-74.00968,"(40.739384, -74.00968)",WEST STREET,GANSEVOORT STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409513,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/22/2021,17:50,QUEENS,11104,40.741364,-73.92096,"(40.741364, -73.92096)",GREENPOINT AVENUE,44 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4409674,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,0:00,QUEENS,11369,40.76699,-73.88461,"(40.76699, -73.88461)",85 STREET,23 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4409969,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/23/2021,18:45,,,40.71137,-74.00862,"(40.71137, -74.00862)",BROADWAY,PARK ROW,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410142,E-Scooter,Sedan,,, +04/25/2021,16:05,BRONX,10467,,,,EAST 213 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410537,E-Bike,,,, +04/23/2021,13:25,BROOKLYN,11211,40.713085,-73.94415,"(40.713085, -73.94415)",AINSLIE STREET,GRAHAM AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410545,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/22/2021,8:00,,,40.67834,-73.883316,"(40.67834, -73.883316)",LINWOOD STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410646,Sedan,E-Scooter,,, +04/21/2021,18:47,,,40.66747,-73.9396,"(40.66747, -73.9396)",ALBANY AVENUE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4410677,Sedan,E-Scooter,,, +04/24/2021,17:20,BROOKLYN,11225,40.663853,-73.96107,"(40.663853, -73.96107)",,,1055 WASHINGTON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4410688,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/13/2021,14:20,BROOKLYN,11238,40.68348,-73.966896,"(40.68348, -73.966896)",CLINTON AVENUE,FULTON STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410771,Sedan,E-Bike,,, +04/05/2021,20:24,BRONX,10456,40.833588,-73.91498,"(40.833588, -73.91498)",EAST 167 STREET,GRANT AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4410851,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/25/2021,17:00,MANHATTAN,10005,40.709152,-74.01055,"(40.709152, -74.01055)",LIBERTY STREET,BROADWAY,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4410864,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/23/2021,14:20,BROOKLYN,11230,40.617382,-73.965744,"(40.617382, -73.965744)",AVENUE M,EAST 9 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4410929,Sedan,E-Scooter,,, +04/27/2021,4:05,BROOKLYN,11206,40.708626,-73.94513,"(40.708626, -73.94513)",MANHATTAN AVENUE,SCHOLES STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4410940,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/26/2021,20:53,QUEENS,11432,40.70731,-73.80425,"(40.70731, -73.80425)",,,153-11 HILLSIDE AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4410993,FDNY FIRE,E-Bike,,, +04/26/2021,11:39,,,40.76803,-73.87722,"(40.76803, -73.87722)",23 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411038,E-Bike,,,, +04/27/2021,17:28,BROOKLYN,11232,40.657425,-73.99751,"(40.657425, -73.99751)",5 AVENUE,28 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411117,Sedan,E-Bike,,, +04/05/2021,22:10,MANHATTAN,10020,40.75927,-73.980896,"(40.75927, -73.980896)",AVENUE OF THE AMERICAS,WEST 49 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411220,Sedan,E-Scooter,,, +04/28/2021,0:06,BROOKLYN,11215,40.667023,-73.97484,"(40.667023, -73.97484)",PROSPECT PARK WEST,5 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411226,Sedan,E-Bike,,, +04/23/2021,21:00,MANHATTAN,10003,40.72343,-73.98836,"(40.72343, -73.98836)",,,15 1 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4411241,E-Bike,Sedan,,, +04/26/2021,17:38,,,40.7601,-73.98482,"(40.7601, -73.98482)",BROADWAY,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411249,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/13/2021,13:56,BROOKLYN,11221,40.688168,-73.92712,"(40.688168, -73.92712)",PATCHEN AVENUE,MONROE STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411365,Sedan,E-Bike,,, +04/28/2021,22:20,BRONX,10468,40.87538,-73.886185,"(40.87538, -73.886185)",GRAND CONCOURSE,EAST 205 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4411556,Sedan,E-Bike,,, +04/27/2021,21:20,BRONX,10457,40.84764,-73.901,"(40.84764, -73.901)",EAST TREMONT AVENUE,WEBSTER AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411608,Sedan,E-Scooter,,, +04/28/2021,18:30,BROOKLYN,11203,40.651108,-73.94283,"(40.651108, -73.94283)",CHURCH AVENUE,EAST 37 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4411676,E-Scooter,Tractor Truck Diesel,,, +04/22/2021,20:20,BRONX,10457,40.84764,-73.901,"(40.84764, -73.901)",EAST TREMONT AVENUE,WEBSTER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411740,E-Bike,,,, +04/29/2021,18:15,BROOKLYN,11238,40.682587,-73.962616,"(40.682587, -73.962616)",CAMBRIDGE PLACE,FULTON STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411794,Taxi,E-Scooter,,, +04/28/2021,19:36,,,40.84919,-73.91729,"(40.84919, -73.91729)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4411863,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/28/2021,12:15,BRONX,10453,40.851444,-73.91185,"(40.851444, -73.91185)",WEST TREMONT AVENUE,KINGSLAND PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4411901,Sedan,E-Bike,,, +04/29/2021,6:25,MANHATTAN,10035,40.806973,-73.937645,"(40.806973, -73.937645)",EAST 128 STREET,PARK AVENUE,,2,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4411922,Sedan,E-Bike,,, +04/30/2021,14:50,QUEENS,11375,40.71717,-73.83497,"(40.71717, -73.83497)",QUEENS BOULEVARD,76 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412063,Sedan,E-Bike,,, +04/30/2021,13:50,BRONX,10467,40.88078,-73.88347,"(40.88078, -73.88347)",JEROME AVENUE,EAST 208 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4412128,E-Bike,,,, +05/01/2021,8:50,QUEENS,11367,40.721947,-73.814445,"(40.721947, -73.814445)",150 STREET,77 ROAD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412137,Sedan,E-Bike,,, +05/01/2021,6:25,BROOKLYN,11205,40.697803,-73.969734,"(40.697803, -73.969734)",CLINTON AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4412157,Sedan,E-Bike,,, +04/28/2021,17:30,BROOKLYN,11218,40.64545,-73.97311,"(40.64545, -73.97311)",EAST 7 STREET,CHURCH AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4412378,Van,E-Bike,,, +05/02/2021,14:53,BROOKLYN,11230,40.627193,-73.965355,"(40.627193, -73.965355)",,,1119 AVENUE I,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4412491,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/02/2021,21:00,QUEENS,11373,40.74184,-73.88101,"(40.74184, -73.88101)",BROADWAY,ELMHURST AVENUE,,2,0,0,0,0,0,0,0,Pavement Slippery,,,,,4412700,E-Bike,,,, +04/26/2021,18:50,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",WESTCHESTER AVENUE,SAINT ANNS AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4412750,Taxi,E-Bike,,, +05/02/2021,17:52,BROOKLYN,11206,40.70149,-73.95193,"(40.70149, -73.95193)",LORIMER STREET,MARCY AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4412814,E-Bike,,,, +05/02/2021,21:10,MANHATTAN,10002,40.71671,-73.98917,"(40.71671, -73.98917)",GRAND STREET,ESSEX STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4413084,E-Bike,,,, +05/03/2021,11:05,QUEENS,11377,40.745476,-73.90446,"(40.745476, -73.90446)",60 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413151,Sedan,E-Bike,,, +05/04/2021,20:57,BROOKLYN,11232,40.64504,-73.99963,"(40.64504, -73.99963)",8 AVENUE,43 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413294,pickup,E-Bike,,, +05/03/2021,14:20,QUEENS,11367,40.7158,-73.824486,"(40.7158, -73.824486)",UNION TURNPIKE,134 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413296,Sedan,E-Scooter,,, +05/04/2021,15:59,BRONX,10468,40.868282,-73.90107,"(40.868282, -73.90107)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4413312,Taxi,E-Scooter,,, +05/04/2021,11:25,BROOKLYN,11226,40.657436,-73.94187,"(40.657436, -73.94187)",,,2150 BEDFORD AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413333,Sedan,E-Scooter,,, +05/04/2021,16:10,BROOKLYN,11226,40.6442,-73.96595,"(40.6442, -73.96595)",BEVERLEY ROAD,RUGBY ROAD,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4413339,Sedan,E-Bike,,, +04/30/2021,22:30,BROOKLYN,11219,40.640133,-73.99757,"(40.640133, -73.99757)",47 STREET,10 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4413506,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/30/2021,14:25,MANHATTAN,10026,40.805595,-73.95819,"(40.805595, -73.95819)",MORNINGSIDE AVENUE,WEST 116 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4413620,E-Scooter,Taxi,,, +05/05/2021,12:20,QUEENS,11101,40.750637,-73.94283,"(40.750637, -73.94283)",23 STREET,42 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413625,Pick-up Truck,E-Bike,,, +04/22/2021,10:00,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",82 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4413673,E-Bike,,,, +05/02/2021,11:55,,,40.809692,-73.94409,"(40.809692, -73.94409)",LENOX AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4413697,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/30/2021,19:58,BRONX,10468,40.86177,-73.89868,"(40.86177, -73.89868)",CRESTON AVENUE,EAST 188 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4413839,Sedan,E-Scooter,,, +05/05/2021,17:22,BROOKLYN,11215,40.671524,-73.977715,"(40.671524, -73.977715)",,,173 7 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4413862,E-Bike,Sedan,,, +04/17/2021,17:30,BROOKLYN,11237,40.69426,-73.91036,"(40.69426, -73.91036)",JEFFERSON AVENUE,KNICKERBOCKER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413883,E-Bike,Motorbike,,, +05/05/2021,19:40,BROOKLYN,11219,40.63837,-73.997665,"(40.63837, -73.997665)",49 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4413910,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/03/2021,20:45,BROOKLYN,11216,40.678543,-73.949684,"(40.678543, -73.949684)",NOSTRAND AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4413952,Sedan,E-Scooter,,, +05/03/2021,15:05,BROOKLYN,11230,40.62311,-73.96486,"(40.62311, -73.96486)",,,1409 CONEY ISLAND AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4413977,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/05/2021,18:43,MANHATTAN,10023,40.777973,-73.98216,"(40.777973, -73.98216)",AMSTERDAM AVENUE,WEST 71 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4414068,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/02/2021,10:30,,,40.678238,-73.94415,"(40.678238, -73.94415)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4414085,Sedan,E-Bike,,, +05/06/2021,16:15,BRONX,10464,40.855873,-73.79149,"(40.855873, -73.79149)",,,636 CITY ISLAND AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4414222,Sedan,E-Bike,,, +05/02/2021,14:39,,,40.70657,-73.75464,"(40.70657, -73.75464)",HOLLIS AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414251,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/07/2021,0:00,BROOKLYN,11229,40.610504,-73.95767,"(40.610504, -73.95767)",AVENUE P,EAST 16 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4414404,E-Scooter,,,, +05/06/2021,21:40,BRONX,10469,40.86786,-73.84123,"(40.86786, -73.84123)",EAST GUN HILL ROAD,ARNOW AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4414590,E-Scooter,Sedan,,, +05/06/2021,17:10,BRONX,10456,40.832115,-73.89889,"(40.832115, -73.89889)",,,1357 BOSTON ROAD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414870,E-Bike,,,, +05/07/2021,23:50,QUEENS,11368,40.757336,-73.86849,"(40.757336, -73.86849)",NORTHERN BOULEVARD,100 STREET,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414957,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/17/2021,8:04,QUEENS,11418,40.70277,-73.82608,"(40.70277, -73.82608)",HILLSIDE AVENUE,125 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4414984,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/10/2021,2:36,BROOKLYN,11235,40.585934,-73.9519,"(40.585934, -73.9519)",SHEEPSHEAD BAY ROAD,VOORHIES AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414989,Sedan,E-Bike,,, +05/06/2021,22:20,BRONX,10462,40.838497,-73.86366,"(40.838497, -73.86366)",,,1514 WHITE PLAINS ROAD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4414997,Sedan,E-Scooter,,, +05/10/2021,5:30,QUEENS,11367,40.73661,-73.81473,"(40.73661, -73.81473)",,,65-30 KISSENA BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415003,E-Bike,,,, +05/07/2021,19:00,MANHATTAN,10040,40.86155,-73.92472,"(40.86155, -73.92472)",DYCKMAN STREET,NAGLE AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415026,Sedan,E-Bike,,, +05/09/2021,16:00,BROOKLYN,11203,40.651466,-73.93618,"(40.651466, -73.93618)",CHURCH AVENUE,TROY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4415173,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/08/2021,16:22,BROOKLYN,11221,40.69808,-73.92536,"(40.69808, -73.92536)",MYRTLE AVENUE,DE KALB AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4415175,Sedan,E-Scooter,,, +05/09/2021,20:16,,,40.69821,-73.92406,"(40.69821, -73.92406)",MYRTLE AVENUE,,,1,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4415183,Sedan,E-Scooter,,, +05/11/2021,2:15,BROOKLYN,11212,40.66885,-73.91635,"(40.66885, -73.91635)",PITKIN AVENUE,STRAUSS STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4415237,E-Scooter,,,, +05/09/2021,14:00,,,40.58848,-73.991875,"(40.58848, -73.991875)",SHORE PARKWAY,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4415239,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/11/2021,3:50,QUEENS,11368,40.744804,-73.86173,"(40.744804, -73.86173)",,,47-11 102 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4415249,E-Scooter,,,, +05/10/2021,16:10,BROOKLYN,11216,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,FULTON STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415375,Sedan,E-Bike,,, +01/13/2022,13:20,BROOKLYN,11208,40.68619,-73.87622,"(40.68619, -73.87622)",CHESTNUT STREET,ETNA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494393,Ambulance,,,, +05/10/2021,16:45,BRONX,10473,40.825912,-73.857124,"(40.825912, -73.857124)",,,1994 BRUCKNER BOULEVARD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415405,Sedan,E-Bike,,, +05/09/2021,23:10,MANHATTAN,10029,40.794285,-73.95112,"(40.794285, -73.95112)",5 AVENUE,EAST 106 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415409,Sedan,E-Bike,,, +05/10/2021,15:15,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415425,Pick-up Truck,E-Scooter,,, +05/08/2021,16:55,BROOKLYN,11220,40.646294,-74.019844,"(40.646294, -74.019844)",2 AVENUE,55 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415445,Sedan,E-Bike,,, +05/11/2021,22:00,QUEENS,11368,40.74918,-73.869286,"(40.74918, -73.869286)",,,96-13 ROOSEVELT AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4415674,Sedan,E-Bike,,, +01/13/2022,6:05,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4494129,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/10/2021,22:50,MANHATTAN,10032,40.833843,-73.9385,"(40.833843, -73.9385)",WEST 160 STREET,EDGECOMBE AVENUE,,2,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4415708,E-Scooter,E-Bike,,, +05/11/2021,22:43,BROOKLYN,11220,40.63948,-74.016174,"(40.63948, -74.016174)",5 AVENUE,60 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4415734,E-Bike,Taxi,,, +05/12/2021,18:40,BRONX,10454,40.80719,-73.92431,"(40.80719, -73.92431)",WILLIS AVENUE,EAST 135 STREET,,2,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4415972,E-Scooter,Sedan,Sedan,, +05/08/2021,18:45,,,40.761223,-73.9238,"(40.761223, -73.9238)",BROADWAY,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4415982,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/12/2021,5:20,,,40.676487,-73.82133,"(40.676487, -73.82133)",ROCKAWAY BOULEVARD,115 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416085,Sedan,E-Bike,,, +05/09/2021,13:13,BRONX,10458,40.855045,-73.89045,"(40.855045, -73.89045)",3 AVENUE,LORILLARD PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4416121,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/13/2021,11:59,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",2 AVENUE,EAST 34 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416158,Sedan,E-Bike,,, +05/08/2021,23:21,MANHATTAN,10027,40.807343,-73.94445,"(40.807343, -73.94445)",,,75 WEST 125 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4416218,E-Bike,,,, +05/13/2021,23:30,MANHATTAN,10021,40.767117,-73.956505,"(40.767117, -73.956505)",1 AVENUE,EAST 71 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416299,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/14/2021,9:22,BROOKLYN,11223,40.595715,-73.96508,"(40.595715, -73.96508)",OCEAN PARKWAY,AVENUE V,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4416406,Sedan,E-Scooter,,, +05/13/2021,18:22,QUEENS,11375,40.730946,-73.84859,"(40.730946, -73.84859)",108 STREET,65 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416519,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/14/2021,16:10,QUEENS,11377,40.739574,-73.892235,"(40.739574, -73.892235)",72 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416533,E-Bike,E-Bike,,, +05/13/2021,18:28,BRONX,10468,40.861347,-73.897736,"(40.861347, -73.897736)",GRAND CONCOURSE,EAST 188 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4416591,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/15/2021,17:59,,,40.79722,-73.96993,"(40.79722, -73.96993)",WEST 100 STREET,,,2,0,0,0,0,0,0,0,Other Vehicular,Alcohol Involvement,,,,4416652,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/14/2021,21:48,BROOKLYN,11218,40.63497,-73.9682,"(40.63497, -73.9682)",,,3717 18 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416701,E-Scooter,Sedan,,, +05/15/2021,21:30,BROOKLYN,11226,40.63962,-73.95477,"(40.63962, -73.95477)",FLATBUSH AVENUE,NEWKIRK AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4416702,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/14/2021,16:15,BROOKLYN,11204,40.610844,-73.991776,"(40.610844, -73.991776)",20 AVENUE,BAY RIDGE PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416722,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/15/2021,9:30,MANHATTAN,10017,40.75386,-73.980606,"(40.75386, -73.980606)",,,509 5 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4416764,Sedan,E-Bike,,, +05/14/2021,15:30,MANHATTAN,10016,40.748146,-73.983894,"(40.748146, -73.983894)",,,16 EAST 34 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4416768,Sedan,Bus,E-Scooter,, +05/15/2021,8:15,QUEENS,11370,0,0,"(0.0, 0.0)",,,72-12 21 AVENUE,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4416826,Station Wagon/Sport Utility Vehicle,Sedan,E-Bike,, +05/13/2021,14:10,BROOKLYN,11218,,,,OCEAN PARKWAY,DITMAS AVENUE,,1,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4416906,Sedan,E-Scooter,,, +05/02/2021,14:48,MANHATTAN,10029,40.7959,-73.938576,"(40.7959, -73.938576)",,,2224 2 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4416974,Sedan,E-Scooter,,, +05/15/2021,14:40,,,40.806705,-73.952866,"(40.806705, -73.952866)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417015,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/14/2021,15:05,,,40.680676,-73.91404,"(40.680676, -73.91404)",BOYLAND STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417068,Sedan,E-Bike,,, +05/16/2021,22:05,,,40.811733,-73.9267,"(40.811733, -73.9267)",EAST 139 STREET,3 AVENUE,,7,0,0,0,0,0,7,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4417189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Bus +05/16/2021,18:57,BROOKLYN,11207,40.67258,-73.89122,"(40.67258, -73.89122)",PITKIN AVENUE,MILLER AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417215,Sedan,E-Bike,,, +05/09/2021,15:00,BRONX,10465,40.82378,-73.836426,"(40.82378, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417246,E-Bike,,,, +05/16/2021,22:29,BROOKLYN,11249,40.705967,-73.96691,"(40.705967, -73.96691)",,,570 WYTHE AVENUE,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417247,Sedan,E-Scooter,,, +05/16/2021,22:28,BROOKLYN,11222,40.724335,-73.94909,"(40.724335, -73.94909)",NASSAU AVENUE,ECKFORD STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4417265,E-Bike,,,, +05/15/2021,12:15,QUEENS,11370,40.757584,-73.886696,"(40.757584, -73.886696)",32 AVENUE,81 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417317,E-Bike,Sedan,,, +05/15/2021,22:22,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417356,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/17/2021,8:20,QUEENS,11354,40.76381,-73.82872,"(40.76381, -73.82872)",NORTHERN BOULEVARD,LEAVITT STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4417380,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/13/2021,2:30,QUEENS,11435,40.701775,-73.80794,"(40.701775, -73.80794)",SUTPHIN BOULEVARD,JAMAICA AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4417406,Sedan,E-Bike,,, +05/17/2021,14:40,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",ROGERS AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4417483,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/13/2021,2:20,BRONX,10461,40.84477,-73.846565,"(40.84477, -73.846565)",,,1515 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417505,Sedan,E-Bike,,, +05/12/2021,22:47,,,40.668358,-73.95592,"(40.668358, -73.95592)",BEDFORD AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417590,E-Bike,Sedan,,, +05/17/2021,12:00,,,40.635685,-74.012955,"(40.635685, -74.012955)",7 AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417707,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/16/2021,14:03,,,40.84247,-73.85335,"(40.84247, -73.85335)",BRONXDALE AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417721,Sedan,E-Scooter,,, +05/14/2021,21:30,BROOKLYN,11234,40.633865,-73.919815,"(40.633865, -73.919815)",EAST 59 STREET,GLENWOOD ROAD,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4417790,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/14/2021,8:15,MANHATTAN,10016,40.74833,-73.98433,"(40.74833, -73.98433)",,,349 5 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4417820,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/11/2021,0:00,MANHATTAN,10036,40.757103,-73.9862,"(40.757103, -73.9862)",,,1501 BROADWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417822,Taxi,E-Bike,,, +04/23/2021,20:06,,,40.676292,-73.92484,"(40.676292, -73.92484)",PACIFIC STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417883,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/03/2021,0:51,BROOKLYN,11213,40.67561,-73.941025,"(40.67561, -73.941025)",BERGEN STREET,REVERE PLACE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4417885,Sedan,E-Bike,,, +05/18/2021,15:51,QUEENS,11692,40.593006,-73.7934,"(40.593006, -73.7934)",,,64-11 BEACH CHANNEL DRIVE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4417932,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/18/2021,21:15,,,40.74273,-73.95412,"(40.74273, -73.95412)",VERNON BOULEVARD,50 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417937,Sedan,E-Scooter,,, +05/17/2021,16:45,,,40.672073,-73.91135,"(40.672073, -73.91135)",EAST NEW YORK AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4417987,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/18/2021,18:25,BROOKLYN,11207,40.68016,-73.893196,"(40.68016, -73.893196)",JAMAICA AVENUE,MILLER AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418041,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/18/2021,2:50,MANHATTAN,10032,40.84107,-73.93605,"(40.84107, -73.93605)",AMSTERDAM AVENUE,WEST 170 STREET,,1,0,0,0,0,0,0,0,Steering Failure,,,,,4418078,E-Scooter,,,, +05/18/2021,23:35,BROOKLYN,11221,40.685028,-73.94135,"(40.685028, -73.94135)",THROOP AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418133,Sedan,E-Bike,,, +05/18/2021,12:51,QUEENS,11106,40.76122,-73.93056,"(40.76122, -73.93056)",CRESCENT STREET,34 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418162,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/18/2021,20:59,BRONX,10466,40.8854,-73.84852,"(40.8854, -73.84852)",,,4015 LACONIA AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4418207,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/07/2021,18:30,BROOKLYN,11214,40.599335,-73.99412,"(40.599335, -73.99412)",BENSON AVENUE,BAY 32 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418224,E-Bike,,,, +05/19/2021,13:40,BRONX,10472,40.82998,-73.882385,"(40.82998, -73.882385)",BRONX RIVER AVENUE,COLGATE AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418233,Sedan,E-Bike,,, +05/20/2021,1:31,,,40.745327,-73.922066,"(40.745327, -73.922066)",43 AVENUE,,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418338,Sedan,E-Bike,,, +05/20/2021,0:01,QUEENS,11104,40.73988,-73.92431,"(40.73988, -73.92431)",GREENPOINT AVENUE,48 AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418350,Dump,E-Bike,,, +05/19/2021,12:28,BRONX,10454,40.810253,-73.91434,"(40.810253, -73.91434)",CRIMMINS AVENUE,SAINT MARYS STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4418355,Sedan,E-Bike,,, +05/19/2021,13:15,BRONX,10456,40.832733,-73.89802,"(40.832733, -73.89802)",BOSTON ROAD,JEFFERSON PLACE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4418431,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/20/2021,8:00,BROOKLYN,11215,40.667847,-73.99404,"(40.667847, -73.99404)",3 AVENUE,15 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418564,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/19/2021,22:40,MANHATTAN,10027,40.811874,-73.95736,"(40.811874, -73.95736)",,,1295 AMSTERDAM AVENUE,2,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4418570,E-Bike,,,, +05/19/2021,23:00,,,40.823845,-73.896866,"(40.823845, -73.896866)",INTERVALE AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4418610,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/09/2021,2:24,,,40.677338,-73.927536,"(40.677338, -73.927536)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4418627,E-Scooter,,,, +05/14/2021,12:45,BROOKLYN,11223,40.607323,-73.97271,"(40.607323, -73.97271)",,,1869 MC DONALD AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4418882,Sedan,E-Scooter,,, +05/14/2021,1:35,,,40.823315,-73.94901,"(40.823315, -73.94901)",WEST 142 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4418971,Taxi,E-Scooter,,, +05/22/2021,0:02,BROOKLYN,11203,40.655846,-73.94316,"(40.655846, -73.94316)",,,489 CLARKSON AVENUE,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4419025,Taxi,E-Bike,,, +05/21/2021,19:00,BRONX,10454,40.808624,-73.921776,"(40.808624, -73.921776)",,,430 EAST 138 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4419034,E-Scooter,,,, +05/22/2021,1:25,BRONX,10459,40.82406,-73.8998,"(40.82406, -73.8998)",EAST 165 STREET,PROSPECT AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4419182,Sedan,E-Bike,,, +05/20/2021,1:20,BROOKLYN,11212,40.670956,-73.91107,"(40.670956, -73.91107)",ROCKAWAY AVENUE,GLENMORE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4419218,E-Bike,Sedan,,, +05/23/2021,7:30,QUEENS,11358,40.753895,-73.79827,"(40.753895, -73.79827)",169 STREET,46 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4419224,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/23/2021,0:10,BROOKLYN,11232,40.656307,-73.99868,"(40.656307, -73.99868)",5 AVENUE,30 STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4419277,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/22/2021,18:55,QUEENS,11105,40.777958,-73.90847,"(40.777958, -73.90847)",21 AVENUE,31 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419305,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,21:30,,,,,,EAST 222 STREET,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4419327,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/20/2021,22:46,,,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419339,E-Bike,Sedan,,, +05/22/2021,18:00,,,40.88042,-73.84427,"(40.88042, -73.84427)",EAST 223 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419350,Sedan,Taxi,,, +05/22/2021,16:56,BROOKLYN,11201,40.690666,-73.98537,"(40.690666, -73.98537)",BRIDGE STREET,FULTON STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4419377,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/21/2021,18:30,BRONX,10452,40.841496,-73.92486,"(40.841496, -73.92486)",OGDEN AVENUE,WEST 170 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4419454,Sedan,E-Bike,,, +05/22/2021,16:10,QUEENS,11373,40.745285,-73.884186,"(40.745285, -73.884186)",,,81-06 BAXTER AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4419507,Sedan,E-Scooter,,, +05/20/2021,6:27,QUEENS,11419,40.691864,-73.83579,"(40.691864, -73.83579)",ATLANTIC AVENUE,110 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4419609,Sedan,E-Bike,,, +05/21/2021,14:30,BROOKLYN,11223,40.609207,-73.96419,"(40.609207, -73.96419)",,,1617 EAST 9 STREET,1,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4419630,Box Truck,E-Scooter,,, +05/22/2021,15:00,BROOKLYN,11223,40.60817,-73.96745,"(40.60817, -73.96745)",,,1650 OCEAN PARKWAY,1,0,0,0,0,0,0,0,Unspecified,,,,,4419649,Sedan,E-Bike,,, +05/23/2021,8:12,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4419866,E-Bike,,,, +05/11/2021,3:30,BROOKLYN,11221,40.696358,-73.93414,"(40.696358, -73.93414)",BROADWAY,VERNON AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4420017,Sedan,E-Bike,,, +05/24/2021,15:30,,,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420205,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/29/2021,12:27,,,40.727192,-73.89328,"(40.727192, -73.89328)",GRAND AVENUE,69 LANE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420260,Sedan,E-Bike,,, +05/10/2021,18:45,BRONX,10451,40.81572,-73.925064,"(40.81572, -73.925064)",RIDER AVENUE,EAST 144 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420431,E-Bike,Sedan,,, +05/19/2021,15:50,,,40.61021,-74.13326,"(40.61021, -74.13326)",PURDY AVENUE,MANN AVENUE,,1,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4420497,Sedan,E-Scooter,,, +05/25/2021,18:38,BRONX,10473,40.825924,-73.85705,"(40.825924, -73.85705)",,,1998 BRUCKNER BOULEVARD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420518,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/25/2021,18:00,BRONX,10469,40.87167,-73.8486,"(40.87167, -73.8486)",EAST GUN HILL ROAD,BURKE AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4420664,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/23/2021,17:45,BROOKLYN,11234,40.621563,-73.939125,"(40.621563, -73.939125)",KINGS HIGHWAY,EAST 37 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4420671,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,20:35,BROOKLYN,11205,40.689507,-73.97014,"(40.689507, -73.97014)",DE KALB AVENUE,CLERMONT AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420697,Sedan,E-Bike,,, +05/26/2021,21:40,BRONX,10455,40.814766,-73.918755,"(40.814766, -73.918755)",EAST 147 STREET,WILLIS AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4420741,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/25/2021,22:10,,,40.821384,-73.95415,"(40.821384, -73.95415)",BROADWAY,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4420742,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/23/2021,9:15,QUEENS,11354,40.776657,-73.827415,"(40.776657, -73.827415)",WHITESTONE EXPRESSWAY,25 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4420745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,20:40,BROOKLYN,11206,40.700012,-73.93607,"(40.700012, -73.93607)",BUSHWICK AVENUE,NOLL STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4420784,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/26/2021,14:40,QUEENS,11691,40.59997,-73.761665,"(40.59997, -73.761665)",FAR ROCKAWAY BOULEVARD,BAY 25 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4420881,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,1:42,MANHATTAN,10035,40.806408,-73.94016,"(40.806408, -73.94016)",MADISON AVENUE,EAST 126 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4420892,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/21/2021,12:40,QUEENS,11421,40.692646,-73.85705,"(40.692646, -73.85705)",,,87-13 JAMAICA AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4420910,Station Wagon/Sport Utility Vehicle,Sedan,E-Bike,, +05/26/2021,16:43,BRONX,10472,40.82832,-73.88281,"(40.82832, -73.88281)",,,1441 WESTCHESTER AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420922,Sedan,E-Scooter,,, +05/27/2021,0:14,BRONX,10469,40.87514,-73.85123,"(40.87514, -73.85123)",,,3377 BOSTON ROAD,4,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4420934,Sedan,E-Scooter,Sedan,Sedan,Sedan +05/25/2021,22:05,MANHATTAN,10002,40.710556,-73.99415,"(40.710556, -73.99415)",MARKET SLIP,CHERRY STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421006,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/21/2021,23:14,BROOKLYN,11233,40.670116,-73.92248,"(40.670116, -73.92248)",SAINT JOHNS PLACE,RALPH AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421022,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/27/2021,12:30,,,40.677338,-73.927536,"(40.677338, -73.927536)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4421073,E-Bike,Sedan,,, +05/22/2021,0:00,,,40.685947,-73.80224,"(40.685947, -73.80224)",142 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421128,Sedan,E-Bike,,, +05/27/2021,20:15,,,40.68888,-73.960014,"(40.68888, -73.960014)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421138,E-Bike,Station Wagon/Sport Utility Vehicle,,, +05/26/2021,13:01,QUEENS,11373,40.743755,-73.87926,"(40.743755, -73.87926)",ELMHURST AVENUE,JUDGE STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4421233,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/26/2021,18:18,QUEENS,11373,40.744263,-73.876755,"(40.744263, -73.876755)",HAMPTON STREET,WHITNEY AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4421239,Sedan,E-Bike,,, +05/27/2021,16:17,BRONX,10472,40.83413,-73.87475,"(40.83413, -73.87475)",EAST 174 STREET,HARROD AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4421263,Sedan,E-Bike,,, +05/28/2021,4:00,BRONX,10460,40.839798,-73.873604,"(40.839798, -73.873604)",EAST TREMONT AVENUE,MORRIS PARK AVENUE,,2,0,0,0,0,0,0,0,Pavement Defective,,,,,4421286,E-Bike,,,, +05/26/2021,18:08,QUEENS,11378,40.727432,-73.90713,"(40.727432, -73.90713)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4421460,Sedan,,,, +05/16/2021,21:21,QUEENS,11377,40.73437,-73.89602,"(40.73437, -73.89602)",,,51-25 69 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4421464,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/21/2021,0:00,,,40.755405,-73.97949,"(40.755405, -73.97949)",5 AVENUE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4421722,E-Scooter,Sedan,,, +05/16/2021,0:00,QUEENS,11378,40.727432,-73.90713,"(40.727432, -73.90713)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4421739,Station Wagon/Sport Utility Vehicle,,,, +05/27/2021,4:32,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",TOMPKINS AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421774,Sedan,E-Bike,,, +05/25/2021,13:30,BROOKLYN,11213,40.66911,-73.93946,"(40.66911, -73.93946)",,,318 ALBANY AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421806,Sedan,E-Scooter,,, +05/28/2021,20:00,,,40.820515,-73.930695,"(40.820515, -73.930695)",EXTERIOR STREET,,,0,1,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4421887,Sedan,E-Bike,,, +05/28/2021,19:10,QUEENS,11368,40.74188,-73.85989,"(40.74188, -73.85989)",102 STREET,RADCLIFF AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4421938,E-Bike,,,, +05/30/2021,1:05,,,40.66015,-73.85333,"(40.66015, -73.85333)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,Unsafe Speed,,,4422012,Pick-up Truck,Sedan,Sedan,, +05/27/2021,19:40,BROOKLYN,11211,40.71015,-73.96302,"(40.71015, -73.96302)",,,156 BROADWAY,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4422104,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/19/2021,9:16,BROOKLYN,11230,40.620296,-73.96142,"(40.620296, -73.96142)",EAST 14 STREET,AVENUE L,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422121,Sedan,E-Scooter,,, +05/28/2021,15:30,BRONX,10455,40.81768,-73.90406,"(40.81768, -73.90406)",,,809 EAST 156 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422131,Sedan,E-Bike,,, +05/27/2021,9:10,MANHATTAN,10026,40.801285,-73.95394,"(40.801285, -73.95394)",7 AVENUE,WEST 113 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4422605,E-Scooter,,,, +05/31/2021,13:26,,,40.8188,-73.95603,"(40.8188, -73.95603)",WEST 133 STREET,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4422619,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,14:48,BRONX,10473,40.818268,-73.86998,"(40.818268, -73.86998)",METCALF AVENUE,SEWARD AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4422629,E-Bike,Motorbike,,, +06/01/2021,17:25,,,40.69313,-73.96984,"(40.69313, -73.96984)",MYRTLE AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4422660,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/01/2021,10:42,MANHATTAN,10001,40.747276,-73.989624,"(40.747276, -73.989624)",WEST 30 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4422671,Sedan,E-Scooter,,, +06/01/2021,17:35,BROOKLYN,11230,40.625595,-73.9576,"(40.625595, -73.9576)",AVENUE J,EAST 19 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4422740,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +05/31/2021,18:05,QUEENS,11418,40.697403,-73.83641,"(40.697403, -73.83641)",JAMAICA AVENUE,112 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4422788,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/30/2021,21:49,BROOKLYN,11212,40.659027,-73.90801,"(40.659027, -73.90801)",,,841 ROCKAWAY AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4422850,E-Bike,,,, +06/02/2021,16:45,MANHATTAN,10017,40.75076,-73.96843,"(40.75076, -73.96843)",EAST 45 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423022,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/02/2021,19:15,,,40.791733,-73.84792,"(40.791733, -73.84792)",COLLEGE PLACE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423033,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/02/2021,21:33,BROOKLYN,11236,40.62896,-73.89721,"(40.62896, -73.89721)",SEAVIEW AVENUE,EAST 87 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423039,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/01/2021,10:25,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",9 AVENUE,WEST 44 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4423121,E-Scooter,,,, +06/02/2021,19:02,BRONX,10457,40.845966,-73.89224,"(40.845966, -73.89224)",EAST TREMONT AVENUE,HUGHES AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4423142,E-Bike,,,, +06/01/2021,16:27,BRONX,10475,40.86917,-73.82477,"(40.86917, -73.82477)",,,2140 BARTOW AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423153,E-Bike,Sedan,,, +06/02/2021,17:50,QUEENS,11377,40.74743,-73.90359,"(40.74743, -73.90359)",39 AVENUE,60 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423310,Sedan,E-Scooter,,, +06/03/2021,18:28,QUEENS,11417,40.67332,-73.8464,"(40.67332, -73.8464)",SITKA STREET,PITKIN AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423325,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/02/2021,15:43,,,40.826515,-73.917946,"(40.826515, -73.917946)",MORRIS AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423375,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/03/2021,9:00,QUEENS,11428,40.722466,-73.73692,"(40.722466, -73.73692)",SPRINGFIELD BOULEVARD,93 AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423393,Sedan,E-Bike,,, +06/03/2021,18:10,BRONX,10456,40.82482,-73.90625,"(40.82482, -73.90625)",EAST 164 STREET,CAULDWELL AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423440,Sedan,E-Scooter,,, +06/02/2021,23:26,BRONX,10459,40.820305,-73.89083,"(40.820305, -73.89083)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423482,E-Bike,Sedan,,, +05/31/2021,23:26,BROOKLYN,11210,40.628944,-73.936676,"(40.628944, -73.936676)",,,1810 ALBANY AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4423506,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/04/2021,19:06,BROOKLYN,11232,40.65218,-74.00996,"(40.65218, -74.00996)",42 STREET,3 AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423529,Sedan,E-Bike,,, +06/04/2021,18:30,BROOKLYN,11215,40.669785,-73.9858,"(40.669785, -73.9858)",5 AVENUE,8 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4423544,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/03/2021,15:08,BROOKLYN,11249,,,,,,1 WILLIAMSBURG BRIDGE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4423573,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/05/2021,11:30,QUEENS,11369,40.762657,-73.87326,"(40.762657, -73.87326)",ASTORIA BOULEVARD,96 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4423589,E-Bike,Sedan,,, +06/05/2021,17:14,MANHATTAN,10018,40.75469,-73.99536,"(40.75469, -73.99536)",9 AVENUE,WEST 36 STREET,,1,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4423786,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/02/2021,13:55,QUEENS,11101,40.750977,-73.934746,"(40.750977, -73.934746)",NORTHERN BOULEVARD,40 ROAD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4423803,E-Scooter,E-Bike,,, +06/06/2021,11:57,QUEENS,11106,40.763523,-73.92176,"(40.763523, -73.92176)",,,33-01 31 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4423872,Sedan,E-Scooter,,, +06/02/2021,7:40,,,40.679073,-73.92527,"(40.679073, -73.92527)",FULTON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4423873,Sedan,E-Scooter,,, +06/06/2021,11:35,,,40.5743,-73.98867,"(40.5743, -73.98867)",SURF AVENUE,WEST 22 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4423876,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/06/2021,6:22,MANHATTAN,10040,40.85186,-73.92816,"(40.85186, -73.92816)",WEST 187 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4423950,Sedan,Sedan,,, +06/01/2021,10:12,,,40.67828,-73.958855,"(40.67828, -73.958855)",DEAN STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4423973,E-Bike,,,, +06/04/2021,16:00,BROOKLYN,11211,40.71545,-73.94217,"(40.71545, -73.94217)",CONSELYEA STREET,WOODPOINT ROAD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424070,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/01/2021,17:50,MANHATTAN,10032,40.83328,-73.93916,"(40.83328, -73.93916)",EDGECOMBE AVENUE,WEST 159 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4424091,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/02/2021,1:50,MANHATTAN,10032,40.83449,-73.940056,"(40.83449, -73.940056)",WEST 160 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424098,Taxi,E-Bike,,, +05/31/2021,23:15,QUEENS,11368,,,,NORTHERN BOULEVARD,ASTORIA BOULEVARD SOUTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4424203,Motorcycle,,,, +06/06/2021,13:38,QUEENS,11420,40.682503,-73.82131,"(40.682503, -73.82131)",109 AVENUE,120 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424285,Sedan,E-Bike,,, +06/06/2021,19:40,,,40.823833,-73.87807,"(40.823833, -73.87807)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4424389,E-Scooter,,,, +06/07/2021,14:05,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,EAST 57 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424512,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,0:04,,,40.68488,-73.92311,"(40.68488, -73.92311)",RALPH AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4424528,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/05/2021,14:45,BROOKLYN,11234,40.63512,-73.929634,"(40.63512, -73.929634)",EAST 49 STREET,GLENWOOD ROAD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4424551,E-Bike,Sedan,,, +06/06/2021,22:19,BROOKLYN,11204,40.616127,-73.98986,"(40.616127, -73.98986)",68 STREET,19 AVENUE,,2,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,,,4424632,Sedan,E-Bike,,, +06/07/2021,0:00,BRONX,10468,,,,WEST FORDHAM ROAD,UNIVERSITY HEIGHTS BRIDGE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424685,E-Bike,,,, +06/07/2021,8:17,BROOKLYN,11249,40.705547,-73.967865,"(40.705547, -73.967865)",,,525 KENT AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424731,E-Scooter,Bus,,, +06/08/2021,4:16,QUEENS,11368,40.74631,-73.86827,"(40.74631, -73.86827)",JUNCTION BOULEVARD,42 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4424742,E-Bike,Sedan,,, +06/07/2021,18:07,MANHATTAN,10003,40.735844,-73.993256,"(40.735844, -73.993256)",,,4 EAST 14 STREET,2,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4424829,E-Scooter,,,, +06/07/2021,12:24,BROOKLYN,11234,40.63147,-73.91955,"(40.63147, -73.91955)",EAST 59 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4424878,Sedan,E-Bike,,, +06/08/2021,7:30,QUEENS,11693,40.603622,-73.819954,"(40.603622, -73.819954)",,,12-30 CROSS BAY BOULEVARD,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4424914,E-Scooter,,,, +06/08/2021,13:00,BROOKLYN,11214,40.583664,-73.98656,"(40.583664, -73.98656)",BAY 52 STREET,CROPSEY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4425070,Station Wagon/Sport Utility Vehicle,E-Bike,,, +05/27/2021,16:19,,,40.802467,-73.958694,"(40.802467, -73.958694)",MANHATTAN AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4425093,E-Scooter,,,, +06/03/2021,21:33,,,40.799458,-73.95154,"(40.799458, -73.95154)",LENOX AVENUE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4425097,Sedan,E-Bike,,, +05/26/2021,9:44,,,40.700245,-73.92089,"(40.700245, -73.92089)",KNICKERBOCKER AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4425152,E-Scooter,E-Bike,,, +06/09/2021,13:00,BROOKLYN,11249,40.699177,-73.9605,"(40.699177, -73.9605)",KENT AVENUE,WALLABOUT STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4425333,Sedan,E-Scooter,,, +05/27/2021,16:00,MANHATTAN,10075,40.77091,-73.95078,"(40.77091, -73.95078)",,,1472 YORK AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4425368,E-Scooter,,,, +06/10/2021,2:45,,,40.767117,-73.956505,"(40.767117, -73.956505)",EAST 71 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4425374,AMBULANCE,E-Scooter,,, +05/23/2021,16:15,QUEENS,11370,40.75894,-73.88869,"(40.75894, -73.88869)",,,79-06 31 AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4425505,E-Bike,,,, +06/06/2021,16:29,QUEENS,11421,40.698196,-73.84949,"(40.698196, -73.84949)",98 STREET,PARK LANE SOUTH,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4425600,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/06/2021,16:15,,,40.72952,-74.00514,"(40.72952, -74.00514)",CARMINE STREET,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4425633,Taxi,,,, +06/09/2021,17:46,BROOKLYN,11209,40.628563,-74.028984,"(40.628563, -74.028984)",3 AVENUE,79 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4425692,Sedan,E-Bike,,, +05/25/2021,16:30,BROOKLYN,11215,40.666134,-73.99225,"(40.666134, -73.99225)",16 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4425782,Sedan,E-Bike,,, +05/11/2021,13:30,,,40.682373,-73.96162,"(40.682373, -73.96162)",GRAND AVENUE,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4425795,E-Bike,Sedan,,, +06/11/2021,16:28,BROOKLYN,11220,40.645348,-74.01375,"(40.645348, -74.01375)",4 AVENUE,52 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4425882,E-Bike,,,, +06/11/2021,12:14,BROOKLYN,11228,40.61185,-74.010254,"(40.61185, -74.010254)",86 STREET,BAY 8 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4425897,Pick-up Truck,E-Bike,,, +05/25/2021,11:57,,,40.88082,-73.90344,"(40.88082, -73.90344)",BROADWAY,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426015,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/11/2021,16:08,,,40.83,-73.91812,"(40.83, -73.91812)",EAST 165 STREET,,,1,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4426116,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/09/2021,22:56,BROOKLYN,11236,40.640583,-73.91894,"(40.640583, -73.91894)",FOSTER AVENUE,EAST 80 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4426127,Sedan,E-Bike,,, +06/12/2021,17:35,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,1,0,0,0,0,0,0,0,Outside Car Distraction,Passing Too Closely,,,,4426248,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/11/2021,21:51,BROOKLYN,11226,40.648643,-73.955765,"(40.648643, -73.955765)",BEDFORD AVENUE,SNYDER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426342,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/11/2021,17:24,BRONX,10457,40.839676,-73.90011,"(40.839676, -73.90011)",3 AVENUE,EAST 172 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426343,E-Bike,Sedan,,, +06/10/2021,21:33,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",METROPOLITAN AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426537,Sedan,E-Bike,,, +06/08/2021,22:05,BROOKLYN,11216,40.678963,-73.94965,"(40.678963, -73.94965)",NOSTRAND AVENUE,HERKIMER PLACE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426546,E-Bike,Sedan,,, +05/30/2021,23:19,QUEENS,11101,40.753593,-73.92338,"(40.753593, -73.92338)",STEINWAY STREET,36 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426554,Sedan,E-Bike,,, +06/13/2021,19:00,BROOKLYN,11237,40.704662,-73.92891,"(40.704662, -73.92891)",,,1081 FLUSHING AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4426668,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/13/2021,19:35,BROOKLYN,11206,40.7088,-73.95077,"(40.7088, -73.95077)",UNION AVENUE,STAGG STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4426669,Sedan,E-Bike,,, +06/11/2021,13:50,BRONX,10457,40.844833,-73.909386,"(40.844833, -73.909386)",MORRIS AVENUE,EAST 174 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4426766,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,19:20,BRONX,10455,40.81922,-73.91062,"(40.81922, -73.91062)",EAST 156 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426777,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/05/2021,12:50,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",EAST 149 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4426788,Sedan,E-Bike,,, +06/12/2021,18:20,QUEENS,11420,40.679806,-73.823746,"(40.679806, -73.823746)",,,116-12 111 AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4426810,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/10/2021,20:30,BROOKLYN,11204,40.628494,-73.98282,"(40.628494, -73.98282)",OLD NEW UTRECHT ROAD,50 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Traffic Control Disregarded,,,,4426836,Sedan,E-Bike,,, +06/12/2021,11:10,,,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4426858,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,14:59,,,40.636024,-74.13477,"(40.636024, -74.13477)",CASTLETON AVENUE,PORT RICHMOND AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4426883,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/11/2021,15:04,,,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4426992,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/13/2021,14:45,,,40.852806,-73.90477,"(40.852806, -73.90477)",EAST BURNSIDE AVENUE,CRESTON AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4427017,E-Bike,Sedan,,, +06/14/2021,17:26,,,40.63695,-74.022484,"(40.63695, -74.022484)",67 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4427159,E-Bike,Sedan,,, +06/14/2021,15:10,,,40.65904,-73.87593,"(40.65904, -73.87593)",ELTON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4427263,Sedan,E-Bike,,, +06/04/2021,13:23,QUEENS,11367,40.726887,-73.83097,"(40.726887, -73.83097)",,,70-01 PARK DRIVE EAST,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4427334,E-Bike,Sedan,,, +06/13/2021,13:20,QUEENS,11435,40.698406,-73.80647,"(40.698406, -73.80647)",95 AVENUE,SUTPHIN BOULEVARD,,2,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4427385,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/14/2021,16:40,QUEENS,11106,40.763733,-73.9414,"(40.763733, -73.9414)",VERNON BOULEVARD,35 AVENUE,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4427636,Sedan,E-Bike,,, +05/28/2021,8:25,,,40.81401,-73.94466,"(40.81401, -73.94466)",WEST 133 STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4427715,Sedan,E-Bike,,, +06/16/2021,1:43,,,40.899628,-73.84435,"(40.899628, -73.84435)",WILDER AVENUE,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4427753,Motorcycle,,,, +06/16/2021,19:57,QUEENS,11354,40.759678,-73.83236,"(40.759678, -73.83236)",39 AVENUE,PRINCE STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428002,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/15/2021,21:30,QUEENS,11372,40.754856,-73.88524,"(40.754856, -73.88524)",,,33-33 82 STREET,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4428042,E-Bike,,,, +06/15/2021,22:35,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",108 STREET,34 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4428047,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/17/2021,20:00,,,40.697853,-73.93325,"(40.697853, -73.93325)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,,,,4428348,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/14/2021,15:20,BROOKLYN,11232,40.646927,-74.00126,"(40.646927, -74.00126)",7 AVENUE,42 STREET,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428495,E-Bike,E-Scooter,,, +06/18/2021,16:23,BROOKLYN,11207,40.66699,-73.88978,"(40.66699, -73.88978)",DUMONT AVENUE,MILLER AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4428614,E-Bike,,,, +06/18/2021,21:04,BROOKLYN,11222,40.725433,-73.951744,"(40.725433, -73.951744)",NORMAN AVENUE,MANHATTAN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428625,E-Bike,,,, +06/18/2021,13:00,BROOKLYN,11213,40.666435,-73.94249,"(40.666435, -73.94249)",,,358 KINGSTON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4428670,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,16:50,,,40.652115,-73.916664,"(40.652115, -73.916664)",AVENUE A,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4428772,E-Bike,Sedan,,, +06/19/2021,18:00,BROOKLYN,11212,40.669125,-73.91451,"(40.669125, -73.91451)",PITKIN AVENUE,AMBOY STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4428907,Sedan,E-Bike,,, +06/19/2021,0:38,BROOKLYN,11213,40.665535,-73.93699,"(40.665535, -73.93699)",TROY AVENUE,CROWN STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429121,Sedan,E-Bike,,, +06/20/2021,19:45,QUEENS,11355,40.75425,-73.827835,"(40.75425, -73.827835)",MAIN STREET,FRANKLIN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429146,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/20/2021,23:45,BROOKLYN,11232,40.647488,-74.00067,"(40.647488, -74.00067)",7 AVENUE,41 STREET,,2,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4429159,Sedan,E-Bike,,, +06/20/2021,22:00,BRONX,10452,40.8382,-73.92371,"(40.8382, -73.92371)",WEST 168 STREET,WOODYCREST AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429229,Sedan,E-Bike,,, +06/17/2021,18:30,QUEENS,11373,40.74084,-73.879654,"(40.74084, -73.879654)",,,83-17 BROADWAY,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4429246,Sedan,E-Bike,,, +06/20/2021,20:20,,,40.6967,-73.91031,"(40.6967, -73.91031)",PUTNAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429471,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/19/2021,14:15,MANHATTAN,10019,40.759842,-73.984184,"(40.759842, -73.984184)",WEST 48 STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4429683,Sedan,E-Bike,,, +06/11/2021,12:39,,,40.821266,-73.86389,"(40.821266, -73.86389)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4429750,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/12/2021,19:40,QUEENS,11368,40.752766,-73.864204,"(40.752766, -73.864204)",,,37-56 103 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4429835,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/19/2021,11:49,BROOKLYN,11220,40.648705,-74.010254,"(40.648705, -74.010254)",46 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429837,Sedan,E-Bike,,, +06/21/2021,20:54,BRONX,10455,40.818993,-73.909744,"(40.818993, -73.909744)",EAST 156 STREET,EAGLE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4429954,Sedan,E-Bike,,, +06/21/2021,3:12,MANHATTAN,10037,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,LENOX AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430133,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/23/2021,6:00,QUEENS,11104,40.74348,-73.921486,"(40.74348, -73.921486)",QUEENS BOULEVARD,43 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430226,Sedan,E-Bike,,, +06/23/2021,15:38,BROOKLYN,11234,40.6274,-73.93168,"(40.6274, -73.93168)",,,1363 EAST 46 STREET,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4430237,E-Bike,,,, +06/23/2021,17:21,BROOKLYN,11229,40.603443,-73.94732,"(40.603443, -73.94732)",,,4040 BEDFORD AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430260,Sedan,E-Bike,,, +06/23/2021,20:29,,,40.61796,-73.99138,"(40.61796, -73.99138)",67 STREET,18 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4430334,Station Wagon/Sport Utility Vehicle,E-Bike,Sedan,, +06/22/2021,14:25,BROOKLYN,11217,40.681854,-73.98004,"(40.681854, -73.98004)",4 AVENUE,SAINT MARKS PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4430340,E-Bike,Sedan,,, +06/18/2021,9:15,,,40.702675,-73.93396,"(40.702675, -73.93396)",EVERGREEN AVENUE,,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4430366,E-Bike,,,, +06/23/2021,7:34,MANHATTAN,10037,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,LENOX AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430396,Taxi,E-Bike,,, +06/17/2021,17:15,QUEENS,11102,40.77096,-73.92143,"(40.77096, -73.92143)",ASTORIA BOULEVARD,27 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430422,Convertible,E-Bike,,, +06/23/2021,23:10,BROOKLYN,11220,40.645348,-74.01375,"(40.645348, -74.01375)",52 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4430434,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/16/2021,17:00,BROOKLYN,11210,40.624798,-73.94265,"(40.624798, -73.94265)",AVENUE K,EAST 34 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430509,Sedan,E-Bike,,, +01/06/2022,17:30,BROOKLYN,11216,40.68086,-73.95441,"(40.68086, -73.95441)",FULTON STREET,SPENCER PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494946,Sedan,,,, +06/23/2021,14:10,,,40.61384,-73.981445,"(40.61384, -73.981445)",65 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4430784,Sedan,E-Bike,,, +06/19/2021,12:48,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4428737,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/13/2022,8:22,,,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4494282,Station Wagon/Sport Utility Vehicle,Bus,,, +06/23/2021,14:34,,,40.840645,-73.84205,"(40.840645, -73.84205)",EAST TREMONT AVENUE,WESTCHESTER AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4430882,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/18/2021,21:16,,,40.83661,-73.92234,"(40.83661, -73.92234)",JEROME AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4430899,E-Bike,Sedan,,, +06/26/2021,21:30,QUEENS,11372,40.754612,-73.87667,"(40.754612, -73.87667)",34 AVENUE,91 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431431,Sedan,E-Bike,,, +06/26/2021,23:05,,,40.67363,-73.95401,"(40.67363, -73.95401)",BEDFORD AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431595,E-Bike,,,, +06/28/2021,0:22,BRONX,10467,40.87129,-73.88024,"(40.87129, -73.88024)",HULL AVENUE,EAST MOSHOLU PARKWAY NORTH,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4431633,Taxi,E-Bike,,, +06/24/2021,11:00,,,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4431655,E-Bike,Sedan,,, +06/26/2021,11:21,BROOKLYN,11208,40.675053,-73.87436,"(40.675053, -73.87436)",PITKIN AVENUE,CRYSTAL STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4431701,Sedan,E-Bike,,, +06/26/2021,11:50,BROOKLYN,11215,40.672768,-73.98672,"(40.672768, -73.98672)",4 AVENUE,5 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4431717,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,7:15,QUEENS,11373,40.74847,-73.870026,"(40.74847, -73.870026)",WARREN STREET,40 ROAD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4431842,Sedan,E-Bike,,, +06/13/2021,13:24,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,UTICA AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4431871,E-Bike,Sedan,,, +06/27/2021,21:57,QUEENS,11104,40.745224,-73.921135,"(40.745224, -73.921135)",43 STREET,43 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4431918,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/22/2021,7:50,BROOKLYN,11211,40.710644,-73.95814,"(40.710644, -73.95814)",,,181 HAVEMEYER STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4432005,Bus,E-Bike,,, +06/28/2021,14:23,,,40.675632,-73.89878,"(40.675632, -73.89878)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4432105,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2021,13:30,,,40.683502,-73.91152,"(40.683502, -73.91152)",BROADWAY,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432156,Taxi,E-Bike,,, +06/27/2021,14:42,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4432172,E-Bike,,,, +06/27/2021,2:30,BROOKLYN,11234,40.621216,-73.93539,"(40.621216, -73.93539)",FLATBUSH AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4432230,Sedan,E-Bike,,, +06/29/2021,11:10,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE,FULTON STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432283,Sedan,E-Bike,,, +06/27/2021,17:30,QUEENS,11375,40.72703,-73.85392,"(40.72703, -73.85392)",QUEENS BOULEVARD,67 AVENUE,,2,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432360,Sedan,E-Bike,,, +06/28/2021,17:11,BRONX,10455,40.818146,-73.89929,"(40.818146, -73.89929)",LONGWOOD AVENUE,DAWSON STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432371,Sedan,E-Bike,,, +06/29/2021,15:25,,,40.690002,-73.92413,"(40.690002, -73.92413)",QUINCY STREET,,,1,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4432407,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/25/2021,16:35,BRONX,10454,40.812263,-73.92059,"(40.812263, -73.92059)",WILLIS AVENUE,EAST 143 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4432437,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/28/2021,13:00,BRONX,10458,40.856777,-73.891106,"(40.856777, -73.891106)",EAST 186 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4432524,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,9:00,QUEENS,11434,40.683777,-73.76975,"(40.683777, -73.76975)",BAISLEY BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4432658,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/29/2021,15:00,,,40.715763,-73.74654,"(40.715763, -73.74654)",JAMAICA AVENUE,212 STREET,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4432697,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,19:40,BROOKLYN,11213,40.672516,-73.93356,"(40.672516, -73.93356)",PARK PLACE,SCHENECTADY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4432726,Sedan,E-Bike,Station Wagon/Sport Utility Vehicle,, +06/30/2021,10:45,BRONX,10453,40.846893,-73.92055,"(40.846893, -73.92055)",WEST 174 STREET,UNIVERSITY AVENUE,,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4432846,E-Bike,,,, +06/24/2021,14:05,BROOKLYN,11214,40.59781,-73.99938,"(40.59781, -73.99938)",CROPSEY AVENUE,BAY 29 STREET,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4432949,Sedan,E-Bike,,, +06/29/2021,19:20,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433021,E-Bike,Sedan,,, +06/29/2021,12:36,QUEENS,11385,40.703133,-73.85533,"(40.703133, -73.85533)",,,82-40 WOODHAVEN BOULEVARD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4433071,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/01/2021,12:10,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",EAST 179 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4433227,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/12/2022,5:30,QUEENS,11435,40.709118,-73.81822,"(40.709118, -73.81822)",,,138-38 84 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494065,Sedan,Garbage or Refuse,,, +01/14/2022,18:00,BRONX,10469,40.87182,-73.861374,"(40.87182, -73.861374)",BRONXWOOD AVENUE,SOUTH OAK DRIVE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494952,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/01/2022,3:35,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4494643,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,20:43,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4495128,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/14/2022,11:15,QUEENS,11429,40.711006,-73.729675,"(40.711006, -73.729675)",225 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494667,Sedan,Sedan,,, +01/09/2022,0:03,MANHATTAN,10034,40.865105,-73.91846,"(40.865105, -73.91846)",POST AVENUE,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494978,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,8:20,MANHATTAN,10024,40.787003,-73.97552,"(40.787003, -73.97552)",WEST 85 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494586,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,11:30,QUEENS,11415,40.705784,-73.8229,"(40.705784, -73.8229)",,,84-16 130 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494839,Sedan,,,, +01/12/2022,8:58,STATEN ISLAND,10305,40.617134,-74.06582,"(40.617134, -74.06582)",,,210 EDGEWATER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494275,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,15:40,MANHATTAN,10017,40.751892,-73.9676,"(40.751892, -73.9676)",EAST 47 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4494728,Sedan,,,, +01/12/2022,19:40,MANHATTAN,10034,40.86131,-73.92124,"(40.86131, -73.92124)",WEST 202 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4494994,Sedan,Sedan,Bus,, +01/13/2022,17:57,BRONX,10466,40.893623,-73.85525,"(40.893623, -73.85525)",EAST 234 STREET,BYRON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494957,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,4:22,BROOKLYN,11233,40.678783,-73.91094,"(40.678783, -73.91094)",ROCKAWAY AVENUE,SOMERS STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494774,Sedan,,,, +01/14/2022,6:25,,,40.755398,-73.77654,"(40.755398, -73.77654)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494534,Sedan,Tractor Truck Gasoline,,, +01/13/2022,10:00,QUEENS,11368,40.740276,-73.848595,"(40.740276, -73.848595)",,,111-26 CORONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494407,Sedan,,,, +01/14/2022,18:09,QUEENS,11692,40.592724,-73.798386,"(40.592724, -73.798386)",,,69-10 BEACH CHANNEL DRIVE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494936,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,16:55,MANHATTAN,10025,40.794052,-73.970375,"(40.794052, -73.970375)",AMSTERDAM AVENUE,WEST 96 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494351,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,12:40,BROOKLYN,11225,40.66103,-73.94265,"(40.66103, -73.94265)",,,527 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,Unspecified,,4494664,Taxi,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/13/2022,0:04,BRONX,10453,40.858387,-73.90279,"(40.858387, -73.90279)",EAST 183 STREET,WALTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494183,Sedan,Sedan,,, +01/14/2022,8:00,BROOKLYN,11214,40.59536,-74.00063,"(40.59536, -74.00063)",,,8923 BAY PARKWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494882,Sedan,,,, +01/12/2022,16:49,BRONX,10461,40.854294,-73.85789,"(40.854294, -73.85789)",LYDIG AVENUE,LURTING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494700,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2021,0:00,BRONX,10472,,,,GLEASON AVENUE,VIRGINIA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494502,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,8:55,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494205,Bus,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,9:00,QUEENS,11429,40.705765,-73.74181,"(40.705765, -73.74181)",112 AVENUE,DELEVAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494515,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,18:45,BROOKLYN,11210,40.62334,-73.95595,"(40.62334, -73.95595)",OCEAN AVENUE,AVENUE K,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494779,Sedan,E-Scooter,,, +07/04/2021,23:50,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4433931,Sedan,Sedan,,, +05/25/2021,9:40,STATEN ISLAND,10304,40.63522,-74.08074,"(40.63522, -74.08074)",,,5 WARD AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4434830,Station Wagon/Sport Utility Vehicle,Dump,TRAILER,, +07/04/2021,16:05,QUEENS,11373,40.738197,-73.88492,"(40.738197, -73.88492)",QUEENS BOULEVARD,BARNWELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434215,,,,, +06/30/2021,10:10,BROOKLYN,11218,40.633823,-73.97064,"(40.633823, -73.97064)",,,3829 18 AVENUE,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,Unspecified,,,4434762,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/27/2021,2:20,MANHATTAN,10023,40.77436,-73.98335,"(40.77436, -73.98335)",,,155 WEST 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434703,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/26/2021,20:18,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,FULTON STREET,,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4434538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Station Wagon/Sport Utility Vehicle +07/01/2021,15:00,BROOKLYN,11228,40.615906,-74.022285,"(40.615906, -74.022285)",,,9004 7 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4434514,tr,Sedan,,, +07/04/2021,0:05,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433600,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/04/2021,15:54,QUEENS,11434,40.682568,-73.76588,"(40.682568, -73.76588)",LESLIE ROAD,IRWIN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434018,Sedan,,,, +07/03/2021,4:30,BRONX,10461,40.833717,-73.82864,"(40.833717, -73.82864)",EAST TREMONT AVENUE,MEYERS STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4434781,Sedan,Sedan,,, +07/04/2021,11:49,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,EASTERN PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,,,,,4434076,Sedan,,,, +07/01/2021,20:37,MANHATTAN,10007,40.71369,-74.01376,"(40.71369, -74.01376)",WEST STREET,VESEY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434486,Sedan,Bike,,, +07/03/2021,21:25,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434574,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/01/2021,13:45,QUEENS,11378,40.7186,-73.91505,"(40.7186, -73.91505)",,,54-03 GRAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4434632,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,3:55,QUEENS,11428,40.71871,-73.74878,"(40.71871, -73.74878)",,,211-66 93 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433632,Sedan,,,, +07/04/2021,8:00,,,40.70847,-73.81969,"(40.70847, -73.81969)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434089,Sedan,,,, +06/30/2021,15:30,BRONX,10473,40.823017,-73.85669,"(40.823017, -73.85669)",,,1967 TURNBULL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434534,Sedan,,,, +07/03/2021,13:10,BROOKLYN,11217,40.683506,-73.97594,"(40.683506, -73.97594)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,21:45,BROOKLYN,11234,40.625652,-73.930534,"(40.625652, -73.930534)",AVENUE K,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434567,Sedan,Sedan,,, +07/03/2021,17:00,STATEN ISLAND,10305,,,,Father capodanno blvd,Alex circle,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434460,Sedan,,,, +07/04/2021,19:42,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433898,Sedan,Sedan,,, +07/04/2021,17:27,,,,,,,,101 EAST DRIVE,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4434225,Bike,E-Scooter,,, +06/29/2021,14:54,QUEENS,11364,40.749294,-73.75579,"(40.749294, -73.75579)",,,221-28 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4434730,Sedan,,,, +07/04/2021,18:55,,,,,,WEST END AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434294,Sedan,Bike,,, +06/27/2021,16:32,BROOKLYN,11249,40.719227,-73.962906,"(40.719227, -73.962906)",KENT AVENUE,NORTH 5 STREET,,3,0,0,0,1,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4434420,Motorscooter,Bike,,, +03/26/2021,8:50,BROOKLYN,11231,40.6795,-73.99729,"(40.6795, -73.99729)",COURT STREET,2 PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4402108,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/02/2021,5:44,BROOKLYN,11208,40.678516,-73.87711,"(40.678516, -73.87711)",,,322 LOGAN STREET,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4434434,Sedan,,,, +07/04/2021,12:25,QUEENS,11422,40.65973,-73.74174,"(40.65973, -73.74174)",241 STREET,MAYDA ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433877,Sedan,Sedan,,, +07/04/2021,14:00,QUEENS,11429,40.71935,-73.731995,"(40.71935, -73.731995)",222 STREET,96 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433761,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,3:20,QUEENS,11691,40.59556,-73.75865,"(40.59556, -73.75865)",,,25-15 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434597,Sedan,Sedan,,, +06/20/2021,6:08,QUEENS,11378,40.727226,-73.89168,"(40.727226, -73.89168)",,,70-28 57 ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434625,Sedan,Pick-up Truck,,, +07/04/2021,23:09,BROOKLYN,11221,40.69009,-73.93648,"(40.69009, -73.93648)",LEWIS AVENUE,GREENE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434667,Sedan,Bike,,, +07/04/2021,8:21,BRONX,10451,40.820515,-73.930695,"(40.820515, -73.930695)",EXTERIOR STREET,EAST 150 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433850,Sedan,,,, +07/04/2021,6:00,BROOKLYN,11201,40.695908,-73.98322,"(40.695908, -73.98322)",TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433763,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,19:20,,,40.823833,-73.87807,"(40.823833, -73.87807)",BRUCKNER BOULEVARD,ELDER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4434551,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +07/04/2021,20:30,BROOKLYN,11215,40.655247,-73.981804,"(40.655247, -73.981804)",MC DONALD AVENUE,20 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4433892,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,1:54,,,40.8022,-73.9678,"(40.8022, -73.9678)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4433717,Sedan,Sedan,,, +07/03/2021,0:00,BROOKLYN,11207,40.676212,-73.892654,"(40.676212, -73.892654)",,,2753 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434433,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:30,,,40.699192,-73.95519,"(40.699192, -73.95519)",FLUSHING AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434853,Sedan,,,, +07/04/2021,19:41,BRONX,10461,40.856327,-73.84392,"(40.856327, -73.84392)",,,2104 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434062,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,12:08,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",7 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434121,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,8:11,BRONX,10454,40.80716,-73.912315,"(40.80716, -73.912315)",,,700 EAST 141 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434754,Sedan,Box truck,,, +06/30/2021,19:08,MANHATTAN,10010,40.73845,-73.98228,"(40.73845, -73.98228)",,,234 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434806,Sedan,Bus,,, +07/04/2021,8:39,MANHATTAN,10001,40.752693,-74.00251,"(40.752693, -74.00251)",,,554 WEST 30 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4434453,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,23:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434322,Sedan,Sedan,,, +07/03/2021,10:58,BROOKLYN,11207,40.67258,-73.89122,"(40.67258, -73.89122)",PITKIN AVENUE,MILLER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4434442,Sedan,,,, +07/04/2021,4:00,BROOKLYN,11236,40.63825,-73.89464,"(40.63825, -73.89464)",,,1781 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4433737,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,18:00,QUEENS,11426,40.73595,-73.714745,"(40.73595, -73.714745)",HILLSIDE AVENUE,253 STREET,,1,0,0,0,0,0,1,0,Illnes,,,,,4433882,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,16:08,,,40.858986,-73.89382,"(40.858986, -73.89382)",WEBSTER AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4434023,Sedan,,,, +07/04/2021,13:30,,,40.834423,-73.879265,"(40.834423, -73.879265)",,,EAST 174 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4434586,Sedan,,,, +06/30/2021,22:45,,,40.676132,-73.921906,"(40.676132, -73.921906)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434686,Sedan,Sedan,,, +07/04/2021,17:15,,,40.692547,-73.90736,"(40.692547, -73.90736)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4434286,Sedan,Sedan,Sedan,, +06/28/2021,2:30,QUEENS,11691,40.603554,-73.74485,"(40.603554, -73.74485)",CORNAGA AVENUE,MOBILE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4434598,Sedan,Sedan,Sedan,Sedan,Sedan +07/04/2021,14:50,MANHATTAN,10038,40.711678,-74.008354,"(40.711678, -74.008354)",,,222 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433901,Sedan,Sedan,,, +07/04/2021,1:00,BROOKLYN,11220,40.64694,-74.020935,"(40.64694, -74.020935)",,,150 55 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4433972,Sedan,Sedan,,, +07/03/2021,6:00,BRONX,10473,40.81776,-73.843605,"(40.81776, -73.843605)",,,501 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434558,Sedan,,,, +07/04/2021,13:18,BROOKLYN,11206,40.696022,-73.937065,"(40.696022, -73.937065)",,,341 VERNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433779,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Taxi,, +07/03/2021,14:53,,,40.673767,-73.76381,"(40.673767, -73.76381)",FARMERS BOULEVARD,BEDELL STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,,,,4434484,Sedan,Sedan,,, +07/04/2021,23:00,BROOKLYN,11214,40.605957,-74.00639,"(40.605957, -74.00639)",BAY 16 STREET,RUTHERFORD PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434394,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:24,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",CRESCENT STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434428,Pick-up Truck,Pick-up Truck,,, +06/28/2021,8:48,BROOKLYN,11217,40.68777,-73.98701,"(40.68777, -73.98701)",HOYT STREET,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4434668,Taxi,Sedan,,, +07/03/2021,15:05,STATEN ISLAND,10301,40.64262,-74.08762,"(40.64262, -74.08762)",,,161 YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434869,Sedan,Sedan,,, +07/04/2021,3:22,,,40.672512,-73.97043,"(40.672512, -73.97043)",PROSPECT PARK WEST,PLAZA STREET WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434477,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,6:30,QUEENS,11426,40.730152,-73.721725,"(40.730152, -73.721725)",87 AVENUE,246 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434545,Sedan,Sedan,,, +07/04/2021,15:45,,,40.655895,-74.00591,"(40.655895, -74.00591)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4434053,Sedan,,,, +06/29/2021,0:35,BRONX,10472,40.83208,-73.87285,"(40.83208, -73.87285)",,,1667 EAST 172 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4434519,Bike,,,, +07/04/2021,5:45,,,40.696167,-73.8045,"(40.696167, -73.8045)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434091,Taxi,Sedan,,, +07/04/2021,19:58,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4434764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2021,7:30,BRONX,10470,40.897995,-73.863495,"(40.897995, -73.863495)",,,529 EAST 235 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4434002,Sedan,Sedan,Sedan,, +07/02/2021,7:10,MANHATTAN,10029,40.790627,-73.942444,"(40.790627, -73.942444)",EAST 106 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4434785,Bus,Sedan,Taxi,, +07/04/2021,5:30,BRONX,10469,40.867138,-73.86025,"(40.867138, -73.86025)",,,2816 BOSTON ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4434272,Box Truck,Pick-up Truck,,, +06/14/2021,6:30,,,40.840286,-73.92147,"(40.840286, -73.92147)",WEST 170 STREET,GRANT HIGHWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434579,PK,,,, +07/04/2021,22:30,,,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433906,Sedan,Bike,,, +07/01/2021,10:30,BRONX,10460,40.846592,-73.881065,"(40.846592, -73.881065)",BRONX PARK SOUTH,HONEYWELL AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4434490,Sedan,Sedan,,, +07/03/2021,13:55,,,,,,,,140 MARSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434614,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,18:40,QUEENS,11101,40.752983,-73.91062,"(40.752983, -73.91062)",,,50-92 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4434185,Sedan,,,, +07/04/2021,11:30,,,,,,SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434019,Sedan,Pick-up Truck,,, +07/04/2021,23:10,QUEENS,11106,40.76336,-73.92649,"(40.76336, -73.92649)",,,31-74 29 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/04/2021,21:30,,,40.677032,-73.824684,"(40.677032, -73.824684)",114 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4434078,Sedan,Sedan,,, +06/30/2021,14:54,BRONX,10462,40.83249,-73.852325,"(40.83249, -73.852325)",,,2168 ELLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434525,Sedan,Sedan,,, +07/04/2021,1:15,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4433605,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,12:30,QUEENS,11434,40.68372,-73.78468,"(40.68372, -73.78468)",157 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434563,Sedan,,,, +07/04/2021,11:14,BROOKLYN,11204,40.630672,-73.981895,"(40.630672, -73.981895)",47 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434643,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,22:30,MANHATTAN,10016,40.75022,-73.979065,"(40.75022, -73.979065)",PARK AVENUE,EAST 39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433961,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,7:00,,,40.697098,-73.95386,"(40.697098, -73.95386)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434467,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,10:06,QUEENS,11385,40.69814,-73.89111,"(40.69814, -73.89111)",64 PLACE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4434631,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,1:10,,,40.6953,-73.812096,"(40.6953, -73.812096)",VANWYCK EXPRESSWAY,97 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4434611,Sedan,,,, +06/23/2021,16:10,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434511,Sedan,Tractor Truck Diesel,,, +07/04/2021,1:30,QUEENS,11413,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4433633,Sedan,,,, +07/01/2021,22:34,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4434535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,22:52,MANHATTAN,10016,40.747627,-73.976746,"(40.747627, -73.976746)",EAST 37 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433905,Sedan,Sedan,,, +07/04/2021,23:00,MANHATTAN,10002,40.716972,-73.99446,"(40.716972, -73.99446)",CHRYSTIE STREET,HESTER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4434890,Sedan,Sedan,,, +07/04/2021,14:18,,,,,,,,109 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4434085,Bike,,,, +07/04/2021,23:16,,,40.838108,-73.914246,"(40.838108, -73.914246)",ELLIOT PLACE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,Unspecified,,,4434003,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/03/2021,9:04,,,40.572132,-74.10809,"(40.572132, -74.10809)",BURBANK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434459,Sedan,,,, +06/30/2021,15:38,MANHATTAN,10002,40.709805,-73.99191,"(40.709805, -73.99191)",SOUTH STREET,PIKE SLIP,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434892,Ambulance,Pick-up Truck,,, +07/02/2021,18:00,BROOKLYN,11215,40.672348,-73.987076,"(40.672348, -73.987076)",,,394 4 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434489,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,17:40,BRONX,10456,40.83517,-73.91251,"(40.83517, -73.91251)",,,281 EAST 169 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434832,Sedan,,,, +07/04/2021,23:40,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Steering Failure,,,,,4434039,E-Bike,,,, +07/03/2021,10:15,BRONX,10463,40.877457,-73.9072,"(40.877457, -73.9072)",WEST 230 STREET,GODWIN TERRACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434704,Taxi,Sedan,,, +06/23/2021,10:17,QUEENS,11385,40.703342,-73.855385,"(40.703342, -73.855385)",WOODHAVEN BOULEVARD,83 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434626,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,0:31,,,40.83302,-73.862724,"(40.83302, -73.862724)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434557,Sedan,,,, +06/15/2021,12:15,MANHATTAN,10020,40.759453,-73.981316,"(40.759453, -73.981316)",,,1251 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Unspecified,,,,,4434766,Bike,,,, +07/04/2021,9:05,BRONX,10468,40.86202,-73.910255,"(40.86202, -73.910255)",,,236 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433776,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,13:53,QUEENS,11420,40.66708,-73.82297,"(40.66708, -73.82297)",150 AVENUE,118 STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4494620,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/04/2021,16:41,,,40.840206,-73.91015,"(40.840206, -73.91015)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4434358,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,16:44,QUEENS,11385,40.705956,-73.8936,"(40.705956, -73.8936)",68 AVENUE,64 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434619,Sedan,Sedan,,, +07/04/2021,21:25,,,40.63617,-74.160225,"(40.63617, -74.160225)",,,33 HARBOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433947,Sedan,,,, +07/04/2021,21:59,,,40.670326,-73.88878,"(40.670326, -73.88878)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434445,Sedan,,,, +07/03/2021,23:50,BRONX,10472,40.8344,-73.87276,"(40.8344, -73.87276)",FTELEY AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4434573,Sedan,Sedan,Sedan,Sedan,Sedan +07/04/2021,1:30,MANHATTAN,10003,40.73033,-73.98815,"(40.73033, -73.98815)",,,120 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4433743,Sedan,,,, +07/04/2021,15:47,QUEENS,11378,40.718273,-73.90219,"(40.718273, -73.90219)",FRESH POND ROAD,61 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,11:30,QUEENS,11354,40.75899,-73.83454,"(40.75899, -73.83454)",COLLEGE POINT BOULEVARD,39 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434397,Sedan,,,, +07/04/2021,5:00,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4433794,Sedan,Sedan,,, +07/04/2021,22:20,BRONX,10475,40.86658,-73.8226,"(40.86658, -73.8226)",,,4180 HUTCHINSON RIVER PARKWAY EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434022,Sedan,Sedan,,, +07/02/2021,9:35,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",EAST 179 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4434505,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2021,7:13,BRONX,10473,40.82101,-73.86575,"(40.82101, -73.86575)",COMMONWLTH AVENUE,LAFAYETTE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434544,Pick-up Truck,,,, +07/04/2021,18:11,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4434454,Station Wagon/Sport Utility Vehicle,Tanker,,, +07/03/2021,16:50,,,40.69535,-73.91632,"(40.69535, -73.91632)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4434816,Sedan,,,, +07/04/2021,19:25,QUEENS,11374,40.7293,-73.862854,"(40.7293, -73.862854)",SAUNDERS STREET,63 DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433926,Sedan,,,, +07/04/2021,22:22,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4434028,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/17/2021,13:45,QUEENS,11377,40.744755,-73.91055,"(40.744755, -73.91055)",54 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434699,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,17:00,BROOKLYN,11205,40.69649,-73.97352,"(40.69649, -73.97352)",,,55 CARLTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434683,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,0:00,,,40.82364,-73.87994,"(40.82364, -73.87994)",BRUCKNER BOULEVARD,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434587,Sedan,,,, +07/02/2021,15:20,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,14:00,,,,,,EAST 57 STREET,ED KOCH QUEENSBORO UPPERROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434653,Box Truck,Pick-up Truck,,, +07/04/2021,5:00,QUEENS,11435,40.689976,-73.79955,"(40.689976, -73.79955)",FERNDALE AVENUE,LIVERPOOL STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434316,Sedan,,,, +07/04/2021,1:10,MANHATTAN,10010,40.74116,-73.99409,"(40.74116, -73.99409)",,,655 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing Too Closely,,,,4433650,Sedan,Sedan,,, +07/03/2021,14:49,BROOKLYN,11208,40.6693,-73.87045,"(40.6693, -73.87045)",,,710 EUCLID AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434441,E-Bike,Sedan,,, +07/04/2021,0:14,,,40.634945,-73.9325,"(40.634945, -73.9325)",GLENWOOD ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433895,Sedan,Sedan,,, +06/28/2021,6:50,,,40.656105,-74.00594,"(40.656105, -74.00594)",GOWANUS EXPY (BQE),,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4434800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,15:15,BROOKLYN,11207,40.65772,-73.89637,"(40.65772, -73.89637)",,,1788 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434411,Sedan,Pickup with mounted Camper,,, +07/04/2021,14:30,,,40.603607,-74.01763,"(40.603607, -74.01763)",15 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4434221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/04/2021,19:59,BRONX,10457,40.84521,-73.90845,"(40.84521, -73.90845)",EASTBURN AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434058,Sedan,Sedan,Motorcycle,, +06/14/2021,18:49,,,40.681126,-73.96446,"(40.681126, -73.96446)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434692,Sedan,Bike,,, +07/02/2021,12:59,BRONX,10462,40.840267,-73.862526,"(40.840267, -73.862526)",,,1594 UNIONPORT ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434549,Box Truck,Sedan,,, +07/04/2021,23:39,MANHATTAN,10019,40.77106,-73.99427,"(40.77106, -73.99427)",,,801 12 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434115,Sedan,,,, +06/19/2021,17:40,,,,,,,,101 EAST DRIVE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434498,Bike,Bike,,, +07/02/2021,2:10,BROOKLYN,11221,40.687576,-73.92568,"(40.687576, -73.92568)",,,800 MADISON STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4434720,Sedan,Sedan,Sedan,, +07/04/2021,2:16,BROOKLYN,11229,40.59871,-73.94835,"(40.59871, -73.94835)",,,2148 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433970,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,18:06,MANHATTAN,10001,40.750496,-74.003006,"(40.750496, -74.003006)",,,513 WEST 27 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434450,Sedan,Sedan,,, +05/09/2021,4:25,QUEENS,11415,40.703655,-73.822464,"(40.703655, -73.822464)",130 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4415386,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,23:00,BRONX,10460,40.83945,-73.88393,"(40.83945, -73.88393)",,,1880 BOSTON ROAD,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4434478,Sedan,,,, +07/04/2021,19:30,QUEENS,11357,40.795345,-73.801254,"(40.795345, -73.801254)",,,6-05 160 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4434027,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/04/2021,23:51,,,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434415,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,4:25,,,,,,BOSTON ROAD,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433711,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,4:24,,,40.755833,-73.92816,"(40.755833, -73.92816)",33 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,12:50,,,40.878742,-73.87255,"(40.878742, -73.87255)",DECATUR AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433864,Sedan,,,, +07/04/2021,4:55,,,40.678963,-73.94965,"(40.678963, -73.94965)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4434851,Sedan,Sedan,,, +07/04/2021,19:00,BRONX,10456,40.8211,-73.90676,"(40.8211, -73.90676)",,,835 TRINITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434197,Sedan,,,, +07/04/2021,17:46,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4433959,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,4:15,QUEENS,11103,40.767574,-73.911995,"(40.767574, -73.911995)",,,25-23 STEINWAY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,19:38,BROOKLYN,11206,40.701626,-73.944176,"(40.701626, -73.944176)",,,66 WHIPPLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434737,Station Wagon/Sport Utility Vehicle,,,, +06/28/2021,9:05,,,,,,GRANT CIRCLE,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434518,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2021,22:42,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434048,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,21:00,BRONX,10469,40.880157,-73.848076,"(40.880157, -73.848076)",EASTCHESTER ROAD,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434530,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,1:35,,,,,,HORACE HARDING EXPRESSWAY,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433606,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,17:36,BRONX,10470,40.896362,-73.87189,"(40.896362, -73.87189)",,,119 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434564,Sedan,Sedan,,, +04/07/2021,1:26,,,40.693874,-73.91777,"(40.693874, -73.91777)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4434815,Sedan,Sedan,,, +07/03/2021,3:56,,,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434463,Sedan,,,, +07/04/2021,17:09,BROOKLYN,11204,40.633835,-73.982605,"(40.633835, -73.982605)",44 STREET,16 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434641,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/04/2021,21:07,BRONX,10473,40.807728,-73.85254,"(40.807728, -73.85254)",,,106 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Reaction to Uninvolved Vehicle,,,,4434620,Sedan,Bus,,, +07/03/2021,12:30,BROOKLYN,11208,40.67591,-73.86673,"(40.67591, -73.86673)",,,624 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4434408,Sedan,,,, +07/04/2021,10:15,,,40.58185,-73.8473,"(40.58185, -73.8473)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4433784,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,1:29,QUEENS,11377,40.746048,-73.89903,"(40.746048, -73.89903)",ROOSEVELT AVENUE,65 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433808,Sedan,Moped,,, +07/04/2021,9:50,BRONX,10462,40.856613,-73.86864,"(40.856613, -73.86864)",PELHAM PARKWAY SOUTH,BOLTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434273,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/03/2021,16:48,BRONX,10472,40.83114,-73.879776,"(40.83114, -73.879776)",ELDER AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434561,Taxi,,,, +07/04/2021,17:47,QUEENS,11422,40.675854,-73.73163,"(40.675854, -73.73163)",BROOKVILLE BOULEVARD,132 ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4433881,Sedan,Sedan,,, +07/04/2021,13:54,QUEENS,11417,40.680923,-73.83544,"(40.680923, -73.83544)",107 AVENUE,105 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434366,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,17:12,,,40.68064,-73.95338,"(40.68064, -73.95338)",FULTON STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4434578,Sedan,E-Bike,,, +07/04/2021,17:54,BROOKLYN,11236,40.6411,-73.919464,"(40.6411, -73.919464)",,,401 EAST 80 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433925,Sedan,,,, +07/02/2021,21:40,MANHATTAN,10001,0,0,"(0.0, 0.0)",,,231 WEST 25 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4434429,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,21:20,QUEENS,11433,40.699574,-73.7827,"(40.699574, -73.7827)",,,108-11 173 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434617,Sedan,Sedan,,, +07/04/2021,1:10,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433729,Sedan,Sedan,,, +07/04/2021,1:32,,,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4434275,Sedan,Sedan,,, +06/25/2021,11:10,QUEENS,11372,40.748417,-73.87649,"(40.748417, -73.87649)",ROOSEVELT AVENUE,90 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434866,Sedan,,,, +07/02/2021,0:00,MANHATTAN,10011,40.74432,-73.9962,"(40.74432, -73.9962)",,,206 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434423,,,,, +07/04/2021,17:07,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,3:35,,,40.69015,-73.99864,"(40.69015, -73.99864)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433753,Sedan,,,, +07/04/2021,15:00,QUEENS,11422,40.661484,-73.741974,"(40.661484, -73.741974)",BROOKVILLE BOULEVARD,144 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433880,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,1:02,BRONX,10472,40.827366,-73.85731,"(40.827366, -73.85731)",,,1974 CHATTERTON AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4434591,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,16:00,QUEENS,11432,40.709484,-73.79341,"(40.709484, -73.79341)",,,88-16 168 PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4434603,Sedan,,,, +07/04/2021,14:05,QUEENS,11694,40.58392,-73.83093,"(40.58392, -73.83093)",BEACH CHANNEL DRIVE,BEACH 108 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4433904,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,14:35,QUEENS,11415,40.707096,-73.8272,"(40.707096, -73.8272)",,,84-50 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434086,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,1:15,BRONX,10472,40.8305,-73.861626,"(40.8305, -73.861626)",WHITE PLAINS ROAD,GLEASON AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4434582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,21:15,STATEN ISLAND,10305,40.580357,-74.07994,"(40.580357, -74.07994)",SEAVIEW AVENUE,QUINCY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434462,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,19:11,BRONX,10472,40.827553,-73.86727,"(40.827553, -73.86727)",WATSON AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434553,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,1:10,BROOKLYN,11201,40.70163,-73.989685,"(40.70163, -73.989685)",YORK STREET,WASHINGTON STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4433770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,23:50,,,40.630486,-74.14595,"(40.630486, -74.14595)",MARTIN LUTHER KING JR,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433950,Sedan,Sedan,,, +07/04/2021,5:30,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433695,Sedan,Sedan,,, +07/01/2021,13:00,,,40.600945,-73.82037,"(40.600945, -73.82037)",CROSS BAY BOULEVARD,WEST 17 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434895,Sedan,Sedan,,, +07/04/2021,20:10,BROOKLYN,11226,40.64531,-73.94608,"(40.64531, -73.94608)",NEW YORK AVENUE,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4433896,Sedan,Sedan,,, +07/04/2021,11:55,BROOKLYN,11230,40.61948,-73.96419,"(40.61948, -73.96419)",,,1552 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434644,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +07/04/2021,21:30,,,40.8651,-73.92189,"(40.8651, -73.92189)",SHERMAN AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434254,E-Scooter,Sedan,,, +07/04/2021,15:40,QUEENS,11385,40.713295,-73.916245,"(40.713295, -73.916245)",FLUSHING AVENUE,TROUTMAN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4433886,Bus,,,, +01/12/2022,14:15,BROOKLYN,11215,40.666126,-73.9953,"(40.666126, -73.9953)",17 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494327,Station Wagon/Sport Utility Vehicle,Van,,, +06/26/2021,0:00,BRONX,10472,40.826775,-73.87877,"(40.826775, -73.87877)",,,1121 ELDER AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4434517,Sedan,,,, +07/04/2021,2:50,BROOKLYN,11208,40.676765,-73.880516,"(40.676765, -73.880516)",LIBERTY AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434430,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,19:20,,,40.824932,-73.82431,"(40.824932, -73.82431)",CROSS BRONX EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434778,Sedan,Sedan,,, +07/04/2021,22:35,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,9:14,,,40.65735,-73.97405,"(40.65735, -73.97405)",PROSPECT PARK SOUTHWEST,16 STREET DRIVE,,2,0,1,0,1,0,0,0,Unspecified,,,,,4434341,Bike,,,, +07/03/2021,13:40,BROOKLYN,11207,40.67745,-73.89569,"(40.67745, -73.89569)",,,2681 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434440,Sedan,,,, +07/04/2021,0:00,BROOKLYN,11207,40.666878,-73.901276,"(40.666878, -73.901276)",BLAKE AVENUE,VAN SIDERIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434414,Sedan,Sedan,,, +07/04/2021,23:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434073,Sedan,Sedan,,, +07/04/2021,9:07,,,,,,GRAND ARMY PLAZA,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4434488,Sedan,Sedan,,, +06/19/2021,23:47,,,40.591393,-73.907875,"(40.591393, -73.907875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4434572,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,16:30,,,40.577244,-74.00004,"(40.577244, -74.00004)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4433980,Sedan,Sedan,Sedan,, +07/03/2021,0:02,,,40.702007,-73.821205,"(40.702007, -73.821205)",JAMAICA AVENUE,131 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4434870,Motorcycle,,,, +06/07/2021,0:56,BRONX,10462,40.83419,-73.84525,"(40.83419, -73.84525)",ZEREGA AVENUE,NEWBOLD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434507,Sedan,Sedan,,, +06/21/2021,14:00,,,40.62356,-73.927376,"(40.62356, -73.927376)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434817,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,7:00,BROOKLYN,11229,40.610264,-73.954704,"(40.610264, -73.954704)",EAST 19 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4433969,Box Truck,Sedan,,, +07/04/2021,1:35,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4433634,Sedan,Sedan,,, +06/30/2021,16:40,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4434532,Sedan,Sedan,,, +06/25/2021,16:30,BROOKLYN,11218,40.642685,-73.99122,"(40.642685, -73.99122)",FORT HAMILTON PARKWAY,40 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4434655,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/04/2021,15:25,BROOKLYN,11212,40.65665,-73.924255,"(40.65665, -73.924255)",,,359 REMSEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433853,Sedan,Sedan,,, +07/04/2021,23:14,BRONX,10466,40.89363,-73.846794,"(40.89363, -73.846794)",,,4156 ELY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4434029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/25/2021,6:58,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,COOPER AVENUE,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434627,Dump,Bike,,, +06/27/2021,13:57,,,40.610165,-73.92289,"(40.610165, -73.92289)",EAST 53 STREET,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434569,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/03/2021,21:40,BRONX,10457,40.852486,-73.88724,"(40.852486, -73.88724)",BELMONT AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4434469,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/05/2021,15:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434755,Sedan,Sedan,,, +06/20/2021,16:55,,,,,,EXTERIOR STREET,EAST 149 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434835,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,5:25,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",WEST 179 STREET,CEDAR AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4434041,Sedan,Sedan,,, +07/02/2021,16:40,BROOKLYN,11213,40.672966,-73.941864,"(40.672966, -73.941864)",PARK PLACE,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434682,Sedan,,,, +07/04/2021,20:00,QUEENS,11368,40.746906,-73.86371,"(40.746906, -73.86371)",NATIONAL STREET,43 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4434217,Sedan,Sedan,,, +07/04/2021,6:35,BROOKLYN,11215,40.66336,-73.982994,"(40.66336, -73.982994)",,,403 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Vehicle Vandalism,,,,4434479,E-Bike,Sedan,,, +07/04/2021,19:15,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4434021,Sedan,Sedan,Sedan,, +04/18/2021,16:45,,,40.677746,-73.73096,"(40.677746, -73.73096)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4408298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,23:48,,,40.636578,-74.03662,"(40.636578, -74.03662)",SHORE ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,,,,4433928,Bus,Sedan,,, +06/29/2021,14:15,BRONX,10473,40.817844,-73.866005,"(40.817844, -73.866005)",,,661 ROSEDALE AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4434521,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/27/2021,12:09,,,40.89788,-73.884514,"(40.89788, -73.884514)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4434541,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,19:45,QUEENS,11429,40.70316,-73.73232,"(40.70316, -73.73232)",MURDOCK AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434312,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,22:40,BRONX,10458,40.857933,-73.892876,"(40.857933, -73.892876)",,,4646 PARK AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434456,,,,, +07/04/2021,23:42,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434055,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,9:05,QUEENS,11378,40.72752,-73.907936,"(40.72752, -73.907936)",,,59-36 BORDEN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,0:09,BRONX,10460,40.835705,-73.88875,"(40.835705, -73.88875)",SOUTHERN BOULEVARD,EAST 173 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434181,Bus,Bike,,, +07/04/2021,8:55,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,EAST 170 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4434576,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/04/2021,23:51,,,40.67819,-73.80144,"(40.67819, -73.80144)",140 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4434492,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/18/2021,11:40,QUEENS,11378,40.733433,-73.89595,"(40.733433, -73.89595)",,,52-15 69 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434630,Sedan,E-Bike,,, +07/04/2021,19:59,,,40.86155,-73.92472,"(40.86155, -73.92472)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4434201,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,15:09,,,40.88839,-73.84666,"(40.88839, -73.84666)",EAST 231 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4434621,Sedan,Sedan,,, +07/01/2021,13:45,MANHATTAN,10029,40.799286,-73.945366,"(40.799286, -73.945366)",MADISON AVENUE,EAST 115 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434499,Sedan,Sedan,,, +07/04/2021,1:05,,,40.674755,-73.91109,"(40.674755, -73.91109)",ROCKAWAY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433618,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2021,23:40,BROOKLYN,11236,40.639053,-73.881584,"(40.639053, -73.881584)",SEAVIEW AVENUE,EAST 108 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4434565,Sedan,Sedan,,, +06/30/2021,14:30,BRONX,10473,40.817265,-73.86105,"(40.817265, -73.86105)",THIERIOT AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434522,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,17:46,BRONX,10454,40.805077,-73.91092,"(40.805077, -73.91092)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4433977,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/04/2021,14:50,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434409,Sedan,Sedan,,, +07/04/2021,13:05,STATEN ISLAND,10301,,,,RICHMOND TERRACE,NICK LAPORTE PLACE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4433827,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/29/2021,15:57,BROOKLYN,11229,40.610947,-73.953606,"(40.610947, -73.953606)",AVENUE P,OCEAN AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4411851,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2021,18:30,,,40.64242,-73.961754,"(40.64242, -73.961754)",CORTELYOU ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4434385,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,19:45,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,FLUSHING AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434860,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,13:00,BRONX,10472,40.825905,-73.87951,"(40.825905, -73.87951)",WATSON AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434548,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,4:05,BROOKLYN,11215,40.670155,-73.985504,"(40.670155, -73.985504)",,,412 5 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4434475,Pick-up Truck,,,, +04/12/2021,0:30,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4406425,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,4:00,BROOKLYN,11233,40.677765,-73.90792,"(40.677765, -73.90792)",,,1919 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4434071,Sedan,Sedan,,, +06/21/2021,12:07,,,40.699715,-73.96182,"(40.699715, -73.96182)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4434736,Sedan,,,, +07/04/2021,12:00,QUEENS,11435,40.69551,-73.80529,"(40.69551, -73.80529)",,,146-46 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4434106,Sedan,Sedan,,, +06/30/2021,5:30,,,40.702045,-73.9156,"(40.702045, -73.9156)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434793,Sedan,UNK,,, +07/01/2021,8:31,,,40.633152,-74.01639,"(40.633152, -74.01639)",67 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434451,Sedan,E-Bike,,, +07/04/2021,20:30,MANHATTAN,10040,40.853683,-73.93054,"(40.853683, -73.93054)",SAINT NICHOLAS AVENUE,WEST 188 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434263,Sedan,,,, +07/04/2021,15:50,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4433885,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,15:45,,,40.74355,-73.73246,"(40.74355, -73.73246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433924,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,1:05,QUEENS,11435,40.694065,-73.81079,"(40.694065, -73.81079)",,,101-11 REMINGTON STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4434616,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,4:00,QUEENS,11422,40.657887,-73.735664,"(40.657887, -73.735664)",253 STREET,145 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4433731,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/03/2021,22:20,BRONX,10460,40.840855,-73.86547,"(40.840855, -73.86547)",EAST TREMONT AVENUE,LELAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434583,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,5:30,BROOKLYN,11237,40.695415,-73.90806,"(40.695415, -73.90806)",IRVING AVENUE,HANCOCK STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4434276,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,17:10,QUEENS,11354,40.759567,-73.83015,"(40.759567, -73.83015)",ROOSEVELT AVENUE,MAIN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434026,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2021,7:55,,,40.672848,-73.9675,"(40.672848, -73.9675)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Outside Car Distraction,Unspecified,,,,4434691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,9:36,BRONX,10462,40.836708,-73.86154,"(40.836708, -73.86154)",,,1499 WEST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434560,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:09,QUEENS,11373,40.748367,-73.87693,"(40.748367, -73.87693)",CASE STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434636,Sedan,E-Scooter,,, +07/04/2021,10:38,QUEENS,11379,40.713123,-73.900734,"(40.713123, -73.900734)",,,62-29 FRESH POND ROAD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4433887,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/04/2021,15:55,,,,,,HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4433929,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,23:45,STATEN ISLAND,10306,40.57642,-74.11875,"(40.57642, -74.11875)",,,2400 RICHMOND ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4434457,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,11:55,BROOKLYN,11207,40.676075,-73.8935,"(40.676075, -73.8935)",,,2732 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434426,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,6:55,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434431,Sedan,Sedan,,, +07/01/2021,13:40,BRONX,10471,40.909615,-73.89769,"(40.909615, -73.89769)",WEST 261 STREET,HUXLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434701,Sedan,Sedan,,, +07/04/2021,2:50,QUEENS,11377,40.740948,-73.89529,"(40.740948, -73.89529)",,,69-26 44 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4433727,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/02/2021,18:30,,,40.68796,-73.94194,"(40.68796, -73.94194)",THROOP AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434847,Bike,,,, +07/04/2021,16:31,,,,,,31st,Astoria Blvd,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4434172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:55,,,40.71444,-73.83127,"(40.71444, -73.83127)",QUEENS BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434715,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/24/2021,12:53,BROOKLYN,11222,40.727898,-73.95728,"(40.727898, -73.95728)",,,63 FRANKLIN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434814,Sedan,,,, +07/04/2021,11:00,,,40.562126,-73.90231,"(40.562126, -73.90231)",ROCKAWAY POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433783,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,21:08,,,40.895676,-73.877014,"(40.895676, -73.877014)",,,131 VANCORTLANDT PARK WEST,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4434706,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,21:30,QUEENS,11004,40.745857,-73.71416,"(40.745857, -73.71416)",,,257-10 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434304,Sedan,Sedan,,, +07/04/2021,6:40,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433685,Sedan,Sedan,,, +07/04/2021,14:45,BROOKLYN,11206,40.699997,-73.95723,"(40.699997, -73.95723)",BEDFORD AVENUE,LYNCH STREET,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4433952,Sedan,Bus,,, +07/02/2021,6:50,MANHATTAN,10001,40.753918,-73.99964,"(40.753918, -73.99964)",10 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434422,Sedan,Sedan,,, +07/01/2021,18:59,BROOKLYN,11218,40.637966,-73.981895,"(40.637966, -73.981895)",15 AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434645,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,14:28,QUEENS,11378,40.730587,-73.88812,"(40.730587, -73.88812)",53 ROAD,74 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434236,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,12:55,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4433878,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,14:00,QUEENS,11691,40.594765,-73.75125,"(40.594765, -73.75125)",,,125 BEACH 17 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434539,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/10/2021,17:09,BRONX,10462,40.834297,-73.84529,"(40.834297, -73.84529)",,,1261 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434509,Sedan,,,, +07/04/2021,7:16,,,40.672142,-73.77373,"(40.672142, -73.77373)",137 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434036,Sedan,,,, +07/04/2021,17:19,,,40.73532,-73.920265,"(40.73532, -73.920265)",LAUREL HILL BOULEVARD,46 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4434820,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/04/2021,20:40,BRONX,10466,40.889294,-73.849495,"(40.889294, -73.849495)",EAST 231 STREET,PAULDING AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4434012,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,E-Bike,, +07/03/2021,20:17,STATEN ISLAND,10305,40.59282,-74.07069,"(40.59282, -74.07069)",,,67 OLYMPIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434461,Sedan,Sedan,,, +04/27/2021,16:30,QUEENS,11434,,,,,,149-34 GUY R BREWER BLVD,0,0,0,0,0,0,0,0,Unspecified,,,,,4411462,Sedan,Sedan,,, +06/29/2021,8:10,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4434487,Sedan,Sedan,,, +07/04/2021,1:14,BROOKLYN,11211,40.717354,-73.953995,"(40.717354, -73.953995)",NORTH 9 STREET,ROEBLING STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4434043,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/20/2021,19:27,BRONX,10452,40.8398,-73.928665,"(40.8398, -73.928665)",WEST 167 STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434836,Sedan,Sedan,,, +07/02/2021,16:28,,,40.695866,-73.96969,"(40.695866, -73.96969)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434663,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,1:30,,,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4433863,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/11/2021,2:30,QUEENS,11385,40.71382,-73.92077,"(40.71382, -73.92077)",WOODWARD AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434628,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,12:10,BROOKLYN,11220,40.637184,-74.030685,"(40.637184, -74.030685)",,,131 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433764,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,10:30,,,40.54823,-74.220665,"(40.54823, -74.220665)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4434552,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,10:33,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,SNYDER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434329,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2021,0:00,,,40.678238,-73.94415,"(40.678238, -73.94415)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434780,Sedan,Sedan,,, +07/02/2021,20:31,BROOKLYN,11207,40.67298,-73.88852,"(40.67298, -73.88852)",PITKIN AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434439,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/04/2021,0:00,BROOKLYN,11203,40.64213,-73.92936,"(40.64213, -73.92936)",UTICA AVENUE,AVENUE D,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4433897,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,5:37,BROOKLYN,11212,40.666737,-73.90224,"(40.666737, -73.90224)",BLAKE AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4434074,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/26/2021,20:38,,,,,,BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4401998,Sedan,Sedan,Sedan,Sedan, +07/04/2021,0:00,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434413,Sedan,Sedan,,, +07/04/2021,21:00,QUEENS,11373,40.733967,-73.87177,"(40.733967, -73.87177)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4434216,Pick-up Truck,,,, +07/04/2021,1:55,,,,,,QUEENS MIDTOWN EXPRESSWAY,73 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Following Too Closely,,,,4433757,Sedan,Pick-up Truck,,, +06/18/2021,18:30,BRONX,10451,,,,MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4430655,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,3:40,QUEENS,11355,40.7607,-73.82097,"(40.7607, -73.82097)",,,144-67 41 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4433642,Sedan,Bike,,, +07/04/2021,18:14,,,40.59275,-73.95016,"(40.59275, -73.95016)",AVENUE X,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433964,Sedan,Sedan,,, +06/28/2021,19:05,QUEENS,11691,40.593624,-73.77632,"(40.593624, -73.77632)",ROCKAWAY BEACH BOULEVARD,BEACH 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434599,Sedan,Sedan,,, +07/04/2021,16:45,QUEENS,11418,40.70411,-73.81761,"(40.70411, -73.81761)",,,87-88 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434087,Sedan,,,, +07/04/2021,16:37,BRONX,10463,40.873642,-73.90797,"(40.873642, -73.90797)",,,40 WEST 225 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4433902,Sedan,Sedan,,, +06/29/2021,14:25,BRONX,10467,40.885693,-73.86165,"(40.885693, -73.86165)",EAST 222 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434874,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,0:15,,,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4434516,Sedan,Sedan,,, +07/01/2021,0:00,,,,,,BRONX RIVER PARKWAY RAMP,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4434533,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,16:45,BRONX,10458,40.85642,-73.89101,"(40.85642, -73.89101)",,,4640 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434468,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,8:52,,,40.621178,-73.93005,"(40.621178, -73.93005)",SCHENECTADY AVENUE,,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4434570,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/02/2021,20:00,MANHATTAN,10029,40.786865,-73.95123,"(40.786865, -73.95123)",,,116 EAST 97 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434897,Sedan,,,, +06/25/2021,0:00,BROOKLYN,11201,40.696198,-73.98869,"(40.696198, -73.98869)",TILLARY STREET,ADAMS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434760,Pick-up Truck,,,, +07/04/2021,21:58,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4433981,Sedan,,,, +07/03/2021,22:15,BROOKLYN,11211,40.71738,-73.95217,"(40.71738, -73.95217)",UNION AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434480,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,23:30,BRONX,10473,40.8121,-73.859856,"(40.8121, -73.859856)",,,343 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434592,Sedan,,,, +07/04/2021,23:16,STATEN ISLAND,10312,40.5404,-74.160126,"(40.5404, -74.160126)",SYCAMORE STREET,RIDGECREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434281,Sedan,,,, +06/30/2021,21:55,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CONEY ISLAND AVENUE,CATON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434624,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,16:28,QUEENS,11693,40.613388,-73.8204,"(40.613388, -73.8204)",,,312 CROSS BAY BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,Unspecified,Unspecified,4434646,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/04/2021,11:30,MANHATTAN,10040,40.855713,-73.93315,"(40.855713, -73.93315)",,,4417 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4433849,Pick-up Truck,Sedan,Bus,, +07/02/2021,13:30,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434410,Sedan,,,, +07/02/2021,23:48,,,40.828106,-73.88568,"(40.828106, -73.88568)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434559,Sedan,,,, +07/04/2021,14:35,,,40.909626,-73.8966,"(40.909626, -73.8966)",BROADWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4434269,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,12:20,BRONX,10458,40.86601,-73.890976,"(40.86601, -73.890976)",,,2705 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4433780,Ambulance,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2021,13:30,,,40.73887,-73.81036,"(40.73887, -73.81036)",HORACE HARDING EXPRESSWAY,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4433888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,20:05,BROOKLYN,11207,40.676613,-73.89024,"(40.676613, -73.89024)",,,2816 ATLANTIC AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434443,Sedan,Bike,,, +07/03/2021,3:20,,,40.656216,-73.882515,"(40.656216, -73.882515)",VAN SICLEN AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4434432,Sedan,Sedan,Sedan,Sedan, +07/04/2021,8:00,,,40.7418,-73.72815,"(40.7418, -73.72815)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433732,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,21:50,,,40.830624,-73.85206,"(40.830624, -73.85206)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434571,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +06/30/2021,14:00,,,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434857,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,14:00,QUEENS,11373,40.74485,-73.8781,"(40.74485, -73.8781)",,,42-14 HAMPTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434629,Sedan,,,, +07/03/2021,18:05,BROOKLYN,11217,40.683758,-73.97875,"(40.683758, -73.97875)",4 AVENUE,PACIFIC STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434476,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,16:00,BROOKLYN,11233,40.677174,-73.924774,"(40.677174, -73.924774)",ATLANTIC AVENUE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434687,Sedan,,,, +07/04/2021,21:40,BRONX,10469,40.865955,-73.85867,"(40.865955, -73.85867)",,,2717 PAULDING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434054,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,15:00,,,40.823956,-73.877144,"(40.823956, -73.877144)",BOYNTON AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434520,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,12:45,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,3:20,BROOKLYN,11233,40.6784,-73.913246,"(40.6784, -73.913246)",,,2116 FULTON STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4433619,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/04/2021,0:00,,,40.823647,-73.943855,"(40.823647, -73.943855)",WEST 145 STREET,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4434615,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,18:31,MANHATTAN,10027,40.806694,-73.94501,"(40.806694, -73.94501)",,,63 WEST 124 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4434153,MOPED,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/04/2021,15:00,BROOKLYN,11222,40.737408,-73.95416,"(40.737408, -73.95416)",,,57 BOX STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,Unspecified,,,4434210,Sedan,,,, +07/04/2021,4:10,,,40.746773,-73.90885,"(40.746773, -73.90885)",WOODSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4434735,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/20/2021,6:10,BROOKLYN,11210,40.629677,-73.94151,"(40.629677, -73.94151)",AVENUE I,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434566,Sedan,,,, +07/02/2021,14:50,BROOKLYN,11222,40.72655,-73.94278,"(40.72655, -73.94278)",,,207 MONITOR STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434813,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2021,2:14,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433976,Sedan,Sedan,,, +07/02/2021,14:01,,,40.63552,-74.0167,"(40.63552, -74.0167)",65 STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434452,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2021,10:26,,,40.76471,-73.830696,"(40.76471, -73.830696)",LINDEN PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434025,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/25/2021,15:00,BROOKLYN,11211,40.708508,-73.95071,"(40.708508, -73.95071)",,,270 UNION AVENUE,2,0,1,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4420473,Sedan,Sedan,,, +07/04/2021,11:54,BRONX,10462,40.83927,-73.86138,"(40.83927, -73.86138)",,,1563 UNIONPORT ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4434584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,15:37,MANHATTAN,10023,40.774704,-73.988205,"(40.774704, -73.988205)",WEST 64 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434702,Sedan,,,, +07/04/2021,21:00,QUEENS,11377,,,,BQE,northern boulevard,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4434184,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,10:39,MANHATTAN,10002,40.71216,-73.99592,"(40.71216, -73.99592)",,,86 MADISON STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4433884,Box Truck,Sedan,,, +07/04/2021,6:20,,,,,,LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433725,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,14:20,BROOKLYN,11230,40.63281,-73.96694,"(40.63281, -73.96694)",,,1016 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434388,Box Truck,Sedan,,, +06/30/2021,2:20,STATEN ISLAND,10305,40.59684,-74.06208,"(40.59684, -74.06208)",LILY POND AVENUE,GUILFORD STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4434458,Sedan,,,, +07/04/2021,14:00,,,40.746883,-73.76348,"(40.746883, -73.76348)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433930,Bus,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,18:34,,,40.84091,-73.904755,"(40.84091, -73.904755)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4433922,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,21:40,BROOKLYN,11207,40.659992,-73.89154,"(40.659992, -73.89154)",,,539 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,,,,,,4434427,,,,, +07/04/2021,1:10,BRONX,10472,40.831142,-73.8619,"(40.831142, -73.8619)",,,1214 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434575,Sedan,Sedan,,, +07/03/2021,5:20,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Driver Inattention/Distraction,,,,4434840,Sedan,Sedan,,, +07/04/2021,5:00,,,40.61183,-74.00108,"(40.61183, -74.00108)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434064,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,0:05,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434546,Taxi,,,, +07/04/2021,23:00,QUEENS,11412,40.702236,-73.75769,"(40.702236, -73.75769)",198 STREET,112 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4434503,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/23/2021,14:40,BROOKLYN,11238,40.673668,-73.95688,"(40.673668, -73.95688)",,,731 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434681,Sedan,,,, +07/04/2021,9:45,QUEENS,11413,40.667038,-73.757324,"(40.667038, -73.757324)",SPRINGFIELD BOULEVARD,144 AVENUE,,1,0,0,0,0,0,1,0,Illnes,,,,,4434711,Sedan,,,, +07/04/2021,14:43,QUEENS,11435,40.699627,-73.80529,"(40.699627, -73.80529)",148 STREET,94 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434092,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,13:49,,,40.690647,-73.90805,"(40.690647, -73.90805)",COVERT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434792,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,22:38,,,40.589043,-73.98381,"(40.589043, -73.98381)",AVENUE X,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4433983,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,23:35,,,40.744717,-73.86786,"(40.744717, -73.86786)",45 AVENUE,JUNCTION BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434635,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,17:31,MANHATTAN,10013,40.719635,-74.00225,"(40.719635, -74.00225)",,,318 CANAL STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434483,Station Wagon/Sport Utility Vehicle,Bike,,, +07/03/2021,8:36,QUEENS,11419,40.691177,-73.8266,"(40.691177, -73.8266)",LEFFERTS BOULEVARD,97 AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,,,4434491,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/13/2021,16:20,BROOKLYN,11221,40.69174,-73.91401,"(40.69174, -73.91401)",CENTRAL AVENUE,CORNELIA STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4407057,Van,Motorcycle,,, +07/01/2021,16:40,MANHATTAN,10018,40.749958,-73.984215,"(40.749958, -73.984215)",,,6 WEST 36 STREET,2,0,2,0,0,0,0,0,Illnes,,,,,4434828,Sedan,,,, +07/04/2021,13:48,,,,,,GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4434510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,14:30,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4434037,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,13:00,,,40.818947,-73.95221,"(40.818947, -73.95221)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494246,Box Truck,Sedan,,, +01/12/2022,3:40,,,40.70926,-73.764824,"(40.70926, -73.764824)",194 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4494085,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,18:48,BRONX,10456,40.830048,-73.90632,"(40.830048, -73.90632)",,,3475 3 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4494720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/14/2022,11:00,QUEENS,11691,40.597855,-73.75122,"(40.597855, -73.75122)",,,17-09 PLAINVIEW AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495105,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,12:35,,,40.62965,-73.990555,"(40.62965, -73.990555)",54 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494783,Sedan,Van,,, +12/27/2021,23:15,BROOKLYN,11212,40.66398,-73.909325,"(40.66398, -73.909325)",,,626 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494819,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/02/2022,20:45,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495017,Sedan,,,, +01/12/2022,22:30,QUEENS,11422,40.6601,-73.73312,"(40.6601, -73.73312)",253 STREET,MEMPHIS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494107,Station Wagon/Sport Utility Vehicle,,,, +01/03/2022,22:20,BROOKLYN,11233,40.685497,-73.91771,"(40.685497, -73.91771)",SARATOGA AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494922,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,10:27,BRONX,10459,40.8315,-73.888084,"(40.8315, -73.888084)",BRYANT AVENUE,JENNINGS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494455,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,11:04,QUEENS,11418,40.70503,-73.83601,"(40.70503, -73.83601)",116 STREET,CURZON ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494010,Sedan,,,, +01/10/2022,8:07,,,,,,LORIMER STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495085,Sedan,,,, +01/12/2022,8:20,,,40.69564,-73.929245,"(40.69564, -73.929245)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494442,Sedan,Tow Truck / Wrecker,,, +01/13/2022,9:05,BROOKLYN,11218,40.645317,-73.97055,"(40.645317, -73.97055)",CONEY ISLAND AVENUE,TURNER PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4494261,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/14/2022,10:40,QUEENS,11691,40.602272,-73.753365,"(40.602272, -73.753365)",BEACH 20 STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495093,Sedan,Sedan,,, +01/14/2022,7:50,MANHATTAN,10026,40.797523,-73.95074,"(40.797523, -73.95074)",,,31 WEST 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494574,Sedan,,,, +01/12/2022,7:50,QUEENS,11101,,,,34 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4494161,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,1:21,QUEENS,11417,40.6787,-73.845,"(40.6787, -73.845)",,,93-05 107 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494487,Sedan,Sedan,,, +01/13/2022,19:32,MANHATTAN,10023,40.776684,-73.983055,"(40.776684, -73.983055)",WEST 69 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494569,Sedan,,,, +01/13/2022,19:30,MANHATTAN,10019,40.76359,-73.98144,"(40.76359, -73.98144)",7 AVENUE,WEST 54 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494421,Bike,Bike,,, +01/08/2022,15:00,QUEENS,11373,40.74253,-73.88035,"(40.74253, -73.88035)",MACNISH STREET,ELMHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494470,Sedan,Pick-up Truck,,, +01/12/2022,14:09,QUEENS,11420,40.67013,-73.80938,"(40.67013, -73.80938)",133 AVENUE,130 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494090,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,0:54,QUEENS,11427,40.726006,-73.75173,"(40.726006, -73.75173)",HILLSIDE AVENUE,214 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4494111,Sedan,Sedan,,, +01/13/2022,8:20,BRONX,10459,40.819363,-73.893074,"(40.819363, -73.893074)",BARRETTO STREET,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494335,Sedan,,,, +01/09/2022,19:00,BROOKLYN,11234,40.62451,-73.92747,"(40.62451, -73.92747)",,,1945 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494974,Sedan,Sedan,,, +01/12/2022,12:30,BRONX,10473,40.822277,-73.86715,"(40.822277, -73.86715)",,,831 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494303,Sedan,,,, +01/13/2022,11:40,QUEENS,11355,40.742973,-73.814316,"(40.742973, -73.814316)",BOOTH MEMORIAL AVENUE,KISSENA BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4494308,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,8:50,MANHATTAN,10014,40.728912,-74.0086,"(40.728912, -74.0086)",GREENWICH STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494491,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/14/2022,21:45,QUEENS,11368,40.752422,-73.8661,"(40.752422, -73.8661)",,,37-12 101 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4494601,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,8:00,QUEENS,11422,,,,139 AVENUE,249 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4494008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,10:11,,,40.859245,-73.81814,"(40.859245, -73.81814)",SHORE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494830,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,9:35,BROOKLYN,11236,40.63501,-73.914055,"(40.63501, -73.914055)",EAST 79 STREET,FLATLANDS AVENUE,,3,0,1,0,0,0,2,0,Unspecified,,,,,4494530,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,15:21,MANHATTAN,10030,40.817314,-73.94223,"(40.817314, -73.94223)",,,2361 7 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495118,Sedan,Sedan,,, +01/14/2022,15:33,QUEENS,11378,40.72299,-73.91069,"(40.72299, -73.91069)",MASPETH AVENUE,58 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494685,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,6:15,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4434057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,17:40,QUEENS,11385,0,0,"(0.0, 0.0)",WOODWARD AVENUE,CORNELIA STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494627,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,9:20,BROOKLYN,11237,40.69862,-73.920135,"(40.69862, -73.920135)",MYRTLE AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494210,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,8:58,,,40.722324,-74.01176,"(40.722324, -74.01176)",WEST STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4494498,Sedan,Sedan,,, +01/13/2022,12:25,BROOKLYN,11238,40.678326,-73.97203,"(40.678326, -73.97203)",CARLTON AVENUE,PROSPECT PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4494640,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,20:18,,,40.66095,-73.92906,"(40.66095, -73.92906)",REMSEN AVENUE,RUTLAND ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494806,Sedan,Sedan,,, +01/06/2022,23:50,QUEENS,11434,40.671566,-73.78466,"(40.671566, -73.78466)",ROCKAWAY BOULEVARD,132 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494519,Sedan,Sedan,,, +01/14/2022,22:00,BROOKLYN,11207,40.66186,-73.88017,"(40.66186, -73.88017)",,,807 ASHFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494929,Sedan,,,, +01/05/2022,18:03,BRONX,10475,40.878147,-73.83229,"(40.878147, -73.83229)",,,99 DARROW PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494767,Sedan,,,, +01/12/2022,15:00,,,40.764706,-73.811005,"(40.764706, -73.811005)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494058,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,9:15,,,40.697247,-73.932846,"(40.697247, -73.932846)",DITMARS STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494496,Sedan,,,, +01/13/2022,11:07,BRONX,10465,40.831,-73.82652,"(40.831, -73.82652)",EAST TREMONT AVENUE,BARKLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495081,Station Wagon/Sport Utility Vehicle,Ambulance,,, +10/21/2021,0:00,BROOKLYN,11207,,,,LIVONIA AVENUE,BRADFORD STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4469692,Sedan,Sedan,,, +11/27/2021,9:30,,,40.686367,-73.929756,"(40.686367, -73.929756)",PUTNAM AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4494950,Sedan,Sedan,,, +01/12/2022,17:05,BROOKLYN,11223,40.60762,-73.97859,"(40.60762, -73.97859)",,,1617 WEST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494877,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,8:35,QUEENS,11361,40.757576,-73.76798,"(40.757576, -73.76798)",BELL BOULEVARD,46 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494267,Pick-up Truck,,,, +01/14/2022,17:48,MANHATTAN,10001,40.75219,-73.99347,"(40.75219, -73.99347)",8 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494857,Station Wagon/Sport Utility Vehicle,Bus,,, +01/12/2022,0:51,BROOKLYN,11226,40.65173,-73.94918,"(40.65173, -73.94918)",,,293 MARTENSE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4493986,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/26/2021,16:00,,,40.802467,-73.958694,"(40.802467, -73.958694)",WEST 112 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495145,Sedan,Motorbike,,, +01/12/2022,22:05,BROOKLYN,11235,40.58786,-73.95527,"(40.58786, -73.95527)",AVENUE Z,EAST 14 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494116,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,18:10,BRONX,10466,40.88492,-73.84883,"(40.88492, -73.84883)",LACONIA AVENUE,EAST 226 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4494300,Station Wagon/Sport Utility Vehicle,Bike,,, +01/13/2022,7:10,BRONX,10452,40.836796,-73.91949,"(40.836796, -73.91949)",GERARD AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4494546,Taxi,Sedan,,, +01/13/2022,22:15,BRONX,10468,40.86832,-73.901276,"(40.86832, -73.901276)",,,100 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4494474,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/12/2022,17:20,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4494606,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/14/2022,14:13,BROOKLYN,11203,40.6491,-73.94649,"(40.6491, -73.94649)",NEW YORK AVENUE,SNYDER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494800,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,18:00,,,,,,RIVERSIDE DRIVE,RIVERSIDE DRIVE WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494848,Sedan,Sedan,,, +01/14/2022,23:00,QUEENS,11377,40.753708,-73.907936,"(40.753708, -73.907936)",,,50-34 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4494876,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,8:10,BRONX,10460,40.850704,-73.88421,"(40.850704, -73.88421)",PROSPECT AVENUE,GROTE STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4494243,Bus,Sedan,,, +01/14/2022,11:30,BROOKLYN,11211,40.70863,-73.958466,"(40.70863, -73.958466)",,,285 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494678,Sedan,Sedan,,, +01/12/2022,16:20,,,40.666428,-73.93691,"(40.666428, -73.93691)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494079,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,0:03,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494402,Sedan,Sedan,,, +01/14/2022,21:00,,,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494629,Sedan,,,, +01/13/2022,16:48,QUEENS,11362,40.75347,-73.72533,"(40.75347, -73.72533)",,,251-29 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494377,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,19:45,MANHATTAN,10033,40.850506,-73.93287,"(40.850506, -73.93287)",WEST 183 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494901,Sedan,,,, +01/14/2022,11:30,BROOKLYN,11217,40.683064,-73.987335,"(40.683064, -73.987335)",,,426 BALTIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494610,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,18:49,QUEENS,11101,40.753304,-73.912575,"(40.753304, -73.912575)",50 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494166,Sedan,,,, +01/13/2022,19:15,MANHATTAN,10037,40.810455,-73.937195,"(40.810455, -73.937195)",,,2101 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494523,Sedan,Bus,,, +01/14/2022,15:40,BROOKLYN,11212,40.65627,-73.90342,"(40.65627, -73.90342)",,,899 MOTHER GASTON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494782,Sedan,Sedan,,, +01/14/2022,4:00,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494760,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/12/2022,0:00,QUEENS,11377,40.739094,-73.91762,"(40.739094, -73.91762)",48 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4494141,Pick-up Truck,E-Scooter,Station Wagon/Sport Utility Vehicle,, +01/04/2022,23:15,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,11:15,,,40.707783,-73.932076,"(40.707783, -73.932076)",MORGAN AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494342,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +01/13/2022,14:06,BRONX,10466,40.89111,-73.863045,"(40.89111, -73.863045)",EAST 228 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494968,Sedan,Box Truck,,, +01/01/2022,15:20,MANHATTAN,10040,40.860794,-73.92692,"(40.860794, -73.92692)",,,125 NAGLE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4495004,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/15/2021,0:00,,,40.827194,-73.944374,"(40.827194, -73.944374)",,,WEST 149 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494719,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,9:10,BROOKLYN,11233,40.676624,-73.91597,"(40.676624, -73.91597)",,,2001 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494820,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/12/2022,23:15,BROOKLYN,11229,40.59804,-73.93169,"(40.59804, -73.93169)",,,2227 PLUMB 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494675,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,15:50,QUEENS,11365,40.734196,-73.78355,"(40.734196, -73.78355)",,,69-70 188 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494363,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,3:48,QUEENS,11101,40.738705,-73.9395,"(40.738705, -73.9395)",,,29-01 BORDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494173,Sedan,Tractor Truck Diesel,,, +01/12/2022,12:58,BROOKLYN,11210,40.628544,-73.94138,"(40.628544, -73.94138)",,,1821 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494528,Sedan,,,, +01/14/2022,12:57,,,40.70299,-73.82519,"(40.70299, -73.82519)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494835,Sedan,Sedan,,, +01/10/2022,23:40,BRONX,10465,40.83181,-73.82724,"(40.83181, -73.82724)",,,3468 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495072,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/14/2022,11:25,BRONX,10469,40.86748,-73.84524,"(40.86748, -73.84524)",ARNOW AVENUE,MORGAN AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4494702,Sedan,Sedan,,, +01/14/2022,6:00,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494479,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,18:28,QUEENS,11004,40.749294,-73.71108,"(40.749294, -73.71108)",,,76-08 263 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434309,Sedan,,,, +01/12/2022,17:30,BRONX,10451,40.810806,-73.92762,"(40.810806, -73.92762)",,,2535 3 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4494074,Sedan,Sedan,,, +01/13/2022,19:19,,,40.849804,-73.92033,"(40.849804, -73.92033)",POPHAM AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4494464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/12/2022,7:55,,,,,,UTICA AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494039,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,23:40,QUEENS,11373,40.7398,-73.87599,"(40.7398, -73.87599)",50 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494411,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,12:40,,,40.724552,-73.72452,"(40.724552, -73.72452)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494271,Sedan,Sedan,,, +01/13/2022,6:45,,,40.69979,-73.950096,"(40.69979, -73.950096)",MARCY AVENUE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Failure to Keep Right,,,,4494944,Station Wagon/Sport Utility Vehicle,Bike,,, +01/07/2022,9:30,,,40.64937,-74.012955,"(40.64937, -74.012955)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4494511,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,9:30,QUEENS,11368,40.758026,-73.85776,"(40.758026, -73.85776)",NORTHERN BOULEVARD,112 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,12:19,,,40.784725,-73.83943,"(40.784725, -73.83943)",15 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494313,Sedan,Tractor Truck Diesel,,, +01/12/2022,23:35,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",GRAND STREET,UNION AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494097,Sedan,,,, +01/13/2022,7:14,,,40.6992,-73.92309,"(40.6992, -73.92309)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494186,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,8:00,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4494911,Sedan,Sedan,,, +01/09/2022,19:15,,,40.751102,-73.8912,"(40.751102, -73.8912)",75 STREET,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494561,Sedan,,,, +01/13/2022,8:45,MANHATTAN,10029,40.78882,-73.943756,"(40.78882, -73.943756)",,,2002 2 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494288,Sedan,Box Truck,,, +10/20/2021,17:19,,,40.8450473,-73.8714799,"(40.8450473, -73.8714799)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4469989,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/22/2021,13:21,,,40.8940972,-73.9082784,"(40.8940972, -73.9082784)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4470031,Sedan,LIMO,Sedan,Pick-up Truck, +10/21/2021,14:00,,,40.5835422,-73.9841751,"(40.5835422, -73.9841751)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470100,Sedan,,,, +01/12/2022,19:19,QUEENS,11423,40.71005,-73.76616,"(40.71005, -73.76616)",99 AVENUE,193 STREET,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4494231,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Dump, +01/14/2022,21:25,,,40.853813,-73.90734,"(40.853813, -73.90734)",EAST BURNSIDE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495150,Sedan,E-Bike,,, +10/15/2021,7:00,,,40.6781564,-73.9441507,"(40.6781564, -73.9441507)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4470338,Sedan,,,, +10/21/2021,12:34,BROOKLYN,11215,40.6703383,-73.9822127,"(40.6703383, -73.9822127)",,,362 6 AVENUE,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4469892,Sedan,Tanker,,, +10/21/2021,15:40,BROOKLYN,11220,40.6441263,-74.0041656,"(40.6441263, -74.0041656)",47 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4469653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/14/2021,18:42,BROOKLYN,11217,40.6807954,-73.9776432,"(40.6807954, -73.9776432)",,,72 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4470527,Box Truck,,,, +01/12/2022,8:15,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494578,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,13:39,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4494023,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,9:50,QUEENS,11368,40.74771,-73.855515,"(40.74771, -73.855515)",46 AVENUE,109 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4493975,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,14:35,QUEENS,11419,40.68779,-73.820175,"(40.68779, -73.820175)",LIBERTY AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494119,Sedan,,,, +01/11/2022,10:40,BROOKLYN,11203,40.66323,-73.93161,"(40.66323, -73.93161)",REMSEN AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494797,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,6:35,BRONX,10461,40.84595,-73.82942,"(40.84595, -73.82942)",JARVIS AVENUE,ROBERTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494450,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,17:10,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4494195,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,15:00,QUEENS,11004,40.74831,-73.70954,"(40.74831, -73.70954)",UNION TURNPIKE,263 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494100,Sedan,Sedan,,, +01/13/2022,9:12,,,40.835293,-73.881935,"(40.835293, -73.881935)",SHERIDAN EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,Unspecified,,,4494538,Motorcycle,Bus,Tractor Truck Diesel,, +01/13/2022,19:20,BROOKLYN,11226,40.64882,-73.96468,"(40.64882, -73.96468)",,,1615 CHURCH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494381,Sedan,,,, +01/13/2022,20:58,BROOKLYN,11207,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,LIVONIA AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4494398,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/14/2022,15:35,,,40.769188,-73.8009,"(40.769188, -73.8009)",164 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,20:36,QUEENS,11103,40.763275,-73.91438,"(40.763275, -73.91438)",,,30-05 41 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4494693,Bike,Sedan,,, +01/13/2022,7:48,BROOKLYN,11211,40.713177,-73.954895,"(40.713177, -73.954895)",,,34 MARCY AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494347,Sedan,Flat Bed,,, +01/14/2022,17:50,BRONX,10470,40.90117,-73.86199,"(40.90117, -73.86199)",,,518 EAST 240 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494961,,,,, +01/14/2022,22:34,,,40.788692,-73.93787,"(40.788692, -73.93787)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4494653,Sedan,Sedan,,, +01/10/2022,0:00,,,40.612293,-74.03412,"(40.612293, -74.03412)",101 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4494432,Sedan,Box Truck,,, +01/12/2022,13:45,,,40.834465,-73.92311,"(40.834465, -73.92311)",CROMWELL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494543,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,21:30,MANHATTAN,10040,40.86159,-73.92475,"(40.86159, -73.92475)",NAGLE AVENUE,DYCKMAN STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4495000,Sedan,E-Bike,,, +01/13/2022,13:31,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494506,Sedan,Van,,, +01/12/2022,9:50,BROOKLYN,11233,40.672386,-73.91465,"(40.672386, -73.91465)",,,1873 PROSPECT PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,21:00,BROOKLYN,11235,40.585354,-73.93104,"(40.585354, -73.93104)",,,3900 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4494755,Sedan,,,, +01/12/2022,17:00,BROOKLYN,11228,40.619556,-74.00004,"(40.619556, -74.00004)",,,1521 71 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494133,Sedan,,,, +01/13/2022,4:00,,,,,,UNION TURNPIKE,141 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494358,Sedan,,,, +01/14/2022,6:05,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494447,Sedan,Sedan,,, +01/12/2022,10:30,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494263,Box Truck,PK,,, +01/11/2022,23:00,,,40.856045,-73.90079,"(40.856045, -73.90079)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494460,Sedan,Pick-up Truck,,, +01/14/2022,8:00,BROOKLYN,11214,40.599667,-73.9962,"(40.599667, -73.9962)",,,8708 BAY PARKWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4494888,Bus,4 dr sedan,,, +01/13/2022,17:30,QUEENS,11417,40.67172,-73.850975,"(40.67172, -73.850975)",LINDEN BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494475,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,19:58,,,40.626713,-74.16214,"(40.626713, -74.16214)",,,2171 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494592,Sedan,Pick-up Truck,,, +01/08/2022,23:47,,,40.781715,-73.98682,"(40.781715, -73.98682)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4494570,Taxi,Sedan,,, +10/23/2021,3:35,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4470043,Sedan,,,, +01/12/2022,14:10,QUEENS,11367,40.729443,-73.82551,"(40.729443, -73.82551)",JEWEL AVENUE,140 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494066,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,10:20,QUEENS,11414,40.667892,-73.84204,"(40.667892, -73.84204)",CROSS BAY BOULEVARD,153 AVENUE,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,,,4494284,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,22:30,MANHATTAN,10013,40.716015,-74.00883,"(40.716015, -74.00883)",WEST BROADWAY,READE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494417,Sedan,,,, +01/12/2022,18:40,MANHATTAN,10031,40.83117,-73.94798,"(40.83117, -73.94798)",,,625 WEST 152 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494247,Sedan,Sedan,,, +01/12/2022,16:27,MANHATTAN,10025,40.791496,-73.97026,"(40.791496, -73.97026)",,,123 WEST 93 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passenger Distraction,,,,4494050,Box Truck,Sedan,,, +01/12/2022,17:00,,,40.683434,-73.8343,"(40.683434, -73.8343)",LIBERTY AVENUE,107 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494091,Sedan,Pick-up Truck,,, +01/14/2022,14:15,QUEENS,11433,40.693214,-73.79654,"(40.693214, -73.79654)",,,108-54 155 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Following Too Closely,,,,4494565,Station Wagon/Sport Utility Vehicle,PK,,, +01/13/2022,0:20,MANHATTAN,10035,40.803753,-73.93999,"(40.803753, -73.93999)",EAST 123 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494318,Sedan,Sedan,,, +01/13/2022,14:30,QUEENS,11435,40.68787,-73.79747,"(40.68787, -73.79747)",111 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,Unspecified,,,4494309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,13:00,MANHATTAN,10004,40.704964,-74.01172,"(40.704964, -74.01172)",,,33 BEAVER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494014,Sedan,,,, +01/14/2022,16:15,,,40.715576,-73.776146,"(40.715576, -73.776146)",CHELSEA STREET,WEXFORD TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494582,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,19:50,BROOKLYN,11220,40.634598,-74.02168,"(40.634598, -74.02168)",,,466 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494433,Sedan,,,, +01/14/2022,7:00,BROOKLYN,11236,40.63931,-73.89432,"(40.63931, -73.89432)",AVENUE L,EAST 98 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494533,Sedan,,,, +01/13/2022,15:13,QUEENS,11105,40.775997,-73.91783,"(40.775997, -73.91783)",,,23-29 CRESCENT STREET,2,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4494860,E-Bike,,,, +01/14/2022,16:04,BROOKLYN,11226,40.64813,-73.960655,"(40.64813, -73.960655)",,,600 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494793,Sedan,Sedan,,, +01/08/2022,23:49,BRONX,10453,40.8518,-73.909225,"(40.8518, -73.909225)",EAST TREMONT AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4494465,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,18:27,BROOKLYN,11220,40.64311,-74.016075,"(40.64311, -74.016075)",56 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494352,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,23:00,QUEENS,11417,40.676777,-73.8589,"(40.676777, -73.8589)",78 STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494486,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,10:30,BROOKLYN,11218,40.640205,-73.98558,"(40.640205, -73.98558)",,,1325 39 STREET,1,0,1,0,0,0,0,0,,,,,,4494178,,,,, +01/13/2022,20:50,,,40.665134,-73.99669,"(40.665134, -73.99669)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4494390,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,17:40,BROOKLYN,11207,40.65978,-73.88292,"(40.65978, -73.88292)",STANLEY AVENUE,SCHENCK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494394,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,8:20,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493948,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,22:20,,,40.827904,-73.91218,"(40.827904, -73.91218)",PARK AVENUE,EAST 165 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4494454,Taxi,Moped,,, +01/13/2022,8:00,,,40.62026,-74.16774,"(40.62026, -74.16774)",FELTON STREET,FAHY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494208,Sedan,,,, +01/13/2022,8:45,,,40.683037,-73.96478,"(40.683037, -73.96478)",FULTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494224,Flat Bed,Bus,,, +01/14/2022,1:00,,,40.856323,-73.87244,"(40.856323, -73.87244)",EAST FORDHAM ROAD,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4494501,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,20:36,MANHATTAN,10038,40.70953,-74.00842,"(40.70953, -74.00842)",JOHN STREET,NASSAU STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494689,Sedan,,,, +01/13/2022,19:30,BRONX,10460,40.842327,-73.86828,"(40.842327, -73.86828)",,,591 VANNEST AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494426,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,11:20,QUEENS,11419,40.68514,-73.8206,"(40.68514, -73.8206)",122 STREET,107 AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4517267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,17:35,QUEENS,11377,40.745438,-73.90948,"(40.745438, -73.90948)",55 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494127,Sedan,,,, +01/13/2022,10:10,BRONX,10466,40.88698,-73.84745,"(40.88698, -73.84745)",EAST 229 STREET,LACONIA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494328,Sedan,,,, +01/13/2022,12:30,,,40.832714,-73.92876,"(40.832714, -73.92876)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494597,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/14/2022,2:23,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494647,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,15:35,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",PROVOST AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,11:15,STATEN ISLAND,10310,40.632236,-74.120445,"(40.632236, -74.120445)",CARY AVENUE,ELIZABETH STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494560,Sedan,Sedan,,, +01/14/2022,13:25,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494914,Sedan,Sedan,,, +01/14/2022,14:57,BROOKLYN,11237,40.711746,-73.92357,"(40.711746, -73.92357)",SCOTT AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494734,Station Wagon/Sport Utility Vehicle,Dump,,, +01/11/2022,13:56,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",FORT GREENE PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495052,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/02/2022,20:15,,,40.605423,-74.120865,"(40.605423, -74.120865)",,,876 MANOR ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495123,Sedan,Sedan,,, +01/12/2022,22:39,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4494151,Sedan,Sedan,,, +01/13/2022,19:48,,,40.828957,-73.842064,"(40.828957, -73.842064)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494443,Sedan,Sedan,,, +01/14/2022,3:36,,,40.5559,-74.13979,"(40.5559, -74.13979)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494575,Sedan,Pick-up Truck,,, +01/13/2022,6:55,STATEN ISLAND,10312,40.556988,-74.169014,"(40.556988, -74.169014)",RICHMOND AVENUE,BARLOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494555,Sedan,Sedan,,, +01/14/2022,11:35,BROOKLYN,11214,40.59993,-73.99832,"(40.59993, -73.99832)",,,151 BAY 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494892,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,7:31,BRONX,10462,40.83954,-73.85067,"(40.83954, -73.85067)",,,1662 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4495146,Sedan,Sedan,Sedan,Taxi, +01/14/2022,19:30,MANHATTAN,10022,40.762962,-73.97188,"(40.762962, -73.97188)",EAST 58 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494628,Sedan,Sedan,,, +01/12/2022,17:26,,,40.88661,-73.90704,"(40.88661, -73.90704)",WEST 236 STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494492,Sedan,Pick-up Truck,,, +01/14/2022,14:29,BROOKLYN,11203,40.650406,-73.9254,"(40.650406, -73.9254)",SNYDER AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494805,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,19:30,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,8:31,MANHATTAN,10033,40.844475,-73.93545,"(40.844475, -73.93545)",,,189 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4494850,Sedan,Pick-up Truck,,, +01/11/2022,17:47,BRONX,10459,40.821415,-73.89826,"(40.821415, -73.89826)",,,915 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4494725,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,10:24,BROOKLYN,11207,40.66918,-73.896576,"(40.66918, -73.896576)",,,605 SUTTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494930,Box Truck,Sedan,,, +01/14/2022,20:15,MANHATTAN,10027,40.809086,-73.94859,"(40.809086, -73.94859)",,,163 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495140,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,8:51,STATEN ISLAND,10304,,,,JEFFERSON STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494217,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,17:00,QUEENS,11356,40.784554,-73.85502,"(40.784554, -73.85502)",112 STREET,14 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494084,Sedan,,,, +01/14/2022,16:20,QUEENS,11420,40.666878,-73.814,"(40.666878, -73.814)",,,126-21 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494623,Sedan,Sedan,,, +01/12/2022,7:01,BROOKLYN,11207,40.66287,-73.893555,"(40.66287, -73.893555)",,,579 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4494007,Sedan,Motorbike,,, +01/13/2022,9:30,BROOKLYN,11217,40.68962,-73.97313,"(40.68962, -73.97313)",DE KALB AVENUE,CUMBERLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494277,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,15:19,BRONX,10474,40.818596,-73.88372,"(40.818596, -73.88372)",,,845 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494337,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/13/2022,2:55,BROOKLYN,11208,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,DREW STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4494112,Box Truck,Sedan,,, +01/12/2022,17:22,,,40.68195,-73.89652,"(40.68195, -73.89652)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4494106,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/12/2022,8:45,QUEENS,11355,,,,COLDEN STREET,CHERRY AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4494304,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,13:50,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494437,Sedan,Dump,,, +01/02/2022,8:08,,,40.689915,-73.7779,"(40.689915, -73.7779)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495023,Station Wagon/Sport Utility Vehicle,Bus,,, +01/14/2022,20:44,BROOKLYN,11220,40.640835,-74.01844,"(40.640835, -74.01844)",60 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,16:20,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",FRESH POND ROAD,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494684,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,7:06,QUEENS,11419,40.69056,-73.8141,"(40.69056, -73.8141)",132 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4494529,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,15:31,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494867,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,5:21,BRONX,10474,40.808933,-73.886,"(40.808933, -73.886)",,,411 COSTER STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4494144,Box Truck,Bus,,, +01/12/2022,20:26,BROOKLYN,11219,40.638912,-74.000084,"(40.638912, -74.000084)",,,970 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494182,Sedan,,,, +01/13/2022,14:21,QUEENS,11368,40.746647,-73.86218,"(40.746647, -73.86218)",,,102-19 44 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494406,Ambulance,Tractor Truck Diesel,,, +01/13/2022,13:35,BROOKLYN,11234,40.60625,-73.92374,"(40.60625, -73.92374)",RYDER STREET,AVENUE V,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494373,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,9:23,,,40.70481,-73.93932,"(40.70481, -73.93932)",SEIGEL STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494482,Bus,Tractor Truck Diesel,,, +01/14/2022,14:41,BROOKLYN,11213,40.663822,-73.93862,"(40.663822, -73.93862)",,,712 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,7:50,QUEENS,11413,40.686436,-73.752914,"(40.686436, -73.752914)",122 AVENUE,195 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4494497,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,7:26,,,40.698536,-73.91788,"(40.698536, -73.91788)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494204,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,17:00,BROOKLYN,11215,40.666496,-73.98773,"(40.666496, -73.98773)",,,277 13 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494639,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,6:25,MANHATTAN,10065,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,EAST 61 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494514,Sedan,,,, +01/12/2022,21:14,BROOKLYN,11221,40.689922,-73.92281,"(40.689922, -73.92281)",BROADWAY,LINDEN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494135,Pick-up Truck,Sedan,,, +01/07/2022,10:40,QUEENS,11433,40.69498,-73.79009,"(40.69498, -73.79009)",109 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4494469,Sedan,Sedan,,, +01/13/2022,19:15,BRONX,10467,40.884026,-73.869286,"(40.884026, -73.869286)",,,3560 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,Unspecified,,,4494953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,16:30,MANHATTAN,10013,40.71793,-74.00099,"(40.71793, -74.00099)",WALKER STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494766,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,22:29,BRONX,10458,,,,WEBSTER AVE,BEDFORD PARK BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4517926,Bike,,,, +01/13/2022,6:00,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",UNION TURNPIKE,MAIN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494359,Station Wagon/Sport Utility Vehicle,Van,Station Wagon/Sport Utility Vehicle,, +01/13/2022,0:30,BROOKLYN,11207,40.662743,-73.885124,"(40.662743, -73.885124)",HEGEMAN AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494921,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,15:44,MANHATTAN,10034,40.864483,-73.919044,"(40.864483, -73.919044)",,,500 WEST 207 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494980,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,11:00,STATEN ISLAND,10305,40.599155,-74.06772,"(40.599155, -74.06772)",,,146 MAJOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494669,Sedan,,,, +01/13/2022,17:29,,,40.72787,-73.92913,"(40.72787, -73.92913)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4494368,Van,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/14/2022,2:24,,,40.8436,-73.94511,"(40.8436, -73.94511)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4494845,Pick-up Truck,,,, +01/14/2022,2:55,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4494676,Sedan,,,, +01/14/2022,19:20,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,19:45,,,,,,METROPOLITAN AVENUE,RENTAR PLAZA,,0,1,0,1,0,0,0,0,Unspecified,,,,,4494524,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,11:40,BROOKLYN,11222,40.723026,-73.93997,"(40.723026, -73.93997)",,,687 MEEKER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495094,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +01/12/2022,19:00,QUEENS,11367,40.71991,-73.809044,"(40.71991, -73.809044)",PARSONS BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494378,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,7:30,,,40.72738,-73.94575,"(40.72738, -73.94575)",NORMAN AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4494168,Sedan,Garbage or Refuse,,, +02/20/2022,4:54,MANHATTAN,10022,40.76025,-73.96753,"(40.76025, -73.96753)",EAST 57 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504547,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,12:30,BROOKLYN,11207,40.68812,-73.9117,"(40.68812, -73.9117)",EVERGREEN AVENUE,ELDERT STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4504187,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,20:30,QUEENS,11422,40.66535,-73.73073,"(40.66535, -73.73073)",,,247-14 SOUTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504264,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,11:30,BRONX,10469,40.8639,-73.83385,"(40.8639, -73.83385)",,,1806 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4504710,Sedan,,,, +02/20/2022,15:28,BROOKLYN,11223,40.58438,-73.973274,"(40.58438, -73.973274)",BOKEE COURT,COLBY COURT,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504699,Sedan,Sedan,,, +02/20/2022,0:12,,,40.659336,-73.90907,"(40.659336, -73.90907)",NEWPORT STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504134,Sedan,,,, +02/12/2022,11:35,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4504902,Sedan,Sedan,Sedan,Sedan, +01/25/2022,7:51,,,40.781837,-73.979294,"(40.781837, -73.979294)",WEST 77 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504733,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,4:17,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4504378,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/19/2022,23:50,MANHATTAN,10022,40.75582,-73.970764,"(40.75582, -73.970764)",3 AVENUE,EAST 50 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504799,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,6:50,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504803,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/20/2022,0:25,,,40.667915,-73.996414,"(40.667915, -73.996414)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504045,Sedan,,,, +02/20/2022,23:20,MANHATTAN,10028,40.773132,-73.946106,"(40.773132, -73.946106)",,,80 EAST END AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504454,Taxi,Pick-up Truck,,, +02/20/2022,9:30,,,40.69642,-73.95978,"(40.69642, -73.95978)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504507,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,16:00,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4504888,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,1:51,,,40.84497,-73.9092,"(40.84497, -73.9092)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4432177,Sedan,Sedan,,, +07/04/2021,18:00,,,40.750256,-73.938644,"(40.750256, -73.938644)",28 STREET,QUEENS PLAZA NORTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433852,Pick-up Truck,Sedan,,, +04/06/2022,10:10,BROOKLYN,11226,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517532,Sedan,road sweep,,, +04/02/2022,10:10,QUEENS,11385,40.69549,-73.89301,"(40.69549, -73.89301)",61 STREET,80 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517381,Sedan,,,, +04/07/2022,12:15,MANHATTAN,10013,40.715157,-74.00212,"(40.715157, -74.00212)",WORTH STREET,CENTRE STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517091,Station Wagon/Sport Utility Vehicle,Bike,,, +04/06/2022,13:15,BRONX,10473,40.817543,-73.85084,"(40.817543, -73.85084)",,,530 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516989,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,13:20,BROOKLYN,11203,40.651196,-73.94161,"(40.651196, -73.94161)",,,3823 CHURCH AVENUE,0,0,0,0,0,0,0,0,Physical Disability,,,,,4516804,Sedan,,,, +04/05/2022,13:40,BRONX,10456,40.826183,-73.90975,"(40.826183, -73.90975)",,,1011 WASHINGTON AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517479,Sedan,Sedan,,, +04/08/2022,20:00,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517816,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,22:00,BROOKLYN,11226,40.642017,-73.96266,"(40.642017, -73.96266)",CORTELYOU ROAD,EAST 17 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517536,Sedan,,,, +03/31/2022,5:12,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4517567,Van,Sedan,,, +04/08/2022,11:45,MANHATTAN,10027,40.810062,-73.95497,"(40.810062, -73.95497)",WEST 123 STREET,MORNINGSIDE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517746,Pick-up Truck,E-Bike,,, +04/06/2022,22:05,BROOKLYN,11208,40.67643,-73.86453,"(40.67643, -73.86453)",,,567 ELDERTS LANE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4516832,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/07/2022,9:54,BROOKLYN,11215,40.668793,-73.97999,"(40.668793, -73.97999)",,,267 7 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517668,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,0:07,,,40.84797,-73.924774,"(40.84797, -73.924774)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unsafe Lane Changing,,,4517207,Sedan,Sedan,,, +04/06/2022,8:35,QUEENS,11377,40.75428,-73.89751,"(40.75428, -73.89751)",69 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4516737,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,16:25,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517790,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,21:25,BRONX,10474,40.811043,-73.88073,"(40.811043, -73.88073)",OAK POINT AVENUE,HALLECK STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517193,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,10:45,BROOKLYN,11223,40.592186,-73.9777,"(40.592186, -73.9777)",86 STREET,WEST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4517000,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/07/2022,5:25,,,40.806126,-73.967384,"(40.806126, -73.967384)",WEST 112 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517801,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,17:10,BROOKLYN,11213,40.668915,-73.93343,"(40.668915, -73.93343)",,,1044 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517326,Sedan,Sedan,,, +04/06/2022,15:30,,,40.680504,-73.90629,"(40.680504, -73.90629)",DE SALES PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4516887,Sedan,Bus,,, +04/07/2022,8:30,QUEENS,11358,40.768105,-73.804825,"(40.768105, -73.804825)",160 STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4517239,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,19:00,QUEENS,11433,40.703293,-73.7961,"(40.703293, -73.7961)",BREWER BOULEVARD,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517890,Sedan,,,, +04/08/2022,12:10,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517321,Sedan,Box Truck,,, +04/07/2022,0:00,,,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517171,Taxi,,,, +04/07/2022,21:20,BROOKLYN,11208,40.67775,-73.88267,"(40.67775, -73.88267)",,,254 ESSEX STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4517222,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/06/2022,14:03,,,40.627415,-74.16045,"(40.627415, -74.16045)",,,357 HARBOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516808,Sedan,Sedan,,, +04/06/2022,21:00,BROOKLYN,11206,40.699657,-73.95121,"(40.699657, -73.95121)",,,565 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516840,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,17:48,BROOKLYN,11219,40.62349,-74.000534,"(40.62349, -74.000534)",67 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434321,Sedan,Sedan,,, +07/05/2021,11:20,STATEN ISLAND,10305,40.586277,-74.070465,"(40.586277, -74.070465)",,,469 CAPODANNO BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4434464,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2021,19:17,BROOKLYN,11236,40.635475,-73.89156,"(40.635475, -73.89156)",ROCKAWAY PARKWAY,AVENUE N,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4434374,Sedan,Sedan,,, +07/03/2021,10:40,,,,,,PELHAM PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4434983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,3:53,BROOKLYN,11218,40.63974,-73.97342,"(40.63974, -73.97342)",,,377 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4434935,Sedan,,,, +07/05/2021,0:38,,,40.58056,-73.83459,"(40.58056, -73.83459)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4433927,Sedan,Sedan,,, +07/05/2021,6:00,MANHATTAN,10016,40.740395,-73.97909,"(40.740395, -73.97909)",2 AVENUE,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434354,Sedan,Sedan,Sedan,, +07/05/2021,0:45,QUEENS,11435,40.69591,-73.80995,"(40.69591, -73.80995)",CRESSKILL PLACE,97 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434601,Sedan,,,, +07/05/2021,18:00,,,,,,RIVIERA COURT,121 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434396,Sedan,,,, +07/05/2021,11:10,,,40.65501,-73.90506,"(40.65501, -73.90506)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434855,Sedan,,,, +07/05/2021,0:15,BRONX,10457,40.843372,-73.904945,"(40.843372, -73.904945)",EAST 173 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4433979,Ambulance,,,, +07/05/2021,13:30,,,40.5731,-74.00143,"(40.5731, -74.00143)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434405,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,23:36,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4434969,Sedan,Taxi,Sedan,, +07/01/2021,15:00,BROOKLYN,11249,40.717022,-73.96527,"(40.717022, -73.96527)",KENT AVENUE,NORTH 1 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435047,Sedan,,,, +07/05/2021,20:43,QUEENS,11412,40.692383,-73.748726,"(40.692383, -73.748726)",119 AVENUE,202 STREET,,1,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4434765,E-Scooter,,,, +07/05/2021,0:27,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434303,Pick-up Truck,Sedan,,, +07/05/2021,18:45,STATEN ISLAND,10306,40.572132,-74.10809,"(40.572132, -74.10809)",HYLAN BOULEVARD,BURBANK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4434472,Sedan,Sedan,,, +07/05/2021,16:20,,,40.67469,-73.79804,"(40.67469, -73.79804)",123 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434526,Sedan,Sedan,,, +07/05/2021,22:30,,,40.802498,-73.94092,"(40.802498, -73.94092)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434607,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,18:24,,,40.599705,-73.99016,"(40.599705, -73.99016)",86 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4434657,Sedan,,,, +07/05/2021,12:00,BROOKLYN,11206,40.709213,-73.938995,"(40.709213, -73.938995)",,,241 SCHOLES STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4434233,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,5:00,MANHATTAN,10016,40.740395,-73.97909,"(40.740395, -73.97909)",2 AVENUE,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434125,Sedan,,,, +07/05/2021,2:58,QUEENS,11368,40.74287,-73.8593,"(40.74287, -73.8593)",,,50-34 103 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4434219,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/05/2021,6:51,BROOKLYN,11211,40.719006,-73.95245,"(40.719006, -73.95245)",,,619 UNION AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4434173,Sedan,,,, +07/04/2021,19:55,BROOKLYN,11212,40.66117,-73.92157,"(40.66117, -73.92157)",,,230 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435007,Sedan,Sedan,,, +07/05/2021,3:50,QUEENS,11426,40.723083,-73.72817,"(40.723083, -73.72817)",JAMAICA AVENUE,239 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4434299,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:45,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434075,Sedan,Sedan,,, +07/05/2021,2:30,,,40.682846,-73.95382,"(40.682846, -73.95382)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4434654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/05/2021,20:30,,,40.5988,-73.98866,"(40.5988, -73.98866)",BAY 37 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434390,Sedan,,,, +07/05/2021,4:00,BROOKLYN,11208,40.680817,-73.87488,"(40.680817, -73.87488)",ATLANTIC AVENUE,CHESTNUT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434418,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,5:33,,,40.786724,-73.983246,"(40.786724, -73.983246)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434709,Sedan,,,, +07/05/2021,2:30,,,40.670208,-73.79156,"(40.670208, -73.79156)",147 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434537,Sedan,,,, +07/05/2021,15:30,BROOKLYN,11233,40.683434,-73.935776,"(40.683434, -73.935776)",,,429 HALSEY STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434666,Station Wagon/Sport Utility Vehicle,usps,,, +07/05/2021,10:40,MANHATTAN,10032,40.837074,-73.944305,"(40.837074, -73.944305)",WEST 161 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434116,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,13:45,,,40.634117,-73.94588,"(40.634117, -73.94588)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4434245,Bus,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,21:22,,,40.86804,-73.879105,"(40.86804, -73.879105)",MOSHOLU PARKWAY,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4434361,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,17:40,,,40.86235,-73.89997,"(40.86235, -73.89997)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434515,Sedan,Sedan,,, +07/05/2021,12:00,MANHATTAN,10010,40.736816,-73.980415,"(40.736816, -73.980415)",,,335 EAST 22 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434914,Sedan,Bus,,, +07/05/2021,12:13,QUEENS,11429,40.713516,-73.748634,"(40.713516, -73.748634)",,,99-33 211 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434305,Sedan,,,, +07/05/2021,17:38,,,40.643894,-73.93826,"(40.643894, -73.93826)",CLARENDON ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434335,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,20:50,QUEENS,11374,40.73251,-73.86827,"(40.73251, -73.86827)",ELIOT AVENUE,QUEENS BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4435016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2021,2:45,,,40.76663,-73.89605,"(40.76663, -73.89605)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434188,Sedan,Sedan,,, +07/05/2021,17:30,BROOKLYN,11212,40.668987,-73.915436,"(40.668987, -73.915436)",PITKIN AVENUE,HERZL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434852,Sedan,,,, +07/05/2021,4:10,BRONX,10460,40.835716,-73.89205,"(40.835716, -73.89205)",EAST 172 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434581,Sedan,,,, +07/05/2021,19:46,QUEENS,11385,40.70703,-73.909325,"(40.70703, -73.909325)",BLEECKER STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434623,Sedan,,,, +07/05/2021,8:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434812,Sedan,Sedan,,, +06/20/2021,9:55,QUEENS,11385,40.702835,-73.86983,"(40.702835, -73.86983)",79 PLACE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434998,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,14:25,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434380,Sedan,Sedan,,, +07/02/2021,18:28,BRONX,10460,,,,CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434942,Sedan,AMBULANCE,,, +07/05/2021,18:30,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434406,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,20:15,QUEENS,11377,0,0,"(0.0, 0.0)",TRIMBLE ROAD,64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434344,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:05,QUEENS,11419,40.6941,-73.8211,"(40.6941, -73.8211)",,,126-10 95 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4434494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,16:30,,,40.632263,-74.13768,"(40.632263, -74.13768)",CLINTON PLACE,PORT RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434868,Sedan,,,, +07/05/2021,20:14,BROOKLYN,11208,40.664856,-73.88023,"(40.664856, -73.88023)",HEGEMAN AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434437,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2021,3:45,MANHATTAN,10010,40.743168,-73.98841,"(40.743168, -73.98841)",,,210 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434355,Sedan,,,, +07/05/2021,20:05,BROOKLYN,11208,40.679245,-73.873116,"(40.679245, -73.873116)",EUCLID AVENUE,MC KINLEY AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4434438,Sedan,Bike,,, +07/05/2021,17:45,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,EAST 60 STREET,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434401,Bike,Bike,,, +07/04/2021,19:40,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434962,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,0:26,,,40.570877,-74.16984,"(40.570877, -74.16984)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4433949,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,0:36,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435028,Taxi,Sedan,,, +07/05/2021,17:55,BROOKLYN,11226,40.650856,-73.9486,"(40.650856, -73.9486)",CHURCH AVENUE,EAST 31 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434331,Sedan,,,, +07/05/2021,2:26,MANHATTAN,10029,40.78588,-73.94884,"(40.78588, -73.94884)",EAST 97 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434786,Sedan,Sedan,,, +07/03/2021,11:33,BRONX,10467,40.876343,-73.863144,"(40.876343, -73.863144)",,,767 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434933,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,5:05,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4434004,Sedan,,,, +06/26/2021,4:00,BROOKLYN,11205,40.68888,-73.960014,"(40.68888, -73.960014)",LAFAYETTE AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4434982,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/05/2021,14:18,QUEENS,11411,40.692352,-73.74352,"(40.692352, -73.74352)",,,218-29 119 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434308,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,12:39,,,40.57554,-73.979645,"(40.57554, -73.979645)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4434402,Sedan,Tow Truck / Wrecker,,, +07/04/2021,23:59,BRONX,10453,40.85447,-73.91008,"(40.85447, -73.91008)",HARRISON AVENUE,WEST BURNSIDE AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4435072,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,1:40,QUEENS,11101,40.74629,-73.93327,"(40.74629, -73.93327)",VANDAM STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434345,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,7:01,BROOKLYN,11225,40.656956,-73.95262,"(40.656956, -73.95262)",,,215 WINTHROP STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434753,Sedan,,,, +07/05/2021,15:00,,,40.63445,-74.1398,"(40.63445, -74.1398)",,,28 CRITTENDEN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434867,Sedan,Pick-up Truck,,, +07/05/2021,4:00,BRONX,10451,40.81044,-73.93037,"(40.81044, -73.93037)",,,225 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434375,Sedan,Sedan,,, +07/05/2021,7:50,BROOKLYN,11203,40.642197,-73.92835,"(40.642197, -73.92835)",AVENUE D,EAST 51 STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4435013,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,2:55,BRONX,10457,40.838875,-73.90266,"(40.838875, -73.90266)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4434187,Sedan,Bike,,, +07/05/2021,11:23,QUEENS,11385,,,,CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434222,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,15:33,BROOKLYN,11234,40.621437,-73.93503,"(40.621437, -73.93503)",,,3932 FLATLANDS AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4434555,Sedan,Bus,,, +07/05/2021,18:03,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4434323,Sedan,Bike,,, +07/05/2021,16:15,BROOKLYN,11216,40.67446,-73.95286,"(40.67446, -73.95286)",ROGERS AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434684,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,3:57,QUEENS,11416,40.681984,-73.84977,"(40.681984, -73.84977)",ROCKAWAY BOULEVARD,90 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4434117,Motorbike,,,, +07/05/2021,22:10,MANHATTAN,10007,40.713314,-74.00777,"(40.713314, -74.00777)",,,9 MURRAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434455,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,8:52,BRONX,10472,40.8302,-73.87862,"(40.8302, -73.87862)",,,1263 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434589,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,8:40,,,40.831776,-73.82097,"(40.831776, -73.82097)",THROGS NECK EXPRESSWAY,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4434208,Sedan,,,, +07/05/2021,19:09,BRONX,10468,40.861744,-73.911804,"(40.861744, -73.911804)",WEST FORDHAM ROAD,CEDAR AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434360,E-Scooter,,,, +06/30/2021,15:50,,,40.733433,-73.9955,"(40.733433, -73.9955)",WEST 10 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434918,Motorcycle,Sedan,,, +06/23/2021,8:00,QUEENS,11361,40.767727,-73.78427,"(40.767727, -73.78427)",204 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434992,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,16:20,BRONX,10463,40.886757,-73.9104,"(40.886757, -73.9104)",NETHERLAND AVENUE,WEST 236 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434710,Sedan,Sedan,,, +07/05/2021,1:05,QUEENS,11435,40.691,-73.79761,"(40.691, -73.79761)",SUTPHIN BOULEVARD,109 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434315,Sedan,Sedan,,, +07/05/2021,19:00,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",SOUTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434368,Sedan,Sedan,,, +07/05/2021,10:52,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434891,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/05/2021,16:56,BRONX,10469,40.879616,-73.84189,"(40.879616, -73.84189)",,,3473 BRUNER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4434536,Station Wagon/Sport Utility Vehicle,Sedan,Flat Bed,, +07/05/2021,6:00,QUEENS,11434,40.687965,-73.76651,"(40.687965, -73.76651)",BAISLEY BOULEVARD,178 PLACE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4434049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/05/2021,11:38,BROOKLYN,11221,40.687614,-73.93838,"(40.687614, -73.93838)",,,650 GATES AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434665,Ambulance,Bus,,, +07/05/2021,8:06,,,,,,93 AVENUE,VANERVEER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434300,Sedan,Sedan,Sedan,, +07/05/2021,10:35,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434595,Sedan,Sedan,,, +07/05/2021,11:50,BRONX,10458,40.85451,-73.89025,"(40.85451, -73.89025)",,,565 EAST 184 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434470,Sedan,,,, +07/05/2021,19:30,BROOKLYN,11226,40.64485,-73.96002,"(40.64485, -73.96002)",OCEAN AVENUE,BEVERLEY ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434389,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2021,14:30,BROOKLYN,11203,40.65349,-73.94697,"(40.65349, -73.94697)",,,830 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435006,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,23:52,BROOKLYN,11207,40.671715,-73.8882,"(40.671715, -73.8882)",BELMONT AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434417,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,14:01,,,,,,FDR DRIVE,EAST 110 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4434896,Motorscooter,,,, +07/05/2021,15:40,BROOKLYN,11226,40.65525,-73.952965,"(40.65525, -73.952965)",CLARKSON AVENUE,ROGERS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434334,,,,, +07/05/2021,17:55,BROOKLYN,11213,40.677483,-73.93033,"(40.677483, -73.93033)",ATLANTIC AVENUE,UTICA AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434685,Sedan,E-Scooter,,, +07/05/2021,14:11,MANHATTAN,10036,,,,,,11 TIMES SQUARE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434827,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,6:13,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434365,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,17:00,,,40.8115,-73.93481,"(40.8115, -73.93481)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4434606,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/05/2021,0:40,,,40.600754,-74.009865,"(40.600754, -74.009865)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Steering Failure,,,,,4434072,Sedan,,,, +07/05/2021,15:45,BROOKLYN,11207,40.67091,-73.89364,"(40.67091, -73.89364)",BELMONT AVENUE,VERMONT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434425,Taxi,Sedan,,, +07/05/2021,0:45,,,40.72707,-73.75457,"(40.72707, -73.75457)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434231,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,1:00,BROOKLYN,11207,40.66406,-73.89869,"(40.66406, -73.89869)",LIVONIA AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434446,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,9:30,,,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434328,Sedan,,,, +07/05/2021,13:05,,,40.798576,-73.97316,"(40.798576, -73.97316)",WEST 100 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434424,Sedan,Pick-up Truck,,, +07/04/2021,5:10,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",34 AVENUE,JUNCTION BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434941,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,22:00,MANHATTAN,10019,40.76518,-73.98912,"(40.76518, -73.98912)",,,432 WEST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434379,Sedan,,,, +07/05/2021,17:00,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434965,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,1:23,BRONX,10467,0,0,"(0.0, 0.0)",EAST 207 STREET,HULL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,8:20,MANHATTAN,10027,40.811626,-73.95253,"(40.811626, -73.95253)",,,361 WEST 126 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435029,Box Truck,Sedan,,, +07/05/2021,5:55,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4434779,Sedan,,,, +07/05/2021,13:00,,,40.575336,-73.996445,"(40.575336, -73.996445)",WEST 30 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434590,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2021,14:00,,,40.575924,-73.99114,"(40.575924, -73.99114)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434205,Sedan,,,, +07/05/2021,12:55,BRONX,10467,40.880135,-73.873085,"(40.880135, -73.873085)",EAST 211 STREET,HULL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434209,Sedan,,,, +07/05/2021,4:01,BRONX,10467,40.86659,-73.86833,"(40.86659, -73.86833)",BRITTON STREET,OLINVILLE AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4434496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,0:00,MANHATTAN,10027,40.81261,-73.95683,"(40.81261, -73.95683)",AMSTERDAM AVENUE,LASALLE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4435027,E-Bike,Sedan,,, +07/05/2021,8:50,BROOKLYN,11236,40.65131,-73.91789,"(40.65131, -73.91789)",,,9024 AVENUE A,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434243,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,22:00,BROOKLYN,11210,40.629047,-73.94369,"(40.629047, -73.94369)",,,1696 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434556,Sedan,Sedan,,, +07/05/2021,3:10,QUEENS,11435,40.69004,-73.7981,"(40.69004, -73.7981)",,,147-40 GLASSBORO AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434314,Sedan,,,, +07/05/2021,22:40,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434633,Sedan,,,, +07/05/2021,6:30,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4434082,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/05/2021,7:00,BROOKLYN,11229,40.60043,-73.93608,"(40.60043, -73.93608)",,,2121 BRAGG STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434500,Sedan,,,, +07/05/2021,21:00,BROOKLYN,11235,40.584415,-73.943695,"(40.584415, -73.943695)",,,4817 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434610,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,11:55,QUEENS,11101,40.742756,-73.95047,"(40.742756, -73.95047)",49 AVENUE,11 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434680,Ambulance,Sedan,,, +07/05/2021,10:20,,,40.761597,-73.9246,"(40.761597, -73.9246)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434122,Van,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,1:29,BROOKLYN,11203,40.65156,-73.93428,"(40.65156, -73.93428)",CHURCH AVENUE,EAST 46 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434242,Sedan,Bike,,, +07/05/2021,15:59,QUEENS,11373,40.73675,-73.87767,"(40.73675, -73.87767)",QUEENS BOULEVARD,GRAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,1:53,BROOKLYN,11214,40.592495,-73.98444,"(40.592495, -73.98444)",STILLWELL AVENUE,BAY 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434403,Sedan,,,, +07/05/2021,22:50,,,40.575695,-73.99327,"(40.575695, -73.99327)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434775,Sedan,,,, +06/30/2021,16:18,BROOKLYN,11209,40.622635,-74.03729,"(40.622635, -74.03729)",89 STREET,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435012,Sedan,,,, +07/05/2021,11:15,,,40.611767,-73.97638,"(40.611767, -73.97638)",64 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434179,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2021,19:50,,,40.81666,-73.938995,"(40.81666, -73.938995)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4434324,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2021,4:15,BRONX,10453,40.850494,-73.91546,"(40.850494, -73.91546)",UNIVERSITY AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4434065,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/05/2021,15:58,,,40.75225,-73.702095,"(40.75225, -73.702095)",UNION TURNPIKE,LANGDALE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4434301,Sedan,Sedan,Sedan,, +07/05/2021,2:42,BROOKLYN,11215,40.66168,-73.98125,"(40.66168, -73.98125)",,,437 15 STREET,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,Unspecified,Unspecified,Unspecified,4434481,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/05/2021,5:56,BRONX,10463,40.875088,-73.912415,"(40.875088, -73.912415)",,,150 WEST 225 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434270,Taxi,,,, +07/04/2021,20:20,,,40.59888,-73.820694,"(40.59888, -73.820694)",CROSS BAY BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4434940,Sedan,Chassis Cab,,, +07/05/2021,13:00,BROOKLYN,11218,40.64538,-73.98625,"(40.64538, -73.98625)",,,3475 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4434642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/05/2021,4:41,,,40.710682,-73.98471,"(40.710682, -73.98471)",SOUTH STREET,MONTGOMERY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434347,Sedan,Sedan,,, +07/05/2021,17:24,,,40.66919,-73.77249,"(40.66919, -73.77249)",BREWER BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4434543,Sedan,Sedan,,, +07/05/2021,8:50,BROOKLYN,11205,40.689674,-73.96614,"(40.689674, -73.96614)",WASHINGTON AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434662,Sedan,Van,,, +07/05/2021,9:30,BROOKLYN,11229,40.60025,-73.94669,"(40.60025, -73.94669)",,,4181 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434604,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2021,15:40,QUEENS,11355,40.751858,-73.82637,"(40.751858, -73.82637)",MAIN STREET,DAHLIA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4434393,Sedan,,,, +07/05/2021,16:00,BROOKLYN,11212,40.667812,-73.917076,"(40.667812, -73.917076)",,,527 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434862,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,3:20,QUEENS,11372,40.752316,-73.8798,"(40.752316, -73.8798)",,,87-11 35 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,4435089,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/05/2021,19:07,BROOKLYN,11201,40.699947,-73.996346,"(40.699947, -73.996346)",,,130 FURMAN STREET,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,Unspecified,,,4434338,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/24/2021,23:33,MANHATTAN,10014,40.739418,-74.00387,"(40.739418, -74.00387)",WEST 4 STREET,WEST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434922,Sedan,,,, +07/05/2021,19:20,BROOKLYN,11212,40.66033,-73.924576,"(40.66033, -73.924576)",,,201 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434333,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,1:02,BRONX,10470,40.902836,-73.85329,"(40.902836, -73.85329)",EAST 240 STREET,MATILDA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4434008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/01/2021,10:00,BRONX,10475,40.885952,-73.8279,"(40.885952, -73.8279)",BOSTON ROAD,CONNER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434966,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,1:19,MANHATTAN,10021,40.77233,-73.958725,"(40.77233, -73.958725)",3 AVENUE,EAST 76 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434228,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,21:54,QUEENS,11419,40.68645,-73.81583,"(40.68645, -73.81583)",128 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4434369,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2021,20:50,BRONX,10453,40.853474,-73.906456,"(40.853474, -73.906456)",WALTON AVENUE,EAST BURNSIDE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4435073,Moped,Sedan,,, +07/05/2021,13:00,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434795,Sedan,Sedan,,, +07/05/2021,9:49,BROOKLYN,11236,40.633545,-73.90979,"(40.633545, -73.90979)",,,1048 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434376,Sedan,,,, +07/05/2021,23:03,STATEN ISLAND,10306,40.566494,-74.11377,"(40.566494, -74.11377)",HYLAN BOULEVARD,EBBITTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434466,Sedan,,,, +07/05/2021,10:46,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",BROADWAY,WEST 178 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434831,Sedan,E-Bike,,, +07/05/2021,15:00,BRONX,10458,40.86745,-73.89072,"(40.86745, -73.89072)",,,2753 BRIGGS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434359,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,15:20,BROOKLYN,11238,40.686234,-73.965416,"(40.686234, -73.965416)",,,403 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434318,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,9:40,,,40.73632,-73.85631,"(40.73632, -73.85631)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434954,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,20:07,,,40.76974,-73.982124,"(40.76974, -73.982124)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434990,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,7:43,,,40.888687,-73.84018,"(40.888687, -73.84018)",EAST 233 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4434529,Sedan,,,, +07/05/2021,15:11,,,40.726376,-73.76624,"(40.726376, -73.76624)",GRAND CENTRAL PARKWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434726,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,7:05,BROOKLYN,11210,40.635986,-73.951935,"(40.635986, -73.951935)",,,2625 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4434387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/05/2021,9:30,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434435,Sedan,,,, +07/05/2021,16:44,MANHATTAN,10075,40.773563,-73.95346,"(40.773563, -73.95346)",,,345 EAST 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434889,Taxi,Box Truck,,, +07/05/2021,4:10,BROOKLYN,11207,40.680855,-73.89374,"(40.680855, -73.89374)",MILLER AVENUE,SUNNYSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,17:45,,,40.581448,-73.852165,"(40.581448, -73.852165)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4434905,Station Wagon/Sport Utility Vehicle,Bike,Bike,, +07/05/2021,0:38,BROOKLYN,11220,40.644985,-74.01769,"(40.644985, -74.01769)",3 AVENUE,55 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4433971,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,14:20,MANHATTAN,10002,40.721424,-73.98769,"(40.721424, -73.98769)",,,161 LUDLOW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435041,Sedan,Box Truck,,, +07/05/2021,19:10,,,40.85206,-73.934784,"(40.85206, -73.934784)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434958,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,1:30,BROOKLYN,11212,40.661095,-73.92789,"(40.661095, -73.92789)",,,125 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434337,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2021,0:00,BRONX,10472,40.82599,-73.878944,"(40.82599, -73.878944)",,,1513 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434593,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,13:00,QUEENS,11385,40.70422,-73.894684,"(40.70422, -73.894684)",,,62-07 CATALPA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434211,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,3:00,BRONX,10466,40.88731,-73.86412,"(40.88731, -73.86412)",EAST 223 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434562,Sedan,,,, +07/04/2021,14:05,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",CLARKSON AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435005,Sedan,,,, +07/05/2021,13:30,,,40.654533,-73.860916,"(40.654533, -73.860916)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,,4434801,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/05/2021,13:30,,,40.766403,-73.8153,"(40.766403, -73.8153)",150 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434392,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/05/2021,21:30,BROOKLYN,11207,40.65997,-73.88739,"(40.65997, -73.88739)",LINDEN BOULEVARD,BRADFORD STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4434416,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2021,10:07,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4434693,Sedan,Pick-up Truck,,, +07/05/2021,21:22,BROOKLYN,11217,40.68306,-73.973785,"(40.68306, -73.973785)",ATLANTIC AVENUE,SOUTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4434482,Sedan,Taxi,,, +07/05/2021,3:06,,,40.85119,-73.84434,"(40.85119, -73.84434)",EASTCHESTER ROAD,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434268,Sedan,,,, +07/05/2021,15:35,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4434311,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/05/2021,8:30,BROOKLYN,11233,40.67506,-73.916626,"(40.67506, -73.916626)",SARATOGA AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434083,Sedan,,,, +07/05/2021,22:38,,,40.819096,-73.94093,"(40.819096, -73.94093)",WEST 141 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434501,Sedan,,,, +07/05/2021,18:40,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",SOUTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434364,Motorcycle,Sedan,,, +07/01/2021,18:30,QUEENS,11429,40.714214,-73.74744,"(40.714214, -73.74744)",,,211-50 99 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4435025,Sedan,Sedan,,, +07/05/2021,4:30,STATEN ISLAND,10306,40.579453,-74.10617,"(40.579453, -74.10617)",,,42 EDISON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434282,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,19:00,BROOKLYN,11220,,,,2 AVENUE,SHORE ROAD DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434319,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,21:39,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,,,,4434734,Sedan,Bus,,, +07/05/2021,5:00,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WASHINGTON BRIDGE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4434613,Sedan,,,, +07/05/2021,17:25,BROOKLYN,11204,40.624855,-73.99195,"(40.624855, -73.99195)",60 STREET,16 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434647,Station Wagon/Sport Utility Vehicle,Moped,,, +07/05/2021,4:10,QUEENS,11420,40.680042,-73.80894,"(40.680042, -73.80894)",115 AVENUE,132 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4434081,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/05/2021,21:00,BROOKLYN,11222,40.736656,-73.954544,"(40.736656, -73.954544)",,,81 CLAY STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4434421,Sedan,Sedan,,, +07/05/2021,6:52,BRONX,10454,40.80213,-73.9073,"(40.80213, -73.9073)",EAST 138 STREET,LOCUST AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4434198,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,7:55,STATEN ISLAND,10305,40.613132,-74.07175,"(40.613132, -74.07175)",,,516 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434528,Sedan,Sedan,,, +07/05/2021,2:30,BRONX,10453,40.848423,-73.91925,"(40.848423, -73.91925)",ANDREWS AVENUE,TENNEY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434060,Sedan,Sedan,Sedan,, +07/05/2021,6:15,,,40.8166,-73.942764,"(40.8166, -73.942764)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434327,Sedan,,,, +07/05/2021,3:30,QUEENS,11433,40.702843,-73.78315,"(40.702843, -73.78315)",,,173-51 105 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434609,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,11:30,QUEENS,11432,40.7164,-73.80797,"(40.7164, -73.80797)",,,82-85 PARSONS BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434474,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/05/2021,12:05,,,40.616608,-74.14234,"(40.616608, -74.14234)",WATCHOGUE ROAD,CRYSTAL AVENUE,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434240,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,5:30,BRONX,10462,40.84486,-73.85596,"(40.84486, -73.85596)",,,1635 BOGART AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4434984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,15:05,QUEENS,11370,40.760223,-73.88623,"(40.760223, -73.88623)",,,30-52 82 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434926,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2021,23:15,,,40.6893,-73.81629,"(40.6893, -73.81629)",LIBERTY AVENUE,129 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434371,,,,, +07/05/2021,2:53,BROOKLYN,11228,40.61617,-74.02216,"(40.61617, -74.02216)",7 AVENUE,90 STREET,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4434350,Sedan,Sedan,Tractor Truck Gasoline,Sedan,Sedan +07/05/2021,0:38,,,40.68623,-74.00046,"(40.68623, -74.00046)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434767,Sedan,Sedan,,, +07/05/2021,13:00,,,,,,STATEN ISLAND EXPRESSWAY,,,7,0,0,0,0,0,7,0,Following Too Closely,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,4434856,Sedan,Sedan,Sedan,Sedan, +07/05/2021,21:00,MANHATTAN,10019,40.764587,-73.98961,"(40.764587, -73.98961)",,,435 WEST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434378,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,0:30,,,40.75987,-73.73428,"(40.75987, -73.73428)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,Following Too Closely,Driver Inattention/Distraction,,,4434230,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/05/2021,10:45,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434177,Sedan,,,, +07/03/2021,5:00,BROOKLYN,11226,40.638927,-73.948296,"(40.638927, -73.948296)",,,1919 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435008,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,15:44,QUEENS,11413,40.6727,-73.75968,"(40.6727, -73.75968)",WESTGATE STREET,THURSTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434540,Sedan,,,, +07/05/2021,18:33,,,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4434661,E-Bike,E-Bike,,, +07/05/2021,1:55,BROOKLYN,11221,40.689857,-73.92535,"(40.689857, -73.92535)",,,856 QUINCY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434302,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,15:00,QUEENS,11354,40.771477,-73.8173,"(40.771477, -73.8173)",BAYSIDE AVENUE,149 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4434395,Bus,Sedan,,, +07/05/2021,11:30,,,40.607643,-74.03375,"(40.607643, -74.03375)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4434602,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,12:30,STATEN ISLAND,10312,40.5604,-74.16975,"(40.5604, -74.16975)",,,3231 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434465,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,2:19,QUEENS,11104,40.74532,-73.92193,"(40.74532, -73.92193)",,,42-15 43 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4434124,Sedan,Sedan,Sedan,Sedan, +07/05/2021,2:36,MANHATTAN,10035,40.800774,-73.94006,"(40.800774, -73.94006)",,,1940 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434040,Sedan,Sedan,,, +07/05/2021,16:35,BROOKLYN,11226,40.65264,-73.949776,"(40.65264, -73.949776)",NOSTRAND AVENUE,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4434332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,17:34,,,40.573708,-73.99072,"(40.573708, -73.99072)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434404,Sedan,,,, +07/05/2021,16:55,,,40.734737,-73.87227,"(40.734737, -73.87227)",90 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434306,Sedan,Bus,,, +06/20/2021,2:30,,,40.711227,-73.72826,"(40.711227, -73.72826)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4434939,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/30/2021,11:45,QUEENS,11421,40.688625,-73.84925,"(40.688625, -73.84925)",WOODHAVEN BOULEVARD,93 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4434968,Sedan,,,, +07/05/2021,19:00,BROOKLYN,11211,40.715282,-73.95514,"(40.715282, -73.95514)",,,254 NORTH 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434790,Sedan,,,, +06/30/2021,19:50,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,3,0,1,0,0,0,2,0,View Obstructed/Limited,Unsafe Speed,,,,4435074,Bus,Sedan,,, +07/05/2021,16:15,,,,,,FURMAN STREET,BROOKLYN QNS EXPRESSWAY,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4434340,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,19:00,MANHATTAN,10033,40.84708,-73.942345,"(40.84708, -73.942345)",,,200 HAVEN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434846,Sedan,Sedan,,, +07/05/2021,14:25,,,40.793186,-73.94057,"(40.793186, -73.94057)",EAST 110 STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Failure to Yield Right-of-Way,,,,4434502,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,2:05,QUEENS,11373,40.745064,-73.86986,"(40.745064, -73.86986)",,,94-54 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434218,Sedan,,,, +07/05/2021,21:00,,,40.83542,-73.86809,"(40.83542, -73.86809)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4434594,Sedan,Sedan,,, +06/28/2021,13:17,BROOKLYN,11201,40.691532,-73.993744,"(40.691532, -73.993744)",CLINTON STREET,SCHERMERHORN STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Passing Too Closely,,,,4435020,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,2:15,,,40.69822,-73.943954,"(40.69822, -73.943954)",THROOP AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4434493,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/05/2021,3:14,BRONX,10457,40.840107,-73.90519,"(40.840107, -73.90519)",,,1570 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434191,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,5:20,,,40.78291,-73.98578,"(40.78291, -73.98578)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4434295,Sedan,,,, +07/05/2021,3:10,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,,,,4434669,Sedan,Sedan,,, +07/05/2021,19:19,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434648,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,0:15,MANHATTAN,10003,40.735886,-73.989525,"(40.735886, -73.989525)",,,34 UNION SQUARE EAST,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4434111,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,20:00,QUEENS,11412,40.691177,-73.7588,"(40.691177, -73.7588)",118 AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435083,Sedan,Open Body,,, +07/05/2021,16:45,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,11:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434381,Sedan,Dump,,, +07/04/2021,18:58,QUEENS,11418,40.692783,-73.84549,"(40.692783, -73.84549)",,,100-17 89 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434953,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/01/2021,20:00,,,40.690647,-73.85839,"(40.690647, -73.85839)",85 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,0:40,BRONX,10454,40.811848,-73.91511,"(40.811848, -73.91511)",,,546 EAST 145 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4433978,Sedan,Sedan,Sedan,Sedan, +07/05/2021,1:44,BROOKLYN,11222,,,,VANDERVORT AVENUE,BEADEL STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434419,Sedan,Sedan,,, +07/05/2021,23:00,BROOKLYN,11208,40.686504,-73.874954,"(40.686504, -73.874954)",EUCLID AVENUE,ETNA STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434448,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435044,Sedan,Sedan,,, +07/05/2021,18:00,BROOKLYN,11226,40.653908,-73.95381,"(40.653908, -73.95381)",,,180 LENOX ROAD,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434336,Sedan,Sedan,,, +07/05/2021,22:30,BRONX,10459,40.819504,-73.897896,"(40.819504, -73.897896)",DAWSON STREET,ROGERS PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434697,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,17:11,BRONX,10468,40.86296,-73.89948,"(40.86296, -73.89948)",,,2486 MORRIS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4434363,Station Wagon/Sport Utility Vehicle,Ambiance,,, +07/05/2021,16:15,BROOKLYN,11208,40.68857,-73.8757,"(40.68857, -73.8757)",CYPRESS HILL STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434436,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,11:26,QUEENS,11375,40.718357,-73.835014,"(40.718357, -73.835014)",,,75-48 113 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434252,Pick-up Truck,Sedan,,, +07/05/2021,3:40,BROOKLYN,11212,40.66131,-73.915405,"(40.66131, -73.915405)",,,783 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434077,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,19:50,BRONX,10456,40.825665,-73.90932,"(40.825665, -73.90932)",,,501 EAST 164 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434580,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,22:14,BROOKLYN,11236,40.646515,-73.90921,"(40.646515, -73.90921)",,,916 EAST 93 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434746,Sedan,,,, +07/05/2021,19:00,QUEENS,11372,40.74802,-73.88016,"(40.74802, -73.88016)",,,86-10 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434320,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,12:00,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4434310,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,17:03,QUEENS,11379,,,,,,6365 77 place,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4434622,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2021,19:40,BROOKLYN,11225,40.659233,-73.96261,"(40.659233, -73.96261)",,,125 OCEAN AVENUE,1,0,0,0,1,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4434356,Sedan,Bike,,, +07/05/2021,0:05,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434391,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,20:00,,,,,,11 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434909,Motorcycle,,,, +07/05/2021,10:45,,,40.8439,-73.91171,"(40.8439, -73.91171)",EAST 173 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434407,Pick-up Truck,Taxi,,, +07/05/2021,20:40,QUEENS,11377,40.74573,-73.90212,"(40.74573, -73.90212)",62 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434343,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:10,QUEENS,11432,40.707233,-73.802505,"(40.707233, -73.802505)",,,87-77 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,,,,,,4434848,,,,, +07/05/2021,20:00,BROOKLYN,11217,40.677715,-73.97326,"(40.677715, -73.97326)",PARK PLACE,7 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434883,Sedan,Bike,,, +07/03/2021,10:37,QUEENS,11361,40.76753,-73.76667,"(40.76753, -73.76667)",38 AVENUE,217 STREET,,0,0,0,0,0,0,0,0,,,,,,4434931,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,15:15,BRONX,10451,40.821434,-73.9144,"(40.821434, -73.9144)",,,419 EAST 157 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434373,Sedan,,,, +07/05/2021,21:20,BROOKLYN,11203,,,,BROOKLYN AVENUE,SNYDER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435002,Sedan,,,, +04/07/2022,18:00,BRONX,10465,40.8181,-73.82294,"(40.8181, -73.82294)",,,371 HUNTINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517099,Station Wagon/Sport Utility Vehicle,Bus,,, +04/04/2022,21:30,BRONX,10466,40.892673,-73.86013,"(40.892673, -73.86013)",,,636 EAST 231 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517719,Pick-up Truck,Sedan,,, +04/07/2022,12:20,,,40.769897,-73.91344,"(40.769897, -73.91344)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517059,Ambulance,Sedan,,, +04/07/2022,12:30,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4517074,Sedan,,,, +04/07/2022,22:00,QUEENS,11357,40.791946,-73.82442,"(40.791946, -73.82442)",PARSONS BOULEVARD,8 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4517243,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,19:20,,,40.740566,-73.81939,"(40.740566, -73.81939)",150 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517354,Sedan,Sedan,Motorcycle,, +04/06/2022,10:00,BRONX,10466,40.89213,-73.85341,"(40.89213, -73.85341)",EAST 233 STREET,BUSSING AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4516734,Sedan,Sedan,,, +04/07/2022,4:00,BROOKLYN,11212,40.661526,-73.91574,"(40.661526, -73.91574)",,,68 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517575,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,9:54,MANHATTAN,10021,40.77157,-73.96491,"(40.77157, -73.96491)",,,45 EAST 72 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4517282,POWER SHOV,,,, +04/08/2022,17:00,QUEENS,11417,40.678,-73.86015,"(40.678, -73.86015)",77 STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517834,Sedan,Sedan,,, +04/08/2022,18:30,QUEENS,11418,40.69853,-73.84194,"(40.69853, -73.84194)",,,85-48 107 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517439,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,14:08,BROOKLYN,11229,40.600388,-73.94674,"(40.600388, -73.94674)",,,4174 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517387,Sedan,Sedan,,, +04/06/2022,8:01,,,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4516942,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,4:05,QUEENS,11372,40.755657,-73.884445,"(40.755657, -73.884445)",83 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517250,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,12:20,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517395,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,17:28,QUEENS,11372,40.74906,-73.870384,"(40.74906, -73.870384)",ROOSEVELT AVENUE,WARREN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517562,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,8:37,BROOKLYN,11236,40.644295,-73.90139,"(40.644295, -73.90139)",ROCKAWAY PARKWAY,CONKLIN AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4517271,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,15:23,BROOKLYN,11217,40.680664,-73.98521,"(40.680664, -73.98521)",,,255 DOUGLASS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517672,Sedan,Box Truck,,, +04/01/2022,5:39,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",OCEAN PARKWAY,AVENUE C,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4517512,Sedan,Sedan,,, +04/06/2022,9:55,,,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516766,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:45,,,40.860306,-73.90949,"(40.860306, -73.90949)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517903,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,14:35,MANHATTAN,10029,40.788685,-73.94386,"(40.788685, -73.94386)",EAST 103 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517248,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,4:24,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Traffic Control Disregarded,,,,4517781,Tractor Truck Diesel,,,, +04/06/2022,0:40,MANHATTAN,10003,40.732845,-73.98615,"(40.732845, -73.98615)",,,244 EAST 14 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4517689,Taxi,Sedan,,, +04/07/2022,20:40,BROOKLYN,11236,40.651867,-73.9127,"(40.651867, -73.9127)",AVENUE B,EAST 95 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4517620,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/06/2022,15:40,,,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517006,Sedan,Box Truck,,, +04/08/2022,9:00,MANHATTAN,10032,40.84215,-73.94228,"(40.84215, -73.94228)",WEST 168 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517601,Sedan,Bus,,, +04/06/2022,5:08,,,40.687084,-73.8361,"(40.687084, -73.8361)",107 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516712,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,11:51,,,40.76817,-73.9528,"(40.76817, -73.9528)",EAST 74 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,0:52,,,40.620857,-74.1318,"(40.620857, -74.1318)",,,652 JEWETT AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4516846,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,8:30,,,40.60912,-73.99356,"(40.60912, -73.99356)",78 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517054,Sedan,,,, +04/02/2022,8:00,BROOKLYN,11220,40.643566,-74.00475,"(40.643566, -74.00475)",7 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517298,Sedan,Sedan,,, +04/07/2022,22:55,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4517226,Sedan,Sedan,,, +04/08/2022,21:43,QUEENS,11365,40.744057,-73.78112,"(40.744057, -73.78112)",,,58-19 196 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4517360,Sedan,Sedan,,, +04/07/2022,22:00,BROOKLYN,11226,40.64477,-73.954735,"(40.64477, -73.954735)",BEVERLEY ROAD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4517554,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/07/2022,14:25,BROOKLYN,11212,40.659336,-73.90907,"(40.659336, -73.90907)",CHESTER STREET,NEWPORT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,Other Vehicular,,4517591,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/04/2022,22:30,BROOKLYN,11226,40.640305,-73.94749,"(40.640305, -73.94749)",,,428 EAST 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517619,Sedan,Sedan,,, +04/06/2022,16:35,BRONX,10472,40.826305,-73.876595,"(40.826305, -73.876595)",,,1557 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516987,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,7:30,,,40.65794,-73.936874,"(40.65794, -73.936874)",WINTHROP STREET,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4517432,Sedan,,,, +04/06/2022,10:07,QUEENS,11378,40.72861,-73.88721,"(40.72861, -73.88721)",57 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4516798,Station Wagon/Sport Utility Vehicle,Bus,,, +04/07/2022,15:20,,,40.626163,-74.15742,"(40.626163, -74.15742)",,,2045 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4517155,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/07/2022,18:20,,,,,,OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,16:00,QUEENS,11432,40.71085,-73.79417,"(40.71085, -73.79417)",,,87-54 168 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517134,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/06/2022,9:15,,,40.75202,-74.00473,"(40.75202, -74.00473)",11 AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4517638,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/07/2022,4:59,BROOKLYN,11223,40.59054,-73.97023,"(40.59054, -73.97023)",WEST STREET,AVENUE X,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4517367,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/06/2022,19:02,QUEENS,11373,40.735218,-73.8856,"(40.735218, -73.8856)",,,78-04 KNEELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4516893,Station Wagon/Sport Utility Vehicle,,,, +03/29/2022,16:06,,,0,0,"(0.0, 0.0)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517275,Bus,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,9:11,BROOKLYN,11230,40.619984,-73.96427,"(40.619984, -73.96427)",AVENUE L,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517535,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,9:40,QUEENS,11428,40.718616,-73.74707,"(40.718616, -73.74707)",,,93-13 212 PLACE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4517501,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/06/2022,9:20,,,40.67957,-73.83679,"(40.67957, -73.83679)",ROCKAWAY BOULEVARD,103 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4516876,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,6:15,QUEENS,11106,40.760166,-73.937386,"(40.760166, -73.937386)",,,14-01 36 AVENUE,1,0,1,0,0,0,0,0,,,,,,4517410,,,,, +04/07/2022,19:00,BROOKLYN,11207,40.658768,-73.88216,"(40.658768, -73.88216)",,,829 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517104,Sedan,,,, +04/08/2022,7:08,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",METROPOLITAN AVENUE,80 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4517714,Tow Truck / Wrecker,Bike,,, +04/07/2022,10:30,BROOKLYN,11221,40.691383,-73.938194,"(40.691383, -73.938194)",,,864 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517741,Sedan,,,, +04/07/2022,4:23,BRONX,10460,40.83518,-73.8859,"(40.83518, -73.8859)",,,1671 BRYANT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517478,Sedan,,,, +04/06/2022,15:26,BROOKLYN,11212,40.667397,-73.91309,"(40.667397, -73.91309)",,,556 BOYLAND STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4517568,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,8:50,BROOKLYN,11203,40.65777,-73.93962,"(40.65777, -73.93962)",WINTHROP STREET,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517430,Sedan,Sedan,,, +04/04/2022,9:23,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4517938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,17:53,BROOKLYN,11209,40.63332,-74.027054,"(40.63332, -74.027054)",,,7220 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517120,Dump,Sedan,,, +04/06/2022,14:30,QUEENS,11368,40.74484,-73.85225,"(40.74484, -73.85225)",111 STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516904,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,13:35,MANHATTAN,10028,40.773655,-73.95173,"(40.773655, -73.95173)",EAST 81 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517280,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/06/2022,17:30,BROOKLYN,11207,40.683502,-73.91152,"(40.683502, -73.91152)",BROADWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,4517584,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +04/08/2022,18:00,BROOKLYN,11201,40.692234,-73.987305,"(40.692234, -73.987305)",WILLOUGHBY STREET,JAY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517762,Station Wagon/Sport Utility Vehicle,Bike,,, +04/08/2022,1:10,BROOKLYN,11217,40.68778,-73.984245,"(40.68778, -73.984245)",,,65 BOND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517467,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,0:10,,,40.657837,-73.95033,"(40.657837, -73.95033)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517231,Sedan,,,, +04/07/2022,14:05,,,,,,PELHAM PARKWAY SOUTH,BOSTON ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517911,PK,Sedan,,, +04/06/2022,3:52,QUEENS,11354,40.757183,-73.83396,"(40.757183, -73.83396)",COLLEGE POINT BOULEVARD,40 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4516790,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,14:00,,,40.709206,-73.99607,"(40.709206, -73.99607)",SOUTH STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517216,Bike,,,, +04/06/2022,0:00,MANHATTAN,10016,40.742363,-73.98268,"(40.742363, -73.98268)",,,110 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4516757,Taxi,Sedan,,, +04/07/2022,20:40,QUEENS,11354,40.768497,-73.840904,"(40.768497, -73.840904)",,,31-22 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4517163,Sedan,,,, +04/07/2022,11:36,BROOKLYN,11222,40.724495,-73.95017,"(40.724495, -73.95017)",,,572 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517019,Sedan,,,, +03/26/2022,19:50,BRONX,10475,40.885544,-73.82896,"(40.885544, -73.82896)",,,4070 BOSTON ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517685,Sedan,,,, +04/08/2022,12:50,QUEENS,11375,40.718983,-73.83729,"(40.718983, -73.83729)",75 AVENUE,112 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,15:04,,,40.628185,-74.14792,"(40.628185, -74.14792)",DIXON AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4517302,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/07/2022,8:52,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",CHAMBERS STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517081,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/06/2022,16:25,,,40.6702,-73.86777,"(40.6702, -73.86777)",HEMLOCK STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4516820,Station Wagon/Sport Utility Vehicle,PK,,, +04/06/2022,11:30,BROOKLYN,11210,40.636505,-73.953575,"(40.636505, -73.953575)",,,2726 BEDFORD AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4516918,Sedan,Bike,,, +04/06/2022,8:14,MANHATTAN,10001,40.75458,-73.99915,"(40.75458, -73.99915)",WEST 34 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4517643,,,,, +04/08/2022,11:00,MANHATTAN,10035,40.79563,-73.93242,"(40.79563, -73.93242)",,,517 EAST 117 STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4517313,Sedan,,,, +04/06/2022,17:10,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",WESTCHESTER AVENUE,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4517050,Sedan,,,, +04/06/2022,18:00,BROOKLYN,11212,40.66856,-73.909485,"(40.66856, -73.909485)",BELMONT AVENUE,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516975,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,22:00,BRONX,10456,40.831097,-73.89963,"(40.831097, -73.89963)",,,1249 TINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517872,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,8:36,BROOKLYN,11231,40.684948,-73.994644,"(40.684948, -73.994644)",,,265 COURT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517330,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,6:20,QUEENS,11412,40.69908,-73.758255,"(40.69908, -73.758255)",MURDOCK AVENUE,196 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4516750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,8:15,QUEENS,11429,40.703175,-73.7483,"(40.703175, -73.7483)",113 AVENUE,207 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4516705,Sedan,Sedan,,, +04/06/2022,7:11,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516859,Bus,Sedan,,, +04/05/2022,19:30,BROOKLYN,11226,40.655396,-73.960526,"(40.655396, -73.960526)",,,218 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517551,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,0:00,,,,,,CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4434729,Tractor Truck Diesel,,,, +04/06/2022,16:59,QUEENS,11377,40.75747,-73.902794,"(40.75747, -73.902794)",60 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4517202,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,6:40,,,40.72839,-73.83302,"(40.72839, -73.83302)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4516929,Pick-up Truck,Sedan,,, +04/06/2022,19:10,QUEENS,11434,40.662926,-73.76496,"(40.662926, -73.76496)",181 STREET,146 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4516826,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/04/2022,0:25,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517290,Sedan,Sedan,,, +04/07/2022,19:10,,,40.532402,-74.22489,"(40.532402, -74.22489)",VETERANS ROAD WEST,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517138,Sedan,Sedan,,, +04/07/2022,23:26,BROOKLYN,11220,40.63948,-74.016174,"(40.63948, -74.016174)",60 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517151,Sedan,,,, +04/07/2022,17:59,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",ATLANTIC AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517346,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,16:45,QUEENS,11357,,,,147 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517454,Station Wagon/Sport Utility Vehicle,Dump,,, +04/07/2022,15:00,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4517109,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,2:39,BRONX,10466,40.890915,-73.858765,"(40.890915, -73.858765)",,,4109 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Steering Failure,,,,,4517709,Sedan,,,, +04/07/2022,14:55,,,40.696995,-73.95475,"(40.696995, -73.95475)",WALWORTH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517406,Pick-up Truck,Box Truck,,, +04/06/2022,21:55,QUEENS,11411,40.68735,-73.72702,"(40.68735, -73.72702)",119 AVENUE,237 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4517947,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,8:50,,,40.54823,-74.220665,"(40.54823, -74.220665)",WEST SHORE EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4517183,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,7:38,BRONX,10474,40.81918,-73.885506,"(40.81918, -73.885506)",,,1345 SENECA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517295,Sedan,FORK LIFT,,, +04/06/2022,11:00,,,40.75175,-74.007935,"(40.75175, -74.007935)",12 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517736,Sedan,,,, +04/05/2022,15:09,QUEENS,11435,40.702473,-73.81542,"(40.702473, -73.81542)",,,137-40 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4517258,Bus,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/08/2022,17:44,,,40.707783,-73.932076,"(40.707783, -73.932076)",JOHNSON AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517519,Sedan,Bike,,, +04/04/2022,11:05,,,40.569862,-74.11682,"(40.569862, -74.11682)",BEACH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517491,Sedan,,,, +04/06/2022,18:54,MANHATTAN,10031,40.825954,-73.94337,"(40.825954, -73.94337)",SAINT NICHOLAS AVENUE,WEST 148 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4516870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/08/2022,18:30,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517830,Sedan,,,, +04/07/2022,16:07,QUEENS,11101,40.747665,-73.94506,"(40.747665, -73.94506)",23 STREET,44 DRIVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517116,Sedan,,,, +04/07/2022,11:25,,,40.688553,-73.962845,"(40.688553, -73.962845)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517199,Bus,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,7:27,QUEENS,11429,40.70768,-73.74512,"(40.70768, -73.74512)",212 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517001,Bus,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:37,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4517212,Sedan,Sedan,,, +04/07/2022,21:43,BROOKLYN,11203,40.661343,-73.93038,"(40.661343, -73.93038)",,,35 EAST 51 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4517631,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/08/2022,16:45,,,40.86609,-73.88268,"(40.86609, -73.88268)",SOUTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517922,Bike,,,, +01/14/2022,12:00,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4495180,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,11:13,MANHATTAN,10035,,,,EAST 128 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4470956,Sedan,,,, +04/08/2022,18:00,QUEENS,11412,40.6957,-73.75674,"(40.6957, -73.75674)",196 STREET,115 DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517363,Sedan,,,, +04/05/2022,8:20,BROOKLYN,11226,40.65618,-73.95159,"(40.65618, -73.95159)",,,655 PARKSIDE AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4517227,Bus,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,13:59,BROOKLYN,11249,40.71808,-73.95962,"(40.71808, -73.95962)",NORTH 6 STREET,BERRY STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4461023,Sedan,,,, +10/22/2021,12:53,BRONX,10467,,,,ARNOW AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470999,Sedan,,,, +10/15/2021,13:40,MANHATTAN,10004,,,,WEST STREET,MORRIS STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470977,Sedan,Sedan,,, +10/22/2021,8:06,BRONX,10460,,,,,,1606 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470987,Sedan,Van,,, +10/22/2021,16:20,BRONX,10467,,,,BARKER AVENUE,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4471000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,22:45,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",FOSTER AVENUE,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471001,Sedan,,,, +10/10/2021,18:09,MANHATTAN,10013,40.762417,-73.978325,"(40.762417, -73.978325)",,,54 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Unspecified,,,,,4470975,E-Scooter,,,, +10/23/2021,20:05,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4470985,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,11:15,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inexperience,Unspecified,,,4471004,Tractor Truck Diesel,Sedan,,, +10/22/2021,17:14,,,,,,1 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470996,Sedan,,,, +10/18/2021,1:30,,,,,,RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470965,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/13/2021,8:45,,,,,,PLIMPTON AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4470984,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/21/2021,9:45,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470974,Sedan,Sedan,,, +10/20/2021,7:56,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4470967,SMYELLSCHO,Sedan,,, +10/19/2021,20:52,MANHATTAN,10172,,,,,,277 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470998,Sedan,Sedan,,, +10/22/2021,9:45,,,40.609497,-74.12197,"(40.609497, -74.12197)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4471005,Sedan,Sedan,,, +10/21/2021,10:42,MANHATTAN,10013,,,,,,91 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470970,Sedan,,,, +09/06/2021,7:45,QUEENS,11429,40.7121162,-73.7311691,"(40.7121162, -73.7311691)",223 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454231,Pick-up Truck,Sedan,,, +12/12/2021,7:50,,,40.63237,-73.88319,"(40.63237, -73.88319)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485790,Sedan,Sedan,,, +10/18/2021,19:15,,,40.5945347,-74.1619441,"(40.5945347, -74.1619441)",RICHMOND AVENUE,DRAPER PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468835,Sedan,,,, +03/19/2022,16:43,BROOKLYN,11212,40.65531,-73.90318,"(40.65531, -73.90318)",LINDEN BOULEVARD,MOTHER GASTON BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4517345,Sedan,Sedan,Sedan,Sedan, +04/08/2022,14:51,MANHATTAN,10002,40.712486,-73.991905,"(40.712486, -73.991905)",,,158 MADISON STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4517322,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,6:57,BRONX,10469,40.86946,-73.84433,"(40.86946, -73.84433)",,,1440 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516779,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,12:20,QUEENS,11421,40.69166,-73.863785,"(40.69166, -73.863785)",,,86-69 78 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517038,Sedan,,,, +04/07/2022,15:43,MANHATTAN,10028,40.77831,-73.962776,"(40.77831, -73.962776)",5 AVENUE,EAST 81 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4517168,Taxi,,,, +04/06/2022,16:00,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4516990,Sedan,Sedan,,, +04/06/2022,10:00,BROOKLYN,11231,40.681705,-74.00431,"(40.681705, -74.00431)",COLUMBIA STREET,WOODHULL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4516764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,16:21,MANHATTAN,10033,40.847996,-73.9347,"(40.847996, -73.9347)",WEST 179 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485784,Sedan,,,, +12/12/2021,14:30,QUEENS,11422,40.664032,-73.73512,"(40.664032, -73.73512)",,,140-31 246 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485792,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,8:30,,,40.608433,-74.15544,"(40.608433, -74.15544)",CHRISTOPHER LANE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4516809,Sedan,,,, +04/05/2022,21:50,QUEENS,11434,40.666454,-73.78413,"(40.666454, -73.78413)",153 COURT,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4517317,Sedan,Sedan,Sedan,, +04/06/2022,7:30,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4517087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,14:23,QUEENS,11434,40.675198,-73.789894,"(40.675198, -73.789894)",125 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4517075,Sedan,Bike,,, +04/06/2022,2:30,QUEENS,11370,40.76056,-73.89275,"(40.76056, -73.89275)",,,75-03 30 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516739,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/07/2022,15:42,,,40.821144,-73.95753,"(40.821144, -73.95753)",RIVERSIDE DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4517334,Sedan,Sedan,Sedan,, +04/06/2022,15:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4517184,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/08/2022,9:57,MANHATTAN,10075,40.772343,-73.95269,"(40.772343, -73.95269)",EAST 79 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4517285,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/01/2022,18:35,BRONX,10457,40.847157,-73.89866,"(40.847157, -73.89866)",,,453 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517608,Flat Bed,Van,,, +04/07/2022,11:28,BRONX,10451,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4517882,Sedan,Sedan,,, +04/07/2022,9:15,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",NOSTRAND AVENUE,AVENUE I,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4517545,Flat Rack,,,, +04/07/2022,10:12,BRONX,10472,40.82819,-73.862434,"(40.82819, -73.862434)",,,1862 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517217,Sedan,,,, +04/07/2022,14:30,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4517112,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/02/2022,11:35,MANHATTAN,10019,40.761734,-73.97534,"(40.761734, -73.97534)",,,700 5 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4517238,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,18:13,BROOKLYN,11211,40.715332,-73.944534,"(40.715332, -73.944534)",,,359 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4516908,Bus,Sedan,,, +04/07/2022,22:20,,,40.563915,-74.11637,"(40.563915, -74.11637)",TYSENS LANE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4517142,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/06/2022,17:11,QUEENS,11373,40.735497,-73.869705,"(40.735497, -73.869705)",57 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517146,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,2:30,,,40.878185,-73.88145,"(40.878185, -73.88145)",EAST 208 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4516682,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/08/2022,6:30,BRONX,10462,40.8478,-73.86513,"(40.8478, -73.86513)",HOLLAND AVENUE,RHINELANDER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4517206,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/07/2022,0:04,BRONX,10457,40.852768,-73.89217,"(40.852768, -73.89217)",3 AVENUE,EAST 182 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4516940,Sedan,Moped,,, +04/06/2022,14:50,MANHATTAN,10011,40.73736,-73.99685,"(40.73736, -73.99685)",WEST 14 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4516960,Box Truck,Sedan,,, +03/13/2022,20:30,QUEENS,11372,40.750736,-73.89462,"(40.750736, -73.89462)",,,71-22 35 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517253,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,11:30,QUEENS,11355,40.75372,-73.83283,"(40.75372, -73.83283)",MAPLE AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517450,Sedan,Box Truck,,, +04/07/2022,9:20,QUEENS,11691,40.602272,-73.753365,"(40.602272, -73.753365)",CORNAGA AVENUE,BEACH 20 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517179,Sedan,,,, +04/07/2022,22:30,QUEENS,11417,40.67674,-73.843735,"(40.67674, -73.843735)",CROSS BAY BOULEVARD,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4517270,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,16:00,BROOKLYN,11207,40.659218,-73.89113,"(40.659218, -73.89113)",,,753 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516866,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,22:20,BROOKLYN,11201,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4470138,E-Scooter,E-Bike,,, +04/06/2022,10:27,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517094,Bus,,,, +04/08/2022,21:35,,,40.72237,-73.84609,"(40.72237, -73.84609)",QUEENS BOULEVARD,70 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517350,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,12:20,BROOKLYN,11238,40.687866,-73.96879,"(40.687866, -73.96879)",LAFAYETTE AVENUE,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4517399,Station Wagon/Sport Utility Vehicle,Bike,,, +03/26/2022,21:13,,,40.694363,-73.756165,"(40.694363, -73.756165)",116 ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4517703,Sedan,Sedan,Sedan,Sedan,Sedan +04/08/2022,16:16,,,40.639057,-74.03669,"(40.639057, -74.03669)",BAY RIDGE AVENUE,SHORE ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517312,Sedan,,,, +04/07/2022,12:09,MANHATTAN,10011,40.739197,-73.99924,"(40.739197, -73.99924)",,,68 7 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4517648,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,5:30,BROOKLYN,11212,,,,,,71 TAPSCOTT STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4470910,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,19:00,STATEN ISLAND,10305,40.597904,-74.06486,"(40.597904, -74.06486)",,,22 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517486,Pick-up Truck,,,, +04/08/2022,15:00,BROOKLYN,11206,40.693645,-73.938225,"(40.693645, -73.938225)",,,303 PULASKI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517756,Sedan,E-Bike,,, +04/08/2022,16:34,MANHATTAN,10025,40.79976,-73.96622,"(40.79976, -73.96622)",WEST 105 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517837,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,9:45,,,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4516885,Sedan,Box Truck,,, +04/07/2022,20:15,BRONX,10458,40.85312,-73.88947,"(40.85312, -73.88947)",,,592 EAST 183 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517194,Sedan,Bike,,, +04/08/2022,16:20,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4517327,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,8:53,BROOKLYN,11234,40.615124,-73.936066,"(40.615124, -73.936066)",QUENTIN ROAD,EAST 37 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517307,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,9:28,,,40.697556,-73.91181,"(40.697556, -73.91181)",WOODBINE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,7:06,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517864,Sedan,Sedan,,, +03/18/2022,21:30,,,40.831974,-73.9235,"(40.831974, -73.9235)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517892,Ambulance,Sedan,,, +04/07/2022,18:52,BROOKLYN,11235,40.588512,-73.949356,"(40.588512, -73.949356)",AVENUE Z,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,23:04,QUEENS,11356,40.78942,-73.84532,"(40.78942, -73.84532)",,,122-18 9 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4517244,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,20:38,BROOKLYN,11230,40.61659,-73.96363,"(40.61659, -73.96363)",ELM AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517559,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,22:57,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517340,Pick-up Truck,Sedan,,, +04/08/2022,19:10,MANHATTAN,10006,40.711033,-74.01454,"(40.711033, -74.01454)",LIBERTY STREET,WEST STREET,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,,,,,4517592,Sedan,,,, +04/07/2022,19:54,BRONX,10460,40.834915,-73.894135,"(40.834915, -73.894135)",BOSTON ROAD,WILKENS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517482,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,7:00,BROOKLYN,11215,40.67178,-73.98646,"(40.67178, -73.98646)",,,282 6 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4517673,Station Wagon/Sport Utility Vehicle,Dump,,, +04/06/2022,6:32,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517382,Sedan,Sedan,,, +04/08/2022,15:45,MANHATTAN,10025,40.794785,-73.96431,"(40.794785, -73.96431)",WEST 100 STREET,MANHATTAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517843,Sedan,Sedan,,, +04/07/2022,7:00,BROOKLYN,11222,40.72777,-73.94186,"(40.72777, -73.94186)",,,271 NORMAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4516946,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,11:30,BROOKLYN,11236,40.640568,-73.91391,"(40.640568, -73.91391)",FARRAGUT ROAD,EAST 84 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4516803,Sedan,Sedan,,, +04/06/2022,8:01,BROOKLYN,11201,40.695854,-73.98198,"(40.695854, -73.98198)",,,200 TILLARY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516730,Dump,Dump,,, +04/07/2022,8:01,,,40.871395,-73.89308,"(40.871395, -73.89308)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517032,Sedan,Sedan,,, +10/23/2021,20:10,,,40.73163,-73.72318,"(40.73163, -73.72318)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4470127,Sedan,Sedan,,, +10/22/2021,23:47,,,,,,FDR DRIVE,EAST 125 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,Other Vehicular,Following Too Closely,,4470957,Sedan,Sedan,Sedan,Sedan, +01/09/2022,22:15,,,40.74791,-73.96806,"(40.74791, -73.96806)",FDR DRIVE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495347,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,19:15,,,40.714214,-73.94773,"(40.714214, -73.94773)",LEONARD STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504323,Sedan,,,, +02/19/2022,12:55,MANHATTAN,10003,40.731018,-73.985916,"(40.731018, -73.985916)",EAST 12 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4504716,Sedan,E-Scooter,,, +02/20/2022,21:15,,,40.66764,-73.80331,"(40.66764, -73.80331)",135 AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504353,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/20/2022,3:40,BRONX,10466,40.890514,-73.84562,"(40.890514, -73.84562)",,,4029 ELY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4504922,Flat Bed,Sedan,Sedan,Sedan,Sedan +02/20/2022,10:09,STATEN ISLAND,10310,40.628937,-74.117455,"(40.628937, -74.117455)",,,843 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504484,Sedan,Sedan,,, +02/20/2022,7:00,,,40.73804,-73.936806,"(40.73804, -73.936806)",BORDEN AVENUE,31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504260,Sedan,,,, +02/20/2022,11:30,MANHATTAN,10010,40.73722,-73.9814,"(40.73722, -73.9814)",2 AVENUE,EAST 22 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504118,Station Wagon/Sport Utility Vehicle,Bike,,, +02/20/2022,12:49,,,40.76099,-73.99077,"(40.76099, -73.99077)",WEST 46 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504644,Taxi,Food Cart,,, +02/17/2022,19:00,BROOKLYN,11212,40.6557,-73.91546,"(40.6557, -73.91546)",CHURCH AVENUE,EAST 96 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504723,Sedan,Sedan,,, +02/20/2022,22:21,QUEENS,11362,40.762054,-73.74458,"(40.762054, -73.74458)",RUSHMORE AVENUE,HANFORD STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4504304,Tractor Truck Diesel,,,, +02/20/2022,22:43,,,40.72522,-73.894745,"(40.72522, -73.894745)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504293,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/13/2022,9:56,MANHATTAN,10010,,,,EAST 25 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4504691,Sedan,Sedan,,, +02/16/2022,18:00,MANHATTAN,10018,40.75834,-73.996414,"(40.75834, -73.996414)",WEST 40 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504909,Convertible,,,, +02/20/2022,4:56,MANHATTAN,10029,40.793674,-73.93975,"(40.793674, -73.93975)",,,301 EAST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504343,Sedan,,,, +02/20/2022,15:10,MANHATTAN,10027,40.81394,-73.948425,"(40.81394, -73.948425)",8 AVENUE,WEST 131 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504401,Sedan,,,, +01/23/2022,19:45,QUEENS,11423,40.712185,-73.76922,"(40.712185, -73.76922)",,,190-29 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504832,Pick-up Truck,Bus,,, +02/20/2022,20:03,,,40.6174,-73.9995,"(40.6174, -73.9995)",NEW UTRECHT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,15:30,MANHATTAN,10002,40.71164,-73.97982,"(40.71164, -73.97982)",,,675 WATER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504434,Sedan,,,, +02/20/2022,22:45,QUEENS,11417,40.679485,-73.83649,"(40.679485, -73.83649)",,,102-02 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504328,Sedan,,,, +02/18/2022,3:14,BRONX,10458,40.859253,-73.88674,"(40.859253, -73.88674)",EAST FORDHAM ROAD,LORILLARD PLACE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4504740,Sedan,,,, +02/13/2022,18:30,BRONX,10452,40.831974,-73.9235,"(40.831974, -73.9235)",EAST 165 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504761,Sedan,,,, +02/19/2022,11:20,BRONX,10463,40.884373,-73.89856,"(40.884373, -73.89856)",WEST 238 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504778,Sedan,Pick-up Truck,,, +02/20/2022,11:15,BROOKLYN,11226,40.65153,-73.96303,"(40.65153, -73.96303)",CATON AVENUE,SAINT PAULS PLACE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4504361,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,13:19,BROOKLYN,11234,40.61138,-73.93317,"(40.61138, -73.93317)",FILLMORE AVENUE,EAST 36 STREET,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4483619,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,17:04,QUEENS,11105,,,,19 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470945,Box Truck,Tanker,,, +01/15/2022,19:05,BROOKLYN,11237,40.702953,-73.91706,"(40.702953, -73.91706)",WYCKOFF AVENUE,HIMROD STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4495395,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,14:00,QUEENS,11436,0,0,"(0.0, 0.0)",120 AVENUE,146 STREET,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4495415,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,19:45,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495389,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,18:20,BROOKLYN,11233,40.681835,-73.916985,"(40.681835, -73.916985)",CHAUNCEY STREET,SARATOGA AVENUE,,2,0,2,0,0,0,0,0,,,,,,4495414,,,,, +01/15/2022,6:23,,,40.823032,-73.95738,"(40.823032, -73.95738)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495394,Sedan,Sedan,,, +01/10/2022,10:57,QUEENS,11434,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4493502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,9:25,BROOKLYN,11226,40.65228,-73.96116,"(40.65228, -73.96116)",,,2017 CATON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495408,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/23/2021,0:32,,,,,,JEROME AVENUE,EAST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469981,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,12:15,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,WEST 145 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4495393,Sedan,E-Bike,,, +01/11/2022,23:20,MANHATTAN,10019,40.766045,-73.983376,"(40.766045, -73.983376)",8 AVENUE,WEST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,9:30,BROOKLYN,11220,,,,,,4806 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470897,Sedan,,,, +01/14/2022,22:00,,,40.679348,-73.73048,"(40.679348, -73.73048)",LAURELTON PARKWAY,130 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/13/2022,10:00,,,40.689407,-73.913956,"(40.689407, -73.913956)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495390,Sedan,,,, +04/06/2022,10:00,BROOKLYN,11236,40.652603,-73.90344,"(40.652603, -73.90344)",,,10203 AVENUE D,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4517100,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,16:38,BROOKLYN,11206,40.701897,-73.948265,"(40.701897, -73.948265)",,,366 WALLABOUT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,16:15,,,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516831,Sedan,Sedan,,, +04/07/2022,12:00,BRONX,10451,40.811714,-73.92671,"(40.811714, -73.92671)",MORRIS AVENUE,EAST 139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,19:00,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4517188,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/08/2022,17:44,BROOKLYN,11221,40.6906,-73.93209,"(40.6906, -73.93209)",,,889 GREENE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517747,E-Bike,,,, +04/06/2022,11:35,QUEENS,11378,40.713497,-73.90551,"(40.713497, -73.90551)",,,62-07 60 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517355,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,17:55,QUEENS,11415,40.70874,-73.830635,"(40.70874, -73.830635)",LEFFERTS BOULEVARD,83 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517437,Bike,,,, +04/08/2022,8:11,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",EAST 60 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517281,Van,Sedan,,, +03/31/2022,20:10,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",ROGERS AVENUE,CLARENDON ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517613,E-Scooter,,,, +04/06/2022,13:17,QUEENS,11417,40.678852,-73.834114,"(40.678852, -73.834114)",ROCKAWAY BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4516879,Sedan,,,, +04/07/2022,20:07,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4517159,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,9:20,STATEN ISLAND,10301,40.60514,-74.10183,"(40.60514, -74.10183)",EMERSON AVENUE,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4494817,Sedan,,,, +01/15/2022,13:29,BROOKLYN,11249,40.720627,-73.95925,"(40.720627, -73.95925)",WYTHE AVENUE,NORTH 9 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495096,Sedan,Sedan,,, +01/15/2022,13:48,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494924,Sedan,,,, +01/14/2021,14:57,MANHATTAN,10128,40.78408,-73.95857,"(40.78408, -73.95857)",EAST 90 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4495376,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,8:35,MANHATTAN,10024,40.78324,-73.97455,"(40.78324, -73.97455)",WEST 81 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4495339,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,0:30,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494612,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,10:30,MANHATTAN,10002,40.720203,-73.99365,"(40.720203, -73.99365)",,,6 DELANCEY STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,14:00,,,40.587303,-73.96036,"(40.587303, -73.96036)",CONEY ISLAND AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495216,Sedan,Bike,,, +01/15/2022,2:50,,,40.864525,-73.92663,"(40.864525, -73.92663)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,Unspecified,,,4495008,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,17:21,BRONX,10468,40.880688,-73.885704,"(40.880688, -73.885704)",MOSHOLU PARKWAY,PAUL AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4495299,Sedan,Sedan,Sedan,, +01/15/2022,5:00,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494631,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,23:55,QUEENS,11417,40.674133,-73.85826,"(40.674133, -73.85826)",NORTH CONDUIT AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495025,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,14:30,MANHATTAN,10128,40.78389,-73.950294,"(40.78389, -73.950294)",3 AVENUE,EAST 94 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495374,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,13:35,BRONX,10462,40.834576,-73.861145,"(40.834576, -73.861145)",,,1920 MCGRAW AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4495281,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,9:00,,,,,,27 STREET,QUEENS PLAZA NORTH,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470940,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,4:50,QUEENS,11369,,,,,,97-17 25 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,8:26,MANHATTAN,10013,40.71813,-74.00141,"(40.71813, -74.00141)",,,86 WALKER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4494765,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,21:50,MANHATTAN,10039,40.830826,-73.936066,"(40.830826, -73.936066)",,,2987 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495116,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,8:30,MANHATTAN,10029,40.794807,-73.94441,"(40.794807, -73.94441)",EAST 110 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4495170,Sedan,Bus,,, +01/16/2021,19:14,BRONX,10459,40.825077,-73.890594,"(40.825077, -73.890594)",HOE AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495222,Taxi,,,, +01/15/2022,15:10,BRONX,10454,40.80878,-73.92314,"(40.80878, -73.92314)",,,225 WILLIS AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4495240,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/15/2022,16:00,BROOKLYN,11211,40.711304,-73.95772,"(40.711304, -73.95772)",,,161 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,7:53,STATEN ISLAND,10304,40.590313,-74.09794,"(40.590313, -74.09794)",GARRETSON AVENUE,JEFFERSON STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4494701,Sedan,Sedan,,, +01/15/2022,15:55,QUEENS,11429,40.712505,-73.73281,"(40.712505, -73.73281)",,,221-06 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494729,Sedan,,,, +01/15/2022,11:00,MANHATTAN,10282,40.71481,-74.01616,"(40.71481, -74.01616)",,,102 NORTH END AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494704,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,8:00,,,40.666534,-73.80995,"(40.666534, -73.80995)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494751,Sedan,Pick-up Truck,,, +01/15/2022,2:35,,,40.747925,-73.88114,"(40.747925, -73.88114)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4494649,Sedan,Sedan,,, +04/07/2022,19:35,,,40.61652,-73.98586,"(40.61652, -73.98586)",20 AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4517129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/15/2022,15:00,BRONX,10461,,,,,,350 Marconi street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,4:30,QUEENS,11417,40.678173,-73.85749,"(40.678173, -73.85749)",80 STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4495040,Sedan,Taxi,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/12/2022,10:48,BRONX,10472,40.834766,-73.86995,"(40.834766, -73.86995)",EAST 174 STREET,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4495273,Sedan,,,, +01/10/2022,9:40,BROOKLYN,11214,40.596104,-73.99729,"(40.596104, -73.99729)",,,2255 CROPSEY AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4495181,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,15:44,BRONX,10454,40.807808,-73.92384,"(40.807808, -73.92384)",WILLIS AVENUE,EAST 136 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4495248,Minibike,,,, +01/15/2022,4:00,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4494677,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,0:00,QUEENS,11411,40.696037,-73.738655,"(40.696037, -73.738655)",,,116-21 221 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494742,Sedan,Sedan,Sedan,, +01/15/2022,12:07,BROOKLYN,11209,40.636105,-74.03473,"(40.636105, -74.03473)",71 STREET,NARROWS AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4494896,Bus,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,7:46,QUEENS,11369,40.76401,-73.881226,"(40.76401, -73.881226)",ASTORIA BOULEVARD,88 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4433086,Sedan,Sedan,,, +01/14/2022,11:31,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495168,Sedan,Tractor Truck Diesel,,, +07/06/2021,22:06,QUEENS,11413,40.650307,-73.75696,"(40.650307, -73.75696)",,,230-59 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,22:42,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",GRAND CONCOURSE,EAST 158 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,,,,,4434838,Sedan,,,, +07/06/2021,10:25,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4434768,Box Truck,,,, +07/06/2021,18:00,QUEENS,11365,40.729927,-73.810936,"(40.729927, -73.810936)",,,71-01 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435212,Sedan,,,, +06/26/2021,1:20,MANHATTAN,10037,40.81045,-73.942,"(40.81045, -73.942)",,,69 WEST 130 STREET,7,0,0,0,0,0,7,0,Other Vehicular,Outside Car Distraction,Unspecified,Unspecified,Unspecified,4435190,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/06/2021,1:37,,,,,,DE KALB AVENUE,EMERSON PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434342,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,13:02,BROOKLYN,11235,40.57816,-73.941376,"(40.57816, -73.941376)",,,1325 ORIENTAL BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4434744,Sedan,,,, +07/06/2021,13:00,,,40.58862,-73.81702,"(40.58862, -73.81702)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434912,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,15:40,BROOKLYN,11222,40.73735,-73.95479,"(40.73735, -73.95479)",,,37 BOX STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4434791,Ambulance,,,, +07/06/2021,12:45,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435140,Sedan,Sedan,,, +07/02/2021,7:49,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435266,Station Wagon/Sport Utility Vehicle,Dump,,, +07/05/2021,17:15,,,40.756367,-73.96012,"(40.756367, -73.96012)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4435345,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2021,6:02,QUEENS,11355,40.7473,-73.828995,"(40.7473, -73.828995)",136 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434399,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,14:50,BROOKLYN,11221,40.696667,-73.92824,"(40.696667, -73.92824)",CEDAR STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434799,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,13:00,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4435210,Sedan,Tractor Truck Diesel,,, +07/06/2021,0:00,QUEENS,11365,40.733967,-73.80494,"(40.733967, -73.80494)",,,67-30 164 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435255,Sedan,,,, +05/24/2021,17:50,BROOKLYN,11207,40.683933,-73.91228,"(40.683933, -73.91228)",BROADWAY,DECATUR STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435094,Sedan,E-Bike,,, +07/06/2021,0:08,BROOKLYN,11215,40.676147,-73.98391,"(40.676147, -73.98391)",4 AVENUE,CARROLL STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4434485,Bike,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,10:45,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4434689,Dump,Sedan,,, +07/06/2021,8:44,MANHATTAN,10032,40.84231,-73.93515,"(40.84231, -73.93515)",AMSTERDAM AVENUE,WEST 172 STREET,,2,0,1,0,0,0,1,0,Unsafe Speed,,,,,4434844,Motorcycle,,,, +07/06/2021,13:30,BRONX,10469,40.880825,-73.85158,"(40.880825, -73.85158)",LACONIA AVENUE,EAST 220 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Failure to Keep Right,,,,4434873,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/06/2021,17:50,BROOKLYN,11218,40.643173,-73.98355,"(40.643173, -73.98355)",CLARA STREET,CHESTER AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4434923,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/06/2021,8:58,BRONX,10460,40.83917,-73.88206,"(40.83917, -73.88206)",LONGFELLOW AVENUE,RODMAN PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434967,Sedan,Bus,,, +07/06/2021,12:30,BROOKLYN,11220,40.65065,-74.01349,"(40.65065, -74.01349)",,,246 46 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434659,Sedan,,,, +07/06/2021,11:58,BROOKLYN,11215,40.65802,-73.97572,"(40.65802, -73.97572)",,,1601 11 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434585,Sedan,,,, +07/04/2021,18:06,STATEN ISLAND,10301,40.63277,-74.09004,"(40.63277, -74.09004)",CASTLETON AVENUE,GLEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Traffic Control Disregarded,,,,4435286,Sedan,Sedan,,, +07/03/2021,23:50,BROOKLYN,11203,40.65692,-73.926094,"(40.65692, -73.926094)",CLARKSON AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435315,Sedan,Sedan,,, +07/02/2021,21:10,BROOKLYN,11203,40.654575,-73.943214,"(40.654575, -73.943214)",EAST 37 STREET,LENOX ROAD,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4434330,Sedan,Pick-up Truck,,, +07/06/2021,8:38,BROOKLYN,11209,40.63139,-74.03077,"(40.63139, -74.03077)",76 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4434649,Sedan,Sedan,,, +07/06/2021,7:45,BROOKLYN,11222,40.735157,-73.95508,"(40.735157, -73.95508)",MANHATTAN AVENUE,EAGLE STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4434588,Sedan,,,, +07/02/2021,17:00,QUEENS,11106,40.761826,-73.920006,"(40.761826, -73.920006)",,,31-20 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435241,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:05,,,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434677,Sedan,Sedan,,, +07/06/2021,7:51,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",EAST 184 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434512,Bus,Sedan,,, +07/06/2021,1:50,MANHATTAN,10040,40.85618,-73.92872,"(40.85618, -73.92872)",WEST 192 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434959,Taxi,,,, +07/06/2021,19:50,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4434782,Sedan,Sedan,,, +07/06/2021,22:42,,,40.72224,-73.9863,"(40.72224, -73.9863)",AVENUE A,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434809,Sedan,,,, +07/06/2021,7:06,BROOKLYN,11228,40.614594,-74.0228,"(40.614594, -74.0228)",92 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435014,Bus,,,, +07/06/2021,9:30,BROOKLYN,11217,40.680157,-73.98188,"(40.680157, -73.98188)",,,336 BUTLER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434880,Sedan,,,, +07/06/2021,10:35,BRONX,10462,40.8478,-73.86513,"(40.8478, -73.86513)",RHINELANDER AVENUE,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434985,FIRE TRUCK,Ambulance,,, +07/06/2021,8:00,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,16:20,,,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434671,Sedan,,,, +07/06/2021,18:20,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434751,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,22:40,STATEN ISLAND,10304,40.614418,-74.08743,"(40.614418, -74.08743)",VANDUZER STREET,CORNELL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,21:40,,,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434872,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,22:40,MANHATTAN,10016,40.746815,-73.98365,"(40.746815, -73.98365)",,,161 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435161,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:36,STATEN ISLAND,10301,40.631145,-74.089355,"(40.631145, -74.089355)",,,141 OXFORD PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435287,Sedan,Sedan,,, +07/06/2021,12:10,,,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,Following Too Closely,,4434690,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/03/2021,12:30,MANHATTAN,10019,40.768017,-73.99003,"(40.768017, -73.99003)",,,502 WEST 55 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4435397,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/06/2021,11:43,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434608,Sedan,Sedan,,, +07/06/2021,13:30,BRONX,10469,40.861763,-73.84331,"(40.861763, -73.84331)",,,2444 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435136,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,10:15,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,16:58,BRONX,10472,40.825962,-73.879005,"(40.825962, -73.879005)",,,1510 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434943,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,23:55,,,,,,E 18 Street,Avenue C,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4435118,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,21:30,BROOKLYN,11208,40.675297,-73.87268,"(40.675297, -73.87268)",PITKIN AVENUE,DOSCHER STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Fell Asleep,,,,4435223,E-Bike,Sedan,,, +07/06/2021,15:10,BROOKLYN,11231,40.67365,-74.010345,"(40.67365, -74.010345)",COFFEY STREET,OTSEGO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434773,Moped,Sedan,,, +07/06/2021,19:52,MANHATTAN,10027,40.81275,-73.94558,"(40.81275, -73.94558)",WEST 131 STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4435196,E-Bike,Sedan,,, +07/06/2021,8:35,,,40.64939,-73.975296,"(40.64939, -73.975296)",PROSPECT EXPRESSWAY EAST,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4434802,Station Wagon/Sport Utility Vehicle,Dump,Box Truck,Station Wagon/Sport Utility Vehicle, +07/06/2021,15:07,BROOKLYN,11206,40.7012,-73.93992,"(40.7012, -73.93992)",,,811 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434740,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2021,17:40,,,40.547535,-74.1803,"(40.547535, -74.1803)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4434859,Sedan,,,, +06/29/2021,19:13,STATEN ISLAND,10310,40.628048,-74.12692,"(40.628048, -74.12692)",GREENLEAF AVENUE,DELAFIELD AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4435276,Sedan,Convertible,Sedan,, +07/06/2021,17:00,BRONX,10459,40.82444,-73.8979,"(40.82444, -73.8979)",,,1035 HALL PLACE,1,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,,,,4434698,E-Scooter,,,, +06/30/2021,20:35,QUEENS,11413,40.671543,-73.7561,"(40.671543, -73.7561)",,,218-04 141 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4435145,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,8:30,BROOKLYN,11226,40.64313,-73.95044,"(40.64313, -73.95044)",,,2814 CLARENDON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435298,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,22:55,,,40.839924,-73.93286,"(40.839924, -73.93286)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4434825,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/06/2021,21:02,,,,,,KNAPP STREET,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434745,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,22:40,MANHATTAN,10033,40.846046,-73.94025,"(40.846046, -73.94025)",FORT WASHINGTON AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434826,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:45,BROOKLYN,11222,40.725174,-73.951584,"(40.725174, -73.951584)",,,694 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434794,Sedan,Sedan,,, +07/01/2021,17:30,,,40.8122,-73.94226,"(40.8122, -73.94226)",WEST 132 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4435204,Sedan,Bike,,, +07/06/2021,0:13,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4434357,Sedan,,,, +07/06/2021,9:35,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4435251,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,12:40,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435365,Station Wagon/Sport Utility Vehicle,Van,,, +07/06/2021,14:50,QUEENS,11373,40.741295,-73.88029,"(40.741295, -73.88029)",BROADWAY,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434724,Bus,4 dr sedan,,, +07/02/2021,14:17,STATEN ISLAND,10307,40.50213,-74.244514,"(40.50213, -74.244514)",,,525 MAIN STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4435100,Box Truck,,,, +07/06/2021,17:05,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4435344,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,16:25,BROOKLYN,11226,40.655422,-73.95007,"(40.655422, -73.95007)",NOSTRAND AVENUE,CLARKSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435297,Bus,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,17:00,BROOKLYN,11219,40.636147,-73.99097,"(40.636147, -73.99097)",47 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435188,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,0:30,,,40.599247,-74.00146,"(40.599247, -74.00146)",CROPSEY AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4434400,Sedan,Bike,,, +07/05/2021,17:27,QUEENS,11427,40.723774,-73.75901,"(40.723774, -73.75901)",209 STREET,86 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435211,Sedan,,,, +07/06/2021,16:00,,,40.71347,-73.75926,"(40.71347, -73.75926)",199 STREET,JAMAICA AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4434696,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/06/2021,19:46,BROOKLYN,11211,40.715702,-73.95579,"(40.715702, -73.95579)",ROEBLING STREET,NORTH 6 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434796,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/05/2021,15:20,QUEENS,11101,40.756874,-73.94436,"(40.756874, -73.94436)",10 STREET,40 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435256,Bike,,,, +07/06/2021,19:50,BROOKLYN,11206,40.71105,-73.945526,"(40.71105, -73.945526)",,,228 MANHATTAN AVENUE,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4434741,Bike,Sedan,,, +07/05/2021,13:00,MANHATTAN,10005,40.707638,-74.00816,"(40.707638, -74.00816)",,,10 LIBERTY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435093,Sedan,,,, +06/30/2021,1:35,BROOKLYN,11207,40.65775,-73.88999,"(40.65775, -73.88999)",,,819 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435143,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,13:00,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Other Vehicular,Following Too Closely,,,,4434769,Sedan,Pick-up Truck,,, +06/19/2021,15:04,BRONX,10458,,,,SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4435321,Sedan,Sedan,Sedan,, +07/06/2021,8:00,QUEENS,11367,40.718426,-73.817505,"(40.718426, -73.817505)",,,79-09 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435245,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,11:00,BROOKLYN,11229,40.60646,-73.9517,"(40.60646, -73.9517)",AVENUE R,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4434605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/06/2021,14:40,,,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4434651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,18:30,MANHATTAN,10002,40.715355,-73.99341,"(40.715355, -73.99341)",CANAL STREET,ELDRIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2021,16:10,BRONX,10458,40.858067,-73.88374,"(40.858067, -73.88374)",,,640 EAST FORDHAM ROAD,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435306,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2021,19:16,QUEENS,11422,40.654705,-73.74513,"(40.654705, -73.74513)",,,239-20 148 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434719,Sedan,,,, +07/06/2021,20:00,BRONX,10468,40.869328,-73.8933,"(40.869328, -73.8933)",,,2765 CRESTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434999,Sedan,,,, +06/27/2021,19:45,MANHATTAN,10034,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,DYCKMAN STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4435265,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,7:00,QUEENS,11416,40.686398,-73.84995,"(40.686398, -73.84995)",92 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434550,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,21:43,,,40.798576,-73.97316,"(40.798576, -73.97316)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434837,Sedan,,,, +07/06/2021,12:30,BRONX,10451,40.82461,-73.910484,"(40.82461, -73.910484)",,,481 EAST 163 STREET,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4434902,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/06/2021,10:20,,,40.612564,-73.98998,"(40.612564, -73.98998)",20 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434637,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2021,21:51,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",FLATLANDS AVENUE,EAST 80 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434749,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,19:11,BRONX,10456,40.833664,-73.8981,"(40.833664, -73.8981)",EAST 170 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435183,Sedan,,,, +06/24/2021,15:00,,,40.828617,-73.84217,"(40.828617, -73.84217)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435219,Sedan,,,, +07/06/2021,11:50,,,40.69366,-73.983795,"(40.69366, -73.983795)",DUFFIELD STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435031,Sedan,,,, +07/06/2021,15:55,BROOKLYN,11236,40.640728,-73.90521,"(40.640728, -73.90521)",EAST 91 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434713,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/06/2021,15:04,MANHATTAN,10021,40.771694,-73.95919,"(40.771694, -73.95919)",3 AVENUE,EAST 75 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434758,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,0:33,STATEN ISLAND,10305,40.60959,-74.07679,"(40.60959, -74.07679)",,,57 COLTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435283,Sedan,,,, +07/06/2021,22:00,MANHATTAN,10040,40.859943,-73.926796,"(40.859943, -73.926796)",HILLSIDE AVENUE,SICKLES STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435151,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,20:25,MANHATTAN,10019,40.76761,-73.9929,"(40.76761, -73.9929)",,,555 WEST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435400,Sedan,,,, +07/06/2021,18:10,,,40.711384,-73.8366,"(40.711384, -73.8366)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4434879,Sedan,Sedan,,, +07/06/2021,6:45,MANHATTAN,10035,40.802116,-73.9361,"(40.802116, -73.9361)",,,221 EAST 123 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434473,TANK,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,20:44,BRONX,10460,40.838238,-73.876686,"(40.838238, -73.876686)",EAST 177 STREET,BRONX PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434977,Sedan,Sedan,,, +07/06/2021,17:50,BROOKLYN,11208,40.674232,-73.86177,"(40.674232, -73.86177)",SUTTER AVENUE,CONDUIT BOULEVARD,,1,0,0,0,0,0,1,0,Illnes,,,,,4434678,Grumman LL,,,, +07/06/2021,18:25,MANHATTAN,10021,40.774582,-73.96409,"(40.774582, -73.96409)",,,10 EAST 76 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4434908,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:25,,,40.84467,-73.9449,"(40.84467, -73.9449)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4434843,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,16:15,,,40.756767,-73.98272,"(40.756767, -73.98272)",WEST 45 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434777,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,15:00,BRONX,10469,40.88049,-73.85106,"(40.88049, -73.85106)",,,3662 FENTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435239,Sedan,,,, +07/06/2021,23:23,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4434808,Sedan,,,, +07/06/2021,16:20,,,40.85061,-73.913826,"(40.85061, -73.913826)",HARRISON AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435152,Sedan,FIRE TRUCK,,, +07/06/2021,14:00,QUEENS,11368,40.74958,-73.86541,"(40.74958, -73.86541)",,,100-02 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434728,Bus,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,19:30,MANHATTAN,10069,40.77449,-73.99143,"(40.77449, -73.99143)",WEST 62 STREET,RIVERSIDE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435001,Sedan,,,, +07/05/2021,11:23,,,40.632698,-74.166306,"(40.632698, -74.166306)",,,281 SOUTH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435121,Sedan,,,, +07/06/2021,0:00,BRONX,10451,40.815437,-73.924,"(40.815437, -73.924)",MORRIS AVENUE,EAST 144 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434757,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,12:35,,,40.729343,-74.00366,"(40.729343, -74.00366)",BEDFORD STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4434921,Sedan,Box Truck,,, +07/06/2021,0:14,BROOKLYN,11221,40.696205,-73.91782,"(40.696205, -73.91782)",GROVE STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434508,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,9:30,MANHATTAN,10035,40.80114,-73.93769,"(40.80114, -73.93769)",EAST 121 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434821,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,11:45,BROOKLYN,11220,40.646675,-74.008705,"(40.646675, -74.008705)",,,4708 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434658,Sedan,Flat Bed,,, +07/06/2021,18:45,,,40.752895,-73.98925,"(40.752895, -73.98925)",7 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4434829,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:50,BROOKLYN,11219,40.62702,-74.00636,"(40.62702, -74.00636)",,,1129 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434723,Sedan,UPS Van,,, +07/06/2021,11:28,,,40.754093,-73.99209,"(40.754093, -73.99209)",WEST 37 STREET,,,1,0,1,0,0,0,0,0,,,,,,4434819,E-Scooter,,,, +07/06/2021,7:35,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",7 AVENUE,WEST 145 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4435195,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,1:25,,,40.68473,-74.00102,"(40.68473, -74.00102)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4434772,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2021,8:50,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435205,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,1:24,BROOKLYN,11236,40.641422,-73.89539,"(40.641422, -73.89539)",AVENUE K,EAST 99 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,0:03,,,40.715958,-73.81275,"(40.715958, -73.81275)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4435252,Sedan,Sedan,Sedan,, +07/03/2021,19:50,BROOKLYN,11207,40.68209,-73.90709,"(40.68209, -73.90709)",,,27 FURMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435098,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,15:30,BROOKLYN,11203,40.654205,-73.92425,"(40.654205, -73.92425)",,,905 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435354,Sedan,Sedan,,, +07/02/2021,16:56,QUEENS,11372,40.75239,-73.875336,"(40.75239, -73.875336)",,,35-50 92 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435307,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,14:43,BRONX,10457,40.84219,-73.89411,"(40.84219, -73.89411)",CROTONA AVENUE,CROTONA PARK NORTH,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4434903,Sedan,Sedan,Sedan,, +07/06/2021,8:45,QUEENS,11373,40.746403,-73.877426,"(40.746403, -73.877426)",,,88-36 ELMHURST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434634,Sedan,Sedan,,, +07/06/2021,10:58,,,,,,VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434638,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,16:12,BROOKLYN,11212,40.663105,-73.90518,"(40.663105, -73.90518)",LIVONIA AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434861,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,23:30,QUEENS,11365,40.72878,-73.81108,"(40.72878, -73.81108)",,,71-50 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435250,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,9:25,,,40.664413,-73.88727,"(40.664413, -73.88727)",HENDRIX STREET,NEW LOTS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4434670,,,,, +07/06/2021,17:07,,,40.709362,-73.9943,"(40.709362, -73.9943)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434888,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2021,3:23,QUEENS,11694,40.580513,-73.83471,"(40.580513, -73.83471)",,,113-07 ROCKAWAY BEACH BOULEVARD,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4435275,Sedan,,,, +07/06/2021,8:00,QUEENS,11422,40.674137,-73.72955,"(40.674137, -73.72955)",MERRICK BOULEVARD,244 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434712,Sedan,Sedan,,, +07/06/2021,21:00,,,40.830975,-73.85267,"(40.830975, -73.85267)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434944,Sedan,,,, +07/06/2021,18:50,BRONX,10460,40.84054,-73.87058,"(40.84054, -73.87058)",VANNEST AVENUE,ADAMS STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4435304,Sedan,Sedan,,, +07/06/2021,8:25,BRONX,10460,40.83576,-73.891396,"(40.83576, -73.891396)",BOSTON ROAD,SUBURBAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,4:30,BROOKLYN,11225,40.666557,-73.95561,"(40.666557, -73.95561)",,,153 CROWN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4434863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/06/2021,18:23,MANHATTAN,10031,40.830845,-73.947235,"(40.830845, -73.947235)",WEST 152 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434929,Sedan,,,, +07/06/2021,13:24,QUEENS,11379,40.72575,-73.87756,"(40.72575, -73.87756)",ELIOT AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,3:15,BROOKLYN,11234,40.627983,-73.92493,"(40.627983, -73.92493)",FLATLANDS AVENUE,EAST 53 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434554,Tractor Truck Diesel,Bike,,, +07/06/2021,11:50,QUEENS,11379,40.715576,-73.87811,"(40.715576, -73.87811)",,,75-31 JUNIPER VALLEY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434664,Sedan,Sedan,,, +07/04/2021,16:11,STATEN ISLAND,10304,40.616245,-74.07915,"(40.616245, -74.07915)",,,220 OSGOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435284,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,3:45,STATEN ISLAND,10310,40.634747,-74.11092,"(40.634747, -74.11092)",,,861 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435291,Sedan,Sedan,,, +07/06/2021,17:20,BROOKLYN,11236,40.629494,-73.91834,"(40.629494, -73.91834)",,,1966 RALPH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4434695,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,12:52,BROOKLYN,11237,40.694557,-73.906555,"(40.694557, -73.906555)",IRVING AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434797,Sedan,E-Bike,,, +07/02/2021,18:30,STATEN ISLAND,10304,40.624893,-74.078705,"(40.624893, -74.078705)",,,97 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435277,Sedan,,,, +07/04/2021,18:40,,,40.5437,-74.17692,"(40.5437, -74.17692)",ANNADALE ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435097,Sedan,Sedan,,, +07/04/2021,4:10,,,40.71713,-73.7986,"(40.71713, -73.7986)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4435244,Sedan,Sedan,,, +07/06/2021,11:28,,,40.702126,-73.834816,"(40.702126, -73.834816)",85 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434600,Sedan,,,, +07/06/2021,16:00,BROOKLYN,11213,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,PRESIDENT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4434721,Motorscooter,Sedan,,, +07/06/2021,7:35,BRONX,10457,40.846455,-73.89363,"(40.846455, -73.89363)",,,595 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4434506,Sedan,Sedan,,, +07/06/2021,0:00,QUEENS,11104,40.743916,-73.92519,"(40.743916, -73.92519)",39 PLACE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4434679,Ambulance,Sedan,,, +06/16/2021,17:00,QUEENS,11433,40.702312,-73.80059,"(40.702312, -73.80059)",,,156-11 ARCHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435369,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,17:43,STATEN ISLAND,10308,40.553715,-74.16032,"(40.553715, -74.16032)",ARMSTRONG AVENUE,GENESEE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434850,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,15:35,BROOKLYN,11208,40.670517,-73.863106,"(40.670517, -73.863106)",,,790 ELDERTS LANE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4434674,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,15:00,BROOKLYN,11205,40.690285,-73.95433,"(40.690285, -73.95433)",SPENCER COURT,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435193,Sedan,Carry All,,, +07/06/2021,20:26,BRONX,10459,40.831505,-73.88468,"(40.831505, -73.88468)",,,1448 SHERIDAN EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434945,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/06/2021,14:00,BROOKLYN,11229,40.60646,-73.9517,"(40.60646, -73.9517)",AVENUE R,EAST 21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,12:45,MANHATTAN,10013,40.716,-73.99826,"(40.716, -73.99826)",,,60 MOTT STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4434885,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,7:30,BRONX,10458,40.85885,-73.885956,"(40.85885, -73.885956)",EAST FORDHAM ROAD,HOFFMAN STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4434976,Sedan,Pick-up Truck,,, +07/06/2021,18:25,,,40.73339,-74.00428,"(40.73339, -74.00428)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434920,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:00,QUEENS,11417,40.683228,-73.83632,"(40.683228, -73.83632)",,,105-18 103 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434788,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,20:35,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4435142,Motorcycle,,,, +07/03/2021,19:00,,,40.850414,-73.93455,"(40.850414, -73.93455)",WEST 182 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435264,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,14:50,,,40.759724,-73.78322,"(40.759724, -73.78322)",201 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4434733,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/03/2021,21:35,BROOKLYN,11230,40.61149,-73.972404,"(40.61149, -73.972404)",EAST 2 STREET,AVENUE O,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435184,Bike,,,, +07/06/2021,16:03,QUEENS,11427,40.72364,-73.755775,"(40.72364, -73.755775)",211 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434727,Box Truck,4 dr sedan,,, +07/06/2021,6:35,BROOKLYN,11207,40.67567,-73.89785,"(40.67567, -73.89785)",SHEFFIELD AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Following Too Closely,,,,4434449,Station Wagon/Sport Utility Vehicle,Dump,,, +07/06/2021,15:00,QUEENS,11432,40.709953,-73.8014,"(40.709953, -73.8014)",,,160-05 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435207,Sedan,,,, +07/06/2021,9:04,BROOKLYN,11228,40.62174,-74.01896,"(40.62174, -74.01896)",,,929 81 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434652,Sedan,,,, +07/06/2021,11:00,,,40.764053,-73.96476,"(40.764053, -73.96476)",3 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4434759,Taxi,Moped,,, +07/06/2021,16:00,BROOKLYN,11236,40.644676,-73.91094,"(40.644676, -73.91094)",,,972 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435323,Sedan,,,, +07/05/2021,15:35,QUEENS,11103,40.759064,-73.91229,"(40.759064, -73.91229)",46 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4435260,Sedan,Sedan,,, +07/05/2021,17:20,STATEN ISLAND,10312,40.537296,-74.17775,"(40.537296, -74.17775)",,,33 PINE TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4435103,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/06/2021,16:00,,,40.68468,-74.001335,"(40.68468, -74.001335)",SACKETT STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434770,Sedan,,,, +07/06/2021,18:35,,,40.830257,-73.914856,"(40.830257, -73.914856)",COLLEGE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4434841,Sedan,Sedan,,, +06/29/2021,0:40,QUEENS,11436,40.679615,-73.79642,"(40.679615, -73.79642)",FOCH BOULEVARD,145 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435124,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,21:16,BROOKLYN,11236,40.635666,-73.89559,"(40.635666, -73.89559)",,,9412 AVENUE M,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434748,Sedan,,,, +07/06/2021,12:10,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434714,Pick-up Truck,,,, +06/25/2021,21:10,,,40.817226,-73.94231,"(40.817226, -73.94231)",7 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4435200,Sedan,Multi-Wheeled Vehicle,,, +06/23/2021,0:00,MANHATTAN,10002,40.71908,-73.98508,"(40.71908, -73.98508)",CLINTON STREET,RIVINGTON STREET,,1,0,0,0,1,0,0,0,Obstruction/Debris,Unspecified,,,,4435217,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2021,17:22,BRONX,10466,40.892754,-73.85774,"(40.892754, -73.85774)",EAST 232 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4434877,Sedan,E-Scooter,,, +07/06/2021,13:10,BROOKLYN,11201,40.688293,-73.98433,"(40.688293, -73.98433)",,,250 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435032,Box Truck,Sedan,,, +07/06/2021,17:20,MANHATTAN,10019,40.761093,-73.98327,"(40.761093, -73.98327)",7 AVENUE,WEST 50 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434776,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/06/2021,19:01,MANHATTAN,10031,40.830845,-73.947235,"(40.830845, -73.947235)",BROADWAY,WEST 152 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434822,Sedan,,,, +07/06/2021,15:20,MANHATTAN,10034,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,WEST 207 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4435268,Sedan,Sedan,Sedan,4 dr sedan, +07/06/2021,17:30,,,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435149,Dump,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,0:10,,,40.851658,-73.921394,"(40.851658, -73.921394)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4435338,Sedan,Taxi,Sedan,, +07/06/2021,0:00,,,,,,EAST 170 STREET,jesup avenue,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434833,Sedan,Bike,,, +06/26/2021,0:30,,,40.67329,-73.95703,"(40.67329, -73.95703)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4435312,Sedan,Sedan,,, +07/06/2021,9:05,BROOKLYN,11209,40.618763,-74.031006,"(40.618763, -74.031006)",,,373 92 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4435156,994,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,4:15,,,40.594593,-73.99551,"(40.594593, -73.99551)",BAY 35 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434377,Sedan,,,, +07/05/2021,0:05,,,40.716133,-73.8185,"(40.716133, -73.8185)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4435253,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/22/2021,15:31,QUEENS,11367,40.732094,-73.81298,"(40.732094, -73.81298)",,,155-09 JEWEL AVENUE,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435201,Sedan,E-Scooter,,, +07/06/2021,13:30,QUEENS,11362,40.770176,-73.73359,"(40.770176, -73.73359)",LITTLE NECK PARKWAY,WEST END DRIVE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4434732,Pick-up Truck,Sedan,,, +07/06/2021,15:55,BRONX,10460,40.83285,-73.886246,"(40.83285, -73.886246)",EAST 172 STREET,LONGFELLOW AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4434904,Motorcycle,,,, +07/06/2021,13:40,,,40.80924,-73.95301,"(40.80924, -73.95301)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434639,Van,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,21:53,,,40.71487,-73.7291,"(40.71487, -73.7291)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4434898,Sedan,Sedan,,, +07/05/2021,14:00,BROOKLYN,11208,40.67994,-73.88468,"(40.67994, -73.88468)",ELTON STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435234,Sedan,Sedan,,, +07/06/2021,11:42,MANHATTAN,10038,40.708958,-74.00762,"(40.708958, -74.00762)",,,55 JOHN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435105,Tractor Truck Diesel,Sedan,,, +07/06/2021,23:24,,,40.788055,-73.94433,"(40.788055, -73.94433)",2 AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4434787,Sedan,Sedan,,, +07/06/2021,18:30,MANHATTAN,10009,40.727283,-73.98088,"(40.727283, -73.98088)",,,325 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434807,Sedan,,,, +07/06/2021,4:41,BROOKLYN,11203,40.634945,-73.9325,"(40.634945, -73.9325)",GLENWOOD ROAD,EAST 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435004,Sedan,Sedan,,, +07/06/2021,16:13,MANHATTAN,10031,40.82902,-73.94485,"(40.82902, -73.94485)",AMSTERDAM AVENUE,WEST 151 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4434854,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/06/2021,12:50,,,40.74359,-73.92242,"(40.74359, -73.92242)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434673,Bus,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,8:25,MANHATTAN,10010,40.743103,-73.98846,"(40.743103, -73.98846)",,,208 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434708,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/05/2021,22:40,BROOKLYN,11238,40.685898,-73.95663,"(40.685898, -73.95663)",,,387 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435302,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,9:35,MANHATTAN,10010,40.737885,-73.98091,"(40.737885, -73.98091)",EAST 23 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434531,Sedan,Motorcycle,,, +07/03/2021,16:37,QUEENS,11415,40.705257,-73.834206,"(40.705257, -73.834206)",118 STREET,CURZON ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435278,firetruck,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,20:10,,,40.66336,-73.93456,"(40.66336, -73.93456)",SCHENECTADY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434865,Pick-up Truck,Sedan,,, +07/06/2021,11:40,,,,,,WILLIS AVENUE BRIDGE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434756,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,9:30,QUEENS,11435,40.714996,-73.81022,"(40.714996, -73.81022)",150 STREET,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435249,Sedan,Sedan,,, +07/05/2021,7:15,,,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435353,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,16:38,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4434675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2021,12:38,QUEENS,11004,40.7379,-73.714775,"(40.7379, -73.714775)",LITTLE NECK PARKWAY,83 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,20:30,BROOKLYN,11226,40.655075,-73.96136,"(40.655075, -73.96136)",,,188 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435067,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:30,BROOKLYN,11219,40.633083,-74.00558,"(40.633083, -74.00558)",FORT HAMILTON PARKWAY,60 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4434937,Sedan,Box Truck,,, +07/06/2021,22:38,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434946,Sedan,,,, +07/06/2021,6:50,BRONX,10456,40.83659,-73.90057,"(40.83659, -73.90057)",FULTON AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434524,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,2:20,MANHATTAN,10036,40.758533,-73.98885,"(40.758533, -73.98885)",8 AVENUE,WEST 44 STREET,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4434818,Sedan,Sedan,,, +07/06/2021,11:33,BROOKLYN,11207,40.673573,-73.902084,"(40.673573, -73.902084)",LIBERTY AVENUE,SNEDIKER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4434618,Bike,,,, +07/06/2021,10:40,,,40.61913,-74.15988,"(40.61913, -74.15988)",,,104 JULES DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4434875,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,3:30,BROOKLYN,11229,40.60547,-73.96074,"(40.60547, -73.96074)",AVENUE R,EAST 12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4434497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/06/2021,17:45,BROOKLYN,11228,40.616726,-74.01833,"(40.616726, -74.01833)",86 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434722,Sedan,,,, +07/06/2021,14:40,BRONX,10466,40.8963,-73.84688,"(40.8963, -73.84688)",PITMAN AVENUE,GRACE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,4:30,,,40.70924,-73.756935,"(40.70924, -73.756935)",104 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4435371,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/06/2021,22:05,MANHATTAN,10032,40.83417,-73.94837,"(40.83417, -73.94837)",WEST 155 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434845,Sedan,,,, +07/06/2021,13:55,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434660,Pick-up Truck,Sedan,,, +07/04/2021,4:14,,,40.71665,-73.80041,"(40.71665, -73.80041)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435214,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,20:30,BROOKLYN,11219,40.641254,-73.9964,"(40.641254, -73.9964)",10 AVENUE,45 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435185,Sedan,Sedan,,, +07/06/2021,0:00,BROOKLYN,11218,40.643894,-73.96873,"(40.643894, -73.96873)",STRATFORD ROAD,BEVERLEY ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4434761,Sedan,Sedan,,, +07/06/2021,13:20,,,,,,SHORE PARKWAY,KNAPP STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,21:30,STATEN ISLAND,10309,40.509666,-74.21807,"(40.509666, -74.21807)",HYLAN BOULEVARD,CUNNINGHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435096,Sedan,Pick-up Truck,,, +07/05/2021,21:35,,,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435141,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:05,QUEENS,11434,40.667587,-73.77972,"(40.667587, -73.77972)",NORTH CONDUIT AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434771,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,14:20,,,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4434656,Sedan,scooter,,, +06/27/2021,23:57,BRONX,10455,40.817368,-73.90259,"(40.817368, -73.90259)",PROSPECT AVENUE,EAST 156 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4435329,Sedan,,,, +07/06/2021,11:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4434596,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,9:00,QUEENS,11102,40.772125,-73.929955,"(40.772125, -73.929955)",,,12-23 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435242,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,23:23,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4434882,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/06/2021,21:19,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,,,4434974,Sedan,Sedan,,, +07/06/2021,7:00,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434688,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,21:30,QUEENS,11420,40.67224,-73.805176,"(40.67224, -73.805176)",,,133-14 SUTTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434789,Carry All,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,18:35,MANHATTAN,10012,40.730175,-74.000336,"(40.730175, -74.000336)",,,128 MAC DOUGAL STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4434919,Sedan,,,, +07/06/2021,7:15,BRONX,10452,40.84018,-73.92647,"(40.84018, -73.92647)",MERRIAM AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434839,Sedan,Sedan,,, +07/06/2021,9:30,,,40.627186,-73.9431,"(40.627186, -73.9431)",AVENUE J,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434577,Sedan,Sedan,,, +07/06/2021,9:00,,,,,,METROPOLITAN AVENUE,FOREST PARK DRIVE EAST,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434471,Sedan,,,, +07/06/2021,15:46,QUEENS,11368,40.74403,-73.85869,"(40.74403, -73.85869)",104 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434725,Sedan,Bike,,, +07/05/2021,9:30,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",CLOVE ROAD,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435288,Sedan,Sedan,,, +07/06/2021,14:32,BROOKLYN,11221,40.69808,-73.92536,"(40.69808, -73.92536)",MYRTLE AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434798,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,17:34,BROOKLYN,11236,40.63132,-73.902336,"(40.63132, -73.902336)",EAST 85 STREET,AVENUE M,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4434694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,8:00,,,40.81467,-73.93623,"(40.81467, -73.93623)",WEST 138 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435192,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,15:20,QUEENS,11432,40.70936,-73.80805,"(40.70936, -73.80805)",150 STREET,85 DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435208,Sedan,,,, +07/06/2021,15:30,STATEN ISLAND,10312,40.559605,-74.17689,"(40.559605, -74.17689)",ANNADALE ROAD,WATKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,19:57,QUEENS,11105,40.778587,-73.91884,"(40.778587, -73.91884)",,,21-03 23 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435261,Pick-up Truck,Taxi,,, +07/06/2021,16:20,BROOKLYN,11249,40.715935,-73.96305,"(40.715935, -73.96305)",,,100 NORTH 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434738,Sedan,,,, +07/05/2021,14:49,QUEENS,11369,40.764885,-73.8656,"(40.764885, -73.8656)",CURTIS STREET,27 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435125,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,23:30,STATEN ISLAND,10304,40.615204,-74.084656,"(40.615204, -74.084656)",TARGEE STREET,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4435285,,,,, +07/06/2021,9:30,BROOKLYN,11212,40.662506,-73.90929,"(40.662506, -73.90929)",,,233 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434871,Sedan,,,, +07/01/2021,18:45,QUEENS,11373,40.731182,-73.871605,"(40.731182, -73.871605)",WOODHAVEN BOULEVARD,WETHEROLE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,9:36,MANHATTAN,10017,40.755848,-73.97862,"(40.755848, -73.97862)",,,6 EAST 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,9:30,BROOKLYN,11204,40.625713,-73.978195,"(40.625713, -73.978195)",,,1943 50 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434640,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,8:05,QUEENS,11694,40.57597,-73.84801,"(40.57597, -73.84801)",ROCKAWAY BEACH BOULEVARD,BEACH 129 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,1:40,,,40.76548,-73.913704,"(40.76548, -73.913704)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435247,Sedan,Sedan,Sedan,, +07/06/2021,17:30,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4434858,Sedan,Sedan,,, +07/06/2021,11:30,BRONX,10456,40.826256,-73.90166,"(40.826256, -73.90166)",EAST 166 STREET,TINTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434612,AMBULENCE,Sedan,,, +07/06/2021,15:00,BROOKLYN,11207,40.672935,-73.88889,"(40.672935, -73.88889)",,,2263 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434676,Motorcycle,,,, +07/06/2021,16:10,BRONX,10469,40.865208,-73.84336,"(40.865208, -73.84336)",EASTCHESTER ROAD,ALLERTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434986,Sedan,,,, +07/06/2021,20:23,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434948,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,8:45,QUEENS,11421,40.694782,-73.85258,"(40.694782, -73.85258)",86 ROAD,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434542,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/02/2021,17:05,MANHATTAN,10003,40.73602,-73.98228,"(40.73602, -73.98228)",EAST 20 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4435262,Taxi,,,, +07/06/2021,22:00,QUEENS,11426,40.729027,-73.725296,"(40.729027, -73.725296)",,,88-29 242 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435334,Sedan,,,, +06/27/2021,15:15,STATEN ISLAND,10312,40.561512,-74.171844,"(40.561512, -74.171844)",DRUMGOOLE ROAD WEST,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2021,21:20,QUEENS,11412,40.700005,-73.7547,"(40.700005, -73.7547)",MURDOCK AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Speed,,,,4434774,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,17:01,,,40.824184,-73.93723,"(40.824184, -73.93723)",WEST 149 STREET,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4435199,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,17:20,QUEENS,11367,40.718197,-73.82302,"(40.718197, -73.82302)",,,138-17 78 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435202,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,0:35,QUEENS,11355,40.754375,-73.8234,"(40.754375, -73.8234)",KISSENA BOULEVARD,BEECH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434398,2 dr sedan,DUMP TRUCK,,, +07/05/2021,23:26,BROOKLYN,11212,40.658054,-73.91614,"(40.658054, -73.91614)",,,1152 WILLMOHR STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,9:29,MANHATTAN,10016,40.748245,-73.976295,"(40.748245, -73.976295)",EAST 38 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4434811,Taxi,Taxi,,, +07/06/2021,19:48,,,40.844883,-73.907295,"(40.844883, -73.907295)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434834,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,11:00,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",UNION TURNPIKE,MAIN STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4435254,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,7:00,,,,,,G.C.P. / C.I.P. (CDR),,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4434731,Sedan,,,, +07/06/2021,23:06,BROOKLYN,11236,40.64953,-73.91633,"(40.64953, -73.91633)",REMSEN AVENUE,AVENUE B,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4435010,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,21:50,,,,,,MOSHOLU PARKWAY,EAST MOSHOLU PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434752,Sedan,,,, +07/06/2021,8:25,STATEN ISLAND,10304,40.618256,-74.086174,"(40.618256, -74.086174)",,,856 VANDUZER STREET,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,,,4435281,Box Truck,Sedan,Sedan,, +07/06/2021,21:43,,,40.798576,-73.97316,"(40.798576, -73.97316)",WEST 100 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434824,Sedan,,,, +07/06/2021,18:00,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",SUTTER AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4434672,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,9:08,BRONX,10457,40.847393,-73.90463,"(40.847393, -73.90463)",EAST 176 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434513,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,20:40,QUEENS,11434,40.655254,-73.76568,"(40.655254, -73.76568)",ROCKAWAY BOULEVARD,182 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434899,Sedan,Sedan,,, +07/06/2021,20:38,,,40.607662,-73.98348,"(40.607662, -73.98348)",WEST 10 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435091,Sedan,,,, +07/06/2021,16:30,QUEENS,11040,40.749317,-73.70764,"(40.749317, -73.70764)",,,265-21 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434717,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,15:50,QUEENS,11375,40.723866,-73.85309,"(40.723866, -73.85309)",,,100-26 67 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434707,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,15:35,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434938,Sedan,Sedan,,, +07/05/2021,10:30,QUEENS,11361,40.75787,-73.78346,"(40.75787, -73.78346)",43 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435267,Sedan,,,, +07/06/2021,20:29,BROOKLYN,11235,40.582737,-73.95605,"(40.582737, -73.95605)",NEPTUNE AVENUE,CASS PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4434747,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:45,QUEENS,11417,40.684406,-73.8348,"(40.684406, -73.8348)",,,103-36 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434784,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,15:55,BROOKLYN,11208,40.68857,-73.8757,"(40.68857, -73.8757)",CYPRESS HILL STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,12:15,,,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435157,E-Bike,E-Bike,,, +07/06/2021,18:30,MANHATTAN,10009,40.727283,-73.98088,"(40.727283, -73.98088)",,,325 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434803,,,,, +07/06/2021,6:50,,,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4434739,E-Scooter,,,, +07/06/2021,23:00,BROOKLYN,11210,40.639023,-73.941536,"(40.639023, -73.941536)",EAST 37 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4435352,Sedan,Sedan,School bus,Sedan, +07/06/2021,8:00,MANHATTAN,10034,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,WEST 207 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4435133,Box Truck,Bus,Station Wagon/Sport Utility Vehicle,, +06/12/2021,12:15,,,40.829945,-73.93005,"(40.829945, -73.93005)",EAST 161 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435148,Sedan,Taxi,,, +07/03/2021,12:50,,,40.820435,-73.93624,"(40.820435, -73.93624)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435187,Sedan,,,, +07/06/2021,13:00,BROOKLYN,11230,40.63048,-73.96727,"(40.63048, -73.96727)",,,761 EAST 10 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4434763,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,16:10,BROOKLYN,11211,40.7131,-73.94125,"(40.7131, -73.94125)",,,55 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495318,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,17:18,MANHATTAN,10002,40.715355,-73.99341,"(40.715355, -73.99341)",CANAL STREET,ELDRIDGE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4494769,Lunch Wagon,,,, +01/15/2022,3:10,QUEENS,11418,40.69748,-73.835464,"(40.69748, -73.835464)",,,87-51 113 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494840,Convertible,,,, +01/15/2022,4:01,BRONX,10461,40.845028,-73.844574,"(40.845028, -73.844574)",,,1488 BLONDELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494709,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,14:30,BRONX,10467,40.879074,-73.872406,"(40.879074, -73.872406)",,,3510 DECATUR AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495297,Sedan,,,, +01/15/2022,18:27,BRONX,10457,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495196,Station Wagon/Sport Utility Vehicle,Bus,,, +01/15/2022,23:00,BROOKLYN,11235,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON 5 STREET,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495230,Sedan,,,, +10/22/2021,17:59,,,,,,EAST 63 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470947,,,,, +01/15/2022,9:48,,,40.83328,-73.86097,"(40.83328, -73.86097)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4495292,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/15/2022,17:30,BROOKLYN,11238,40.67983,-73.9583,"(40.67983, -73.9583)",CLASSON AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,16:40,QUEENS,11434,40.68775,-73.79039,"(40.68775, -73.79039)",LINDEN BOULEVARD,157 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495026,Sedan,Sedan,,, +01/15/2022,8:15,MANHATTAN,10033,40.845634,-73.93272,"(40.845634, -73.93272)",,,2360 AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4494855,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/15/2022,12:50,BRONX,10453,40.858196,-73.907906,"(40.858196, -73.907906)",AQUEDUCT AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495144,Sedan,Sedan,,, +01/15/2022,20:10,BROOKLYN,11212,40.669403,-73.912605,"(40.669403, -73.912605)",PITKIN AVENUE,BRISTOL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494786,Sedan,,,, +01/13/2022,19:07,,,,,,JEROME AVENUE,RISSE STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4495308,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,14:40,,,40.707466,-73.7887,"(40.707466, -73.7887)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4495068,Van,,,, +01/15/2022,20:40,QUEENS,11106,40.760403,-73.92338,"(40.760403, -73.92338)",,,32-72 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494874,Sedan,,,, +01/15/2022,14:00,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4495075,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/15/2022,9:05,MANHATTAN,10040,40.853718,-73.93212,"(40.853718, -73.93212)",,,281 WADSWORTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495009,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,10:00,,,40.68916,-73.99263,"(40.68916, -73.99263)",PACIFIC STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495357,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,0:41,,,40.790344,-73.81984,"(40.790344, -73.81984)",147 STREET,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4494617,Sedan,Sedan,,, +01/15/2022,13:15,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4494833,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/14/2022,16:10,BRONX,10472,40.83343,-73.868645,"(40.83343, -73.868645)",,,1328 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495285,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,11:50,MANHATTAN,10024,40.783974,-73.97031,"(40.783974, -73.97031)",CENTRAL PARK WEST,WEST 84 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495332,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,2:05,BROOKLYN,11237,40.704113,-73.91587,"(40.704113, -73.91587)",SAINT NICHOLAS AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4494634,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/14/2022,12:04,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,12:06,BROOKLYN,11226,40.65134,-73.95657,"(40.65134, -73.95657)",,,75 MARTENSE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494784,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,10:00,QUEENS,11427,40.733295,-73.73427,"(40.733295, -73.73427)",HILLSIDE AVENUE,MUSKET STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,4:30,,,40.75379,-73.91548,"(40.75379, -73.91548)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4494863,Box Truck,Taxi,Station Wagon/Sport Utility Vehicle,, +01/10/2022,17:05,BRONX,10468,40.869576,-73.89421,"(40.869576, -73.89421)",,,2789 MORRIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495280,Sedan,,,, +01/08/2022,8:00,STATEN ISLAND,10310,40.634518,-74.11782,"(40.634518, -74.11782)",CASTLETON AVENUE,STATE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495306,Sedan,Sedan,,, +01/15/2022,18:45,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494925,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,8:21,BRONX,10461,40.84636,-73.84463,"(40.84636, -73.84463)",EASTCHESTER ROAD,WATERS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494707,Tractor Truck Diesel,,,, +01/15/2022,19:45,BROOKLYN,11236,40.641445,-73.90734,"(40.641445, -73.90734)",,,1140 REMSEN AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4494730,Sedan,Bus,Sedan,, +01/14/2022,19:30,BRONX,10466,40.885654,-73.8511,"(40.885654, -73.8511)",,,1001 EAST 226 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495189,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,21:45,BROOKLYN,11212,40.669262,-73.91356,"(40.669262, -73.91356)",PITKIN AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494822,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,10:09,MANHATTAN,10035,40.80129,-73.9439,"(40.80129, -73.9439)",EAST 118 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4495263,Sedan,Sedan,,, +01/15/2022,9:45,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",80 STREET,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4494682,Sedan,Sedan,,, +01/15/2022,21:32,BROOKLYN,11222,40.7263,-73.94913,"(40.7263, -73.94913)",NORMAN AVENUE,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495090,Taxi,,,, +01/13/2022,15:51,,,40.583656,-73.98656,"(40.583656, -73.98656)",BAY 52 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4495200,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,5:15,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4494716,Pick-up Truck,Sedan,,, +01/15/2022,2:12,,,40.73384,-74.00121,"(40.73384, -74.00121)",WAVERLY PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494885,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,21:25,BRONX,10475,40.869595,-73.82701,"(40.869595, -73.82701)",,,2051 BARTOW AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4495320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,21:00,BRONX,10454,40.80614,-73.925804,"(40.80614, -73.925804)",,,85 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495382,Sedan,,,, +01/12/2022,15:48,,,40.8252,-73.867714,"(40.8252, -73.867714)",BRUCKNER BOULEVARD,ROSEDALE AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4495274,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/15/2022,11:11,BROOKLYN,11203,40.644253,-73.929596,"(40.644253, -73.929596)",,,1152 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494809,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,8:00,,,40.67043,-73.928185,"(40.67043, -73.928185)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494910,Sedan,,,, +01/14/2022,7:30,STATEN ISLAND,10310,40.632824,-74.10616,"(40.632824, -74.10616)",BARD AVENUE,DEKAY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4495311,Sedan,Sedan,Sedan,, +01/15/2022,1:18,,,40.688995,-73.78581,"(40.688995, -73.78581)",LINDEN BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/14/2022,20:35,BRONX,10455,40.81231,-73.91648,"(40.81231, -73.91648)",EAST 145 STREET,BROOK AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4495247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +01/15/2022,20:50,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",UNION AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494752,Sedan,,,, +01/14/2022,12:21,,,40.763966,-73.92267,"(40.763966, -73.92267)",31 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4495212,Sedan,Fire Truck,,, +01/15/2022,16:16,MANHATTAN,10027,40.814148,-73.94691,"(40.814148, -73.94691)",,,265 WEST 132 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495115,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/15/2022,7:58,BRONX,10466,40.89562,-73.84469,"(40.89562, -73.84469)",,,4200 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4494969,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/15/2022,22:30,,,40.665398,-73.82952,"(40.665398, -73.82952)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4495038,Sedan,Sedan,,, +01/07/2022,0:00,BRONX,10472,40.829586,-73.8794,"(40.829586, -73.8794)",,,1234 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495313,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,2:25,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",91 AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4494838,Sedan,,,, +01/08/2022,14:53,BRONX,10473,,,,st lawrence ave,lacombe ave,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495269,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,17:53,BROOKLYN,11235,,,,,,2628 BATCHELDER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4470939,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,10:20,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,0:00,QUEENS,11385,40.702335,-73.89073,"(40.702335, -73.89073)",CENTRAL AVENUE,65 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4494907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/15/2022,13:00,MANHATTAN,10027,40.806664,-73.94284,"(40.806664, -73.94284)",,,5 WEST 125 STREET,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4495220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,4:15,,,40.744194,-73.97133,"(40.744194, -73.97133)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4494648,Sedan,,,, +01/15/2022,14:11,,,40.69733,-73.78456,"(40.69733, -73.78456)",MERRICK BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495056,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,22:15,MANHATTAN,10021,,,,2 AVENUE,EAST 76 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470949,Sedan,Taxi,,, +01/15/2022,9:10,BROOKLYN,11225,40.656643,-73.95771,"(40.656643, -73.95771)",,,37 WINTHROP STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494733,Sedan,Sedan,,, +01/15/2022,23:26,QUEENS,11362,40.768795,-73.73708,"(40.768795, -73.73708)",NORTHERN BOULEVARD,251 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,Unspecified,,,4495076,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/15/2022,19:31,QUEENS,11418,40.69843,-73.83893,"(40.69843, -73.83893)",110 STREET,86 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494827,Sedan,Sedan,,, +01/15/2022,4:30,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4495055,Sedan,,,, +01/15/2022,6:00,QUEENS,11693,,,,,,87-15 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495345,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,22:00,,,40.67197,-73.94007,"(40.67197, -73.94007)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494939,Pick-up Truck,FIRE TRUCK,,, +12/18/2021,20:57,MANHATTAN,10019,,,,WEST 48 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4495358,Bike,,,, +01/15/2022,2:18,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494621,Sedan,Sedan,,, +01/13/2022,15:35,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495284,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,13:40,,,40.848637,-73.91169,"(40.848637, -73.91169)",EAST 176 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495203,Sedan,Sedan,,, +04/07/2022,20:50,MANHATTAN,10035,40.803024,-73.93632,"(40.803024, -73.93632)",3 AVENUE,EAST 124 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517234,Sedan,,,, +01/15/2022,17:05,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,3:00,MANHATTAN,10003,40.724003,-73.99102,"(40.724003, -73.99102)",,,7 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495152,Taxi,Taxi,,, +01/15/2022,22:45,QUEENS,11422,40.66352,-73.73135,"(40.66352, -73.73135)",249 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,16:05,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",EAST 184 STREET,MARION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495191,Sedan,Bus,,, +01/15/2022,12:50,BROOKLYN,11210,40.636448,-73.94513,"(40.636448, -73.94513)",NEW YORK AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494808,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,21:48,BRONX,10454,40.812263,-73.92059,"(40.812263, -73.92059)",WILLIS AVENUE,EAST 143 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4495233,Sedan,,,, +01/15/2022,1:03,,,40.74463,-73.90263,"(40.74463, -73.90263)",WOODSIDE AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4494668,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/15/2022,5:06,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",EAST 187 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4495155,Sedan,,,, +01/15/2022,14:15,BRONX,10459,40.82734,-73.89386,"(40.82734, -73.89386)",EAST 169 STREET,FOX STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4495224,Sedan,Sedan,,, +01/12/2022,7:04,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",WEST 34 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495260,Pick-up Truck,,,, +01/15/2022,7:00,,,40.701584,-73.88515,"(40.701584, -73.88515)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4494683,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/15/2022,6:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494737,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,0:40,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4494771,Sedan,Taxi,,, +01/15/2022,21:00,QUEENS,11429,40.714203,-73.7475,"(40.714203, -73.7475)",,,211-40 99 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495014,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,12:40,QUEENS,11385,40.7092,-73.91607,"(40.7092, -73.91607)",,,286 ONDERDONK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495283,Sedan,Sedan,,, +01/15/2022,11:15,BRONX,10462,40.846096,-73.859116,"(40.846096, -73.859116)",,,1756 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4494706,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,14:10,QUEENS,11360,40.785473,-73.792145,"(40.785473, -73.792145)",202 STREET,15 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494823,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,6:55,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4494646,Sedan,,,, +01/15/2022,19:00,BROOKLYN,11223,40.593742,-73.96085,"(40.593742, -73.96085)",CONEY ISLAND AVENUE,AVENUE W,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4494756,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,21:00,QUEENS,11691,40.59784,-73.74714,"(40.59784, -73.74714)",,,311 BEACH 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495125,Sedan,,,, +01/15/2022,9:20,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494747,Sedan,,,, +01/13/2022,15:44,MANHATTAN,10023,40.781193,-73.97975,"(40.781193, -73.97975)",AMSTERDAM AVENUE,WEST 76 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495341,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Ambulance,, +01/06/2022,2:50,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495235,Tractor Truck Diesel,Sedan,,, +01/15/2022,1:53,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,19:30,BRONX,10466,40.885654,-73.8511,"(40.885654, -73.8511)",,,1001 EAST 226 STREET,2,0,2,0,0,0,0,0,Alcohol Involvement,,,,,4495188,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,2:00,BRONX,10451,40.815113,-73.92978,"(40.815113, -73.92978)",EAST 140 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495243,Taxi,,,, +10/22/2021,15:19,,,40.852383,-73.92048,"(40.852383, -73.92048)",SEDGWICK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4470978,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/05/2022,9:55,MANHATTAN,10026,40.799706,-73.95212,"(40.799706, -73.95212)",,,109 WEST 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495219,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,18:00,BRONX,10462,40.847378,-73.86827,"(40.847378, -73.86827)",,,1906 AMETHYST STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494997,Sedan,,,, +01/15/2022,20:30,BRONX,10473,40.819878,-73.85777,"(40.819878, -73.85777)",WHITE PLAINS ROAD,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495302,Sedan,,,, +01/15/2022,15:20,MANHATTAN,10033,40.847126,-73.93353,"(40.847126, -73.93353)",,,260 AUDUBON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494849,Sedan,,,, +01/13/2022,23:16,,,40.68484,-73.80607,"(40.68484, -73.80607)",111 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4495321,Sedan,,,, +01/15/2022,23:28,QUEENS,11416,40.68817,-73.837975,"(40.68817, -73.837975)",,,97-29 106 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4494837,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/15/2022,3:20,BROOKLYN,11237,40.700672,-73.92164,"(40.700672, -73.92164)",KNICKERBOCKER AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494635,Sedan,,,, +12/17/2021,9:31,BRONX,10457,40.84288,-73.908646,"(40.84288, -73.908646)",MOUNT EDEN PARKWAY,EASTBURN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4495361,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/15/2022,1:50,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494731,Sedan,Sedan,,, +01/15/2022,11:40,,,40.663643,-73.89084,"(40.663643, -73.89084)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494918,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,1:32,BRONX,10473,40.82015,-73.872475,"(40.82015, -73.872475)",MORRISON AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495287,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,7:45,,,40.65763,-73.85625,"(40.65763, -73.85625)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470926,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,6:44,BROOKLYN,11207,,,,JAMAICA AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494926,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,12:00,BROOKLYN,11218,40.63683,-73.97286,"(40.63683, -73.97286)",,,483 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495103,Sedan,,,, +01/11/2022,8:55,BRONX,10458,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495294,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,4:15,MANHATTAN,10014,40.73359,-74.00735,"(40.73359, -74.00735)",GREENWICH STREET,WEST 10 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494883,Sedan,Taxi,Sedan,, +01/15/2022,0:35,,,40.64513,-73.948975,"(40.64513, -73.948975)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Other Vehicular,,,,4494810,Sedan,Taxi,,, +12/01/2021,18:08,MANHATTAN,10022,40.76025,-73.96753,"(40.76025, -73.96753)",3 AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495350,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/15/2022,18:40,BROOKLYN,11229,40.59403,-73.94065,"(40.59403, -73.94065)",,,3645 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,,,,,,4495381,,,,, +01/14/2022,11:15,,,40.58179,-74.11128,"(40.58179, -74.11128)",COLFAX AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495178,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,18:11,BRONX,10458,40.868107,-73.87942,"(40.868107, -73.87942)",,,2900 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495275,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,18:49,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,1,0,1,0,0,1,0,Unspecified,,,,,4494963,Taxi,,,, +01/15/2022,0:00,QUEENS,11433,40.69452,-73.80079,"(40.69452, -73.80079)",,,150-23 107 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495061,Sedan,,,, +01/10/2022,8:18,STATEN ISLAND,10304,40.625027,-74.078285,"(40.625027, -74.078285)",,,91 BROAD STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495310,Sedan,Bike,,, +01/15/2022,19:15,BRONX,10475,40.870396,-73.8259,"(40.870396, -73.8259)",COOP CITY BOULEVARD,ASCH LOOP,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495077,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,8:40,,,40.87525,-73.8756,"(40.87525, -73.8756)",EAST 207 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4495315,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/15/2022,1:30,,,40.75052,-73.940636,"(40.75052, -73.940636)",QUEENS PLAZA SOUTH,CRESCENT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494622,Sedan,Sedan,,, +01/14/2022,6:35,,,40.704712,-73.727425,"(40.704712, -73.727425)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Oversized Vehicle,,,,,4494518,Dump,,,, +01/15/2022,23:50,MANHATTAN,10016,40.74831,-73.974556,"(40.74831, -73.974556)",,,240 EAST 39 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495351,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,14:30,,,,,,ASTORIA BOULEVARD,35 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470951,Beverage Truck,Sedan,,, +01/15/2022,14:12,,,,,,MACOMBS DAM BRIDGE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494843,Taxi,,,, +01/15/2022,14:26,MANHATTAN,10035,40.807262,-73.9383,"(40.807262, -73.9383)",,,75 EAST 128 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495204,Sedan,,,, +01/15/2022,5:30,,,,,,QUEENSBORO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494722,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,0:25,BROOKLYN,11224,40.57557,-73.981224,"(40.57557, -73.981224)",STILLWELL AVENUE,SURF AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4495193,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,5:40,BRONX,10468,40.872223,-73.88958,"(40.872223, -73.88958)",,,11 EAST 199 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,18:13,QUEENS,11374,40.72824,-73.864265,"(40.72824, -73.864265)",,,63-51 WETHEROLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494982,Sedan,,,, +01/15/2022,22:38,BROOKLYN,11211,40.710785,-73.95995,"(40.710785, -73.95995)",SOUTH 4 STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495036,Sedan,Sedan,,, +01/08/2022,13:40,BRONX,10472,40.831707,-73.87565,"(40.831707, -73.87565)",,,1609 EAST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495271,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,4:00,,,40.8233983,-73.8803342,"(40.8233983, -73.8803342)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470295,Tractor Truck Diesel,Taxi,,, +01/15/2022,14:35,BRONX,10467,40.861607,-73.86364,"(40.861607, -73.86364)",,,2404 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495129,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,20:21,,,40.7317094,-73.8718753,"(40.7317094, -73.8718753)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4470491,Sedan,,,, +01/15/2022,1:07,,,,,,GRAND CENTRAL PARKWAY,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494746,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/15/2022,7:10,BROOKLYN,11212,40.658394,-73.91557,"(40.658394, -73.91557)",EAST 98 STREET,WILLMOHR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494807,Sedan,Sedan,,, +01/15/2022,1:45,BROOKLYN,11229,40.606876,-73.94795,"(40.606876, -73.94795)",BEDFORD AVENUE,AVENUE R,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/15/2022,15:44,BRONX,10460,40.838623,-73.877464,"(40.838623, -73.877464)",,,1111 EAST 177 STREET,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4495156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/15/2022,23:06,QUEENS,11373,40.746864,-73.87717,"(40.746864, -73.87717)",ELMHURST AVENUE,ELBERTSON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4494903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,18:05,QUEENS,11432,40.707798,-73.80253,"(40.707798, -73.80253)",,,159-21 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4494748,Sedan,,,, +01/15/2022,12:35,BROOKLYN,11212,40.66576,-73.908905,"(40.66576, -73.908905)",,,275 BLAKE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4494812,Sedan,,,, +01/14/2022,4:38,BRONX,10462,40.841618,-73.86076,"(40.841618, -73.86076)",,,1950 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4495277,Sedan,Sedan,Sedan,, +01/13/2022,8:20,,,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,4:04,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4495236,Sedan,,,, +01/15/2022,4:55,,,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4494659,Sedan,Sedan,,, +01/15/2022,2:30,QUEENS,11423,40.71141,-73.755875,"(40.71141, -73.755875)",100 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495054,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/15/2022,15:10,,,40.782463,-73.97883,"(40.782463, -73.97883)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494714,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/14/2022,18:58,MANHATTAN,10029,40.78832,-73.941025,"(40.78832, -73.941025)",EAST 104 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495174,Station Wagon/Sport Utility Vehicle,Bike,,, +01/15/2022,6:21,QUEENS,11369,40.76041,-73.87485,"(40.76041, -73.87485)",94 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4494645,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,19:50,,,40.7691,-73.817345,"(40.7691, -73.817345)",149 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4494824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,10:53,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4495223,Tractor Truck Diesel,Tractor Truck Diesel,,, +01/15/2022,10:55,QUEENS,11691,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,HASSOCK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495121,Sedan,,,, +01/15/2022,23:00,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,13:50,MANHATTAN,10009,40.726818,-73.983,"(40.726818, -73.983)",,,131 AVENUE A,0,0,0,0,0,0,0,0,Unspecified,,,,,4495380,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,2:55,,,40.75052,-73.940636,"(40.75052, -73.940636)",QUEENS PLAZA SOUTH,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495326,Sedan,,,, +01/15/2022,9:00,BROOKLYN,11208,40.675297,-73.87268,"(40.675297, -73.87268)",PITKIN AVENUE,DOSCHER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494919,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,20:05,QUEENS,11106,40.768257,-73.93203,"(40.768257, -73.93203)",14 STREET,31 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4494870,Sedan,E-Bike,,, +01/15/2022,18:40,BRONX,10463,40.87384,-73.90892,"(40.87384, -73.90892)",,,40 WEST 225 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495282,Sedan,Sedan,,, +01/13/2021,16:00,BRONX,10473,40.82201,-73.85827,"(40.82201, -73.85827)",WHITE PLAINS ROAD,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4495301,Sedan,Motorscooter,,, +01/15/2022,19:59,BRONX,10459,40.81963,-73.8935,"(40.81963, -73.8935)",,,934 BARRETTO STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4494938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/15/2022,22:05,,,40.783897,-73.97407,"(40.783897, -73.97407)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494732,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,8:38,BRONX,10461,40.84636,-73.84463,"(40.84636, -73.84463)",EASTCHESTER ROAD,WATERS PLACE,,1,0,1,0,0,0,0,0,Glare,,,,,4494705,Sedan,,,, +01/14/2022,0:07,MANHATTAN,10011,40.74284,-74.00028,"(40.74284, -74.00028)",WEST 19 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4495185,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,18:20,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4495241,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,12:00,BROOKLYN,11229,40.608807,-73.9532,"(40.608807, -73.9532)",QUENTIN ROAD,OCEAN AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4494759,Sedan,Bike,,, +01/15/2022,2:22,MANHATTAN,10040,40.859325,-73.93132,"(40.859325, -73.93132)",BROADWAY,BENNETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4495006,Sedan,Taxi,Sedan,, +01/14/2022,22:51,BROOKLYN,11221,40.68814,-73.92375,"(40.68814, -73.92375)",,,65A RALPH AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4495217,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/15/2022,20:30,,,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495100,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,10:48,STATEN ISLAND,10305,40.587437,-74.09076,"(40.587437, -74.09076)",,,330 CROMWELL AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4494698,Sedan,,,, +01/15/2022,0:00,BROOKLYN,11237,40.692974,-73.90811,"(40.692974, -73.90811)",KNICKERBOCKER AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494636,Sedan,Sedan,,, +01/15/2022,15:27,QUEENS,11418,40.695858,-73.828896,"(40.695858, -73.828896)",91 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4494834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,14:30,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",SPRINGFIELD BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495021,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,1:48,,,40.723648,-73.99103,"(40.723648, -73.99103)",EAST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494770,Sedan,Sedan,,, +01/05/2022,5:46,MANHATTAN,10023,40.78069,-73.986984,"(40.78069, -73.986984)",WEST 72 STREET,RIVERSIDE BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495340,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,3:45,QUEENS,11423,,,,194 STREET,100 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495368,Sedan,,,, +01/14/2022,22:53,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4495286,Sedan,Sedan,,, +01/15/2022,17:30,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4494852,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,15:05,BRONX,10473,40.81752,-73.86208,"(40.81752, -73.86208)",SOUND VIEW AVENUE,TAYLOR AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495295,Sedan,Bike,,, +12/27/2021,23:16,MANHATTAN,10038,40.710976,-74.0051,"(40.710976, -74.0051)",SPRUCE STREET,WILLIAM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495165,Sedan,,,, +01/15/2022,18:04,,,40.696995,-73.95475,"(40.696995, -73.95475)",WALWORTH STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494724,Sedan,,,, +01/15/2022,20:45,MANHATTAN,10035,40.801765,-73.93723,"(40.801765, -73.93723)",EAST 122 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495205,Sedan,,,, +01/15/2022,20:00,,,40.8448,-73.92264,"(40.8448, -73.92264)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495139,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,5:10,,,40.596954,-74.07868,"(40.596954, -74.07868)",LAMPORT BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494710,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/15/2022,0:10,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494750,Sedan,,,, +01/14/2022,11:55,,,40.53541,-74.19216,"(40.53541, -74.19216)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495251,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,20:45,,,,,,WILLIS AVENUE BRIDGE APPROACH,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495237,Sedan,Sedan,,, +01/15/2022,12:30,,,40.829823,-73.90773,"(40.829823, -73.90773)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4494674,FIRETRUCK,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,2:00,BRONX,10472,40.83278,-73.85992,"(40.83278, -73.85992)",,,1908 CROSS BRONX EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495289,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/15/2022,22:35,,,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4494947,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,20:49,MANHATTAN,10017,40.750492,-73.97172,"(40.750492, -73.97172)",2 AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4495348,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,9:26,,,40.678097,-74.00235,"(40.678097, -74.00235)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495356,Sedan,,,, +01/15/2022,0:23,QUEENS,11361,40.764263,-73.77134,"(40.764263, -73.77134)",40 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Outside Car Distraction,Other Vehicular,,,,4494630,Sedan,Pick-up Truck,,, +01/15/2022,16:00,QUEENS,11420,40.67725,-73.826096,"(40.67725, -73.826096)",,,112-20 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495042,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,15:10,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4495084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/15/2022,18:40,BROOKLYN,11234,40.599617,-73.911316,"(40.599617, -73.911316)",,,2875 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4494842,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,12:19,BRONX,10472,40.828403,-73.870415,"(40.828403, -73.870415)",,,1161 CROES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495272,Sedan,,,, +01/15/2022,18:30,QUEENS,11367,40.7433,-73.83769,"(40.7433, -73.83769)",VANWYCK EXPRESSWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494899,Garbage or Refuse,,,, +01/15/2022,16:35,QUEENS,11361,40.772026,-73.76965,"(40.772026, -73.76965)",215 PLACE,33 ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495067,Sedan,,,, +01/15/2022,20:00,QUEENS,11428,40.71756,-73.73871,"(40.71756, -73.73871)",,,216-06 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494743,Sedan,Sedan,,, +01/15/2022,5:40,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4494658,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,15:30,,,40.846565,-73.92589,"(40.846565, -73.92589)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495194,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,11:45,,,40.83349,-73.86138,"(40.83349, -73.86138)",GRANT CIRCLE,EAST 177 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495279,Sedan,Truck,,, +01/15/2022,16:15,MANHATTAN,10007,40.71543,-74.00755,"(40.71543, -74.00755)",CHURCH STREET,READE STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494813,E-Scooter,Sedan,,, +01/14/2022,6:30,QUEENS,11421,40.69756,-73.85275,"(40.69756, -73.85275)",WOODHAVEN BOULEVARD,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495227,Van,,,, +01/15/2022,9:50,,,40.597267,-73.998665,"(40.597267, -73.998665)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4494878,Sedan,,,, +01/15/2022,20:42,,,40.735794,-73.85807,"(40.735794, -73.85807)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494981,Sedan,Sedan,,, +01/16/2021,8:19,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4495317,Sedan,Sedan,Sedan,, +01/15/2022,11:35,QUEENS,11101,40.75443,-73.916084,"(40.75443, -73.916084)",34 AVENUE,46 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495031,Bike,,,, +01/15/2022,9:01,MANHATTAN,10032,40.837803,-73.94215,"(40.837803, -73.94215)",BROADWAY,WEST 163 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4494854,Taxi,Bus,,, +01/15/2022,17:05,BRONX,10472,40.828182,-73.87427,"(40.828182, -73.87427)",,,1145 MORRISON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495296,Sedan,E-Scooter,,, +01/14/2022,12:01,,,40.874756,-73.87387,"(40.874756, -73.87387)",PARKSIDE PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495309,Sedan,,,, +01/15/2022,2:25,,,40.696213,-73.97528,"(40.696213, -73.97528)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495328,Sedan,,,, +01/15/2022,17:40,BROOKLYN,11207,40.666134,-73.88492,"(40.666134, -73.88492)",LIVONIA AVENUE,JEROME STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4494920,Sedan,,,, +04/08/2022,14:44,QUEENS,11422,40.66652,-73.73645,"(40.66652, -73.73645)",NORTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4517414,Sedan,Sedan,,, +01/15/2022,15:35,BROOKLYN,11212,40.661568,-73.90479,"(40.661568, -73.90479)",RIVERDALE AVENUE,STONE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4494791,Sedan,,,, +04/07/2022,18:30,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",69 STREET,BROADWAY,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4517249,Sedan,Sedan,,, +04/06/2022,21:33,MANHATTAN,10010,40.74147,-73.985435,"(40.74147, -73.985435)",EAST 25 STREET,PARK AVENUE SOUTH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4516934,Station Wagon/Sport Utility Vehicle,Bike,,, +04/07/2022,20:15,BROOKLYN,11229,40.596058,-73.95776,"(40.596058, -73.95776)",,,2209 EAST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517394,Sedan,,,, +04/08/2022,8:33,BRONX,10469,40.86292,-73.85204,"(40.86292, -73.85204)",MACE AVENUE,PEARSALL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517266,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,2:55,BROOKLYN,11209,40.63657,-74.03661,"(40.63657, -74.03661)",SHORE ROAD,71 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4516871,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,4:00,BROOKLYN,11207,40.66842,-73.89095,"(40.66842, -73.89095)",,,745 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517221,Sedan,,,, +04/08/2022,19:40,MANHATTAN,10009,40.723217,-73.982414,"(40.723217, -73.982414)",,,220 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517692,Sedan,,,, +04/06/2022,14:16,,,40.609554,-73.96631,"(40.609554, -73.96631)",AVENUE P,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517511,Sedan,Sedan,,, +04/07/2022,16:25,,,40.59814,-73.983574,"(40.59814, -73.983574)",AVENUE T,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4517117,Sedan,Sedan,,, +04/07/2022,10:36,MANHATTAN,10018,40.75497,-73.98845,"(40.75497, -73.98845)",,,206 WEST 40 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4517540,Sedan,Bike,,, +04/07/2022,7:30,,,40.672054,-73.95563,"(40.672054, -73.95563)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517667,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,21:00,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",CONNER STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517927,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,22:30,,,40.610504,-73.95767,"(40.610504, -73.95767)",EAST 16 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517722,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,9:37,,,40.68218,-73.94659,"(40.68218, -73.94659)",HALSEY STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517419,Bike,Ambulance,,, +04/07/2022,20:30,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4517124,Tractor Truck Diesel,Sedan,,, +04/08/2022,18:20,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",BRISTOL STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517588,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,19:15,,,40.661495,-73.939896,"(40.661495, -73.939896)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4517431,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,22:45,,,40.782887,-73.9439,"(40.782887, -73.9439)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517374,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,16:30,QUEENS,11417,40.680923,-73.83544,"(40.680923, -73.83544)",107 AVENUE,105 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4517276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/02/2022,5:15,QUEENS,11103,40.766388,-73.90967,"(40.766388, -73.90967)",,,25-88 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517803,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,11:50,QUEENS,11435,40.71295,-73.81961,"(40.71295, -73.81961)",,,139-15 83 AVENUE,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4517135,Sedan,,,, +04/07/2022,1:19,QUEENS,11375,40.723724,-73.85455,"(40.723724, -73.85455)",AUSTIN STREET,67 ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4516894,Pick-up Truck,Sedan,,, +10/24/2021,0:44,BRONX,10456,40.8216921,-73.9067334,"(40.8216921, -73.9067334)",,,670 EAST 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470603,Sedan,Sedan,,, +07/08/2021,21:30,,,,,,QUEENS MIDTOWN TUNNEL,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4435358,Sedan,,,, +04/09/2022,19:40,,,,,,BORDEN AVENUE,VANDAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517652,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,12:10,QUEENS,11354,,,,39 AVENUE,MAIN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471166,E-Scooter,,,, +10/16/2021,0:35,QUEENS,11368,,,,104 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468018,Station Wagon/Sport Utility Vehicle,Bike,,, +10/21/2021,8:40,QUEENS,11358,,,,46 AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4471320,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,7:10,BROOKLYN,11221,40.69663,-73.91857,"(40.69663, -73.91857)",WILSON AVENUE,MENAHAN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471263,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,9:00,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471293,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,20:49,QUEENS,11362,40.75462,-73.724335,"(40.75462, -73.724335)",,,66-16 253 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471213,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,22:10,BROOKLYN,11203,,,,,,528 EAST 42 STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4471303,Sedan,,,, +10/21/2021,20:17,QUEENS,11102,,,,,,25-39 31 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4471326,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +12/12/2021,22:00,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485917,Sedan,,,, +10/24/2021,23:46,MANHATTAN,10025,,,,AMSTERDAM AVENUE,WEST 110 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4470697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/24/2021,13:41,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471200,Sedan,Sedan,,, +10/24/2021,17:21,BRONX,10468,,,,WEST KINGSBRIDGE ROAD,JEROME AVENUE,,1,0,1,0,0,0,0,0,,,,,,4471015,,,,, +10/23/2021,22:15,STATEN ISLAND,10301,,,,,,10 VANTUYL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471129,Sedan,Sedan,,, +10/24/2021,13:16,MANHATTAN,10016,,,,,,35 EAST 35 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471196,Station Wagon/Sport Utility Vehicle,Van,,, +10/21/2021,8:00,QUEENS,11377,,,,,,71-24 CALAMUS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471103,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,3:13,BRONX,10471,,,,FARADAY AVENUE,FIELDSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471021,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,16:47,BROOKLYN,11236,,,,AVENUE B,EAST 93 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471065,Box Truck,,,, +10/16/2021,20:57,BRONX,10467,,,,ROCHAMBEAU AVENUE,BAINBRIDGE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471064,Sedan,Bike,,, +10/16/2021,20:22,MANHATTAN,10032,,,,AMSTERDAM AVENUE,WEST 164 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4471093,Sedan,Bike,,, +07/09/2021,8:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4435554,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,17:11,BRONX,10467,,,,WEBSTER AVENUE,EAST GUN HILL ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4471079,Sedan,Bus,,, +10/24/2021,20:00,QUEENS,11369,,,,111 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471153,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,20:25,STATEN ISLAND,10304,,,,,,132 BEACH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471128,Sedan,,,, +10/24/2021,15:30,QUEENS,11428,,,,222 STREET,93 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470923,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,18:00,STATEN ISLAND,10301,,,,VICTORY BOULEVARD,MONROE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471123,Sedan,Sedan,,, +10/23/2021,19:15,MANHATTAN,10002,,,,,,100 ALLEN STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4471176,Sedan,Moped,,, +10/18/2021,0:01,,,40.75904,-73.807945,"(40.75904, -73.807945)",158 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471138,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,7:12,BRONX,10474,,,,,,515 TRUXTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4471189,Box Truck,Box Truck,,, +10/21/2021,20:20,QUEENS,11692,,,,,,331 BEACH 69 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471113,Sedan,Sedan,,, +10/20/2021,10:35,BRONX,10465,,,,BRUSH AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471165,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,20:46,QUEENS,11419,,,,115 STREET,101 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4471198,Sedan,Box Truck,,, +01/14/2022,18:25,,,,,,FEATHERBED LANE,MACOMBS ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495430,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,18:28,MANHATTAN,10032,,,,,,1045 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471101,Sedan,,,, +07/08/2021,10:10,,,40.747246,-73.83107,"(40.747246, -73.83107)",134 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435572,Sedan,,,, +10/23/2021,3:01,,,,,,164 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471137,Motorcycle,,,, +10/21/2021,16:47,QUEENS,11355,,,,SANFORD AVENUE,156 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4471292,Bike,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,15:15,MANHATTAN,10032,40.83447,-73.941956,"(40.83447, -73.941956)",,,521 WEST 159 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471083,Sedan,,,, +10/24/2021,11:00,QUEENS,11420,,,,,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4470305,Van,,,, +10/24/2021,6:35,,,,,,QUEENS PLAZA NORTH,27 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470931,,,,, +10/24/2021,22:40,QUEENS,11368,,,,,,111-30 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,22:47,BRONX,10469,,,,BOSTON ROAD,KINGSLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471210,Station Wagon/Sport Utility Vehicle,MOPED,,, +10/23/2021,16:00,BRONX,10468,,,,,,2352 AQUEDUCT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471095,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,7:00,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471147,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,1:38,MANHATTAN,10003,,,,BROADWAY,EAST 8 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4471075,Sedan,Bike,,, +10/22/2021,18:14,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471014,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,23:30,QUEENS,11368,40.738403,-73.854774,"(40.738403, -73.854774)",,,58-22 GRANGER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,14:30,QUEENS,11370,,,,32 AVENUE,72 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4471150,Sedan,Sedan,,, +10/22/2021,8:44,BRONX,10454,,,,,,710 EAST 138 STREET,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4471085,,,,, +10/21/2021,14:58,STATEN ISLAND,10304,,,,TARGEE STREET,PIERCE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471124,Sedan,Bike,,, +07/07/2021,8:30,,,,,,AVENUE A,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435676,subn,Sedan,,, +10/24/2021,9:30,BRONX,10468,,,,RESERVOIR AVENUE,WEST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471020,Sedan,,,, +10/24/2021,12:40,MANHATTAN,10002,,,,SOUTH STREET,CLINTON STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4471175,Bike,,,, +10/13/2021,12:38,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,BEVERLEY ROAD,,1,0,0,0,0,0,0,0,Unspecified,,,,,4471190,E-Scooter,,,, +10/23/2021,3:45,BROOKLYN,11209,,,,,,167 77 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4471308,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,19:27,BRONX,10453,,,,WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4471106,Taxi,Sedan,Bus,, +10/24/2021,13:10,QUEENS,11691,,,,,,1025 BEACH 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470955,Sedan,,,, +10/21/2021,11:00,MANHATTAN,10029,40.794487,-73.941696,"(40.794487, -73.941696)",,,221 EAST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471301,Sedan,,,, +10/22/2021,16:34,,,,,,ROOSEVELT AVENUE,,,2,0,2,0,0,0,0,0,Unspecified,,,,,4471043,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,17:10,,,,,,140 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471024,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,7:40,MANHATTAN,10032,40.83778,-73.94686,"(40.83778, -73.94686)",,,894 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4471082,Sedan,Sedan,,, +10/02/2021,0:00,,,40.866673,-73.90896,"(40.866673, -73.90896)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471105,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/24/2021,8:57,MANHATTAN,10128,,,,1 AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471271,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,6:50,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,11:06,,,,,,MEEKER AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544281,Bus,,,, +10/21/2021,13:38,BRONX,10461,,,,,,2947 MIDDLETOWN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4471169,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,4:00,QUEENS,11355,,,,COLLEGE POINT BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4471044,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,20:48,QUEENS,11385,,,,,,2120 HARMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471072,Pick-up Truck,,,, +10/18/2021,2:00,,,,,,NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471017,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,10:40,STATEN ISLAND,10310,40.62368,-74.10426,"(40.62368, -74.10426)",HERKIMER STREET,BARD AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4471135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,0:36,BROOKLYN,11201,40.69754,-73.98312,"(40.69754, -73.98312)",CONCORD STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467540,Taxi,Bike,,, +10/22/2021,6:40,,,40.771744,-73.875275,"(40.771744, -73.875275)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471155,Sedan,Sedan,,, +10/15/2021,7:28,,,,,,SOUTH AVENUE,GOETHALS ROAD NORTH,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4471192,Bus,Sedan,Box Truck,, +10/24/2021,0:30,,,,,,21 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4471332,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,13:40,STATEN ISLAND,10304,,,,BROAD STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471120,Sedan,,,, +10/21/2021,18:08,STATEN ISLAND,10304,,,,WATER STREET,WRIGHT STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471125,E-Scooter,,,, +10/19/2021,20:00,,,,,,,,148 CORTLANDT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471183,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,18:35,QUEENS,11378,,,,CLINTON AVENUE,queens midtown expressway,,1,0,0,0,1,0,0,0,Pavement Slippery,Driver Inexperience,,,,4471207,Bike,Sedan,,, +10/23/2021,21:00,,,40.842194,-73.94541,"(40.842194, -73.94541)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471097,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,19:10,,,,,,GREELEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,14:54,QUEENS,11372,,,,35 AVENUE,79 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471151,MOPED,,,, +10/24/2021,10:25,BROOKLYN,11211,,,,,,225 RUTLEDGE STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471309,Van,Sedan,,, +10/04/2021,17:20,,,40.81108,-73.9273,"(40.81108, -73.9273)",EAST 138 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471184,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,0:53,,,,,,EAST 84 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471003,Taxi,E-Bike,,, +10/24/2021,10:15,BROOKLYN,11220,,,,,,660 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470896,Sedan,,,, +10/14/2021,8:28,BROOKLYN,11223,,,,AVENUE T,WEST 4 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471247,Sedan,AMBULANCE,,, +10/22/2021,7:30,STATEN ISLAND,10301,,,,HOWARD AVENUE,GRAND AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4471121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,16:00,MANHATTAN,10033,,,,WEST 174 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471087,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,2:15,QUEENS,11357,40.77583,-73.8066,"(40.77583, -73.8066)",157 STREET,24 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4471295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,17:30,QUEENS,11693,,,,,,92-24 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,18:30,QUEENS,11436,,,,ROCKAWAY BOULEVARD,141 STREET,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4471025,Taxi,Sedan,,, +10/23/2021,0:30,QUEENS,11355,,,,COLLEGE POINT BOULEVARD,41 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4471045,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/15/2021,22:18,QUEENS,11434,,,,belt parkway,150 street,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471022,Sedan,,,, +01/13/2022,23:40,BRONX,10469,40.875694,-73.84673,"(40.875694, -73.84673)",,,3356 CORSA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4495569,Sedan,,,, +10/19/2021,16:19,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4471205,Sedan,Tractor Truck Gasoline,,, +10/24/2021,1:23,QUEENS,11379,,,,ELIOT AVENUE,67 STREET,,1,0,1,0,0,0,0,0,,,,,,4471104,,,,, +10/24/2021,11:30,STATEN ISLAND,10304,,,,TARGEE STREET,VANDERBILT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4471130,Sedan,Sedan,,, +10/22/2021,14:10,,,,,,EAST 10 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,13:15,,,,,,NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471066,Taxi,Sedan,,, +10/22/2021,17:00,,,,,,HERKIMER STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471016,Sedan,Bike,,, +10/23/2021,22:40,QUEENS,11433,,,,MERRICK BOULEVARD,ARCHER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471168,Sedan,,,, +10/18/2021,7:53,,,,,,EAST 34 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471195,Sedan,Tractor Truck Diesel,,, +10/02/2021,5:00,STATEN ISLAND,10310,,,,,,196 BARD AVENUE,0,0,0,0,0,0,0,0,Animals Action,,,,,4471118,Sedan,,,, +10/21/2021,5:00,BRONX,10457,,,,WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4471351,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,20:18,STATEN ISLAND,10310,,,,,,600 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471126,Sedan,Sedan,,, +10/24/2021,18:50,,,,,,EAST GUN HILL ROAD,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471010,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,1:25,,,40.77304,-73.83052,"(40.77304, -73.83052)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471294,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2018,7:00,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,3912667,Sedan,Motorcycle,,, +10/07/2021,2:04,,,,,,HARLEM RIVER DRIVE RAMP,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4465373,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,2:30,,,,,,FOREST AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471080,Sedan,Sedan,,, +07/09/2021,9:00,BRONX,10475,40.885387,-73.82641,"(40.885387, -73.82641)",,,3530 NOELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435923,Sedan,,,, +10/24/2021,17:45,BROOKLYN,11208,,,,,,619 ESSEX STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4471056,Sedan,,,, +10/06/2021,0:01,BRONX,10460,40.839127,-73.87797,"(40.839127, -73.87797)",,,342 DEVOE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,,,4471352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,18:20,STATEN ISLAND,10304,,,,,,180 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471122,Sedan,,,, +10/12/2021,15:12,,,40.586777,-74.16835,"(40.586777, -74.16835)",,,2485 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471182,Sedan,Sedan,,, +10/17/2021,12:40,MANHATTAN,10032,,,,WEST 162 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471185,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/01/2022,4:20,,,,,,GRAND CENTRAL PARKWAY,HOME LAWN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4491470,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,9:15,QUEENS,11105,,,,,,23-33 24 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470688,Sedan,Pick-up Truck,,, +10/23/2021,4:30,QUEENS,11385,,,,CYPRESS HILLS STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471314,Sedan,,,, +10/24/2021,21:05,MANHATTAN,10002,,,,CLINTON STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passenger Distraction,,,,4470512,Sedan,Sedan,,, +10/20/2021,2:15,,,,,,EAST 201 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4471091,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/10/2022,17:24,MANHATTAN,10029,40.79505,-73.93317,"(40.79505, -73.93317)",EAST 116 STREET,PLEASANT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4493657,Sedan,,,, +01/13/2022,9:00,,,40.719734,-73.78652,"(40.719734, -73.78652)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494225,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,4:20,QUEENS,11432,40.70936,-73.80805,"(40.70936, -73.80805)",150 STREET,85 DRIVE,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4492705,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/24/2021,20:00,,,40.592762,-73.99257,"(40.592762, -73.99257)",25 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470919,Sedan,,,, +10/23/2021,0:35,MANHATTAN,10033,,,,BROADWAY,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471100,Sedan,Multi-Wheeled Vehicle,,, +10/24/2021,14:45,MANHATTAN,10028,,,,2 AVENUE,EAST 82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470553,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,17:00,MANHATTAN,10023,,,,WEST 62 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4471214,Bus,Sedan,,, +10/24/2021,19:45,QUEENS,11369,,,,,,100-15 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471152,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,18:00,STATEN ISLAND,10301,,,,,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471127,Sedan,,,, +10/23/2021,12:20,QUEENS,11434,,,,ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471142,Sedan,Sedan,,, +10/20/2021,10:30,,,,,,BROADWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4471160,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,8:48,BROOKLYN,11228,,,,11 AVENUE,73 STREET,,1,1,0,1,0,0,1,0,Driver Inattention/Distraction,,,,,4471036,Garbage or Refuse,,,, +02/21/2022,0:00,BROOKLYN,11226,40.648083,-73.95099,"(40.648083, -73.95099)",,,2741 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4504524,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,11:20,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4504525,PK,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,15:00,,,,,,BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4544371,Motorcycle,,,, +12/12/2021,4:15,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,,,4485965,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/16/2022,17:49,QUEENS,11373,40.741734,-73.881874,"(40.741734, -73.881874)",83 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495058,Sedan,,,, +01/16/2022,0:40,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495244,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,22:50,,,40.724876,-73.975174,"(40.724876, -73.975174)",EAST 10 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495154,Sedan,Bus,,, +01/12/2022,20:37,MANHATTAN,10065,40.760223,-73.957634,"(40.760223, -73.957634)",EAST 62 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495571,Tractor Truck Diesel,,,, +01/16/2022,9:00,QUEENS,11435,40.70381,-73.81364,"(40.70381, -73.81364)",,,139-39 88 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495547,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,0:07,BROOKLYN,11211,40.71142,-73.95313,"(40.71142, -73.95313)",GRAND STREET,KEAP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494739,Tractor Truck Gasoline,Sedan,,, +01/16/2022,19:30,MANHATTAN,10011,40.73656,-74.0011,"(40.73656, -74.0011)",GREENWICH AVENUE,WEST 11 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4495109,Station Wagon/Sport Utility Vehicle,,,, +06/29/2021,0:05,BROOKLYN,11229,40.602894,-73.9404,"(40.602894, -73.9404)",BROWN STREET,AVENUE T,,1,0,0,0,0,0,0,0,Unspecified,,,,,4432045,Sedan,,,, +07/04/2021,14:40,BROOKLYN,11235,40.575584,-73.96298,"(40.575584, -73.96298)",,,3145 BRIGHTON 4 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4433825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,2:29,BRONX,10469,40.869495,-73.85566,"(40.869495, -73.85566)",LACONIA AVENUE,ADEE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434271,Taxi,Sedan,,, +07/04/2021,23:45,,,40.603474,-73.978836,"(40.603474, -73.978836)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434705,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,18:20,BRONX,10460,40.84377,-73.88956,"(40.84377, -73.88956)",ELSMERE PLACE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436018,Sedan,Sedan,,, +07/07/2021,21:35,,,40.788986,-73.97407,"(40.788986, -73.97407)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435026,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,16:50,BROOKLYN,11208,40.681675,-73.879135,"(40.681675, -73.879135)",FULTON STREET,NORWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435983,Armored Truck,,,, +07/09/2021,15:26,BROOKLYN,11237,40.698605,-73.90943,"(40.698605, -73.90943)",,,454 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435465,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,21:20,BRONX,10472,40.832695,-73.86367,"(40.832695, -73.86367)",WESTCHESTER AVENUE,LELAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435122,Pick-up Truck,,,, +07/07/2021,10:09,BROOKLYN,11226,40.64485,-73.96002,"(40.64485, -73.96002)",BEVERLEY ROAD,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435066,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,16:54,BROOKLYN,11230,40.62685,-73.97643,"(40.62685, -73.97643)",,,1080 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435660,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,8:00,BROOKLYN,11230,40.62701,-73.956635,"(40.62701, -73.956635)",,,1439 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435443,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,7:03,BROOKLYN,11215,40.669006,-73.99641,"(40.669006, -73.99641)",15 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435422,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,11:20,BROOKLYN,11207,40.655495,-73.88833,"(40.655495, -73.88833)",WORTMAN AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435982,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2021,9:15,MANHATTAN,10024,40.78377,-73.98391,"(40.78377, -73.98391)",WEST 77 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4435324,Sedan,TRAILER,,, +07/01/2021,10:13,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435720,Sedan,Sedan,,, +07/06/2021,18:20,BROOKLYN,11204,40.617092,-73.97752,"(40.617092, -73.97752)",,,2201 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,0:40,,,40.652794,-73.946884,"(40.652794, -73.946884)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435299,Sedan,Sedan,,, +07/07/2021,0:00,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4434750,Sedan,,,, +06/23/2021,19:40,,,40.702747,-73.86242,"(40.702747, -73.86242)",FOREST PARK DRIVE,ROBINSON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435783,Sedan,,,, +07/07/2021,19:30,BROOKLYN,11206,40.707283,-73.935905,"(40.707283, -73.935905)",JOHNSON AVENUE,WHITE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435053,Sedan,Motorcycle,,, +07/06/2021,8:45,,,40.732822,-73.8684,"(40.732822, -73.8684)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4435662,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +07/09/2021,13:33,BROOKLYN,11230,40.61815,-73.95885,"(40.61815, -73.95885)",,,1619 AVENUE M,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435448,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/04/2021,11:15,BROOKLYN,11203,40.652973,-73.94401,"(40.652973, -73.94401)",LINDEN BOULEVARD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435523,Pick-up Truck,,,, +07/07/2021,18:00,,,40.82077,-73.95459,"(40.82077, -73.95459)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435170,Sedan,Sedan,,, +07/09/2021,18:30,QUEENS,11368,40.748158,-73.85406,"(40.748158, -73.85406)",111 STREET,46 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435728,Sedan,,,, +07/09/2021,4:15,,,40.756317,-73.83369,"(40.756317, -73.83369)",41 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4435835,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,23:26,QUEENS,11414,40.669167,-73.85106,"(40.669167, -73.85106)",,,149-14 84 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435085,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,18:20,QUEENS,11366,40.730274,-73.79263,"(40.730274, -73.79263)",73 AVENUE,177 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435259,Sedan,Sedan,,, +07/08/2021,17:47,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435359,Convertible,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,17:51,,,40.772877,-73.993416,"(40.772877, -73.993416)",12 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435395,PASSENGER,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,7:00,MANHATTAN,10003,40.7358,-73.98357,"(40.7358, -73.98357)",,,227 EAST 19 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,23:00,BROOKLYN,11234,40.628002,-73.918175,"(40.628002, -73.918175)",RALPH AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435582,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,17:48,BROOKLYN,11204,40.613388,-73.995995,"(40.613388, -73.995995)",BAY RIDGE PARKWAY,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435092,Sedan,Sedan,,, +07/08/2021,16:15,MANHATTAN,10022,40.757008,-73.96388,"(40.757008, -73.96388)",EAST 55 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435320,Sedan,E-Bike,,, +07/07/2021,14:25,,,40.722786,-74.00966,"(40.722786, -74.00966)",GREENWICH STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4435481,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/09/2021,12:45,,,40.76856,-73.906975,"(40.76856, -73.906975)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4435710,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,22:50,BROOKLYN,11210,40.63555,-73.944046,"(40.63555, -73.944046)",,,845 EAST 34 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4435349,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2021,23:50,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4435227,Sedan,,,, +07/03/2021,2:00,,,40.843597,-73.90587,"(40.843597, -73.90587)",EAST 173 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435889,Sedan,Sedan,,, +07/07/2021,10:15,MANHATTAN,10012,40.724606,-74.00287,"(40.724606, -74.00287)",,,79 THOMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434884,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,23:25,BROOKLYN,11215,40.665596,-73.98266,"(40.665596, -73.98266)",,,369 7 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4435488,Sedan,,,, +07/09/2021,9:36,BROOKLYN,11215,40.666084,-73.9889,"(40.666084, -73.9889)",,,534 5 AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4435487,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,18:05,BRONX,10468,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,CRESTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4434996,Sedan,,,, +07/02/2021,15:57,BROOKLYN,11236,40.640724,-73.883446,"(40.640724, -73.883446)",EAST 108 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435747,Sedan,,,, +07/09/2021,8:57,QUEENS,11385,40.69098,-73.889084,"(40.69098, -73.889084)",,,81-14 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435776,Sedan,Box Truck,,, +07/07/2021,23:20,MANHATTAN,10037,40.808903,-73.93835,"(40.808903, -73.93835)",MADISON AVENUE,EAST 130 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435128,Sedan,Sedan,,, +07/06/2021,7:26,QUEENS,11103,,,,,,25-11 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435699,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,19:40,STATEN ISLAND,10304,40.626442,-74.08132,"(40.626442, -74.08132)",,,19 HYGEIA PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435653,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,15:30,MANHATTAN,10031,40.830242,-73.9497,"(40.830242, -73.9497)",WEST 150 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435431,Sedan,Sedan,,, +07/09/2021,19:50,BROOKLYN,11215,40.66147,-73.98613,"(40.66147, -73.98613)",PROSPECT AVENUE,7 AVENUE,,3,0,0,0,2,0,1,0,Other Vehicular,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,4435758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,Bike, +07/08/2021,3:15,,,40.743317,-73.731384,"(40.743317, -73.731384)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4435146,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,3:57,BROOKLYN,11235,40.58876,-73.94718,"(40.58876, -73.94718)",,,2211 AVENUE Z,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435174,Sedan,E-Scooter,,, +07/09/2021,16:30,BROOKLYN,11201,40.699993,-73.99099,"(40.699993, -73.99099)",,,140 CADMAN PLAZA WEST,1,0,0,0,0,0,1,0,Illnes,,,,,4435512,Taxi,,,, +07/07/2021,20:25,,,40.8165,-73.946556,"(40.8165, -73.946556)",8 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Traffic Control Disregarded,,,,4435191,Sedan,Moped,,, +07/07/2021,11:46,MANHATTAN,10065,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4434972,Box Truck,Sedan,,, +07/09/2021,7:20,,,40.650856,-73.9486,"(40.650856, -73.9486)",EAST 31 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435535,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,10:15,BROOKLYN,11235,40.588387,-73.94348,"(40.588387, -73.94348)",,,2626 EAST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434928,Sedan,,,, +07/07/2021,15:04,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4435374,Sedan,Pick-up Truck,,, +07/08/2021,8:50,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4435387,Sedan,Sedan,,, +01/16/2022,0:25,QUEENS,11375,40.732277,-73.84927,"(40.732277, -73.84927)",108 STREET,64 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495411,Sedan,,,, +07/09/2021,17:10,,,40.78866,-73.778625,"(40.78866, -73.778625)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,12:30,,,40.740707,-73.813095,"(40.740707, -73.813095)",155 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,13:45,BROOKLYN,11223,40.60594,-73.97929,"(40.60594, -73.97929)",WEST 6 STREET,QUENTIN ROAD,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4434961,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2021,7:03,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4434930,Bus,E-Scooter,,, +07/09/2021,22:55,,,40.63342,-74.15812,"(40.63342, -74.15812)",,,127 UNION AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436026,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,15:30,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",225 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,,4435333,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2021,15:22,BRONX,10461,40.85187,-73.853775,"(40.85187, -73.853775)",RHINELANDER AVENUE,TOMLINSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435492,Sedan,Bike,,, +07/07/2021,6:45,,,40.781273,-73.976006,"(40.781273, -73.976006)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434991,Bus,,,, +07/07/2021,11:35,QUEENS,11004,40.748875,-73.71463,"(40.748875, -73.71463)",,,74-32 260 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434900,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,22:58,QUEENS,11358,40.767887,-73.802025,"(40.767887, -73.802025)",163 STREET,33 AVENUE,,1,0,0,0,0,0,1,0,Using On Board Navigation Device,Unspecified,,,,4435806,PK,Sedan,,, +07/07/2021,11:57,BROOKLYN,11230,40.617588,-73.96382,"(40.617588, -73.96382)",CONEY ISLAND AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435189,Bus,,,, +07/09/2021,11:00,,,40.841698,-73.89151,"(40.841698, -73.89151)",EAST 175 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435474,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,10:30,,,40.77077,-73.91727,"(40.77077, -73.91727)",HOYT AVENUE NORTH,31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435703,Pick-up Truck,Sedan,,, +07/07/2021,17:00,QUEENS,11420,40.67236,-73.82032,"(40.67236, -73.82032)",LEFFERTS BOULEVARD,133 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4435079,Dump truck,Sedan,,, +07/09/2021,17:37,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435854,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,16:05,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435953,Tow Truck / Wrecker,Sedan,,, +07/07/2021,18:00,BROOKLYN,11206,40.69987,-73.94043,"(40.69987, -73.94043)",BROADWAY,FAYETTE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435107,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,8:54,QUEENS,11691,40.608974,-73.75494,"(40.608974, -73.75494)",,,14-28 PINSON STREET,0,0,0,0,0,0,0,0,Animals Action,,,,,4435440,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,20:45,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",WEST FORDHAM ROAD,JEROME AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435454,Sedan,,,, +07/08/2021,8:20,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435220,Sedan,Sedan,,, +07/07/2021,8:20,,,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435763,PICK UP,Sedan,,, +07/09/2021,12:30,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435631,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,9:44,,,40.768646,-73.96983,"(40.768646, -73.96983)",TRANSVERSE ROAD NUMBER ONE,5 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4435154,Bus,NA,,, +07/09/2021,10:14,QUEENS,11385,40.710754,-73.917435,"(40.710754, -73.917435)",,,1869 STARR STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,18:00,BROOKLYN,11207,40.666443,-73.90026,"(40.666443, -73.90026)",,,350 SNEDIKER AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4435996,Sedan,Sedan,,, +07/07/2021,12:45,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435203,Sedan,Garbage or Refuse,,, +07/07/2021,13:05,STATEN ISLAND,10305,40.586414,-74.092186,"(40.586414, -74.092186)",,,1740 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4434916,Sedan,,,, +07/09/2021,5:50,,,40.638786,-73.94538,"(40.638786, -73.94538)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435546,,,,, +07/07/2021,9:05,BROOKLYN,11201,40.69358,-73.98176,"(40.69358, -73.98176)",MYRTLE AVENUE,FLEET PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434979,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,13:31,BROOKLYN,11234,40.60553,-73.92917,"(40.60553, -73.92917)",AVENUE U,EAST 34 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435058,Sedan,Motorbike,,, +07/02/2021,5:20,,,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4435905,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +07/08/2021,19:29,,,40.87627,-73.888084,"(40.87627, -73.888084)",WEST 205 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435368,Sedan,,,, +07/09/2021,1:38,BROOKLYN,11226,40.643425,-73.94588,"(40.643425, -73.94588)",NEW YORK AVENUE,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4435532,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/07/2021,17:00,BROOKLYN,11232,40.663845,-73.994514,"(40.663845, -73.994514)",19 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435414,Sedan,Sedan,,, +07/08/2021,2:30,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435144,Sedan,,,, +07/07/2021,16:18,,,40.858986,-73.89382,"(40.858986, -73.89382)",WEBSTER AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,15:40,,,40.69733,-73.78456,"(40.69733, -73.78456)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435375,Sedan,Sedan,,, +07/07/2021,17:05,QUEENS,11357,40.77812,-73.81743,"(40.77812, -73.81743)",149 STREET,23 AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,Unspecified,,,4435580,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2021,14:15,,,40.752117,-73.96475,"(40.752117, -73.96475)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435000,Sedan,,,, +07/07/2021,0:00,MANHATTAN,10033,40.84787,-73.93641,"(40.84787, -73.93641)",WEST 178 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435405,Sedan,,,, +07/07/2021,8:30,MANHATTAN,10002,40.718304,-73.987404,"(40.718304, -73.987404)",DELANCEY STREET,NORFOLK STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435040,Box Truck,Sedan,,, +07/08/2021,9:35,,,40.81751,-73.96069,"(40.81751, -73.96069)",12 AVENUE,SAINT CLAIR PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4435339,Taxi,Sedan,,, +07/07/2021,2:23,BRONX,10473,40.815823,-73.84729,"(40.815823, -73.84729)",,,446 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4434947,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,17:00,QUEENS,11432,40.711857,-73.78744,"(40.711857, -73.78744)",,,175-25 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4435258,Sedan,Sedan,Sedan,, +07/06/2021,14:20,STATEN ISLAND,10310,40.6354,-74.106674,"(40.6354, -74.106674)",,,355 BARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435656,Sedan,,,, +07/08/2021,16:43,MANHATTAN,10003,40.730553,-73.98481,"(40.730553, -73.98481)",,,345 EAST 12 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4435680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,4:25,QUEENS,11415,40.708504,-73.83071,"(40.708504, -73.83071)",,,81-40 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4435164,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/08/2021,11:11,BROOKLYN,11235,40.587418,-73.95936,"(40.587418, -73.95936)",EAST 11 STREET,AVENUE Z,,1,0,1,0,0,0,0,0,Brakes Defective,,,,,4435179,Sedan,,,, +01/16/2022,9:38,BROOKLYN,11212,40.658318,-73.90516,"(40.658318, -73.90516)",,,230 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495183,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,13:45,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4435575,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,19:53,,,40.822308,-73.93859,"(40.822308, -73.93859)",WEST 146 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4435410,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,15:55,,,,,,MERCER STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435478,Sedan,E-Scooter,,, +07/08/2021,22:38,BROOKLYN,11230,40.61659,-73.96363,"(40.61659, -73.96363)",CONEY ISLAND AVENUE,ELM AVENUE,,0,0,0,0,0,0,0,0,Glare,,,,,4435967,Sedan,,,, +07/07/2021,22:00,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435238,Sedan,,,, +07/09/2021,22:05,BRONX,10453,40.851807,-73.90683,"(40.851807, -73.90683)",MORRIS AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436019,Sedan,Moped,,, +07/07/2021,14:00,BRONX,10459,40.826103,-73.89536,"(40.826103, -73.89536)",,,900 EAST 167 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4435328,Sedan,Sedan,Sedan,, +07/09/2021,17:00,QUEENS,11373,40.737976,-73.8837,"(40.737976, -73.8837)",,,80-03 QUEENS BOULEVARD,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4435666,Sedan,,,, +07/08/2021,1:38,BROOKLYN,11209,40.62204,-74.02574,"(40.62204, -74.02574)",,,8501 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,,,,,4435075,Sedan,,,, +07/08/2021,13:50,,,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4435308,Sedan,,,, +07/07/2021,18:55,BRONX,10462,40.852398,-73.86662,"(40.852398, -73.86662)",,,725 BRADY AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4435095,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,16:00,,,40.771477,-73.91824,"(40.771477, -73.91824)",HOYT AVENUE NORTH,29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435713,Sedan,,,, +07/08/2021,17:58,,,40.64485,-73.96002,"(40.64485, -73.96002)",OCEAN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435444,Station Wagon/Sport Utility Vehicle,,,, +05/11/2021,15:50,BROOKLYN,11201,40.697887,-73.99461,"(40.697887, -73.99461)",HICKS STREET,CLARK STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435816,Sedan,Dump,,, +07/07/2021,17:40,BROOKLYN,11236,40.63328,-73.8905,"(40.63328, -73.8905)",SEAVIEW AVENUE,SAINT JUDE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435049,Sedan,,,, +07/09/2021,23:50,BROOKLYN,11210,40.6321,-73.946884,"(40.6321, -73.946884)",,,1591 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4435449,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,12:00,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435661,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,11:05,MANHATTAN,10021,40.76649,-73.95696,"(40.76649, -73.95696)",EAST 70 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435896,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,17:15,STATEN ISLAND,10312,40.54534,-74.160576,"(40.54534, -74.160576)",,,4343 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435134,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,10:00,,,40.682915,-73.94674,"(40.682915, -73.94674)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,23:25,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,65 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435363,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,18:48,BROOKLYN,11219,40.627956,-74.00165,"(40.627956, -74.00165)",,,1235 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435015,Sedan,Dump,,, +07/09/2021,16:05,BROOKLYN,11208,40.685806,-73.86782,"(40.685806, -73.86782)",,,208 GRANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435992,Station Wagon/Sport Utility Vehicle,Bus,,, +07/08/2021,2:09,MANHATTAN,10034,40.865593,-73.91811,"(40.865593, -73.91811)",10 AVENUE,ISHAM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435271,Sedan,,,, +07/07/2021,16:26,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,BROWN PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435379,Sedan,,,, +07/09/2021,0:00,QUEENS,11104,40.74925,-73.916534,"(40.74925, -73.916534)",39 AVENUE,47 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435603,E-Bike,Sedan,,, +07/07/2021,22:30,,,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,5:30,,,40.766617,-73.8389,"(40.766617, -73.8389)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435501,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,18:20,BROOKLYN,11249,40.70483,-73.96633,"(40.70483, -73.96633)",WYTHE AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435054,Sedan,,,, +07/07/2021,12:00,MANHATTAN,10010,40.740356,-73.99046,"(40.740356, -73.99046)",,,162 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435115,Sedan,unk,,, +07/05/2021,5:00,BROOKLYN,11226,40.643303,-73.9478,"(40.643303, -73.9478)",CLARENDON ROAD,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4435526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2021,23:15,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,4435086,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan,, +07/08/2021,14:25,QUEENS,11374,40.730286,-73.85852,"(40.730286, -73.85852)",64 AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435316,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,19:56,QUEENS,11358,40.770897,-73.80349,"(40.770897, -73.80349)",,,29-11 161 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435559,Sedan,,,, +07/07/2021,4:28,,,40.835087,-73.82538,"(40.835087, -73.82538)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4434783,Taxi,Box Truck,,, +07/08/2021,6:45,,,40.87931,-73.90314,"(40.87931, -73.90314)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435343,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,21:00,QUEENS,11693,40.58566,-73.81729,"(40.58566, -73.81729)",ROCKAWAY BEACH BOULEVARD,BEACH 95 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435706,Bus,,,, +07/07/2021,11:30,BROOKLYN,11233,40.67881,-73.920685,"(40.67881, -73.920685)",,,1950 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435733,Sedan,Sedan,,, +07/07/2021,15:00,MANHATTAN,10036,40.763115,-73.99966,"(40.763115, -73.99966)",12 AVENUE,WEST 44 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435401,Sedan,Sedan,,, +07/07/2021,16:10,QUEENS,11101,40.752216,-73.948814,"(40.752216, -73.948814)",10 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435036,Sedan,,,, +07/07/2021,17:15,BROOKLYN,11207,40.681396,-73.887886,"(40.681396, -73.887886)",,,109 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4435232,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2021,18:15,MANHATTAN,10022,40.761665,-73.97492,"(40.761665, -73.97492)",5 AVENUE,WEST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435394,Sedan,Dump,,, +07/08/2021,16:00,,,40.841877,-73.91796,"(40.841877, -73.91796)",INWOOD AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4435378,Sedan,,,, +07/08/2021,14:02,MANHATTAN,10022,40.756203,-73.97165,"(40.756203, -73.97165)",,,155 EAST 50 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,18:48,BROOKLYN,11225,40.65965,-73.950516,"(40.65965, -73.950516)",,,1145 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435600,Sedan,Van,,, +07/07/2021,6:52,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",PACIFIC STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434849,Sedan,,,, +07/07/2021,20:02,,,40.5763,-73.96854,"(40.5763, -73.96854)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435322,Sedan,Sedan,,, +07/07/2021,9:20,BROOKLYN,11213,40.665916,-73.92547,"(40.665916, -73.92547)",ROCKAWAY PARKWAY,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435011,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,11:57,BRONX,10457,40.84519,-73.89066,"(40.84519, -73.89066)",,,713 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4435482,Sedan,Sedan,,, +07/07/2021,5:00,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435087,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,15:59,QUEENS,11102,40.767437,-73.92063,"(40.767437, -73.92063)",,,31-19 NEWTOWN AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4435711,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,21:50,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435571,Sedan,Sedan,,, +07/08/2021,7:49,BROOKLYN,11203,40.64664,-73.9246,"(40.64664, -73.9246)",BEVERLEY ROAD,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4435350,Sedan,Sedan,,, +07/08/2021,17:55,BROOKLYN,11221,40.687077,-73.92355,"(40.687077, -73.92355)",PUTNAM AVENUE,RALPH AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4435738,Sedan,Bike,,, +06/25/2021,17:00,QUEENS,11385,40.70327,-73.86143,"(40.70327, -73.86143)",81 AVENUE,MYRTLE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435770,E-Scooter,,,, +07/08/2021,1:44,,,,,,HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435050,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,0:15,BROOKLYN,11207,40.67677,-73.88949,"(40.67677, -73.88949)",ATLANTIC AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435226,Sedan,,,, +07/09/2021,13:35,,,40.66636,-73.97872,"(40.66636, -73.97872)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435484,Station Wagon/Sport Utility Vehicle,Bus,,, +07/08/2021,11:00,QUEENS,11361,40.76268,-73.77052,"(40.76268, -73.77052)",BELL BOULEVARD,42 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435270,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,16:45,,,40.69644,-73.92228,"(40.69644, -73.92228)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4435466,Sedan,Sedan,,, +07/09/2021,11:33,,,,,,3 aveune,east 24 street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435750,Bus,,,, +07/07/2021,18:15,BROOKLYN,11226,40.648,-73.95813,"(40.648, -73.95813)",,,933 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435068,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,14:28,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435423,Flat Bed,Sedan,,, +07/08/2021,17:44,QUEENS,11419,40.685936,-73.82403,"(40.685936, -73.82403)",,,104-37 LEFFERTS BOULEVARD,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4435388,Sedan,Sedan,,, +07/08/2021,9:08,,,40.586716,-73.911194,"(40.586716, -73.911194)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435337,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,15:08,QUEENS,11691,40.59514,-73.754,"(40.59514, -73.754)",BEACH 20 STREET,SEAGIRT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435445,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,11:10,,,40.740982,-73.946304,"(40.740982, -73.946304)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,15:10,,,40.60386,-74.00979,"(40.60386, -74.00979)",17 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434963,Sedan,,,, +07/09/2021,9:00,BROOKLYN,11235,40.584873,-73.940926,"(40.584873, -73.940926)",,,2794 EAST 28 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435890,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,20:30,QUEENS,11416,40.68874,-73.83704,"(40.68874, -73.83704)",,,107-11 97 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4435159,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,10:15,QUEENS,11385,40.69862,-73.894585,"(40.69862, -73.894585)",,,60-55 75 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435792,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,16:00,STATEN ISLAND,10305,40.59142,-74.08471,"(40.59142, -74.08471)",HURLBERT STREET,BENTON AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4435495,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,4:12,,,40.694794,-73.98246,"(40.694794, -73.98246)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435383,Sedan,Sedan,,, +07/07/2021,2:30,,,40.813564,-73.951324,"(40.813564, -73.951324)",SAINT NICHOLAS TERRACE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,Unspecified,,4435030,Dump,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/09/2021,5:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4435551,Station Wagon/Sport Utility Vehicle,PK,,, +07/07/2021,23:15,QUEENS,11365,40.73432,-73.79665,"(40.73432, -73.79665)",,,67-21 173 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435213,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,19:08,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",80 STREET,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4435522,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,16:44,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",SCHENCK AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435984,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,11:00,,,40.76767,-73.817375,"(40.76767, -73.817375)",149 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435560,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,3:21,BROOKLYN,11223,40.60604,-73.978294,"(40.60604, -73.978294)",WEST 5 STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4434917,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/07/2021,14:11,,,40.6303,-74.13486,"(40.6303, -74.13486)",,,84 DECKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435120,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,1:13,,,40.84366,-73.92005,"(40.84366, -73.92005)",WEST 172 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435165,Sedan,Sedan,,, +07/07/2021,7:59,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",4 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434952,Sedan,Bus,,, +07/07/2021,18:40,BROOKLYN,11236,40.645283,-73.9025,"(40.645283, -73.9025)",,,1430 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435057,Sedan,,,, +07/08/2021,8:16,QUEENS,11368,40.73928,-73.85053,"(40.73928, -73.85053)",VANDOREN STREET,SAULTELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435648,Sedan,Sedan,,, +07/07/2021,18:07,STATEN ISLAND,10310,,,,CLOVE ROAD,MARTLING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435292,Sedan,,,, +06/14/2021,19:40,QUEENS,11385,40.69951,-73.90118,"(40.69951, -73.90118)",,,1816 GEORGE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435799,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,9:20,BROOKLYN,11212,40.666813,-73.92172,"(40.666813, -73.92172)",,,2024 UNION STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,15:26,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435327,Sedan,Pick-up Truck,,, +07/08/2021,11:00,BRONX,10473,40.823257,-73.84902,"(40.823257, -73.84902)",CASTLE HILL AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435221,Sedan,Motorcycle,,, +07/08/2021,23:00,BRONX,10467,40.875637,-73.87845,"(40.875637, -73.87845)",,,230 EAST 207 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435458,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,19:20,BROOKLYN,11201,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,TILLARY STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4435021,Sedan,Bike,,, +07/03/2021,15:14,BRONX,10472,40.84827,-73.88312,"(40.84827, -73.88312)",EAST 182 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4435969,E-Bike,Sedan,,, +07/07/2021,6:30,,,40.77132,-73.84655,"(40.77132, -73.84655)",122 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4435567,Sedan,Sedan,,, +07/07/2021,16:05,,,,,,WEST 17 ROAD,CROSS BAY BOULEVARD,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4435062,Sedan,PK,,, +07/09/2021,5:00,,,40.6606,-74.001274,"(40.6606, -74.001274)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,,,,,4435418,Sedan,,,, +07/09/2021,22:30,MANHATTAN,10033,40.84619,-73.93846,"(40.84619, -73.93846)",BROADWAY,WEST 175 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4435837,Sedan,Sedan,,, +07/09/2021,19:48,BRONX,10461,40.84152,-73.84293,"(40.84152, -73.84293)",,,2786 EAST TREMONT AVENUE,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4435726,E-Bike,,,, +07/09/2021,23:36,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Accelerator Defective,Passing Too Closely,,,,4435633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,18:01,QUEENS,11365,40.74201,-73.77513,"(40.74201, -73.77513)",,,61-00 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435681,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,16:00,QUEENS,11385,40.709038,-73.89846,"(40.709038, -73.89846)",FRESH POND ROAD,GATES AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,14:25,BROOKLYN,11230,40.63269,-73.96691,"(40.63269, -73.96691)",,,1024 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435618,Sedan,Dump,,, +07/07/2021,13:49,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4435413,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,22:00,QUEENS,11433,40.693733,-73.78811,"(40.693733, -73.78811)",164 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435370,Sedan,Sedan,,, +07/07/2021,20:05,BROOKLYN,11234,40.61448,-73.92641,"(40.61448, -73.92641)",FILLMORE AVENUE,UTICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435274,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,14:19,,,,,,PELHAM PARKWAY,INTERSTATE ROUTE 95 EAST,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435721,Sedan,Sedan,,, +07/09/2021,14:35,,,40.671925,-73.939186,"(40.671925, -73.939186)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435824,Sedan,Sedan,,, +07/07/2021,11:22,MANHATTAN,10032,40.834385,-73.939766,"(40.834385, -73.939766)",,,425 WEST 160 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435406,Taxi,,,, +07/09/2021,12:50,,,40.63345,-74.13524,"(40.63345, -74.13524)",,,1042 POST AVENUE,0,0,0,0,0,0,0,0,Animals Action,,,,,4436025,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,16:30,BRONX,10469,40.8696,-73.844604,"(40.8696, -73.844604)",,,1420 EAST GUN HILL ROAD,6,0,0,0,0,0,6,0,Other Vehicular,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,4435153,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/09/2021,18:19,,,40.88893,-73.86579,"(40.88893, -73.86579)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435934,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,15:30,BROOKLYN,11222,40.735764,-73.95639,"(40.735764, -73.95639)",,,97 DUPONT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435511,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,3:10,QUEENS,11419,40.69132,-73.83142,"(40.69132, -73.83142)",114 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4434878,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/08/2021,12:05,MANHATTAN,10035,40.797417,-73.9328,"(40.797417, -73.9328)",,,454 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435198,Van,,,, +07/09/2021,19:18,BRONX,10469,40.863514,-73.84916,"(40.863514, -73.84916)",,,2533 WILSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4435491,Dump,,,, +07/07/2021,16:05,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4434993,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,13:58,,,40.860287,-73.90494,"(40.860287, -73.90494)",GRAND AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4435453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2021,16:40,BROOKLYN,11229,40.607693,-73.960915,"(40.607693, -73.960915)",EAST 12 STREET,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,21:50,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435867,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,9:20,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435127,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/09/2021,14:45,QUEENS,11420,40.675797,-73.81706,"(40.675797, -73.81706)",HAWTREE CREEK ROAD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4435912,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,12:50,BROOKLYN,11212,40.66112,-73.920135,"(40.66112, -73.920135)",ROCKAWAY PARKWAY,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435545,Sedan,,,, +07/03/2021,17:20,,,40.76772,-73.902336,"(40.76772, -73.902336)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435698,Sedan,,,, +07/07/2021,11:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4435078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,1:40,,,40.64423,-74.014915,"(40.64423, -74.014915)",54 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435417,Sedan,Sedan,,, +07/05/2021,10:50,STATEN ISLAND,10304,40.616142,-74.079025,"(40.616142, -74.079025)",,,220 OSGOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435652,Sedan,,,, +07/08/2021,15:00,QUEENS,11413,40.65799,-73.76467,"(40.65799, -73.76467)",149 ROAD,183 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435332,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +07/03/2021,18:00,QUEENS,11368,40.74895,-73.854485,"(40.74895, -73.854485)",44 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,12:10,BROOKLYN,11207,40.68979,-73.90655,"(40.68979, -73.90655)",DECATUR STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435104,Sedan,Sedan,,, +07/08/2021,9:55,QUEENS,11419,40.695854,-73.818924,"(40.695854, -73.818924)",ATLANTIC AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4435279,Pick-up Truck,Motorcycle,,, +06/30/2021,13:35,BROOKLYN,11232,40.655132,-74.010635,"(40.655132, -74.010635)",,,3913 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435428,Sedan,Box Truck,,, +07/07/2021,22:38,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435039,Bike,,,, +07/08/2021,8:30,QUEENS,11418,40.697918,-73.83467,"(40.697918, -73.83467)",,,87-25 114 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4435215,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/04/2021,1:45,BROOKLYN,11203,40.65612,-73.92694,"(40.65612, -73.92694)",,,121 EAST 54 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435755,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,8:00,STATEN ISLAND,10304,40.622677,-74.082924,"(40.622677, -74.082924)",WARREN STREET,GORDON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435657,Sedan,,,, +06/28/2021,0:00,BRONX,10460,40.844593,-73.88167,"(40.844593, -73.88167)",EAST 180 STREET,DALY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436015,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,1:10,,,40.596745,-73.985275,"(40.596745, -73.985275)",86 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4435732,Bike,,,, +07/09/2021,19:35,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,ASHFORD STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4435995,Sedan,Sedan,,, +07/08/2021,5:00,MANHATTAN,10012,40.722298,-73.99713,"(40.722298, -73.99713)",SPRING STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435861,Sedan,,,, +07/07/2021,21:00,QUEENS,11385,40.704178,-73.88953,"(40.704178, -73.88953)",70 AVENUE,66 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4435771,Sedan,Sedan,,, +07/08/2021,7:20,BRONX,10467,40.87521,-73.86704,"(40.87521, -73.86704)",WHITE PLAINS ROAD,MAGENTA STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,,,,4435240,Box Truck,Box Truck,,, +07/07/2021,22:30,MANHATTAN,10001,40.74961,-73.98532,"(40.74961, -73.98532)",,,34 WEST 35 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4435061,Taxi,,,, +07/05/2021,16:30,MANHATTAN,10003,40.728596,-73.98768,"(40.728596, -73.98768)",SAINT MARKS PLACE,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435960,Bike,,,, +07/09/2021,21:26,BROOKLYN,11220,40.63201,-74.01318,"(40.63201, -74.01318)",66 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435498,Sedan,,,, +07/09/2021,18:30,BRONX,10457,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436021,Sedan,,,, +07/09/2021,18:01,QUEENS,11105,40.77797,-73.91799,"(40.77797, -73.91799)",23 STREET,23 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4435714,Sedan,Sedan,,, +07/09/2021,21:07,BRONX,10457,40.839935,-73.900925,"(40.839935, -73.900925)",BATHGATE AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435620,Ambulance,,,, +07/07/2021,17:00,BROOKLYN,11215,40.671593,-73.9843,"(40.671593, -73.9843)",5 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435173,Sedan,Sedan,,, +07/07/2021,8:20,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4434894,Sedan,,,, +07/07/2021,15:46,BROOKLYN,11207,40.67566,-73.897964,"(40.67566, -73.897964)",,,2612 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435111,Station Wagon/Sport Utility Vehicle,Bus,,, +07/09/2021,18:15,QUEENS,11355,40.76091,-73.83515,"(40.76091, -73.83515)",,,36-30 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435805,Box Truck,Sedan,,, +07/07/2021,11:30,,,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4434971,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,17:45,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,23:00,,,,,,29 STREET,Northern Boulevard,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4435702,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/02/2021,15:29,BRONX,10456,40.834126,-73.916664,"(40.834126, -73.916664)",SHERIDAN AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435904,Bus,Sedan,,, +07/07/2021,22:30,MANHATTAN,10011,40.742653,-73.998055,"(40.742653, -73.998055)",,,180 WEST 20 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435116,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,20:50,QUEENS,11377,40.746178,-73.90813,"(40.746178, -73.90813)",56 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,1:52,BRONX,10467,40.875614,-73.87032,"(40.875614, -73.87032)",BRONX BOULEVARD,DUNCOMB AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4435110,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/06/2021,18:43,,,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4435439,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/07/2021,14:25,BRONX,10460,40.840054,-73.88714,"(40.840054, -73.88714)",,,1821 TRAFALGAR PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4435305,Sedan,Sedan,,, +07/07/2021,13:15,MANHATTAN,10001,40.753418,-73.9943,"(40.753418, -73.9943)",,,345 WEST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,15:40,,,40.693436,-73.97784,"(40.693436, -73.97784)",MYRTLE AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435317,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/07/2021,7:04,BROOKLYN,11222,40.732323,-73.95461,"(40.732323, -73.95461)",MANHATTAN AVENUE,INDIA STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4434805,Sedan,Bus,,, +07/07/2021,13:30,BROOKLYN,11211,40.712147,-73.96155,"(40.712147, -73.96155)",,,160 SOUTH 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435346,Sedan,,,, +07/09/2021,16:22,BROOKLYN,11208,40.669487,-73.862686,"(40.669487, -73.862686)",,,2749 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4435991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/24/2021,23:00,,,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4435457,Sedan,Sedan,Sedan,, +07/07/2021,10:00,BROOKLYN,11207,40.678265,-73.89724,"(40.678265, -73.89724)",,,80 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4435231,Sedan,,,, +07/08/2021,20:15,QUEENS,11102,40.77224,-73.92744,"(40.77224, -73.92744)",18 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435707,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/09/2021,3:40,BRONX,10451,40.826153,-73.920265,"(40.826153, -73.920265)",SHERMAN AVENUE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4435399,Sedan,,,, +07/09/2021,1:57,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435762,Sedan,Sedan,,, +06/10/2021,10:45,,,40.699978,-73.98779,"(40.699978, -73.98779)",PEARL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435503,Sedan,,,, +06/15/2021,22:30,,,40.725365,-73.89454,"(40.725365, -73.89454)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435787,Carry All,Motorcycle,,, +07/04/2021,17:55,BROOKLYN,11221,40.688793,-73.934814,"(40.688793, -73.934814)",,,607 QUINCY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435740,Sedan,DIRT BIKE,,, +07/08/2021,2:45,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,,,4435853,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/08/2021,16:26,BROOKLYN,11234,40.636314,-73.926285,"(40.636314, -73.926285)",,,5207 KINGS HIGHWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,16:04,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",WILLIS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435947,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,6:30,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,23:09,QUEENS,11370,40.766785,-73.895,"(40.766785, -73.895)",74 STREET,ASTORIA BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435712,Sedan,Bike,,, +07/06/2021,11:53,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435561,Sedan,Sedan,,, +07/07/2021,23:01,QUEENS,11419,40.689476,-73.82769,"(40.689476, -73.82769)",101 AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435166,Sedan,Sedan,,, +07/07/2021,11:50,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4434951,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,3:32,,,40.752434,-73.89748,"(40.752434, -73.89748)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4434955,Taxi,,,, +07/08/2021,0:08,STATEN ISLAND,10305,40.603626,-74.06931,"(40.603626, -74.06931)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4435135,trailer,Motorcycle,,, +07/08/2021,18:16,QUEENS,11374,40.726173,-73.86489,"(40.726173, -73.86489)",ALDERTON STREET,63 DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435342,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,0:30,,,40.709007,-73.832634,"(40.709007, -73.832634)",AUDLEY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4434978,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/08/2021,11:30,QUEENS,11418,40.69585,-73.819984,"(40.69585, -73.819984)",,,129-01 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435160,Van,,,, +07/08/2021,14:25,QUEENS,11377,40.744167,-73.91248,"(40.744167, -73.91248)",52 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435362,Box Truck,Sedan,Sedan,, +07/07/2021,18:30,QUEENS,11374,40.73063,-73.85992,"(40.73063, -73.85992)",,,97-34 63 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435019,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,21:13,,,40.70212,-73.90959,"(40.70212, -73.90959)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4435814,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,14:00,,,,,,GRAND ARMY PLAZA,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435180,Sedan,Sedan,,, +07/08/2021,19:05,BRONX,10455,40.81817,-73.91365,"(40.81817, -73.91365)",BERGEN AVENUE,EAST 153 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435382,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,10:40,MANHATTAN,10016,40.741116,-73.98075,"(40.741116, -73.98075)",,,215 EAST 27 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4434911,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,12:42,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4435576,Sedan,Sedan,Sedan,, +07/07/2021,12:29,BROOKLYN,11225,40.665546,-73.9537,"(40.665546, -73.9537)",ROGERS AVENUE,MONTGOMERY STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4435137,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,19:00,MANHATTAN,10038,40.71162,-74.007225,"(40.71162, -74.007225)",,,15 PARK ROW,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435477,Station Wagon/Sport Utility Vehicle,,,, +06/17/2021,17:16,BRONX,10452,40.8283,-73.92447,"(40.8283, -73.92447)",GERARD AVENUE,EAST 162 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4435895,Bike,,,, +07/09/2021,20:16,MANHATTAN,10032,40.84107,-73.93605,"(40.84107, -73.93605)",WEST 170 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4435843,Taxi,,,, +07/09/2021,21:30,,,40.75348,-73.980896,"(40.75348, -73.980896)",EAST 42 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,8:40,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435550,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:10,QUEENS,11367,40.723278,-73.815125,"(40.723278, -73.815125)",150 STREET,76 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435209,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,12:00,QUEENS,11421,40.687164,-73.85232,"(40.687164, -73.85232)",ATLANTIC AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435510,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,2:25,BRONX,10470,40.904736,-73.845345,"(40.904736, -73.845345)",,,885 EAST 242 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4434924,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,3:10,BRONX,10457,40.848755,-73.898705,"(40.848755, -73.898705)",EAST 178 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4434975,Tractor Truck Diesel,Sedan,,, +07/08/2021,9:00,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435372,Sedan,Sedan,,, +07/09/2021,13:30,BROOKLYN,11213,40.669155,-73.937546,"(40.669155, -73.937546)",,,935 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4435823,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2021,0:45,,,40.675663,-73.9277,"(40.675663, -73.9277)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435825,LIMO,Sedan,,, +07/08/2021,19:40,MANHATTAN,10028,40.77461,-73.94809,"(40.77461, -73.94809)",YORK AVENUE,EAST 84 STREET,,1,0,0,0,0,0,1,0,Tinted Windows,Unspecified,,,,4435377,Bus,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,9:44,BROOKLYN,11203,40.65108,-73.94459,"(40.65108, -73.94459)",,,3507 CHURCH AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4435009,Sedan,Sedan,,, +07/07/2021,7:35,QUEENS,11417,40.681713,-73.84273,"(40.681713, -73.84273)",,,103-52 97 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435088,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,13:55,,,40.74641,-73.95032,"(40.74641, -73.95032)",11 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435364,Bike,,,, +07/07/2021,0:20,,,40.68064,-73.89672,"(40.68064, -73.89672)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4435230,Sedan,,,, +07/03/2021,23:25,,,40.725517,-73.896416,"(40.725517, -73.896416)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4435769,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,14:00,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435336,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,0:00,BRONX,10466,40.891827,-73.8548,"(40.891827, -73.8548)",,,801 EAST 232 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434934,Sedan,,,, +07/08/2021,22:10,BROOKLYN,11212,40.65621,-73.914665,"(40.65621, -73.914665)",ROCKAWAY PARKWAY,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4435528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/09/2021,11:30,BROOKLYN,11208,40.669064,-73.86557,"(40.669064, -73.86557)",LINDEN BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435999,Sedan,Sedan,,, +07/07/2021,22:35,BROOKLYN,11217,,,,ATLANTIC AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435033,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,15:40,BRONX,10460,40.83317,-73.891365,"(40.83317, -73.891365)",,,1420 MINFORD PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435494,Sedan,,,, +07/07/2021,8:00,MANHATTAN,10021,40.76975,-73.96061,"(40.76975, -73.96061)",3 AVENUE,EAST 72 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4434893,PK,Sedan,,, +07/09/2021,8:18,QUEENS,11355,40.755486,-73.82472,"(40.755486, -73.82472)",KISSENA BOULEVARD,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435577,Sedan,,,, +07/09/2021,16:20,BROOKLYN,11215,0,0,"(0.0, 0.0)",5 AVENUE,9 STREET,,2,0,1,0,0,0,1,0,Illnes,,,,,4435485,Sedan,,,, +07/07/2021,18:27,,,,,,,,3204 EAST 207 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434994,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,12:00,MANHATTAN,10027,40.811893,-73.9636,"(40.811893, -73.9636)",,,468 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435810,Sedan,,,, +07/07/2021,22:25,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",12 AVENUE,WEST 56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435402,Sedan,Sedan,,, +07/09/2021,21:00,QUEENS,11420,40.66549,-73.819534,"(40.66549, -73.819534)",NORTH CONDUIT AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435913,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,18:55,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,TYSENS LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435130,Ambulance,Van,,, +06/29/2021,13:53,QUEENS,11105,40.771328,-73.90391,"(40.771328, -73.90391)",43 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435697,Sedan,,,, +07/07/2021,6:05,BRONX,10462,40.849033,-73.86749,"(40.849033, -73.86749)",,,1980 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4434987,Sedan,,,, +07/07/2021,11:00,,,40.75541,-73.83842,"(40.75541, -73.83842)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435647,Dump,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,11:15,BROOKLYN,11232,40.651894,-74.014015,"(40.651894, -74.014015)",45 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435424,Ambulance,Sedan,,, +07/08/2021,15:05,,,40.869194,-73.88039,"(40.869194, -73.88039)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435303,Sedan,Sedan,,, +07/07/2021,16:40,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4435181,Sedan,,,, +07/09/2021,6:20,BROOKLYN,11218,40.6438,-73.96968,"(40.6438, -73.96968)",,,1023 BEVERLEY ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4435446,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,10:45,BROOKLYN,11232,40.652042,-74.00519,"(40.652042, -74.00519)",,,437 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435760,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,11:28,BROOKLYN,11211,40.708973,-73.952835,"(40.708973, -73.952835)",HOOPER STREET,SOUTH 3 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4435051,Sedan,,,, +07/08/2021,7:42,,,40.71242,-73.82932,"(40.71242, -73.82932)",KEW GARDEN ROAD,82 AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4435158,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/05/2021,20:30,BRONX,10452,40.83164,-73.930115,"(40.83164, -73.930115)",OGDEN AVENUE,WEST 162 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4435901,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2021,13:25,,,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435197,Ambulance,Ambulance,,, +07/09/2021,18:40,BROOKLYN,11222,40.72042,-73.939705,"(40.72042, -73.939705)",DIVISION PLACE,DEBEVOISE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435516,Sedan,Bike,,, +07/07/2021,0:00,BRONX,10466,40.891735,-73.84895,"(40.891735, -73.84895)",EDENWALD AVENUE,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435172,Sedan,Sedan,,, +07/07/2021,10:00,,,40.854057,-73.898315,"(40.854057, -73.898315)",FOLIN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435082,Sedan,,,, +07/07/2021,14:34,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435269,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,19:20,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",CONEY ISLAND AVENUE,FOSTER AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4435357,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +07/09/2021,19:14,BROOKLYN,11203,40.653862,-73.929756,"(40.653862, -73.929756)",,,769 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435544,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,19:05,,,40.673393,-73.79048,"(40.673393, -73.79048)",147 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435045,Sedan,Open Body,,, +07/09/2021,6:09,,,40.722122,-74.00977,"(40.722122, -74.00977)",LAIGHT STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435479,Sedan,,,, +07/07/2021,18:50,,,40.590084,-73.95476,"(40.590084, -73.95476)",AVENUE Y,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435293,Motorcycle,,,, +07/09/2021,21:26,BRONX,10463,40.87262,-73.904686,"(40.87262, -73.904686)",WEST KINGSBRIDGE ROAD,HEATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435459,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,8:45,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435598,PK,,,, +07/07/2021,16:38,MANHATTAN,10002,40.72205,-73.988205,"(40.72205, -73.988205)",,,186 ORCHARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435038,Sedan,,,, +07/08/2021,16:45,,,40.80704,-73.9698,"(40.80704, -73.9698)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4435801,Sedan,,,, +07/07/2021,8:00,BRONX,10453,40.855785,-73.90558,"(40.855785, -73.90558)",JEROME AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434864,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/08/2021,14:30,,,40.69614,-73.9734,"(40.69614, -73.9734)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4435318,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,21:13,,,40.844116,-73.89857,"(40.844116, -73.89857)",BATHGATE AVENUE,CROSS BRONX EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4435407,Sedan,Sedan,,, +07/08/2021,15:30,QUEENS,11101,40.75461,-73.94421,"(40.75461, -73.94421)",,,41-01 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435708,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,13:49,BRONX,10466,40.890076,-73.8546,"(40.890076, -73.8546)",,,830 EAST 230 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434964,Bus,Sedan,,, +07/09/2021,1:00,BRONX,10457,40.846687,-73.905594,"(40.846687, -73.905594)",EAST 175 STREET,TOPPING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436024,Sedan,,,, +07/06/2021,19:09,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAPLE AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435566,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,16:20,QUEENS,11692,40.589985,-73.79844,"(40.589985, -73.79844)",,,68-20 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435063,Sedan,E-Bike,,, +07/09/2021,9:30,BRONX,10454,40.806812,-73.9175,"(40.806812, -73.9175)",EAST 138 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4435942,Sedan,,,, +07/08/2021,22:16,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,Unspecified,,,4435389,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/08/2021,7:04,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,SNYDER AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inexperience,,,,4435351,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/08/2021,8:45,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4435235,Sedan,,,, +06/05/2021,22:00,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435891,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,8:20,STATEN ISLAND,10304,40.612366,-74.08516,"(40.612366, -74.08516)",,,588 TARGEE STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435658,,,,, +07/09/2021,13:15,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4435490,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/07/2021,23:17,STATEN ISLAND,10312,40.52791,-74.16486,"(40.52791, -74.16486)",HYLAN BOULEVARD,HOLDRIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435684,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/09/2021,11:50,BROOKLYN,11207,40.65766,-73.89705,"(40.65766, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4435989,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,9:24,,,40.600567,-73.7621,"(40.600567, -73.7621)",BEACH 25 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4435441,Sedan,Sedan,Sedan,Sedan, +07/09/2021,19:06,BROOKLYN,11221,40.695114,-73.911865,"(40.695114, -73.911865)",KNICKERBOCKER AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435467,Sedan,,,, +07/09/2021,17:40,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435778,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,11:43,,,,,,AVENUE C,AVENUE C LOOP,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435751,Sedan,Sedan,,, +07/07/2021,16:08,,,40.639305,-73.95898,"(40.639305, -73.95898)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435069,Sedan,Sedan,,, +07/09/2021,13:36,QUEENS,11420,40.67482,-73.823296,"(40.67482, -73.823296)",,,115-01 SUTTER AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4435909,Box Truck,,,, +07/09/2021,0:00,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4435412,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,14:00,BROOKLYN,11237,40.712124,-73.934265,"(40.712124, -73.934265)",TEN EYCK STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435868,Sedan,,,, +07/07/2021,21:39,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",GRAND CONCOURSE,EAST 176 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435126,Moped,Bike,,, +07/07/2021,18:27,BRONX,10469,40.874405,-73.84004,"(40.874405, -73.84004)",WICKHAM AVENUE,BURKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435243,Sedan,Taxi,,, +07/02/2021,22:00,BRONX,10470,40.899185,-73.8562,"(40.899185, -73.8562)",NEREID AVENUE,MATILDA AVENUE,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,,4435959,Sedan,Sedan,Sedan,Sedan, +07/07/2021,21:00,BROOKLYN,11206,40.711166,-73.94385,"(40.711166, -73.94385)",,,255 GRAHAM AVENUE,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4435056,Sedan,Sedan,,, +07/09/2021,13:30,STATEN ISLAND,10304,40.60948,-74.08425,"(40.60948, -74.08425)",HANOVER AVENUE,STEUBEN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4435664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,3:45,BRONX,10475,40.88176,-73.82324,"(40.88176, -73.82324)",PEARTREE AVENUE,GIVAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435722,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,14:10,QUEENS,11428,40.71735,-73.73971,"(40.71735, -73.73971)",,,215-27 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435022,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,15:15,BROOKLYN,11201,40.69683,-73.98316,"(40.69683, -73.98316)",,,257 GOLD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435310,Sedan,,,, +07/08/2021,9:33,BRONX,10459,40.81614,-73.894875,"(40.81614, -73.894875)",LAFAYETTE AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435326,Pick-up Truck,,,, +07/07/2021,23:00,BRONX,10460,40.838844,-73.87817,"(40.838844, -73.87817)",EAST 177 STREET,DEVOE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435976,Taxi,,,, +07/07/2021,5:42,MANHATTAN,10040,40.856567,-73.92983,"(40.856567, -73.92983)",,,374 WADSWORTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435150,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,11:25,MANHATTAN,10002,40.717197,-73.99071,"(40.717197, -73.99071)",GRAND STREET,ORCHARD STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435222,Sedan,,,, +07/07/2021,0:00,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435077,Sedan,Sedan,,, +07/08/2021,13:12,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435419,Box Truck,Sedan,,, +06/28/2021,22:25,QUEENS,11373,40.74157,-73.86758,"(40.74157, -73.86758)",,,50-06 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4435640,E-Bike,E-Bike,,, +07/09/2021,17:30,,,40.856037,-73.83284,"(40.856037, -73.83284)",PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435723,Sedan,Taxi,,, +07/07/2021,21:10,BRONX,10469,40.87514,-73.85123,"(40.87514, -73.85123)",,,3377 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4435112,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,13:20,QUEENS,11419,40.69407,-73.82802,"(40.69407, -73.82802)",ATLANTIC AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4435505,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,19:50,BROOKLYN,11207,40.65658,-73.88586,"(40.65658, -73.88586)",,,180 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435994,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,1:43,BROOKLYN,11236,40.647835,-73.90649,"(40.647835, -73.90649)",,,9601 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,8:53,BROOKLYN,11229,40.59592,-73.941025,"(40.59592, -73.941025)",NOSTRAND AVENUE,AVENUE W,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435614,Sedan,Sedan,,, +07/08/2021,15:01,MANHATTAN,10038,40.709557,-74.00644,"(40.709557, -74.00644)",FULTON STREET,WILLIAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435273,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,18:52,BRONX,10456,40.829136,-73.9114,"(40.829136, -73.9114)",EAST 166 STREET,WEBSTER AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4435908,Sedan,Taxi,,, +07/09/2021,14:30,BROOKLYN,11236,40.651527,-73.89641,"(40.651527, -73.89641)",,,10612 FARRAGUT ROAD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4435499,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,0:00,BRONX,10453,40.857048,-73.90691,"(40.857048, -73.90691)",GRAND AVENUE,CLINTON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435392,Sedan,Sedan,,, +07/08/2021,8:00,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435117,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,12:56,QUEENS,11385,40.712852,-73.90486,"(40.712852, -73.90486)",,,60-18 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4435794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,18:30,MANHATTAN,10031,40.824562,-73.948105,"(40.824562, -73.948105)",AMSTERDAM AVENUE,WEST 144 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435385,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,8:30,,,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435280,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,1:10,MANHATTAN,10003,40.739086,-73.99139,"(40.739086, -73.99139)",WEST 19 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4434810,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2021,14:08,BROOKLYN,11206,40.710716,-73.93627,"(40.710716, -73.93627)",,,26 MEADOW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435347,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,10:47,QUEENS,11103,40.76805,-73.91381,"(40.76805, -73.91381)",,,25-03 37 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4435704,Motorcycle,,,, +07/02/2021,10:57,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435570,Sedan,Sedan,,, +07/08/2021,20:54,,,40.73851,-73.8065,"(40.73851, -73.8065)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435562,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,1:09,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4435311,Motorcycle,Sedan,,, +07/08/2021,1:20,,,40.761837,-73.759415,"(40.761837, -73.759415)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,17:25,BROOKLYN,11235,40.593014,-73.94045,"(40.593014, -73.94045)",,,3715 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,7:30,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4434956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/08/2021,10:37,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435654,Taxi,E-Bike,,, +07/07/2021,10:58,MANHATTAN,10009,40.72507,-73.98122,"(40.72507, -73.98122)",AVENUE B,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435678,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,14:55,MANHATTAN,10038,,,,St. James Place,James Street,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435860,Sedan,,,, +07/07/2021,12:15,BRONX,10451,40.826153,-73.920265,"(40.826153, -73.920265)",SHERMAN AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435162,Bus,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,6:17,BROOKLYN,11221,40.689354,-73.936325,"(40.689354, -73.936325)",LEWIS AVENUE,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435741,Sedan,Sedan,Van,, +07/02/2021,3:20,QUEENS,11378,40.72282,-73.89498,"(40.72282, -73.89498)",CALDWELL AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,18:15,BRONX,10457,40.847614,-73.887794,"(40.847614, -73.887794)",EAST 180 STREET,CLINTON AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4435476,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:32,QUEENS,11422,40.669563,-73.73921,"(40.669563, -73.73921)",234 STREET,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4435331,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,20:19,,,40.63697,-74.15141,"(40.63697, -74.15141)",RICHMOND TERRACE,SIMONSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436022,Sedan,Sedan,,, +07/07/2021,12:54,BROOKLYN,11207,40.663918,-73.88899,"(40.663918, -73.88899)",MILLER AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4435236,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,13:30,QUEENS,11373,40.73574,-73.872665,"(40.73574, -73.872665)",90 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435668,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,0:15,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4435081,Sedan,,,, +07/06/2021,17:00,BRONX,10454,40.80616,-73.927986,"(40.80616, -73.927986)",ALEXANDER AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435946,Sedan,,,, +07/09/2021,23:40,QUEENS,11370,40.77258,-73.88936,"(40.77258, -73.88936)",,,19-26 81 STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4435715,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,14:40,,,40.822735,-73.94763,"(40.822735, -73.94763)",CONVENT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435433,Sedan,,,, +07/07/2021,12:40,MANHATTAN,10007,40.71436,-74.00839,"(40.71436, -74.00839)",WARREN STREET,CHURCH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435102,Sedan,,,, +06/24/2021,17:15,,,40.689217,-73.917656,"(40.689217, -73.917656)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435452,Sedan,Sedan,,, +07/09/2021,3:30,QUEENS,11379,40.714314,-73.88419,"(40.714314, -73.88419)",,,66-14 71 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435780,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,7:45,BRONX,10456,40.831383,-73.906845,"(40.831383, -73.906845)",WASHINGTON AVENUE,EAST 168 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435625,Bus,,,, +07/08/2021,12:29,QUEENS,11374,40.726185,-73.87022,"(40.726185, -73.87022)",WOODHAVEN BOULEVARD,62 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435216,Pick-up Truck,Sedan,,, +07/07/2021,13:31,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4435131,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,10:50,QUEENS,11432,40.707344,-73.796074,"(40.707344, -73.796074)",,,89-59 165 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4434981,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,10:30,BROOKLYN,11221,40.685234,-73.92654,"(40.685234, -73.92654)",HANCOCK STREET,PATCHEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435730,Sedan,,,, +07/06/2021,11:18,QUEENS,11378,40.726624,-73.906456,"(40.726624, -73.906456)",55 ROAD,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435786,Sedan,,,, +07/08/2021,0:00,BROOKLYN,11213,40.671337,-73.9448,"(40.671337, -73.9448)",SAINT JOHNS PLACE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4435826,Sedan,Sedan,,, +07/07/2021,17:05,QUEENS,11375,40.711704,-73.84477,"(40.711704, -73.84477)",KESSEL STREET,ASCAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435018,Sedan,Box Truck,,, +07/09/2021,23:36,BROOKLYN,11207,40.675495,-73.88916,"(40.675495, -73.88916)",LIBERTY AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435998,Sedan,,,, +07/08/2021,16:40,BRONX,10454,40.80623,-73.91206,"(40.80623, -73.91206)",JACKSON AVENUE,EAST 140 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435381,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,9:08,QUEENS,11375,40.725616,-73.851036,"(40.725616, -73.851036)",QUEENS BOULEVARD,68 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434913,Box Truck,Sedan,,, +07/08/2021,23:15,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435366,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2021,14:30,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4435138,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,17:53,,,40.654472,-73.945145,"(40.654472, -73.945145)",LENOX ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435529,Sedan,Sedan,,, +07/07/2021,9:00,BRONX,10455,40.815662,-73.90624,"(40.815662, -73.90624)",EAST 152 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435060,Sedan,,,, +07/08/2021,6:45,BROOKLYN,11220,40.636242,-74.01237,"(40.636242, -74.01237)",7 AVENUE,61 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4435416,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,19:31,BROOKLYN,11236,40.63693,-73.91109,"(40.63693, -73.91109)",EAST 83 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435524,Sedan,E-Scooter,,, +07/08/2021,21:00,QUEENS,11374,40.73251,-73.857056,"(40.73251, -73.857056)",99 STREET,63 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,6:15,MANHATTAN,10019,40.766617,-73.98667,"(40.766617, -73.98667)",WEST 55 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435398,Sedan,,,, +07/07/2021,16:15,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",VANNEST AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4434988,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,10:30,QUEENS,11422,40.67221,-73.734634,"(40.67221, -73.734634)",BROOKVILLE BOULEVARD,135 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435023,Sedan,,,, +07/07/2021,0:28,BROOKLYN,11208,40.679474,-73.87642,"(40.679474, -73.87642)",,,24 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435224,Sedan,Dump,,, +07/08/2021,7:44,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435177,Sedan,Tractor Truck Gasoline,,, +07/07/2021,11:45,BROOKLYN,11230,40.624653,-73.96618,"(40.624653, -73.96618)",AVENUE J,EAST 10 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,15:00,BROOKLYN,11232,40.654705,-74.00731,"(40.654705, -74.00731)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435420,Sedan,Sedan,,, +07/07/2021,0:53,QUEENS,11355,40.760693,-73.82094,"(40.760693, -73.82094)",,,144-90 41 AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4435573,Sedan,Pick-up Truck,,, +07/07/2021,11:00,QUEENS,11101,40.743084,-73.9358,"(40.743084, -73.9358)",31 STREET,47 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4434910,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,8:54,,,,,,GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435852,Tractor Truck Diesel,Box Truck,,, +07/09/2021,21:56,BROOKLYN,11237,40.702362,-73.91291,"(40.702362, -73.91291)",MENAHAN STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435470,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,22:00,QUEENS,11101,40.755234,-73.941246,"(40.755234, -73.941246)",21 STREET,40 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4435701,Sedan,,,, +07/09/2021,13:00,MANHATTAN,10029,40.795048,-73.950554,"(40.795048, -73.950554)",,,1255 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435642,Sedan,,,, +07/07/2021,19:50,BRONX,10470,40.901367,-73.86441,"(40.901367, -73.86441)",,,425 EAST 240 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435109,Sedan,Sedan,,, +07/08/2021,23:02,BROOKLYN,11218,40.652637,-73.97269,"(40.652637, -73.97269)",PROSPECT PARK SOUTHWEST,GREENWOOD AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435427,Sedan,Bike,,, +07/08/2021,22:40,BROOKLYN,11230,40.62237,-73.96473,"(40.62237, -73.96473)",CONEY ISLAND AVENUE,AVENUE K,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435651,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,20:05,BROOKLYN,11213,40.673016,-73.93633,"(40.673016, -73.93633)",,,180 TROY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435822,Motorcycle,,,, +07/09/2021,11:40,,,40.69864,-73.93819,"(40.69864, -73.93819)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4435456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/30/2021,13:40,,,40.84271,-73.89037,"(40.84271, -73.89037)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4436016,Box Truck,Sedan,Sedan,, +06/30/2021,13:00,QUEENS,11378,40.72209,-73.90374,"(40.72209, -73.90374)",,,61-16 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435765,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,13:55,MANHATTAN,10022,40.759884,-73.96669,"(40.759884, -73.96669)",,,226 EAST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434950,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,11:05,BROOKLYN,11220,40.642616,-74.01827,"(40.642616, -74.01827)",,,335 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435425,Sedan,,,, +07/09/2021,23:25,QUEENS,11417,40.679947,-73.84973,"(40.679947, -73.84973)",LIBERTY AVENUE,89 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4435918,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,11:18,MANHATTAN,10075,40.77402,-73.95457,"(40.77402, -73.95457)",2 AVENUE,EAST 80 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435894,Bike,Box Truck,,, +07/07/2021,8:00,MANHATTAN,10002,40.71572,-73.99323,"(40.71572, -73.99323)",,,39 ELDRIDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4434887,Sedan,,,, +07/07/2021,18:00,,,40.75167,-73.94188,"(40.75167, -73.94188)",23 STREET,QUEENS PLAZA NORTH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435034,Sedan,Bike,,, +07/07/2021,11:23,BROOKLYN,11219,40.644615,-73.9959,"(40.644615, -73.9959)",,,905 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435175,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,15:20,BRONX,10467,40.862698,-73.86621,"(40.862698, -73.86621)",,,2441 BOSTON ROAD,1,0,1,0,0,0,0,0,,,,,,4435489,,,,, +07/08/2021,10:00,MANHATTAN,10019,40.770313,-73.99141,"(40.770313, -73.99141)",11 AVENUE,WEST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435403,Sedan,Box Truck,,, +07/06/2021,11:55,QUEENS,11357,40.783253,-73.80275,"(40.783253, -73.80275)",160 STREET,17 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4435578,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,12:00,QUEENS,11354,40.76407,-73.80914,"(40.76407, -73.80914)",NORTHERN BOULEVARD,156 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435807,Sedan,,,, +07/08/2021,14:50,,,40.74791,-73.96806,"(40.74791, -73.96806)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435881,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,22:46,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4435917,Sedan,Sedan,Sedan,, +07/07/2021,19:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,16:35,,,40.768356,-73.904884,"(40.768356, -73.904884)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4435696,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,12:00,,,40.839447,-73.88384,"(40.839447, -73.88384)",BOSTON ROAD,VYSE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4434973,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,15:53,MANHATTAN,10023,40.78069,-73.986984,"(40.78069, -73.986984)",RIVERSIDE BOULEVARD,WEST 72 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4435325,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,11:30,,,40.735466,-73.87771,"(40.735466, -73.87771)",SEABURY STREET,54 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4435646,Sedan,,,, +07/08/2021,10:50,BRONX,10467,40.876705,-73.87244,"(40.876705, -73.87244)",,,3317 PARKSIDE PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435294,Sedan,,,, +07/03/2021,8:00,BRONX,10461,40.834175,-73.829,"(40.834175, -73.829)",,,3371 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435979,Sedan,Sedan,,, +07/09/2021,15:30,BROOKLYN,11223,40.600895,-73.98031,"(40.600895, -73.98031)",AVENUE S,WEST 8 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4435585,Sedan,Sedan,Sedan,, +07/07/2021,18:52,,,,,,WEST STREET,BATTERY PARK,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435064,Ambulance,Sedan,,, +07/09/2021,17:14,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4435463,Sedan,Sedan,,, +07/07/2021,11:50,QUEENS,11385,40.699993,-73.8895,"(40.699993, -73.8895)",,,74-60 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435785,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,15:17,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,,,,4435759,Sedan,Sedan,,, +07/07/2021,17:40,BROOKLYN,11206,40.70121,-73.94485,"(40.70121, -73.94485)",,,41 WHIPPLE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4435052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/09/2021,9:30,STATEN ISLAND,10301,40.637154,-74.086555,"(40.637154, -74.086555)",JERSEY STREET,CORSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435663,Sedan,,,, +07/08/2021,8:30,BROOKLYN,11208,40.689396,-73.86867,"(40.689396, -73.86867)",,,70 GRANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435228,Station Wagon/Sport Utility Vehicle,Bus,,, +07/07/2021,19:04,,,40.68377,-73.92625,"(40.68377, -73.92625)",MACON STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4435729,Sedan,Box Truck,,, +07/06/2021,6:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435832,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/09/2021,13:15,BROOKLYN,11236,40.63775,-73.89675,"(40.63775, -73.89675)",,,9501 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435685,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,21:25,,,40.827282,-73.95361,"(40.827282, -73.95361)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435263,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/07/2021,19:36,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435070,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,18:46,BROOKLYN,11221,40.698452,-73.92176,"(40.698452, -73.92176)",MYRTLE AVENUE,WILSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4435468,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,8:16,MANHATTAN,10013,40.716377,-73.99653,"(40.716377, -73.99653)",,,156 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435858,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,19:50,QUEENS,11102,40.77065,-73.9181,"(40.77065, -73.9181)",,,29-22 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4435716,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,4:18,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",EAST 175 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435408,Sedan,Sedan,,, +07/07/2021,9:00,STATEN ISLAND,10312,40.55185,-74.193146,"(40.55185, -74.193146)",,,296 ROLLING HILL GREEN,0,0,0,0,0,0,0,0,Unspecified,,,,,4434970,Sedan,,,, +07/08/2021,12:00,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Following Too Closely,,,,4435390,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,11:00,,,40.74006,-73.789894,"(40.74006, -73.789894)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4434932,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,18:21,QUEENS,11411,40.694965,-73.73616,"(40.694965, -73.73616)",,,116-43 224 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435335,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,11:00,,,40.69854,-73.94116,"(40.69854, -73.94116)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435155,Sedan,,,, +06/11/2021,11:41,BROOKLYN,11211,40.714912,-73.94784,"(40.714912, -73.94784)",CONSELYEA STREET,LEONARD STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4436028,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/09/2021,10:17,BROOKLYN,11210,40.62106,-73.95447,"(40.62106, -73.95447)",AVENUE L,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435447,Sedan,,,, +07/08/2021,12:00,BRONX,10460,40.832733,-73.885925,"(40.832733, -73.885925)",,,1006 EAST 172 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435493,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,20:41,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4435194,E-Bike,,,, +07/07/2021,16:50,,,40.867958,-73.887695,"(40.867958, -73.887695)",EAST 198 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4434995,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,15:26,QUEENS,11414,40.6606,-73.840225,"(40.6606, -73.840225)",,,158-01 CROSS BAY BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435084,Sedan,Sedan,,, +07/09/2021,13:18,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435990,Sedan,,,, +01/16/2022,2:25,BROOKLYN,11236,40.642002,-73.898834,"(40.642002, -73.898834)",ROCKAWAY PARKWAY,AVENUE J,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4494762,Sedan,,,, +07/07/2021,23:13,BROOKLYN,11215,40.672222,-73.97383,"(40.672222, -73.97383)",CARROLL STREET,8 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4435171,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,15:00,,,40.623672,-73.8956,"(40.623672, -73.8956)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4435123,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2021,18:40,BROOKLYN,11212,40.66283,-73.92615,"(40.66283, -73.92615)",RUTLAND ROAD,EAST 94 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435543,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,11:20,,,40.793556,-73.967026,"(40.793556, -73.967026)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4434927,Sedan,Box Truck,,, +07/07/2021,7:10,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434876,Bus,Sedan,,, +07/07/2021,18:51,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4435037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,3:36,,,,,,FOREST PARK DRIVE,ROBINSON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,19:00,QUEENS,11412,40.70641,-73.75541,"(40.70641, -73.75541)",,,202-09 HOLLIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435376,Sedan,Sedan,,, +07/08/2021,0:01,BRONX,10454,40.805557,-73.91453,"(40.805557, -73.91453)",EAST 138 STREET,CYPRESS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435090,Sedan,E-Scooter,,, +07/07/2021,17:50,BROOKLYN,11226,40.64831,-73.94835,"(40.64831, -73.94835)",,,96 EAST 31 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4435003,Sedan,Sedan,Sedan,Sedan, +06/24/2021,21:38,,,40.717186,-74.0129,"(40.717186, -74.0129)",CHAMBERS STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,,,,4435480,Electric S,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:20,,,40.6392,-73.938736,"(40.6392, -73.938736)",FOSTER AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4435301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,15:55,BROOKLYN,11205,40.696117,-73.97028,"(40.696117, -73.97028)",,,215 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435319,Sedan,Sedan,,, +07/06/2021,19:30,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,PRINCE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435565,Pick-up Truck,Convertible,,, +07/09/2021,8:00,,,40.754276,-73.90902,"(40.754276, -73.90902)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435709,Bus,,,, +07/07/2021,23:45,,,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435233,Taxi,Sedan,,, +07/09/2021,6:00,QUEENS,11368,40.73775,-73.851845,"(40.73775, -73.851845)",,,108-03 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4435659,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,6:30,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435355,trailer,,,, +07/09/2021,6:25,BROOKLYN,11215,40.67577,-73.98421,"(40.67577, -73.98421)",4 AVENUE,GARFIELD PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,8:30,BROOKLYN,11218,40.646667,-73.970924,"(40.646667, -73.970924)",,,461 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4435442,Sedan,Bus,Motorcycle,, +07/03/2021,19:00,QUEENS,11385,40.69723,-73.90456,"(40.69723, -73.90456)",,,1639 CENTRE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435774,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,19:10,BROOKLYN,11203,40.65113,-73.94257,"(40.65113, -73.94257)",,,3719 CHURCH AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435754,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/07/2021,21:36,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2021,16:12,BROOKLYN,11207,40.67398,-73.899315,"(40.67398, -73.899315)",ALABAMA AVENUE,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4435248,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/08/2021,19:01,QUEENS,11432,40.71021,-73.78337,"(40.71021, -73.78337)",,,90-01 179 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4435373,Sedan,Sedan,,, +07/08/2021,2:05,BROOKLYN,11203,40.662575,-73.93448,"(40.662575, -73.93448)",SCHENECTADY AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435139,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,17:56,,,40.72225,-74.00592,"(40.72225, -74.00592)",AVENUE OF THE AMERICAS,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435386,Van,Sedan,,, +07/07/2021,13:44,BRONX,10466,40.892754,-73.85774,"(40.892754, -73.85774)",WHITE PLAINS ROAD,EAST 232 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435956,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,18:15,,,40.787685,-73.81528,"(40.787685, -73.81528)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4435579,Sedan,,,, +07/08/2021,19:30,,,40.852306,-73.89811,"(40.852306, -73.89811)",EAST 180 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4435404,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/06/2021,15:00,QUEENS,11357,40.790855,-73.82215,"(40.790855, -73.82215)",WHITESTONE EXPRESSWAY,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435564,Sedan,,,, +07/05/2021,14:00,BROOKLYN,11203,40.637035,-73.935616,"(40.637035, -73.935616)",EAST 43 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4435525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2021,8:15,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4434957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,21:15,QUEENS,11421,40.69305,-73.85384,"(40.69305, -73.85384)",JAMAICA AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,10:05,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4435340,Van,,,, +07/07/2021,18:04,STATEN ISLAND,10306,40.57961,-74.109116,"(40.57961, -74.109116)",NORTH RAILROAD AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435132,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,8:05,,,40.827595,-73.85004,"(40.827595, -73.85004)",CASTLE HILL AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4434949,Sedan,Sedan,,, +07/07/2021,16:15,,,40.747574,-73.76147,"(40.747574, -73.76147)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4434989,Sedan,Sedan,,, +07/09/2021,11:45,BROOKLYN,11222,40.725983,-73.952065,"(40.725983, -73.952065)",,,717 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435513,Dump,,,, +07/07/2021,0:00,QUEENS,11432,40.71501,-73.77839,"(40.71501, -73.77839)",,,87-03 DALNY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435206,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,12:07,BROOKLYN,11219,40.63885,-73.99695,"(40.63885, -73.99695)",48 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435186,Sedan,Van,,, +07/07/2021,12:30,STATEN ISLAND,10306,40.564922,-74.11805,"(40.564922, -74.11805)",TYSENS LANE,CLAWSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4434915,Station Wagon/Sport Utility Vehicle,Dump,,, +07/09/2021,23:25,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435549,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,17:55,BROOKLYN,11220,40.642586,-74.018265,"(40.642586, -74.018265)",,,336 58 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4435356,Sedan,Sedan,Sedan,, +07/09/2021,13:00,BRONX,10457,40.854374,-73.89441,"(40.854374, -73.89441)",,,460 EAST 182 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435475,Sedan,,,, +06/28/2021,5:40,,,40.841423,-73.92867,"(40.841423, -73.92867)",DEPOT PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435900,Taxi,,,, +06/23/2021,16:45,QUEENS,11379,,,,85 STREET,QUEENS MIDTOWN EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,21:52,QUEENS,11419,40.69018,-73.814606,"(40.69018, -73.814606)",,,131-18 LIBERTY AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4435391,Sedan,Bike,,, +07/07/2021,15:40,BROOKLYN,11239,40.64868,-73.887115,"(40.64868, -73.887115)",,,504 LOUISIANA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435237,Sedan,,,, +07/07/2021,23:30,BROOKLYN,11220,40.639435,-74.00546,"(40.639435, -74.00546)",8 AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435415,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,8:20,QUEENS,11420,40.67347,-73.80837,"(40.67347, -73.80837)",130 STREET,CEDRIC ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4435076,Sedan,Sedan,,, +07/07/2021,22:40,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4435309,Sedan,Sedan,,, +07/07/2021,22:48,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",ROCKAWAY PARKWAY,LENOX ROAD,,0,1,0,1,0,0,0,0,,,,,,4435313,,,,, +07/07/2021,7:00,MANHATTAN,10035,40.79967,-73.94087,"(40.79967, -73.94087)",,,1890 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4434823,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,12:49,BRONX,10455,40.81648,-73.91923,"(40.81648, -73.91923)",,,355 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435380,Sedan,,,, +07/07/2021,18:28,BRONX,10466,40.899246,-73.84609,"(40.899246, -73.84609)",BAYCHESTER AVENUE,NEREID AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435108,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2021,7:15,BRONX,10457,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4435119,Sedan,Bus,,, +07/09/2021,10:14,,,,,,BROADWAY AVENUE,150 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435432,Sedan,E-Bike,,, +07/07/2021,18:55,,,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435705,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,1:45,,,40.653774,-73.95617,"(40.653774, -73.95617)",,,LENOX ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435348,Sedan,,,, +07/08/2021,12:34,,,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435455,Sedan,,,, +07/07/2021,21:30,MANHATTAN,10002,,,,EAST HOUSTON STREET,CLINTON STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4435042,Sedan,Bike,,, +07/08/2021,8:50,,,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4435218,Sedan,Sedan,,, +07/07/2021,16:10,QUEENS,11355,40.74778,-73.81294,"(40.74778, -73.81294)",QUINCE AVENUE,ROBINSON STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4435569,Sedan,Sedan,,, +07/09/2021,11:22,BROOKLYN,11204,40.622593,-73.9882,"(40.622593, -73.9882)",,,1761 60 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435655,Sedan,Sedan,,, +07/07/2021,22:00,BROOKLYN,11211,40.717907,-73.94666,"(40.717907, -73.94666)",MANHATTAN AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435508,Sedan,Sedan,,, +07/09/2021,17:50,BROOKLYN,11207,40.660286,-73.89084,"(40.660286, -73.89084)",HEGEMAN AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435993,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,10:45,QUEENS,11373,40.73664,-73.86584,"(40.73664, -73.86584)",JUNCTION BOULEVARD,57 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435743,E-Scooter,Sedan,,, +07/07/2021,13:51,BRONX,10455,40.814514,-73.91812,"(40.814514, -73.91812)",,,401 EAST 147 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435059,Taxi,Sedan,,, +07/08/2021,20:42,BRONX,10468,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435367,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,13:30,BROOKLYN,11203,40.641365,-73.94179,"(40.641365, -73.94179)",AVENUE D,EAST 37 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435531,Pick-up Truck,Bike,,, +07/05/2021,19:20,,,40.690285,-73.95433,"(40.690285, -73.95433)",SPENCER COURT,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435500,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,22:35,BRONX,10460,40.844635,-73.88724,"(40.844635, -73.88724)",EAST 178 STREET,MAPES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435968,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,17:03,QUEENS,11373,40.740993,-73.88817,"(40.740993, -73.88817)",,,76-20 45 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435645,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,22:50,BROOKLYN,11215,40.655827,-73.98123,"(40.655827, -73.98123)",19 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435421,Sedan,Sedan,Sedan,, +06/25/2021,15:30,BROOKLYN,11238,40.680473,-73.9614,"(40.680473, -73.9614)",ATLANTIC AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435821,Sedan,Sedan,,, +07/07/2021,11:55,,,40.760994,-73.82443,"(40.760994, -73.82443)",ROOSEVELT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435556,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,17:34,MANHATTAN,10075,40.771557,-73.95033,"(40.771557, -73.95033)",,,1495 YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435888,Sedan,Bus,,, +07/09/2021,23:57,BROOKLYN,11233,40.684483,-73.93314,"(40.684483, -73.93314)",,,559 HANCOCK STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435735,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,14:42,BRONX,10457,,,,Tremont Avenue,Crotona Avenue,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4436017,Sedan,Box Truck,,, +07/08/2021,9:59,,,40.58038,-73.967606,"(40.58038, -73.967606)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4435626,Sedan,Tow Truck / Wrecker,,, +07/08/2021,6:45,BROOKLYN,11207,40.652565,-73.88944,"(40.652565, -73.88944)",,,960 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435113,Pick-up Truck,Sedan,,, +07/07/2021,11:00,BROOKLYN,11205,40.697895,-73.97234,"(40.697895, -73.97234)",,,118 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4434980,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,9:18,BRONX,10460,40.835945,-73.8886,"(40.835945, -73.8886)",,,1668 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,,,,,,4434906,,,,, +07/08/2021,6:49,,,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435163,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,12:18,BROOKLYN,11207,40.66965,-73.89332,"(40.66965, -73.89332)",SUTTER AVENUE,VERMONT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435225,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,17:30,,,40.72626,-73.72387,"(40.72626, -73.72387)",CROSS ISLAND PARKWAY,91 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435024,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,14:40,BROOKLYN,11217,40.682423,-73.97069,"(40.682423, -73.97069)",ATLANTIC AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435017,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/07/2021,10:55,MANHATTAN,10033,40.850166,-73.93576,"(40.850166, -73.93576)",WEST 181 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,23:58,,,40.66015,-73.85333,"(40.66015, -73.85333)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4435360,Sedan,,,, +07/07/2021,22:30,,,40.762226,-73.834076,"(40.762226, -73.834076)",BUD PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435574,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,15:17,QUEENS,11377,40.754276,-73.90902,"(40.754276, -73.90902)",51 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435700,Sedan,ambulance,,, +07/09/2021,3:25,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4435469,Tractor Truck Diesel,,,, +07/09/2021,1:05,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4435906,Sedan,,,, +07/07/2021,14:05,BROOKLYN,11237,40.70912,-73.92764,"(40.70912, -73.92764)",VARICK AVENUE,RANDOLPH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435055,Station Wagon/Sport Utility Vehicle,Bike,,, +07/07/2021,11:00,,,40.86028,-73.89405,"(40.86028, -73.89405)",EAST 188 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435080,Sedan,Sedan,,, +07/07/2021,15:00,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435330,Sedan,Sedan,,, +07/07/2021,15:54,BRONX,10468,40.874683,-73.886505,"(40.874683, -73.886505)",GRAND CONCOURSE,EAST 204 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435289,Ambulance,Ambulance,,, +07/09/2021,22:06,MANHATTAN,10039,40.821037,-73.93768,"(40.821037, -73.93768)",,,150 WEST 145 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435411,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,22:30,QUEENS,11372,40.74694,-73.89051,"(40.74694, -73.89051)",ROOSEVELT AVENUE,75 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435667,Sedan,,,, +07/07/2021,16:35,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4435426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2021,23:10,,,40.87134,-73.84793,"(40.87134, -73.84793)",EAST GUN HILL ROAD,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4435099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,23:50,BROOKLYN,11219,40.640274,-73.99025,"(40.640274, -73.99025)",12 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435650,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,9:10,BROOKLYN,11210,40.63353,-73.95202,"(40.63353, -73.95202)",EAST 26 STREET,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4435450,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,9:12,BROOKLYN,11249,0,0,"(0.0, 0.0)",WILLIAMSBURG STREET EAST,HEWES STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4435048,Sedan,Sedan,,, +07/07/2021,17:15,MANHATTAN,10019,40.768593,-73.98522,"(40.768593, -73.98522)",WEST 58 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435396,Sedan,Pedicab,,, +07/04/2021,20:14,BROOKLYN,11212,40.662983,-73.92356,"(40.662983, -73.92356)",,,133 EAST 96 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435764,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,18:05,QUEENS,11366,40.727486,-73.797516,"(40.727486, -73.797516)",172 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435257,Bus,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,13:30,,,40.70143,-73.88701,"(40.70143, -73.88701)",MYRTLE AVENUE,66 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435790,Pick-up Truck,,,, +07/09/2021,0:00,BROOKLYN,11207,40.676174,-73.89282,"(40.676174, -73.89282)",,,2748 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435997,Sedan,,,, +07/06/2021,19:44,,,40.748466,-73.87352,"(40.748466, -73.87352)",WHITNEY AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435679,E-Bike,Sedan,,, +07/08/2021,13:38,QUEENS,11418,40.701134,-73.81716,"(40.701134, -73.81716)",135 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4435272,Ambulance,,,, +07/09/2021,12:40,BROOKLYN,11206,40.702274,-73.94308,"(40.702274, -73.94308)",,,24 COOK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435863,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,18:11,STATEN ISLAND,10309,40.537197,-74.22379,"(40.537197, -74.22379)",VETERANS ROAD EAST,SHARROTTS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435695,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,14:58,BROOKLYN,11235,40.587273,-73.953766,"(40.587273, -73.953766)",,,1500 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435612,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,14:35,,,40.823887,-73.95232,"(40.823887, -73.95232)",BROADWAY,,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inexperience,,,,4435464,Van,Moped,,, +07/08/2021,5:30,,,40.626556,-74.0916,"(40.626556, -74.0916)",VICTORY BOULEVARD,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4435295,Sedan,Ambulance,,, +07/07/2021,22:00,MANHATTAN,10028,40.772705,-73.949486,"(40.772705, -73.949486)",EAST 81 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435065,Taxi,Sedan,,, +01/16/2022,15:20,BROOKLYN,11214,40.59366,-73.98469,"(40.59366, -73.98469)",STILLWELL AVENUE,BENSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495195,Sedan,Pick-up Truck,,, +01/07/2022,20:00,BRONX,10463,40.88102,-73.90331,"(40.88102, -73.90331)",,,5665 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495658,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/03/2022,17:20,,,40.657173,-73.921074,"(40.657173, -73.921074)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,18:21,,,40.71153,-73.95504,"(40.71153, -73.95504)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4495034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,11:00,QUEENS,11428,40.72298,-73.74476,"(40.72298, -73.74476)",91 AVENUE,215 PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495255,Sedan,Sedan,,, +01/16/2022,17:00,STATEN ISLAND,10304,40.61295,-74.083,"(40.61295, -74.083)",,,180 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495323,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,15:20,MANHATTAN,10001,40.75193,-73.993645,"(40.75193, -73.993645)",,,470 8 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4495420,Bus,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,2:45,BRONX,10463,40.88269,-73.892746,"(40.88269, -73.892746)",,,3904 SEDGWICK AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4495436,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,1:13,STATEN ISLAND,10301,40.64466,-74.09847,"(40.64466, -74.09847)",RICHMOND TERRACE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495007,Sedan,,,, +01/16/2022,14:40,BROOKLYN,11232,40.651512,-74.00734,"(40.651512, -74.00734)",4 AVENUE,41 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4494941,Pick-up Truck,Bike,,, +01/16/2022,17:35,BROOKLYN,11209,40.619186,-74.02558,"(40.619186, -74.02558)",,,8812 FORT HAMILTON PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494990,Sedan,Sedan,,, +01/16/2022,16:15,QUEENS,11373,40.735195,-73.88001,"(40.735195, -73.88001)",,,52-16 VANHORN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4494943,Sedan,,,, +01/14/2022,20:22,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495597,,,,, +01/16/2022,16:25,QUEENS,11412,40.702286,-73.751724,"(40.702286, -73.751724)",113 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495024,Sedan,,,, +01/16/2022,12:45,BROOKLYN,11214,40.61055,-74.00145,"(40.61055, -74.00145)",,,8121 NEW UTRECHT AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4494887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,16:00,BRONX,10471,40.909206,-73.90348,"(40.909206, -73.90348)",,,6031 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495435,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,14:42,MANHATTAN,10009,40.72416,-73.973495,"(40.72416, -73.973495)",FDR DRIVE,EAST 10 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4495171,Sedan,Sedan,,, +01/16/2022,6:28,BROOKLYN,11233,40.67725,-73.92754,"(40.67725, -73.92754)",ATLANTIC AVENUE,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4495206,Sedan,Sedan,,, +01/16/2022,14:30,,,40.605038,-74.12084,"(40.605038, -74.12084)",,,884 MANOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495461,Sedan,,,, +01/16/2022,19:00,QUEENS,11355,40.748104,-73.83126,"(40.748104, -73.83126)",133 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495329,Sedan,,,, +01/13/2022,8:05,MANHATTAN,10035,40.80595,-73.93519,"(40.80595, -73.93519)",,,144 EAST 128 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495449,Sedan,Sedan,,, +01/16/2022,10:30,QUEENS,11373,40.740746,-73.87955,"(40.740746, -73.87955)",,,83-18 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494908,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,19:50,QUEENS,11429,40.709515,-73.73236,"(40.709515, -73.73236)",223 STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495015,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,20:09,,,40.757065,-73.83863,"(40.757065, -73.83863)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Pavement Slippery,,,,4495126,Sedan,Sedan,,, +01/16/2022,23:51,BRONX,10467,40.882126,-73.870125,"(40.882126, -73.870125)",,,3554 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495314,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,22:15,QUEENS,11369,40.76133,-73.871185,"(40.76133, -73.871185)",,,27-12 98 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4495528,Sedan,,,, +01/16/2022,22:38,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495037,Sedan,Sedan,,, +01/16/2022,4:15,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495083,Sedan,Sedan,,, +01/14/2022,20:15,BROOKLYN,11215,40.67219,-73.983795,"(40.67219, -73.983795)",5 AVENUE,4 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495621,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,9:39,BROOKLYN,11220,40.64289,-74.00815,"(40.64289, -74.00815)",,,615 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494973,Sedan,Sedan,,, +01/11/2022,22:20,,,40.76492,-73.93861,"(40.76492, -73.93861)",10 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495507,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,14:30,,,40.83301,-73.95027,"(40.83301, -73.95027)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495397,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,20:00,,,40.602028,-74.18777,"(40.602028, -74.18777)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4495426,Pick-up Truck,,,, +01/16/2022,15:00,MANHATTAN,10032,40.832863,-73.94204,"(40.832863, -73.94204)",WEST 157 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4495495,,,,, +01/16/2022,6:10,STATEN ISLAND,10310,40.6271,-74.12514,"(40.6271, -74.12514)",FOREST AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495585,Sedan,Sedan,,, +01/16/2022,23:27,BROOKLYN,11203,40.639442,-73.929085,"(40.639442, -73.929085)",,,1344 UTICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4495161,,,,, +01/15/2022,8:42,MANHATTAN,10023,40.77873,-73.977844,"(40.77873, -73.977844)",COLUMBUS AVENUE,WEST 74 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495554,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/16/2022,20:05,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495197,Sedan,,,, +07/10/2021,1:25,,,40.768276,-73.86524,"(40.768276, -73.86524)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4435429,ESU REP,Sedan,,, +10/25/2021,4:03,QUEENS,11421,,,,,,91-44 82 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4470903,Sedan,Sedan,,, +01/16/2022,21:00,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",THOMSON AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495097,Sedan,Sedan,,, +01/16/2022,0:40,BRONX,10468,,,,Bedford Park Boulevard,Villa avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,23:50,,,,,,NASSAU EXPRESSWAY,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4495044,Sedan,,,, +01/15/2022,22:30,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495514,E-Scooter,Sedan,,, +01/16/2022,13:15,,,40.690998,-73.84141,"(40.690998, -73.84141)",93 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4495218,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/16/2022,22:50,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495111,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,4:45,,,40.815525,-73.89503,"(40.815525, -73.89503)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495221,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,5:30,MANHATTAN,10012,40.720623,-73.99498,"(40.720623, -73.99498)",KENMARE STREET,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495184,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/16/2022,16:30,,,40.544075,-74.15808,"(40.544075, -74.15808)",ROBINSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,1:25,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4494740,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,21:00,,,40.865685,-73.823425,"(40.865685, -73.823425)",HUTCHINSON RIVER PARKWAY EAST,EINSTEIN LOOP,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4495645,Sedan,Sedan,,, +01/16/2022,18:30,QUEENS,11435,40.694492,-73.80361,"(40.694492, -73.80361)",,,146-42 106 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495065,Sedan,,,, +01/12/2022,15:50,QUEENS,11412,40.69943,-73.762695,"(40.69943, -73.762695)",,,191-49 113 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495485,,,,, +01/14/2022,18:00,QUEENS,11435,40.69985,-73.80974,"(40.69985, -73.80974)",144 PLACE,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495545,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,2:00,,,40.823383,-73.91835,"(40.823383, -73.91835)",EAST 158 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494803,,,,, +01/14/2022,18:04,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495570,Sedan,Pick-up Truck,,, +01/16/2022,13:18,QUEENS,11420,40.675106,-73.80979,"(40.675106, -73.80979)",128 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4495043,Sedan,Bike,,, +01/16/2022,1:00,MANHATTAN,10011,40.740704,-74.001854,"(40.740704, -74.001854)",,,111 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495186,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,0:01,,,40.66997,-73.9757,"(40.66997, -73.9757)",8 AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495101,Sedan,Sedan,,, +01/16/2022,19:40,,,40.75927,-73.980896,"(40.75927, -73.980896)",WEST 49 STREET,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4495467,Taxi,,,, +01/16/2022,20:06,QUEENS,11375,40.715797,-73.83873,"(40.715797, -73.83873)",BURNS STREET,PURITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495512,Sedan,,,, +01/16/2022,17:32,,,40.60023,-73.9956,"(40.60023, -73.9956)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,23:27,BROOKLYN,11234,40.62268,-73.926285,"(40.62268, -73.926285)",,,1492 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,Unspecified,Unspecified,,4495607,Sedan,Sedan,Motorcycle,Sedan, +01/16/2022,4:20,BRONX,10462,40.8467,-73.86668,"(40.8467, -73.86668)",,,1871 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4494971,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Taxi,, +01/16/2022,17:53,,,40.63073,-74.01734,"(40.63073, -74.01734)",7 AVENUE,OVINGTON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4494991,Sedan,Bike,,, +01/16/2022,22:50,,,40.76531,-73.99134,"(40.76531, -73.99134)",10 AVENUE,,,1,0,0,0,1,0,0,0,Passing Too Closely,Glare,,,,4495359,Bike,Sedan,,, +01/16/2022,19:50,BRONX,10465,40.842846,-73.82568,"(40.842846, -73.82568)",BRUCKNER EXPRESSWAY,COUNTRY CLUB ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4495059,Sedan,,,, +07/10/2021,23:15,,,40.615353,-73.89708,"(40.615353, -73.89708)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435596,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,13:00,,,,,,,,40 RIVER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4470934,Sedan,,,, +01/13/2022,18:00,,,40.584625,-74.15764,"(40.584625, -74.15764)",,,11 BRUNSWICK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,1:00,BROOKLYN,11207,40.67315,-73.896194,"(40.67315, -73.896194)",PENNSYLVANIA AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494923,Sedan,Sedan,,, +01/16/2022,12:50,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",WESTCHESTER AVENUE,SAINT ANNS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4495238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,2:10,BROOKLYN,11237,40.708256,-73.91997,"(40.708256, -73.91997)",CYPRESS AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495400,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,0:09,QUEENS,11374,40.72729,-73.86795,"(40.72729, -73.86795)",ALDERTON STREET,62 DRIVE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4494983,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,9:30,,,40.817173,-73.94607,"(40.817173, -73.94607)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4495117,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,16:50,QUEENS,11372,40.751232,-73.89004,"(40.751232, -73.89004)",,,76-15 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495529,Sedan,,,, +01/11/2022,10:00,MANHATTAN,10007,40.713474,-74.00483,"(40.713474, -74.00483)",CHAMBERS STREET,ELK STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495583,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,18:50,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495462,Sedan,Sedan,,, +01/16/2022,12:56,BROOKLYN,11229,40.608807,-73.9532,"(40.608807, -73.9532)",OCEAN AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495049,Sedan,Sedan,,, +01/16/2022,23:30,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495133,Sedan,,,, +01/09/2022,15:30,QUEENS,11369,40.765137,-73.88142,"(40.765137, -73.88142)",,,24-07 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495522,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,16:00,QUEENS,11377,40.745117,-73.904495,"(40.745117, -73.904495)",60 STREET,WOODSIDE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495327,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,3:29,QUEENS,11365,40.74038,-73.80456,"(40.74038, -73.80456)",164 STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4494825,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +01/12/2022,9:20,MANHATTAN,10027,40.809166,-73.942856,"(40.809166, -73.942856)",,,66 WEST 128 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495445,Sedan,,,, +01/16/2022,4:20,QUEENS,11434,40.67091,-73.771,"(40.67091, -73.771)",169 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,Unspecified,4495027,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Pick-up Truck +01/16/2022,2:23,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4495410,Sedan,,,, +01/16/2022,23:04,QUEENS,11416,40.68537,-73.8406,"(40.68537, -73.8406)",,,101-60 102 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4495254,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/16/2022,0:40,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",QUEENS BOULEVARD,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495166,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,23:30,,,40.645298,-74.10466,"(40.645298, -74.10466)",RICHMOND TERRACE,SNUG HARBOR ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495591,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,7:20,BRONX,10458,40.85814,-73.895744,"(40.85814, -73.895744)",EAST 184 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4495202,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/09/2022,22:45,,,40.767597,-73.88539,"(40.767597, -73.88539)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495524,Sedan,Sedan,,, +01/16/2022,16:01,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495078,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,5:41,,,40.621998,-74.147156,"(40.621998, -74.147156)",,,99 HOUSTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4495455,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/14/2022,20:00,MANHATTAN,10032,40.83723,-73.93884,"(40.83723, -73.93884)",WEST 164 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,,,,,,4495496,E-Scooter,,,, +01/16/2022,21:23,QUEENS,11355,40.743866,-73.82568,"(40.743866, -73.82568)",59 AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495132,Sedan,,,, +01/04/2022,14:00,,,40.806614,-73.90769,"(40.806614, -73.90769)",BRUCKNER BOULEVARD,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495418,Moped,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,4:43,QUEENS,11377,40.753902,-73.90122,"(40.753902, -73.90122)",NORTHERN BOULEVARD,61 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494868,Sedan,Sedan,,, +01/16/2022,23:46,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4495210,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,7:50,BROOKLYN,11215,40.674362,-73.98302,"(40.674362, -73.98302)",,,297 1 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4494999,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,15:11,QUEENS,11418,40.696144,-73.826645,"(40.696144, -73.826645)",,,91-45 121 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495228,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,19:15,QUEENS,11368,40.74807,-73.863335,"(40.74807, -73.863335)",102 STREET,NATIONAL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495064,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,17:30,MANHATTAN,10029,40.798515,-73.94169,"(40.798515, -73.94169)",,,1869 LEXINGTON AVENUE,1,0,1,0,0,0,0,0,,,,,,4495209,Sedan,,,, +01/13/2022,16:00,MANHATTAN,10023,40.773655,-73.97783,"(40.773655, -73.97783)",CENTRAL PARK WEST,WEST 68 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495553,Sedan,,,, +01/16/2022,7:25,BROOKLYN,11203,40.653526,-73.94697,"(40.653526, -73.94697)",,,828 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4495160,Sedan,Sedan,Sedan,SUBURBAN,Van +01/02/2022,8:14,BRONX,10466,40.89433,-73.8509,"(40.89433, -73.8509)",,,4236 BOYD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4495565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/16/2022,1:30,QUEENS,11426,40.725018,-73.72205,"(40.725018, -73.72205)",JAMAICA AVENUE,246 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494744,Sedan,,,, +01/14/2022,16:18,BRONX,10461,40.842094,-73.84836,"(40.842094, -73.84836)",MACLAY AVENUE,MONTGOMERY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4495646,Sedan,Sedan,Sedan,Sedan, +01/16/2022,7:35,BROOKLYN,11221,40.693573,-73.92275,"(40.693573, -73.92275)",EVERGREEN AVENUE,BLEECKER STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4495401,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/16/2022,0:00,,,40.702454,-73.859406,"(40.702454, -73.859406)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4494979,Sedan,,,, +01/16/2022,20:09,QUEENS,11432,40.70731,-73.804245,"(40.70731, -73.804245)",,,153-37 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4494984,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,23:30,QUEENS,11354,40.76561,-73.83104,"(40.76561, -73.83104)",,,34-25 LINDEN PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,14:00,BRONX,10465,40.824722,-73.82089,"(40.824722, -73.82089)",,,2819 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495644,Sedan,,,, +01/16/2022,23:45,QUEENS,11378,40.719406,-73.902504,"(40.719406, -73.902504)",FRESH POND ROAD,59 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495012,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,10:30,MANHATTAN,10128,40.78069,-73.9466,"(40.78069, -73.9466)",EAST 92 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495370,Taxi,Bike,,, +01/16/2022,2:00,,,,,,PROSPECT PARK WEST,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4495048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,16:45,MANHATTAN,10036,40.75671,-73.986465,"(40.75671, -73.986465)",7 AVENUE,WEST 43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495428,Bus,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,5:09,,,40.639446,-74.02696,"(40.639446, -74.02696)",RIDGE BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4494895,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,0:45,,,,,,EAST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4495298,Sedan,,,, +01/05/2022,6:45,MANHATTAN,10036,40.757908,-73.9893,"(40.757908, -73.9893)",WEST 43 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495422,Taxi,,,, +01/13/2022,21:40,,,40.625313,-74.17835,"(40.625313, -74.17835)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495453,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,3:50,,,40.672714,-73.89032,"(40.672714, -73.89032)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4494934,Sedan,Sedan,,, +01/16/2022,5:45,QUEENS,11377,40.734337,-73.91025,"(40.734337, -73.91025)",58 STREET,53 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495011,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/16/2022,11:40,QUEENS,11420,40.671528,-73.81573,"(40.671528, -73.81573)",133 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495041,Sedan,,,, +10/25/2021,5:19,,,,,,WARWICK STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471054,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,11:32,MANHATTAN,10021,40.772785,-73.96472,"(40.772785, -73.96472)",,,926 MADISON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495474,Sedan,Sedan,,, +01/12/2022,22:28,BROOKLYN,11209,40.634525,-74.02566,"(40.634525, -74.02566)",,,320 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495605,Sedan,,,, +01/16/2022,15:30,BROOKLYN,11220,40.644127,-74.00417,"(40.644127, -74.00417)",7 AVENUE,47 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4494964,Sedan,Bike,,, +01/16/2022,11:27,QUEENS,11435,40.705868,-73.80925,"(40.705868, -73.80925)",,,147-14 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4495062,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,1:05,BROOKLYN,11232,40.654953,-74.00703,"(40.654953, -74.00703)",37 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4494865,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/16/2022,21:01,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495028,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,15:35,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495258,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,17:50,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495019,Sedan,,,, +01/14/2022,12:02,,,40.828133,-73.84518,"(40.828133, -73.84518)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,,,,4495549,Tractor Truck Diesel,Sedan,,, +01/16/2022,23:00,BROOKLYN,11225,40.661846,-73.95705,"(40.661846, -73.95705)",,,1800 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4495102,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/16/2022,17:00,,,40.752888,-73.96374,"(40.752888, -73.96374)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,18:30,MANHATTAN,10030,40.819416,-73.93975,"(40.819416, -73.93975)",,,131 WEST 142 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495441,Sedan,Sedan,,, +01/05/2022,15:55,QUEENS,11385,40.709034,-73.90481,"(40.709034, -73.90481)",,,2127 GROVE STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4495417,Sedan,Sedan,,, +01/16/2022,3:00,QUEENS,11377,0,0,"(0.0, 0.0)",WOODSIDE AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4495176,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/15/2022,11:33,QUEENS,11355,40.754375,-73.8234,"(40.754375, -73.8234)",KISSENA BOULEVARD,BEECH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495511,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,10:45,,,,,,WEST 161 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495088,Sedan,Sedan,,, +01/16/2022,11:48,QUEENS,11368,40.757442,-73.86747,"(40.757442, -73.86747)",NORTHERN BOULEVARD,101 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495530,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,14:30,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495070,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,6:30,,,40.654533,-73.860916,"(40.654533, -73.860916)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4494811,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,18:20,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495566,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,19:57,,,40.663605,-73.934395,"(40.663605, -73.934395)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4494992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/16/2022,23:03,,,40.75819,-73.82318,"(40.75819, -73.82318)",SANFORD AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495134,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,11:30,BROOKLYN,11209,40.62806,-74.02029,"(40.62806, -74.02029)",BAY RIDGE PARKWAY,6 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4495488,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/16/2022,19:39,BROOKLYN,11203,40.65446,-73.930695,"(40.65446, -73.930695)",,,770 UTICA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4495158,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/16/2022,12:35,,,40.759327,-73.82597,"(40.759327, -73.82597)",UNION STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495249,Sedan,Bike,,, +07/10/2021,18:38,BRONX,10466,40.88882,-73.843056,"(40.88882, -73.843056)",EAST 233 STREET,EDSON AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4435943,Sedan,Motorcycle,,, +01/15/2022,9:15,BRONX,10462,40.837456,-73.85828,"(40.837456, -73.85828)",,,1527 UNIONPORT ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495500,,,,, +01/16/2022,20:17,QUEENS,11104,40.74646,-73.91709,"(40.74646, -73.91709)",SKILLMAN AVENUE,47 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495114,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,13:10,BROOKLYN,11235,40.59126,-73.94012,"(40.59126, -73.94012)",,,3785 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495050,Sedan,,,, +01/15/2022,16:40,MANHATTAN,10023,40.77537,-73.98772,"(40.77537, -73.98772)",WEST 65 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495556,Sedan,,,, +01/12/2022,12:47,MANHATTAN,10024,40.78202,-73.97173,"(40.78202, -73.97173)",WEST 81 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495580,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,16:59,,,40.702007,-73.821205,"(40.702007, -73.821205)",JAMAICA AVENUE,131 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4495325,Sedan,Sedan,,, +01/15/2022,17:00,BRONX,10472,40.830765,-73.863235,"(40.830765, -73.863235)",,,1206 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495464,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,17:12,MANHATTAN,10013,40.720375,-74.003265,"(40.720375, -74.003265)",CANAL STREET,GREENE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495164,Sedan,Sedan,,, +01/16/2022,10:45,,,40.69037,-73.92755,"(40.69037, -73.92755)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495213,Sedan,Sedan,,, +01/10/2022,14:00,QUEENS,11368,40.754917,-73.86427,"(40.754917, -73.86427)",35 AVENUE,104 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495521,Box Truck,Sedan,,, +01/16/2022,12:00,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",FLATLANDS AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495229,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,1:25,QUEENS,11372,40.756145,-73.8798,"(40.756145, -73.8798)",88 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495525,Sedan,,,, +01/16/2022,2:29,QUEENS,11423,40.72023,-73.776054,"(40.72023, -73.776054)",,,86-05 188 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4494745,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,21:47,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495654,Taxi,Box Truck,,, +01/16/2022,23:23,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495559,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,2:15,,,40.761486,-73.96061,"(40.761486, -73.96061)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4495087,Sedan,Sedan,,, +01/16/2022,16:05,,,40.700356,-73.912575,"(40.700356, -73.912575)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495402,Sedan,,,, +01/16/2022,19:55,,,40.742504,-73.73431,"(40.742504, -73.73431)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4494986,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/16/2022,19:30,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495383,Sedan,Convertible,,, +01/16/2022,20:00,STATEN ISLAND,10301,40.637833,-74.08193,"(40.637833, -74.08193)",CORSON AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495590,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/15/2022,19:45,,,40.753143,-73.89062,"(40.753143, -73.89062)",76 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495493,,,,, +01/16/2022,11:25,QUEENS,11104,40.73974,-73.92319,"(40.73974, -73.92319)",42 STREET,48 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,11:50,BRONX,10457,40.8466,-73.90381,"(40.8466, -73.90381)",EAST 175 STREET,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495199,Sedan,Sedan,,, +01/15/2022,15:12,,,40.62459,-74.14129,"(40.62459, -74.14129)",DECKER AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4495459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,15:40,BRONX,10467,40.871597,-73.87727,"(40.871597, -73.87727)",,,371 EAST 204 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495276,Sedan,,,, +01/16/2022,22:00,BROOKLYN,11208,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,DREW STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4495018,Sedan,,,, +01/16/2022,2:12,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",6 AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495047,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,0:00,,,,,,WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471209,Sedan,Tow Truck / Wrecker,,, +01/16/2022,6:25,,,40.739635,-73.86074,"(40.739635, -73.86074)",55 AVENUE,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4494900,,,,, +01/16/2022,10:20,BRONX,10472,40.836407,-73.87678,"(40.836407, -73.87678)",,,1440 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4495300,Sedan,PK,,, +01/16/2022,20:40,QUEENS,11354,40.766922,-73.83548,"(40.766922, -73.83548)",DOWNING STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495131,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/11/2022,15:25,BROOKLYN,11215,40.67149,-73.99637,"(40.67149, -73.99637)",12 STREET,HAMILTON PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4495625,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,0:10,QUEENS,11434,40.66697,-73.767,"(40.66697, -73.767)",SOUTHERN PARKWAY,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,,4495020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,19:55,BRONX,10461,40.834812,-73.830124,"(40.834812, -73.830124)",,,3333 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495051,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,10:30,BRONX,10462,40.842083,-73.85667,"(40.842083, -73.85667)",,,2040 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495465,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,14:48,BROOKLYN,11219,40.63375,-73.99346,"(40.63375, -73.99346)",,,5118 13 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,17:10,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4495431,Convertible,Taxi,,, +01/16/2022,9:56,,,40.65869,-73.950424,"(40.65869, -73.950424)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494894,Taxi,,,, +01/16/2022,4:17,BROOKLYN,11236,40.633877,-73.908905,"(40.633877, -73.908905)",,,1061 EAST 82 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4495208,Sedan,Sedan,Sedan,, +01/16/2022,2:00,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",2 AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4494976,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,5:30,STATEN ISLAND,10310,40.634293,-74.12025,"(40.634293, -74.12025)",,,1118 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4495324,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,0:27,QUEENS,11418,40.69467,-73.83307,"(40.69467, -73.83307)",114 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494836,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,11:16,QUEENS,11423,40.7111,-73.77783,"(40.7111, -73.77783)",,,183-02 90 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495063,Sedan,,,, +01/15/2022,12:00,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4495421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/16/2022,11:15,QUEENS,11422,40.662186,-73.737946,"(40.662186, -73.737946)",143 AVENUE,243 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4495257,Sedan,Sedan,,, +01/16/2022,0:00,MANHATTAN,10034,40.866062,-73.92251,"(40.866062, -73.92251)",VERMILYEA AVENUE,WEST 204 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4495010,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/08/2022,1:35,,,40.774113,-73.98863,"(40.774113, -73.98863)",WEST END AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4495576,Taxi,,,, +01/16/2022,4:50,QUEENS,11369,40.758884,-73.871666,"(40.758884, -73.871666)",97 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495532,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,15:20,,,40.605495,-73.98307,"(40.605495, -73.98307)",KINGS HIGHWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4495151,Sedan,Bike,,, +01/16/2022,21:05,BROOKLYN,11212,40.668125,-73.90358,"(40.668125, -73.90358)",SUTTER AVENUE,POWELL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495104,Pick-up Truck,,,, +01/16/2022,18:35,BRONX,10457,40.844368,-73.88902,"(40.844368, -73.88902)",PROSPECT AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495469,,,,, +01/10/2022,18:19,QUEENS,11366,40.720818,-73.80637,"(40.720818, -73.80637)",161 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495509,Sedan,Sedan,,, +01/16/2022,16:24,BROOKLYN,11210,40.631287,-73.945564,"(40.631287, -73.945564)",,,1623 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4495159,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,20:08,,,40.607666,-74.0336,"(40.607666, -74.0336)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4494993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,0:00,QUEENS,11104,,,,39 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471437,Sedan,,,, +01/16/2022,15:38,BRONX,10469,40.876476,-73.84608,"(40.876476, -73.84608)",,,3371 EASTCHESTER ROAD,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4494962,Sedan,E-Scooter,,, +01/11/2022,9:57,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495601,Tractor Truck Diesel,Sedan,,, +01/16/2022,22:25,QUEENS,11428,40.720673,-73.742325,"(40.720673, -73.742325)",,,92-62 215 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495337,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,7:18,MANHATTAN,10027,40.811096,-73.95235,"(40.811096, -73.95235)",,,310 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495440,Sedan,,,, +01/16/2022,21:20,,,40.772984,-73.88942,"(40.772984, -73.88942)",81 STREET,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4495032,Sedan,,,, +01/16/2022,14:57,STATEN ISLAND,10312,40.550816,-74.16572,"(40.550816, -74.16572)",ELTINGVILLE BOULEVARD,KATAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495179,Station Wagon/Sport Utility Vehicle,MAIL TRUCK,,, +01/06/2022,14:00,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4495416,,,,, +01/16/2022,17:04,BRONX,10451,40.823467,-73.91622,"(40.823467, -73.91622)",EAST 159 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495245,Sedan,Sedan,,, +01/16/2022,17:15,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4494935,Sedan,Sedan,,, +01/16/2022,6:20,,,40.682037,-74.00232,"(40.682037, -74.00232)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4494815,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,5:28,QUEENS,11372,40.74826,-73.877884,"(40.74826, -73.877884)",,,88-04 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495066,Sedan,,,, +01/16/2022,18:23,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",WHITE PLAINS ROAD,EAST 241 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4495190,Sedan,Sedan,,, +01/16/2022,14:47,QUEENS,11417,40.673374,-73.8565,"(40.673374, -73.8565)",80 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495039,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,12:41,,,40.824562,-73.87259,"(40.824562, -73.87259)",BRUCKNER BOULEVARD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495548,Sedan,,,, +01/16/2022,17:30,BRONX,10466,40.89063,-73.85892,"(40.89063, -73.85892)",EAST 229 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495568,Sedan,,,, +01/11/2022,6:00,,,40.6957,-73.75674,"(40.6957, -73.75674)",196 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495486,Sedan,,,, +01/16/2022,18:20,,,40.828407,-73.93125,"(40.828407, -73.93125)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495089,Sedan,Sedan,,, +01/12/2022,9:28,BROOKLYN,11216,40.676243,-73.95269,"(40.676243, -73.95269)",ROGERS AVENUE,BERGEN STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4495501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/16/2022,19:20,BROOKLYN,11236,40.64174,-73.90366,"(40.64174, -73.90366)",,,9305 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4495303,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/16/2022,23:18,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495409,Sedan,,,, +12/16/2021,19:51,BROOKLYN,11217,40.681797,-73.97681,"(40.681797, -73.97681)",,,37 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495624,Sedan,Sedan,,, +01/16/2022,20:46,BRONX,10468,40.865223,-73.90145,"(40.865223, -73.90145)",,,2529A GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495278,Sedan,,,, +01/16/2022,15:56,BROOKLYN,11234,40.61941,-73.93714,"(40.61941, -73.93714)",,,1513 KIMBALL STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4494975,Pick-up Truck,,,, +01/16/2022,1:55,QUEENS,11434,40.667847,-73.77612,"(40.667847, -73.77612)",159 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495022,Pick-up Truck,Sedan,,, +01/14/2022,10:30,,,40.60809,-74.14093,"(40.60809, -74.14093)",WOOLLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495450,Dump,Sedan,,, +01/11/2022,8:00,,,,,,,,148 VANCORTLANDT PARK WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4495432,Sedan,,,, +01/16/2022,2:36,QUEENS,11385,40.70143,-73.88707,"(40.70143, -73.88707)",,,66-35 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4494905,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/16/2022,14:05,,,,,,SCHERMERHORN ST & 3RD AVE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4494989,Taxi,,,, +10/12/2021,13:50,,,,,,BERGEN STREET,BERGEN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471502,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,11:44,BRONX,10462,40.833717,-73.8483,"(40.833717, -73.8483)",,,1240 HAVEMEYER AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4495494,Sedan,E-Bike,,, +01/16/2022,1:21,QUEENS,11101,40.740704,-73.931526,"(40.740704, -73.931526)",34 STREET,48 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,15:00,,,40.78049,-73.983986,"(40.78049, -73.983986)",WEST 73 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4495555,Sedan,Garbage or Refuse,,, +01/16/2022,11:26,QUEENS,11432,40.70975,-73.79562,"(40.70975, -73.79562)",167 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4495560,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,2:32,,,,,,109 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4494749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,17:45,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",2 AVENUE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495207,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,15:00,QUEENS,11417,40.683994,-73.83895,"(40.683994, -73.83895)",103 STREET,103 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495231,Sedan,,,, +01/15/2022,11:15,,,40.8827,-73.892845,"(40.8827, -73.892845)",SEDGWICK AVENUE,STEVENSON PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495657,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,0:10,BROOKLYN,11222,40.7196,-73.94391,"(40.7196, -73.94391)",HERBERT STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495086,Sedan,Sedan,,, +01/16/2022,10:00,,,40.635647,-74.158,"(40.635647, -74.158)",,,35 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495460,Sedan,,,, +01/16/2022,8:00,BRONX,10469,40.858948,-73.83625,"(40.858948, -73.83625)",ASTOR AVENUE,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4495130,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,21:30,,,40.606556,-73.973625,"(40.606556, -73.973625)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495215,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,20:00,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495016,Sedan,Sedan,,, +01/16/2022,10:33,BROOKLYN,11225,40.668224,-73.953445,"(40.668224, -73.953445)",ROGERS AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4494893,Sedan,,,, +01/16/2022,8:40,MANHATTAN,10019,40.76515,-73.985115,"(40.76515, -73.985115)",,,321 WEST 54 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495396,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,19:48,BRONX,10472,40.830097,-73.87955,"(40.830097, -73.87955)",,,1263 ELDER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4495466,Sedan,,,, +01/16/2022,21:40,QUEENS,11368,40.75513,-73.84391,"(40.75513, -73.84391)",,,124-02 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4495057,Sedan,,,, +01/16/2022,19:12,,,40.6708,-73.83596,"(40.6708, -73.83596)",BRISTOL AVENUE,HAWTREE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495045,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,0:40,BROOKLYN,11208,40.68338,-73.869255,"(40.68338, -73.869255)",,,275 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4463721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:15,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4465249,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/23/2021,19:44,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471593,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:30,,,40.774,-73.83001,"(40.774, -73.83001)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4471559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:00,,,40.79292,-73.94579,"(40.79292, -73.94579)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471667,Sedan,,,, +10/25/2021,16:45,BRONX,10455,40.81516,-73.91774,"(40.81516, -73.91774)",BERGEN AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471643,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,21:21,STATEN ISLAND,10306,40.570354,-74.10986,"(40.570354, -74.10986)",,,2502 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471590,Sedan,Garbage or Refuse,,, +10/25/2021,19:50,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",HILLSIDE AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471562,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,22:53,BROOKLYN,11208,40.675285,-73.8819,"(40.675285, -73.8819)",,,765 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486027,Sedan,Sedan,,, +10/25/2021,22:40,,,40.74209,-73.854324,"(40.74209, -73.854324)",108 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471023,Sedan,,,, +10/25/2021,21:06,MANHATTAN,10075,40.771076,-73.947586,"(40.771076, -73.947586)",EAST 80 STREET,EAST END AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470943,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,8:00,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471418,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,11:30,,,40.681995,-74.002625,"(40.681995, -74.002625)",SUMMIT STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471371,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,0:23,,,40.743374,-73.83591,"(40.743374, -73.83591)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4495425,Sedan,Garbage or Refuse,,, +10/25/2021,8:00,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470925,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,22:07,BROOKLYN,11212,40.655464,-73.91385,"(40.655464, -73.91385)",,,540 ROCKAWAY PARKWAY,1,0,0,0,0,0,0,0,Pavement Slippery,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471070,E-Bike,Sedan,,, +10/25/2021,14:25,BRONX,10455,40.81238,-73.903244,"(40.81238, -73.903244)",,,560 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470969,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,22:10,BROOKLYN,11222,40.720787,-73.94651,"(40.720787, -73.94651)",NEWTON STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471325,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,17:44,BRONX,10469,40.8703,-73.839905,"(40.8703, -73.839905)",ADEE AVENUE,TIEMANN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471477,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,8:45,QUEENS,11377,40.75016,-73.90434,"(40.75016, -73.90434)",37 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495113,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,6:25,,,,,,AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470981,Station Wagon/Sport Utility Vehicle,PK,,, +10/20/2021,13:00,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471405,Sedan,Sedan,,, +10/13/2021,20:23,BROOKLYN,11212,40.670296,-73.906555,"(40.670296, -73.906555)",,,1800 PITKIN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4471463,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,2:16,BROOKLYN,11234,40.628586,-73.92113,"(40.628586, -73.92113)",AVENUE J,EAST 57 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4495172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,6:00,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495587,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,19:44,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",BREWER BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471029,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/25/2021,20:20,BRONX,10472,40.82851,-73.88012,"(40.82851, -73.88012)",WESTCHESTER AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,13:50,BRONX,10456,40.827755,-73.9117,"(40.827755, -73.9117)",EAST 165 STREET,BROOK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4471076,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/25/2021,0:00,QUEENS,11411,,,,,,233-10 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471141,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,4:35,QUEENS,11368,40.751575,-73.85584,"(40.751575, -73.85584)",111 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4495526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,23:25,,,40.577003,-74.00217,"(40.577003, -74.00217)",NEPTUNE AVENUE,,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495198,Sedan,Bike,,, +01/16/2022,5:40,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495091,Sedan,,,, +01/12/2022,16:29,BRONX,10457,40.85429,-73.90027,"(40.85429, -73.90027)",EAST 181 STREET,RYER AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4495505,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,21:19,STATEN ISLAND,10304,40.626965,-74.08215,"(40.626965, -74.08215)",,,1 GORDON STREET,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4471134,Sedan,,,, +10/25/2021,22:41,MANHATTAN,10035,40.80153,-73.93669,"(40.80153, -73.93669)",,,212 EAST 122 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4470961,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:53,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",WEST 179 STREET,CEDAR AVENUE,,3,0,0,0,0,0,3,0,Oversized Vehicle,Passing Too Closely,,,,4470990,Box Truck,Sedan,,, +10/25/2021,22:53,BROOKLYN,11236,40.64179,-73.91148,"(40.64179, -73.91148)",EAST 87 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471187,Sedan,Sedan,,, +10/25/2021,16:35,,,40.676003,-73.865395,"(40.676003, -73.865395)",CONDUIT BOULEVARD,GRANT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471051,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,8:00,QUEENS,11368,,,,,,104-15 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471158,Sedan,,,, +01/05/2022,8:30,QUEENS,11101,40.755363,-73.94595,"(40.755363, -73.94595)",,,41-08 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,16:50,BROOKLYN,11203,40.648396,-73.94449,"(40.648396, -73.94449)",,,275 EAST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495534,Sedan,Sedan,,, +10/25/2021,13:08,BROOKLYN,11229,,,,KINGS HIGHWAY,EAST 17 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470932,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,1:00,,,40.62748,-74.01789,"(40.62748, -74.01789)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471493,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,15:05,BRONX,10462,40.839745,-73.85796,"(40.839745, -73.85796)",,,1559 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471046,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,16:15,MANHATTAN,10018,40.756123,-73.991165,"(40.756123, -73.991165)",,,300 WEST 40 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4471357,Sedan,E-Bike,,, +10/25/2021,10:28,BROOKLYN,11238,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,CLASSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471503,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,2:47,MANHATTAN,10009,40.724266,-73.978714,"(40.724266, -73.978714)",,,110 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,,,,,4495153,Taxi,,,, +10/25/2021,8:20,,,,,,WEST 124 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4470913,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,8:24,,,,,,BORDEN AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471441,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,8:53,BROOKLYN,11237,,,,METROPOLITAN AVENUE,SCOTT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471323,Motorcycle,Van,,, +10/25/2021,23:32,BROOKLYN,11208,40.674564,-73.87767,"(40.674564, -73.87767)",,,2562 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,1:10,,,,,,WEST 155 STREET,HENRY HUDSON PARKWAY,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4471094,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/25/2021,14:16,BROOKLYN,11206,40.711277,-73.93772,"(40.711277, -73.93772)",,,110 WATERBURY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471276,Sedan,,,, +10/23/2021,9:00,QUEENS,11377,,,,35 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471433,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,18:20,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470953,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,17:20,MANHATTAN,10034,40.86155,-73.92108,"(40.86155, -73.92108)",,,3784 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471380,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,5:55,BRONX,10468,,,,WEST FORDHAM ROAD,DAVIDSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470982,,,,, +10/25/2021,23:19,BROOKLYN,11212,,,,,,44 CHRISTOPHER AVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470920,Sedan,,,, +10/25/2021,10:30,QUEENS,11355,,,,NORTHERN BOULEVARD,COLLEGE POINT BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471037,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,5:30,BRONX,10460,,,,EAST 179 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471482,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,21:09,BRONX,10461,40.856842,-73.85915,"(40.856842, -73.85915)",PELHAM PARKWAY SOUTH,LURTING AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4471344,Station Wagon/Sport Utility Vehicle,Bike,,, +10/25/2021,7:18,STATEN ISLAND,10301,40.63626,-74.0876,"(40.63626, -74.0876)",PINE STREET,CORSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471511,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,22:02,,,40.69706,-73.91933,"(40.69706, -73.91933)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4471007,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,16:25,MANHATTAN,10009,40.726864,-73.97991,"(40.726864, -73.97991)",EAST 10 STREET,AVENUE B,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470927,Station Wagon/Sport Utility Vehicle,Bike,,, +10/25/2021,0:00,BRONX,10465,40.82664,-73.82969,"(40.82664, -73.82969)",,,2775 CROSS BRONX EXPRESSWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471009,Sedan,Bus,,, +10/25/2021,16:30,MANHATTAN,10012,40.724396,-74.00164,"(40.724396, -74.00164)",,,156 SPRING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470971,Sedan,,,, +10/25/2021,21:50,,,40.675224,-73.89097,"(40.675224, -73.89097)",LIBERTY AVENUE,,,1,0,0,0,0,0,0,0,Pavement Slippery,,,,,4471394,E-Bike,,,, +10/25/2021,7:05,,,,,,43 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471445,Station Wagon/Sport Utility Vehicle,Bike,,, +10/25/2021,18:00,BROOKLYN,11225,40.663906,-73.95098,"(40.663906, -73.95098)",EMPIRE BOULEVARD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470908,Sedan,Bus,,, +10/25/2021,13:45,,,40.847965,-73.87145,"(40.847965, -73.87145)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4471240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,23:35,BROOKLYN,11220,,,,50 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471509,Sedan,Bike,,, +10/23/2021,1:00,MANHATTAN,10001,,,,,,235 WEST 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471368,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,3:09,STATEN ISLAND,10301,,,,WESTERVELT AVENUE,HENDRICKS AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4470634,Sedan,Sedan,Sedan,, +10/24/2021,21:11,,,,,,MANHATTAN AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471409,Sedan,Bike,,, +10/25/2021,5:45,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470976,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,0:00,BRONX,10470,40.89551,-73.863495,"(40.89551, -73.863495)",,,4201 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471467,Sedan,Sedan,,, +10/25/2021,18:50,QUEENS,11378,40.723213,-73.89412,"(40.723213, -73.89412)",69 STREET,CALDWELL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471208,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,18:36,BRONX,10460,40.843945,-73.88818,"(40.843945, -73.88818)",,,790 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,,,,4471343,Sedan,MOPED,,, +10/25/2021,0:30,BROOKLYN,11210,,,,FLATBUSH AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4470944,Sedan,van,,, +06/06/2021,23:02,,,40.734314,-73.93803,"(40.734314, -73.93803)",REVIEW AVENUE,GREENPOINT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4424131,E-Bike,Taxi,,, +05/24/2021,19:06,,,40.789623,-73.94007,"(40.789623, -73.94007)",EAST 106 STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4424456,Station Wagon/Sport Utility Vehicle,E-Bike,,, +06/26/2021,3:25,QUEENS,11420,40.677,-73.81965,"(40.677, -73.81965)",115 AVENUE,LEFFERTS BOULEVARD,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4431526,Sedan,Sedan,,, +07/10/2021,10:46,QUEENS,11691,40.594982,-73.76955,"(40.594982, -73.76955)",ROCKAWAY BEACH BOULEVARD,BEACH 37 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4436367,Sedan,,,, +07/10/2021,3:25,MANHATTAN,10065,40.764286,-73.95562,"(40.764286, -73.95562)",YORK AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436377,Sedan,,,, +07/06/2021,14:16,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436346,Sedan,Sedan,,, +07/09/2021,20:00,,,40.728603,-74.005325,"(40.728603, -74.005325)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436359,Sedan,Box Truck,,, +07/09/2021,9:25,,,40.594902,-74.14273,"(40.594902, -74.14273)",FOREST HILL ROAD,PILCHER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436390,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,23:19,,,,,,JACKSON AVENUE,46 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471440,Sedan,Sedan,,, +10/25/2021,9:00,BRONX,10455,,,,,,762 FOX STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470834,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,18:42,QUEENS,11432,,,,HILLSIDE AVENUE,178 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471534,Sedan,,,, +10/25/2021,22:00,BROOKLYN,11201,40.688614,-73.989174,"(40.688614, -73.989174)",ATLANTIC AVENUE,SMITH STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470904,Sedan,Bike,,, +10/25/2021,13:45,QUEENS,11372,40.753277,-73.89634,"(40.753277, -73.89634)",,,33-32 70 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4471162,Sedan,,,, +10/25/2021,14:50,,,40.668625,-73.738235,"(40.668625, -73.738235)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470921,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,18:00,BRONX,10456,40.830353,-73.90347,"(40.830353, -73.90347)",EAST 168 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435621,Sedan,,,, +07/10/2021,23:12,,,40.769955,-73.836426,"(40.769955, -73.836426)",WHITESTONE EXPRESSWAY,DOWNING STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435797,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,15:00,QUEENS,11370,40.772594,-73.88936,"(40.772594, -73.88936)",,,19-16 81 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4436323,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/10/2021,19:10,BROOKLYN,11212,40.65468,-73.90734,"(40.65468, -73.90734)",,,1417 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436172,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,19:05,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",EASTERN PARKWAY,PACIFIC STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436142,Sedan,E-Bike,,, +07/10/2021,5:15,QUEENS,11105,40.7685,-73.90465,"(40.7685, -73.90465)",46 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4435717,Sedan,Sedan,,, +05/20/2021,8:35,MANHATTAN,10019,40.761734,-73.98089,"(40.761734, -73.98089)",,,135 WEST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436044,Sedan,,,, +07/10/2021,9:56,MANHATTAN,10033,40.846535,-73.932045,"(40.846535, -73.932045)",CROSS BRONX EXPRESSWAY,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4435846,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +06/03/2021,10:14,QUEENS,11434,40.68372,-73.78468,"(40.68372, -73.78468)",FOCH BOULEVARD,LONG STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436119,Sedan,Sedan,,, +07/10/2021,18:15,STATEN ISLAND,10309,40.54997,-74.21127,"(40.54997, -74.21127)",ROSSVILLE AVENUE,BERRY COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4436206,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/07/2021,4:30,BRONX,10463,40.885296,-73.895424,"(40.885296, -73.895424)",,,3900 BAILEY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4436265,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,1:15,,,40.70114,-73.73827,"(40.70114, -73.73827)",114 ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4435437,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/10/2021,15:50,MANHATTAN,10002,40.720417,-73.99268,"(40.720417, -73.99268)",,,153 CHRYSTIE STREET,1,0,0,0,1,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4435856,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,20:40,BROOKLYN,11212,,,,Rutland rd,East 98,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436169,Sedan,,,, +07/01/2021,16:00,,,40.532116,-74.15603,"(40.532116, -74.15603)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4436197,Sedan,,,, +07/05/2021,8:30,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436099,Sedan,,,, +07/10/2021,4:00,BRONX,10468,40.86348,-73.90812,"(40.86348, -73.90812)",WEBB AVENUE,FORDHAM HILL OVAL,,0,0,0,0,0,0,0,0,Alcohol Involvement,Traffic Control Disregarded,Traffic Control Disregarded,Traffic Control Disregarded,,4435462,Sedan,Taxi,Sedan,Sedan, +07/10/2021,14:00,BRONX,10466,40.886555,-73.85912,"(40.886555, -73.85912)",,,765 EAST 224 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435951,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,7:45,BROOKLYN,11207,40.66713,-73.89173,"(40.66713, -73.89173)",,,474 WYONA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436001,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2021,12:30,BRONX,10462,,,,CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436051,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,18:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4436067,Station Wagon/Sport Utility Vehicle,Convertible,,, +07/10/2021,9:10,QUEENS,11357,40.784466,-73.79995,"(40.784466, -73.79995)",16 AVENUE,163 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,13:52,BRONX,10462,40.848362,-73.86252,"(40.848362, -73.86252)",MATTHEWS AVENUE,RHINELANDER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435520,Sedan,Taxi,,, +07/02/2021,6:35,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436239,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,15:45,BRONX,10471,40.909824,-73.90154,"(40.909824, -73.90154)",,,420 WEST 261 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436255,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,11:05,BRONX,10467,,,,BARNES AVENUE,EAST GUN HILL ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471476,,,,, +07/10/2021,18:25,MANHATTAN,10019,40.75925,-73.97693,"(40.75925, -73.97693)",,,1 WEST 51 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,14:00,BROOKLYN,11217,40.680923,-73.97972,"(40.680923, -73.97972)",,,640 WARREN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435521,Station Wagon/Sport Utility Vehicle,unknown,,, +07/10/2021,3:15,,,40.67506,-73.916626,"(40.67506, -73.916626)",SARATOGA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436183,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,0:33,MANHATTAN,10025,40.7991,-73.96855,"(40.7991, -73.96855)",WEST 103 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435592,Taxi,,,, +07/10/2021,3:52,BRONX,10456,40.82699,-73.909294,"(40.82699, -73.909294)",WASHINGTON AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4435496,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,22:00,,,40.69579,-73.93313,"(40.69579, -73.93313)",BROADWAY,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4436066,E-Bike,Sedan,,, +07/10/2021,2:35,,,40.74967,-73.99531,"(40.74967, -73.99531)",WEST 30 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435839,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,18:30,,,40.702343,-73.94239,"(40.702343, -73.94239)",GRAHAM AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435879,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,20:56,MANHATTAN,10034,40.86114,-73.91894,"(40.86114, -73.91894)",9 AVENUE,WEST 203 STREET,,0,0,0,0,0,0,0,0,Animals Action,,,,,4436091,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,22:40,,,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436005,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,16:04,,,40.698452,-73.92176,"(40.698452, -73.92176)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436078,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,6:00,BROOKLYN,11222,40.72731,-73.95719,"(40.72731, -73.95719)",,,53 FRANKLIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435515,Sedan,,,, +07/10/2021,20:55,,,40.692856,-73.74703,"(40.692856, -73.74703)",119 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4435586,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,14:30,,,40.682426,-73.937935,"(40.682426, -73.937935)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4435737,Taxi,Sedan,,, +06/15/2021,18:45,,,40.685028,-73.94135,"(40.685028, -73.94135)",PUTNAM AVENUE,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4436221,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/04/2021,1:00,QUEENS,11433,40.691334,-73.79379,"(40.691334, -73.79379)",,,156-17 110 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4436300,Sedan,Sedan,,, +07/10/2021,5:53,BROOKLYN,11208,40.686504,-73.87001,"(40.686504, -73.87001)",LINCOLN AVENUE,O BRIEN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436000,Sedan,Sedan,,, +07/09/2021,17:06,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436132,Sedan,Sedan,,, +07/02/2021,11:28,BRONX,10463,40.877537,-73.91039,"(40.877537, -73.91039)",,,73 ADRIAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436240,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,12:10,,,40.59976,-73.903336,"(40.59976, -73.903336)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4435597,Sedan,Sedan,,, +07/06/2021,10:06,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436286,Tractor Truck Diesel,Bus,,, +07/10/2021,14:29,QUEENS,11411,40.69696,-73.728065,"(40.69696, -73.728065)",,,115-04 231 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435636,Pick-up Truck,Bike,,, +07/06/2021,14:45,BROOKLYN,11231,40.675842,-73.99905,"(40.675842, -73.99905)",COURT STREET,HUNTINGTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436187,Sedan,,,, +07/10/2021,6:00,BROOKLYN,11204,40.61509,-73.98662,"(40.61509, -73.98662)",,,2009 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435536,Sedan,,,, +07/10/2021,5:15,QUEENS,11434,40.68511,-73.78654,"(40.68511, -73.78654)",116 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436118,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,9:45,,,40.627293,-74.16622,"(40.627293, -74.16622)",,,2294 FOREST AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436034,Sedan,Sedan,,, +07/10/2021,12:15,BRONX,10473,40.818672,-73.86669,"(40.818672, -73.86669)",,,1720 SEWARD AVENUE,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4436058,Moped,Sedan,,, +07/10/2021,16:18,,,40.676895,-73.93593,"(40.676895, -73.93593)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436294,Sedan,Sedan,,, +06/25/2021,18:06,QUEENS,11412,40.698566,-73.769585,"(40.698566, -73.769585)",WOOD STREET,ILION AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,,,,4436111,Sedan,Sedan,,, +07/08/2021,1:50,,,40.69488,-73.94042,"(40.69488, -73.94042)",WILLOUGHBY AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436178,Sedan,Sedan,,, +07/10/2021,13:00,,,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4435819,Bus,,,, +07/03/2021,5:51,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436156,4 dr sedan,Sedan,,, +07/10/2021,21:27,MANHATTAN,10007,,,,CHAMBERS STREET,CENTRE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4435859,Sedan,,,, +06/25/2021,17:45,MANHATTAN,10014,40.729588,-74.00809,"(40.729588, -74.00809)",,,46 CLARKSON STREET,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4436368,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,0:15,BROOKLYN,11232,40.655987,-74.002686,"(40.655987, -74.002686)",4 AVENUE,33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435688,Bike,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,22:04,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",HUDSON STREET,LAIGHT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436381,,,,, +07/10/2021,17:16,BRONX,10467,40.88055,-73.864525,"(40.88055, -73.864525)",EAST 215 STREET,WHITE PLAINS ROAD,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4435977,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,11:45,STATEN ISLAND,10307,40.510815,-74.24199,"(40.510815, -74.24199)",AMBOY ROAD,WOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436210,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,22:09,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435604,Taxi,Bike,,, +07/09/2021,16:17,STATEN ISLAND,10308,40.553837,-74.14578,"(40.553837, -74.14578)",GREAVES AVENUE,GREAVES LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4436124,Sedan,Sedan,,, +07/06/2021,11:00,BRONX,10463,40.884277,-73.90586,"(40.884277, -73.90586)",,,3419 IRWIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436245,Sedan,Sedan,,, +07/10/2021,10:00,QUEENS,11420,40.681503,-73.81782,"(40.681503, -73.81782)",111 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435922,Sedan,Pick-up Truck,,, +07/10/2021,20:55,QUEENS,11105,40.7778,-73.91308,"(40.7778, -73.91308)",DITMARS BOULEVARD,27 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435718,Sedan,Moped,,, +07/10/2021,16:05,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4435926,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/10/2021,10:07,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435848,Pick-up Truck,Sedan,,, +07/09/2021,11:10,BROOKLYN,11231,40.680317,-73.996895,"(40.680317, -73.996895)",COURT STREET,1 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436163,Sedan,Taxi,,, +07/10/2021,0:25,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435430,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Taxi,, +07/10/2021,22:58,,,40.691765,-73.99992,"(40.691765, -73.99992)",ATLANTIC AVENUE,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4436193,Sedan,E-Bike,,, +07/10/2021,16:54,BRONX,10463,40.887478,-73.903824,"(40.887478, -73.903824)",WALDO AVENUE,DASH PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436270,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,10:46,,,40.623623,-73.92637,"(40.623623, -73.92637)",AVENUE L,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435630,Bike,,,, +07/09/2021,19:35,MANHATTAN,10040,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,NAGLE AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436103,Sedan,Sedan,,, +07/07/2021,5:12,,,,,,VERRAZANO BRIDGE,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4436262,Pick-up Truck,,,, +07/05/2021,15:30,BRONX,10463,40.88572,-73.91028,"(40.88572, -73.91028)",,,565 WEST 235 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436244,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,9:30,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436141,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,4:53,QUEENS,11001,40.730022,-73.708534,"(40.730022, -73.708534)",,,87-40 257 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435438,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2021,16:24,BROOKLYN,11212,40.670956,-73.91107,"(40.670956, -73.91107)",ROCKAWAY AVENUE,GLENMORE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436170,Sedan,Sedan,,, +10/25/2021,10:43,BROOKLYN,11216,40.679832,-73.95322,"(40.679832, -73.95322)",BEDFORD AVENUE,HERKIMER STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4471019,Box Truck,Bike,,, +07/10/2021,21:20,,,40.732613,-73.925156,"(40.732613, -73.925156)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4435602,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/10/2021,23:18,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435849,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,18:59,STATEN ISLAND,10309,40.523514,-74.21597,"(40.523514, -74.21597)",,,6322 AMBOY ROAD,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4436198,Sedan,Sedan,,, +07/10/2021,12:45,,,40.645596,-73.999054,"(40.645596, -73.999054)",42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435689,Van,Convertible,,, +07/10/2021,15:30,,,,,,,,101 EAST DRIVE,2,0,0,0,2,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4436097,Bike,Bike,,, +07/10/2021,13:30,STATEN ISLAND,10306,40.576405,-74.127075,"(40.576405, -74.127075)",RICHMOND ROAD,ROCKLAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436123,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/10/2021,15:39,,,40.789017,-73.81865,"(40.789017, -73.81865)",CROSS ISLAND PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4435808,Sedan,Sedan,Sedan,, +07/08/2021,13:59,,,,,,ASTORIA BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436324,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,20:43,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",ROCKAWAY PARKWAY,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436257,Sedan,Sedan,,, +07/06/2021,14:50,BROOKLYN,11231,40.68775,-74.001396,"(40.68775, -74.001396)",KANE STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436186,Sedan,,,, +07/10/2021,13:49,QUEENS,11691,40.597317,-73.75427,"(40.597317, -73.75427)",BEACH 20 STREET,PLAINVIEW AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436371,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,18:20,QUEENS,11422,40.6601,-73.73312,"(40.6601, -73.73312)",253 STREET,MEMPHIS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435534,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,15:21,,,40.692123,-73.98904,"(40.692123, -73.98904)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435552,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,15:55,BRONX,10466,40.889336,-73.834114,"(40.889336, -73.834114)",,,1456 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436020,Sedan,,,, +07/07/2021,19:25,,,40.900925,-73.88852,"(40.900925, -73.88852)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4436250,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,19:15,BRONX,10467,40.869694,-73.86723,"(40.869694, -73.86723)",WHITE PLAINS ROAD,ADEE AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Other Vehicular,,,,4435623,Sedan,Dump,,, +05/29/2021,17:40,,,40.69494,-73.780396,"(40.69494, -73.780396)",111 AVENUE,172 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4436084,Sedan,Sedan,,, +07/10/2021,13:15,,,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Following Too Closely,,,,4436205,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,8:00,BROOKLYN,11211,40.718594,-73.93533,"(40.718594, -73.93533)",,,371 VANDERVORT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435517,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,9:00,QUEENS,11420,40.678295,-73.808075,"(40.678295, -73.808075)",116 AVENUE,132 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435941,Sedan,Bike,,, +07/08/2021,5:18,,,40.862087,-73.91331,"(40.862087, -73.91331)",EXTERIOR STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436036,Tractor Truck Diesel,Box Truck,,, +07/10/2021,15:30,QUEENS,11429,40.712128,-73.736404,"(40.712128, -73.736404)",104 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4435540,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,8:15,,,40.69149,-73.92557,"(40.69149, -73.92557)",BROADWAY,GREENE AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4435736,Taxi,Bike,,, +07/08/2021,18:40,BROOKLYN,11212,40.669262,-73.91356,"(40.669262, -73.91356)",PITKIN AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436135,Sedan,,,, +07/08/2021,18:25,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4436177,Sedan,,,, +07/10/2021,14:46,MANHATTAN,10034,40.866333,-73.92501,"(40.866333, -73.92501)",BROADWAY,ACADEMY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436092,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,7:32,MANHATTAN,10012,40.7236,-73.99379,"(40.7236, -73.99379)",,,250 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436403,Sedan,Pick-up Truck,,, +07/10/2021,19:30,BROOKLYN,11223,40.601795,-73.97257,"(40.601795, -73.97257)",MC DONALD AVENUE,AVENUE S,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,9:00,QUEENS,11378,40.72468,-73.890884,"(40.72468, -73.890884)",,,70-07 CALDWELL AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435766,Station Wagon/Sport Utility Vehicle,,,, +06/24/2021,15:25,BROOKLYN,11232,40.656548,-74.0021,"(40.656548, -74.0021)",32 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4436315,Bike,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,22:40,QUEENS,11435,40.704403,-73.814445,"(40.704403, -73.814445)",139 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436299,Sedan,Sedan,,, +07/09/2021,13:32,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436223,Sedan,Sedan,,, +07/10/2021,3:53,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4436127,Sedan,,,, +07/10/2021,12:37,,,40.678455,-73.949684,"(40.678455, -73.949684)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436288,Taxi,Sedan,,, +07/10/2021,22:00,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436004,Sedan,,,, +07/10/2021,4:26,BRONX,10468,,,,,,236 W FORDHAM ROAD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4435461,Sedan,,,, +06/29/2021,20:07,,,40.70281,-73.9254,"(40.70281, -73.9254)",KNICKERBOCKER AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4436075,Sedan,Bike,,, +07/10/2021,16:00,QUEENS,11428,40.716164,-73.74477,"(40.716164, -73.74477)",213 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4435593,Sedan,Sedan,,, +07/09/2021,23:05,,,40.61244,-74.13231,"(40.61244, -74.13231)",BRADLEY AVENUE,VICTORY BOULEVARD,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4436387,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,18:50,,,40.760403,-73.98748,"(40.760403, -73.98748)",8 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436043,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,21:00,BRONX,10455,40.81033,-73.90914,"(40.81033, -73.90914)",EAST 145 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435950,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,0:00,MANHATTAN,10027,40.810764,-73.9526,"(40.810764, -73.9526)",WEST 125 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4435836,Station Wagon/Sport Utility Vehicle,Taxi,,, +06/26/2021,6:00,MANHATTAN,10002,40.716118,-73.98731,"(40.716118, -73.98731)",,,395 GRAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436311,Taxi,Garbage or Refuse,,, +07/09/2021,17:50,BROOKLYN,11212,40.66994,-73.91622,"(40.66994, -73.91622)",,,1380 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,10:45,BROOKLYN,11232,40.651398,-74.00379,"(40.651398, -74.00379)",,,882 5 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435872,Sedan,Sedan,,, +07/10/2021,8:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436129,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,17:20,BROOKLYN,11204,40.62395,-73.98889,"(40.62395, -73.98889)",17 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436342,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/10/2021,22:50,BRONX,10468,40.867767,-73.898994,"(40.867767, -73.898994)",,,36 WEST KINGSBRIDGE ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435635,Sedan,,,, +07/05/2021,12:40,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",222 STREET,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436085,Sedan,Sedan,,, +07/07/2021,14:00,BROOKLYN,11212,40.66785,-73.92103,"(40.66785, -73.92103)",TAPSCOTT STREET,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Other Vehicular,,,,4436112,Taxi,Sedan,,, +07/10/2021,8:15,,,40.73602,-73.98228,"(40.73602, -73.98228)",EAST 20 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435752,Sedan,E-Scooter,,, +07/09/2021,7:00,MANHATTAN,10029,40.790558,-73.95382,"(40.790558, -73.95382)",,,1190 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436047,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,8:15,MANHATTAN,10024,,,,W 86th Street,Amsterdam Ave,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435483,Sedan,,,, +07/10/2021,10:20,BRONX,10456,40.82699,-73.909294,"(40.82699, -73.909294)",EAST 165 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435907,Sedan,,,, +07/10/2021,16:22,QUEENS,11367,40.730267,-73.81207,"(40.730267, -73.81207)",,,156-15 71 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435558,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,17:45,,,40.896694,-73.853516,"(40.896694, -73.853516)",EAST 237 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,View Obstructed/Limited,,,,4435927,Sedan,Sedan,,, +07/10/2021,21:30,,,,,,PELHAM PARKWAY,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4435628,Sedan,,,, +07/10/2021,18:05,MANHATTAN,10028,40.778812,-73.95609,"(40.778812, -73.95609)",LEXINGTON AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435898,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,15:20,,,40.738754,-74.0055,"(40.738754, -74.0055)",HORATIO STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436358,Sedan,Box Truck,,, +07/09/2021,10:20,BROOKLYN,11210,40.619713,-73.94453,"(40.619713, -73.94453)",AVENUE M,EAST 31 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4436150,Sedan,Sedan,Sedan,Sedan, +07/10/2021,16:49,BROOKLYN,11236,40.627464,-73.89956,"(40.627464, -73.89956)",EAST 80 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435812,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,0:00,BROOKLYN,11215,40.669243,-73.98294,"(40.669243, -73.98294)",7 STREET,6 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4436164,Sedan,Pick-up Truck,,, +07/08/2021,11:10,,,40.54287,-74.21532,"(40.54287, -74.21532)",WINANT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436194,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,6:15,BROOKLYN,11207,,,,DE WITT AVENUE,SNEDIKER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471060,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,15:05,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",PACIFIC STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436102,Sedan,,,, +07/10/2021,4:00,BRONX,10463,40.879486,-73.89819,"(40.879486, -73.89819)",,,3321 GILES PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436269,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,17:30,BRONX,10471,40.91056,-73.89663,"(40.91056, -73.89663)",,,6669 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436252,Sedan,Sedan,,, +07/07/2021,7:51,,,40.727962,-73.95008,"(40.727962, -73.95008)",MESEROLE AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4436039,DUMP TRUCK,Sedan,,, +07/10/2021,19:10,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435539,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,18:10,,,40.75544,-73.72199,"(40.75544, -73.72199)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4435541,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,1:30,BRONX,10467,40.87601,-73.86214,"(40.87601, -73.86214)",EAST GUN HILL ROAD,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435980,Sedan,Garbage or Refuse,,, +07/10/2021,17:42,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,18:15,QUEENS,11361,40.766926,-73.77033,"(40.766926, -73.77033)",38 AVENUE,214 PLACE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435584,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2021,14:09,,,40.638218,-74.14379,"(40.638218, -74.14379)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4436023,Sedan,Tractor Truck Diesel,,, +07/10/2021,10:42,STATEN ISLAND,10309,40.5426,-74.208336,"(40.5426, -74.208336)",,,655 ROSSVILLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436209,Sedan,Sedan,,, +07/10/2021,16:00,BROOKLYN,11236,40.64566,-73.89926,"(40.64566, -73.89926)",,,292 CONKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435611,Sedan,,,, +07/10/2021,22:00,BRONX,10473,40.82118,-73.88127,"(40.82118, -73.88127)",STORY AVENUE,CLOSE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4436059,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2021,18:20,BRONX,10463,40.878994,-73.90473,"(40.878994, -73.90473)",,,5578 BROADWAY,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436249,Sedan,Bike,,, +07/10/2021,3:40,,,40.693787,-73.81173,"(40.693787, -73.81173)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Obstruction/Debris,,,,,4435506,Sedan,,,, +07/10/2021,2:52,BRONX,10453,40.85381,-73.91386,"(40.85381, -73.91386)",ANDREWS AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4435981,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,17:30,BRONX,10472,40.824818,-73.87074,"(40.824818, -73.87074)",,,1677 BRUCKNER BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436055,Sedan,,,, +07/10/2021,17:00,BROOKLYN,11237,40.69878,-73.91178,"(40.69878, -73.91178)",RIDGEWOOD PLACE,PALMETTO STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4436083,Box Truck,Sedan,,, +07/10/2021,9:00,BRONX,10458,40.862457,-73.89248,"(40.862457, -73.89248)",,,2550 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435518,Sedan,,,, +07/10/2021,21:03,BROOKLYN,11214,40.606815,-74.0067,"(40.606815, -74.0067)",,,8685 17 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/10/2021,11:28,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436226,Sedan,Sedan,,, +07/10/2021,4:50,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4435434,Sedan,,,, +07/05/2021,8:55,BRONX,10468,40.87449,-73.901505,"(40.87449, -73.901505)",,,2875 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436243,Sedan,Sedan,,, +07/10/2021,16:50,QUEENS,11377,40.745827,-73.90111,"(40.745827, -73.90111)",ROOSEVELT AVENUE,63 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4435601,Moped,,,, +07/10/2021,8:30,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,KENMARE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435851,Sedan,Sedan,,, +07/10/2021,13:45,STATEN ISLAND,10312,40.54653,-74.180435,"(40.54653, -74.180435)",ARDEN AVENUE,DRUMGOOLE ROAD EAST,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436211,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,6:00,,,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436101,Taxi,,,, +07/08/2021,14:32,,,40.680855,-74.00305,"(40.680855, -74.00305)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436185,Sedan,,,, +07/10/2021,16:00,QUEENS,11429,40.703636,-73.74652,"(40.703636, -73.74652)",113 AVENUE,209 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435533,Sedan,Motorcycle,,, +07/10/2021,7:21,,,,,,GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4435473,Tractor Truck Diesel,Sedan,,, +07/10/2021,22:20,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4435594,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/08/2021,12:45,,,40.814102,-73.940865,"(40.814102, -73.940865)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436273,Sedan,Sedan,,, +07/10/2021,9:40,BRONX,10454,40.81005,-73.92515,"(40.81005, -73.92515)",ALEXANDER AVENUE,EAST 138 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435955,,,,, +07/10/2021,19:40,BROOKLYN,11226,40.652794,-73.946884,"(40.652794, -73.946884)",NEW YORK AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435589,Sedan,Sedan,,, +07/10/2021,22:00,BROOKLYN,11238,40.683723,-73.96797,"(40.683723, -73.96797)",VANDERBILT AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436326,Sedan,Sedan,,, +07/09/2021,6:30,QUEENS,11411,40.701397,-73.74137,"(40.701397, -73.74137)",SPRINGFIELD BOULEVARD,114 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436146,Sedan,Sedan,,, +07/10/2021,23:41,,,40.829407,-73.88546,"(40.829407, -73.88546)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,1:12,BRONX,10455,40.816204,-73.91423,"(40.816204, -73.91423)",BROOK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436374,Taxi,Sedan,,, +07/10/2021,16:24,,,40.725876,-73.76007,"(40.725876, -73.76007)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4435690,Sedan,Sedan,,, +07/10/2021,13:35,BRONX,10453,40.84698,-73.91065,"(40.84698, -73.91065)",WALTON AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436013,Sedan,Motorcycle,,, +07/07/2021,15:20,,,40.680977,-74.00498,"(40.680977, -74.00498)",HAMILTON AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436072,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,22:15,MANHATTAN,10019,40.761364,-73.976135,"(40.761364, -73.976135)",,,13 WEST 54 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4436046,AMBULANE,,,, +07/10/2021,20:50,,,40.841187,-73.93215,"(40.841187, -73.93215)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435844,Sedan,,,, +07/09/2021,7:20,BROOKLYN,11212,40.669125,-73.91451,"(40.669125, -73.91451)",PITKIN AVENUE,AMBOY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436122,Sedan,Bike,,, +07/09/2021,18:21,STATEN ISLAND,10312,40.539757,-74.175285,"(40.539757, -74.175285)",,,120 BARCLAY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4436204,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,23:00,QUEENS,11422,40.66027,-73.7357,"(40.66027, -73.7357)",,,250-07 WELLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435671,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,18:50,QUEENS,11436,40.683594,-73.80345,"(40.683594, -73.80345)",LINDEN BOULEVARD,140 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436136,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,22:30,BRONX,10468,40.865345,-73.90849,"(40.865345, -73.90849)",BAILEY AVENUE,SEDGWICK AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4435634,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/10/2021,3:40,BROOKLYN,11238,40.681374,-73.9634,"(40.681374, -73.9634)",,,298 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4435451,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2021,4:15,QUEENS,11368,40.75282,-73.864235,"(40.75282, -73.864235)",,,37-26 103 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,View Obstructed/Limited,,,,4436165,Sedan,EMS TRUCK,,, +07/07/2021,23:05,,,40.671185,-73.94204,"(40.671185, -73.94204)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4436289,PK,Taxi,,, +07/10/2021,15:10,QUEENS,11693,40.586224,-73.815254,"(40.586224, -73.815254)",,,196 BEACH 92 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435555,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,13:35,QUEENS,11379,40.712555,-73.89711,"(40.712555, -73.89711)",METROPOLITAN AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435767,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/06/2021,16:09,BROOKLYN,11226,40.64628,-73.95202,"(40.64628, -73.95202)",,,974 ROGERS AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4436258,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,20:00,STATEN ISLAND,10312,40.542233,-74.17176,"(40.542233, -74.17176)",ARDEN AVENUE,VANBRUNT STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436199,Sedan,Sedan,,, +07/09/2021,22:45,,,40.84739,-73.92832,"(40.84739, -73.92832)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436106,Sedan,Sedan,,, +07/10/2021,11:20,,,40.73453,-73.99227,"(40.73453, -73.99227)",UNIVERSITY PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436360,Sedan,Taxi,,, +07/10/2021,0:35,,,,,,QUEENS MIDTOWN EXPRESSWAY,69 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4435809,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,22:30,,,40.70722,-73.78957,"(40.70722, -73.78957)",JAMAICA AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436298,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,16:47,BRONX,10455,40.81343,-73.91003,"(40.81343, -73.91003)",EAST 149 STREET,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435948,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,6:55,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436113,Sedan,Box Truck,,, +07/10/2021,20:08,,,40.694714,-73.93122,"(40.694714, -73.93122)",REID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435734,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,20:20,MANHATTAN,10031,40.825333,-73.943825,"(40.825333, -73.943825)",WEST 147 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4435615,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/03/2021,6:20,,,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436159,Sedan,Sedan,,, +07/07/2021,22:35,,,40.678154,-73.94416,"(40.678154, -73.94416)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436175,Ambulance,Sedan,,, +07/10/2021,12:30,BRONX,10466,40.89144,-73.85966,"(40.89144, -73.85966)",,,4115 LOWERRE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436003,Sedan,,,, +07/05/2021,14:30,,,40.85238,-73.9315,"(40.85238, -73.9315)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436093,Sedan,Moped,,, +07/10/2021,23:42,MANHATTAN,10036,40.756565,-73.99028,"(40.756565, -73.99028)",WEST 41 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435831,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,11:30,BROOKLYN,11220,40.643005,-74.00533,"(40.643005, -74.00533)",49 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436316,Sedan,Bike,,, +07/10/2021,16:15,QUEENS,11420,40.665684,-73.820435,"(40.665684, -73.820435)",NORTH CONDUIT AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435916,Sedan,Box Truck,,, +06/27/2021,5:25,STATEN ISLAND,10309,40.52537,-74.20903,"(40.52537, -74.20903)",,,6054 AMBOY ROAD,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4436208,Pick-up Truck,,,, +07/08/2021,16:20,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436126,Pick-up Truck,Sedan,,, +07/10/2021,20:55,MANHATTAN,10002,40.71675,-73.978096,"(40.71675, -73.978096)",,,70 BARUCH DRIVE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4436261,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,14:16,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435929,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,10:13,BRONX,10463,,,,,,2601 Henry Hudson pkwy w,0,0,0,0,0,0,0,0,Unspecified,,,,,4436253,Sedan,,,, +07/09/2021,14:50,STATEN ISLAND,10306,40.579914,-74.11405,"(40.579914, -74.11405)",,,2200 RICHMOND ROAD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4436130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,0:50,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435435,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/28/2021,22:20,,,40.682835,-73.94092,"(40.682835, -73.94092)",HALSEY STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436195,Moped,,,, +07/07/2021,12:57,BROOKLYN,11212,40.66864,-73.91049,"(40.66864, -73.91049)",,,472 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,14:00,,,40.743267,-73.874664,"(40.743267, -73.874664)",HAMPTON STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4435669,Sedan,Bike,,, +07/10/2021,21:10,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Driver Inattention/Distraction,Unspecified,,4436041,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/10/2021,19:15,QUEENS,11426,40.73762,-73.71612,"(40.73762, -73.71612)",,,252-11 83 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435542,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,20:30,,,40.716194,-73.95064,"(40.716194, -73.95064)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4436030,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/08/2021,13:14,BROOKLYN,11233,40.676395,-73.91187,"(40.676395, -73.91187)",GUNTHER PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436181,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,16:10,,,40.86369,-73.91707,"(40.86369, -73.91707)",9 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436107,Ambulance,Sedan,,, +07/10/2021,19:00,MANHATTAN,10032,40.837624,-73.94229,"(40.837624, -73.94229)",,,3895 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435842,Moped,,,, +07/09/2021,15:00,MANHATTAN,10128,40.77981,-73.95035,"(40.77981, -73.95035)",2 AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436355,Station Wagon/Sport Utility Vehicle,Bus,,, +07/10/2021,3:05,,,40.757908,-73.9893,"(40.757908, -73.9893)",WEST 43 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4435866,Sedan,Sedan,Sedan,, +07/08/2021,16:45,,,40.845306,-73.91834,"(40.845306, -73.91834)",JESUP AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436386,Sedan,,,, +07/04/2021,20:40,BROOKLYN,11214,40.59727,-73.99868,"(40.59727, -73.99868)",BAY PARKWAY,CROPSEY AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4436087,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,13:05,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",EAST 149 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435957,Pick-up Truck,Ambulance,,, +07/10/2021,18:51,MANHATTAN,10016,40.74772,-73.97375,"(40.74772, -73.97375)",,,720 2 AVENUE,2,0,0,0,2,0,0,0,Reaction to Uninvolved Vehicle,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,4435588,Sedan,Bike,Bike,, +07/10/2021,3:48,MANHATTAN,10017,40.75332,-73.972595,"(40.75332, -73.972595)",EAST 46 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435606,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,7:38,BRONX,10463,40.8817,-73.9112,"(40.8817, -73.9112)",,,3030 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436248,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,9:33,MANHATTAN,10022,40.758633,-73.96579,"(40.758633, -73.96579)",2 AVENUE,EAST 56 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4435507,Sedan,Bike,,, +07/08/2021,14:30,,,,,,BOSCOMBE AVENUE,Entrance to West Shore Expy,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436215,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,17:30,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",ASHFORD STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4435985,LIMO,Sedan,,, +07/10/2021,22:00,,,40.801155,-73.959656,"(40.801155, -73.959656)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Turning Improperly,,,,4435746,Sedan,Sedan,,, +07/09/2021,17:19,BROOKLYN,11232,40.650696,-74.01659,"(40.650696, -74.01659)",,,168 48 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436310,Sedan,Box Truck,,, +07/09/2021,6:20,,,40.67693,-74.00211,"(40.67693, -74.00211)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436189,Station Wagon/Sport Utility Vehicle,Box Truck,,, +06/19/2021,16:40,,,40.8746,-73.9097,"(40.8746, -73.9097)",BROADWAY,WEST 225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436268,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,19:00,,,40.70317,-73.754105,"(40.70317, -73.754105)",112 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4435590,Sedan,Motorcycle,,, +07/10/2021,22:15,,,,,,QUEENSBORO BRIDGE OUTER,,,1,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4435616,E-Scooter,,,, +07/08/2021,19:00,MANHATTAN,10034,40.85891,-73.922966,"(40.85891, -73.922966)",HARLEM RIVER DRIVE,DYCKMAN STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4436094,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,7:10,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436056,Box Truck,,,, +07/10/2021,16:52,MANHATTAN,10035,40.806973,-73.937645,"(40.806973, -73.937645)",EAST 128 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436063,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,17:11,MANHATTAN,10017,40.753944,-73.972145,"(40.753944, -73.972145)",3 AVENUE,EAST 47 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4436321,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,11:05,,,40.705273,-73.89634,"(40.705273, -73.89634)",FRESH POND ROAD,68 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,0:25,MANHATTAN,10022,40.762226,-73.96819,"(40.762226, -73.96819)",EAST 59 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435897,Taxi,Taxi,,, +07/10/2021,22:52,QUEENS,11370,40.771904,-73.895226,"(40.771904, -73.895226)",HAZEN STREET,20 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4436331,Bus,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,1:00,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",8 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436399,Taxi,Sedan,,, +07/10/2021,4:57,BROOKLYN,11214,40.603077,-74.00464,"(40.603077, -74.00464)",BAY 20 STREET,BATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4435538,Sedan,Sedan,Sedan,Sedan,Sedan +07/10/2021,18:29,,,40.77305,-73.92148,"(40.77305, -73.92148)",CRESCENT STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,11:30,BROOKLYN,11208,40.686756,-73.87185,"(40.686756, -73.87185)",,,129 HEMLOCK STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436002,Sedan,Sedan,,, +07/10/2021,0:12,,,40.700546,-73.917076,"(40.700546, -73.917076)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435472,E-Bike,Motorcycle,,, +07/10/2021,13:45,BROOKLYN,11214,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,BAY 54 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435627,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,19:10,MANHATTAN,10035,40.804134,-73.93684,"(40.804134, -73.93684)",,,159 EAST 125 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436054,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/10/2021,14:30,,,40.61023,-74.10529,"(40.61023, -74.10529)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436278,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,1:09,BRONX,10454,40.80715,-73.90821,"(40.80715, -73.90821)",SOUTHERN BOULEVARD,EAST 142 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4435954,Motorscooter,Bus,,, +07/08/2021,20:57,BROOKLYN,11233,40.676395,-73.91187,"(40.676395, -73.91187)",ATLANTIC AVENUE,GUNTHER PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436174,Sedan,,,, +07/10/2021,6:43,,,,,,FDR DRIVE SOUTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436137,Sedan,Sedan,,, +07/10/2021,20:41,QUEENS,11385,40.700497,-73.90021,"(40.700497, -73.90021)",FOREST AVENUE,MYRTLE AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4435768,Sedan,Sedan,,, +07/10/2021,17:21,BROOKLYN,11220,40.64703,-74.012,"(40.64703, -74.012)",49 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435691,Sedan,Bus,,, +07/09/2021,14:46,MANHATTAN,10040,40.853115,-73.927246,"(40.853115, -73.927246)",WEST 189 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436100,Sedan,,,, +07/09/2021,19:40,,,40.674778,-73.765625,"(40.674778, -73.765625)",BEDELL STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4436121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,17:29,MANHATTAN,10027,40.81795,-73.95664,"(40.81795, -73.95664)",,,3270 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4435811,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/01/2021,14:23,BROOKLYN,11213,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,BROOKLYN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436290,Sedan,Bike,,, +07/10/2021,7:40,,,40.763668,-73.82303,"(40.763668, -73.82303)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435557,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/09/2021,16:00,BRONX,10471,40.893597,-73.907166,"(40.893597, -73.907166)",,,474 WEST 246 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436259,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,17:00,,,,,,,,8719 88 street,0,0,0,0,0,0,0,0,Unspecified,,,,,4435530,Station Wagon/Sport Utility Vehicle,,,, +06/26/2021,13:30,BROOKLYN,11212,40.670006,-73.91084,"(40.670006, -73.91084)",,,414 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4436184,Sedan,Sedan,,, +07/10/2021,17:22,BROOKLYN,11208,40.665905,-73.87778,"(40.665905, -73.87778)",HEGEMAN AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436007,Sedan,,,, +07/10/2021,15:45,QUEENS,11691,40.60224,-73.75416,"(40.60224, -73.75416)",CORNAGA AVENUE,BEACH 21 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4436375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,16:15,,,40.703545,-73.92234,"(40.703545, -73.92234)",IRVING AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4436069,Bike,E-Bike,,, +07/10/2021,21:40,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4435595,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,18:43,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435845,Motorbike,,,, +07/10/2021,3:38,MANHATTAN,10036,40.763428,-73.99271,"(40.763428, -73.99271)",WEST 48 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4436045,Sedan,,,, +07/10/2021,11:57,QUEENS,11420,40.669243,-73.80679,"(40.669243, -73.80679)",132 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435945,Sedan,,,, +07/10/2021,11:00,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435519,Sedan,Sedan,,, +07/10/2021,1:35,BRONX,10468,40.86406,-73.900085,"(40.86406, -73.900085)",,,2501 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435460,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2021,18:12,BRONX,10458,40.86463,-73.892136,"(40.86463, -73.892136)",EAST 194 STREET,BAINBRIDGE AVENUE,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435632,E-Bike,Sedan,,, +07/03/2021,19:20,,,,,,MARJOR DEEGAN EXPRESSWAY,WEST 230TH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436242,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/10/2021,10:20,,,40.71955,-74.000626,"(40.71955, -74.000626)",HOWARD STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435855,Station Wagon/Sport Utility Vehicle,Beverage Truck,,, +07/10/2021,8:25,QUEENS,11377,40.73494,-73.89323,"(40.73494, -73.89323)",,,51-31 71 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435599,Sedan,,,, +07/10/2021,16:30,,,40.685772,-73.81819,"(40.685772, -73.81819)",107 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436144,Sedan,Sedan,,, +07/10/2021,19:57,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,BROADWAY,,6,0,0,0,0,0,6,0,Failure to Yield Right-of-Way,Unspecified,,,,4436168,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,14:05,BROOKLYN,11233,40.676888,-73.90804,"(40.676888, -73.90804)",,,1891 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4436105,Sedan,,,, +07/09/2021,16:20,STATEN ISLAND,10312,40.554886,-74.17398,"(40.554886, -74.17398)",,,15 MARNE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436202,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,15:32,MANHATTAN,10014,40.74094,-74.007484,"(40.74094, -74.007484)",WEST 13 STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4436366,Taxi,Taxi,,, +07/10/2021,23:20,,,40.716133,-73.8185,"(40.716133, -73.8185)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,0:00,,,,,,HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436114,self insur,Sedan,,, +06/23/2021,17:33,BRONX,10463,40.88532,-73.90055,"(40.88532, -73.90055)",,,5825 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4436238,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,22:14,BRONX,10469,40.87911,-73.84325,"(40.87911, -73.84325)",EAST 222 STREET,BOSTON ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4435986,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2021,12:30,BRONX,10463,40.88949,-73.90965,"(40.88949, -73.90965)",,,541 WEST 239 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436254,Sedan,UNK,,, +07/09/2021,20:50,,,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4436284,Sedan,Sedan,,, +07/10/2021,17:20,BROOKLYN,11236,40.64944,-73.91125,"(40.64944, -73.91125)",,,784 EAST 94 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,9:49,BROOKLYN,11208,40.66085,-73.864365,"(40.66085, -73.864365)",,,12755 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436042,Box Truck,Sedan,,, +07/09/2021,17:09,BROOKLYN,11231,40.68347,-73.994514,"(40.68347, -73.994514)",,,299 DE GRAW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436188,Sedan,,,, +07/10/2021,10:45,BRONX,10469,40.86805,-73.83401,"(40.86805, -73.83401)",GRACE AVENUE,BARTOW AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4435973,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,9:53,BROOKLYN,11204,40.617954,-73.9866,"(40.617954, -73.9866)",,,1933 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435537,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,20:02,,,40.696205,-73.96159,"(40.696205, -73.96159)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435591,Sedan,Sedan,,, +07/05/2021,0:00,BROOKLYN,11207,40.666718,-73.89162,"(40.666718, -73.89162)",DUMONT AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4436080,Sedan,Sedan,Sedan,Sedan, +07/06/2021,7:00,,,40.697853,-73.93325,"(40.697853, -73.93325)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Turning Improperly,,,,4436064,Sedan,Sedan,,, +07/10/2021,6:05,BROOKLYN,11222,40.726246,-73.957886,"(40.726246, -73.957886)",,,90 QUAY STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4435514,Box Truck,Box Truck,,, +07/02/2021,19:54,STATEN ISLAND,10312,40.54315,-74.17378,"(40.54315, -74.17378)",ARDEN AVENUE,POMPEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436203,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,10:30,MANHATTAN,10002,40.716682,-73.98244,"(40.716682, -73.98244)",DELANCEY STREET,WILLETT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436260,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,11:23,QUEENS,11434,40.68432,-73.769684,"(40.68432, -73.769684)",BAISLEY BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436110,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,11:14,QUEENS,11432,40.70775,-73.79525,"(40.70775, -73.79525)",,,89-28 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436302,Bus,Sedan,,, +07/10/2021,10:56,QUEENS,11373,40.72898,-73.882385,"(40.72898, -73.882385)",80 STREET,57 AVENUE,,1,0,0,0,1,0,0,0,Other Electronic Device,Unspecified,,,,4435829,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2021,22:45,BROOKLYN,11212,40.661377,-73.91056,"(40.661377, -73.91056)",,,400 BRISTOL STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4436158,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/08/2021,21:00,QUEENS,11102,40.774162,-73.92858,"(40.774162, -73.92858)",,,26-33 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436162,Sedan,,,, +07/10/2021,0:30,QUEENS,11004,40.747032,-73.70998,"(40.747032, -73.70998)",79 AVENUE,262 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435436,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,13:00,BRONX,10463,40.879692,-73.908325,"(40.879692, -73.908325)",,,3050 CORLEAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436246,Motorcycle,,,, +07/10/2021,23:05,,,40.58493,-73.95269,"(40.58493, -73.95269)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4435885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,19:15,,,40.825897,-73.93936,"(40.825897, -73.93936)",WEST 150 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4435930,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2021,14:45,BROOKLYN,11201,40.694744,-73.98883,"(40.694744, -73.98883)",,,235 ADAMS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436352,Bike,,,, +07/09/2021,22:00,BROOKLYN,11231,40.677864,-73.99808,"(40.677864, -73.99808)",COURT STREET,4 PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436196,Taxi,,,, +06/28/2021,5:30,MANHATTAN,10038,40.71197,-73.99778,"(40.71197, -73.99778)",MADISON STREET,OLIVER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436391,,,,, +07/10/2021,22:05,,,40.791466,-73.97411,"(40.791466, -73.97411)",WEST 91 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435641,Sedan,Open Body,,, +07/09/2021,21:49,,,40.871193,-73.9141,"(40.871193, -73.9141)",WEST 218 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436089,Sedan,,,, +07/10/2021,21:24,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4435744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,23:25,STATEN ISLAND,10307,40.520447,-74.23503,"(40.520447, -74.23503)",,,148 PAGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436216,Van,,,, +07/03/2021,8:45,QUEENS,11103,40.771435,-73.91421,"(40.771435, -73.91421)",,,33-12 24 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436322,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,20:50,QUEENS,11420,40.676346,-73.820595,"(40.676346, -73.820595)",,,117-10 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4435919,Sedan,,,, +07/10/2021,14:35,,,40.75388,-73.96616,"(40.75388, -73.96616)",EAST 50 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435587,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2021,7:40,BRONX,10456,40.82906,-73.91001,"(40.82906, -73.91001)",,,3400 PARK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435497,Sedan,Tractor Truck Diesel,,, +07/09/2021,11:42,,,,,,SOUTH AVENUE,GLEN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4436033,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,19:33,BROOKLYN,11226,40.646793,-73.95813,"(40.646793, -73.95813)",,,1008 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4435619,E-Bike,,,, +07/10/2021,23:28,,,40.634644,-73.880905,"(40.634644, -73.880905)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4435605,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2021,15:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436057,Bus,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,1:00,BROOKLYN,11205,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,DE KALB AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4436207,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/10/2021,11:00,,,40.59143,-73.99037,"(40.59143, -73.99037)",26 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435727,Van,,,, +07/10/2021,12:24,MANHATTAN,10033,40.844246,-73.93372,"(40.844246, -73.93372)",AMSTERDAM AVENUE,WEST 175 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4435841,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,17:41,BROOKLYN,11233,40.671455,-73.91418,"(40.671455, -73.91418)",PARK PLACE,BOYLAND STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436179,Sedan,Sedan,,, +07/09/2021,23:10,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",ROCKAWAY BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4436131,Sedan,Sedan,,, +07/06/2021,12:20,BROOKLYN,11213,40.674004,-73.94455,"(40.674004, -73.94455)",BROOKLYN AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436296,Garbage or Refuse,Sedan,,, +07/08/2021,17:00,QUEENS,11103,40.766716,-73.91711,"(40.766716, -73.91711)",,,28-25 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436330,Sedan,,,, +07/10/2021,2:45,BROOKLYN,11212,,,,,,1170 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435864,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,22:09,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",HUDSON STREET,LAIGHT STREET,,1,0,1,0,0,0,0,0,,,,,,4436384,,,,, +07/10/2021,6:30,BROOKLYN,11232,40.650948,-74.00793,"(40.650948, -74.00793)",4 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435687,Station Wagon/Sport Utility Vehicle,ambulance,,, +07/10/2021,0:40,,,40.777233,-73.99023,"(40.777233, -73.99023)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436266,Sedan,Sedan,Sedan,, +07/04/2021,3:35,QUEENS,11434,40.680775,-73.76383,"(40.680775, -73.76383)",129 AVENUE,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4436117,,,,, +07/10/2021,14:30,,,40.55168,-74.14479,"(40.55168, -74.14479)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436125,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,10:55,MANHATTAN,10009,40.722744,-73.981316,"(40.722744, -73.981316)",,,238 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436139,Sedan,Sedan,,, +07/10/2021,19:50,,,40.679955,-73.97491,"(40.679955, -73.97491)",SAINT MARKS AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4435779,Sedan,Garbage or Refuse,,, +10/25/2021,10:00,QUEENS,11420,40.674488,-73.80743,"(40.674488, -73.80743)",,,120-26 131 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470930,Sedan,Sedan,,, +10/25/2021,17:10,MANHATTAN,10013,40.718315,-73.995926,"(40.718315, -73.995926)",,,95 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471360,Sedan,Pick-up Truck,,, +10/24/2021,8:00,QUEENS,11377,,,,,,41-23 67 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4471432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/25/2021,13:30,BROOKLYN,11213,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471191,Sedan,Sedan,,, +10/25/2021,12:00,BROOKLYN,11232,40.669235,-73.99697,"(40.669235, -73.99697)",HAMILTON AVENUE,15 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470899,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,20:08,BROOKLYN,11215,40.67267,-73.99002,"(40.67267, -73.99002)",7 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4470936,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/03/2021,6:50,,,40.701763,-73.81618,"(40.701763, -73.81618)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,21:58,BRONX,10457,40.84272,-73.89323,"(40.84272, -73.89323)",,,705 EAST 175 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4471347,Sedan,Sedan,Sedan,, +10/25/2021,10:35,MANHATTAN,10011,,,,WEST 19 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471668,Motorcycle,Pick-up Truck,,, +10/25/2021,14:20,BROOKLYN,11208,40.65959,-73.87526,"(40.65959, -73.87526)",,,1080 LINWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471050,Sedan,,,, +10/25/2021,10:43,QUEENS,11370,,,,,,32-02 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,15:30,,,40.70455,-73.87336,"(40.70455, -73.87336)",76 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,19:11,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471028,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,8:49,BROOKLYN,11222,40.719456,-73.93754,"(40.719456, -73.93754)",MORGAN AVENUE,FROST STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470960,Moped,Sedan,,, +10/25/2021,0:00,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471436,Sedan,,,, +10/25/2021,23:50,,,,,,CROSS BRONX EXPY RAMP,,,3,0,1,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4470989,Taxi,Sedan,,, +10/25/2021,17:20,,,,,,5 Avenue,5 Avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471349,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,0:05,,,,,,EAST 101 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4470912,Sedan,,,, +10/25/2021,21:46,QUEENS,11422,40.665245,-73.73709,"(40.665245, -73.73709)",SOUTH CONDUIT AVENUE,140 AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4471171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,22:00,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",EAST 174 STREET,JEROME AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471284,Sedan,Bike,,, +10/25/2021,19:15,BROOKLYN,11223,40.60002,-73.96637,"(40.60002, -73.96637)",,,522 AVENUE T,0,0,0,0,0,0,0,0,Unspecified,,,,,4470935,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,18:00,QUEENS,11379,40.711246,-73.87095,"(40.711246, -73.87095)",80 STREET,68 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471074,Sedan,Sedan,,, +10/25/2021,12:40,,,,,,EAST 173 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4470994,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,17:40,,,,,,NEW ENGLAND THRUWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4471011,Dump,,,, +10/25/2021,12:00,BROOKLYN,11225,40.669567,-73.96197,"(40.669567, -73.96197)",,,901 CLASSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470907,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,4:10,,,40.840107,-73.92478,"(40.840107, -73.92478)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470993,Sedan,,,, +10/25/2021,10:37,MANHATTAN,10021,,,,2 AVENUE,EAST 71 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4471379,Van,Bus,,, +10/25/2021,9:00,BRONX,10455,40.819035,-73.91712,"(40.819035, -73.91712)",,,371 EAST 153 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470952,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,12:48,BROOKLYN,11207,,,,,,675 BRADFORD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4471401,Sedan,Sedan,Sedan,Sedan, +10/25/2021,0:05,,,40.7432,-73.89589,"(40.7432, -73.89589)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4471451,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,9:29,BROOKLYN,11213,40.669094,-73.947784,"(40.669094, -73.947784)",,,305 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471225,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,4:09,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4471636,Sedan,Sedan,,, +10/19/2021,14:30,,,,,,EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4471536,Sedan,,,, +10/25/2021,23:28,,,40.661488,-73.89389,"(40.661488, -73.89389)",NEW LOTS AVENUE,SHEFFIELD AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,11:00,,,,,,14 AVENUE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471038,Sedan,,,, +10/25/2021,14:21,,,40.75362,-73.898445,"(40.75362, -73.898445)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471444,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,0:00,BROOKLYN,11207,,,,,,482 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471055,Sedan,,,, +10/15/2021,21:00,,,40.765987,-73.759224,"(40.765987, -73.759224)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471481,Sedan,Sedan,,, +10/25/2021,9:30,BROOKLYN,11220,,,,55 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470898,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,8:48,BRONX,10467,,,,EAST GUN HILL ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471096,Bus,Sedan,,, +10/25/2021,16:34,STATEN ISLAND,10314,40.613525,-74.11685,"(40.613525, -74.11685)",SLOSSON AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471514,Dump,Sedan,,, +06/10/2022,12:35,MANHATTAN,10035,40.798122,-73.92962,"(40.798122, -73.92962)",,,40 PALADINO AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,Unspecified,,,4537095,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/25/2021,10:38,,,40.63636,-74.1453,"(40.63636, -74.1453)",,,62 MORNINGSTAR ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4471039,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,10:08,BRONX,10460,,,,,,1003 EAST 174 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471078,Sedan,,,, +10/25/2021,13:50,QUEENS,11377,,,,,,31-02 68 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471161,Station Wagon/Sport Utility Vehicle,Bike,,, +10/18/2021,0:30,,,,,,FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4471500,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/25/2021,15:00,,,40.847897,-73.94523,"(40.847897, -73.94523)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Other Vehicular,,,,4471505,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,16:51,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470979,Sedan,Sedan,,, +10/03/2021,16:24,,,,,,SHERIDAN EXPRESSWAY,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471483,Sedan,,,, +10/25/2021,10:35,,,,,,65 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471218,Bus,Sedan,,, +10/25/2021,13:51,QUEENS,11101,40.738964,-73.93472,"(40.738964, -73.93472)",,,49-25 VANDAM STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471439,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,16:00,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4470905,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +10/23/2021,6:05,BRONX,10454,,,,,,885 EAST 138 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471645,Sedan,Sedan,,, +10/25/2021,7:00,QUEENS,11355,,,,60 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471031,Sedan,Pick-up Truck,,, +10/24/2021,5:15,MANHATTAN,10021,,,,1 AVENUE,EAST 71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471377,Sedan,Motorcycle,Taxi,, +10/25/2021,14:21,BRONX,10461,40.85155,-73.84407,"(40.85155, -73.84407)",,,1886 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4471109,Moped,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,10:00,,,,,,CROSS ISLAND PARKWAY,BELMONT LINE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470922,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:23,,,,,,SCHENCK AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4471053,AMBULANCE,Sedan,,, +10/25/2021,14:20,STATEN ISLAND,10301,40.615967,-74.10457,"(40.615967, -74.10457)",VICTORY BOULEVARD,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471144,Sedan,Sedan,,, +10/25/2021,16:29,,,40.855755,-73.88544,"(40.855755, -73.88544)",EAST 188 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4471073,Sedan,Bus,,, +10/25/2021,22:00,QUEENS,11692,40.595074,-73.78455,"(40.595074, -73.78455)",BEACH 54 STREET,BEACH CHANNEL DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470966,Sedan,,,, +10/25/2021,15:27,BROOKLYN,11235,40.581257,-73.957924,"(40.581257, -73.957924)",BRIGHTON 10 PATH,BRIGHTON 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471338,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,1:54,BRONX,10466,,,,BAYCHESTER AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4471474,Sedan,AMBULANCE,,, +10/25/2021,20:10,,,40.613476,-74.003784,"(40.613476, -74.003784)",16 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4470916,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,19:36,,,40.69595,-73.93764,"(40.69595, -73.93764)",LEWIS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471361,Sedan,Sedan,,, +10/25/2021,16:00,BROOKLYN,11233,40.67866,-73.91205,"(40.67866, -73.91205)",,,21 SOMERS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470911,Sedan,,,, +07/05/2022,15:20,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",79 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543699,Box Truck,Sedan,,, +10/25/2021,10:10,,,,,,WEST 132 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471403,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,10:00,BRONX,10466,40.889206,-73.85441,"(40.889206, -73.85441)",,,859 EAST 229 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544010,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,22:00,QUEENS,11377,40.755142,-73.90328,"(40.755142, -73.90328)",,,32-24 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470937,Sedan,,,, +10/18/2021,9:40,STATEN ISLAND,10314,,,,MANOR ROAD,OCEAN TERRACE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4471566,Sedan,,,, +10/21/2021,12:00,BRONX,10467,40.87856,-73.865776,"(40.87856, -73.865776)",EAST 212 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471468,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,18:12,,,40.70281,-73.9254,"(40.70281, -73.9254)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471256,Sedan,,,, +10/25/2021,17:01,MANHATTAN,10065,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470946,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,17:27,QUEENS,11412,40.69121,-73.75296,"(40.69121, -73.75296)",198 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471027,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,19:56,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,16:00,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,16:30,BROOKLYN,11220,40.64703,-74.012,"(40.64703, -74.012)",4 AVENUE,49 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470900,Sedan,E-Bike,,, +10/20/2021,14:00,,,40.673298,-73.789894,"(40.673298, -73.789894)",148 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471382,Sedan,,,, +10/25/2021,16:00,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471428,Bus,Sedan,,, +10/25/2021,17:05,BROOKLYN,11207,40.659622,-73.8882,"(40.659622, -73.8882)",LINDEN BOULEVARD,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471049,Sedan,,,, +10/25/2021,19:39,,,40.60855,-74.13216,"(40.60855, -74.13216)",BRADLEY AVENUE,NORTH GANNON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471193,Sedan,,,, +10/25/2021,6:48,BROOKLYN,11222,40.729523,-73.95098,"(40.729523, -73.95098)",,,211 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470959,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,10:00,,,,,,11 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470995,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,22:35,BROOKLYN,11234,,,,UTICA AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4471479,Sedan,Sedan,,, +10/25/2021,10:30,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",EAST 179 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471346,,,,, +10/20/2021,10:20,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4471589,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/25/2021,20:40,QUEENS,11368,40.74618,-73.85293,"(40.74618, -73.85293)",111 STREET,49 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4471012,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,18:13,BROOKLYN,11209,,,,GATLING PLACE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471543,Sedan,Sedan,,, +10/25/2021,11:24,MANHATTAN,10002,,,,,,94 MADISON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471354,Garbage or Refuse,Sedan,,, +10/25/2021,22:11,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471453,Sedan,,,, +10/15/2021,13:26,,,40.816883,-73.96265,"(40.816883, -73.96265)",HENRY HUDSON PARKWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4471384,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/25/2021,20:30,BROOKLYN,11223,40.59793,-73.9855,"(40.59793, -73.9855)",STILLWELL AVENUE,AVENUE T,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470915,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,12:11,,,40.897144,-73.88029,"(40.897144, -73.88029)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471063,Sedan,,,, +07/05/2022,9:40,,,40.629707,-73.90486,"(40.629707, -73.90486)",EAST 80 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543826,Sedan,,,, +10/25/2021,17:05,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471057,Station Wagon/Sport Utility Vehicle,Ambulance,,, +10/25/2021,1:20,QUEENS,11377,,,,NORTHERN BOULEVARD,58 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471435,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,16:30,,,40.724876,-73.975174,"(40.724876, -73.975174)",AVENUE D,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471266,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,13:20,QUEENS,11691,,,,,,11-65 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470963,Sedan,,,, +10/25/2021,12:50,BRONX,10462,,,,,,1881 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4470988,Station Wagon/Sport Utility Vehicle,STREET SWE,,, +10/25/2021,20:52,QUEENS,11373,40.734657,-73.86482,"(40.734657, -73.86482)",JUNCTION BOULEVARD,60 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4471174,Sedan,Sedan,,, +10/25/2021,4:49,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4471032,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,11:00,BROOKLYN,11206,40.70752,-73.94903,"(40.70752, -73.94903)",,,38 MESEROLE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4544415,Box Truck,,,, +07/01/2022,1:25,MANHATTAN,10012,40.721447,-73.997406,"(40.721447, -73.997406)",KENMARE STREET,CLEVELAND PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544256,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,18:05,,,40.61504,-74.06685,"(40.61504, -74.06685)",BAY STREET,CLIFTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471513,Sedan,,,, +06/28/2022,21:45,BROOKLYN,11249,40.699177,-73.9605,"(40.699177, -73.9605)",KENT AVENUE,WALLABOUT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544237,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,20:10,BRONX,10466,40.887096,-73.86087,"(40.887096, -73.86087)",WHITE PLAINS ROAD,EAST 224 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471484,E-Scooter,,,, +10/25/2021,20:40,QUEENS,11356,40.781662,-73.83366,"(40.781662, -73.83366)",,,135-05 20 AVENUE,4,0,0,0,0,0,4,0,Other Vehicular,,,,,4471040,Sedan,,,, +10/25/2021,7:10,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471443,Box Truck,Pick-up Truck,,, +10/22/2021,12:07,MANHATTAN,10009,,,,,,623 EAST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471617,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2022,2:35,BROOKLYN,11214,40.608006,-73.99473,"(40.608006, -73.99473)",80 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4543400,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +10/25/2021,15:13,,,40.689728,-73.99017,"(40.689728, -73.99017)",BOERUM PLACE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4470901,Sedan,Bike,,, +10/25/2021,19:26,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471197,Sedan,,,, +10/25/2021,8:30,BRONX,10454,,,,EAST 141 STREET,POWERS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471084,Sedan,Moped,,, +10/25/2021,10:41,,,0,0,"(0.0, 0.0)",AUDUBON AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471110,Sedan,E-Scooter,,, +07/05/2022,10:00,QUEENS,11373,40.741516,-73.88369,"(40.741516, -73.88369)",,,81-08 45 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543761,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,10:44,BRONX,10451,,,,SHERMAN AVENUE,EAST 161 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4470992,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2022,16:06,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4544134,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/25/2021,7:48,,,,,,PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4471048,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,6:17,BROOKLYN,11238,,,,,,200 EASTERN PARKWAY,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4470906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/25/2021,12:00,QUEENS,11378,40.717415,-73.91932,"(40.717415, -73.91932)",GRAND AVENUE,49 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471077,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,15:58,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471651,Taxi,Sedan,,, +10/25/2021,11:17,,,,,,DEPOT ROAD,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471030,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/05/2022,6:22,BRONX,10457,40.841286,-73.90016,"(40.841286, -73.90016)",BATHGATE AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4543884,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,20:00,,,40.89989,-73.89553,"(40.89989, -73.89553)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471427,Sedan,Sedan,,, +10/18/2021,14:49,BROOKLYN,11221,,,,,,100 Malcolm X Blvd,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4471365,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,12:10,MANHATTAN,10021,40.76812,-73.95887,"(40.76812, -73.95887)",EAST 71 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470941,Sedan,Box Truck,,, +10/25/2021,0:00,BROOKLYN,11201,,,,PINEAPPLE STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470924,Dump,,,, +10/25/2021,18:00,BROOKLYN,11215,40.66039,-73.98882,"(40.66039, -73.98882)",,,334 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471212,Station Wagon/Sport Utility Vehicle,0,,, +10/25/2021,7:14,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471327,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +10/25/2021,19:25,MANHATTAN,10075,40.771023,-73.95365,"(40.771023, -73.95365)",1 AVENUE,EAST 77 STREET,,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4470948,Sedan,Bike,,, +07/01/2022,10:05,QUEENS,11422,40.638695,-73.744675,"(40.638695, -73.744675)",,,154-22 BROAD STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544204,Sedan,,,, +10/13/2021,16:20,QUEENS,11413,40.65855,-73.76616,"(40.65855, -73.76616)",182 STREET,149 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471575,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +06/10/2022,14:04,BROOKLYN,11208,40.671604,-73.86907,"(40.671604, -73.86907)",CRESCENT STREET,BLAKE AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4544302,Station Wagon/Sport Utility Vehicle,Van,,, +10/25/2021,18:05,,,,,,QUEENS BOULEVARD,VANDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471438,Sedan,,,, +10/25/2021,7:10,BROOKLYN,11207,,,,RIVERDALE AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471052,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,10:00,STATEN ISLAND,10301,40.639256,-74.081795,"(40.639256, -74.081795)",WINTER AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471143,Sedan,,,, +07/04/2022,11:20,,,40.5591,-74.20101,"(40.5591, -74.20101)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4544354,Sedan,,,, +10/25/2021,7:58,BRONX,10453,40.846577,-73.913155,"(40.846577, -73.913155)",JEROME AVENUE,CLIFFORD PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4470968,Sedan,Sedan,Sedan,, +10/25/2021,15:17,BRONX,10458,40.859016,-73.897995,"(40.859016, -73.897995)",,,235 EAST 184 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471071,Sedan,Box Truck,,, +10/25/2021,20:00,QUEENS,11368,40.740257,-73.86532,"(40.740257, -73.86532)",CHRISTIE AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471026,Sedan,,,, +07/05/2022,5:00,BRONX,10455,40.820335,-73.9165,"(40.820335, -73.9165)",,,387 EAST 155 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543470,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,16:45,QUEENS,11103,40.76464,-73.916595,"(40.76464, -73.916595)",37 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543920,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/25/2021,17:45,BROOKLYN,11225,40.667126,-73.94965,"(40.667126, -73.94965)",,,1185 CARROLL STREET,1,0,0,0,0,0,1,0,Animals Action,Unspecified,Unspecified,,,4470909,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/25/2021,10:27,,,40.676094,-73.94992,"(40.676094, -73.94992)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4471504,Box Truck,Sedan,,, +10/25/2021,15:54,,,40.820145,-73.890656,"(40.820145, -73.890656)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4470980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,2:14,,,,,,WEST MOSHOLU PARKWAY SOUTH,JEROME AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4471373,Sedan,,,, +10/21/2021,15:46,,,,,,WEST 125 STREET,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4471404,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,13:50,BRONX,10454,,,,,,696 ST. MARY'S STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471241,Sedan,,,, +10/22/2021,12:05,BRONX,10467,,,,,,3559 WHITE PLAINS ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471472,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,13:30,BROOKLYN,11228,40.614273,-74.0081,"(40.614273, -74.0081)",,,1441 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470917,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,12:08,BROOKLYN,11211,,,,RODNEY STREET,AINSLIE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471316,,,,, +10/24/2021,23:25,,,,,,BUFFALO AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471501,Sedan,,,, +10/25/2021,19:45,,,40.76301,-73.7942,"(40.76301, -73.7942)",CROCHERON AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471041,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/25/2021,17:11,BROOKLYN,11234,40.611614,-73.92847,"(40.611614, -73.92847)",AVENUE S,KIMBALL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471546,Sedan,,,, +10/22/2021,21:00,BROOKLYN,11226,40.65415,-73.949936,"(40.65415, -73.949936)",NOSTRAND AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471660,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,22:44,MANHATTAN,10033,40.8468,-73.931854,"(40.8468, -73.931854)",AMSTERDAM AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544254,Sedan,Sedan,,, +10/25/2021,14:20,,,40.640163,-73.94553,"(40.640163, -73.94553)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471068,Sedan,,,, +10/21/2021,16:15,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471442,Sedan,Sedan,,, +10/25/2021,14:45,QUEENS,11357,40.776318,-73.8037,"(40.776318, -73.8037)",160 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/18/2022,10:30,,,,,,S CONDUIT BOULEVARD,BELMONT AVENUE,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,,,,4544294,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,12:50,QUEENS,11369,,,,32 AVENUE,100 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4471159,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,23:15,,,40.73736,-73.99685,"(40.73736, -73.99685)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471115,Sedan,Sedan,,, +07/05/2022,12:52,MANHATTAN,10027,40.8087,-73.94364,"(40.8087, -73.94364)",,,81 WEST 127 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544181,Bus,Sedan,,, +10/25/2021,17:15,BRONX,10467,40.87739,-73.8665,"(40.87739, -73.8665)",WHITE PLAINS ROAD,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4471473,Sedan,Sedan,,, +10/19/2021,13:35,BRONX,10465,,,,PHILIP AVENUE,CALHOUN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471587,Sedan,,,, +07/05/2022,3:30,QUEENS,11411,40.689148,-73.7392,"(40.689148, -73.7392)",120 AVENUE,224 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4543492,Sedan,Sedan,,, +10/25/2021,5:00,BROOKLYN,11222,,,,MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470958,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,9:30,,,,,,CABRINI BLVD,CABRINI BLVD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471381,Sedan,Box Truck,,, +10/11/2021,18:15,BROOKLYN,11207,40.652363,-73.89137,"(40.652363, -73.89137)",COZINE AVENUE,LOUISIANA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471388,Sedan,,,, +10/25/2021,17:23,STATEN ISLAND,10314,40.612747,-74.12712,"(40.612747, -74.12712)",WESTCOTT BOULEVARD,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471512,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,19:48,,,40.85396,-73.90944,"(40.85396, -73.90944)",WEST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470991,Bus,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,14:43,,,,,,FORT INDEPENDENCE STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471018,Sedan,Sedan,Sedan,, +09/22/2021,22:22,QUEENS,11367,40.731274,-73.81926,"(40.731274, -73.81926)",JEWEL AVENUE,150 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471462,Sedan,,,, +10/25/2021,7:40,BROOKLYN,11223,40.599957,-73.985886,"(40.599957, -73.985886)",83 STREET,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4470914,Taxi,Bus,,, +10/25/2021,12:40,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4471177,Sedan,Sedan,Sedan,, +10/25/2021,7:35,BROOKLYN,11234,,,,EAST 55 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470933,Sedan,Van,,, +10/25/2021,23:00,BRONX,10469,40.872826,-73.8521,"(40.872826, -73.8521)",,,1215 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471485,Sedan,,,, +10/25/2021,19:05,BROOKLYN,11210,40.614136,-73.94836,"(40.614136, -73.94836)",AVENUE O,EAST 26 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470997,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,13:15,MANHATTAN,10031,40.827774,-73.945755,"(40.827774, -73.945755)",WEST 149 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518245,Sedan,,,, +07/05/2022,21:15,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",BROOKVILLE BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543669,Sedan,Sedan,,, +10/25/2021,17:00,BROOKLYN,11208,40.68444,-73.869385,"(40.68444, -73.869385)",,,3420 FULTON STREET,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4471058,Bus,Van,,, +10/25/2021,2:00,,,40.745834,-73.7724182,"(40.745834, -73.7724182)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4470589,Tractor Truck Diesel,,,, +10/25/2021,16:53,,,40.746918,-73.97124,"(40.746918, -73.97124)",1 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471199,Bike,Sedan,,, +10/25/2021,14:30,QUEENS,11421,40.695232,-73.859856,"(40.695232, -73.859856)",85 ROAD,85 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470902,Bus,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,0:25,MANHATTAN,10032,,,,EDGECOMBE AVENUE,WEST 157 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4471088,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/25/2021,20:17,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",EAST 233 STREET,CARPENTER AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471478,Sedan,Bike,,, +10/25/2021,16:00,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470928,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,18:32,BROOKLYN,11222,40.73038,-73.94657,"(40.73038, -73.94657)",,,335 CALYER STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470962,Sedan,Sedan,,, +10/23/2021,22:40,QUEENS,11377,,,,69 STREET,WOODSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471434,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,8:30,MANHATTAN,10002,,,,,,29 HENRY STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4471356,Station Wagon/Sport Utility Vehicle,Tanker,,, +10/25/2021,7:30,BRONX,10451,,,,EAST 161 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470983,SCHOOL BUS,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,19:51,,,40.632538,-73.883194,"(40.632538, -73.883194)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4470918,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,4:00,QUEENS,11101,,,,VERNON BOULEVARD,44 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471607,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,0:15,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471321,Sedan,,,, +10/25/2021,7:00,MANHATTAN,10012,40.720936,-73.993805,"(40.720936, -73.993805)",BOWERY,SPRING STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471345,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/24/2021,16:44,BROOKLYN,11221,,,,,,733 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471366,Sedan,Sedan,,, +10/25/2021,19:45,MANHATTAN,10021,40.767532,-73.953255,"(40.767532, -73.953255)",EAST 73 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470942,Sedan,,,, +10/25/2021,13:00,,,40.7283988,-73.8330164,"(40.7283988, -73.8330164)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470892,Box Truck,Dump,,, +04/09/2022,6:03,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517582,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,19:57,,,40.84434,-73.91475,"(40.84434, -73.91475)",WEST MOUNT EDEN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517881,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/09/2022,21:50,QUEENS,11385,40.70186,-73.88192,"(40.70186, -73.88192)",MYRTLE AVENUE,69 PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4517715,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/04/2022,15:00,,,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518118,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,23:09,,,40.725994,-73.75815,"(40.725994, -73.75815)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4518097,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/09/2022,0:10,QUEENS,11362,40.752098,-73.74142,"(40.752098, -73.74142)",DOUGLASTON PARKWAY,WEST ALLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517337,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,2:00,,,40.695583,-73.92078,"(40.695583, -73.92078)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4517660,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,16:28,BROOKLYN,11207,40.68081,-73.891815,"(40.68081, -73.891815)",,,256 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4517980,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,23:20,BROOKLYN,11225,40.659805,-73.96269,"(40.659805, -73.96269)",,,99 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517787,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,18:15,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518063,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,21:49,MANHATTAN,10128,40.783237,-73.95846,"(40.783237, -73.95846)",,,11 EAST 89 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518191,Sedan,,,, +12/12/2021,13:35,,,40.85821,-73.91679,"(40.85821, -73.91679)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4486078,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/12/2021,12:00,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4486104,Taxi,,,, +04/09/2022,0:17,BROOKLYN,11236,40.64599,-73.90328,"(40.64599, -73.90328)",,,1380 ROCKAWAY PARKWAY,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517371,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,15:40,,,40.682888,-73.78488,"(40.682888, -73.78488)",118 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4517806,Sedan,,,, +04/09/2022,8:25,MANHATTAN,10019,40.763645,-73.97769,"(40.763645, -73.97769)",WEST 56 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4518114,Box Truck,,,, +04/08/2022,16:44,BRONX,10451,40.82294,-73.91451,"(40.82294, -73.91451)",EAST 159 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4518149,Sedan,Sedan,,, +04/08/2022,6:11,,,40.575333,-74.16179,"(40.575333, -74.16179)",FOREST HILL ROAD,PLATINUM AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518031,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,8:00,,,,,,33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517380,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,21:00,BRONX,10467,40.859596,-73.865845,"(40.859596, -73.865845)",,,745 ASTOR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517527,Sedan,Sedan,,, +04/09/2022,20:12,,,40.840286,-73.92147,"(40.840286, -73.92147)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517894,Station Wagon/Sport Utility Vehicle,,,, +03/23/2022,8:13,BROOKLYN,11207,40.65766,-73.89705,"(40.65766, -73.89705)",LINDEN BOULEVARD,HINSDALE STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4517953,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +04/09/2022,13:55,MANHATTAN,10035,40.797417,-73.93747,"(40.797417, -73.93747)",,,2272 2 AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4517984,Motorscooter,,,, +03/27/2022,17:15,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4517999,Sedan,,,, +04/09/2022,22:36,STATEN ISLAND,10306,,,,ROCKLAND AVENUE,TONKING ROAD,,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4517493,Sedan,,,, +04/09/2022,10:48,QUEENS,11416,40.679485,-73.857216,"(40.679485, -73.857216)",81 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4517438,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,15:30,MANHATTAN,10027,40.813797,-73.94987,"(40.813797, -73.94987)",SAINT NICHOLAS AVENUE,WEST 130 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518230,Taxi,Bus,,, +04/09/2022,18:50,QUEENS,11354,40.764084,-73.83336,"(40.764084, -73.83336)",35 AVENUE,PRINCE STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4517465,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,10:45,QUEENS,11421,40.700127,-73.854095,"(40.700127, -73.854095)",,,83-55 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517440,Station Wagon/Sport Utility Vehicle,,,, +04/05/2022,8:40,MANHATTAN,10014,40.72877,-74.007095,"(40.72877, -74.007095)",HUDSON STREET,WEST HOUSTON STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4518133,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,19:00,,,40.708965,-73.95673,"(40.708965, -73.95673)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517517,Sedan,Sedan,,, +04/09/2022,8:32,BROOKLYN,11236,40.63608,-73.912415,"(40.63608, -73.912415)",,,8101 FLATLANDS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4517402,,,,, +04/08/2022,21:15,BROOKLYN,11207,40.656204,-73.886696,"(40.656204, -73.886696)",WORTMAN AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517998,Sedan,,,, +04/09/2022,16:40,BROOKLYN,11201,40.70206,-73.99262,"(40.70206, -73.99262)",CADMAN PLAZA WEST,HICKS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517760,Sedan,Sedan,,, +04/09/2022,5:00,,,40.722534,-73.95935,"(40.722534, -73.95935)",KENT AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4517838,Sedan,Sedan,,, +04/09/2022,14:00,,,40.67046,-73.87704,"(40.67046, -73.87704)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518012,Sedan,Sedan,,, +04/09/2022,16:28,MANHATTAN,10022,40.758633,-73.96579,"(40.758633, -73.96579)",EAST 56 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517958,E-Scooter,,,, +04/09/2022,10:30,BROOKLYN,11208,40.679897,-73.8656,"(40.679897, -73.8656)",,,452 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518003,Pick-up Truck,,,, +04/09/2022,8:56,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4517426,Sedan,,,, +04/09/2022,18:50,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4517502,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,12:45,BROOKLYN,11215,40.67096,-73.98822,"(40.67096, -73.98822)",4 AVENUE,8 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517679,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,16:45,,,,,,BAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495384,Sedan,Sedan,,, +03/08/2022,14:56,,,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4518225,Sedan,,,, +04/09/2022,20:06,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4517952,Motorcycle,,,, +04/08/2022,13:20,BRONX,10458,40.863453,-73.892746,"(40.863453, -73.892746)",,,2580 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518084,Sedan,,,, +04/07/2022,22:35,MANHATTAN,10039,40.826626,-73.939156,"(40.826626, -73.939156)",8 AVENUE,WEST 151 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518231,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/09/2022,23:35,MANHATTAN,10013,40.718456,-73.99482,"(40.718456, -73.99482)",BOWERY,GRAND STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4517530,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/09/2022,16:38,MANHATTAN,10009,40.729797,-73.97481,"(40.729797, -73.97481)",AVENUE C,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517618,Sedan,Bike,,, +04/08/2022,22:40,MANHATTAN,10037,40.81044,-73.938065,"(40.81044, -73.938065)",,,20 EAST 132 STREET,1,0,1,0,0,0,0,0,,,,,,4518138,,,,, +04/09/2022,21:00,MANHATTAN,10002,40.720245,-73.988266,"(40.720245, -73.988266)",,,132 LUDLOW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517446,Sedan,Sedan,,, +03/19/2022,3:58,,,40.865795,-73.920006,"(40.865795, -73.920006)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4518062,Sedan,Garbage or Refuse,,, +04/07/2022,12:25,MANHATTAN,10029,40.798393,-73.94112,"(40.798393, -73.94112)",,,156 EAST 116 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517968,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,22:20,BROOKLYN,11208,40.679005,-73.86423,"(40.679005, -73.86423)",FORBELL STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517991,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,23:30,BRONX,10461,40.838264,-73.8328,"(40.838264, -73.8328)",MAYFLOWER AVENUE,LASALLE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4518052,Sedan,Sedan,,, +04/09/2022,23:06,MANHATTAN,10036,40.764904,-73.998146,"(40.764904, -73.998146)",WEST 47 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518128,Sedan,Sedan,,, +04/09/2022,21:15,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,TOMPKINS AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4517742,Sedan,Motorcycle,,, +04/08/2022,0:00,,,40.76979,-73.988075,"(40.76979, -73.988075)",WEST 58 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4518104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,21:18,,,40.680744,-73.84225,"(40.680744, -73.84225)",97 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517819,Sedan,Sedan,,, +04/09/2022,16:30,QUEENS,11377,40.74425,-73.90142,"(40.74425, -73.90142)",63 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517651,Sedan,Pick-up Truck,,, +04/09/2022,4:30,BRONX,10467,40.879143,-73.87647,"(40.879143, -73.87647)",,,3395 RESERVOIR OVAL WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4517923,Sedan,,,, +04/09/2022,10:45,MANHATTAN,10030,40.820072,-73.94133,"(40.820072, -73.94133)",,,210 WEST 142 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518214,Sedan,,,, +04/09/2022,1:50,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4517563,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,12:00,,,40.60644,-73.81953,"(40.60644, -73.81953)",CROSS BAY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,15:30,,,40.640015,-73.92575,"(40.640015, -73.92575)",KINGS HIGHWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4517863,Sedan,Sedan,,, +04/09/2022,9:00,,,40.699814,-73.93236,"(40.699814, -73.93236)",MELROSE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517661,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,10:20,BROOKLYN,11211,40.71675,-73.94477,"(40.71675, -73.94477)",,,397 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4517866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,20:32,BROOKLYN,11231,40.67869,-74.013535,"(40.67869, -74.013535)",CONOVER STREET,SULLIVAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517795,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,20:54,,,40.839447,-73.88384,"(40.839447, -73.88384)",BOSTON ROAD,VYSE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518110,,,,, +06/04/2021,21:31,,,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,,,0,1,0,0,0,1,0,0,Passing or Lane Usage Improper,Unspecified,,,,4423679,Sedan,Bike,,, +07/10/2021,4:54,,,40.69953,-73.91104,"(40.69953, -73.91104)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4435781,Sedan,Sedan,Sedan,, +07/09/2021,0:38,MANHATTAN,10018,40.753513,-73.98879,"(40.753513, -73.98879)",WEST 38 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4436400,Taxi,E-Scooter,,, +06/28/2021,16:19,,,,,,JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unsafe Speed,,,4431944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,2:23,,,40.74128,-73.90257,"(40.74128, -73.90257)",61 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517358,Taxi,Station Wagon/Sport Utility Vehicle,Taxi,, +04/09/2022,4:11,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",GRAND CONCOURSE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4518144,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,21:40,,,40.84661,-73.93213,"(40.84661, -73.93213)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4517599,Tractor Truck Diesel,Sedan,Sedan,, +04/02/2022,0:03,MANHATTAN,10034,40.864403,-73.923775,"(40.864403, -73.923775)",ACADEMY STREET,SHERMAN AVENUE,,5,0,0,0,0,0,5,0,Driver Inexperience,Unspecified,,,,4518041,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,12:50,MANHATTAN,10029,40.792545,-73.94104,"(40.792545, -73.94104)",EAST 109 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518243,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,20:30,QUEENS,11365,40.728405,-73.81115,"(40.728405, -73.81115)",,,71-47 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4518093,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,6:00,BROOKLYN,11236,40.636986,-73.88923,"(40.636986, -73.88923)",EAST 100 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,16:50,BRONX,10454,40.81138,-73.91702,"(40.81138, -73.91702)",,,395 BROOK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518116,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,11:45,,,40.757534,-73.86658,"(40.757534, -73.86658)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517556,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/09/2022,12:00,QUEENS,11373,40.743973,-73.8851,"(40.743973, -73.8851)",BROADWAY,BAXTER AVENUE,,2,0,1,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4517798,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/06/2022,8:40,QUEENS,11411,40.697052,-73.74015,"(40.697052, -73.74015)",116 AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518152,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,18:56,,,40.814266,-73.912964,"(40.814266, -73.912964)",EAST 149 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518026,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,17:30,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518066,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,3:20,,,40.69757,-73.87144,"(40.69757, -73.87144)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517717,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,19:50,MANHATTAN,10019,40.764687,-73.9781,"(40.764687, -73.9781)",,,120 WEST 57 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518137,Bus,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,14:00,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",PROSPECT AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517445,Sedan,,,, +04/09/2022,21:19,,,40.693886,-73.999245,"(40.693886, -73.999245)",FURMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517469,Sedan,Pick-up Truck,,, +04/09/2022,16:48,MANHATTAN,10003,,,,5 AVENUE,13 street,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517964,Taxi,Bike,,, +04/09/2022,18:00,QUEENS,11434,40.672844,-73.76405,"(40.672844, -73.76405)",182 STREET,FARMERS BOULEVARD,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4517583,Sedan,Bus,,, +04/09/2022,18:50,BROOKLYN,11239,40.652878,-73.87706,"(40.652878, -73.87706)",,,410 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4518006,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/30/2022,17:00,MANHATTAN,10065,40.76118,-73.95791,"(40.76118, -73.95791)",EAST 63 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4518190,3-Door,,,, +04/09/2022,12:58,QUEENS,11361,40.76425,-73.775345,"(40.76425, -73.775345)",39 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517427,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,4:30,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517879,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,5:50,,,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517972,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,13:10,,,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471236,Sedan,,,, +07/11/2021,18:45,BROOKLYN,11206,40.702187,-73.944115,"(40.702187, -73.944115)",MANHATTAN AVENUE,COOK STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4435880,E-Scooter,,,, +07/11/2021,2:27,,,40.866333,-73.92501,"(40.866333, -73.92501)",ACADEMY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436108,Sedan,Taxi,,, +07/11/2021,9:15,BRONX,10461,40.853592,-73.85579,"(40.853592, -73.85579)",,,1107 NEILL AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4435965,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2021,20:22,BROOKLYN,11221,40.691555,-73.93677,"(40.691555, -73.93677)",LEWIS AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4436581,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/08/2021,10:50,QUEENS,11379,40.71244,-73.89403,"(40.71244, -73.89403)",METROPOLITAN AVENUE,65 LANE,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436553,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/11/2021,1:54,BROOKLYN,11234,40.634693,-73.92563,"(40.634693, -73.92563)",,,995 EAST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4435607,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/11/2021,8:00,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435932,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,21:00,QUEENS,11411,40.694916,-73.74126,"(40.694916, -73.74126)",,,117-21 219 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436295,Sedan,,,, +07/11/2021,1:40,,,40.724174,-73.937355,"(40.724174, -73.937355)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436031,Sedan,Sedan,,, +07/09/2021,14:30,QUEENS,11416,40.6836,-73.85511,"(40.6836, -73.85511)",,,85-19 97 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436510,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/11/2021,18:00,,,40.86177,-73.89868,"(40.86177, -73.89868)",CRESTON AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,2:52,,,40.826492,-73.907745,"(40.826492, -73.907745)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435622,Sedan,,,, +07/11/2021,7:20,BROOKLYN,11236,40.634007,-73.889366,"(40.634007, -73.889366)",,,9708 SEAVIEW AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4436050,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,21:05,STATEN ISLAND,10314,40.621017,-74.13181,"(40.621017, -74.13181)",COLLEGE AVENUE,JEWETT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436579,Sedan,Sedan,,, +07/11/2021,20:30,,,40.74106,-73.946106,"(40.74106, -73.946106)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436640,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,10:30,BROOKLYN,11218,40.637817,-73.97956,"(40.637817, -73.97956)",DAHILL ROAD,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436461,Ambulance,Sedan,,, +07/11/2021,8:45,BROOKLYN,11234,40.61224,-73.919136,"(40.61224, -73.919136)",,,2077 EAST 56 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435643,Sedan,Sedan,,, +07/11/2021,10:35,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4435840,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,19:28,BROOKLYN,11212,40.65864,-73.91374,"(40.65864, -73.91374)",NEWPORT STREET,STRAUSS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436134,Sedan,Sedan,,, +07/11/2021,15:00,,,40.74424,-73.84717,"(40.74424, -73.84717)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4436200,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/11/2021,18:35,QUEENS,11432,40.70778,-73.79341,"(40.70778, -73.79341)",90 AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436305,Taxi,Sedan,,, +07/11/2021,22:35,,,40.729446,-74.00518,"(40.729446, -74.00518)",VARICK STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436362,Sedan,Sedan,,, +07/11/2021,14:45,QUEENS,11358,40.770535,-73.79411,"(40.770535, -73.79411)",171 STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435800,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,13:43,,,40.854923,-73.82636,"(40.854923, -73.82636)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,11:13,QUEENS,11378,40.726677,-73.90736,"(40.726677, -73.90736)",,,59-40 55 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4435782,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,13:11,,,40.604355,-74.01075,"(40.604355, -74.01075)",BAY 14 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4435731,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,8:40,BRONX,10463,,,,,,164 Van Cortlandt Park S,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436595,Sedan,Sedan,,, +07/11/2021,19:54,QUEENS,11373,40.743397,-73.8742,"(40.743397, -73.8742)",,,91-22 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435830,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,1:05,QUEENS,11435,40.712288,-73.8194,"(40.712288, -73.8194)",,,83-35 139 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4435674,Sedan,Sedan,,, +07/11/2021,18:30,MANHATTAN,10012,40.729824,-73.99956,"(40.729824, -73.99956)",,,241 SULLIVAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436361,,,,, +07/11/2021,18:00,,,,,,HIGHLAND BOULEVARD,VERMONT PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4436011,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/11/2021,17:07,BRONX,10472,40.8264,-73.87581,"(40.8264, -73.87581)",WATSON AVENUE,MANOR AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436065,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,18:15,BROOKLYN,11221,40.70091,-73.926094,"(40.70091, -73.926094)",WILLOUGHBY AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436443,Sedan,Sedan,,, +07/11/2021,19:30,,,,,,,,380 ASPEN KNOLL WAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436218,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,3:08,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436378,Sedan,Sedan,,, +07/11/2021,13:28,,,40.736732,-73.85451,"(40.736732, -73.85451)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4435693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,4:20,,,40.696373,-73.979034,"(40.696373, -73.979034)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435815,Pick-up Truck,,,, +07/11/2021,19:30,QUEENS,11420,40.669876,-73.8172,"(40.669876, -73.8172)",135 AVENUE,122 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435938,Sedan,,,, +07/11/2021,21:00,BROOKLYN,11231,40.6737,-74.00444,"(40.6737, -74.00444)",LORRAINE STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436191,Sedan,,,, +07/11/2021,19:45,QUEENS,11378,40.725918,-73.89535,"(40.725918, -73.89535)",69 STREET,GRAND AVENUE,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4436547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,21:45,MANHATTAN,10032,40.83771,-73.94,"(40.83771, -73.94)",WEST 164 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435847,E-Bike,,,, +07/11/2021,12:04,BRONX,10451,40.825405,-73.91599,"(40.825405, -73.91599)",,,3204 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,21:58,BRONX,10455,40.81632,-73.903015,"(40.81632, -73.903015)",PROSPECT AVENUE,DAWSON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436607,Sedan,Multi-Wheeled Vehicle,,, +07/11/2021,13:49,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4435748,van,Sedan,,, +07/10/2021,15:09,QUEENS,11416,40.680283,-73.85471,"(40.680283, -73.85471)",84 STREET,102 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436494,,,,, +07/11/2021,5:10,BRONX,10463,,,,Henry Hudson parkway east,West 230 street,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4436271,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,2:05,BROOKLYN,11219,40.631805,-73.988304,"(40.631805, -73.988304)",50 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436344,Sedan,Sedan,,, +07/09/2021,23:30,QUEENS,11434,40.68504,-73.7668,"(40.68504, -73.7668)",120 AVENUE,SUNBURY ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436482,Sedan,Sedan,,, +06/06/2021,16:05,,,40.79157,-73.94469,"(40.79157, -73.94469)",3 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4436589,Station Wagon/Sport Utility Vehicle,Bike,,, +07/11/2021,0:00,BROOKLYN,11208,40.668022,-73.872826,"(40.668022, -73.872826)",FOUNTAIN AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436006,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,14:00,BROOKLYN,11206,40.698868,-73.94505,"(40.698868, -73.94505)",,,185 ELLERY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436565,Sedan,,,, +07/11/2021,21:26,BROOKLYN,11223,40.606907,-73.9705,"(40.606907, -73.9705)",EAST 3 STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4436052,Sedan,,,, +07/11/2021,21:12,BRONX,10460,40.844276,-73.88882,"(40.844276, -73.88882)",,,763 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435924,Dump,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:00,QUEENS,11105,40.77844,-73.90192,"(40.77844, -73.90192)",,,19-44 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436154,E-Scooter,Sedan,,, +07/11/2021,19:42,,,40.70504,-73.959045,"(40.70504, -73.959045)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4435869,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/05/2021,21:53,,,40.84091,-73.904755,"(40.84091, -73.904755)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4436519,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,8:31,,,40.6877,-73.91095,"(40.6877, -73.91095)",COVERT STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4436081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/11/2021,1:20,,,40.835297,-73.93116,"(40.835297, -73.93116)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4435933,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/11/2021,14:25,,,40.70567,-73.92142,"(40.70567, -73.92142)",WYCKOFF AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,7:20,,,40.84731,-73.9149,"(40.84731, -73.9149)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436032,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,15:49,BRONX,10455,40.815845,-73.89544,"(40.815845, -73.89544)",LONGWOOD AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436572,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:15,,,40.752663,-73.746025,"(40.752663, -73.746025)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4435608,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,18:00,,,40.655575,-73.926895,"(40.655575, -73.926895)",EAST 54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436615,Sedan,Sedan,,, +07/11/2021,8:00,,,40.782055,-73.95373,"(40.782055, -73.95373)",LEXINGTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435893,Station Wagon/Sport Utility Vehicle,Bike,,, +07/04/2021,4:15,QUEENS,11369,40.762657,-73.87326,"(40.762657, -73.87326)",96 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436476,Sedan,,,, +07/09/2021,12:05,,,40.575573,-73.99432,"(40.575573, -73.99432)",MERMAID AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4436552,Taxi,,,, +07/11/2021,3:20,,,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435629,Sedan,Sedan,,, +07/11/2021,2:25,,,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4436580,Taxi,Sedan,,, +07/11/2021,22:00,BROOKLYN,11203,40.649513,-73.93984,"(40.649513, -73.93984)",SNYDER AVENUE,EAST 40 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435865,Sedan,E-Scooter,,, +07/11/2021,17:10,BROOKLYN,11222,40.722775,-73.9471,"(40.722775, -73.9471)",DRIGGS AVENUE,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436035,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,16:23,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436666,Sedan,,,, +07/11/2021,21:19,BRONX,10456,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435925,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,9:30,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436460,PK,Sedan,,, +05/21/2021,18:58,QUEENS,11385,40.703377,-73.86343,"(40.703377, -73.86343)",MYRTLE AVENUE,UNION TURNPIKE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436516,Bike,,,, +07/11/2021,14:46,MANHATTAN,10009,40.72059,-73.974884,"(40.72059, -73.974884)",,,691 FDR DRIVE,5,0,0,0,0,0,5,0,Brakes Defective,Other Vehicular,Other Vehicular,,,4435974,Sedan,Sedan,Sedan,, +07/05/2021,8:34,MANHATTAN,10027,40.815247,-73.959915,"(40.815247, -73.959915)",,,200 CLAREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436606,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,13:10,,,40.758507,-73.83882,"(40.758507, -73.83882)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4435745,Sedan,,,, +07/11/2021,18:50,BROOKLYN,11217,40.687843,-73.980194,"(40.687843, -73.980194)",,,21 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4435784,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,1:30,QUEENS,11368,40.75085,-73.85829,"(40.75085, -73.85829)",,,108-40 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436229,Bike,Sedan,,, +07/11/2021,23:15,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4435883,Sedan,,,, +07/08/2021,20:03,MANHATTAN,10029,40.790543,-73.94542,"(40.790543, -73.94542)",,,1891 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436420,Sedan,,,, +07/11/2021,8:45,QUEENS,11419,40.68627,-73.81643,"(40.68627, -73.81643)",,,127-18 107 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4436702,Sedan,,,, +07/11/2021,13:15,BRONX,10472,40.826385,-73.859,"(40.826385, -73.859)",,,1915 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4435694,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,19:37,,,,,,,,91 EAST DRIVE,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4436098,Bike,,,, +07/11/2021,23:33,BRONX,10463,40.87836,-73.90335,"(40.87836, -73.90335)",,,170 WEST 231 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436272,Sedan,,,, +07/11/2021,2:35,BROOKLYN,11203,40.65008,-73.9466,"(40.65008, -73.9466)",,,952 NEW YORK AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4435757,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/11/2021,14:52,BRONX,10454,40.809658,-73.91331,"(40.809658, -73.91331)",SAINT MARYS STREET,BEEKMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435937,Taxi,,,, +06/30/2021,10:50,QUEENS,11385,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,81 ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436548,Bike,,,, +07/11/2021,16:00,BROOKLYN,11225,40.663284,-73.96096,"(40.663284, -73.96096)",WASHINGTON AVENUE,EMPIRE BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436588,Bike,E-Scooter,,, +07/07/2021,17:10,,,40.69304,-73.924446,"(40.69304, -73.924446)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4436444,Station Wagon/Sport Utility Vehicle,Moped,,, +04/09/2022,11:13,,,40.738945,-73.81228,"(40.738945, -73.81228)",156 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4517461,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,20:33,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,WALTON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4435958,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/10/2021,15:45,BRONX,10451,40.82557,-73.931175,"(40.82557, -73.931175)",,,700 EXTERIOR STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436523,Sedan,,,, +07/11/2021,16:00,STATEN ISLAND,10309,40.553974,-74.21282,"(40.553974, -74.21282)",,,1100 ROSSVILLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436217,Ambulance,Sedan,,, +07/11/2021,1:22,BROOKLYN,11235,40.58891,-73.96047,"(40.58891, -73.96047)",,,2775 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4435639,Sedan,Motorcycle,,, +07/11/2021,7:05,,,40.595444,-73.779045,"(40.595444, -73.779045)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436376,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,21:30,QUEENS,11357,40.789783,-73.81419,"(40.789783, -73.81419)",150 STREET,12 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435833,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,8:00,BROOKLYN,11217,40.687004,-73.9796,"(40.687004, -73.9796)",FLATBUSH AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436287,Sedan,Sedan,,, +07/11/2021,19:00,STATEN ISLAND,10306,40.580315,-74.11368,"(40.580315, -74.11368)",RICHMOND ROAD,GREELEY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436133,Sedan,Sedan,,, +07/11/2021,16:20,BROOKLYN,11208,,,,LORING AVE,EMERALD ST,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4436010,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,3:08,,,40.884033,-73.89797,"(40.884033, -73.89797)",BAILEY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4436594,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/11/2021,5:15,BRONX,10472,40.831158,-73.87956,"(40.831158, -73.87956)",,,1522 EAST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4436061,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +07/07/2021,22:24,BROOKLYN,11221,40.685234,-73.92654,"(40.685234, -73.92654)",PATCHEN AVENUE,HANCOCK STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4436535,Bike,,,, +07/11/2021,13:50,,,40.876976,-73.88966,"(40.876976, -73.88966)",WEST 205 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4435903,Station Wagon/Sport Utility Vehicle,School Bus,,, +07/08/2021,14:50,BROOKLYN,11215,40.666115,-73.978195,"(40.666115, -73.978195)",,,511 8 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4436423,Box Truck,Sedan,,, +07/02/2021,16:57,QUEENS,11434,40.671825,-73.774506,"(40.671825, -73.774506)",BREWER BOULEVARD,137 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4436484,Bike,,,, +07/11/2021,0:23,BRONX,10454,40.81009,-73.925224,"(40.81009, -73.925224)",,,295 EAST 138 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4435949,Taxi,Sedan,,, +07/11/2021,19:45,,,40.689808,-73.80931,"(40.689808, -73.80931)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436304,Sedan,,,, +07/11/2021,11:24,,,40.577488,-73.95522,"(40.577488, -73.95522)",BRIGHTON 15 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435673,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,12:48,BROOKLYN,11221,40.68607,-73.91605,"(40.68607, -73.91605)",BROADWAY,WEIRFIELD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,,,4436074,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/11/2021,1:22,,,40.700005,-73.90296,"(40.700005, -73.90296)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435798,Sedan,Sedan,,, +07/11/2021,11:07,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436088,Bike,,,, +07/11/2021,1:20,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435892,Sedan,Sedan,,, +07/11/2021,16:50,MANHATTAN,10035,40.80016,-73.93538,"(40.80016, -73.93538)",EAST 121 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436073,Sedan,Sedan,,, +07/09/2021,11:39,QUEENS,11385,40.709652,-73.91378,"(40.709652, -73.91378)",DE KALB AVENUE,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436563,Sedan,,,, +07/11/2021,11:40,,,40.853138,-73.9017,"(40.853138, -73.9017)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435988,Ambulance,Sedan,,, +07/10/2021,6:05,BRONX,10455,40.817368,-73.90259,"(40.817368, -73.90259)",EAST 156 STREET,PROSPECT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436574,Sedan,,,, +07/11/2021,3:52,,,40.748737,-73.758385,"(40.748737, -73.758385)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4435609,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,11:03,BROOKLYN,11226,40.653812,-73.95567,"(40.653812, -73.95567)",,,101 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436625,Sedan,,,, +07/11/2021,15:30,BROOKLYN,11249,40.723686,-73.95595,"(40.723686, -73.95595)",,,19 WYTHE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436468,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,3:25,,,40.701527,-73.98957,"(40.701527, -73.98957)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436279,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:00,BROOKLYN,11212,40.66386,-73.92456,"(40.66386, -73.92456)",EAST 96 STREET,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4435756,Sedan,Sedan,,, +07/11/2021,17:55,,,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435761,Flat Bed,Bike,,, +07/11/2021,22:20,,,40.769333,-73.912445,"(40.769333, -73.912445)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436161,Sedan,Sedan,,, +07/10/2021,2:50,BROOKLYN,11203,40.650726,-73.94567,"(40.650726, -73.94567)",,,245 EAST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436614,Sedan,Sedan,,, +07/11/2021,18:35,BROOKLYN,11236,40.645325,-73.91299,"(40.645325, -73.91299)",AVENUE D,EAST 89 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435813,Sedan,Sedan,,, +04/09/2022,21:02,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4517669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,4:37,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4435873,Sedan,,,, +07/11/2021,4:30,,,,,,old fulton street,henry,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4436345,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,13:30,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4435683,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,14:20,QUEENS,11421,40.69513,-73.85705,"(40.69513, -73.85705)",,,85-15 88 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4436166,Sedan,Sedan,,, +07/11/2021,17:08,,,40.709522,-74.00579,"(40.709522, -74.00579)",,,605 MAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/16/2021,18:40,QUEENS,11370,40.758358,-73.88684,"(40.758358, -73.88684)",,,31-48 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436410,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,9:30,BRONX,10464,40.84282,-73.784836,"(40.84282, -73.784836)",,,150 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4435719,Sedan,,,, +07/11/2021,4:00,QUEENS,11379,40.729073,-73.87572,"(40.729073, -73.87572)",,,84-31 60 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435804,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,19:00,BROOKLYN,11206,40.702724,-73.95002,"(40.702724, -73.95002)",HARRISON AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435857,Box Truck,Sedan,,, +07/11/2021,0:20,,,40.793816,-73.94012,"(40.793816, -73.94012)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,5:27,MANHATTAN,10011,40.732944,-73.99799,"(40.732944, -73.99799)",WEST 8 STREET,MAC DOUGAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436464,Pick-up Truck,Pick-up Truck,,, +07/04/2021,22:43,,,40.703537,-73.895546,"(40.703537, -73.895546)",CYPRESS HILLS STREET,FRESH POND ROAD,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4436603,Sedan,Sedan,Sedan,, +07/11/2021,11:00,,,,,,VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435742,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,19:49,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,2:00,QUEENS,11373,40.742012,-73.87433,"(40.742012, -73.87433)",,,90-47 CORONA AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4435672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/11/2021,22:38,,,40.765324,-73.816185,"(40.765324, -73.816185)",149 PLACE,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435834,Sedan,,,, +07/11/2021,5:42,QUEENS,11419,40.681316,-73.83264,"(40.681316, -73.83264)",,,107-24 108 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,21:00,BROOKLYN,11225,40.666195,-73.94902,"(40.666195, -73.94902)",,,329 CROWN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4435820,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,21:48,BROOKLYN,11221,40.6935,-73.92911,"(40.6935, -73.92911)",,,1136 BROADWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436556,Station Wagon/Sport Utility Vehicle,Bus,,, +07/11/2021,22:40,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436347,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,0:38,,,40.82391,-73.94244,"(40.82391, -73.94244)",BRADHURST AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435928,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,21:00,,,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4436220,Sedan,Sedan,,, +07/11/2021,21:00,BRONX,10451,40.81523,-73.920166,"(40.81523, -73.920166)",,,485 COURTLANDT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4436373,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,3:04,QUEENS,11435,40.69985,-73.80974,"(40.69985, -73.80974)",ARCHER AVENUE,144 PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436303,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,16:15,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",WEBSTER AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436027,Sedan,,,, +06/09/2021,11:30,QUEENS,11369,40.76199,-73.86934,"(40.76199, -73.86934)",ASTORIA BOULEVARD,100 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436515,Sedan,Tractor Truck Diesel,,, +06/20/2021,4:50,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436695,E-Bike,Sedan,,, +07/11/2021,7:29,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",CLAREMONT PARKWAY,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435915,Taxi,Taxi,,, +07/11/2021,3:00,QUEENS,11385,40.713436,-73.91467,"(40.713436, -73.91467)",METROPOLITAN AVENUE,STARR STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436549,Pick-up Truck,Sedan,,, +07/11/2021,10:25,MANHATTAN,10028,40.77831,-73.962776,"(40.77831, -73.962776)",EAST 81 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435902,4 dr sedan,,,, +07/11/2021,5:00,,,,,,BROOKVILLE BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4435637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/01/2021,7:00,BRONX,10474,40.816864,-73.882744,"(40.816864, -73.882744)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436575,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/11/2021,12:20,BROOKLYN,11205,40.694454,-73.973175,"(40.694454, -73.973175)",,,84 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435788,Chassis Cab,PK,,, +07/11/2021,12:50,BRONX,10466,40.896687,-73.84511,"(40.896687, -73.84511)",PITMAN AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435961,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,8:00,BRONX,10463,40.883286,-73.89775,"(40.883286, -73.89775)",,,135 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436679,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,13:43,,,40.735764,-73.97491,"(40.735764, -73.97491)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4436479,Moped,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:10,,,,,,CROSS BRONX EXPRESSWAY,LAFAYETTE AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4435975,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,16:40,,,,,,Foch blvd,Guy r brewer,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4436128,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,2:16,QUEENS,11434,,,,168 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4436485,Sedan,Sedan,Sedan,, +07/11/2021,13:30,QUEENS,11420,40.670612,-73.80557,"(40.670612, -73.80557)",133 STREET,131 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435936,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,21:00,,,,,,TRIBOROUGH BRIDGE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4435875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,11:00,STATEN ISLAND,10304,40.63166,-74.08394,"(40.63166, -74.08394)",,,199 WARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436568,Sedan,,,, +07/06/2021,0:55,BRONX,10463,40.881405,-73.90002,"(40.881405, -73.90002)",,,3440 BAILEY AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4436584,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/11/2021,17:30,STATEN ISLAND,10309,40.537834,-74.20564,"(40.537834, -74.20564)",FOSTER ROAD,RENSSELAER AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4436212,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/24/2021,18:30,,,40.694496,-73.91482,"(40.694496, -73.91482)",WOODBINE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436445,Sedan,,,, +07/11/2021,14:15,BROOKLYN,11208,40.688084,-73.876686,"(40.688084, -73.876686)",CHESTNUT STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436009,Sedan,Box Truck,,, +07/11/2021,7:35,,,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4436076,Sedan,Box Truck,,, +07/09/2021,12:17,BRONX,10452,40.83005,-73.922424,"(40.83005, -73.922424)",EAST 164 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436521,Sedan,Sedan,,, +07/11/2021,23:14,BROOKLYN,11234,40.62619,-73.921844,"(40.62619, -73.921844)",EAST 56 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4436090,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/04/2021,17:28,MANHATTAN,10001,40.747856,-74.000595,"(40.747856, -74.000595)",,,365 WEST 25 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4436542,Sedan,,,, +07/11/2021,0:46,,,40.638695,-73.87859,"(40.638695, -73.87859)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435610,Sedan,,,, +07/09/2021,11:50,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4436633,Moped,,,, +07/05/2021,0:15,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436569,Sedan,Sedan,,, +07/11/2021,21:16,BRONX,10457,40.837807,-73.9003,"(40.837807, -73.9003)",,,543 CLAREMONT PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435914,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,18:40,,,40.69432,-73.99888,"(40.69432, -73.99888)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4436280,Sedan,Sedan,Sedan,, +07/11/2021,1:40,BROOKLYN,11215,40.66191,-73.981735,"(40.66191, -73.981735)",,,417 15 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4435773,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,13:00,BRONX,10463,40.87814,-73.905365,"(40.87814, -73.905365)",,,5547 BROADWAY,1,0,0,0,0,0,1,0,Unspecified,,,,,4436241,Motorcycle,,,, +07/05/2021,0:23,,,40.88647,-73.89603,"(40.88647, -73.89603)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4436593,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +06/25/2021,13:30,QUEENS,11370,40.761017,-73.885414,"(40.761017, -73.885414)",,,30-03 83 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4436480,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:18,,,40.880623,-73.84047,"(40.880623, -73.84047)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436014,Sedan,,,, +07/11/2021,4:18,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4436060,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,21:30,BRONX,10465,40.832344,-73.81629,"(40.832344, -73.81629)",,,836 DEAN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4436424,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,2:30,QUEENS,11420,40.68029,-73.80807,"(40.68029, -73.80807)",115 AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436145,Sedan,,,, +07/11/2021,18:10,QUEENS,11422,40.682148,-73.729614,"(40.682148, -73.729614)",237 STREET,128 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4435818,Sedan,Sedan,Sedan,, +07/11/2021,16:45,BROOKLYN,11211,40.71216,-73.95131,"(40.71216, -73.95131)",,,394 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435871,Sedan,E-Scooter,,, +07/11/2021,11:33,,,40.72752,-73.75879,"(40.72752, -73.75879)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,19:46,BROOKLYN,11212,40.65794,-73.907745,"(40.65794, -73.907745)",ROCKAWAY AVENUE,LOTT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,6:00,BRONX,10454,40.810345,-73.92495,"(40.810345, -73.92495)",,,257 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4435944,AMBULANCE,AMBULANCE,,, +07/06/2021,19:07,BROOKLYN,11203,40.653267,-73.93927,"(40.653267, -73.93927)",ALBANY AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436613,Sedan,Sedan,,, +07/11/2021,17:45,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4435827,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,21:40,,,40.740364,-73.89972,"(40.740364, -73.89972)",65 PLACE,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435877,Sedan,Sedan,,, +07/02/2021,19:50,,,40.85288,-73.92025,"(40.85288, -73.92025)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436448,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,1:35,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436338,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,23:30,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4436353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,2:00,QUEENS,11418,40.700253,-73.83105,"(40.700253, -73.83105)",BABBAGE STREET,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435682,Sedan,,,, +07/11/2021,16:30,BRONX,10472,40.82322,-73.882996,"(40.82322, -73.882996)",,,1419 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4436070,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,13:30,MANHATTAN,10001,40.7448,-73.991425,"(40.7448, -73.991425)",WEST 26 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435753,Sedan,,,, +07/11/2021,16:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4436201,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:05,MANHATTAN,10029,40.793472,-73.93726,"(40.793472, -73.93726)",1 AVENUE,EAST 112 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435644,Sedan,,,, +07/11/2021,22:27,,,40.612724,-73.94418,"(40.612724, -73.94418)",AVENUE P,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,16:45,BROOKLYN,11211,40.71216,-73.95131,"(40.71216, -73.95131)",,,394 UNION AVENUE,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4436317,E-Scooter,Sedan,,, +07/11/2021,21:29,QUEENS,11412,40.701122,-73.756195,"(40.701122, -73.756195)",113 AVENUE,199 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436138,Sedan,E-Scooter,,, +07/11/2021,17:27,,,40.690655,-73.889175,"(40.690655, -73.889175)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435802,Sedan,Sedan,,, +07/07/2021,16:40,QUEENS,11372,40.75412,-73.881325,"(40.75412, -73.881325)",34 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436582,Bus,Station Wagon/Sport Utility Vehicle,,, +06/18/2021,23:10,QUEENS,11385,40.70436,-73.86844,"(40.70436, -73.86844)",,,78-31 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,14:30,BRONX,10461,40.85566,-73.85546,"(40.85566, -73.85546)",,,2100 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4435963,Sedan,Ambulance,,, +07/11/2021,18:00,QUEENS,11414,40.650143,-73.84248,"(40.650143, -73.84248)",164 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435931,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,3:00,MANHATTAN,10003,40.73225,-73.99636,"(40.73225, -73.99636)",5 AVENUE,WEST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436462,Sedan,Sedan,,, +07/10/2021,3:01,QUEENS,11385,40.705048,-73.90304,"(40.705048, -73.90304)",MADISON STREET,FAIRVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436514,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,23:00,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",LIBERTY AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4435987,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,4:00,QUEENS,11378,40.722897,-73.91386,"(40.722897, -73.91386)",MASPETH AVENUE,RUST STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4435791,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,3:00,,,40.69302,-73.93706,"(40.69302, -73.93706)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4435739,Sedan,Sedan,Sedan,Sedan,Sedan +07/07/2021,19:00,BROOKLYN,11249,40.71848,-73.96322,"(40.71848, -73.96322)",,,40 NORTH 4 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436599,Sedan,,,, +07/11/2021,8:00,QUEENS,11436,40.66707,-73.793076,"(40.66707, -73.793076)",NORTH CONDUIT AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436219,Sedan,,,, +07/11/2021,16:45,BRONX,10451,40.81864,-73.92221,"(40.81864, -73.92221)",,,599 MORRIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436372,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:00,,,40.77535,-73.80956,"(40.77535, -73.80956)",154 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435838,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,16:20,BROOKLYN,11222,40.722725,-73.94748,"(40.722725, -73.94748)",DRIGGS AVENUE,GRAHAM AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4436029,Moped,,,, +07/11/2021,23:45,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436297,Sedan,Sedan,,, +07/11/2021,3:20,QUEENS,11436,40.670326,-73.79244,"(40.670326, -73.79244)",146 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436109,Sedan,Sedan,,, +07/11/2021,0:00,,,,,,,,528 veterans,0,0,0,0,0,0,0,0,Unspecified,,,,,4435724,Sedan,,,, +07/11/2021,5:30,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435638,Sedan,,,, +07/11/2021,5:29,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",EAST 63 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4435899,Sedan,E-Scooter,,, +07/11/2021,10:58,,,40.632538,-74.133606,"(40.632538, -74.133606)",,,988 POST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436049,Bus,Sedan,,, +07/11/2021,18:48,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4435850,Motorcycle,Sedan,,, +07/11/2021,21:11,BROOKLYN,11214,40.586445,-73.98838,"(40.586445, -73.98838)",CROPSEY AVENUE,28 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436555,Bike,,,, +07/09/2021,22:26,BRONX,10459,,,,EAST 169 STREET,REV JAMES POLITE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436578,Sedan,E-Scooter,,, +07/06/2021,17:55,,,40.693905,-73.94892,"(40.693905, -73.94892)",WILLOUGHBY AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436477,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,6:45,,,40.84807,-73.91876,"(40.84807, -73.91876)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4436687,Van,,,, +07/11/2021,8:42,QUEENS,11419,40.68131,-73.832634,"(40.68131, -73.832634)",,,107-30 108 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4435920,Sedan,,,, +07/06/2021,14:10,QUEENS,11412,40.70564,-73.75048,"(40.70564, -73.75048)",FRANCIS LEWIS BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436486,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,16:45,BROOKLYN,11234,40.63039,-73.93006,"(40.63039, -73.93006)",EAST 48 STREET,AVENUE I,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4436180,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/11/2021,17:40,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,2,0,1,0,0,0,1,0,Unspecified,,,,,4435775,Motorcycle,,,, +07/11/2021,18:35,,,40.664707,-73.92824,"(40.664707, -73.92824)",EAST NEW YORK AVENUE,ROCHESTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,17:00,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,SNYDER AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,Unspecified,,,4436612,Sedan,Sedan,Bus,, +07/11/2021,6:00,QUEENS,11422,40.66495,-73.73182,"(40.66495, -73.73182)",,,138-30 247 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436151,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,10:45,BROOKLYN,11236,40.644634,-73.89044,"(40.644634, -73.89044)",,,10519 AVENUE K,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435749,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,14:50,QUEENS,11373,40.74333,-73.88372,"(40.74333, -73.88372)",,,81-01 BROADWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435828,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/11/2021,11:10,MANHATTAN,10013,40.718075,-74.004875,"(40.718075, -74.004875)",,,86 FRANKLIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436383,Sedan,Box Truck,,, +07/11/2021,23:35,QUEENS,11420,40.677273,-73.82614,"(40.677273, -73.82614)",,,112-05 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,8:33,QUEENS,11413,40.666306,-73.785934,"(40.666306, -73.785934)",SOUTH CONDUIT AVENUE,153 PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4435692,Box Truck,Sedan,,, +07/10/2021,13:00,MANHATTAN,10016,40.74715,-73.985504,"(40.74715, -73.985504)",5 AVENUE,EAST 32 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436690,Sedan,Box Truck,,, +07/04/2021,21:30,QUEENS,11434,40.68542,-73.76526,"(40.68542, -73.76526)",120 AVENUE,178 PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436481,,,,, +07/11/2021,10:30,BROOKLYN,11207,40.66353,-73.89758,"(40.66353, -73.89758)",,,499 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436008,Sedan,,,, +07/10/2021,0:00,BROOKLYN,11221,40.69009,-73.93648,"(40.69009, -73.93648)",LEWIS AVENUE,GREENE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436567,Sedan,Sedan,,, +06/27/2021,10:00,BRONX,10474,40.81247,-73.88884,"(40.81247, -73.88884)",,,621 BARRETTO STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4436571,Sedan,,,, +07/11/2021,0:43,,,40.717014,-73.82971,"(40.717014, -73.82971)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4435617,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,16:45,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436068,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,18:05,BROOKLYN,11223,40.60316,-73.98169,"(40.60316, -73.98169)",WEST 9 STREET,HIGHLAWN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436095,Sedan,,,, +07/08/2021,14:02,MANHATTAN,10023,40.774155,-73.984886,"(40.774155, -73.984886)",WEST 65 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436634,E-Scooter,,,, +07/11/2021,18:15,BRONX,10459,40.827564,-73.88798,"(40.827564, -73.88798)",,,1139 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4435911,Sedan,Sedan,,, +06/26/2021,23:20,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436439,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,20:30,BROOKLYN,11224,40.57554,-73.979645,"(40.57554, -73.979645)",SURF AVENUE,WEST 12 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4435940,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,10:15,,,40.70455,-73.91662,"(40.70455, -73.91662)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436079,Sedan,,,, +07/11/2021,20:30,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",SOUTH CONDUIT AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435817,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,2:00,,,,,,VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4435675,Sedan,,,, +07/11/2021,6:40,,,40.771088,-73.98343,"(40.771088, -73.98343)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436264,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,20:25,,,40.815826,-73.947044,"(40.815826, -73.947044)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4436449,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,21:00,QUEENS,11378,40.729084,-73.93104,"(40.729084, -73.93104)",LAUREL HILL BOULEVARD,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4435878,Pick-up Truck,,,, +07/11/2021,12:00,BROOKLYN,11211,40.710735,-73.961815,"(40.710735, -73.961815)",DRIGGS AVENUE,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4435870,Sedan,,,, +07/11/2021,10:15,BROOKLYN,11232,0,0,"(0.0, 0.0)",8 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436341,Sedan,,,, +07/01/2021,5:57,,,40.59933,-73.75632,"(40.59933, -73.75632)",ELK DRIVE,,,1,0,0,0,0,0,0,0,Unsafe Speed,,,,,4436715,E-Scooter,,,, +07/11/2021,19:51,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4435935,Sedan,Sedan,,, +07/11/2021,18:05,,,40.688667,-73.87548,"(40.688667, -73.87548)",JAMAICA AVENUE,EUCLID AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436012,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,20:30,BROOKLYN,11214,40.603275,-73.99606,"(40.603275, -73.99606)",86 STREET,21 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436546,E-Bike,Sedan,,, +07/11/2021,20:35,MANHATTAN,10035,40.802338,-73.93389,"(40.802338, -73.93389)",,,2425 2 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4436053,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/11/2021,20:43,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",WALTON AVENUE,EAST 165 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4435921,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/07/2021,16:39,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4436488,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Box Truck,, +07/08/2021,6:38,,,40.84366,-73.92005,"(40.84366, -73.92005)",WEST 172 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436520,Sedan,,,, +06/11/2021,2:20,QUEENS,11385,40.70998,-73.908165,"(40.70998, -73.908165)",,,482 GRANDVIEW AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436551,Sedan,,,, +07/11/2021,2:00,BRONX,10467,40.88471,-73.86899,"(40.88471, -73.86899)",,,3600 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4435964,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,10:15,STATEN ISLAND,10314,40.612576,-74.12931,"(40.612576, -74.12931)",,,1955 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436592,Sedan,Sedan,,, +04/07/2022,10:06,BRONX,10470,40.8995,-73.857,"(40.8995, -73.857)",NEREID AVENUE,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518086,Garbage or Refuse,Sedan,,, +02/09/2022,13:50,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4518127,Sedan,Sedan,Sedan,, +04/04/2022,12:45,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518019,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,13:30,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517576,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,4:08,MANHATTAN,10003,40.735874,-73.9853,"(40.735874, -73.9853)",,,205 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517696,Motorcycle,,,, +04/09/2022,13:15,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518226,Taxi,,,, +04/09/2022,2:30,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4518077,Sedan,Sedan,,, +04/09/2022,0:16,,,40.65812,-73.934006,"(40.65812, -73.934006)",WINTHROP STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517957,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,2:15,QUEENS,11105,40.778896,-73.90511,"(40.778896, -73.90511)",,,33-01 20 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4517377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,11:00,,,40.66704,-73.85647,"(40.66704, -73.85647)",SAPPHIRE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518002,Sedan,Sedan,,, +04/09/2022,16:30,MANHATTAN,10001,40.748466,-73.99247,"(40.748466, -73.99247)",7 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517521,Box Truck,Ambulance,,, +04/08/2022,7:30,BROOKLYN,11208,40.67374,-73.88341,"(40.67374, -73.88341)",PITKIN AVENUE,ELTON STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4517979,Bus,Sedan,Sedan,, +04/09/2022,12:20,QUEENS,11432,40.710583,-73.78356,"(40.710583, -73.78356)",179 STREET,90 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517893,Sedan,,,, +04/09/2022,3:18,BROOKLYN,11233,40.683315,-73.9368,"(40.683315, -73.9368)",,,393 HALSEY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517751,Sedan,Sedan,,, +04/03/2022,0:50,MANHATTAN,10014,40.735844,-74.00597,"(40.735844, -74.00597)",HUDSON STREET,WEST 11 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Aggressive Driving/Road Rage,,,,4518132,Bike,Sedan,,, +04/09/2022,21:30,QUEENS,11420,40.665997,-73.81648,"(40.665997, -73.81648)",NORTH CONDUIT AVENUE,124 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517823,Sedan,BOX TRUCK,,, +04/07/2022,7:00,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4518078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,1:18,BRONX,10457,40.845695,-73.90044,"(40.845695, -73.90044)",,,4132 PARK AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4517612,Sedan,Taxi,,, +04/08/2022,17:30,BROOKLYN,11207,40.682316,-73.88814,"(40.682316, -73.88814)",RIDGEWOOD AVENUE,WARWICK STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4518007,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +03/29/2022,11:30,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518053,Sedan,Sedan,,, +04/09/2022,12:46,MANHATTAN,10001,40.749134,-73.98829,"(40.749134, -73.98829)",,,49 WEST 33 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517695,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,8:25,BROOKLYN,11208,40.68518,-73.873665,"(40.68518, -73.873665)",PINE STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4517983,Sedan,Sedan,,, +04/09/2022,7:30,QUEENS,11106,40.76701,-73.93011,"(40.76701, -73.93011)",,,31-13 21 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517401,Sedan,Sedan,,, +04/09/2022,18:40,BROOKLYN,11229,40.595604,-73.94389,"(40.595604, -73.94389)",EAST 27 STREET,AVENUE W,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4517851,Sedan,Sedan,,, +04/09/2022,5:36,,,40.792347,-73.95253,"(40.792347, -73.95253)",5 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4517492,Sedan,Sedan,,, +04/09/2022,15:07,QUEENS,11412,40.706207,-73.75831,"(40.706207, -73.75831)",,,199-11 HOLLIS AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4517867,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,20:30,,,40.718853,-74.00485,"(40.718853, -74.00485)",WHITE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517596,Convertible,,,, +04/09/2022,9:39,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517850,Sedan,Sedan,,, +04/09/2022,21:30,QUEENS,11367,40.727573,-73.81336,"(40.727573, -73.81336)",,,72-59 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518102,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,15:45,,,40.68987,-73.988304,"(40.68987, -73.988304)",SCHERMERHORN STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517737,Sedan,Ambulance,,, +07/12/2021,11:46,QUEENS,11004,40.744125,-73.71743,"(40.744125, -73.71743)",,,253-02 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436149,Sedan,,,, +01/14/2022,15:30,,,,,,,,69-02 65 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495750,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,18:00,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518111,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,1:00,,,40.752464,-73.74344,"(40.752464, -73.74344)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517361,Sedan,Sedan,Sedan,, +04/09/2022,16:40,BRONX,10454,40.81271,-73.91778,"(40.81271, -73.91778)",,,444 EAST 145 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/06/2022,15:30,,,40.63777,-74.07602,"(40.63777, -74.07602)",BAY STREET,VICTORY BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518040,Sedan,,,, +04/08/2022,15:45,MANHATTAN,10014,40.736958,-74.00651,"(40.736958, -74.00651)",GREENWICH STREET,BETHUNE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517974,Taxi,,,, +04/09/2022,7:24,QUEENS,11354,40.764084,-73.83336,"(40.764084, -73.83336)",PRINCE STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,Other Vehicular,,,4517460,Sedan,Sedan,Sedan,, +04/09/2022,12:35,,,40.7826,-73.79446,"(40.7826, -73.79446)",UTOPIA PARKWAY,17 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517462,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,18:20,BROOKLYN,11210,40.633957,-73.94848,"(40.633957, -73.94848)",,,2923 GLENWOOD ROAD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4517928,Sedan,E-Bike,,, +04/05/2022,16:45,BRONX,10455,40.818993,-73.909744,"(40.818993, -73.909744)",EAST 156 STREET,EAGLE AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4518143,Sedan,Sedan,,, +04/09/2022,23:50,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517500,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,19:51,MANHATTAN,10014,40.72911,-74.01068,"(40.72911, -74.01068)",WEST STREET,WEST HOUSTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517965,Sedan,Sedan,Sedan,, +04/06/2022,13:30,MANHATTAN,10006,40.711033,-74.01454,"(40.711033, -74.01454)",WEST STREET,LIBERTY STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4518211,Sedan,Bike,,, +04/09/2022,9:30,,,40.754864,-73.85255,"(40.754864, -73.85255)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4517572,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,7:30,BROOKLYN,11208,40.66041,-73.87693,"(40.66041, -73.87693)",WORTMAN AVENUE,ELTON STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,Turning Improperly,Unspecified,Unspecified,Unspecified,4517994,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck +04/08/2022,16:05,BROOKLYN,11218,40.63544,-73.97912,"(40.63544, -73.97912)",40 STREET,DAHILL ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518252,Sedan,,,, +04/09/2022,11:30,BROOKLYN,11209,40.61859,-74.02871,"(40.61859, -74.02871)",91 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517423,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/09/2022,0:47,,,40.635536,-74.156975,"(40.635536, -74.156975)",,,35 DEHART AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517939,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,20:05,BROOKLYN,11207,40.654263,-73.887024,"(40.654263, -73.887024)",,,118 COZINE AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4517986,Sedan,,,, +04/09/2022,13:55,,,40.797,-73.93778,"(40.797, -73.93778)",2 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4518005,Motorscooter,Sedan,,, +04/09/2022,5:30,,,40.79486,-73.94649,"(40.79486, -73.94649)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4517429,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/09/2022,23:51,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4517498,Sedan,Taxi,Sedan,, +03/26/2022,12:10,,,40.822388,-73.934296,"(40.822388, -73.934296)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518227,Sedan,,,, +04/03/2022,22:07,,,,,,WEBSTER AVENUE,clarmount parkway,,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4518238,Sedan,Sedan,,, +04/09/2022,0:00,,,40.73866,-73.81027,"(40.73866, -73.81027)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4517547,Sedan,Sedan,,, +04/09/2022,12:15,QUEENS,11101,40.75352,-73.93448,"(40.75352, -73.93448)",29 STREET,39 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517802,Sedan,Sedan,,, +04/08/2022,20:00,MANHATTAN,10030,40.820534,-73.94054,"(40.820534, -73.94054)",,,200 WEST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518219,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,20:59,BRONX,10453,40.8499,-73.90919,"(40.8499, -73.90919)",EAST 177 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518036,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,20:50,,,40.637276,-73.93177,"(40.637276, -73.93177)",FARRAGUT ROAD,,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4493645,Sedan,PAS,,, +01/15/2022,4:55,,,40.828297,-73.95087,"(40.828297, -73.95087)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4495901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/15/2022,2:50,MANHATTAN,10016,40.74135,-73.981316,"(40.74135, -73.981316)",3 AVENUE,EAST 27 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495898,Sedan,,,, +01/16/2022,5:33,BROOKLYN,11204,40.611675,-73.99313,"(40.611675, -73.99313)",,,1933 75 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4495915,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/14/2022,0:05,BROOKLYN,11228,40.612286,-74.01098,"(40.612286, -74.01098)",86 STREET,BAY 7 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495913,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,11:50,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495879,Sedan,Bus,,, +01/16/2022,21:48,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4495906,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,12:00,BROOKLYN,11212,40.664333,-73.90769,"(40.664333, -73.90769)",,,300 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495885,Pick-up Truck,Pick-up Truck,,, +01/16/2022,22:46,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4495905,Sedan,,,, +01/15/2022,6:00,BROOKLYN,11233,40.680138,-73.90566,"(40.680138, -73.90566)",BROADWAY,HULL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4495887,Sedan,Sedan,Sedan,, +01/13/2022,1:24,MANHATTAN,10010,40.740185,-73.986374,"(40.740185, -73.986374)",EAST 23 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4495897,Taxi,Bus,,, +10/24/2021,11:09,,,,,,WEST 57 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470597,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,17:55,,,40.7858,-73.821915,"(40.7858, -73.821915)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504545,Bus,Sedan,,, +02/21/2022,20:06,QUEENS,11377,40.73725,-73.91799,"(40.73725, -73.91799)",48 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504546,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,16:19,BROOKLYN,11215,40.66598,-73.992386,"(40.66598, -73.992386)",,,574 4 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504537,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,13:10,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4504540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,9:30,BROOKLYN,11206,40.702343,-73.94761,"(40.702343, -73.94761)",,,307 WALLABOUT STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4504548,CAT FORKLI,,,, +02/21/2022,11:57,QUEENS,11357,40.78585,-73.79509,"(40.78585, -73.79509)",UTOPIA PARKWAY,WILLETS POINT BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4504541,Sedan,Sedan,,, +02/21/2022,11:40,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504542,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,16:00,,,0,0,"(0.0, 0.0)",WEST 14 STREET,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4518136,Taxi,Bike,,, +04/09/2022,14:00,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517444,Sedan,Sedan,,, +04/09/2022,4:05,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4517594,Pick-up Truck,,,, +04/09/2022,0:00,BROOKLYN,11229,40.610336,-73.9535,"(40.610336, -73.9535)",,,2102 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517388,Sedan,,,, +04/09/2022,9:17,QUEENS,11432,40.724186,-73.790886,"(40.724186, -73.790886)",80 DRIVE,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4517524,Station Wagon/Sport Utility Vehicle,Bus,,, +04/09/2022,18:17,,,40.86536,-73.87043,"(40.86536, -73.87043)",SOUTHERN BOULEVARD,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4517904,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/09/2022,7:30,QUEENS,11375,40.720978,-73.8383,"(40.720978, -73.8383)",112 STREET,72 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517507,Sedan,,,, +04/08/2022,23:15,,,40.602055,-74.16707,"(40.602055, -74.16707)",,,114 SIGNS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518099,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,15:12,,,40.651714,-73.882706,"(40.651714, -73.882706)",VANDALIA AVENUE,ARDSLEY LOOP,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517995,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,20:47,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",QUEENS BOULEVARD,50 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4517653,Bike,,,, +01/17/2022,6:03,MANHATTAN,10065,40.764053,-73.96476,"(40.764053, -73.96476)",EAST 63 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495372,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,15:20,,,40.58765,-74.15477,"(40.58765, -74.15477)",,,553 KLONDIKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495670,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,21:34,,,40.64491,-73.95256,"(40.64491, -73.95256)",VERONICA PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4495472,Sedan,Sedan,Sedan,, +01/17/2022,2:07,QUEENS,11102,40.77471,-73.933395,"(40.77471, -73.933395)",27 AVENUE,4 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495033,Tractor Truck Gasoline,Sedan,,, +01/17/2022,2:31,BROOKLYN,11217,40.68787,-73.978355,"(40.68787, -73.978355)",ASHLAND PLACE,FULTON STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4495433,Sedan,Sedan,,, +01/17/2022,10:10,QUEENS,11103,40.769062,-73.91522,"(40.769062, -73.91522)",,,25-48 35 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495515,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,0:15,,,40.59016,-74.1592,"(40.59016, -74.1592)",KLONDIKE AVENUE,MERRYMOUNT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4495120,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,9:39,BROOKLYN,11211,40.704323,-73.95654,"(40.704323, -73.95654)",,,208 HEWES STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495537,Station Wagon/Sport Utility Vehicle,Bus,,, +01/16/2022,19:16,,,40.60715,-73.89837,"(40.60715, -73.89837)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495845,Station Wagon/Sport Utility Vehicle,Unknown,,, +01/17/2022,5:20,QUEENS,11354,40.76509,-73.82907,"(40.76509, -73.82907)",35 AVENUE,LEAVITT STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,12:00,BROOKLYN,11209,40.618137,-74.03414,"(40.618137, -74.03414)",,,252 94 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495344,Sedan,,,, +01/16/2022,17:21,MANHATTAN,10032,40.839867,-73.93692,"(40.839867, -73.93692)",AMSTERDAM AVENUE,WEST 168 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4495674,Sedan,Sedan,,, +01/13/2022,16:55,BROOKLYN,11228,40.606422,-74.0147,"(40.606422, -74.0147)",15 AVENUE,CROPSEY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4495698,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,21:45,STATEN ISLAND,10307,40.504898,-74.22961,"(40.504898, -74.22961)",,,19 BELWOOD LOOP,0,0,0,0,0,0,0,0,Unspecified,,,,,4495754,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,13:20,MANHATTAN,10019,40.767593,-73.99286,"(40.767593, -73.99286)",,,553 WEST 53 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4495777,Sedan,Bike,,, +01/17/2022,12:50,BRONX,10468,40.870857,-73.89367,"(40.870857, -73.89367)",PARKVIEW TERRACE,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495307,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,0:36,BRONX,10455,40.812046,-73.910255,"(40.812046, -73.910255)",,,500 TRINITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495234,Taxi,,,, +07/05/2022,11:30,MANHATTAN,10026,40.800194,-73.95333,"(40.800194, -73.95333)",,,126 WEST 112 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544027,Sedan,,,, +01/17/2022,11:12,BROOKLYN,11222,40.728134,-73.95328,"(40.728134, -73.95328)",CALYER STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495242,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,15:44,QUEENS,11413,,,,SPRINGFIELD BOULEVARD,131 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495336,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,1:50,,,,,,VANDAM STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495169,Sedan,,,, +01/17/2022,8:25,QUEENS,11422,40.6545,-73.73889,"(40.6545, -73.73889)",249 STREET,148 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495776,Sedan,,,, +01/17/2022,18:00,BROOKLYN,11219,40.636566,-73.997696,"(40.636566, -73.997696)",11 AVENUE,51 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495484,,,,, +01/17/2022,17:35,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495564,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,20:34,BROOKLYN,11212,40.668743,-73.91049,"(40.668743, -73.91049)",,,467 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495831,Sedan,,,, +01/07/2022,16:48,,,40.84812,-73.92971,"(40.84812, -73.92971)",LAUREL HILL TERRACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495720,Sedan,,,, +01/12/2022,6:30,BRONX,10470,,,,,,4410 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4495805,Sedan,,,, +01/17/2022,5:45,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inexperience,,,,4495211,Sedan,Sedan,,, +01/17/2022,12:40,QUEENS,11435,40.6996,-73.81061,"(40.6996, -73.81061)",ARCHER AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495322,Sedan,Tractor Truck Diesel,,, +01/17/2022,13:28,QUEENS,11368,40.75919,-73.844765,"(40.75919, -73.844765)",,,126-15 35 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495442,Pick-up Truck,,,, +01/17/2022,9:57,MANHATTAN,10039,40.821346,-73.93634,"(40.821346, -73.93634)",,,108 WEST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495697,Sedan,,,, +01/17/2022,20:20,QUEENS,11692,40.590164,-73.79787,"(40.590164, -73.79787)",ROCKAWAY BEACH BOULEVARD,BEACH 69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495346,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,23:15,QUEENS,11412,40.687286,-73.758865,"(40.687286, -73.758865)",120 AVENUE,190 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495388,Sedan,,,, +01/17/2022,11:05,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4495253,Sedan,Sedan,,, +01/12/2022,19:15,BROOKLYN,11212,40.660534,-73.9236,"(40.660534, -73.9236)",,,214 EAST 94 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495738,,,,, +01/17/2022,13:30,,,40.5778,-73.96057,"(40.5778, -73.96057)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495763,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,22:24,QUEENS,11435,40.711037,-73.8142,"(40.711037, -73.8142)",84 DRIVE,PERSHING CRESCENT,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495875,Sedan,,,, +01/17/2022,8:11,,,40.853844,-73.91592,"(40.853844, -73.91592)",BILLINGSLY TERRACE,PHELAN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495480,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,13:00,BRONX,10467,40.878788,-73.86565,"(40.878788, -73.86565)",,,3559 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495540,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,4:27,BRONX,10460,40.842495,-73.86659,"(40.842495, -73.86659)",,,625 MEAD STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4495412,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/17/2022,20:40,MANHATTAN,10002,40.718796,-73.987144,"(40.718796, -73.987144)",,,100 NORFOLK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4495687,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/17/2022,8:10,,,40.682667,-74.0023,"(40.682667, -74.0023)",HICKS STREET,CARROLL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495355,Sedan,,,, +01/17/2022,19:09,BROOKLYN,11215,40.668167,-73.97721,"(40.668167, -73.97721)",5 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495619,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,16:40,BRONX,10463,40.878086,-73.90538,"(40.878086, -73.90538)",,,5550 BROADWAY,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4495434,Box Truck,,,, +01/17/2022,22:30,,,40.771023,-73.95365,"(40.771023, -73.95365)",1 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495623,Sedan,Sedan,,, +01/17/2022,18:58,BROOKLYN,11218,40.64106,-73.972275,"(40.64106, -73.972275)",AVENUE C,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495518,Pick-up Truck,Box Truck,,, +01/17/2022,4:35,BRONX,10475,40.863766,-73.8219,"(40.863766, -73.8219)",,,140 ELGAR PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495053,Sedan,,,, +01/12/2022,10:15,MANHATTAN,10027,40.810417,-73.95286,"(40.810417, -73.95286)",,,283 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4495850,Sedan,,,, +01/17/2022,5:40,BROOKLYN,11230,40.624977,-73.96326,"(40.624977, -73.96326)",AVENUE J,EAST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495124,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,16:07,,,40.707577,-73.92884,"(40.707577, -73.92884)",PORTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495354,Sedan,Tractor Truck Diesel,,, +01/17/2022,19:00,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4495523,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,9:50,BRONX,10463,40.8843,-73.90939,"(40.8843, -73.90939)",,,539 WEST 232 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4495413,Sedan,Sedan,Sedan,, +01/16/2022,19:16,,,40.60715,-73.89837,"(40.60715, -73.89837)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Aggressive Driving/Road Rage,,,,4495844,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,19:00,BROOKLYN,11221,40.692196,-73.92488,"(40.692196, -73.92488)",GREENE AVENUE,GOODWIN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,7:30,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4495252,Sedan,,,, +01/17/2022,13:00,MANHATTAN,10035,40.800827,-73.937935,"(40.800827, -73.937935)",,,2212 3 AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4495268,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/16/2022,5:55,BRONX,10468,40.867474,-73.89741,"(40.867474, -73.89741)",JEROME AVENUE,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,17:03,,,,,,ED KOCH QUEENSBORO BRIDGE,DEAD END,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495373,E-Scooter,E-Bike,,, +01/12/2022,12:00,BRONX,10460,40.833447,-73.887955,"(40.833447, -73.887955)",EAST 172 STREET,VYSE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495810,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,4:00,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4495214,Sedan,,,, +01/16/2022,9:00,QUEENS,11366,40.724983,-73.79422,"(40.724983, -73.79422)",UNION TURNPIKE,175 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4495663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/30/2021,11:42,BROOKLYN,11226,40.651367,-73.95592,"(40.651367, -73.95592)",MARTENSE STREET,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495739,Sedan,,,, +01/17/2022,11:52,BROOKLYN,11220,40.633026,-74.008545,"(40.633026, -74.008545)",62 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495262,Sedan,,,, +01/17/2022,6:45,,,40.736435,-73.836586,"(40.736435, -73.836586)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495439,Sedan,Sedan,,, +01/13/2022,8:25,,,40.696556,-73.98091,"(40.696556, -73.98091)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495833,Box Truck,Box Truck,,, +01/17/2022,12:10,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4495365,Pick-up Truck,Sedan,,, +01/17/2022,6:38,,,40.85487,-73.88619,"(40.85487, -73.88619)",EAST 187 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495451,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,23:36,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495714,,,,, +01/17/2022,5:00,,,40.754658,-73.833115,"(40.754658, -73.833115)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495137,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,21:59,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4495798,Sedan,,,, +01/17/2022,19:45,,,40.657665,-74.00093,"(40.657665, -74.00093)",4 AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4495338,Taxi,E-Bike,,, +01/14/2022,13:00,BROOKLYN,11232,40.665638,-73.995995,"(40.665638, -73.995995)",3 AVENUE,18 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495746,Sedan,Sedan,,, +01/16/2022,15:00,,,40.83495,-73.94691,"(40.83495, -73.94691)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495673,Sedan,,,, +01/17/2022,16:30,BROOKLYN,11219,40.63955,-73.99102,"(40.63955, -73.99102)",,,4322 12 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495483,Station Wagon/Sport Utility Vehicle,Bus,,, +01/17/2022,0:00,BRONX,10467,40.872284,-73.86384,"(40.872284, -73.86384)",,,784 SOUTH OAK DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4495543,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/17/2022,20:50,,,40.679855,-73.7714,"(40.679855, -73.7714)",128 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495387,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,20:00,QUEENS,11385,40.703278,-73.89115,"(40.703278, -73.89115)",,,70-14 65 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495811,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,16:50,,,40.790253,-73.93685,"(40.790253, -73.93685)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495448,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,17:45,STATEN ISLAND,10309,40.518234,-74.22411,"(40.518234, -74.22411)",,,6647 AMBOY ROAD,1,0,0,0,0,0,1,0,Physical Disability,,,,,4495753,Sedan,,,, +01/17/2022,7:29,BROOKLYN,11209,40.631744,-74.0365,"(40.631744, -74.0365)",,,7715 NARROWS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495167,Sedan,,,, +01/17/2022,16:35,,,40.75369,-73.74445,"(40.75369, -73.74445)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495592,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,12:47,BROOKLYN,11236,40.63068,-73.91847,"(40.63068, -73.91847)",,,1910 RALPH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495305,Sedan,Sedan,,, +01/17/2022,18:30,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",MORRIS AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4495638,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,16:12,BROOKLYN,11235,40.590717,-73.94003,"(40.590717, -73.94003)",,,3816 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495379,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,16:00,,,,,,EXTERIOR STREET,MACOMBS DAM BRIDGE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4544422,Sedan,Sedan,,, +01/17/2022,1:45,STATEN ISLAND,10304,40.613697,-74.08668,"(40.613697, -74.08668)",,,531 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4495588,Sedan,Sedan,Sedan,, +01/17/2022,13:12,QUEENS,11421,40.687466,-73.85726,"(40.687466, -73.85726)",,,91-29 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495479,Sedan,,,, +01/17/2022,0:38,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4495071,Sedan,,,, +01/14/2022,8:34,,,40.61763,-73.94129,"(40.61763, -73.94129)",AVENUE N,EAST 34 STREET,,2,0,1,0,0,0,1,0,Steering Failure,,,,,4495848,Sedan,,,, +01/16/2022,7:32,BROOKLYN,11203,40.655334,-73.93077,"(40.655334, -73.93077)",UTICA AVENUE,LENOX ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4495741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,13:00,BROOKLYN,11234,40.60952,-73.92736,"(40.60952, -73.92736)",RYDER STREET,AVENUE T,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495261,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,10:40,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4495264,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/17/2022,18:05,BRONX,10460,40.83451,-73.88526,"(40.83451, -73.88526)",LONGFELLOW AVENUE,EAST 173 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4495689,Sedan,,,, +01/17/2022,11:20,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,STEWART AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495319,Tractor Truck Diesel,,,, +01/16/2022,6:20,MANHATTAN,10033,40.852154,-73.92983,"(40.852154, -73.92983)",,,431 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495732,Taxi,Sedan,,, +01/17/2022,5:00,QUEENS,11419,40.68625,-73.823135,"(40.68625, -73.823135)",,,104-59 120 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495364,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,19:33,BROOKLYN,11224,40.57642,-73.96977,"(40.57642, -73.96977)",WEST BRIGHTON AVENUE,WEST 1 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495767,Sedan,,,, +01/17/2022,0:10,BROOKLYN,11217,40.686916,-73.97737,"(40.686916, -73.97737)",LAFAYETTE AVENUE,SAINT FELIX STREET,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,,,,4495182,Sedan,Taxi,,, +01/14/2022,20:15,MANHATTAN,10002,40.718956,-73.988014,"(40.718956, -73.988014)",,,99 ESSEX STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4495691,Bike,Sedan,,, +01/17/2022,8:45,,,40.533,-74.199356,"(40.533, -74.199356)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495756,Sedan,Sedan,,, +01/13/2022,10:56,BRONX,10466,40.89931,-73.84583,"(40.89931, -73.84583)",,,2005 NEREID AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495808,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,4:15,QUEENS,11418,40.696613,-73.816216,"(40.696613, -73.816216)",133 STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4495226,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +01/17/2022,12:14,BRONX,10467,40.885216,-73.87937,"(40.885216, -73.87937)",JEROME AVENUE,EAST 213 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495316,Sedan,,,, +01/17/2022,19:30,BROOKLYN,11206,40.70098,-73.942375,"(40.70098, -73.942375)",,,736 BROADWAY,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4495353,Sedan,Sedan,,, +01/17/2022,13:30,,,40.857903,-73.86468,"(40.857903, -73.86468)",WALLACE AVENUE,PELHAM PARKWAY NORTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495527,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,21:30,BROOKLYN,11234,40.617645,-73.92777,"(40.617645, -73.92777)",,,1766 EAST 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495847,Sedan,,,, +01/17/2022,10:30,BRONX,10461,40.84155,-73.845314,"(40.84155, -73.845314)",,,1521 BENSON STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,8:43,BROOKLYN,11229,40.607784,-73.960655,"(40.607784, -73.960655)",,,1220 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4495377,Sedan,,,, +01/17/2022,5:08,BROOKLYN,11203,40.644196,-73.92667,"(40.644196, -73.92667)",,,614 EAST 53 STREET,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,Unspecified,,,4495162,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/17/2022,21:00,,,,,,VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495342,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,19:20,MANHATTAN,10032,40.84231,-73.93515,"(40.84231, -73.93515)",AMSTERDAM AVENUE,WEST 172 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,Unsafe Speed,,,4495680,Sedan,E-Bike,Sedan,, +01/17/2022,18:00,,,40.663605,-73.934395,"(40.663605, -73.934395)",SCHENECTADY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495333,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,19:35,BROOKLYN,11207,,,,LINDEN BOULEVARD,CLEVELAND STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4471908,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,17:50,,,,,,,,30 MEADOW LAKE TRAIL,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4438659,Motorcycle,,,, +09/30/2021,20:53,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,,,4,0,0,0,0,0,4,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4462721,Sedan,Sedan,,, +10/14/2021,20:00,,,40.782887,-73.9439,"(40.782887, -73.9439)",FDR DRIVE,EAST 96 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4468761,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,5:22,MANHATTAN,10027,,,,,,408 WEST 130 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4471972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,Sedan +10/25/2021,23:00,BRONX,10457,40.843517,-73.90168,"(40.843517, -73.90168)",,,4031 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471976,Sedan,,,, +10/01/2021,18:00,BROOKLYN,11217,40.685196,-73.97829,"(40.685196, -73.97829)",FLATBUSH AVENUE,STATE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4463069,Bus,Sedan,,, +10/15/2021,19:12,BRONX,10457,,,,3 AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471979,Sedan,Ambulance,,, +12/12/2021,6:53,,,40.786423,-73.94239,"(40.786423, -73.94239)",1 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486177,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,15:09,QUEENS,11375,40.72829,-73.842064,"(40.72829, -73.842064)",112 STREET,68 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4486194,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,12:48,,,40.828405,-73.8439078,"(40.828405, -73.8439078)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,17:45,,,40.6954688,-73.9828246,"(40.6954688, -73.9828246)",BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4467750,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,22:40,,,40.578995,-73.96491,"(40.578995, -73.96491)",BRIGHTON 3 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495768,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,9:43,MANHATTAN,10016,40.745796,-73.982285,"(40.745796, -73.982285)",EAST 32 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495423,Bus,Box Truck,,, +01/15/2022,1:45,,,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,,,6,0,0,0,0,0,6,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4495725,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +12/10/2021,9:00,BROOKLYN,11226,40.648792,-73.95228,"(40.648792, -73.95228)",SNYDER AVENUE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4495783,Sedan,,,, +01/06/2022,2:11,,,40.76666,-73.94542,"(40.76666, -73.94542)",,,750 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495752,Bus,Van,,, +01/17/2022,16:00,BRONX,10455,40.816097,-73.9178,"(40.816097, -73.9178)",EAST 149 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495504,Bus,Sedan,,, +12/12/2021,16:26,BRONX,10462,40.832645,-73.85122,"(40.832645, -73.85122)",CASTLE HILL AVENUE,ELLIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4486127,Station Wagon/Sport Utility Vehicle,Moped,,, +12/12/2021,2:50,BRONX,10472,40.82984,-73.87946,"(40.82984, -73.87946)",,,1248 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486131,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +12/12/2021,1:00,BROOKLYN,11210,40.6256,-73.93901,"(40.6256, -73.93901)",,,3728 AVENUE K,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486165,Sedan,,,, +12/12/2021,22:00,,,40.66602,-73.896324,"(40.66602, -73.896324)",GEORGIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486186,Sedan,,,, +12/12/2021,16:15,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486135,Sedan,Sedan,,, +12/12/2021,23:50,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4486149,Sedan,,,, +01/17/2022,11:30,MANHATTAN,10038,40.70563,-74.005295,"(40.70563, -74.005295)",,,161 MAIDEN LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495403,Sedan,Sedan,,, +01/17/2022,6:40,BROOKLYN,11218,40.638523,-73.98131,"(40.638523, -73.98131)",15 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4495386,Taxi,Sedan,,, +01/17/2022,4:20,QUEENS,11358,40.758743,-73.804214,"(40.758743, -73.804214)",162 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495135,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,23:00,,,40.690403,-73.903595,"(40.690403, -73.903595)",MOFFAT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544086,Sedan,,,, +01/17/2022,15:35,STATEN ISLAND,10312,40.547325,-74.1663,"(40.547325, -74.1663)",RICHMOND AVENUE,BARTLETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495456,Station Wagon/Sport Utility Vehicle,Dump,,, +01/13/2022,13:07,BROOKLYN,11236,40.635777,-73.88665,"(40.635777, -73.88665)",EAST 101 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495858,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/26/2021,8:50,,,40.658234,-73.9321,"(40.658234, -73.9321)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471228,Sedan,Sedan,,, +10/26/2021,19:21,,,40.759438,-73.91309,"(40.759438, -73.91309)",45 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471331,Sedan,Pick-up Truck,,, +10/26/2021,20:29,,,40.762104,-73.960144,"(40.762104, -73.960144)",EAST 63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471273,Station Wagon/Sport Utility Vehicle,Bike,,, +10/25/2021,10:40,,,,,,EAST GUN HILL ROAD,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471733,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,20:32,BRONX,10468,,,,GOULDEN AVENUE,WEST BEDFORD PARK BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471696,Sedan,,,, +10/26/2021,1:08,BROOKLYN,11234,40.620125,-73.94081,"(40.620125, -73.94081)",AVENUE M,EAST 35 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Passing Too Closely,,,,4470938,Sedan,Sedan,,, +10/26/2021,18:45,QUEENS,11368,40.74452,-73.86781,"(40.74452, -73.86781)",,,45-08 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4471254,Station Wagon/Sport Utility Vehicle,Bike,,, +10/26/2021,14:00,STATEN ISLAND,10306,40.5743,-74.105896,"(40.5743, -74.105896)",,,2320 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471402,Sedan,,,, +10/26/2021,14:40,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471290,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,13:59,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,7:30,BRONX,10459,40.826534,-73.899605,"(40.826534, -73.899605)",,,811 EAST 167 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471783,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,19:20,STATEN ISLAND,10306,40.567192,-74.113045,"(40.567192, -74.113045)",,,2656 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471914,Sedan,,,, +10/26/2021,1:29,BRONX,10474,40.811783,-73.88301,"(40.811783, -73.88301)",,,529 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470973,Box Truck,Sedan,,, +10/26/2021,0:00,,,40.63987,-73.950325,"(40.63987, -73.950325)",EAST 28 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471300,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,13:15,,,40.82207,-73.94993,"(40.82207, -73.94993)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471730,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,18:50,,,40.773872,-73.98223,"(40.773872, -73.98223)",BROADWAY,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4471771,Taxi,E-Bike,,, +10/26/2021,11:10,,,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471524,Station Wagon/Sport Utility Vehicle,Bike,,, +10/26/2021,4:45,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471013,Sedan,Sedan,,, +10/26/2021,18:08,QUEENS,11358,40.76521,-73.8005,"(40.76521, -73.8005)",35 AVENUE,165 STREET,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471206,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/26/2021,9:43,BROOKLYN,11230,40.614716,-73.95431,"(40.614716, -73.95431)",,,1937 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,22:27,MANHATTAN,10007,40.71373,-74.01385,"(40.71373, -74.01385)",WEST STREET,VESEY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471367,Sedan,,,, +10/26/2021,4:58,,,40.628746,-73.88878,"(40.628746, -73.88878)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471415,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,7:12,QUEENS,11377,40.739204,-73.91855,"(40.739204, -73.91855)",47 STREET,48 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471448,Bus,,,, +10/26/2021,9:20,QUEENS,11433,40.702343,-73.79108,"(40.702343, -73.79108)",,,166-15 LIBERTY AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471170,Sedan,Sedan,Sedan,, +10/26/2021,8:00,BRONX,10459,40.820988,-73.896355,"(40.820988, -73.896355)",,,940 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471111,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,16:30,MANHATTAN,10001,40.74822,-73.98892,"(40.74822, -73.98892)",,,888 AVENUE OF THE AMERICAS,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471815,Taxi,E-Scooter,,, +10/22/2021,22:08,BRONX,10470,40.903194,-73.85406,"(40.903194, -73.85406)",CARPENTER AVENUE,EAST 240 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4471864,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,5:10,,,40.724552,-73.72452,"(40.724552, -73.72452)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4471148,Sedan,Sedan,,, +07/06/2021,18:30,,,,,,WEST 35 STREET,HUDSON BLVD EAST,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436812,Sedan,Sedan,,, +10/26/2021,8:15,BRONX,10455,40.818592,-73.90003,"(40.818592, -73.90003)",LONGWOOD AVENUE,HEWITT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471112,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,13:30,,,,,,SHORE PARKWAY,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471752,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,12:50,MANHATTAN,10016,40.750507,-73.97785,"(40.750507, -73.97785)",,,110 EAST 40 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471201,Sedan,Pick-up Truck,,, +10/26/2021,6:47,BROOKLYN,11203,40.65142,-73.93716,"(40.65142, -73.93716)",CHURCH AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4471067,Bus,Sedan,,, +10/26/2021,5:50,QUEENS,11377,40.743214,-73.907166,"(40.743214, -73.907166)",43 AVENUE,58 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471447,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/26/2021,22:30,QUEENS,11420,40.666084,-73.82809,"(40.666084, -73.82809)",114 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4471285,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,17:05,BROOKLYN,11203,40.652218,-73.928154,"(40.652218, -73.928154)",,,5226 CHURCH AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4471307,Bus,Sedan,,, +10/26/2021,8:00,BROOKLYN,11238,40.675907,-73.969505,"(40.675907, -73.969505)",STERLING PLACE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471490,Garbage or Refuse,Sedan,,, +10/26/2021,17:35,,,40.753143,-74.007416,"(40.753143, -74.007416)",WEST 28 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471376,Sedan,Sedan,,, +10/26/2021,11:10,BROOKLYN,11238,40.687305,-73.96061,"(40.687305, -73.96061)",,,264 GREENE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471460,Sedan,Box Truck,,, +10/26/2021,0:30,,,40.835484,-73.9494,"(40.835484, -73.9494)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4471099,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,6:45,QUEENS,11435,40.68706,-73.806404,"(40.68706, -73.806404)",,,109-15 139 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471179,Sedan,,,, +10/26/2021,8:54,BROOKLYN,11235,40.588886,-73.965645,"(40.588886, -73.965645)",OCEAN PARKWAY,AVENUE Y,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471260,School Bus,,,, +09/26/2021,21:14,BRONX,10462,40.841278,-73.86359,"(40.841278, -73.86359)",UNIONPORT ROAD,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471801,E-Scooter,,,, +10/26/2021,7:20,,,40.70435,-74.00612,"(40.70435, -74.00612)",SOUTH STREET,WALL STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4471364,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,23:19,BROOKLYN,11204,40.62395,-73.98889,"(40.62395, -73.98889)",59 STREET,17 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471688,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,8:25,MANHATTAN,10014,40.734295,-74.00717,"(40.734295, -74.00717)",CHARLES STREET,GREENWICH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471816,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,10:20,BROOKLYN,11232,40.651512,-74.00734,"(40.651512, -74.00734)",4 AVENUE,41 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471211,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/31/2021,17:37,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",ATLANTIC AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452836,Bus,Tractor Truck Diesel,,, +10/26/2021,16:12,,,40.852818,-73.90476,"(40.852818, -73.90476)",EAST BURNSIDE AVENUE,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471238,Sedan,Sedan,,, +10/14/2021,18:00,BRONX,10456,40.836643,-73.91418,"(40.836643, -73.91418)",,,1320 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471758,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,11:25,MANHATTAN,10027,40.80797,-73.94598,"(40.80797, -73.94598)",,,100 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471119,Sedan,RMP,,, +10/26/2021,9:00,BROOKLYN,11206,40.703373,-73.93764,"(40.703373, -73.93764)",VARET STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471615,Sedan,,,, +10/26/2021,6:59,,,40.80682,-73.96106,"(40.80682, -73.96106)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471391,Sedan,,,, +10/26/2021,11:30,,,40.844448,-73.82846,"(40.844448, -73.82846)",MIDDLETOWN ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471424,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,20:00,QUEENS,11428,40.715176,-73.749176,"(40.715176, -73.749176)",,,211-02 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471579,Sedan,,,, +10/26/2021,23:35,QUEENS,11368,40.757336,-73.86849,"(40.757336, -73.86849)",NORTHERN BOULEVARD,100 STREET,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,,,,,4471741,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,3:51,MANHATTAN,10018,,,,W 42 street,Dyer Ave,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4436901,Sedan,,,, +10/26/2021,2:46,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4471280,Station Wagon/Sport Utility Vehicle,Bus,Sedan,, +10/23/2021,14:25,,,,,,69 STREET,BORDEN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471707,Station Wagon/Sport Utility Vehicle,Bike,,, +10/26/2021,12:45,BROOKLYN,11203,40.64124,-73.943726,"(40.64124, -73.943726)",AVENUE D,EAST 35 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4471302,Sedan,Sedan,,, +10/26/2021,13:55,QUEENS,11692,40.591934,-73.800095,"(40.591934, -73.800095)",,,71-15 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471248,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,10:30,,,40.83997,-73.87792,"(40.83997, -73.87792)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,20:10,BRONX,10457,40.838264,-73.905235,"(40.838264, -73.905235)",EAST 171 STREET,BROOK AVENUE,,1,0,1,0,0,0,0,0,,,,,,4471792,,,,, +10/26/2021,5:10,,,40.7145,-73.824715,"(40.7145, -73.824715)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4471219,Pick-up Truck,Flat Bed,,, +10/26/2021,4:31,BROOKLYN,11208,40.666344,-73.874855,"(40.666344, -73.874855)",,,485 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471663,Sedan,,,, +10/26/2021,15:32,MANHATTAN,10027,40.817616,-73.95316,"(40.817616, -73.95316)",,,1467 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471829,Sedan,,,, +10/26/2021,17:49,BROOKLYN,11233,40.678783,-73.91094,"(40.678783, -73.91094)",SOMERS STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4471318,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,7:51,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471255,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,18:31,,,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4471322,Sedan,Bike,,, +10/26/2021,20:15,BROOKLYN,11206,40.69979,-73.950096,"(40.69979, -73.950096)",FLUSHING AVENUE,MARCY AVENUE,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4471291,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,14:50,STATEN ISLAND,10306,40.55786,-74.122,"(40.55786, -74.122)",,,20 GRAYSON STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4495477,Sedan,Sedan,,, +10/26/2021,1:01,BROOKLYN,11219,40.62868,-74.012146,"(40.62868, -74.012146)",FORT HAMILTON PARKWAY,BAY RIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470950,,,,, +10/26/2021,14:35,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471766,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,18:11,,,40.611603,-73.91971,"(40.611603, -73.91971)",EAST 55 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471234,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,17:50,BRONX,10466,40.889008,-73.85642,"(40.889008, -73.85642)",BARNES AVENUE,EAST 228 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4471540,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/20/2021,18:05,BROOKLYN,11203,,,,,,5518 WHITTY LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471821,Sedan,,,, +10/23/2021,11:49,BROOKLYN,11204,40.629356,-73.98727,"(40.629356, -73.98727)",16 AVENUE,52 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,1:05,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4470986,Taxi,Dump,,, +10/25/2021,16:05,MANHATTAN,10031,40.819572,-73.95175,"(40.819572, -73.95175)",WEST 136 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471732,Bus,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,9:15,BROOKLYN,11204,40.615772,-73.98308,"(40.615772, -73.98308)",64 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4471217,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/26/2021,19:25,QUEENS,11358,40.76558,-73.80517,"(40.76558, -73.80517)",160 STREET,35 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471296,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,20:00,,,,,,ASTORIA BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471774,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,12:47,QUEENS,11373,40.744297,-73.88724,"(40.744297, -73.88724)",,,41-50 78 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,7:50,MANHATTAN,10010,40.737553,-73.97806,"(40.737553, -73.97806)",EAST 24 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471517,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,7:40,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471653,Sedan,,,, +10/26/2021,14:50,,,,,,MAJOR DEEGAN EXPRESSWAY,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471274,Sedan,Sedan,Sedan,, +10/26/2021,21:29,,,40.766396,-73.78092,"(40.766396, -73.78092)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471879,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,15:12,,,40.58077,-73.96556,"(40.58077, -73.96556)",BRIGHTON 3 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471757,Station Wagon/Sport Utility Vehicle,Van,,, +10/26/2021,12:21,BROOKLYN,11203,40.653915,-73.92887,"(40.653915, -73.92887)",,,791 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4471117,Sedan,,,, +10/26/2021,11:04,BRONX,10457,40.841286,-73.90016,"(40.841286, -73.90016)",BATHGATE AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471149,Bus,Tractor Truck Diesel,,, +10/26/2021,22:00,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4471386,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/24/2021,14:15,,,,,,ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4471854,Sedan,Taxi,,, +07/08/2021,5:15,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435147,,,,, +10/26/2021,16:20,BRONX,10474,40.812214,-73.885895,"(40.812214, -73.885895)",RANDALL AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471230,Sedan,Sedan,,, +07/12/2021,23:14,BROOKLYN,11206,40.705105,-73.94358,"(40.705105, -73.94358)",,,116 MC KIBBIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436318,Sedan,,,, +07/12/2021,17:50,STATEN ISLAND,10305,40.59319,-74.082405,"(40.59319, -74.082405)",REID AVENUE,QUINTARD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436457,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,11:30,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,15:00,BROOKLYN,11234,40.6082,-73.920715,"(40.6082, -73.920715)",FLATBUSH AVENUE,AVENUE V,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437032,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:08,MANHATTAN,10034,40.866062,-73.92251,"(40.866062, -73.92251)",WEST 204 STREET,VERMILYEA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436799,Sedan,,,, +07/08/2021,20:50,MANHATTAN,10026,40.803745,-73.95587,"(40.803745, -73.95587)",8 AVENUE,WEST 115 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436763,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,3:00,BROOKLYN,11226,40.639984,-73.94842,"(40.639984, -73.94842)",NOSTRAND AVENUE,NEWKIRK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435876,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,19:33,,,40.87296,-73.87495,"(40.87296, -73.87495)",WEBSTER AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436363,Sedan,Sedan,,, +07/12/2021,0:00,BROOKLYN,11233,40.682426,-73.937935,"(40.682426, -73.937935)",MARCUS GARVEY BOULEVARD,MACON STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4436557,Sedan,Sedan,,, +07/12/2021,15:55,BROOKLYN,11229,40.598835,-73.95641,"(40.598835, -73.95641)",AVENUE U,EAST 15 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436415,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/10/2021,18:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4436734,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/06/2021,14:30,,,40.818798,-73.89213,"(40.818798, -73.89213)",BARRETTO STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436858,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,8:30,QUEENS,11372,40.753338,-73.88876,"(40.753338, -73.88876)",78 STREET,34 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436921,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,5:02,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",ALEXANDER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4435962,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/12/2021,3:20,QUEENS,11433,40.696186,-73.79099,"(40.696186, -73.79099)",,,108-12 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4436422,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/12/2021,22:50,,,40.853535,-73.938385,"(40.853535, -73.938385)",PINEHURST AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4436795,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,1:30,MANHATTAN,10011,40.746212,-74.008064,"(40.746212, -74.008064)",,,100 11 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436827,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,2:40,MANHATTAN,10032,40.844677,-73.93886,"(40.844677, -73.93886)",BROADWAY,WEST 173 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436704,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,14:26,BROOKLYN,11212,40.657333,-73.899445,"(40.657333, -73.899445)",,,1705 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4471466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,2:37,BRONX,10458,40.860996,-73.89643,"(40.860996, -73.89643)",VALENTINE AVENUE,EAST 188 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4435978,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,17:35,,,40.68671,-73.979065,"(40.68671, -73.979065)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436281,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,16:15,BRONX,10469,40.861206,-73.83899,"(40.861206, -73.83899)",,,2408 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4436467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:00,QUEENS,11377,40.75995,-73.90221,"(40.75995, -73.90221)",,,58-09 28 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437048,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/12/2021,9:15,BROOKLYN,11207,40.65796,-73.88911,"(40.65796, -73.88911)",,,885 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4436495,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/12/2021,18:22,BROOKLYN,11235,40.5825,-73.96118,"(40.5825, -73.96118)",BRIGHTON 8 STREET,BRIGHTON 8 COURT,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4436566,Taxi,Bike,,, +07/12/2021,14:55,MANHATTAN,10027,40.814507,-73.95726,"(40.814507, -73.95726)",,,541 WEST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436611,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,14:00,,,40.733116,-73.87058,"(40.733116, -73.87058)",HOFFMAN DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4436232,Bus,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,12:11,BROOKLYN,11225,40.663853,-73.95194,"(40.663853, -73.95194)",,,315 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4436882,Sedan,Sedan,Sedan,, +07/05/2021,17:45,QUEENS,11368,40.749767,-73.86381,"(40.749767, -73.86381)",,,102-27 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436968,E-Scooter,,,, +07/12/2021,0:30,,,40.73851,-73.8065,"(40.73851, -73.8065)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436225,utility tr,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,7:40,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4436152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/24/2021,19:53,MANHATTAN,10001,40.752686,-74.000534,"(40.752686, -74.000534)",10 AVENUE,WEST 31 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436810,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,3:37,QUEENS,11365,40.75033,-73.77907,"(40.75033, -73.77907)",FRANCIS LEWIS BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4436274,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/12/2021,5:00,BRONX,10473,40.822987,-73.86781,"(40.822987, -73.86781)",STORY AVENUE,SOUND VIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436071,Pick-up Truck,Sedan,,, +07/12/2021,11:50,,,40.701916,-73.72712,"(40.701916, -73.72712)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436604,Sedan,Sedan,,, +07/12/2021,15:15,MANHATTAN,10019,40.77161,-73.99046,"(40.77161, -73.99046)",11 AVENUE,WEST 59 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436408,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,11:09,QUEENS,11423,40.710415,-73.768684,"(40.710415, -73.768684)",,,190-18 WOODHULL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436432,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,17:00,STATEN ISLAND,10312,40.534267,-74.15398,"(40.534267, -74.15398)",RICHMOND AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437063,Sedan,Sedan,,, +07/12/2021,16:58,MANHATTAN,10012,40.72479,-74.001755,"(40.72479, -74.001755)",,,410 WEST BROADWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4436685,Sedan,,,, +07/12/2021,22:24,BROOKLYN,11207,40.664047,-73.888115,"(40.664047, -73.888115)",NEW LOTS AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436499,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,17:09,BROOKLYN,11203,40.645676,-73.946106,"(40.645676, -73.946106)",,,1133 NEW YORK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4436622,Sedan,,,, +07/12/2021,4:58,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436120,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,17:00,QUEENS,11354,40.77132,-73.84655,"(40.77132, -73.84655)",30 AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436237,Pick-up Truck,,,, +07/12/2021,8:55,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",AVENUE I,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4436379,Taxi,E-Scooter,Station Wagon/Sport Utility Vehicle,, +07/08/2021,20:00,,,40.689102,-73.94507,"(40.689102, -73.94507)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436871,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,13:30,,,40.730286,-73.99808,"(40.730286, -73.99808)",THOMPSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437008,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,8:45,QUEENS,11419,40.68937,-73.82668,"(40.68937, -73.82668)",,,101-35 118 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436492,Taxi,,,, +07/05/2021,2:34,,,40.80133,-73.950195,"(40.80133, -73.950195)",WEST 115 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436757,Sedan,,,, +07/02/2021,13:00,QUEENS,11372,40.75412,-73.881325,"(40.75412, -73.881325)",86 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436883,Pick-up Truck,,,, +07/12/2021,6:40,,,40.604767,-73.99088,"(40.604767, -73.99088)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436282,Sedan,,,, +07/09/2021,22:30,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436956,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,14:00,QUEENS,11101,40.754494,-73.94431,"(40.754494, -73.94431)",,,41-13 12 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436337,Sedan,Sedan,,, +07/06/2021,6:57,MANHATTAN,10011,40.74508,-74.00382,"(40.74508, -74.00382)",,,434 WEST 20 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436815,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,10:25,QUEENS,11419,40.691788,-73.8167,"(40.691788, -73.8167)",,,101-57 130 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4436167,,,,, +07/10/2021,17:40,BRONX,10456,40.8343,-73.91457,"(40.8343, -73.91457)",,,1233 GRANT AVENUE,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4436733,Sedan,E-Scooter,,, +07/12/2021,11:18,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,4436533,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/12/2021,22:55,,,40.66733,-73.95353,"(40.66733, -73.95353)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436590,Sedan,Sedan,,, +07/12/2021,8:27,STATEN ISLAND,10310,40.636086,-74.11614,"(40.636086, -74.11614)",,,177 CAMPBELL AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436969,Sedan,,,, +07/09/2021,9:05,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4436727,Box Truck,Sedan,,, +07/08/2021,13:30,MANHATTAN,10033,40.854168,-73.93371,"(40.854168, -73.93371)",WEST 187 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4436805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,17:55,MANHATTAN,10010,40.74087,-73.98799,"(40.74087, -73.98799)",EAST 23 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436404,Station Wagon/Sport Utility Vehicle,Bus,,, +07/12/2021,19:14,BRONX,10466,40.89312,-73.85646,"(40.89312, -73.85646)",,,725 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436768,Sedan,,,, +07/12/2021,10:40,,,40.62055,-74.16919,"(40.62055, -74.16919)",SOUTH AVENUE,FAHY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436426,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,22:16,MANHATTAN,10012,40.720623,-73.99498,"(40.720623, -73.99498)",ELIZABETH STREET,KENMARE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435862,Sedan,,,, +12/27/2021,18:05,,,40.599827,-74.17823,"(40.599827, -74.17823)",VICTORY BOULEVARD,TRAVIS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495672,Bus,Sedan,,, +07/12/2021,16:00,BRONX,10462,40.85171,-73.86779,"(40.85171, -73.86779)",,,2040 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4436473,Pick-up Truck,Bus,,, +07/12/2021,12:52,QUEENS,11379,40.71144,-73.89571,"(40.71144, -73.89571)",,,65-05 ADMIRAL AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436865,Sedan,UTILITY,,, +07/12/2021,22:45,QUEENS,11356,40.78166,-73.83523,"(40.78166, -73.83523)",,,133-11 20 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436301,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,15:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436743,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,19:10,QUEENS,11372,40.75616,-73.879555,"(40.75616, -73.879555)",,,88-16 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436890,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,16:02,BRONX,10460,40.833755,-73.86175,"(40.833755, -73.86175)",VIRGINIA AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436441,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:45,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436364,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,23:30,BRONX,10460,40.833015,-73.8851,"(40.833015, -73.8851)",,,1544 BOONE AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4471782,Sedan,Bus,,, +07/12/2021,19:31,,,40.58369,-73.92157,"(40.58369, -73.92157)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,,,,,4436416,Sedan,,,, +07/11/2021,10:41,QUEENS,11368,40.745728,-73.86213,"(40.745728, -73.86213)",102 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4436784,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,2:00,MANHATTAN,10017,40.753242,-73.96662,"(40.753242, -73.96662)",EAST 49 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4435882,Sedan,Sedan,,, +07/10/2021,14:22,MANHATTAN,10018,40.75892,-73.999695,"(40.75892, -73.999695)",11 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4436820,Sedan,Box Truck,,, +07/12/2021,2:25,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4436937,Sedan,,,, +07/12/2021,0:15,QUEENS,11101,40.752403,-73.92442,"(40.752403, -73.92442)",39 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4436333,Bike,,,, +07/12/2021,18:30,BROOKLYN,11221,40.69614,-73.92726,"(40.69614, -73.92726)",DE KALB AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436717,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/11/2021,12:48,QUEENS,11369,40.75828,-73.87445,"(40.75828, -73.87445)",,,32-02 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4436920,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,3:00,QUEENS,11369,40.76031,-73.86902,"(40.76031, -73.86902)",,,31-29 100 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436887,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,15:15,MANHATTAN,10026,40.801754,-73.94698,"(40.801754, -73.94698)",,,24 WEST 117 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436762,Sedan,Sedan,,, +07/12/2021,1:25,BROOKLYN,11226,40.64663,-73.95566,"(40.64663, -73.95566)",TILDEN AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435966,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,0:13,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436797,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,16:10,QUEENS,11413,40.67063,-73.75643,"(40.67063, -73.75643)",SPRINGFIELD BOULEVARD,141 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436293,Sedan,Sedan,,, +07/12/2021,13:30,BROOKLYN,11235,40.58392,-73.9379,"(40.58392, -73.9379)",,,3030 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436417,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,20:26,,,40.68064,-73.95338,"(40.68064, -73.95338)",FULTON STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4436848,Bike,,,, +07/12/2021,16:40,BROOKLYN,11201,40.693146,-73.99509,"(40.693146, -73.99509)",HENRY STREET,JORALEMON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4436351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/12/2021,17:10,BROOKLYN,11215,40.67513,-73.99166,"(40.67513, -73.99166)",,,142 5 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436699,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,7:14,BRONX,10465,40.833126,-73.828285,"(40.833126, -73.828285)",EAST TREMONT AVENUE,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436742,Pick-up Truck,,,, +07/12/2021,18:20,,,40.854588,-73.90187,"(40.854588, -73.90187)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436396,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,7:40,QUEENS,11105,40.78521,-73.916046,"(40.78521, -73.916046)",,,20-29 SHORE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4437038,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,20:30,MANHATTAN,10001,40.747234,-73.99337,"(40.747234, -73.99337)",7 AVENUE,WEST 28 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4436902,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2021,19:18,MANHATTAN,10011,40.74068,-74.00184,"(40.74068, -74.00184)",,,108 8 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436814,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,9:00,QUEENS,11413,40.650307,-73.75696,"(40.650307, -73.75696)",,,230-59 ROCKAWAY BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436157,Sedan,Sedan,,, +07/12/2021,12:20,QUEENS,11355,40.75372,-73.83283,"(40.75372, -73.83283)",COLLEGE POINT BOULEVARD,MAPLE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436227,Station Wagon/Sport Utility Vehicle,Bike,,, +07/12/2021,11:00,BRONX,10456,40.835297,-73.91291,"(40.835297, -73.91291)",EAST 169 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436524,Sedan,,,, +07/08/2021,23:13,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436896,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:00,QUEENS,11420,40.677006,-73.81261,"(40.677006, -73.81261)",116 AVENUE,126 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4436319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/12/2021,8:30,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436647,Sedan,,,, +07/12/2021,8:45,BRONX,10474,40.81813,-73.89101,"(40.81813, -73.89101)",BARRETTO STREET,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436855,Sedan,,,, +07/12/2021,12:20,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436140,scooter,,,, +07/12/2021,19:00,STATEN ISLAND,10312,40.538834,-74.15628,"(40.538834, -74.15628)",THORNYCROFT AVENUE,HILLCREST STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4436456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/12/2021,9:50,,,40.68951,-73.948044,"(40.68951, -73.948044)",MARCY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436536,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,13:30,,,40.71881,-73.83266,"(40.71881, -73.83266)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4436213,Sedan,Sedan,Sedan,, +07/12/2021,9:37,,,40.76948,-73.95787,"(40.76948, -73.95787)",2 AVENUE,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4436370,Moped,,,, +07/06/2021,0:00,MANHATTAN,10027,40.80921,-73.94892,"(40.80921, -73.94892)",,,208 WEST 125 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4436758,Sedan,Sedan,,, +07/09/2021,18:30,,,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4436804,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,11:27,MANHATTAN,10018,40.752045,-73.989876,"(40.752045, -73.989876)",,,474 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436689,Box Truck,,,, +07/12/2021,9:28,QUEENS,11355,40.754868,-73.82399,"(40.754868, -73.82399)",KISSENA BOULEVARD,ASH AVENUE,,1,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436309,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/12/2021,18:45,,,40.61619,-74.13898,"(40.61619, -74.13898)",WATCHOGUE ROAD,LIVERMORE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436388,mailtruck,Sedan,,, +07/08/2021,3:41,MANHATTAN,10029,40.793488,-73.94328,"(40.793488, -73.94328)",EAST 109 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4437016,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/12/2021,0:02,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,11:30,BROOKLYN,11221,40.689625,-73.922325,"(40.689625, -73.922325)",,,1358 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436876,Bike,,,, +07/12/2021,23:15,BROOKLYN,11218,40.63655,-73.968864,"(40.63655, -73.968864)",,,932 DITMAS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436750,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,21:04,QUEENS,11375,40.720165,-73.844795,"(40.720165, -73.844795)",71 AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436957,Sedan,,,, +07/12/2021,22:00,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4436498,Sedan,Sedan,Sedan,, +07/12/2021,5:00,,,40.716644,-73.99582,"(40.716644, -73.99582)",BOWERY,CANAL STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4435972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,23:16,BROOKLYN,11203,40.654278,-73.92292,"(40.654278, -73.92292)",LINDEN BOULEVARD,EAST 58 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4436618,Tractor Truck Diesel,Sedan,,, +07/12/2021,5:15,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,21:00,,,40.68137,-73.94063,"(40.68137, -73.94063)",MACDONOUGH STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4436554,Sedan,Sedan,,, +07/12/2021,2:00,BRONX,10469,40.87118,-73.85318,"(40.87118, -73.85318)",,,1160 BURKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436466,Sedan,Sedan,,, +07/12/2021,10:34,MANHATTAN,10019,40.7688,-73.99249,"(40.7688, -73.99249)",,,790 11 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436407,Box Truck,PK,,, +07/09/2021,17:00,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437012,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,17:45,QUEENS,11373,40.746017,-73.86924,"(40.746017, -73.86924)",,,95-12 42 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,14:00,BRONX,10469,40.877033,-73.846375,"(40.877033, -73.846375)",BOSTON ROAD,EASTCHESTER ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436431,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,15:00,QUEENS,11434,40.690685,-73.78161,"(40.690685, -73.78161)",LINDEN BOULEVARD,168 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4436753,Sedan,Sedan,Sedan,, +07/12/2021,12:16,QUEENS,11103,40.75803,-73.918655,"(40.75803, -73.918655)",,,32-29 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437043,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,16:50,,,40.7672,-73.887825,"(40.7672, -73.887825)",82 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436336,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,20:00,BRONX,10468,40.869507,-73.891754,"(40.869507, -73.891754)",GRAND CONCOURSE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436671,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,16:35,,,40.82751,-73.92495,"(40.82751, -73.92495)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4436729,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,10:58,MANHATTAN,10004,40.706043,-74.0131,"(40.706043, -74.0131)",,,32 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4436385,Sedan,,,, +07/12/2021,8:30,,,40.594444,-73.98602,"(40.594444, -73.98602)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436562,Sedan,,,, +07/12/2021,2:35,,,40.576252,-74.16978,"(40.576252, -74.16978)",,,2845 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4436040,Garbage or Refuse,,,, +07/12/2021,14:00,BRONX,10466,40.89572,-73.85656,"(40.89572, -73.85656)",,,693 EAST 236 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436436,Sedan,,,, +07/12/2021,11:00,QUEENS,11373,40.74205,-73.8757,"(40.74205, -73.8757)",,,46-05 90 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436231,Sedan,,,, +07/12/2021,19:20,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",OCEAN TERRACE,TODT HILL ROAD,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4436447,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,5:00,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,,,4436327,Sedan,PK,Van,, +07/12/2021,11:00,MANHATTAN,10035,40.79752,-73.936935,"(40.79752, -73.936935)",,,300 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436435,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,21:45,MANHATTAN,10128,40.78326,-73.950745,"(40.78326, -73.950745)",EAST 93 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4437057,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,10:25,MANHATTAN,10026,40.802406,-73.95058,"(40.802406, -73.95058)",,,121 WEST 116 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4436767,Sedan,Bike,,, +07/12/2021,4:25,MANHATTAN,10003,40.73764,-73.98613,"(40.73764, -73.98613)",IRVING PLACE,GRAMERCY PARK SOUTH,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4436402,Tractor Truck Diesel,,,, +07/01/2021,17:05,QUEENS,11368,40.748425,-73.868774,"(40.748425, -73.868774)",,,96-05 40 ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436785,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,4:30,,,40.71927,-73.790306,"(40.71927, -73.790306)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4435884,Sedan,,,, +07/09/2021,10:39,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436821,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,17:00,MANHATTAN,10027,40.80951,-73.94556,"(40.80951, -73.94556)",,,127 WEST 127 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4436716,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +06/01/2021,7:00,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436935,Sedan,Tractor Truck Diesel,,, +07/08/2021,21:30,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436897,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,11:25,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,4436538,Station Wagon/Sport Utility Vehicle,Bike,Station Wagon/Sport Utility Vehicle,, +07/12/2021,9:45,BROOKLYN,11231,40.682888,-74.0004,"(40.682888, -74.0004)",,,172 PRESIDENT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436190,Box Truck,Sedan,,, +07/12/2021,12:25,,,40.872494,-73.88147,"(40.872494, -73.88147)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436214,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,12:20,QUEENS,11385,40.70318,-73.86058,"(40.70318, -73.86058)",,,87-17 MYRTLE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436475,Sedan,Sedan,,, +07/09/2021,1:00,,,,,,HEMPSTEAD TURNPIKE,ROUTE 9 EXTENSION WEST,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436819,Sedan,Sedan,,, +07/12/2021,11:19,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4436236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/12/2021,2:22,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Brakes Defective,Other Vehicular,Other Vehicular,Other Vehicular,Unsafe Speed,4436525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck +06/26/2021,16:30,BROOKLYN,11218,40.646706,-73.970955,"(40.646706, -73.970955)",,,464 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436862,Sedan,,,, +07/12/2021,8:00,,,40.762764,-73.79706,"(40.762764, -73.79706)",CROCHERON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436308,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,19:52,,,40.590107,-73.814095,"(40.590107, -73.814095)",BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4436596,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/07/2021,17:45,QUEENS,11372,40.750916,-73.87317,"(40.750916, -73.87317)",94 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436893,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/12/2021,7:50,,,40.632042,-74.13293,"(40.632042, -74.13293)",,,2 DECKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436104,Bus,Sedan,,, +07/12/2021,12:57,,,40.813385,-73.94511,"(40.813385, -73.94511)",WEST 132 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4436483,Station Wagon/Sport Utility Vehicle,Tanker,,, +07/12/2021,18:47,BRONX,10458,40.861103,-73.89173,"(40.861103, -73.89173)",,,410 EAST FORDHAM ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,14:12,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4436639,Sedan,Sedan,,, +07/12/2021,11:30,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436147,Sedan,Sedan,,, +07/12/2021,0:45,QUEENS,11356,40.785595,-73.856895,"(40.785595, -73.856895)",110 STREET,14 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436234,Sedan,,,, +07/06/2021,20:30,BROOKLYN,11233,40.679207,-73.91647,"(40.679207, -73.91647)",,,204 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436877,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,0:00,QUEENS,11368,40.75564,-73.86697,"(40.75564, -73.86697)",,,101-07 34 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436885,Sedan,Bike,,, +07/12/2021,18:02,BROOKLYN,11228,40.617252,-74.00703,"(40.617252, -74.00703)",78 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,21:01,BROOKLYN,11235,40.582706,-73.95623,"(40.582706, -73.95623)",,,35 NEPTUNE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4436418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/08/2021,0:59,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4436867,Sedan,Pedicab,,, +07/12/2021,17:30,MANHATTAN,10027,40.812214,-73.94969,"(40.812214, -73.94969)",,,2381 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436713,Sedan,,,, +07/12/2021,9:00,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",SUTTER AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436155,Sedan,Sedan,,, +07/12/2021,20:00,QUEENS,11417,40.675285,-73.85249,"(40.675285, -73.85249)",PITKIN AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436320,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,1:07,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436038,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,13:00,,,,,,HORACE HARDING EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436276,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,17:09,BRONX,10459,40.819363,-73.893074,"(40.819363, -73.893074)",BARRETTO STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436942,Moped,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,13:38,BROOKLYN,11249,40.71727,-73.96286,"(40.71727, -73.96286)",WYTHE AVENUE,NORTH 3 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436470,Sedan,Box Truck,,, +07/12/2021,7:14,BROOKLYN,11226,40.65123,-73.94862,"(40.65123, -73.94862)",,,17 FAIRVIEW PLACE,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4436256,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,7:30,QUEENS,11106,40.767002,-73.932594,"(40.767002, -73.932594)",,,14-36 31 DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437039,Sedan,Sedan,,, +07/11/2021,16:10,MANHATTAN,10026,40.80165,-73.95679,"(40.80165, -73.95679)",,,240 WEST 112 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4436765,Sedan,Sedan,,, +07/12/2021,10:15,BRONX,10468,40.868282,-73.90108,"(40.868282, -73.90108)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436597,Sedan,,,, +07/12/2021,13:40,MANHATTAN,10028,40.7756,-73.956345,"(40.7756, -73.956345)",3 AVENUE,EAST 81 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436356,Sedan,E-Scooter,,, +07/12/2021,7:45,QUEENS,11415,40.713318,-73.82859,"(40.713318, -73.82859)",,,120-55 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436511,Sedan,,,, +07/12/2021,8:00,BROOKLYN,11203,40.649044,-73.93206,"(40.649044, -73.93206)",,,520 EAST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436617,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,23:10,BROOKLYN,11233,40.678066,-73.92085,"(40.678066, -73.92085)",PRESCOTT PLACE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436560,Sedan,,,, +07/12/2021,10:00,BROOKLYN,11223,40.59146,-73.97042,"(40.59146, -73.97042)",,,2358 WEST STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436413,Sedan,,,, +07/11/2021,16:08,BROOKLYN,11204,40.628876,-73.98043,"(40.628876, -73.98043)",18 AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436740,Sedan,Sedan,,, +07/12/2021,13:43,BRONX,10463,40.87993,-73.89786,"(40.87993, -73.89786)",GILES PLACE,CANNON PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436854,Sedan,,,, +07/12/2021,22:10,QUEENS,11374,40.73011,-73.86509,"(40.73011, -73.86509)",63 AVENUE,SAUNDERS STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436343,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,15:00,MANHATTAN,10026,40.801697,-73.95103,"(40.801697, -73.95103)",,,125 WEST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436759,Sedan,,,, +07/12/2021,12:52,,,,,,31 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4436335,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,4:30,BROOKLYN,11218,40.643894,-73.96873,"(40.643894, -73.96873)",BEVERLEY ROAD,STRATFORD ROAD,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4435970,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,10:00,BRONX,10470,40.896423,-73.86291,"(40.896423, -73.86291)",,,4225 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436789,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,23:30,STATEN ISLAND,10310,40.63893,-74.121666,"(40.63893, -74.121666)",,,3 ALASKA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436961,Sedan,,,, +07/12/2021,13:05,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,PRINCE STREET,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4436228,Refrigerated Van,Sedan,,, +07/12/2021,18:15,,,0,0,"(0.0, 0.0)",AVENUE J,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436389,E-Scooter,,,, +07/10/2021,17:45,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4436903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,8:00,BRONX,10463,40.88111,-73.903984,"(40.88111, -73.903984)",,,216 WEST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436851,Sedan,,,, +07/12/2021,17:50,,,40.6915,-73.90956,"(40.6915, -73.90956)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4436720,Bus,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,14:45,,,40.795383,-73.92994,"(40.795383, -73.92994)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4432314,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +07/12/2021,13:07,,,40.725792,-74.01103,"(40.725792, -74.01103)",WEST STREET,CANAL STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436397,Sedan,Sedan,,, +07/08/2021,12:30,MANHATTAN,10002,40.72007,-73.98744,"(40.72007, -73.98744)",,,133 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436983,Sedan,,,, +07/12/2021,18:00,,,,,,28 AVENUE,28 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,16:30,,,40.82952,-73.92498,"(40.82952, -73.92498)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4436730,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,2:40,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4436369,Sedan,Sedan,,, +07/12/2021,17:10,MANHATTAN,10002,40.72247,-73.987144,"(40.72247, -73.987144)",LUDLOW STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436312,Bike,Sedan,,, +07/09/2021,0:00,,,40.8283,-73.88296,"(40.8283, -73.88296)",WESTCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436770,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,9:26,BROOKLYN,11249,40.71952,-73.96044,"(40.71952, -73.96044)",WYTHE AVENUE,NORTH 7 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436803,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,18:42,BROOKLYN,11207,40.666294,-73.89445,"(40.666294, -73.89445)",PENNSYLVANIA AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436497,Bus,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:09,MANHATTAN,10033,40.84787,-73.93641,"(40.84787, -73.93641)",WEST 178 STREET,WADSWORTH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436691,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,11:17,MANHATTAN,10019,40.762005,-73.98262,"(40.762005, -73.98262)",,,790 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436406,Sedan,Box Truck,,, +07/12/2021,23:10,BROOKLYN,11210,40.626022,-73.94675,"(40.626022, -73.94675)",,,2400 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4437017,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/12/2021,12:40,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436437,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,13:00,QUEENS,11421,40.690422,-73.85738,"(40.690422, -73.85738)",,,88-24 86 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436861,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,19:50,,,40.625698,-73.99466,"(40.625698, -73.99466)",15 AVENUE,61 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436748,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,22:20,,,40.75092,-73.86224,"(40.75092, -73.86224)",39 AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436919,Motorcycle,Sedan,,, +07/12/2021,17:36,BROOKLYN,11212,40.669754,-73.904,"(40.669754, -73.904)",,,180 POWELL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436452,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,18:00,MANHATTAN,10001,40.74505,-73.99497,"(40.74505, -73.99497)",,,250 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436898,Sedan,Sedan,,, +07/12/2021,7:01,BRONX,10466,40.887978,-73.83444,"(40.887978, -73.83444)",LIGHT STREET,PRATT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436755,Sedan,Sedan,,, +07/12/2021,0:07,BRONX,10451,40.817257,-73.92222,"(40.817257, -73.92222)",,,273 EAST 149 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4435939,Sedan,Sedan,Sedan,, +07/11/2021,23:00,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4436822,E-Bike,Sedan,,, +06/01/2021,8:40,MANHATTAN,10030,40.81656,-73.948265,"(40.81656, -73.948265)",,,488 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4436776,Sedan,,,, +07/12/2021,21:50,,,,,,HOYT AVE SOUTH,31 ST,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4436340,Bike,Sedan,,, +07/12/2021,20:30,,,40.800583,-73.960075,"(40.800583, -73.960075)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Other Electronic Device,Unspecified,Unspecified,,,4436540,Sedan,Sedan,Sedan,, +07/12/2021,12:43,BROOKLYN,11201,40.692005,-73.98111,"(40.692005, -73.98111)",,,175 WILLOUGHBY STREET,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4436222,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,15:03,BRONX,10452,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,GOBLE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436526,Sedan,Sedan,,, +07/09/2021,11:05,BROOKLYN,11228,40.61537,-74.01147,"(40.61537, -74.01147)",,,1322 83 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436808,Sedan,Bike,,, +07/11/2021,6:40,,,40.7266,-73.93066,"(40.7266, -73.93066)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436724,Sedan,Pick-up Truck,Sedan,, +07/12/2021,10:35,MANHATTAN,10002,40.713634,-73.99535,"(40.713634, -73.99535)",,,64 EAST BROADWAY,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4436411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/13/2021,14:30,BROOKLYN,11237,40.698254,-73.90878,"(40.698254, -73.90878)",WYCKOFF AVENUE,PUTNAM AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4437056,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,9:30,,,40.70927,-73.797325,"(40.70927, -73.797325)",HILLSIDE AVENUE,165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436430,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,17:41,BRONX,10467,40.887882,-73.8774,"(40.887882, -73.8774)",,,3700 JEROME AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436674,Sedan,Bus,,, +07/12/2021,18:36,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Driver Inattention/Distraction,,,,4436471,Sedan,,,, +07/12/2021,14:45,BROOKLYN,11220,40.641533,-74.01045,"(40.641533, -74.01045)",54 STREET,6 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4436251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,16:30,,,40.744717,-73.86786,"(40.744717, -73.86786)",JUNCTION BOULEVARD,45 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436307,Sedan,Sedan,,, +07/07/2021,20:30,QUEENS,11372,40.752655,-73.89526,"(40.752655, -73.89526)",34 AVENUE,71 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436892,Bike,Sedan,,, +07/12/2021,8:25,QUEENS,11435,40.68787,-73.79747,"(40.68787, -73.79747)",111 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4436115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/17/2021,23:00,,,40.68029,-73.94774,"(40.68029, -73.94774)",FULTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4436868,Station Wagon/Sport Utility Vehicle,Bike,,, +07/12/2021,9:12,MANHATTAN,10039,40.826626,-73.939156,"(40.826626, -73.939156)",8 AVENUE,WEST 151 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4436487,Van,Taxi,,, +07/12/2021,13:00,BROOKLYN,11226,40.64475,-73.955246,"(40.64475, -73.955246)",,,2307 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4436382,Sedan,,,, +07/09/2021,10:45,BRONX,10465,40.827583,-73.84085,"(40.827583, -73.84085)",,,905 BRUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437011,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +07/08/2021,9:00,MANHATTAN,10011,40.743332,-74.00859,"(40.743332, -74.00859)",,,28 11 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4436817,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,5:23,BROOKLYN,11203,40.649216,-73.94459,"(40.649216, -73.94459)",SNYDER AVENUE,EAST 35 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,0:15,MANHATTAN,10002,40.72075,-73.98804,"(40.72075, -73.98804)",,,149 LUDLOW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436263,Sedan,Sedan,,, +07/12/2021,20:30,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436313,Sedan,,,, +10/26/2021,8:04,MANHATTAN,10032,40.83778,-73.94403,"(40.83778, -73.94403)",FORT WASHINGTON AVENUE,WEST 162 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Pavement Slippery,,,,4471102,Station Wagon/Sport Utility Vehicle,Bus,,, +07/12/2021,18:35,,,40.78363,-73.94353,"(40.78363, -73.94353)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436583,Sedan,Sedan,,, +07/12/2021,17:30,STATEN ISLAND,10304,40.634254,-74.081764,"(40.634254, -74.081764)",WARD AVENUE,AVON PLACE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4436600,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,17:05,,,40.585346,-73.98754,"(40.585346, -73.98754)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437018,Sedan,Sedan,,, +07/12/2021,9:40,BRONX,10462,40.839485,-73.85842,"(40.839485, -73.85842)",,,1514 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4436086,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,2:00,BRONX,10469,40.87461,-73.85531,"(40.87461, -73.85531)",,,3512 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436434,Sedan,,,, +07/11/2021,21:04,QUEENS,11101,40.757305,-73.939255,"(40.757305, -73.939255)",,,38-03 21 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4437042,Sedan,,,, +07/12/2021,12:55,MANHATTAN,10010,40.740852,-73.985886,"(40.740852, -73.985886)",PARK AVENUE SOUTH,EAST 24 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436176,Sedan,,,, +07/08/2021,21:25,BROOKLYN,11234,40.635365,-73.92571,"(40.635365, -73.92571)",GLENWOOD ROAD,EAST 53 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437040,Sedan,Sedan,,, +07/12/2021,17:40,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",FOUNTAIN AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436496,Station Wagon/Sport Utility Vehicle,Bus,,, +07/12/2021,4:55,BRONX,10458,40.86463,-73.892136,"(40.86463, -73.892136)",BAINBRIDGE AVENUE,EAST 194 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436037,Pick-up Truck,,,, +07/12/2021,15:45,QUEENS,11377,40.73965,-73.89258,"(40.73965, -73.89258)",,,70-55 QUEENS BOULEVARD,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4436325,Bike,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,9:25,BRONX,10459,40.82386,-73.89828,"(40.82386, -73.89828)",,,883 EAST 165 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436570,3-Door,Sedan,,, +06/10/2021,9:00,BROOKLYN,11211,40.70654,-73.95041,"(40.70654, -73.95041)",,,211 UNION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436947,Sedan,,,, +07/12/2021,11:30,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436469,Box Truck,Sedan,,, +07/12/2021,12:35,QUEENS,11377,40.7452,-73.89111,"(40.7452, -73.89111)",74 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436233,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,2:21,,,40.86769,-73.92122,"(40.86769, -73.92122)",WEST 207 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4436800,MOPED,Sedan,,, +07/07/2021,16:40,MANHATTAN,10027,40.806778,-73.943115,"(40.806778, -73.943115)",,,17 WEST 125 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436760,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,14:35,,,40.63515,-74.14068,"(40.63515, -74.14068)",NICHOLAS AVENUE,CHARLES AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436392,Sedan,Sedan,,, +07/12/2021,23:30,,,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4436357,Taxi,,,, +07/12/2021,14:50,MANHATTAN,10033,40.849285,-73.93894,"(40.849285, -73.93894)",WEST 179 STREET,FORT WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4436710,Sedan,3-Door,Bus,, +07/09/2021,14:30,MANHATTAN,10009,40.722744,-73.981316,"(40.722744, -73.981316)",,,238 EAST 4 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4436737,Sedan,Sedan,,, +07/12/2021,12:20,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",LAFAYETTE STREET,CANAL STREET,,1,0,1,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436401,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/10/2021,21:05,STATEN ISLAND,10301,40.634045,-74.08828,"(40.634045, -74.08828)",CASTLETON AVENUE,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4436965,Sedan,Sedan,,, +07/12/2021,10:00,QUEENS,11368,0,0,"(0.0, 0.0)",ROOSEVELT AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436230,Sedan,E-Bike,,, +07/10/2021,2:50,QUEENS,11370,40.76485,-73.88612,"(40.76485, -73.88612)",83 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4436916,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/12/2021,10:43,,,,,,MADISON AVE BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436153,Sedan,Sedan,,, +10/26/2021,18:50,,,,,,MEEKER AVENUE,MC GUINNESS BLVD SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471330,Sedan,,,, +07/12/2021,23:45,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436502,Sedan,Sedan,,, +07/12/2021,5:00,BROOKLYN,11203,40.655884,-73.942406,"(40.655884, -73.942406)",EAST 38 STREET,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436616,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,17:15,BRONX,10463,40.88368,-73.893135,"(40.88368, -73.893135)",VANCORTLANDT AVENUE WEST,ORLOFF AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4436277,Station Wagon/Sport Utility Vehicle,Bike,,, +07/12/2021,15:53,,,,,,KNAPP STREET,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436414,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,22:00,BROOKLYN,11206,40.696198,-73.935425,"(40.696198, -73.935425)",,,390 VERNON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436559,Sedan,,,, +07/12/2021,18:45,STATEN ISLAND,10308,40.559643,-74.16232,"(40.559643, -74.16232)",,,1031 ARMSTRONG AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436458,Pick-up Truck,,,, +07/12/2021,10:00,QUEENS,11428,40.71753,-73.7389,"(40.71753, -73.7389)",JAMAICA AVENUE,216 STREET,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4436148,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,2:00,BRONX,10457,40.84442,-73.8984,"(40.84442, -73.8984)",EAST 175 STREET,BATHGATE AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4435971,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,11:10,QUEENS,11105,40.77375,-73.90736,"(40.77375, -73.90736)",,,37-08 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436334,Sedan,,,, +07/04/2021,20:20,QUEENS,11368,40.751686,-73.85551,"(40.751686, -73.85551)",,,111-17 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436884,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,1:50,,,40.634434,-74.0388,"(40.634434, -74.0388)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4436419,Taxi,Bike,,, +07/12/2021,16:40,,,40.66323,-73.93161,"(40.66323, -73.93161)",UTICA AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,,,,4436283,Sedan,Sedan,,, +07/10/2021,23:00,MANHATTAN,10026,40.79806,-73.95201,"(40.79806, -73.95201)",,,35 WEST 110 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,15:05,,,40.795383,-73.92994,"(40.795383, -73.92994)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436790,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,13:41,,,40.70025,-73.93774,"(40.70025, -73.93774)",BEAVER STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436719,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/06/2021,14:45,BRONX,10474,40.819782,-73.884995,"(40.819782, -73.884995)",,,880 WHITTIER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436852,Sedan,Tractor Truck Diesel,,, +07/12/2021,7:30,,,40.687553,-73.980385,"(40.687553, -73.980385)",LIVINGSTON STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436348,Sedan,Sedan,,, +07/08/2021,19:20,BROOKLYN,11218,40.635788,-73.975784,"(40.635788, -73.975784)",,,306 DITMAS AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4436731,Sedan,Sedan,Sedan,, +07/05/2021,17:05,BROOKLYN,11221,40.68689,-73.91858,"(40.68689, -73.91858)",,,986 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4436880,Sedan,,,, +07/12/2021,18:15,,,40.830658,-73.93517,"(40.830658, -73.93517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4436490,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,21:15,MANHATTAN,10036,40.760155,-73.9988,"(40.760155, -73.9988)",WEST 41 STREET,11 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4436899,Sedan,Sedan,,, +06/27/2021,20:50,,,40.742493,-73.87337,"(40.742493, -73.87337)",91 PLACE,CORONA AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436955,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,12:27,,,40.59087,-73.801285,"(40.59087, -73.801285)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436224,Sedan,,,, +07/12/2021,10:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436543,Sedan,Sedan,,, +06/08/2021,16:14,MANHATTAN,10029,40.784943,-73.946594,"(40.784943, -73.946594)",2 AVENUE,EAST 97 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4436816,Sedan,Bike,,, +10/26/2021,9:25,BROOKLYN,11208,40.66661,-73.876144,"(40.66661, -73.876144)",ATKINS AVENUE,HEGEMAN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471392,Sedan,Sedan,,, +07/12/2021,19:40,BRONX,10461,40.85025,-73.8449,"(40.85025, -73.8449)",,,1825 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436472,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,7:35,,,,,,CROSS BRONX EXPRESSWAY,RANDALL AVENUE,,2,0,1,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4436171,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/12/2021,11:30,,,40.71664,-73.97561,"(40.71664, -73.97561)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436267,Sedan,Sedan,,, +07/12/2021,21:10,BROOKLYN,11212,40.659855,-73.92009,"(40.659855, -73.92009)",KINGS HIGHWAY,EAST 96 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436623,Sedan,,,, +07/12/2021,16:00,BROOKLYN,11231,40.683743,-73.99524,"(40.683743, -73.99524)",DE GRAW STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436602,Sedan,,,, +07/12/2021,0:00,BROOKLYN,11232,40.653004,-74.012856,"(40.653004, -74.012856)",2 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4436116,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,5:43,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436853,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,1:13,QUEENS,11370,40.758648,-73.89162,"(40.758648, -73.89162)",76 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436918,Sedan,Sedan,Sedan,, +07/11/2021,0:00,BROOKLYN,11222,40.72697,-73.94706,"(40.72697, -73.94706)",,,180 NORMAN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4436726,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/11/2021,8:00,BRONX,10461,40.85025,-73.828636,"(40.85025, -73.828636)",,,3141 ARNOW PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437010,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,0:41,MANHATTAN,10016,40.740643,-73.97581,"(40.740643, -73.97581)",EAST 29 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436405,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,12:35,BRONX,10472,40.827675,-73.87609,"(40.827675, -73.87609)",,,1132 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436769,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,9:00,MANHATTAN,10039,40.823856,-73.9403,"(40.823856, -73.9403)",,,287 WEST 147 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4436777,Sedan,,,, +07/12/2021,0:00,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4435952,Sedan,,,, +06/21/2021,15:30,QUEENS,11370,40.762257,-73.89134,"(40.762257, -73.89134)",,,25-56 77 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4436891,Sedan,,,, +07/12/2021,20:35,MANHATTAN,10035,40.80446,-73.93765,"(40.80446, -73.93765)",,,132 EAST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436433,Taxi,Sedan,,, +07/12/2021,3:00,BROOKLYN,11207,40.682938,-73.91053,"(40.682938, -73.91053)",,,1746 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4436453,Sedan,,,, +07/12/2021,18:00,QUEENS,11101,40.753456,-73.941414,"(40.753456, -73.941414)",22 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437050,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,15:00,MANHATTAN,10039,40.82422,-73.9409,"(40.82422, -73.9409)",,,2768 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436826,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,10:30,BROOKLYN,11218,40.642906,-73.9901,"(40.642906, -73.9901)",,,1108 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436339,Van,Box Truck,,, +07/12/2021,13:11,BRONX,10453,40.85018,-73.91059,"(40.85018, -73.91059)",JEROME AVENUE,EAST 177 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436682,Sedan,E-Bike,,, +07/12/2021,23:00,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436380,Taxi,,,, +07/09/2021,10:00,BROOKLYN,11206,40.697903,-73.9468,"(40.697903, -73.9468)",TOMPKINS AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436869,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,15:00,QUEENS,11103,40.76543,-73.91358,"(40.76543, -73.91358)",,,40-11 28 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437027,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,12:00,,,40.69939,-73.91938,"(40.69939, -73.91938)",KNICKERBOCKER AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4436440,Sedan,Box Truck,,, +07/12/2021,2:10,,,40.88305,-73.89983,"(40.88305, -73.89983)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436247,Sedan,,,, +07/12/2021,8:18,BROOKLYN,11225,40.663418,-73.95865,"(40.663418, -73.95865)",,,104 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436077,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,9:10,,,40.833183,-73.93022,"(40.833183, -73.93022)",SUMMIT AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436528,Bus,Sedan,,, +07/12/2021,18:00,,,40.853844,-73.91592,"(40.853844, -73.91592)",PHELAN PLACE,BILLINGSLY TERRACE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4436697,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,11:52,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436314,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:00,,,40.76242,-73.82752,"(40.76242, -73.82752)",UNION STREET,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436306,Sedan,E-Bike,,, +07/12/2021,19:44,,,40.791904,-73.94151,"(40.791904, -73.94151)",2 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436586,Sedan,Sedan,,, +07/03/2021,8:20,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436860,Pick-up Truck,Sedan,,, +07/12/2021,11:03,BRONX,10468,40.872112,-73.88786,"(40.872112, -73.88786)",EAST BEDFORD PARK BOULEVARD,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436365,Sedan,Sedan,,, +07/12/2021,17:07,MANHATTAN,10036,40.757355,-73.97832,"(40.757355, -73.97832)",,,2 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436409,Taxi,Sedan,,, +07/08/2021,13:00,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436807,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,22:11,,,40.804585,-73.94782,"(40.804585, -73.94782)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436756,Sedan,,,, +07/12/2021,18:30,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436973,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,20:21,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",VERNON BOULEVARD,36 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4437041,Sedan,Bike,,, +07/12/2021,3:05,,,40.705826,-73.79397,"(40.705826, -73.79397)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4436429,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,7:48,,,40.69613,-73.987114,"(40.69613, -73.987114)",JAY STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4436349,Bike,Sedan,,, +07/08/2021,14:30,BROOKLYN,11212,40.661606,-73.92066,"(40.661606, -73.92066)",,,241A ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436928,Sedan,,,, +07/12/2021,19:00,BRONX,10452,40.83774,-73.91739,"(40.83774, -73.91739)",EAST CLARKE PLACE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436732,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,18:46,QUEENS,11433,40.689552,-73.79546,"(40.689552, -73.79546)",153 STREET,110 ROAD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4436747,Sedan,Sedan,,, +07/08/2021,7:20,,,40.807087,-73.94178,"(40.807087, -73.94178)",5 AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436761,Bike,Sedan,,, +07/12/2021,16:30,,,40.580616,-74.152534,"(40.580616, -74.152534)",RICHMOND HILL ROAD,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436393,Pick-up Truck,,,, +10/26/2021,9:20,QUEENS,11354,40.765266,-73.81517,"(40.765266, -73.81517)",NORTHERN BOULEVARD,150 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471136,Station Wagon/Sport Utility Vehicle,Bus,,, +10/26/2021,20:07,BROOKLYN,11235,40.587124,-73.94421,"(40.587124, -73.94421)",,,4705 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4471259,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,17:00,BROOKLYN,11219,40.63904,-73.991516,"(40.63904, -73.991516)",,,4407 12 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471689,Taxi,E-Bike,,, +10/26/2021,9:30,QUEENS,11369,40.76164,-73.86723,"(40.76164, -73.86723)",102 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471740,Sedan,,,, +10/26/2021,21:15,QUEENS,11420,40.67557,-73.80372,"(40.67557, -73.80372)",135 STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471491,Sedan,Sedan,,, +10/26/2021,15:21,BROOKLYN,11209,40.614006,-74.032646,"(40.614006, -74.032646)",MARINE AVENUE,4 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471223,Motorcycle,Box Truck,,, +10/26/2021,7:00,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471268,Sedan,Tractor Truck Diesel,,, +09/27/2021,22:24,BRONX,10462,40.83553,-73.86317,"(40.83553, -73.86317)",WOOD AVENUE,WHITE PLAINS ROAD,,2,0,0,0,2,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471802,E-Bike,,,, +10/25/2021,8:50,BROOKLYN,11218,40.642685,-73.99122,"(40.642685, -73.99122)",40 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471682,Van,Bus,,, +10/26/2021,19:36,,,,,,HAMILTON AVENUE,HICKS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,0:15,,,40.84588,-73.904755,"(40.84588, -73.904755)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,19:45,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471459,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,11:47,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471202,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,17:21,BROOKLYN,11207,40.67046,-73.88788,"(40.67046, -73.88788)",SUTTER AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471397,Sedan,Sedan,,, +04/08/2022,20:53,MANHATTAN,10014,40.73596,-74.005135,"(40.73596, -74.005135)",WEST 11 STREET,BLEECKER STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4517963,Sedan,Taxi,,, +10/26/2021,17:30,QUEENS,11420,40.680756,-73.813446,"(40.680756, -73.813446)",127 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471283,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,19:55,MANHATTAN,10037,,,,,,531 LENOX AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471751,Sedan,Sedan,,, +10/26/2021,17:00,,,40.793186,-73.94057,"(40.793186, -73.94057)",2 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4471306,Station Wagon/Sport Utility Vehicle,Bike,,, +10/25/2021,6:12,BROOKLYN,11230,,,,MC DONALD AVENUE,AVENUE M,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471685,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,19:20,,,40.84512,-73.90663,"(40.84512, -73.90663)",CROSS BRONX EXPRESSWAY,MONROE AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4471237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/26/2021,16:00,,,40.673393,-73.79048,"(40.673393, -73.79048)",ROCKAWAY BOULEVARD,147 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471469,,,,, +10/26/2021,6:50,,,40.591022,-74.100914,"(40.591022, -74.100914)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471588,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,22:35,MANHATTAN,10065,40.764053,-73.96476,"(40.764053, -73.96476)",EAST 63 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471267,Taxi,Taxi,,, +10/26/2021,21:02,BROOKLYN,11236,40.637108,-73.89338,"(40.637108, -73.89338)",ROCKAWAY PARKWAY,AVENUE M,,2,0,0,0,0,0,2,0,Unspecified,,,,,4471412,Taxi,,,, +10/26/2021,5:10,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471062,Sedan,,,, +10/26/2021,20:50,,,40.638966,-73.94251,"(40.638966, -73.94251)",FOSTER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471313,Sedan,,,, +10/26/2021,13:20,QUEENS,11432,40.708576,-73.7883,"(40.708576, -73.7883)",,,89-04 172 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471167,Sedan,,,, +10/26/2021,22:00,QUEENS,11101,40.752937,-73.92204,"(40.752937, -73.92204)",NORTHERN BOULEVARD,36 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471324,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,12:53,,,40.625546,-73.93998,"(40.625546, -73.93998)",FLATBUSH AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471233,Tractor Truck Gasoline,Sedan,,, +10/26/2021,19:35,BROOKLYN,11226,40.63974,-73.94839,"(40.63974, -73.94839)",,,1877 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4471312,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,7:15,BRONX,10457,40.8494,-73.90304,"(40.8494, -73.90304)",ANTHONY AVENUE,ECHO PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471704,Sedan,,,, +10/26/2021,20:15,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471279,Pick-up Truck,Sedan,,, +10/12/2021,15:15,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4471725,Sedan,Motorcycle,,, +10/26/2021,3:20,,,40.808437,-73.904724,"(40.808437, -73.904724)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470954,Taxi,Tractor Truck Diesel,,, +10/26/2021,15:57,MANHATTAN,10024,40.783897,-73.97407,"(40.783897, -73.97407)",COLUMBUS AVENUE,WEST 82 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471768,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,4:30,,,40.710716,-73.981544,"(40.710716, -73.981544)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471538,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:25,QUEENS,11378,,,,55 DRIVE,58 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471970,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,11:20,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471856,Sedan,,,, +10/26/2021,7:30,BROOKLYN,11207,40.660217,-73.89675,"(40.660217, -73.89675)",NEW LOTS AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,12:32,BRONX,10467,40.870285,-73.87724,"(40.870285, -73.87724)",,,415 EAST 203 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471133,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,10:00,BROOKLYN,11234,40.60681,-73.92934,"(40.60681, -73.92934)",,,2151 EAST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471139,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,11:43,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471355,Sedan,Sedan,,, +09/25/2021,15:30,,,40.745113,-73.98067,"(40.745113, -73.98067)",LEXINGTON AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471764,Station Wagon/Sport Utility Vehicle,Bike,,, +10/26/2021,10:00,QUEENS,11433,40.690434,-73.78941,"(40.690434, -73.78941)",CLAUDE AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471178,Sedan,Sedan,,, +10/26/2021,23:00,,,40.836555,-73.87135,"(40.836555, -73.87135)",EAST 177 STREET,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471387,Sedan,,,, +10/26/2021,19:30,BROOKLYN,11233,40.682472,-73.925995,"(40.682472, -73.925995)",,,242 PATCHEN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471788,Sedan,,,, +10/26/2021,8:55,BROOKLYN,11228,40.62913,-74.01438,"(40.62913, -74.01438)",,,839 70 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4471222,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/26/2021,16:53,BRONX,10475,40.868195,-73.831505,"(40.868195, -73.831505)",,,346 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471425,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,9:24,BROOKLYN,11234,,,,EAST 63 STREET,AVENUE T,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471849,Sedan,Sedan,,, +10/26/2021,4:16,MANHATTAN,10032,40.842808,-73.942024,"(40.842808, -73.942024)",WEST 169 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4471089,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/26/2021,21:52,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471358,Garbage or Refuse,Sedan,,, +10/26/2021,9:23,MANHATTAN,10039,40.830826,-73.936066,"(40.830826, -73.936066)",,,2987 8 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4471417,Sedan,Sedan,,, +10/26/2021,14:40,QUEENS,11427,40.733063,-73.73876,"(40.733063, -73.73876)",,,230-17 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471465,Station Wagon/Sport Utility Vehicle,Bus,,, +10/26/2021,8:11,QUEENS,11373,40.744057,-73.88348,"(40.744057, -73.88348)",LAYTON STREET,PETTIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471107,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,11:50,QUEENS,11373,40.735115,-73.87524,"(40.735115, -73.87524)",,,88-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4471173,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,13:53,MANHATTAN,10014,40.729343,-74.00366,"(40.729343, -74.00366)",DOWNING STREET,BEDFORD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471811,Taxi,Box Truck,,, +10/26/2021,15:20,,,40.73032,-74.00469,"(40.73032, -74.00469)",7 AVENUE SOUTH,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4471818,Bike,Sedan,,, +10/26/2021,7:29,,,40.619576,-74.00461,"(40.619576, -74.00461)",14 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4471216,Sedan,Sedan,,, +10/26/2021,0:00,BROOKLYN,11203,40.64596,-73.92976,"(40.64596, -73.92976)",,,1091 UTICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,14:28,BROOKLYN,11216,,,,,,393 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471795,Tractor Truck Diesel,Sedan,,, +10/26/2021,18:00,QUEENS,11433,40.695713,-73.79819,"(40.695713, -73.79819)",,,155-01 107 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471532,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,17:13,,,40.579212,-73.976265,"(40.579212, -73.976265)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4471756,Armored Truck,Sedan,,, +10/26/2021,7:05,,,,,,bronx shore road,central road,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471116,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,18:31,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471231,Sedan,Sedan,,, +10/26/2021,6:39,BROOKLYN,11217,40.68574,-73.97803,"(40.68574, -73.97803)",,,326 ASHLAND PLACE,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4471034,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,8:08,,,40.69637,-73.99725,"(40.69637, -73.99725)",COLUMBIA HEIGHTS,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4471203,Sedan,Bus,,, +10/26/2021,15:35,,,40.792183,-73.968025,"(40.792183, -73.968025)",COLUMBUS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471339,E-Bike,,,, +04/09/2022,8:54,BROOKLYN,11207,40.658337,-73.87759,"(40.658337, -73.87759)",COZINE AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4518001,Sedan,,,, +10/26/2021,7:50,BROOKLYN,11236,40.64757,-73.89856,"(40.64757, -73.89856)",GLENWOOD ROAD,EAST 102 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4471186,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,18:00,BROOKLYN,11221,40.697918,-73.92083,"(40.697918, -73.92083)",HARMAN STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471700,Sedan,,,, +10/26/2021,20:45,BRONX,10475,40.879906,-73.83181,"(40.879906, -73.83181)",,,1010 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471429,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,18:15,QUEENS,11368,40.74669,-73.8532,"(40.74669, -73.8532)",,,48-08 111 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471251,Sedan,,,, +10/26/2021,22:20,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Lighting Defects,Unspecified,,,,4471385,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/26/2021,19:45,MANHATTAN,10035,40.799297,-73.94113,"(40.799297, -73.94113)",EAST 117 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4471452,Sedan,Sedan,,, +10/26/2021,11:57,STATEN ISLAND,10305,40.58524,-74.08807,"(40.58524, -74.08807)",MASON AVENUE,GARRETSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471408,Sedan,Sedan,,, +10/26/2021,12:56,,,40.70321,-73.94626,"(40.70321, -73.94626)",BROADWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471288,Sedan,Sedan,,, +10/26/2021,5:04,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4471650,Box Truck,Box Truck,,, +10/26/2021,19:25,BRONX,10456,40.822716,-73.9032,"(40.822716, -73.9032)",,,735 EAST 163 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471781,Taxi,,,, +10/26/2021,9:00,,,40.845078,-73.91111,"(40.845078, -73.91111)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471243,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,19:00,BROOKLYN,11218,40.645123,-73.986916,"(40.645123, -73.986916)",,,3525 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471690,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,6:40,,,40.630512,-73.957306,"(40.630512, -73.957306)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4471002,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,15:35,MANHATTAN,10019,40.765057,-73.995224,"(40.765057, -73.995224)",,,678 11 AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471726,Sedan,E-Scooter,,, +10/26/2021,0:47,QUEENS,11369,40.760136,-73.85987,"(40.760136, -73.85987)",,,110-14 ASTORIA BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4471163,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/26/2021,8:00,,,40.767494,-73.95933,"(40.767494, -73.95933)",EAST 70 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4471269,Sedan,,,, +10/26/2021,20:45,QUEENS,11422,40.666416,-73.738495,"(40.666416, -73.738495)",NORTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4471881,Sedan,,,, +10/24/2021,16:38,MANHATTAN,10036,,,,,,210 WEST 46 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4471777,Motorscooter,,,, +10/26/2021,7:41,,,40.665226,-73.92319,"(40.665226, -73.92319)",SUTTER AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4471555,Sedan,,,, +10/26/2021,17:10,BROOKLYN,11209,40.628708,-74.02134,"(40.628708, -74.02134)",,,557 BAY RIDGE PARKWAY,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471277,Sedan,E-Bike,,, +10/26/2021,22:00,QUEENS,11102,40.768024,-73.91912,"(40.768024, -73.91912)",28 AVENUE,32 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471334,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/26/2021,21:20,BROOKLYN,11215,40.664574,-73.98554,"(40.664574, -73.98554)",,,340 14 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471594,Sedan,Sedan,,, +10/26/2021,19:10,,,40.697678,-73.916374,"(40.697678, -73.916374)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4471258,E-Scooter,,,, +10/26/2021,19:10,QUEENS,11433,40.706226,-73.78917,"(40.706226, -73.78917)",170 STREET,92 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471224,Sedan,,,, +10/26/2021,22:00,BRONX,10473,40.806084,-73.85453,"(40.806084, -73.85453)",WHITE PLAINS ROAD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471710,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,15:55,BRONX,10462,40.847363,-73.8579,"(40.847363, -73.8579)",MORRIS PARK AVENUE,BOGART AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471736,Bus,,,, +10/26/2021,0:30,BROOKLYN,11231,,,,DE GRAW STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471370,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,18:00,,,40.65794,-73.936874,"(40.65794, -73.936874)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471497,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,9:00,BROOKLYN,11206,40.70889,-73.943474,"(40.70889, -73.943474)",,,195 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471282,Sedan,,,, +10/26/2021,16:45,BROOKLYN,11211,40.70863,-73.958466,"(40.70863, -73.958466)",,,285 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4471315,Taxi,,,, +10/21/2021,14:30,QUEENS,11362,,,,,,252-04 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4471785,Bus,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,13:45,BROOKLYN,11204,,,,18 AVENUE,52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471681,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,20:30,STATEN ISLAND,10306,40.5715,-74.12163,"(40.5715, -74.12163)",AMBOY ROAD,DALE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,7:12,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471328,,,,, +10/26/2021,11:30,,,40.827423,-73.836754,"(40.827423, -73.836754)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,14:10,BROOKLYN,11230,40.621983,-73.96832,"(40.621983, -73.96832)",,,723 AVENUE K,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471686,Sedan,,,, +10/26/2021,5:41,BROOKLYN,11215,40.67267,-73.99002,"(40.67267, -73.99002)",3 AVENUE,7 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4470964,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/25/2021,0:45,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471769,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/25/2021,7:00,MANHATTAN,10028,,,,1 AVENUE,EAST 81 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471716,Sedan,,,, +10/26/2021,6:35,,,,,,NEW ENGLAND THRUWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471242,Box Truck,,,, +10/26/2021,17:53,BROOKLYN,11208,40.669064,-73.86557,"(40.669064, -73.86557)",LINDEN BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inexperience,,,4471395,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +10/26/2021,9:33,,,40.848263,-73.92049,"(40.848263, -73.92049)",MONTGOMERY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471140,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,20:45,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471389,Sedan,,,, +10/26/2021,23:29,,,40.82902,-73.94485,"(40.82902, -73.94485)",WEST 151 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4471750,Sedan,Sedan,Sedan,, +10/26/2021,15:20,BROOKLYN,11201,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471567,Sedan,Sedan,,, +10/26/2021,10:15,BROOKLYN,11237,40.712963,-73.92761,"(40.712963, -73.92761)",STEWART AVENUE,MEADOW STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4471287,Sedan,Tractor Truck Diesel,,, +10/26/2021,17:09,MANHATTAN,10029,40.79162,-73.94885,"(40.79162, -73.94885)",EAST 104 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471305,Taxi,Taxi,,, +10/26/2021,19:45,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,CONNER STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471480,Sedan,,,, +10/26/2021,13:55,,,,,,EAST 153 STREET,CROMWELL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,13:15,,,40.60809,-74.14093,"(40.60809, -74.14093)",WOOLLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471181,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,8:41,QUEENS,,40.72013,-73.79038,"(40.72013, -73.79038)",GRAND CENTRAL PARKWAY,UTOPIA PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471221,Sedan,,,, +10/26/2021,21:25,QUEENS,11105,40.771084,-73.908226,"(40.771084, -73.908226)",23 AVENUE,STEINWAY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4471844,Taxi,Station Wagon/Sport Utility Vehicle,Taxi,, +10/26/2021,9:14,BRONX,10454,,,,St Anns ave,E 132 St,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471090,Sedan,Sedan,,, +10/26/2021,11:10,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4471798,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,21:00,,,40.723698,-74.00792,"(40.723698, -74.00792)",HUDSON STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4471359,Sedan,Sedan,,, +10/26/2021,22:00,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471262,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,7:30,BROOKLYN,11212,40.66157,-73.91548,"(40.66157, -73.91548)",LIVONIA AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471761,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,18:00,QUEENS,11373,40.746983,-73.87197,"(40.746983, -73.87197)",94 STREET,BENHAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471963,Sedan,UNKNOWN,,, +10/26/2021,7:43,BRONX,10459,40.82364,-73.89391,"(40.82364, -73.89391)",WESTCHESTER AVENUE,FOX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471188,Sedan,,,, +10/26/2021,22:00,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4471226,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,17:50,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471506,Sedan,,,, +10/26/2021,9:15,,,40.88432,-73.91374,"(40.88432, -73.91374)",WEST 232 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471421,Sedan,,,, +10/26/2021,12:50,,,,,,,,134-000 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471431,Sedan,,,, +10/26/2021,8:00,BRONX,10451,40.818012,-73.92519,"(40.818012, -73.92519)",EAST 149 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471086,Sedan,Bus,,, +10/26/2021,10:24,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471311,Box Truck,Sedan,,, +10/26/2021,10:56,,,40.86242,-73.89405,"(40.86242, -73.89405)",EAST KINGSBRIDGE ROAD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4471132,Station Wagon/Sport Utility Vehicle,Busv,,, +10/26/2021,6:39,,,40.691765,-73.99992,"(40.691765, -73.99992)",COLUMBIA STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4471369,Sedan,Sedan,,, +10/26/2021,1:30,QUEENS,11355,40.75372,-73.83283,"(40.75372, -73.83283)",COLLEGE POINT BOULEVARD,MAPLE AVENUE,,2,0,0,0,0,0,2,0,Glare,,,,,4471033,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,13:20,BROOKLYN,11234,40.61884,-73.94222,"(40.61884, -73.94222)",,,3319 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,22:58,,,40.748466,-73.99247,"(40.748466, -73.99247)",7 AVENUE,,,1,0,0,0,1,0,0,0,Pavement Slippery,Unspecified,,,,4471416,Sedan,E-Bike,,, +10/26/2021,16:00,BROOKLYN,11230,40.6287,-73.97423,"(40.6287, -73.97423)",,,324 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471337,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/26/2021,10:02,QUEENS,11368,40.749966,-73.861755,"(40.749966, -73.861755)",ROOSEVELT AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,15:15,MANHATTAN,10031,40.825817,-73.95302,"(40.825817, -73.95302)",RIVERSIDE DRIVE,WEST 143 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471734,Sedan,,,, +10/26/2021,1:55,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",AVENUE P,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471691,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,15:01,BROOKLYN,11220,40.63055,-74.01526,"(40.63055, -74.01526)",,,730 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471270,Taxi,,,, +10/26/2021,20:20,QUEENS,11373,40.72898,-73.882385,"(40.72898, -73.882385)",80 STREET,57 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471252,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,12:19,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",ROGERS AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471526,Sedan,Garbage or Refuse,,, +10/26/2021,21:38,MANHATTAN,10013,40.725674,-74.00398,"(40.725674, -74.00398)",,,161 AVENUE OF THE AMERICAS,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471634,Sedan,,,, +10/26/2021,3:00,BRONX,10452,40.83714,-73.92049,"(40.83714, -73.92049)",EAST 168 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471278,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,8:50,QUEENS,11413,40.672813,-73.74247,"(40.672813, -73.74247)",230 STREET,137 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471164,Bus,Bus,,, +10/24/2021,22:30,BROOKLYN,11231,40.682034,-74.000435,"(40.682034, -74.000435)",,,554 HENRY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471885,FDNY Truck,Sedan,,, +10/26/2021,10:45,,,40.68409,-73.80169,"(40.68409, -73.80169)",142 STREET,,,4,0,0,0,0,0,4,0,Passing Too Closely,Turning Improperly,,,,4471114,Sedan,Sedan,,, +10/23/2021,8:00,STATEN ISLAND,10312,,,,,,485 RATHBUN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471753,Sedan,,,, +10/26/2021,19:30,BRONX,10472,40.82933,-73.861084,"(40.82933, -73.861084)",,,1140 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4471383,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,2:50,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4471450,Sedan,,,, +10/26/2021,17:20,QUEENS,11354,40.77279,-73.837135,"(40.77279, -73.837135)",28 AVENUE,ULMER STREET,,1,0,0,0,0,0,1,0,Illnes,,,,,4471204,Sedan,,,, +10/26/2021,14:55,BROOKLYN,11237,40.71359,-73.92966,"(40.71359, -73.92966)",,,223 VARICK AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4471289,Box Truck,,,, +07/13/2021,6:40,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436771,Motorcycle,,,, +10/26/2021,10:40,BROOKLYN,11201,40.68481,-73.99177,"(40.68481, -73.99177)",SMITH STREET,BALTIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4471406,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/26/2021,20:15,,,40.75488,-73.89929,"(40.75488, -73.89929)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Following Too Closely,,,,4471333,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/26/2021,9:20,QUEENS,11368,40.737286,-73.85595,"(40.737286, -73.85595)",OTIS AVENUE,60 AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4471108,Sedan,Sedan,,, +10/26/2021,6:05,MANHATTAN,10019,40.761234,-73.97944,"(40.761234, -73.97944)",,,1300 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471006,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,0:00,BROOKLYN,11220,40.64759,-74.01142,"(40.64759, -74.01142)",4 AVENUE,48 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471235,Sedan,E-Bike,,, +10/25/2021,20:05,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",7 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471817,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,11:30,BROOKLYN,11203,40.654785,-73.92588,"(40.654785, -73.92588)",,,138 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471299,Sedan,,,, +10/26/2021,13:15,,,,,,PARK AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4471215,Sedan,Bus,,, +10/11/2021,20:47,BROOKLYN,11237,40.700294,-73.919655,"(40.700294, -73.919655)",,,250 HIMROD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471698,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/26/2021,11:08,MANHATTAN,10017,40.7546,-73.97562,"(40.7546, -73.97562)",,,101 EAST 46 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471727,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/26/2021,8:00,BROOKLYN,11233,40.678574,-73.916306,"(40.678574, -73.916306)",SARATOGA AVENUE,FULTON STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4471554,Sedan,,,, +10/25/2021,16:30,BRONX,10456,40.830803,-73.89974,"(40.830803, -73.89974)",EAST 169 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471779,Sedan,Motorcycle,,, +10/26/2021,22:24,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,0:00,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471603,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,19:00,BROOKLYN,11203,,,,KINGS HIGHWAY,BEVERLEY ROAD,,1,0,1,0,0,0,0,0,,,,,,4471814,Pick-up Truck,,,, +10/26/2021,22:30,,,40.75355,-73.98505,"(40.75355, -73.98505)",WEST 40 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471362,,,,, +10/25/2021,20:15,,,40.849403,-73.871445,"(40.849403, -73.871445)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,4:20,,,40.72539,-73.896614,"(40.72539, -73.896614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4471146,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,14:59,BROOKLYN,11207,40.657036,-73.89383,"(40.657036, -73.89383)",MALTA STREET,DE WITT AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4471396,Sedan,Sedan,,, +10/26/2021,13:30,BRONX,10451,40.827682,-73.922165,"(40.827682, -73.922165)",GRAND CONCOURSE,EAST 162 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4471760,Sedan,Sedan,Sedan,, +10/26/2021,0:00,BRONX,10457,40.845966,-73.89224,"(40.845966, -73.89224)",EAST TREMONT AVENUE,HUGHES AVENUE,,1,0,1,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4471350,Sedan,Sedan,Sedan,, +10/26/2021,8:25,BROOKLYN,11210,40.6227,-73.93694,"(40.6227, -73.93694)",,,1927 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471131,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,16:30,,,40.587147,-74.15391,"(40.587147, -74.15391)",KELLY BOULEVARD,KLONDIKE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4471194,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,7:40,BROOKLYN,11212,40.660725,-73.91819,"(40.660725, -73.91819)",EAST 98 STREET,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471464,Sedan,,,, +10/26/2021,0:21,,,40.730038,-73.926796,"(40.730038, -73.926796)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Fell Asleep,Unspecified,,,4471446,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/26/2021,7:55,STATEN ISLAND,10312,40.562267,-74.17349,"(40.562267, -74.17349)",TOKEN STREET,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4471092,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,2:15,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471780,Sedan,,,, +10/25/2021,19:00,,,40.720615,-73.84211,"(40.720615, -73.84211)",QUEENS BOULEVARD,72 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471893,Sedan,,,, +10/26/2021,8:00,QUEENS,11434,40.664272,-73.767555,"(40.664272, -73.767555)",,,178-20 145 DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471574,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,6:45,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471281,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,11:30,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4471708,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/26/2021,14:23,,,40.757004,-73.92611,"(40.757004, -73.92611)",35 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471720,Sedan,MTA BUS,,, +10/26/2021,4:59,BRONX,10459,40.822445,-73.885666,"(40.822445, -73.885666)",,,1360 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4470972,Tractor Truck Diesel,,,, +10/24/2021,18:15,,,,,,PELHAM PARKWAY SOUTH,BOSTON ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471842,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,21:00,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAND STREET,GRAHAM AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471310,Sedan,,,, +10/26/2021,16:30,QUEENS,11106,40.75863,-73.92701,"(40.75863, -73.92701)",,,34-40 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471329,Sedan,,,, +10/23/2021,15:33,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471770,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,22:00,BROOKLYN,11220,40.6488,-74.01343,"(40.6488, -74.01343)",48 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4471239,Sedan,,,, +10/26/2021,18:25,BRONX,10469,40.87756,-73.840706,"(40.87756, -73.840706)",,,3337 BRUNER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4471486,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,11:45,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471261,,,,, +09/27/2021,16:21,BRONX,10472,40.828285,-73.87132,"(40.828285, -73.87132)",,,1160 FTELEY AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4471800,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,20:23,BROOKLYN,11211,40.71271,-73.96056,"(40.71271, -73.96056)",SOUTH 2 STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4471317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,8:05,MANHATTAN,10012,40.72179,-73.99986,"(40.72179, -73.99986)",BROADWAY,BROOME STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4471180,Sedan,Tractor Truck Diesel,,, +10/26/2021,6:22,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",RALPH AVENUE,AVENUE J,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471081,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,22:54,BROOKLYN,11207,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,SHEFFIELD AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4471390,Sedan,,,, +10/26/2021,8:20,QUEENS,11363,40.76967,-73.738556,"(40.76967, -73.738556)",MARATHON PARKWAY,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4471508,Sedan,Sedan,,, +10/26/2021,16:20,,,40.669098,-73.93666,"(40.669098, -73.93666)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471227,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,20:39,,,40.62104,-73.9995,"(40.62104, -73.9995)",BAY RIDGE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471220,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,10:01,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471422,Sedan,,,, +10/24/2021,15:00,,,,,,DOUGLASTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471784,Sedan,,,, +10/26/2021,16:18,BROOKLYN,11221,40.69467,-73.93115,"(40.69467, -73.93115)",LAWTON STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471257,Station Wagon/Sport Utility Vehicle,Motorbike,,, +10/26/2021,6:53,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",EAST 158 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471286,Sedan,,,, +10/26/2021,20:03,MANHATTAN,10035,40.80114,-73.93769,"(40.80114, -73.93769)",3 AVENUE,EAST 121 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4471744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,9:03,BROOKLYN,11220,40.643723,-74.000465,"(40.643723, -74.000465)",,,801 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471687,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,16:25,BROOKLYN,11226,40.648674,-73.95228,"(40.648674, -73.95228)",,,888 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471304,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,20:00,,,40.665676,-73.7483,"(40.665676, -73.7483)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4471245,Sedan,Sedan,,, +10/21/2021,9:00,BROOKLYN,11217,40.682777,-73.98242,"(40.682777, -73.98242)",3 AVENUE,WYCKOFF STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471923,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,19:00,BROOKLYN,11206,40.70601,-73.935486,"(40.70601, -73.935486)",MC KIBBIN STREET,WHITE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471614,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,22:58,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4471673,Sedan,,,, +10/26/2021,0:56,BROOKLYN,11223,40.609554,-73.96631,"(40.609554, -73.96631)",AVENUE P,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471692,Sedan,Sedan,,, +10/26/2021,9:30,MANHATTAN,10021,40.771385,-73.95648,"(40.771385, -73.95648)",2 AVENUE,EAST 76 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471272,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,16:48,QUEENS,11373,40.73912,-73.87989,"(40.73912, -73.87989)",,,83-37 SAINT JAMES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495438,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,14:05,,,40.705425,-73.78258,"(40.705425, -73.78258)",177 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495366,,,,, +01/16/2022,17:22,QUEENS,11432,40.726154,-73.78494,"(40.726154, -73.78494)",,,182-23 80 DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495713,Sedan,Sedan,,, +01/10/2022,16:00,,,40.83923,-73.92579,"(40.83923, -73.92579)",MERRIAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495834,Sedan,Tow Truck / Wrecker,,, +01/17/2022,0:15,QUEENS,11434,40.667084,-73.78698,"(40.667084, -73.78698)",NORTH CONDUIT AVENUE,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4495482,Sedan,,,, +01/17/2022,15:00,BROOKLYN,11236,40.634354,-73.910675,"(40.634354, -73.910675)",EAST 81 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495598,Sedan,,,, +01/17/2022,14:30,BRONX,10475,40.870247,-73.83097,"(40.870247, -73.83097)",ASCH LOOP,ALDRICH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495647,Sedan,,,, +01/17/2022,3:40,,,40.658253,-73.98465,"(40.658253, -73.98465)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4495079,Sedan,,,, +01/17/2022,6:13,,,40.84935,-73.8712,"(40.84935, -73.8712)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495392,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,15:30,,,40.58581,-73.960335,"(40.58581, -73.960335)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495743,Sedan,,,, +01/17/2022,13:00,BROOKLYN,11204,40.618484,-73.99268,"(40.618484, -73.99268)",,,1751 67 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495265,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,20:40,,,40.5763,-73.96854,"(40.5763, -73.96854)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4495736,LIMO,Sedan,Station Wagon/Sport Utility Vehicle,, +01/12/2022,11:40,BRONX,10451,40.815113,-73.92978,"(40.815113, -73.92978)",WALTON AVENUE,EAST 140 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495866,Sedan,,,, +01/17/2022,21:06,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495503,Sedan,,,, +01/17/2022,16:28,BRONX,10469,40.876545,-73.85151,"(40.876545, -73.85151)",,,3535 WILSON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495542,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/17/2022,22:33,QUEENS,11385,40.70369,-73.8569,"(40.70369, -73.8569)",,,88-69 82 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495816,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,21:40,MANHATTAN,10001,40.751194,-73.98903,"(40.751194, -73.98903)",,,157 WEST 35 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4495684,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,17:47,,,40.766853,-73.82736,"(40.766853, -73.82736)",UNION STREET,34 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495331,Sedan,,,, +01/17/2022,17:15,QUEENS,11420,40.67222,-73.80637,"(40.67222, -73.80637)",SUTTER AVENUE,132 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495362,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,7:35,BROOKLYN,11235,40.58096,-73.96466,"(40.58096, -73.96466)",BRIGHTON 4 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495192,Taxi,Sedan,,, +01/17/2022,15:00,BRONX,10465,40.81996,-73.810455,"(40.81996, -73.810455)",,,4147 THROGS NECK EXPRESSWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4495695,Sedan,,,, +01/17/2022,18:44,,,40.82803,-73.934845,"(40.82803, -73.934845)",MACOMBS PLACE,POWELL BOULEVARD,,2,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4495446,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/17/2022,16:05,BROOKLYN,11225,40.66329,-73.95093,"(40.66329, -73.95093)",,,1030 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495334,Sedan,Sedan,,, +01/17/2022,21:45,QUEENS,11432,40.707466,-73.7887,"(40.707466, -73.7887)",171 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495367,,,,, +01/16/2022,11:35,,,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,,,1,0,1,0,0,0,0,0,Obstruction/Debris,,,,,4495836,Bus,,,, +01/15/2022,8:40,BROOKLYN,11220,40.644306,-74.01804,"(40.644306, -74.01804)",56 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495757,Forklift,,,, +01/16/2022,20:00,QUEENS,11419,40.691998,-73.83269,"(40.691998, -73.83269)",,,94-31 113 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495769,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,8:15,BROOKLYN,11209,40.62199,-74.02581,"(40.62199, -74.02581)",,,8512 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495177,Sedan,,,, +01/17/2022,19:00,BRONX,10466,40.89521,-73.860245,"(40.89521, -73.860245)",,,610 EAST 234 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,10:18,,,40.747448,-73.94146,"(40.747448, -73.94146)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495259,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,15:50,MANHATTAN,10002,40.71612,-73.98365,"(40.71612, -73.98365)",BROOME STREET,PITT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495707,Sedan,Sedan,,, +01/17/2022,4:58,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,8,0,0,0,0,0,8,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4495148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/17/2022,13:30,BROOKLYN,11235,40.593487,-73.94349,"(40.593487, -73.94349)",AVENUE X,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495378,Sedan,,,, +01/16/2022,12:00,STATEN ISLAND,10312,40.553547,-74.18666,"(40.553547, -74.18666)",,,41 LINDA LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495755,Sedan,Box Truck,,, +01/14/2022,19:00,,,40.575203,-74.169846,"(40.575203, -74.169846)",,,2873 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495675,Sedan,,,, +01/17/2022,1:30,,,40.714214,-73.94773,"(40.714214, -73.94773)",METROPOLITAN AVENUE,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4495312,Sedan,,,, +01/17/2022,14:53,BRONX,10457,40.85155,-73.888695,"(40.85155, -73.888695)",,,2243 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495470,Pick-up Truck,,,, +01/17/2022,2:17,MANHATTAN,10036,,,,W 42nd Street,8th Ave,,0,0,0,0,0,0,0,0,Passenger Distraction,Pavement Slippery,,,,4495427,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,17:50,,,40.639977,-73.92623,"(40.639977, -73.92623)",EAST 53 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495846,Bus,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,20:00,STATEN ISLAND,10306,40.57969,-74.100395,"(40.57969, -74.100395)",HYLAN BOULEVARD,HUNTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495478,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,3:28,BRONX,10458,40.86675,-73.888885,"(40.86675, -73.888885)",POND PLACE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495304,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,0:46,,,40.8077,-73.92955,"(40.8077, -73.92955)",BRUCKNER BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4495246,Sedan,,,, +01/12/2022,21:36,QUEENS,11419,40.689133,-73.82086,"(40.689133, -73.82086)",124 STREET,103 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495721,Sedan,E-Bike,,, +01/13/2022,17:27,BROOKLYN,11218,40.647182,-73.98134,"(40.647182, -73.98134)",CATON AVENUE,DAHILL ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4495779,Sedan,Bike,,, +01/17/2022,7:38,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",DELANCEY STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495343,Box Truck,Taxi,,, +01/17/2022,8:20,QUEENS,11106,40.75466,-73.92799,"(40.75466, -73.92799)",,,36-43 34 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495513,Sedan,Sedan,,, +01/11/2022,12:30,,,40.678455,-73.949684,"(40.678455, -73.949684)",NOSTRAND AVENUE,,,3,0,2,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495751,Box Truck,Bike,,, +01/15/2022,20:35,,,40.600807,-74.13881,"(40.600807, -74.13881)",,,503 HAROLD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495671,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,5:30,QUEENS,11418,40.7011,-73.84157,"(40.7011, -73.84157)",MYRTLE AVENUE,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495232,Sedan,,,, +01/17/2022,2:30,,,40.789085,-73.780464,"(40.789085, -73.780464)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unsafe Speed,,,,4495136,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,17:40,BROOKLYN,11219,40.63523,-73.99549,"(40.63523, -73.99549)",12 AVENUE,51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495385,,,,, +01/17/2022,17:37,BROOKLYN,11203,40.654625,-73.94227,"(40.654625, -73.94227)",LENOX ROAD,EAST 38 STREET,,1,0,1,0,0,0,0,0,,,,,,4495535,Sedan,,,, +01/17/2022,19:50,,,40.66922,-73.801094,"(40.66922, -73.801094)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Accelerator Defective,,,,4495352,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,8:30,,,,,,113 street,riverside drive,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495851,Sedan,,,, +01/17/2022,18:30,MANHATTAN,10012,40.72446,-74.00297,"(40.72446, -74.00297)",,,72 THOMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495405,Sedan,Sedan,,, +01/12/2022,17:16,,,40.605408,-73.984,"(40.605408, -73.984)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495696,Station Wagon/Sport Utility Vehicle,Bus,,, +01/17/2022,13:41,BROOKLYN,11214,40.595104,-74.00091,"(40.595104, -74.00091)",,,8973 BAY PARKWAY,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unsafe Speed,,,,4495266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,17:50,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495745,Sedan,Sedan,,, +01/14/2022,16:40,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495686,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,11:43,QUEENS,11004,40.74061,-73.71246,"(40.74061, -73.71246)",257 STREET,82 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4495256,Sedan,Sedan,,, +01/17/2022,14:00,QUEENS,11413,40.666836,-73.7421,"(40.666836, -73.7421)",,,232-18 MENTONE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495335,Sedan,,,, +01/11/2022,14:03,BRONX,10466,40.893764,-73.852646,"(40.893764, -73.852646)",,,4214 BRONXWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495806,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,12:30,,,40.712055,-73.75319,"(40.712055, -73.75319)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Alcohol Involvement,,,4495771,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/17/2022,8:00,BROOKLYN,11203,40.653683,-73.93255,"(40.653683, -73.93255)",LINDEN BOULEVARD,EAST 48 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4495201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +01/16/2022,18:25,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4495871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,19:47,MANHATTAN,10025,40.799473,-73.96751,"(40.799473, -73.96751)",,,220 WEST 104 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4495481,Taxi,Van,,, +01/17/2022,0:52,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495112,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,7:55,BROOKLYN,11229,40.611477,-73.94883,"(40.611477, -73.94883)",AVENUE P,BEDFORD AVENUE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495574,Bus,,,, +01/17/2022,2:00,BROOKLYN,11222,40.721413,-73.94475,"(40.721413, -73.94475)",,,558 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495656,Van,,,, +01/17/2022,18:06,,,40.684082,-73.90864,"(40.684082, -73.90864)",CHAUNCEY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495391,Sedan,,,, +04/09/2022,3:00,,,40.671864,-73.87834,"(40.671864, -73.87834)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517982,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,3:30,BROOKLYN,11230,40.620872,-73.964455,"(40.620872, -73.964455)",,,1508 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495444,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +01/17/2022,0:30,BROOKLYN,11217,40.688038,-73.98367,"(40.688038, -73.98367)",,,252 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4495603,Sedan,,,, +01/17/2022,14:43,,,40.760994,-73.82443,"(40.760994, -73.82443)",ROOSEVELT AVENUE,,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495330,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/17/2022,6:35,MANHATTAN,10029,40.789948,-73.94293,"(40.789948, -73.94293)",EAST 105 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4495173,,,,, +01/13/2022,20:26,BROOKLYN,11212,40.66064,-73.92615,"(40.66064, -73.92615)",,,185 EAST 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495737,Sedan,,,, +01/16/2022,0:37,,,40.843777,-73.90947,"(40.843777, -73.90947)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495839,Sedan,Sedan,,, +01/17/2022,14:30,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495371,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,2:44,MANHATTAN,10019,40.761257,-73.97592,"(40.761257, -73.97592)",,,4 WEST 54 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4495360,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,18:15,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4437233,Tractor Truck Diesel,Sedan,,, +01/13/2022,22:09,,,0,0,"(0.0, 0.0)",STORY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495760,Sedan,,,, +01/17/2022,12:57,QUEENS,11368,40.74612,-73.86824,"(40.74612, -73.86824)",,,42-16 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4495437,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,22:46,QUEENS,11377,40.75529,-73.90847,"(40.75529, -73.90847)",51 STREET,32 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4435246,,,,, +07/13/2021,19:05,,,40.75005,-73.80634,"(40.75005, -73.80634)",OAK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436631,Sedan,Bike,,, +07/13/2021,17:10,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436778,E-Scooter,,,, +07/13/2021,11:24,BROOKLYN,11234,40.62364,-73.92622,"(40.62364, -73.92622)",,,5103 AVENUE L,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436676,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,6:22,QUEENS,11370,40.758392,-73.89158,"(40.758392, -73.89158)",,,31-02 76 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437163,Sedan,Sedan,,, +07/13/2021,20:00,,,40.531563,-74.205284,"(40.531563, -74.205284)",KOREAN WAR VETS PARKWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4437132,Motorcycle,Sedan,Motorcycle,, +07/13/2021,0:38,,,40.734398,-73.9223,"(40.734398, -73.9223)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436328,Sedan,,,, +07/13/2021,22:00,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436656,Sedan,Sedan,,, +07/13/2021,16:24,BROOKLYN,11230,40.61128,-73.96064,"(40.61128, -73.96064)",,,1561 EAST 13 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436875,Box Truck,,,, +07/13/2021,9:45,BROOKLYN,11217,40.68085,-73.97746,"(40.68085, -73.97746)",SAINT MARKS PLACE,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436706,Bike,Sedan,,, +07/03/2021,1:49,,,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437095,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,20:13,MANHATTAN,10027,40.814186,-73.95087,"(40.814186, -73.95087)",SAINT NICHOLAS TERRACE,WEST 130 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437227,PK,,,, +07/13/2021,6:30,,,40.62278,-74.165085,"(40.62278, -74.165085)",,,483 LISK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436425,Sedan,Sedan,,, +07/13/2021,5:02,,,40.832027,-73.93528,"(40.832027, -73.93528)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Accelerator Defective,Failure to Keep Right,,,,4436714,White Van,Sedan,,, +04/09/2022,18:05,BRONX,10461,40.85219,-73.84367,"(40.85219, -73.84367)",,,1945 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4517779,Sedan,,,, +07/07/2021,23:05,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",JUNCTION BOULEVARD,34 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437197,E-Bike,,,, +07/13/2021,17:50,QUEENS,11102,40.76615,-73.919785,"(40.76615, -73.919785)",33 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437046,Van,Sedan,,, +07/13/2021,10:50,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4436450,Sedan,Sedan,,, +07/13/2021,18:30,QUEENS,11417,40.672455,-73.846176,"(40.672455, -73.846176)",SPRITZ ROAD,WHITELAW STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436605,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,0:19,QUEENS,11373,40.73482,-73.86686,"(40.73482, -73.86686)",94 STREET,59 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4436783,Sedan,Sedan,,, +07/13/2021,14:06,BROOKLYN,11208,40.673985,-73.86967,"(40.673985, -73.86967)",,,564 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436833,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,11:49,MANHATTAN,10001,40.75458,-73.99915,"(40.75458, -73.99915)",10 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4436894,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/13/2021,23:02,BROOKLYN,11209,40.62204,-74.02574,"(40.62204, -74.02574)",,,8501 5 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4436962,Sedan,,,, +07/13/2021,9:00,MANHATTAN,10001,40.755016,-73.99809,"(40.755016, -73.99809)",,,459 WEST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436539,Sedan,,,, +07/13/2021,0:58,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436504,Sedan,,,, +07/12/2021,16:30,BROOKLYN,11236,40.643143,-73.901474,"(40.643143, -73.901474)",FLATLANDS AVENUE,EAST 96 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437293,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/26/2021,12:44,MANHATTAN,10019,40.766712,-73.98289,"(40.766712, -73.98289)",WEST 57 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4437333,Bike,,,, +07/13/2021,10:03,,,40.89675,-73.85988,"(40.89675, -73.85988)",EAST 236 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:25,QUEENS,11377,40.735092,-73.90748,"(40.735092, -73.90748)",52 AVENUE,58 LANE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436505,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/03/2021,11:00,QUEENS,11370,40.76092,-73.8892,"(40.76092, -73.8892)",30 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437176,Taxi,,,, +07/13/2021,6:02,MANHATTAN,10029,40.788532,-73.95322,"(40.788532, -73.95322)",MADISON AVENUE,EAST 98 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436587,Sedan,Sedan,,, +07/13/2021,1:19,BROOKLYN,11206,40.70884,-73.93534,"(40.70884, -73.93534)",,,315 MESEROLE STREET,1,0,1,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4436463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,16:40,,,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,6:56,MANHATTAN,10001,40.747276,-73.989624,"(40.747276, -73.989624)",WEST 30 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436696,Tanker,,,, +07/13/2021,6:33,MANHATTAN,10035,40.803753,-73.93999,"(40.803753, -73.93999)",EAST 123 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436728,Station Wagon/Sport Utility Vehicle,Bike,,, +07/13/2021,17:55,BROOKLYN,11224,40.57545,-73.99539,"(40.57545, -73.99539)",WEST 29 STREET,MERMAID AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4437020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,16:07,BROOKLYN,11208,40.68086,-73.864685,"(40.68086, -73.864685)",MC KINLEY AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436840,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,19:00,BROOKLYN,11238,40.683823,-73.965996,"(40.683823, -73.965996)",,,476 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436979,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,11:14,MANHATTAN,10128,40.782097,-73.95159,"(40.782097, -73.95159)",,,1623 3 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4436493,Sedan,,,, +07/13/2021,9:43,QUEENS,11374,40.73565,-73.856155,"(40.73565, -73.856155)",102 STREET,62 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436558,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,21:10,BROOKLYN,11237,40.709698,-73.92161,"(40.709698, -73.92161)",,,1293 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4436662,Sedan,,,, +07/11/2021,16:45,,,40.69624,-73.973465,"(40.69624, -73.973465)",PARK AVENUE,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,,,4437249,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/13/2021,18:02,BROOKLYN,11207,,,,ALABAMA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436832,Bike,,,, +07/13/2021,16:30,STATEN ISLAND,10309,40.521072,-74.23614,"(40.521072, -74.23614)",,,245 RICHMOND VALLEY ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,12:00,QUEENS,11377,40.747986,-73.91194,"(40.747986, -73.91194)",52 STREET,39 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437295,Pick-up Truck,,,, +07/13/2021,15:55,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BARRETTO STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436608,Bus,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,18:15,QUEENS,11377,40.749462,-73.901665,"(40.749462, -73.901665)",61 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436644,Sedan,Tow Truck / Wrecker,,, +07/09/2021,5:00,,,40.76989,-73.880455,"(40.76989, -73.880455)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4437183,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,12:50,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4436509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +06/17/2021,14:20,QUEENS,11434,40.683655,-73.78266,"(40.683655, -73.78266)",BREWER BOULEVARD,118 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4437093,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/13/2021,13:11,BROOKLYN,11218,,,,,,3525 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436864,Sedan,E-Bike,,, +07/13/2021,11:30,BROOKLYN,11204,40.621147,-73.99515,"(40.621147, -73.99515)",,,1615 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,22:40,QUEENS,11103,40.760563,-73.9177,"(40.760563, -73.9177)",,,31-25 STEINWAY STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4437071,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/12/2021,19:00,QUEENS,11434,40.664352,-73.76532,"(40.664352, -73.76532)",,,145-56 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437168,Sedan,,,, +07/13/2021,6:40,QUEENS,11691,40.595787,-73.76761,"(40.595787, -73.76761)",ROCKAWAY FREEWAY,BEACH 35 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436684,Bus,Van,,, +07/13/2021,5:47,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4437146,Sedan,Sedan,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle +07/13/2021,14:00,,,40.69614,-73.92726,"(40.69614, -73.92726)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436718,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,16:00,,,40.689583,-73.972145,"(40.689583, -73.972145)",DE KALB AVENUE,,,1,0,0,0,0,0,1,0,Eating or Drinking,Unspecified,,,,4436651,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,8:40,QUEENS,11375,40.71032,-73.84998,"(40.71032, -73.84998)",METROPOLITAN AVENUE,71 ROAD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436813,Sedan,E-Scooter,,, +07/12/2021,17:00,,,40.63851,-74.021225,"(40.63851, -74.021225)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437232,Sedan,Bus,,, +07/13/2021,17:00,,,40.649982,-73.91183,"(40.649982, -73.91183)",EAST 94 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436620,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,14:55,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,40 AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4437099,Sedan,Taxi,Sedan,, +07/12/2021,9:25,,,40.82532,-73.94574,"(40.82532, -73.94574)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4437316,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,16:34,BRONX,10456,40.83091,-73.92047,"(40.83091, -73.92047)",EAST 165 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,17:10,QUEENS,11411,40.693314,-73.74009,"(40.693314, -73.74009)",118 AVENUE,221 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436658,Sedan,Sedan,,, +07/13/2021,19:20,BRONX,10475,40.868465,-73.82058,"(40.868465, -73.82058)",,,2240 BARTOW AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436746,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,19:55,,,40.811478,-73.950226,"(40.811478, -73.950226)",WEST 127 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4436707,Sedan,Bike,,, +07/10/2021,1:00,,,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437152,Sedan,,,, +07/13/2021,0:00,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4436394,Sedan,,,, +05/23/2021,12:56,,,40.670746,-73.950424,"(40.670746, -73.950424)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4437190,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,16:30,BROOKLYN,11214,40.610256,-74.00315,"(40.610256, -74.00315)",,,8306 17 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436638,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:55,MANHATTAN,10019,40.763737,-73.98175,"(40.763737, -73.98175)",,,205 WEST 54 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437061,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2021,11:31,MANHATTAN,10028,40.779495,-73.95559,"(40.779495, -73.95559)",EAST 86 STREET,LEXINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437312,Station Wagon/Sport Utility Vehicle,Bus,,, +07/10/2021,3:59,BRONX,10453,40.84942,-73.91113,"(40.84942, -73.91113)",JEROME AVENUE,MOUNT HOPE PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437130,,,,, +07/13/2021,7:07,,,40.825935,-73.83637,"(40.825935, -73.83637)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436427,Station Wagon/Sport Utility Vehicle,Van,,, +07/11/2021,21:19,QUEENS,11372,40.749844,-73.883385,"(40.749844, -73.883385)",83 STREET,37 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437162,Sedan,Sedan,,, +07/13/2021,8:55,BROOKLYN,11226,40.643272,-73.94847,"(40.643272, -73.94847)",,,3023 CLARENDON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436619,Sedan,,,, +07/13/2021,0:01,MANHATTAN,10032,40.840744,-73.94286,"(40.840744, -73.94286)",,,161 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436708,Sedan,Sedan,,, +07/13/2021,21:45,BROOKLYN,11236,40.637657,-73.89687,"(40.637657, -73.89687)",EAST 95 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437203,Sedan,,,, +07/13/2021,15:46,,,40.667915,-73.996414,"(40.667915, -73.996414)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436652,Sedan,Sedan,,, +07/13/2021,13:22,QUEENS,11377,40.76034,-73.90241,"(40.76034, -73.90241)",,,60-01 27 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437044,Flat Bed,Pick-up Truck,,, +07/08/2021,9:43,QUEENS,11106,40.763874,-73.93087,"(40.763874, -73.93087)",23 STREET,33 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437098,Station Wagon/Sport Utility Vehicle,Bike,,, +07/13/2021,9:10,BRONX,10460,40.833736,-73.88881,"(40.833736, -73.88881)",HOE AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436677,Sedan,Tractor Truck Diesel,,, +07/13/2021,22:00,MANHATTAN,10032,40.838364,-73.9438,"(40.838364, -73.9438)",,,97 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437335,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,20:00,QUEENS,11369,40.7602,-73.87006,"(40.7602, -73.87006)",,,31-34 99 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437181,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,11:36,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,10:23,,,40.875328,-73.869225,"(40.875328, -73.869225)",MAGENTA STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436531,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/13/2021,20:40,BROOKLYN,11208,40.683067,-73.87098,"(40.683067, -73.87098)",,,273 HEMLOCK STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4436843,Sedan,Sedan,,, +07/13/2021,7:50,BROOKLYN,11230,40.62704,-73.96663,"(40.62704, -73.96663)",EAST 10 STREET,AVENUE I,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437323,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,17:00,QUEENS,11354,40.763264,-73.82796,"(40.763264, -73.82796)",,,36-28 UNION STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436632,Pick-up Truck,Sedan,,, +07/13/2021,17:30,,,40.7266,-73.789116,"(40.7266, -73.789116)",SURREY PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436987,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,20:48,,,40.62435,-74.13927,"(40.62435, -74.13927)",,,1520 FOREST AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,1:30,BROOKLYN,11207,40.667248,-73.88427,"(40.667248, -73.88427)",,,639 WARWICK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436500,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,12:30,BROOKLYN,11205,40.694363,-73.958,"(40.694363, -73.958)",FRANKLIN AVENUE,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436866,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,12:00,,,40.823708,-73.879,"(40.823708, -73.879)",BRUCKNER BOULEVARD,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436518,Station Wagon/Sport Utility Vehicle,Pickup with mounted Camper,,, +07/13/2021,11:38,BROOKLYN,11211,40.7145,-73.961296,"(40.7145, -73.961296)",GRAND STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436661,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,19:00,MANHATTAN,10036,40.763996,-73.99601,"(40.763996, -73.99601)",11 AVENUE,WEST 47 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4437115,Sedan,Bike,,, +07/09/2021,22:15,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437167,Sedan,,,, +07/13/2021,20:00,BROOKLYN,11214,40.583656,-73.98656,"(40.583656, -73.98656)",CROPSEY AVENUE,BAY 52 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,15:28,QUEENS,11355,40.757645,-73.82266,"(40.757645, -73.82266)",,,41-73 BOWNE STREET,0,0,0,0,0,0,0,0,Animals Action,,,,,4436627,Bus,,,, +07/13/2021,20:48,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436669,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/12/2021,14:05,BROOKLYN,11201,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,BOERUM PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437264,Tractor Truck Diesel,Sedan,,, +07/06/2021,16:45,QUEENS,11368,40.750164,-73.86067,"(40.750164, -73.86067)",,,104-23 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4437107,Sedan,E-Bike,,, +07/13/2021,18:29,,,40.84479,-73.91587,"(40.84479, -73.91587)",WEST MOUNT EDEN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436839,Sedan,moped,,, +07/13/2021,1:35,BROOKLYN,11221,40.692482,-73.9203,"(40.692482, -73.9203)",LINDEN STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436446,E-Bike,Sedan,,, +07/13/2021,17:30,STATEN ISLAND,10304,40.6222,-74.07302,"(40.6222, -74.07302)",,,14 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436971,Sedan,,,, +07/13/2021,0:35,MANHATTAN,10029,40.795536,-73.9481,"(40.795536, -73.9481)",MADISON AVENUE,EAST 109 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436591,Sedan,,,, +07/13/2021,14:35,BROOKLYN,11226,40.635246,-73.96235,"(40.635246, -73.96235)",,,613 EAST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436874,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,11:30,QUEENS,11377,40.73827,-73.89228,"(40.73827, -73.89228)",72 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436781,Sedan,,,, +07/13/2021,15:55,,,40.846867,-73.90876,"(40.846867, -73.90876)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436694,Van,Motorscooter,,, +07/12/2021,19:00,QUEENS,11372,40.748962,-73.89176,"(40.748962, -73.89176)",74 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437175,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,17:40,BROOKLYN,11211,40.716385,-73.95064,"(40.716385, -73.95064)",,,235 MEEKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436725,Ambulance,,,, +07/04/2021,20:30,QUEENS,11369,40.765945,-73.87684,"(40.765945, -73.87684)",93 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4437108,Sedan,,,, +07/13/2021,15:25,QUEENS,11101,40.73911,-73.943,"(40.73911, -73.943)",BORDEN AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436643,Dump,Flat Bed,,, +07/13/2021,10:30,BROOKLYN,11203,40.66014,-73.931274,"(40.66014, -73.931274)",,,535 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436989,,,,, +01/17/2022,22:26,BROOKLYN,11234,40.628567,-73.92401,"(40.628567, -73.92401)",EAST 54 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,14:00,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4436668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/13/2021,10:00,,,40.683437,-73.92917,"(40.683437, -73.92917)",REID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436888,Sedan,Sedan,Sedan,, +07/13/2021,2:13,STATEN ISLAND,10306,40.55885,-74.13576,"(40.55885, -74.13576)",AMBOY ROAD,SPRATT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436455,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,13:35,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,1,0,0,0,0,0,,,,,,4436739,,,,, +07/13/2021,0:45,,,40.68651,-73.954544,"(40.68651, -73.954544)",QUINCY STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4436537,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck +07/13/2021,12:55,QUEENS,11412,40.6934,-73.75602,"(40.6934, -73.75602)",196 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4436749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,11:34,BROOKLYN,11209,40.6277,-74.02933,"(40.6277, -74.02933)",,,8005 3 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,12:04,BRONX,10452,40.840977,-73.916016,"(40.840977, -73.916016)",TOWNSEND AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436738,Bus,Sedan,,, +07/08/2021,14:30,BROOKLYN,11220,40.645336,-74.02287,"(40.645336, -74.02287)",,,140 58 STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4437143,Sedan,,,, +07/13/2021,17:45,BRONX,10459,40.820473,-73.9013,"(40.820473, -73.9013)",EAST 161 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436683,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,23:05,BRONX,10456,40.83599,-73.914825,"(40.83599, -73.914825)",EAST 169 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4437153,Sedan,,,, +07/13/2021,4:55,,,40.812622,-73.92934,"(40.812622, -73.92934)",PARK AVENUE,EAST 138 STREET,,1,0,1,0,0,0,0,0,,,,,,4436398,E-Scooter,,,, +07/07/2021,9:30,,,40.669712,-73.94774,"(40.669712, -73.94774)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Aggressive Driving/Road Rage,,,,4437193,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,20:57,BROOKLYN,11206,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4437053,Sedan,Bus,,, +07/10/2021,12:08,BROOKLYN,11218,40.647724,-73.97634,"(40.647724, -73.97634)",CATON AVENUE,EAST 5 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437326,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,14:07,BROOKLYN,11210,40.61628,-73.95356,"(40.61628, -73.95356)",AVENUE N,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436870,Sedan,Sedan,,, +07/13/2021,13:25,MANHATTAN,10032,40.8375,-73.939514,"(40.8375, -73.939514)",,,470 WEST 164 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:30,BRONX,10473,40.81957,-73.86254,"(40.81957, -73.86254)",,,700 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436522,Sedan,,,, +07/13/2021,17:05,BRONX,10452,40.841618,-73.91448,"(40.841618, -73.91448)",WALTON AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436828,Sedan,Sedan,,, +07/03/2021,12:38,,,40.73567,-73.924736,"(40.73567, -73.924736)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437188,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,16:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518065,Sedan,Sedan,,, +07/13/2021,13:05,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",LEXINGTON AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436545,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,14:46,MANHATTAN,10007,40.712723,-74.009674,"(40.712723, -74.009674)",CHURCH STREET,BARCLAY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436849,Sedan,Sedan,,, +07/13/2021,0:00,BRONX,10463,40.88285,-73.90358,"(40.88285, -73.90358)",,,3450 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437231,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,9:31,,,40.76407,-73.80914,"(40.76407, -73.80914)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436626,Sedan,,,, +07/13/2021,17:53,,,40.696297,-73.874756,"(40.696297, -73.874756)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436912,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,16:25,,,40.82138,-73.95414,"(40.82138, -73.95414)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437321,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:30,,,,,,PARK CIRCLE,PROSPECT PARK SOUTHWEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436478,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/13/2021,14:00,BROOKLYN,11207,40.66259,-73.8935,"(40.66259, -73.8935)",,,596 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436829,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,21:35,QUEENS,11435,40.696766,-73.80534,"(40.696766, -73.80534)",,,97-15 SUTPHIN BOULEVARD,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4436900,Sedan,,,, +07/13/2021,22:13,MANHATTAN,10002,40.714054,-73.9902,"(40.714054, -73.9902)",EAST BROADWAY,RUTGERS STREET,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436982,Sedan,E-Bike,,, +07/13/2021,3:00,QUEENS,11416,40.68704,-73.84301,"(40.68704, -73.84301)",100 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436501,Sedan,,,, +07/13/2021,6:20,MANHATTAN,10022,40.757008,-73.96388,"(40.757008, -73.96388)",EAST 55 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436544,Sedan,Sedan,,, +07/09/2021,2:00,,,40.783867,-73.85497,"(40.783867, -73.85497)",15 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4437282,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,18:00,,,40.607964,-74.162346,"(40.607964, -74.162346)",,,1650 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,16:00,,,40.699276,-73.988594,"(40.699276, -73.988594)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436610,Station Wagon/Sport Utility Vehicle,UNK,,, +07/13/2021,22:45,,,40.838467,-73.94375,"(40.838467, -73.94375)",FORT WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4436709,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/13/2021,15:10,MANHATTAN,10036,40.763653,-73.999054,"(40.763653, -73.999054)",12 AVENUE,WEST 45 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437051,Sedan,Sedan,,, +07/13/2021,22:00,BRONX,10457,40.85117,-73.888504,"(40.85117, -73.888504)",,,650 EAST 182 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4437180,Sedan,Sedan,,, +07/13/2021,12:30,QUEENS,11422,40.65781,-73.74507,"(40.65781, -73.74507)",,,146-26 BROOKVILLE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436507,Dump,Sedan,,, +07/13/2021,7:23,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Reaction to Uninvolved Vehicle,,,,4436635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,6:05,,,40.605633,-74.07416,"(40.605633, -74.07416)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4436454,Sedan,Station Wagon/Sport Utility Vehicle,4 dr sedan,, +07/13/2021,11:56,,,40.885098,-73.90066,"(40.885098, -73.90066)",BROADWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4436598,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/13/2021,9:00,QUEENS,11368,40.74894,-73.85448,"(40.74894, -73.85448)",111 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,0:00,BRONX,10460,40.84064,-73.87516,"(40.84064, -73.87516)",,,433 BRONX PARK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4436576,Pick-up Truck,Sedan,,, +07/11/2021,13:55,MANHATTAN,10030,40.819958,-73.944016,"(40.819958, -73.944016)",,,2640 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437140,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,18:10,QUEENS,11385,40.7008,-73.907364,"(40.7008, -73.907364)",CYPRESS AVENUE,MADISON STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4436915,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:25,BROOKLYN,11220,40.639866,-74.01836,"(40.639866, -74.01836)",,,417 61 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436653,Sedan,Box Truck,,, +07/13/2021,19:18,,,,,,LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436842,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,22:30,STATEN ISLAND,10310,40.63506,-74.11459,"(40.63506, -74.11459)",,,233 NORTH BURGHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436970,Sedan,,,, +07/13/2021,20:36,BRONX,10469,40.87119,-73.85381,"(40.87119, -73.85381)",,,1132 BURKE AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4436886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:20,BROOKLYN,11238,40.676907,-73.97228,"(40.676907, -73.97228)",,,322 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436701,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,4:59,QUEENS,11103,40.768143,-73.90661,"(40.768143, -73.90661)",,,44-14 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4437097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/11/2021,21:00,MANHATTAN,10029,40.795586,-73.950165,"(40.795586, -73.950165)",5 AVENUE,EAST 108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437211,Sedan,Open Body,,, +07/13/2021,21:00,,,,,,11 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436648,Sedan,Box Truck,,, +06/27/2021,16:00,,,40.605618,-73.75666,"(40.605618, -73.75666)",MOTT AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437119,Station Wagon/Sport Utility Vehicle,Bike,,, +07/13/2021,17:30,,,40.74478,-73.93262,"(40.74478, -73.93262)",QUEENS BOULEVARD,32 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436642,Sedan,Box Truck,,, +07/13/2021,3:00,,,40.72662,-73.757324,"(40.72662, -73.757324)",CLEARVIEW EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,,,,4436428,Taxi,Tractor Truck Diesel,,, +07/09/2021,21:35,,,40.836937,-73.927124,"(40.836937, -73.927124)",OGDEN AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437154,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/13/2021,12:40,,,40.68347,-73.99973,"(40.68347, -73.99973)",UNION STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436532,Sedan,Sedan,,, +07/13/2021,22:46,MANHATTAN,10021,40.768753,-73.9553,"(40.768753, -73.9553)",,,1374 1 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4436670,AMBULANCE,AMBULAMCE,,, +07/12/2021,9:49,BRONX,10451,40.816917,-73.92093,"(40.816917, -73.92093)",,,303 EAST 149 STREET,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4437337,Sedan,Sedan,Sedan,, +07/10/2021,21:35,QUEENS,11694,40.580315,-73.835434,"(40.580315, -73.835434)",BEACH 114 STREET,ROCKAWAY BEACH BOULEVARD,,2,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4437204,Bike,E-Bike,,, +07/13/2021,10:40,MANHATTAN,10036,40.76079,-73.98719,"(40.76079, -73.98719)",,,782 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437065,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:27,BRONX,10460,40.83285,-73.886246,"(40.83285, -73.886246)",EAST 172 STREET,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436678,Sedan,Box Truck,,, +07/13/2021,19:45,,,40.772045,-73.87623,"(40.772045, -73.87623)",94 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4436780,Sedan,Sedan,,, +07/12/2021,17:50,BRONX,10456,40.83534,-73.90464,"(40.83534, -73.90464)",WASHINGTON AVENUE,EAST 170 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4437082,Sedan,SCOOTER,,, +07/13/2021,13:17,BROOKLYN,11206,40.70205,-73.95256,"(40.70205, -73.95256)",MARCY AVENUE,MIDDLETON STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4436660,Sedan,Sedan,,, +07/13/2021,13:53,QUEENS,11432,40.714115,-73.78751,"(40.714115, -73.78751)",,,175-59 DALNY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436628,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,0:15,BRONX,10452,40.837383,-73.92746,"(40.837383, -73.92746)",,,171 WEST 167 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437149,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,12:25,QUEENS,11365,40.733932,-73.80743,"(40.733932, -73.80743)",,,65-94 162 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437165,Sedan,Bike,,, +07/13/2021,21:02,BRONX,10456,40.83495,-73.90815,"(40.83495, -73.90815)",,,1275 WEBSTER AVENUE,1,0,1,0,0,0,0,0,,,,,,4436835,,,,, +07/13/2021,9:30,BRONX,10465,40.816772,-73.809135,"(40.816772, -73.809135)",HARDING AVENUE,PENNYFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437023,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,12:30,BRONX,10454,40.808006,-73.91434,"(40.808006, -73.91434)",EAST 141 STREET,BEEKMAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436688,Bike,Bike,,, +07/13/2021,5:50,QUEENS,11434,40.686745,-73.78138,"(40.686745, -73.78138)",166 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436741,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,6:15,,,40.892235,-73.88481,"(40.892235, -73.88481)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437230,Sedan,Sedan,,, +07/11/2021,13:09,BROOKLYN,11219,40.63406,-74.00411,"(40.63406, -74.00411)",58 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437105,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,12:30,BRONX,10466,40.884136,-73.84202,"(40.884136, -73.84202)",,,1881 SCHIEFELIN PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4436751,Sedan,,,, +07/13/2021,10:06,BROOKLYN,11219,40.629696,-73.99995,"(40.629696, -73.99995)",,,1231 60 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437327,Sedan,Sedan,,, +06/27/2021,20:32,STATEN ISLAND,10312,40.529373,-74.161354,"(40.529373, -74.161354)",ARDEN AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437112,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,1:00,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4436412,Sedan,,,, +07/12/2021,7:00,BRONX,10459,40.819183,-73.89494,"(40.819183, -73.89494)",,,893 TIFFANY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437194,Sedan,,,, +07/09/2021,21:00,,,40.841618,-73.91448,"(40.841618, -73.91448)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437150,Sedan,,,, +07/13/2021,22:45,,,40.732937,-73.920395,"(40.732937, -73.920395)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436646,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/13/2021,15:00,BROOKLYN,11230,40.630512,-73.957306,"(40.630512, -73.957306)",OCEAN AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436872,Sedan,E-Scooter,,, +07/13/2021,9:37,,,,,,,,566 GULF AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436527,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,19:30,BRONX,10474,40.81247,-73.88884,"(40.81247, -73.88884)",,,621 BARRETTO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436850,Sedan,UNK,,, +07/11/2021,17:00,MANHATTAN,10017,40.750603,-73.974045,"(40.750603, -73.974045)",,,205 EAST 42 STREET,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4437174,Taxi,Taxi,,, +07/13/2021,13:15,QUEENS,11106,40.757393,-73.93547,"(40.757393, -73.93547)",24 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437066,Sedan,USPS TRUCK,,, +07/13/2021,17:45,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436700,Sedan,,,, +07/13/2021,20:45,BROOKLYN,11237,40.697823,-73.90803,"(40.697823, -73.90803)",CORNELIA STREET,WYCKOFF AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436723,Sedan,,,, +07/13/2021,19:20,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WILLIAMSBURG STREET EAST,WYTHE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4436990,Bike,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,3:40,,,40.848736,-73.93234,"(40.848736, -73.93234)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436794,Taxi,Taxi,,, +07/13/2021,3:58,,,40.583466,-73.988304,"(40.583466, -73.988304)",WEST 22 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4436564,Box Truck,,,, +07/13/2021,15:30,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436624,Dump,,,, +07/07/2021,10:57,BROOKLYN,11230,40.62399,-73.97587,"(40.62399, -73.97587)",,,1211 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437319,Bus,AERIAL LIF,,, +07/13/2021,10:02,MANHATTAN,10030,40.817844,-73.94185,"(40.817844, -73.94185)",7 AVENUE,WEST 139 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436489,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,16:05,,,40.593163,-73.9086,"(40.593163, -73.9086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437234,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:45,BROOKLYN,11207,40.657314,-73.88864,"(40.657314, -73.88864)",NEW JERSEY AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436830,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:10,MANHATTAN,10128,40.77918,-73.9508,"(40.77918, -73.9508)",2 AVENUE,EAST 88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436667,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/10/2021,17:15,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437187,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:10,STATEN ISLAND,10310,40.63474,-74.11118,"(40.63474, -74.11118)",CASTLETON AVENUE,OAKLAND AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436577,Sedan,E-Bike,,, +07/13/2021,10:10,QUEENS,11354,40.76565,-73.837425,"(40.76565, -73.837425)",COLLEGE POINT BOULEVARD,33 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4436629,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/13/2021,7:40,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437028,Sedan,Sedan,,, +07/13/2021,16:50,,,,,,MANOR ROAD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Turning Improperly,,,,4436904,Motorcycle,Pick-up Truck,,, +07/13/2021,22:50,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Turning Improperly,,,,4436924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,5:05,BROOKLYN,11211,40.714737,-73.95276,"(40.714737, -73.95276)",MEEKER AVENUE,NORTH 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436474,Sedan,,,, +07/13/2021,0:01,,,40.840424,-73.92239,"(40.840424, -73.92239)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4436736,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/13/2021,11:49,QUEENS,11428,40.722527,-73.74548,"(40.722527, -73.74548)",215 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436513,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,19:00,BROOKLYN,11208,40.666973,-73.85711,"(40.666973, -73.85711)",,,1413 STANLEY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436834,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:26,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436451,Van,,,, +07/13/2021,7:32,BROOKLYN,11214,40.61157,-73.994606,"(40.61157, -73.994606)",76 STREET,19 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436636,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/13/2021,19:55,QUEENS,11435,40.688675,-73.80128,"(40.688675, -73.80128)",INWOOD STREET,FERNDALE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,23:45,BRONX,10475,40.883553,-73.83476,"(40.883553, -73.83476)",BOSTON ROAD,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4436786,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,2:20,MANHATTAN,10016,40.746918,-73.97124,"(40.746918, -73.97124)",1 AVENUE,EAST 39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436541,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,20:38,QUEENS,11369,40.760307,-73.87582,"(40.760307, -73.87582)",93 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437164,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,13:34,QUEENS,11372,40.753326,-73.8718,"(40.753326, -73.8718)",JUNCTION BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4437125,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/13/2021,22:14,BRONX,10467,40.874138,-73.877525,"(40.874138, -73.877525)",EAST 205 STREET,PERRY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436672,Sedan,,,, +07/13/2021,23:27,QUEENS,11375,40.70969,-73.84603,"(40.70969, -73.84603)",METROPOLITAN AVENUE,ASCAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4436655,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,6:40,,,40.768684,-73.90668,"(40.768684, -73.90668)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437047,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,6:00,QUEENS,11103,40.754555,-73.91151,"(40.754555, -73.91151)",NEWTOWN ROAD,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437096,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,18:38,,,40.813114,-73.93147,"(40.813114, -73.93147)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4436680,Box Truck,Sedan,,, +07/13/2021,10:20,MANHATTAN,10013,40.719456,-73.99441,"(40.719456, -73.99441)",BOWERY,BROOME STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436534,Chassis Cab,Sedan,,, +01/17/2022,7:00,,,40.88622,-73.86711,"(40.88622, -73.86711)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4495541,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +07/13/2021,11:00,BROOKLYN,11207,40.671204,-73.90051,"(40.671204, -73.90051)",PITKIN AVENUE,HINSDALE STREET,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436506,Sedan,Bike,,, +07/12/2021,4:30,QUEENS,11372,40.747204,-73.88811,"(40.747204, -73.88811)",,,77-11 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4437177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,18:40,BROOKLYN,11207,40.658333,-73.88938,"(40.658333, -73.88938)",,,867 NEW JERSEY AVENUE,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4436841,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,15:10,BROOKLYN,11228,40.62311,-74.010475,"(40.62311, -74.010475)",,,1126 74 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4436967,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/13/2021,0:45,STATEN ISLAND,10301,40.63313,-74.075356,"(40.63313, -74.075356)",BAY STREET,GRANT STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436601,Sedan,Sedan,,, +07/13/2021,1:00,,,40.665154,-73.82774,"(40.665154, -73.82774)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4436703,Station Wagon/Sport Utility Vehicle,Dump,,, +07/13/2021,13:30,BRONX,10459,40.82364,-73.89391,"(40.82364, -73.89391)",FOX STREET,WESTCHESTER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436881,E-Bike,,,, +07/13/2021,14:30,BROOKLYN,11211,40.71636,-73.94013,"(40.71636, -73.94013)",KINGSLAND AVENUE,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436779,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,1:44,QUEENS,11421,40.691315,-73.86722,"(40.691315, -73.86722)",JAMAICA AVENUE,DEXTER COURT,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436503,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/13/2021,9:50,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4436438,Sedan,,,, +07/13/2021,16:30,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",QUEENS BOULEVARD,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436641,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,18:30,,,40.611877,-74.13816,"(40.611877, -74.13816)",,,2248 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4437302,Pick-up Truck,,,, +07/13/2021,19:45,,,40.6796,-73.80349,"(40.6796, -73.80349)",VANWYCK EXPRESSWAY,116 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436712,Station Wagon/Sport Utility Vehicle,Bike,,, +07/13/2021,18:19,BRONX,10455,40.8168,-73.89705,"(40.8168, -73.89705)",LONGWOOD AVENUE,FOX STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436609,E-Bike,Sedan,,, +07/13/2021,9:49,BROOKLYN,11230,40.61276,-73.96093,"(40.61276, -73.96093)",AVENUE O,EAST 13 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4437133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/09/2021,0:20,,,40.766685,-73.892136,"(40.766685, -73.892136)",77 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437160,Station Wagon/Sport Utility Vehicle,Bus,,, +07/13/2021,10:19,QUEENS,11106,40.75685,-73.93035,"(40.75685, -73.93035)",,,30-16 36 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437064,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,3:38,,,40.63237,-73.88319,"(40.63237, -73.88319)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4437205,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,15:07,QUEENS,11354,40.76079,-73.83075,"(40.76079, -73.83075)",MAIN STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436649,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2021,11:00,QUEENS,11106,40.76118,-73.935,"(40.76118, -73.935)",,,21-09 35 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437086,Dent and S,,,, +07/12/2021,7:00,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437283,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,15:40,BROOKLYN,11207,40.67315,-73.896194,"(40.67315, -73.896194)",PENNSYLVANIA AVENUE,GLENMORE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436831,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,0:05,,,40.7615,-73.997826,"(40.7615, -73.997826)",11 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437331,Sedan,Sedan,,, +07/13/2021,10:30,BROOKLYN,11249,40.720524,-73.96206,"(40.720524, -73.96206)",,,34 NORTH 7 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436529,Sedan,Box Truck,,, +07/13/2021,16:20,BROOKLYN,11210,40.623554,-73.953995,"(40.623554, -73.953995)",EAST 22 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436873,Ambulance,Station Wagon/Sport Utility Vehicle,Sedan,, +07/08/2021,19:00,QUEENS,11372,40.751884,-73.88376,"(40.751884, -73.88376)",35 AVENUE,83 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437185,Sedan,,,, +07/13/2021,20:20,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436801,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,10:25,,,40.74576,-73.92581,"(40.74576, -73.92581)",39 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4436512,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,15:30,QUEENS,11694,40.577534,-73.849915,"(40.577534, -73.849915)",NEWPORT AVENUE,BEACH 130 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,12:00,MANHATTAN,10002,40.711666,-73.9854,"(40.711666, -73.9854)",,,340 CHERRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436980,Sedan,,,, +07/13/2021,19:42,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",RUTLAND ROAD,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436931,Station Wagon/Sport Utility Vehicle,FDNY ENGIN,,, +07/13/2021,12:00,BRONX,10472,40.825462,-73.882744,"(40.825462, -73.882744)",,,1430 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436491,Sedan,Sedan,,, +07/08/2021,21:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437208,Sedan,Sedan,,, +07/13/2021,6:34,,,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4437344,Bike,UNK,,, +07/13/2021,18:50,QUEENS,11103,40.76398,-73.910515,"(40.76398, -73.910515)",44 STREET,28 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437070,Taxi,Pick-up Truck,,, +04/07/2022,14:47,,,,,,VANDERBILT AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4518182,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,16:55,,,40.60952,-73.74591,"(40.60952, -73.74591)",CENTRAL AVENUE,SAGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436686,Pick-up Truck,Sedan,,, +07/09/2021,22:45,,,40.870415,-73.91515,"(40.870415, -73.91515)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437147,Bike,Sedan,,, +07/12/2021,17:50,,,40.83955,-73.91595,"(40.83955, -73.91595)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437151,Sedan,Sedan,,, +07/13/2021,9:35,BROOKLYN,11235,40.579403,-73.94099,"(40.579403, -73.94099)",,,156 LANGHAM STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436421,Sedan,Sedan,,, +07/13/2021,17:20,BROOKLYN,11204,40.629757,-73.97926,"(40.629757, -73.97926)",,,4616 18 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4437318,E-Bike,,,, +07/13/2021,8:40,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436735,Taxi,Taxi,,, +07/13/2021,16:40,BRONX,10458,40.856243,-73.895584,"(40.856243, -73.895584)",WEBSTER AVENUE,EAST 183 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436766,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,5:30,QUEENS,11357,40.779728,-73.825676,"(40.779728, -73.825676)",WHITESTONE EXPRESSWAY,22 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495406,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,21:30,QUEENS,11101,40.744404,-73.94032,"(40.744404, -73.94032)",27 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436645,Sedan,,,, +07/13/2021,22:30,BROOKLYN,11206,40.706627,-73.94269,"(40.706627, -73.94269)",,,168 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436993,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,23:40,QUEENS,11429,40.711525,-73.73442,"(40.711525, -73.73442)",,,220-15 104 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4436664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,0:00,,,,,,SHORE PARKWAY,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437236,Sedan,Sedan,,, +07/13/2021,7:00,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436744,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,9:50,BRONX,10457,40.84904,-73.884346,"(40.84904, -73.884346)",,,747 EAST 182 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4436561,Sedan,,,, +07/13/2021,2:13,MANHATTAN,10014,40.731064,-74.00142,"(40.731064, -74.00142)",WEST 3 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4436465,Refrigerated Van,Garbage or Refuse,,, +07/13/2021,0:00,BRONX,10474,40.82102,-73.88725,"(40.82102, -73.88725)",BRYANT AVENUE,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436856,Tractor Truck Diesel,Sedan,,, +07/13/2021,7:15,BROOKLYN,11234,40.639053,-73.9213,"(40.639053, -73.9213)",FOSTER AVENUE,EAST 58 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437033,Sedan,Sedan,,, +07/13/2021,19:21,,,40.78593,-73.84777,"(40.78593, -73.84777)",14 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4436630,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/13/2021,10:45,,,40.636803,-73.939415,"(40.636803, -73.939415)",FARRAGUT ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436621,Sedan,Sedan,,, +07/13/2021,9:40,BROOKLYN,11214,40.610256,-74.00396,"(40.610256, -74.00396)",,,1691 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436906,Sedan,,,, +06/30/2021,18:32,MANHATTAN,10027,40.8087,-73.95226,"(40.8087, -73.95226)",,,2271 8 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4437228,Sedan,Motorcycle,,, +07/13/2021,11:42,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4436659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,14:02,BRONX,10458,40.85876,-73.89736,"(40.85876, -73.89736)",EAST 184 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436698,ambulance,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,9:35,QUEENS,11693,40.60234,-73.82017,"(40.60234, -73.82017)",WEST 15 ROAD,CROSS BAY BOULEVARD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4437169,E-Bike,Bike,,, +07/13/2021,2:00,,,40.565235,-74.181404,"(40.565235, -74.181404)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4437113,Sedan,Bus,,, +07/13/2021,23:04,BROOKLYN,11207,40.689365,-73.9058,"(40.689365, -73.9058)",COOPER STREET,WILSON AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unsafe Speed,,,,4436722,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,8:20,BROOKLYN,11217,40.687504,-73.97995,"(40.687504, -73.97995)",,,41 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436650,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/25/2021,20:15,,,40.772697,-73.93269,"(40.772697, -73.93269)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437092,Sedan,,,, +07/09/2021,20:00,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,HOYT AVENUE SOUTH,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437101,Sedan,,,, +07/09/2021,22:45,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437129,Sedan,Sedan,,, +07/13/2021,19:05,BROOKLYN,11234,40.609947,-73.92227,"(40.609947, -73.92227)",,,5100 AVENUE U,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436675,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,23:20,BRONX,10457,40.848,-73.89243,"(40.848, -73.89243)",EAST 179 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495471,Van,,,, +04/09/2022,13:50,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517628,Sedan,Sedan,,, +07/05/2022,16:35,,,40.68662,-73.82319,"(40.68662, -73.82319)",120 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544140,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,4:13,,,40.8442,-73.93566,"(40.8442, -73.93566)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4517603,Sedan,,,, +04/09/2022,3:15,,,40.79337,-73.93274,"(40.79337, -73.93274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4517373,Sedan,,,, +04/08/2022,18:47,BRONX,10457,40.847366,-73.899506,"(40.847366, -73.899506)",EAST TREMONT AVENUE,PARK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4518112,Sedan,Motorcycle,,, +04/09/2022,15:44,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4517475,Sedan,Sedan,,, +04/09/2022,17:45,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517698,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,6:25,BRONX,10455,40.816555,-73.91677,"(40.816555, -73.91677)",3 AVENUE,EAST 150 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518153,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/09/2022,14:04,MANHATTAN,10035,40.802494,-73.936714,"(40.802494, -73.936714)",,,2262 3 AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4518044,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,15:05,BRONX,10470,40.89608,-73.86692,"(40.89608, -73.86692)",EAST 233 STREET,KATONAH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517724,Sedan,Sedan,,, +04/09/2022,1:00,QUEENS,11435,40.688198,-73.800575,"(40.688198, -73.800575)",GLASSBORO AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517891,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,11:00,STATEN ISLAND,10314,40.612785,-74.12681,"(40.612785, -74.12681)",,,1869 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518056,Sedan,Sedan,,, +04/09/2022,21:54,,,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4517664,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,10:45,BROOKLYN,11212,40.67045,-73.911896,"(40.67045, -73.911896)",,,55 CHESTER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517577,Sedan,Sedan,,, +04/09/2022,21:50,,,40.856503,-73.93277,"(40.856503, -73.93277)",BROADWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518107,Sedan,Sedan,,, +04/09/2022,22:45,MANHATTAN,10022,40.762962,-73.97188,"(40.762962, -73.97188)",EAST 58 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518124,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,12:49,MANHATTAN,10016,40.746403,-73.97973,"(40.746403, -73.97973)",LEXINGTON AVENUE,EAST 34 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4517956,Bus,Bike,,, +04/08/2022,20:35,,,40.649384,-73.86995,"(40.649384, -73.86995)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4518020,Sedan,Sedan,Sedan,, +04/09/2022,0:54,BROOKLYN,11221,40.69043,-73.93653,"(40.69043, -73.93653)",,,183 LEWIS AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517750,E-Bike,Sedan,,, +04/09/2022,3:42,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4517858,Station Wagon/Sport Utility Vehicle,Taxi,Taxi,Sedan, +04/05/2022,22:50,,,40.684452,-73.80662,"(40.684452, -73.80662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518210,Sedan,,,, +04/08/2022,9:00,STATEN ISLAND,10304,40.61577,-74.08252,"(40.61577, -74.08252)",ROFF STREET,BOWEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518076,Sedan,,,, +04/09/2022,11:32,BROOKLYN,11222,40.72377,-73.9508,"(40.72377, -73.9508)",MANHATTAN AVENUE,NASSAU AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517868,Sedan,E-Bike,,, +04/05/2022,18:30,QUEENS,11418,40.695023,-73.84645,"(40.695023, -73.84645)",JAMAICA AVENUE,101 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Following Too Closely,,,,4518079,Bike,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,20:21,,,,,,CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4471550,Sedan,Box Truck,,, +04/09/2022,3:10,,,40.75369,-73.74445,"(40.75369, -73.74445)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517362,Sedan,Sedan,,, +04/07/2022,22:10,,,40.830402,-73.837654,"(40.830402, -73.837654)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4518146,Bus,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,14:00,BRONX,10455,40.812813,-73.91595,"(40.812813, -73.91595)",,,454 EAST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518108,Box Truck,Sedan,,, +04/09/2022,22:30,MANHATTAN,10016,40.7412,-73.98095,"(40.7412, -73.98095)",,,203 EAST 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517627,Sedan,,,, +04/09/2022,11:00,QUEENS,11418,40.701218,-73.81622,"(40.701218, -73.81622)",,,89-00 VANWYCK EXPRESSWAY,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4517975,Pick-up Truck,Sedan,,, +04/09/2022,16:40,,,,,,HORACE HARDING EXPRESSWAY,RODMAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517463,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,1:00,MANHATTAN,10011,40.73632,-73.99439,"(40.73632, -73.99439)",,,14 WEST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517966,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,20:56,,,40.73043,-74.00013,"(40.73043, -74.00013)",WEST 3 STREET,,,1,0,0,0,0,0,0,0,Passenger Distraction,Passing Too Closely,,,,4518131,Pick-up Truck,E-Bike,,, +04/04/2022,14:57,MANHATTAN,10029,40.793606,-73.94952,"(40.793606, -73.94952)",EAST 106 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518045,Sedan,Sedan,,, +04/09/2022,20:30,MANHATTAN,10002,40.71543,-73.98984,"(40.71543, -73.98984)",,,19 ESSEX STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517773,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/09/2022,18:20,QUEENS,11417,40.678787,-73.84426,"(40.678787, -73.84426)",CROSS BAY BOULEVARD,107 AVENUE,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4517822,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/17/2022,18:24,BROOKLYN,11207,40.665714,-73.898445,"(40.665714, -73.898445)",,,545 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518008,Sedan,FIRETRUCK,,, +04/09/2022,19:13,BRONX,10456,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517915,Sedan,Sedan,,, +04/09/2022,4:20,BROOKLYN,11237,40.709225,-73.923225,"(40.709225, -73.923225)",,,599 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517505,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/09/2022,12:00,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",PITKIN AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4517570,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/26/2022,20:06,BROOKLYN,11222,40.724636,-73.94818,"(40.724636, -73.94818)",MC GUINNESS BOULEVARD,NASSAU AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518247,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,9:15,QUEENS,11361,40.757706,-73.76385,"(40.757706, -73.76385)",217 STREET,47 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4517424,Sedan,Sedan,,, +04/08/2022,12:37,MANHATTAN,10039,40.822308,-73.93859,"(40.822308, -73.93859)",WEST 146 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4518223,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,15:38,,,40.62555,-74.14051,"(40.62555, -74.14051)",DECKER AVENUE,SMITH PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4517941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,18:04,,,40.677048,-73.9387,"(40.677048, -73.9387)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4517682,Sedan,Sedan,,, +04/08/2022,17:00,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518141,Bus,Bus,Sedan,, +04/09/2022,23:10,QUEENS,11361,40.760284,-73.769356,"(40.760284, -73.769356)",NORTHERN BOULEVARD,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,5:55,,,40.752556,-73.92972,"(40.752556, -73.92972)",,,34 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517580,Sedan,Sedan,,, +04/09/2022,0:33,,,40.679485,-73.897026,"(40.679485, -73.897026)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518021,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,23:20,BROOKLYN,11207,40.656944,-73.88082,"(40.656944, -73.88082)",SCHENCK AVENUE,COZINE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4517988,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:18,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4517996,Sedan,Sedan,,, +04/09/2022,0:05,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,,,,4517420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,1:15,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495363,Taxi,,,, +10/27/2021,14:21,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471591,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,13:00,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4517848,Sedan,Sedan,,, +04/09/2022,15:40,BROOKLYN,11209,40.623154,-74.02985,"(40.623154, -74.02985)",,,316 86 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4517449,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,16:00,BROOKLYN,11203,40.657337,-73.94663,"(40.657337, -73.94663)",,,403 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517955,Sedan,,,, +04/09/2022,2:55,QUEENS,11436,40.67794,-73.8023,"(40.67794, -73.8023)",139 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4517386,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/09/2022,11:45,MANHATTAN,10005,40.708958,-74.01014,"(40.708958, -74.01014)",,,70 LIBERTY STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4517595,Sedan,Bike,,, +04/09/2022,0:00,BROOKLYN,11207,40.661194,-73.8797,"(40.661194, -73.8797)",,,829 ASHFORD STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4517985,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,2:40,,,40.692463,-73.81082,"(40.692463, -73.81082)",VAN WYCK EXPWY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,,,4517900,Sedan,Sedan,Garbage or Refuse,, +04/09/2022,19:00,BROOKLYN,11211,40.712666,-73.94105,"(40.712666, -73.94105)",BUSHWICK AVENUE,POWERS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517497,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,15:05,MANHATTAN,10019,40.76735,-73.98436,"(40.76735, -73.98436)",,,353 WEST 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518119,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/08/2022,21:35,QUEENS,11423,40.730194,-73.77758,"(40.730194, -73.77758)",193 STREET,UNION TURNPIKE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518091,Sedan,,,, +04/09/2022,6:30,QUEENS,11412,40.69733,-73.76202,"(40.69733, -73.76202)",114 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517702,Sedan,Sedan,,, +04/09/2022,6:44,BROOKLYN,11207,40.68917,-73.9095,"(40.68917, -73.9095)",CENTRAL AVENUE,COVERT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4517655,Sedan,Sedan,,, +04/06/2022,12:30,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",2 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518032,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/07/2022,15:30,STATEN ISLAND,10305,40.60272,-74.06551,"(40.60272, -74.06551)",LILY POND AVENUE,STATEN ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,1:35,BRONX,10466,40.88179,-73.847534,"(40.88179, -73.847534)",,,1188 EAST 223 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517728,Sedan,Sedan,Sedan,, +04/09/2022,13:10,STATEN ISLAND,10308,40.549484,-74.15148,"(40.549484, -74.15148)",,,4045 AMBOY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517487,Sedan,Sedan,,, +07/03/2022,8:00,STATEN ISLAND,10304,40.61208,-74.08527,"(40.61208, -74.08527)",TARGEE STREET,MARY STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4544152,Sedan,,,, +04/09/2022,23:23,,,40.739418,-74.00387,"(40.739418, -74.00387)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518134,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,7:20,BRONX,10465,40.819893,-73.81517,"(40.819893, -73.81517)",,,305 HOLLYWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517962,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,1:25,BROOKLYN,11207,40.67421,-73.89646,"(40.67421, -73.89646)",,,141 PENNSYLVANIA AVENUE,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4518000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/09/2022,16:00,BRONX,10462,40.85586,-73.86476,"(40.85586, -73.86476)",,,2180 WALLACE AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,14:08,BROOKLYN,11209,40.635372,-74.029144,"(40.635372, -74.029144)",OVINGTON AVENUE,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517783,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,5:18,,,40.678303,-73.87289,"(40.678303, -73.87289)",CONDUIT BOULEVARD,EUCLID AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4517981,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/09/2022,20:11,BRONX,10451,40.828594,-73.92173,"(40.828594, -73.92173)",EAST 163 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517885,E-Scooter,,,, +04/09/2022,14:22,,,40.788692,-73.93787,"(40.788692, -73.93787)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unsafe Speed,,,4517435,Sedan,Sedan,Sedan,, +04/09/2022,5:52,MANHATTAN,10029,40.78781,-73.94174,"(40.78781, -73.94174)",,,345 EAST 103 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517375,Sedan,,,, +04/09/2022,5:05,,,40.845436,-73.92857,"(40.845436, -73.92857)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4517602,Sedan,,,, +04/09/2022,18:46,,,40.81728,-73.938545,"(40.81728, -73.938545)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518233,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,14:45,,,40.698387,-73.774895,"(40.698387, -73.774895)",179 STREET,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4517805,Sedan,,,, +04/09/2022,19:15,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517544,Sedan,,,, +04/03/2022,15:50,MANHATTAN,10034,40.867207,-73.92254,"(40.867207, -73.92254)",,,4892 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518098,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,10:20,BRONX,10459,40.820026,-73.90299,"(40.820026, -73.90299)",EAST 160 STREET,UNION AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4518113,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,9:10,MANHATTAN,10035,40.80208,-73.937,"(40.80208, -73.937)",,,2253 3 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4518043,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,18:15,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518164,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,20:00,MANHATTAN,10001,40.751404,-74.00518,"(40.751404, -74.00518)",WEST 27 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517647,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,15:40,,,40.869656,-73.898926,"(40.869656, -73.898926)",WEST 195 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518228,,,,, +04/09/2022,10:45,,,40.640434,-74.131935,"(40.640434, -74.131935)",,,2049 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4517943,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,17:30,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,MAPLE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517464,Sedan,Sedan,Sedan,, +04/09/2022,3:11,MANHATTAN,10014,40.73814,-74.00816,"(40.73814, -74.00816)",WASHINGTON STREET,JANE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4517977,Sedan,,,, +04/08/2022,15:20,,,40.842335,-73.91619,"(40.842335, -73.91619)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518140,Sedan,,,, +04/09/2022,16:15,QUEENS,11429,40.71172,-73.729706,"(40.71172, -73.729706)",,,223-36 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,21:35,STATEN ISLAND,10309,40.53851,-74.21881,"(40.53851, -74.21881)",,,36 SHARROTTS LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517448,Sedan,,,, +04/09/2022,11:46,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",BUSHWICK AVENUE,GRAND STREET,,1,0,0,0,1,0,0,0,Oversized Vehicle,Obstruction/Debris,,,,4517514,Bus,Bike,,, +04/09/2022,14:40,BROOKLYN,11207,40.65911,-73.89922,"(40.65911, -73.89922)",NEW LOTS AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518004,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,7:00,BROOKLYN,11208,40.686665,-73.87768,"(40.686665, -73.87768)",,,31 RICHMOND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517997,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,8:30,QUEENS,11361,40.753315,-73.777405,"(40.753315, -73.777405)",203 STREET,ROCKY HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,19:00,BROOKLYN,11231,40.678936,-74.001915,"(40.678936, -74.001915)",HENRY STREET,4 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518174,Sedan,,,, +03/31/2022,16:03,BROOKLYN,11213,40.675644,-73.94161,"(40.675644, -73.94161)",KINGSTON AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4518048,Sedan,Sedan,Sedan,Sedan, +04/09/2022,15:00,BROOKLYN,11233,40.68392,-73.91741,"(40.68392, -73.91741)",,,82 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4517743,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,9:00,BROOKLYN,11223,40.60115,-73.9675,"(40.60115, -73.9675)",,,2021 EAST 5 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518106,Station Wagon/Sport Utility Vehicle,,,, +03/20/2022,2:34,BRONX,10454,40.805557,-73.912415,"(40.805557, -73.912415)",JACKSON AVENUE,EAST 139 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4518109,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,5:13,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4517366,Sedan,,,, +07/14/2021,17:00,,,,,,CROSS ISLAND PARKWAY,160 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4436952,Sedan,,,, +01/18/2022,22:45,,,,,,,,81 WEST DRIVE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4495608,E-Scooter,,,, +04/06/2022,9:17,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4518246,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/09/2022,0:00,MANHATTAN,10025,40.792362,-73.96418,"(40.792362, -73.96418)",WEST 97 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517844,Sedan,Sedan,,, +04/09/2022,16:37,QUEENS,11412,40.705418,-73.78019,"(40.705418, -73.78019)",,,180-02 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4517876,Sedan,,,, +04/08/2022,15:00,BRONX,10454,40.811844,-73.92382,"(40.811844, -73.92382)",,,322 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518147,Sedan,,,, +04/09/2022,17:30,BROOKLYN,11226,40.65249,-73.95267,"(40.65249, -73.95267)",ROGERS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517625,Sedan,,,, +04/04/2022,21:15,BROOKLYN,11207,40.650276,-73.89097,"(40.650276, -73.89097)",,,11114 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518010,Sedan,,,, +04/09/2022,6:30,QUEENS,11355,40.749676,-73.826744,"(40.749676, -73.826744)",PECK AVENUE,138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517680,Station Wagon/Sport Utility Vehicle,,,, +03/22/2022,16:17,MANHATTAN,10030,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4518224,Station Wagon/Sport Utility Vehicle,Bus,,, +04/09/2022,8:30,BRONX,10453,40.855785,-73.90558,"(40.855785, -73.90558)",JEROME AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517860,Box Truck,,,, +04/09/2022,4:50,BROOKLYN,11211,40.714592,-73.93877,"(40.714592, -73.93877)",METROPOLITAN AVENUE,OLIVE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,8:00,,,40.678703,-73.781746,"(40.678703, -73.781746)",122 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4517403,Sedan,Pick-up Truck,,, +04/08/2022,15:50,,,40.798306,-73.93683,"(40.798306, -73.93683)",2 AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4517967,Moped,,,, +04/09/2022,21:10,BROOKLYN,11208,40.672886,-73.87117,"(40.672886, -73.87117)",,,1269 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518022,Sedan,Sedan,,, +04/09/2022,2:08,,,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4517581,Taxi,Sedan,,, +04/09/2022,4:10,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517569,Sedan,,,, +04/08/2022,9:34,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,0:00,QUEENS,11368,40.750515,-73.85866,"(40.750515, -73.85866)",,,40-21 108 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,,,,4518207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,18:49,,,40.687782,-73.91907,"(40.687782, -73.91907)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517662,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,23:45,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517763,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,10:35,BROOKLYN,11234,40.58635,-73.89665,"(40.58635, -73.89665)",,,3159 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,2:50,MANHATTAN,10034,40.864918,-73.91907,"(40.864918, -73.91907)",,,154 POST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518080,Sedan,Sedan,,, +04/09/2022,6:00,QUEENS,11420,40.67978,-73.823875,"(40.67978, -73.823875)",111 AVENUE,116 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517821,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,9:45,QUEENS,11378,,,,,,58-75 Queens midtown expressway,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517650,Pick-up Truck,Pick-up Truck,,, +04/07/2022,17:20,,,40.7923,-73.95046,"(40.7923, -73.95046)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4518060,Sedan,Bus,,, +04/07/2022,11:15,STATEN ISLAND,10310,40.629684,-74.11123,"(40.629684, -74.11123)",FOREST AVENUE,BEMENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518075,Sedan,,,, +04/09/2022,4:00,QUEENS,11435,40.711037,-73.8132,"(40.711037, -73.8132)",,,143-25 84 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518092,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,1:50,,,40.701008,-73.86818,"(40.701008, -73.86818)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4517710,Sedan,Sedan,,, +07/05/2022,8:35,BROOKLYN,11201,40.700703,-73.98868,"(40.700703, -73.98868)",ADAMS STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4543637,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2022,3:50,BROOKLYN,11228,40.626156,-74.0159,"(40.626156, -74.0159)",,,7415 FORT HAMILTON PARKWAY,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543581,E-Bike,,,, +06/19/2022,23:12,MANHATTAN,10034,40.867283,-73.91685,"(40.867283, -73.91685)",,,3961 10 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4544322,Sedan,Sedan,,, +06/30/2022,13:11,STATEN ISLAND,10309,40.53495,-74.2359,"(40.53495, -74.2359)",,,4401 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544346,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/01/2022,20:30,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544381,Sedan,,,, +07/05/2022,15:00,,,40.588,-73.80729,"(40.588, -73.80729)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543619,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,0:45,,,40.85809,-73.901924,"(40.85809, -73.901924)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,Unspecified,,,4543584,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/29/2022,19:15,QUEENS,11433,40.6957,-73.7933,"(40.6957, -73.7933)",108 AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4544272,Sedan,Sedan,,, +07/05/2022,6:18,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543665,Tractor Truck Diesel,Sedan,,, +07/05/2022,9:10,MANHATTAN,10017,40.75791,-73.97766,"(40.75791, -73.97766)",EAST 49 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4543534,Station Wagon/Sport Utility Vehicle,PK,,, +05/27/2022,8:00,,,,,,,,40 KIMBERLY LANE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4544151,Sedan,,,, +07/05/2022,14:17,BROOKLYN,11226,40.650387,-73.95872,"(40.650387, -73.95872)",CHURCH AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4543873,Sedan,,,, +07/05/2022,12:30,,,40.692123,-73.98904,"(40.692123, -73.98904)",JORALEMON STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4543938,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,0:00,BROOKLYN,11206,40.70191,-73.94231,"(40.70191, -73.94231)",,,34 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544438,Sedan,PK,,, +07/05/2022,5:50,STATEN ISLAND,10305,40.611805,-74.064445,"(40.611805, -74.064445)",BAY STREET,NEW LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544166,Sedan,Sedan,,, +07/05/2022,0:35,BRONX,10468,40.86937,-73.90021,"(40.86937, -73.90021)",,,2714 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544101,Sedan,,,, +06/28/2022,5:54,STATEN ISLAND,10310,40.634445,-74.1185,"(40.634445, -74.1185)",CASTLETON AVENUE,WEST STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544156,Sedan,,,, +07/05/2022,1:33,BROOKLYN,11229,40.60306,-73.94916,"(40.60306, -73.94916)",,,1955 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543557,Station Wagon/Sport Utility Vehicle,PK,,, +07/05/2022,15:40,QUEENS,11422,40.656487,-73.73419,"(40.656487, -73.73419)",WELLER LANE,147 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4543653,Sedan,Sedan,,, +07/05/2022,2:20,,,40.65444,-73.89081,"(40.65444, -73.89081)",WORTMAN AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543781,Motorcycle,Sedan,,, +06/14/2022,18:00,BROOKLYN,11203,40.6416,-73.93802,"(40.6416, -73.93802)",ALBANY AVENUE,AVENUE D,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544315,Bike,,,, +06/29/2022,13:30,BROOKLYN,11206,40.7086,-73.93786,"(40.7086, -73.93786)",,,259 MESEROLE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544400,Refrigerated Van,,,, +07/05/2022,6:50,,,,,,LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544084,Sedan,Pick-up Truck,,, +07/05/2022,0:45,,,,,,MADISON STREET,madison and rutgers street,,0,0,0,0,0,0,0,0,,,,,,4544223,,,,, +06/21/2022,17:45,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4544323,Sedan,,,, +07/05/2022,19:35,,,,,,METROPOLITAN AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4543672,Station Wagon/Sport Utility Vehicle,Moped,,, +07/02/2022,18:20,STATEN ISLAND,10312,40.52756,-74.16569,"(40.52756, -74.16569)",HYLAN BOULEVARD,PEARE PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544365,Sedan,,,, +07/05/2022,8:25,BRONX,10451,40.815903,-73.92848,"(40.815903, -73.92848)",,,383 GRAND CONCOURSE,1,0,1,0,0,0,0,0,Unspecified,,,,,4543733,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,4:30,MANHATTAN,10018,40.755325,-73.99307,"(40.755325, -73.99307)",,,351 WEST 38 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437078,Ambulance,Sedan,,, +10/27/2021,8:40,MANHATTAN,10019,,,,57th street,9th ave,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471778,Flat Bed,Sedan,,, +04/10/2022,4:00,,,,,,HENRY HUDSON PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517605,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,11:10,QUEENS,11355,40.75413,-73.809555,"(40.75413, -73.809555)",46 AVENUE,157 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,8:30,QUEENS,11426,40.746044,-73.727516,"(40.746044, -73.727516)",,,74-10 COMMONWEALTH BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544203,Station Wagon/Sport Utility Vehicle,Bus,,, +07/02/2022,2:20,STATEN ISLAND,10309,40.52983,-74.19623,"(40.52983, -74.19623)",,,5610 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544126,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,7:29,QUEENS,11354,40.762566,-73.818596,"(40.762566, -73.818596)",ROOSEVELT AVENUE,147 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4544145,Sedan,Bike,,, +07/03/2022,5:19,,,40.7067,-73.95292,"(40.7067, -73.95292)",HEWES STREET,BROADWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4544392,Sedan,Sedan,Sedan,, +06/29/2022,14:30,QUEENS,11427,40.720577,-73.75578,"(40.720577, -73.75578)",,,89-14 209 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544198,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2022,2:31,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",WATTS STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544264,Sedan,Sedan,,, +07/05/2022,17:17,MANHATTAN,10029,40.787216,-73.94787,"(40.787216, -73.94787)",,,1786 3 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543848,Sedan,,,, +07/05/2022,11:00,,,,,,GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544243,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2022,1:35,BROOKLYN,11214,40.58481,-73.98301,"(40.58481, -73.98301)",STILLWELL AVENUE,AVENUE Z,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543925,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,22:00,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543745,Sedan,E-Bike,,, +07/05/2022,14:38,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544054,Sedan,Sedan,,, +06/28/2022,11:45,BROOKLYN,11203,40.649868,-73.93409,"(40.649868, -73.93409)",EAST 46 STREET,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544311,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,20:50,,,40.626328,-74.13132,"(40.626328, -74.13132)",JEWETT AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543676,Sedan,Sedan,,, +05/20/2022,18:16,,,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4544209,Sedan,Sedan,,, +07/04/2022,20:30,BRONX,10467,40.877697,-73.86762,"(40.877697, -73.86762)",,,641 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544327,Sedan,,,, +07/05/2022,11:38,,,40.633347,-73.99387,"(40.633347, -73.99387)",13 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543765,Sedan,Sedan,,, +07/05/2022,12:49,,,,,,PROSPECT EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4543976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2022,10:25,STATEN ISLAND,10301,40.63714,-74.08088,"(40.63714, -74.08088)",VICTORY BOULEVARD,FREMONT STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4543891,Sedan,Sedan,,, +07/05/2022,10:05,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4544249,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/05/2022,1:30,,,40.66305,-73.848564,"(40.66305, -73.848564)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543414,Sedan,,,, +07/05/2022,8:33,BROOKLYN,11222,40.723896,-73.94232,"(40.723896, -73.94232)",,,124 MONITOR STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544287,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,16:16,STATEN ISLAND,10312,40.55039,-74.183044,"(40.55039, -74.183044)",,,534 CARLTON BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544358,Sedan,,,, +07/05/2022,17:05,QUEENS,11385,40.703247,-73.85465,"(40.703247, -73.85465)",,,90-22 83 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543721,Van,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,3:15,,,40.551723,-74.170006,"(40.551723, -74.170006)",WAINWRIGHT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544353,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/25/2022,11:25,MANHATTAN,10033,40.84984,-73.934975,"(40.84984, -73.934975)",WADSWORTH AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544326,Taxi,Sedan,,, +07/14/2021,15:30,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437117,Sedan,,,, +07/05/2022,23:00,,,,,,Belt Parkway,Erskine Avenue,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544232,Sedan,,,, +07/05/2022,2:30,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4543478,Sedan,Sedan,Sedan,Sedan, +06/30/2022,4:25,,,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4544255,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,13:05,,,40.625786,-74.15491,"(40.625786, -74.15491)",FOREST AVENUE,VANNAME AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Drugs (illegal),Unspecified,,,4543675,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/05/2022,12:56,,,40.739143,-73.90109,"(40.739143, -73.90109)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4543892,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/01/2022,0:45,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544295,Sedan,,,, +07/05/2022,14:45,BROOKLYN,11237,40.698486,-73.92144,"(40.698486, -73.92144)",MYRTLE AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543755,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,13:31,MANHATTAN,10010,40.742123,-73.99097,"(40.742123, -73.99097)",,,40 WEST 23 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4544175,Bike,,,, +06/22/2022,17:25,,,40.73941,-74.0054,"(40.73941, -74.0054)",HUDSON STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544208,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,9:47,,,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543834,,,,, +07/03/2022,12:39,BROOKLYN,11211,40.713097,-73.95947,"(40.713097, -73.95947)",,,207 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544416,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,17:05,STATEN ISLAND,10309,40.543606,-74.21557,"(40.543606, -74.21557)",WINANT AVENUE,MASON BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544347,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,11:00,BROOKLYN,11201,40.701588,-73.98863,"(40.701588, -73.98863)",ADAMS STREET,YORK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544280,Box Truck,Sedan,,, +07/05/2022,0:00,,,40.77895,-73.92079,"(40.77895, -73.92079)",23 ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543590,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,12:30,BROOKLYN,11210,40.63533,-73.95791,"(40.63533, -73.95791)",,,2021 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543626,Sedan,,,, +07/05/2022,23:00,QUEENS,11691,40.595734,-73.77478,"(40.595734, -73.77478)",BEACH CHANNEL DRIVE,BEACH 43 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544118,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/23/2022,17:08,BRONX,10470,40.897255,-73.86268,"(40.897255, -73.86268)",,,4249 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4544335,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/05/2022,13:00,,,40.68662,-73.82319,"(40.68662, -73.82319)",120 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543705,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/03/2022,1:13,,,40.63777,-74.07602,"(40.63777, -74.07602)",BAY STREET,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544161,Sedan,,,, +06/21/2022,8:11,,,40.831264,-73.87885,"(40.831264, -73.87885)",BOYNTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544301,Sedan,,,, +07/05/2022,0:27,BROOKLYN,11228,40.603607,-74.01763,"(40.603607, -74.01763)",15 AVENUE,SHORE PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543566,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,5:36,BRONX,10466,40.893803,-73.850136,"(40.893803, -73.850136)",,,1762 BUSSING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4544007,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/03/2022,18:05,QUEENS,11354,40.759567,-73.83015,"(40.759567, -73.83015)",MAIN STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544127,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,13:10,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4543607,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,19:30,,,40.74478,-73.93262,"(40.74478, -73.93262)",QUEENS BOULEVARD,32 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543768,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2022,14:29,,,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544225,Sedan,,,, +06/20/2022,1:45,MANHATTAN,10022,40.756763,-73.96716,"(40.756763, -73.96716)",2 AVENUE,EAST 53 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inexperience,,,,4544262,Sedan,Sedan,,, +04/10/2022,23:00,QUEENS,11368,40.742416,-73.85516,"(40.742416, -73.85516)",,,106-08 53 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517809,Sedan,,,, +11/11/2021,14:48,,,40.815205,-73.947495,"(40.815205, -73.947495)",WEST 133 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4480477,Sedan,Bike,,, +12/29/2021,22:15,,,40.755116,-74.00248,"(40.755116, -74.00248)",11 AVENUE,,,1,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4490905,E-Scooter,,,, +01/15/2022,14:25,QUEENS,11422,40.66521,-73.73288,"(40.66521, -73.73288)",139 AVENUE,246 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4494715,Sedan,Sedan,,, +01/17/2022,14:17,BRONX,10459,40.819714,-73.894066,"(40.819714, -73.894066)",,,901 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496129,Sedan,,,, +01/14/2022,15:58,QUEENS,11102,40.766716,-73.928566,"(40.766716, -73.928566)",23 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4496101,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,14:45,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496103,Sedan,Box Truck,,, +01/18/2022,17:30,BRONX,10455,40.808437,-73.904724,"(40.808437, -73.904724)",BRUCKNER BOULEVARD,EAST 144 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496105,Station Wagon/Sport Utility Vehicle,,,, +01/04/2022,8:46,QUEENS,11370,40.766605,-73.891174,"(40.766605, -73.891174)",78 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4496098,Sedan,Bus,,, +01/18/2022,15:48,BROOKLYN,11231,40.681934,-74.00572,"(40.681934, -74.00572)",HAMILTON AVENUE,WOODHULL STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496108,Sedan,Sedan,,, +01/14/2022,15:15,QUEENS,11103,40.76084,-73.91968,"(40.76084, -73.91968)",,,31-53 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496100,Sedan,,,, +01/13/2022,23:15,MANHATTAN,10029,40.790253,-73.94564,"(40.790253, -73.94564)",EAST 104 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496114,Sedan,Bike,,, +07/05/2022,10:50,,,40.626316,-74.179726,"(40.626316, -74.179726)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544167,Tractor Truck Diesel,Sedan,,, +07/05/2022,20:30,QUEENS,11365,40.734795,-73.80115,"(40.734795, -73.80115)",67 AVENUE,168 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4543684,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,15:00,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543787,Sedan,,,, +07/03/2022,3:52,QUEENS,11412,40.691418,-73.75795,"(40.691418, -73.75795)",193 STREET,118 AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4544406,Taxi,,,, +06/29/2022,11:40,BROOKLYN,11206,40.708168,-73.95067,"(40.708168, -73.95067)",UNION AVENUE,SCHOLES STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4544399,Bike,Sedan,,, +02/21/2022,22:30,QUEENS,11104,40.74576,-73.92581,"(40.74576, -73.92581)",39 STREET,43 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504619,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,15:30,QUEENS,11373,40.741295,-73.88029,"(40.741295, -73.88029)",WHITNEY AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504639,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,23:40,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504631,Sedan,Sedan,,, +02/21/2022,23:04,QUEENS,11101,40.7493,-73.949425,"(40.7493, -73.949425)",44 ROAD,11 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504620,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,8:33,QUEENS,11373,40.742,-73.87864,"(40.742, -73.87864)",,,86-11 WHITNEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504638,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,12:52,BROOKLYN,11236,40.641033,-73.913155,"(40.641033, -73.913155)",EAST 85 STREET,FARRAGUT ROAD,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4504630,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,16:34,BROOKLYN,11203,40.644955,-73.92113,"(40.644955, -73.92113)",,,5814 CLARENDON ROAD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4544316,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/29/2022,16:30,MANHATTAN,10002,40.716183,-73.98075,"(40.716183, -73.98075)",DELANCEY STREET,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Accelerator Defective,Unspecified,,,,4544219,Bike,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,16:28,QUEENS,11377,40.743454,-73.91484,"(40.743454, -73.91484)",50 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544368,Sedan,Sedan,,, +07/05/2022,11:50,,,40.59582,-73.77233,"(40.59582, -73.77233)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544094,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,5:44,QUEENS,11375,40.72569,-73.85463,"(40.72569, -73.85463)",BOOTH STREET,67 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4543490,Sedan,,,, +01/18/2022,15:00,BROOKLYN,11229,40.597965,-73.944534,"(40.597965, -73.944534)",,,2620 AVENUE V,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495617,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,21:48,BRONX,10472,40.831062,-73.86619,"(40.831062, -73.86619)",,,1237 BEACH AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495765,Sedan,Sedan,,, +01/18/2022,13:50,,,40.602528,-74.015114,"(40.602528, -74.015114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495669,Bus,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,8:15,BROOKLYN,11228,40.625454,-74.01283,"(40.625454, -74.01283)",73 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495643,Pick-up Truck,Pick-up Truck,,, +01/14/2022,21:45,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4495928,Sedan,Sedan,Sedan,, +01/18/2022,19:38,MANHATTAN,10035,40.79573,-73.93267,"(40.79573, -73.93267)",PLEASANT AVENUE,EAST 117 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495702,Sedan,Sedan,,, +01/18/2022,1:05,BRONX,10475,40.878468,-73.83305,"(40.878468, -73.83305)",BAYCHESTER AVENUE,DARROW PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495419,Sedan,Sedan,,, +01/18/2022,11:06,,,40.738758,-74.00811,"(40.738758, -74.00811)",HORATIO STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495710,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,17:09,BROOKLYN,11226,40.648533,-73.95827,"(40.648533, -73.95827)",FLATBUSH AVENUE,SNYDER AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4496057,Station Wagon/Sport Utility Vehicle,Bike,,, +01/18/2022,6:10,BRONX,10456,40.833588,-73.91498,"(40.833588, -73.91498)",GRANT AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4495457,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,16:00,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495599,Box Truck,,,, +01/18/2022,8:10,BROOKLYN,11210,40.633575,-73.941925,"(40.633575, -73.941925)",,,1613 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495784,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,8:21,QUEENS,11385,40.70041,-73.90368,"(40.70041, -73.90368)",MYRTLE AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495813,Bus,Station Wagon/Sport Utility Vehicle,,, +12/20/2021,14:10,,,40.696068,-73.97152,"(40.696068, -73.97152)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4495938,Sedan,Van,,, +12/22/2021,13:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495972,Sedan,Sedan,,, +01/18/2022,8:00,,,40.872128,-73.88248,"(40.872128, -73.88248)",EAST MOSHOLU PARKWAY SOUTH,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495572,Sedan,,,, +01/18/2022,13:27,QUEENS,11106,40.764236,-73.93701,"(40.764236, -73.93701)",34 AVENUE,12 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495517,Taxi,,,, +01/18/2022,8:00,,,40.57597,-73.84801,"(40.57597, -73.84801)",BEACH 129 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,8:00,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,11:00,STATEN ISLAND,10304,40.61644,-74.08166,"(40.61644, -74.08166)",,,141 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495593,Sedan,,,, +01/18/2022,8:00,QUEENS,11420,40.682503,-73.82131,"(40.682503, -73.82131)",109 AVENUE,120 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495487,Sedan,Sedan,Sedan,, +01/13/2022,8:45,,,40.865345,-73.90849,"(40.865345, -73.90849)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4495971,Sedan,Sedan,,, +01/18/2022,10:33,BRONX,10456,40.832214,-73.90344,"(40.832214, -73.90344)",EAST 169 STREET,FULTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495690,Sedan,E-Scooter,,, +01/18/2022,22:00,,,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495717,Sedan,,,, +01/17/2022,13:03,,,,,,FOREST PARK DRIVE,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496018,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,15:38,QUEENS,11368,40.756683,-73.85793,"(40.756683, -73.85793)",34 AVENUE,111 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4495826,Sedan,Motorcycle,,, +12/26/2021,20:36,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4495991,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,8:40,,,40.600704,-74.12071,"(40.600704, -74.12071)",MANOR ROAD,PORTAGE AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,19:40,BROOKLYN,11228,40.618973,-74.00523,"(40.618973, -74.00523)",14 AVENUE,BAY RIDGE PARKWAY,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4495578,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/18/2022,20:00,BRONX,10451,40.820023,-73.92663,"(40.820023, -73.92663)",GRAND CONCOURSE,EAST 151 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495653,Sedan,E-Bike,,, +01/18/2022,22:15,,,40.63552,-74.0167,"(40.63552, -74.0167)",65 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4495804,Station Wagon/Sport Utility Vehicle,Motor scoo,,, +01/18/2022,15:58,,,40.72592,-73.72439,"(40.72592, -73.72439)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4495600,Tractor Truck Diesel,,,, +01/18/2022,16:32,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495632,Station Wagon/Sport Utility Vehicle,Bus,,, +01/18/2022,9:10,BROOKLYN,11249,40.700848,-73.96193,"(40.700848, -73.96193)",WILLIAMSBURG STREET WEST,HEWES STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,13:30,MANHATTAN,10029,40.794464,-73.93964,"(40.794464, -73.93964)",EAST 112 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495890,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,20:19,,,40.725994,-73.75815,"(40.725994, -73.75815)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495950,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,18:11,MANHATTAN,10032,40.838127,-73.946526,"(40.838127, -73.946526)",,,900 RIVERSIDE DRIVE,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495681,E-Bike,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,16:50,BRONX,10467,40.882217,-73.88046,"(40.882217, -73.88046)",EAST GUN HILL ROAD,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495711,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,16:00,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",EAST 144 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495639,Bus,Sedan,,, +01/18/2022,18:10,,,,,,BROADWAY,WEST 167 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495793,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,20:19,BROOKLYN,11203,40.64644,-73.927864,"(40.64644, -73.927864)",BEVERLEY ROAD,EAST 52 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4495744,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,10:30,BRONX,10474,40.802994,-73.86888,"(40.802994, -73.86888)",,,357 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,Unspecified,4495649,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/18/2022,13:40,BROOKLYN,11226,40.65082,-73.94943,"(40.65082, -73.94943)",,,3001 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495747,Sedan,Sedan,,, +01/18/2022,14:00,,,,,,FINGERBOARD ROAD,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495703,Sedan,,,, +01/18/2022,0:00,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",QUEENS BOULEVARD,70 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495369,Sedan,Sedan,,, +01/18/2022,18:34,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4495627,Motorcycle,,,, +01/16/2022,17:00,,,40.62764,-73.89022,"(40.62764, -73.89022)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496091,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,3:45,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495429,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,23:25,,,40.62015,-74.02301,"(40.62015, -74.02301)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495606,Stake or Rack,Sedan,,, +01/18/2022,14:58,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,14:11,QUEENS,11373,40.741295,-73.88029,"(40.741295, -73.88029)",BROADWAY,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495640,Sedan,,,, +01/15/2022,15:15,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4496042,Sedan,Pick-up Truck,Sedan,Sedan, +07/01/2022,9:42,STATEN ISLAND,10304,40.629215,-74.07849,"(40.629215, -74.07849)",,,104 PROSPECT STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544155,Sedan,Sedan,,, +01/18/2022,14:30,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495533,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,17:00,STATEN ISLAND,10307,40.510677,-74.24845,"(40.510677, -74.24845)",,,140 MAIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495558,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,2:50,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4495860,Sedan,Flat Bed,,, +01/18/2022,20:53,BROOKLYN,11223,40.598312,-73.96119,"(40.598312, -73.96119)",AVENUE U,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495618,Taxi,,,, +01/14/2022,20:36,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495999,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,13:15,MANHATTAN,10019,40.76832,-73.99269,"(40.76832, -73.99269)",,,550 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495502,Sedan,Bike,,, +01/18/2022,13:00,BRONX,10462,40.831924,-73.85104,"(40.831924, -73.85104)",CASTLE HILL AVENUE,GLEASON AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4495762,Sedan,Bike,,, +01/18/2022,16:00,BROOKLYN,11221,40.69614,-73.92726,"(40.69614, -73.92726)",DE KALB AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495891,Bus,Sedan,,, +01/18/2022,8:30,QUEENS,11433,40.697952,-73.80217,"(40.697952, -73.80217)",,,150-16 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4495546,Sedan,Sedan,,, +01/18/2022,5:30,,,40.841347,-73.9169,"(40.841347, -73.9169)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4495652,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,9:45,QUEENS,11385,40.70644,-73.90994,"(40.70644, -73.90994)",,,18-73 BLEECKER STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496023,Sedan,,,, +01/18/2022,19:52,,,40.71205,-73.815254,"(40.71205, -73.815254)",PERSHING CRESCENT,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4495612,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,4:25,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4495664,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,19:21,MANHATTAN,10025,40.798283,-73.96361,"(40.798283, -73.96361)",,,865 COLUMBUS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4495819,Sedan,,,, +01/18/2022,6:27,BROOKLYN,11225,40.662567,-73.947525,"(40.662567, -73.947525)",,,393 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495452,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,14:45,MANHATTAN,10019,40.76508,-73.985,"(40.76508, -73.985)",,,314 WEST 54 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495983,Sedan,Sedan,,, +01/18/2022,12:02,STATEN ISLAND,10310,40.63729,-74.115005,"(40.63729, -74.115005)",HENDERSON AVENUE,NORTH BURGHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495594,Sedan,,,, +01/18/2022,23:00,BROOKLYN,11224,40.576626,-73.98478,"(40.576626, -73.98478)",MERMAID AVENUE,WEST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495926,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,14:47,,,40.63657,-74.03661,"(40.63657, -74.03661)",71 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495781,Station Wagon/Sport Utility Vehicle,Bus,,, +01/18/2022,12:57,STATEN ISLAND,10304,40.60172,-74.09143,"(40.60172, -74.09143)",TARGEE STREET,ROME AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495685,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,15:25,BROOKLYN,11226,40.650387,-73.95872,"(40.650387, -73.95872)",FLATBUSH AVENUE,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4495716,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,11:00,,,40.72773,-73.90674,"(40.72773, -73.90674)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495631,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,4:00,QUEENS,11364,40.752354,-73.76423,"(40.752354, -73.76423)",BELL BOULEVARD,215 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496005,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,9:10,,,40.784554,-73.85502,"(40.784554, -73.85502)",14 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495660,Sedan,,,, +01/14/2022,16:28,BRONX,10468,40.866695,-73.90231,"(40.866695, -73.90231)",,,2545 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495936,Sedan,,,, +01/18/2022,8:00,BROOKLYN,11203,40.655865,-73.94258,"(40.655865, -73.94258)",,,450 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495473,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,22:00,,,40.733303,-73.99333,"(40.733303, -73.99333)",UNIVERSITY PLACE,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4495730,Taxi,Bike,,, +01/18/2022,0:45,QUEENS,11354,40.764988,-73.82067,"(40.764988, -73.82067)",146 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4495567,Bus,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,9:07,BROOKLYN,11232,40.65919,-74.00646,"(40.65919, -74.00646)",2 AVENUE,32 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495758,Sedan,,,, +01/18/2022,21:11,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",BERGEN STREET,FLATBUSH AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4495626,Bike,Bike,,, +01/18/2022,15:00,QUEENS,11417,40.678246,-73.84596,"(40.678246, -73.84596)",,,107-16 92 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,18:11,MANHATTAN,10032,40.843433,-73.94164,"(40.843433, -73.94164)",FORT WASHINGTON AVENUE,WEST 170 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495679,Bike,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,4:45,MANHATTAN,10019,40.77146,-73.994354,"(40.77146, -73.994354)",12 AVENUE,WEST 57 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495398,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,13:43,QUEENS,11412,40.692055,-73.76091,"(40.692055, -73.76091)",,,190-13 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496077,Sedan,Sedan,,, +01/11/2022,14:00,,,40.597553,-73.99117,"(40.597553, -73.99117)",24 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495919,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,13:02,QUEENS,11416,40.682213,-73.862564,"(40.682213, -73.862564)",,,95-25 76 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4495544,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/18/2022,7:25,BRONX,10460,40.837673,-73.86548,"(40.837673, -73.86548)",ARCHER STREET,THIERIOT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495550,Carry All,,,, +01/18/2022,18:50,MANHATTAN,10032,40.838715,-73.94237,"(40.838715, -73.94237)",,,625 WEST 164 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4495794,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,17:22,QUEENS,11411,40.691948,-73.730675,"(40.691948, -73.730675)",LINDEN BOULEVARD,231 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495577,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,0:00,BROOKLYN,11226,40.646942,-73.94757,"(40.646942, -73.94757)",,,3112 TILDEN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4495864,Sedan,Sedan,Sedan,Pick-up Truck,Sedan +01/18/2022,22:35,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",EAST 57 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495611,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,11:30,QUEENS,11429,40.71232,-73.73202,"(40.71232, -73.73202)",HEMPSTEAD AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,8:30,,,40.710434,-73.838066,"(40.710434, -73.838066)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4495492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/18/2022,18:05,MANHATTAN,10016,40.745895,-73.98011,"(40.745895, -73.98011)",,,222 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495795,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/18/2022,22:40,MANHATTAN,10026,40.803432,-73.95611,"(40.803432, -73.95611)",,,2119 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495942,Sedan,Sedan,,, +01/18/2022,10:00,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495998,Pick-up Truck,Carry All,,, +01/18/2022,9:40,MANHATTAN,10029,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495506,Motorized Home,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,7:59,,,40.69599,-73.73665,"(40.69599, -73.73665)",223 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495575,Bus,Taxi,,, +01/18/2022,15:45,BROOKLYN,11201,40.69595,-73.9824,"(40.69595, -73.9824)",TILLARY STREET,PRINCE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4495604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/18/2022,8:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495705,Flat Bed,Sedan,,, +01/17/2022,12:40,BROOKLYN,11226,40.65121,-73.95893,"(40.65121, -73.95893)",FLATBUSH AVENUE,MARTENSE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4496061,Bike,,,, +01/18/2022,8:13,,,40.674694,-73.78435,"(40.674694, -73.78435)",BAISLEY BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495531,PK,,,, +01/18/2022,11:15,MANHATTAN,10128,40.78587,-73.95305,"(40.78587, -73.95305)",PARK AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495620,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,10:15,,,40.60168,-74.1633,"(40.60168, -74.1633)",RICHMOND AVENUE,SIGNS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495463,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,0:00,QUEENS,11377,40.742912,-73.916504,"(40.742912, -73.916504)",QUEENS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495595,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/18/2022,22:25,BRONX,10467,40.88452,-73.87762,"(40.88452, -73.87762)",EAST 213 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4495786,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,11:05,QUEENS,11361,0,0,"(0.0, 0.0)",NORTHERN BOULEVARD,202 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495584,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2021,5:45,QUEENS,11368,40.75785,-73.860016,"(40.75785, -73.860016)",,,109-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,20:45,,,,,,LONG ISLAND EXPRESSWAY,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inexperience,,,,4495641,Box Truck,Sedan,,, +01/18/2022,14:34,MANHATTAN,10027,40.815525,-73.959724,"(40.815525, -73.959724)",CLAREMONT AVENUE,TIEMANN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495852,Taxi,,,, +01/18/2022,19:00,BRONX,10457,40.844086,-73.892914,"(40.844086, -73.892914)",,,675 EAST 176 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495982,Sedan,,,, +01/17/2022,10:00,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4495933,Sedan,Pick-up Truck,Sedan,, +01/18/2022,11:30,STATEN ISLAND,10312,40.534267,-74.15398,"(40.534267, -74.15398)",RICHMOND AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495700,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,18:20,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495635,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/18/2022,12:12,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4495630,3-Door,,,, +01/18/2022,2:55,,,,,,7 AVENUE,WEST 155 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495443,Ambulance,Flat Bed,,, +01/18/2022,15:50,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495561,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,18:57,MANHATTAN,10032,40.837685,-73.94578,"(40.837685, -73.94578)",,,674 WEST 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495665,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,21:00,,,40.7538,-73.90213,"(40.7538, -73.90213)",60 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496097,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,18:07,MANHATTAN,10032,40.840195,-73.94307,"(40.840195, -73.94307)",FORT WASHINGTON AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495677,Station Wagon/Sport Utility Vehicle,Bike,,, +01/18/2022,17:12,BRONX,10462,40.847717,-73.86321,"(40.847717, -73.86321)",,,1858 BARNES AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4495778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/18/2022,12:30,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495651,Box Truck,Sedan,,, +01/18/2022,12:43,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495613,Sedan,Box Truck,,, +01/18/2022,8:20,QUEENS,11385,40.705326,-73.87665,"(40.705326, -73.87665)",,,72-02 73 PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495817,Sedan,,,, +01/05/2022,17:15,MANHATTAN,10011,,,,7 Avenue,West 14,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496025,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,9:45,BRONX,10458,,,,3 AVENUE,east 187th street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495683,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,14:37,,,40.72881,-73.99507,"(40.72881, -73.99507)",MERCER STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495731,Bike,,,, +01/18/2022,14:00,,,40.638523,-74.01,"(40.638523, -74.01)",7 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495759,Sedan,3-Door,,, +01/18/2022,1:17,BROOKLYN,11233,40.669174,-73.920715,"(40.669174, -73.920715)",EASTERN PARKWAY,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4495404,Sedan,Sedan,Sedan,, +01/18/2022,17:18,BRONX,10454,40.80934,-73.91248,"(40.80934, -73.91248)",CYPRESS AVENUE,SAINT MARYS STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4495634,Taxi,,,, +01/17/2022,15:30,BROOKLYN,11235,40.577995,-73.95964,"(40.577995, -73.95964)",BRIGHTON BEACH AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4495922,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/18/2022,14:30,BRONX,10473,40.821507,-73.86204,"(40.821507, -73.86204)",LAFAYETTE AVENUE,THIERIOT AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inattention/Distraction,,,,4495551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,8:30,QUEENS,11366,40.72302,-73.799934,"(40.72302, -73.799934)",,,168-22 UNION TURNPIKE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495874,Sedan,,,, +01/18/2022,14:50,,,40.62452,-73.99749,"(40.62452, -73.99749)",NEW UTRECHT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4495699,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,13:12,QUEENS,11374,40.73091,-73.86084,"(40.73091, -73.86084)",97 STREET,63 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472073,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,11:31,BROOKLYN,11226,40.649155,-73.96302,"(40.649155, -73.96302)",,,83 EAST 18 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4495715,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,13:30,MANHATTAN,10010,40.742043,-73.990776,"(40.742043, -73.990776)",,,32 WEST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496008,Sedan,Sedan,,, +01/18/2022,17:20,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",LAIGHT STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495790,Bus,Sedan,,, +01/18/2022,8:30,,,,,,PARK ROW,BROOKLYN BRIDGE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4495582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/18/2022,13:02,,,40.696556,-73.98091,"(40.696556, -73.98091)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495610,Sedan,Box Truck,,, +01/18/2022,0:00,MANHATTAN,10032,40.842438,-73.93926,"(40.842438, -73.93926)",BROADWAY,WEST 170 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495497,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/18/2022,12:41,BROOKLYN,11204,40.610844,-73.991776,"(40.610844, -73.991776)",20 AVENUE,BAY RIDGE PARKWAY,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,,,,4495799,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,20:30,QUEENS,11356,40.785763,-73.85237,"(40.785763, -73.85237)",115 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4495659,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,7:10,,,40.768974,-73.773766,"(40.768974, -73.773766)",35 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,12:40,QUEENS,11106,40.761425,-73.94282,"(40.761425, -73.94282)",,,36-27 VERNON BOULEVARD,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495614,Sedan,Bike,,, +01/18/2022,0:00,MANHATTAN,10027,40.809402,-73.95725,"(40.809402, -73.95725)",WEST 121 STREET,MORNINGSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496032,Sedan,,,, +01/12/2022,17:06,BROOKLYN,11230,40.61004,-73.97108,"(40.61004, -73.97108)",,,1659 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4495944,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/18/2022,18:19,MANHATTAN,10035,40.80226,-73.94428,"(40.80226, -73.94428)",,,22 EAST 119 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4495964,Sedan,,,, +01/18/2022,1:23,BROOKLYN,11210,40.624382,-73.94643,"(40.624382, -73.94643)",NOSTRAND AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4495491,Garbage or Refuse,Sedan,Sedan,, +01/18/2022,9:38,QUEENS,11418,40.695908,-73.83367,"(40.695908, -73.83367)",,,89-17 114 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495722,Sedan,,,, +01/18/2022,10:00,BRONX,10467,40.881126,-73.863,"(40.881126, -73.863)",,,724 EAST 216 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495539,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,17:05,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",METROPOLITAN AVENUE,FRESH POND ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4495814,DELV,Station Wagon/Sport Utility Vehicle,Sedan,, +01/18/2022,8:18,BRONX,10453,40.8514,-73.90606,"(40.8514, -73.90606)",CRESTON AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495458,Sedan,Ambulance,,, +01/18/2022,18:55,,,40.769634,-73.94841,"(40.769634, -73.94841)",EAST 78 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4495622,Motorcycle,Sedan,,, +01/14/2022,19:28,MANHATTAN,10026,40.79968,-73.95586,"(40.79968, -73.95586)",,,207 WEST 110 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Turning Improperly,,,,4495941,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,11:18,BROOKLYN,11226,40.638996,-73.948326,"(40.638996, -73.948326)",,,1916 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495785,Sedan,Bike,,, +01/18/2022,16:07,BRONX,10467,40.879013,-73.87245,"(40.879013, -73.87245)",,,3505 DECATUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495573,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,18:15,MANHATTAN,10032,40.84257,-73.94211,"(40.84257, -73.94211)",,,216 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495667,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,9:10,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",WALTON AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495642,Station Wagon/Sport Utility Vehicle,,,, +12/19/2021,10:46,QUEENS,11693,40.58728,-73.81321,"(40.58728, -73.81321)",,,88-07 ROCKAWAY BEACH BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496060,Bus,Sedan,,, +01/18/2022,13:10,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4495678,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/27/2021,2:47,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4472121,Sedan,,,, +01/18/2022,15:24,,,40.66922,-73.801094,"(40.66922, -73.801094)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4495562,Tow Truck,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,0:00,MANHATTAN,10016,40.748985,-73.979965,"(40.748985, -73.979965)",PARK AVENUE,EAST 37 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495520,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,10:00,,,40.73715,-73.930824,"(40.73715, -73.930824)",BORDEN AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4495841,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck, +01/17/2022,21:03,BRONX,10465,40.816994,-73.82229,"(40.816994, -73.82229)",MILES AVENUE,HUNTINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495974,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,15:13,,,40.78324,-73.97455,"(40.78324, -73.97455)",WEST 81 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4495596,Pick-up Truck,Sedan,,, +01/18/2022,16:25,,,40.57316,-74.114815,"(40.57316, -74.114815)",NEW DORP LANE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4495701,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,11:30,MANHATTAN,10012,40.722652,-73.99599,"(40.722652, -73.99599)",,,232 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495929,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,12:40,,,40.769848,-73.98432,"(40.769848, -73.98432)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4495766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,9:30,,,40.79216,-73.9777,"(40.79216, -73.9777)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495510,Sedan,,,, +01/18/2022,9:00,MANHATTAN,10018,40.758976,-73.99394,"(40.758976, -73.99394)",DYER AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495447,Tanker,Sedan,,, +01/18/2022,23:55,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4495629,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,17:20,MANHATTAN,10002,40.7157,-73.98268,"(40.7157, -73.98268)",,,500C GRAND STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495708,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,16:24,,,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495602,Sedan,3-Door,,, +01/18/2022,11:00,BROOKLYN,11201,40.697277,-73.98503,"(40.697277, -73.98503)",,,49 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496093,Sedan,,,, +01/18/2022,6:10,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",QUEENS BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495636,Sedan,Sedan,,, +01/18/2022,0:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495802,Sedan,,,, +01/18/2022,14:29,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4495552,Box Truck,,,, +01/18/2022,17:20,,,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495925,Sedan,Bus,,, +01/18/2022,20:26,MANHATTAN,10023,40.77873,-73.977844,"(40.77873, -73.977844)",COLUMBUS AVENUE,WEST 74 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,4:20,BRONX,10469,40.870567,-73.84328,"(40.870567, -73.84328)",,,3048 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4495538,Van,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,6:45,STATEN ISLAND,10301,40.619663,-74.099686,"(40.619663, -74.099686)",VICTORY BOULEVARD,EAST CHESHIRE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495589,Sedan,,,, +01/07/2022,14:30,QUEENS,11363,40.7684,-73.73755,"(40.7684, -73.73755)",NORTHERN BOULEVARD,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495995,Sedan,,,, +01/11/2022,20:06,BROOKLYN,11217,40.677544,-73.98295,"(40.677544, -73.98295)",,,209 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495966,Sedan,,,, +01/18/2022,9:10,,,40.600704,-74.12071,"(40.600704, -74.12071)",MANOR ROAD,PORTAGE AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4495498,Pick-up Truck,Sedan,,, +01/18/2022,21:50,BRONX,10460,40.839798,-73.873604,"(40.839798, -73.873604)",MORRIS PARK AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495682,Sedan,Sedan,,, +01/18/2022,5:30,QUEENS,11358,40.762505,-73.8037,"(40.762505, -73.8037)",162 STREET,CROCHERON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4495407,Pick-up Truck,Sedan,,, +01/18/2022,9:00,BROOKLYN,11230,40.634583,-73.96201,"(40.634583, -73.96201)",,,1611 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495719,Sedan,,,, +10/21/2021,9:30,QUEENS,11101,,,,30 STREET,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472147,Sedan,Box Truck,,, +01/18/2022,16:13,BRONX,10472,40.83568,-73.87037,"(40.83568, -73.87037)",,,1730 CROSS BRONX EXPRESSWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4495761,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,19:24,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,65 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495633,Sedan,Motorcycle,,, +01/14/2022,0:02,QUEENS,11418,40.697247,-73.84302,"(40.697247, -73.84302)",86 AVENUE,105 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4496015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/18/2022,10:30,BROOKLYN,11249,40.718967,-73.96104,"(40.718967, -73.96104)",NORTH 6 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495655,Sedan,,,, +01/18/2022,15:30,QUEENS,11432,40.708447,-73.79678,"(40.708447, -73.79678)",,,88-05 165 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495740,Sedan,Pick-up Truck,,, +01/18/2022,18:40,QUEENS,11411,40.701187,-73.74148,"(40.701187, -73.74148)",115 AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495581,Sedan,,,, +01/18/2022,10:30,MANHATTAN,10013,40.720158,-74.00382,"(40.720158, -74.00382)",,,323 CHURCH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495490,Sedan,,,, +01/18/2022,15:46,BROOKLYN,11212,40.66479,-73.91532,"(40.66479, -73.91532)",BLAKE AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495889,Sedan,,,, +01/14/2022,10:35,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496040,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,15:05,QUEENS,11106,40.758236,-73.93702,"(40.758236, -73.93702)",37 AVENUE,22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4495615,Bus,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/18/2022,23:30,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4495609,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,18:00,BRONX,10457,40.842937,-73.895386,"(40.842937, -73.895386)",ARTHUR AVENUE,CROTONA PARK NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495948,Sedan,,,, +01/18/2022,11:00,BRONX,10456,40.831635,-73.91894,"(40.831635, -73.91894)",EAST 166 STREET,CARROLL PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4495650,Sedan,Sedan,,, +01/18/2022,0:00,MANHATTAN,10002,40.7136,-73.980515,"(40.7136, -73.980515)",,,356 MADISON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495692,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,17:25,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4495712,Sedan,Sedan,,, +01/18/2022,14:28,,,40.755337,-73.843254,"(40.755337, -73.843254)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495637,Sedan,Tractor Truck Diesel,,, +01/18/2022,6:10,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495668,Sedan,Sedan,Sedan,, +07/05/2022,17:50,,,40.631924,-74.016495,"(40.631924, -74.016495)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4543666,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2022,20:50,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544133,Sedan,Sedan,,, +07/05/2022,3:00,BROOKLYN,11232,40.649834,-74.01819,"(40.649834, -74.01819)",,,140 50 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544021,,,,, +07/05/2022,2:35,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543871,Sedan,,,, +06/29/2022,21:25,BROOKLYN,11249,40.71048,-73.9655,"(40.71048, -73.9655)",BROADWAY,BERRY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544403,Station Wagon/Sport Utility Vehicle,Bike,,, +06/21/2022,1:00,,,40.69666,-73.93109,"(40.69666, -73.93109)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544267,Sedan,E-Bike,,, +07/05/2022,9:18,BROOKLYN,11224,40.578,-73.99372,"(40.578, -73.99372)",NEPTUNE AVENUE,WEST 27 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4543931,Sedan,,,, +07/01/2022,17:55,MANHATTAN,10002,40.719597,-73.98237,"(40.719597, -73.98237)",,,210 STANTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4544220,Sedan,,,, +07/05/2022,8:25,BROOKLYN,11211,40.713585,-73.941505,"(40.713585, -73.941505)",,,39 BUSHWICK AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544421,Sedan,,,, +07/05/2022,1:44,BRONX,10454,40.808006,-73.91434,"(40.808006, -73.91434)",EAST 141 STREET,BEEKMAN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4543729,Open Body,Sedan,,, +04/10/2022,12:30,,,,,,Bryant avenue,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4517951,Sedan,Bike,,, +10/22/2021,16:15,BROOKLYN,11218,,,,,,16 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472171,Sedan,Sedan,,, +07/05/2022,13:22,STATEN ISLAND,10304,40.631077,-74.08808,"(40.631077, -74.08808)",VICTORY BOULEVARD,LOUIS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544162,Sedan,,,, +06/26/2022,7:15,,,40.683647,-73.94688,"(40.683647, -73.94688)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544199,Sedan,,,, +07/05/2022,23:29,BROOKLYN,11207,40.669502,-73.89913,"(40.669502, -73.89913)",,,268 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543785,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,10:29,,,40.75882,-73.805145,"(40.75882, -73.805145)",43 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544138,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,8:00,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543530,Sedan,,,, +07/05/2022,8:00,BRONX,10460,40.837006,-73.869995,"(40.837006, -73.869995)",,,1466 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543955,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,7:35,BROOKLYN,11206,40.696117,-73.93628,"(40.696117, -73.93628)",,,365 VERNON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543636,Bus,Dump,,, +07/05/2022,13:42,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,,,4543978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2022,12:50,,,40.68662,-73.82319,"(40.68662, -73.82319)",120 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4543713,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,18:30,,,40.687126,-73.993614,"(40.687126, -73.993614)",WYCKOFF STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543954,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,13:00,BROOKLYN,11206,40.70994,-73.93896,"(40.70994, -73.93896)",,,235 STAGG WALK,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544437,Sedan,,,, +07/04/2022,0:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4544240,Sedan,,,, +07/05/2022,14:29,BRONX,10453,40.85315,-73.90561,"(40.85315, -73.90561)",MORRIS AVENUE,EAST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543839,Sedan,Flat Bed,,, +06/22/2022,12:21,,,40.732937,-73.920395,"(40.732937, -73.920395)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544250,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,0:38,BROOKLYN,11206,40.710285,-73.95041,"(40.710285, -73.95041)",,,19 MAUJER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543421,Sedan,Sedan,,, +07/05/2022,13:21,BROOKLYN,11222,40.73128,-73.94678,"(40.73128, -73.94678)",,,324 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544288,Sedan,Pick-up Truck,,, +06/30/2022,8:26,MANHATTAN,10010,40.737885,-73.98091,"(40.737885, -73.98091)",EAST 23 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544185,Sedan,Tow Truck / Wrecker,,, +06/30/2022,18:30,STATEN ISLAND,10312,40.539825,-74.17637,"(40.539825, -74.17637)",,,26 SHERIDAN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544357,Sedan,,,, +07/03/2022,19:39,BRONX,10469,40.87757,-73.851555,"(40.87757, -73.851555)",,,1322 HICKS STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4544336,Sedan,Bike,,, +06/30/2022,13:08,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544130,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,9:19,BROOKLYN,11234,40.62444,-73.9304,"(40.62444, -73.9304)",FLATLANDS AVENUE,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543599,Sedan,Sedan,,, +07/05/2022,10:40,,,40.82255,-73.88573,"(40.82255, -73.88573)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Other Vehicular,,,,4543616,Sedan,Sedan,,, +07/05/2022,18:10,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544055,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +06/30/2022,0:00,BROOKLYN,11222,0,0,"(0.0, 0.0)",MC GUINNESS BOULEVARD,GREEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544286,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,14:55,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",SOUTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543651,Pick-up Truck,Sedan,,, +06/30/2022,16:45,,,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544123,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,17:31,,,40.689228,-73.957,"(40.689228, -73.957)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544309,Sedan,Sedan,,, +07/10/2021,7:00,,,,,,136 ave,merrick blvd,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437547,Sedan,Sedan,,, +04/10/2022,0:05,BROOKLYN,11239,,,,,,396 SCHROEDERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517987,Sedan,Sedan,,, +07/05/2022,9:16,BROOKLYN,11231,40.677353,-74.00446,"(40.677353, -74.00446)",HICKS STREET,HUNTINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543681,Sedan,,,, +07/04/2022,21:00,STATEN ISLAND,10304,40.612514,-74.08775,"(40.612514, -74.08775)",,,580 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544146,Sedan,,,, +07/03/2022,22:22,BROOKLYN,11236,40.63787,-73.90963,"(40.63787, -73.90963)",EAST 85 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544334,Sedan,Sedan,,, +07/05/2022,9:05,BROOKLYN,11225,40.660057,-73.96062,"(40.660057, -73.96062)",,,555 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543552,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2022,14:00,BROOKLYN,11230,40.624554,-73.9671,"(40.624554, -73.9671)",EAST 9 STREET,AVENUE J,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544075,Sedan,E-Scooter,,, +06/28/2022,22:30,,,40.607212,-74.07682,"(40.607212, -74.07682)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544142,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/24/2022,15:00,STATEN ISLAND,10304,40.625553,-74.08241,"(40.625553, -74.08241)",,,57 GORDON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544160,Sedan,,,, +07/05/2022,5:25,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",SUTPHIN BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543570,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,2:30,,,40.68603,-73.93268,"(40.68603, -73.93268)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4543646,Sedan,Sedan,,, +07/03/2022,19:38,,,40.66323,-73.93161,"(40.66323, -73.93161)",EAST NEW YORK AVENUE,UTICA AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4544317,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,0:24,,,40.853714,-73.92681,"(40.853714, -73.92681)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4544325,Sedan,,,, +07/05/2022,14:20,,,40.60635,-74.13983,"(40.60635, -74.13983)",,,194 MARTIN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543674,LIMO,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,8:38,,,40.885586,-73.90589,"(40.885586, -73.90589)",WALDO AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543913,Sedan,,,, +06/24/2022,17:00,BROOKLYN,11203,40.65254,-73.923676,"(40.65254, -73.923676)",CHURCH AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544312,Pick-up Truck,Sedan,,, +07/04/2022,0:40,,,40.675297,-73.73336,"(40.675297, -73.73336)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4544184,Convertible,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2022,12:00,BROOKLYN,11222,40.727448,-73.94524,"(40.727448, -73.94524)",,,215 NORMAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544279,,,,, +07/05/2022,11:55,BROOKLYN,11231,40.681984,-73.99981,"(40.681984, -73.99981)",,,153 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543589,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,0:40,QUEENS,11420,40.67449,-73.80743,"(40.67449, -73.80743)",,,120-02 131 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4543707,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/05/2022,8:20,,,40.689922,-73.92281,"(40.689922, -73.92281)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4543512,,,,, +07/05/2022,8:25,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4543667,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/13/2022,14:00,STATEN ISLAND,10312,40.523754,-74.18594,"(40.523754, -74.18594)",,,1270 HUGUENOT AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4544359,Bus,,,, +07/05/2022,1:44,BROOKLYN,11237,40.704956,-73.93152,"(40.704956, -73.93152)",MORGAN AVENUE,THAMES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544041,Sedan,Sedan,,, +07/05/2022,4:58,BROOKLYN,11236,40.646626,-73.90399,"(40.646626, -73.90399)",ROCKAWAY PARKWAY,FARRAGUT ROAD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4543657,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,14:15,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544417,Taxi,Bike,,, +07/01/2022,10:48,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4544239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/14/2021,19:35,,,40.6952,-73.92844,"(40.6952, -73.92844)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437586,Ambulance,Sedan,,, +04/10/2022,12:00,,,40.817173,-73.94607,"(40.817173, -73.94607)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4518232,Sedan,,,, +06/29/2022,18:00,STATEN ISLAND,10301,40.638844,-74.08471,"(40.638844, -74.08471)",WINTER AVENUE,BISMARK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544147,Bike,,,, +07/05/2022,17:00,QUEENS,11373,40.745365,-73.88834,"(40.745365, -73.88834)",BROADWAY,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543756,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/05/2022,16:50,,,40.736534,-73.85611,"(40.736534, -73.85611)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544109,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,17:00,STATEN ISLAND,10304,40.614025,-74.08479,"(40.614025, -74.08479)",TARGEE STREET,SOBEL COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544154,Ambulance,Sedan,,, +07/04/2022,16:06,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4544137,Sedan,Sedan,,, +07/05/2022,20:03,,,40.83283,-73.91129,"(40.83283, -73.91129)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4543880,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,2:00,,,40.69864,-73.93819,"(40.69864, -73.93819)",LEWIS AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544207,Sedan,Unk,,, +07/05/2022,21:00,BRONX,10472,,,,,,1267 VIRGINIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544300,Sedan,,,, +07/05/2022,12:03,QUEENS,11412,40.70568,-73.77114,"(40.70568, -73.77114)",104 AVENUE,186 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4543737,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,12:42,,,40.883476,-73.868256,"(40.883476, -73.868256)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544228,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,23:40,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,,,,4543728,Sedan,Sedan,,, +07/05/2022,7:00,BROOKLYN,11225,40.664444,-73.948906,"(40.664444, -73.948906)",,,446 MALBONE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543487,Sedan,,,, +07/04/2022,4:46,,,40.689102,-73.94507,"(40.689102, -73.94507)",GREENE AVENUE,,,0,1,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544251,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,12:48,QUEENS,11368,40.7561,-73.86251,"(40.7561, -73.86251)",34 AVENUE,106 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543628,Sedan,Sedan,,, +07/05/2022,2:20,BROOKLYN,11207,40.67954,-73.89959,"(40.67954, -73.89959)",,,32 HIGHLAND BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543808,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,1:47,,,40.546707,-74.19913,"(40.546707, -74.19913)",HUGUENOT AVENUE,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4544348,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,2:45,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4544194,Sedan,Sedan,Moped,, +07/04/2022,17:00,BRONX,10463,40.88011,-73.89939,"(40.88011, -73.89939)",,,3353 FORT INDEPENDENCE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4544439,Sedan,,,, +07/05/2022,13:10,MANHATTAN,10001,40.751816,-73.99744,"(40.751816, -73.99744)",,,376 9 AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Turning Improperly,,,,4543836,E-Scooter,,,, +06/25/2022,13:31,BROOKLYN,11206,40.706673,-73.94819,"(40.706673, -73.94819)",,,315 LORIMER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544398,Sedan,,,, +07/05/2022,20:32,QUEENS,11361,40.75488,-73.77979,"(40.75488, -73.77979)",,,46-09 202 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544014,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2022,14:50,MANHATTAN,10003,,,,EAST 16 STREET,UNION SQUARE WEST,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544200,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2022,17:04,BROOKLYN,11218,40.6408,-73.97472,"(40.6408, -73.97472)",,,511 AVENUE C,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543767,Sedan,Sedan,,, +07/05/2022,23:17,,,40.61913,-73.99019,"(40.61913, -73.99019)",18 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543691,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,0:50,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4544246,Station Wagon/Sport Utility Vehicle,,,, +06/22/2022,12:00,MANHATTAN,10128,40.778408,-73.9509,"(40.778408, -73.9509)",,,301 EAST 87 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544261,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,6:51,,,,,,BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518284,Van,Van,,, +10/28/2021,16:58,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472303,Sedan,,,, +07/05/2022,0:20,,,40.593056,-73.77532,"(40.593056, -73.77532)",ROCKAWAY FREEWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544093,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,13:10,MANHATTAN,10031,40.82902,-73.94485,"(40.82902, -73.94485)",WEST 151 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544170,Sedan,Box Truck,,, +07/05/2022,15:30,STATEN ISLAND,10306,40.565365,-74.11491,"(40.565365, -74.11491)",HYLAN BOULEVARD,CANNON BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4543857,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +06/30/2022,16:50,BROOKLYN,11206,40.703373,-73.93764,"(40.703373, -73.93764)",VARET STREET,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544407,Sedan,Bike,,, +07/05/2022,2:07,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4543956,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,17:11,,,40.681046,-73.94346,"(40.681046, -73.94346)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544308,Sedan,Sedan,,, +07/01/2022,12:30,MANHATTAN,10002,40.711384,-73.98832,"(40.711384, -73.98832)",CHERRY STREET,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544218,City Owned,TRACTOR,,, +07/03/2022,17:00,STATEN ISLAND,10312,40.54852,-74.194664,"(40.54852, -74.194664)",,,45 GREEN VALLEY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544352,,,,, +07/05/2022,12:00,BROOKLYN,11233,40.681446,-73.91378,"(40.681446, -73.91378)",,,382 MARION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543988,Sedan,Sedan,,, +06/09/2022,20:31,STATEN ISLAND,10312,40.5415,-74.16254,"(40.5415, -74.16254)",OAKDALE STREET,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4544344,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/04/2022,17:24,MANHATTAN,10002,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,PITT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544221,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,0:25,,,40.697075,-73.93185,"(40.697075, -73.93185)",WILLOUGHBY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4543452,Sedan,Sedan,Sedan,, +07/05/2022,13:00,QUEENS,11432,40.712708,-73.78357,"(40.712708, -73.78357)",179 PLACE,HILLSIDE AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544289,E-Bike,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,15:10,,,40.58588,-73.912704,"(40.58588, -73.912704)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544247,Sedan,Sedan,,, +07/05/2022,16:55,QUEENS,11368,40.751575,-73.85584,"(40.751575, -73.85584)",111 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543735,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,23:35,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544131,Box Truck,Sedan,,, +07/05/2022,12:29,BROOKLYN,11217,40.681946,-73.978195,"(40.681946, -73.978195)",,,389 BERGEN STREET,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,,,,4543617,Truck,Sedan,,, +07/02/2022,21:30,BROOKLYN,11230,40.61183,-73.9617,"(40.61183, -73.9617)",,,1525 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544124,Station Wagon/Sport Utility Vehicle,,,, +06/21/2022,18:06,MANHATTAN,10016,40.74668,-73.9745,"(40.74668, -73.9745)",EAST 37 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544266,Taxi,Sedan,,, +07/05/2022,13:00,,,40.694363,-73.958,"(40.694363, -73.958)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544196,Sedan,Box Truck,,, +07/05/2022,20:50,QUEENS,11694,40.580315,-73.835434,"(40.580315, -73.835434)",ROCKAWAY BEACH BOULEVARD,BEACH 114 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543879,Sedan,,,, +07/05/2022,18:45,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4544427,E-Bike,Bike,,, +07/05/2022,2:10,BROOKLYN,11217,40.683765,-73.97877,"(40.683765, -73.97877)",4 AVENUE,PACIFIC STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4543930,Garbage or Refuse,Sedan,,, +07/05/2022,12:05,,,40.625313,-74.17835,"(40.625313, -74.17835)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544163,Tractor Truck Diesel,Sedan,,, +07/05/2022,16:32,BROOKLYN,11211,40.70955,-73.95886,"(40.70955, -73.95886)",HAVEMEYER STREET,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4544042,Sedan,Sedan,,, +07/05/2022,11:18,MANHATTAN,10010,40.74342,-73.99245,"(40.74342, -73.99245)",,,729 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4543655,Sedan,,,, +07/05/2022,19:22,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,2,0,0,0,1,0,1,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,4543680,Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/07/2022,17:31,QUEENS,11103,,,,31 avenue,Steinway street,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518334,Sedan,,,, +07/04/2022,22:21,BROOKLYN,11236,40.635105,-73.896484,"(40.635105, -73.896484)",AVENUE M,EAST 93 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544333,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,10:35,MANHATTAN,10001,40.74777,-73.99083,"(40.74777, -73.99083)",,,138 WEST 30 STREET,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4543553,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/29/2022,8:56,BROOKLYN,11203,40.65544,-73.92915,"(40.65544, -73.92915)",,,823 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544313,Sedan,,,, +07/05/2022,12:00,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",116 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544079,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,8:05,BROOKLYN,11208,40.668266,-73.88116,"(40.668266, -73.88116)",DUMONT AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543784,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2022,17:10,BROOKLYN,11206,40.7006,-73.94301,"(40.7006, -73.94301)",,,741 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4544402,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,14:00,BROOKLYN,11222,40.72439,-73.94896,"(40.72439, -73.94896)",,,119 NASSAU AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4544285,Sedan,,,, +07/05/2022,0:40,STATEN ISLAND,10309,40.51867,-74.22236,"(40.51867, -74.22236)",,,6581 AMBOY ROAD,1,0,0,0,0,0,1,0,Passenger Distraction,,,,,4544356,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,16:32,,,40.62488,-74.01964,"(40.62488, -74.01964)",7 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543661,Sedan,,,, +07/05/2022,1:39,,,40.66305,-73.848564,"(40.66305, -73.848564)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4543697,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/27/2022,21:21,BRONX,10457,40.848396,-73.90605,"(40.848396, -73.90605)",MONROE AVENUE,MOUNT HOPE PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544172,Motorcycle,,,, +06/29/2022,10:00,STATEN ISLAND,10310,40.6281,-74.1053,"(40.6281, -74.1053)",BARD AVENUE,PARSONS PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544143,Pick-up Truck,,,, +07/04/2022,19:10,STATEN ISLAND,10304,40.63095,-74.076546,"(40.63095, -74.076546)",BAY STREET,WILLIAM STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544148,Sedan,Sedan,,, +07/03/2022,22:33,MANHATTAN,10038,40.71022,-74.00775,"(40.71022, -74.00775)",NASSAU STREET,FULTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544408,Sedan,,,, +07/05/2022,11:26,,,40.609707,-73.819046,"(40.609707, -73.819046)",CROSS BAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543544,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,21:57,,,40.80801,-73.88961,"(40.80801, -73.88961)",TIFFANY STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543952,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/04/2022,17:40,BROOKLYN,11249,40.70683,-73.9684,"(40.70683, -73.9684)",KENT AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4544420,Bus,Bike,,, +07/05/2022,8:10,MANHATTAN,10029,40.79367,-73.94023,"(40.79367, -73.94023)",,,2155 2 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543597,Bus,Box Truck,,, +07/03/2022,19:45,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544418,Sedan,,,, +07/05/2022,21:25,,,40.70499,-73.91736,"(40.70499, -73.91736)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544088,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,5:30,QUEENS,11356,40.787914,-73.841965,"(40.787914, -73.841965)",126 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4543511,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +07/05/2022,3:00,QUEENS,11420,40.665916,-73.82132,"(40.665916, -73.82132)",NORTH CONDUIT AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4543710,Sedan,,,, +06/10/2022,19:00,STATEN ISLAND,10309,40.535263,-74.21166,"(40.535263, -74.21166)",RAMONA AVENUE,MAGUIRE AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4544361,Sedan,,,, +07/05/2022,13:50,BROOKLYN,11206,40.708168,-73.95067,"(40.708168, -73.95067)",SOUTH 3 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544040,Taxi,,,, +07/05/2022,13:40,BRONX,10461,40.851196,-73.844734,"(40.851196, -73.844734)",,,1301 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4543639,Sedan,Sedan,,, +06/23/2022,22:24,MANHATTAN,10128,40.780224,-73.95298,"(40.780224, -73.95298)",,,1568 3 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544260,Sedan,Sedan,,, +07/02/2022,0:22,BRONX,10453,40.8557,-73.91495,"(40.8557, -73.91495)",HENNESSEY PLACE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4544229,Sedan,Sedan,,, +07/05/2022,13:40,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",FOUNTAIN AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,,,,,4543809,E-Bike,,,, +07/05/2022,21:50,,,40.76555,-73.83911,"(40.76555, -73.83911)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543759,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,0:00,,,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544183,Sedan,Bike,,, +06/21/2022,22:54,,,40.68064,-73.95338,"(40.68064, -73.95338)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544205,Taxi,Sedan,,, +07/05/2022,12:20,,,40.717922,-73.9931,"(40.717922, -73.9931)",GRAND STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543837,Sedan,Bike,,, +07/04/2022,22:10,BROOKLYN,11208,40.68541,-73.87274,"(40.68541, -73.87274)",RIDGEWOOD AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544377,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,16:55,QUEENS,11693,,,,,,9212 rockaway beach boulevard,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543631,Box Truck,PK,,, +06/14/2022,16:30,,,40.551815,-74.217354,"(40.551815, -74.217354)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544349,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,3:12,BRONX,10453,40.84942,-73.91113,"(40.84942, -73.91113)",JEROME AVENUE,MOUNT HOPE PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543585,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,1:07,,,,,,Bedfird ave,North 5 street,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544278,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2022,8:40,BRONX,10463,40.88589,-73.9111,"(40.88589, -73.9111)",,,583 WEST 235 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544103,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,0:30,STATEN ISLAND,10301,40.64343,-74.08415,"(40.64343, -74.08415)",WESTERVELT AVENUE,CRESCENT AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4544153,Van,,,, +07/05/2022,20:20,QUEENS,11413,40.679504,-73.73963,"(40.679504, -73.73963)",,,131-49 229 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4543668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/05/2022,23:00,,,40.829506,-73.93177,"(40.829506, -73.93177)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4543883,Sedan,,,, +07/05/2022,13:30,QUEENS,11354,40.775665,-73.84537,"(40.775665, -73.84537)",123 STREET,25 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544135,Sedan,,,, +07/05/2022,23:00,BRONX,10470,40.90487,-73.84603,"(40.90487, -73.84603)",,,861 EAST 242 STREET,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4544012,Taxi,,,, +07/05/2022,6:21,BROOKLYN,11226,40.65115,-73.94961,"(40.65115, -73.94961)",,,1441 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543576,Box Truck,Sedan,,, +07/05/2022,5:18,QUEENS,11375,40.724598,-73.84923,"(40.724598, -73.84923)",,,104-20 68 DRIVE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4543488,Sedan,Sedan,,, +07/05/2022,7:22,MANHATTAN,10007,40.715893,-74.00488,"(40.715893, -74.00488)",,,321 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543725,Box Truck,Sedan,,, +06/24/2022,13:58,,,,,,WEST 181 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544324,Sedan,Sedan,,, +07/05/2022,3:50,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543914,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,12:45,,,40.611576,-74.17615,"(40.611576, -74.17615)",,,1150 SOUTH AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543673,Sedan,Sedan,,, +07/05/2022,10:00,BROOKLYN,11207,40.671986,-73.893906,"(40.671986, -73.893906)",,,301 VERMONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544238,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/21/2022,8:05,,,40.67681,-73.91924,"(40.67681, -73.91924)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4544253,Flat Rack,FREIG,,, +06/23/2022,11:12,,,40.857838,-73.932045,"(40.857838, -73.932045)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544190,Bike,,,, +07/03/2022,21:02,BROOKLYN,11216,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544297,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/31/2022,5:00,QUEENS,11368,40.75207,-73.86896,"(40.75207, -73.86896)",,,98-01 37 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4544440,Sedan,,,, +07/05/2022,15:00,,,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543738,Box Truck,Sedan,,, +07/02/2022,16:50,MANHATTAN,10034,40.86249,-73.92226,"(40.86249, -73.92226)",,,213 NAGLE AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4544201,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,8:05,,,,,,st. nicholas terrace,west,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472481,Sedan,,,, +04/04/2022,14:20,,,40.655334,-73.93077,"(40.655334, -73.93077)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517023,Sedan,,,, +04/08/2022,22:21,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4517418,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/10/2022,22:40,BROOKLYN,11212,40.667706,-73.90636,"(40.667706, -73.90636)",SUTTER AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4518554,Sedan,Sedan,,, +04/07/2022,23:50,STATEN ISLAND,10304,40.625225,-74.074844,"(40.625225, -74.074844)",BAY STREET,DOCK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518545,Sedan,Sedan,,, +04/08/2022,12:56,,,40.624912,-74.146706,"(40.624912, -74.146706)",WILLOW ROAD WEST,FOREST AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4517940,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,20:55,BRONX,10453,40.85573,-73.910416,"(40.85573, -73.910416)",UNIVERSITY AVENUE,WEST 180 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4518555,Sedan,Bike,,, +04/06/2022,17:00,STATEN ISLAND,10304,40.62817,-74.074394,"(40.62817, -74.074394)",,,346 FRONT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518544,Sedan,Sedan,,, +06/15/2022,5:00,MANHATTAN,10034,40.865105,-73.91846,"(40.865105, -73.91846)",POST AVENUE,10 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4544321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,4:40,,,40.71346,-73.91522,"(40.71346, -73.91522)",FLUSHING AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544345,Sedan,,,, +07/01/2022,18:29,STATEN ISLAND,10312,40.534325,-74.193016,"(40.534325, -74.193016)",HUGUENOT AVENUE,DRUMGOOLE ROAD EAST,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4544363,Station Wagon/Sport Utility Vehicle,Ambulance,Sedan,, +07/05/2022,8:00,QUEENS,11418,40.705666,-73.818474,"(40.705666, -73.818474)",VANWYCK EXPRESSWAY,87 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543618,Sedan,,,, +07/04/2022,16:07,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,10:11,,,40.722496,-73.940414,"(40.722496, -73.940414)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544282,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,17:40,QUEENS,11105,40.77274,-73.91149,"(40.77274, -73.91149)",,,23-03 35 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4522349,Station Wagon/Sport Utility Vehicle,Bike,,, +04/17/2022,4:22,BRONX,10463,40.876976,-73.90584,"(40.876976, -73.90584)",,,188 WEST 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522397,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,16:15,QUEENS,11368,,,,,,109-25 46 AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4522370,Sedan,Sedan,,, +04/20/2022,11:20,BRONX,10462,40.850895,-73.86175,"(40.850895, -73.86175)",FOWLER AVENUE,NEILL AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4522398,Sedan,E-Scooter,,, +04/25/2022,13:29,QUEENS,11420,40.67447,-73.802605,"(40.67447, -73.802605)",,,135-15 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4522345,Station Wagon/Sport Utility Vehicle,Van,,, +04/18/2022,22:35,BRONX,10463,40.888336,-73.91349,"(40.888336, -73.91349)",,,660 WEST 237 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4522401,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,14:07,,,40.573013,-73.993835,"(40.573013, -73.993835)",SURF AVENUE,,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4522379,Sedan,Bike,,, +07/05/2022,17:57,MANHATTAN,10038,40.709522,-74.00167,"(40.709522, -74.00167)",PEARL STREET,DOVER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544049,E-Bike,,,, +07/05/2022,4:00,MANHATTAN,10031,40.827152,-73.946205,"(40.827152, -73.946205)",WEST 148 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4543595,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,14:20,BROOKLYN,11209,40.620434,-74.024475,"(40.620434, -74.024475)",86 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,22:00,STATEN ISLAND,10304,40.63206,-74.07724,"(40.63206, -74.07724)",,,247 VANDUZER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544159,Sedan,,,, +07/05/2022,23:30,BROOKLYN,11236,40.64569,-73.91204,"(40.64569, -73.91204)",,,933 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544150,Sedan,,,, +07/05/2022,10:00,BROOKLYN,11223,40.59034,-73.972084,"(40.59034, -73.972084)",AVENUE X,WEST 2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543556,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/10/2022,18:30,,,,,,SOUTH CONDUIT AVENUE,135 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4517820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/10/2022,14:15,MANHATTAN,10035,40.79563,-73.93242,"(40.79563, -73.93242)",,,517 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518034,Sedan,Sedan,,, +04/10/2022,12:07,QUEENS,11691,40.602356,-73.75953,"(40.602356, -73.75953)",GIPSON STREET,CORNAGA AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4517924,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,13:31,BRONX,10475,40.869423,-73.825745,"(40.869423, -73.825745)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518417,Station Wagon/Sport Utility Vehicle,,,, +03/30/2022,13:53,STATEN ISLAND,10301,40.64381,-74.076385,"(40.64381, -74.076385)",,,36 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518382,Sedan,Bus,,, +04/10/2022,1:05,BROOKLYN,11236,40.647724,-73.90522,"(40.647724, -73.90522)",,,1285 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4517471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,4:40,MANHATTAN,10075,40.773598,-73.9578,"(40.773598, -73.9578)",3 AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517880,Taxi,,,, +04/10/2022,4:36,QUEENS,11418,40.70536,-73.83766,"(40.70536, -73.83766)",,,115-58 PARK LANE SOUTH,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4517961,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/06/2022,15:07,BRONX,10455,40.817127,-73.90509,"(40.817127, -73.90509)",,,685 TINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518490,Sedan,Sedan,,, +04/10/2022,2:15,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",FLATBUSH AVENUE,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4517520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/10/2022,19:24,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517978,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,16:04,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,Unspecified,,,4518413,Sedan,Sedan,Sedan,, +04/08/2022,15:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518460,Sedan,Sedan,,, +04/09/2022,10:30,QUEENS,11694,40.58393,-73.83093,"(40.58393, -73.83093)",BEACH CHANNEL DRIVE,BEACH 108 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518301,Pick-up Truck,,,, +04/10/2022,0:40,QUEENS,11372,40.756535,-73.876076,"(40.756535, -73.876076)",NORTHERN BOULEVARD,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517550,Sedan,Sedan,,, +04/10/2022,13:09,QUEENS,11362,40.753647,-73.7444,"(40.753647, -73.7444)",LONG ISLAND EXPRESSWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,9:35,BRONX,10468,40.86247,-73.90029,"(40.86247, -73.90029)",WALTON AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,0:28,QUEENS,11432,40.711193,-73.79172,"(40.711193, -73.79172)",,,170-25 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518122,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,12:07,BRONX,10473,40.822468,-73.86733,"(40.822468, -73.86733)",,,839 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518257,Sedan,Sedan,,, +04/08/2022,17:16,,,40.82439,-73.8363,"(40.82439, -73.8363)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,18:30,QUEENS,11004,40.737362,-73.70817,"(40.737362, -73.70817)",,,260-04 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517766,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,2:55,,,40.67224,-73.96104,"(40.67224, -73.96104)",CLASSON AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4517674,Sedan,Sedan,,, +04/08/2022,0:53,,,40.764362,-73.96162,"(40.764362, -73.96162)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518530,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,10:13,,,40.685112,-73.94717,"(40.685112, -73.94717)",MADISON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517753,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,1:11,QUEENS,11368,40.747253,-73.86252,"(40.747253, -73.86252)",,,102-08 43 AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4517699,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/10/2022,16:40,,,40.83142,-73.92643,"(40.83142, -73.92643)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518431,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,17:18,,,,,,WEST 34 STREET,,,1,0,0,0,0,0,1,0,Tinted Windows,Unspecified,,,,4472613,Sedan,Bus,,, +04/10/2022,10:15,BROOKLYN,11228,40.617886,-74.01712,"(40.617886, -74.01712)",84 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,14:00,BRONX,10475,40.882965,-73.82563,"(40.882965, -73.82563)",,,2310 TILLOTSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518274,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,5:00,QUEENS,11418,40.701218,-73.81622,"(40.701218, -73.81622)",,,89-00 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4517950,Sedan,,,, +04/10/2022,6:00,BROOKLYN,11207,40.66768,-73.896,"(40.66768, -73.896)",,,611 BLAKE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4518011,Sedan,,,, +04/08/2022,12:18,QUEENS,11372,40.748188,-73.895,"(40.748188, -73.895)",,,70-48 BROADWAY,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518293,Station Wagon/Sport Utility Vehicle,Bike,,, +04/10/2022,11:04,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4518142,Sedan,Sedan,Sedan,, +04/10/2022,7:20,BRONX,10462,40.833973,-73.85377,"(40.833973, -73.85377)",,,2126 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4518282,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/10/2022,4:52,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517657,Sedan,Sedan,,, +04/10/2022,15:57,,,40.785038,-73.94104,"(40.785038, -73.94104)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4517772,Sedan,Sedan,,, +04/10/2022,20:16,QUEENS,11435,40.699627,-73.80529,"(40.699627, -73.80529)",148 STREET,94 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517896,Sedan,Ambulance,,, +04/10/2022,19:35,BROOKLYN,11219,40.640694,-73.99698,"(40.640694, -73.99698)",10 AVENUE,46 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4518509,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,9:20,BROOKLYN,11224,40.576275,-73.97654,"(40.576275, -73.97654)",,,2900 WEST 8 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518121,,,,, +04/06/2022,13:03,QUEENS,11379,40.712543,-73.872536,"(40.712543, -73.872536)",,,79-50 67 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4518372,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,20:30,BROOKLYN,11210,40.635506,-73.956245,"(40.635506, -73.956245)",FARRAGUT ROAD,EAST 22 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4518531,Sedan,,,, +04/10/2022,18:43,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517791,Sedan,Sedan,,, +04/10/2022,15:40,MANHATTAN,10025,40.79553,-73.96559,"(40.79553, -73.96559)",,,808 COLUMBUS AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4517846,Sedan,Bike,,, +04/04/2022,15:00,BRONX,10474,40.81314,-73.88708,"(40.81314, -73.88708)",,,644 COSTER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4518440,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +04/10/2022,12:50,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517706,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,16:50,,,40.847897,-73.94523,"(40.847897, -73.94523)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518333,Sedan,,,, +04/10/2022,20:30,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",AVENUE N,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518186,Sedan,,,, +04/09/2022,8:32,BRONX,10454,40.80906,-73.90755,"(40.80906, -73.90755)",EAST 144 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inexperience,,,,4518267,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,13:10,,,40.723835,-73.97357,"(40.723835, -73.97357)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518325,Sedan,Sedan,,, +03/16/2022,23:00,,,40.840786,-73.9232,"(40.840786, -73.9232)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518423,Sedan,Sedan,,, +04/10/2022,1:15,,,40.626854,-74.13319,"(40.626854, -74.13319)",,,27 HAMLIN PLACE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4517936,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +04/04/2022,17:02,QUEENS,11427,40.720085,-73.75873,"(40.720085, -73.75873)",,,88-40 FRANCIS LEWIS BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4518387,Sedan,Tractor Truck Gasoline,Sedan,Sedan, +04/10/2022,14:10,,,40.783333,-73.94368,"(40.783333, -73.94368)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,22:55,BROOKLYN,11215,40.660576,-73.99065,"(40.660576, -73.99065)",20 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4518058,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/06/2022,0:35,MANHATTAN,10029,40.794907,-73.94856,"(40.794907, -73.94856)",EAST 108 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518498,Sedan,Bike,,, +04/10/2022,21:36,,,40.691765,-73.99992,"(40.691765, -73.99992)",ATLANTIC AVENUE,COLUMBIA STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Aggressive Driving/Road Rage,,,,4517797,Sedan,Sedan,,, +04/10/2022,18:22,,,40.694,-73.92351,"(40.694, -73.92351)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4518343,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/05/2022,15:10,BROOKLYN,11212,40.6691,-73.909615,"(40.6691, -73.909615)",,,109 THATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518540,Sedan,Box Truck,,, +04/10/2022,2:05,MANHATTAN,10037,40.80822,-73.93673,"(40.80822, -73.93673)",PARK AVENUE,EAST 130 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518024,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/10/2022,11:07,MANHATTAN,10004,40.70646,-74.01511,"(40.70646, -74.01511)",MORRIS STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517886,Sedan,Sedan,,, +04/10/2022,4:59,MANHATTAN,10035,40.799484,-73.92929,"(40.799484, -73.92929)",,,30 PALADINO AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4518025,Sedan,Sedan,Sedan,, +04/10/2022,2:19,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4517969,Sedan,Sedan,,, +04/08/2022,4:02,BRONX,10469,40.87801,-73.853134,"(40.87801, -73.853134)",,,1106 EAST 216 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4518407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/10/2022,1:30,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517474,Sedan,,,, +04/09/2022,13:35,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4518450,Sedan,Sedan,Sedan,, +04/10/2022,13:00,QUEENS,11417,40.680668,-73.836334,"(40.680668, -73.836334)",104 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4517833,Sedan,Pick-up Truck,Sedan,, +04/09/2022,4:47,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518310,Van,Sedan,,, +03/06/2022,9:30,STATEN ISLAND,10310,40.63017,-74.113556,"(40.63017, -74.113556)",MYRTLE AVENUE,NORTH BURGHER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518539,Sedan,,,, +04/08/2022,1:41,,,40.579803,-73.97184,"(40.579803, -73.97184)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4518381,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/10/2022,3:58,BROOKLYN,11221,40.69193,-73.91031,"(40.69193, -73.91031)",WILSON AVENUE,WEIRFIELD STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4517523,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,17:47,MANHATTAN,10027,40.80884,-73.96582,"(40.80884, -73.96582)",RIVERSIDE DRIVE,WEST 116 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518415,Sedan,Bus,,, +04/10/2022,17:44,BROOKLYN,11201,40.687675,-73.99335,"(40.687675, -73.99335)",CONGRESS STREET,COURT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517796,Sedan,,,, +04/10/2022,15:26,BRONX,10461,40.84486,-73.83083,"(40.84486, -73.83083)",,,1650 CROSBY AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517970,Sedan,Pick-up Truck,,, +04/02/2022,19:00,STATEN ISLAND,10312,40.546135,-74.17407,"(40.546135, -74.17407)",RYE AVENUE,MOFFETT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4518470,Sedan,Sedan,Pick-up Truck,, +04/10/2022,2:13,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517870,Sedan,Sedan,,, +04/09/2022,23:40,,,40.76349,-73.86079,"(40.76349, -73.86079)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518299,Sedan,Sedan,,, +03/30/2022,10:25,,,40.698696,-73.93477,"(40.698696, -73.93477)",MELROSE STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4518341,Bike,,,, +04/10/2022,18:35,BROOKLYN,11217,40.687756,-73.97921,"(40.687756, -73.97921)",,,75 ROCKWELL PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517929,Sedan,Sedan,,, +04/10/2022,11:05,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518434,Sedan,Tractor Truck Diesel,,, +04/10/2022,0:30,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517705,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,15:10,,,,,,MAIN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4517758,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,18:36,BROOKLYN,11234,40.62356,-73.927376,"(40.62356, -73.927376)",UTICA AVENUE,AVENUE L,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518156,Sedan,Pick-up Truck,,, +04/10/2022,21:51,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",UNION AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517827,Taxi,Sedan,,, +07/11/2021,9:00,,,,,,BAY PARKWAY,SHORE PARKWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4437945,Bike,,,, +04/07/2022,16:34,BRONX,10456,40.831184,-73.913284,"(40.831184, -73.913284)",EAST 167 STREET,FINDLAY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518285,Sedan,E-Bike,,, +03/18/2022,23:19,,,40.717022,-73.94913,"(40.717022, -73.94913)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518489,Pick-up Truck,Sedan,,, +07/05/2022,10:15,BROOKLYN,11213,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,TROY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544298,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,18:04,MANHATTAN,10016,40.748302,-73.97835,"(40.748302, -73.97835)",EAST 37 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518033,Sedan,Taxi,,, +04/10/2022,10:34,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518204,Station Wagon/Sport Utility Vehicle,Van,,, +04/10/2022,13:52,,,40.779106,-73.81729,"(40.779106, -73.81729)",149 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4517732,Sedan,Motorbike,,, +04/10/2022,16:09,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4517895,Sedan,Sedan,,, +04/10/2022,14:00,QUEENS,11385,40.705593,-73.88252,"(40.705593, -73.88252)",,,70-01 70 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,13:45,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,WEBSTER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518422,Sedan,Bike,,, +04/08/2022,20:00,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518294,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,9:50,BRONX,10458,40.855705,-73.882744,"(40.855705, -73.882744)",,,2475 CROTONA AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4517913,Station Wagon/Sport Utility Vehicle,Bike,,, +04/10/2022,16:40,BROOKLYN,11219,40.64029,-73.994804,"(40.64029, -73.994804)",FORT HAMILTON PARKWAY,45 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4518510,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,23:40,,,40.65626,-73.950165,"(40.65626, -73.950165)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4518362,Motorcycle,Sedan,,, +04/10/2022,4:30,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518135,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,4:19,MANHATTAN,10017,40.75348,-73.980896,"(40.75348, -73.980896)",EAST 42 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4517538,,,,, +04/10/2022,1:02,BRONX,10473,40.81269,-73.85701,"(40.81269, -73.85701)",,,354 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4518281,Sedan,Sedan,,, +04/10/2022,16:12,BROOKLYN,11228,40.62345,-74.01132,"(40.62345, -74.01132)",,,7405 11 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517784,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,15:16,MANHATTAN,10037,40.814674,-73.93822,"(40.814674, -73.93822)",,,46 WEST 137 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518220,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,20:55,,,40.710316,-73.77173,"(40.710316, -73.77173)",JAMAICA AVENUE,187 PLACE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4518039,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,14:20,,,40.60805,-74.15736,"(40.60805, -74.15736)",VICTORY BOULEVARD,MORANI STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4517945,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/27/2022,16:18,BRONX,10451,40.82751,-73.92495,"(40.82751, -73.92495)",EAST 161 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4518428,Sedan,Sedan,,, +04/10/2022,4:45,,,40.646927,-73.88074,"(40.646927, -73.88074)",PENNSYLVANIA AVENUE,FREEPORT LOOP,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518009,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,10:12,MANHATTAN,10027,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518363,Sedan,Bus,,, +04/10/2022,4:05,BROOKLYN,11211,40.716877,-73.9465,"(40.716877, -73.9465)",,,367 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4517845,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,21:00,BRONX,10473,0,0,"(0.0, 0.0)",,,948 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518288,Sedan,,,, +04/10/2022,16:30,MANHATTAN,10009,40.72082,-73.974884,"(40.72082, -73.974884)",,,701 FDR DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518326,Sedan,,,, +10/22/2021,17:11,QUEENS,11434,,,,144 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4472881,Bus,Sedan,,, +01/20/2022,18:58,,,,,,PELHAM PARKWAY,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496187,Sedan,Sedan,,, +04/10/2022,3:49,BRONX,10469,40.872837,-73.852196,"(40.872837, -73.852196)",,,1212 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517908,Sedan,,,, +04/10/2022,21:00,,,40.825954,-73.94337,"(40.825954, -73.94337)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518256,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/19/2021,20:20,,,40.743477,-73.73286,"(40.743477, -73.73286)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4459828,Sedan,Sedan,Sedan,, +04/10/2022,0:25,BRONX,10458,40.855045,-73.89045,"(40.855045, -73.89045)",3 AVENUE,LORILLARD PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4517600,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,15:56,BROOKLYN,11208,40.668095,-73.880226,"(40.668095, -73.880226)",,,631 ESSEX STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518016,Sedan,Sedan,,, +10/25/2021,7:16,QUEENS,11370,,,,,,25-01 85 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471156,Sedan,,,, +10/29/2021,15:28,BROOKLYN,11229,40.59787,-73.93362,"(40.59787, -73.93362)",,,2271 KNAPP STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472281,Sedan,Sedan,,, +10/29/2021,12:00,BROOKLYN,11211,40.7138,-73.93319,"(40.7138, -73.93319)",GRAND STREET,VANDERVORT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4472801,Moped,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,1:10,,,40.71699,-73.82402,"(40.71699, -73.82402)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471549,Taxi,,,, +10/24/2021,23:43,,,,,,PARK PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472594,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,21:30,QUEENS,11102,40.770306,-73.91901,"(40.770306, -73.91901)",30 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472259,Sedan,,,, +10/28/2021,22:22,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471966,Sedan,Sedan,,, +10/27/2021,18:40,,,40.602192,-73.75523,"(40.602192, -73.75523)",CORNAGA AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471641,Sedan,,,, +10/27/2021,12:05,QUEENS,11385,40.702835,-73.86983,"(40.702835, -73.86983)",MYRTLE AVENUE,79 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472489,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,18:00,BROOKLYN,11215,40.66726,-73.98931,"(40.66726, -73.98931)",,,243 13 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471596,Sedan,Sedan,,, +10/28/2021,11:07,BROOKLYN,11215,40.667973,-73.99586,"(40.667973, -73.99586)",HAMILTON AVENUE,16 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4472084,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/28/2021,22:37,QUEENS,11411,40.694042,-73.73665,"(40.694042, -73.73665)",LINDEN BOULEVARD,224 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471947,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,20:43,BROOKLYN,11249,40.72029,-73.95723,"(40.72029, -73.95723)",NORTH 10 STREET,BERRY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472682,Sedan,Sedan,,, +10/29/2021,9:03,MANHATTAN,10002,40.712307,-73.99437,"(40.712307, -73.99437)",MADISON STREET,MARKET STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4472853,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,22:58,,,40.828407,-73.93125,"(40.828407, -73.93125)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4471933,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,6:30,BROOKLYN,11209,40.62871,-74.02003,"(40.62871, -74.02003)",,,7414 6 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472257,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,19:00,,,40.574867,-74.00069,"(40.574867, -74.00069)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471833,Sedan,,,, +10/28/2021,0:01,QUEENS,11423,40.70967,-73.77404,"(40.70967, -73.77404)",185 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4472806,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,8:00,MANHATTAN,10013,40.719448,-74.0103,"(40.719448, -74.0103)",FRANKLIN STREET,GREENWICH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471810,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/27/2021,0:10,BRONX,10474,40.815,-73.89402,"(40.815, -73.89402)",LONGWOOD AVENUE,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471229,Sedan,,,, +10/23/2021,22:25,,,,,,DECATUR STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472532,Sedan,,,, +10/29/2021,18:44,BROOKLYN,11215,40.67285,-73.97339,"(40.67285, -73.97339)",8 AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472160,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/29/2021,11:44,BROOKLYN,11236,40.63393,-73.89396,"(40.63393, -73.89396)",AVENUE N,EAST 94 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472123,Taxi,Sedan,,, +10/22/2021,19:04,,,40.7539366,-73.8602884,"(40.7539366, -73.8602884)",108 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469967,Sedan,Bus,,, +10/28/2021,13:20,,,40.755486,-73.82472,"(40.755486, -73.82472)",KISSENA BOULEVARD,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4472320,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/27/2021,15:40,QUEENS,11004,40.73817,-73.71352,"(40.73817, -73.71352)",255 STREET,83 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,,,,,4471576,Sedan,,,, +10/29/2021,11:40,QUEENS,11413,40.6755,-73.73864,"(40.6755, -73.73864)",MERRICK BOULEVARD,231 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472086,Sedan,Sedan,,, +10/28/2021,8:30,,,40.748306,-73.87104,"(40.748306, -73.87104)",95 STREET,40 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471952,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,8:40,QUEENS,11413,40.666428,-73.75677,"(40.666428, -73.75677)",,,219-25 NORTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4472013,Pick-up Truck,Sedan,,, +10/28/2021,7:30,,,40.734657,-74.00475,"(40.734657, -74.00475)",CHARLES STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471693,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,16:38,,,40.67002,-73.78312,"(40.67002, -73.78312)",ROCKAWAY BOULEVARD,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4472128,Sedan,Sedan,,, +10/29/2021,14:13,BROOKLYN,11234,40.61733,-73.93485,"(40.61733, -73.93485)",,,1648 KIMBALL STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4472198,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,10:00,,,40.64367,-74.015495,"(40.64367, -74.015495)",55 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472501,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,9:30,BROOKLYN,11206,40.712467,-73.93556,"(40.712467, -73.93556)",,,344 MAUJER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471612,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,19:10,QUEENS,11432,40.70864,-73.78715,"(40.70864, -73.78715)",,,91-17 173 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:38,,,40.841133,-73.924,"(40.841133, -73.924)",WEST 170 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472432,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,8:30,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471786,Sedan,Sedan,,, +10/28/2021,19:32,BROOKLYN,11220,40.63721,-74.02221,"(40.63721, -74.02221)",4 AVENUE,SHORE ROAD DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471868,Sedan,,,, +10/28/2021,9:30,BROOKLYN,11208,,,,LINDEN BOULEVARD,ELDERT lane,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4471905,Sedan,,,, +10/29/2021,10:45,,,40.870014,-73.832436,"(40.870014, -73.832436)",BAYCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4472448,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/27/2021,5:32,BROOKLYN,11229,40.609642,-73.9456,"(40.609642, -73.9456)",EAST 28 STREET,QUENTIN ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471340,Sedan,,,, +10/29/2021,22:15,,,40.67834,-73.883316,"(40.67834, -73.883316)",LINWOOD STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4472744,Station Wagon/Sport Utility Vehicle,Dump,,, +10/27/2021,11:40,BROOKLYN,11217,40.67671,-73.97711,"(40.67671, -73.97711)",LINCOLN PLACE,6 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472054,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,11:53,,,40.714333,-73.92946,"(40.714333, -73.92946)",METROPOLITAN AVENUE,VARICK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471620,Sedan,Sedan,,, +10/27/2021,11:30,MANHATTAN,10027,40.81861,-73.96096,"(40.81861, -73.96096)",HENRY HUDSON PARKWAY,WEST 125 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471831,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,10:30,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,15:00,BROOKLYN,11208,40.688084,-73.876686,"(40.688084, -73.876686)",JAMAICA AVENUE,CHESTNUT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4472752,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/29/2021,1:15,BRONX,10473,40.823387,-73.86461,"(40.823387, -73.86461)",,,1770 STORY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4472045,Sedan,,,, +10/29/2021,23:35,QUEENS,11354,40.763382,-73.8303,"(40.763382, -73.8303)",NORTHERN BOULEVARD,LINDEN PLACE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4472297,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,17:30,MANHATTAN,10001,,,,WEST 34 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472116,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,19:52,,,,,,HUTCHINSON RIVER PARKWAY,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4472240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,15:00,,,40.74088,-73.737015,"(40.74088, -73.737015)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517765,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,16:20,,,40.807213,-73.906334,"(40.807213, -73.906334)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Outside Car Distraction,Unsafe Speed,Unspecified,,4471859,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/29/2021,16:30,QUEENS,11426,40.72341,-73.72733,"(40.72341, -73.72733)",JAMAICA AVENUE,240 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472338,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,14:45,,,40.77162,-73.87477,"(40.77162, -73.87477)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,13:40,,,40.65907,-73.98597,"(40.65907, -73.98597)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472222,Sedan,Sedan,,, +10/29/2021,19:10,BROOKLYN,11203,40.652447,-73.93917,"(40.652447, -73.93917)",,,873 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,5:59,BRONX,10458,40.867836,-73.89034,"(40.867836, -73.89034)",,,2785 BRIGGS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471375,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,17:45,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4471990,Sedan,,,, +10/27/2021,17:00,,,40.68879,-73.91691,"(40.68879, -73.91691)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471989,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/27/2021,10:46,,,40.784534,-73.9736,"(40.784534, -73.9736)",WEST 83 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4471529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:00,,,40.732937,-73.920395,"(40.732937, -73.920395)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472138,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,15:21,BROOKLYN,11228,40.619114,-74.020676,"(40.619114, -74.020676)",,,912 85 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4472155,Sedan,,,, +10/27/2021,18:22,BROOKLYN,11217,40.685074,-73.9779,"(40.685074, -73.9779)",ASHLAND PLACE,HANSON PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4471647,Sedan,Sedan,,, +10/29/2021,13:35,BROOKLYN,11223,40.60753,-73.96482,"(40.60753, -73.96482)",QUENTIN ROAD,EAST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4472105,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/27/2021,18:55,BROOKLYN,11216,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472570,Sedan,,,, +10/28/2021,9:00,BRONX,10467,40.87869,-73.86165,"(40.87869, -73.86165)",,,3611 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472409,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,4:50,,,,,,GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4472077,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,18:45,BROOKLYN,11221,,,,LEXINGTON AVENUE,PATCHEN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472602,,,,, +10/26/2021,17:55,QUEENS,11102,40.770306,-73.91901,"(40.770306, -73.91901)",30 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472378,Sedan,,,, +10/28/2021,20:00,QUEENS,11377,40.748318,-73.89898,"(40.748318, -73.89898)",,,37-43 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472469,Sedan,,,, +10/29/2021,12:56,BROOKLYN,11218,40.640686,-73.98185,"(40.640686, -73.98185)",,,1411 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472870,Sedan,Sedan,,, +10/28/2021,0:00,QUEENS,11422,40.664654,-73.73607,"(40.664654, -73.73607)",243 STREET,140 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471940,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,19:29,BROOKLYN,11238,40.682594,-73.962654,"(40.682594, -73.962654)",FULTON STREET,CAMBRIDGE PLACE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4472143,Taxi,Sedan,Bike,, +10/28/2021,6:42,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471662,Sedan,Sedan,,, +10/29/2021,9:07,BRONX,10451,40.820087,-73.921005,"(40.820087, -73.921005)",,,277 EAST 153 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472328,Sedan,Sedan,,, +09/21/2021,21:00,STATEN ISLAND,10304,,,,,,417 NECKAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472638,Sedan,Sedan,,, +10/27/2021,11:00,BRONX,10458,40.862064,-73.89484,"(40.862064, -73.89484)",TIEBOUT AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471701,Sedan,,,, +10/29/2021,2:55,,,40.73902,-73.97335,"(40.73902, -73.97335)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4472009,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/29/2021,21:45,BROOKLYN,11206,40.707333,-73.94321,"(40.707333, -73.94321)",MONTROSE AVENUE,GRAHAM AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472821,,,,, +06/18/2021,21:15,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4429181,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,23:19,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4431182,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,16:01,QUEENS,11416,40.681984,-73.84977,"(40.681984, -73.84977)",90 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435509,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2021,1:35,,,0,0,"(0.0, 0.0)",WHITESTONE EXPRESSWAY,20 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4435581,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,19:59,BROOKLYN,11213,40.676743,-73.93316,"(40.676743, -73.93316)",PACIFIC STREET,SCHENECTADY AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437195,Sedan,E-Bike,,, +07/16/2021,2:10,,,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4438292,Sedan,,,, +10/27/2021,12:30,BRONX,10458,40.857525,-73.8818,"(40.857525, -73.8818)",EAST FORDHAM ROAD,CROTONA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471717,,,,, +07/15/2021,15:20,QUEENS,11423,40.712772,-73.77201,"(40.712772, -73.77201)",188 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438298,Sedan,,,, +07/16/2021,3:00,,,40.704422,-73.792854,"(40.704422, -73.792854)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4438299,Sedan,Sedan,,, +07/15/2021,8:37,,,40.704647,-73.77192,"(40.704647, -73.77192)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438297,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,18:49,,,40.714695,-73.77531,"(40.714695, -73.77531)",HILLSIDE AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4438300,Bus,Sedan,,, +07/10/2021,12:50,MANHATTAN,10012,40.723797,-74.000374,"(40.723797, -74.000374)",SPRING STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437341,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/14/2021,19:00,QUEENS,11432,40.707336,-73.7961,"(40.707336, -73.7961)",,,89-54 165 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4438296,Open Body,Sedan,,, +07/15/2021,19:50,,,40.704403,-73.814445,"(40.704403, -73.814445)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4438303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,19:35,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",MAIN STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438304,Sedan,Sedan,,, +10/27/2021,8:00,,,40.660954,-73.960686,"(40.660954, -73.960686)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4471499,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,14:05,,,,,,EAST 76 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472545,Sedan,Box Truck,,, +10/29/2021,10:05,MANHATTAN,10012,40.72271,-73.998116,"(40.72271, -73.998116)",,,80 SPRING STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472403,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,15:00,BRONX,10459,,,,TIFFANY STREET,FOX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472657,Multi-Wheeled Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,9:10,BRONX,10458,40.85876,-73.89736,"(40.85876, -73.89736)",EAST 184 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4472022,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/27/2021,0:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471430,Taxi,,,, +10/29/2021,0:18,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4472786,Sedan,Sedan,Sedan,, +10/28/2021,14:15,QUEENS,11413,40.667038,-73.757324,"(40.667038, -73.757324)",SPRINGFIELD BOULEVARD,144 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471882,Sedan,,,, +10/28/2021,13:47,STATEN ISLAND,10304,40.58296,-74.112114,"(40.58296, -74.112114)",,,424 FLAGG PLACE,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4471898,Sedan,,,, +10/29/2021,4:20,,,40.66652,-73.81354,"(40.66652, -73.81354)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471919,Sedan,,,, +10/29/2021,13:30,BROOKLYN,11232,40.65476,-74.00724,"(40.65476, -74.00724)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472170,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,0:32,QUEENS,11368,40.75326,-73.864456,"(40.75326, -73.864456)",103 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4472041,Sedan,,,, +10/27/2021,11:15,QUEENS,11420,40.677,-73.81965,"(40.677, -73.81965)",LEFFERTS BOULEVARD,115 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471489,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,0:08,QUEENS,11416,40.68158,-73.84759,"(40.68158, -73.84759)",92 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471449,Pick-up Truck,,,, +07/16/2021,11:57,BROOKLYN,11212,40.674477,-73.904205,"(40.674477, -73.904205)",,,25 JUNIUS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,19:12,BROOKLYN,11231,40.681934,-74.00572,"(40.681934, -74.00572)",HAMILTON AVENUE,WOODHULL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438239,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,21:10,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:57,,,40.742493,-73.87337,"(40.742493, -73.87337)",CORONA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438013,Sedan,,,, +07/16/2021,12:25,,,40.804993,-73.911354,"(40.804993, -73.911354)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437725,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:42,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,Unspecified,,4437398,Station Wagon/Sport Utility Vehicle,Taxi,Taxi,Sedan, +07/16/2021,13:06,BRONX,10472,40.83008,-73.85377,"(40.83008, -73.85377)",OLMSTEAD AVENUE,HAVILAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437935,Sedan,Pick-up Truck,,, +07/14/2021,15:22,MANHATTAN,10021,40.770817,-73.961006,"(40.770817, -73.961006)",,,165 EAST 73 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437004,Scooter,Station Wagon/Sport Utility Vehicle,,, +06/10/2021,15:15,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437512,Sedan,,,, +07/15/2021,11:30,BRONX,10452,40.840176,-73.92528,"(40.840176, -73.92528)",WEST 169 STREET,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437380,Bus,Sedan,,, +07/14/2021,16:58,BRONX,10467,40.881783,-73.86536,"(40.881783, -73.86536)",WILLETT AVENUE,EAST 216 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4438093,Sedan,Moped,,, +07/13/2021,14:00,,,40.720005,-73.78463,"(40.720005, -73.78463)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438282,Sedan,Sedan,,, +07/08/2021,7:23,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437366,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,16:35,QUEENS,11434,40.66705,-73.77417,"(40.66705, -73.77417)",176 STREET,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437721,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,13:20,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437261,Sedan,Dump,,, +07/16/2021,18:15,,,40.821106,-73.93575,"(40.821106, -73.93575)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438243,Van,Sedan,,, +07/15/2021,10:30,BROOKLYN,11201,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,GOLD STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4437551,Station Wagon/Sport Utility Vehicle,Bus,,, +07/15/2021,13:14,BROOKLYN,11223,40.60824,-73.96206,"(40.60824, -73.96206)",,,2020 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437501,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,14:55,,,40.8494,-73.90304,"(40.8494, -73.90304)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437245,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:00,,,40.71143,-73.72845,"(40.71143, -73.72845)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4436654,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/15/2021,14:00,BROOKLYN,11208,40.676327,-73.86547,"(40.676327, -73.86547)",GRANT AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437966,Sedan,Sedan,,, +07/16/2021,15:40,,,40.690926,-73.92066,"(40.690926, -73.92066)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437595,Sedan,Sedan,,, +07/15/2021,19:00,,,40.735844,-74.00597,"(40.735844, -74.00597)",HUDSON STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,,,,4437794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,7:27,QUEENS,11106,40.76156,-73.93518,"(40.76156, -73.93518)",,,34-41 21 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436986,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:05,BROOKLYN,11219,40.632782,-73.98537,"(40.632782, -73.98537)",,,1555 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,16:58,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437385,Sedan,,,, +07/15/2021,14:28,,,40.64644,-73.91289,"(40.64644, -73.91289)",REMSEN AVENUE,AVENUE D,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4437441,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,9:08,,,40.848263,-73.92049,"(40.848263, -73.92049)",MONTGOMERY AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4437131,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,15:45,BROOKLYN,11210,40.621857,-73.93823,"(40.621857, -73.93823)",EAST 38 STREET,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437556,Sedan,Sedan,,, +07/14/2021,17:17,,,40.843174,-73.91196,"(40.843174, -73.91196)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437646,Sedan,,,, +07/15/2021,12:30,BRONX,10473,40.821617,-73.85819,"(40.821617, -73.85819)",,,731 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4437939,Taxi,,,, +07/14/2021,20:47,,,,,,SHELL ROAD,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,10:44,MANHATTAN,10010,40.73975,-73.98133,"(40.73975, -73.98133)",,,235 EAST 25 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437823,Sedan,Sedan,,, +07/16/2021,4:15,QUEENS,11106,40.764347,-73.92347,"(40.764347, -73.92347)",31 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437891,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,14:00,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437220,Tractor Truck Diesel,,,, +07/15/2021,15:30,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437291,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,20:22,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",WATTS STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437339,Sedan,,,, +07/13/2021,22:19,MANHATTAN,10009,40.72246,-73.98446,"(40.72246, -73.98446)",,,182 EAST 2 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,4:57,BRONX,10469,40.86296,-73.85391,"(40.86296, -73.85391)",MACE AVENUE,HERING AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4436681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,14:58,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438179,Tractor Truck Diesel,Sedan,,, +07/16/2021,8:00,BROOKLYN,11209,40.616547,-74.02406,"(40.616547, -74.02406)",,,104 BATTERY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4437482,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,12:25,BRONX,10461,40.838913,-73.84093,"(40.838913, -73.84093)",FERRIS PLACE,BUTLER PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437037,Bus,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,23:00,,,40.71886,-73.97492,"(40.71886, -73.97492)",EAST HOUSTON STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4437259,Taxi,,,, +07/16/2021,9:24,BRONX,10453,40.853474,-73.906456,"(40.853474, -73.906456)",EAST BURNSIDE AVENUE,WALTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437412,Sedan,,,, +07/16/2021,13:55,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",79 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438196,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,17:55,BRONX,10459,40.820515,-73.89998,"(40.820515, -73.89998)",,,871 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4437473,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,23:57,,,40.751575,-73.982285,"(40.751575, -73.982285)",5 AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4437775,Sedan,,,, +05/27/2021,4:08,,,40.667778,-73.80127,"(40.667778, -73.80127)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,,4437544,Garbage or Refuse,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/10/2021,18:09,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437697,Sedan,Sedan,,, +07/15/2021,15:20,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/16/2021,16:50,MANHATTAN,10018,40.7517,-73.986404,"(40.7517, -73.986404)",WEST 37 STREET,AVENUE OF THE AMERICAS,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437815,Pick-up Truck,MOPED,,, +07/14/2021,17:24,BROOKLYN,11236,40.640724,-73.883446,"(40.640724, -73.883446)",AVENUE N,EAST 108 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,12:00,QUEENS,11378,40.728283,-73.89047,"(40.728283, -73.89047)",,,72-10 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437674,Sedan,,,, +07/07/2021,11:30,BROOKLYN,11249,40.702503,-73.9624,"(40.702503, -73.9624)",KEAP STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:05,,,40.696163,-73.76881,"(40.696163, -73.76881)",QUENCER ROAD,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4436754,Sedan,E-Bike,Sedan,, +07/16/2021,6:55,BROOKLYN,11234,40.627987,-73.93078,"(40.627987, -73.93078)",AVENUE J,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437418,,,,, +07/15/2021,20:10,,,40.73251,-73.857056,"(40.73251, -73.857056)",63 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437417,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,1:15,BROOKLYN,11226,40.651577,-73.95214,"(40.651577, -73.95214)",,,193 MARTENSE STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,,4436933,Sedan,Sedan,Sedan,Sedan, +07/14/2021,11:15,BROOKLYN,11203,40.660496,-73.9398,"(40.660496, -73.9398)",,,578 ALBANY AVENUE,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4437566,E-Bike,DOLLAR VAN,,, +07/16/2021,10:00,BROOKLYN,11207,40.69169,-73.90585,"(40.69169, -73.90585)",SCHAEFER STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437589,Sedan,,,, +07/14/2021,21:42,QUEENS,11417,40.680313,-73.842026,"(40.680313, -73.842026)",ROCKAWAY BOULEVARD,97 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437083,Ambulance,Sedan,,, +07/15/2021,22:45,QUEENS,11429,40.71458,-73.73108,"(40.71458, -73.73108)",222 STREET,100 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437533,Sedan,Sedan,,, +07/15/2021,21:00,STATEN ISLAND,10304,40.61852,-74.0861,"(40.61852, -74.0861)",WAVERLY PLACE,VANDUZER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437999,Sedan,,,, +07/16/2021,20:15,BROOKLYN,11214,40.58516,-73.9874,"(40.58516, -73.9874)",CROPSEY AVENUE,BAY 50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437868,Sedan,Sedan,,, +07/16/2021,13:50,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",REMSEN AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4437505,Sedan,,,, +07/15/2021,21:00,QUEENS,11368,40.74513,-73.85588,"(40.74513, -73.85588)",,,49-09 108 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438021,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,20:00,,,40.58096,-73.96466,"(40.58096, -73.96466)",BRIGHTON 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437847,Sedan,,,, +07/16/2021,17:00,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",37 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437916,Sedan,,,, +07/16/2021,20:15,QUEENS,11435,40.69591,-73.80995,"(40.69591, -73.80995)",CRESSKILL PLACE,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438286,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,19:00,BRONX,10466,40.895428,-73.84463,"(40.895428, -73.84463)",BAYCHESTER AVENUE,BUSSING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437373,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,18:00,QUEENS,11691,40.60874,-73.74764,"(40.60874, -73.74764)",CENTRAL AVENUE,BEACH 12 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437573,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,2:41,MANHATTAN,10037,40.809147,-73.93605,"(40.809147, -73.93605)",,,1947 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437103,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,19:41,,,40.735844,-74.00597,"(40.735844, -74.00597)",HUDSON STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4437804,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/15/2021,20:09,QUEENS,11365,40.737896,-73.791115,"(40.737896, -73.791115)",,,182-08 64 AVENUE,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4438052,Sedan,,,, +07/14/2021,22:22,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4437137,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/13/2021,15:30,,,40.7042,-73.815254,"(40.7042, -73.815254)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4437437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,12:15,,,40.84023,-73.880104,"(40.84023, -73.880104)",BOSTON ROAD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438263,Sedan,,,, +07/15/2021,8:50,MANHATTAN,10030,40.820522,-73.94041,"(40.820522, -73.94041)",,,151 WEST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437158,Sedan,Van,,, +07/14/2021,11:02,BROOKLYN,11204,40.615475,-73.97973,"(40.615475, -73.97973)",,,6201 BAY PARKWAY,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4436907,Sedan,,,, +07/10/2021,1:15,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437973,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,16:00,BROOKLYN,11212,40.666325,-73.90495,"(40.666325, -73.90495)",,,372 BLAKE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4437858,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,17:00,,,40.76374,-73.86337,"(40.76374, -73.86337)",29 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472291,Sedan,Sedan,,, +07/16/2021,8:30,QUEENS,11373,40.737526,-73.87725,"(40.737526, -73.87725)",,,86-55 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438081,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +07/15/2021,23:55,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437450,Sedan,Sedan,,, +07/14/2021,0:00,BROOKLYN,11219,40.630028,-74.006615,"(40.630028, -74.006615)",,,1036 64 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436818,Sedan,Box Truck,,, +07/15/2021,20:56,BROOKLYN,11224,40.578106,-73.99263,"(40.578106, -73.99263)",NEPTUNE AVENUE,WEST 25 STREET,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438221,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,14:40,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",QUEENS BOULEVARD,39 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4437307,Pick-up Truck,,,, +07/14/2021,17:55,BROOKLYN,11218,40.645752,-73.981064,"(40.645752, -73.981064)",DAHILL ROAD,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4437328,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/16/2021,4:50,QUEENS,11356,40.7858,-73.85131,"(40.7858, -73.85131)",14 AVENUE,116 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4437353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/09/2021,11:50,BROOKLYN,11215,40.667736,-73.980896,"(40.667736, -73.980896)",,,306 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437611,Sedan,Tractor Truck Diesel,,, +07/16/2021,12:40,MANHATTAN,10035,40.801624,-73.94472,"(40.801624, -73.94472)",,,20 EAST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437469,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,11:09,BRONX,10458,40.873917,-73.88494,"(40.873917, -73.88494)",,,3055 VALENTINE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4436863,Sedan,,,, +07/14/2021,9:30,MANHATTAN,10028,40.780857,-73.960915,"(40.780857, -73.960915)",EAST 85 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4436823,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,3:40,,,40.8385,-73.90598,"(40.8385, -73.90598)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437770,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,21:10,BROOKLYN,11249,40.717518,-73.96474,"(40.717518, -73.96474)",KENT AVENUE,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437270,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,17:47,BROOKLYN,11234,40.62553,-73.932434,"(40.62553, -73.932434)",AVENUE K,EAST 45 STREET,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,,,,4437422,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,2:50,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",WASHINGTON AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436926,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,7:00,QUEENS,11103,40.762386,-73.911804,"(40.762386, -73.911804)",30 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437885,Sedan,,,, +07/14/2021,6:00,MANHATTAN,10025,40.795525,-73.97594,"(40.795525, -73.97594)",WEST 95 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4436775,Sedan,,,, +07/15/2021,14:38,,,,,,VERRAZANO BRIDGE LOWER,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4437618,Sedan,Sedan,Sedan,, +07/15/2021,11:00,BRONX,10468,40.877655,-73.8894,"(40.877655, -73.8894)",,,3400 PAUL AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4437157,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,18:40,BRONX,10461,40.843178,-73.836815,"(40.843178, -73.836815)",,,1590 HUTCHINSON RIVER PARKWAY EAST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437877,Sedan,,,, +07/14/2021,19:50,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,WEST 204 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4437978,Station Wagon/Sport Utility Vehicle,Bike,,, +06/22/2021,9:30,QUEENS,11372,40.749405,-73.88425,"(40.749405, -73.88425)",,,37-35 82 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4437405,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,21:00,,,40.67973,-73.75148,"(40.67973, -73.75148)",MERRICK BOULEVARD,218 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437537,Sedan,Sedan,,, +07/14/2021,16:00,,,40.864655,-73.813866,"(40.864655, -73.813866)",CITY ISLAND ROAD,SHORE ROAD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4437022,Sedan,Sedan,,, +07/16/2021,0:00,BROOKLYN,11235,40.58549,-73.9516,"(40.58549, -73.9516)",,,1733 SHEEPSHEAD BAY ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,6:40,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437702,Sedan,Sedan,,, +07/04/2021,19:00,BROOKLYN,11203,40.65035,-73.92633,"(40.65035, -73.92633)",SNYDER AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438067,Sedan,Motorcycle,,, +07/14/2021,17:15,BROOKLYN,11233,40.66638,-73.9244,"(40.66638, -73.9244)",EAST NEW YORK AVENUE,EAST 98 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4437851,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,13:45,,,40.77444,-73.92232,"(40.77444, -73.92232)",HOYT AVENUE NORTH,23 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4437924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,2:45,QUEENS,11373,40.739395,-73.87792,"(40.739395, -73.87792)",CORONA AVENUE,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438006,Bike,,,, +07/14/2021,13:57,,,40.858418,-73.88514,"(40.858418, -73.88514)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4437055,TRAILER,Station Wagon/Sport Utility Vehicle,Bus,, +07/13/2021,19:00,,,40.831623,-73.95072,"(40.831623, -73.95072)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437377,Sedan,Sedan,,, +07/15/2021,12:40,BROOKLYN,11215,40.673946,-73.9804,"(40.673946, -73.9804)",,,119 GARFIELD PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437390,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/14/2021,17:30,,,40.739143,-73.90109,"(40.739143, -73.90109)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,11:50,,,40.602295,-73.752174,"(40.602295, -73.752174)",CORNAGA AVENUE,BEACH 19 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437579,Sedan,Tractor Truck Diesel,,, +07/05/2021,13:21,,,40.70637,-73.75554,"(40.70637, -73.75554)",HOLLIS AVENUE,202 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437493,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,17:20,BRONX,10469,40.863033,-73.857376,"(40.863033, -73.857376)",,,1061 MACE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437110,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,12:40,,,40.574986,-73.99962,"(40.574986, -73.99962)",MERMAID AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438024,Box Truck,,,, +05/27/2021,3:00,,,40.715935,-73.81468,"(40.715935, -73.81468)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438272,Sedan,,,, +07/16/2021,10:20,QUEENS,11433,40.69142,-73.7875,"(40.69142, -73.7875)",CLAUDE AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4437601,Sedan,Sedan,Sedan,, +07/12/2021,16:24,QUEENS,11385,40.692364,-73.8938,"(40.692364, -73.8938)",,,80-97 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437742,Pick-up Truck,Pick-up Truck,,, +07/15/2021,23:10,BRONX,10469,40.86953,-73.85746,"(40.86953, -73.85746)",BOSTON ROAD,ADEE AVENUE,,5,0,0,0,0,0,5,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4438114,Sedan,Taxi,Pick-up Truck,Sedan, +07/14/2021,21:05,BRONX,10469,40.861164,-73.857574,"(40.861164, -73.857574)",WARING AVENUE,WILLIAMSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437171,Sedan,Sedan,,, +07/14/2021,9:58,,,40.862312,-73.929436,"(40.862312, -73.929436)",BROADWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436796,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,14:35,,,40.738476,-73.79729,"(40.738476, -73.79729)",HORACE HARDING EXPRESSWAY,172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437454,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,13:33,BROOKLYN,11206,40.70489,-73.94617,"(40.70489, -73.94617)",,,31 LEONARD STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438171,Sedan,Bike,,, +07/14/2021,16:15,QUEENS,11379,40.71887,-73.88864,"(40.71887, -73.88864)",61 DRIVE,69 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436913,Motorcycle,Sedan,,, +07/14/2021,22:45,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436996,Box Truck,Sedan,,, +07/15/2021,10:15,QUEENS,11385,40.70202,-73.87975,"(40.70202, -73.87975)",,,71-08 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437684,Sedan,,,, +07/16/2021,4:26,,,40.669926,-73.89149,"(40.669926, -73.89149)",SUTTER AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4437301,Sedan,Sedan,,, +07/15/2021,9:50,BROOKLYN,11233,40.672825,-73.92304,"(40.672825, -73.92304)",,,1620 PROSPECT PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437951,Sedan,,,, +07/08/2021,16:10,MANHATTAN,10075,40.77318,-73.95683,"(40.77318, -73.95683)",,,240 EAST 78 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,11:33,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437449,Sedan,Sedan,,, +07/14/2021,12:30,BRONX,10470,40.89815,-73.86837,"(40.89815, -73.86837)",,,276 EAST 236 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437358,Sedan,,,, +07/14/2021,16:29,,,40.812073,-73.93604,"(40.812073, -73.93604)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4437102,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,15:19,,,40.657413,-73.983,"(40.657413, -73.983)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,18:00,BRONX,10475,40.868088,-73.83144,"(40.868088, -73.83144)",,,340 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437308,Sedan,,,, +07/16/2021,11:00,,,40.821106,-73.93575,"(40.821106, -73.93575)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437481,Sedan,,,, +07/14/2021,17:30,QUEENS,11435,40.701992,-73.80996,"(40.701992, -73.80996)",145 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4436936,,,,, +07/15/2021,16:42,BRONX,10451,40.818012,-73.92519,"(40.818012, -73.92519)",EAST 149 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437349,Sedan,Sedan,,, +07/14/2021,13:54,BROOKLYN,11219,40.62909,-74.01156,"(40.62909, -74.01156)",,,6802 FORT HAMILTON PARKWAY,1,0,0,0,1,0,0,0,Unspecified,,,,,4436966,Bike,,,, +07/15/2021,17:45,BROOKLYN,11211,40.716064,-73.939026,"(40.716064, -73.939026)",MASPETH AVENUE,OLIVE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437274,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,0:10,BROOKLYN,11208,40.678864,-73.86589,"(40.678864, -73.86589)",,,1174 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436837,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,12:55,,,40.60267,-74.1841,"(40.60267, -74.1841)",SOUTH AVENUE,TRAVIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,16:50,MANHATTAN,10013,40.721222,-74.00444,"(40.721222, -74.00444)",,,375 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,4:00,,,40.689953,-73.826004,"(40.689953, -73.826004)",LEFFERTS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4437525,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/14/2021,18:10,BRONX,10473,40.82433,-73.874374,"(40.82433, -73.874374)",BRUCKNER BOULEVARD,STRATFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437122,Sedan,Sedan,,, +07/15/2021,11:40,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4437931,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,7:45,,,40.765297,-73.83967,"(40.765297, -73.83967)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437988,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,17:16,BROOKLYN,11215,40.65668,-73.97818,"(40.65668, -73.97818)",,,589 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437144,Sedan,Sedan,,, +07/10/2021,21:23,BROOKLYN,11212,40.658005,-73.925766,"(40.658005, -73.925766)",,,285 REMSEN AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4437663,Sedan,Sedan,Sedan,, +07/13/2021,8:15,BRONX,10459,40.82724,-73.89771,"(40.82724, -73.89771)",,,1177 STEBBINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4437476,Sedan,Sedan,Sedan,, +07/13/2021,21:11,,,40.8351,-73.919464,"(40.8351, -73.919464)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437354,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/14/2021,14:44,,,40.761982,-73.87896,"(40.761982, -73.87896)",30 AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4437409,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,11:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437706,Sedan,,,, +07/14/2021,17:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4437213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,14:30,BROOKLYN,11233,40.68024,-73.91123,"(40.68024, -73.91123)",MACDOUGAL STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437765,Sedan,,,, +07/16/2021,0:09,BROOKLYN,11212,40.66005,-73.91743,"(40.66005, -73.91743)",LENOX ROAD,EAST 98 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437266,Sedan,Pick-up Truck,,, +07/16/2021,14:50,BROOKLYN,11221,40.69614,-73.92726,"(40.69614, -73.92726)",DE KALB AVENUE,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437518,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,22:29,QUEENS,11365,40.73811,-73.78942,"(40.73811, -73.78942)",184 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4438063,Sedan,,,, +07/14/2021,10:10,,,40.887547,-73.81512,"(40.887547, -73.81512)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437013,Flat Bed,,,, +07/14/2021,12:30,BROOKLYN,11238,40.682003,-73.9687,"(40.682003, -73.9687)",ATLANTIC AVENUE,CLERMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4437250,Bus,,,, +07/14/2021,19:40,QUEENS,11103,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437045,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/28/2021,14:00,,,40.715645,-73.90145,"(40.715645, -73.90145)",FRESH POND ROAD,60 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471841,Sedan,Sedan,,, +07/14/2021,11:23,BROOKLYN,11236,40.63586,-73.9011,"(40.63586, -73.9011)",,,1427 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437625,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,8:30,QUEENS,11368,40.749462,-73.86656,"(40.749462, -73.86656)",ROOSEVELT AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438010,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,13:30,BROOKLYN,11205,40.694355,-73.97009,"(40.694355, -73.97009)",,,112 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436978,Sedan,,,, +07/10/2021,11:04,QUEENS,11385,40.70259,-73.89521,"(40.70259, -73.89521)",FRESH POND ROAD,70 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438032,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/14/2021,16:27,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438276,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,13:48,,,40.77077,-73.91727,"(40.77077, -73.91727)",HOYT AVENUE NORTH,31 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437513,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,4:00,BROOKLYN,11209,40.620808,-74.02508,"(40.620808, -74.02508)",,,549 86 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437679,Sedan,,,, +07/14/2021,16:26,BROOKLYN,11235,40.58581,-73.952995,"(40.58581, -73.952995)",EAST 16 STREET,VOORHIES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437089,Station Wagon/Sport Utility Vehicle,Bus,,, +07/11/2021,21:46,QUEENS,11432,40.708447,-73.800224,"(40.708447, -73.800224)",162 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437430,Sedan,Sedan,,, +07/14/2021,18:15,BRONX,10451,40.82398,-73.91311,"(40.82398, -73.91311)",,,425 EAST 161 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437829,Sedan,,,, +07/15/2021,11:15,BRONX,10468,40.8674,-73.89488,"(40.8674, -73.89488)",,,2683 CRESTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,18:40,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4436941,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,0:00,QUEENS,11378,40.72296,-73.910446,"(40.72296, -73.910446)",,,58-42 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437736,Van,,,, +07/16/2021,11:25,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",YORK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438189,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,22:05,,,40.74147,-73.985435,"(40.74147, -73.985435)",PARK AVENUE SOUTH,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437840,Motorcycle,Taxi,,, +07/16/2021,16:15,,,40.755013,-73.93434,"(40.755013, -73.93434)",28 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437895,Sedan,Taxi,,, +07/14/2021,15:15,,,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437224,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,1:30,,,40.780228,-73.96137,"(40.780228, -73.96137)",EAST 84 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437313,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/15/2021,8:45,QUEENS,11106,40.763035,-73.924515,"(40.763035, -73.924515)",,,31-57 31 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438167,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,13:46,,,,,,Bayridge parkway,7 avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,0:50,MANHATTAN,10019,40.763138,-73.98621,"(40.763138, -73.98621)",,,306 WEST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:37,BROOKLYN,11238,40.68078,-73.966805,"(40.68078, -73.966805)",,,859 PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437957,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/10/2021,22:32,,,,,,GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4437429,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,19:50,BROOKLYN,11212,40.654163,-73.91154,"(40.654163, -73.91154)",,,1 BROOKDALE PLAZA,0,0,0,0,0,0,0,0,Unspecified,,,,,4436988,Ambulance,,,, +07/14/2021,9:00,QUEENS,11103,40.766083,-73.907715,"(40.766083, -73.907715)",45 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,13:00,,,40.8325,-73.92811,"(40.8325, -73.92811)",WOODYCREST AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437785,Sedan,,,, +10/21/2021,12:25,QUEENS,11432,,,,PARSONS BOULEVARD,87 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4471994,Bus,Sedan,,, +07/15/2021,8:15,QUEENS,11367,40.720898,-73.823456,"(40.720898, -73.823456)",77 AVENUE,138 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437444,Bus,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,0:31,BROOKLYN,11235,40.58478,-73.962555,"(40.58478, -73.962555)",SHORE PARKWAY,HUBBARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437031,Sedan,,,, +07/14/2021,18:30,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437255,Motorcycle,Sedan,,, +07/14/2021,14:40,BROOKLYN,11232,40.6532,-74.005585,"(40.6532, -74.005585)",38 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437461,Convertible,Tractor Truck Diesel,,, +07/14/2021,0:01,QUEENS,11693,40.613453,-73.82044,"(40.613453, -73.82044)",,,304 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436657,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/14/2021,20:00,BROOKLYN,11211,40.71471,-73.94133,"(40.71471, -73.94133)",METROPOLITAN AVENUE,ORIENT AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4437278,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,18:15,BRONX,10470,40.899055,-73.87373,"(40.899055, -73.87373)",VANCORTLANDT PARK EAST,EAST 238 STREET,,2,0,0,0,0,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4438101,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,18:25,QUEENS,11434,40.68732,-73.787,"(40.68732, -73.787)",,,159-04 115 ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4437540,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,20:55,,,40.7132,-73.97723,"(40.7132, -73.97723)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437560,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,7:57,BROOKLYN,11237,40.69828,-73.91092,"(40.69828, -73.91092)",,,22 RIDGEWOOD PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437345,Sedan,,,, +07/14/2021,20:40,QUEENS,11375,40.73028,-73.84824,"(40.73028, -73.84824)",66 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,7:45,BROOKLYN,11223,40.59814,-73.983574,"(40.59814, -73.983574)",AVENUE T,WEST 12 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437206,Sedan,Sedan,,, +07/14/2021,18:00,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437338,Sedan,Sedan,,, +07/16/2021,0:03,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4437311,Sedan,Sedan,,, +07/15/2021,18:35,,,40.79935,-73.95908,"(40.79935, -73.95908)",CENTRAL PARK WEST,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4437244,''lime mope,,,, +07/16/2021,13:45,QUEENS,11004,40.737576,-73.70715,"(40.737576, -73.70715)",,,261-20 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437485,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,0:05,,,40.75537,-73.98746,"(40.75537, -73.98746)",7 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4436693,Sedan,Motorcycle,,, +07/15/2021,20:55,,,40.755756,-73.96479,"(40.755756, -73.96479)",1 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437260,Sedan,E-Bike,,, +07/14/2021,17:50,QUEENS,11414,40.663944,-73.84105,"(40.663944, -73.84105)",,,156-01 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436940,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,11:10,QUEENS,11374,40.730503,-73.8698,"(40.730503, -73.8698)",WETHEROLE STREET,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437413,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,21:38,BROOKLYN,11234,40.6082,-73.920715,"(40.6082, -73.920715)",FLATBUSH AVENUE,AVENUE V,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437034,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,17:33,QUEENS,11434,40.68618,-73.79149,"(40.68618, -73.79149)",155 STREET,114 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4437545,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/16/2021,6:20,MANHATTAN,10016,40.742947,-73.97413,"(40.742947, -73.97413)",,,550 1 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4437472,Sedan,,,, +06/09/2021,18:05,MANHATTAN,10001,40.74931,-73.98456,"(40.74931, -73.98456)",,,372 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4437816,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +07/15/2021,22:15,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4437285,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/15/2021,11:45,,,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4437562,Station Wagon/Sport Utility Vehicle,,,, +06/30/2021,8:34,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",SARATOGA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437786,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,10:50,,,40.69687,-73.923035,"(40.69687, -73.923035)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437585,Tractor Truck Diesel,Sedan,,, +07/13/2021,7:38,,,,,,45 AVENUE,QEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437993,Sedan,Sedan,,, +07/14/2021,9:25,MANHATTAN,10002,40.718918,-73.989395,"(40.718918, -73.989395)",,,92 DELANCEY STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436981,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,10:07,BROOKLYN,11223,40.601463,-73.97555,"(40.601463, -73.97555)",AVENUE S,WEST 3 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4437198,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/15/2021,17:15,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437937,Sedan,Sedan,,, +07/11/2021,22:10,QUEENS,11368,40.740257,-73.86532,"(40.740257, -73.86532)",97 STREET,CHRISTIE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438014,Sedan,Sedan,,, +07/09/2021,8:20,QUEENS,11374,,,,SAUNDERS STREET,63 DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437414,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,13:25,,,40.777412,-73.978806,"(40.777412, -73.978806)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4437223,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/25/2021,17:37,QUEENS,11370,40.75862,-73.88784,"(40.75862, -73.88784)",,,31-20 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437399,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,13:39,BROOKLYN,11225,40.669777,-73.9583,"(40.669777, -73.9583)",FRANKLIN AVENUE,UNION STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437567,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,17:50,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4437005,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,16:40,BROOKLYN,11235,40.58196,-73.959946,"(40.58196, -73.959946)",CONEY ISLAND AVENUE,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437867,Sedan,Sedan,,, +07/16/2021,13:05,STATEN ISLAND,10304,40.62376,-74.082214,"(40.62376, -74.082214)",,,200 BROAD STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438001,Sedan,Sedan,,, +07/15/2021,9:50,BRONX,10469,40.87361,-73.84867,"(40.87361, -73.84867)",GIVAN AVENUE,FISH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437367,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,16:20,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438283,Sedan,Sedan,,, +06/06/2021,10:00,,,40.716133,-73.8185,"(40.716133, -73.8185)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4438247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,7:20,MANHATTAN,10009,40.728405,-73.978806,"(40.728405, -73.978806)",,,204 AVENUE B,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4437914,Box Truck,,,, +07/05/2021,9:00,BROOKLYN,11203,40.647,-73.92694,"(40.647, -73.92694)",,,523 EAST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438037,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,14:20,,,40.60988,-74.08722,"(40.60988, -74.08722)",TARGEE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437967,Sedan,Sedan,,, +07/15/2021,3:45,BROOKLYN,11220,40.636635,-74.008385,"(40.636635, -74.008385)",8 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437329,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,17:50,BROOKLYN,11237,40.710667,-73.93361,"(40.710667, -73.93361)",MORGAN AVENUE,STAGG STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437273,Bike,,,, +06/25/2021,10:01,BROOKLYN,11206,40.70735,-73.93529,"(40.70735, -73.93529)",,,333 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438150,Sedan,,,, +07/15/2021,9:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437382,Sedan,Sedan,,, +07/14/2021,0:10,,,40.67825,-73.87611,"(40.67825, -73.87611)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Other Vehicular,Other Vehicular,,,4436836,Sedan,Sedan,Sedan,, +07/14/2021,10:35,BROOKLYN,11233,40.68137,-73.93401,"(40.68137, -73.93401)",,,228 DECATUR STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4436878,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +07/14/2021,22:30,,,40.6502,-73.91963,"(40.6502, -73.91963)",AVENUE A,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4437675,E-Scooter,,,, +06/30/2021,20:00,BROOKLYN,11212,40.654224,-73.91531,"(40.654224, -73.91531)",LINDEN BOULEVARD,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438031,Sedan,,,, +07/14/2021,11:00,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4437605,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2021,16:00,QUEENS,11432,40.71025,-73.799866,"(40.71025, -73.799866)",164 STREET,HIGHLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437425,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,19:40,,,40.839466,-73.93721,"(40.839466, -73.93721)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437320,Sedan,RIDE ON SC,,, +07/16/2021,0:45,STATEN ISLAND,10305,40.590424,-74.08057,"(40.590424, -74.08057)",QUINTARD STREET,NUGENT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437457,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,9:23,QUEENS,11413,40.67849,-73.75443,"(40.67849, -73.75443)",,,135-33 SPRINGFIELD BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437178,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,19:30,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437440,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/13/2021,12:30,BROOKLYN,11212,40.656372,-73.90445,"(40.656372, -73.90445)",,,639 WATKINS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437841,Sedan,,,, +07/14/2021,18:20,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4437726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:15,BROOKLYN,11215,40.670265,-73.99763,"(40.670265, -73.99763)",HAMILTON AVENUE,14 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,10:05,,,40.76459,-73.75873,"(40.76459, -73.75873)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437290,Sedan,Sedan,,, +07/15/2021,6:20,BROOKLYN,11221,40.689022,-73.93925,"(40.689022, -73.93925)",MARCUS GARVEY BOULEVARD,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437986,Sedan,Sedan,,, +07/14/2021,4:45,,,40.73765,-73.90557,"(40.73765, -73.90557)",LAUREL HILL BOULEVARD,59 PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4436798,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/15/2021,6:35,,,40.753475,-73.99254,"(40.753475, -73.99254)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437077,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,23:34,BRONX,10473,40.81983,-73.841934,"(40.81983, -73.841934)",RANDALL AVENUE,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437123,,,,, +07/15/2021,22:53,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",BROADWAY,WEST 133 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438022,Taxi,Motorbike,,, +07/15/2021,20:13,QUEENS,11102,40.766884,-73.921394,"(40.766884, -73.921394)",31 STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437890,Sedan,E-Bike,,, +07/14/2021,11:30,QUEENS,11104,40.74191,-73.9256,"(40.74191, -73.9256)",47 AVENUE,39 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436846,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,23:25,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4436994,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/16/2021,8:30,QUEENS,11423,40.71343,-73.77875,"(40.71343, -73.77875)",,,88-20 183 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438291,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,15:21,,,40.60827,-73.94232,"(40.60827, -73.94232)",GERRITSEN AVENUE,AVENUE R,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437500,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,15:53,BROOKLYN,11220,40.64316,-74.01922,"(40.64316, -74.01922)",3 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437240,Sedan,,,, +06/22/2021,17:55,BRONX,10470,40.898186,-73.86823,"(40.898186, -73.86823)",,,283 EAST 236 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438095,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,11:05,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4437612,Sedan,Taxi,,, +07/16/2021,17:28,QUEENS,11373,40.730633,-73.871635,"(40.730633, -73.871635)",60 ROAD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437517,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,8:56,BROOKLYN,11217,40.68442,-73.97839,"(40.68442, -73.97839)",4 AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4437265,Pick wh,Sedan,,, +07/14/2021,15:00,QUEENS,11101,40.750248,-73.950516,"(40.750248, -73.950516)",10 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437189,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,11:37,BROOKLYN,11236,40.653378,-73.90658,"(40.653378, -73.90658)",ROCKAWAY AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4437394,Sedan,Carry All,,, +07/14/2021,10:24,,,40.787655,-73.977066,"(40.787655, -73.977066)",WEST 85 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436946,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,17:59,BROOKLYN,11210,40.63633,-73.94705,"(40.63633, -73.94705)",EAST 31 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437712,Sedan,Sedan,,, +07/16/2021,8:30,QUEENS,11417,40.674503,-73.83773,"(40.674503, -73.83773)",LINDEN BOULEVARD,HAWTREE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Turning Improperly,,,,4438201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,15:00,,,,,,Beach 106 Street,shorefront parkway,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4438110,Ambulance,,,, +07/13/2021,10:50,,,40.708004,-73.84458,"(40.708004, -73.84458)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4437468,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/14/2021,16:00,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",JEROME AVENUE,WEST 192 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437000,E-Scooter,Sedan,,, +07/15/2021,9:18,BRONX,10470,40.89551,-73.863495,"(40.89551, -73.863495)",,,4201 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437362,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,18:25,,,40.731873,-74.00879,"(40.731873, -74.00879)",WASHINGTON STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437793,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,11:13,BRONX,10452,40.837875,-73.91971,"(40.837875, -73.91971)",EAST 169 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437647,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:27,MANHATTAN,10002,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,PITT STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437555,Sedan,,,, +07/15/2021,18:10,BROOKLYN,11203,40.64632,-73.92981,"(40.64632, -73.92981)",BEVERLEY ROAD,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4438054,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/10/2021,21:30,MANHATTAN,10039,40.82598,-73.93591,"(40.82598, -73.93591)",WEST 152 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438233,Sedan,Sedan,,, +07/16/2021,11:00,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",BAISLEY BOULEVARD,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4437494,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/16/2021,12:00,QUEENS,11418,40.694035,-73.83581,"(40.694035, -73.83581)",,,91-46 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437526,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,21:47,BRONX,10472,40.82635,-73.87624,"(40.82635, -73.87624)",,,1569 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437932,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/09/2021,12:35,,,40.693752,-73.9862,"(40.693752, -73.9862)",LAWRENCE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437822,Sedan,Sedan,,, +07/16/2021,19:50,BRONX,10453,40.860546,-73.91081,"(40.860546, -73.91081)",,,135 WEST 183 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437590,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:45,BROOKLYN,11205,40.693153,-73.970634,"(40.693153, -73.970634)",,,384 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437862,Bus,Box Truck,,, +07/15/2021,23:30,BRONX,10467,40.87379,-73.87669,"(40.87379, -73.87669)",HULL AVENUE,EAST 205 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4437489,Sedan,,,, +07/16/2021,5:00,QUEENS,11368,40.741825,-73.85203,"(40.741825, -73.85203)",,,110-38 55 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438082,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,20:16,,,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437357,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/15/2021,20:20,,,40.62055,-74.16919,"(40.62055, -74.16919)",SOUTH AVENUE,FAHY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437304,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,15:15,QUEENS,11385,40.704094,-73.85608,"(40.704094, -73.85608)",,,81-48 WOODHAVEN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4437229,Motorcycle,,,, +07/16/2021,14:30,MANHATTAN,10002,40.71745,-73.98494,"(40.71745, -73.98494)",DELANCEY STREET,ATTORNEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437552,Sedan,,,, +07/14/2021,11:50,BROOKLYN,11228,40.616695,-74.00761,"(40.616695, -74.00761)",79 STREET,14 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437908,Station Wagon/Sport Utility Vehicle,Bike,,, +07/13/2021,20:22,QUEENS,11436,40.66857,-73.798355,"(40.66857, -73.798355)",134 AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437638,Sedan,,,, +07/15/2021,11:10,,,,,,SHELL ROAD,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4437846,Sedan,Bike,,, +07/16/2021,2:55,,,40.662178,-73.85025,"(40.662178, -73.85025)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,View Obstructed/Limited,View Obstructed/Limited,,4438183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle, +07/15/2021,15:45,,,40.699814,-73.93236,"(40.699814, -73.93236)",MELROSE STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437350,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,20:05,,,40.613056,-73.95816,"(40.613056, -73.95816)",AVENUE O,,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437769,Sedan,E-Bike,,, +07/14/2021,16:27,BRONX,10462,40.856613,-73.86864,"(40.856613, -73.86864)",BOLTON STREET,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437109,PK,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,0:05,QUEENS,11354,40.76862,-73.84228,"(40.76862, -73.84228)",,,30-29 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437698,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,17:30,QUEENS,11106,40.761703,-73.93159,"(40.761703, -73.93159)",24 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437886,E-Bike,Sedan,,, +07/12/2021,21:00,QUEENS,11432,40.7172,-73.80343,"(40.7172, -73.80343)",,,82-68 164 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437436,Ambulance,,,, +07/14/2021,7:30,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4436752,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,16:55,BRONX,10462,40.854477,-73.8667,"(40.854477, -73.8667)",CRUGER AVENUE,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437170,Sedan,,,, +07/12/2021,14:56,BROOKLYN,11234,40.619305,-73.9358,"(40.619305, -73.9358)",,,1561 COLEMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437421,Sedan,Sedan,,, +07/14/2021,16:45,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436927,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,19:50,BROOKLYN,11217,40.68251,-73.976326,"(40.68251, -73.976326)",FLATBUSH AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437389,Sedan,Sedan,,, +07/15/2021,8:00,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437128,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,15:32,BROOKLYN,11203,40.64169,-73.94571,"(40.64169, -73.94571)",,,1290 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437665,Sedan,Box Truck,,, +07/14/2021,20:53,BRONX,10451,40.825455,-73.91317,"(40.825455, -73.91317)",EAST 163 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437081,Station Wagon/Sport Utility Vehicle,Moped,,, +07/16/2021,14:00,BROOKLYN,11249,40.699413,-73.95902,"(40.699413, -73.95902)",WALLABOUT STREET,FRANKLIN AVENUE,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438170,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,0:35,QUEENS,11379,40.714195,-73.902054,"(40.714195, -73.902054)",ELIOT AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4437690,Sedan,,,, +07/11/2021,18:26,,,40.859325,-73.93132,"(40.859325, -73.93132)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437974,Moped,Sedan,,, +07/15/2021,23:10,QUEENS,11364,40.73789,-73.76794,"(40.73789, -73.76794)",73 AVENUE,HOLLIS HILLS TERRACE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4437453,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,18:00,,,40.680325,-73.8009,"(40.680325, -73.8009)",141 STREET,,,2,0,0,0,0,0,2,0,Drugs (illegal),Unspecified,,,,4437532,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,11:00,QUEENS,11372,40.75539,-73.8869,"(40.75539, -73.8869)",,,80-28 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438126,Sedan,Box Truck,,, +07/15/2021,0:01,BROOKLYN,11230,40.622585,-73.96281,"(40.622585, -73.96281)",EAST 13 STREET,AVENUE K,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437019,E-Bike,Sedan,,, +07/13/2021,15:34,,,40.87647,-73.87058,"(40.87647, -73.87058)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4437361,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,1:00,,,40.617924,-74.155785,"(40.617924, -74.155785)",RICHMOND AVENUE,DEPPE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437504,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/15/2021,16:40,BROOKLYN,11249,40.717518,-73.96474,"(40.717518, -73.96474)",METROPOLITAN AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4437269,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/16/2021,17:03,BRONX,10457,40.847366,-73.899506,"(40.847366, -73.899506)",EAST TREMONT AVENUE,PARK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438220,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,17:45,QUEENS,11102,40.772953,-73.93358,"(40.772953, -73.93358)",,,3-02 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4437521,Sedan,,,, +07/14/2021,15:00,MANHATTAN,10019,40.76713,-73.99373,"(40.76713, -73.99373)",11 AVENUE,WEST 52 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437054,Box Truck,,,, +07/14/2021,1:55,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437235,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,18:07,MANHATTAN,10034,40.868496,-73.92173,"(40.868496, -73.92173)",WEST 207 STREET,COOPER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437372,Sedan,,,, +07/14/2021,8:49,QUEENS,11355,40.752007,-73.809845,"(40.752007, -73.809845)",LABURNUM AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4436964,Sedan,Sedan,,, +07/16/2021,18:30,BRONX,10468,40.862732,-73.90333,"(40.862732, -73.90333)",WEST FORDHAM ROAD,GRAND AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4437594,Station Wagon/Sport Utility Vehicle,Moped,,, +07/15/2021,8:49,,,40.82472,-73.87147,"(40.82472, -73.87147)",METCALF AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437926,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,13:13,MANHATTAN,10022,40.756046,-73.96934,"(40.756046, -73.96934)",,,241 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437179,Sedan,Sedan,,, +07/15/2021,11:00,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437571,Sedan,,,, +07/16/2021,11:30,,,40.735313,-73.994125,"(40.735313, -73.994125)",WEST 13 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4437801,Sedan,Motorcycle,,, +07/15/2021,12:00,,,40.68723,-73.78711,"(40.68723, -73.78711)",115 ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438270,Sedan,,,, +07/06/2021,13:10,BROOKLYN,11212,40.657,-73.91403,"(40.657, -73.91403)",EAST 98 STREET,LOTT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4437828,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/07/2021,15:00,QUEENS,11412,40.6934,-73.75602,"(40.6934, -73.75602)",LINDEN BOULEVARD,196 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437509,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,14:00,MANHATTAN,10031,40.82077,-73.95459,"(40.82077, -73.95459)",WEST 136 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437748,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,22:50,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,PITT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437559,Bike,,,, +07/15/2021,17:52,,,,,,58 Avenue,Queens Midtown Expressway,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437740,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,16:00,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437522,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/16/2021,14:45,BROOKLYN,11214,40.60995,-73.999466,"(40.60995, -73.999466)",81 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437660,Sedan,Box Truck,,, +07/16/2021,21:30,MANHATTAN,10010,40.738796,-73.97716,"(40.738796, -73.97716)",EAST 26 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4437818,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,1:45,,,40.541992,-74.1617,"(40.541992, -74.1617)",OAKDALE STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4437214,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,10:20,,,,,,MANHATTAN BR UPPER,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4437855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,23:30,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4436999,Sedan,,,, +07/16/2021,10:10,,,40.779488,-73.82224,"(40.779488, -73.82224)",22 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437705,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,15:50,BROOKLYN,11226,40.649643,-73.95289,"(40.649643, -73.95289)",ERASMUS STREET,VERONICA PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438066,PASSENGER,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,0:00,QUEENS,11423,40.72031,-73.762856,"(40.72031, -73.762856)",202 STREET,FOOTHILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437426,Station Wagon/Sport Utility Vehicle,Sedan,Dump,, +07/15/2021,6:53,BROOKLYN,11230,40.628117,-73.956856,"(40.628117, -73.956856)",OCEAN AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4437766,Sedan,Sedan,,, +07/13/2021,16:15,BROOKLYN,11233,40.678116,-73.90787,"(40.678116, -73.90787)",EASTERN PARKWAY,FULTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437850,Moped,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,20:50,,,40.694214,-73.7531,"(40.694214, -73.7531)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,Unspecified,,,4437548,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/11/2021,1:30,MANHATTAN,10012,40.724693,-73.99419,"(40.724693, -73.99419)",EAST HOUSTON STREET,MOTT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437902,Sedan,,,, +07/16/2021,19:00,,,40.639256,-73.968796,"(40.639256, -73.968796)",CORTELYOU ROAD,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437773,Tractor Truck Diesel,Sedan,,, +07/15/2021,13:34,,,40.68121,-73.773,"(40.68121, -73.773)",BAISLEY BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4437490,Sedan,Sedan,,, +07/14/2021,15:00,QUEENS,11433,40.69652,-73.78155,"(40.69652, -73.78155)",110 AVENUE,172 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4438284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,20:58,BRONX,10465,40.829685,-73.81989,"(40.829685, -73.81989)",THROGS NECK EXPRESSWAY,PHILIP AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437881,Sedan,Sedan,,, +07/14/2021,6:20,MANHATTAN,10003,40.73599,-73.98946,"(40.73599, -73.98946)",UNION SQUARE EAST,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436774,Motorcycle,Sedan,,, +07/14/2021,15:34,MANHATTAN,10019,40.762966,-73.973976,"(40.762966, -73.973976)",WEST 57 STREET,5 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4437062,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,22:55,,,40.789673,-73.96986,"(40.789673, -73.96986)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437616,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,10:40,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",HYLAN BOULEVARD,NELSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4436905,Sedan,Sedan,,, +07/09/2021,17:35,STATEN ISLAND,10301,40.635933,-74.07585,"(40.635933, -74.07585)",BAY STREET,HANNAH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437969,Sedan,,,, +07/14/2021,18:28,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437404,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/16/2021,15:22,QUEENS,11429,40.703384,-73.741684,"(40.703384, -73.741684)",MURDOCK AVENUE,NASHVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437536,Sedan,Sedan,,, +07/14/2021,18:25,QUEENS,11385,40.703537,-73.90339,"(40.703537, -73.90339)",PUTNAM AVENUE,WOODWARD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437683,Bus,,,, +07/14/2021,12:40,,,40.77506,-73.913864,"(40.77506, -73.913864)",23 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437074,Pick-up Truck,Sedan,,, +07/14/2021,14:20,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4436958,Sedan,Van,,, +07/14/2021,12:15,MANHATTAN,10019,40.764606,-73.97787,"(40.764606, -73.97787)",,,115 WEST 57 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:25,QUEENS,11433,40.69384,-73.78093,"(40.69384, -73.78093)",111 ROAD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437376,Sedan,Sedan,,, +07/15/2021,16:53,BROOKLYN,11215,40.673965,-73.992256,"(40.673965, -73.992256)",,,42 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437248,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/15/2021,6:18,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437009,Flat Bed,Sedan,,, +07/15/2021,20:40,QUEENS,11413,40.684185,-73.74517,"(40.684185, -73.74517)",130 AVENUE,221 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4437256,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,11:24,,,40.73691,-73.86784,"(40.73691, -73.86784)",56 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437992,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/14/2021,1:00,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436663,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,19:30,BROOKLYN,11206,40.7091,-73.94009,"(40.7091, -73.94009)",BUSHWICK AVENUE,SCHOLES STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437279,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,15:00,QUEENS,11379,40.71212,-73.89504,"(40.71212, -73.89504)",,,64-26 65 PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437735,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,3:35,,,40.660316,-73.913216,"(40.660316, -73.913216)",HERZL STREET,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4437393,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,8:45,QUEENS,11373,40.72898,-73.882385,"(40.72898, -73.882385)",80 STREET,57 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438009,Sedan,Bike,,, +07/14/2021,1:50,BROOKLYN,11236,40.635235,-73.91167,"(40.635235, -73.91167)",,,944 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437202,Sedan,,,, +07/15/2021,20:15,BROOKLYN,11238,40.68798,-73.9678,"(40.68798, -73.9678)",LAFAYETTE AVENUE,CLINTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4437541,Bike,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,18:20,BRONX,10451,40.82294,-73.91451,"(40.82294, -73.91451)",MELROSE AVENUE,EAST 159 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4437343,E-Scooter,Sedan,,, +07/16/2021,20:10,QUEENS,11101,40.740913,-73.95226,"(40.740913, -73.95226)",BORDEN AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437578,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,16:20,BROOKLYN,11226,40.650295,-73.966156,"(40.650295, -73.966156)",MARLBOROUGH ROAD,CATON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437779,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,11:45,BRONX,10472,40.829323,-73.8611,"(40.829323, -73.8611)",,,1141 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4437942,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,1:00,,,40.716034,-73.80416,"(40.716034, -73.80416)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4437431,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/14/2021,23:17,,,40.695026,-73.75643,"(40.695026, -73.75643)",116 AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4437600,Sedan,Sedan,,, +07/16/2021,21:28,,,40.7313,-74.01047,"(40.7313, -74.01047)",WEST STREET,,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4437809,Bike,Bike,,, +07/09/2021,2:15,BROOKLYN,11213,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437563,Sedan,,,, +07/15/2021,19:02,BROOKLYN,11216,40.67765,-73.949776,"(40.67765, -73.949776)",PACIFIC STREET,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437954,Sedan,Sedan,,, +06/30/2021,18:10,,,40.86114,-73.91894,"(40.86114, -73.91894)",9 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4437996,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/14/2021,13:20,QUEENS,11436,40.67504,-73.794235,"(40.67504, -73.794235)",145 STREET,123 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4437650,,,,, +07/16/2021,21:25,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4437787,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,9:30,BRONX,10465,40.82553,-73.82309,"(40.82553, -73.82309)",RANDALL AVENUE,REVERE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437876,Box Truck,Sedan,,, +06/03/2021,16:46,QUEENS,11436,40.668636,-73.79189,"(40.668636, -73.79189)",133 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438232,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,19:20,QUEENS,11365,40.72717,-73.8109,"(40.72717, -73.8109)",PARSONS BOULEVARD,73 AVENUE,,2,0,0,0,1,0,1,0,Unspecified,,,,,4438278,Bike,Sedan,,, +07/14/2021,9:24,BROOKLYN,11218,40.64412,-73.98907,"(40.64412, -73.98907)",FORT HAMILTON PARKWAY,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437322,Box Truck,,,, +07/15/2021,12:25,QUEENS,11367,40.721382,-73.81123,"(40.721382, -73.81123)",,,153-15 78 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437445,Sedan,Sedan,,, +07/05/2021,4:27,BROOKLYN,11204,40.61818,-73.98088,"(40.61818, -73.98088)",,,2059 60 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4437923,Pick-up Truck,Sedan,Sedan,Pick-up Truck,Sedan +07/16/2021,14:35,,,40.793217,-73.824005,"(40.793217, -73.824005)",WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4437701,Tow Truck,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/16/2021,8:00,BRONX,10451,40.82292,-73.91206,"(40.82292, -73.91206)",,,462 EAST 160 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437458,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,16:36,,,40.68484,-73.79281,"(40.68484, -73.79281)",115 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4437546,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,9:00,BROOKLYN,11218,40.653667,-73.97866,"(40.653667, -73.97866)",SEELEY STREET,19 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437463,Sedan,,,, +07/15/2021,5:25,BROOKLYN,11226,40.654266,-73.94827,"(40.654266, -73.94827)",,,339 LENOX ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438036,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/15/2021,9:40,BRONX,10473,,,,,,872 METCALF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437124,Sedan,,,, +07/14/2021,9:03,,,40.822838,-73.928764,"(40.822838, -73.928764)",RIVER AVENUE,,,2,0,0,0,0,0,2,0,Passing Too Closely,Passing Too Closely,,,,4436845,Bus,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:00,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436847,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,17:54,,,40.58466,-73.95086,"(40.58466, -73.95086)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:58,BROOKLYN,11211,40.71472,-73.95846,"(40.71472, -73.95846)",,,268 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437277,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,7:45,QUEENS,11419,40.68792,-73.810814,"(40.68792, -73.810814)",134 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inexperience,,,,4436911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,9:15,BROOKLYN,11203,40.65321,-73.94025,"(40.65321, -73.94025)",,,90 EAST 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438125,Sedan,Sedan,,, +07/14/2021,15:00,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4437118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,13:16,BROOKLYN,11235,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437913,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/16/2021,0:28,BRONX,10468,40.860718,-73.90679,"(40.860718, -73.90679)",,,2291 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437296,Sedan,Sedan,,, +07/14/2021,8:15,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4436945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,17:30,BROOKLYN,11209,40.611954,-74.03186,"(40.611954, -74.03186)",100 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437621,Tractor Truck Diesel,Sedan,,, +07/15/2021,8:25,BRONX,10458,40.866302,-73.890686,"(40.866302, -73.890686)",,,2705 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437145,Sedan,,,, +07/12/2021,20:40,MANHATTAN,10016,40.744625,-73.98525,"(40.744625, -73.98525)",EAST 29 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4437834,Taxi,E-Bike,,, +07/15/2021,13:40,,,40.83472,-73.93517,"(40.83472, -73.93517)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437317,Pick-up Truck,Sedan,Sedan,, +07/14/2021,0:15,BRONX,10469,40.86907,-73.845924,"(40.86907, -73.845924)",,,2951 DEWITT PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436791,Sedan,,,, +07/15/2021,9:15,,,40.82967,-73.89384,"(40.82967, -73.89384)",FOX STREET,INTERVALE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4437477,,,,, +07/15/2021,2:40,BROOKLYN,11223,40.59401,-73.96086,"(40.59401, -73.96086)",,,2575 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437091,Sedan,,,, +05/29/2021,15:36,,,40.771576,-73.87616,"(40.771576, -73.87616)",94 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437408,Sedan,Sedan,,, +07/16/2021,8:09,QUEENS,11106,40.76047,-73.923294,"(40.76047, -73.923294)",,,32-21 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437894,Sedan,,,, +07/12/2021,6:30,QUEENS,11385,40.703968,-73.89041,"(40.703968, -73.89041)",70 AVENUE,65 PLACE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4437678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,16:34,BRONX,10452,40.841133,-73.924,"(40.841133, -73.924)",WEST 170 STREET,PLIMPTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,Unsafe Speed,,,4437648,Sedan,Sedan,Sedan,, +07/03/2021,22:40,BROOKLYN,11203,40.64461,-73.9267,"(40.64461, -73.9267)",EAST 53 STREET,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4438030,Sedan,,,, +07/15/2021,16:00,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437606,Van,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,23:10,,,40.85391,-73.88364,"(40.85391, -73.88364)",EAST 187 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438275,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,1:45,,,0,0,"(0.0, 0.0)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437139,Sedan,Bike,,, +07/15/2021,22:00,STATEN ISLAND,10305,40.595264,-74.06966,"(40.595264, -74.06966)",SAND LANE,CEDAR AVENUE,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4437456,Sedan,Sedan,Sedan,Sedan, +07/11/2021,20:25,,,40.587303,-73.96036,"(40.587303, -73.96036)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437842,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,12:19,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Outside Car Distraction,Outside Car Distraction,Outside Car Distraction,,4437173,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/15/2021,12:10,,,,,,EAST FORDHAM ROAD,FORDHAM UNIVERSITY,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4437435,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +07/16/2021,6:20,QUEENS,11102,40.767735,-73.9185,"(40.767735, -73.9185)",28 AVENUE,33 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4437893,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,6:54,QUEENS,11377,40.734768,-73.90288,"(40.734768, -73.90288)",TYLER AVENUE,63 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436802,Sedan,Sedan,Sedan,, +07/14/2021,9:40,BROOKLYN,11228,40.613163,-74.007774,"(40.613163, -74.007774)",,,1453 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4436909,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,9:06,QUEENS,11373,40.743515,-73.87687,"(40.743515, -73.87687)",,,43-11 ITHACA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438083,Sedan,Sedan,,, +07/15/2021,15:16,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437953,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/14/2021,23:10,,,40.624912,-74.146706,"(40.624912, -74.146706)",WILLOW ROAD WEST,FOREST AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437305,Sedan,Sedan,,, +07/16/2021,6:30,,,40.724255,-73.98485,"(40.724255, -73.98485)",AVENUE A,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4437910,Sedan,Motorcycle,,, +07/15/2021,20:53,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438184,Sedan,Sedan,,, +07/15/2021,2:36,QUEENS,11427,40.724087,-73.761314,"(40.724087, -73.761314)",,,86-64 208 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438041,Motorcycle,,,, +07/11/2021,15:00,,,,,,BAISLEY BOULEVARD,178 STREET,,3,0,0,0,0,0,3,0,Lost Consciousness,Unspecified,Unspecified,,,4437637,Sedan,Sedan,Sedan,, +07/15/2021,21:05,,,40.586918,-73.96387,"(40.586918, -73.96387)",AVENUE Z,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4437863,Station Wagon/Sport Utility Vehicle,Van,Station Wagon/Sport Utility Vehicle,, +07/13/2021,16:04,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437639,Sedan,,,, +07/16/2021,5:21,QUEENS,11692,40.59545,-73.79644,"(40.59545, -73.79644)",,,515 BEACH 67 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,17:00,,,40.79087,-73.972694,"(40.79087, -73.972694)",WEST 91 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4436939,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,20:45,BROOKLYN,11210,40.62526,-73.93815,"(40.62526, -73.93815)",,,1290 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437035,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,16:58,BRONX,10458,40.86581,-73.88922,"(40.86581, -73.88922)",EAST 196 STREET,MARION AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4437298,Sedan,Sedan,,, +07/14/2021,2:01,BROOKLYN,11236,40.65618,-73.899055,"(40.65618, -73.899055)",,,10875 AVENUE D,1,0,0,0,0,0,1,0,Unspecified,,,,,4437201,Motorcycle,,,, +07/15/2021,8:03,,,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4437584,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,23:10,,,,,,FRANCIS LEWIS BLVD,CROCHERON AVE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4437272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,12:58,BROOKLYN,11223,40.59589,-73.96101,"(40.59589, -73.96101)",,,2489 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4436825,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,11:28,BROOKLYN,11220,40.642696,-74.01842,"(40.642696, -74.01842)",,,325 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437446,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,18:00,,,40.820095,-73.955086,"(40.820095, -73.955086)",WEST 135 STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4437746,E-Bike,,,, +07/14/2021,9:00,QUEENS,11354,,,,NORTHERN BOULEVARD,146 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4436953,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,8:19,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437424,Sedan,Sedan,,, +07/14/2021,3:20,MANHATTAN,10011,40.739265,-73.99545,"(40.739265, -73.99545)",AVENUE OF THE AMERICAS,WEST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436773,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,18:20,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",WESTCHESTER AVENUE,EAST 163 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437478,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/14/2021,8:19,QUEENS,11375,40.71717,-73.834946,"(40.71717, -73.834946)",76 ROAD,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4437415,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/14/2021,0:00,BROOKLYN,11203,40.644855,-73.92286,"(40.644855, -73.92286)",EAST 57 STREET,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4436930,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/16/2021,22:15,BROOKLYN,11236,40.643215,-73.90306,"(40.643215, -73.90306)",EAST 95 STREET,CONKLIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437620,Sedan,Sedan,,, +07/15/2021,23:21,QUEENS,11691,40.599396,-73.749954,"(40.599396, -73.749954)",,,1604 CAFFREY AVENUE,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4437346,Sedan,Sedan,,, +07/15/2021,17:23,QUEENS,11355,40.75855,-73.82964,"(40.75855, -73.82964)",KISSENA BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437694,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +07/14/2021,20:33,,,40.851696,-73.932,"(40.851696, -73.932)",WEST 185 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437985,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/15/2021,0:50,QUEENS,11417,40.678417,-73.84685,"(40.678417, -73.84685)",,,91-06 107 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4437085,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/14/2021,22:31,MANHATTAN,10002,40.72218,-73.99092,"(40.72218, -73.99092)",STANTON STREET,FORSYTH STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4437866,Sedan,Bike,,, +07/16/2021,22:00,QUEENS,11413,40.681843,-73.7501,"(40.681843, -73.7501)",132 ROAD,218 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437531,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,5:30,BRONX,10457,40.85192,-73.89694,"(40.85192, -73.89694)",EAST 180 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4436922,Sedan,,,, +07/16/2021,13:57,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437499,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,15:30,BRONX,10469,40.874702,-73.85803,"(40.874702, -73.85803)",EAST GUN HILL ROAD,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437368,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,14:04,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",5 AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437247,Sedan,Bike,,, +07/13/2021,7:50,,,40.730476,-73.87904,"(40.730476, -73.87904)",84 STREET,57 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4438008,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,4:12,BROOKLYN,11220,40.647675,-74.014595,"(40.647675, -74.014595)",3 AVENUE,50 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4437148,Sedan,,,, +07/16/2021,16:14,MANHATTAN,10012,40.72388,-73.996956,"(40.72388, -73.996956)",CROSBY STREET,PRINCE STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437853,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/15/2021,17:25,,,,,,HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4437383,Sedan,Sedan,,, +07/16/2021,9:00,QUEENS,11101,40.745945,-73.95552,"(40.745945, -73.95552)",47 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437577,Sedan,,,, +07/14/2021,19:15,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436984,Bike,E-Bike,,, +07/15/2021,9:00,BRONX,10458,40.854916,-73.88944,"(40.854916, -73.88944)",,,2339 HOFFMAN STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Backing Unsafely,,,,4437116,Sedan,Box Truck,,, +07/15/2021,12:00,QUEENS,11365,40.740562,-73.80928,"(40.740562, -73.80928)",159 STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437807,Sedan,,,, +07/16/2021,3:39,,,40.83643,-73.87415,"(40.83643, -73.87415)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4437941,Sedan,Tractor Truck Diesel,,, +07/09/2021,13:00,QUEENS,11378,40.72879,-73.8943,"(40.72879, -73.8943)",,,54-39 69 LANE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4437682,Sedan,Sedan,,, +07/14/2021,19:23,MANHATTAN,10032,40.83473,-73.940674,"(40.83473, -73.940674)",AMSTERDAM AVENUE,WEST 160 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4437166,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +03/28/2021,4:30,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4438266,Sedan,,,, +07/13/2021,19:22,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",HILLSIDE AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4437439,,,,, +07/15/2021,10:06,STATEN ISLAND,10312,40.55445,-74.18052,"(40.55445, -74.18052)",,,99 WOEHRLE AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4437135,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,16:50,,,,,,MIDLAND PARKWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4438058,Station Wagon/Sport Utility Vehicle,Bike,,, +07/14/2021,17:50,,,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437026,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,11:30,MANHATTAN,10029,40.79293,-73.950005,"(40.79293, -73.950005)",EAST 105 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4437821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,19:45,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4437222,Sedan,,,, +07/14/2021,21:00,BROOKLYN,11210,40.630157,-73.94253,"(40.630157, -73.94253)",,,1007 EAST 35 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4437289,Sedan,,,, +07/14/2021,6:21,MANHATTAN,10034,40.865364,-73.92439,"(40.865364, -73.92439)",VERMILYEA AVENUE,ACADEMY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4437975,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/15/2021,18:08,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437452,Convertible,Ambulance,,, +10/27/2021,9:45,MANHATTAN,10007,40.712723,-74.009674,"(40.712723, -74.009674)",BARCLAY STREET,CHURCH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471523,Van,,,, +07/16/2021,21:45,,,40.76548,-73.913704,"(40.76548, -73.913704)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4437897,Tractor Truck Diesel,Taxi,,, +07/04/2021,14:02,QUEENS,11372,40.754856,-73.88524,"(40.754856, -73.88524)",,,33-33 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437410,Sedan,,,, +07/15/2021,13:06,QUEENS,11422,40.670532,-73.72954,"(40.670532, -73.72954)",135 AVENUE,246 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437241,Sedan,Sedan,,, +07/15/2021,13:15,STATEN ISLAND,10309,40.520916,-74.235115,"(40.520916, -74.235115)",PAGE AVENUE,RICHMOND VALLEY ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4437395,Station Wagon/Sport Utility Vehicle,Fire truck,,, +07/16/2021,11:00,QUEENS,11434,40.659584,-73.76785,"(40.659584, -73.76785)",BREWER BOULEVARD,148 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437484,Sedan,Tractor Truck Diesel,,, +07/14/2021,20:33,BROOKLYN,11214,40.611084,-73.99832,"(40.611084, -73.99832)",18 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436963,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/16/2021,0:00,BROOKLYN,11215,40.67678,-73.98348,"(40.67678, -73.98348)",4 AVENUE,PRESIDENT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437613,Bike,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,6:47,QUEENS,11417,40.680744,-73.84225,"(40.680744, -73.84225)",LIBERTY AVENUE,97 STREET,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4436705,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:00,,,40.66516,-73.790146,"(40.66516, -73.790146)",NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437257,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,23:39,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Passing or Lane Usage Improper,,,,4437901,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,22:45,BRONX,10455,40.814346,-73.920906,"(40.814346, -73.920906)",,,2742 3 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4437351,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,14:40,QUEENS,11412,40.690918,-73.7623,"(40.690918, -73.7623)",BAISLEY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437542,Sedan,Sedan,,, +07/16/2021,10:20,,,,,,149 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438207,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,13:07,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",JEROME AVENUE,WEST 192 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4436879,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,9:00,BROOKLYN,11230,40.626495,-73.962585,"(40.626495, -73.962585)",,,937 EAST 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437768,Sedan,,,, +07/15/2021,12:35,QUEENS,11375,40.720566,-73.8459,"(40.720566, -73.8459)",AUSTIN STREET,70 ROAD,,2,0,1,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4437467,Bike,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,2:55,,,40.731304,-73.925964,"(40.731304, -73.925964)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4437001,Box Truck,,,, +07/15/2021,9:17,QUEENS,11355,40.756023,-73.82088,"(40.756023, -73.82088)",BEECH AVENUE,BOWNE STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,16:15,MANHATTAN,10036,40.763115,-73.99966,"(40.763115, -73.99966)",12 AVENUE,WEST 44 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437330,Sedan,Sedan,,, +07/16/2021,1:00,,,40.842163,-73.88902,"(40.842163, -73.88902)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437286,Dump,,,, +07/15/2021,10:39,BROOKLYN,11209,40.615612,-74.03128,"(40.615612, -74.03128)",,,9522 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437209,Sedan,,,, +07/15/2021,7:20,,,40.732243,-73.87013,"(40.732243, -73.87013)",LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437676,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,22:07,BROOKLYN,11205,40.698765,-73.95837,"(40.698765, -73.95837)",,,417 FLUSHING AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4438152,Sedan,Sedan,,, +07/14/2021,9:40,,,40.68468,-74.001335,"(40.68468, -74.001335)",SACKETT STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438235,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,23:10,QUEENS,11418,40.6962,-73.84586,"(40.6962, -73.84586)",102 STREET,86 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4437510,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/15/2021,11:15,QUEENS,11373,40.738644,-73.887314,"(40.738644, -73.887314)",JACOBUS STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438016,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/14/2021,20:30,QUEENS,11426,40.727287,-73.71424,"(40.727287, -73.71424)",,,88-20 251 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437420,Sedan,,,, +07/16/2021,17:25,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437527,Sedan,Sedan,,, +07/16/2021,15:10,,,,,,WHITESTONE EXPRESSWAY,14 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437727,Station Wagon/Sport Utility Vehicle,Bus,,, +07/16/2021,1:35,,,40.8324,-73.870384,"(40.8324, -73.870384)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437933,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,12:15,,,40.8511,-73.90468,"(40.8511, -73.90468)",,,GRAND CONCOURSE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437378,Sedan,Taxi,,, +07/01/2021,1:55,BROOKLYN,11226,40.65115,-73.95254,"(40.65115, -73.95254)",,,804 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438127,Sedan,Sedan,,, +07/14/2021,16:25,,,40.61632,-74.15936,"(40.61632, -74.15936)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437400,Tractor Truck Diesel,Sedan,,, +07/16/2021,18:30,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437592,Sedan,Sedan,,, +07/04/2021,9:45,BROOKLYN,11225,40.66408,-73.94817,"(40.66408, -73.94817)",NEW YORK AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437568,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,22:50,QUEENS,11373,40.732357,-73.87916,"(40.732357, -73.87916)",,,84-57 55 ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4438023,Sedan,,,, +07/15/2021,3:10,,,40.599873,-73.761566,"(40.599873, -73.761566)",ROCKAWAY FREEWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437006,Dump,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,10:35,QUEENS,11385,,,,78av,79 st,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437689,Sedan,Pick-up Truck,,, +07/15/2021,12:30,QUEENS,11414,40.66431,-73.83954,"(40.66431, -73.83954)",,,94-07 156 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,21:18,BROOKLYN,11226,40.65392,-73.95367,"(40.65392, -73.95367)",,,186 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4437666,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/15/2021,3:14,BRONX,10457,40.838875,-73.90266,"(40.838875, -73.90266)",WASHINGTON AVENUE,CLAREMONT PARKWAY,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4437080,Bike,,,, +07/16/2021,18:20,STATEN ISLAND,10305,40.60986,-74.07448,"(40.60986, -74.07448)",,,393 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438002,Sedan,Sedan,,, +07/15/2021,5:44,STATEN ISLAND,10305,40.596294,-74.07828,"(40.596294, -74.07828)",,,84 LAMPORT BOULEVARD,0,0,0,0,0,0,0,0,Obstruction/Debris,Obstruction/Debris,,,,4437216,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,18:55,,,40.76791,-73.92542,"(40.76791, -73.92542)",30 ROAD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437887,Sedan,,,, +07/16/2021,9:44,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4437704,Sedan,Sedan,,, +07/14/2021,13:12,,,40.709755,-73.95707,"(40.709755, -73.95707)",SOUTH 4 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4436992,Fire truck,Sedan,Sedan,, +07/16/2021,13:30,QUEENS,11375,40.724422,-73.84479,"(40.724422, -73.84479)",,,108-33 69 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437516,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,15:00,,,40.894054,-73.86248,"(40.894054, -73.86248)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,4438100,Sedan,Sedan,Sedan,, +07/15/2021,12:40,BROOKLYN,11224,40.576744,-73.98372,"(40.576744, -73.98372)",MERMAID AVENUE,WEST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:14,BROOKLYN,11234,40.61222,-73.918846,"(40.61222, -73.918846)",,,5602 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,,,,,4437553,Sedan,Sedan,,, +07/14/2021,19:27,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436948,Sedan,,,, +07/15/2021,17:30,,,40.69593,-73.96548,"(40.69593, -73.96548)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4437252,Taxi,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/14/2021,6:30,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4437263,Dump,Sedan,,, +07/15/2021,22:25,,,40.81967,-73.94424,"(40.81967, -73.94424)",8 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4438248,Taxi,Sedan,,, +07/15/2021,18:30,,,,,,COLLEGE POINT BOULEVARD,31 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437713,Garbage or Refuse,,,, +07/15/2021,10:30,QUEENS,11435,40.698154,-73.80336,"(40.698154, -73.80336)",97 AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438290,Box Truck,Van,,, +07/07/2021,18:00,BROOKLYN,11233,40.677147,-73.92584,"(40.677147, -73.92584)",,,1906 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437948,Sedan,,,, +07/16/2021,1:03,MANHATTAN,10014,40.739033,-74.00315,"(40.739033, -74.00315)",,,63 8 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437800,Ambulance,Sedan,,, +07/15/2021,6:15,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437106,Pick-up Truck,Sedan,,, +07/15/2021,10:55,QUEENS,11101,40.74135,-73.937096,"(40.74135, -73.937096)",30 PLACE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437191,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,20:19,BROOKLYN,11226,40.64409,-73.95657,"(40.64409, -73.95657)",EAST 22 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437015,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,18:32,BRONX,10452,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4437363,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,12:55,,,40.667976,-73.79814,"(40.667976, -73.79814)",135 AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4437495,Bus,,,, +07/16/2021,16:30,,,40.692463,-73.81082,"(40.692463, -73.81082)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438285,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,21:00,BRONX,10457,40.842686,-73.89817,"(40.842686, -73.89817)",,,4040 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437827,Sedan,Sedan,,, +07/16/2021,14:45,BROOKLYN,11234,40.6082,-73.920715,"(40.6082, -73.920715)",FLATBUSH AVENUE,AVENUE V,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437554,Sedan,,,, +07/14/2021,7:20,QUEENS,11102,40.771572,-73.934074,"(40.771572, -73.934074)",,,30-02 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437067,Chassis Cab,Sedan,,, +07/16/2021,9:21,BRONX,10460,40.842655,-73.89052,"(40.842655, -73.89052)",EAST 176 STREET,PROSPECT AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4437432,Sedan,,,, +07/09/2021,12:35,,,40.674736,-73.925,"(40.674736, -73.925)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4437947,Lift Boom,Box Truck,,, +07/16/2021,14:00,QUEENS,11377,40.734337,-73.90003,"(40.734337, -73.90003)",65 PLACE,51 ROAD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4438044,Flat Bed,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan, +07/09/2021,11:30,QUEENS,11385,40.702484,-73.87422,"(40.702484, -73.87422)",,,74-17 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4437738,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +07/06/2021,9:10,MANHATTAN,10011,40.738735,-73.992325,"(40.738735, -73.992325)",,,3 WEST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437843,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,16:36,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437294,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,19:25,BROOKLYN,11249,40.71382,-73.96361,"(40.71382, -73.96361)",SOUTH 2 STREET,BERRY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438169,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,19:04,STATEN ISLAND,10314,40.61213,-74.12467,"(40.61213, -74.12467)",JOSEPHINE STREET,LESTER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437970,,,,, +07/16/2021,9:20,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4437488,Sedan,Sedan,,, +07/16/2021,14:00,QUEENS,11419,40.68945,-73.81271,"(40.68945, -73.81271)",,,105-36 133 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438216,Sedan,,,, +07/15/2021,15:45,QUEENS,11411,40.69787,-73.743034,"(40.69787, -73.743034)",SPRINGFIELD BOULEVARD,116 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437226,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,15:40,QUEENS,11385,40.700516,-73.89835,"(40.700516, -73.89835)",60 STREET,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437688,Sedan,,,, +07/08/2021,12:50,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437427,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,5:49,QUEENS,11691,40.603413,-73.76888,"(40.603413, -73.76888)",,,32-19 HEALY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4437336,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,16:12,,,40.764103,-73.93277,"(40.764103, -73.93277)",21 STREET,33 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437075,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,9:35,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4437609,Sedan,,,, +07/14/2021,7:25,BROOKLYN,11218,40.636505,-73.96937,"(40.636505, -73.96937)",DITMAS AVENUE,EAST 9 STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4437324,Sedan,Sedan,Sedan,, +07/14/2021,0:05,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437237,Sedan,Sedan,,, +07/14/2021,1:30,QUEENS,11106,40.765217,-73.93643,"(40.765217, -73.93643)",,,33-50 12 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436665,Van,Sedan,,, +07/15/2021,12:40,QUEENS,11354,40.761047,-73.83518,"(40.761047, -73.83518)",COLLEGE POINT BOULEVARD,36 ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4437280,Pick-up Truck,Box Truck,,, +07/15/2021,17:00,BRONX,10475,40.889427,-73.81921,"(40.889427, -73.81921)",,,3563 ROPES AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438104,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,13:47,QUEENS,11001,40.736744,-73.704865,"(40.736744, -73.704865)",,,263-18 EAST WILLISTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437538,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,0:21,,,40.691113,-73.838425,"(40.691113, -73.838425)",107 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,0:00,BROOKLYN,11205,40.694405,-73.97621,"(40.694405, -73.97621)",,,39 AUBURN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437464,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,20:01,BROOKLYN,11209,40.624783,-74.02951,"(40.624783, -74.02951)",,,326 84 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4437253,Station Wagon/Sport Utility Vehicle,Bike,,, +07/14/2021,18:38,,,,,,FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4436974,Sedan,Sedan,,, +07/16/2021,2:25,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4437772,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/15/2021,8:40,,,40.593124,-73.79148,"(40.593124, -73.79148)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437126,Pick-up Truck,Sedan,,, +07/14/2021,9:07,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",LONGWOOD AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436857,Sedan,Box Truck,,, +07/16/2021,11:30,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4437780,Van,Sedan,,, +07/10/2021,8:15,,,40.608253,-74.08879,"(40.608253, -74.08879)",STATEN ISLAND EXPRESSWAY,,,1,1,0,0,0,0,1,1,Lost Consciousness,Unspecified,,,,4437506,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,14:50,,,,,,,,26-50 BROOKLYN QUEENS EXPRESSWAY W/B,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437883,Sedan,,,, +07/16/2021,17:35,MANHATTAN,10025,40.804398,-73.96129,"(40.804398, -73.96129)",,,443 WEST 113 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437523,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,18:03,MANHATTAN,10001,40.750843,-73.99026,"(40.750843, -73.99026)",,,151 WEST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437810,Sedan,Sedan,,, +06/30/2021,19:19,STATEN ISLAND,10312,40.52791,-74.16486,"(40.52791, -74.16486)",HYLAN BOULEVARD,HOLDRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437459,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,17:00,,,40.594894,-73.98677,"(40.594894, -73.98677)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437658,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,16:15,,,40.826088,-73.86121,"(40.826088, -73.86121)",BRUCKNER BOULEVARD,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437120,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,12:50,BROOKLYN,11203,40.659527,-73.93704,"(40.659527, -73.93704)",FENIMORE STREET,TROY AVENUE,,0,0,0,0,0,0,0,0,,,,,,4437564,,,,, +07/14/2021,14:24,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4437997,Sedan,Bulk Agriculture,,, +07/16/2021,22:40,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4437819,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/16/2021,15:38,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",76 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437788,Sedan,Dump,Sedan,, +07/16/2021,0:43,BROOKLYN,11221,40.69816,-73.92528,"(40.69816, -73.92528)",CENTRAL AVENUE,DE KALB AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4437587,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/16/2021,8:59,,,40.852673,-73.919106,"(40.852673, -73.919106)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437407,Sedan,,,, +07/15/2021,14:25,,,40.714043,-73.92634,"(40.714043, -73.92634)",GARDNER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437268,Sedan,,,, +07/15/2021,16:45,BROOKLYN,11226,40.648014,-73.95818,"(40.648014, -73.95818)",,,965 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437767,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/14/2021,8:15,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437210,Sedan,Bus,,, +07/15/2021,12:20,,,,,,STATEN ISLAND EXPRESSWAY,FARRAGUT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437520,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/14/2021,17:40,,,40.582874,-73.98053,"(40.582874, -73.98053)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,23:37,,,,,,CONVENT AVENUE,WEST 138 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438018,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,7:30,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",37 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437919,Sedan,,,, +07/16/2021,14:32,,,0,0,"(0.0, 0.0)",148 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,9:00,BROOKLYN,11201,40.698376,-73.983055,"(40.698376, -73.983055)",GOLD STREET,NASSAU STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437549,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,14:00,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",150 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4437375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/14/2021,10:40,MANHATTAN,10019,40.763527,-73.97529,"(40.763527, -73.97529)",,,37 WEST 57 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437052,Sedan,Dump,,, +07/15/2021,8:20,BRONX,10462,40.852425,-73.86873,"(40.852425, -73.86873)",BRONX PARK EAST,BRADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437388,Sedan,Garbage or Refuse,,, +07/15/2021,5:40,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4437928,Box Truck,,,, +07/16/2021,19:10,BRONX,10467,40.88239,-73.88295,"(40.88239, -73.88295)",,,3464 KNOX PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:00,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4437491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,16:57,BROOKLYN,11212,40.66386,-73.92456,"(40.66386, -73.92456)",RUTLAND ROAD,EAST 96 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438034,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,19:10,QUEENS,11366,40.722904,-73.80468,"(40.722904, -73.80468)",164 STREET,78 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4438065,Sedan,Sedan,,, +07/14/2021,19:57,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",108 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437182,Sedan,Bike,,, +07/14/2021,5:50,BRONX,10468,40.860332,-73.8983,"(40.860332, -73.8983)",EAST 187 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437087,Taxi,,,, +07/13/2021,12:45,BROOKLYN,11218,40.658722,-73.97517,"(40.658722, -73.97517)",PROSPECT PARK SOUTHWEST,11 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4437964,Moped,,,, +07/14/2021,14:00,QUEENS,11374,40.72873,-73.87215,"(40.72873, -73.87215)",,,85-43 ELIOT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436917,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,5:07,,,40.684856,-73.79899,"(40.684856, -73.79899)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437558,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,11:22,,,40.58077,-73.96556,"(40.58077, -73.96556)",BRIGHTON 3 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4437864,Sedan,Garbage or Refuse,,, +07/16/2021,18:40,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437598,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,19:30,BROOKLYN,11229,40.607327,-73.957085,"(40.607327, -73.957085)",,,1738 EAST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437641,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,10:14,,,40.84603,-73.93034,"(40.84603, -73.93034)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438122,Flat Bed,,,, +07/16/2021,23:00,,,,,,EAST 25 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,2:55,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4436944,Pick-up Truck,,,, +07/15/2021,17:40,MANHATTAN,10032,40.830154,-73.941666,"(40.830154, -73.941666)",WEST 154 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4437745,,,,, +07/15/2021,14:36,MANHATTAN,10028,40.77418,-73.95296,"(40.77418, -73.95296)",,,345 EAST 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437315,Sedan,Sedan,,, +07/14/2021,7:15,BRONX,10467,40.86316,-73.86413,"(40.86316, -73.86413)",,,785 MACE AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4436792,Sedan,Sedan,,, +07/03/2021,19:20,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438173,Pick-up Truck,,,, +07/15/2021,16:45,BROOKLYN,11233,40.678253,-73.91019,"(40.678253, -73.91019)",,,2071 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437854,Sedan,Pick-up Truck,,, +07/15/2021,17:23,BRONX,10458,40.86607,-73.89439,"(40.86607, -73.89439)",GRAND CONCOURSE,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437299,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,19:05,,,40.67665,-73.780655,"(40.67665, -73.780655)",128 AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4437094,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/16/2021,8:00,BROOKLYN,11212,40.66438,-73.90261,"(40.66438, -73.90261)",,,393 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437856,Sedan,,,, +07/19/2020,2:30,MANHATTAN,10039,40.826176,-73.93877,"(40.826176, -73.93877)",,,28 MACOMBS PLACE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438225,Sedan,E-Bike,,, +07/15/2021,17:00,,,40.71699,-73.82402,"(40.71699, -73.82402)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4437447,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/14/2021,10:40,BRONX,10460,40.850666,-73.88243,"(40.850666, -73.88243)",,,2300 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4436998,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,12:07,,,40.860535,-73.914345,"(40.860535, -73.914345)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437360,Sedan,Sedan,,, +07/13/2021,13:30,MANHATTAN,10003,40.729774,-73.98682,"(40.729774, -73.98682)",EAST 10 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437903,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/15/2021,18:55,MANHATTAN,10026,40.800293,-73.95356,"(40.800293, -73.95356)",,,140 WEST 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437442,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:00,BROOKLYN,11206,40.705673,-73.94552,"(40.705673, -73.94552)",,,91 BOERUM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437276,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,4:20,MANHATTAN,10031,40.824844,-73.95161,"(40.824844, -73.95161)",,,3490 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4437342,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,11:39,BRONX,10457,40.847065,-73.8916,"(40.847065, -73.8916)",,,1997 HUGHES AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436923,Sedan,,,, +07/14/2021,13:30,,,40.787025,-73.793,"(40.787025, -73.793)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4436949,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,13:45,BROOKLYN,11235,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,BRIGHTON BEACH AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4437192,Taxi,,,, +07/14/2021,21:45,MANHATTAN,10036,40.755844,-73.984436,"(40.755844, -73.984436)",,,124 WEST 43 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437808,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,20:35,,,40.850166,-73.93576,"(40.850166, -73.93576)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437141,Sedan,Sedan,,, +07/08/2021,10:47,QUEENS,11373,40.734737,-73.87227,"(40.734737, -73.87227)",57 AVENUE,90 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4437990,E-Bike,,,, +07/15/2021,3:29,BRONX,10452,40.838127,-73.91931,"(40.838127, -73.91931)",JEROME AVENUE,WEST CLARKE PLACE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437155,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/13/2021,17:25,MANHATTAN,10034,40.868248,-73.916145,"(40.868248, -73.916145)",WEST 213 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4437364,Station Wagon/Sport Utility Vehicle,Motorbike,,, +06/25/2021,14:35,BRONX,10459,40.822613,-73.88706,"(40.822613, -73.88706)",,,1365 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:06,,,40.895523,-73.8504,"(40.895523, -73.8504)",GUNTHER AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4436788,Sedan,,,, +07/16/2021,20:20,,,40.828728,-73.914734,"(40.828728, -73.914734)",FINDLAY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437649,Sedan,,,, +07/16/2021,7:40,BRONX,10452,40.84224,-73.917694,"(40.84224, -73.917694)",INWOOD AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437403,Sedan,MOPED,,, +07/14/2021,20:35,BRONX,10461,0,0,"(0.0, 0.0)",SAINT THERESA AVENUE,HOBART AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437873,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/16/2021,12:50,,,40.697193,-73.72752,"(40.697193, -73.72752)",115 AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437535,Sedan,Van,,, +07/07/2021,22:00,QUEENS,11368,40.736336,-73.857574,"(40.736336, -73.857574)",,,99-49 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438077,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,9:45,BRONX,10452,40.83533,-73.927,"(40.83533, -73.927)",NELSON AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437496,Sedan,,,, +07/14/2021,22:04,,,40.692,-73.92646,"(40.692, -73.92646)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437059,Sedan,Ambulance,,, +07/04/2022,23:15,QUEENS,11379,40.723484,-73.87685,"(40.723484, -73.87685)",81 STREET,62 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544351,Sedan,E-Bike,,, +07/09/2021,14:30,QUEENS,11434,40.691895,-73.77822,"(40.691895, -73.77822)",LINDEN BOULEVARD,172 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437371,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,17:57,BROOKLYN,11235,40.583538,-73.949615,"(40.583538, -73.949615)",EMMONS AVENUE,EAST 19 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4437503,Bike,,,, +07/14/2021,14:39,BRONX,10467,40.865406,-73.86838,"(40.865406, -73.86838)",ALLERTON AVENUE,OLINVILLE AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437630,Sedan,,,, +07/11/2021,21:00,QUEENS,11373,40.740974,-73.888405,"(40.740974, -73.888405)",76 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438012,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/14/2021,23:35,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437392,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,7:45,MANHATTAN,10027,40.821117,-73.957466,"(40.821117, -73.957466)",12 AVENUE,WEST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437750,Sedan,,,, +07/16/2021,19:10,QUEENS,11691,40.59778,-73.73974,"(40.59778, -73.73974)",SEAGIRT BOULEVARD,BEACH 6 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437582,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2021,22:05,QUEENS,11435,40.692646,-73.800865,"(40.692646, -73.800865)",,,146-50 LAKEWOOD AVENUE,2,0,1,0,1,0,0,0,Unspecified,,,,,4438280,Bike,,,, +07/14/2021,2:30,BROOKLYN,11208,40.675194,-73.883766,"(40.675194, -73.883766)",,,335 ELTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436844,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/13/2021,8:41,,,40.57987,-73.95667,"(40.57987, -73.95667)",BRIGHTON 12 STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4437912,Sedan,,,, +07/13/2021,15:01,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437369,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:10,BROOKLYN,11212,,,,,,13 CHRISTOPHER AVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:18,BROOKLYN,11226,40.652817,-73.95963,"(40.652817, -73.95963)",,,2128 CATON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437776,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,19:21,QUEENS,11354,40.764084,-73.83336,"(40.764084, -73.83336)",PRINCE STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437696,Sedan,Sedan,,, +07/15/2021,7:22,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4437104,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,18:08,QUEENS,11385,40.705376,-73.868614,"(40.705376, -73.868614)",80 STREET,78 AVENUE,,0,0,0,0,0,0,0,0,,,,,,4437677,Sedan,,,, +07/16/2021,20:35,BROOKLYN,11206,40.708305,-73.948425,"(40.708305, -73.948425)",LORIMER STREET,SCHOLES STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438164,E-Bike,,,, +07/14/2021,1:04,,,40.89316,-73.852425,"(40.89316, -73.852425)",BRONXWOOD AVENUE,BUSSING AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4436772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,13:28,,,40.749733,-73.936104,"(40.749733, -73.936104)",NORTHERN BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437888,E-Scooter,,,, +07/14/2021,8:30,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",ROOSEVELT AVENUE,114 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4436954,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,16:07,MANHATTAN,10030,40.82005,-73.939285,"(40.82005, -73.939285)",,,131 WEST 143 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4437138,Bus,Sedan,,, +07/16/2021,8:45,QUEENS,11422,40.672203,-73.73061,"(40.672203, -73.73061)",,,134-01 244 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437419,Sedan,,,, +07/15/2021,9:08,,,40.692,-73.92646,"(40.692, -73.92646)",BROADWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4437347,Station Wagon/Sport Utility Vehicle,Bus,,, +07/16/2021,12:30,MANHATTAN,10035,40.802578,-73.939156,"(40.802578, -73.939156)",,,114 EAST 122 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437479,Taxi,Sedan,,, +07/16/2021,19:40,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4437619,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,20:45,BROOKLYN,11210,40.638447,-73.95117,"(40.638447, -73.95117)",FOSTER AVENUE,ROGERS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437671,Sedan,,,, +07/15/2021,12:09,,,40.746174,-73.82473,"(40.746174, -73.82473)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437695,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,13:30,QUEENS,11420,40.68204,-73.808914,"(40.68204, -73.808914)",LINDEN BOULEVARD,133 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437084,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/16/2021,21:10,,,40.700123,-73.91632,"(40.700123, -73.91632)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4437530,Sedan,Sedan,,, +07/14/2021,12:30,QUEENS,11101,40.743534,-73.95072,"(40.743534, -73.95072)",JACKSON AVENUE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436908,Van,Sedan,,, +07/16/2021,11:30,QUEENS,11417,40.682262,-73.84514,"(40.682262, -73.84514)",WOODHAVEN BOULEVARD,103 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4438185,Sedan,Bus,,, +07/13/2021,9:00,MANHATTAN,10031,40.822296,-73.95435,"(40.822296, -73.95435)",,,618 WEST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438130,Van,,,, +07/15/2021,22:20,,,40.74137,-73.97252,"(40.74137, -73.97252)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4438086,Sedan,Sedan,Sedan,, +07/14/2021,16:35,,,40.689137,-73.990715,"(40.689137, -73.990715)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437262,Bus,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,14:00,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437498,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,23:07,MANHATTAN,10016,40.748886,-73.975845,"(40.748886, -73.975845)",EAST 39 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4437242,,,,, +07/16/2021,20:55,BROOKLYN,11210,40.63686,-73.93849,"(40.63686, -73.93849)",EAST 40 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437714,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/16/2021,12:05,BROOKLYN,11209,40.611954,-74.03186,"(40.611954, -74.03186)",100 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437483,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,13:50,,,40.7842,-73.942215,"(40.7842, -73.942215)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437002,Sedan,Sedan,,, +07/10/2021,15:00,,,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4437396,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/29/2021,11:30,BRONX,10475,40.885517,-73.82398,"(40.885517, -73.82398)",,,2385 HOLLERS AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,,,,4472421,Tractor Truck Gasoline,Sedan,,, +07/15/2021,9:00,,,40.727776,-73.92902,"(40.727776, -73.92902)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437574,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,18:00,QUEENS,11101,40.74255,-73.93116,"(40.74255, -73.93116)",34 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4436985,Tractor Truck Diesel,Bus,,, +07/12/2021,6:40,QUEENS,11378,40.73001,-73.88836,"(40.73001, -73.88836)",,,73-56 GRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437515,Dump,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,8:29,QUEENS,11693,40.614872,-73.82165,"(40.614872, -73.82165)",CROSS BAY BOULEVARD,EAST 1 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4437200,Bus,Sedan,,, +07/15/2021,15:17,MANHATTAN,10014,40.72899,-74.00935,"(40.72899, -74.00935)",WASHINGTON STREET,WEST HOUSTON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437805,Sedan,Sedan,,, +07/16/2021,23:50,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unsafe Lane Changing,,,4437831,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +07/16/2021,19:30,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438274,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,13:53,,,40.71886,-73.97492,"(40.71886, -73.97492)",EAST HOUSTON STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437557,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,18:19,BROOKLYN,11235,40.588142,-73.9444,"(40.588142, -73.9444)",,,4647 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4437643,Motorcycle,Sedan,,, +07/16/2021,13:50,,,40.747112,-73.96894,"(40.747112, -73.96894)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4437528,Pick-up Truck,Sedan,Sedan,, +07/16/2021,1:16,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437934,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,18:30,,,40.676193,-74.001335,"(40.676193, -74.001335)",WEST 9 STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4438238,Taxi,Sedan,,, +07/14/2021,6:29,,,40.636177,-74.13182,"(40.636177, -74.13182)",,,160 HEBERTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/14/2021,19:56,MANHATTAN,10128,40.784668,-73.95604,"(40.784668, -73.95604)",MADISON AVENUE,EAST 92 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437007,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,3:20,QUEENS,11368,40.757034,-73.87133,"(40.757034, -73.87133)",NORTHERN BOULEVARD,97 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437401,Taxi,Taxi,,, +07/09/2021,19:50,QUEENS,11368,40.744736,-73.85515,"(40.744736, -73.85515)",,,108-14 50 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438084,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,18:00,BROOKLYN,11213,40.670376,-73.92741,"(40.670376, -73.92741)",,,1490 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437952,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,14:30,BROOKLYN,11232,40.656864,-73.9981,"(40.656864, -73.9981)",29 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437656,Sedan,Tractor Truck Diesel,,, +06/17/2021,10:00,MANHATTAN,10013,40.717625,-73.99826,"(40.717625, -73.99826)",,,114 MULBERRY STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437848,Sedan,,,, +07/15/2021,14:13,QUEENS,11373,40.746666,-73.88564,"(40.746666, -73.88564)",,,40-19 80 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438019,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,11:30,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437550,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,21:55,,,40.756317,-73.83369,"(40.756317, -73.83369)",41 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,14:40,BRONX,10458,40.85931,-73.89208,"(40.85931, -73.89208)",EAST 188 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438256,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/16/2021,2:30,BROOKLYN,11218,40.640907,-73.96928,"(40.640907, -73.96928)",,,664 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437918,Taxi,Sedan,,, +07/14/2021,12:42,BRONX,10467,40.862698,-73.86621,"(40.862698, -73.86621)",,,2441 BOSTON ROAD,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4436889,Station Wagon/Sport Utility Vehicle,Moped,,, +07/16/2021,4:43,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437332,Sedan,Bike,,, +07/14/2021,1:15,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436824,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,21:00,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4437271,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/14/2021,15:50,,,40.853462,-73.88939,"(40.853462, -73.88939)",EAST 184 STREET,ARTHUR AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437111,Sedan,,,, +07/06/2021,0:00,BROOKLYN,11233,40.67843,-73.91357,"(40.67843, -73.91357)",FULTON STREET,BOYLAND STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4437771,Sedan,Sedan,Sedan,, +07/16/2021,0:27,BRONX,10452,40.833183,-73.93022,"(40.833183, -73.93022)",SUMMIT AVENUE,WEST 164 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4437384,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/16/2021,10:08,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,10:40,BROOKLYN,11235,40.590572,-73.93999,"(40.590572, -73.93999)",,,3823 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,,,,4437159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:12,BROOKLYN,11203,40.639317,-73.9368,"(40.639317, -73.9368)",FOSTER AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436932,Sedan,,,, +07/14/2021,15:20,BRONX,10475,40.869423,-73.825745,"(40.869423, -73.825745)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4437029,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/15/2021,23:10,,,40.7104,-73.83974,"(40.7104, -73.83974)",UNION TURNPIKE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437732,Sedan,,,, +07/12/2021,1:52,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437434,Sedan,Sedan,Sedan,, +07/14/2021,11:45,,,40.551456,-74.185165,"(40.551456, -74.185165)",CROWN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4437134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,17:15,BRONX,10457,40.837994,-73.90132,"(40.837994, -73.90132)",,,3812 3 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437079,Sedan,Sedan,,, +07/16/2021,3:45,,,40.76874,-73.90881,"(40.76874, -73.90881)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437892,Sedan,,,, +10/27/2021,7:45,BROOKLYN,11207,40.66367,-73.89376,"(40.66367, -73.89376)",,,557 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471400,Station Wagon/Sport Utility Vehicle,Bus,,, +07/16/2021,10:15,,,40.85533,-73.93332,"(40.85533, -73.93332)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437981,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,16:17,STATEN ISLAND,10310,40.6271,-74.12514,"(40.6271, -74.12514)",FOREST AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437971,Sedan,Sedan,,, +07/14/2021,1:27,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4436806,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/14/2021,0:30,BROOKLYN,11221,40.694305,-73.91852,"(40.694305, -73.91852)",CENTRAL AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4436721,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,16:05,,,40.805058,-73.93904,"(40.805058, -73.93904)",EAST 125 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436960,Sedan,Bus,,, +07/16/2021,19:07,BROOKLYN,11209,40.63139,-74.03077,"(40.63139, -74.03077)",76 STREET,RIDGE BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437615,Sedan,Sedan,Sedan,, +07/16/2021,0:16,,,40.81982,-73.81286,"(40.81982, -73.81286)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437309,Sedan,Tractor Truck Diesel,,, +07/14/2021,22:30,BROOKLYN,11210,40.628086,-73.94422,"(40.628086, -73.94422)",,,1828 NEW YORK AVENUE,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4437036,Sedan,E-Bike,,, +07/14/2021,9:30,,,40.63757,-74.01457,"(40.63757, -74.01457)",61 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4436938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,22:15,QUEENS,11435,40.694557,-73.80982,"(40.694557, -73.80982)",,,138-39 101 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4438287,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,23:30,QUEENS,11372,40.75053,-73.893005,"(40.75053, -73.893005)",,,35-54 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437411,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,15:00,BROOKLYN,11217,40.67968,-73.97826,"(40.67968, -73.97826)",PARK PLACE,5 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437246,Bus,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,22:50,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,11:00,BRONX,10467,40.88316,-73.8809,"(40.88316, -73.8809)",,,3510 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4437466,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,23:40,QUEENS,11413,40.67511,-73.76032,"(40.67511, -73.76032)",137 AVENUE,SOUTHGATE STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4437543,Sedan,,,, +07/15/2021,12:29,,,40.790295,-73.9694,"(40.790295, -73.9694)",WEST 92 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4437207,Box Truck,Sedan,,, +07/16/2021,17:19,MANHATTAN,10003,40.733433,-73.9955,"(40.733433, -73.9955)",EAST 10 STREET,5 AVENUE,,2,0,0,0,1,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4437795,Moped,Bike,,, +07/15/2021,11:20,,,40.693348,-73.830536,"(40.693348, -73.830536)",116 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437511,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,3:26,BRONX,10473,40.82044,-73.85366,"(40.82044, -73.85366)",,,2025 SEWARD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437940,Sedan,Sedan,,, +07/14/2021,13:22,BROOKLYN,11237,40.70704,-73.9246,"(40.70704, -73.9246)",,,1201 FLUSHING AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4437287,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,10:00,,,40.67312,-73.878654,"(40.67312, -73.878654)",BELMONT AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4437416,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,18:30,BRONX,10457,40.84947,-73.889244,"(40.84947, -73.889244)",BELMONT AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:25,BRONX,10458,40.856743,-73.89527,"(40.856743, -73.89527)",WEBSTER AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438060,Ambulance,Sedan,,, +07/16/2021,2:10,BRONX,10460,40.83558,-73.886665,"(40.83558, -73.886665)",,,1680 VYSE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4437826,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/15/2021,14:44,,,40.795525,-73.97594,"(40.795525, -73.97594)",WEST 95 STREET,,,2,0,0,0,1,0,0,0,Unsafe Speed,Turning Improperly,,,,4437379,E-Scooter,Bike,,, +07/16/2021,0:00,,,40.701332,-73.92684,"(40.701332, -73.92684)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437588,Sedan,Tow Truck / Wrecker,,, +07/16/2021,19:02,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Backing Unsafely,,,,4437570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,13:25,,,40.737133,-73.99033,"(40.737133, -73.99033)",EAST 17 STREET,,,0,1,0,1,0,0,0,0,Oversized Vehicle,,,,,4436976,Tow Truck / Wrecker,,,, +07/16/2021,20:05,,,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4437871,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,11:47,STATEN ISLAND,10306,40.58,-74.106224,"(40.58, -74.106224)",,,130 MIDLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437217,Station Wagon/Sport Utility Vehicle,,,, +07/03/2021,2:50,QUEENS,11368,40.740578,-73.85853,"(40.740578, -73.85853)",,,54-25 102 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438004,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,5:50,,,40.60646,-74.164345,"(40.60646, -74.164345)",JONES STREET,CLIFTON STREET,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4437306,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,8:33,,,40.74006,-73.789894,"(40.74006, -73.789894)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,13:20,BROOKLYN,11220,40.64209,-74.002686,"(40.64209, -74.002686)",,,4815 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437325,Sedan,Sedan,,, +07/16/2021,16:12,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4437703,Sedan,Sedan,Sedan,, +07/15/2021,14:58,BROOKLYN,11218,40.639996,-73.982216,"(40.639996, -73.982216)",,,1425 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437925,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,10:00,,,40.74017,-73.97615,"(40.74017, -73.97615)",1 AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4437480,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,17:19,,,40.803844,-73.91444,"(40.803844, -73.91444)",EAST 136 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437348,Box Truck,Sedan,,, +07/15/2021,12:25,BROOKLYN,11215,40.66154,-73.98274,"(40.66154, -73.98274)",16 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437465,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/08/2021,17:56,MANHATTAN,10003,,,,,,34 1/2 EAST 12 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438062,Sedan,Sedan,,, +07/15/2021,0:25,,,,,,HORACE HARDING EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437443,Sedan,Sedan,,, +07/14/2021,13:00,MANHATTAN,10029,40.789623,-73.94007,"(40.789623, -73.94007)",EAST 106 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436859,Taxi,Sedan,,, +07/15/2021,9:55,BRONX,10462,40.84304,-73.865776,"(40.84304, -73.865776)",,,1673 UNIONPORT ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4437127,Sedan,,,, +07/15/2021,17:32,BRONX,10453,40.847317,-73.911476,"(40.847317, -73.911476)",TOWNSEND AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438064,Garbage or Refuse,,,, +07/15/2021,20:00,BROOKLYN,11237,40.710667,-73.93361,"(40.710667, -73.93361)",MORGAN AVENUE,STAGG STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4437275,Motorcycle,Sedan,,, +07/14/2021,14:40,BROOKLYN,11229,40.603203,-73.937584,"(40.603203, -73.937584)",AVENUE T,COYLE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437088,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,11:56,BROOKLYN,11208,40.677498,-73.87149,"(40.677498, -73.87149)",CONDUIT BOULEVARD,PINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436838,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:00,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,1,0,0,0,0,0,1,0,Outside Car Distraction,,,,,4436925,Sedan,,,, +07/16/2021,6:35,QUEENS,11368,40.73673,-73.85625,"(40.73673, -73.85625)",OTIS AVENUE,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438029,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,14:30,,,40.845837,-73.892006,"(40.845837, -73.892006)",EAST TREMONT AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437438,Sedan,E-Bike,,, +07/16/2021,13:05,,,40.834095,-73.94983,"(40.834095, -73.94983)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,12:12,BRONX,10457,40.85192,-73.89694,"(40.85192, -73.89694)",PARK AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4437172,Sedan,Box Truck,,, +07/15/2021,9:00,BROOKLYN,11214,40.594894,-73.98677,"(40.594894, -73.98677)",26 AVENUE,BENSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437156,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,2:00,QUEENS,11372,40.75468,-73.893745,"(40.75468, -73.893745)",NORTHERN BOULEVARD,73 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4436793,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,10:27,QUEENS,11432,40.71858,-73.802475,"(40.71858, -73.802475)",,,82-34 164 PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437455,Sedan,,,, +06/18/2021,17:03,QUEENS,11368,40.74557,-73.8658,"(40.74557, -73.8658)",,,97-07 44 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4437989,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/16/2021,15:12,QUEENS,11102,,,,Astoria blvd,8th street,,2,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438168,Taxi,E-Bike,,, +07/15/2021,19:07,,,40.71122,-73.72827,"(40.71122, -73.72827)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437288,Sedan,,,, +06/26/2021,21:20,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",NEWTOWN AVENUE,31 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438166,E-Scooter,,,, +07/12/2021,4:50,QUEENS,11370,40.758354,-73.89441,"(40.758354, -73.89441)",31 AVENUE,73 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437406,Sedan,,,, +07/12/2021,9:30,QUEENS,11378,40.72262,-73.901535,"(40.72262, -73.901535)",FLUSHING AVENUE,64 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4437680,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,16:30,,,40.754974,-73.93106,"(40.754974, -73.93106)",37 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4437896,Box Truck,Sedan,,, +07/16/2021,21:19,,,40.788357,-73.97453,"(40.788357, -73.97453)",WEST 87 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437610,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,14:15,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4437334,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +07/15/2021,14:10,MANHATTAN,10029,40.793777,-73.9459,"(40.793777, -73.9459)",,,124 EAST 108 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4437212,Box Truck,Sedan,,, +07/14/2021,20:31,BRONX,10467,40.884277,-73.86243,"(40.884277, -73.86243)",EAST 220 STREET,WHITE PLAINS ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437359,Bike,,,, +07/14/2021,14:15,BROOKLYN,11226,40.634464,-73.96319,"(40.634464, -73.96319)",,,632 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,,4437014,Sedan,Sedan,Sedan,Sedan, +07/15/2021,16:40,BROOKLYN,11217,40.687183,-73.9766,"(40.687183, -73.9766)",FULTON STREET,FORT GREENE PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437251,Station Wagon/Sport Utility Vehicle,Bus,,, +07/15/2021,12:58,,,,,,GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437254,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,1:17,BRONX,10468,40.862583,-73.90932,"(40.862583, -73.90932)",,,202 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4436673,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,11:00,,,40.774654,-73.9541,"(40.774654, -73.9541)",EAST 81 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437314,Sedan,Bike,,, +07/14/2021,18:00,BROOKLYN,11207,40.689743,-73.90892,"(40.689743, -73.90892)",,,178 COVERT STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4437058,Taxi,Sedan,Taxi,, +07/11/2021,6:00,QUEENS,11368,40.737305,-73.858536,"(40.737305, -73.858536)",,,99-35 59 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438005,Sedan,,,, +07/14/2021,6:45,,,40.768734,-73.89156,"(40.768734, -73.89156)",78 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,22:15,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",144 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437374,Taxi,Sedan,,, +07/16/2021,1:20,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4437539,Sedan,,,, +07/15/2021,19:00,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437281,Sedan,Motorcycle,,, +07/13/2021,15:00,BROOKLYN,11215,40.678047,-73.9847,"(40.678047, -73.9847)",,,576 UNION STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4437391,Sedan,Sedan,,, +07/14/2021,15:11,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4436972,Sedan,Sedan,,, +07/15/2021,10:00,QUEENS,11368,40.737713,-73.85496,"(40.737713, -73.85496)",,,59-38 XENIA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438011,Sedan,,,, +07/14/2021,11:57,,,40.61483,-73.99838,"(40.61483, -73.99838)",BAY RIDGE PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437184,Sedan,Taxi,,, +07/15/2021,11:20,QUEENS,11419,40.689766,-73.8267,"(40.689766, -73.8267)",,,118-07 101 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437470,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,15:10,BRONX,10457,40.849106,-73.89495,"(40.849106, -73.89495)",3 AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438257,Sedan,Sedan,,, +07/15/2021,11:00,,,40.709827,-73.83983,"(40.709827, -73.83983)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4437507,Sedan,,,, +07/10/2021,0:03,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/13/2021,14:29,MANHATTAN,10012,40.72915,-73.999084,"(40.72915, -73.999084)",,,221 THOMPSON STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4437792,Sedan,,,, +07/11/2021,18:05,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437433,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,19:18,QUEENS,11423,40.724964,-73.779076,"(40.724964, -73.779076)",MIDLAND PARKWAY,188 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438051,Sedan,Sedan,,, +07/11/2021,4:20,QUEENS,11385,40.711952,-73.86258,"(40.711952, -73.86258)",,,89-16 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437737,Sedan,,,, +07/11/2021,18:00,,,40.66167,-73.93727,"(40.66167, -73.93727)",MAPLE STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4437565,Sedan,Sedan,,, +07/13/2021,9:40,BROOKLYN,11224,40.57686,-73.98266,"(40.57686, -73.98266)",MERMAID AVENUE,WEST 15 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437845,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,6:00,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4437878,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:00,BRONX,10467,40.879578,-73.879,"(40.879578, -73.879)",BAINBRIDGE AVENUE,EAST 210 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4436997,Van,Sedan,,, +07/16/2021,10:35,STATEN ISLAND,10304,40.617832,-74.08627,"(40.617832, -74.08627)",IRVING PLACE,VANDUZER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437998,Sedan,Sedan,,, +07/15/2021,19:45,BRONX,10467,40.879467,-73.87518,"(40.879467, -73.87518)",,,272 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437300,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,16:57,,,40.82034,-73.940025,"(40.82034, -73.940025)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438222,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2021,3:40,MANHATTAN,10014,40.731125,-74.004234,"(40.731125, -74.004234)",7 AVENUE SOUTH,MORTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437448,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,23:40,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",UNION TURNPIKE,MAIN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,23:30,,,40.75372,-73.83283,"(40.75372, -73.83283)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437709,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,19:15,QUEENS,11368,40.74209,-73.854324,"(40.74209, -73.854324)",108 STREET,MARTENSE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438076,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,17:12,QUEENS,11377,40.75529,-73.90847,"(40.75529, -73.90847)",51 STREET,32 AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437889,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/13/2021,16:57,,,0,0,"(0.0, 0.0)",BROADWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437905,PK,Sedan,,, +07/16/2021,11:03,,,,,,EXTERIOR STREET,MACOMBS DAM BRIDGE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4437497,Sedan,Sedan,,, +07/14/2021,23:19,BRONX,10467,40.88288,-73.8632,"(40.88288, -73.8632)",EAST 218 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437365,Sedan,Sedan,,, +07/14/2021,22:25,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437627,Sedan,Sedan,,, +07/15/2021,14:30,QUEENS,11101,40.758038,-73.942024,"(40.758038, -73.942024)",,,38-56 11 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437460,Sedan,,,, +07/03/2021,2:00,BROOKLYN,11236,40.652878,-73.919815,"(40.652878, -73.919815)",,,9006 CHURCH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438137,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,22:20,QUEENS,11385,40.713814,-73.92058,"(40.713814, -73.92058)",,,47-05 METROPOLITAN AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437672,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,19:00,,,40.66768,-73.961815,"(40.66768, -73.961815)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437561,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,12:30,QUEENS,11427,40.728798,-73.73231,"(40.728798, -73.73231)",,,89-15 LYMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437757,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,19:15,BRONX,10456,40.830914,-73.92047,"(40.830914, -73.92047)",EAST 165 STREET,GRAND CONCOURSE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4437492,Sedan,Bike,,, +07/15/2021,22:00,QUEENS,11423,40.711414,-73.77414,"(40.711414, -73.77414)",,,90-17 186 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438281,Sedan,,,, +07/12/2021,16:33,QUEENS,11105,40.78228,-73.914604,"(40.78228, -73.914604)",21 AVENUE,21 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437884,E-Bike,,,, +07/16/2021,14:10,MANHATTAN,10027,40.815643,-73.954315,"(40.815643, -73.954315)",,,499 WEST 130 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438033,Sedan,,,, +07/14/2021,17:20,MANHATTAN,10036,40.7631,-73.99296,"(40.7631, -73.99296)",,,666 10 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437068,Sedan,Box Truck,,, +07/14/2021,5:40,QUEENS,11385,40.706245,-73.89801,"(40.706245, -73.89801)",PUTNAM AVENUE,STIER PLACE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4436914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/14/2021,8:24,MANHATTAN,10025,,,,west 106 street,Columbus Avenue,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4436782,Sedan,,,, +07/14/2021,18:00,BRONX,10472,40.83411,-73.86336,"(40.83411, -73.86336)",,,1271 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4437121,Sedan,Sedan,,, +07/15/2021,8:50,BRONX,10467,40.879543,-73.87221,"(40.879543, -73.87221)",,,3554 DECATUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437196,Ambulance,Sedan,,, +07/16/2021,8:50,BROOKLYN,11236,40.647217,-73.91609,"(40.647217, -73.91609)",,,8802 DITMAS AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4438103,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,19:46,QUEENS,11434,40.66705,-73.77417,"(40.66705, -73.77417)",SOUTH CONDUIT AVENUE,176 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4436950,Sedan,Box Truck,,, +07/14/2021,16:57,,,40.776295,-73.98215,"(40.776295, -73.98215)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4436943,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +07/15/2021,9:11,BROOKLYN,11215,40.66303,-73.991684,"(40.66303, -73.991684)",5 AVENUE,18 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437142,Sedan,,,, +07/15/2021,17:00,QUEENS,11377,40.75399,-73.90031,"(40.75399, -73.90031)",62 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437292,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,21:57,,,40.57629,-73.968544,"(40.57629, -73.968544)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4437839,Sedan,Taxi,,, +07/14/2021,21:57,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437475,Van,Van,,, +07/16/2021,3:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4438172,Sedan,,,, +07/16/2021,13:00,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4437534,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/15/2021,6:54,,,40.840786,-73.9232,"(40.840786, -73.9232)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437402,Sedan,Taxi,,, +07/10/2021,10:37,QUEENS,11373,40.730892,-73.88816,"(40.730892, -73.88816)",,,53-10 74 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437687,Sedan,,,, +07/14/2021,14:00,BROOKLYN,11211,,,,GRAND STREET,UNION AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4436991,Pick-up Truck,Motorscooter,,, +07/14/2021,17:40,,,,,,SHELL ROAD,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437024,Sedan,Sedan,,, +07/15/2021,0:44,BROOKLYN,11249,40.713924,-73.96714,"(40.713924, -73.96714)",KENT AVENUE,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437267,Sedan,,,, +07/15/2021,7:20,,,40.66626,-73.99596,"(40.66626, -73.99596)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437238,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/12/2021,0:10,BRONX,10452,40.836506,-73.928856,"(40.836506, -73.928856)",,,1105 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437355,Sedan,Sedan,,, +07/14/2021,20:00,QUEENS,11368,40.751835,-73.869774,"(40.751835, -73.869774)",,,97-08 37 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437519,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,15:30,,,40.73833,-73.8499,"(40.73833, -73.8499)",HORACE HARDING EXPRESSWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4438007,Station Wagon/Sport Utility Vehicle,Bike,,, +07/15/2021,12:51,BRONX,10461,40.841618,-73.84337,"(40.841618, -73.84337)",,,35 WESTCHESTER SQUARE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437370,Sedan,Box Truck,,, +07/14/2021,13:00,QUEENS,11106,40.760796,-73.92966,"(40.760796, -73.92966)",28 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437049,Sedan,Taxi,,, +07/15/2021,0:00,BROOKLYN,11235,40.586376,-73.9479,"(40.586376, -73.9479)",VOORHIES AVENUE,EAST 21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,20:04,BRONX,10469,40.872993,-73.85267,"(40.872993, -73.85267)",EAST GUN HILL ROAD,TENBROECK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437387,Sedan,,,, +07/14/2021,17:32,BROOKLYN,11238,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436977,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,18:22,MANHATTAN,10005,40.705772,-74.00887,"(40.705772, -74.00887)",,,63 WALL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,,,,4437340,Garbage or Refuse,Van,,, +07/09/2021,22:22,BROOKLYN,11212,40.658367,-73.90881,"(40.658367, -73.90881)",,,537 CHESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437784,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,16:00,QUEENS,11691,40.592667,-73.78353,"(40.592667, -73.78353)",,,53-07 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4437580,Sedan,,,, +07/15/2021,14:17,,,40.606865,-74.08805,"(40.606865, -74.08805)",CLOVE ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437218,Sedan,Sedan,,, +07/16/2021,19:30,,,40.636826,-74.011765,"(40.636826, -74.011765)",60 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4437961,Sedan,Bike,,, +07/14/2021,9:30,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4437604,Station Wagon/Sport Utility Vehicle,Dump,,, +07/14/2021,15:19,QUEENS,11385,40.696667,-73.88682,"(40.696667, -73.88682)",CYPRESS HILLS STREET,80 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437743,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,8:01,BROOKLYN,11218,40.63555,-73.97803,"(40.63555, -73.97803)",MC DONALD AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437930,Station Wagon/Sport Utility Vehicle,Bus,,, +07/16/2021,13:32,MANHATTAN,10001,40.750317,-73.99112,"(40.750317, -73.99112)",WEST 33 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4437814,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,16:46,,,40.74457,-73.731575,"(40.74457, -73.731575)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437524,Sedan,Sedan,,, +07/14/2021,14:45,QUEENS,11413,40.67663,-73.7555,"(40.67663, -73.7555)",SPRINGFIELD BOULEVARD,137 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437225,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/16/2021,10:00,BROOKLYN,11212,40.65575,-73.91975,"(40.65575, -73.91975)",,,1035 WILLMOHR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437664,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,16:00,QUEENS,11421,40.694107,-73.863144,"(40.694107, -73.863144)",80 STREET,85 DRIVE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4437529,Sedan,Pick-up Truck,,, +07/15/2021,19:15,BROOKLYN,11229,40.604443,-73.94848,"(40.604443, -73.94848)",AVENUE S,EAST 24 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437487,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,5:15,,,40.73826,-73.79895,"(40.73826, -73.79895)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437397,Sedan,Tractor Truck Diesel,,, +07/15/2021,7:55,MANHATTAN,10013,40.71813,-74.00014,"(40.71813, -74.00014)",,,242 CANAL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437857,Sedan,,,, +07/14/2021,18:00,BROOKLYN,11233,40.67889,-73.92221,"(40.67889, -73.92221)",,,1922 FULTON STREET,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4437243,Station Wagon/Sport Utility Vehicle,Bike,,, +07/16/2021,21:36,,,40.689476,-73.82769,"(40.689476, -73.82769)",117 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4438210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,14:57,MANHATTAN,10065,40.76734,-73.96868,"(40.76734, -73.96868)",MADISON AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437003,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/29/2021,17:50,,,40.608776,-74.09113,"(40.608776, -74.09113)",CLOVE ROAD,RICHMOND ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4472175,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,8:09,,,40.82466,-73.870804,"(40.82466, -73.870804)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471715,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,21:14,BRONX,10469,40.86927,-73.84393,"(40.86927, -73.84393)",,,1445 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472415,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,7:05,,,40.69309,-73.94296,"(40.69309, -73.94296)",THROOP AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472549,Sedan,E-Scooter,,, +10/28/2021,15:02,BROOKLYN,11222,40.724842,-73.93963,"(40.724842, -73.93963)",,,593 MORGAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471975,Pick-up Truck,Van,,, +10/29/2021,8:20,,,40.6255,-74.152145,"(40.6255, -74.152145)",FOREST AVENUE,LAKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472109,Pick-up Truck,Sedan,,, +10/27/2021,21:55,QUEENS,11101,40.737537,-73.929955,"(40.737537, -73.929955)",GREENPOINT AVENUE,HUNTERS POINT AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4471606,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +10/29/2021,20:10,,,40.694,-73.92351,"(40.694, -73.92351)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472205,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,19:09,,,40.859352,-73.872345,"(40.859352, -73.872345)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4472245,Sedan,Sedan,,, +10/29/2021,18:30,BRONX,10459,40.82099,-73.89589,"(40.82099, -73.89589)",EAST 163 STREET,KELLY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472653,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,18:12,MANHATTAN,10036,40.75907,-73.99621,"(40.75907, -73.99621)",,,502 WEST 41 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472387,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,15:40,BROOKLYN,11204,40.618725,-73.9895,"(40.618725, -73.9895)",,,1825 65 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472475,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/28/2021,14:30,MANHATTAN,10001,40.747704,-73.99067,"(40.747704, -73.99067)",,,130 WEST 30 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4472581,Taxi,Bike,,, +10/27/2021,18:00,QUEENS,11373,40.730885,-73.87165,"(40.730885, -73.87165)",WOODHAVEN BOULEVARD,60 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,12:33,BRONX,10454,40.806942,-73.92371,"(40.806942, -73.92371)",,,417 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,12:21,BROOKLYN,11218,40.642685,-73.99122,"(40.642685, -73.99122)",40 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471957,Station Wagon/Sport Utility Vehicle,Van,,, +10/27/2021,15:29,BRONX,10462,40.844112,-73.865715,"(40.844112, -73.865715)",,,1712 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Illnes,,,,,4471738,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,12:00,STATEN ISLAND,10305,40.585804,-74.08756,"(40.585804, -74.08756)",CROMWELL AVENUE,MASON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472065,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,16:37,BRONX,10458,40.851757,-73.88473,"(40.851757, -73.88473)",EAST 183 STREET,CROTONA AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471669,Taxi,E-Bike,,, +10/28/2021,20:19,MANHATTAN,10036,40.75734,-73.98602,"(40.75734, -73.98602)",7 AVENUE,WEST 44 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472608,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,15:50,BROOKLYN,11211,40.711422,-73.946144,"(40.711422, -73.946144)",,,658 GRAND STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4472829,Taxi,Bike,,, +10/29/2021,21:10,QUEENS,11412,40.698303,-73.76536,"(40.698303, -73.76536)",MAYVILLE STREET,LEWISTON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472164,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,18:45,BRONX,10462,40.846657,-73.85944,"(40.846657, -73.85944)",MORRIS PARK AVENUE,BRONXDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472271,USPS MAIL,Sedan,,, +10/27/2021,13:18,BROOKLYN,11203,40.641644,-73.93512,"(40.641644, -73.93512)",,,1221 TROY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4472695,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/28/2021,0:50,QUEENS,11101,40.757145,-73.93943,"(40.757145, -73.93943)",,,38-26 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471722,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,5:28,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471419,Sedan,Sedan,,, +10/28/2021,16:00,BROOKLYN,11229,40.607952,-73.96097,"(40.607952, -73.96097)",EAST 12 STREET,QUENTIN ROAD,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4472026,Sedan,Sedan,Sedan,Van,Sedan +10/22/2021,12:50,BROOKLYN,11220,,,,56 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472740,Sedan,,,, +10/27/2021,16:10,BROOKLYN,11223,40.607338,-73.96189,"(40.607338, -73.96189)",CONEY ISLAND AVENUE,KINGS HIGHWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471516,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,0:00,QUEENS,11426,40.746044,-73.727516,"(40.746044, -73.727516)",,,74-10 COMMONWEALTH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471582,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,11:00,MANHATTAN,10002,40.720306,-73.98912,"(40.720306, -73.98912)",ORCHARD STREET,RIVINGTON STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4472232,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,14:30,,,40.739082,-73.79345,"(40.739082, -73.79345)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471876,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,20:40,,,40.75595,-73.99074,"(40.75595, -73.99074)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472523,Sedan,Box Truck,,, +10/29/2021,22:00,QUEENS,11420,40.67801,-73.8161,"(40.67801, -73.8161)",115 AVENUE,123 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4472755,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,8:10,,,,,,WEST TREMONT AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472021,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,14:40,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471925,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,20:30,BROOKLYN,11212,40.659336,-73.92726,"(40.659336, -73.92726)",REMSEN AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471661,Sedan,Sedan,,, +10/27/2021,6:45,QUEENS,11368,40.756947,-73.866455,"(40.756947, -73.866455)",,,33-25 102 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471804,Van,,,, +10/27/2021,15:25,,,40.683243,-73.72587,"(40.683243, -73.72587)",BROOKVILLE BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4471883,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/28/2021,17:05,BROOKLYN,11215,40.674465,-73.97547,"(40.674465, -73.97547)",UNION STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4472053,Sedan,E-Scooter,,, +10/27/2021,15:05,,,40.65021,-74.01577,"(40.65021, -74.01577)",2 AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4471530,Sedan,,,, +10/28/2021,10:35,BROOKLYN,11214,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,BATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,23:30,QUEENS,11435,40.70253,-73.813896,"(40.70253, -73.813896)",,,138-50 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4471561,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/27/2021,16:25,BROOKLYN,11220,40.63532,-74.02324,"(40.63532, -74.02324)",4 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471847,Sedan,Bike,,, +10/27/2021,8:20,,,40.78956,-73.97737,"(40.78956, -73.97737)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471457,Sedan,,,, +10/22/2021,14:20,,,,,,LUTEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4472080,Station Wagon/Sport Utility Vehicle,Sedan,Open Body,, +10/29/2021,11:36,BRONX,10460,40.8398,-73.88125,"(40.8398, -73.88125)",,,1922 BOSTON ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472899,Sedan,,,, +10/29/2021,0:00,MANHATTAN,10280,40.707047,-74.01745,"(40.707047, -74.01745)",,,70 BATTERY PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4472097,crane boom,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/28/2021,6:22,BROOKLYN,11237,40.712124,-73.934265,"(40.712124, -73.934265)",MORGAN AVENUE,TEN EYCK STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4471677,Sedan,Bike,,, +10/29/2021,18:10,BROOKLYN,11214,40.604767,-73.99088,"(40.604767, -73.99088)",BAY PARKWAY,81 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472480,Sedan,,,, +10/27/2021,11:16,,,40.766666,-73.96707,"(40.766666, -73.96707)",EAST 65 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472554,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +10/27/2021,14:00,BRONX,10472,40.828053,-73.88303,"(40.828053, -73.88303)",,,1160 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471709,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,20:20,,,40.75303,-73.92163,"(40.75303, -73.92163)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472212,E-Scooter,,,, +10/28/2021,15:01,BRONX,10472,40.828293,-73.861725,"(40.828293, -73.861725)",UNDERHILL AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472048,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,3:06,,,40.766357,-73.7811,"(40.766357, -73.7811)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4471920,Box Truck,Sedan,,, +10/28/2021,15:15,QUEENS,11101,40.755745,-73.943115,"(40.755745, -73.943115)",,,40-05 12 STREET,2,0,0,0,1,0,1,0,Unsafe Lane Changing,Unspecified,,,,4471981,Bike,Taxi,,, +09/30/2021,10:55,MANHATTAN,10036,,,,,,419 WEST 44 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472252,Sedan,Sedan,,, +10/28/2021,11:07,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471767,Box Truck,Sedan,,, +10/29/2021,0:00,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472282,Sedan,Sedan,,, +10/28/2021,9:06,BROOKLYN,11230,40.628338,-73.95689,"(40.628338, -73.95689)",,,1395 OCEAN AVENUE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4471837,Sedan,Sedan,,, +10/28/2021,18:20,,,,,,BRONX RIVER PARKWAY,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472090,Sedan,,,, +10/29/2021,22:00,,,40.615837,-74.08473,"(40.615837, -74.08473)",TARGEE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472643,Sedan,Sedan,,, +10/27/2021,18:43,BROOKLYN,11214,40.59832,-73.996994,"(40.59832, -73.996994)",,,2211 BATH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4471601,Motorbike,,,, +10/28/2021,15:05,BROOKLYN,11203,40.64957,-73.93887,"(40.64957, -73.93887)",SNYDER AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471820,Sedan,Taxi,Sedan,, +10/27/2021,13:20,QUEENS,11368,40.736336,-73.857574,"(40.736336, -73.857574)",,,99-49 HORACE HARDING EXPRESSWAY,1,0,0,0,0,0,1,0,Unspecified,,,,,4471622,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,9:00,MANHATTAN,10018,40.758377,-73.994385,"(40.758377, -73.994385)",DYER AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472119,Sedan,Bus,,, +10/28/2021,21:40,QUEENS,11411,40.68688,-73.73807,"(40.68688, -73.73807)",,,226-20 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,20:10,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472181,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,9:16,MANHATTAN,10018,40.753475,-73.99254,"(40.753475, -73.99254)",WEST 36 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472586,Sedan,Box Truck,,, +10/27/2021,15:37,BROOKLYN,11201,40.70163,-73.989685,"(40.70163, -73.989685)",YORK STREET,WASHINGTON STREET,,3,0,2,0,0,0,1,0,Unspecified,,,,,4471570,Sedan,,,, +10/27/2021,15:40,BROOKLYN,11204,40.623398,-73.9911,"(40.623398, -73.9911)",,,1663 61 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471953,Sedan,,,, +09/22/2021,16:30,MANHATTAN,10036,,,,,,1515 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472614,Pick-up Truck,Pick-up Truck,,, +10/29/2021,2:50,BRONX,10460,40.844624,-73.88422,"(40.844624, -73.88422)",,,2064 MOHEGAN AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4472847,Sedan,,,, +10/29/2021,10:40,QUEENS,11422,40.660103,-73.731514,"(40.660103, -73.731514)",,,141-27 254 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4472085,Sedan,,,, +10/29/2021,13:53,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",LONG ISLAND EXPRESSWAY,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472227,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/29/2021,19:05,,,40.575935,-74.00543,"(40.575935, -74.00543)",NAUTILUS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472514,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,14:25,,,40.67489,-73.884544,"(40.67489, -73.884544)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471655,Bike,Sedan,,, +10/28/2021,5:27,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472002,Sedan,Bike,,, +10/28/2021,23:50,QUEENS,11423,40.714493,-73.759865,"(40.714493, -73.759865)",,,199-06 93 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4472359,Sedan,Sedan,Sedan,, +10/28/2021,11:45,QUEENS,11362,40.745598,-73.73504,"(40.745598, -73.73504)",DOUGLASTON PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471872,Sedan,,,, +10/27/2021,18:33,,,40.785904,-73.80029,"(40.785904, -73.80029)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,19:30,MANHATTAN,10019,40.768246,-73.982346,"(40.768246, -73.982346)",,,10 COLUMBUS CIRCLE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472266,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,0:05,BROOKLYN,11207,40.682453,-73.88723,"(40.682453, -73.88723)",RIDGEWOOD AVENUE,ASHFORD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472751,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,22:50,BROOKLYN,11233,40.67681,-73.91924,"(40.67681, -73.91924)",ATLANTIC AVENUE,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472368,Sedan,Chassis Cab,,, +10/29/2021,9:37,,,40.822838,-73.928764,"(40.822838, -73.928764)",RIVER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472437,Sedan,,,, +10/28/2021,9:00,,,40.601273,-74.13285,"(40.601273, -74.13285)",,,344 HAROLD STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4471791,Bus,Sedan,,, +10/27/2021,16:30,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471888,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,7:10,QUEENS,11693,,,,Beach 91,Beach Channel Drive,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4472727,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,7:05,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4472058,Tractor Truck Diesel,,,, +10/27/2021,20:11,QUEENS,11373,40.742786,-73.88264,"(40.742786, -73.88264)",BROADWAY,BRITTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471633,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,11:00,QUEENS,11378,40.71736,-73.9064,"(40.71736, -73.9064)",59 DRIVE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437739,Sedan,,,, +10/22/2021,10:00,,,,,,FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472529,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/21/2021,16:30,,,40.684624,-73.93838,"(40.684624, -73.93838)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,1,0,0,0,Passenger Distraction,Following Too Closely,,,,4472001,Sedan,E-Bike,,, +10/27/2021,15:45,QUEENS,11413,40.667736,-73.75442,"(40.667736, -73.75442)",222 STREET,143 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,20:00,QUEENS,11368,40.749176,-73.86295,"(40.749176, -73.86295)",,,40-17 NATIONAL STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4471635,Sedan,Taxi,,, +10/27/2021,0:00,BROOKLYN,11220,40.638878,-74.01519,"(40.638878, -74.01519)",,,542 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472308,Station Wagon/Sport Utility Vehicle,Unknown ve,,, +10/28/2021,20:05,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472016,Tow Truck / Wrecker,Sedan,,, +10/27/2021,12:37,BROOKLYN,11206,40.70532,-73.93526,"(40.70532, -73.93526)",WHITE STREET,SEIGEL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471613,Box Truck,Sedan,,, +10/27/2021,19:30,BROOKLYN,11225,40.66336,-73.95975,"(40.66336, -73.95975)",MC KEEVER PLACE,EMPIRE BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4471826,Sedan,Sedan,,, +10/28/2021,13:45,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4472033,Sedan,Pick-up Truck,,, +10/27/2021,2:50,QUEENS,11429,40.711006,-73.729675,"(40.711006, -73.729675)",225 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4471246,Sedan,Sedan,,, +10/28/2021,9:20,BROOKLYN,11234,40.625786,-73.92832,"(40.625786, -73.92832)",AVENUE K,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471852,Sedan,Sedan,,, +10/28/2021,9:12,BROOKLYN,11226,40.65249,-73.95267,"(40.65249, -73.95267)",ROGERS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472691,Bus,,,, +10/13/2021,16:45,,,,,,UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472112,Carry All,Sedan,,, +10/20/2021,15:00,,,,,,AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472132,Taxi,Bike,,, +10/28/2021,20:30,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471910,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,20:56,QUEENS,11354,40.77029,-73.81732,"(40.77029, -73.81732)",149 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471556,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,12:00,QUEENS,11385,40.705517,-73.86688,"(40.705517, -73.86688)",78 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471755,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,15:53,BROOKLYN,11208,40.679005,-73.86423,"(40.679005, -73.86423)",LIBERTY AVENUE,FORBELL STREET,,1,0,1,0,0,0,0,0,,,,,,4471904,,,,, +10/28/2021,9:55,QUEENS,11375,40.726967,-73.85375,"(40.726967, -73.85375)",QUEENS BOULEVARD,67 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4471887,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,9:25,BROOKLYN,11221,40.693314,-73.92496,"(40.693314, -73.92496)",BUSHWICK AVENUE,VAN BUREN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471809,Sedan,Sedan,,, +10/29/2021,7:10,BROOKLYN,11215,40.666565,-73.988495,"(40.666565, -73.988495)",,,522 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472057,Station Wagon/Sport Utility Vehicle,Flat Rack,,, +10/27/2021,6:09,BROOKLYN,11223,40.594254,-73.96203,"(40.594254, -73.96203)",,,815 GRAVESEND NECK ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471341,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,4:50,QUEENS,11412,40.695026,-73.75643,"(40.695026, -73.75643)",196 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472887,Sedan,,,, +10/27/2021,9:30,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4471832,Box Truck,Sedan,,, +10/27/2021,10:50,QUEENS,11693,40.58744,-73.81515,"(40.58744, -73.81515)",BEACH 91 STREET,ROCKAWAY FREEWAY,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4471535,Bus,Pick-up Truck,,, +10/27/2021,19:55,,,40.831707,-73.901886,"(40.831707, -73.901886)",EAST 169 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471985,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,2:19,BROOKLYN,11206,40.71111,-73.94553,"(40.71111, -73.94553)",,,230 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4471616,Sedan,Box Truck,,, +10/27/2021,11:05,MANHATTAN,10001,40.75326,-74.00383,"(40.75326, -74.00383)",11 AVENUE,WEST 30 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,,,,4472117,Sedan,Bike,,, +10/28/2021,14:04,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472044,Sedan,,,, +10/29/2021,14:20,BRONX,10462,40.854458,-73.86532,"(40.854458, -73.86532)",,,761 LYDIG AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,14:55,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471860,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,18:00,BROOKLYN,11220,40.640835,-74.01844,"(40.640835, -74.01844)",4 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472134,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,16:45,,,,,,WHITESTONE EXPRESSWAY,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472309,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,8:15,,,40.75456,-73.7232,"(40.75456, -73.7232)",LITTLE NECK PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472151,Sedan,Sedan,,, +10/27/2021,22:20,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472558,Sedan,Sedan,,, +10/29/2021,19:10,BRONX,10458,40.86025,-73.890976,"(40.86025, -73.890976)",,,4750 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,15:35,BROOKLYN,11217,40.68249,-73.97962,"(40.68249, -73.97962)",4 AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471571,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/28/2021,9:34,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471746,Sedan,Sedan,,, +10/29/2021,18:10,,,,,,QUEENS BOULEVARD,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472495,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,8:00,,,40.675037,-73.930534,"(40.675037, -73.930534)",BERGEN STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4472595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/25/2021,7:05,,,40.582863,-73.97485,"(40.582863, -73.97485)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4471986,Sedan,Sedan,Sedan,, +10/27/2021,22:25,BRONX,10459,40.82789,-73.89821,"(40.82789, -73.89821)",PROSPECT AVENUE,HOME STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471790,Sedan,Moped,,, +10/29/2021,6:50,QUEENS,11378,40.72355,-73.91267,"(40.72355, -73.91267)",,,56-70 58 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4471967,Box Truck,,,, +10/29/2021,20:12,QUEENS,11694,40.57981,-73.837204,"(40.57981, -73.837204)",BEACH 116 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,11:00,QUEENS,11420,40.672188,-73.81937,"(40.672188, -73.81937)",120 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4471597,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,8:24,BROOKLYN,11224,,,,WEST AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472408,Sedan,Sedan,,, +10/25/2021,1:47,,,,,,ALBANY AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472572,Bike,,,, +10/27/2021,21:07,MANHATTAN,10030,40.821262,-73.94608,"(40.821262, -73.94608)",SAINT NICHOLAS AVENUE,WEST 141 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471934,Sedan,E-Scooter,,, +10/29/2021,9:25,BRONX,10457,40.844505,-73.89043,"(40.844505, -73.89043)",,,1940 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472854,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +10/28/2021,11:35,QUEENS,11433,40.701237,-73.79465,"(40.701237, -73.79465)",LIBERTY AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472807,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,9:00,QUEENS,11368,40.74788,-73.85731,"(40.74788, -73.85731)",108 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472465,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,12:55,BROOKLYN,11201,40.68608,-73.99091,"(40.68608, -73.99091)",WYCKOFF STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472621,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/29/2021,13:11,MANHATTAN,10013,40.723305,-74.00299,"(40.723305, -74.00299)",WEST BROADWAY,WATTS STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472535,Sedan,,,, +10/29/2021,0:40,,,,,,NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471899,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,13:08,BROOKLYN,11220,40.63201,-74.01318,"(40.63201, -74.01318)",66 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471846,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,15:30,,,40.653805,-73.93061,"(40.653805, -73.93061)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472705,Sedan,Van,,, +10/28/2021,21:59,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,9:25,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471456,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,13:15,BROOKLYN,11222,40.72691,-73.95329,"(40.72691, -73.95329)",,,99 MESEROLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,14:55,,,40.735752,-73.88052,"(40.735752, -73.88052)",GRAND AVENUE,VANHORN STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4472223,Bike,,,, +10/27/2021,14:00,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471672,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,14:30,,,40.831398,-73.83097,"(40.831398, -73.83097)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4472166,Sedan,Sedan,,, +10/28/2021,21:40,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,0:00,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471892,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,7:20,BROOKLYN,11203,40.657394,-73.94574,"(40.657394, -73.94574)",,,439 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472029,Sedan,,,, +10/27/2021,9:45,MANHATTAN,10036,40.760216,-73.985344,"(40.760216, -73.985344)",,,1585 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471729,Taxi,Box Truck,,, +10/21/2021,15:01,MANHATTAN,10037,,,,EAST 130 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,,,,4472012,Station Wagon/Sport Utility Vehicle,Standing s,,, +10/27/2021,16:30,,,40.673565,-73.90788,"(40.673565, -73.90788)",EAST NEW YORK AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472369,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,14:30,MANHATTAN,10019,,,,7 AVENUE,WEST 49 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472260,Bus,Taxi,,, +09/06/2021,10:13,,,40.667164,-73.93407,"(40.667164, -73.93407)",PRESIDENT STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4472034,Sedan,Sedan,,, +10/27/2021,16:30,QUEENS,11101,40.737484,-73.93604,"(40.737484, -73.93604)",BRADLEY AVENUE,31 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471867,Sedan,,,, +10/22/2021,13:52,,,,,,501-517 E 60th St,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472552,Sedan,Sedan,,, +10/27/2021,7:37,,,40.817596,-73.95319,"(40.817596, -73.95319)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471420,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,22:18,BROOKLYN,11232,40.64987,-74.003136,"(40.64987, -74.003136)",,,566 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471640,Sedan,Sedan,,, +10/28/2021,7:03,,,40.673008,-73.78809,"(40.673008, -73.78809)",SUTPHIN BOULEVARD,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471678,Sedan,,,, +10/29/2021,16:35,BROOKLYN,11221,40.688797,-73.923904,"(40.688797, -73.923904)",,,44 RALPH AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4472603,Sedan,,,, +10/29/2021,21:00,BROOKLYN,11230,40.63323,-73.964806,"(40.63323, -73.964806)",FOSTER AVENUE,ARGYLE ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472429,Sedan,,,, +10/27/2021,7:00,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471471,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,19:35,QUEENS,11004,40.73973,-73.70625,"(40.73973, -73.70625)",263 STREET,83 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471581,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,14:45,BRONX,10468,40.86177,-73.89868,"(40.86177, -73.89868)",EAST 188 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472877,Sedan,Sedan,,, +10/29/2021,3:20,BROOKLYN,11226,40.638924,-73.95976,"(40.638924, -73.95976)",,,1920 DITMAS AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,Unspecified,,,4472072,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/27/2021,15:00,BRONX,10466,40.902233,-73.843666,"(40.902233, -73.843666)",EAST 241 STREET,HILL AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4471805,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,9:00,BROOKLYN,11203,40.653206,-73.94024,"(40.653206, -73.94024)",LINDEN BOULEVARD,EAST 40 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472689,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +10/22/2021,12:30,MANHATTAN,10022,,,,3 AVENUE,EAST 58 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472089,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,18:00,QUEENS,11385,40.70559,-73.85824,"(40.70559, -73.85824)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471836,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,18:10,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518027,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,18:03,BRONX,10460,40.839622,-73.870285,"(40.839622, -73.870285)",EAST TREMONT AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,22:55,,,40.733917,-73.9219,"(40.733917, -73.9219)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4471961,Taxi,Sedan,,, +10/27/2021,12:00,BROOKLYN,11205,40.696774,-73.97359,"(40.696774, -73.97359)",,,42 CARLTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4471544,Sedan,,,, +10/29/2021,7:30,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",WEST 46 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4472254,Pedicab,Bus,,, +10/29/2021,0:00,BROOKLYN,11207,40.666294,-73.89445,"(40.666294, -73.89445)",DUMONT AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,,,,4472753,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,12:45,BROOKLYN,11203,40.65306,-73.942665,"(40.65306, -73.942665)",,,443 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Lighting Defects,Unspecified,,,4472694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,12:45,QUEENS,11103,,,,STEINWAY STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472040,Sedan,Sedan,,, +10/27/2021,4:25,QUEENS,11411,40.695724,-73.73577,"(40.695724, -73.73577)",224 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471586,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,21:29,BROOKLYN,11234,40.61743,-73.932495,"(40.61743, -73.932495)",HENDRICKSON STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,10:20,,,40.76536,-73.82787,"(40.76536, -73.82787)",35 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4472319,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,3:38,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472199,,,,, +10/29/2021,16:55,QUEENS,11412,40.699806,-73.76859,"(40.699806, -73.76859)",ILION AVENUE,MAYVILLE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472127,Sedan,,,, +10/23/2021,20:35,,,40.62509,-74.12474,"(40.62509, -74.12474)",EGBERT AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472639,Sedan,Sedan,,, +10/29/2021,23:35,BROOKLYN,11211,40.714066,-73.94938,"(40.714066, -73.94938)",METROPOLITAN AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4472796,Sedan,Sedan,,, +10/29/2021,12:57,STATEN ISLAND,10305,40.598564,-74.08171,"(40.598564, -74.08171)",HYLAN BOULEVARD,NORWAY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4472066,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,17:44,,,,,,HARLEM RIVER DRIVE RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472098,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,21:11,QUEENS,11423,40.718353,-73.7654,"(40.718353, -73.7654)",197 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472351,Sedan,Sedan,,, +10/28/2021,22:10,QUEENS,11109,40.74762,-73.95651,"(40.74762, -73.95651)",CENTER BOULEVARD,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472156,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,23:42,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4472404,Sedan,,,, +10/28/2021,15:32,,,40.835705,-73.888756,"(40.835705, -73.888756)",EAST 173 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:56,BROOKLYN,11217,40.68442,-73.97839,"(40.68442, -73.97839)",ATLANTIC AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472669,Sedan,,,, +10/28/2021,12:09,BROOKLYN,,40.695072,-73.9901,"(40.695072, -73.9901)",CADMAN PLAZA EAST,JOHNSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471924,Dump,Sedan,,, +10/28/2021,15:52,,,,,,FRANCIS LEWIS BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471877,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,6:53,BRONX,10456,40.829834,-73.90642,"(40.829834, -73.90642)",,,3463 3 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4471796,Station Wagon/Sport Utility Vehicle,Bus,,, +10/27/2021,16:20,QUEENS,11436,40.667908,-73.79474,"(40.667908, -73.79474)",135 AVENUE,145 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472124,Sedan,,,, +10/29/2021,19:35,BRONX,10475,40.86867,-73.83168,"(40.86867, -73.83168)",,,352 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472449,Sedan,Sedan,,, +10/29/2021,3:35,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4472191,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,14:20,QUEENS,11102,40.77276,-73.91605,"(40.77276, -73.91605)",,,29-27 24 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,12:30,,,40.67035,-73.89743,"(40.67035, -73.89743)",BELMONT AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4472745,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,13:29,,,40.612614,-74.00085,"(40.612614, -74.00085)",79 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471916,Sedan,,,, +10/23/2021,1:20,,,,,,NARROWS ROAD SOUTH,HYLAN BOULEVARD,,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,,,,4472287,Pick-up Truck,Sedan,,, +10/27/2021,20:52,,,40.8464,-73.89338,"(40.8464, -73.89338)",EAST TREMONT AVENUE,ARTHUR AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471666,Sedan,,,, +10/29/2021,5:56,BRONX,10462,40.8459,-73.862915,"(40.8459, -73.862915)",,,791 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4472241,Sedan,Sedan,Sedan,, +10/24/2021,16:44,BRONX,10475,,,,,,120 DEBS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472422,Sedan,,,, +10/28/2021,20:35,MANHATTAN,10003,40.73426,-73.98356,"(40.73426, -73.98356)",2 AVENUE,EAST 17 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4472008,Bike,E-Bike,,, +10/27/2021,6:50,,,40.864872,-73.90253,"(40.864872, -73.90253)",WEST 190 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471374,Sedan,,,, +10/27/2021,11:00,,,40.752937,-73.92204,"(40.752937, -73.92204)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471721,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/28/2021,10:10,,,40.696785,-73.95659,"(40.696785, -73.95659)",PARK AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4471993,Sedan,Bike,,, +10/27/2021,7:40,MANHATTAN,10017,40.748215,-73.968544,"(40.748215, -73.968544)",FDR DRIVE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471525,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,9:58,BRONX,10459,40.82734,-73.89386,"(40.82734, -73.89386)",EAST 169 STREET,FOX STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471956,Sedan,Sedan,,, +10/28/2021,1:26,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471684,Garbage or Refuse,Sedan,,, +10/29/2021,3:45,QUEENS,11103,40.766617,-73.9062,"(40.766617, -73.9062)",,,24-50 46 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472214,Sedan,Taxi,,, +10/27/2021,16:45,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4471646,Sedan,Sedan,Pick-up Truck,, +10/22/2021,12:00,BROOKLYN,11220,,,,58 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472737,Sedan,,,, +10/27/2021,14:30,BROOKLYN,11222,40.726536,-73.9544,"(40.726536, -73.9544)",MESEROLE AVENUE,GUERNSEY STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4472236,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/29/2021,11:54,,,40.764614,-73.95833,"(40.764614, -73.95833)",EAST 67 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472546,Sedan,Sedan,,, +10/29/2021,1:56,,,40.69773,-73.81409,"(40.69773, -73.81409)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472025,Sedan,Sedan,,, +10/29/2021,12:30,,,40.597683,-73.96686,"(40.597683, -73.96686)",EAST 5 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472104,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,13:45,,,40.64166,-73.93705,"(40.64166, -73.93705)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472699,Sedan,Sedan,,, +10/27/2021,21:18,MANHATTAN,10002,40.71738,-73.99131,"(40.71738, -73.99131)",ALLEN STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4471605,Taxi,,,, +10/28/2021,20:48,BROOKLYN,11234,40.626457,-73.918,"(40.626457, -73.918)",RALPH AVENUE,AVENUE K,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4471928,Sedan,,,, +10/29/2021,9:36,BROOKLYN,11226,40.650414,-73.95798,"(40.650414, -73.95798)",,,2230 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472076,Station Wagon/Sport Utility Vehicle,Bus,,, +10/28/2021,7:00,,,,,,BORDEN AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,15:28,MANHATTAN,10035,,,,,,1913 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4472784,Sedan,,,, +10/26/2021,12:10,QUEENS,11368,40.75707,-73.85605,"(40.75707, -73.85605)",34 AVENUE,113 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Following Too Closely,,4472093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/27/2021,9:00,QUEENS,11373,40.734253,-73.86622,"(40.734253, -73.86622)",,,94-05 60 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471625,Sedan,,,, +07/17/2021,17:20,,,40.797,-73.93778,"(40.797, -73.93778)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438332,Box Truck,Taxi,,, +10/28/2021,11:20,BRONX,10456,40.829823,-73.90773,"(40.829823, -73.90773)",EAST 167 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4471797,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,Sedan,, +10/28/2021,22:07,BRONX,10454,40.805557,-73.91453,"(40.805557, -73.91453)",CYPRESS AVENUE,EAST 138 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4471939,Sedan,Bike,,, +10/27/2021,23:00,,,40.75529,-73.99493,"(40.75529, -73.99493)",WEST 37 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4471560,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,14:55,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",5 AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472159,Moped,Pick-up Truck,,, +10/28/2021,17:53,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472477,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,8:15,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471731,Sedan,,,, +10/29/2021,16:00,QUEENS,11358,40.76202,-73.78819,"(40.76202, -73.78819)",194 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472142,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,13:40,BRONX,10459,,,,PROSPECT AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472327,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,11:30,BROOKLYN,11211,40.712452,-73.95888,"(40.712452, -73.95888)",,,201 ROEBLING STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472827,Sedan,,,, +10/19/2021,17:00,QUEENS,11432,,,,,,89-07 169 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472356,Sedan,,,, +10/24/2021,19:00,STATEN ISLAND,10309,,,,BLOOMINGDALE ROAD,CLAY PIT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472081,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,19:30,BRONX,10469,40.868546,-73.85859,"(40.868546, -73.85859)",PAULDING AVENUE,BOSTON ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4472276,Sedan,Moped,,, +10/20/2021,19:12,MANHATTAN,10023,,,,BROADWAY,WEST 72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472131,Bus,,,, +10/29/2021,12:59,MANHATTAN,10039,40.824184,-73.93723,"(40.824184, -73.93723)",WEST 149 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472270,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,21:00,QUEENS,11368,40.75278,-73.85499,"(40.75278, -73.85499)",39 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472094,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,7:27,QUEENS,11101,40.75199,-73.931274,"(40.75199, -73.931274)",NORTHERN BOULEVARD,33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4472211,Sedan,Bike,,, +10/27/2021,16:05,QUEENS,11104,40.74479,-73.91743,"(40.74479, -73.91743)",47 STREET,43 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472346,Sedan,Bike,,, +10/19/2021,14:51,MANHATTAN,10023,,,,BROADWAY,WEST 67 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4472152,E-Bike,,,, +10/28/2021,6:43,QUEENS,11421,40.688946,-73.85322,"(40.688946, -73.85322)",90 STREET,91 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4471772,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/29/2021,18:25,QUEENS,11372,40.752472,-73.87818,"(40.752472, -73.87818)",35 AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,19:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471585,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,11:00,MANHATTAN,10019,,,,WEST 55 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4472251,Box Truck,Bike,,, +10/29/2021,22:45,STATEN ISLAND,10310,40.626793,-74.12744,"(40.626793, -74.12744)",,,1129 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472646,Sedan,Sedan,,, +10/29/2021,7:00,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",AVENUE S,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471998,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,23:00,BRONX,10472,40.833363,-73.8801,"(40.833363, -73.8801)",,,1374 BRONX RIVER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472283,Sedan,Sedan,,, +10/29/2021,16:10,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",10 AVENUE,WEST 29 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4472386,Sedan,Sedan,Sedan,, +10/29/2021,5:00,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",69 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472120,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,22:30,MANHATTAN,10013,40.715584,-74.00304,"(40.715584, -74.00304)",LAFAYETTE STREET,WORTH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472444,Bike,,,, +07/16/2021,16:25,,,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438378,Sedan,Sedan,,, +10/29/2021,13:00,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4472296,Sedan,Sedan,E-Bike,, +10/29/2021,8:00,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",CYPRESS AVENUE,VERMONT PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472062,Sedan,Sedan,,, +10/27/2021,14:35,,,40.719456,-73.99441,"(40.719456, -73.99441)",BROOME STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471699,Van,Sedan,,, +10/28/2021,13:15,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472856,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/21/2021,20:30,,,,,,CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,0:00,,,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,,,4,0,0,0,0,0,4,0,Reaction to Uninvolved Vehicle,,,,,4471399,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,22:15,BROOKLYN,11230,40.620525,-73.95929,"(40.620525, -73.95929)",,,1600 AVENUE L,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471630,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,16:20,,,40.609104,-74.091515,"(40.609104, -74.091515)",NARROWS ROAD SOUTH,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4472174,Sedan,Sedan,,, +10/27/2021,13:09,MANHATTAN,10035,40.80208,-73.937,"(40.80208, -73.937)",,,2253 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471498,Sedan,Sedan,,, +10/26/2021,7:50,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472538,Sedan,Bus,,, +10/28/2021,11:50,,,,,,,,405 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471974,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,12:30,MANHATTAN,10025,40.791603,-73.96856,"(40.791603, -73.96856)",,,49 WEST 94 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472108,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,23:57,BROOKLYN,11204,,,,,,1956 BAY RIDGE PARKWAY,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4472231,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/27/2021,13:20,MANHATTAN,10004,,,,,,20 west st,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,20:41,,,40.76359,-73.98144,"(40.76359, -73.98144)",WEST 54 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,19:00,QUEENS,11368,40.74159,-73.86186,"(40.74159, -73.86186)",99 STREET,CHRISTIE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471629,Sedan,Sedan,,, +10/28/2021,10:40,BRONX,10454,40.80919,-73.91905,"(40.80919, -73.91905)",,,507 EAST 140 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471943,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +10/28/2021,7:20,,,40.73403,-73.995056,"(40.73403, -73.995056)",EAST 11 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4471819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,1:30,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",EAST HOUSTON STREET,AVENUE A,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4471600,Sedan,Bike,,, +10/27/2021,10:00,BROOKLYN,11225,40.665825,-73.957466,"(40.665825, -73.957466)",,,220 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471827,Sedan,,,, +10/22/2021,22:22,BRONX,10470,40.897255,-73.86268,"(40.897255, -73.86268)",,,4249 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472557,Sedan,,,, +10/27/2021,3:55,BROOKLYN,11234,40.61661,-73.926636,"(40.61661, -73.926636)",UTICA AVENUE,AVENUE O,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4471249,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,11:35,BROOKLYN,11234,40.62526,-73.917885,"(40.62526, -73.917885)",,,2152 RALPH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471853,Sedan,Sedan,,, +10/24/2021,14:40,MANHATTAN,10019,,,,WEST 58 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472265,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,23:48,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471960,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,8:10,,,40.667465,-73.9247,"(40.667465, -73.9247)",UNION STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472584,Sedan,Sedan,,, +10/27/2021,20:25,BROOKLYN,11235,40.577995,-73.95964,"(40.577995, -73.95964)",BRIGHTON BEACH AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471754,Bus,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,1:50,BROOKLYN,11208,40.68086,-73.864685,"(40.68086, -73.864685)",FORBELL STREET,MC KINLEY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438408,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,16:30,BRONX,10459,,,,BRUCKNER BOULEVARD,FAILE STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4472113,Sedan,Tractor Truck Gasoline,,, +10/28/2021,19:35,BROOKLYN,11208,40.666725,-73.86977,"(40.666725, -73.86977)",EUCLID AVENUE,LORING AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4471909,Sedan,,,, +10/29/2021,22:55,BRONX,10457,40.85179,-73.90279,"(40.85179, -73.90279)",EAST BURNSIDE AVENUE,ANTHONY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472891,Bike,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,6:00,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4472146,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,17:08,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472299,Station Wagon/Sport Utility Vehicle,Van,,, +10/27/2021,19:00,,,40.82364,-73.87994,"(40.82364, -73.87994)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472511,Sedan,,,, +10/28/2021,9:45,QUEENS,11385,40.70906,-73.89537,"(40.70906, -73.89537)",,,64-22 PALMETTO STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472003,Sedan,Sedan,,, +10/25/2021,18:00,,,,,,VANWYCK EXPRESSWAY EXTENSION,Iinden boulevard,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472163,Sedan,,,, +10/29/2021,15:00,BRONX,10454,40.803776,-73.92025,"(40.803776, -73.92025)",,,144 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4472332,Sedan,Sedan,,, +10/29/2021,11:30,BROOKLYN,11232,40.65875,-73.99821,"(40.65875, -73.99821)",,,222 27 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472135,Sedan,Tractor Truck Gasoline,,, +10/29/2021,17:29,MANHATTAN,10010,40.740574,-73.98731,"(40.740574, -73.98731)",,,50 EAST 23 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4472526,Sedan,Bus,,, +10/29/2021,20:40,,,40.67341,-73.93348,"(40.67341, -73.93348)",SCHENECTADY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4472566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/29/2021,22:45,BROOKLYN,11221,40.694138,-73.92649,"(40.694138, -73.92649)",KOSSUTH PLACE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,10:08,BROOKLYN,11210,40.62889,-73.9424,"(40.62889, -73.9424)",,,1053 EAST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472313,Sedan,Pick-up Truck,,, +10/28/2021,19:30,BRONX,10467,40.88385,-73.86366,"(40.88385, -73.86366)",,,675 EAST 219 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472414,Sedan,Sedan,,, +10/29/2021,23:35,QUEENS,11420,40.677708,-73.816956,"(40.677708, -73.816956)",122 STREET,115 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Other Vehicular,Other Vehicular,Unspecified,,4472791,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/04/2021,15:27,BROOKLYN,11204,40.608078,-73.979706,"(40.608078, -73.979706)",WEST 6 STREET,AVENUE P,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472907,Ambulance,Sedan,,, +10/28/2021,19:36,MANHATTAN,10012,40.722763,-73.99594,"(40.722763, -73.99594)",,,236 MULBERRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472849,Sedan,Ambulance,,, +10/27/2021,14:00,QUEENS,11375,40.72145,-73.84399,"(40.72145, -73.84399)",QUEENS BOULEVARD,71 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4471894,Sedan,Sedan,,, +10/29/2021,5:30,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4472017,Sedan,,,, +10/29/2021,21:58,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472473,Sedan,,,, +10/29/2021,15:34,BRONX,10469,40.862766,-73.84295,"(40.862766, -73.84295)",,,1511 MACE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472244,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,16:55,,,40.655872,-73.9564,"(40.655872, -73.9564)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4472030,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,13:16,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Passing Too Closely,,,,4472118,Box Truck,Sedan,,, +10/28/2021,22:05,QUEENS,11368,40.7584,-73.849785,"(40.7584, -73.849785)",NORTHERN BOULEVARD,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472035,Sedan,Sedan,,, +10/29/2021,18:40,BROOKLYN,11201,40.689697,-73.98296,"(40.689697, -73.98296)",FULTON STREET,BOND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472619,E-Bike,Bike,,, +10/28/2021,5:20,,,40.740894,-73.89961,"(40.740894, -73.89961)",65 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471679,Sedan,,,, +10/27/2021,8:30,BROOKLYN,11211,40.715137,-73.94553,"(40.715137, -73.94553)",,,137 CONSELYEA STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4471470,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +07/16/2021,13:29,,,,,,HYLAN BOULEVARD,CLOVE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438495,Sedan,,,, +10/27/2021,7:00,BRONX,10466,40.895695,-73.84344,"(40.895695, -73.84344)",,,2029 BUSSING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471475,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,16:04,BROOKLYN,11208,40.66445,-73.86727,"(40.66445, -73.86727)",,,941 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471656,Sedan,Sedan,,, +10/27/2021,13:00,,,40.619484,-73.918274,"(40.619484, -73.918274)",AVENUE N,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471851,Sedan,,,, +10/27/2021,0:00,BROOKLYN,11235,40.59237,-73.94902,"(40.59237, -73.94902)",,,2451 EAST 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471515,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,14:18,BROOKLYN,11212,40.661995,-73.9196,"(40.661995, -73.9196)",KINGS HIGHWAY,EAST 98 STREET,,1,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4472698,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/28/2021,1:05,BRONX,10468,40.87016,-73.89099,"(40.87016, -73.89099)",GRAND CONCOURSE,EAST 198 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471674,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,20:26,MANHATTAN,10038,,,,,,17 CHATHAM SQUARE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472459,Van,Bus,,, +10/28/2021,18:25,BROOKLYN,11205,40.69312,-73.96882,"(40.69312, -73.96882)",MYRTLE AVENUE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471871,Sedan,Sedan,,, +10/27/2021,8:50,BROOKLYN,11209,40.617027,-74.03258,"(40.617027, -74.03258)",,,268 95 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471542,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,15:00,QUEENS,11365,40.740017,-73.77724,"(40.740017, -73.77724)",,,196-10C 65 CRESCENT,0,0,0,0,0,0,0,0,Unspecified,,,,,4472180,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,21:58,,,40.828743,-73.843994,"(40.828743, -73.843994)",ZEREGA AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471711,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,8:36,QUEENS,11433,40.705906,-73.78715,"(40.705906, -73.78715)",,,172-02 93 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472363,Bus,,,, +10/28/2021,12:15,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",3 AVENUE,EAST 36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471891,Sedan,Sedan,,, +10/27/2021,9:42,,,40.576965,-74.16974,"(40.576965, -74.16974)",YUKON AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471411,Station Wagon/Sport Utility Vehicle,Dump,,, +10/27/2021,20:59,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,15:10,BROOKLYN,11208,40.674404,-73.86976,"(40.674404, -73.86976)",CRESCENT STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471657,Station Wagon/Sport Utility Vehicle,Bus,,, +10/19/2021,8:30,,,40.586205,-73.93417,"(40.586205, -73.93417)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,6:00,,,40.82751,-73.92495,"(40.82751, -73.92495)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472436,Sedan,Sedan,,, +10/29/2021,14:25,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,Unspecified,,,4472226,Sedan,Sedan,Sedan,, +10/28/2021,20:00,,,40.690926,-73.92066,"(40.690926, -73.92066)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472200,Sedan,,,, +10/25/2021,8:50,MANHATTAN,10001,,,,WEST 30 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472612,E-Scooter,,,, +10/29/2021,22:19,,,40.79465,-73.97179,"(40.79465, -73.97179)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472167,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,6:59,MANHATTAN,10012,,,,,,215 MULBERRY STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4472844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,14:45,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471703,Sedan,Bus,,, +10/29/2021,2:00,,,40.625824,-73.92762,"(40.625824, -73.92762)",UTICA AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4472028,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,16:43,BROOKLYN,11231,40.67648,-74.00487,"(40.67648, -74.00487)",,,773 HICKS STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4472373,Sedan,,,, +10/27/2021,23:30,,,40.775963,-73.94248,"(40.775963, -73.94248)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471728,Sedan,Sedan,,, +10/29/2021,8:15,BROOKLYN,11231,40.673203,-74.01056,"(40.673203, -74.01056)",OTSEGO STREET,SIGOURNEY STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4472007,Bus,Sedan,,, +10/28/2021,8:50,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",CHRYSTIE STREET,GRAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472435,Sedan,,,, +10/27/2021,8:10,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4471423,Flat Bed,Bus,,, +10/27/2021,9:00,,,40.7466,-73.76503,"(40.7466, -73.76503)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,0:05,QUEENS,11368,40.751328,-73.86765,"(40.751328, -73.86765)",,,37-53 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4472670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/10/2022,4:50,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LIBERTY AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,17:12,,,,,,CLEARVIEW EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4471878,Sedan,Sedan,,, +10/27/2021,19:30,MANHATTAN,10038,,,,,,23 St James place,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472456,Sedan,,,, +10/28/2021,15:00,BROOKLYN,11208,40.665314,-73.86846,"(40.665314, -73.86846)",STANLEY AVENUE,PINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472747,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,22:10,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472632,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,22:52,QUEENS,11104,40.74191,-73.9256,"(40.74191, -73.9256)",47 AVENUE,39 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472188,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,14:38,BROOKLYN,11226,40.64872,-73.96491,"(40.64872, -73.96491)",CHURCH AVENUE,EAST 16 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472405,Station Wagon/Sport Utility Vehicle,Bike,,, +10/27/2021,13:30,BROOKLYN,11234,40.614723,-73.94184,"(40.614723, -73.94184)",,,1535 EAST 32 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472195,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,12:00,BROOKLYN,11231,40.677544,-73.99642,"(40.677544, -73.99642)",,,423 SMITH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471886,Sedan,,,, +10/27/2021,17:08,QUEENS,11423,40.711082,-73.77798,"(40.711082, -73.77798)",183 STREET,90 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471533,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,8:18,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471618,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,18:15,QUEENS,11362,40.75531,-73.73821,"(40.75531, -73.73821)",,,242-02 61 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471873,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,10:26,,,40.856487,-73.872406,"(40.856487, -73.872406)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471749,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,18:28,,,,,,RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472150,Sedan,Sedan,,, +10/27/2021,14:45,,,40.649788,-73.9622,"(40.649788, -73.9622)",CHURCH AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4471845,Van,,,, +10/27/2021,8:30,,,40.793556,-73.967026,"(40.793556, -73.967026)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4471455,Flat Bed,Pick-up Truck,,, +10/28/2021,22:17,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4472018,AMBULANCE,,,, +10/23/2021,21:36,,,,,,WEST 143 STREET,HARLEM RIVER DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4472275,Sedan,Convertible,,, +10/27/2021,10:10,,,40.816772,-73.809135,"(40.816772, -73.809135)",PENNYFIELD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471551,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,14:30,,,40.69133,-73.95177,"(40.69133, -73.95177)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4471996,Pick-up Truck,Bus,,, +10/27/2021,0:13,BROOKLYN,11207,40.678738,-73.89887,"(40.678738, -73.89887)",BUSHWICK AVENUE,FANCHON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471398,Sedan,Sedan,,, +10/28/2021,10:55,BROOKLYN,11215,40.668457,-73.99177,"(40.668457, -73.99177)",,,181 13 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472050,Station Wagon/Sport Utility Vehicle,Dump,,, +10/28/2021,7:52,QUEENS,11435,40.705124,-73.81191,"(40.705124, -73.81191)",HILLSIDE AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471987,Sedan,,,, +10/27/2021,16:40,,,40.648533,-74.01752,"(40.648533, -74.01752)",51 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4471527,Sedan,,,, +10/29/2021,11:25,QUEENS,11367,40.726498,-73.8142,"(40.726498, -73.8142)",,,73-08 153 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472178,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,15:48,MANHATTAN,10014,,,,hudson street,bleecker street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438578,Sedan,,,, +03/20/2021,0:33,,,40.841274,-73.91762,"(40.841274, -73.91762)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4400593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,17:40,,,,,,MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,,,4438694,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,20:42,BRONX,10463,40.88654,-73.91052,"(40.88654, -73.91052)",,,3555 NETHERLAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438693,Sedan,Sedan,,, +07/09/2021,16:25,BRONX,10463,40.873394,-73.90671,"(40.873394, -73.90671)",WEST 225 STREET,EXTERIOR STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inattention/Distraction,Unspecified,,,4438692,Sedan,Sedan,Sedan,, +10/28/2021,23:08,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4471911,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,12:30,BROOKLYN,11207,40.650024,-73.89126,"(40.650024, -73.89126)",WILLIAMS AVENUE,FLATLANDS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4472237,Bike,Bus,,, +10/28/2021,12:24,,,40.779762,-73.94437,"(40.779762, -73.94437)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472551,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,3:00,BROOKLYN,11207,40.679337,-73.89483,"(40.679337, -73.89483)",JAMAICA AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471649,Sedan,,,, +10/28/2021,3:10,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",BREWER BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472407,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,13:10,BROOKLYN,11223,40.597378,-73.969635,"(40.597378, -73.969635)",EAST 2 STREET,AVENUE U,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472103,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,7:28,MANHATTAN,10001,40.745422,-73.990974,"(40.745422, -73.990974)",WEST 27 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471520,Sedan,Bike,,, +10/28/2021,17:30,BROOKLYN,11230,40.619656,-73.95745,"(40.619656, -73.95745)",,,1270 EAST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472071,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,6:45,,,40.666637,-73.7646,"(40.666637, -73.7646)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471935,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/28/2021,10:57,BROOKLYN,11212,40.659977,-73.92297,"(40.659977, -73.92297)",,,254 EAST 94 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471813,Sedan,E-Bike,,, +10/28/2021,10:00,,,40.806915,-73.93557,"(40.806915, -73.93557)",,,EAST 129 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4472884,Sedan,Sedan,,, +10/23/2021,22:03,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",9 AVENUE,WEST 39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472583,Sedan,,,, +10/27/2021,13:01,,,40.766167,-73.954254,"(40.766167, -73.954254)",EAST 71 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471712,Van,Van,,, +10/29/2021,19:00,MANHATTAN,10011,40.742584,-73.99789,"(40.742584, -73.99789)",,,212 WEST 20 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472390,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,14:30,QUEENS,11368,40.748432,-73.86876,"(40.748432, -73.86876)",,,96-09 40 ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4471950,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,11:00,QUEENS,11101,40.743015,-73.951805,"(40.743015, -73.951805)",JACKSON AVENUE,49 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472145,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/27/2021,15:37,BROOKLYN,11201,40.70163,-73.989685,"(40.70163, -73.989685)",YORK STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471572,Sedan,,,, +10/27/2021,7:30,BRONX,10457,40.850502,-73.89368,"(40.850502, -73.89368)",,,542 EAST 180 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471671,Sedan,,,, +10/29/2021,8:20,BRONX,10451,40.815865,-73.91987,"(40.815865, -73.91987)",EAST 148 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472330,Pick-up Truck,Bus,,, +10/29/2021,0:15,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472508,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/29/2021,23:20,,,40.755337,-73.843254,"(40.755337, -73.843254)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472230,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,11:45,QUEENS,11377,40.755245,-73.900536,"(40.755245, -73.900536)",,,32-37 62 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471719,Carry All,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,15:15,,,,,,MACOMBS DAM BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4472826,Sedan,Sedan,,, +10/29/2021,2:08,QUEENS,11366,40.726425,-73.80502,"(40.726425, -73.80502)",164 STREET,75 ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4472011,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,19:00,,,40.527668,-74.23023,"(40.527668, -74.23023)",TYRELLAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438571,Pick-up Truck,Sedan,,, +07/17/2021,16:42,STATEN ISLAND,10310,40.639175,-74.121826,"(40.639175, -74.121826)",RICHMOND TERRACE,ALASKA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438003,Sedan,,,, +07/17/2021,4:54,BROOKLYN,11212,40.6566,-73.9035,"(40.6566, -73.9035)",,,879 MOTHER GASTON BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437832,Sedan,,,, +07/16/2021,19:55,BRONX,10469,40.87186,-73.83681,"(40.87186, -73.83681)",,,3016 ELY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438536,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,14:50,,,40.679184,-73.941284,"(40.679184, -73.941284)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438503,Van,,,, +07/14/2021,21:50,MANHATTAN,10009,40.7231,-73.98568,"(40.7231, -73.98568)",,,24 AVENUE A,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4438357,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,0:03,BROOKLYN,11208,40.671597,-73.88018,"(40.671597, -73.88018)",SUTTER AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437569,Sedan,Sedan,,, +07/17/2021,17:37,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437796,E-Bike,Sedan,,, +07/15/2021,14:35,MANHATTAN,10026,40.80016,-73.946846,"(40.80016, -73.946846)",,,1400 5 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438550,Sedan,Flat Bed,,, +07/17/2021,3:06,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4438146,Motorbike,,,, +07/17/2021,20:47,,,40.86732,-73.82254,"(40.86732, -73.82254)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4437880,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/17/2021,17:12,MANHATTAN,10037,40.81467,-73.93622,"(40.81467, -73.93622)",EAST 138 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4438333,Sedan,Sedan,,, +07/14/2021,14:30,BROOKLYN,11205,40.697098,-73.95386,"(40.697098, -73.95386)",PARK AVENUE,SANDFORD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438464,Box Truck,Sedan,,, +07/17/2021,1:00,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4437583,Sedan,,,, +07/17/2021,13:00,,,40.609707,-74.011284,"(40.609707, -74.011284)",15 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437907,Sedan,Sedan,,, +07/15/2021,9:40,BROOKLYN,11207,40.667183,-73.899284,"(40.667183, -73.899284)",,,531 BLAKE AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438376,Bus,,,, +06/21/2021,18:30,STATEN ISLAND,10314,40.61346,-74.122536,"(40.61346, -74.122536)",,,565 MANOR ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4438600,Sedan,,,, +07/15/2021,15:10,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4438401,Sedan,,,, +07/17/2021,0:20,BRONX,10455,40.816307,-73.90806,"(40.816307, -73.90806)",WESTCHESTER AVENUE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438312,Sedan,,,, +07/17/2021,9:53,QUEENS,11691,40.59519,-73.75572,"(40.59519, -73.75572)",,,20-39 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437603,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,3:00,BROOKLYN,11209,40.614532,-74.02966,"(40.614532, -74.02966)",,,9524 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438632,Motorcycle,,,, +07/14/2021,0:00,BROOKLYN,11201,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,DE KALB AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438625,Station Wagon/Sport Utility Vehicle,Bike,,, +07/17/2021,4:35,QUEENS,11377,40.74623,-73.89737,"(40.74623, -73.89737)",,,67-03 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437717,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,12:46,,,40.808228,-73.96654,"(40.808228, -73.96654)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438048,Sedan,,,, +06/29/2021,10:45,,,40.756138,-73.98318,"(40.756138, -73.98318)",WEST 44 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438518,PK,Bike,,, +07/17/2021,4:50,BROOKLYN,11221,40.689102,-73.93194,"(40.689102, -73.93194)",,,690 QUINCY STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4438090,Sedan,Sedan,,, +07/17/2021,14:40,QUEENS,11106,40.760475,-73.9222,"(40.760475, -73.9222)",BROADWAY,35 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438155,Sedan,,,, +07/17/2021,8:11,,,40.67251,-73.99905,"(40.67251, -73.99905)",HAMILTON AVENUE,SMITH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438240,Taxi,Sedan,,, +07/17/2021,14:02,BROOKLYN,11212,40.65858,-73.91728,"(40.65858, -73.91728)",,,381 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437670,Sedan,Sedan,,, +07/17/2021,10:45,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437634,Motorcycle,Sedan,,, +07/16/2021,11:00,,,40.5794,-74.16949,"(40.5794, -74.16949)",RICHMOND AVENUE,PLATINUM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438434,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,21:40,,,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438456,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,13:06,BRONX,10475,40.86413,-73.82213,"(40.86413, -73.82213)",,,139 EINSTEIN LOOP,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438478,Sedan,Sedan,,, +07/17/2021,14:20,BRONX,10458,40.872627,-73.88546,"(40.872627, -73.88546)",,,3010 VALENTINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437661,Sedan,,,, +07/17/2021,11:00,,,40.755947,-73.77146,"(40.755947, -73.77146)",47 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,17:45,STATEN ISLAND,10312,40.55303,-74.17867,"(40.55303, -74.17867)",,,41 LUDLOW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438388,Chassis Cab,Pick-up Truck,,, +07/16/2021,21:30,MANHATTAN,10029,40.791523,-73.94891,"(40.791523, -73.94891)",,,1399 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438673,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,9:00,,,40.75809,-73.795815,"(40.75809, -73.795815)",171 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437710,Sedan,,,, +07/17/2021,3:30,MANHATTAN,10002,40.718002,-73.98659,"(40.718002, -73.98659)",DELANCEY STREET,SUFFOLK STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437617,Taxi,Sedan,,, +07/17/2021,1:10,BRONX,10453,40.85381,-73.91386,"(40.85381, -73.91386)",ANDREWS AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438237,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,22:35,STATEN ISLAND,10304,40.589745,-74.09844,"(40.589745, -74.09844)",SEAVIEW AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438591,Sedan,Sedan,,, +07/17/2021,23:16,,,40.59281,-73.97877,"(40.59281, -73.97877)",86 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437870,Sedan,,,, +07/17/2021,3:30,,,40.8352,-73.86599,"(40.8352, -73.86599)",CROSS BRONX EXPRESSWAY,TAYLOR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437943,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,9:00,BROOKLYN,11204,40.617638,-73.99086,"(40.617638, -73.99086)",,,1814 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438530,Sedan,,,, +07/17/2021,8:47,MANHATTAN,10026,40.800945,-73.9463,"(40.800945, -73.9463)",,,1390 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438555,Pick-up Truck,,,, +07/17/2021,0:46,BRONX,10457,40.852123,-73.88934,"(40.852123, -73.88934)",,,2216 ADAMS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4438295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,10:20,BRONX,10466,40.898243,-73.858864,"(40.898243, -73.858864)",,,4352 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438105,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,20:00,QUEENS,11412,40.685097,-73.760735,"(40.685097, -73.760735)",FARMERS BOULEVARD,121 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438246,Sedan,Sedan,,, +07/17/2021,10:40,BROOKLYN,11232,40.648533,-74.01752,"(40.648533, -74.01752)",2 AVENUE,51 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437629,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,16:40,BROOKLYN,11209,40.616882,-74.02634,"(40.616882, -74.02634)",,,144 GATLING PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437686,Sedan,Sedan,,, +07/17/2021,15:12,MANHATTAN,10011,40.73458,-73.998856,"(40.73458, -73.998856)",,,434 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4437803,Taxi,Sedan,,, +07/17/2021,9:55,,,40.638226,-74.134865,"(40.638226, -74.134865)",,,40 GROVE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438429,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,16:50,STATEN ISLAND,10312,40.534267,-74.15398,"(40.534267, -74.15398)",HYLAN BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,22:43,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,13:52,BROOKLYN,11207,40.676975,-73.892334,"(40.676975, -73.892334)",,,177 MILLER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438349,Sedan,Box Truck,,, +07/15/2021,19:00,,,40.607723,-74.1473,"(40.607723, -74.1473)",SOUTH GANNON AVENUE,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438435,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,4:00,BROOKLYN,11207,40.66802,-73.88541,"(40.66802, -73.88541)",,,546 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518015,Sedan,,,, +07/17/2021,20:00,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,19:15,BROOKLYN,11206,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,VERNON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438474,E-Scooter,Sedan,,, +07/17/2021,23:34,BROOKLYN,11236,40.630455,-73.906525,"(40.630455, -73.906525)",EAST 80 STREET,PAERDEGAT 8 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437761,Sedan,Sedan,,, +07/15/2021,20:18,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",FOUNTAIN AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4438392,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,13:35,BROOKLYN,11229,40.608467,-73.95899,"(40.608467, -73.95899)",,,1409 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437644,Sedan,Sedan,,, +07/17/2021,1:09,,,40.839176,-73.94114,"(40.839176, -73.94114)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438123,Ambulance,Dump,,, +07/17/2021,21:45,QUEENS,11358,40.75307,-73.79238,"(40.75307, -73.79238)",UTOPIA PARKWAY,HOLLIS COURT BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4438200,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/29/2021,18:03,MANHATTAN,10036,40.75859,-73.99095,"(40.75859, -73.99095)",,,360 WEST 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438479,Bus,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,14:43,BROOKLYN,11203,40.653877,-73.93934,"(40.653877, -73.93934)",,,824 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438596,Sedan,,,, +07/17/2021,8:52,,,40.807434,-73.92619,"(40.807434, -73.92619)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438323,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,17:15,,,40.54626,-74.18139,"(40.54626, -74.18139)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438384,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,12:30,MANHATTAN,10002,40.723003,-73.98865,"(40.723003, -73.98865)",,,201 ALLEN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437860,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,0:30,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4438366,Motorcycle,,,, +07/17/2021,15:00,MANHATTAN,10003,40.73304,-73.98995,"(40.73304, -73.98995)",,,111 4 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4437915,Taxi,,,, +07/10/2021,0:29,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4438537,REVEL scoo,Bike,,, +07/17/2021,18:30,,,40.827904,-73.91218,"(40.827904, -73.91218)",EAST 165 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4437783,Sedan,Sedan,,, +07/14/2021,16:30,,,40.803104,-73.95825,"(40.803104, -73.95825)",WEST 113 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438551,Sedan,,,, +07/17/2021,21:07,QUEENS,11694,40.581184,-73.825096,"(40.581184, -73.825096)",SHORE FRONT PARKWAY,BEACH 105 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4438068,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,1:29,BROOKLYN,11237,40.703873,-73.91256,"(40.703873, -73.91256)",CYPRESS AVENUE,BLEECKER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438415,Taxi,Taxi,,, +07/17/2021,15:53,,,40.72926,-73.75282,"(40.72926, -73.75282)",GRAND CENTRAL PARKWAY,BELL BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4437723,Pick-up Truck,,,, +07/17/2021,9:00,MANHATTAN,10035,40.80194,-73.93414,"(40.80194, -73.93414)",,,2409 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438339,Sedan,,,, +07/17/2021,11:40,,,40.68366,-73.90788,"(40.68366, -73.90788)",PILLING STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438440,Sedan,,,, +07/17/2021,0:00,MANHATTAN,10002,40.721233,-73.98778,"(40.721233, -73.98778)",LUDLOW STREET,STANTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437979,Sedan,,,, +07/17/2021,18:10,,,,,,10 AVENUE,11 AVENUE,,2,0,0,0,0,0,0,0,Unsafe Speed,,,,,4437797,E-Bike,,,, +07/17/2021,20:55,BROOKLYN,11221,40.688847,-73.92119,"(40.688847, -73.92119)",HOWARD AVENUE,MONROE STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4437984,Taxi,E-Scooter,,, +07/17/2021,6:50,QUEENS,11103,40.762436,-73.916176,"(40.762436, -73.916176)",,,30-59 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437898,Sedan,Sedan,,, +07/16/2021,19:05,BROOKLYN,11207,40.68295,-73.88736,"(40.68295, -73.88736)",JAMAICA AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438371,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,3:16,,,40.736572,-73.907715,"(40.736572, -73.907715)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437572,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,17:28,,,40.680073,-73.95438,"(40.680073, -73.95438)",BREVOORT PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544197,Sedan,,,, +07/17/2021,11:20,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438396,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:00,MANHATTAN,10034,40.86194,-73.91834,"(40.86194, -73.91834)",,,3815 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438469,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,22:56,BRONX,10468,,,,,,2800 PARKVIEW TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437754,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,12:50,BRONX,10455,40.81888,-73.916504,"(40.81888, -73.916504)",MELROSE AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438318,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,3:00,,,40.68609,-73.93867,"(40.68609, -73.93867)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4438463,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,0:00,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4438439,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,NYC TRANSI, +07/14/2021,19:40,BROOKLYN,11208,40.671604,-73.86907,"(40.671604, -73.86907)",BLAKE AVENUE,CRESCENT STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4438356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,5:52,BRONX,10468,40.865597,-73.90828,"(40.865597, -73.90828)",,,2499 SEDGWICK AVENUE,3,0,0,0,0,0,3,0,Passing Too Closely,Passing Too Closely,,,,4437591,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,23:44,BROOKLYN,11208,40.671864,-73.87834,"(40.671864, -73.87834)",SUTTER AVENUE,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4438377,Sedan,,,, +07/17/2021,19:00,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437722,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2021,8:00,STATEN ISLAND,10304,40.613564,-74.07918,"(40.613564, -74.07918)",,,46A CIRCLE LOOP,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438601,Sedan,,,, +07/17/2021,19:45,QUEENS,11106,40.75582,-73.93259,"(40.75582, -73.93259)",29 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4437899,Sedan,Sedan,,, +07/15/2021,20:30,BROOKLYN,11208,40.681217,-73.88211,"(40.681217, -73.88211)",SHEPHERD AVENUE,ARLINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438402,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/17/2021,3:38,BRONX,10459,40.82723,-73.89292,"(40.82723, -73.89292)",,,1136 SIMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437789,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,23:30,,,40.80929,-73.90313,"(40.80929, -73.90313)",BRUCKNER EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4438311,Van,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/17/2021,8:22,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438338,Bike,,,, +07/16/2021,17:00,QUEENS,11422,40.64036,-73.74351,"(40.64036, -73.74351)",,,154-71 BROOKVILLE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438572,Sedan,Sedan,,, +07/17/2021,3:38,MANHATTAN,10011,40.739243,-73.99919,"(40.739243, -73.99919)",7 AVENUE,WEST 15 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437836,Sedan,Sedan,,, +07/14/2021,12:06,,,40.687637,-73.94478,"(40.687637, -73.94478)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,3:30,,,40.68039,-73.94956,"(40.68039, -73.94956)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4438457,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/15/2021,14:37,BROOKLYN,11208,40.6793,-73.87998,"(40.6793, -73.87998)",,,3123 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,19:10,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",ESSEX STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438540,Sedan,Sedan,,, +07/17/2021,3:23,BROOKLYN,11233,40.677288,-73.92824,"(40.677288, -73.92824)",ATLANTIC AVENUE,HUNTERFLY PLACE,,1,1,0,0,0,0,1,1,Unsafe Speed,,,,,4437642,Sedan,,,, +07/17/2021,17:45,QUEENS,11101,40.75024,-73.94208,"(40.75024, -73.94208)",42 ROAD,24 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4437662,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,17:40,QUEENS,11366,40.725906,-73.79132,"(40.725906, -73.79132)",,,176-69 UNION TURNPIKE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4438112,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/05/2021,13:20,,,40.886635,-73.88746,"(40.886635, -73.88746)",MOSHOLU PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4486454,Sedan,,,, +07/06/2021,21:30,BRONX,10463,40.887928,-73.909386,"(40.887928, -73.909386)",OXFORD AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438689,Sedan,Sedan,,, +07/17/2021,7:50,,,40.589912,-73.80738,"(40.589912, -73.80738)",BEACH CHANNEL DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4438448,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,11:34,QUEENS,11385,40.700485,-73.901085,"(40.700485, -73.901085)",,,58-14 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,20:22,MANHATTAN,10012,40.72179,-73.99986,"(40.72179, -73.99986)",BROOME STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4438253,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,23:00,BROOKLYN,11207,40.65444,-73.89081,"(40.65444, -73.89081)",ALABAMA AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438407,Sedan,,,, +07/17/2021,10:40,QUEENS,11413,40.66534,-73.743935,"(40.66534, -73.743935)",232 STREET,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4437631,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +07/17/2021,19:37,STATEN ISLAND,10301,40.61578,-74.103035,"(40.61578, -74.103035)",CLOVE ROAD,NIAGARA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438000,Sedan,Sedan,,, +07/17/2021,6:05,QUEENS,11372,40.75546,-73.88631,"(40.75546, -73.88631)",81 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4438131,Sedan,Bike,,, +07/17/2021,13:03,MANHATTAN,10005,40.706318,-74.009415,"(40.706318, -74.009415)",,,53 WALL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437653,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,11:29,BROOKLYN,11233,40.676105,-73.90671,"(40.676105, -73.90671)",,,2364 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4437802,Sedan,Sedan,Sedan,, +07/16/2021,20:30,BROOKLYN,11208,40.66686,-73.86884,"(40.66686, -73.86884)",LORING AVENUE,PINE STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438350,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/17/2021,20:45,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,12:00,QUEENS,11435,40.698692,-73.8057,"(40.698692, -73.8057)",147 PLACE,95 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4438301,Sedan,Sedan,Sedan,, +07/03/2021,17:22,,,40.519722,-74.22867,"(40.519722, -74.22867)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4438562,Sedan,Sedan,,, +07/17/2021,22:08,BROOKLYN,11225,40.667145,-73.950226,"(40.667145, -73.950226)",,,1192 CARROLL STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437730,,,,, +07/17/2021,11:45,,,40.688614,-73.989174,"(40.688614, -73.989174)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4437820,Sedan,Sedan,,, +07/17/2021,13:43,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4438496,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/08/2021,9:30,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438491,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,15:40,BROOKLYN,11207,40.678226,-73.8871,"(40.678226, -73.8871)",,,236 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438430,Sedan,,,, +07/17/2021,20:45,,,40.675323,-73.86332,"(40.675323, -73.86332)",CONDUIT BOULEVARD,FORBELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438345,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,0:25,MANHATTAN,10036,40.756035,-73.98695,"(40.756035, -73.98695)",7 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438475,Pick-up Truck,,,, +07/17/2021,21:21,BRONX,10470,40.902428,-73.85125,"(40.902428, -73.85125)",,,4617 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4438099,Sedan,Sedan,,, +07/17/2021,3:15,QUEENS,11374,40.726185,-73.87022,"(40.726185, -73.87022)",WOODHAVEN BOULEVARD,62 ROAD,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4437602,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,23:00,,,40.688904,-73.754456,"(40.688904, -73.754456)",120 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438245,Sedan,Sedan,,, +07/15/2021,22:42,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438669,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,13:17,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,21:24,MANHATTAN,10027,40.805973,-73.950516,"(40.805973, -73.950516)",,,2005 7 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4438554,Sedan,,,, +07/17/2021,22:36,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438145,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,22:50,BROOKLYN,11210,40.634827,-73.9344,"(40.634827, -73.9344)",GLENWOOD ROAD,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4438040,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/17/2021,16:23,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4437869,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,15:55,BROOKLYN,11249,40.71786,-73.96223,"(40.71786, -73.96223)",NORTH 4 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438387,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,2:55,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",BRONX RIVER AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437936,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,9:50,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438346,Sedan,Bus,,, +07/17/2021,0:50,MANHATTAN,10016,40.747627,-73.976746,"(40.747627, -73.976746)",3 AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4438512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,15:47,BROOKLYN,11223,40.600082,-73.96591,"(40.600082, -73.96591)",OCEAN PARKWAY,AVENUE T,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,12:30,MANHATTAN,10002,40.71504,-73.99681,"(40.71504, -73.99681)",BOWERY,BAYARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438262,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,18:24,BRONX,10451,40.817307,-73.927864,"(40.817307, -73.927864)",,,424 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438324,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,2:32,MANHATTAN,10018,40.75193,-73.98315,"(40.75193, -73.98315)",,,18 WEST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437817,Taxi,,,, +07/16/2021,14:24,BRONX,10453,40.853474,-73.906456,"(40.853474, -73.906456)",EAST BURNSIDE AVENUE,WALTON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438690,Sedan,Bike,,, +07/17/2021,13:35,BROOKLYN,11211,40.716778,-73.93635,"(40.716778, -73.93635)",MASPETH AVENUE,MORGAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438153,Bus,Sedan,,, +07/17/2021,9:37,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4437614,Sedan,Sedan,,, +07/17/2021,16:49,BROOKLYN,11233,40.676254,-73.92435,"(40.676254, -73.92435)",,,1886 PACIFIC STREET,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4437958,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/17/2021,12:15,BROOKLYN,11212,40.6544,-73.92044,"(40.6544, -73.92044)",LINDEN BOULEVARD,EAST 91 STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437669,PC,Sedan,,, +07/16/2021,4:15,QUEENS,11369,40.75741,-73.87909,"(40.75741, -73.87909)",,,32-42 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4438588,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/17/2021,4:19,,,40.84984,-73.934975,"(40.84984, -73.934975)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4437987,Sedan,,,, +07/17/2021,17:30,BRONX,10468,40.871468,-73.891045,"(40.871468, -73.891045)",,,5 MINERVA PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437753,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/17/2021,11:54,MANHATTAN,10001,40.744946,-73.99133,"(40.744946, -73.99133)",,,777 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437955,Sedan,Box Truck,,, +07/13/2021,13:40,MANHATTAN,10002,40.71601,-73.99306,"(40.71601, -73.99306)",,,50 ELDRIDGE STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4438522,Sedan,Van,,, +07/14/2021,20:10,BROOKLYN,11207,40.677605,-73.90234,"(40.677605, -73.90234)",FULTON STREET,WILLIAMS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438364,Bus,Ambulance,,, +07/17/2021,2:16,BROOKLYN,11238,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,FULTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437859,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/08/2021,17:05,BRONX,10455,40.8147,-73.91859,"(40.8147, -73.91859)",EAST 147 STREET,BERGEN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4438373,,,,, +07/17/2021,0:39,,,40.737396,-73.93193,"(40.737396, -73.93193)",BORDEN AVENUE,35 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437575,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,16:30,BROOKLYN,11208,40.6744,-73.871666,"(40.6744, -73.871666)",,,525 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438397,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,16:21,MANHATTAN,10040,40.854446,-73.928535,"(40.854446, -73.928535)",,,551 WEST 190 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438560,Box Truck,,,, +07/15/2021,11:30,BRONX,10454,40.806698,-73.91079,"(40.806698, -73.91079)",CONCORD AVENUE,EAST 141 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438317,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/16/2021,8:15,MANHATTAN,10033,40.848038,-73.93285,"(40.848038, -73.93285)",AUDUBON AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438468,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,18:30,BROOKLYN,11232,40.657578,-74.00101,"(40.657578, -74.00101)",,,833 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438451,Motorcycle,,,, +07/17/2021,21:48,BROOKLYN,11236,40.637657,-73.89687,"(40.637657, -73.89687)",EAST 95 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438141,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,14:43,,,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4437652,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,1:35,QUEENS,11354,40.760666,-73.83349,"(40.760666, -73.83349)",,,133-42 37 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4437655,Sedan,,,, +07/17/2021,7:50,QUEENS,11435,40.709633,-73.81451,"(40.709633, -73.81451)",,,141-55 85 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438069,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,7:03,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438395,Sedan,,,, +07/17/2021,13:05,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4437685,Sedan,Pick-up Truck,,, +07/17/2021,20:00,QUEENS,11435,40.708603,-73.807556,"(40.708603, -73.807556)",,,86-07 150 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4438113,Sedan,,,, +07/11/2021,18:00,BROOKLYN,11207,40.669186,-73.88942,"(40.669186, -73.88942)",,,433 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438411,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,20:45,BROOKLYN,11225,40.65807,-73.960434,"(40.65807, -73.960434)",FLATBUSH AVENUE,FENIMORE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437729,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/17/2021,22:00,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4438202,Sedan,Sedan,,, +07/16/2021,8:00,,,40.877365,-73.86807,"(40.877365, -73.86807)",DUNCOMB AVENUE,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438445,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,3:40,,,40.68662,-73.82319,"(40.68662, -73.82319)",LIBERTY AVENUE,120 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437624,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,8:45,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",73 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4438070,Sedan,Sedan,,, +07/05/2021,15:11,BROOKLYN,11212,40.66307,-73.92576,"(40.66307, -73.92576)",,,1024 RUTLAND ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438595,Sedan,Sedan,,, +07/17/2021,7:15,MANHATTAN,10028,40.780174,-73.95721,"(40.780174, -73.95721)",EAST 86 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438190,Sedan,Sedan,,, +07/17/2021,22:06,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Following Too Closely,,4438250,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/17/2021,6:20,,,40.741734,-73.7283,"(40.741734, -73.7283)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4437632,Sedan,,,, +07/17/2021,10:20,,,,,,VERRAZANO BRIDGE LOWER,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437681,Sedan,Sedan,Sedan,, +07/13/2021,17:25,,,40.635506,-74.1662,"(40.635506, -74.1662)",,,171 SOUTH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4438432,Sedan,,,, +07/16/2021,20:13,,,40.58604,-74.16859,"(40.58604, -74.16859)",,,2500 RICHMOND AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4438438,Bike,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,11:43,QUEENS,11429,40.71558,-73.74377,"(40.71558, -73.74377)",,,215-04 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437720,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,8:00,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437900,Sedan,Sedan,,, +07/14/2021,17:38,BROOKLYN,11208,40.67421,-73.86208,"(40.67421, -73.86208)",SUTTER AVENUE,DREW STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4438426,Taxi,Sedan,,, +07/17/2021,10:34,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438315,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,15:30,,,40.694138,-73.92649,"(40.694138, -73.92649)",KOSSUTH PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438390,Chassis Cab,Sedan,,, +07/17/2021,0:30,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4437640,Station Wagon/Sport Utility Vehicle,Bike,,, +07/17/2021,22:05,MANHATTAN,10032,40.831566,-73.942986,"(40.831566, -73.942986)",AMSTERDAM AVENUE,WEST 155 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437749,Sedan,,,, +07/07/2021,16:15,,,40.715828,-74.01539,"(40.715828, -74.01539)",,,MURRAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438683,Sedan,,,, +07/17/2021,9:10,BROOKLYN,11238,40.68635,-73.96241,"(40.68635, -73.96241)",LEXINGTON AVENUE,GRAND AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4437608,Sedan,Bike,,, +07/17/2021,6:30,QUEENS,11355,40.74552,-73.83544,"(40.74552, -73.83544)",COLLEGE POINT BOULEVARD,58 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438613,Convertible,,,, +07/17/2021,20:35,MANHATTAN,10025,,,,Broadway,west 106 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4437715,Sedan,E-Bike,,, +07/16/2021,8:40,BROOKLYN,11215,40.66805,-73.9787,"(40.66805, -73.9787)",,,515 6 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438470,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,22:08,,,40.852673,-73.919106,"(40.852673, -73.919106)",UNDERCLIFF AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4438056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,13:46,QUEENS,11374,40.734272,-73.8626,"(40.734272, -73.8626)",HORACE HARDING EXPRESSWAY,97 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4437693,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/16/2021,8:00,,,40.605427,-74.0762,"(40.605427, -74.0762)",NARROWS ROAD SOUTH,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438506,Sedan,Sedan,,, +07/15/2021,10:45,BROOKLYN,11207,40.671448,-73.89001,"(40.671448, -73.89001)",VAN SICLEN AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438359,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,20:44,QUEENS,11419,40.68636,-73.81483,"(40.68636, -73.81483)",,,107-14 129 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438215,Sedan,,,, +07/17/2021,15:50,BRONX,10473,40.82389,-73.87461,"(40.82389, -73.87461)",,,1600 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438542,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,11:10,,,40.82681,-73.889984,"(40.82681, -73.889984)",EAST 167 STREET,,,1,0,1,0,0,0,0,0,,,,,,4437790,Sedan,,,, +07/17/2021,1:50,BRONX,10467,40.88308,-73.85971,"(40.88308, -73.85971)",,,3814 BARNES AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4438108,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,0:00,,,40.81666,-73.938995,"(40.81666, -73.938995)",WEST 139 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,18:40,BROOKLYN,11211,40.709175,-73.95337,"(40.709175, -73.95337)",,,357 SOUTH 3 STREET,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4438151,Motorcycle,,,, +07/17/2021,20:55,,,40.821415,-73.82185,"(40.821415, -73.82185)",DEWEY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,20:30,MANHATTAN,10035,40.806915,-73.93557,"(40.806915, -73.93557)",EAST 129 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438337,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/16/2021,18:40,BROOKLYN,11234,40.607723,-73.89732,"(40.607723, -73.89732)",,,7000 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4438406,Sedan,,,, +07/17/2021,14:30,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",NOSTRAND AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437777,Sedan,,,, +07/09/2021,20:00,BROOKLYN,11210,40.635956,-73.939316,"(40.635956, -73.939316)",,,857 EAST 39 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438597,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,17:30,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438351,Sedan,,,, +07/17/2021,15:31,BROOKLYN,11236,40.645164,-73.898346,"(40.645164, -73.898346)",FLATLANDS AVENUE,EAST 100 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,22:00,,,,,,GRAND CONCOURSE,EAST MOSHOLU PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437756,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,4:30,,,40.68746,-73.906494,"(40.68746, -73.906494)",MOFFAT STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4437597,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,15:31,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438374,Sedan,Sedan,Bike,, +07/01/2021,14:20,MANHATTAN,10001,40.749355,-73.992645,"(40.749355, -73.992645)",,,210 WEST 31 STREET,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4438476,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,4:20,BROOKLYN,11226,40.643425,-73.94588,"(40.643425, -73.94588)",CLARENDON ROAD,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4437667,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,7:00,MANHATTAN,10001,40.746635,-73.99197,"(40.746635, -73.99197)",,,150 WEST 28 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437824,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,18:20,,,40.681633,-73.95133,"(40.681633, -73.95133)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438459,Bus,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,12:37,BROOKLYN,11208,40.685696,-73.87161,"(40.685696, -73.87161)",HEMLOCK STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4438403,3-Door,Sedan,,, +07/16/2021,15:48,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438320,Sedan,Sedan,,, +07/19/2020,19:37,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438654,Sedan,,,, +07/13/2021,15:44,,,40.74,-73.73855,"(40.74, -73.73855)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438532,Sedan,Sedan,,, +07/13/2021,9:00,BROOKLYN,11201,40.69585,-73.981926,"(40.69585, -73.981926)",,,202 TILLARY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438573,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,1:16,MANHATTAN,10011,40.73986,-73.995026,"(40.73986, -73.995026)",AVENUE OF THE AMERICAS,WEST 18 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4437837,Sedan,Taxi,,, +07/01/2021,14:20,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,TOMPKINS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4438490,Sedan,Bike,,, +07/17/2021,18:00,,,40.642498,-73.92358,"(40.642498, -73.92358)",AVENUE D,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438039,Sedan,,,, +07/17/2021,21:35,BRONX,10455,40.816246,-73.908134,"(40.816246, -73.908134)",,,654 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4438325,Station Wagon/Sport Utility Vehicle,Bike,,, +07/17/2021,22:45,QUEENS,11370,40.757095,-73.89134,"(40.757095, -73.89134)",32 AVENUE,76 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4437799,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/17/2021,11:45,BROOKLYN,11213,40.669304,-73.940605,"(40.669304, -73.940605)",,,840 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437731,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,1:09,BROOKLYN,11208,40.661156,-73.87101,"(40.661156, -73.87101)",COZINE AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4438368,Sedan,Dump,Dump,, +07/16/2021,9:02,BRONX,10461,40.84299,-73.82625,"(40.84299, -73.82625)",COUNTRY CLUB ROAD,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4438382,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/17/2021,16:20,BRONX,10467,40.86996,-73.863396,"(40.86996, -73.863396)",,,3011 BARNES AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438096,Sedan,,,, +07/17/2021,7:10,BRONX,10455,40.81632,-73.903015,"(40.81632, -73.903015)",PROSPECT AVENUE,EAST 155 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,15:25,QUEENS,11354,40.769283,-73.82445,"(40.769283, -73.82445)",32 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4437865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,19:11,,,,,,VERRAZANO BRIDGE UPPER,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4438498,Sedan,Sedan,,, +07/17/2021,8:30,BROOKLYN,11220,40.644337,-74.00754,"(40.644337, -74.00754)",6 AVENUE,49 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437962,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,20:05,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PITKIN AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438410,Sedan,Sedan,,, +07/16/2021,16:16,,,40.66965,-73.89332,"(40.66965, -73.89332)",SUTTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438344,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,14:13,BRONX,10468,40.870583,-73.90266,"(40.870583, -73.90266)",SEDGWICK AVENUE,WEST 195 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438691,Sedan,MOPED,,, +07/07/2021,18:45,,,40.69864,-73.93819,"(40.69864, -73.93819)",LEWIS AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4438462,Bus,Sedan,,, +07/17/2021,23:08,,,40.85882,-73.9368,"(40.85882, -73.9368)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4437991,Sedan,,,, +07/12/2021,16:00,,,40.6884,-73.95118,"(40.6884, -73.95118)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438454,Sedan,,,, +07/16/2021,8:00,BROOKLYN,11207,40.665356,-73.89421,"(40.665356, -73.89421)",,,490 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438347,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,4:35,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4437576,Sedan,Sedan,,, +07/17/2021,17:00,BROOKLYN,11237,40.699253,-73.91719,"(40.699253, -73.91719)",,,259 BLEECKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438398,Sedan,Sedan,,, +07/16/2021,9:10,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4438369,Sedan,Sedan,,, +07/17/2021,16:40,BROOKLYN,11230,40.63524,-73.967636,"(40.63524, -73.967636)",18 AVENUE,CONEY ISLAND AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437774,E-Scooter,Sedan,,, +07/17/2021,17:10,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4438142,Sedan,Sedan,,, +07/17/2021,4:00,BROOKLYN,11228,40.617645,-74.00304,"(40.617645, -74.00304)",15 AVENUE,BAY RIDGE PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437657,Sedan,Sedan,,, +07/17/2021,13:08,BRONX,10467,40.86235,-73.87051,"(40.86235, -73.87051)",,,2450 BRONX PARK EAST,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4438115,Sedan,Sedan,,, +07/13/2021,8:05,BROOKLYN,11231,40.6737,-74.00444,"(40.6737, -74.00444)",LORRAINE STREET,HENRY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438593,Bus,,,, +07/16/2021,15:15,,,40.5516,-74.190155,"(40.5516, -74.190155)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438386,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,18:30,BRONX,10455,,,,Third ave,East 156 street,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4438321,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/17/2021,18:02,BRONX,10462,40.838116,-73.85002,"(40.838116, -73.85002)",PARKER STREET,GLEBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437874,Sedan,Sedan,,, +07/14/2021,8:52,,,40.75355,-73.98505,"(40.75355, -73.98505)",WEST 40 STREET,,,1,0,0,0,1,0,0,0,Passenger Distraction,Passing Too Closely,,,,4438520,Taxi,Bike,,, +07/17/2021,21:09,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4437927,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,11:32,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438553,School Bus,Sedan,,, +07/17/2021,17:00,MANHATTAN,10002,40.718792,-73.993515,"(40.718792, -73.993515)",,,119 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438269,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/17/2021,12:20,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4438059,Sedan,Sedan,,, +07/17/2021,5:20,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437692,Convertible,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,16:00,QUEENS,11356,40.783226,-73.84223,"(40.783226, -73.84223)",126 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437728,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,14:30,,,,,,BRUCKNER BOULEVARD,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438443,Sedan,Sedan,,, +07/17/2021,3:47,,,,,,107 AVENUE,VANSICLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437626,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,9:08,BROOKLYN,11208,40.66999,-73.85912,"(40.66999, -73.85912)",EMERALD STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438427,Sedan,,,, +07/17/2021,11:17,,,40.73769,-73.76858,"(40.73769, -73.76858)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4438074,Sedan,Sedan,,, +07/17/2021,7:00,,,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/20/2021,19:40,BROOKLYN,11216,40.68693,-73.95089,"(40.68693, -73.95089)",NOSTRAND AVENUE,QUINCY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,12:30,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4438394,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,18:40,BROOKLYN,11215,40.671177,-73.9747,"(40.671177, -73.9747)",8 AVENUE,GARFIELD PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438467,Sedan,Sedan,,, +07/17/2021,11:00,QUEENS,11355,40.75435,-73.82139,"(40.75435, -73.82139)",,,43-12 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4437707,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,20:20,,,40.611034,-74.01349,"(40.611034, -74.01349)",14 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4437733,Pick-up Truck,Sedan,,, +07/16/2021,13:10,BRONX,10455,40.8147,-73.91859,"(40.8147, -73.91859)",BERGEN AVENUE,EAST 147 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438309,Sedan,,,, +07/17/2021,8:00,,,40.76399,-73.958786,"(40.76399, -73.958786)",1 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4438192,Taxi,Motorcycle,,, +07/17/2021,6:20,QUEENS,11375,40.71531,-73.826385,"(40.71531, -73.826385)",132 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438223,Sedan,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,, +03/05/2022,16:21,QUEENS,11432,40.705532,-73.79469,"(40.705532, -73.79469)",,,165-10 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,Failure to Keep Right,,,,4518386,Sedan,Sedan,,, +07/17/2021,3:38,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",ALLEN STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4437623,Sedan,Sedan,,, +07/12/2021,23:00,,,40.63574,-74.02605,"(40.63574, -74.02605)",BAY RIDGE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438579,Taxi,,,, +07/17/2021,10:00,BRONX,10467,40.876923,-73.87327,"(40.876923, -73.87327)",,,3322 DECATUR AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4437949,Sedan,,,, +07/04/2021,13:10,BRONX,10459,40.820087,-73.89056,"(40.820087, -73.89056)",HUNTS POINT AVENUE,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438510,Sedan,Pick-up Truck,,, +07/10/2021,6:50,,,40.849674,-73.83581,"(40.849674, -73.83581)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438558,Sedan,Sedan,,, +07/17/2021,12:30,MANHATTAN,10006,40.706993,-74.012344,"(40.706993, -74.012344)",,,61 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437651,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,12:12,BROOKLYN,11205,40.69112,-73.953575,"(40.69112, -73.953575)",DE KALB AVENUE,WALWORTH STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438507,Sedan,,,, +07/17/2021,18:50,BRONX,10466,40.887844,-73.83052,"(40.887844, -73.83052)",,,2233 LIGHT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438094,Box Truck,Sedan,,, +07/17/2021,8:50,,,40.584003,-73.92157,"(40.584003, -73.92157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437607,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,10:17,BROOKLYN,11234,40.628227,-73.926865,"(40.628227, -73.926865)",EAST 51 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437752,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,16:40,,,40.597378,-73.76498,"(40.597378, -73.76498)",ROCKAWAY FREEWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438187,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,6:46,,,40.841816,-73.92245,"(40.841816, -73.92245)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438637,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,15:30,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4438471,Van,Motorcycle,Sedan,, +07/17/2021,18:10,BRONX,10453,40.85053,-73.90514,"(40.85053, -73.90514)",EAST 178 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438055,Sedan,Sedan,,, +07/17/2021,16:20,,,40.60582,-73.9803,"(40.60582, -73.9803)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4437673,Sedan,Sedan,Sedan,Pick-up Truck, +07/16/2021,20:25,BROOKLYN,11207,40.67249,-73.90064,"(40.67249, -73.90064)",,,272 GLENMORE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438380,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,9:55,BROOKLYN,11207,40.65309,-73.88552,"(40.65309, -73.88552)",FLATLANDS AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4438352,Taxi,Van,,, +07/17/2021,3:31,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",CLAREMONT PARKWAY,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4437825,Sedan,Sedan,,, +07/10/2021,23:57,,,40.65133,-73.90607,"(40.65133, -73.90607)",AVENUE D,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438566,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,20:20,,,,,,BOSTON ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437791,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +07/17/2021,0:56,BRONX,10454,40.807594,-73.91695,"(40.807594, -73.91695)",,,276 SAINT ANNS AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4438313,Sedan,Motorcycle,,, +07/17/2021,22:35,BROOKLYN,11212,40.66451,-73.91723,"(40.66451, -73.91723)",BLAKE AVENUE,LEGION STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438335,Sedan,,,, +07/17/2021,4:02,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4437838,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/17/2021,7:50,QUEENS,11354,40.762375,-73.81932,"(40.762375, -73.81932)",,,144-77 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4438576,Station Wagon/Sport Utility Vehicle,,,, +06/03/2021,17:25,MANHATTAN,10018,40.751305,-73.98766,"(40.751305, -73.98766)",,,1350 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4438477,Box Truck,,,, +07/17/2021,2:00,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",CHURCH AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437668,Carry All,Sedan,,, +07/13/2021,15:10,BROOKLYN,11205,40.689445,-73.95513,"(40.689445, -73.95513)",LAFAYETTE AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438460,Bus,Sedan,,, +07/17/2021,8:20,QUEENS,11358,40.757847,-73.78944,"(40.757847, -73.78944)",192 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437636,Sedan,Sedan,,, +07/16/2021,23:19,,,40.61847,-74.13689,"(40.61847, -74.13689)",,,225 BIDWELL AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,6:24,BROOKLYN,11212,40.65634,-73.92137,"(40.65634, -73.92137)",KINGS HIGHWAY,EAST 92 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4438107,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,21:57,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4438548,Sedan,Sedan,,, +07/16/2021,11:28,MANHATTAN,10029,40.788937,-73.94254,"(40.788937, -73.94254)",,,330 EAST 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438678,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,4:30,,,40.820435,-73.93623,"(40.820435, -73.93623)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,4:30,QUEENS,11377,40.737152,-73.90521,"(40.737152, -73.90521)",,,59-39 50 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437716,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,16:41,BRONX,10475,40.8695,-73.82619,"(40.8695, -73.82619)",COOP CITY BOULEVARD,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437879,Sedan,,,, +07/17/2021,11:30,BROOKLYN,11249,40.717518,-73.96474,"(40.717518, -73.96474)",METROPOLITAN AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438149,Box Truck,Sedan,,, +07/17/2021,19:30,,,40.65605,-73.92361,"(40.65605, -73.92361)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,9:30,QUEENS,11694,40.579105,-73.84281,"(40.579105, -73.84281)",,,235 BEACH 122 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437633,Pick-up Truck,,,, +07/17/2021,3:02,,,40.716557,-73.82869,"(40.716557, -73.82869)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4437599,Sedan,,,, +07/17/2021,19:15,,,40.874138,-73.877525,"(40.874138, -73.877525)",PERRY AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4437755,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/17/2021,0:00,,,40.608154,-74.13211,"(40.608154, -74.13211)",BRADLEY AVENUE,STATEN ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438437,Sedan,,,, +07/17/2021,14:30,BRONX,10452,40.83898,-73.9186,"(40.83898, -73.9186)",JEROME AVENUE,MARCY PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437904,Sedan,Sedan,,, +07/17/2021,13:13,QUEENS,11427,40.72322,-73.75385,"(40.72322, -73.75385)",,,88-14 HOLLIS COURT BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437719,Sedan,Pick-up Truck,,, +07/16/2021,10:15,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438599,Sedan,,,, +01/15/2021,8:40,BROOKLYN,11208,40.680725,-73.87486,"(40.680725, -73.87486)",ATLANTIC AVENUE,CHESTNUT STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438358,Pick-up Truck,,,, +07/14/2021,17:20,BROOKLYN,11207,40.677494,-73.90202,"(40.677494, -73.90202)",,,2501 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438375,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,10:40,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438319,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/16/2021,18:10,BROOKLYN,11207,40.66196,-73.885635,"(40.66196, -73.885635)",,,790 HENDRIX STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4438404,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,5:01,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438620,Sedan,,,, +07/17/2021,18:35,,,40.587643,-74.16053,"(40.587643, -74.16053)",NOME AVENUE,VASSAR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438535,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,1:00,,,40.747242,-73.88766,"(40.747242, -73.88766)",78 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437781,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,13:22,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438327,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,13:50,,,40.58839,-74.16793,"(40.58839, -74.16793)",,,2465 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438433,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,22:32,QUEENS,11368,40.747498,-73.853615,"(40.747498, -73.853615)",111 STREET,47 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438075,Station Wagon/Sport Utility Vehicle,Bike,,, +07/11/2021,20:07,,,40.694263,-73.95235,"(40.694263, -73.95235)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438455,Sedan,Sedan,,, +07/17/2021,15:54,BROOKLYN,11238,40.675907,-73.969505,"(40.675907, -73.969505)",STERLING PLACE,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4438472,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,9:05,BROOKLYN,11214,40.59781,-73.99938,"(40.59781, -73.99938)",CROPSEY AVENUE,BAY 29 STREET,,0,0,0,0,0,0,0,0,,,,,,4437659,,,,, +07/17/2021,14:33,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",QUEENS BOULEVARD,39 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4438144,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/15/2021,12:38,BROOKLYN,11207,40.668133,-73.89781,"(40.668133, -73.89781)",,,331 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438393,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,20:10,,,40.851658,-73.921394,"(40.851658, -73.921394)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438061,Sedan,,,, +07/17/2021,9:26,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4437645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,15:38,,,40.688324,-73.96482,"(40.688324, -73.96482)",LAFAYETTE AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437708,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,16:21,QUEENS,11423,,,,,,81-56 192 STREET,0,0,0,0,0,0,0,0,,,,,,4438249,,,,, +07/17/2021,0:20,MANHATTAN,10030,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438231,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,3:30,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,7,0,0,0,0,0,7,0,Reaction to Uninvolved Vehicle,Obstruction/Debris,Obstruction/Debris,,,4437628,Sedan,Sedan,Taxi,, +07/16/2021,14:35,,,40.67613,-73.884865,"(40.67613, -73.884865)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438405,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,14:48,,,40.690563,-73.94536,"(40.690563, -73.94536)",LAFAYETTE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4438461,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/17/2021,2:06,BRONX,10451,40.81928,-73.91789,"(40.81928, -73.91789)",,,321 EAST 153 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438322,Sedan,,,, +07/12/2021,16:35,,,40.689445,-73.95513,"(40.689445, -73.95513)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438493,Sedan,Box Truck,,, +07/17/2021,6:35,,,40.696205,-73.97249,"(40.696205, -73.97249)",ADELPHI STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4437861,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,7:46,,,40.677155,-73.86887,"(40.677155, -73.86887)",CONDUIT BOULEVARD,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438367,Sedan,Sedan,,, +07/16/2021,13:16,BROOKLYN,11207,40.679337,-73.89483,"(40.679337, -73.89483)",JAMAICA AVENUE,ARLINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438370,Taxi,Pick-up Truck,Sedan,, +07/17/2021,3:00,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437581,Sedan,Sedan,,, +07/15/2021,21:48,,,40.607178,-74.13193,"(40.607178, -74.13193)",,,181 BRADLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438442,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,19:40,BRONX,10462,40.835114,-73.861084,"(40.835114, -73.861084)",,,1371 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437944,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,23:41,,,40.864403,-73.923775,"(40.864403, -73.923775)",SHERMAN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437994,Taxi,,,, +06/30/2021,13:00,MANHATTAN,10036,40.75687,-73.98601,"(40.75687, -73.98601)",,,1500 BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4438519,Taxi,Bike,,, +07/15/2021,12:45,BROOKLYN,11207,40.66292,-73.899345,"(40.66292, -73.899345)",,,493 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438400,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,19:40,MANHATTAN,10026,40.798817,-73.953804,"(40.798817, -73.953804)",,,131 CENTRAL PARK NORTH,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4438556,Sedan,E-Bike,,, +01/20/2022,0:00,,,40.8325,-73.92811,"(40.8325, -73.92811)",WEST 164 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4496207,Sedan,Sedan,Sedan,, +07/17/2021,6:40,MANHATTAN,10022,40.758633,-73.96579,"(40.758633, -73.96579)",EAST 56 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437762,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,10:00,BRONX,10469,40.862988,-73.84342,"(40.862988, -73.84342)",,,2504 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438273,Sedan,Sedan,,, +07/17/2021,1:42,MANHATTAN,10036,40.757183,-73.98966,"(40.757183, -73.98966)",,,241 WEST 42 STREET,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4437811,Sedan,Multi-Wheeled Vehicle,,, +07/16/2021,18:01,,,40.60805,-74.15736,"(40.60805, -74.15736)",VICTORY BOULEVARD,MORANI STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,,,4438428,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/10/2022,21:48,,,40.631973,-74.15642,"(40.631973, -74.15642)",,,63 MAPLE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517933,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/17/2021,0:22,BROOKLYN,11220,40.644337,-74.00754,"(40.644337, -74.00754)",49 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4437963,Sedan,Sedan,Sedan,, +07/17/2021,10:00,BROOKLYN,11203,40.650875,-73.932236,"(40.650875, -73.932236)",,,447 EAST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437691,Sedan,,,, +07/17/2021,3:50,QUEENS,11417,40.681263,-73.83954,"(40.681263, -73.83954)",LIBERTY AVENUE,101 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4437622,Sedan,,,, +07/17/2021,1:00,MANHATTAN,10032,40.84494,-73.939476,"(40.84494, -73.939476)",,,639 WEST 173 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4438119,Convertible,Sedan,,, +07/16/2021,19:10,BRONX,10451,40.819992,-73.918015,"(40.819992, -73.918015)",EAST 154 STREET,COURTLANDT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438310,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,22:40,,,40.726254,-73.90391,"(40.726254, -73.90391)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Pavement Slippery,Pavement Slippery,,,4437734,Sedan,Sedan,Taxi,, +07/17/2021,20:21,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437724,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/17/2021,5:10,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4438199,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,11:20,BROOKLYN,11207,40.666294,-73.89445,"(40.666294, -73.89445)",PENNSYLVANIA AVENUE,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4438409,Sedan,Sedan,,, +07/17/2021,16:15,BRONX,10456,40.830784,-73.904976,"(40.830784, -73.904976)",,,557 EAST 168 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437798,Sedan,Sedan,,, +07/17/2021,14:29,MANHATTAN,10001,40.756573,-74.00384,"(40.756573, -74.00384)",,,655 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437872,Sedan,Sedan,,, +07/15/2021,18:30,,,40.54643,-74.20989,"(40.54643, -74.20989)",ROSSVILLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438385,Sedan,Sedan,,, +07/17/2021,17:20,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438348,4 dr sedan,Sedan,,, +06/13/2021,20:35,MANHATTAN,10036,40.75687,-73.98601,"(40.75687, -73.98601)",,,1500 BROADWAY,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4438480,Bike,,,, +07/14/2021,17:20,,,40.683582,-73.953964,"(40.683582, -73.953964)",BEDFORD AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4438509,Sedan,E-Scooter,,, +07/17/2021,17:57,MANHATTAN,10009,40.723076,-73.97649,"(40.723076, -73.97649)",EAST 7 STREET,AVENUE D,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4437917,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,22:18,,,40.80641,-73.94227,"(40.80641, -73.94227)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438552,Taxi,Sedan,,, +07/17/2021,5:30,,,40.840424,-73.92239,"(40.840424, -73.92239)",WEST 170 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437782,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,12:43,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438465,Sedan,Tractor Truck Diesel,,, +07/16/2021,17:35,,,40.818504,-73.91448,"(40.818504, -73.91448)",3 AVENUE,EAST 153 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4438329,Sedan,Bike,,, +07/17/2021,20:40,MANHATTAN,10035,,,,First Avenue,117 Street,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438340,Bike,,,, +07/17/2021,11:40,BROOKLYN,11203,40.638523,-73.92607,"(40.638523, -73.92607)",KINGS HIGHWAY,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438570,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,12:48,BROOKLYN,11207,40.650272,-73.89097,"(40.650272, -73.89097)",,,11110 FLATLANDS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438353,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,23:20,MANHATTAN,10003,40.736786,-73.98466,"(40.736786, -73.98466)",,,238 3 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4437830,Tractor Truck Diesel,,,, +10/28/2021,1:06,BRONX,10458,40.869736,-73.89028,"(40.869736, -73.89028)",,,214 EAST 198 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4471697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/28/2021,17:00,STATEN ISLAND,10304,40.6319,-74.08374,"(40.6319, -74.08374)",,,187 WARD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4472640,Sedan,,,, +10/27/2021,19:52,BRONX,10459,40.82248,-73.89178,"(40.82248, -73.89178)",,,961 SOUTHERN BOULEVARD,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471610,E-Bike,Sedan,,, +10/28/2021,11:00,,,40.6953,-73.812096,"(40.6953, -73.812096)",97 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472350,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,18:21,MANHATTAN,10036,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471789,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,15:00,STATEN ISLAND,10305,,,,St. Johns Avenue,Tompkins Avenue,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4471866,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,19:45,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",2 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4472548,Bus,Convertible,,, +10/29/2021,4:09,QUEENS,11416,40.685287,-73.85718,"(40.685287, -73.85718)",,,94-18 84 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4472024,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,0:54,BROOKLYN,11201,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,BOERUM PLACE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4471565,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,12:00,,,40.830837,-73.9166,"(40.830837, -73.9166)",GRANT AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4472440,Sedan,Sedan,,, +10/27/2021,12:21,BRONX,10456,40.83623,-73.90741,"(40.83623, -73.90741)",WEBSTER AVENUE,EAST 170 STREET,,1,0,1,0,0,0,0,0,,,,,,4471982,,,,, +10/28/2021,7:40,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4471806,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,5:20,QUEENS,11373,40.74076,-73.86749,"(40.74076, -73.86749)",,,51-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,20:51,,,40.756565,-73.99028,"(40.756565, -73.99028)",WEST 41 STREET,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4472056,Box Truck,,,, +10/27/2021,21:50,,,40.791187,-73.85229,"(40.791187, -73.85229)",115 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471558,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,8:15,STATEN ISLAND,10308,40.560085,-74.16505,"(40.560085, -74.16505)",,,680 ARTHUR KILL ROAD,1,0,0,0,0,0,1,0,Illnes,,,,,4472172,Bus,,,, +10/27/2021,4:30,BRONX,10462,40.84747,-73.85472,"(40.84747, -73.85472)",,,1715 PAULDING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4471348,Sedan,,,, +10/28/2021,7:24,,,40.66644,-73.95361,"(40.66644, -73.95361)",CROWN STREET,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4471828,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,11:25,,,40.841064,-73.84126,"(40.841064, -73.84126)",WESTCHESTER AVENUE,BLONDELL AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472443,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,9:32,,,40.606327,-73.99647,"(40.606327, -73.99647)",20 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,12:55,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",WEST 29 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4472114,Sedan,Glass Rack,,, +10/29/2021,16:27,BROOKLYN,11207,40.659622,-73.8882,"(40.659622, -73.8882)",LINDEN BOULEVARD,WYONA STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472754,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,9:35,QUEENS,11413,40.68269,-73.753174,"(40.68269, -73.753174)",LUCAS STREET,RIDGEDALE STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4471494,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,22:45,BROOKLYN,11216,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472286,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,2:00,,,40.696796,-73.89678,"(40.696796, -73.89678)",60 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4472039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,10:35,BRONX,10462,40.85366,-73.86774,"(40.85366, -73.86774)",WHITE PLAINS ROAD,MARAN PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472242,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,12:30,BROOKLYN,11237,40.71165,-73.92398,"(40.71165, -73.92398)",,,585 MESEROLE STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4471900,Sedan,Box Truck,,, +10/28/2021,16:43,BRONX,10459,40.821,-73.891106,"(40.821, -73.891106)",,,1045 EAST 163 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4471862,Bus,Sedan,,, +10/27/2021,8:35,BROOKLYN,11207,,,,liberty avenue,van sinderen avenue,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4471762,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,19:45,QUEENS,11379,40.714622,-73.90117,"(40.714622, -73.90117)",ELIOT AVENUE,FRESH POND ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472224,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,17:00,MANHATTAN,10016,40.7417,-73.9802,"(40.7417, -73.9802)",,,221 EAST 28 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4472714,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,23:09,BROOKLYN,11211,40.707592,-73.95555,"(40.707592, -73.95555)",KEAP STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472798,Sedan,,,, +10/25/2021,8:30,STATEN ISLAND,10312,,,,,,21 ANNADALE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472082,Sedan,,,, +10/29/2021,13:00,BROOKLYN,11233,40.68415,-73.93604,"(40.68415, -73.93604)",,,487 HANCOCK STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472597,PK,Sedan,,, +10/28/2021,23:45,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4471992,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,11:50,MANHATTAN,10035,40.798424,-73.93519,"(40.798424, -73.93519)",,,322 EAST 119 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472099,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,6:45,MANHATTAN,10019,40.76411,-73.9885,"(40.76411, -73.9885)",9 AVENUE,WEST 51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472261,Sedan,,,, +10/27/2021,10:53,QUEENS,11106,40.76069,-73.93921,"(40.76069, -73.93921)",,,35-53 12 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472483,PK,Flat Bed,,, +10/28/2021,17:20,QUEENS,11426,40.733913,-73.72392,"(40.733913, -73.72392)",,,242-16 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471945,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/29/2021,11:30,BROOKLYN,11203,40.646793,-73.92213,"(40.646793, -73.92213)",EAST 58 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472700,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,3:30,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4471968,Sedan,Sedan,,, +10/27/2021,6:17,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,SOUTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4472157,Sedan,,,, +10/29/2021,20:45,,,40.767418,-73.7906,"(40.767418, -73.7906)",33 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472140,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,15:00,,,,,,Park Avenue south,west 36 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472606,Van,PK,,, +10/28/2021,1:58,BROOKLYN,11233,40.676903,-73.92133,"(40.676903, -73.92133)",,,2010 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471598,3-Door,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,16:00,BROOKLYN,11222,40.73505,-73.956314,"(40.73505, -73.956314)",,,119 EAGLE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472235,Box Truck,Sedan,,, +10/29/2021,1:00,,,,,,133 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471922,Sedan,Sedan,,, +10/28/2021,19:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472215,Box Truck,Sedan,,, +10/28/2021,2:40,,,40.808807,-73.9107,"(40.808807, -73.9107)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471644,Sedan,,,, +10/29/2021,22:00,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,,,,,,4472575,Sedan,,,, +10/28/2021,7:30,,,40.700592,-73.85457,"(40.700592, -73.85457)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4471773,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/29/2021,20:19,BROOKLYN,11210,40.635403,-73.95718,"(40.635403, -73.95718)",FARRAGUT ROAD,EAST 21 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4472423,4 dr sedan,,,, +10/28/2021,14:40,QUEENS,11413,40.67243,-73.75637,"(40.67243, -73.75637)",SPRINGFIELD BOULEVARD,140 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4472247,Station Wagon/Sport Utility Vehicle,,,, +03/31/2022,14:55,QUEENS,11436,40.671406,-73.79942,"(40.671406, -73.79942)",140 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518408,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/18/2021,2:00,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4437744,Sedan,,,, +10/29/2021,6:31,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472088,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,12:58,BROOKLYN,11203,40.65277,-73.93051,"(40.65277, -73.93051)",,,836 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472690,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,9:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472385,Pick-up Truck,,,, +10/25/2021,19:00,QUEENS,11436,40.671406,-73.79942,"(40.671406, -73.79942)",140 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472125,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,17:03,QUEENS,11358,40.76402,-73.788475,"(40.76402, -73.788475)",CROCHERON AVENUE,194 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471545,Sedan,,,, +10/28/2021,9:10,MANHATTAN,10025,40.80117,-73.961464,"(40.80117, -73.961464)",WEST 109 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471823,Sedan,,,, +10/27/2021,15:17,MANHATTAN,10027,40.81286,-73.96341,"(40.81286, -73.96341)",WEST 122 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4471835,Taxi,Motorcycle,,, +10/28/2021,17:41,,,40.701813,-73.80888,"(40.701813, -73.80888)",146 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472808,Sedan,Bus,,, +10/27/2021,9:55,MANHATTAN,10019,40.766197,-73.97955,"(40.766197, -73.97955)",WEST 58 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472255,Station Wagon/Sport Utility Vehicle,Moped,,, +10/18/2021,15:50,QUEENS,11434,,,,155 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4472876,Sedan,Sedan,Sedan,, +10/29/2021,23:39,MANHATTAN,10009,40.72775,-73.97619,"(40.72775, -73.97619)",AVENUE C,EAST 13 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4472520,Sedan,Bike,,, +10/29/2021,15:00,BRONX,10454,,,,MAJOR DEEGAN EXPRESSWAY,Third ave,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4472325,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,15:14,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",CLINTON AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471665,Dump,Sedan,,, +10/27/2021,0:00,QUEENS,11369,40.76301,-73.87533,"(40.76301, -73.87533)",ASTORIA BOULEVARD,94 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471742,Sedan,,,, +10/27/2021,16:21,BROOKLYN,11229,40.61082,-73.9548,"(40.61082, -73.9548)",EAST 19 STREET,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471604,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,18:00,BROOKLYN,11234,40.617558,-73.93131,"(40.617558, -73.93131)",,,2143 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471930,Sedan,Box Truck,,, +10/25/2021,11:00,STATEN ISLAND,10309,,,,VETERANS ROAD WEST,ROSSVILLE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4472067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle +10/29/2021,6:00,,,40.641254,-73.9964,"(40.641254, -73.9964)",10 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472867,Sedan,,,, +10/29/2021,0:00,QUEENS,11412,40.70537,-73.775826,"(40.70537, -73.775826)",183 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472354,Sedan,Sedan,,, +10/27/2021,18:30,,,40.68211,-73.79464,"(40.68211, -73.79464)",147 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472126,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,16:00,QUEENS,11373,40.743397,-73.88388,"(40.743397, -73.88388)",PETTIT AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471631,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,21:00,BROOKLYN,11238,,,,FULTON STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,12:45,MANHATTAN,10003,40.73012,-73.98947,"(40.73012, -73.98947)",3 AVENUE,EAST 9 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4472519,Sedan,Sedan,,, +10/27/2021,10:15,STATEN ISLAND,10304,40.61184,-74.08823,"(40.61184, -74.08823)",RICHMOND ROAD,STEUBEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472634,Sedan,Sedan,,, +10/27/2021,17:00,MANHATTAN,10029,40.787666,-73.94919,"(40.787666, -73.94919)",,,155 EAST 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472269,Sedan,,,, +10/29/2021,23:14,,,40.684887,-74.00111,"(40.684887, -74.00111)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Prescription Medication,Unspecified,,,4472374,Sedan,Sedan,Sedan,, +10/28/2021,17:27,BROOKLYN,11209,40.62806,-74.02029,"(40.62806, -74.02029)",BAY RIDGE PARKWAY,6 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4471870,Sedan,Sedan,,, +10/28/2021,0:00,,,40.652946,-74.002174,"(40.652946, -74.002174)",5 AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4472735,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/29/2021,14:45,MANHATTAN,10007,40.712532,-74.007675,"(40.712532, -74.007675)",PARK PLACE,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472540,Motorcycle,E-Scooter,,, +10/29/2021,7:40,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472060,Sedan,Sedan,,, +10/28/2021,15:12,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4472776,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,5:11,BRONX,10456,40.830982,-73.90082,"(40.830982, -73.90082)",,,638 EAST 169 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471794,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,0:00,BROOKLYN,11249,40.71721,-73.96117,"(40.71721, -73.96117)",,,99 NORTH 4 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4472234,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/28/2021,15:00,,,40.679832,-73.95322,"(40.679832, -73.95322)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471999,Sedan,,,, +10/27/2021,22:55,STATEN ISLAND,10306,40.55851,-74.12336,"(40.55851, -74.12336)",MALONE AVENUE,PENDALE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4471903,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,0:00,MANHATTAN,10013,40.719055,-74.01245,"(40.719055, -74.01245)",WEST STREET,HARRISON STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471638,E-Scooter,Bike,,, +10/29/2021,9:55,BROOKLYN,11231,40.677944,-74.006805,"(40.677944, -74.006805)",VERONA STREET,DWIGHT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4472168,Sedan,Taxi,Sedan,, +10/28/2021,1:30,QUEENS,11367,,,,,,78-88 park drive east,0,0,0,0,0,0,0,0,Unspecified,,,,,4471895,Sedan,,,, +10/28/2021,5:01,BROOKLYN,11236,40.6411,-73.919464,"(40.6411, -73.919464)",,,401 EAST 80 STREET,0,0,0,0,0,0,0,0,Other Lighting Defects,,,,,4471799,Sedan,,,, +10/27/2021,1:40,,,40.69891,-73.93078,"(40.69891, -73.93078)",EVERGREEN AVENUE,TROUTMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4471264,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,20:40,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471855,Sedan,Sedan,,, +10/26/2021,22:20,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",LINDEN BOULEVARD,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unspecified,,,,,4472693,Taxi,,,, +10/28/2021,18:03,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4472110,Sedan,,,, +10/23/2021,4:50,,,40.697216,-73.872955,"(40.697216, -73.872955)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472043,Sedan,Sedan,,, +10/28/2021,14:10,QUEENS,11379,40.714622,-73.90117,"(40.714622, -73.90117)",FRESH POND ROAD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472036,Sedan,Sedan,,, +10/28/2021,14:00,,,40.634644,-73.880905,"(40.634644, -73.880905)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4471824,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,19:00,QUEENS,11435,40.715263,-73.81982,"(40.715263, -73.81982)",COOLIDGE AVENUE,139 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4471564,Sedan,Sedan,,, +10/29/2021,12:25,,,40.766434,-73.83767,"(40.766434, -73.83767)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,21:50,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4472892,Sedan,,,, +10/28/2021,1:00,,,,,,QUEENSBORO BRIDGE,27 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471680,Sedan,Bike,,, +10/27/2021,5:40,,,40.694836,-73.98393,"(40.694836, -73.98393)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471487,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,18:45,QUEENS,11354,40.774513,-73.82468,"(40.774513, -73.82468)",PARSONS BOULEVARD,26 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472302,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,8:45,BRONX,10468,40.870876,-73.8936,"(40.870876, -73.8936)",,,2816 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472078,PK,Box Truck,,, +10/17/2021,8:30,BRONX,10475,,,,,,650 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472419,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,11:20,MANHATTAN,10032,40.841076,-73.93977,"(40.841076, -73.93977)",WEST 168 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472095,Sedan,,,, +10/29/2021,5:36,,,,,,NASSAU EXPRESSWAY,,,1,1,0,1,0,0,1,0,Unspecified,,,,,4472335,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,15:56,,,40.665546,-73.9537,"(40.665546, -73.9537)",MONTGOMERY STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472031,Sedan,E-Scooter,,, +10/29/2021,17:15,QUEENS,11101,40.75204,-73.92875,"(40.75204, -73.92875)",NORTHERN BOULEVARD,38 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472210,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,6:04,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",BRONX RIVER PARKWAY,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Passing Too Closely,,,,,4471675,Motorcycle,,,, +10/28/2021,12:00,BROOKLYN,11201,40.695026,-73.990814,"(40.695026, -73.990814)",CADMAN PLAZA WEST,JOHNSON STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472136,Sedan,Bike,,, +10/26/2021,23:19,,,40.67765,-73.949776,"(40.67765, -73.949776)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472567,Sedan,,,, +10/27/2021,18:30,QUEENS,11423,40.71328,-73.76606,"(40.71328, -73.76606)",195 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472349,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,20:10,QUEENS,11413,40.68055,-73.7496,"(40.68055, -73.7496)",,,219-10 133 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4472315,Sedan,Sedan,Sedan,Sedan, +10/28/2021,15:18,,,40.7736,-73.98158,"(40.7736, -73.98158)",WEST 66 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472153,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,19:15,BRONX,10467,40.882355,-73.86603,"(40.882355, -73.86603)",,,3700 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472925,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,20:40,,,40.756485,-73.94005,"(40.756485, -73.94005)",21 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4471978,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/27/2021,20:00,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471839,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,17:53,,,40.660027,-73.96061,"(40.660027, -73.96061)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472285,Pick-up Truck,,,, +10/28/2021,8:17,BROOKLYN,11212,40.66883,-73.90469,"(40.66883, -73.90469)",,,364 SACKMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471763,Sedan,Sedan,,, +10/27/2021,23:05,,,,,,ALEXANDER HAMILTON BRIDGE,,,4,0,0,0,0,0,4,0,Unspecified,,,,,4472092,Sedan,,,, +10/27/2021,21:16,BRONX,10459,40.821598,-73.89787,"(40.821598, -73.89787)",WESTCHESTER AVENUE,ROGERS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471609,Sedan,,,, +10/29/2021,0:23,BROOKLYN,11233,40.67681,-73.91924,"(40.67681, -73.91924)",HOWARD AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472599,Sedan,Sedan,,, +10/29/2021,14:50,BROOKLYN,11214,40.605225,-74.00119,"(40.605225, -74.00119)",,,8629 19 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472472,Bus,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,1:13,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472243,Sedan,Sedan,,, +10/28/2021,0:00,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,12:00,BROOKLYN,11230,40.618427,-73.956245,"(40.618427, -73.956245)",AVENUE M,EAST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471624,Station Wagon/Sport Utility Vehicle,Beverage Truck,,, +10/27/2021,17:48,BROOKLYN,11219,40.633347,-73.99387,"(40.633347, -73.99387)",13 AVENUE,52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471955,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/29/2021,9:52,BROOKLYN,11218,40.638523,-73.97319,"(40.638523, -73.97319)",OCEAN PARKWAY,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472478,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/22/2021,22:12,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472158,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,21:01,,,40.86723,-73.88692,"(40.86723, -73.88692)",EAST 198 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472063,Sedan,,,, +10/26/2021,14:00,BROOKLYN,11217,40.685024,-73.98612,"(40.685024, -73.98612)",BERGEN STREET,BOND STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472618,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,21:23,STATEN ISLAND,10301,40.637783,-74.07695,"(40.637783, -74.07695)",VICTORY BOULEVARD,SAINT MARKS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472645,Sedan,,,, +10/27/2021,22:52,QUEENS,11368,40.748764,-73.86311,"(40.748764, -73.86311)",,,40-40 NATIONAL STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4471735,Sedan,,,, +10/27/2021,14:49,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471652,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,18:30,MANHATTAN,10007,40.710533,-74.009384,"(40.710533, -74.009384)",,,195 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472531,Taxi,Bike,,, +10/27/2021,8:00,MANHATTAN,10011,40.739517,-73.995255,"(40.739517, -73.995255)",,,600 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471519,Bus,Bus,,, +10/25/2021,17:19,,,40.77912,-73.984985,"(40.77912, -73.984985)",WEST END AVENUE,,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4472130,Taxi,Bike,,, +10/28/2021,23:58,BROOKLYN,11230,40.614735,-73.959435,"(40.614735, -73.959435)",,,1426 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472406,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,22:00,QUEENS,11367,40.743122,-73.835075,"(40.743122, -73.835075)",,,130-04 HORACE HARDING EXPRESSWAY,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4472162,Sedan,Sedan,,, +10/29/2021,17:30,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",FLATLANDS AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472196,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,18:35,BROOKLYN,11203,40.648182,-73.93001,"(40.648182, -73.93001)",UTICA AVENUE,TILDEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472697,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,20:35,BRONX,10466,40.88698,-73.84745,"(40.88698, -73.84745)",EAST 229 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472366,Sedan,Sedan,,, +10/27/2021,6:20,,,40.711365,-73.97897,"(40.711365, -73.97897)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4471541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/29/2021,16:00,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4472273,Bike,,,, +10/28/2021,23:00,QUEENS,11374,40.72969,-73.86804,"(40.72969, -73.86804)",WETHEROLE STREET,62 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4471890,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/27/2021,6:43,,,40.639706,-74.13909,"(40.639706, -74.13909)",RICHMOND TERRACE,NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471413,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,16:35,,,40.67021,-73.898346,"(40.67021, -73.898346)",BELMONT AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4472743,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/26/2021,21:00,BROOKLYN,11212,40.667095,-73.92276,"(40.667095, -73.92276)",RALPH AVENUE,EAST NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472394,,,,, +10/28/2021,13:30,,,40.771286,-73.73251,"(40.771286, -73.73251)",WEST END DRIVE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471874,Sedan,Box Truck,,, +10/27/2021,20:25,,,40.656944,-73.88082,"(40.656944, -73.88082)",COZINE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4471658,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/24/2021,18:45,QUEENS,11372,40.748863,-73.892715,"(40.748863, -73.892715)",73 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,14:30,BROOKLYN,11211,40.711037,-73.96059,"(40.711037, -73.96059)",SOUTH 5 PLACE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4472788,Flat Bed,Sedan,,, +10/28/2021,21:55,MANHATTAN,10035,40.804066,-73.93267,"(40.804066, -73.93267)",2 AVENUE,EAST 127 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472019,Sedan,Sedan,,, +10/27/2021,19:30,QUEENS,11426,40.74266,-73.72108,"(40.74266, -73.72108)",UNION TURNPIKE,249 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471584,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,15:15,BROOKLYN,11234,40.628147,-73.92013,"(40.628147, -73.92013)",,,1079 EAST 58 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4471927,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:30,BRONX,10465,,,,,,1470 OUTLOOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472446,Sedan,,,, +10/19/2021,14:00,,,40.76154,-73.9556,"(40.76154, -73.9556)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472014,Taxi,Sedan,,, +10/28/2021,10:49,BROOKLYN,11210,40.621994,-73.94598,"(40.621994, -73.94598)",NOSTRAND AVENUE,AVENUE L,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4471850,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/28/2021,10:25,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,14:10,MANHATTAN,10003,40.734592,-73.98332,"(40.734592, -73.98332)",,,305 2 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4471521,Van,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,17:54,BROOKLYN,11234,40.610237,-73.921844,"(40.610237, -73.921844)",AVENUE U,EAST 52 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471547,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,17:41,,,40.806293,-73.93603,"(40.806293, -73.93603)",EAST 128 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471743,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,9:24,BRONX,10456,40.821705,-73.90973,"(40.821705, -73.90973)",,,840 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472331,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,16:00,BRONX,10457,40.853138,-73.9017,"(40.853138, -73.9017)",ANTHONY AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471705,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,8:00,BRONX,10467,,,,,,3050 WHITE PLAINS ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472556,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,8:30,,,40.732838,-73.783936,"(40.732838, -73.783936)",73 AVENUE,,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4471713,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,3:50,QUEENS,11418,40.702347,-73.83392,"(40.702347, -73.83392)",117 STREET,85 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4471931,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/27/2021,23:48,QUEENS,11385,40.70604,-73.90765,"(40.70604, -73.90765)",,,608 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472046,Sedan,Sedan,Sedan,, +10/27/2021,8:30,,,40.60762,-74.147026,"(40.60762, -74.147026)",,,734 SOUTH GANNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471410,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,21:06,,,40.69821,-73.92406,"(40.69821, -73.92406)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4472201,Sedan,,,, +10/28/2021,18:25,QUEENS,11102,40.769524,-73.935234,"(40.769524, -73.935234)",VERNON BOULEVARD,31 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4471973,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +10/29/2021,9:00,,,40.8883,-73.85682,"(40.8883, -73.85682)",BARNES AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4472412,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,14:14,MANHATTAN,10035,40.799484,-73.92929,"(40.799484, -73.92929)",,,30 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472107,Sedan,Sedan,,, +10/29/2021,18:18,BRONX,10459,40.82051,-73.89189,"(40.82051, -73.89189)",,,932 SOUTHERN BOULEVARD,2,0,0,0,0,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4472656,Van,Sedan,,, +10/28/2021,15:45,BROOKLYN,11210,40.633995,-73.94778,"(40.633995, -73.94778)",GLENWOOD ROAD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472068,Bus,Taxi,,, +10/27/2021,16:20,BROOKLYN,11226,40.652992,-73.95788,"(40.652992, -73.95788)",,,2172 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471628,Sedan,Box Truck,,, +10/28/2021,22:14,,,40.660324,-73.75261,"(40.660324, -73.75261)",146 AVENUE,228 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471938,Tractor Truck Diesel,Sedan,,, +10/28/2021,17:45,,,40.867256,-73.88363,"(40.867256, -73.88363)",EAST BEDFORD PARK BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472075,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/29/2021,21:18,,,40.80751,-73.93413,"(40.80751, -73.93413)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472187,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,8:25,BROOKLYN,11213,,,,EASTERN PARKWAY,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472593,Sedan,Sedan,,, +10/28/2021,22:36,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471959,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,9:30,BRONX,10473,40.813362,-73.85773,"(40.813362, -73.85773)",SOUND VIEW AVENUE,PATTERSON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472277,Sedan,Sedan,,, +10/29/2021,11:49,BROOKLYN,11228,40.619915,-74.01143,"(40.619915, -74.01143)",12 AVENUE,78 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4472149,Sedan,Sedan,,, +10/29/2021,22:30,BROOKLYN,11224,40.575256,-74.0053,"(40.575256, -74.0053)",OCEANIC AVENUE,SEAGATE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472850,Sedan,,,, +10/27/2021,8:30,,,40.743114,-73.77114,"(40.743114, -73.77114)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471461,Box Truck,Tractor Truck Diesel,,, +10/28/2021,21:00,BRONX,10470,40.9013,-73.85207,"(40.9013, -73.85207)",,,4556 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472457,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,9:41,BRONX,10454,40.80614,-73.925804,"(40.80614, -73.925804)",,,85 BRUCKNER BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4471936,Sedan,Bike,,, +10/29/2021,20:55,MANHATTAN,10014,40.74184,-74.00746,"(40.74184, -74.00746)",,,451 WEST 14 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4472388,Taxi,Bus,,, +10/29/2021,11:27,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472298,Sedan,Sedan,,, +10/28/2021,16:30,BRONX,10461,40.85088,-73.851814,"(40.85088, -73.851814)",,,1820 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4472239,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,1:10,BRONX,10468,40.87384,-73.88916,"(40.87384, -73.88916)",,,3000 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471664,Sedan,,,, +10/29/2021,15:45,QUEENS,11355,,,,ROOSEVELT AVENUE,Shea road,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472225,Sedan,Sedan,,, +10/29/2021,13:45,,,40.62577,-74.134735,"(40.62577, -74.134735)",FOREST AVENUE,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4472716,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,6:50,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471378,Sedan,,,, +10/28/2021,20:00,,,40.58343,-73.97309,"(40.58343, -73.97309)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4472424,Sedan,Sedan,Taxi,, +10/27/2021,18:50,BRONX,10465,40.82457,-73.8391,"(40.82457, -73.8391)",LAFAYETTE AVENUE,BRUSH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471552,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,20:50,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471702,Sedan,,,, +10/28/2021,19:11,BROOKLYN,11207,40.6828,-73.90638,"(40.6828, -73.90638)",BUSHWICK AVENUE,FURMAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471991,,,,, +10/28/2021,22:40,QUEENS,11433,40.700703,-73.78941,"(40.700703, -73.78941)",,,105-15 MERRICK BOULEVARD,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4471912,Open Body,,,, +10/21/2021,17:06,BROOKLYN,11217,,,,FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472051,Sedan,Bus,,, +10/29/2021,19:30,QUEENS,11433,40.693935,-73.787605,"(40.693935, -73.787605)",,,164-18 110 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472176,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,20:23,QUEENS,11434,40.679718,-73.773476,"(40.679718, -73.773476)",127 AVENUE,BEDELL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472217,Sedan,,,, +10/29/2021,18:27,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472238,E-Scooter,,,, +10/27/2021,21:25,BROOKLYN,11239,40.64404,-73.877525,"(40.64404, -73.877525)",PENNSYLVANIA AVENUE,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4471648,Sedan,Sedan,,, +10/27/2021,8:55,BRONX,10459,40.821453,-73.8949,"(40.821453, -73.8949)",,,948 TIFFANY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472102,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,9:30,BROOKLYN,11218,40.652786,-73.97807,"(40.652786, -73.97807)",19 STREET,VANDERBILT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471507,Sedan,Sedan,Sedan,, +10/28/2021,6:40,BROOKLYN,11208,40.67625,-73.88405,"(40.67625, -73.88405)",LIBERTY AVENUE,ELTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472750,Sedan,,,, +10/29/2021,14:00,BROOKLYN,11203,40.652733,-73.92566,"(40.652733, -73.92566)",,,224 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472701,Dump,Sedan,,, +10/28/2021,4:00,QUEENS,11373,40.74624,-73.89131,"(40.74624, -73.89131)",,,40-19 74 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472681,Sedan,Sedan,,, +10/27/2021,9:24,QUEENS,11379,40.722202,-73.88578,"(40.722202, -73.88578)",,,60-37 74 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471834,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/28/2021,21:10,,,40.644142,-73.957924,"(40.644142, -73.957924)",CORTELYOU ROAD,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4472070,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,8:30,BRONX,10467,40.876633,-73.86412,"(40.876633, -73.86412)",,,760 EAST GUN HILL ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4471807,Bus,Sedan,,, +10/29/2021,15:00,MANHATTAN,10019,40.765457,-73.981995,"(40.765457, -73.981995)",WEST 56 STREET,BROADWAY,,1,0,1,0,0,0,0,0,,,,,,4472256,,,,, +10/28/2021,19:00,BROOKLYN,11215,40.664604,-73.97685,"(40.664604, -73.97685)",PROSPECT PARK WEST,9 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472055,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/27/2021,8:00,STATEN ISLAND,10304,40.59595,-74.09587,"(40.59595, -74.09587)",RICHMOND ROAD,NEWBERRY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471592,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,14:00,BROOKLYN,11219,40.632645,-74.00177,"(40.632645, -74.00177)",58 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4471964,Station Wagon/Sport Utility Vehicle,Bike,,, +10/29/2021,21:05,BROOKLYN,11217,40.68114,-73.97818,"(40.68114, -73.97818)",,,125 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4472161,Sedan,Sedan,Sedan,, +04/10/2022,0:24,,,40.693405,-73.90886,"(40.693405, -73.90886)",KNICKERBOCKER AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4517494,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,11:10,BROOKLYN,11205,40.693436,-73.97784,"(40.693436, -73.97784)",MYRTLE AVENUE,SAINT EDWARDS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4472144,Sedan,,,, +10/27/2021,14:00,STATEN ISLAND,10308,40.54387,-74.14445,"(40.54387, -74.14445)",CLEVELAND AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471573,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,13:20,QUEENS,11428,40.71819,-73.74153,"(40.71819, -73.74153)",,,94-02 215 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472087,Pick-up Truck,Sedan,,, +10/28/2021,8:30,MANHATTAN,10030,40.819187,-73.94501,"(40.819187, -73.94501)",,,305 WEST 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471748,Sedan,,,, +10/29/2021,7:50,BRONX,10451,40.81612,-73.926636,"(40.81612, -73.926636)",PARK AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472329,Sedan,Taxi,,, +08/21/2021,8:45,QUEENS,11433,40.699013,-73.79573,"(40.699013, -73.79573)",160 STREET,SOUTH ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472361,Van,Sedan,,, +10/29/2021,21:33,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472837,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,4:00,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518452,Sedan,Sedan,,, +10/29/2021,23:31,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472197,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,4:45,BRONX,10474,40.817917,-73.888725,"(40.817917, -73.888725)",,,830 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,12:45,,,40.695133,-73.875916,"(40.695133, -73.875916)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472488,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,16:15,BROOKLYN,11211,40.711792,-73.96057,"(40.711792, -73.96057)",,,180 SOUTH 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,5:43,,,40.838203,-73.9302,"(40.838203, -73.9302)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Other Vehicular,,,4471787,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/27/2021,20:20,MANHATTAN,10009,40.728268,-73.97516,"(40.728268, -73.97516)",,,640 EAST 14 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing Too Closely,,,,4471599,Sedan,ELECTRIC M,,, +10/29/2021,5:40,BRONX,10474,40.811226,-73.8924,"(40.811226, -73.8924)",RANDALL AVENUE,CRAVEN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4471969,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,23:07,QUEENS,11368,40.756027,-73.858574,"(40.756027, -73.858574)",,,34-76 110 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472672,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,11:15,BROOKLYN,11233,40.676735,-73.90432,"(40.676735, -73.90432)",,,14 HAVENS PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472524,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/29/2021,20:45,,,,,,37 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472206,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,5:02,MANHATTAN,10001,40.75635,-74.00541,"(40.75635, -74.00541)",WEST 33 STREET,12 AVENUE,,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4472383,Bike,Bike,,, +10/20/2021,16:06,,,,,,ROCHESTER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472601,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,11:10,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4472122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/28/2021,0:00,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,0:00,QUEENS,11412,40.7054,-73.77293,"(40.7054, -73.77293)",184 STREET,104 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4472814,Sedan,Sedan,,, +10/29/2021,17:10,BROOKLYN,11204,40.613335,-73.99277,"(40.613335, -73.99277)",73 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,5:00,QUEENS,11416,40.68794,-73.84956,"(40.68794, -73.84956)",,,93-02 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4471496,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,12:50,BROOKLYN,11211,40.71319,-73.93879,"(40.71319, -73.93879)",POWERS STREET,OLIVE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471901,Sedan,Pick-up Truck,,, +10/27/2021,2:31,BRONX,10463,40.88304,-73.91185,"(40.88304, -73.91185)",,,3140 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4471454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/28/2021,13:30,,,40.753635,-73.91893,"(40.753635, -73.91893)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471843,Sedan,Moped,,, +10/27/2021,15:30,BRONX,10458,40.85803,-73.883514,"(40.85803, -73.883514)",EAST FORDHAM ROAD,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471670,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:04,QUEENS,11354,40.759678,-73.83236,"(40.759678, -73.83236)",PRINCE STREET,39 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472294,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,15:00,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",WOODHAVEN BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471951,Sedan,Sedan,,, +10/26/2021,20:01,,,40.682114,-73.95367,"(40.682114, -73.95367)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471995,Taxi,,,, +10/27/2021,22:20,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471718,Sedan,,,, +10/27/2021,17:24,BROOKLYN,11236,40.64856,-73.90535,"(40.64856, -73.90535)",FOSTER AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471528,Sedan,,,, +10/27/2021,17:05,BRONX,10459,40.826057,-73.89722,"(40.826057, -73.89722)",HALL PLACE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4471611,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/28/2021,15:30,MANHATTAN,10029,40.793488,-73.94328,"(40.793488, -73.94328)",3 AVENUE,EAST 109 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4472264,Sedan,Box Truck,,, +10/28/2021,21:05,BROOKLYN,11220,40.635494,-74.00957,"(40.635494, -74.00957)",60 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472006,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/03/2022,9:30,,,40.60303,-73.82006,"(40.60303, -73.82006)",CROSS BAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518308,Sedan,,,, +10/27/2021,12:00,BRONX,10451,40.81701,-73.92127,"(40.81701, -73.92127)",,,291 EAST 149 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471642,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/28/2021,18:00,,,40.837875,-73.91971,"(40.837875, -73.91971)",EAST 169 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472433,Sedan,Sedan,,, +10/28/2021,4:20,QUEENS,11419,40.688683,-73.8292,"(40.688683, -73.8292)",,,101-12 115 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472023,Sedan,Sedan,,, +10/29/2021,3:30,,,40.689445,-73.95513,"(40.689445, -73.95513)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472550,Sedan,Bus,,, +10/11/2021,17:30,,,,,,PEARL STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472541,Taxi,E-Scooter,,, +10/27/2021,7:35,BRONX,10461,40.842564,-73.84548,"(40.842564, -73.84548)",,,2712 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4471426,Sedan,,,, +10/27/2021,0:04,MANHATTAN,10007,40.71216,-74.008446,"(40.71216, -74.008446)",,,5 BARCLAY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,19:29,QUEENS,11356,40.780148,-73.84603,"(40.780148, -73.84603)",COLLEGE POINT BOULEVARD,22 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471557,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,15:12,STATEN ISLAND,10305,40.601295,-74.082565,"(40.601295, -74.082565)",,,19 WHITNEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472173,Sedan,,,, +04/10/2022,7:10,MANHATTAN,10037,40.816025,-73.93947,"(40.816025, -73.93947)",WEST 138 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518215,Sedan,,,, +10/27/2021,10:00,QUEENS,11373,40.736046,-73.87278,"(40.736046, -73.87278)",JUSTICE AVENUE,90 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4471619,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,18:05,,,40.700737,-73.99014,"(40.700737, -73.99014)",BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471531,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,20:02,BROOKLYN,11204,40.614887,-73.979904,"(40.614887, -73.979904)",,,5820 BAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472873,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,7:20,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4471983,Box Truck,,,, +10/28/2021,5:35,,,40.69695,-73.962776,"(40.69695, -73.962776)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4471812,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/27/2021,1:46,QUEENS,11385,40.70165,-73.88446,"(40.70165, -73.88446)",,,68-05 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471830,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,9:00,BROOKLYN,11225,40.655216,-73.96194,"(40.655216, -73.96194)",,,231 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472038,Sedan,,,, +10/26/2021,20:00,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",11 AVENUE,WEST 34 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472115,Sedan,,,, +10/27/2021,22:00,BRONX,10452,40.832314,-73.93161,"(40.832314, -73.93161)",UNIVERSITY AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4471759,Pick-up Truck,Box Truck,,, +10/27/2021,9:53,,,40.808243,-73.92785,"(40.808243, -73.92785)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472324,Sedan,,,, +10/28/2021,8:00,BRONX,10467,40.874584,-73.876114,"(40.874584, -73.876114)",,,3215 HULL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472083,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,15:44,,,,,,,,3256 LACONIA AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4438762,,,,, +10/29/2021,10:46,MANHATTAN,10025,40.80417,-73.966705,"(40.80417, -73.966705)",WEST 110 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472506,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,15:00,QUEENS,11432,40.717804,-73.784904,"(40.717804, -73.784904)",HENLEY ROAD,MIDLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471863,Sedan,,,, +10/27/2021,13:02,QUEENS,11432,40.71071,-73.793045,"(40.71071, -73.793045)",HILLSIDE AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471988,Sedan,Van,,, +10/26/2021,0:01,BRONX,10452,40.84366,-73.92005,"(40.84366, -73.92005)",WEST 172 STREET,SHAKESPEARE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,21:00,STATEN ISLAND,10301,40.639523,-74.08487,"(40.639523, -74.08487)",BENZIGER AVENUE,BISMARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472641,Sedan,,,, +10/29/2021,16:00,QUEENS,11435,40.698154,-73.80336,"(40.698154, -73.80336)",149 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472353,Sedan,,,, +10/28/2021,17:49,QUEENS,11004,40.744026,-73.717636,"(40.744026, -73.717636)",LITTLE NECK PARKWAY,UNION TURNPIKE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4471946,Sedan,Sedan,,, +10/28/2021,15:00,BROOKLYN,11228,40.61606,-74.02576,"(40.61606, -74.02576)",92 STREET,DAHLGREN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472154,Sedan,Box Truck,,, +10/28/2021,19:29,,,,,,GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472141,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,16:40,BROOKLYN,11201,40.694275,-73.99243,"(40.694275, -73.99243)",MONTAGUE STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471568,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,16:03,,,40.63178,-73.945625,"(40.63178, -73.945625)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Backing Unsafely,,,,4472410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,12:20,MANHATTAN,10029,40.7879,-73.953674,"(40.7879, -73.953674)",EAST 97 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471775,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,23:00,,,40.67277,-73.9628,"(40.67277, -73.9628)",LINCOLN PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472576,Sedan,,,, +10/28/2021,16:35,,,40.765987,-73.759224,"(40.765987, -73.759224)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471880,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,16:10,BROOKLYN,11208,40.667953,-73.87007,"(40.667953, -73.87007)",LINDEN BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471659,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,12:00,,,40.588387,-74.09965,"(40.588387, -74.09965)",BUEL AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4471897,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/29/2021,10:15,,,40.699833,-73.93697,"(40.699833, -73.93697)",BEAVER STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472246,Sedan,Sedan,,, +10/29/2021,10:00,BROOKLYN,11230,40.62694,-73.96756,"(40.62694, -73.96756)",EAST 9 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472476,Sedan,,,, +10/28/2021,17:47,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Oversized Vehicle,,,,4472052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,16:20,STATEN ISLAND,10304,40.60472,-74.09109,"(40.60472, -74.09109)",,,987 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471913,Sedan,,,, +10/23/2021,0:03,,,,,,VERMONT PLACE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Alcohol Involvement,,,,4472037,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/28/2021,17:20,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",VICTORY BOULEVARD,WOODSTOCK AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4472642,Sedan,Sedan,,, +10/27/2021,16:15,MANHATTAN,10021,40.76983,-73.957634,"(40.76983, -73.957634)",,,1411 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472015,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,8:15,,,40.719902,-74.00261,"(40.719902, -74.00261)",CANAL STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471488,van,Box Truck,,, +10/27/2021,11:30,BROOKLYN,11219,40.634033,-73.992004,"(40.634033, -73.992004)",,,1324 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471683,Sedan,,,, +10/29/2021,18:37,,,40.612644,-74.13073,"(40.612644, -74.13073)",JEWETT AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472644,Sedan,Sedan,,, +10/28/2021,10:47,BROOKLYN,11234,40.607662,-73.90534,"(40.607662, -73.90534)",,,389 MAYFAIR DRIVE SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471848,van,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,11:32,,,40.67315,-73.896194,"(40.67315, -73.896194)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471654,AMBULANCE,Sedan,,, +07/17/2021,22:15,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4438912,Sedan,,,, +10/27/2021,6:50,BROOKLYN,11235,40.58967,-73.93884,"(40.58967, -73.93884)",AVENUE Z,HARING STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471458,,,,, +10/27/2021,13:04,MANHATTAN,10017,40.750774,-73.97655,"(40.750774, -73.97655)",EAST 41 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471522,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,0:00,MANHATTAN,10018,40.752377,-73.98804,"(40.752377, -73.98804)",,,134 WEST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472609,Sedan,Box Truck,,, +10/28/2021,12:30,QUEENS,11385,40.710728,-73.91863,"(40.710728, -73.91863)",TROUTMAN STREET,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4472010,Sedan,Box Truck,,, +10/28/2021,12:09,BROOKLYN,11210,40.634598,-73.93797,"(40.634598, -73.93797)",,,4018 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4472696,Sedan,,,, +10/28/2021,9:00,QUEENS,11103,40.757095,-73.915016,"(40.757095, -73.915016)",45 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4471724,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/28/2021,1:35,,,40.716652,-73.8259,"(40.716652, -73.8259)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4471714,Sedan,,,, +10/27/2021,7:49,,,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4471414,Tow Truck / Wrecker,Bus,,, +10/28/2021,10:27,,,40.736176,-74.00353,"(40.736176, -74.00353)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4472027,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,9:00,BRONX,10475,40.88136,-73.83846,"(40.88136, -73.83846)",,,3804 BOSTON ROAD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4472555,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,16:07,QUEENS,11004,40.748142,-73.71346,"(40.748142, -73.71346)",260 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472730,Sedan,Sedan,,, +10/28/2021,19:30,BROOKLYN,11207,40.69114,-73.909904,"(40.69114, -73.909904)",,,1196 HALSEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471865,Flat Rack,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,3:10,BROOKLYN,11216,,,,ATLANTIC AVENUE,NOSTRAND AVENUE,,0,1,0,1,0,0,0,0,Unsafe Speed,,,,,4472717,,,,, +10/27/2021,5:50,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471977,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:40,,,,,,shea road,boat basin place,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472228,Sedan,,,, +10/29/2021,13:25,MANHATTAN,10012,40.72271,-73.998116,"(40.72271, -73.998116)",,,80 SPRING STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472439,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,12:06,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4472169,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,23:20,BROOKLYN,11249,,,,KENT AVENUE,South 10 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4471902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/27/2021,15:09,MANHATTAN,10016,,,,EAST 30,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471765,Sedan,,,, +10/28/2021,18:35,QUEENS,11413,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4471926,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,16:58,BROOKLYN,11222,40.734344,-73.95612,"(40.734344, -73.95612)",,,145 FREEMAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471602,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,19:03,,,40.823772,-73.87245,"(40.823772, -73.87245)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4436442,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,3:50,,,40.70324,-73.92615,"(40.70324, -73.92615)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4436975,Garbage or Refuse,,,, +07/18/2021,19:52,MANHATTAN,10032,40.837803,-73.94215,"(40.837803, -73.94215)",WEST 163 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438120,Sedan,Sedan,,, +07/18/2021,4:20,QUEENS,11432,40.705566,-73.79465,"(40.705566, -73.79465)",,,165-19 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438302,Sedan,Sedan,,, +07/18/2021,1:01,,,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438193,Bike,,,, +07/12/2021,13:50,MANHATTAN,10001,40.75286,-73.99711,"(40.75286, -73.99711)",,,403 WEST 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438772,Sedan,,,, +07/17/2021,14:35,QUEENS,11368,40.750732,-73.87035,"(40.750732, -73.87035)",,,37-39 JUNCTION BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438745,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,19:45,QUEENS,11422,40.670696,-73.73953,"(40.670696, -73.73953)",,,137-49 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/18/2021,18:31,BROOKLYN,11212,40.662132,-73.911736,"(40.662132, -73.911736)",LIVONIA AVENUE,BOYLAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438444,Sedan,,,, +07/18/2021,16:20,BROOKLYN,11224,40.57656,-73.98259,"(40.57656, -73.98259)",,,2911 WEST 15 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438224,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,19:00,QUEENS,11103,40.76671,-73.9149,"(40.76671, -73.9149)",,,25-95 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438712,Sedan,,,, +07/18/2021,11:30,,,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438834,Sedan,Sedan,,, +07/13/2021,16:45,,,40.812622,-73.92934,"(40.812622, -73.92934)",EAST 138 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4438928,Sedan,Sedan,,, +07/18/2021,4:30,QUEENS,11422,40.66096,-73.731476,"(40.66096, -73.731476)",253 STREET,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437763,Sedan,Sedan,,, +07/18/2021,19:58,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438230,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,4:53,BRONX,10462,40.854263,-73.869385,"(40.854263, -73.869385)",BRONX PARK EAST,LYDIG AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438767,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/10/2021,1:45,QUEENS,11428,40.72566,-73.73255,"(40.72566, -73.73255)",224 STREET,DAVENPORT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438820,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,15:38,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438581,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/18/2021,0:25,MANHATTAN,10010,40.739166,-73.97997,"(40.739166, -73.97997)",2 AVENUE,EAST 25 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4437844,Bike,Sedan,,, +07/18/2021,20:05,,,,,,11 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4438088,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,16:56,BRONX,10454,40.80715,-73.90821,"(40.80715, -73.90821)",SOUTHERN BOULEVARD,EAST 142 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4438314,Sedan,Sedan,,, +07/18/2021,5:15,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4438361,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,15:49,BROOKLYN,11221,40.691624,-73.942665,"(40.691624, -73.942665)",KOSCIUSZKO STREET,THROOP AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inattention/Distraction,,,,4438458,Sedan,Motorcycle,,, +07/18/2021,8:02,,,40.743187,-73.97207,"(40.743187, -73.97207)",EAST 34 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4438515,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,13:40,,,40.71346,-73.91522,"(40.71346, -73.91522)",METROPOLITAN AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438045,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,3:05,MANHATTAN,10017,40.7488,-73.96986,"(40.7488, -73.96986)",EAST 42 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4437968,Sedan,,,, +07/17/2021,0:47,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4438860,Station Wagon/Sport Utility Vehicle,,,, +07/19/2020,4:10,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438901,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,12:30,MANHATTAN,10036,40.75958,-73.984375,"(40.75958, -73.984375)",,,714 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438958,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/18/2021,10:00,QUEENS,11373,40.737114,-73.8792,"(40.737114, -73.8792)",,,84-08 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438027,Sedan,Sedan,,, +07/18/2021,11:35,MANHATTAN,10001,40.749325,-73.99638,"(40.749325, -73.99638)",,,311 WEST 29 STREET,2,0,0,0,0,0,2,0,Cell Phone (hand-Held),Failure to Yield Right-of-Way,,,,4437972,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,13:35,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",10 AVENUE,WEST 41 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438782,Station Wagon/Sport Utility Vehicle,Chevy carg,,, +07/18/2021,13:34,,,40.74308,-73.86607,"(40.74308, -73.86607)",CORONA AVENUE,ALSTYNE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4438078,Sedan,,,, +07/18/2021,0:19,,,40.8252,-73.867714,"(40.8252, -73.867714)",ROSEDALE AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4437920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,14:52,MANHATTAN,10016,40.747543,-73.97079,"(40.747543, -73.97079)",EAST 40 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438513,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,8:20,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438213,Sedan,,,, +07/18/2021,6:31,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438255,Sedan,Sedan,,, +07/18/2021,23:16,,,40.850773,-73.93543,"(40.850773, -73.93543)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4438561,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/18/2021,10:01,BROOKLYN,11208,40.66632,-73.880226,"(40.66632, -73.880226)",,,749 LINWOOD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438381,Chassis Cab,,,, +07/18/2021,17:00,BRONX,10472,40.82602,-73.87098,"(40.82602, -73.87098)",,,1020 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4438543,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,12:00,QUEENS,11419,40.68246,-73.830025,"(40.68246, -73.830025)",107 AVENUE,111 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,Unspecified,,,4437956,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/18/2021,14:40,,,40.66095,-73.92906,"(40.66095, -73.92906)",RUTLAND ROAD,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438050,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,20:41,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,EAST 173 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438176,Station Wagon/Sport Utility Vehicle,Bike,,, +07/17/2021,15:30,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438854,Sedan,Sedan,,, +07/01/2021,13:10,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4438969,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +07/18/2021,0:00,BROOKLYN,11208,40.664856,-73.88023,"(40.664856, -73.88023)",HEGEMAN AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438360,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,15:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471822,Pick-up Truck,Sedan,,, +07/18/2021,17:45,QUEENS,11432,40.708076,-73.79257,"(40.708076, -73.79257)",90 AVENUE,168 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438865,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,16:58,BROOKLYN,11233,40.679348,-73.93067,"(40.679348, -73.93067)",,,1711 FULTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4438089,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,20:30,MANHATTAN,10019,40.76527,-73.97531,"(40.76527, -73.97531)",,,40 CENTRAL PARK SOUTH,1,0,0,0,1,0,0,0,Passenger Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4438950,Station Wagon/Sport Utility Vehicle,Bike,,, +07/18/2021,10:50,,,40.636505,-73.91572,"(40.636505, -73.91572)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4438138,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/13/2021,18:00,BROOKLYN,11212,40.673042,-73.909096,"(40.673042, -73.909096)",,,1567 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4438795,Sedan,Sedan,Sedan,, +07/18/2021,13:40,QUEENS,11422,40.635643,-73.74013,"(40.635643, -73.74013)",ROCKAWAY BOULEVARD,3 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437982,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/28/2021,23:15,,,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438711,Sedan,,,, +07/18/2021,13:50,BROOKLYN,11207,40.670193,-73.88969,"(40.670193, -73.88969)",SUTTER AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438418,Sedan,Sedan,,, +07/18/2021,6:40,STATEN ISLAND,10304,40.59755,-74.11133,"(40.59755, -74.11133)",TODT HILL ROAD,WILLOW POND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438497,Sedan,,,, +07/16/2021,22:21,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",8 AVENUE,WEST 46 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438959,E-Bike,Sedan,,, +07/18/2021,19:26,BROOKLYN,11231,40.677944,-74.006805,"(40.677944, -74.006805)",VERONA STREET,DWIGHT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438667,Sedan,,,, +07/13/2021,17:35,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",10 AVENUE,WEST 29 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4438778,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/18/2021,17:50,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438205,Sedan,Sedan,,, +07/17/2021,12:50,STATEN ISLAND,10312,40.528694,-74.1685,"(40.528694, -74.1685)",BARCLAY AVENUE,KINGHORN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4438754,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,6:46,,,40.822834,-73.941925,"(40.822834, -73.941925)",8 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4438236,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,23:05,QUEENS,11373,40.742313,-73.88309,"(40.742313, -73.88309)",,,42-16 82 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4438157,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/18/2021,21:00,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",1 AVENUE,EAST 120 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438336,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,14:30,BRONX,10455,40.817245,-73.8978,"(40.817245, -73.8978)",LONGWOOD AVENUE,BECK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438848,Sedan,,,, +07/18/2021,16:49,BRONX,10475,,,,Boston rd,Connor street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438098,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,10:47,BROOKLYN,11212,40.659744,-73.91708,"(40.659744, -73.91708)",RIVERDALE AVENUE,EAST 98 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438724,Station Wagon/Sport Utility Vehicle,,,, +06/05/2021,17:00,,,40.65484,-73.9597,"(40.65484, -73.9597)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438886,Bus,,,, +07/18/2021,17:41,BROOKLYN,11230,40.614574,-73.954285,"(40.614574, -73.954285)",,,1945 OCEAN AVENUE,1,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4438268,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:48,BROOKLYN,11206,40.7056,-73.937584,"(40.7056, -73.937584)",,,248 MC KIBBIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438163,Sedan,Sedan,,, +07/18/2021,17:00,,,40.682568,-73.78202,"(40.682568, -73.78202)",BREWER BOULEVARD,119 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438271,Sedan,,,, +07/18/2021,7:00,,,40.8477,-73.90097,"(40.8477, -73.90097)",EAST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4438226,Sedan,Pick-up Truck,,, +07/18/2021,1:15,,,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4437747,Taxi,,,, +07/10/2021,11:55,,,40.691048,-73.986336,"(40.691048, -73.986336)",,,FULTON STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438811,Pick-up Truck,Sedan,,, +06/27/2021,19:08,,,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438938,Sedan,E-Scooter,,, +07/18/2021,11:35,QUEENS,11368,40.753033,-73.87163,"(40.753033, -73.87163)",,,35-27 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438133,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,18:47,BROOKLYN,11211,40.71224,-73.957146,"(40.71224, -73.957146)",HAVEMEYER STREET,SOUTH 1 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438617,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,17:30,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",MORRIS AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438926,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,12:00,,,40.658184,-73.94518,"(40.658184, -73.94518)",BROOKLYN AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4438885,Sedan,Sedan,,, +07/12/2021,22:15,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,1:04,BROOKLYN,11226,40.64714,-73.958145,"(40.64714, -73.958145)",,,992 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4437778,Sedan,,,, +07/12/2021,13:31,MANHATTAN,10018,40.758377,-73.994385,"(40.758377, -73.994385)",WEST 41 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438771,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,5:00,BRONX,10466,40.890648,-73.85377,"(40.890648, -73.85377)",,,852 EAST 231 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4438097,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/18/2021,15:19,,,40.57997,-73.97466,"(40.57997, -73.97466)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438227,Sedan,,,, +07/14/2021,2:29,STATEN ISLAND,10304,40.633953,-74.085754,"(40.633953, -74.085754)",VICTORY BOULEVARD,CEBRA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438826,Sedan,,,, +07/18/2021,18:12,QUEENS,11101,40.755558,-73.9383,"(40.755558, -73.9383)",39 AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438158,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,17:07,MANHATTAN,10014,40.742374,-74.0088,"(40.742374, -74.0088)",WEST STREET,WEST 14 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438580,Station Wagon/Sport Utility Vehicle,Bus,,, +07/06/2021,18:55,BRONX,10470,40.904552,-73.847824,"(40.904552, -73.847824)",BARNES AVENUE,PENFIELD STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438720,Sedan,Sedan,,, +07/18/2021,13:49,MANHATTAN,10065,40.762737,-73.9597,"(40.762737, -73.9597)",1 AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4438194,Station Wagon/Sport Utility Vehicle,Moped,,, +07/18/2021,5:38,BROOKLYN,11213,40.665375,-73.934235,"(40.665375, -73.934235)",SCHENECTADY AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438911,Sedan,Sedan,,, +07/18/2021,15:20,MANHATTAN,10001,40.746326,-73.990326,"(40.746326, -73.990326)",,,821 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4438794,Sedan,Bike,,, +07/18/2021,8:30,MANHATTAN,10002,40.72032,-73.98251,"(40.72032, -73.98251)",,,153 RIDGE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437980,Sedan,Unknown,,, +07/18/2021,18:10,QUEENS,11367,40.72784,-73.83284,"(40.72784, -73.83284)",JEWEL AVENUE,VANWYCK EXPRESSWAY,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4438028,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +07/18/2021,4:30,BROOKLYN,11207,40.67315,-73.896194,"(40.67315, -73.896194)",PENNSYLVANIA AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438413,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,2:20,,,40.74406,-74.00682,"(40.74406, -74.00682)",WEST 17 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4438892,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,11:38,MANHATTAN,10032,40.842438,-73.93926,"(40.842438, -73.93926)",WEST 170 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438124,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,23:38,,,40.831085,-73.86909,"(40.831085, -73.86909)",ROSEDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438546,Sedan,Sedan,,, +07/18/2021,19:00,BROOKLYN,11213,40.6753,-73.93531,"(40.6753, -73.93531)",,,1415 BERGEN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4438832,Sedan,Sedan,,, +07/18/2021,2:00,,,40.67533,-73.93609,"(40.67533, -73.93609)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,21:28,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438293,Station Wagon/Sport Utility Vehicle,Bike,,, +07/18/2021,15:41,BROOKLYN,11221,40.700054,-73.92459,"(40.700054, -73.92459)",WILSON AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438419,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,0:30,BROOKLYN,11209,40.635555,-74.02611,"(40.635555, -74.02611)",,,6909 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4438017,Sedan,,,, +07/18/2021,15:04,BROOKLYN,11229,40.609123,-73.9503,"(40.609123, -73.9503)",QUENTIN ROAD,EAST 23 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,23:00,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438737,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,9:00,QUEENS,11432,40.718853,-73.78933,"(40.718853, -73.78933)",,,175-44 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438777,Sedan,,,, +07/18/2021,16:25,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438567,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,16:21,,,40.695995,-73.96742,"(40.695995, -73.96742)",PARK AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4438111,Bike,,,, +07/18/2021,20:50,BROOKLYN,11223,40.59783,-73.96549,"(40.59783, -73.96549)",OCEAN PARKWAY,AVENUE U,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4438182,Sedan,Sedan,,, +07/18/2021,0:00,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4438967,Motorcycle,E-Scooter,,, +07/16/2021,18:55,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438855,Sedan,Motorcycle,,, +06/18/2021,15:34,MANHATTAN,10002,40.712196,-73.99567,"(40.712196, -73.99567)",,,93 MADISON STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438731,E-Scooter,,,, +10/27/2021,18:40,BROOKLYN,11225,40.663727,-73.95386,"(40.663727, -73.95386)",EMPIRE BOULEVARD,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4471825,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/18/2021,0:30,MANHATTAN,10001,40.743916,-73.98788,"(40.743916, -73.98788)",,,230 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437833,Sedan,Box Truck,,, +07/18/2021,13:19,BRONX,10473,40.825596,-73.86492,"(40.825596, -73.86492)",BEACH AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438541,Sedan,,,, +07/18/2021,12:06,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4438079,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,15:50,MANHATTAN,10016,40.749485,-73.97539,"(40.749485, -73.97539)",EAST 40 STREET,3 AVENUE,,4,0,0,0,0,0,4,0,View Obstructed/Limited,Other Vehicular,,,,4438441,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,21:46,QUEENS,11419,40.69218,-73.82709,"(40.69218, -73.82709)",,,95-21 LEFFERTS BOULEVARD,6,0,0,0,0,0,6,0,Alcohol Involvement,Unspecified,Unspecified,,,4438308,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/06/2021,9:50,MANHATTAN,10019,40.769287,-73.989,"(40.769287, -73.989)",,,500 WEST 57 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4438952,Sedan,,,, +07/18/2021,10:50,QUEENS,11420,40.67725,-73.826096,"(40.67725, -73.826096)",,,112-20 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438212,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,22:47,MANHATTAN,10001,40.752125,-74.00117,"(40.752125, -74.00117)",,,500 WEST 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438781,Sedan,Bike,,, +07/18/2021,4:16,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438254,Sedan,Sedan,,, +07/15/2021,15:00,BROOKLYN,11205,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438732,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,18:45,QUEENS,11357,40.779922,-73.80601,"(40.779922, -73.80601)",CLINTONVILLE STREET,20 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438136,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/18/2021,15:56,BRONX,10473,40.82101,-73.86575,"(40.82101, -73.86575)",LAFAYETTE AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438547,Sedan,,,, +07/18/2021,15:56,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4438679,Sedan,Sedan,,, +07/18/2021,16:37,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438181,Sedan,Sedan,,, +07/18/2021,19:25,,,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438453,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,7:00,MANHATTAN,10025,40.793896,-73.967865,"(40.793896, -73.967865)",,,120 WEST 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,12:15,MANHATTAN,10012,40.722904,-73.997795,"(40.722904, -73.997795)",,,76 CROSBY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438261,Sedan,,,, +07/18/2021,1:15,,,40.651733,-73.93039,"(40.651733, -73.93039)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4438043,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,21:45,,,,,,NEW ENGLAND THRUWAY RAMP,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4438277,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,10:15,,,40.787544,-73.82394,"(40.787544, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4438132,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,18:10,BROOKLYN,11230,40.611126,-73.96259,"(40.611126, -73.96259)",,,1897 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438260,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,6:30,MANHATTAN,10001,,,,,,282 11 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438753,Sedan,Carry All,,, +07/18/2021,10:00,,,40.602192,-73.75523,"(40.602192, -73.75523)",BEACH 22 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4438204,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,12:50,MANHATTAN,10011,40.74307,-73.99722,"(40.74307, -73.99722)",,,210 WEST 21 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438763,Van,Sedan,,, +07/18/2021,1:18,QUEENS,11375,40.724308,-73.842575,"(40.724308, -73.842575)",110 STREET,JEWEL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437751,Sedan,Sedan,,, +07/18/2021,18:30,BRONX,10462,40.854477,-73.8667,"(40.854477, -73.8667)",LYDIG AVENUE,CRUGER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438813,,,,, +07/18/2021,2:39,QUEENS,11385,40.703434,-73.91181,"(40.703434, -73.91181)",CYPRESS AVENUE,MENAHAN STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4438609,Taxi,,,, +07/15/2021,20:05,BROOKLYN,11224,40.578358,-73.99051,"(40.578358, -73.99051)",NEPTUNE AVENUE,WEST 23 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438935,E-Bike,,,, +07/17/2021,18:20,,,40.756527,-73.994026,"(40.756527, -73.994026)",WEST 39 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438895,Box Truck,Sedan,,, +07/18/2021,18:15,BROOKLYN,11237,40.696823,-73.91487,"(40.696823, -73.91487)",KNICKERBOCKER AVENUE,GATES AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438420,Sedan,Bike,,, +07/18/2021,13:56,,,,,,BRONX RIVER PARKWAY,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Illnes,,,,,4438015,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,16:55,BROOKLYN,11238,40.688873,-73.96001,"(40.688873, -73.96001)",,,376 LAFAYETTE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4438020,Sedan,,,, +07/18/2021,14:00,MANHATTAN,10035,40.805637,-73.9344,"(40.805637, -73.9344)",EAST 128 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438341,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,8:05,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438808,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/18/2021,2:26,BROOKLYN,11210,40.636265,-73.94802,"(40.636265, -73.94802)",FARRAGUT ROAD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438049,Sedan,,,, +07/18/2021,1:50,BROOKLYN,11207,40.68238,-73.90565,"(40.68238, -73.90565)",BUSHWICK AVENUE,ABERDEEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438414,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,9:00,BRONX,10473,40.818157,-73.85461,"(40.818157, -73.85461)",,,1992 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438845,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,19:45,,,,,,JAY STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438109,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,13:39,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438501,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,18:08,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438891,Sedan,Sedan,,, +07/18/2021,10:15,,,40.68821,-73.96583,"(40.68821, -73.96583)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4437929,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/18/2021,12:12,MANHATTAN,10035,40.800877,-73.93704,"(40.800877, -73.93704)",,,219 EAST 121 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438342,Ambulance,Sedan,,, +07/18/2021,17:10,BROOKLYN,11226,40.660114,-73.96391,"(40.660114, -73.96391)",EAST DRIVE,EAST LAKE DRIVE,,2,0,1,0,1,0,0,0,Following Too Closely,,,,,4438473,Bike,,,, +07/18/2021,11:14,,,40.828133,-73.84518,"(40.828133, -73.84518)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438545,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,11:03,,,,,,NORTH CHANNEL BRIDGE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4437960,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,2:00,BROOKLYN,11203,40.656475,-73.92987,"(40.656475, -73.92987)",,,199 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438047,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,20:00,QUEENS,11432,40.707294,-73.80424,"(40.707294, -73.80424)",,,153-34 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,,,4438856,Sedan,Sedan,Sedan,, +07/18/2021,3:55,BROOKLYN,11216,40.670006,-73.95328,"(40.670006, -73.95328)",ROGERS AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,20:24,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438092,Sedan,Sedan,,, +07/18/2021,19:40,,,40.575787,-73.97079,"(40.575787, -73.97079)",SEA BREEZE AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Passing or Lane Usage Improper,,,,4438228,Sedan,Sedan,,, +07/15/2021,14:55,,,40.609505,-74.181885,"(40.609505, -74.181885)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438849,Sedan,Sedan,,, +07/18/2021,4:15,MANHATTAN,10016,40.7463,-73.971664,"(40.7463, -73.971664)",EAST 38 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4438605,Sedan,E-Bike,,, +06/17/2021,23:22,BRONX,10462,40.85159,-73.867805,"(40.85159, -73.867805)",WHITE PLAINS ROAD,BRONXDALE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4438785,Sedan,MOPED,,, +07/18/2021,0:00,BROOKLYN,11220,40.639126,-74.023224,"(40.639126, -74.023224)",,,301 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,1:15,QUEENS,11369,40.764484,-73.88399,"(40.764484, -73.88399)",,,85-05 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4438128,Sedan,Pick-up Truck,,, +07/18/2021,4:11,MANHATTAN,10036,40.756565,-73.99028,"(40.756565, -73.99028)",WEST 41 STREET,8 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4437909,Taxi,Taxi,,, +07/18/2021,2:24,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4438085,Sedan,,,, +07/08/2021,17:40,BRONX,10465,40.823658,-73.836426,"(40.823658, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438940,Sedan,,,, +07/18/2021,14:00,BROOKLYN,11220,40.647804,-74.01024,"(40.647804, -74.01024)",,,413 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438330,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,4:44,BROOKLYN,11236,40.64306,-73.91286,"(40.64306, -73.91286)",,,538 EAST 87 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438071,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,15:45,,,,,,JUNCTION BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438750,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/18/2021,17:40,STATEN ISLAND,10306,40.556534,-74.12813,"(40.556534, -74.12813)",BUFFALO STREET,HYLAN BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4438504,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,15:30,,,40.7024,-73.9605,"(40.7024, -73.9605)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438159,Sedan,,,, +07/18/2021,1:40,,,40.665993,-73.8858,"(40.665993, -73.8858)",LIVONIA AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4438412,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,20:20,QUEENS,11361,40.770836,-73.77098,"(40.770836, -73.77098)",34 AVENUE,214 LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438526,Bus,,,, +07/18/2021,20:46,,,40.866024,-73.92588,"(40.866024, -73.92588)",BROADWAY,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4438452,AMBULANCE,Sedan,,, +07/18/2021,1:27,QUEENS,11414,40.65185,-73.83808,"(40.65185, -73.83808)",,,163-30 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4438218,Sedan,,,, +07/16/2021,14:51,MANHATTAN,10002,40.715622,-73.99428,"(40.715622, -73.99428)",CANAL STREET,FORSYTH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438718,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +07/09/2021,23:45,,,40.584644,-73.94899,"(40.584644, -73.94899)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4438831,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/18/2021,23:14,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438143,Pick-up Truck,Sedan,,, +07/16/2021,19:26,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",37 AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438738,Sedan,,,, +07/18/2021,21:25,MANHATTAN,10031,40.82536,-73.95125,"(40.82536, -73.95125)",,,3505 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438135,Sedan,Sedan,,, +07/18/2021,5:47,QUEENS,11358,40.7512,-73.8062,"(40.7512, -73.8062)",,,47-22 161 STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4437806,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,20:30,BRONX,10469,40.879807,-73.84874,"(40.879807, -73.84874)",,,1487 NEEDHAM AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438764,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,15:55,,,,,,,,"1000 Tenth Ave New York, NY 10019",1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4438955,Bike,Taxi,,, +07/18/2021,13:20,QUEENS,11378,40.719334,-73.906845,"(40.719334, -73.906845)",FLUSHING AVENUE,60 STREET,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4438038,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/18/2021,14:02,,,40.831768,-73.90803,"(40.831768, -73.90803)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438186,Sedan,Sedan,,, +07/17/2021,15:20,STATEN ISLAND,10301,40.611195,-74.10613,"(40.611195, -74.10613)",,,209 LITTLE CLOVE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4438827,Sedan,,,, +07/18/2021,14:57,,,,,,,,71 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4438623,Bike,,,, +07/18/2021,22:51,,,40.65789,-73.85613,"(40.65789, -73.85613)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4438195,Sedan,Sedan,Sedan,, +07/17/2021,14:05,MANHATTAN,10036,40.75991,-73.98629,"(40.75991, -73.98629)",,,253 WEST 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438961,Sedan,Sedan,,, +07/18/2021,14:01,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",WOODHAVEN BOULEVARD,91 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4438306,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/18/2021,10:54,STATEN ISLAND,10312,40.556583,-74.17724,"(40.556583, -74.17724)",,,34 MCARTHUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438685,Sedan,,,, +07/18/2021,22:55,BRONX,10456,40.83872,-73.91378,"(40.83872, -73.91378)",GRAND CONCOURSE,EAST 170 STREET,,4,0,3,0,0,0,1,0,Traffic Control Disregarded,,,,,4438174,Motorscooter,,,, +07/18/2021,1:13,BRONX,10461,40.8542,-73.854416,"(40.8542, -73.854416)",WILLIAMSBRIDGE ROAD,NEILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438116,Sedan,Sedan,,, +07/17/2021,5:30,,,40.607754,-74.13205,"(40.607754, -74.13205)",BRADLEY AVENUE,SOUTH GANNON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438756,Pick-up Truck,Sedan,,, +07/12/2021,14:30,,,40.75024,-73.998604,"(40.75024, -73.998604)",9 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4438775,Dump,Sedan,,, +07/18/2021,0:00,BROOKLYN,11207,40.67934,-73.8911,"(40.67934, -73.8911)",,,116 HENDRIX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438372,Sedan,,,, +07/18/2021,6:21,BROOKLYN,11212,40.65421,-73.9153,"(40.65421, -73.9153)",,,1170 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,Unspecified,Unspecified,,4438569,Sedan,Sedan,Sedan,Sedan, +07/18/2021,19:12,MANHATTAN,10017,40.753,-73.969894,"(40.753, -73.969894)",2 AVENUE,EAST 47 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4438209,Sedan,E-Bike,,, +07/18/2021,19:15,,,40.596096,-73.76976,"(40.596096, -73.76976)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,10:00,BROOKLYN,11226,40.647278,-73.951126,"(40.647278, -73.951126)",,,86 EAST 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438836,Sedan,,,, +07/09/2021,9:56,BROOKLYN,11222,40.728134,-73.95328,"(40.728134, -73.95328)",MANHATTAN AVENUE,CALYER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438730,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,1:49,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4438919,Sedan,,,, +07/18/2021,12:20,,,40.696934,-73.80358,"(40.696934, -73.80358)",148 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438288,Sedan,Sedan,,, +07/17/2021,3:08,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",WEST 42 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438896,Sedan,,,, +07/17/2021,22:55,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4438734,Sedan,Sedan,,, +07/18/2021,0:30,BROOKLYN,11236,40.63874,-73.8952,"(40.63874, -73.8952)",ROCKAWAY PARKWAY,AVENUE L,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4437759,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,16:50,QUEENS,11379,40.71881,-73.89064,"(40.71881, -73.89064)",61 ROAD,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438815,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,14:21,STATEN ISLAND,10309,40.524612,-74.230446,"(40.524612, -74.230446)",TYRELLAN AVENUE,BOSCOMBE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,9:55,BROOKLYN,11236,40.626736,-73.90161,"(40.626736, -73.90161)",PAERDEGAT AVENUE NORTH,PAERDEGAT 15 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438140,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,0:00,BROOKLYN,11208,40.68365,-73.87219,"(40.68365, -73.87219)",FULTON STREET,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438431,Station Wagon/Sport Utility Vehicle,Bus,,, +07/18/2021,8:25,QUEENS,11379,40.721592,-73.87647,"(40.721592, -73.87647)",JUNIPER BOULEVARD NORTH,80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438025,Sedan,Sedan,,, +07/18/2021,1:40,BROOKLYN,11237,40.69285,-73.90355,"(40.69285, -73.90355)",IRVING AVENUE,DECATUR STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4438416,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,12:15,MANHATTAN,10036,40.757828,-73.99308,"(40.757828, -73.99308)",WEST 41 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438780,Station Wagon/Sport Utility Vehicle,Dump,,, +07/18/2021,16:00,QUEENS,11420,40.682457,-73.8203,"(40.682457, -73.8203)",,,109-28 121 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438656,Sedan,,,, +07/18/2021,13:00,QUEENS,11420,40.67335,-73.82582,"(40.67335, -73.82582)",114 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4438217,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,3:05,BRONX,10457,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438252,Sedan,Sedan,,, +07/18/2021,21:00,MANHATTAN,10026,40.799416,-73.95138,"(40.799416, -73.95138)",,,41 WEST 112 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438557,Sedan,Taxi,,, +07/18/2021,3:07,BROOKLYN,11212,40.65531,-73.90318,"(40.65531, -73.90318)",LINDEN BOULEVARD,MOTHER GASTON BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438331,Sedan,TRUCK,,, +07/18/2021,2:30,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438057,Taxi,Sedan,,, +07/18/2021,1:42,BRONX,10466,40.885975,-73.85472,"(40.885975, -73.85472)",BRONXWOOD AVENUE,EAST 225 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438106,Taxi,Sedan,,, +07/16/2021,21:12,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",10 AVENUE,WEST 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438890,Box Truck,Sedan,,, +07/18/2021,7:30,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",48 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4437938,Sedan,Sedan,,, +07/16/2021,15:30,,,40.606327,-74.07994,"(40.606327, -74.07994)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,15:30,MANHATTAN,10003,40.731464,-73.98699,"(40.731464, -73.98699)",,,212 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438354,Sedan,UNK,,, +07/18/2021,8:08,BRONX,10456,40.824467,-73.90155,"(40.824467, -73.90155)",,,800 EAST 165 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438180,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,20:00,MANHATTAN,10271,40.7083,-74.01125,"(40.7083, -74.01125)",BROADWAY,PINE STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438806,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/15/2021,18:11,,,40.58576,-73.974464,"(40.58576, -73.974464)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438934,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:00,QUEENS,11693,40.584454,-73.812965,"(40.584454, -73.812965)",SHORE FRONT PARKWAY,BEACH 91 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4438072,Sedan,Bike,,, +07/18/2021,15:39,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438117,Pick-up Truck,Sedan,,, +07/18/2021,16:17,MANHATTAN,10001,40.74558,-73.989456,"(40.74558, -73.989456)",,,48 WEST 28 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438575,Sedan,E-Bike,,, +07/18/2021,8:15,,,40.61244,-74.13231,"(40.61244, -74.13231)",VICTORY BOULEVARD,BRADLEY AVENUE,,1,0,0,0,0,0,1,0,Illnes,,,,,4438482,Sedan,,,, +07/18/2021,16:53,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438508,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,4:50,MANHATTAN,10009,40.728767,-73.984436,"(40.728767, -73.984436)",EAST 10 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4437922,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,19:50,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",BEDFORD AVENUE,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4438259,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,15:39,BROOKLYN,11214,40.606327,-73.99647,"(40.606327, -73.99647)",20 AVENUE,83 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4437995,Station Wagon/Sport Utility Vehicle,Bike,,, +07/18/2021,3:30,BROOKLYN,11239,40.654686,-73.87772,"(40.654686, -73.87772)",GATEWAY DRIVE,VANDALIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4438365,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,2:29,,,40.870777,-73.81923,"(40.870777, -73.81923)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4437882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/18/2021,4:03,,,40.82326,-73.95277,"(40.82326, -73.95277)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438129,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,13:30,STATEN ISLAND,10306,40.578247,-74.117256,"(40.578247, -74.117256)",,,2300 RICHMOND ROAD,0,0,0,0,0,0,0,0,,,,,,4438466,,,,, +07/17/2021,0:50,MANHATTAN,10036,40.761223,-73.98744,"(40.761223, -73.98744)",,,301 WEST 48 STREET,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438947,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/18/2021,17:24,BRONX,10455,40.811398,-73.90777,"(40.811398, -73.90777)",WALES AVENUE,EAST 147 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4438316,Taxi,Sedan,Sedan,, +07/18/2021,17:16,QUEENS,11385,40.704525,-73.87054,"(40.704525, -73.87054)",,,78-04 79 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438046,Sedan,,,, +07/01/2021,10:00,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,7:20,QUEENS,11369,40.760685,-73.862206,"(40.760685, -73.862206)",,,107-10 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4438740,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,19:15,,,40.835335,-73.88214,"(40.835335, -73.88214)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4438188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,2:40,BROOKLYN,11211,40.714592,-73.93877,"(40.714592, -73.93877)",METROPOLITAN AVENUE,OLIVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438160,Tractor Truck Diesel,Sedan,,, +07/18/2021,2:25,,,40.786133,-73.824356,"(40.786133, -73.824356)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438586,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,10:14,BRONX,10467,40.871376,-73.86334,"(40.871376, -73.86334)",BURKE AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438716,Sedan,Motorcycle,,, +07/18/2021,1:20,QUEENS,11691,40.59461,-73.76403,"(40.59461, -73.76403)",,,31-13 SEAGIRT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4438198,Sedan,Sedan,,, +07/10/2021,1:04,MANHATTAN,10019,40.76739,-73.98237,"(40.76739, -73.98237)",8 AVENUE,WEST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438956,,,,, +07/18/2021,0:30,BROOKLYN,11210,40.637016,-73.9452,"(40.637016, -73.9452)",,,1478 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438042,Ambulance,Sedan,,, +07/18/2021,15:10,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438913,Sedan,Sedan,,, +07/18/2021,10:21,,,40.749054,-73.99576,"(40.749054, -73.99576)",WEST 29 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4437976,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,14:50,BRONX,10463,40.87384,-73.90892,"(40.87384, -73.90892)",,,40 WEST 225 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4438783,Motorcycle,,,, +07/18/2021,4:03,,,40.67831,-73.869804,"(40.67831, -73.869804)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4438399,Sedan,,,, +07/18/2021,16:45,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438523,Sedan,Sedan,,, +07/18/2021,16:20,QUEENS,11101,40.746296,-73.93041,"(40.746296, -73.93041)",43 AVENUE,34 STREET,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438087,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,16:30,QUEENS,11419,40.685806,-73.83259,"(40.685806, -73.83259)",103 AVENUE,110 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4438219,Sedan,Sedan,,, +07/18/2021,14:00,BROOKLYN,11233,40.67069,-73.91703,"(40.67069, -73.91703)",EASTERN PARKWAY,SARATOGA AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4438446,Sedan,Sedan,,, +07/18/2021,1:20,BRONX,10458,40.87637,-73.88286,"(40.87637, -73.88286)",VANCORTLANDT AVENUE EAST,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438305,Ambulance,Ambulance,,, +07/18/2021,11:40,,,40.63948,-74.016174,"(40.63948, -74.016174)",60 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4437965,Bike,Sedan,,, +07/18/2021,5:35,QUEENS,11354,40.7714,-73.8306,"(40.7714, -73.8306)",,,29-30 138 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4437812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/18/2021,17:00,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4438134,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/15/2021,12:31,BROOKLYN,11225,40.65837,-73.955734,"(40.65837, -73.955734)",,,193 FENIMORE STREET,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,,,,4438882,Moped,Sedan,,, +07/18/2021,20:50,,,40.838436,-73.88263,"(40.838436, -73.88263)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4438229,Tractor Truck Diesel,Sedan,,, +07/18/2021,17:00,,,40.76829,-73.77709,"(40.76829, -73.77709)",35 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438091,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,3:30,QUEENS,11368,40.75324,-73.86869,"(40.75324, -73.86869)",,,35-28 99 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4438746,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,15:00,BRONX,10466,40.895134,-73.85216,"(40.895134, -73.85216)",DIGNEY AVENUE,PITMAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438766,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,20:00,BROOKLYN,11211,40.70955,-73.95886,"(40.70955, -73.95886)",HAVEMEYER STREET,SOUTH 5 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4438619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:52,STATEN ISLAND,10304,40.631306,-74.085846,"(40.631306, -74.085846)",,,55 AUSTIN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438828,Sedan,Sedan,,, +07/18/2021,23:45,STATEN ISLAND,10308,40.54783,-74.13952,"(40.54783, -74.13952)",HYLAN BOULEVARD,FIELDWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438147,Sedan,,,, +07/18/2021,20:30,BROOKLYN,11221,40.69407,-73.91406,"(40.69407, -73.91406)",MADISON STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,3:50,,,40.621586,-74.17268,"(40.621586, -74.17268)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4438858,Sedan,,,, +07/18/2021,14:30,QUEENS,11427,40.7389,-73.73378,"(40.7389, -73.73378)",UNION TURNPIKE,WINCHESTER BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4438355,Pick-up Truck,Bike,,, +07/17/2021,20:40,,,40.753387,-73.99631,"(40.753387, -73.99631)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438897,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,14:45,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438948,Sedan,E-Scooter,,, +07/18/2021,9:05,QUEENS,11378,40.72484,-73.8923,"(40.72484, -73.8923)",69 LANE,58 ROAD,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,,,4438026,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/18/2021,14:10,MANHATTAN,10010,40.736164,-73.97891,"(40.736164, -73.97891)",EAST 22 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,14:43,BROOKLYN,11219,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,14 AVENUE,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438799,Sedan,E-Scooter,,, +07/18/2021,12:25,MANHATTAN,10035,40.80549,-73.937965,"(40.80549, -73.937965)",,,107 EAST 126 STREET,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,Unspecified,,,4438334,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/18/2021,15:50,QUEENS,11426,40.7356,-73.716354,"(40.7356, -73.716354)",,,251-08 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437983,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,15:05,,,40.58393,-73.83093,"(40.58393, -73.83093)",BEACH 108 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4438073,Motorcycle,Sedan,,, +07/18/2021,17:00,BRONX,10473,40.825146,-73.864235,"(40.825146, -73.864235)",,,1790 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4438544,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,12:30,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438511,Sedan,Pick-up Truck,,, +07/18/2021,11:55,BROOKLYN,11201,40.70303,-73.98467,"(40.70303, -73.98467)",BRIDGE STREET,WATER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4437950,Sedan,,,, +07/18/2021,16:30,STATEN ISLAND,10301,40.647026,-74.086975,"(40.647026, -74.086975)",WESTERVELT AVENUE,CARROLL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438830,Sedan,,,, +07/09/2021,16:00,QUEENS,11414,40.663067,-73.83688,"(40.663067, -73.83688)",157 AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438914,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,23:50,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438206,Taxi,Sedan,,, +07/12/2021,9:40,MANHATTAN,10036,40.759274,-73.994675,"(40.759274, -73.994675)",,,460 WEST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438755,Sedan,Sedan,,, +07/18/2021,23:20,BROOKLYN,11204,40.628845,-73.98381,"(40.628845, -73.98381)",,,5018 17 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4438760,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,0:15,BROOKLYN,11236,40.639637,-73.91533,"(40.639637, -73.91533)",EAST 82 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4437760,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,7:00,BROOKLYN,11225,0,0,"(0.0, 0.0)",,,1063 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438887,Sedan,Sedan,,, +07/18/2021,18:00,QUEENS,11692,40.594955,-73.78627,"(40.594955, -73.78627)",BEACH CHANNEL DRIVE,BEACH 56 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438258,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,19:47,BRONX,10469,40.877594,-73.84518,"(40.877594, -73.84518)",,,3533 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438289,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,19:00,,,,,,63 DRIVE,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,View Obstructed/Limited,,,,4438817,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/18/2021,16:51,BROOKLYN,11236,40.639343,-73.885574,"(40.639343, -73.885574)",AVENUE N,EAST 105 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,22:45,BRONX,10461,40.85443,-73.82889,"(40.85443, -73.82889)",EAST 196 STREET,COLONIAL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4438559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/18/2021,4:09,BROOKLYN,11229,40.602036,-73.939285,"(40.602036, -73.939285)",,,2017 BATCHELDER STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4438178,Sedan,Sedan,Sedan,Sedan,Sedan +07/16/2021,15:10,,,40.539906,-74.18686,"(40.539906, -74.18686)",KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4438853,Sedan,,,, +07/18/2021,12:30,QUEENS,11413,,,,Belt parkway,Springfield boulevard,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4438267,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:40,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",GRAND CONCOURSE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438053,Sedan,Sedan,,, +07/18/2021,1:25,BRONX,10472,40.82886,-73.876816,"(40.82886, -73.876816)",,,1570 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4437921,Sedan,,,, +07/18/2021,9:50,,,40.675404,-73.87192,"(40.675404, -73.87192)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438417,Sedan,Sedan,,, +07/18/2021,11:27,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:00,BRONX,10462,40.844532,-73.858055,"(40.844532, -73.858055)",,,1638 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438118,Sedan,,,, +07/18/2021,13:49,BRONX,10469,40.876476,-73.84608,"(40.876476, -73.84608)",,,3371 EASTCHESTER ROAD,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inattention/Distraction,,,,4438102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,20:15,QUEENS,11373,40.74616,-73.87125,"(40.74616, -73.87125)",,,94-22 41 ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4438486,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,2:05,BROOKLYN,11238,40.679203,-73.9553,"(40.679203, -73.9553)",FRANKLIN AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438835,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,15:56,QUEENS,11411,40.68836,-73.73659,"(40.68836, -73.73659)",227 STREET,120 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4438165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,1:17,BROOKLYN,11206,40.693905,-73.94892,"(40.693905, -73.94892)",WILLOUGHBY AVENUE,MARCY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4438779,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/16/2021,13:23,BROOKLYN,11217,40.68228,-73.985245,"(40.68228, -73.985245)",BALTIC STREET,NEVINS STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4438735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,18:55,MANHATTAN,10019,40.767815,-73.98951,"(40.767815, -73.98951)",10 AVENUE,WEST 55 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438960,Sedan,,,, +07/18/2021,1:40,,,40.683544,-74.00176,"(40.683544, -74.00176)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4438241,Sedan,Sedan,,, +07/18/2021,17:15,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438156,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,17:05,MANHATTAN,10028,40.77656,-73.95271,"(40.77656, -73.95271)",EAST 84 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438931,Motorscooter,,,, +07/15/2021,8:53,MANHATTAN,10065,40.76624,-73.960236,"(40.76624, -73.960236)",2 AVENUE,EAST 68 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4438710,Bike,Bike,,, +07/12/2021,10:26,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4438727,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,18:04,QUEENS,11372,40.749256,-73.888985,"(40.749256, -73.888985)",77 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438741,Sedan,Bike,,, +07/18/2021,21:30,,,40.665916,-73.81528,"(40.665916, -73.81528)",BELT PARKWAY,,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4438191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,2:39,BROOKLYN,11212,40.66968,-73.91075,"(40.66968, -73.91075)",PITKIN AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471319,Sedan,Sedan,,, +07/18/2021,22:00,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438214,Sedan,,,, +10/28/2021,14:40,QUEENS,11375,40.71837,-73.84057,"(40.71837, -73.84057)",ASCAN AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471889,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,16:50,BROOKLYN,11226,40.641727,-73.96332,"(40.641727, -73.96332)",,,1619 CORTELYOU ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471627,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,14:39,,,40.856743,-73.917625,"(40.856743, -73.917625)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,Unspecified,,,4472883,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/27/2021,14:40,MANHATTAN,10018,40.75329,-73.99016,"(40.75329, -73.99016)",,,225 WEST 37 STREET,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,,,,4472578,Sedan,Bike,,, +10/27/2021,6:00,,,40.768543,-73.9657,"(40.768543, -73.9657)",EAST 68 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4471639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,9:23,BRONX,10451,40.815437,-73.924,"(40.815437, -73.924)",EAST 144 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4471941,Sedan,,,, +10/29/2021,10:50,,,40.70083,-73.82635,"(40.70083, -73.82635)",124 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472111,Sedan,Sedan,,, +10/27/2021,20:40,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4471857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,10:40,QUEENS,11358,40.763496,-73.80734,"(40.763496, -73.80734)",NORTHERN BOULEVARD,158 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4471958,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/27/2021,16:27,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471563,Sedan,,,, +10/08/2021,19:18,BROOKLYN,11238,40.678516,-73.963905,"(40.678516, -73.963905)",BERGEN STREET,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4472588,Sedan,Bike,,, +10/27/2021,17:30,BRONX,10461,40.856865,-73.85815,"(40.856865, -73.85815)",PELHAM PARKWAY SOUTH,HAIGHT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4471737,PK,,,, +10/29/2021,8:00,QUEENS,11691,40.59872,-73.76601,"(40.59872, -73.76601)",BAY 32 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472042,Sedan,Sedan,,, +10/28/2021,10:10,BROOKLYN,11206,40.703,-73.94425,"(40.703, -73.94425)",,,21 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472817,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,7:25,BROOKLYN,11210,40.638447,-73.95117,"(40.638447, -73.95117)",FOSTER AVENUE,ROGERS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472079,,,,, +10/28/2021,13:32,MANHATTAN,10009,40.722042,-73.97722,"(40.722042, -73.97722)",,,50 AVENUE D,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4472518,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,23:50,BROOKLYN,11206,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,FLUSHING AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472005,E-Bike,E-Bike,,, +10/23/2021,2:30,STATEN ISLAND,10304,40.612602,-74.079956,"(40.612602, -74.079956)",,,361F SKYLINE DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472637,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,19:49,,,40.791904,-73.94151,"(40.791904, -73.94151)",EAST 108 STREET,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4472268,Sedan,Sedan,,, +10/29/2021,9:20,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472137,Sedan,Pick-up Truck,,, +10/29/2021,17:25,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472375,Pick-up Truck,Sedan,,, +10/29/2021,19:40,BRONX,10466,40.88791,-73.86041,"(40.88791, -73.86041)",,,3975 WHITE PLAINS ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472416,Sedan,,,, +10/27/2021,18:00,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4471583,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,4:00,BROOKLYN,11213,,,,BERGEN STREET,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472568,Sedan,,,, +10/28/2021,14:52,,,,,,CLEARVIEW EXPRESSWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4471875,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +10/29/2021,2:26,BROOKLYN,11211,40.713215,-73.950424,"(40.713215, -73.950424)",,,23 DEVOE STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4472787,Sedan,Sedan,Sedan,Sedan, +10/29/2021,0:40,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472020,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,20:30,MANHATTAN,10012,40.729397,-74.001015,"(40.729397, -74.001015)",,,95 MAC DOUGAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472000,Sedan,Sedan,,, +10/29/2021,11:42,MANHATTAN,10020,40.7599,-73.98043,"(40.7599, -73.98043)",AVENUE OF THE AMERICAS,WEST 50 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472253,Taxi,,,, +10/28/2021,15:00,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4472654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:19,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,6:08,BRONX,10461,40.84279,-73.85053,"(40.84279, -73.85053)",EAST TREMONT AVENUE,SAINT PETERS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472447,Sedan,,,, +10/28/2021,14:37,BROOKLYN,11230,40.6251,-73.96208,"(40.6251, -73.96208)",,,1416 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,,,,,4472069,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,1:00,MANHATTAN,10027,40.81764,-73.95686,"(40.81764, -73.95686)",,,3260 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4471932,Sedan,Taxi,,, +04/10/2022,14:50,QUEENS,11356,40.78922,-73.83909,"(40.78922, -73.83909)",129 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517731,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,11:10,QUEENS,11413,,,,SLOAN STREET,EAST GATE PLAZA,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472032,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,18:49,BROOKLYN,11203,40.647995,-73.93293,"(40.647995, -73.93293)",SCHENECTADY AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472702,Sedan,Sedan,,, +10/20/2021,22:19,,,40.625546,-73.93998,"(40.625546, -73.93998)",FLATBUSH AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472219,Sedan,Bus,,, +10/03/2021,8:48,,,40.785805,-73.97268,"(40.785805, -73.97268)",WEST 85 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472133,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,18:20,BROOKLYN,11223,40.591835,-73.97143,"(40.591835, -73.97143)",WEST 1 STREET,STRYKER COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4472280,Sedan,Sedan,Sedan,, +10/29/2021,12:35,QUEENS,11369,40.770313,-73.87603,"(40.770313, -73.87603)",94 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472064,Sedan,Sedan,,, +10/23/2021,1:40,,,40.58227,-73.98612,"(40.58227, -73.98612)",BAY 54 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472851,Sedan,Sedan,,, +10/29/2021,6:49,,,40.58154,-73.98465,"(40.58154, -73.98465)",WEST 16 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472420,Van,,,, +10/29/2021,20:22,,,40.678165,-73.746506,"(40.678165, -73.746506)",MERRICK BOULEVARD,223 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4472318,Sedan,Sedan,,, +10/25/2021,10:33,BROOKLYN,11201,,,,TILLARY STREET,ADAMS STREET,,0,0,0,0,0,0,0,0,Tinted Windows,Driver Inattention/Distraction,,,,4472617,Sedan,Sedan,,, +10/27/2021,19:00,,,40.735752,-73.88052,"(40.735752, -73.88052)",GRAND AVENUE,VANHORN STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4471632,Station Wagon/Sport Utility Vehicle,Bike,,, +10/27/2021,12:59,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471518,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,7:05,,,40.711365,-73.97897,"(40.711365, -73.97897)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4471407,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,20:10,BRONX,10472,40.836708,-73.87527,"(40.836708, -73.87527)",BRONX RIVER AVENUE,EAST 177 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,Unspecified,,,4471676,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,14:47,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4471745,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/27/2021,6:55,,,40.639984,-73.94842,"(40.639984, -73.94842)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472692,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,21:00,MANHATTAN,10022,40.756763,-73.96716,"(40.756763, -73.96716)",EAST 53 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4471548,Taxi,Bike,,, +10/27/2021,19:06,BRONX,10466,40.894436,-73.84807,"(40.894436, -73.84807)",BRUNER AVENUE,BUSSING AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4471539,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/27/2021,15:35,,,40.857117,-73.89907,"(40.857117, -73.89907)",RYER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471706,Sedan,Box Truck,,, +10/28/2021,12:04,,,40.73545,-73.917046,"(40.73545, -73.917046)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4471869,Sedan,Sedan,,, +10/23/2021,1:39,MANHATTAN,10035,,,,EAST 125 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472367,Sedan,Sedan,,, +10/28/2021,0:19,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472047,Taxi,,,, +10/29/2021,12:33,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472742,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/29/2021,13:00,BROOKLYN,11223,40.604195,-73.97218,"(40.604195, -73.97218)",MC DONALD AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472106,Sedan,Pick-up Truck,,, +10/28/2021,9:05,BRONX,10460,40.842064,-73.87609,"(40.842064, -73.87609)",EAST 180 STREET,DEVOE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471971,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/27/2021,19:40,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4472233,Pick-up Truck,Sedan,,, +10/27/2021,19:37,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4471578,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,20:55,,,40.793606,-73.95161,"(40.793606, -73.95161)",5 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inexperience,,,,4471608,Taxi,Motorcycle,,, +10/27/2021,6:30,,,40.7491,-73.99201,"(40.7491, -73.99201)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471838,Sedan,Box Truck,,, +10/28/2021,7:33,BRONX,10467,40.883575,-73.86281,"(40.883575, -73.86281)",EAST 219 STREET,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4471803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,0:20,,,40.748737,-73.758385,"(40.748737, -73.758385)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4471921,Sedan,Sedan,,, +10/28/2021,7:50,BRONX,10468,40.861217,-73.90437,"(40.861217, -73.90437)",GRAND AVENUE,WEST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472091,Sedan,,,, +10/29/2021,8:25,,,40.748436,-73.984566,"(40.748436, -73.984566)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472582,Station Wagon/Sport Utility Vehicle,Bike,,, +10/27/2021,12:00,,,40.831333,-73.92167,"(40.831333, -73.92167)",WALTON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4471937,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,6:55,BROOKLYN,11226,40.65153,-73.96303,"(40.65153, -73.96303)",CATON AVENUE,SAINT PAULS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4471623,Bus,Sedan,,, +10/28/2021,11:56,BRONX,10458,40.873592,-73.88506,"(40.873592, -73.88506)",VALENTINE AVENUE,EAST 203 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472074,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,18:19,BROOKLYN,11218,40.63555,-73.97803,"(40.63555, -73.97803)",DITMAS AVENUE,MC DONALD AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4471954,Sedan,E-Bike,,, +10/27/2021,16:09,,,,,,SMITH STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4471569,Van,E-Scooter,,, +10/29/2021,17:54,BRONX,10457,40.848755,-73.898705,"(40.848755, -73.898705)",EAST 178 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472898,Sedan,,,, +10/28/2021,8:20,,,,,,VERMONT PLACE,HIGHLAND BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471906,Sedan,Bus,,, +10/29/2021,16:55,QUEENS,11101,40.745815,-73.945656,"(40.745815, -73.945656)",JACKSON AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472148,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,1:40,BROOKLYN,11234,40.624165,-73.917755,"(40.624165, -73.917755)",RALPH AVENUE,AVENUE L,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4471776,Sedan,Sedan,,, +10/22/2021,22:10,BROOKLYN,11221,,,,MONROE STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472530,Sedan,Sedan,,, +10/29/2021,0:00,BROOKLYN,11238,40.683266,-73.96587,"(40.683266, -73.96587)",FULTON STREET,WAVERLY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4472165,Sedan,Bike,,, +10/29/2021,3:43,MANHATTAN,10037,40.81149,-73.94052,"(40.81149, -73.94052)",,,45 WEST 132 STREET,1,0,0,0,0,0,1,0,Fell Asleep,Other Vehicular,,,,4472272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,6:00,,,40.61042,-73.98212,"(40.61042, -73.98212)",AVENUE O,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472479,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,21:04,BRONX,10469,40.869476,-73.854904,"(40.869476, -73.854904)",,,1118 ADEE AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472337,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,23:50,MANHATTAN,10032,40.83263,-73.94341,"(40.83263, -73.94341)",,,525 WEST 156 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Backing Unsafely,,,,4472096,Sedan,Sedan,,, +10/27/2021,18:07,,,40.839767,-73.905396,"(40.839767, -73.905396)",CLAREMONT PARKWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4471793,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,10:30,QUEENS,11105,40.772163,-73.90824,"(40.772163, -73.90824)",,,22-25 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472213,Moped,,,, +10/29/2021,9:59,BRONX,10474,40.809155,-73.88316,"(40.809155, -73.88316)",,,410 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472101,Sedan,Flat Rack,,, +10/29/2021,8:10,,,,,,GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,22:00,QUEENS,11377,40.73768,-73.9217,"(40.73768, -73.9217)",44 STREET,50 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4471965,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,0:00,MANHATTAN,10013,40.716278,-74.00454,"(40.716278, -74.00454)",WORTH STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472401,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,11:24,QUEENS,11357,,,,20 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4471808,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,22:05,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472756,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,12:15,BROOKLYN,11215,40.671932,-73.976265,"(40.671932, -73.976265)",POLHEMUS PLACE,GARFIELD PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4471595,Sedan,Box Truck,,, +04/10/2022,12:53,BRONX,10459,40.823097,-73.89119,"(40.823097, -73.89119)",,,950 ALDUS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517733,Sedan,Sedan,,, +04/10/2022,21:19,,,,,,QUEENS BOULEVARD,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518071,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/10/2022,4:01,BROOKLYN,11228,40.61606,-74.02576,"(40.61606, -74.02576)",92 STREET,DAHLGREN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518449,Sedan,Sedan,,, +04/10/2022,10:20,,,40.658527,-73.939575,"(40.658527, -73.939575)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517771,Sedan,,,, +04/10/2022,2:00,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4518163,Sedan,,,, +04/09/2022,5:16,,,,,,EAST 110 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518497,,,,, +04/10/2022,1:00,,,40.66919,-73.77249,"(40.66919, -73.77249)",BREWER BOULEVARD,144 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517804,Sedan,,,, +04/10/2022,23:20,BRONX,10457,40.85053,-73.891945,"(40.85053, -73.891945)",,,2111 LAFONTAINE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518268,PK,Sedan,,, +04/10/2022,4:10,,,40.760254,-73.83493,"(40.760254, -73.83493)",COLLEGE POINT BOULEVARD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4517645,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,23:00,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518072,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,9:40,,,,,,CLEARVIEW EXPRESSWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4496216,Sedan,Sedan,Tractor Truck Diesel,, +04/09/2022,21:45,BROOKLYN,11203,40.642452,-73.93712,"(40.642452, -73.93712)",,,531 EAST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4518263,Sedan,Sedan,Sedan,, +04/10/2022,8:00,,,,,,QUEENSBORO BRIDGE LOWER,,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517663,Bike,Bike,,, +04/10/2022,5:40,BROOKLYN,11203,40.661354,-73.942276,"(40.661354, -73.942276)",,,545 MAPLE STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4517768,Van,,,, +03/07/2022,10:05,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518526,Sedan,,,, +04/09/2022,13:00,BROOKLYN,11212,40.671673,-73.91124,"(40.671673, -73.91124)",,,339 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518538,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,22:15,QUEENS,11420,40.666855,-73.80425,"(40.666855, -73.80425)",NORTH CONDUIT AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517794,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,20:20,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",104 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4517971,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,0:33,BRONX,10462,40.8387,-73.86372,"(40.8387, -73.86372)",,,1525 WHITE PLAINS ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,19:31,,,40.72293,-73.847336,"(40.72293, -73.847336)",QUEENS BOULEVARD,YELLOWSTONE BOULEVARD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518307,Sedan,Bike,,, +03/06/2022,16:55,BRONX,10451,40.82609,-73.92307,"(40.82609, -73.92307)",GRAND CONCOURSE,EAST 159 STREET,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4518433,Sedan,Bus,,, +04/10/2022,9:40,QUEENS,11413,40.689735,-73.74729,"(40.689735, -73.74729)",SPRINGFIELD BOULEVARD,121 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517704,Sedan,,,, +04/10/2022,16:40,QUEENS,11417,40.67228,-73.852844,"(40.67228, -73.852844)",NORTH CONDUIT AVENUE,83 STREET,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4517829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/10/2022,5:25,,,,,,,,33 WESTMINISTER ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4517561,Sedan,Sedan,,, +04/10/2022,10:00,BROOKLYN,11209,40.612556,-74.0361,"(40.612556, -74.0361)",SHORE ROAD,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4517785,Bike,,,, +04/10/2022,12:54,BRONX,10465,40.83421,-73.81844,"(40.83421, -73.81844)",,,1004 CLARENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518050,Sedan,Box Truck,,, +04/10/2022,13:25,BRONX,10469,40.86124,-73.86172,"(40.86124, -73.86172)",BRONXWOOD AVENUE,WARING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517777,Ambulance,,,, +04/04/2022,10:15,QUEENS,11435,40.701763,-73.80793,"(40.701763, -73.80793)",SUTPHIN BOULEVARD,JAMAICA AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4518385,Sedan,Bus,,, +04/04/2022,12:25,BRONX,10461,40.842075,-73.834724,"(40.842075, -73.834724)",MAYFLOWER AVENUE,ZULETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518270,Sedan,Sedan,,, +04/10/2022,14:00,QUEENS,11435,,,,PINEGROVE STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Failure to Yield Right-of-Way,Unspecified,,,4517871,Sedan,Sedan,Pick-up Truck,, +04/10/2022,18:06,,,40.76468,-73.9643,"(40.76468, -73.9643)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518154,Sedan,Sedan,,, +04/09/2022,18:00,BRONX,10473,40.816795,-73.86578,"(40.816795, -73.86578)",,,551 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518280,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,2:51,MANHATTAN,10031,40.82563,-73.94456,"(40.82563, -73.94456)",,,420 WEST 147 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4518253,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/10/2022,8:34,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517959,Station Wagon/Sport Utility Vehicle,Bike,,, +04/08/2022,14:51,,,40.693142,-73.922,"(40.693142, -73.922)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518338,Sedan,,,, +04/07/2022,12:15,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",EAST 149 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,,4518488,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/10/2022,17:10,QUEENS,11432,40.70546,-73.7949,"(40.70546, -73.7949)",165 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517854,Sedan,,,, +07/19/2021,22:14,,,,,,RIVERDALE AVENUE,WEST 239 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438701,Sedan,,,, +10/30/2021,0:38,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472185,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,11:00,QUEENS,11378,40.724888,-73.89899,"(40.724888, -73.89899)",HAMILTON PLACE,PERRY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518374,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,15:35,BROOKLYN,11211,40.7145,-73.957565,"(40.7145, -73.957565)",METROPOLITAN AVENUE,ROEBLING STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517840,Bus,,,, +04/10/2022,3:05,BRONX,10461,40.85149,-73.85231,"(40.85149, -73.85231)",,,1865 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517528,Sedan,,,, +04/10/2022,14:00,BRONX,10466,40.889427,-73.86295,"(40.889427, -73.86295)",CARPENTER AVENUE,EAST 226 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518409,Sedan,,,, +04/10/2022,4:17,,,40.667976,-73.93399,"(40.667976, -73.93399)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517759,Sedan,,,, +04/10/2022,22:45,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,,,,,4517914,Bike,,,, +04/08/2022,15:20,STATEN ISLAND,10309,40.52865,-74.216835,"(40.52865, -74.216835)",BLOOMINGDALE ROAD,DRUMGOOLE ROAD WEST,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4518474,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/18/2022,19:07,,,40.842464,-73.92414,"(40.842464, -73.92414)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518317,Sedan,Sedan,,, +04/10/2022,19:30,,,40.867958,-73.887695,"(40.867958, -73.887695)",POND PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4517931,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,23:00,QUEENS,11423,40.717087,-73.763115,"(40.717087, -73.763115)",,,89-13 198 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518038,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/25/2022,9:02,BROOKLYN,11211,40.715305,-73.96044,"(40.715305, -73.96044)",BEDFORD AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518327,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/10/2022,15:00,BRONX,10453,40.856987,-73.90897,"(40.856987, -73.90897)",AQUEDUCT AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4517888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,16:42,,,40.89463,-73.88229,"(40.89463, -73.88229)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4517810,Sedan,Sedan,,, +04/08/2022,20:40,QUEENS,11369,40.7628,-73.87403,"(40.7628, -73.87403)",,,95-05 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4518419,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,1:00,MANHATTAN,10017,40.757233,-73.97605,"(40.757233, -73.97605)",MADISON AVENUE,EAST 49 STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4518126,Sedan,Sedan,,, +04/09/2022,14:40,QUEENS,11369,40.757935,-73.87239,"(40.757935, -73.87239)",,,32-45 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518296,Sedan,,,, +04/10/2022,9:42,,,40.63736,-74.13382,"(40.63736, -74.13382)",,,155 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,16:00,BROOKLYN,11207,40.659775,-73.88512,"(40.659775, -73.88512)",,,817 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518017,Sedan,Sedan,,, +04/09/2022,17:50,QUEENS,11385,40.705227,-73.88505,"(40.705227, -73.88505)",,,68-28 70 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4518495,Sedan,,,, +04/10/2022,13:00,BROOKLYN,11237,40.703674,-73.91513,"(40.703674, -73.91513)",SAINT NICHOLAS AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518355,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,22:17,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518028,,,,, +04/10/2022,6:40,QUEENS,11421,40.687145,-73.86247,"(40.687145, -73.86247)",,,78-26 90 ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518367,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,3:31,,,40.604256,-74.00342,"(40.604256, -74.00342)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517496,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,6:20,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518453,Station Wagon/Sport Utility Vehicle,Van,,, +10/30/2021,6:55,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4472326,Sedan,,,, +08/22/2021,4:10,,,40.867256,-73.88363,"(40.867256, -73.88363)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449312,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,17:21,QUEENS,11411,40.690914,-73.72819,"(40.690914, -73.72819)",234 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486531,Sedan,,,, +04/05/2022,21:08,QUEENS,11374,40.730293,-73.85592,"(40.730293, -73.85592)",99 STREET,64 ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518402,Sedan,Sedan,,, +04/10/2022,21:50,,,40.769794,-73.96479,"(40.769794, -73.96479)",EAST 70 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517853,Sedan,Sedan,,, +04/10/2022,21:20,MANHATTAN,10037,40.816616,-73.93484,"(40.816616, -73.93484)",,,2340 5 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Backing Unsafely,,,,4518216,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,6:00,MANHATTAN,10025,40.80682,-73.96106,"(40.80682, -73.96106)",AMSTERDAM AVENUE,WEST 116 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517744,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,20:37,,,,,,47 STREET,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Passenger Distraction,,,,4518175,Sedan,Pick-up Truck,,, +03/15/2022,13:00,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518426,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,0:28,,,,,,TRIBOROUGH BRIDGE,,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,Unspecified,,,4518322,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/10/2022,17:12,MANHATTAN,10029,40.787693,-73.94148,"(40.787693, -73.94148)",EAST 103 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517954,Sedan,,,, +04/10/2022,21:00,BROOKLYN,11208,40.66435,-73.87231,"(40.66435, -73.87231)",STANLEY AVENUE,MILFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4517992,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/08/2022,17:10,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",ROSEDALE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518290,Sedan,Sedan,,, +04/10/2022,20:50,,,40.63686,-73.93849,"(40.63686, -73.93849)",FARRAGUT ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518051,Sedan,,,, +04/10/2022,15:08,BRONX,10460,40.838375,-73.871506,"(40.838375, -73.871506)",,,1575 BRONX RIVER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4517776,Sedan,,,, +04/10/2022,18:30,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4517800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,8:35,,,40.79192,-73.823166,"(40.79192, -73.823166)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517649,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,12:40,BROOKLYN,11230,40.61748,-73.96482,"(40.61748, -73.96482)",EAST 10 STREET,AVENUE M,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4518501,Sedan,Taxi,,, +04/10/2022,13:45,,,40.789623,-73.94007,"(40.789623, -73.94007)",1 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4518081,Moped,,,, +04/10/2022,2:53,BRONX,10457,40.839733,-73.89882,"(40.839733, -73.89882)",,,1639 FULTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517905,Sedan,,,, +06/24/2022,1:43,BROOKLYN,11236,40.64569,-73.91204,"(40.64569, -73.91204)",,,933 REMSEN AVENUE,2,0,1,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4544401,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,15:25,BRONX,10461,40.854576,-73.85471,"(40.854576, -73.85471)",,,2023 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517778,Sedan,Sedan,,, +04/10/2022,19:30,,,40.68484,-73.80607,"(40.68484, -73.80607)",111 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517813,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,17:15,QUEENS,11369,40.758884,-73.871666,"(40.758884, -73.871666)",97 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518297,Station Wagon/Sport Utility Vehicle,Bike,,, +04/08/2022,19:25,BRONX,10473,40.821945,-73.84241,"(40.821945, -73.84241)",ZEREGA AVENUE,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518264,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,11:23,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518271,Sedan,Sedan,,, +04/10/2022,1:22,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4517630,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,15:24,BROOKLYN,11207,40.665848,-73.886696,"(40.665848, -73.886696)",SCHENCK AVENUE,LIVONIA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4518014,Sedan,,,, +04/10/2022,4:03,BRONX,10459,40.81774,-73.896095,"(40.81774, -73.896095)",,,847 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4517730,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,7:58,QUEENS,11367,40.739536,-73.8195,"(40.739536, -73.8195)",,,150-19 61 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4518123,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,0:52,BROOKLYN,11210,40.62334,-73.95595,"(40.62334, -73.95595)",OCEAN AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4517560,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/10/2022,6:57,,,40.66858,-73.84223,"(40.66858, -73.84223)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4517831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,21:00,,,40.820877,-73.94517,"(40.820877, -73.94517)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518258,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,23:30,,,40.85447,-73.91008,"(40.85447, -73.91008)",HARRISON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518047,ambulance,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,8:20,QUEENS,11428,40.723263,-73.74384,"(40.723263, -73.74384)",,,91-01 216 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4517767,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,19:11,,,40.751575,-73.85584,"(40.751575, -73.85584)",ROOSEVELT AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518418,Sedan,Bus,,, +04/05/2022,18:00,BROOKLYN,11235,40.578804,-73.96582,"(40.578804, -73.96582)",BRIGHTON 2 STREET,OCEANVIEW AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4518378,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,19:00,BRONX,10466,40.891388,-73.862885,"(40.891388, -73.862885)",,,4064 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517916,Sedan,,,, +04/10/2022,6:50,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4517877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,22:30,QUEENS,11693,40.590008,-73.81428,"(40.590008, -73.81428)",,,88-15 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518303,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,3:53,MANHATTAN,10031,40.82959,-73.950066,"(40.82959, -73.950066)",RIVERSIDE DRIVE,WEST 149 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518337,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,16:20,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4517932,Station Wagon/Sport Utility Vehicle,PK,,, +04/10/2022,18:15,QUEENS,11426,40.741386,-73.72489,"(40.741386, -73.72489)",UNION TURNPIKE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517764,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,13:00,QUEENS,11418,40.698822,-73.84701,"(40.698822, -73.84701)",102 STREET,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517700,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,19:45,BRONX,10451,40.823467,-73.92447,"(40.823467, -73.92447)",GRAND CONCOURSE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518432,Sedan,,,, +04/10/2022,12:59,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4518148,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,12:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Following Too Closely,,4518279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/10/2022,21:55,QUEENS,11355,40.75097,-73.825775,"(40.75097, -73.825775)",MAIN STREET,ELDER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4517786,Taxi,,,, +04/10/2022,22:01,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,4,0,0,0,0,0,4,0,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4517960,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/10/2022,23:40,,,40.685764,-73.97308,"(40.685764, -73.97308)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518249,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/10/2022,22:25,,,40.740788,-73.98382,"(40.740788, -73.98382)",LEXINGTON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518037,Motorcycle,Sedan,,, +04/10/2022,8:00,,,40.695282,-73.92576,"(40.695282, -73.92576)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4517665,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,2:20,BRONX,10467,40.86175,-73.86269,"(40.86175, -73.86269)",,,2416 MATTHEWS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517529,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,16:30,BROOKLYN,11211,40.71558,-73.960144,"(40.71558, -73.960144)",NORTH 3 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,19:00,,,40.62653,-74.16051,"(40.62653, -74.16051)",HARBOR ROAD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4518532,Box Truck,,,, +04/10/2022,18:30,QUEENS,11416,40.681553,-73.86225,"(40.681553, -73.86225)",76 STREET,97 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4517976,Sedan,Sedan,,, +10/30/2021,3:40,,,,,,CROSS BRONX EXPRESSWAY EXTENSION,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472509,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,16:48,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496315,Box Truck,Sedan,,, +04/10/2022,16:20,,,40.754105,-73.72321,"(40.754105, -73.72321)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4517793,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,9:00,QUEENS,11373,40.730274,-73.88722,"(40.730274, -73.88722)",,,74-25 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518384,Pick-up Truck,,,, +04/08/2022,18:02,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518410,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,12:24,QUEENS,11103,40.767353,-73.9177,"(40.767353, -73.9177)",34 STREET,28 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518315,Moped,,,, +04/05/2022,18:00,BROOKLYN,11236,40.645874,-73.892845,"(40.645874, -73.892845)",AVENUE J,EAST 105 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4518476,Sedan,Sedan,Sedan,Sedan, +04/10/2022,6:00,,,40.593742,-73.96085,"(40.593742, -73.96085)",AVENUE W,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517855,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,7:50,QUEENS,11101,40.75276,-73.93404,"(40.75276, -73.93404)",,,39-22 30 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518330,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,14:00,,,40.694805,-73.8982,"(40.694805, -73.8982)",79 AVENUE,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4518529,Station Wagon/Sport Utility Vehicle,moped,,, +04/10/2022,0:00,QUEENS,11419,40.695854,-73.818924,"(40.695854, -73.818924)",ATLANTIC AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518096,Sedan,,,, +04/10/2022,6:39,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4517752,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,22:45,MANHATTAN,10030,40.820766,-73.939064,"(40.820766, -73.939064)",,,129 WEST 144 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518217,Sedan,Sedan,,, +04/08/2022,20:00,BRONX,10457,40.843372,-73.904945,"(40.843372, -73.904945)",CLAY AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4518441,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,16:47,BROOKLYN,11220,40.640984,-74.01254,"(40.640984, -74.01254)",,,561 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518057,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,9:45,QUEENS,11378,40.72894,-73.89053,"(40.72894, -73.89053)",,,72-51 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517716,Sedan,,,, +04/10/2022,5:20,BROOKLYN,11236,40.633995,-73.90253,"(40.633995, -73.90253)",,,8712 AVENUE L,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4517780,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/09/2022,14:25,,,40.824417,-73.87357,"(40.824417, -73.87357)",BRUCKNER BOULEVARD,MORRISON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4518283,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,7:50,,,40.85144,-73.88896,"(40.85144, -73.88896)",EAST 182 STREET,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518273,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/10/2022,2:50,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",70 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,22:10,,,40.639977,-73.92623,"(40.639977, -73.92623)",EAST 53 STREET,FOSTER AVENUE,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4518480,Station Wagon/Sport Utility Vehicle,Van,,, +04/03/2022,23:15,MANHATTAN,10009,40.723362,-73.98268,"(40.723362, -73.98268)",,,209 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518324,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,10:30,STATEN ISLAND,10301,40.60057,-74.11339,"(40.60057, -74.11339)",TODT HILL ROAD,MERRICK AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4517937,Sedan,Pick-up Truck,,, +04/02/2022,23:00,QUEENS,11358,40.760147,-73.80684,"(40.760147, -73.80684)",,,42-29 159 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518390,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,22:30,,,,,,GRAND CENTRAL PARKWAY,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518404,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,3:04,QUEENS,11429,40.705353,-73.73218,"(40.705353, -73.73218)",225 STREET,112 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517503,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,20:05,STATEN ISLAND,10301,40.61292,-74.099884,"(40.61292, -74.099884)",CLOVE ROAD,MARTHA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518543,Sedan,,,, +04/10/2022,12:54,BROOKLYN,11207,40.679768,-73.894005,"(40.679768, -73.894005)",JAMAICA AVENUE,BRADFORD STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518013,Sedan,,,, +07/19/2021,2:05,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439041,Sedan,,,, +10/30/2021,18:45,MANHATTAN,10065,,,,LEXINGTON AVENUE,EAST 62 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4472543,E-Scooter,,,, +04/10/2022,23:25,QUEENS,11379,40.709076,-73.87368,"(40.709076, -73.87368)",,,78-21 69 ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4518030,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,13:36,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4518459,Sedan,Sedan,,, +04/10/2022,11:20,BROOKLYN,11229,40.59352,-73.957306,"(40.59352, -73.957306)",,,2322 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4517852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/28/2022,8:00,QUEENS,11370,40.764484,-73.89077,"(40.764484, -73.89077)",78 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4518291,Sedan,,,, +04/10/2022,7:46,BRONX,10456,40.830868,-73.902885,"(40.830868, -73.902885)",,,1253 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517898,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,22:52,BROOKLYN,11218,40.64295,-73.977325,"(40.64295, -73.977325)",BEVERLEY ROAD,EAST 3 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4518507,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,1:10,MANHATTAN,10035,40.796177,-73.933754,"(40.796177, -73.933754)",,,452 EAST 117 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518023,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,5:16,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4517775,Sedan,,,, +04/10/2022,0:16,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4517606,Sedan,,,, +04/10/2022,16:21,BROOKLYN,11219,40.629368,-74.00876,"(40.629368, -74.00876)",66 STREET,10 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518179,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,23:45,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518298,Sedan,,,, +04/10/2022,1:06,QUEENS,11419,40.689606,-73.81806,"(40.689606, -73.81806)",,,103-14 127 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4517815,Sedan,Sedan,Sedan,, +04/10/2022,17:20,QUEENS,11377,40.740425,-73.89671,"(40.740425, -73.89671)",QUEENS BOULEVARD,68 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4517799,Sedan,,,, +04/08/2022,18:58,BRONX,10473,40.820877,-73.8667,"(40.820877, -73.8667)",ROSEDALE AVENUE,LAFAYETTE AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4518265,Sedan,Bike,,, +04/10/2022,17:30,QUEENS,11385,40.70082,-73.88054,"(40.70082, -73.88054)",,,73-57 70 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4518494,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/10/2022,15:00,QUEENS,11432,40.71512,-73.77358,"(40.71512, -73.77358)",188 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517887,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/02/2022,17:30,BROOKLYN,11236,40.634087,-73.88372,"(40.634087, -73.88372)",,,1560 EAST 102 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518425,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,15:39,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4518368,Sedan,,,, +04/10/2022,4:05,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",HINSDALE STREET,NEW LOTS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4517989,Sedan,Sedan,,, +04/10/2022,3:55,,,40.849453,-73.906006,"(40.849453, -73.906006)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517861,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,7:27,QUEENS,11101,40.753586,-73.93902,"(40.753586, -73.93902)",,,40-14 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518332,Taxi,,,, +04/06/2022,7:20,BROOKLYN,11225,40.660435,-73.94542,"(40.660435, -73.94542)",MIDWOOD STREET,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4518353,Sedan,,,, +04/10/2022,5:30,BROOKLYN,11224,40.573708,-73.99072,"(40.573708, -73.99072)",WEST 24 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518379,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,14:30,BRONX,10469,40.868095,-73.83383,"(40.868095, -73.83383)",,,1930 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517920,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,4:10,,,40.560825,-74.13482,"(40.560825, -74.13482)",AMBOY ROAD,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4543851,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,15:55,,,40.61821,-73.89728,"(40.61821, -73.89728)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4544245,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,10:15,,,40.58584,-73.93788,"(40.58584, -73.93788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4544248,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/05/2022,4:45,BROOKLYN,11207,40.69003,-73.911,"(40.69003, -73.911)",CENTRAL AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4543453,Sedan,,,, +06/30/2022,17:05,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544328,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,1:10,,,40.8178,-73.89299,"(40.8178, -73.89299)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4543950,Sedan,Motorcycle,Motorcycle,, +07/05/2022,16:54,BROOKLYN,11217,40.68474,-73.974144,"(40.68474, -73.974144)",,,150 SOUTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544005,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,23:40,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,MORGAN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544423,E-Scooter,,,, +06/28/2022,17:50,BROOKLYN,11222,40.732864,-73.9566,"(40.732864, -73.9566)",,,121 HURON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,12:41,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4543734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,9:00,STATEN ISLAND,10301,40.643818,-74.07637,"(40.643818, -74.07637)",,,35 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544165,Sedan,,,, +07/05/2022,0:04,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,2,0,2,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4543783,Sedan,,,, +06/29/2022,15:15,,,40.650944,-73.91413,"(40.650944, -73.91413)",AVENUE B,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544314,Van,,,, +07/01/2022,12:10,BROOKLYN,11206,40.7006,-73.94301,"(40.7006, -73.94301)",,,741 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4544411,PK,Sedan,,, +07/05/2022,10:50,BROOKLYN,11220,40.641434,-74.01782,"(40.641434, -74.01782)",4 AVENUE,59 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4543961,Bus,Sedan,,, +07/05/2022,3:00,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543654,Sedan,Sedan,,, +07/05/2022,4:30,QUEENS,11101,40.75244,-73.929825,"(40.75244, -73.929825)",,,38-10 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4543539,Sedan,,,, +06/29/2022,17:00,BRONX,10471,40.907497,-73.90886,"(40.907497, -73.90886)",,,10 SIGMA PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544125,Box Truck,,,, +07/01/2022,18:00,BRONX,10457,40.846733,-73.90649,"(40.846733, -73.90649)",EAST 175 STREET,MONROE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544174,Sedan,,,, +07/05/2022,6:33,QUEENS,11414,40.665924,-73.83504,"(40.665924, -73.83504)",SOUTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4543698,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2022,2:46,,,40.81286,-73.96341,"(40.81286, -73.96341)",WEST 122 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4543677,Motorcycle,,,, +07/04/2022,1:10,,,40.7858,-73.85131,"(40.7858, -73.85131)",14 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4544144,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/28/2022,15:56,,,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,View Obstructed/Limited,,,,4544307,Sedan,,,, +07/05/2022,12:20,,,40.64316,-74.01922,"(40.64316, -74.01922)",3 AVENUE,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4543766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,17:11,BROOKLYN,11210,40.62334,-73.95595,"(40.62334, -73.95595)",AVENUE K,OCEAN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4543876,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/05/2022,15:27,BRONX,10452,40.831974,-73.9235,"(40.831974, -73.9235)",RIVER AVENUE,EAST 165 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4544265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,23:10,,,40.687668,-73.951035,"(40.687668, -73.951035)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544222,Taxi,Station Wagon/Sport Utility Vehicle,,, +06/23/2022,22:05,BROOKLYN,11249,40.699482,-73.96104,"(40.699482, -73.96104)",RUTLEDGE STREET,KENT AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4544397,Taxi,,,, +06/20/2022,0:00,MANHATTAN,10027,40.813828,-73.951935,"(40.813828, -73.951935)",,,409 WEST 129 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544419,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,17:30,,,40.72129,-73.94888,"(40.72129, -73.94888)",ENGERT AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439173,Sedan,,,, +10/30/2021,2:00,,,,,,MACOMBS DAM BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4472852,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,20:20,BROOKLYN,11235,40.5774,-73.95404,"(40.5774, -73.95404)",BRIGHTON BEACH AVENUE,CORBIN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4543927,Sedan,Sedan,,, +07/05/2022,13:20,,,40.693832,-73.909615,"(40.693832, -73.909615)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543743,Sedan,Sedan,,, +07/02/2022,23:35,STATEN ISLAND,10309,40.528275,-74.20941,"(40.528275, -74.20941)",,,525 ALBOURNE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544355,Station Wagon/Sport Utility Vehicle,,,, +06/12/2022,12:00,,,40.69097,-73.94833,"(40.69097, -73.94833)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544202,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,21:45,,,40.695705,-73.94637,"(40.695705, -73.94637)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4544211,Taxi,Bike,,, +06/07/2022,16:48,,,40.617565,-74.15332,"(40.617565, -74.15332)",,,10 DEPPE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544230,Sedan,,,, +07/05/2022,18:06,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4543815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,19:15,,,40.83406,-73.944885,"(40.83406, -73.944885)",BROADWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,,,4435409,E-Scooter,Bike,Sedan,, +07/09/2021,14:25,BROOKLYN,11203,40.650467,-73.92443,"(40.650467, -73.92443)",SNYDER AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435527,Sedan,Sedan,,, +07/12/2021,20:35,,,40.84394,-73.93903,"(40.84394, -73.93903)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4436692,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:50,BROOKLYN,11207,40.674603,-73.886536,"(40.674603, -73.886536)",,,643 GLENMORE AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4438379,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/19/2021,13:55,BROOKLYN,11211,40.708504,-73.95811,"(40.708504, -73.95811)",,,297 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438616,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/19/2021,19:36,BRONX,10457,40.849247,-73.88775,"(40.849247, -73.88775)",,,2130 CROTONA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:21,BRONX,10456,40.829136,-73.9114,"(40.829136, -73.9114)",EAST 166 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4438662,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,23:30,QUEENS,11103,40.767525,-73.91203,"(40.767525, -73.91203)",,,25-75 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439085,Sedan,,,, +07/19/2021,12:56,BROOKLYN,11208,40.68341,-73.87687,"(40.68341, -73.87687)",,,165 RICHMOND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439059,Sedan,,,, +07/19/2021,0:35,QUEENS,11373,40.74764,-73.8789,"(40.74764, -73.8789)",ELBERTSON STREET,BRITTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438154,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,14:46,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4438645,Sedan,Sedan,,, +07/19/2021,0:46,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438862,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,20:00,MANHATTAN,10028,40.778137,-73.95449,"(40.778137, -73.95449)",3 AVENUE,EAST 85 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438682,Sedan,Motorcycle,,, +07/15/2021,1:21,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439025,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,22:10,BROOKLYN,11212,40.662964,-73.90614,"(40.662964, -73.90614)",LIVONIA AVENUE,WATKINS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439161,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,17:00,BROOKLYN,11234,40.619545,-73.91727,"(40.619545, -73.91727)",RALPH AVENUE,AVENUE N,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4439257,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,4:00,QUEENS,11419,40.691135,-73.82184,"(40.691135, -73.82184)",101 AVENUE,124 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4438211,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,18:14,BROOKLYN,11237,40.703857,-73.91851,"(40.703857, -73.91851)",WYCKOFF AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438698,Bus,Sedan,,, +07/19/2021,0:00,BROOKLYN,11239,40.652462,-73.87658,"(40.652462, -73.87658)",,,590 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4439079,Bike,,,, +07/08/2021,14:12,MANHATTAN,10022,40.753567,-73.9654,"(40.753567, -73.9654)",,,433 EAST 50 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439138,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,16:59,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4438995,Sedan,,,, +07/19/2021,0:05,,,40.683758,-73.8643,"(40.683758, -73.8643)",ATLANTIC AVENUE,75 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438326,Sedan,Van,,, +07/19/2021,19:30,STATEN ISLAND,10305,40.596508,-74.07732,"(40.596508, -74.07732)",,,69 KENSINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438590,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,2:58,QUEENS,11372,40.751884,-73.88376,"(40.751884, -73.88376)",83 STREET,35 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438739,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/19/2021,16:15,,,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438788,Sedan,Box Truck,,, +07/19/2021,22:23,BROOKLYN,11226,40.652348,-73.95552,"(40.652348, -73.95552)",,,77 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438874,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:10,,,,,,SHORE PARKWAY,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4438942,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,12:43,,,40.639706,-74.13909,"(40.639706, -74.13909)",RICHMOND TERRACE,NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4438534,Sedan,,,, +07/19/2021,9:50,QUEENS,11373,40.74711,-73.870026,"(40.74711, -73.870026)",,,95-09 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438483,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,1:25,BROOKLYN,11222,40.72588,-73.941696,"(40.72588, -73.941696)",KINGSLAND AVENUE,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4439183,Sedan,,,, +07/19/2021,16:45,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4439231,Station Wagon/Sport Utility Vehicle,Bike,,, +07/17/2021,15:16,,,40.58077,-73.96556,"(40.58077, -73.96556)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439320,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/19/2021,13:15,,,40.743477,-73.73286,"(40.743477, -73.73286)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4438527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,11:55,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4438484,Sedan,Sedan,,, +07/15/2021,20:18,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,20:25,QUEENS,11357,40.781715,-73.823845,"(40.781715, -73.823845)",20 AVENUE,144 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438584,Sedan,,,, +07/19/2021,4:54,QUEENS,11422,40.669563,-73.73921,"(40.669563, -73.73921)",234 STREET,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4438363,Sedan,Pick-up Truck,,, +07/19/2021,18:05,,,,,,SHELL ROAD,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438937,Sedan,Sedan,,, +07/19/2021,18:00,BROOKLYN,11214,40.60476,-74.0017,"(40.60476, -74.0017)",,,8664 19 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438675,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,12:30,,,40.653576,-73.95946,"(40.653576, -73.95946)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438703,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,6:57,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4438986,Carry All,Carry All,,, +07/19/2021,17:25,QUEENS,11104,40.738598,-73.927246,"(40.738598, -73.927246)",GREENPOINT AVENUE,39 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,8:24,BRONX,10456,40.823334,-73.90574,"(40.823334, -73.90574)",EAST 163 STREET,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438965,Sedan,,,, +07/19/2021,9:10,,,40.71576,-73.74655,"(40.71576, -73.74655)",JAMAICA AVENUE,212 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4438447,Sedan,,,, +07/19/2021,5:43,BROOKLYN,11236,40.6435,-73.9026,"(40.6435, -73.9026)",,,154 CONKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4438564,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/19/2021,17:51,BRONX,10468,40.870575,-73.89169,"(40.870575, -73.89169)",,,112 EAST 198 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438650,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,11:43,QUEENS,11378,40.723183,-73.90059,"(40.723183, -73.90059)",GRAND AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4439177,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/19/2021,15:40,QUEENS,11105,40.77453,-73.91581,"(40.77453, -73.91581)",,,23-48 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439339,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,23:20,,,40.73019,-73.97255,"(40.73019, -73.97255)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,Following Too Closely,Unspecified,,4438776,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/18/2021,3:47,STATEN ISLAND,10310,,,,FOREST AVENUE,N MADA,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4439049,Motorcycle,,,, +07/19/2021,11:20,QUEENS,11375,40.72688,-73.83907,"(40.72688, -73.83907)",69 AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439191,Sedan,,,, +07/19/2021,14:14,,,40.66703,-73.94799,"(40.66703, -73.94799)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438594,Sedan,,,, +07/12/2021,22:45,MANHATTAN,10018,40.750713,-73.98409,"(40.750713, -73.98409)",,,20 WEST 37 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,21:59,MANHATTAN,10016,40.74285,-73.97721,"(40.74285, -73.97721)",2 AVENUE,EAST 31 STREET,,1,0,1,0,0,0,0,0,Oversized Vehicle,,,,,4438631,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,20:00,,,,,,LORIMER STREET,MEEKER AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Tinted Windows,,,,4439118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,11:10,MANHATTAN,10017,40.7528,-73.979294,"(40.7528, -73.979294)",EAST 42 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438489,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/12/2021,20:40,MANHATTAN,10010,,,,2 AVENUE,23 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439024,Taxi,Bike,,, +07/19/2021,0:45,BROOKLYN,11238,40.671947,-73.96351,"(40.671947, -73.96351)",,,135 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4438825,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Taxi, +07/19/2021,20:15,BROOKLYN,11220,40.639507,-74.01013,"(40.639507, -74.01013)",,,674 56 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438908,Bike,,,, +07/16/2021,10:30,MANHATTAN,10001,40.74638,-73.99136,"(40.74638, -73.99136)",,,120 WEST 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439331,Pick-up Truck,FIRETRUCK,,, +07/18/2021,13:09,BROOKLYN,11234,40.60919,-73.90744,"(40.60919, -73.90744)",,,2522 EAST 66 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4439016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,23:00,BRONX,10451,40.82161,-73.92822,"(40.82161, -73.92822)",,,646 GERARD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Aggressive Driving/Road Rage,,,4439099,Sedan,Sedan,Sedan,, +07/19/2021,17:35,BROOKLYN,11201,40.68481,-73.99177,"(40.68481, -73.99177)",BALTIC STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438668,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,9:50,BROOKLYN,11208,40.673176,-73.87216,"(40.673176, -73.87216)",,,156 DOSCHER STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4439066,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/19/2021,18:30,,,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438699,Sedan,Sedan,,, +07/19/2021,15:43,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4438641,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,20:00,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,DYRE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4438759,Sedan,Sedan,,, +07/19/2021,14:15,MANHATTAN,10017,,,,east 41 street,tunnel exit street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438606,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,11:15,,,40.680977,-74.00498,"(40.680977, -74.00498)",HAMILTON AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439035,Sedan,Tractor Truck Gasoline,,, +07/19/2021,2:59,,,40.65768,-73.925415,"(40.65768, -73.925415)",CLARKSON AVENUE,REMSEN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439206,,,,, +07/19/2021,12:10,,,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4438715,Sedan,Sedan,,, +07/19/2021,12:17,BRONX,10468,40.877033,-73.88774,"(40.877033, -73.88774)",JEROME AVENUE,VANCORTLANDT AVENUE EAST,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4438646,PK,,,, +07/19/2021,18:00,BRONX,10466,40.902603,-73.8438,"(40.902603, -73.8438)",,,4518 HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438717,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/19/2021,23:25,MANHATTAN,10025,40.79488,-73.976364,"(40.79488, -73.976364)",WEST 94 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4438686,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,14:00,,,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439074,Sedan,E-Bike,,, +07/19/2021,2:30,BROOKLYN,11206,40.703587,-73.944336,"(40.703587, -73.944336)",MANHATTAN AVENUE,MOORE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4438162,Bike,,,, +07/04/2021,0:20,BROOKLYN,11223,40.59931,-73.972916,"(40.59931, -73.972916)",MC DONALD AVENUE,AVENUE T,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4439125,Sedan,Sedan,,, +07/19/2021,15:05,BRONX,10454,40.809067,-73.922775,"(40.809067, -73.922775)",,,375 EAST 138 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4439281,Bike,,,, +07/19/2021,19:15,,,40.701527,-73.98957,"(40.701527, -73.98957)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4438626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,7:30,,,40.89204,-73.85814,"(40.89204, -73.85814)",,,EAST 231 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439002,Sedan,Sedan,,, +07/17/2021,23:00,BROOKLYN,11249,40.707092,-73.96674,"(40.707092, -73.96674)",,,50 DIVISION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439256,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,18:30,BROOKLYN,11212,40.672745,-73.90766,"(40.672745, -73.90766)",STONE AVENUE,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4439205,Sedan,Sedan,Sedan,, +07/19/2021,15:30,BROOKLYN,11207,40.66701,-73.9004,"(40.66701, -73.9004)",SNEDIKER AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,3:34,BROOKLYN,11229,40.609768,-73.94453,"(40.609768, -73.94453)",,,2901 QUENTIN ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438234,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:00,STATEN ISLAND,10310,40.62858,-74.12981,"(40.62858, -74.12981)",,,17 LLEWELLYN PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439083,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,1:41,,,,,,HARLEM RIVER DRIVE RAMP,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4438604,Sedan,,,, +07/19/2021,0:20,,,40.761486,-73.96061,"(40.761486, -73.96061)",1 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438688,Sedan,,,, +07/19/2021,10:34,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,UTICA AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4439143,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,19:50,,,40.844604,-73.90348,"(40.844604, -73.90348)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438642,Sedan,,,, +07/19/2021,22:41,BRONX,10465,40.819572,-73.820724,"(40.819572, -73.820724)",QUINCY AVENUE,SAMPSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4438994,Sedan,Sedan,Sedan,, +06/26/2021,23:40,MANHATTAN,10036,40.75792,-73.98743,"(40.75792, -73.98743)",,,234 WEST 44 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439033,Sedan,Sedan,,, +07/19/2021,2:04,BRONX,10453,40.854385,-73.906815,"(40.854385, -73.906815)",,,2070 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438663,Sedan,,,, +06/30/2021,18:10,,,40.756367,-73.96012,"(40.756367, -73.96012)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439234,Box Truck,,,, +07/18/2021,11:00,,,40.64398,-73.89578,"(40.64398, -73.89578)",EAST 101 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4439116,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,8:45,,,40.843422,-73.89239,"(40.843422, -73.89239)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438488,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,1:30,,,40.748512,-73.98872,"(40.748512, -73.98872)",WEST 32 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438528,Sedan,,,, +07/19/2021,7:53,BRONX,10459,40.82186,-73.88834,"(40.82186, -73.88834)",BRUCKNER BOULEVARD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438807,Sedan,Sedan,,, +07/14/2021,18:00,,,40.714073,-73.95534,"(40.714073, -73.95534)",HAVEMEYER STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439226,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,22:10,,,40.71249,-73.93848,"(40.71249, -73.93848)",OLIVE STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4438618,E-Bike,,,, +07/19/2021,19:48,QUEENS,11355,,,,PERIMETER ROAD,SHEA ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438977,Sedan,Sedan,,, +07/19/2021,17:46,BROOKLYN,11212,,,,CHRISTOPHER AVE,Liberty avenue,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4439155,Sedan,Sedan,,, +07/19/2021,6:25,,,40.794052,-73.970375,"(40.794052, -73.970375)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4438449,van,Sedan,,, +07/19/2021,6:50,BROOKLYN,11212,40.675205,-73.904396,"(40.675205, -73.904396)",PACIFIC STREET,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Brakes Defective,,,,4438723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,5:20,STATEN ISLAND,10314,40.61668,-74.12358,"(40.61668, -74.12358)",MANOR ROAD,POTTER AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4438829,Sedan,,,, +07/19/2021,1:35,BROOKLYN,11223,40.603725,-73.97653,"(40.603725, -73.97653)",,,250 HIGHLAWN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4438517,Sedan,,,, +07/19/2021,15:30,BRONX,10467,40.880424,-73.87712,"(40.880424, -73.87712)",,,215 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438649,Sedan,Van,,, +07/04/2021,22:30,STATEN ISLAND,10305,40.607647,-74.07666,"(40.607647, -74.07666)",,,481 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439050,Sedan,,,, +07/15/2021,15:00,,,40.753857,-73.91764,"(40.753857, -73.91764)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439094,Station Wagon/Sport Utility Vehicle,Bike,,, +07/19/2021,14:37,QUEENS,11368,40.746166,-73.868225,"(40.746166, -73.868225)",,,42-09 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438987,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,19:52,,,40.77348,-73.804085,"(40.77348, -73.804085)",26 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4438611,Sedan,Pick-up Truck,Sedan,, +07/19/2021,16:10,QUEENS,11417,40.67585,-73.850655,"(40.67585, -73.850655)",SUTTER AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438655,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,21:12,,,40.74073,-73.981766,"(40.74073, -73.981766)",3 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439337,Sedan,,,, +07/14/2021,21:15,QUEENS,11385,40.698345,-73.890205,"(40.698345, -73.890205)",64 LANE,COOPER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439179,Motorscooter,,,, +07/14/2021,21:30,BROOKLYN,11216,40.685326,-73.94433,"(40.685326, -73.94433)",,,354 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439038,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,9:42,BROOKLYN,11226,40.65371,-73.96271,"(40.65371, -73.96271)",,,101 WOODRUFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4439303,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +07/19/2021,12:30,BRONX,10466,40.893665,-73.86063,"(40.893665, -73.86063)",EAST 232 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438793,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,5:26,,,40.850395,-73.9228,"(40.850395, -73.9228)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438294,Sedan,,,, +07/19/2021,18:16,,,40.60102,-74.004364,"(40.60102, -74.004364)",BAY 22 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,16:00,,,40.757725,-73.86372,"(40.757725, -73.86372)",LINDEN PLACE,132 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4438585,School Bus,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,19:00,QUEENS,11435,40.700768,-73.81019,"(40.700768, -73.81019)",144 PLACE,91 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438861,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +07/19/2021,18:35,BROOKLYN,11217,40.679047,-73.97868,"(40.679047, -73.97868)",STERLING PLACE,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438733,Sedan,,,, +07/19/2021,12:02,,,40.84002,-73.8373,"(40.84002, -73.8373)",EAST TREMONT AVENUE,ERICSON PLACE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4438674,Sedan,Moped,,, +07/17/2021,19:00,MANHATTAN,10031,40.827103,-73.94996,"(40.827103, -73.94996)",BROADWAY,WEST 146 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439103,Sedan,Sedan,,, +07/19/2021,1:30,BRONX,10463,40.880142,-73.9174,"(40.880142, -73.9174)",,,629 KAPPOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438702,Taxi,,,, +07/19/2021,4:56,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4438630,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,22:32,QUEENS,11355,,,,Perimeter road,Avenue of Discovery,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,,,,,4438978,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,17:55,BROOKLYN,11234,40.63419,-73.91927,"(40.63419, -73.91927)",,,5924 GLENWOOD ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4439017,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,19:17,BRONX,10468,40.880688,-73.885704,"(40.880688, -73.885704)",PAUL AVENUE,MOSHOLU PARKWAY,,4,0,4,0,0,0,0,0,Driver Inexperience,,,,,4438653,Sedan,,,, +07/19/2021,10:09,,,40.73807,-73.93756,"(40.73807, -73.93756)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4438872,Sedan,,,, +07/19/2021,0:25,QUEENS,11411,40.69447,-73.74388,"(40.69447, -73.74388)",,,216-17 118 AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4438362,Sedan,Sedan,Sedan,, +07/19/2021,21:30,BROOKLYN,11218,40.632084,-73.97622,"(40.632084, -73.97622)",,,780 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438707,Sedan,Sedan,,, +07/19/2021,14:00,QUEENS,11434,40.66546,-73.76389,"(40.66546, -73.76389)",181 STREET,145 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438533,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,14:35,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",VARICK STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,23:15,QUEENS,11355,40.7426,-73.82081,"(40.7426, -73.82081)",148 STREET,59 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4438624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,15:50,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,13:00,BROOKLYN,11207,40.673294,-73.89519,"(40.673294, -73.89519)",GLENMORE AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439065,Sedan,Box Truck,,, +07/19/2021,16:39,MANHATTAN,10005,40.709045,-74.008896,"(40.709045, -74.008896)",MAIDEN LANE,NASSAU STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438666,Sedan,Sedan,,, +07/19/2021,17:30,,,40.663643,-73.87395,"(40.663643, -73.87395)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439075,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,0:15,BROOKLYN,11223,40.59852,-73.97303,"(40.59852, -73.97303)",MC DONALD AVENUE,SLOAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438177,Sedan,,,, +07/14/2021,10:30,BROOKLYN,11220,40.636917,-74.02491,"(40.636917, -74.02491)",,,311 SENATOR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439128,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,22:30,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,4:12,,,40.6958,-73.99824,"(40.6958, -73.99824)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4439276,Sedan,,,, +07/16/2021,23:10,BROOKLYN,11249,40.722836,-73.95687,"(40.722836, -73.95687)",WYTHE AVENUE,NORTH 13 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439227,Motorscooter,,,, +07/19/2021,22:43,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CROSS BRONX EXPRESSWAY,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438841,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,10:15,,,,,,TUNNEL EXIT STREET,east 37 street,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438516,Sedan,Sedan,,, +07/19/2021,10:36,MANHATTAN,10013,40.716927,-73.99813,"(40.716927, -73.99813)",,,192 CANAL STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438521,Sedan,Sedan,,, +07/19/2021,19:11,,,40.894054,-73.86248,"(40.894054, -73.86248)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438761,Sedan,Sedan,,, +07/18/2021,11:00,BROOKLYN,11220,40.647205,-74.01383,"(40.647205, -74.01383)",,,320 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439122,Sedan,Sedan,,, +07/19/2021,4:55,BRONX,10472,40.83336,-73.872505,"(40.83336, -73.872505)",,,1354 FTELEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:40,BRONX,10459,40.82101,-73.89733,"(40.82101, -73.89733)",,,921 EAST 163 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438809,Ambulance,Sedan,,, +07/05/2021,1:30,,,40.88736,-73.89426,"(40.88736, -73.89426)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439172,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,22:05,BROOKLYN,11236,40.651653,-73.91738,"(40.651653, -73.91738)",AVENUE A,EAST 91 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438610,Sedan,Sedan,,, +07/19/2021,23:30,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438921,Sedan,Taxi,,, +07/14/2021,17:35,BROOKLYN,11222,40.722992,-73.9452,"(40.722992, -73.9452)",,,168 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439225,Box Truck,,,, +07/19/2021,3:07,,,,,,BELT PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4438423,Sedan,,,, +07/19/2021,15:50,,,40.88415,-73.82607,"(40.88415, -73.82607)",CONNER STREET,NEW ENGLAND THRUWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438765,Sedan,Sedan,,, +07/19/2021,18:30,MANHATTAN,10011,40.743427,-73.99802,"(40.743427, -73.99802)",,,251 WEST 21 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438899,Sedan,,,, +07/19/2021,7:53,QUEENS,11368,40.738113,-73.858376,"(40.738113, -73.858376)",58 AVENUE,100 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438976,Sedan,,,, +07/19/2021,9:15,,,40.638767,-74.02162,"(40.638767, -74.02162)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438450,Box Truck,Sedan,,, +07/19/2021,9:30,QUEENS,11372,40.75657,-73.87585,"(40.75657, -73.87585)",,,92-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4438539,Sedan,,,, +07/17/2021,5:40,BROOKLYN,11222,40.719845,-73.93946,"(40.719845, -73.93946)",,,91 DEBEVOISE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439181,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:50,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",LINDEN BOULEVARD,UTICA AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4439203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,9:35,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438603,Motorcycle,Pick-up Truck,,, +07/19/2021,11:35,,,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438695,Ambulance,van,E-Bike,, +07/19/2021,9:17,BRONX,10463,40.87716,-73.91787,"(40.87716, -73.91787)",,,2500 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,3:00,BRONX,10451,40.82616,-73.9168,"(40.82616, -73.9168)",,,299 EAST 162 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438997,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,12:00,MANHATTAN,10031,40.82971,-73.946495,"(40.82971, -73.946495)",,,560 WEST 151 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439108,Sedan,,,, +07/19/2021,6:36,QUEENS,11373,40.737114,-73.88561,"(40.737114, -73.88561)",51 AVENUE,HILLYER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438487,Garbage or Refuse,Sedan,,, +07/19/2021,15:00,MANHATTAN,10000,40.777107,-73.96397,"(40.777107, -73.96397)",,,2 TRANSVERSE ROAD NUMBER TWO,0,0,0,0,0,0,0,0,Unspecified,,,,,4438621,Sedan,,,, +07/19/2021,4:45,MANHATTAN,10029,40.79552,-73.934296,"(40.79552, -73.934296)",,,416 EAST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438343,Sedan,Sedan,,, +07/19/2021,16:30,,,40.787544,-73.82394,"(40.787544, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438587,Sedan,Sedan,,, +07/18/2021,16:45,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",EAST 141 STREET,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,21:40,,,40.76657,-73.888466,"(40.76657, -73.888466)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4438747,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,0:00,BROOKLYN,11217,40.687187,-73.97972,"(40.687187, -73.97972)",,,59 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438574,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,13:00,,,40.670063,-73.8798,"(40.670063, -73.8798)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439064,Sedan,,,, +07/19/2021,11:16,BROOKLYN,11220,40.639694,-74.010445,"(40.639694, -74.010445)",,,654 56 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438924,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,0:00,,,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438643,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,16:00,BRONX,10474,40.817112,-73.88504,"(40.817112, -73.88504)",,,1343 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4438805,Sedan,,,, +07/19/2021,9:50,,,40.76788,-73.9815,"(40.76788, -73.9815)",CENTRAL PARK SOUTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438951,Sedan,,,, +07/19/2021,4:49,,,40.525803,-74.22559,"(40.525803, -74.22559)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438864,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,15:30,,,40.871193,-73.9141,"(40.871193, -73.9141)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438680,Sedan,Sedan,,, +07/09/2021,0:03,MANHATTAN,10016,40.748016,-73.98354,"(40.748016, -73.98354)",,,19 EAST 34 STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4439032,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,13:20,,,40.60345,-74.009,"(40.60345, -74.009)",BAY 16 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439153,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/19/2021,14:50,BROOKLYN,11229,40.60215,-73.93438,"(40.60215, -73.93438)",,,3126 AVENUE U,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438638,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,17:51,STATEN ISLAND,10310,40.639175,-74.121826,"(40.639175, -74.121826)",RICHMOND TERRACE,ALASKA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439052,Sedan,Sedan,,, +07/19/2021,13:30,BROOKLYN,11203,40.64491,-73.92192,"(40.64491, -73.92192)",CLARENDON ROAD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438629,Sedan,,,, +07/19/2021,3:20,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4438251,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:30,BROOKLYN,11208,40.669064,-73.86557,"(40.669064, -73.86557)",LINDEN BOULEVARD,LINCOLN AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4439076,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,7:53,BROOKLYN,11226,40.64161,-73.96356,"(40.64161, -73.96356)",CORTELYOU ROAD,EAST 16 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4439305,Station Wagon/Sport Utility Vehicle,Bus,,, +07/19/2021,13:36,MANHATTAN,10003,40.73416,-73.98863,"(40.73416, -73.98863)",,,4 IRVING PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438529,Sedan,Pick-up Truck,,, +07/19/2021,8:50,BRONX,10454,40.808857,-73.93014,"(40.808857, -73.93014)",3 AVENUE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438658,Sedan,Box Truck,,, +07/16/2021,12:42,BROOKLYN,11222,40.7295,-73.953964,"(40.7295, -73.953964)",MANHATTAN AVENUE,MILTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439238,Sedan,Flat Bed,,, +07/18/2021,20:20,,,40.87022,-73.9147,"(40.87022, -73.9147)",10 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439144,Bike,,,, +07/06/2021,23:20,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439008,Sedan,Sedan,,, +07/19/2021,19:44,,,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438664,Van,Van,,, +07/17/2021,14:20,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Fell Asleep,Following Too Closely,Unspecified,,,4439336,Sedan,Sedan,Sedan,, +07/19/2021,14:23,MANHATTAN,10013,40.720432,-74.00675,"(40.720432, -74.00675)",,,16 ERICSSON PLACE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4438729,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,22:21,BROOKLYN,11234,0,0,"(0.0, 0.0)",,,2875 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4439018,Motorcycle,,,, +07/19/2021,16:05,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",JEROME AVENUE,WEST 192 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4438648,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,11:55,,,40.765385,-73.83339,"(40.765385, -73.83339)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4438612,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,12:12,BROOKLYN,11208,40.65871,-73.87244,"(40.65871, -73.87244)",FLATLANDS AVENUE,SHEPHERD AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4439068,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/13/2021,13:56,QUEENS,11102,40.770405,-73.9164,"(40.770405, -73.9164)",,,32-11 ASTORIA BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4439093,Box Truck,,,, +07/19/2021,15:29,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438791,,,,, +07/15/2021,5:30,BRONX,10452,40.840225,-73.91769,"(40.840225, -73.91769)",EAST 170 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4438988,Sedan,,,, +07/19/2021,13:30,BROOKLYN,11231,40.683067,-73.99557,"(40.683067, -73.99557)",COURT STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438671,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/19/2021,10:30,BROOKLYN,11226,40.64272,-73.957085,"(40.64272, -73.957085)",,,2180 CLARENDON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438708,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,19:11,,,40.644466,-74.07686,"(40.644466, -74.07686)",RICHMOND TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439168,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,17:05,BROOKLYN,11232,40.65543,-74.003265,"(40.65543, -74.003265)",4 AVENUE,34 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439037,Sedan,Sedan,,, +07/05/2021,14:32,BROOKLYN,11210,40.63161,-73.94171,"(40.63161, -73.94171)",,,1699 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439244,Sedan,,,, +07/19/2021,13:25,BRONX,10469,40.865494,-73.85868,"(40.865494, -73.85868)",ALLERTON AVENUE,PAULDING AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Fell Asleep,,,,4438721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,7:47,BROOKLYN,11222,40.728992,-73.95067,"(40.728992, -73.95067)",MC GUINNESS BOULEVARD,CALYER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439229,Box Truck,Sedan,,, +07/19/2021,21:30,,,40.612583,-74.15915,"(40.612583, -74.15915)",,,1441 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439045,Sedan,,,, +07/19/2021,5:15,,,,,,HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,18:18,,,40.638454,-73.99931,"(40.638454, -73.99931)",50 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439135,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/19/2021,12:03,BROOKLYN,11208,40.664192,-73.87759,"(40.664192, -73.87759)",ESSEX STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439069,Tractor Truck Diesel,Sedan,,, +07/19/2021,17:15,QUEENS,11377,40.740517,-73.89236,"(40.740517, -73.89236)",72 STREET,45 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4438636,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,8:05,QUEENS,11423,40.710495,-73.76436,"(40.710495, -73.76436)",195 STREET,99 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438851,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,9:35,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438524,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,10:33,,,40.72648,-73.89442,"(40.72648, -73.89442)",GRAND AVENUE,69 PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4438812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,0:23,,,40.757973,-73.98554,"(40.757973, -73.98554)",WEST 45 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4439102,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,17:30,QUEENS,11103,40.756687,-73.91534,"(40.756687, -73.91534)",,,32-43 45 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439010,Sedan,,,, +07/19/2021,16:45,MANHATTAN,10065,40.767925,-73.970345,"(40.767925, -73.970345)",,,838 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438677,Sedan,,,, +07/18/2021,16:00,QUEENS,11368,40.742172,-73.86414,"(40.742172, -73.86414)",,,50-30 98 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438979,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,17:27,,,,,,EAST 175 STREET,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Glare,,,,,4438748,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,8:45,BROOKLYN,11203,40.649334,-73.94283,"(40.649334, -73.94283)",,,3623 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438568,Sedan,Snow Plow,,, +07/19/2021,22:59,MANHATTAN,10016,40.7441,-73.97637,"(40.7441, -73.97637)",2 AVENUE,EAST 33 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4438608,Sedan,,,, +06/23/2021,17:41,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,MENAHAN STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4439216,Sedan,E-Bike,,, +07/19/2021,3:50,BROOKLYN,11208,40.676216,-73.88134,"(40.676216, -73.88134)",,,346 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4438424,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/19/2021,16:31,BRONX,10463,40.884716,-73.90087,"(40.884716, -73.90087)",,,5805 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439175,Van,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,20:10,BROOKLYN,11204,40.627117,-73.9896,"(40.627117, -73.9896)",16 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438768,Sedan,,,, +07/19/2021,21:50,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4438652,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,13:10,BROOKLYN,11220,40.638313,-74.00663,"(40.638313, -74.00663)",55 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,1:30,,,40.74359,-73.92242,"(40.74359, -73.92242)",CRESCENT STREET,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4439269,Sedan,Box Truck,,, +07/19/2021,11:50,QUEENS,11354,40.766342,-73.832565,"(40.766342, -73.832565)",,,33-38 FARRINGTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438582,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/19/2021,16:00,QUEENS,11101,40.73911,-73.943,"(40.73911, -73.943)",BORDEN AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438614,Station Wagon/Sport Utility Vehicle,Van,,, +07/19/2021,20:35,QUEENS,11372,40.74906,-73.870384,"(40.74906, -73.870384)",WARREN STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438989,Sedan,Sedan,,, +07/19/2021,17:08,,,40.719307,-73.97723,"(40.719307, -73.97723)",EAST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438904,Taxi,,,, +07/19/2021,18:58,MANHATTAN,10028,,,,86 Street,2 Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438927,Taxi,,,, +07/19/2021,1:06,,,40.688614,-73.989174,"(40.688614, -73.989174)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438422,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,0:22,QUEENS,11692,40.59026,-73.78872,"(40.59026, -73.78872)",,,102 BEACH 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438705,Sedan,Sedan,,, +07/19/2021,7:14,,,40.743187,-73.97207,"(40.743187, -73.97207)",FDR DRIVE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438514,Bus,Sedan,,, +07/19/2021,13:00,BROOKLYN,11216,40.687668,-73.951035,"(40.687668, -73.951035)",NOSTRAND AVENUE,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4438789,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/19/2021,6:00,QUEENS,11416,40.68841,-73.83712,"(40.68841, -73.83712)",,,97-30 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438328,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,5:30,,,40.760532,-73.753716,"(40.760532, -73.753716)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438622,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,3:05,QUEENS,11355,40.75502,-73.832344,"(40.75502, -73.832344)",,,132-25 SANFORD AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438876,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/26/2021,20:07,,,,,,EAST 138 STREET BRIDGE,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439284,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,0:55,QUEENS,11369,40.757713,-73.87914,"(40.757713, -73.87914)",,,32-22 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438744,Sedan,Sedan,,, +07/19/2021,8:00,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",LUDLOW STREET,DELANCEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438538,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2021,9:04,QUEENS,11101,40.759068,-73.94025,"(40.759068, -73.94025)",,,37-21 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439089,Pick-up Truck,Sedan,,, +07/19/2021,10:18,STATEN ISLAND,10310,40.631134,-74.12794,"(40.631134, -74.12794)",POST AVENUE,DRIPROCK STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4439055,Sedan,Sedan,,, +07/19/2021,10:30,BRONX,10456,40.825314,-73.90822,"(40.825314, -73.90822)",EAST 164 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438660,Sedan,Tractor Truck Diesel,,, +07/19/2021,20:22,BROOKLYN,11229,40.609943,-73.955605,"(40.609943, -73.955605)",KINGS HIGHWAY,EAST 18 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438644,Sedan,E-Bike,,, +07/17/2021,5:25,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438996,Sedan,,,, +07/17/2021,16:43,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439028,Sedan,,,, +07/19/2021,23:37,BROOKLYN,11234,40.63556,-73.922844,"(40.63556, -73.922844)",FARRAGUT ROAD,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438665,Motorcycle,Sedan,,, +07/19/2021,18:35,BROOKLYN,11230,40.6268,-73.96267,"(40.6268, -73.96267)",,,918 EAST 14 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439315,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,13:00,QUEENS,11427,40.72558,-73.75262,"(40.72558, -73.75262)",HILLSIDE AVENUE,213 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438531,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,4:06,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4439241,Motorcycle,Sedan,Sedan,, +07/19/2021,10:45,QUEENS,11373,40.734413,-73.8693,"(40.734413, -73.8693)",,,58-08 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438485,Sedan,,,, +07/16/2021,16:00,MANHATTAN,10031,40.826237,-73.94508,"(40.826237, -73.94508)",,,408 CONVENT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439107,Sedan,,,, +07/19/2021,15:00,BRONX,10474,40.819126,-73.88579,"(40.819126, -73.88579)",SENECA AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438804,Sedan,Sedan,,, +07/19/2021,19:58,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438943,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,14:40,STATEN ISLAND,10312,40.5415,-74.16254,"(40.5415, -74.16254)",RICHMOND AVENUE,OAKDALE STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4438589,Sedan,Motorcycle,,, +07/19/2021,7:49,MANHATTAN,10021,40.76827,-73.9612,"(40.76827, -73.9612)",,,202 EAST 70 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4438681,Sedan,Garbage or Refuse,,, +07/19/2021,16:55,QUEENS,11433,40.697285,-73.79446,"(40.697285, -73.79446)",160 STREET,107 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4438863,,,,, +07/19/2021,23:15,BROOKLYN,11233,40.68507,-73.914925,"(40.68507, -73.914925)",MACON STREET,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438726,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,6:40,QUEENS,11368,40.74736,-73.86732,"(40.74736, -73.86732)",,,96-30 41 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438481,Sedan,Taxi,Sedan,, +07/19/2021,2:36,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",EAST 233 STREET,BRONX BOULEVARD,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4438279,Sedan,Sedan,,, +07/19/2021,19:10,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438627,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/19/2021,2:50,QUEENS,11368,40.756184,-73.871185,"(40.756184, -73.871185)",,,33-44 97 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4439198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/19/2021,14:02,,,40.695114,-73.93194,"(40.695114, -73.93194)",HART STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438697,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,20:30,QUEENS,11375,40.71141,-73.84397,"(40.71141, -73.84397)",KESSEL STREET,74 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438598,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,14:30,STATEN ISLAND,10310,40.62925,-74.12323,"(40.62925, -74.12323)",CLOVE ROAD,DELAFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439063,Sedan,,,, +07/19/2021,20:40,,,40.650772,-73.884796,"(40.650772, -73.884796)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439077,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,21:00,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439006,Sedan,Convertible,,, +07/18/2021,17:30,STATEN ISLAND,10301,40.635483,-74.09091,"(40.635483, -74.09091)",GLEN AVENUE,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439145,Sedan,,,, +07/19/2021,21:45,,,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438639,Sedan,,,, +07/18/2021,21:40,MANHATTAN,10001,40.752613,-73.99689,"(40.752613, -73.99689)",,,401 9 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439021,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,17:40,,,40.702675,-73.86171,"(40.702675, -73.86171)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439182,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,22:40,BROOKLYN,11232,40.644264,-73.99685,"(40.644264, -73.99685)",9 AVENUE,42 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4438769,Sedan,Sedan,Sedan,, +07/19/2021,11:15,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439230,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,14:20,MANHATTAN,10012,40.725082,-73.99534,"(40.725082, -73.99534)",LAFAYETTE STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4439285,Sedan,,,, +07/19/2021,7:31,QUEENS,11365,40.742977,-73.79556,"(40.742977, -73.79556)",174 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438525,Sedan,Sedan,,, +07/19/2021,12:50,,,40.69733,-73.78456,"(40.69733, -73.78456)",MERRICK BOULEVARD,109 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4438859,Motorcycle,Box Truck,,, +07/15/2021,22:15,MANHATTAN,10027,40.811478,-73.950226,"(40.811478, -73.950226)",8 AVENUE,WEST 127 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4439119,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/19/2021,13:45,,,40.83942,-73.872925,"(40.83942, -73.872925)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4438752,Sedan,Station Wagon/Sport Utility Vehicle,Van,, +07/19/2021,0:46,,,40.54387,-74.14445,"(40.54387, -74.14445)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Animals Action,,,,,4438500,Sedan,,,, +07/19/2021,19:23,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",PRINCE STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438583,Sedan,,,, +07/19/2021,11:30,,,40.695114,-73.911865,"(40.695114, -73.911865)",KNICKERBOCKER AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438974,Bike,,,, +07/19/2021,15:47,,,40.5758,-73.96114,"(40.5758, -73.96114)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4438936,Bus,,,, +07/19/2021,3:30,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438425,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,22:53,,,40.86159,-73.92475,"(40.86159, -73.92475)",NAGLE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439149,Sedan,,,, +07/19/2021,17:00,QUEENS,11101,40.74942,-73.940544,"(40.74942, -73.940544)",42 ROAD,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439243,Sedan,,,, +07/19/2021,14:45,,,40.62702,-74.16484,"(40.62702, -74.16484)",,,2236 FOREST AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439011,Sedan,Bus,,, +07/19/2021,5:00,QUEENS,11105,40.782368,-73.91005,"(40.782368, -73.91005)",20 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439340,Sedan,,,, +07/19/2021,16:10,BROOKLYN,11231,40.67236,-74.01124,"(40.67236, -74.01124)",,,1 BEARD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438670,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,21:00,BROOKLYN,11208,40.670303,-73.86017,"(40.670303, -73.86017)",,,472 RUBY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439067,Sedan,,,, +07/19/2021,17:40,BROOKLYN,11208,40.666996,-73.86789,"(40.666996, -73.86789)",LORING AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439070,Pick-up Truck,Sedan,,, +07/19/2021,2:36,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438203,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,21:30,,,40.659744,-73.91708,"(40.659744, -73.91708)",EAST 98 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439210,Sedan,Taxi,,, +07/19/2021,20:40,BROOKLYN,11210,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:05,BROOKLYN,11212,40.658394,-73.91557,"(40.658394, -73.91557)",NEWPORT STREET,EAST 98 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438722,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,17:00,MANHATTAN,10038,40.709816,-74.00697,"(40.709816, -74.00697)",,,110 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439136,Sedan,,,, +07/19/2021,23:25,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:00,QUEENS,11373,40.74094,-73.86757,"(40.74094, -73.86757)",JUNCTION BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4438983,Sedan,Sedan,Sedan,Sedan, +07/19/2021,16:54,,,40.65789,-73.85613,"(40.65789, -73.85613)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438651,Sedan,Sedan,,, +07/16/2021,18:30,QUEENS,11385,40.71105,-73.903854,"(40.71105, -73.903854)",,,60-02 BLEECKER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439176,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,11:25,QUEENS,11691,40.59512,-73.75158,"(40.59512, -73.75158)",,,17-27 SEAGIRT BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438709,Tractor Truck Diesel,Sedan,,, +07/19/2021,7:20,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438565,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,0:51,,,40.67113,-73.86132,"(40.67113, -73.86132)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438421,Sedan,Sedan,,, +07/19/2021,0:00,BROOKLYN,11213,40.670887,-73.93649,"(40.670887, -73.93649)",TROY AVENUE,SAINT JOHNS PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4438823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,16:23,BRONX,10452,,,,EAST 170 STREET,JEROME AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4438990,Sedan,Sedan,,, +07/19/2021,12:53,BROOKLYN,11206,40.703,-73.94425,"(40.703, -73.94425)",,,21 MANHATTAN AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4438615,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,15:13,MANHATTAN,10022,40.75738,-73.966705,"(40.75738, -73.966705)",2 AVENUE,EAST 54 STREET,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unsafe Lane Changing,,,,4438607,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,21:20,BROOKLYN,11236,40.636707,-73.88519,"(40.636707, -73.88519)",SEAVIEW AVENUE,EAST 103 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4438906,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,6:00,BROOKLYN,11212,40.66409,-73.90545,"(40.66409, -73.90545)",,,600 STONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,16:48,QUEENS,11420,40.674995,-73.80854,"(40.674995, -73.80854)",130 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4438647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,20:00,,,40.81293,-73.82727,"(40.81293, -73.82727)",HARDING AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438676,Sedan,Sedan,,, +07/17/2021,9:15,,,40.82773,-73.94952,"(40.82773, -73.94952)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439100,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,14:31,STATEN ISLAND,10301,40.637936,-74.07946,"(40.637936, -74.07946)",,,70 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4439048,Sedan,,,, +07/16/2021,12:59,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439335,Sedan,Sedan,,, +07/19/2021,0:34,,,40.89711,-73.908066,"(40.89711, -73.908066)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4438700,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,22:19,BROOKLYN,11223,,,,Coney Island Avenue,Avenue R,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4438640,Pick-up Truck,Sedan,,, +07/18/2021,20:00,BROOKLYN,11225,40.654255,-73.96177,"(40.654255, -73.96177)",,,287 OCEAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439259,Sedan,Sedan,Bike,, +07/15/2021,17:30,,,40.724174,-73.937355,"(40.724174, -73.937355)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439023,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,21:25,BROOKLYN,11206,40.695705,-73.94637,"(40.695705, -73.94637)",TOMPKINS AVENUE,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439036,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,12:37,STATEN ISLAND,10304,40.632263,-74.080284,"(40.632263, -74.080284)",,,104 NIXON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439056,Sedan,Sedan,,, +07/19/2021,18:45,BRONX,10459,40.831345,-73.89229,"(40.831345, -73.89229)",,,1309 WILKENS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/06/2022,0:10,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4543686,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,18:20,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496589,Sedan,Sedan,,, +01/20/2022,5:40,,,,,,WASHINGTON BRIDGE 181 ST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4496661,Taxi,,,, +10/18/2021,16:30,,,40.743324,-73.83379,"(40.743324, -73.83379)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4471042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,23:00,QUEENS,11373,40.743362,-73.87431,"(40.743362, -73.87431)",,,91-06 43 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4473257,Sedan,Sedan,,, +10/15/2021,18:49,BROOKLYN,11235,,,,JEROME AVENUE,EAST 21 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473196,Station Wagon/Sport Utility Vehicle,Pedicab,,, +10/30/2021,18:57,BROOKLYN,11238,40.686287,-73.9695,"(40.686287, -73.9695)",CLERMONT AVENUE,GREENE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473230,E-Bike,,,, +10/28/2021,19:12,,,40.674747,-73.9417,"(40.674747, -73.9417)",SAINT MARKS AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4473186,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/27/2021,8:00,,,40.698414,-73.984,"(40.698414, -73.984)",DUFFIELD STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473207,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/19/2021,16:48,QUEENS,11413,40.6594777,-73.760038,"(40.6594777, -73.760038)",,,220-29 147 AVENUE,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4468897,Station Wagon/Sport Utility Vehicle,,,, +12/06/2021,21:00,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Pavement Slippery,Unspecified,,,4484206,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/14/2021,7:45,,,40.678303,-73.87289,"(40.678303, -73.87289)",EUCLID AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4487070,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/14/2021,2:54,BRONX,10461,40.847622,-73.84483,"(40.847622, -73.84483)",,,1750 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486303,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,12:30,MANHATTAN,10013,40.71919,-74.00871,"(40.71919, -74.00871)",,,100 HUDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486608,PK,,,, +12/14/2021,19:45,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/03/2021,18:20,BROOKLYN,11226,40.65369,-73.9577,"(40.65369, -73.9577)",,,55 LENOX ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4487050,,,,, +12/14/2021,9:30,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",EAST 173 STREET,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486893,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,0:30,,,40.8481,-73.90145,"(40.8481, -73.90145)",EAST TREMONT AVENUE,CARTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486328,Bus,,,, +12/14/2021,14:35,BROOKLYN,11207,40.66898,-73.89782,"(40.66898, -73.89782)",,,560 SUTTER AVENUE,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4486512,Bike,,,, +12/14/2021,8:00,QUEENS,11429,40.71689,-73.73544,"(40.71689, -73.73544)",,,97-13 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486647,Bus,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,5:15,MANHATTAN,10027,40.80964,-73.947845,"(40.80964, -73.947845)",WEST 126 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,17:28,MANHATTAN,10002,40.72247,-73.987144,"(40.72247, -73.987144)",EAST HOUSTON STREET,LUDLOW STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486757,Sedan,,,, +12/14/2021,13:00,QUEENS,11422,40.659424,-73.73253,"(40.659424, -73.73253)",,,254-04 MEMPHIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486467,Sedan,,,, +12/14/2021,4:45,,,40.797867,-73.96759,"(40.797867, -73.96759)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4486411,Sedan,,,, +12/14/2021,21:18,BROOKLYN,11201,40.69161,-73.98154,"(40.69161, -73.98154)",,,1 UNIVERSITY PLAZA,0,0,0,0,0,0,0,0,Unspecified,,,,,4487094,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,6:29,MANHATTAN,10031,40.825905,-73.94712,"(40.825905, -73.94712)",WEST 146 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4487159,Sedan,,,, +12/14/2021,8:10,,,40.63665,-73.96805,"(40.63665, -73.96805)",CONEY ISLAND AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486447,Sedan,Sedan,,, +12/14/2021,8:17,QUEENS,11434,40.673973,-73.77882,"(40.673973, -73.77882)",132 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4486414,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,20:07,MANHATTAN,10035,40.80129,-73.9439,"(40.80129, -73.9439)",EAST 118 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4472365,Sedan,,,, +10/30/2021,4:49,MANHATTAN,10036,40.755806,-73.98641,"(40.755806, -73.98641)",WEST 42 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4472607,Sedan,,,, +10/30/2021,18:22,,,40.814144,-73.95571,"(40.814144, -73.95571)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472482,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,0:10,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4473009,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,23:28,BROOKLYN,11215,40.6668,-73.99011,"(40.6668, -73.99011)",,,211 14 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472976,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,1:15,MANHATTAN,10027,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,20:55,,,40.841347,-73.9169,"(40.841347, -73.9169)",EAST 171 STREET,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4472434,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/30/2021,3:20,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472758,Taxi,Sedan,,, +10/28/2021,11:30,MANHATTAN,10009,40.72369,-73.97792,"(40.72369, -73.97792)",,,255 EAST 7 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472944,Sedan,Bus,,, +10/24/2021,13:15,,,40.759914,-73.75207,"(40.759914, -73.75207)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473070,Sedan,Sedan,,, +10/14/2021,17:50,QUEENS,11385,,,,,,56-32 MYRTLE AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473161,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,23:00,,,40.73065,-73.98308,"(40.73065, -73.98308)",1 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472522,Sedan,Sedan,,, +10/27/2021,20:37,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4473007,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +10/29/2021,9:56,BROOKLYN,11218,40.641537,-73.981766,"(40.641537, -73.981766)",35 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4473053,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,17:02,MANHATTAN,10035,40.800915,-73.93715,"(40.800915, -73.93715)",,,213 EAST 121 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472888,Sedan,,,, +10/30/2021,0:30,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472194,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,15:35,BRONX,10461,40.856106,-73.855705,"(40.856106, -73.855705)",,,2143 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472339,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/30/2021,21:51,BROOKLYN,11217,40.68876,-73.98085,"(40.68876, -73.98085)",FLATBUSH AVENUE,NEVINS STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4472620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,5:15,QUEENS,11368,40.750168,-73.86066,"(40.750168, -73.86066)",,,104-41 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472671,Sedan,Sedan,,, +10/30/2021,16:40,BROOKLYN,11207,40.67046,-73.88788,"(40.67046, -73.88788)",SUTTER AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472762,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,23:55,BROOKLYN,11211,40.7138,-73.93319,"(40.7138, -73.93319)",VANDERVORT AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4472803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,16:56,BROOKLYN,11229,40.608982,-73.94315,"(40.608982, -73.94315)",,,1740 GERRITSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,0:55,MANHATTAN,10019,40.76687,-73.993904,"(40.76687, -73.993904)",,,730 11 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4472258,Taxi,Sedan,Taxi,, +09/29/2021,12:30,,,40.8283,-73.88296,"(40.8283, -73.88296)",BRONX RIVER AVENUE,,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4473107,Sedan,E-Bike,,, +10/24/2021,7:56,QUEENS,11370,,,,,,30-24 75 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473136,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,12:30,QUEENS,11355,40.749336,-73.81035,"(40.749336, -73.81035)",PARSONS BOULEVARD,QUINCE AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4472300,Sedan,Sedan,,, +10/30/2021,13:45,QUEENS,11103,40.75858,-73.919334,"(40.75858, -73.919334)",,,32-36 STEINWAY STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472262,Station Wagon/Sport Utility Vehicle,Bike,,, +10/23/2021,7:59,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473026,Sedan,,,, +10/30/2021,5:35,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",NORTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4472208,Sedan,,,, +10/30/2021,6:45,BROOKLYN,11237,40.71223,-73.92463,"(40.71223, -73.92463)",,,575 SCHOLES STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472800,Bus,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,23:55,,,40.72676,-73.90582,"(40.72676, -73.90582)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4472494,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/30/2021,3:15,,,40.735504,-73.95264,"(40.735504, -73.95264)",PULASKI BRIDGE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,,,,4472864,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +10/30/2021,4:00,BROOKLYN,11203,40.6537,-73.932106,"(40.6537, -73.932106)",,,710 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4472706,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/30/2021,15:00,,,40.606876,-73.94795,"(40.606876, -73.94795)",BEDFORD AVENUE,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4472822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,1:30,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4472229,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,18:30,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4472314,Sedan,Pick-up Truck,,, +10/30/2021,1:55,BRONX,10467,40.88055,-73.864525,"(40.88055, -73.864525)",WHITE PLAINS ROAD,EAST 215 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4472455,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/27/2021,10:05,BROOKLYN,11219,40.635975,-74.00124,"(40.635975, -74.00124)",FORT HAMILTON PARKWAY,54 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473097,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,3:30,BROOKLYN,11201,40.69676,-73.984886,"(40.69676, -73.984886)",FLATBUSH AVENUE EXTENSION,CATHEDRAL PLACE,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,Unspecified,4472667,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/30/2021,13:45,MANHATTAN,10027,40.80959,-73.949814,"(40.80959, -73.949814)",,,248 WEST 125 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4472966,Sedan,Sedan,,, +10/02/2021,17:15,BRONX,10473,40.818405,-73.86301,"(40.818405, -73.86301)",,,650 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473108,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/30/2021,21:42,BRONX,10469,40.868546,-73.85859,"(40.868546, -73.85859)",PAULDING AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4472341,Sedan,,,, +10/30/2021,0:40,,,,,,FDR DRIVE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472393,Sedan,,,, +10/29/2021,15:00,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473040,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,0:00,BRONX,10473,40.818523,-73.851776,"(40.818523, -73.851776)",,,2088 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472278,Sedan,Motorcycle,,, +10/30/2021,20:35,MANHATTAN,10003,40.731815,-73.98826,"(40.731815, -73.98826)",,,83 3 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472942,Bike,Sedan,,, +10/30/2021,1:12,MANHATTAN,10011,40.73539,-73.99828,"(40.73539, -73.99828)",AVENUE OF THE AMERICAS,WEST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472720,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,22:55,BROOKLYN,11211,40.714382,-73.93345,"(40.714382, -73.93345)",VANDERVORT AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472789,Sedan,,,, +10/30/2021,20:40,BRONX,10467,40.87019,-73.8672,"(40.87019, -73.8672)",,,3038 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472931,Sedan,Sedan,,, +10/27/2021,4:05,MANHATTAN,10002,40.719715,-73.982765,"(40.719715, -73.982765)",,,196 STANTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473016,Box Truck,Box Truck,,, +10/30/2021,20:38,QUEENS,11385,40.704845,-73.868515,"(40.704845, -73.868515)",,,78-21 80 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472490,Sedan,,,, +10/18/2021,16:40,MANHATTAN,10034,40.862995,-73.9244,"(40.862995, -73.9244)",,,22 POST AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472991,E-Bike,E-Scooter,,, +10/30/2021,8:50,MANHATTAN,10003,40.73398,-73.98669,"(40.73398, -73.98669)",3 AVENUE,EAST 15 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472527,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,7:00,BRONX,10466,40.891262,-73.86088,"(40.891262, -73.86088)",,,647 EAST 229 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472413,Sedan,Sedan,,, +10/30/2021,13:00,BROOKLYN,11211,40.7203,-73.95508,"(40.7203, -73.95508)",,,101 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4472635,Sedan,Sedan,,, +10/28/2021,21:45,,,40.592472,-73.80244,"(40.592472, -73.80244)",AMSTEL BOULEVARD,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4473078,E-Bike,Bike,,, +10/30/2021,11:45,QUEENS,11373,40.74591,-73.8903,"(40.74591, -73.8903)",,,40-39 75 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472345,Station Wagon/Sport Utility Vehicle,Bike,,, +10/29/2021,22:32,,,40.68812,-73.9117,"(40.68812, -73.9117)",EVERGREEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472949,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,20:13,BROOKLYN,11225,40.665546,-73.9537,"(40.665546, -73.9537)",ROGERS AVENUE,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473113,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:00,BROOKLYN,11213,40.67549,-73.93885,"(40.67549, -73.93885)",ALBANY AVENUE,BERGEN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472587,PK,,,, +10/30/2021,14:48,BRONX,10452,40.842083,-73.92011,"(40.842083, -73.92011)",JESUP AVENUE,JESUP PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4472442,Taxi,tow truck,,, +10/30/2021,7:53,,,40.810993,-73.95429,"(40.810993, -73.95429)",MORNINGSIDE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472589,Taxi,Sedan,,, +10/30/2021,11:00,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472512,Sedan,Carry All,,, +10/30/2021,8:44,MANHATTAN,10033,40.848938,-73.93708,"(40.848938, -73.93708)",BROADWAY,WEST 179 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472999,Box Truck,Sedan,,, +10/30/2021,1:30,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472179,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,18:40,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473045,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:55,QUEENS,11385,,,,DECATUR STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473174,Sedan,,,, +10/30/2021,4:05,QUEENS,11370,40.772984,-73.88942,"(40.772984, -73.88942)",81 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472379,Sedan,,,, +10/30/2021,18:25,MANHATTAN,10019,40.76174,-73.984795,"(40.76174, -73.984795)",,,235 WEST 50 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472911,E-Bike,Sedan,,, +10/30/2021,23:00,,,40.830154,-73.93964,"(40.830154, -73.93964)",WEST 155 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473159,Sedan,,,, +10/07/2021,22:56,BRONX,10460,40.837864,-73.86356,"(40.837864, -73.86356)",ARCHER STREET,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473112,Sedan,,,, +10/30/2021,20:00,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472975,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,0:45,QUEENS,11422,40.671604,-73.72807,"(40.671604, -73.72807)",HOOK CREEK BOULEVARD,134 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472189,Sedan,Sedan,,, +10/21/2021,19:44,,,40.525932,-74.22798,"(40.525932, -74.22798)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473008,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,11:00,QUEENS,11373,40.741287,-73.8748,"(40.741287, -73.8748)",90 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472344,Sedan,,,, +10/30/2021,19:56,BROOKLYN,11236,40.63132,-73.902336,"(40.63132, -73.902336)",EAST 85 STREET,AVENUE M,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,21:50,BROOKLYN,11218,40.636284,-73.97137,"(40.636284, -73.97137)",EAST 7 STREET,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473055,Sedan,,,, +10/30/2021,21:20,BRONX,10466,40.893623,-73.85525,"(40.893623, -73.85525)",EAST 234 STREET,BYRON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4472417,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/30/2021,22:35,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472879,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,18:00,,,40.694305,-73.91852,"(40.694305, -73.91852)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472948,Taxi,,,, +10/30/2021,23:56,BROOKLYN,11204,40.614452,-73.99161,"(40.614452, -73.99161)",19 AVENUE,71 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472484,Bike,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,20:00,BROOKLYN,11205,40.690125,-73.960266,"(40.690125, -73.960266)",,,298 CLASSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473260,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/28/2021,16:33,,,40.827984,-73.84329,"(40.827984, -73.84329)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473137,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,8:45,QUEENS,11375,40.717987,-73.83632,"(40.717987, -73.83632)",,,112-33 QUEENS BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4473038,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,2:35,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472274,Sedan,Sedan,,, +10/30/2021,16:40,,,40.759678,-73.83236,"(40.759678, -73.83236)",PRINCE STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472301,Sedan,E-Bike,,, +10/30/2021,13:30,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",UTICA AVENUE,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4472709,Sedan,Bike,,, +10/30/2021,11:15,QUEENS,11379,40.722073,-73.882385,"(40.722073, -73.882385)",,,61-65 76 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4473128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,0:00,BROOKLYN,11212,40.657,-73.91403,"(40.657, -73.91403)",EAST 98 STREET,LOTT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472370,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,14:15,BRONX,10458,40.859253,-73.88674,"(40.859253, -73.88674)",LORILLARD PLACE,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4472833,Sedan,Sedan,,, +10/29/2021,7:00,BRONX,10456,40.827927,-73.90094,"(40.827927, -73.90094)",TINTON AVENUE,HOME STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473065,Sedan,,,, +10/30/2021,10:00,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472248,Sedan,,,, +10/30/2021,19:00,BROOKLYN,11206,40.69439,-73.93825,"(40.69439, -73.93825)",,,317 HART STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472598,Sedan,,,, +10/30/2021,18:05,MANHATTAN,10014,40.728603,-74.005325,"(40.728603, -74.005325)",VARICK STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472725,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,2:15,,,40.690754,-73.79028,"(40.690754, -73.79028)",159 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4472289,Tractor Truck Diesel,Sedan,Sedan,, +10/30/2021,23:00,BROOKLYN,11234,40.627598,-73.93241,"(40.627598, -73.93241)",,,4532 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472454,Sedan,Sedan,,, +10/18/2021,13:15,MANHATTAN,10017,,,,,,212 EAST 45 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472969,Box Truck,,,, +10/30/2021,8:00,MANHATTAN,10002,40.715744,-73.98294,"(40.715744, -73.98294)",,,17 WILLETT STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473013,Sedan,,,, +10/30/2021,13:16,,,40.84796,-73.91444,"(40.84796, -73.91444)",GRAND AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4472868,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +10/30/2021,19:05,STATEN ISLAND,10304,40.606266,-74.09274,"(40.606266, -74.09274)",,,867 RICHMOND ROAD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472357,Sedan,Sedan,,, +10/30/2021,20:40,QUEENS,11373,40.738323,-73.8856,"(40.738323, -73.8856)",ALBION AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4472462,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/29/2021,22:40,QUEENS,11368,,,,Shea Road,Seaver Way,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473243,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,0:38,BROOKLYN,11217,,,,5 AVENUE,SACKETT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4473218,Stake or Rack,Sedan,Sedan,, +10/30/2021,9:30,BROOKLYN,11218,40.64764,-73.977036,"(40.64764, -73.977036)",,,414 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473100,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/28/2021,6:40,,,40.63379,-74.142784,"(40.63379, -74.142784)",TRANTOR PLACE,INNIS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472960,Bus,Sedan,,, +10/28/2021,19:50,,,40.676743,-73.93316,"(40.676743, -73.93316)",PACIFIC STREET,,,1,0,1,0,0,0,0,0,,,,,,4473187,,,,, +10/30/2021,2:47,BROOKLYN,11226,40.646923,-73.94818,"(40.646923, -73.94818)",TILDEN AVENUE,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472703,Sedan,,,, +10/30/2021,2:53,QUEENS,11427,40.721214,-73.75137,"(40.721214, -73.75137)",,,89-68 HOLLIS COURT BOULEVARD,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4472193,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,13:20,,,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472818,Sedan,Bike,,, +10/30/2021,0:08,,,,,,MADISON AVE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4472333,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/30/2021,0:05,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",STANLEY AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472757,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/30/2021,20:48,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472616,Sedan,Sedan,,, +10/30/2021,4:55,QUEENS,11385,40.69985,-73.90268,"(40.69985, -73.90268)",,,961 SENECA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472493,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,22:31,BRONX,10456,40.835297,-73.91291,"(40.835297, -73.91291)",MORRIS AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473241,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,12:25,MANHATTAN,10001,40.74913,-73.98824,"(40.74913, -73.98824)",AVENUE OF THE AMERICAS,WEST 33 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473025,Flat Rack,Sedan,,, +10/30/2021,11:20,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHURCH STREET,CHAMBERS STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4472542,Sedan,Bike,,, +10/30/2021,22:30,,,40.635277,-74.15308,"(40.635277, -74.15308)",,,33 VANNAME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472961,Station Wagon/Sport Utility Vehicle,Convertible,,, +09/27/2021,11:55,,,40.678772,-73.72967,"(40.678772, -73.72967)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,,,,4461686,Sedan,Sedan,,, +10/30/2021,4:00,MANHATTAN,10018,40.755516,-73.994774,"(40.755516, -73.994774)",,,491 9 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472392,Sedan,Box Truck,,, +10/30/2021,3:20,,,40.757847,-73.78944,"(40.757847, -73.78944)",192 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472835,Sedan,Sedan,,, +10/30/2021,12:00,,,40.596607,-73.99453,"(40.596607, -73.99453)",BATH AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472934,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,0:00,QUEENS,11373,40.731968,-73.88478,"(40.731968, -73.88478)",GRAND AVENUE,80 STREET,,1,0,0,0,1,0,0,0,Pavement Slippery,,,,,4472461,Bike,,,, +10/30/2021,10:00,BROOKLYN,11207,40.67649,-73.89508,"(40.67649, -73.89508)",,,148 VERMONT STREET,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472761,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,1:05,QUEENS,11369,40.764824,-73.87879,"(40.764824, -73.87879)",,,90-11 24 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472207,Sedan,Sedan,,, +10/30/2021,8:55,BROOKLYN,11221,40.693295,-73.93412,"(40.693295, -73.93412)",,,69 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472571,Sedan,,,, +10/30/2021,9:36,BROOKLYN,11225,40.65929,-73.95249,"(40.65929, -73.95249)",,,241 RUTLAND ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472306,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,22:31,BROOKLYN,11208,40.685116,-73.870514,"(40.685116, -73.870514)",,,213 AUTUMN AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4472590,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +10/30/2021,4:02,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,,4472376,Sedan,Sedan,Sedan,Sedan, +10/30/2021,20:59,BRONX,10466,40.89074,-73.84,"(40.89074, -73.84)",STRANG AVENUE,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472565,Sedan,,,, +10/27/2021,15:15,,,40.7614,-73.91149,"(40.7614, -73.91149)",45 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472982,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,2:30,,,40.696167,-73.97721,"(40.696167, -73.97721)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4472487,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,12:10,MANHATTAN,10012,40.72609,-73.99623,"(40.72609, -73.99623)",,,627 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473001,Bike,,,, +10/30/2021,0:40,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472182,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,0:08,,,40.76975,-73.96061,"(40.76975, -73.96061)",EAST 72 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473049,Bus,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,5:18,BRONX,10457,40.846863,-73.90142,"(40.846863, -73.90142)",EAST 176 STREET,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472910,Sedan,,,, +10/30/2021,0:24,,,,,,FDR DRIVE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473173,Sedan,Sedan,,, +10/30/2021,11:30,QUEENS,11385,40.70559,-73.85824,"(40.70559, -73.85824)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4473130,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,19:35,MANHATTAN,10014,40.731125,-74.004234,"(40.731125, -74.004234)",7 AVENUE SOUTH,MORTON STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4472726,Bike,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,5:00,,,40.734924,-73.92312,"(40.734924, -73.92312)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4472288,Van,Sedan,,, +10/30/2021,2:58,,,40.753693,-73.89831,"(40.753693, -73.89831)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,,,4472290,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/30/2021,6:30,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",WOODSTOCK AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472647,Sedan,,,, +10/30/2021,5:00,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473043,Sedan,Sedan,,, +10/30/2021,0:15,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472312,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,19:15,BROOKLYN,11203,40.642033,-73.925446,"(40.642033, -73.925446)",,,5464 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472710,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,17:12,BROOKLYN,11234,40.609344,-73.923256,"(40.609344, -73.923256)",,,4201 AVENUE U,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473077,Sedan,Sedan,,, +10/30/2021,13:00,QUEENS,11433,40.698055,-73.7877,"(40.698055, -73.7877)",,,167-04 108 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472355,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,22:05,QUEENS,11417,40.679893,-73.85066,"(40.679893, -73.85066)",88 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472790,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,21:30,MANHATTAN,10025,40.802784,-73.96526,"(40.802784, -73.96526)",,,205 WEST 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473121,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,5:03,QUEENS,11434,40.6707,-73.77366,"(40.6707, -73.77366)",140 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472218,Sedan,Pick-up Truck,,, +10/30/2021,6:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472651,Sedan,,,, +10/30/2021,23:39,BROOKLYN,11208,40.673515,-73.875885,"(40.673515, -73.875885)",BELMONT AVENUE,LOGAN STREET,,1,0,1,0,0,0,0,0,,,,,,4472764,,,,, +10/30/2021,19:28,BROOKLYN,11206,40.705887,-73.94297,"(40.705887, -73.94297)",GRAHAM AVENUE,BOERUM STREET,,1,0,1,0,0,0,0,0,,,,,,4472831,E-Scooter,,,, +10/30/2021,17:10,BRONX,10459,40.816193,-73.895996,"(40.816193, -73.895996)",,,1035 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472311,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,14:30,QUEENS,11368,,,,112 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473103,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/01/2021,10:00,BRONX,10473,,,,Surf Drive,Neptune Lane,,1,0,1,0,0,0,0,0,,,,,,4473111,,,,, +10/30/2021,9:01,QUEENS,11373,,,,CORONA AVENUE,88 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4472343,Sedan,Bike,,, +10/30/2021,20:01,BROOKLYN,11204,40.63291,-73.97957,"(40.63291, -73.97957)",17 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472516,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,12:46,MANHATTAN,10033,,,,WEST 181 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4473093,Sedan,,,, +10/30/2021,17:50,BRONX,10469,40.876995,-73.84652,"(40.876995, -73.84652)",,,3499 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,10:15,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4473035,Motorcycle,,,, +10/30/2021,4:06,MANHATTAN,10119,,,,,,1290 sixth avenue,1,0,1,0,0,0,0,0,,,,,,4472267,E-Bike,,,, +10/30/2021,21:29,BROOKLYN,11231,40.67626,-74.01418,"(40.67626, -74.01418)",VAN BRUNT STREET,COFFEY STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4472371,LIMO,,,, +10/30/2021,3:50,,,40.698486,-73.92144,"(40.698486, -73.92144)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472204,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/30/2021,6:55,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472334,Sedan,Sedan,,, +10/27/2021,11:50,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473176,Sedan,,,, +10/30/2021,16:48,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4472624,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/24/2021,0:27,QUEENS,11417,40.680687,-73.84459,"(40.680687, -73.84459)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,0,2,0,2,0,0,0,0,Unspecified,,,,,4420041,Sedan,,,, +07/15/2021,6:18,,,40.77304,-73.83052,"(40.77304, -73.83052)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4437381,Sedan,Box Truck,,, +07/16/2021,15:03,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Following Too Closely,,,4438499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,22:20,QUEENS,11372,40.75458,-73.89467,"(40.75458, -73.89467)",NORTHERN BOULEVARD,72 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4438736,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,18:00,MANHATTAN,10002,40.7123,-73.98993,"(40.7123, -73.98993)",,,38 RUTGERS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438905,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,10:30,STATEN ISLAND,10304,40.610474,-74.08659,"(40.610474, -74.08659)",,,679 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439088,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,21:00,BROOKLYN,11206,40.70109,-73.94502,"(40.70109, -73.94502)",WHIPPLE STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,20:18,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",LINDEN BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439491,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/16/2021,15:41,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4439466,Motorscooter,,,, +07/20/2021,1:01,BROOKLYN,11236,40.64906,-73.91326,"(40.64906, -73.91326)",DITMAS AVENUE,EAST 92 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4438628,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,18:05,BROOKLYN,11224,40.575165,-73.98542,"(40.575165, -73.98542)",,,1904 SURF AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4438954,Pick-up Truck,Sedan,Sedan,Sedan,Sedan +07/20/2021,10:50,QUEENS,11432,40.702736,-73.80229,"(40.702736, -73.80229)",JAMAICA AVENUE,153 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439214,Bus,,,, +07/20/2021,13:45,,,40.775383,-73.923035,"(40.775383, -73.923035)",21 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,1:00,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4439424,Sedan,Sedan,,, +07/20/2021,3:55,QUEENS,11416,40.6901,-73.83693,"(40.6901, -73.83693)",108 STREET,95 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438684,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/20/2021,10:00,,,40.692997,-73.83952,"(40.692997, -73.83952)",107 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439027,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,6:45,QUEENS,11412,40.69997,-73.76351,"(40.69997, -73.76351)",FARMERS BOULEVARD,112 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,18:37,,,40.78006,-73.988174,"(40.78006, -73.988174)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4439582,Sedan,,,, +07/20/2021,11:54,STATEN ISLAND,10306,40.559437,-74.12481,"(40.559437, -74.12481)",HYLAN BOULEVARD,MALONE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439377,Pick-up Truck,,,, +07/20/2021,0:30,,,40.770283,-73.86806,"(40.770283, -73.86806)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4438742,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,12:00,,,40.789497,-73.78225,"(40.789497, -73.78225)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4472321,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,12:58,BRONX,10458,40.857277,-73.888466,"(40.857277, -73.888466)",LORILLARD PLACE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439114,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,18:00,MANHATTAN,10040,40.860954,-73.92651,"(40.860954, -73.92651)",NAGLE AVENUE,ARDEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4439152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/20/2021,18:02,BROOKLYN,11236,40.63551,-73.90829,"(40.63551, -73.90829)",,,1010 EAST 84 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439239,Sedan,,,, +07/20/2021,21:50,BROOKLYN,11214,40.58227,-73.98612,"(40.58227, -73.98612)",CROPSEY AVENUE,BAY 54 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4439322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,12:45,,,40.836544,-73.87365,"(40.836544, -73.87365)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438844,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,0:55,,,40.7265,-73.75571,"(40.7265, -73.75571)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4438800,Sedan,,,, +07/20/2021,17:14,MANHATTAN,10035,40.802395,-73.936775,"(40.802395, -73.936775)",3 AVENUE,EAST 123 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,6:40,,,40.73442,-73.92238,"(40.73442, -73.92238)",BROOKLYN QUEENS EXPRESSWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4438801,Taxi,Tractor Truck Diesel,,, +07/10/2021,2:20,,,40.5659,-74.19375,"(40.5659, -74.19375)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4439526,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,22:46,,,40.8018,-73.96108,"(40.8018, -73.96108)",MORNINGSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438871,Sedan,,,, +07/20/2021,10:50,QUEENS,11432,40.707237,-73.79271,"(40.707237, -73.79271)",,,168-02 91 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438770,Box Truck,Sedan,,, +07/20/2021,23:03,BROOKLYN,11230,40.63529,-73.958206,"(40.63529, -73.958206)",OCEAN AVENUE,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4439319,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,2:00,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4439004,Motorscooter,,,, +07/20/2021,17:26,BROOKLYN,11219,40.637817,-73.99073,"(40.637817, -73.99073)",,,1260 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439046,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,19:20,BRONX,10462,40.83664,-73.84954,"(40.83664, -73.84954)",GLOVER STREET,LYON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439362,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,14:46,BROOKLYN,11233,40.66638,-73.9244,"(40.66638, -73.9244)",EAST NEW YORK AVENUE,EAST 98 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/19/2021,19:59,QUEENS,11101,40.757313,-73.93927,"(40.757313, -73.93927)",,,38-02 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439352,Sedan,,,, +07/20/2021,9:00,,,40.603054,-74.00825,"(40.603054, -74.00825)",BAY 17 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438792,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,10:00,QUEENS,11423,40.7122,-73.768486,"(40.7122, -73.768486)",,,91-20 191 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438857,Sedan,FIRE TRUCK,,, +07/20/2021,6:35,BRONX,10459,40.82895,-73.89191,"(40.82895, -73.89191)",,,1211 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438968,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,22:00,,,40.597267,-73.998665,"(40.597267, -73.998665)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439151,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,21:59,MANHATTAN,10032,40.839867,-73.94064,"(40.839867, -73.94064)",WEST 166 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439446,Sedan,,,, +07/20/2021,18:15,QUEENS,11354,40.76471,-73.830696,"(40.76471, -73.830696)",LINDEN PLACE,35 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4438879,Sedan,,,, +07/20/2021,23:47,,,40.67461,-73.80428,"(40.67461, -73.80428)",,,ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438923,Sedan,Sedan,,, +07/19/2021,15:00,MANHATTAN,10027,40.807335,-73.94656,"(40.807335, -73.94656)",,,104 WEST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439547,Box Truck,Sedan,,, +07/20/2021,13:00,QUEENS,11364,40.737537,-73.75674,"(40.737537, -73.75674)",,,75-25 BELL BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438816,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,15:00,MANHATTAN,10032,40.834904,-73.94111,"(40.834904, -73.94111)",,,500 WEST 160 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439419,Bus,Sedan,,, +07/20/2021,21:15,QUEENS,11372,40.748478,-73.89081,"(40.748478, -73.89081)",,,37-12 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439194,Sedan,Pick-up Truck,,, +07/20/2021,14:50,MANHATTAN,10019,40.764965,-73.978714,"(40.764965, -73.978714)",,,145 WEST 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439298,Sedan,Sedan,,, +07/14/2021,11:00,,,40.681805,-73.94987,"(40.681805, -73.94987)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439403,Sedan,Sedan,,, +07/18/2021,21:30,,,40.67632,-73.763435,"(40.67632, -73.763435)",134 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4439510,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/20/2021,12:12,BROOKLYN,11206,40.70839,-73.939964,"(40.70839, -73.939964)",BUSHWICK AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438998,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/18/2021,11:05,BROOKLYN,11226,40.651733,-73.95806,"(40.651733, -73.95806)",MARTENSE COURT,DEAD END,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439475,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,21:35,,,40.755516,-73.98363,"(40.755516, -73.98363)",WEST 43 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439029,Sedan,Bike,,, +07/20/2021,23:15,BRONX,10468,40.87072,-73.894455,"(40.87072, -73.894455)",JEROME AVENUE,PAUL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438941,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,8:10,BROOKLYN,11233,40.684227,-73.93531,"(40.684227, -73.93531)",HANCOCK STREET,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439141,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/20/2021,22:38,,,40.773655,-73.95173,"(40.773655, -73.95173)",EAST 81 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438888,CITY,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,15:42,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",1 AVENUE,EAST 120 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4439429,Box Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/20/2021,20:19,BROOKLYN,11207,40.65407,-73.882195,"(40.65407, -73.882195)",,,1019 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439073,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,19:25,BROOKLYN,11224,40.576706,-73.972824,"(40.576706, -73.972824)",WEST BRIGHTON AVENUE,WEST 5 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4438957,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,9:30,STATEN ISLAND,10304,40.62887,-74.07652,"(40.62887, -74.07652)",,,533 BAY STREET,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4439078,Sedan,Bus,,, +07/20/2021,17:34,QUEENS,11377,40.753284,-73.90691,"(40.753284, -73.90691)",NORTHERN BOULEVARD,BROADWAY,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439014,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/11/2021,17:00,QUEENS,11434,40.669144,-73.76591,"(40.669144, -73.76591)",143 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4439484,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/20/2021,1:40,,,40.731346,-73.917435,"(40.731346, -73.917435)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438634,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,11:15,,,,,,EAST 37 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439561,Sedan,Flat Bed,,, +07/20/2021,15:45,QUEENS,11414,40.65903,-73.84087,"(40.65903, -73.84087)",159 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,22:00,BRONX,10458,40.85931,-73.89208,"(40.85931, -73.89208)",EAST 188 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439388,Sedan,,,, +07/20/2021,15:50,BROOKLYN,11208,40.680504,-73.8829,"(40.680504, -73.8829)",FULTON STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,Unspecified,,,4439463,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/20/2021,0:08,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4438687,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,16:38,BROOKLYN,11236,40.643776,-73.913765,"(40.643776, -73.913765)",FOSTER AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439490,Sedan,Sedan,,, +07/20/2021,20:35,BROOKLYN,11234,40.626072,-73.923744,"(40.626072, -73.923744)",EAST 54 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438883,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,18:30,BROOKLYN,11234,40.62356,-73.927376,"(40.62356, -73.927376)",UTICA AVENUE,AVENUE L,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439019,Sedan,Sedan,,, +07/20/2021,23:34,QUEENS,11691,40.60597,-73.75891,"(40.60597, -73.75891)",,,10-74 GIPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439591,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,16:30,MANHATTAN,10019,40.763023,-73.97815,"(40.763023, -73.97815)",WEST 55 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438944,LIMO,delivery t,,, +07/17/2021,12:00,STATEN ISLAND,10314,40.589066,-74.138626,"(40.589066, -74.138626)",ROCKLAND AVENUE,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,,,,,,4439376,,,,, +07/18/2021,11:21,QUEENS,11372,40.75631,-73.87338,"(40.75631, -73.87338)",,,33-19 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439428,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,18:30,QUEENS,11368,40.741222,-73.85374,"(40.741222, -73.85374)",,,108-02 OTIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438984,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/19/2021,22:25,MANHATTAN,10026,40.79916,-73.95176,"(40.79916, -73.95176)",,,30 LENOX AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439546,Van,Taxi,,, +07/20/2021,3:30,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4438814,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,16:37,QUEENS,11375,40.716938,-73.85715,"(40.716938, -73.85715)",,,66-58 SELFRIDGE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4438839,Sedan,Box Truck,,, +07/20/2021,2:00,,,,,,3815 ORLOFF AVENUE,Cannon place,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439180,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,3:30,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4438907,Sedan,,,, +07/20/2021,22:30,,,40.618973,-74.00523,"(40.618973, -74.00523)",BAY RIDGE PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,12:00,MANHATTAN,10128,,,,1 AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438796,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,17:25,STATEN ISLAND,10301,40.64059,-74.08029,"(40.64059, -74.08029)",,,165 LOW TERRACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439087,Sedan,Sedan,,, +07/20/2021,18:00,QUEENS,11368,40.756493,-73.85881,"(40.756493, -73.85881)",34 AVENUE,110 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4439196,Station Wagon/Sport Utility Vehicle,Bike,,, +07/20/2021,12:08,,,40.747765,-73.98296,"(40.747765, -73.98296)",EAST 34 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438822,Sedan,Bike,,, +07/20/2021,14:10,,,40.843678,-73.89426,"(40.843678, -73.89426)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4438966,Sedan,Tractor Truck Diesel,,, +07/14/2021,12:57,BROOKLYN,11234,40.625786,-73.92832,"(40.625786, -73.92832)",FLATLANDS AVENUE,AVENUE K,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439447,Sedan,,,, +07/20/2021,1:00,BROOKLYN,11225,40.66647,-73.95659,"(40.66647, -73.95659)",,,1639 BEDFORD AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439509,E-Scooter,,,, +06/26/2021,15:48,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439364,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,14:58,MANHATTAN,10011,40.7464,-74.00511,"(40.7464, -74.00511)",WEST 21 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438898,Taxi,Bike,,, +07/20/2021,8:05,BROOKLYN,11221,40.68879,-73.91691,"(40.68879, -73.91691)",BUSHWICK AVENUE,CORNELIA STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4438973,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/07/2021,14:20,QUEENS,11369,40.76278,-73.873955,"(40.76278, -73.873955)",,,95-13 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,,,,,,4439435,,,,, +07/20/2021,18:55,BROOKLYN,11233,40.678993,-73.90904,"(40.678993, -73.90904)",,,80 SOMERS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439162,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,6:00,BROOKLYN,11212,,,,,,420 Mother Gaston Blvd,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438728,Station Wagon/Sport Utility Vehicle,Dump,,, +07/19/2021,6:48,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4439351,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/20/2021,19:44,BROOKLYN,11203,40.641182,-73.944664,"(40.641182, -73.944664)",AVENUE D,EAST 34 STREET,,6,0,0,0,0,0,6,0,Failure to Yield Right-of-Way,Unspecified,,,,4438873,Sedan,Sedan,,, +07/20/2021,21:00,QUEENS,11435,40.702477,-73.8157,"(40.702477, -73.8157)",,,137-37 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439211,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,20:23,MANHATTAN,10031,40.818233,-73.95273,"(40.818233, -73.95273)",WEST 134 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439105,Sedan,Sedan,,, +07/20/2021,23:29,,,40.835724,-73.92129,"(40.835724, -73.92129)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439003,Sedan,Sedan,,, +07/20/2021,21:40,QUEENS,11413,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439520,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,7:18,MANHATTAN,10029,40.78853,-73.943474,"(40.78853, -73.943474)",,,301 EAST 103 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4473269,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/19/2021,16:29,MANHATTAN,10035,40.802162,-73.939026,"(40.802162, -73.939026)",,,1993 LEXINGTON AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439437,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/20/2021,14:45,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438922,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,0:59,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4439358,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,15:00,QUEENS,11101,40.745815,-73.945656,"(40.745815, -73.945656)",JACKSON AVENUE,23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439404,Sedan,,,, +07/20/2021,8:29,,,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4438972,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,23:30,,,40.84482,-73.837,"(40.84482, -73.837)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4439232,Tractor Truck Diesel,,,, +07/20/2021,1:35,,,40.625004,-74.14762,"(40.625004, -74.14762)",,,1761 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4438757,Van,,,, +07/20/2021,23:20,BROOKLYN,11207,40.66725,-73.88799,"(40.66725, -73.88799)",DUMONT AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4439062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/20/2021,12:30,BRONX,10473,40.825954,-73.859566,"(40.825954, -73.859566)",WHITE PLAINS ROAD,BRUCKNER EXPRESSWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4438843,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,15:28,BROOKLYN,11207,40.661026,-73.88493,"(40.661026, -73.88493)",LINDEN BOULEVARD,HENDRIX STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439080,Station Wagon/Sport Utility Vehicle,Bike,,, +07/20/2021,11:00,QUEENS,11417,40.67215,-73.843185,"(40.67215, -73.843185)",PITKIN AVENUE,CROSS BAY BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4438916,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,17:00,BROOKLYN,11207,40.663776,-73.889915,"(40.663776, -73.889915)",BRADFORD STREET,RIVERDALE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4439061,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/19/2021,21:51,MANHATTAN,10040,40.86313,-73.92575,"(40.86313, -73.92575)",,,148 DYCKMAN STREET,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4439471,Sedan,E-Bike,,, +07/20/2021,21:40,,,40.864655,-73.813866,"(40.864655, -73.813866)",CITY ISLAND ROAD,SHORE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438993,Sedan,Sedan,,, +07/20/2021,20:40,,,40.660362,-73.77553,"(40.660362, -73.77553)",ROCKAWAY BOULEVARD,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439485,Sedan,,,, +07/20/2021,0:45,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,,,4438635,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +07/15/2021,3:36,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439579,Taxi,Sedan,,, +07/18/2021,14:10,BROOKLYN,11214,40.603275,-73.99606,"(40.603275, -73.99606)",86 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439387,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,18:05,QUEENS,11372,40.74931,-73.88517,"(40.74931, -73.88517)",,,37-41 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439197,Sedan,,,, +07/20/2021,10:34,QUEENS,11411,40.70021,-73.737495,"(40.70021, -73.737495)",115 AVENUE,220 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4438821,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,15:40,,,,,,GRAND CENTRAL PARKWAY,111 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438824,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/20/2021,7:45,,,40.693863,-73.92971,"(40.693863, -73.92971)",BROADWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4439142,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/16/2021,10:33,,,40.809475,-73.95358,"(40.809475, -73.95358)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439552,Pick-up Truck,,,, +07/20/2021,20:35,QUEENS,11362,40.768795,-73.73708,"(40.768795, -73.73708)",NORTHERN BOULEVARD,251 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438852,Sedan,E-Bike,,, +07/20/2021,1:34,BROOKLYN,11249,40.720318,-73.96173,"(40.720318, -73.96173)",KENT AVENUE,NORTH 7 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439184,E-Scooter,Sedan,,, +07/20/2021,19:30,MANHATTAN,10029,40.792873,-73.94373,"(40.792873, -73.94373)",EAST 108 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438894,Sedan,,,, +07/20/2021,4:57,BROOKLYN,11210,40.63525,-73.95527,"(40.63525, -73.95527)",,,600 EAST 23 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4439311,Sedan,Sedan,,, +07/20/2021,0:00,BRONX,10461,40.84457,-73.84631,"(40.84457, -73.84631)",,,1500 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4438786,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,17:14,STATEN ISLAND,10310,40.63335,-74.11697,"(40.63335, -74.11697)",BROADWAY,SOUTH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439146,Sedan,,,, +07/20/2021,14:05,QUEENS,11378,40.72551,-73.91697,"(40.72551, -73.91697)",,,50-35 56 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439270,Sedan,Sedan,,, +07/18/2021,17:09,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,13:31,BROOKLYN,11223,40.602856,-73.96156,"(40.602856, -73.96156)",,,2222 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438797,Sedan,,,, +07/20/2021,14:35,QUEENS,11101,40.749268,-73.945465,"(40.749268, -73.945465)",22 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438847,Sedan,,,, +07/20/2021,15:53,BROOKLYN,11210,40.62323,-73.94136,"(40.62323, -73.94136)",,,1271 EAST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438881,,,,, +07/20/2021,23:17,,,40.70026,-73.80868,"(40.70026, -73.80868)",146 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4439020,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,16:39,BROOKLYN,11217,40.68114,-73.97612,"(40.68114, -73.97612)",,,445 BERGEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439386,Station Wagon/Sport Utility Vehicle,Bike,,, +06/27/2021,22:23,MANHATTAN,10026,40.799458,-73.95154,"(40.799458, -73.95154)",WEST 112 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439545,Motorcycle,,,, +07/20/2021,14:50,,,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438810,Sedan,,,, +07/20/2021,15:30,,,,,,CLEARVIEW EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4438909,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,8:30,QUEENS,11369,40.76181,-73.8683,"(40.76181, -73.8683)",KEARNEY STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438751,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,1:00,,,40.756317,-73.83369,"(40.756317, -73.83369)",41 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4438875,Station Wagon/Sport Utility Vehicle,Moped,,, +07/20/2021,14:10,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439124,Dump,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,0:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4438868,Taxi,Sedan,,, +07/19/2021,8:06,MANHATTAN,10034,40.866764,-73.93007,"(40.866764, -73.93007)",,,8 HENSHAW STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4439469,Sedan,,,, +07/20/2021,13:40,BROOKLYN,11230,40.618427,-73.956245,"(40.618427, -73.956245)",EAST 19 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439314,FIRETRUCK,Sedan,,, +07/20/2021,13:00,,,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4438945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,0:00,,,40.878777,-73.89946,"(40.878777, -73.89946)",HEATH AVENUE,,,0,0,0,0,0,0,0,0,Tow Hitch Defective,,,,,4439178,Sedan,,,, +07/16/2021,4:08,MANHATTAN,10028,40.780857,-73.958824,"(40.780857, -73.958824)",MADISON AVENUE,EAST 86 STREET,,2,0,0,0,0,0,2,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4439347,Box Truck,Sedan,,, +07/20/2021,8:35,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439228,Pick-up Truck,Sedan,,, +07/20/2021,15:30,,,40.607693,-74.14089,"(40.607693, -74.14089)",STATEN ISLAND EXPRESSWAY,WOOLLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439009,Sedan,,,, +07/17/2021,16:15,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439426,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,22:50,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",EAST 144 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438930,Motorscooter,Sedan,,, +07/15/2021,14:25,,,40.77077,-73.91727,"(40.77077, -73.91727)",HOYT AVENUE NORTH,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439448,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/20/2021,20:09,QUEENS,11414,40.659172,-73.839874,"(40.659172, -73.839874)",159 AVENUE,CROSS BAY BOULEVARD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4438920,Sedan,,,, +07/20/2021,7:47,QUEENS,11102,40.77215,-73.929,"(40.77215, -73.929)",ASTORIA BOULEVARD,14 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4438713,Bus,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,0:43,,,40.68484,-73.79281,"(40.68484, -73.79281)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439486,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,11:20,QUEENS,11432,40.709915,-73.80534,"(40.709915, -73.80534)",,,85-83 PARSONS BOULEVARD,3,0,3,0,0,0,0,0,,,,,,4438840,Pick-up Truck,,,, +07/20/2021,12:45,BROOKLYN,11207,40.68746,-73.906494,"(40.68746, -73.906494)",MOFFAT STREET,CENTRAL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438975,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,14:45,BROOKLYN,11223,40.59876,-73.97794,"(40.59876, -73.97794)",WEST 6 STREET,AVENUE T,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4439391,Sedan,Sedan,,, +07/20/2021,20:30,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4438985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/20/2021,16:10,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",GRAND CONCOURSE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439095,Taxi,,,, +07/20/2021,2:15,BROOKLYN,11228,40.61267,-74.011604,"(40.61267, -74.011604)",,,1401 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439405,Bus,Sedan,,, +07/20/2021,10:34,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4438964,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,14:02,MANHATTAN,10002,40.714115,-73.9894,"(40.714115, -73.9894)",,,149 EAST BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438900,Pick-up Truck,,,, +07/18/2021,22:45,BROOKLYN,11236,40.64098,-73.8874,"(40.64098, -73.8874)",EAST 105 STREET,AVENUE M,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4439481,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,13:37,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",ROCKAWAY BOULEVARD,BAISLEY BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4439508,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,20:00,BROOKLYN,11233,40.66638,-73.9244,"(40.66638, -73.9244)",EAST NEW YORK AVENUE,EAST 98 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439157,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,22:55,,,40.830845,-73.93154,"(40.830845, -73.93154)",SUMMIT AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4439369,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,15:17,,,40.826515,-73.917946,"(40.826515, -73.917946)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,12:35,BROOKLYN,11208,40.676937,-73.8704,"(40.676937, -73.8704)",GLENMORE AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439071,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,7:00,QUEENS,11370,40.75702,-73.88279,"(40.75702, -73.88279)",,,32-43 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439433,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,21:20,BROOKLYN,11208,40.68642,-73.868645,"(40.68642, -73.868645)",,,556 RIDGEWOOD AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439081,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/19/2021,19:50,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4439439,Station Wagon/Sport Utility Vehicle,psd,,, +07/20/2021,3:40,QUEENS,11420,40.669025,-73.82716,"(40.669025, -73.82716)",,,149-33 114 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4438657,Sedan,,,, +07/19/2021,15:18,MANHATTAN,10024,40.785732,-73.97645,"(40.785732, -73.97645)",WEST 83 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439580,Sedan,Sedan,,, +07/20/2021,15:34,QUEENS,11436,40.667908,-73.79474,"(40.667908, -73.79474)",135 AVENUE,145 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4439482,Sedan,Sedan,Sedan,, +07/20/2021,9:00,BRONX,10454,40.80484,-73.912796,"(40.80484, -73.912796)",EAST 138 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438929,Tanker,Sedan,,, +07/20/2021,18:56,QUEENS,11369,40.759182,-73.86883,"(40.759182, -73.86883)",100 STREET,32 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4439199,Sedan,E-Bike,,, +07/20/2021,17:15,,,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4438833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,13:39,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439185,Sedan,,,, +07/14/2021,17:00,QUEENS,11412,40.69121,-73.75296,"(40.69121, -73.75296)",198 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439512,Sedan,,,, +07/20/2021,21:37,BROOKLYN,11208,40.68194,-73.88424,"(40.68194, -73.88424)",,,162 LINWOOD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4439400,Box Truck,Sedan,Sedan,, +07/20/2021,11:50,BROOKLYN,11235,40.576828,-73.9651,"(40.576828, -73.9651)",BRIGHTON BEACH AVENUE,BRIGHTON 2 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439007,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,17:42,MANHATTAN,10018,40.75433,-73.99263,"(40.75433, -73.99263)",,,307 WEST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439031,Van,,,, +07/16/2021,14:30,BROOKLYN,11204,40.61277,-73.993355,"(40.61277, -73.993355)",19 AVENUE,74 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439359,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,13:32,QUEENS,11377,40.750393,-73.90523,"(40.750393, -73.90523)",57 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439131,Sedan,,,, +07/20/2021,10:43,BROOKLYN,11238,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4438867,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,15:38,,,40.791718,-73.95298,"(40.791718, -73.95298)",5 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4438893,Station Wagon/Sport Utility Vehicle,Van,,, +07/20/2021,12:17,,,40.62499,-74.14403,"(40.62499, -74.14403)",FOREST AVENUE,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438787,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,0:00,BROOKLYN,11233,,,,mother gaston blvd,sumpter street,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439148,Sedan,E-Bike,,, +07/20/2021,17:05,BRONX,10451,40.822803,-73.90934,"(40.822803, -73.90934)",,,3202 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438971,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,23:10,,,40.805725,-73.95442,"(40.805725, -73.95442)",WEST 118 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4439551,Bike,,,, +07/20/2021,0:00,BROOKLYN,11217,40.682423,-73.97069,"(40.682423, -73.97069)",ATLANTIC AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4438869,Sedan,E-Bike,,, +07/20/2021,11:00,MANHATTAN,10002,40.714943,-73.976654,"(40.714943, -73.976654)",DELANCEY STREET,ROOSEVELT DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438902,Sedan,,,, +07/19/2021,18:27,STATEN ISLAND,10308,40.547577,-74.15628,"(40.547577, -74.15628)",,,4210 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439373,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,6:30,MANHATTAN,10003,40.725388,-73.98756,"(40.725388, -73.98756)",,,104 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439286,Sedan,,,, +07/20/2021,10:00,BROOKLYN,11230,40.623497,-73.95916,"(40.623497, -73.95916)",,,1114 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439316,Sedan,,,, +07/20/2021,12:50,QUEENS,11427,40.723515,-73.75264,"(40.723515, -73.75264)",212 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438784,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,5:30,BROOKLYN,11208,40.669647,-73.87685,"(40.669647, -73.87685)",,,358 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,7:15,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438819,Sedan,,,, +07/20/2021,0:00,BROOKLYN,11223,40.604294,-73.973206,"(40.604294, -73.973206)",DAHILL ROAD,KINGS HIGHWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439154,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,5:49,MANHATTAN,10014,40.74051,-74.009315,"(40.74051, -74.009315)",WEST STREET,BLOOMFIELD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4438749,Sedan,Bike,,, +07/20/2021,11:30,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4438915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/20/2021,21:00,BROOKLYN,11211,40.713398,-73.95187,"(40.713398, -73.95187)",,,487 KEAP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439248,Sedan,,,, +07/20/2021,17:35,,,40.817898,-73.938095,"(40.817898, -73.938095)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439123,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/20/2021,16:00,MANHATTAN,10016,40.743168,-73.973976,"(40.743168, -73.973976)",,,560 1 AVENUE,2,0,1,0,1,0,0,0,Unspecified,,,,,4438846,E-Bike,,,, +07/18/2021,2:48,QUEENS,11430,40.665245,-73.80204,"(40.665245, -73.80204)",VANWYCK EXPRESSWAY,NASSAU EXPRESSWAY,,2,0,0,0,0,0,2,0,Pavement Slippery,Unsafe Speed,,,,4439492,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,19:45,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439449,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,7:50,QUEENS,11368,40.737328,-73.86352,"(40.737328, -73.86352)",,,97-17 57 AVENUE,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4438980,Sedan,Bike,,, +07/20/2021,16:15,,,40.596397,-73.98521,"(40.596397, -73.98521)",26 AVENUE,,,5,0,0,0,0,0,5,0,Fell Asleep,Unspecified,Unspecified,,,4438949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/20/2021,22:45,BRONX,10458,40.85404,-73.88646,"(40.85404, -73.88646)",CRESCENT AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passenger Distraction,,,,4439381,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,17:30,,,40.842194,-73.94541,"(40.842194, -73.94541)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439425,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,17:29,QUEENS,11368,40.746098,-73.866425,"(40.746098, -73.866425)",97 PLACE,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438991,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/20/2021,11:00,BRONX,10473,40.811684,-73.853966,"(40.811684, -73.853966)",,,1956 OBRIEN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4438842,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,14:30,,,40.80054,-73.96192,"(40.80054, -73.96192)",COLUMBUS AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4438803,Bike,Pick-up Truck,,, +07/19/2021,12:50,MANHATTAN,10026,40.79944,-73.95531,"(40.79944, -73.95531)",CENTRAL PARK NORTH,7 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439543,MOPED,E-Bike,,, +07/20/2021,19:00,QUEENS,11355,40.74584,-73.82342,"(40.74584, -73.82342)",142 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439169,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,20:28,,,40.869656,-73.898926,"(40.869656, -73.898926)",RESERVOIR AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439330,Bike,,,, +07/20/2021,9:15,QUEENS,11357,40.792957,-73.79763,"(40.792957, -73.79763)",9 AVENUE,166 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4438877,Bus,,,, +07/20/2021,23:37,,,40.60785,-74.1624,"(40.60785, -74.1624)",,,1660 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439012,Sedan,Sedan,,, +07/20/2021,22:45,,,,,,SOUTHERN PARKWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439224,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,16:05,,,40.857483,-73.909676,"(40.857483, -73.909676)",UNIVERSITY AVENUE,,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439090,Sedan,E-Bike,,, +07/20/2021,8:13,BROOKLYN,11209,40.632572,-74.0303,"(40.632572, -74.0303)",,,7424 RIDGE BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4438798,Station Wagon/Sport Utility Vehicle,Bike,,, +07/20/2021,6:45,QUEENS,11102,40.76966,-73.918564,"(40.76966, -73.918564)",,,25-38 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4438714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/20/2021,18:45,QUEENS,11417,40.681087,-73.846344,"(40.681087, -73.846344)",ROCKAWAY BOULEVARD,93 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4438918,Sedan,Sedan,,, +07/20/2021,23:50,,,40.792015,-73.98051,"(40.792015, -73.98051)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439026,Tractor Truck Diesel,Sedan,,, +07/20/2021,15:45,QUEENS,11357,40.784935,-73.796776,"(40.784935, -73.796776)",WILLETS POINT BOULEVARD,15 DRIVE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4438880,Bike,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,10:06,BROOKLYN,11219,40.62156,-73.99896,"(40.62156, -73.99896)",15 AVENUE,OVINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439467,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,15:56,QUEENS,11434,40.676437,-73.78223,"(40.676437, -73.78223)",BAISLEY BOULEVARD,160 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439488,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,16:04,BRONX,10460,40.841305,-73.88419,"(40.841305, -73.88419)",,,1934 DALY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439389,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,10:30,MANHATTAN,10028,40.775166,-73.95062,"(40.775166, -73.95062)",,,1604 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438932,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,8:10,,,40.692776,-73.95769,"(40.692776, -73.95769)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439413,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,12:35,MANHATTAN,10003,40.733738,-73.99294,"(40.733738, -73.99294)",,,95 UNIVERSITY PLACE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439150,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/20/2021,16:21,BROOKLYN,11215,40.668617,-73.98515,"(40.668617, -73.98515)",,,341 9 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4438837,Sedan,Sedan,,, +07/20/2021,7:45,,,40.689228,-73.84248,"(40.689228, -73.84248)",102 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439200,Sedan,Box Truck,Sedan,, +07/20/2021,17:32,,,40.805138,-73.945244,"(40.805138, -73.945244)",WEST 122 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4439549,Sedan,Sedan,Sedan,, +07/20/2021,15:10,MANHATTAN,10028,40.774654,-73.9541,"(40.774654, -73.9541)",2 AVENUE,EAST 81 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4439133,Sedan,Sedan,,, +07/20/2021,5:50,,,40.680115,-73.7287,"(40.680115, -73.7287)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4438818,Box Truck,Sedan,Sedan,, +07/20/2021,11:40,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,ATLANTIC AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4438870,Sedan,Sedan,,, +07/18/2021,21:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4439354,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,23:14,BROOKLYN,11230,40.631233,-73.95964,"(40.631233, -73.95964)",,,804 EAST 18 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4439318,Sedan,Sedan,,, +07/20/2021,10:00,,,40.807095,-73.945984,"(40.807095, -73.945984)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4438790,NYPD TOW T,Sedan,,, +07/19/2021,0:04,BROOKLYN,11207,40.656345,-73.892235,"(40.656345, -73.892235)",,,824 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4439401,Sedan,Sedan,,, +07/20/2021,10:00,,,40.832573,-73.91052,"(40.832573, -73.91052)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,19:50,QUEENS,11368,40.753014,-73.87164,"(40.753014, -73.87164)",,,35-38 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439479,Taxi,,,, +07/17/2021,14:00,QUEENS,11412,40.701347,-73.7553,"(40.701347, -73.7553)",200 STREET,113 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439483,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,0:40,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4438672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,2:16,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,9:00,STATEN ISLAND,10301,40.63951,-74.09775,"(40.63951, -74.09775)",,,197 CLINTON AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439086,Sedan,Sedan,,, +07/19/2021,18:22,MANHATTAN,10024,40.783897,-73.97407,"(40.783897, -73.97407)",COLUMBUS AVENUE,WEST 82 STREET,,1,0,0,0,1,0,0,0,Steering Failure,,,,,4439581,Bike,,,, +07/20/2021,13:40,,,40.77904,-73.9435,"(40.77904, -73.9435)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4438925,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,8:00,BRONX,10465,40.842335,-73.819756,"(40.842335, -73.819756)",,,3235 SPENCER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439360,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,13:00,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4438970,Sedan,Tractor Truck Gasoline,,, +07/20/2021,14:00,,,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439072,Van,Sedan,,, +07/20/2021,15:40,,,40.658306,-73.95666,"(40.658306, -73.95666)",BEDFORD AVENUE,,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4438866,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/20/2021,8:00,,,40.759018,-73.855156,"(40.759018, -73.855156)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4438773,Box Truck,Sedan,,, +07/20/2021,15:24,,,40.88082,-73.90344,"(40.88082, -73.90344)",BROADWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4439186,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,19:20,STATEN ISLAND,10308,40.555714,-74.15443,"(40.555714, -74.15443)",,,229 ELVERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439374,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,16:23,MANHATTAN,10002,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,PITT STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4438903,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/20/2021,23:55,BROOKLYN,11203,40.648716,-73.92139,"(40.648716, -73.92139)",EAST 59 STREET,TILDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4438889,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,12:20,MANHATTAN,10003,40.729416,-73.9871,"(40.729416, -73.9871)",,,151 2 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4439287,Van,Bike,,, +07/20/2021,12:55,BROOKLYN,11214,40.612915,-74.004364,"(40.612915, -74.004364)",16 AVENUE,81 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4438963,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/20/2021,22:00,BRONX,10453,40.8574,-73.90567,"(40.8574, -73.90567)",DAVIDSON AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4439005,Sedan,Sedan,,, +07/19/2021,14:40,,,40.70652,-73.76058,"(40.70652, -73.76058)",197 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439511,Sedan,,,, +07/13/2021,13:28,,,40.688614,-73.999435,"(40.688614, -73.999435)",WARREN STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439443,Sedan,,,, +07/20/2021,13:41,BROOKLYN,11218,40.644566,-73.9798,"(40.644566, -73.9798)",,,382 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,9:55,BRONX,10461,40.842587,-73.85232,"(40.842587, -73.85232)",EAST TREMONT AVENUE,LYVERE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4438939,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,19:46,,,40.69635,-73.94071,"(40.69635, -73.94071)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439414,Sedan,,,, +07/17/2021,4:50,MANHATTAN,10035,40.80794,-73.93694,"(40.80794, -73.93694)",,,1908 PARK AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4439431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:00,QUEENS,11434,,,,Belt parkway,150 street,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439455,Sedan,Sedan,Sedan,, +07/20/2021,6:00,QUEENS,11368,40.74536,-73.86522,"(40.74536, -73.86522)",,,45-02 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4438981,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,11:45,QUEENS,11102,40.76652,-73.92059,"(40.76652, -73.92059)",30 AVENUE,32 STREET,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4472981,Sedan,,,, +10/30/2021,14:58,,,,,,CROSS BAY BOULEVARD,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472792,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,15:58,BROOKLYN,11226,40.64477,-73.954735,"(40.64477, -73.954735)",BEDFORD AVENUE,BEVERLEY ROAD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4472425,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,8:26,BROOKLYN,11203,40.64954,-73.93954,"(40.64954, -73.93954)",,,4023 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472708,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,21:00,QUEENS,11435,40.690018,-73.80324,"(40.690018, -73.80324)",INWOOD STREET,LAKEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472815,Sedan,Sedan,,, +10/30/2021,22:25,BRONX,10462,40.833496,-73.858246,"(40.833496, -73.858246)",,,1982 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472502,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,12:30,BROOKLYN,11221,40.695713,-73.91486,"(40.695713, -73.91486)",,,210 PALMETTO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472947,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,1:00,BRONX,10457,40.841595,-73.89777,"(40.841595, -73.89777)",,,1717 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473064,Sedan,,,, +10/30/2021,14:09,QUEENS,11372,40.752285,-73.88004,"(40.752285, -73.88004)",35 AVENUE,87 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472398,Bus,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,10:56,,,,,,EAST 52 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472970,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/30/2021,19:14,,,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,1:10,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472190,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,9:05,BRONX,10468,40.86004,-73.908615,"(40.86004, -73.908615)",WEST 183 STREET,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473004,Bus,Sedan,,, +10/28/2021,11:49,,,40.67004,-73.93658,"(40.67004, -73.93658)",LINCOLN PLACE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4473188,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,0:00,,,40.784756,-73.84947,"(40.784756, -73.84947)",14 ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472304,Sedan,,,, +10/30/2021,10:30,,,40.755337,-73.843254,"(40.755337, -73.843254)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472463,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,22:00,BROOKLYN,11215,40.661297,-73.982216,"(40.661297, -73.982216)",,,409 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473143,Sedan,,,, +10/28/2021,22:44,BROOKLYN,11218,40.642204,-73.991936,"(40.642204, -73.991936)",FORT HAMILTON PARKWAY,41 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473058,Station Wagon/Sport Utility Vehicle,Bike,,, +10/30/2021,19:15,BROOKLYN,11204,40.615005,-73.980225,"(40.615005, -73.980225)",63 STREET,BAY PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472485,Sedan,Bike,,, +10/26/2021,8:50,BROOKLYN,11215,40.675156,-73.99125,"(40.675156, -73.99125)",,,15 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473217,Sedan,Box Truck,,, +10/30/2021,5:15,,,40.747852,-73.99291,"(40.747852, -73.99291)",WEST 29 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472615,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:44,,,40.69174,-73.91401,"(40.69174, -73.91401)",CORNELIA STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472935,Sedan,,,, +10/30/2021,8:30,,,,,,CROSS BRONX EXPRESSWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Pavement Slippery,,,,4472451,Sedan,Sedan,,, +10/30/2021,22:00,STATEN ISLAND,10304,40.590313,-74.09794,"(40.590313, -74.09794)",GARRETSON AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472358,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,9:33,,,,,,WEST 217 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472994,FDNY AMBUL,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,10:35,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473011,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,22:25,QUEENS,11385,40.702477,-73.87431,"(40.702477, -73.87431)",,,74-03 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472688,Sedan,Sedan,,, +10/30/2021,17:50,BROOKLYN,11218,40.64305,-73.9764,"(40.64305, -73.9764)",EAST 4 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472871,Taxi,Sedan,,, +10/30/2021,13:45,QUEENS,11385,40.704746,-73.896095,"(40.704746, -73.896095)",,,68-16 FRESH POND ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472492,Sedan,Sedan,,, +10/26/2021,15:10,MANHATTAN,10031,40.8248,-73.950584,"(40.8248, -73.950584)",,,519 WEST 143 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4473245,Sedan,Bus,,, +10/31/2021,4:10,MANHATTAN,10017,40.755024,-73.978325,"(40.755024, -73.978325)",,,360 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472917,Taxi,Taxi,,, +10/30/2021,17:00,BROOKLYN,11204,40.61349,-73.9915,"(40.61349, -73.9915)",,,1923 72 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472574,Sedan,,,, +10/30/2021,16:37,BRONX,10451,40.823154,-73.91127,"(40.823154, -73.91127)",,,850 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4473072,Sedan,Sedan,,, +10/28/2021,16:00,,,40.60719,-74.16243,"(40.60719, -74.16243)",VICTORY BOULEVARD,RICHMOND AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472956,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,0:00,,,40.83301,-73.95027,"(40.83301, -73.95027)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473156,Sedan,,,, +10/30/2021,8:30,,,40.78958,-73.97548,"(40.78958, -73.97548)",WEST 88 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472591,Sedan,Sedan,,, +10/30/2021,18:49,QUEENS,11385,40.711025,-73.920296,"(40.711025, -73.920296)",,,1827 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473131,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,23:30,,,40.605694,-74.13428,"(40.605694, -74.13428)",,,350 BUCHANAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472962,Sedan,,,, +10/30/2021,3:35,QUEENS,11373,40.74524,-73.86929,"(40.74524, -73.86929)",43 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,5:05,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,19:15,,,40.8532,-73.934204,"(40.8532, -73.934204)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472995,Sedan,Sedan,,, +10/30/2021,19:13,,,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472397,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,4:20,QUEENS,11420,40.67769,-73.82884,"(40.67769, -73.82884)",ROCKAWAY BOULEVARD,110 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472746,Sedan,Sedan,,, +10/30/2021,3:30,QUEENS,11372,40.747585,-73.89351,"(40.747585, -73.89351)",,,72-09 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472292,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,23:00,,,40.650898,-73.94766,"(40.650898, -73.94766)",EAST 32 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472711,Sedan,,,, +10/29/2021,14:40,QUEENS,11104,40.745113,-73.92021,"(40.745113, -73.92021)",43 AVENUE,44 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473023,Bike,Box Truck,,, +10/30/2021,0:01,,,40.70632,-73.75078,"(40.70632, -73.75078)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4472921,Sedan,Sedan,,, +10/30/2021,17:00,BROOKLYN,11232,40.656624,-74.01274,"(40.656624, -74.01274)",39 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472498,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,3:56,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4472534,Sedan,,,, +10/30/2021,4:36,BROOKLYN,11236,40.647762,-73.911995,"(40.647762, -73.911995)",,,827 EAST 92 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472626,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,15:29,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472317,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/30/2021,4:23,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4472348,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,8:20,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473115,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,7:00,,,,,,essex street,Schroders ave,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472220,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,20:17,MANHATTAN,10040,40.852573,-73.927925,"(40.852573, -73.927925)",,,500 WEST 188 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Turning Improperly,,,,4473094,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,8:45,BRONX,10459,,,,,,1140 TIFFANY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472652,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,20:00,,,,,,LONG ISLAND EXPRESSWAY,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472460,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,7:20,,,40.842968,-73.90773,"(40.842968, -73.90773)",MOUNT EDEN PARKWAY,WEEKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,14:12,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473042,Sedan,Sedan,,, +10/30/2021,19:12,MANHATTAN,10030,40.823647,-73.943855,"(40.823647, -73.943855)",WEST 145 STREET,EDGECOMBE AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4473163,Sedan,Van,,, +10/30/2021,18:09,QUEENS,11356,40.78167,-73.83152,"(40.78167, -73.83152)",,,136-03 20 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4472322,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,13:30,QUEENS,11435,40.693344,-73.80228,"(40.693344, -73.80228)",107 AVENUE,WALTHAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472362,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,11:00,BROOKLYN,11219,40.63981,-73.995514,"(40.63981, -73.995514)",46 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472872,Taxi,,,, +10/30/2021,15:55,MANHATTAN,10035,40.798397,-73.93306,"(40.798397, -73.93306)",,,409 EAST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472777,Station Wagon/Sport Utility Vehicle,Bus,,, +10/30/2021,8:17,QUEENS,11419,40.68694,-73.81414,"(40.68694, -73.81414)",130 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4472794,Sedan,Sedan,,, +10/12/2021,15:45,,,,,,WEST 153 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4473246,Bike,Sedan,,, +10/30/2021,7:35,,,40.76907,-73.908005,"(40.76907, -73.908005)",42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472216,Sedan,,,, +10/30/2021,18:00,BRONX,10466,40.889866,-73.83582,"(40.889866, -73.83582)",,,3922 AMUNDSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472559,Sedan,Sedan,,, +09/25/2021,21:20,,,40.675255,-73.73207,"(40.675255, -73.73207)",BROOKVILLE BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4460849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,2:14,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472284,Sedan,Sedan,,, +10/30/2021,5:28,,,40.873123,-73.91179,"(40.873123, -73.91179)",BROADWAY,9 AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4473270,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,11:03,QUEENS,11385,40.713528,-73.916336,"(40.713528, -73.916336)",TROUTMAN STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472673,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,3:40,,,40.698452,-73.92176,"(40.698452, -73.92176)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472203,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,6:35,,,,,,HAMILTON AVENUE,HICKS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4472372,Tow Truck / Wrecker,Sedan,,, +10/30/2021,18:37,BROOKLYN,11208,40.674652,-73.87712,"(40.674652, -73.87712)",PITKIN AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472763,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/28/2021,17:05,QUEENS,11411,40.689724,-73.734856,"(40.689724, -73.734856)",119 AVENUE,228 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4473177,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,16:21,BROOKLYN,11201,40.690163,-73.98711,"(40.690163, -73.98711)",LIVINGSTON STREET,GALLATIN PLACE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4472623,Sedan,Bike,,, +10/30/2021,16:20,QUEENS,11357,40.79393,-73.825584,"(40.79393, -73.825584)",PARSONS BOULEVARD,SUMMIT PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4472310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/27/2021,15:55,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473010,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:24,BROOKLYN,11217,40.681595,-73.97472,"(40.681595, -73.97472)",,,478 DEAN STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472971,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,0:16,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4472466,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,5:00,BRONX,10452,40.836437,-73.91842,"(40.836437, -73.91842)",EAST 168 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472431,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,18:20,,,40.8115,-73.93481,"(40.8115, -73.93481)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472890,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,22:25,,,40.722485,-73.974396,"(40.722485, -73.974396)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4472945,Motorcycle,,,, +10/30/2021,20:35,,,40.6174,-73.9995,"(40.6174, -73.9995)",73 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472486,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,17:20,BROOKLYN,11237,40.709988,-73.933304,"(40.709988, -73.933304)",MORGAN AVENUE,SCHOLES STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4473190,Sedan,E-Scooter,,, +10/30/2021,13:00,,,40.740746,-73.81403,"(40.740746, -73.81403)",59 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472305,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,7:00,QUEENS,11435,40.706818,-73.81173,"(40.706818, -73.81173)",,,144-47 87 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473146,Sedan,,,, +10/30/2021,0:37,MANHATTAN,10019,40.76364,-73.98514,"(40.76364, -73.98514)",,,871 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472263,Sedan,Taxi,,, +10/19/2021,12:47,,,40.610878,-74.002495,"(40.610878, -74.002495)",,,82 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,8:29,BROOKLYN,11203,40.655212,-73.93272,"(40.655212, -73.93272)",LENOX ROAD,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4472707,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,0:00,QUEENS,11423,40.7118,-73.77135,"(40.7118, -73.77135)",188 STREET,91 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4472809,Station Wagon/Sport Utility Vehicle,Bus,,, +10/30/2021,13:46,BRONX,10469,40.86935,-73.848,"(40.86935, -73.848)",ADEE AVENUE,YOUNG AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4472336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:40,BRONX,10472,40.828053,-73.88303,"(40.828053, -73.88303)",,,1160 BRONX RIVER AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4472504,E-Bike,,,, +10/30/2021,7:42,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472759,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,20:29,MANHATTAN,10016,40.752197,-73.981834,"(40.752197, -73.981834)",WEST 40 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472611,Bike,Box Truck,,, +10/30/2021,9:00,BROOKLYN,11233,40.674606,-73.90832,"(40.674606, -73.90832)",DEAN STREET,STONE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472250,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,2:39,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4472192,Sedan,,,, +10/30/2021,19:20,QUEENS,11435,40.704403,-73.814445,"(40.704403, -73.814445)",HILLSIDE AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4472384,Sedan,Sedan,Sedan,Sedan, +10/30/2021,2:50,BROOKLYN,11225,40.665718,-73.95687,"(40.665718, -73.95687)",BEDFORD AVENUE,MONTGOMERY STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473110,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,1:30,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4472521,Sedan,Sedan,Sedan,, +10/30/2021,19:06,QUEENS,11356,40.781647,-73.8367,"(40.781647, -73.8367)",20 AVENUE,132 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472342,Sedan,,,, +10/24/2021,14:00,,,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472980,Sedan,,,, +10/30/2021,18:33,,,40.8468,-73.931854,"(40.8468, -73.931854)",WEST 179 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473006,,,,, +10/30/2021,0:00,,,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472914,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,0:30,,,40.689022,-73.93925,"(40.689022, -73.93925)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473060,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,23:40,QUEENS,11369,40.761063,-73.873886,"(40.761063, -73.873886)",30 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472400,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,18:20,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472936,Sedan,Pick-up Truck,,, +10/30/2021,21:00,,,40.606762,-74.16583,"(40.606762, -74.16583)",VICTORY BOULEVARD,ARLENE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473104,Sedan,Bike,,, +10/30/2021,22:04,BRONX,10474,40.820004,-73.888885,"(40.820004, -73.888885)",GARRISON AVENUE,IRVINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472658,Sedan,Sedan,,, +10/22/2021,8:57,QUEENS,11372,,,,,,35-27 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473135,Sedan,,,, +10/24/2021,22:50,BROOKLYN,11233,,,,UTICA AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473185,Sedan,,,, +10/30/2021,11:29,QUEENS,11368,40.757336,-73.86849,"(40.757336, -73.86849)",NORTHERN BOULEVARD,100 STREET,,10,0,0,0,0,0,10,0,Unspecified,Unspecified,,,,4472293,Bus,Sedan,,, +10/30/2021,22:47,QUEENS,11420,40.681755,-73.81695,"(40.681755, -73.81695)",111 AVENUE,124 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4472748,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,12:07,,,,,,UNION TURNPIKE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473041,Station Wagon/Sport Utility Vehicle,PK,,, +10/30/2021,3:30,,,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4472628,Sedan,Tow Truck / Wrecker,,, +10/30/2021,13:06,MANHATTAN,10032,40.834114,-73.941124,"(40.834114, -73.941124)",WEST 159 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472279,Taxi,,,, +10/30/2021,14:45,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472323,Sedan,,,, +10/30/2021,12:00,BROOKLYN,11235,40.59019,-73.944786,"(40.59019, -73.944786)",,,4567 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472825,Sedan,,,, +10/30/2021,22:26,QUEENS,11420,40.67851,-73.81435,"(40.67851, -73.81435)",125 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4472795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/30/2021,4:40,,,40.658253,-73.98465,"(40.658253, -73.98465)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472221,Sedan,,,, +10/29/2021,14:04,BRONX,10451,40.826004,-73.91168,"(40.826004, -73.91168)",,,979 BROOK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473062,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,20:03,QUEENS,11412,40.69689,-73.74929,"(40.69689, -73.74929)",116 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472929,Sedan,Sedan,,, +10/29/2021,18:20,BRONX,10452,40.84177,-73.92549,"(40.84177, -73.92549)",WEST 170 STREET,MERRIAM AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473232,Sedan,Sedan,,, +10/30/2021,19:40,MANHATTAN,10032,40.84322,-73.939186,"(40.84322, -73.939186)",WEST 171 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472491,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,23:33,MANHATTAN,10034,,,,WEST 207 STREET,POST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472992,Sedan,Sedan,,, +10/29/2021,12:25,,,40.852474,-73.92961,"(40.852474, -73.92961)",AUDUBON AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4472997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,2:30,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,10:44,,,,,,NEVINS STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473114,Sedan,Sedan,,, +10/30/2021,6:34,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472547,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,12:00,,,40.67706,-73.96598,"(40.67706, -73.96598)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472592,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,14:37,QUEENS,11427,40.7389,-73.73378,"(40.7389, -73.73378)",UNION TURNPIKE,WINCHESTER BOULEVARD,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4462674,Sedan,,,, +10/29/2021,18:16,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",PROSPECT EXPRESSWAY,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473051,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,19:12,BROOKLYN,11233,40.675346,-73.92198,"(40.675346, -73.92198)",RALPH AVENUE,DEAN STREET,,1,0,1,0,0,0,0,0,,,,,,4472396,,,,, +10/30/2021,23:25,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472863,Sedan,Pick-up Truck,,, +10/30/2021,0:20,BRONX,10467,40.87739,-73.8665,"(40.87739, -73.8665)",EAST GUN HILL ROAD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472458,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,6:00,MANHATTAN,10021,40.767117,-73.956505,"(40.767117, -73.956505)",EAST 71 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473095,Bike,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,22:00,BROOKLYN,11222,40.726128,-73.93902,"(40.726128, -73.93902)",,,292 NASSAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473254,Sedan,,,, +10/30/2021,0:00,MANHATTAN,10018,40.752895,-73.98925,"(40.752895, -73.98925)",7 AVENUE,WEST 37 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4472585,work truck,Sedan,,, +10/30/2021,16:25,QUEENS,11422,40.66255,-73.732895,"(40.66255, -73.732895)",,,249-07 FRANCIS LEWIS BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4472316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,4:15,,,40.718864,-73.97483,"(40.718864, -73.97483)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4472209,Sedan,,,, +10/30/2021,14:10,BROOKLYN,11236,40.653038,-73.91523,"(40.653038, -73.91523)",AVENUE A,EAST 94 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,4:26,BRONX,10453,40.85809,-73.901924,"(40.85809, -73.901924)",EAST 183 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472875,Sedan,,,, +07/21/2021,12:54,,,40.5833,-73.96133,"(40.5833, -73.96133)",BANNER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439327,Sedan,,,, +10/30/2021,18:38,BROOKLYN,11219,40.628036,-74.00656,"(40.628036, -74.00656)",11 AVENUE,66 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472364,,,,, +10/30/2021,8:30,QUEENS,11423,40.708626,-73.77957,"(40.708626, -73.77957)",,,181-07 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472347,Sedan,Sedan,,, +10/30/2021,19:10,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472778,Sedan,Sedan,,, +10/29/2021,21:35,BRONX,10456,40.832455,-73.898415,"(40.832455, -73.898415)",,,1365 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473071,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,3:35,BRONX,10461,40.84195,-73.84396,"(40.84195, -73.84396)",EAST TREMONT AVENUE,FRISBY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472450,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,12:26,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",FRANCIS LEWIS BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472497,Sedan,Sedan,,, +10/28/2021,13:05,BRONX,10453,40.858784,-73.90853,"(40.858784, -73.90853)",,,2215 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4473019,Sedan,,,, +10/30/2021,4:40,MANHATTAN,10026,40.80056,-73.95614,"(40.80056, -73.95614)",,,238 WEST 111 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472965,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,19:47,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473214,Sedan,,,, +09/24/2021,2:51,QUEENS,11434,40.66158,-73.772865,"(40.66158, -73.772865)",146 ROAD,167 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4460373,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/30/2021,19:00,MANHATTAN,10010,40.73817,-73.97761,"(40.73817, -73.97761)",EAST 25 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4472533,Sedan,Ambulance,,, +10/30/2021,5:00,,,40.707478,-74.00044,"(40.707478, -74.00044)",FDR DRIVE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4472402,Sedan,,,, +10/29/2021,15:16,,,,,,WEST 151 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473162,Dump,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,0:01,BROOKLYN,11237,40.703827,-73.917336,"(40.703827, -73.917336)",,,346 STANHOPE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472941,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:30,,,40.608612,-74.13098,"(40.608612, -74.13098)",NORTH GANNON AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4472952,Sedan,Box Truck,Sedan,Sedan, +10/30/2021,12:30,BROOKLYN,11217,40.679333,-73.97533,"(40.679333, -73.97533)",6 AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472974,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,19:30,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472468,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,14:23,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485822,Sedan,Sedan,Sedan,, +12/12/2021,21:30,BROOKLYN,11235,40.582954,-73.95811,"(40.582954, -73.95811)",,,3431 GUIDER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4485891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/20/2021,20:25,,,,,,WEST 17 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486470,Motorbike,Sedan,,, +12/10/2021,6:30,BROOKLYN,11205,40.69632,-73.960625,"(40.69632, -73.960625)",PARK AVENUE,TAAFFE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486436,Sedan,Sedan,,, +12/12/2021,4:12,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485863,Sedan,,,, +12/12/2021,10:55,BRONX,10467,40.86543,-73.86737,"(40.86543, -73.86737)",WHITE PLAINS ROAD,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485942,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/07/2021,9:00,,,40.66721,-73.780846,"(40.66721, -73.780846)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,3:15,BROOKLYN,11230,40.623833,-73.961136,"(40.623833, -73.961136)",,,1059 EAST 15 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4485521,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/12/2021,14:00,QUEENS,11691,40.60071,-73.75376,"(40.60071, -73.75376)",BEACH 20 STREET,NEW HAVEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485960,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/02/2021,18:32,BRONX,10471,40.892918,-73.89667,"(40.892918, -73.89667)",,,6033 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486461,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/09/2021,10:00,BROOKLYN,11226,40.655396,-73.95065,"(40.655396, -73.95065)",,,287 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486502,Pick-up Truck,Box Truck,,, +07/21/2021,6:40,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439430,Sedan,,,, +01/29/2021,15:09,,,,,,GLENMORE AVENUE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4387672,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,18:15,MANHATTAN,10032,40.84298,-73.940575,"(40.84298, -73.940575)",,,656 WEST 170 STREET,2,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495676,Station Wagon/Sport Utility Vehicle,E-Bike,Station Wagon/Sport Utility Vehicle,, +01/18/2022,0:00,BRONX,10454,40.81008,-73.92311,"(40.81008, -73.92311)",,,383 EAST 139 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496816,Sedan,SCHOOL BUS,,, +01/21/2022,8:21,BROOKLYN,11222,40.72846,-73.95737,"(40.72846, -73.95737)",NOBLE STREET,FRANKLIN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496801,Sedan,,,, +01/21/2022,7:15,BRONX,10468,40.87781,-73.886856,"(40.87781, -73.886856)",,,3230 JEROME AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4496844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,16:05,BRONX,10459,40.825077,-73.890594,"(40.825077, -73.890594)",EAST 165 STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496826,Sedan,Sedan,,, +02/21/2022,14:40,BRONX,10467,40.863163,-73.86454,"(40.863163, -73.86454)",MACE AVENUE,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504707,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,9:41,,,40.87626,-73.90395,"(40.87626, -73.90395)",BAILEY AVENUE,WEST 230 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4494457,Sedan,,,, +07/06/2022,10:30,BROOKLYN,11207,40.664974,-73.89702,"(40.664974, -73.89702)",,,456 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544235,Sedan,,,, +02/21/2022,21:45,,,40.671085,-73.736275,"(40.671085, -73.736275)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504748,Sedan,Sedan,,, +01/19/2022,9:50,,,40.692356,-73.94282,"(40.692356, -73.94282)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496645,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,17:50,,,40.64614,-73.93271,"(40.64614, -73.93271)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495863,Sedan,Sedan,,, +01/16/2022,9:05,,,40.812572,-73.950935,"(40.812572, -73.950935)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4496614,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,12:05,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",47 AVENUE,VANDAM STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496229,Pick-up Truck,,,, +01/19/2022,22:43,QUEENS,11434,40.66796,-73.77155,"(40.66796, -73.77155)",NORTH CONDUIT AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4495968,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,5:09,BROOKLYN,11203,40.65932,-73.93412,"(40.65932, -73.93412)",,,585 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495911,Ambulance,Ambulance,,, +01/21/2022,0:12,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496354,Sedan,Sedan,,, +01/21/2022,4:25,QUEENS,11429,40.705013,-73.74649,"(40.705013, -73.74649)",,,112-02 COLFAX STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496211,Sedan,Sedan,,, +01/19/2022,14:42,QUEENS,11433,40.69616,-73.78661,"(40.69616, -73.78661)",109 AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496197,Sedan,Sedan,,, +01/09/2022,14:06,QUEENS,11436,40.673676,-73.79376,"(40.673676, -73.79376)",145 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496613,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,0:18,,,40.76428,-73.97302,"(40.76428, -73.97302)",EAST 59 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496111,Sedan,Box Truck,,, +01/20/2022,8:02,MANHATTAN,10016,,,,EAST 39 STREET,TUNNEL APPROACH STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496410,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,8:40,QUEENS,11375,40.708927,-73.85331,"(40.708927, -73.85331)",70 ROAD,SYBILLA STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4496340,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,0:47,BROOKLYN,11209,40.627857,-74.0233,"(40.627857, -74.0233)",,,7701 5 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496087,Bike,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,0:22,,,40.766552,-73.89476,"(40.766552, -73.89476)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4495616,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/07/2022,8:00,,,40.75488,-73.89929,"(40.75488, -73.89929)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4496495,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,16:30,,,40.782475,-73.98082,"(40.782475, -73.98082)",BROADWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496678,Sedan,Sedan,,, +01/19/2022,16:05,MANHATTAN,10029,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495893,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/21/2022,14:37,MANHATTAN,10007,40.710888,-74.00907,"(40.710888, -74.00907)",BROADWAY,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496356,Box Truck,Sedan,,, +01/21/2022,14:21,,,40.694035,-73.72679,"(40.694035, -73.72679)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496272,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,13:20,MANHATTAN,10029,40.796844,-73.93743,"(40.796844, -73.93743)",,,300 EAST 116 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496012,Sedan,Sedan,,, +01/16/2022,15:51,QUEENS,11432,40.71152,-73.7908,"(40.71152, -73.7908)",,,171-19 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496422,Sedan,Sedan,,, +01/19/2022,9:50,MANHATTAN,10028,40.773975,-73.948555,"(40.773975, -73.948555)",EAST 83 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,18:12,MANHATTAN,10032,40.840485,-73.93837,"(40.840485, -73.93837)",WEST 168 STREET,AUDUBON AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4496718,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,12:00,QUEENS,11422,40.66652,-73.73645,"(40.66652, -73.73645)",NORTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496069,Sedan,,,, +01/19/2022,14:35,,,40.828068,-73.87298,"(40.828068, -73.87298)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,Unspecified,,,4496140,Sedan,Sedan,Sedan,, +01/20/2022,15:55,BRONX,10456,40.836094,-73.904205,"(40.836094, -73.904205)",,,1422 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496172,Bus,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,2:25,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",EASTERN PARKWAY,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495666,Sedan,,,, +01/21/2022,19:30,BROOKLYN,11231,40.678623,-73.990265,"(40.678623, -73.990265)",,,371 CARROLL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496316,Pick-up Truck,,,, +01/19/2022,9:20,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",OCEAN PARKWAY,AVENUE C,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495943,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,15:30,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496109,Taxi,Sedan,,, +01/18/2022,3:30,QUEENS,11377,40.748383,-73.90514,"(40.748383, -73.90514)",38 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496243,Taxi,Flat Bed,,, +01/21/2022,8:35,BROOKLYN,11209,40.634834,-74.029366,"(40.634834, -74.029366)",RIDGE BOULEVARD,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496305,Bus,,,, +01/21/2022,6:38,MANHATTAN,10034,40.862392,-73.91802,"(40.862392, -73.91802)",WEST 205 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496663,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,9:30,BRONX,10463,40.888393,-73.90884,"(40.888393, -73.90884)",,,525 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496402,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,16:43,BROOKLYN,11203,40.64638,-73.9288,"(40.64638, -73.9288)",BEVERLEY ROAD,EAST 51 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496581,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,10:24,BRONX,10474,40.81711,-73.89204,"(40.81711, -73.89204)",TIFFANY STREET,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496133,Sedan,Carry All,,, +01/20/2022,2:50,MANHATTAN,10022,40.757534,-73.97097,"(40.757534, -73.97097)",,,150 EAST 52 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4496706,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/20/2022,13:52,BROOKLYN,11228,40.606422,-74.0147,"(40.606422, -74.0147)",CROPSEY AVENUE,15 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496051,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/21/2022,0:47,MANHATTAN,10001,40.752724,-73.996796,"(40.752724, -73.996796)",WEST 33 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496551,Sedan,Sedan,,, +01/19/2022,5:47,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",82 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495709,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,0:00,MANHATTAN,10014,40.726173,-74.01097,"(40.726173, -74.01097)",WEST STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496249,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +01/21/2022,13:20,,,40.79847,-73.96901,"(40.79847, -73.96901)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496248,Sedan,Box Truck,,, +01/19/2022,15:50,,,40.82497,-73.92228,"(40.82497, -73.92228)",CONCOURSE VILLAGE WEST,,,2,0,0,0,0,0,2,0,Passing Too Closely,Traffic Control Disregarded,,,,4495838,Bus,Sedan,,, +01/21/2022,19:00,BROOKLYN,11206,40.70005,-73.95032,"(40.70005, -73.95032)",,,446 MARCY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496451,Sedan,,,, +01/21/2022,16:40,BROOKLYN,11204,40.624847,-73.98888,"(40.624847, -73.98888)",,,1670 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496488,Sedan,,,, +01/20/2022,9:59,MANHATTAN,10007,40.714508,-74.008736,"(40.714508, -74.008736)",,,41 WARREN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495975,PK,,,, +01/21/2022,9:30,,,40.677532,-73.76635,"(40.677532, -73.76635)",176 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4496381,Sedan,Garbage or Refuse,,, +01/19/2022,20:13,QUEENS,11417,40.678062,-73.85921,"(40.678062, -73.85921)",GLENMORE AVENUE,78 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496346,Sedan,,,, +01/20/2022,8:40,BROOKLYN,11211,40.7059,-73.96016,"(40.7059, -73.96016)",LEE AVENUE,ROSS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496761,AMBULANCE,Bus,,, +01/21/2022,6:30,,,40.836018,-73.9243,"(40.836018, -73.9243)",ANDERSON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496204,Taxi,,,, +01/21/2022,19:55,MANHATTAN,10035,40.8076,-73.93719,"(40.8076, -73.93719)",PARK AVENUE,EAST 129 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496465,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/19/2022,11:50,QUEENS,11101,40.754692,-73.93666,"(40.754692, -73.93666)",,,25-09 39 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4495989,Box Truck,Motorcycle,Sedan,, +01/21/2022,5:08,MANHATTAN,10003,40.72949,-73.99333,"(40.72949, -73.99333)",,,730 BROADWAY,1,0,0,0,0,0,1,0,Obstruction/Debris,Following Too Closely,,,,4496683,Station Wagon/Sport Utility Vehicle,Van,,, +01/20/2022,9:30,QUEENS,11361,40.761436,-73.76995,"(40.761436, -73.76995)",BELL BOULEVARD,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496017,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,23:31,,,,,,EAST 51 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4496268,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,14:30,,,,,,HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496031,Sedan,Pick-up Truck,,, +01/19/2022,17:05,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",GRAND AVENUE,RUST STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4495815,Taxi,BULLDOZER,,, +01/21/2022,18:55,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4496281,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/19/2022,10:45,,,40.74105,-73.72587,"(40.74105, -73.72587)",UNION TURNPIKE,CROSS ISLAND PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4495772,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,7:40,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496152,Sedan,Sedan,,, +01/20/2022,8:15,,,,,,LONG ISLAND EXPRESSWAY,69 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496165,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,0:58,,,40.66323,-73.93161,"(40.66323, -73.93161)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496184,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,20:35,QUEENS,11105,40.78169,-73.91374,"(40.78169, -73.91374)",,,21-29 21 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496507,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,11:30,MANHATTAN,10002,40.71376,-73.9793,"(40.71376, -73.9793)",MADISON STREET,GRAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496300,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,10:10,BRONX,10465,40.830723,-73.82322,"(40.830723, -73.82322)",LAFAYETTE AVENUE,LOGAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495801,Sedan,Sedan,,, +01/19/2022,8:43,,,40.745106,-73.97078,"(40.745106, -73.97078)",FDR DRIVE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4495773,Sedan,Sedan,Sedan,, +01/18/2022,11:50,BROOKLYN,11217,40.68787,-73.98421,"(40.68787, -73.98421)",,,62 BOND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496654,Van,,,, +01/20/2022,21:19,BROOKLYN,11226,40.655422,-73.95007,"(40.655422, -73.95007)",CLARKSON AVENUE,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496120,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,18:15,QUEENS,11370,40.760338,-73.89477,"(40.760338, -73.89477)",30 AVENUE,73 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496253,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,17:16,QUEENS,11413,40.6755,-73.73864,"(40.6755, -73.73864)",231 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4495830,Bus,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,4:00,BRONX,10458,40.861835,-73.89172,"(40.861835, -73.89172)",,,388 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495727,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,15:34,MANHATTAN,10029,40.789055,-73.94861,"(40.789055, -73.94861)",LEXINGTON AVENUE,EAST 101 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496516,Taxi,,,, +01/20/2022,5:25,QUEENS,11435,40.699017,-73.80696,"(40.699017, -73.80696)",SUTPHIN BOULEVARD,94 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4496030,,,,, +01/21/2022,12:20,MANHATTAN,10029,40.791336,-73.94416,"(40.791336, -73.94416)",,,212 EAST 106 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4496236,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,22:04,BROOKLYN,11236,40.637108,-73.89338,"(40.637108, -73.89338)",ROCKAWAY PARKWAY,AVENUE M,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,3:50,BROOKLYN,11204,40.616432,-73.987366,"(40.616432, -73.987366)",,,1964 66 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495924,Pick-up Truck,Box Truck,,, +01/20/2022,10:30,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",BERGEN STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496590,Box Truck,,,, +01/12/2022,23:15,MANHATTAN,10021,40.77105,-73.95674,"(40.77105, -73.95674)",,,1449 2 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,16:42,MANHATTAN,10019,40.77099,-73.99092,"(40.77099, -73.99092)",11 AVENUE,WEST 58 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495951,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,22:20,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4496208,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,20:00,,,40.7608,-73.7657,"(40.7608, -73.7657)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472857,Sedan,,,, +01/20/2022,9:09,QUEENS,11423,40.7179,-73.76622,"(40.7179, -73.76622)",,,196-29 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496221,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,11:06,,,,,,ST PAULS AVE,VICTORY BOULEVARD,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4496045,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,7:01,BRONX,10470,40.906517,-73.8516,"(40.906517, -73.8516)",,,4803 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4496470,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,6:10,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4496330,Sedan,Pick-up Truck,Sedan,, +01/20/2022,10:54,QUEENS,11106,40.765858,-73.9311,"(40.765858, -73.9311)",,,31-60 21 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4495994,Sedan,Bus,,, +01/21/2022,9:00,BROOKLYN,11233,40.67229,-73.913124,"(40.67229, -73.913124)",PROSPECT PLACE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496499,Sedan,,,, +01/21/2022,20:55,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4496633,Sedan,,,, +01/19/2022,22:55,BRONX,10467,40.884277,-73.86243,"(40.884277, -73.86243)",EAST 220 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496036,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,10:15,,,40.58327,-73.96006,"(40.58327, -73.96006)",GUIDER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4495748,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/21/2022,1:26,BRONX,10467,40.869953,-73.86622,"(40.869953, -73.86622)",,,3001 CRUGER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496285,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,16:22,BRONX,10466,40.88666,-73.83121,"(40.88666, -73.83121)",DYRE AVENUE,CONNER STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495822,PK,,,, +01/19/2022,21:28,BROOKLYN,11226,40.644196,-73.95467,"(40.644196, -73.95467)",BEDFORD AVENUE,CORTELYOU ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495900,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,13:36,BROOKLYN,11226,40.64952,-73.955795,"(40.64952, -73.955795)",BEDFORD AVENUE,ERASMUS STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4496565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,0:40,QUEENS,11104,40.74451,-73.91747,"(40.74451, -73.91747)",,,43-17 47 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496148,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,12:04,BRONX,10465,40.830154,-73.82576,"(40.830154, -73.82576)",,,3548 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496280,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +01/15/2022,7:40,QUEENS,11385,40.706356,-73.900276,"(40.706356, -73.900276)",60 PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4496189,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,8:50,MANHATTAN,10035,40.80538,-73.93617,"(40.80538, -73.93617)",,,2101 LEXINGTON AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,,,,4495988,Sedan,Taxi,,, +01/20/2022,15:48,,,40.866158,-73.82363,"(40.866158, -73.82363)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4496081,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/14/2022,22:45,QUEENS,11373,40.74446,-73.8754,"(40.74446, -73.8754)",,,42-40 GLEANE STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,19:00,QUEENS,11377,40.74447,-73.911514,"(40.74447, -73.911514)",ROOSEVELT AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,13:06,QUEENS,11385,40.70647,-73.90396,"(40.70647, -73.90396)",,,2043 PALMETTO STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496180,Sedan,,,, +01/19/2022,11:02,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495877,Sedan,Sedan,,, +01/20/2022,16:48,BRONX,10469,40.86304,-73.85807,"(40.86304, -73.85807)",MACE AVENUE,WILLIAMSBRIDGE ROAD,,5,0,0,0,0,0,5,0,Turning Improperly,Unspecified,,,,4496124,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/19/2022,10:00,BROOKLYN,11219,40.628643,-74.005936,"(40.628643, -74.005936)",65 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4495782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,19:00,,,40.6557,-73.74486,"(40.6557, -73.74486)",147 DRIVE,BROOKVILLE BOULEVARD,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4496068,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/21/2022,8:50,,,40.825138,-73.9514,"(40.825138, -73.9514)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496349,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,20:40,,,40.754864,-73.85255,"(40.754864, -73.85255)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4496369,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,7:46,,,40.745106,-73.97078,"(40.745106, -73.97078)",EAST 37 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496004,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +01/19/2022,12:40,MANHATTAN,10017,40.75087,-73.97646,"(40.75087, -73.97646)",,,375 LEXINGTON AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496024,E-Bike,Bus,,, +01/11/2022,18:40,MANHATTAN,10001,40.746037,-73.990524,"(40.746037, -73.990524)",AVENUE OF THE AMERICAS,WEST 28 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496545,Taxi,,,, +01/21/2022,19:55,BROOKLYN,11220,40.635494,-74.00957,"(40.635494, -74.00957)",60 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,19:37,BRONX,10462,40.843765,-73.8656,"(40.843765, -73.8656)",WHITE PLAINS ROAD,VANNEST AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496185,E-Bike,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,12:10,,,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Alcohol Involvement,,,,4496240,Tractor Truck Diesel,Sedan,,, +01/20/2022,18:40,QUEENS,11377,40.74614,-73.91431,"(40.74614, -73.91431)",SKILLMAN AVENUE,50 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496597,Sedan,,,, +01/19/2022,16:00,,,40.608307,-74.13132,"(40.608307, -74.13132)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496063,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,14:10,,,40.69612,-73.94936,"(40.69612, -73.94936)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4496646,Garbage or Refuse,Sedan,,, +01/20/2022,8:26,BROOKLYN,11237,40.700775,-73.91334,"(40.700775, -73.91334)",WYCKOFF AVENUE,GROVE STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4496116,Sedan,Sedan,,, +01/21/2022,13:15,,,40.856045,-73.90079,"(40.856045, -73.90079)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496361,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,10:30,MANHATTAN,10014,40.736965,-74.00748,"(40.736965, -74.00748)",,,34 BETHUNE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495918,Sedan,,,, +01/21/2022,2:20,QUEENS,11423,40.71135,-73.76077,"(40.71135, -73.76077)",99 AVENUE,199 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4496092,Sedan,,,, +01/19/2022,18:54,BROOKLYN,11218,40.643074,-73.987335,"(40.643074, -73.987335)",37 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4495945,Sedan,Bike,,, +01/21/2022,12:48,BRONX,10471,40.901413,-73.90002,"(40.901413, -73.90002)",,,273 WEST 254 STREET,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4496405,Sedan,Sedan,,, +01/20/2022,10:31,,,,,,EAST 160 STREET,CONCOURSE VILLAGE EAST,,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4496212,Sedan,Tractor Truck Diesel,,, +01/17/2022,2:45,BROOKLYN,11233,40.680714,-73.92684,"(40.680714, -73.92684)",,,205 CHAUNCEY STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4496526,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/19/2022,4:00,QUEENS,11373,40.738384,-73.87936,"(40.738384, -73.87936)",CORONA AVENUE,POYER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495884,Taxi,,,, +01/18/2022,5:35,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4496217,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,21:30,,,40.7672,-73.887825,"(40.7672, -73.887825)",82 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496355,Taxi,Sedan,,, +01/16/2022,11:28,BROOKLYN,11212,40.655033,-73.91474,"(40.655033, -73.91474)",,,536 EAST 96 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4496556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,22:00,,,40.68626,-73.8013,"(40.68626, -73.8013)",143 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495980,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,15:20,QUEENS,11372,40.751034,-73.8919,"(40.751034, -73.8919)",,,74-15 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496261,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,10:15,BROOKLYN,11237,40.701958,-73.9239,"(40.701958, -73.9239)",KNICKERBOCKER AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4496729,Pick-up Truck,Tractor Truck Diesel,,, +01/20/2022,5:20,STATEN ISLAND,10309,,,,,,245 Bricktown way,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4496144,Box Truck,,,, +01/19/2022,7:20,,,40.865143,-73.87204,"(40.865143, -73.87204)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4495853,Station Wagon/Sport Utility Vehicle,,,, +12/29/2021,17:44,BROOKLYN,11216,40.682384,-73.95127,"(40.682384, -73.95127)",,,118 HANCOCK STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496626,Sedan,Sedan,,, +01/21/2022,20:30,MANHATTAN,10001,40.75279,-73.99492,"(40.75279, -73.99492)",,,350 WEST 34 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496741,Bike,Sedan,,, +01/20/2022,19:05,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,WEST 145 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496073,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,14:25,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",LONG ISLAND EXPRESSWAY,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496157,Sedan,Sedan,,, +01/21/2022,19:32,BROOKLYN,11229,40.604027,-73.9523,"(40.604027, -73.9523)",OCEAN AVENUE,AVENUE S,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496321,Station Wagon/Sport Utility Vehicle,Bike,,, +01/20/2022,7:37,,,40.673008,-73.78809,"(40.673008, -73.78809)",SUTPHIN BOULEVARD,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495959,,,,, +11/30/2021,11:26,QUEENS,11435,40.704147,-73.807594,"(40.704147, -73.807594)",89 AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496260,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,8:31,,,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495894,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,5:00,QUEENS,11368,40.755203,-73.871,"(40.755203, -73.871)",97 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495960,Sedan,,,, +01/18/2022,6:40,,,40.672825,-73.93908,"(40.672825, -73.93908)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4496669,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/20/2022,8:20,,,40.78911,-73.96656,"(40.78911, -73.96656)",WEST 92 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496275,Taxi,,,, +01/19/2022,13:52,BRONX,10453,40.84788,-73.9219,"(40.84788, -73.9219)",,,1480 POPHAM AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4495935,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/20/2022,10:36,QUEENS,11419,40.68795,-73.82502,"(40.68795, -73.82502)",103 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4496102,Sedan,Sedan,Sedan,, +01/21/2022,14:50,,,40.88759,-73.86652,"(40.88759, -73.86652)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496292,Station Wagon/Sport Utility Vehicle,Bus,,, +01/19/2022,1:30,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495628,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,18:48,,,,,,150 STREET,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4496128,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,11:15,,,40.784996,-73.824234,"(40.784996, -73.824234)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496394,Tractor Truck Diesel,Sedan,,, +01/16/2022,19:28,,,40.629494,-73.88737,"(40.629494, -73.88737)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/20/2022,23:01,BRONX,10459,40.82863,-73.890884,"(40.82863, -73.890884)",HOE AVENUE,HOME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496176,Pick-up Truck,Sedan,,, +01/19/2022,16:30,BRONX,10451,40.81722,-73.91924,"(40.81722, -73.91924)",COURTLANDT AVENUE,EAST 150 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495870,,,,, +01/19/2022,17:10,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4496055,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,22:00,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496171,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,7:12,QUEENS,11373,40.74487,-73.87629,"(40.74487, -73.87629)",WHITNEY AVENUE,GLEANE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4496156,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/21/2022,1:40,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4496086,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,22:01,BROOKLYN,11235,40.59263,-73.93939,"(40.59263, -73.93939)",,,2465 HARING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496320,Sedan,,,, +01/19/2022,0:31,MANHATTAN,10002,40.717648,-73.98868,"(40.717648, -73.98868)",BROOME STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495688,Sedan,,,, +01/20/2022,16:00,MANHATTAN,10021,40.76685,-73.95376,"(40.76685, -73.95376)",EAST 72 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496110,Sedan,Sedan,,, +01/19/2022,0:00,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/21/2022,12:15,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496244,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/19/2022,19:50,BRONX,10458,40.86482,-73.89246,"(40.86482, -73.89246)",,,274 EAST 194 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495937,Sedan,,,, +01/20/2022,15:00,BROOKLYN,11215,40.66573,-73.97592,"(40.66573, -73.97592)",,,118 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4496403,Sedan,Sedan,,, +01/21/2022,22:43,BROOKLYN,11226,40.65569,-73.959145,"(40.65569, -73.959145)",,,263 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496303,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,20:39,QUEENS,11385,40.703247,-73.90844,"(40.703247, -73.90844)",SENECA AVENUE,GATES AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4496709,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,15:27,QUEENS,11357,40.79447,-73.824104,"(40.79447, -73.824104)",,,145-27 5 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4496134,Sedan,,,, +01/18/2022,23:30,BROOKLYN,11216,40.675053,-73.947235,"(40.675053, -73.947235)",SAINT MARKS AVENUE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4496670,Sedan,Sedan,,, +09/26/2021,1:36,QUEENS,11101,40.752693,-73.932915,"(40.752693, -73.932915)",39 AVENUE,31 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496482,Sedan,,,, +01/19/2022,17:10,BROOKLYN,11233,40.670895,-73.91405,"(40.670895, -73.91405)",BOYLAND STREET,EAST NEW YORK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4495886,Station Wagon/Sport Utility Vehicle,Bike,,, +01/20/2022,14:00,BROOKLYN,11214,40.595657,-74.00019,"(40.595657, -74.00019)",,,1602 SHORE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496050,Sedan,Pick-up Truck,,, +01/20/2022,15:00,QUEENS,11412,40.70564,-73.75048,"(40.70564, -73.75048)",FRANCIS LEWIS BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496245,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,7:30,QUEENS,11377,40.736927,-73.895966,"(40.736927, -73.895966)",69 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496230,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,19:00,BROOKLYN,11225,40.669827,-73.94979,"(40.669827, -73.94979)",,,516 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496455,Taxi,,,, +01/19/2022,14:05,BROOKLYN,11210,40.62734,-73.94126,"(40.62734, -73.94126)",BROOKLYN AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495912,Box Truck,Sedan,,, +01/21/2022,22:50,,,40.7242,-73.93765,"(40.7242, -73.93765)",VANDERVORT AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496808,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,14:38,,,40.676132,-73.81924,"(40.676132, -73.81924)",ROCKAWAY BOULEVARD,LEFFERTS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496198,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,23:59,,,40.84758,-73.923195,"(40.84758, -73.923195)",UNDERCLIFF AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496166,Sedan,,,, +01/20/2022,17:30,BRONX,10461,40.85319,-73.853615,"(40.85319, -73.853615)",,,1946 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4496123,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,19:46,BROOKLYN,11208,40.67492,-73.87528,"(40.67492, -73.87528)",PITKIN AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496213,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,7:10,BROOKLYN,11204,40.625256,-73.99152,"(40.625256, -73.99152)",,,5911 16 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495780,Sedan,Dump,,, +01/19/2022,8:00,BRONX,10464,40.885433,-73.792854,"(40.885433, -73.792854)",,,22 SHORE ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4495803,Sedan,,,, +01/21/2022,12:45,MANHATTAN,10011,40.73952,-73.99899,"(40.73952, -73.99899)",,,86 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496552,Ambulance,Box Truck,,, +01/20/2022,7:30,,,40.82255,-73.88573,"(40.82255, -73.88573)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496000,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/19/2022,16:34,BROOKLYN,11212,40.673237,-73.90429,"(40.673237, -73.90429)",,,162 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496502,Sedan,,,, +01/14/2022,21:45,QUEENS,11378,40.722248,-73.90209,"(40.722248, -73.90209)",,,63-12 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4496256,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,12:48,BROOKLYN,11207,40.66961,-73.88861,"(40.66961, -73.88861)",,,494 HENDRIX STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496161,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,21:49,BROOKLYN,11203,40.641716,-73.93611,"(40.641716, -73.93611)",EAST 43 STREET,AVENUE D,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495865,E-Bike,Sedan,,, +01/10/2022,9:51,BRONX,10467,40.87001,-73.86337,"(40.87001, -73.86337)",,,3018 BARNES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496288,Sedan,Sedan,,, +01/20/2022,8:30,BRONX,10466,40.885864,-73.854774,"(40.885864, -73.854774)",,,3970 BRONXWOOD AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4496039,Sedan,,,, +01/21/2022,17:35,QUEENS,11423,40.71345,-73.760376,"(40.71345, -73.760376)",,,198-37 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496271,Sedan,,,, +01/20/2022,13:50,BROOKLYN,11249,40.712055,-73.96615,"(40.712055, -73.96615)",SOUTH 5 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,17:46,BROOKLYN,11234,40.63147,-73.91955,"(40.63147, -73.91955)",EAST 59 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4496617,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,8:00,MANHATTAN,10010,40.74405,-73.9896,"(40.74405, -73.9896)",,,21 WEST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496293,Sedan,,,, +01/20/2022,21:03,BROOKLYN,11219,40.626904,-73.99537,"(40.626904, -73.99537)",,,1442 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496139,Bus,Sedan,,, +01/19/2022,11:30,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,7:00,,,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495967,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,9:55,,,40.862766,-73.843445,"(40.862766, -73.843445)",EASTCHESTER ROAD,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4496006,Sedan,,,, +01/19/2022,13:15,MANHATTAN,10016,40.74283,-73.982315,"(40.74283, -73.982315)",,,121 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495791,Bus,Taxi,,, +01/19/2022,16:02,BROOKLYN,11230,40.610695,-73.96251,"(40.610695, -73.96251)",,,1921 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495899,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,7:35,QUEENS,11374,40.727276,-73.857346,"(40.727276, -73.857346)",,,65-74 SAUNDERS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496338,Sedan,,,, +01/20/2022,16:06,BROOKLYN,11201,40.69193,-73.982475,"(40.69193, -73.982475)",,,295 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Unspecified,,,,,4496082,Taxi,,,, +01/21/2022,22:40,QUEENS,11102,40.771984,-73.91891,"(40.771984, -73.91891)",HOYT AVENUE NORTH,28 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496509,Sedan,,,, +01/18/2022,11:45,BROOKLYN,11207,40.67937,-73.886444,"(40.67937, -73.886444)",ASHFORD STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496360,Sedan,,,, +01/19/2022,11:50,BROOKLYN,11207,40.68665,-73.91315,"(40.68665, -73.91315)",BUSHWICK AVENUE,ELDERT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496115,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,6:00,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4496046,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,19:00,QUEENS,11435,40.714935,-73.81636,"(40.714935, -73.81636)",MAIN STREET,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496225,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,9:35,BROOKLYN,11236,40.63701,-73.91495,"(40.63701, -73.91495)",EAST 80 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4495857,Sedan,Sedan,,, +01/14/2022,18:25,MANHATTAN,10027,40.807915,-73.94986,"(40.807915, -73.94986)",,,205 WEST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496601,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,2:00,,,40.718075,-73.97511,"(40.718075, -73.97511)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Driver Inexperience,,,,,4496299,Sedan,,,, +01/19/2022,11:38,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4495907,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,18:40,BROOKLYN,11208,40.68497,-73.88305,"(40.68497, -73.88305)",JAMAICA AVENUE,SHEPHERD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496193,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,9:30,BROOKLYN,11213,40.67801,-73.94138,"(40.67801, -73.94138)",ATLANTIC AVENUE,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496674,Van,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,13:10,,,40.58464,-73.96017,"(40.58464, -73.96017)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496536,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,18:00,QUEENS,11367,40.730602,-73.82151,"(40.730602, -73.82151)",147 STREET,JEWEL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496421,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,10:10,,,40.696205,-73.97249,"(40.696205, -73.97249)",ADELPHI STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439761,Sedan,,,, +01/21/2022,0:20,,,40.669964,-73.775314,"(40.669964, -73.775314)",140 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496331,Station Wagon/Sport Utility Vehicle,,,, +01/02/2022,4:56,QUEENS,11368,40.750862,-73.87045,"(40.750862, -73.87045)",,,37-28 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496370,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,18:12,MANHATTAN,10032,40.843563,-73.941956,"(40.843563, -73.941956)",,,720 WEST 170 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496717,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,9:00,BROOKLYN,11219,40.64416,-73.995155,"(40.64416, -73.995155)",,,957 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496489,Sedan,Box Truck,,, +01/20/2022,14:58,BROOKLYN,11222,40.725433,-73.951744,"(40.725433, -73.951744)",NORMAN AVENUE,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496802,Sedan,Box Truck,,, +01/21/2022,19:00,BROOKLYN,11223,40.59042,-73.967354,"(40.59042, -73.967354)",,,2441 EAST 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496324,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,10:03,QUEENS,11385,40.697433,-73.898605,"(40.697433, -73.898605)",SENECA AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496188,Sedan,,,, +01/19/2022,17:30,QUEENS,11377,40.73911,-73.89768,"(40.73911, -73.89768)",67 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496149,Box Truck,Sedan,,, +01/20/2022,16:50,QUEENS,11413,40.680992,-73.75509,"(40.680992, -73.75509)",PINEVILLE LANE,DEFOE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4496076,Sedan,Sedan,Pick-up Truck,, +01/21/2022,18:15,QUEENS,11355,40.759895,-73.823944,"(40.759895, -73.823944)",BOWNE STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4496412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,19:00,BROOKLYN,11221,40.68986,-73.93046,"(40.68986, -73.93046)",,,110 REID AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4496530,Sedan,Sedan,Sedan,Sedan,Sedan +01/21/2022,14:35,,,40.683014,-73.83507,"(40.683014, -73.83507)",LIBERTY AVENUE,106 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496760,Sedan,,,, +01/15/2022,19:30,,,40.702484,-73.85981,"(40.702484, -73.85981)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496181,Sedan,,,, +01/21/2022,22:50,,,40.687992,-73.98962,"(40.687992, -73.98962)",SMITH STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496653,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/20/2022,3:25,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4495993,Sedan,Sedan,,, +01/21/2022,9:25,BROOKLYN,11203,40.66149,-73.93039,"(40.66149, -73.93039)",,,27 EAST 51 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4496582,Sedan,,,, +01/19/2022,7:16,BROOKLYN,11207,40.676617,-73.89025,"(40.676617, -73.89025)",,,2816 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496846,Flat Rack,Sedan,,, +01/21/2022,14:29,MANHATTAN,10017,40.75337,-73.974655,"(40.75337, -73.974655)",EAST 45 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496267,Taxi,,,, +01/19/2022,9:15,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,22:24,BRONX,10469,40.868275,-73.8399,"(40.868275, -73.8399)",KINGSLAND AVENUE,ARNOW AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496035,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,10:10,,,40.81546,-73.89533,"(40.81546, -73.89533)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496252,Sedan,Flat Bed,,, +01/19/2022,17:50,BROOKLYN,11215,40.672012,-73.983955,"(40.672012, -73.983955)",,,350 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4495832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,11:00,QUEENS,11418,40.701935,-73.82933,"(40.701935, -73.82933)",,,121-10 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4496220,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,12:20,QUEENS,11422,40.671097,-73.731255,"(40.671097, -73.731255)",135 AVENUE,244 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496011,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,17:10,MANHATTAN,10003,40.736004,-73.99362,"(40.736004, -73.99362)",WEST 14 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496547,Box Truck,,,, +01/19/2022,6:15,BROOKLYN,11223,40.598515,-73.97986,"(40.598515, -73.97986)",AVENUE T,WEST 8 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4495973,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Taxi,Taxi +01/21/2022,22:10,QUEENS,11373,40.747097,-73.88386,"(40.747097, -73.88386)",,,40-18 82 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496574,Sedan,FIRE TRUCK,,, +10/22/2021,19:15,QUEENS,11369,,,,,,23-28 92 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473425,Sedan,,,, +01/21/2022,14:50,,,40.734398,-73.9223,"(40.734398, -73.9223)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496284,Sedan,Sedan,,, +01/21/2022,11:00,QUEENS,11434,40.678703,-73.781746,"(40.678703, -73.781746)",122 AVENUE,LONG STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496380,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,21:20,BRONX,10462,40.854477,-73.8667,"(40.854477, -73.8667)",CRUGER AVENUE,LYDIG AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4495923,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,5:40,BROOKLYN,11207,40.6552,-73.893555,"(40.6552, -73.893555)",STANLEY AVENUE,LOUISIANA AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496192,Sedan,,,, +01/21/2022,8:15,,,40.72789,-73.86117,"(40.72789, -73.86117)",BOOTH STREET,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496345,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,21:45,BRONX,10451,40.8231,-73.91644,"(40.8231, -73.91644)",,,811 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496119,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,22:00,BRONX,10453,40.849964,-73.91416,"(40.849964, -73.91416)",WEST TREMONT AVENUE,HARRISON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496364,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,11:45,BRONX,10457,40.853905,-73.89864,"(40.853905, -73.89864)",EAST 181 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495949,Station Wagon/Sport Utility Vehicle,F550,,, +01/20/2022,21:00,BROOKLYN,11209,40.631298,-74.03375,"(40.631298, -74.03375)",COLONIAL ROAD,77 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496078,Sedan,Sedan,,, +01/21/2022,0:15,BROOKLYN,11236,40.636024,-73.89506,"(40.636024, -73.89506)",AVENUE M,EAST 95 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4496203,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/20/2022,0:40,QUEENS,11417,40.6704,-73.84199,"(40.6704, -73.84199)",,,93-14 ALBERT ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,0:15,QUEENS,11103,40.757095,-73.915016,"(40.757095, -73.915016)",BROADWAY,45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496494,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,18:00,QUEENS,11368,40.751526,-73.859184,"(40.751526, -73.859184)",108 STREET,39 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4496041,Bike,,,, +01/21/2022,19:00,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",3 AVENUE,EAST 125 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496464,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,0:40,,,,,,EAST HOUSTON STREET,FDR Round About,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4496682,Ambulance,Pick-up Truck,,, +01/17/2022,13:00,BROOKLYN,11206,40.699036,-73.9389,"(40.699036, -73.9389)",PARK STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496728,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,22:20,QUEENS,11419,40.689827,-73.81291,"(40.689827, -73.81291)",133 STREET,105 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496350,Sedan,Sedan,,, +01/11/2022,9:46,MANHATTAN,10007,40.714417,-74.006096,"(40.714417, -74.006096)",,,280 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,0:10,BROOKLYN,11215,40.65638,-73.98066,"(40.65638, -73.98066)",18 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4496425,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Bike, +01/20/2022,21:49,,,40.693905,-73.94892,"(40.693905, -73.94892)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496629,Sedan,Sedan,,, +01/21/2022,18:50,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4496365,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/19/2022,8:55,BROOKLYN,11221,0,0,"(0.0, 0.0)",REID AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4496544,Sedan,Sedan,,, +01/21/2022,13:45,MANHATTAN,10032,40.837177,-73.942604,"(40.837177, -73.942604)",WEST 162 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496713,Station Wagon/Sport Utility Vehicle,Bus,,, +01/21/2022,10:30,BROOKLYN,11231,40.685062,-74.00269,"(40.685062, -74.00269)",COLUMBIA STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496483,Sedan,,,, +01/20/2022,19:30,BRONX,10475,40.881607,-73.83784,"(40.881607, -73.83784)",BOSTON ROAD,DEREIMER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4496064,Sedan,Sedan,,, +01/07/2022,17:33,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4496794,Sedan,,,, +01/19/2022,17:30,QUEENS,11355,40.756023,-73.82088,"(40.756023, -73.82088)",BEECH AVENUE,BOWNE STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4495904,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,3:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473474,Sedan,,,, +10/26/2021,9:00,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Unspecified,,,4471695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/29/2021,17:00,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4472186,Sedan,,,, +09/29/2021,20:30,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,4462773,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/29/2021,10:49,BROOKLYN,11219,40.639698,-73.99686,"(40.639698, -73.99686)",,,1032 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473542,Sedan,Sedan,,, +10/29/2021,23:23,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4473545,Sedan,,,, +10/25/2021,10:40,BROOKLYN,11237,40.709946,-73.92801,"(40.709946, -73.92801)",,,108 VARICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4471275,Sedan,Box Truck,,, +10/31/2021,17:48,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",AVENUE C,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473547,Sedan,,,, +10/17/2021,8:28,,,40.7350022,-73.8364386,"(40.7350022, -73.8364386)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Other Vehicular,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,4468535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/01/2022,22:03,BROOKLYN,11217,40.680878,-73.98372,"(40.680878, -73.98372)",3 AVENUE,BUTLER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496593,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,8:20,,,40.7332923,-73.9871799,"(40.7332923, -73.9871799)",Third Avenue and East 14th stree,East 14 street,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470521,Sedan,Bike,,, +12/10/2021,17:00,BRONX,10468,40.874683,-73.886505,"(40.874683, -73.886505)",EAST 204 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486363,Sedan,,,, +12/12/2021,6:04,BROOKLYN,11236,40.641365,-73.89811,"(40.641365, -73.89811)",,,1625 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,Unspecified,,,4485587,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/12/2021,3:46,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Unspecified,,,4486044,Sedan,Sedan,,, +12/12/2021,16:10,BROOKLYN,11218,40.64731,-73.980125,"(40.64731, -73.980125)",,,100 CATON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486268,Taxi,,,, +12/12/2021,18:39,,,,,,BORDEN AVENUE,VANDAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485750,Sedan,Sedan,,, +12/12/2021,12:47,,,40.676632,-73.95944,"(40.676632, -73.95944)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485692,Sedan,Moped,,, +12/12/2021,4:00,QUEENS,11354,40.763245,-73.82075,"(40.763245, -73.82075)",,,144-50 38 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,10:30,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485699,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,23:10,,,40.63932,-74.02356,"(40.63932, -74.02356)",3 AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4486485,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/12/2021,3:55,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",FLATBUSH AVENUE,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4485644,Sedan,Sedan,,, +12/12/2021,16:20,,,40.584644,-73.94899,"(40.584644, -73.94899)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4486263,Sedan,Sedan,,, +01/21/2022,12:36,MANHATTAN,10035,40.799805,-73.92992,"(40.799805, -73.92992)",,,20 PALADINO AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4496257,Sedan,Sedan,,, +01/21/2022,6:30,QUEENS,11378,40.719406,-73.902504,"(40.719406, -73.902504)",59 AVENUE,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496648,Sedan,,,, +01/16/2022,10:00,BRONX,10452,40.83562,-73.927864,"(40.83562, -73.927864)",WEST 166 STREET,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496776,Pick-up Truck,,,, +01/20/2022,19:22,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",HYLAN BOULEVARD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496407,Sedan,Sedan,,, +01/21/2022,13:00,,,40.6992,-73.92309,"(40.6992, -73.92309)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496326,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,4:15,,,40.8327,-73.950226,"(40.8327, -73.950226)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4496016,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,17:30,BRONX,10474,40.814007,-73.88972,"(40.814007, -73.88972)",,,1230 SPOFFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496828,Sedan,,,, +10/31/2021,20:30,BROOKLYN,11233,40.676693,-73.917404,"(40.676693, -73.917404)",LOUIS PLACE,ATLANTIC AVENUE,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472674,Sedan,Sedan,,, +10/31/2021,19:00,,,40.84763,-73.866005,"(40.84763, -73.866005)",RHINELANDER AVENUE,HUNT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4472843,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,5:00,BROOKLYN,11208,40.68178,-73.87879,"(40.68178, -73.87879)",,,3145 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,6:58,MANHATTAN,10012,40.72443,-73.99347,"(40.72443, -73.99347)",EAST HOUSTON STREET,ELIZABETH STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473494,Pick-up Truck,Moped,,, +10/26/2021,17:58,BROOKLYN,11220,40.643425,-74.01659,"(40.643425, -74.01659)",,,375 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473432,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,1:00,MANHATTAN,10031,40.82804,-73.94251,"(40.82804, -73.94251)",WEST 151 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473160,Bike,Sedan,,, +10/31/2021,0:49,BROOKLYN,11234,40.623203,-73.93316,"(40.623203, -73.93316)",TROY AVENUE,AVENUE L,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473079,Sedan,,,, +10/31/2021,1:55,STATEN ISLAND,10306,40.57737,-74.11145,"(40.57737, -74.11145)",SOUTH RAILROAD AVENUE,BANCROFT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4472360,Sedan,Sedan,Sedan,Sedan, +10/31/2021,23:30,,,40.696117,-73.970436,"(40.696117, -73.970436)",VANDERBILT AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Failure to Yield Right-of-Way,,,,4472724,Sedan,,,, +10/31/2021,4:00,BRONX,10466,40.89642,-73.85263,"(40.89642, -73.85263)",,,4349 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473506,Sedan,,,, +10/31/2021,17:30,BRONX,10469,40.878365,-73.85893,"(40.878365, -73.85893)",BRONXWOOD AVENUE,EAST 214 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472915,Sedan,Sedan,,, +10/31/2021,18:25,MANHATTAN,10037,40.809494,-73.935814,"(40.809494, -73.935814)",EAST 132 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4472783,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,12:53,MANHATTAN,10002,40.721474,-73.98383,"(40.721474, -73.98383)",CLINTON STREET,EAST HOUSTON STREET,,2,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473017,Bike,E-Bike,,, +10/31/2021,0:31,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473305,Sedan,,,, +09/04/2021,16:40,,,40.689243,-73.98873,"(40.689243, -73.98873)",STATE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473380,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,1:05,BRONX,10469,40.862595,-73.83153,"(40.862595, -73.83153)",EAST GUN HILL ROAD,ELY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4472411,Sedan,Station Wagon/Sport Utility Vehicle,STATION WA,SEDAN, +10/31/2021,4:18,QUEENS,11377,40.746937,-73.89862,"(40.746937, -73.89862)",65 STREET,38 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4472805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,3:24,,,40.82413,-73.94098,"(40.82413, -73.94098)",8 AVENUE,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4473140,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/27/2021,17:27,MANHATTAN,10031,40.821754,-73.94724,"(40.821754, -73.94724)",HAMILTON TERRACE,WEST 141 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4473292,Pick-up Truck,Moped,,, +10/31/2021,17:38,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,View Obstructed/Limited,,,,4472978,Station Wagon/Sport Utility Vehicle,Van,,, +10/31/2021,3:41,MANHATTAN,10038,40.712597,-73.99889,"(40.712597, -73.99889)",SAINT JAMES PLACE,JAMES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472441,Sedan,Sedan,,, +10/31/2021,6:30,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472648,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,12:26,BRONX,10455,40.81676,-73.917465,"(40.81676, -73.917465)",MELROSE AVENUE,EAST 150 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,16:45,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472923,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,13:37,,,,,,dekalb avenue,wyckoff,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472940,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,9:25,BROOKLYN,11214,40.605667,-73.99717,"(40.605667, -73.99717)",,,8406 20 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472580,Sedan,E-Bike,,, +07/23/2021,16:30,BROOKLYN,11207,40.672493,-73.8918,"(40.672493, -73.8918)",,,2182 PITKIN AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439873,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,6:09,BRONX,10472,40.828403,-73.84392,"(40.828403, -73.84392)",BRUCKNER EXPRESSWAY,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472510,Sedan,,,, +10/30/2021,22:45,BROOKLYN,11233,40.671986,-73.9197,"(40.671986, -73.9197)",,,466 HOWARD AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4473334,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,12:30,BROOKLYN,11225,40.66777,-73.95614,"(40.66777, -73.95614)",,,1610 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473367,Sedan,Sedan,,, +10/30/2021,13:48,STATEN ISLAND,10312,40.529373,-74.161354,"(40.529373, -74.161354)",HYLAN BOULEVARD,ARDEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4473408,Sedan,Pick-up Truck,,, +10/31/2021,8:46,QUEENS,11365,40.733936,-73.807365,"(40.733936, -73.807365)",,,65-91 162 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472564,Sedan,,,, +10/31/2021,7:13,,,40.615307,-74.15799,"(40.615307, -74.15799)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4472515,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,10:15,,,40.842247,-73.91403,"(40.842247, -73.91403)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473233,USPS POSTA,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,12:52,BROOKLYN,11201,40.692844,-73.99311,"(40.692844, -73.99311)",CLINTON STREET,JORALEMON STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472630,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,4:10,,,40.74757,-73.83481,"(40.74757, -73.83481)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4472464,Sedan,,,, +10/31/2021,2:15,,,40.69986,-73.92829,"(40.69986, -73.92829)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4472939,Sedan,Sedan,,, +10/31/2021,15:22,BROOKLYN,11208,40.669537,-73.86226,"(40.669537, -73.86226)",,,2726 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4472775,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,23:50,BROOKLYN,11228,40.612732,-74.01172,"(40.612732, -74.01172)",14 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4472819,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/25/2021,6:15,BRONX,10451,40.80976,-73.929,"(40.80976, -73.929)",,,2477 3 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473487,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,11:45,MANHATTAN,10002,40.715046,-73.99252,"(40.715046, -73.99252)",,,9 ALLEN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473524,Tow Truck / Wrecker,,,, +10/31/2021,11:15,,,40.879578,-73.875374,"(40.879578, -73.875374)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4472964,Taxi,Sedan,,, +10/31/2021,2:36,BRONX,10454,40.807503,-73.91702,"(40.807503, -73.91702)",EAST 139 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472889,Sedan,E-Bike,,, +10/31/2021,22:25,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472951,Motorscooter,,,, +10/31/2021,6:00,,,40.644897,-74.00696,"(40.644897, -74.00696)",48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472500,Sedan,,,, +10/31/2021,15:00,MANHATTAN,10036,40.75524,-73.98102,"(40.75524, -73.98102)",,,27 WEST 44 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4472605,Sedan,,,, +10/31/2021,12:54,BROOKLYN,11220,40.64173,-74.00925,"(40.64173, -74.00925)",,,619 53 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472733,Sedan,,,, +10/31/2021,9:35,,,40.615917,-73.986496,"(40.615917, -73.986496)",66 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473325,Sedan,Box Truck,,, +10/30/2021,19:30,,,40.742573,-73.73389,"(40.742573, -73.73389)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473418,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:16,BRONX,10454,40.804173,-73.91302,"(40.804173, -73.91302)",,,221 BRUCKNER BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472878,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,8:51,BROOKLYN,11230,40.61569,-73.964485,"(40.61569, -73.964485)",,,1356 EAST 10 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473059,Sedan,Sedan,,, +10/31/2021,0:15,BROOKLYN,11233,40.677063,-73.90803,"(40.677063, -73.90803)",,,1895 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473335,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,14:16,BROOKLYN,11236,40.63762,-73.905624,"(40.63762, -73.905624)",EAST 88 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472649,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,11:20,BROOKLYN,11233,40.678886,-73.921974,"(40.678886, -73.921974)",,,1865 FULTON STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4473397,Sedan,Sedan,Sedan,, +07/23/2021,18:13,BRONX,10451,,,,MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439939,E-Scooter,Sedan,,, +10/31/2021,6:22,QUEENS,11355,40.757946,-73.81924,"(40.757946, -73.81924)",PARSONS BOULEVARD,ASH AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4472685,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,11:05,BRONX,10467,,,,Dr Theodore Kazimiroff Blvd,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473273,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,7:30,MANHATTAN,10128,40.782513,-73.95763,"(40.782513, -73.95763)",,,1226 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472537,Sedan,Sedan,,, +10/31/2021,14:40,MANHATTAN,10002,40.710697,-73.984634,"(40.710697, -73.984634)",,,299 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473015,Sedan,,,, +10/31/2021,11:51,BRONX,10461,40.84299,-73.82625,"(40.84299, -73.82625)",JARVIS AVENUE,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4472903,,,,, +10/31/2021,14:40,,,40.69432,-73.77785,"(40.69432, -73.77785)",174 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472930,Sedan,,,, +10/28/2021,18:00,QUEENS,11375,40.71047,-73.85092,"(40.71047, -73.85092)",METROPOLITAN AVENUE,71 AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4473409,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +10/31/2021,18:45,,,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472998,Sedan,,,, +10/31/2021,21:00,BROOKLYN,11218,40.643227,-73.980576,"(40.643227, -73.980576)",,,163 DAHILL ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473209,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,10:45,BROOKLYN,11208,40.677864,-73.87286,"(40.677864, -73.87286)",,,998 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472771,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,11:04,QUEENS,11372,40.75383,-73.88411,"(40.75383, -73.88411)",83 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473089,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,2:12,QUEENS,11423,40.713318,-73.76402,"(40.713318, -73.76402)",JAMAICA AVENUE,196 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4472810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,22:00,MANHATTAN,10009,40.728596,-73.98015,"(40.728596, -73.98015)",,,551 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473495,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,20:30,BROOKLYN,11231,40.675842,-73.99905,"(40.675842, -73.99905)",COURT STREET,HUNTINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472719,Sedan,,,, +10/24/2021,14:00,BRONX,10466,,,,PRATT AVENUE,CONNER STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Other Vehicular,Other Vehicular,,,4473508,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,16:39,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4472862,Sedan,Sedan,Sedan,, +10/22/2021,19:01,MANHATTAN,10035,,,,EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4473313,Sedan,Box Truck,,, +10/31/2021,14:50,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472660,Sedan,Tractor Truck Diesel,,, +10/31/2021,5:50,QUEENS,11428,40.72113,-73.74822,"(40.72113, -73.74822)",,,212-37 91 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473031,Sedan,Sedan,,, +10/11/2021,9:15,MANHATTAN,10027,40.81059,-73.954575,"(40.81059, -73.954575)",,,117 MORNINGSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473347,,,,, +10/31/2021,20:10,BROOKLYN,11249,40.712597,-73.967735,"(40.712597, -73.967735)",KENT AVENUE,SOUTH 5 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472836,Station Wagon/Sport Utility Vehicle,Bike,,, +10/31/2021,19:35,QUEENS,11374,40.72161,-73.86671,"(40.72161, -73.86671)",,,63-116 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472728,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,3:15,QUEENS,11364,40.75112,-73.763084,"(40.75112, -73.763084)",BELL BOULEVARD,56 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4472838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,18:37,BROOKLYN,11211,40.706997,-73.96137,"(40.706997, -73.96137)",LEE AVENUE,TAYLOR STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,21:30,,,40.815754,-73.89529,"(40.815754, -73.89529)",LONGWOOD AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4473120,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,1:12,QUEENS,11377,40.740273,-73.89586,"(40.740273, -73.89586)",69 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472380,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,17:29,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4473283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/06/2021,6:00,QUEENS,11103,40.755764,-73.91218,"(40.755764, -73.91218)",BROADWAY,NEWTOWN ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4487023,Sedan,Sedan,,, +10/22/2021,10:32,BRONX,10467,,,,EAST 211 STREET,TRYON AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4473389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/31/2021,18:00,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",UTICA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472679,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,21:05,QUEENS,11102,40.7754,-73.92116,"(40.7754, -73.92116)",,,24-12 23 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4472985,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,9:55,QUEENS,11375,40.712597,-73.84126,"(40.712597, -73.84126)",PURITAN AVENUE,GREENWAY SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473375,Sedan,,,, +10/31/2021,5:30,BROOKLYN,11212,40.657295,-73.915886,"(40.657295, -73.915886)",,,440 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4473345,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,14:42,BROOKLYN,11236,40.630093,-73.905716,"(40.630093, -73.905716)",EAST 80 STREET,PAERDEGAT 9 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473075,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,4:45,,,40.641468,-73.95938,"(40.641468, -73.95938)",OCEAN AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4472426,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,11:40,BROOKLYN,11201,40.69746,-73.99303,"(40.69746, -73.99303)",CLARK STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473147,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,2:14,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,17:48,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,8:30,,,40.69595,-73.86237,"(40.69595, -73.86237)",FOREST PARKWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4473293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,4:29,,,40.737865,-74.00019,"(40.737865, -74.00019)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472721,Taxi,Sedan,,, +10/31/2021,11:31,BROOKLYN,11215,40.666595,-73.98184,"(40.666595, -73.98184)",,,340 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472977,Sedan,Sedan,,, +10/31/2021,2:10,,,40.5659,-74.19375,"(40.5659, -74.19375)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4473022,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,5:35,BROOKLYN,11207,40.660927,-73.892426,"(40.660927, -73.892426)",,,672 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4472767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/31/2021,19:20,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4473437,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,19:30,BROOKLYN,11225,40.66124,-73.95586,"(40.66124, -73.95586)",,,200 LINCOLN ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473369,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,21:25,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4473272,Sedan,Sedan,Sedan,, +10/31/2021,21:00,MANHATTAN,10003,40.727394,-73.98677,"(40.727394, -73.98677)",,,72 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473496,Sedan,,,, +10/31/2021,1:31,MANHATTAN,10075,40.77139,-73.95044,"(40.77139, -73.95044)",EAST 79 STREET,YORK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472536,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,10:40,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,18:54,BRONX,10454,40.808887,-73.906715,"(40.808887, -73.906715)",EAST 144 STREET,TIMPSON PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4472895,Sedan,Sedan,,, +10/31/2021,15:00,,,40.541176,-74.185776,"(40.541176, -74.185776)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4473361,Sedan,,,, +10/31/2021,2:18,QUEENS,11373,40.73821,-73.866486,"(40.73821, -73.866486)",JUNCTION BOULEVARD,55 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472675,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,16:38,,,40.826683,-73.935394,"(40.826683, -73.935394)",WEST 153 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472957,Sedan,Sedan,,, +10/31/2021,17:23,,,40.697823,-73.76799,"(40.697823, -73.76799)",WOOD STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473304,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,5:12,BRONX,10472,40.82888,-73.866646,"(40.82888, -73.866646)",,,1159A SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472503,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,21:15,,,40.746544,-73.766014,"(40.746544, -73.766014)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472842,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,14:03,,,,,,CITY ISLAND CIRCLE,PARK DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472904,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,7:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4472560,Sedan,,,, +10/31/2021,10:44,BROOKLYN,11220,40.648705,-74.010254,"(40.648705, -74.010254)",46 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472732,Sedan,E-Scooter,,, +10/31/2021,8:00,,,40.73844,-73.79821,"(40.73844, -73.79821)",171 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473066,Sedan,,,, +10/31/2021,20:51,BROOKLYN,11218,40.640316,-73.97907,"(40.640316, -73.97907)",AVENUE C,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473208,Station Wagon/Sport Utility Vehicle,Van,,, +10/31/2021,7:00,BRONX,10467,40.87627,-73.88107,"(40.87627, -73.88107)",,,230 VANCORTLANDT AVENUE EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472967,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,23:23,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4473540,Sedan,Sedan,Sedan,, +10/31/2021,20:15,,,40.66706,-73.7392,"(40.66706, -73.7392)",LAURELTON PARKWAY,,,7,0,0,0,0,0,7,0,Unsafe Lane Changing,Unspecified,,,,4472664,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,12:29,,,40.65207,-74.00676,"(40.65207, -74.00676)",40 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472739,Sedan,Sedan,,, +10/30/2021,14:15,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,8,0,0,0,0,0,8,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/30/2021,11:00,,,40.759262,-73.750374,"(40.759262, -73.750374)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473417,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,18:00,STATEN ISLAND,10310,40.626415,-74.13009,"(40.626415, -74.13009)",FOREST AVENUE,LLEWELLYN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473326,Sedan,,,, +10/31/2021,1:30,BROOKLYN,11230,40.615314,-73.96237,"(40.615314, -73.96237)",AVENUE N,EAST 12 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4473047,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +10/28/2021,14:32,BRONX,10472,40.83482,-73.86801,"(40.83482, -73.86801)",EAST 174 STREET,SAINT LAWRENCE AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473400,Sedan,E-Scooter,,, +10/31/2021,4:03,BRONX,10455,40.809456,-73.909454,"(40.809456, -73.909454)",EAST 144 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4472886,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,2:05,BRONX,10461,40.84921,-73.83056,"(40.84921, -73.83056)",WESTCHESTER AVENUE,SAINT THERESA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,19:06,BROOKLYN,11237,40.700672,-73.92164,"(40.700672, -73.92164)",KNICKERBOCKER AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472950,Sedan,,,, +10/31/2021,16:30,BROOKLYN,11211,40.716328,-73.948074,"(40.716328, -73.948074)",LEONARD STREET,JACKSON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4472631,Box Truck,Sedan,,, +10/31/2021,4:14,MANHATTAN,10019,40.77146,-73.994354,"(40.77146, -73.994354)",12 AVENUE,WEST 57 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4473523,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/31/2021,18:15,BRONX,10466,40.89083,-73.85435,"(40.89083, -73.85435)",,,824 EAST 231 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,7:35,,,40.75087,-73.74939,"(40.75087, -73.74939)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472855,Box Truck,Sedan,,, +10/31/2021,18:10,,,40.678596,-73.882416,"(40.678596, -73.882416)",ATLANTIC AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4472774,Sedan,Sedan,,, +10/21/2021,17:13,BRONX,10451,,,,,,610 EXTERIOR STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473421,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,19:28,BRONX,10454,40.812263,-73.92059,"(40.812263, -73.92059)",EAST 143 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473228,Taxi,Bike,,, +10/31/2021,12:15,QUEENS,11433,40.70494,-73.79449,"(40.70494, -73.79449)",,,92-19 165 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472816,Sedan,,,, +10/31/2021,22:31,BROOKLYN,11218,40.643654,-73.97103,"(40.643654, -73.97103)",,,819 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473052,Taxi,Sedan,,, +10/30/2021,22:12,BROOKLYN,11232,40.654953,-74.00703,"(40.654953, -74.00703)",3 AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473473,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,6:05,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4472684,Sedan,Tractor Truck Diesel,,, +10/31/2021,23:15,MANHATTAN,10002,40.712646,-73.98998,"(40.712646, -73.98998)",MADISON STREET,RUTGERS STREET,,2,0,0,0,2,0,0,0,Unspecified,,,,,4472958,Bike,,,, +10/31/2021,20:22,,,40.86811,-73.91976,"(40.86811, -73.91976)",BROADWAY,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473000,E-Bike,Sedan,,, +10/31/2021,21:56,,,40.667683,-73.99608,"(40.667683, -73.99608)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4472738,Sedan,Sedan,Sedan,, +10/31/2021,3:50,MANHATTAN,10036,40.75935,-73.98882,"(40.75935, -73.98882)",,,301 WEST 45 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472922,Sedan,Sedan,,, +10/31/2021,4:58,BROOKLYN,11234,40.63321,-73.92259,"(40.63321, -73.92259)",EAST 56 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472453,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:22,BROOKLYN,11206,40.70604,-73.94129,"(40.70604, -73.94129)",BOERUM STREET,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,Unspecified,Unspecified,,4472830,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/31/2021,13:10,,,40.633755,-74.155075,"(40.633755, -74.155075)",VANPELT AVENUE,LINDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472579,Sedan,,,, +10/31/2021,11:00,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472839,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,11:30,,,40.762737,-73.83951,"(40.762737, -73.83951)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,8:00,BROOKLYN,11235,40.579437,-73.938,"(40.579437, -73.938)",,,160 OXFORD STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4472828,Sedan,Sedan,,, +10/28/2021,13:45,,,40.781315,-73.94614,"(40.781315, -73.94614)",1 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473482,Sedan,E-Scooter,,, +10/31/2021,23:40,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",85 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4473088,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,10:20,BROOKLYN,11239,40.654343,-73.864204,"(40.654343, -73.864204)",,,11629 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472770,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,22:15,,,40.800964,-73.971016,"(40.800964, -73.971016)",RIVERSIDE DRIVE,WEST 104 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4473124,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,4:11,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",34 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472381,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/29/2021,18:52,,,,,,91 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,17:23,,,40.844944,-73.917404,"(40.844944, -73.917404)",MACOMBS ROAD,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473539,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,16:45,QUEENS,11377,40.76219,-73.90195,"(40.76219, -73.90195)",,,26-45 BROOKLYN QUEENS EXPRESSWAY,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4472984,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/27/2021,10:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473388,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,14:18,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473362,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,17:25,BRONX,10465,40.829685,-73.8253,"(40.829685, -73.8253)",EAST TREMONT AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472905,Sedan,Sedan,,, +10/31/2021,0:30,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4472553,Sedan,Sedan,Sedan,Sedan,Sedan +10/31/2021,4:15,,,40.724934,-73.82976,"(40.724934, -73.82976)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Outside Car Distraction,Driver Inattention/Distraction,,,4472561,Sedan,Sedan,Sedan,, +10/31/2021,5:25,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,4472865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/19/2021,0:50,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440176,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:50,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4473282,Sedan,Sedan,,, +10/31/2021,11:28,BROOKLYN,11233,0,0,"(0.0, 0.0)",,,40 ROCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472604,Sedan,,,, +10/31/2021,14:10,,,40.851757,-73.88473,"(40.851757, -73.88473)",CROTONA AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472897,Sedan,Sedan,,, +10/30/2021,15:00,QUEENS,11691,40.603775,-73.75205,"(40.603775, -73.75205)",,,19-12 MOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473312,Sedan,,,, +10/31/2021,20:25,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472663,Sedan,,,, +10/31/2021,0:05,QUEENS,11436,40.679615,-73.79642,"(40.679615, -73.79642)",FOCH BOULEVARD,145 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472932,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,2:25,QUEENS,11691,40.604553,-73.7557,"(40.604553, -73.7557)",,,11-25 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473357,Dump,,,, +10/31/2021,0:25,BROOKLYN,11232,40.656643,-74.00527,"(40.656643, -74.00527)",3 AVENUE,34 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Lane Changing,,,,4472474,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,9:00,BROOKLYN,11230,40.615227,-73.96306,"(40.615227, -73.96306)",,,1122 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4472866,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,16:50,MANHATTAN,10019,40.764923,-73.988464,"(40.764923, -73.988464)",,,401 WEST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472926,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,23:50,,,40.81847,-73.9414,"(40.81847, -73.9414)",7 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472954,Sedan,E-Scooter,,, +10/31/2021,2:13,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472505,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,13:45,BROOKLYN,11234,40.62377,-73.93552,"(40.62377, -73.93552)",,,3918 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472600,Mack Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,13:30,STATEN ISLAND,10304,40.615196,-74.08787,"(40.615196, -74.08787)",,,984 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473327,Sedan,Pick-up Truck,,, +10/31/2021,12:57,BROOKLYN,11236,40.648193,-73.918365,"(40.648193, -73.918365)",,,8708 AVENUE B,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473338,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,1:50,BRONX,10474,40.816856,-73.88813,"(40.816856, -73.88813)",,,801 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472655,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,5:21,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",GRAND STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472802,Sedan,Sedan,,, +10/30/2021,12:55,BRONX,10461,40.84477,-73.846565,"(40.84477, -73.846565)",,,1515 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473315,,,,, +10/31/2021,14:31,QUEENS,11105,40.774345,-73.90155,"(40.774345, -73.90155)",42 STREET,20 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472983,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/31/2021,21:20,QUEENS,11373,40.743874,-73.87067,"(40.743874, -73.87067)",94 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,12:00,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472528,Sedan,Sedan,,, +10/31/2021,16:00,QUEENS,11368,,,,,,1 Marina road,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4472676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,5:23,QUEENS,11372,40.7568,-73.873665,"(40.7568, -73.873665)",JUNCTION BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4472452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,3:00,BROOKLYN,11211,40.715282,-73.95144,"(40.715282, -73.95144)",SKILLMAN AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4472633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,23:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,Following Too Closely,,,4473392,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/19/2022,9:30,,,40.748367,-73.89597,"(40.748367, -73.89597)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4495724,Box Truck,,,, +10/31/2021,6:13,,,40.694885,-73.98515,"(40.694885, -73.98515)",JOHNSON STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4472625,Sedan,,,, +10/26/2021,16:15,,,40.77057,-73.98215,"(40.77057, -73.98215)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473441,Taxi,,,, +07/23/2021,8:54,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440216,Sedan,Sedan,,, +10/31/2021,19:22,QUEENS,11372,40.748512,-73.875565,"(40.748512, -73.875565)",ROOSEVELT AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473083,Sedan,,,, +10/31/2021,3:10,,,40.688305,-73.75607,"(40.688305, -73.75607)",120 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4472933,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,15:30,MANHATTAN,10003,40.73286,-73.98619,"(40.73286, -73.98619)",,,242 EAST 14 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4473498,Box Truck,Sedan,,, +10/31/2021,15:53,BROOKLYN,11217,40.68738,-73.97708,"(40.68738, -73.97708)",,,709 FULTON STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4472722,Bike,,,, +10/31/2021,16:10,BRONX,10454,40.80612,-73.91796,"(40.80612, -73.91796)",SAINT ANNS AVENUE,EAST 137 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472894,Sedan,E-Scooter,,, +10/31/2021,16:45,BROOKLYN,11204,40.612495,-73.97922,"(40.612495, -73.97922)",65 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472946,Sedan,Lift Boom,,, +10/31/2021,8:30,MANHATTAN,10019,40.76605,-73.9973,"(40.76605, -73.9973)",,,660 12 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4472918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/31/2021,15:30,BROOKLYN,11207,40.657066,-73.8895,"(40.657066, -73.8895)",,,850 PENNSYLVANIA AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4472781,E-Bike,Sedan,,, +10/31/2021,18:39,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",WEST 157 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473021,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,12:00,MANHATTAN,10034,40.86674,-73.928734,"(40.86674, -73.928734)",PAYSON AVENUE,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473302,Sedan,,,, +10/31/2021,4:42,,,40.652115,-73.916664,"(40.652115, -73.916664)",AVENUE A,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472712,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,11:00,BRONX,10456,40.82782,-73.9063,"(40.82782, -73.9063)",,,1100 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473067,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,19:35,BROOKLYN,11210,40.62689,-73.945885,"(40.62689, -73.945885)",EAST 31 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472683,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,5:35,BROOKLYN,11236,40.64156,-73.91125,"(40.64156, -73.91125)",,,614 EAST 87 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4472427,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,12:14,QUEENS,11379,40.71166,-73.873474,"(40.71166, -73.873474)",,,67-59 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473127,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,14:45,QUEENS,11427,40.727222,-73.74681,"(40.727222, -73.74681)",217 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4473403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,8:45,,,40.596615,-73.97652,"(40.596615, -73.97652)",AVENUE U,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4472573,Flat Bed,Sedan,,, +10/31/2021,20:50,BROOKLYN,11215,40.670265,-73.99763,"(40.670265, -73.99763)",14 STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4472741,Sedan,Sedan,Sedan,, +10/31/2021,14:55,QUEENS,11691,40.604954,-73.745865,"(40.604954, -73.745865)",BEACH 9 STREET,DINSMORE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,11:20,MANHATTAN,10031,40.823887,-73.95232,"(40.823887, -73.95232)",WEST 141 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473295,Sedan,,,, +10/31/2021,21:00,BRONX,10462,40.834106,-73.85246,"(40.834106, -73.85246)",,,2166 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472987,Sedan,Garbage or Refuse,,, +10/31/2021,3:00,MANHATTAN,10016,40.750217,-73.979065,"(40.750217, -73.979065)",PARK AVENUE,EAST 39 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4473491,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,5:20,BROOKLYN,11207,40.680008,-73.89032,"(40.680008, -73.89032)",ARLINGTON AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4472768,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +10/26/2021,18:49,QUEENS,11368,40.757183,-73.85503,"(40.757183, -73.85503)",114 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473414,Sedan,Sedan,,, +10/31/2021,23:17,,,,,,UTOPIA PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,Unspecified,,,4472848,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/31/2021,4:45,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473002,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,4:00,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486503,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,21:40,BROOKLYN,11217,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,NEVINS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4472731,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,10:54,QUEENS,11411,40.696217,-73.7436,"(40.696217, -73.7436)",LINDEN BOULEVARD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,5:40,BROOKLYN,11204,40.623882,-73.9782,"(40.623882, -73.9782)",52 STREET,20 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473098,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/31/2021,14:50,BROOKLYN,11206,40.70447,-73.94274,"(40.70447, -73.94274)",GRAHAM AVENUE,SEIGEL STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473205,Sedan,Sedan,,, +10/31/2021,0:00,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4472885,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,0:40,MANHATTAN,10022,40.757698,-73.9694,"(40.757698, -73.9694)",3 AVENUE,EAST 53 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4472968,Taxi,Sedan,,, +10/31/2021,17:40,BROOKLYN,11207,40.65918,-73.89112,"(40.65918, -73.89112)",,,756 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472773,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:05,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4472832,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,1:23,,,,,,CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473309,Sedan,Sedan,,, +10/31/2021,19:41,QUEENS,11691,40.60098,-73.75555,"(40.60098, -73.75555)",BEACH 22 STREET,NEW HAVEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473046,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/30/2021,16:00,QUEENS,11691,40.607384,-73.754395,"(40.607384, -73.754395)",,,13-73 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473373,PK,,,, +10/31/2021,18:45,BRONX,10467,40.858406,-73.86792,"(40.858406, -73.86792)",,,2233 BOSTON ROAD,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4472840,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,9:45,QUEENS,11691,40.60992,-73.75361,"(40.60992, -73.75361)",,,14-60 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473364,Sedan,,,, +10/31/2021,6:23,BROOKLYN,11204,40.632717,-73.98377,"(40.632717, -73.98377)",16 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473054,Sedan,Sedan,,, +10/31/2021,1:33,,,40.7152,-73.77847,"(40.7152, -73.77847)",DALNY ROAD,WEXFORD TERRACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472382,Sedan,,,, +10/31/2021,1:25,QUEENS,11421,40.692574,-73.858185,"(40.692574, -73.858185)",JAMAICA AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473288,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,22:42,BROOKLYN,11230,40.617928,-73.9707,"(40.617928, -73.9707)",,,1350 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473099,Convertible,,,, +10/31/2021,19:40,MANHATTAN,10012,40.72488,-73.99908,"(40.72488, -73.99908)",,,103 PRINCE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472687,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,22:30,BRONX,10466,40.89,-73.849106,"(40.89, -73.849106)",PAULDING AVENUE,EAST 232 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4472909,Sedan,Sedan,,, +10/31/2021,6:00,QUEENS,11432,40.711548,-73.790726,"(40.711548, -73.790726)",,,171-33 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472562,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,3:15,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4472900,Sedan,Sedan,,, +10/31/2021,22:50,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473223,Sedan,,,, +10/31/2021,5:00,BRONX,10472,40.82888,-73.866646,"(40.82888, -73.866646)",,,1159 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472990,Sedan,,,, +10/31/2021,3:14,BROOKLYN,11207,40.657814,-73.89613,"(40.657814, -73.89613)",LINDEN BOULEVARD,WILLIAMS AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4472780,Sedan,Sedan,,, +10/31/2021,11:22,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473476,Pick-up Truck,Sedan,,, +10/31/2021,23:30,,,40.66534,-73.743935,"(40.66534, -73.743935)",SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472813,Sedan,Sedan,,, +10/30/2021,5:10,BRONX,10455,40.817158,-73.90154,"(40.817158, -73.90154)",EAST 156 STREET,HEWITT PLACE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4473518,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,23:39,,,40.63004,-74.141525,"(40.63004, -74.141525)",,,27 WALKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,16:58,MANHATTAN,10013,,,,,,52 MOTT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472860,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +10/31/2021,0:50,QUEENS,11372,40.756256,-73.87338,"(40.756256, -73.87338)",,,33-22 JUNCTION BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472622,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,17:17,BRONX,10473,40.82408,-73.8429,"(40.82408, -73.8429)",ZEREGA AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472662,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,17:25,,,40.70153,-73.92314,"(40.70153, -73.92314)",HART STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473351,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,3:28,,,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472496,Sedan,Sedan,,, +10/31/2021,15:10,,,40.6293,-74.07661,"(40.6293, -74.07661)",SANDS STREET,BAY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473323,Sedan,,,, +10/31/2021,11:37,,,40.644142,-73.957924,"(40.644142, -73.957924)",CORTELYOU ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472869,Station Wagon/Sport Utility Vehicle,Bus,,, +10/31/2021,19:05,BROOKLYN,11220,40.64685,-74.017746,"(40.64685, -74.017746)",,,235 53 STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4472736,Sedan,,,, +10/26/2021,5:30,BRONX,10452,40.837708,-73.927635,"(40.837708, -73.927635)",UNIVERSITY AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473420,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,23:00,BROOKLYN,11218,40.640835,-73.98967,"(40.640835, -73.98967)",41 STREET,12 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473278,Sedan,,,, +10/29/2021,15:00,,,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,,,,4473387,Bus,Sedan,,, +10/31/2021,10:50,BRONX,10473,40.81752,-73.86208,"(40.81752, -73.86208)",SOUND VIEW AVENUE,TAYLOR AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4472627,AMBU,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,3:00,BROOKLYN,11201,40.69922,-73.98687,"(40.69922, -73.98687)",JAY STREET,HIGH STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4472666,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,19:42,,,,,,EAST 59 STREET,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472972,Station Wagon/Sport Utility Vehicle,Van,,, +10/31/2021,17:40,,,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472927,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,6:30,,,40.69627,-73.90956,"(40.69627, -73.90956)",CORNELIA STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4472937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,20:55,BRONX,10463,,,,,,126 VANCORTLANDT AVENUE WEST,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4473426,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,4:40,,,40.751545,-73.94199,"(40.751545, -73.94199)",QUEENSBORO BRIDGE,23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472470,Sedan,Sedan,,, +10/31/2021,12:42,BROOKLYN,11223,40.607254,-73.96728,"(40.607254, -73.96728)",OCEAN PARKWAY,QUENTIN ROAD,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4472823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:45,,,40.68348,-73.966896,"(40.68348, -73.966896)",FULTON STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4473455,Sedan,Sedan,,, +10/29/2021,14:30,,,40.742393,-73.87825,"(40.742393, -73.87825)",43 AVENUE,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473535,USPS MAIL,Sedan,,, +10/31/2021,3:39,MANHATTAN,10006,40.70921,-74.01507,"(40.70921, -74.01507)",,,75 WEST STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4472544,Sedan,Sedan,,, +10/31/2021,19:00,BRONX,10463,40.878704,-73.90496,"(40.878704, -73.90496)",,,5571 BROADWAY,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473452,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/31/2021,13:51,BRONX,10453,40.849964,-73.91416,"(40.849964, -73.91416)",WEST TREMONT AVENUE,HARRISON AVENUE,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4472882,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,5:20,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472445,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/31/2021,3:41,QUEENS,11355,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,BOOTH MEMORIAL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472677,Sedan,Sedan,,, +10/31/2021,17:15,BRONX,10466,40.88728,-73.85885,"(40.88728, -73.85885)",,,758 EAST 225 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4472924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/21/2021,14:37,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4440395,Sedan,Sedan,Sedan,, +10/18/2021,14:30,MANHATTAN,10029,40.789948,-73.94293,"(40.789948, -73.94293)",EAST 105 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Failure to Yield Right-of-Way,,,,4473393,Sedan,,,, +10/31/2021,21:20,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Steering Failure,,,,,4472858,Sedan,,,, +10/31/2021,8:05,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4472596,Sedan,Sedan,,, +10/31/2021,5:00,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473184,Sedan,,,, +10/31/2021,19:30,BRONX,10460,40.837368,-73.88777,"(40.837368, -73.88777)",EAST 174 STREET,SOUTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473068,E-Bike,Sedan,Sedan,, +10/31/2021,17:00,BROOKLYN,11207,40.65772,-73.88328,"(40.65772, -73.88328)",,,225 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472749,Sedan,,,, +10/31/2021,20:06,,,40.69192,-73.97896,"(40.69192, -73.97896)",ASHLAND PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4472723,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,10:34,QUEENS,11106,40.755398,-73.93182,"(40.755398, -73.93182)",30 STREET,37 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4472979,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,7:34,MANHATTAN,10002,40.71508,-73.9925,"(40.71508, -73.9925)",ALLEN STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473020,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,8:57,BROOKLYN,11207,40.664013,-73.89894,"(40.664013, -73.89894)",,,500 LIVONIA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4472769,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,16:55,BROOKLYN,11226,40.64312,-73.95457,"(40.64312, -73.95457)",,,2484 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473405,Sedan,,,, +10/31/2021,12:59,,,40.61393,-74.16409,"(40.61393, -74.16409)",ARLENE STREET,LANDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472577,Sedan,Sedan,,, +10/31/2021,23:13,QUEENS,11691,40.604687,-73.756874,"(40.604687, -73.756874)",,,1137 GRASSMERE TERRACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4473371,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,9:30,,,40.573196,-73.99278,"(40.573196, -73.99278)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472517,Sedan,,,, +10/31/2021,5:30,BRONX,10451,40.82054,-73.930786,"(40.82054, -73.930786)",EAST 150 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4473240,Sedan,Garbage or Refuse,,, +10/31/2021,19:40,BRONX,10455,40.816555,-73.91677,"(40.816555, -73.91677)",3 AVENUE,WESTCHESTER AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4472893,Carry All,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,13:00,,,40.82451,-73.95186,"(40.82451, -73.95186)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473499,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,12:18,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4472943,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,9:15,BROOKLYN,11205,40.689102,-73.96501,"(40.689102, -73.96501)",,,21 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472636,Van,,,, +10/31/2021,20:30,,,40.66308,-73.89464,"(40.66308, -73.89464)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4472782,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,1:59,,,40.858162,-73.91699,"(40.858162, -73.91699)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4472916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,13:10,,,40.830994,-73.928116,"(40.830994, -73.928116)",ANDERSON AVENUE,,,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4472846,E-Bike,,,, +10/31/2021,3:38,BRONX,10472,40.827316,-73.85216,"(40.827316, -73.85216)",,,2123 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4472507,Sedan,Sedan,Sedan,Sedan, +10/31/2021,3:01,,,40.86794,-73.87221,"(40.86794, -73.87221)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472430,Sedan,,,, +07/07/2021,12:16,,,40.850166,-73.93576,"(40.850166, -73.93576)",BROADWAY,,,1,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4436096,Bus,E-Bike,,, +07/15/2021,23:50,QUEENS,11367,40.72649,-73.8107,"(40.72649, -73.8107)",PARSONS BOULEVARD,75 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4437451,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,16:11,BROOKLYN,11217,40.683125,-73.98744,"(40.683125, -73.98744)",BOND STREET,BALTIC STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4438592,Sedan,Carry All,,, +06/25/2021,16:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440529,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,16:00,,,40.781693,-73.82225,"(40.781693, -73.82225)",20 AVENUE,PATRACCA PLACE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4438878,Bike,,,, +07/20/2021,19:50,BROOKLYN,11212,40.65463,-73.92201,"(40.65463, -73.92201)",REMSEN AVENUE,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4439964,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/20/2021,18:36,BROOKLYN,11233,40.67413,-73.913925,"(40.67413, -73.913925)",BOYLAND STREET,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440477,Sedan,Sedan,Sedan,, +07/21/2021,18:20,,,,,,WILLETS POINT BOULEVARD,CLEARVIEW EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4439219,Bus,Sedan,,, +07/22/2021,9:00,,,40.575787,-73.97079,"(40.575787, -73.97079)",SEA BREEZE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440262,Sedan,FORK LIFT,,, +07/23/2021,17:46,BRONX,10451,40.81612,-73.926636,"(40.81612, -73.926636)",PARK AVENUE,EAST 144 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4439940,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,7:00,STATEN ISLAND,10309,40.541744,-74.207,"(40.541744, -74.207)",WOODROW ROAD,FOSTER ROAD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4439646,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,11:00,BROOKLYN,11214,40.58671,-73.98534,"(40.58671, -73.98534)",WEST 16 STREET,CATANZARO SQUARE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4439328,Van,Van,,, +07/23/2021,0:55,BROOKLYN,11218,40.651463,-73.97988,"(40.651463, -73.97988)",,,15 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440186,Sedan,Sedan,Sedan,, +07/21/2021,19:12,BROOKLYN,11223,40.590443,-73.97116,"(40.590443, -73.97116)",AVENUE X,WEST 1 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439272,Sedan,Sedan,,, +07/23/2021,8:10,BROOKLYN,11238,40.686066,-73.971436,"(40.686066, -73.971436)",GREENE AVENUE,CARLTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439760,Station Wagon/Sport Utility Vehicle,Bike,,, +07/21/2021,9:00,,,40.50958,-74.25027,"(40.50958, -74.25027)",BENTLEY STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439628,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,14:42,BRONX,10469,40.86778,-73.83482,"(40.86778, -73.83482)",ELY AVENUE,BARTOW AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4440329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,19:01,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440510,Sedan,FDNY Truck,,, +07/22/2021,8:30,QUEENS,11692,40.59133,-73.78618,"(40.59133, -73.78618)",,,141 BEACH 56 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439614,Sedan,,,, +07/22/2021,15:00,,,40.69383,-73.758156,"(40.69383, -73.758156)",194 STREET,116 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439515,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,22:06,MANHATTAN,10065,40.767967,-73.96822,"(40.767967, -73.96822)",MADISON AVENUE,EAST 66 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4440479,Taxi,Taxi,,, +07/23/2021,11:50,,,40.592907,-73.79516,"(40.592907, -73.79516)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439799,Sedan,Sedan,,, +07/23/2021,11:29,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4439749,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/22/2021,18:28,QUEENS,11428,40.71817,-73.736145,"(40.71817, -73.736145)",JAMAICA AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439495,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,0:31,BROOKLYN,11225,40.66173,-73.96078,"(40.66173, -73.96078)",LEFFERTS AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4438910,Sedan,,,, +07/23/2021,15:18,,,40.744915,-73.903694,"(40.744915, -73.903694)",61 STREET,WOODSIDE AVENUE,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440217,Sedan,E-Scooter,,, +07/23/2021,14:00,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439836,Sedan,Sedan,,, +07/23/2021,15:05,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,11:10,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439254,Sedan,,,, +07/23/2021,13:00,,,40.71091,-73.85373,"(40.71091, -73.85373)",70 AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439762,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,9:35,BROOKLYN,11230,40.619984,-73.96427,"(40.619984, -73.96427)",CONEY ISLAND AVENUE,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439633,Van,Carry All,,, +07/20/2021,11:20,QUEENS,11365,40.72717,-73.8109,"(40.72717, -73.8109)",73 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439689,Sedan,,,, +07/21/2021,18:30,BROOKLYN,11215,40.66677,-73.98831,"(40.66677, -73.98831)",5 AVENUE,13 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439384,Sedan,E-Bike,,, +07/23/2021,11:28,BROOKLYN,11209,40.614532,-74.02966,"(40.614532, -74.02966)",,,9524 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439804,Motorcycle,,,, +07/22/2021,16:00,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440188,Sedan,,,, +07/21/2021,10:55,BRONX,10457,40.840626,-73.90306,"(40.840626, -73.90306)",EAST 172 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4439294,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,15:30,BROOKLYN,11226,40.65404,-73.951866,"(40.65404, -73.951866)",,,223 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,14:00,,,40.788303,-73.81699,"(40.788303, -73.81699)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440133,Tractor Truck Diesel,,,, +07/22/2021,14:00,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",HOOK CREEK BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,8:30,QUEENS,11420,40.682564,-73.814064,"(40.682564, -73.814064)",,,127-16 111 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439548,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,1:01,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4439588,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/08/2021,2:20,,,40.685764,-73.9415,"(40.685764, -73.9415)",MADISON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440147,Sedan,Sedan,,, +07/21/2021,5:30,,,40.699512,-73.81461,"(40.699512, -73.81461)",VANWYCK EXPRESSWAY,91 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4439022,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,18:00,BRONX,10474,40.818054,-73.88551,"(40.818054, -73.88551)",,,833 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440406,Station Wagon/Sport Utility Vehicle,,,, +06/04/2021,8:14,BRONX,10459,40.822456,-73.88569,"(40.822456, -73.88569)",,,1360 BRUCKNER BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439730,E-Bike,,,, +07/21/2021,15:35,BRONX,10459,40.8338,-73.88323,"(40.8338, -73.88323)",SHERIDAN EXPRESSWAY,EAST 173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439300,Sedan,Sedan,,, +07/22/2021,21:55,QUEENS,11436,40.681114,-73.79815,"(40.681114, -73.79815)",116 AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4439513,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,9:30,,,40.73403,-73.995056,"(40.73403, -73.995056)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439660,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,13:00,BRONX,10457,40.84467,-73.8972,"(40.84467, -73.8972)",,,4123 3 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4440443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,10:54,BRONX,10474,40.81877,-73.88927,"(40.81877, -73.88927)",,,872 HUNTS POINT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439721,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/22/2021,23:45,QUEENS,11356,40.78785,-73.84009,"(40.78785, -73.84009)",128 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439979,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,20:30,,,40.73882,-73.809395,"(40.73882, -73.809395)",HORACE HARDING EXPRESSWAY,159 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439792,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,0:04,QUEENS,11369,40.757538,-73.88196,"(40.757538, -73.88196)",,,32-14 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439913,Sedan,,,, +07/22/2021,16:00,QUEENS,11429,40.707554,-73.7503,"(40.707554, -73.7503)",HOLLIS AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439537,Sedan,Sedan,,, +07/18/2021,21:30,MANHATTAN,10027,40.813747,-73.95656,"(40.813747, -73.95656)",,,457 WEST 125 STREET,1,0,1,0,0,0,0,0,,,,,,4440033,,,,, +07/21/2021,16:37,MANHATTAN,10037,40.809494,-73.935814,"(40.809494, -73.935814)",PARK AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4439438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,22:15,BROOKLYN,11208,40.667,-73.87968,"(40.667, -73.87968)",,,669 ESSEX STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4439888,Sedan,Sedan,,, +07/21/2021,22:21,MANHATTAN,10032,40.83785,-73.93639,"(40.83785, -73.93639)",EDGECOMBE AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440356,Sedan,Sedan,,, +07/21/2021,8:00,QUEENS,11421,40.690304,-73.85826,"(40.690304, -73.85826)",,,88-11 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439044,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,16:44,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",VANNEST AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439666,Sedan,,,, +07/16/2021,21:12,BRONX,10462,,,,MORRIS PARK AVENUE,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439665,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,15:20,,,40.72408,-73.837105,"(40.72408, -73.837105)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439193,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,4:00,QUEENS,11434,40.68618,-73.79149,"(40.68618, -73.79149)",114 ROAD,155 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439814,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/21/2021,18:35,MANHATTAN,10016,40.745728,-73.97813,"(40.745728, -73.97813)",3 AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439831,Sedan,Sedan,,, +07/21/2021,18:45,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439334,Taxi,E-Scooter,,, +07/23/2021,16:15,BROOKLYN,11213,40.667316,-73.93683,"(40.667316, -73.93683)",TROY AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439781,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,14:00,QUEENS,11385,40.7,-73.89139,"(40.7, -73.89139)",,,74-05 64 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440246,Sedan,,,, +07/21/2021,2:30,QUEENS,11377,40.753708,-73.90299,"(40.753708, -73.90299)",58 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440115,Sedan,,,, +07/22/2021,16:30,BROOKLYN,11207,40.666718,-73.89162,"(40.666718, -73.89162)",DUMONT AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439753,Sedan,,,, +07/17/2021,12:20,BROOKLYN,11217,40.68249,-73.97962,"(40.68249, -73.97962)",4 AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440270,Sedan,,,, +07/22/2021,8:15,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PEARL STREET,PROSPECT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440079,Pick-up Truck,,,, +07/23/2021,0:45,,,40.584522,-73.949,"(40.584522, -73.949)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440162,Sedan,,,, +07/23/2021,4:40,,,,,,van wyck expressway,linden blvd,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4440521,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/20/2021,11:15,,,40.71306,-73.80669,"(40.71306, -73.80669)",PARSONS BOULEVARD,84 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439621,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,19:22,QUEENS,11358,40.758705,-73.78576,"(40.758705, -73.78576)",,,42-37 196 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439819,Sedan,,,, +07/22/2021,6:48,,,40.729626,-74.00841,"(40.729626, -74.00841)",GREENWICH STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439353,trailer,,,, +07/23/2021,20:49,,,40.74017,-73.97615,"(40.74017, -73.97615)",EAST 28 STREET,1 AVENUE,,2,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440018,E-Scooter,Bike,,, +07/12/2021,20:30,BRONX,10467,40.87038,-73.86721,"(40.87038, -73.86721)",,,3035 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440298,Sedan,Motorscooter,,, +07/21/2021,20:50,BROOKLYN,11208,40.670517,-73.863106,"(40.670517, -73.863106)",,,790 ELDERTS LANE,5,0,0,0,0,0,5,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4439393,Pick-up Truck,Taxi,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/23/2021,2:37,,,40.814632,-73.9442,"(40.814632, -73.9442)",7 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4439685,Sedan,Motorcycle,,, +07/23/2021,13:03,MANHATTAN,10128,40.780754,-73.95258,"(40.780754, -73.95258)",EAST 89 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440490,Pick-up Truck,Taxi,,, +07/21/2021,15:45,BRONX,10475,40.885296,-73.82733,"(40.885296, -73.82733)",,,3550 CONNER STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4439409,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,8:08,BROOKLYN,11233,40.67922,-73.90405,"(40.67922, -73.90405)",BROADWAY,CONWAY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4439156,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +07/23/2021,13:01,STATEN ISLAND,10304,40.59242,-74.09158,"(40.59242, -74.09158)",NORTH RAILROAD AVENUE,BURGHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440225,Sedan,,,, +07/23/2021,9:27,,,40.845837,-73.8255,"(40.845837, -73.8255)",BRUCKNER BOULEVARD,MIDDLETOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440098,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,19:29,BROOKLYN,11211,40.716568,-73.95868,"(40.716568, -73.95868)",,,144 NORTH 5 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440314,Sedan,,,, +07/22/2021,18:38,,,40.70722,-73.78957,"(40.70722, -73.78957)",170 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439698,Taxi,Sedan,,, +07/21/2021,11:40,BROOKLYN,11208,40.677467,-73.86671,"(40.677467, -73.86671)",GLENMORE AVENUE,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439109,Taxi,,,, +07/23/2021,9:15,,,40.80907,-73.94455,"(40.80907, -73.94455)",WEST 127 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4440461,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/22/2021,23:10,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,STEWART AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439564,Sedan,Sedan,,, +07/23/2021,0:45,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4439577,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,3:40,BRONX,10465,40.819313,-73.806305,"(40.819313, -73.806305)",,,211 LONGSTREET AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4439601,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/23/2021,21:20,,,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439847,Sedan,Sedan,,, +07/23/2021,10:52,QUEENS,11413,40.6785,-73.743256,"(40.6785, -73.743256)",226 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439717,Sedan,Sedan,,, +07/21/2021,12:23,BRONX,10468,40.862732,-73.90333,"(40.862732, -73.90333)",WEST FORDHAM ROAD,GRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439134,Motorbike,,,, +07/21/2021,10:55,BROOKLYN,11208,40.682663,-73.86815,"(40.682663, -73.86815)",ATLANTIC AVENUE,NICHOLS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439110,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,15:10,QUEENS,11355,40.754498,-73.834076,"(40.754498, -73.834076)",SANFORD AVENUE,HAIGHT STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4439974,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,20:45,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439524,Sedan,Sedan,,, +07/23/2021,1:33,,,40.759884,-73.9368,"(40.759884, -73.9368)",36 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439670,Sedan,,,, +07/21/2021,0:22,BRONX,10463,40.876976,-73.90584,"(40.876976, -73.90584)",,,188 WEST 230 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4439188,Sedan,Sedan,,, +07/09/2021,8:55,MANHATTAN,10036,40.758533,-73.98885,"(40.758533, -73.98885)",8 AVENUE,WEST 44 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440127,Sedan,Sedan,,, +07/21/2021,0:40,,,40.64994,-74.00172,"(40.64994, -74.00172)",39 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439054,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,21:43,,,40.868702,-73.88472,"(40.868702, -73.88472)",MARION AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439853,Sedan,Bike,,, +07/21/2021,23:20,STATEN ISLAND,10314,40.612633,-74.128555,"(40.612633, -74.128555)",,,1933 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439408,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,7:17,BROOKLYN,11219,40.637127,-73.99711,"(40.637127, -73.99711)",11 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440121,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/22/2021,18:51,,,40.692497,-73.87954,"(40.692497, -73.87954)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440230,Sedan,Motorcycle,,, +07/22/2021,5:35,STATEN ISLAND,10309,40.55484,-74.21405,"(40.55484, -74.21405)",VETERANS ROAD WEST,ENGERT STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4439653,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/22/2021,14:00,QUEENS,11433,40.702168,-73.7924,"(40.702168, -73.7924)",165 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439785,Sedan,,,, +07/21/2021,21:00,MANHATTAN,10018,40.75537,-73.98746,"(40.75537, -73.98746)",7 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439289,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,19:15,,,,,,WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4439878,Sedan,Ambulance,,, +07/23/2021,11:00,QUEENS,11428,40.718754,-73.74082,"(40.718754, -73.74082)",215 PLACE,94 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439919,Sedan,Sedan,,, +07/12/2021,9:03,BROOKLYN,11222,40.727406,-73.94561,"(40.727406, -73.94561)",,,207 NORMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440309,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,23:51,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4440085,AMBULANCE,Taxi,,, +07/12/2021,14:30,BROOKLYN,11215,40.66079,-73.99401,"(40.66079, -73.99401)",22 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440170,Pick-up Truck,Pick-up Truck,,, +07/21/2021,11:18,,,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440253,Sedan,,,, +07/21/2021,17:00,MANHATTAN,10019,40.76302,-73.97623,"(40.76302, -73.97623)",,,56 WEST 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439307,Pick-up Truck,,,, +07/22/2021,8:08,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439625,Sedan,,,, +07/22/2021,13:44,BROOKLYN,11218,40.642082,-73.984314,"(40.642082, -73.984314)",36 STREET,LOUISA STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439638,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,15:31,BRONX,10470,40.899284,-73.85508,"(40.899284, -73.85508)",,,4415 RICHARDSON AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4439423,Sedan,,,, +07/22/2021,9:00,BROOKLYN,11231,40.67602,-74.001236,"(40.67602, -74.001236)",GOWANUS EXPRESSWAY,CLINTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439823,Tractor Truck Diesel,Sedan,,, +07/22/2021,7:30,MANHATTAN,10034,40.863018,-73.917564,"(40.863018, -73.917564)",WEST 206 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4439741,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/21/2021,12:40,BROOKLYN,11214,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,86 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439365,E-Scooter,,,, +07/20/2021,20:30,,,40.65295,-73.911026,"(40.65295, -73.911026)",ROCKAWAY PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4440277,Sedan,,,, +07/23/2021,15:55,,,40.859623,-73.88747,"(40.859623, -73.88747)",BATHGATE AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440496,Convertible,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,0:15,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439840,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,10:44,BROOKLYN,11212,40.65801,-73.92078,"(40.65801, -73.92078)",KINGS HIGHWAY,EAST 94 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439957,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,16:20,STATEN ISLAND,10301,40.64301,-74.07576,"(40.64301, -74.07576)",,,15 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Following Too Closely,,,4440338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/22/2021,8:38,QUEENS,11411,40.692783,-73.74511,"(40.692783, -73.74511)",SPRINGFIELD BOULEVARD,119 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439415,Station Wagon/Sport Utility Vehicle,Bike,,, +07/21/2021,6:40,,,40.869545,-73.87972,"(40.869545, -73.87972)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439097,ambulance,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,16:00,,,40.72,-73.76198,"(40.72, -73.76198)",HILLSIDE AVENUE,202 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439702,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,13:07,QUEENS,11434,0,0,"(0.0, 0.0)",BREWER BOULEVARD,118 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439163,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,21:50,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439262,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,19:35,BROOKLYN,11226,40.647453,-73.958664,"(40.647453, -73.958664)",,,2123 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4439900,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,20:00,BRONX,10460,40.836575,-73.89282,"(40.836575, -73.89282)",,,1550 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4439559,Sedan,,,, +07/20/2021,15:11,BRONX,10463,40.884277,-73.90586,"(40.884277, -73.90586)",,,3419 IRWIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440202,Sedan,,,, +07/21/2021,11:15,MANHATTAN,10030,40.82044,-73.9441,"(40.82044, -73.9441)",,,305 WEST 141 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4440448,Van,,,, +07/21/2021,18:00,,,40.72804,-73.83171,"(40.72804, -73.83171)",PARK DRIVE EAST,JEWEL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439697,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,23:35,BRONX,10465,40.823414,-73.82351,"(40.823414, -73.82351)",,,2777 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439606,Sedan,Sedan,,, +07/22/2021,7:10,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4439350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/22/2021,15:15,BROOKLYN,11211,40.70654,-73.95041,"(40.70654, -73.95041)",,,211 UNION AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439477,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,21:56,BROOKLYN,11206,40.709015,-73.94855,"(40.709015, -73.94855)",LORIMER STREET,STAGG STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4439565,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/21/2021,6:41,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439729,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/21/2021,16:50,BRONX,10468,,,,,,UNIVERSITY HEIGHTS BRIDGE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4439195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/21/2021,19:00,,,40.597706,-73.784805,"(40.597706, -73.784805)",BEACH 54 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439597,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,15:08,STATEN ISLAND,10301,40.642242,-74.0752,"(40.642242, -74.0752)",BAY STREET,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439240,Sedan,Bus,,, +07/22/2021,9:00,QUEENS,11377,40.75221,-73.90443,"(40.75221, -73.90443)",BROADWAY,57 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439529,Station Wagon/Sport Utility Vehicle,Bike,,, +07/21/2021,12:10,,,40.854687,-73.890396,"(40.854687, -73.890396)",EAST 184 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4439115,Sedan,,,, +07/21/2021,22:30,,,40.75183,-73.70289,"(40.75183, -73.70289)",271 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439459,Sedan,,,, +07/23/2021,12:00,,,40.67871,-73.86701,"(40.67871, -73.86701)",LIBERTY AVENUE,SHERIDAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4439756,Sedan,Sedan,,, +07/22/2021,16:00,QUEENS,11429,40.71178,-73.75309,"(40.71178, -73.75309)",,,100-30 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439773,Van,Box Truck,,, +07/21/2021,22:00,STATEN ISLAND,10306,40.585407,-74.10589,"(40.585407, -74.10589)",RICHMOND ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439375,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,10:06,,,40.652626,-74.00617,"(40.652626, -74.00617)",39 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440177,Bus,Bike,,, +07/23/2021,14:00,QUEENS,11385,40.702755,-73.856705,"(40.702755, -73.856705)",,,88-67 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440237,Sedan,,,, +07/21/2021,16:05,BROOKLYN,11239,40.652737,-73.8769,"(40.652737, -73.8769)",,,470 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439398,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,13:35,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439882,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2021,19:02,BRONX,10459,40.81614,-73.894875,"(40.81614, -73.894875)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439724,Sedan,,,, +07/22/2021,13:45,MANHATTAN,10016,40.746918,-73.97124,"(40.746918, -73.97124)",1 AVENUE,EAST 39 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4439602,E-Bike,E-Bike,,, +07/22/2021,13:01,STATEN ISLAND,10306,40.58422,-74.1073,"(40.58422, -74.1073)",RICHMOND ROAD,BARTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439657,Sedan,,,, +07/23/2021,20:45,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4439928,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/21/2021,13:20,,,40.62539,-74.135376,"(40.62539, -74.135376)",,,1351 FOREST AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439453,Sedan,,,, +07/23/2021,1:41,BROOKLYN,11236,40.64503,-73.91998,"(40.64503, -73.91998)",RALPH AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439965,Taxi,Sedan,,, +07/21/2021,17:35,QUEENS,11412,40.691666,-73.76239,"(40.691666, -73.76239)",LINDEN BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439519,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,1:42,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4439766,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/14/2021,16:00,BROOKLYN,11211,40.715305,-73.96044,"(40.715305, -73.96044)",METROPOLITAN AVENUE,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440303,Sedan,Van,,, +07/21/2021,16:50,BROOKLYN,11217,40.68777,-73.98701,"(40.68777, -73.98701)",ATLANTIC AVENUE,HOYT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439278,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,0:00,BROOKLYN,11238,40.677162,-73.97245,"(40.677162, -73.97245)",CARLTON AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439499,Sedan,Sedan,,, +07/21/2021,13:47,MANHATTAN,10019,40.760273,-73.98388,"(40.760273, -73.98388)",,,736 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439301,Sedan,Box Truck,,, +07/23/2021,17:15,BROOKLYN,11214,40.60309,-73.99262,"(40.60309, -73.99262)",BAY PARKWAY,84 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439795,PAS,,,, +07/21/2021,12:47,,,40.635582,-73.99155,"(40.635582, -73.99155)",48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439629,Sedan,Sedan,,, +07/22/2021,8:35,,,40.698696,-73.93477,"(40.698696, -73.93477)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439859,E-Bike,,,, +07/20/2021,0:00,BROOKLYN,11212,40.663635,-73.92292,"(40.663635, -73.92292)",,,117 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,9:50,BROOKLYN,11206,40.70938,-73.9371,"(40.70938, -73.9371)",SCHOLES STREET,WATERBURY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439250,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/21/2021,12:15,BROOKLYN,11218,40.635994,-73.967865,"(40.635994, -73.967865)",,,880 CONEY ISLAND AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439634,Sedan,E-Bike,,, +07/21/2021,2:35,,,40.90325,-73.84801,"(40.90325, -73.84801)",BARNES AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,,,,4440283,Sedan,Sedan,,, +07/23/2021,2:00,,,40.682194,-74.00239,"(40.682194, -74.00239)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440500,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,8:30,BROOKLYN,11222,40.72422,-73.93088,"(40.72422, -73.93088)",GARDNER AVENUE,LOMBARDY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4439894,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/23/2021,20:50,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",9 AVENUE,37 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,14:00,BROOKLYN,11214,40.60748,-74.00866,"(40.60748, -74.00866)",,,95 BAY 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439344,Sedan,Sedan,,, +07/22/2021,16:47,BROOKLYN,11230,40.632248,-73.96368,"(40.632248, -73.96368)",GLENWOOD ROAD,RUGBY ROAD,,1,0,0,0,0,0,0,0,Driver Inexperience,Alcohol Involvement,,,,4439678,Sedan,E-Bike,,, +07/23/2021,19:00,MANHATTAN,10027,40.81796,-73.960365,"(40.81796, -73.960365)",RIVERSIDE DRIVE,WEST 125 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,21:45,QUEENS,11420,40.67872,-73.81844,"(40.67872, -73.81844)",,,114-23 121 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439555,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,2:35,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,REMSEN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4439207,Sedan,Sedan,,, +07/22/2021,19:10,QUEENS,11413,40.658283,-73.764725,"(40.658283, -73.764725)",,,149-10 183 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439946,Sedan,,,, +07/19/2021,11:39,,,40.84423,-73.89964,"(40.84423, -73.89964)",WASHINGTON AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440442,Sedan,Van,,, +07/22/2021,19:54,QUEENS,11368,40.746056,-73.852875,"(40.746056, -73.852875)",,,49-04 111 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4440064,Sedan,E-Bike,,, +07/15/2021,10:50,QUEENS,11105,40.770824,-73.9032,"(40.770824, -73.9032)",DITMARS BOULEVARD,45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440138,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,10:00,,,40.60069,-74.010056,"(40.60069, -74.010056)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,,,,,4439465,Box Truck,,,, +07/22/2021,16:54,,,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,,4439569,Sedan,Sedan,Sedan,Sedan, +07/19/2021,17:57,QUEENS,11374,40.730957,-73.85626,"(40.730957, -73.85626)",64 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440377,Station Wagon/Sport Utility Vehicle,,,, +06/19/2021,5:32,BRONX,10459,40.822456,-73.88569,"(40.822456, -73.88569)",,,1360 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439734,,,,, +07/21/2021,10:30,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",CHURCH AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,9:40,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",PARK PLACE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440214,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,18:33,MANHATTAN,10012,40.72931,-73.997894,"(40.72931, -73.997894)",WEST 3 STREET,LAGUARDIA PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439677,Sedan,E-Scooter,,, +07/21/2021,15:20,BROOKLYN,11206,40.701862,-73.94383,"(40.701862, -73.94383)",WHIPPLE STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439255,Pick-up Truck,,,, +07/21/2021,17:07,MANHATTAN,10016,40.742706,-73.984535,"(40.742706, -73.984535)",PARK AVENUE SOUTH,EAST 27 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439323,Station Wagon/Sport Utility Vehicle,Bike,,, +07/22/2021,13:15,QUEENS,11377,40.74635,-73.89609,"(40.74635, -73.89609)",,,69-16 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4439984,Tractor Truck Gasoline,,,, +07/12/2021,6:32,,,40.72015,-73.93783,"(40.72015, -73.93783)",MORGAN AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439692,Box Truck,Bike,,, +07/21/2021,20:30,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",CLAREMONT PARKWAY,PARK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4439295,Bike,Sedan,,, +07/22/2021,18:37,QUEENS,11358,,,,,,196-32 45 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439504,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,7:38,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439709,Sedan,,,, +07/21/2021,5:30,QUEENS,11357,40.778713,-73.806206,"(40.778713, -73.806206)",WILLETS POINT BOULEVARD,157 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4438933,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,11:45,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439533,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/23/2021,22:06,BRONX,10466,40.89851,-73.852066,"(40.89851, -73.852066)",,,4446 BYRON AVENUE,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4440334,Sedan,,,, +07/22/2021,21:19,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439788,Bus,,,, +07/19/2021,17:00,BROOKLYN,11234,40.623898,-73.917725,"(40.623898, -73.917725)",,,2215 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439808,Sedan,,,, +07/21/2021,9:10,QUEENS,11691,40.60342,-73.74769,"(40.60342, -73.74769)",,,10-06 NEILSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439593,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,17:55,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4439233,Sedan,Sedan,,, +07/21/2021,14:20,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,Passing Too Closely,,,,4439444,Sedan,Sedan,,, +07/23/2021,3:55,,,40.739067,-73.89588,"(40.739067, -73.89588)",69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439587,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,18:27,BROOKLYN,11206,40.705227,-73.949844,"(40.705227, -73.949844)",BROADWAY,BOERUM STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439568,Sedan,E-Bike,,, +07/22/2021,11:50,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,0:18,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439733,Sedan,Bus,,, +07/21/2021,0:50,,,40.659264,-74.002396,"(40.659264, -74.002396)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4439039,Sedan,Tractor Truck Diesel,Sedan,, +08/18/2022,20:50,QUEENS,11423,40.710938,-73.76654,"(40.710938, -73.76654)",WOODHULL AVENUE,193 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4556644,Taxi,,,, +07/22/2021,8:45,QUEENS,11412,40.69041,-73.75557,"(40.69041, -73.75557)",119 AVENUE,195 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4439514,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,9:46,BROOKLYN,11226,40.651905,-73.9526,"(40.651905, -73.9526)",,,781 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439204,Sedan,,,, +07/22/2021,15:50,,,40.728363,-74.00282,"(40.728363, -74.00282)",WEST HOUSTON STREET,,,2,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439661,E-Scooter,E-Bike,,, +07/22/2021,1:35,BRONX,10459,40.830906,-73.89801,"(40.830906, -73.89801)",,,810 RITTER PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439296,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/17/2021,23:26,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4439793,Sedan,Sedan,,, +07/16/2021,12:00,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439720,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/22/2021,17:30,,,40.81053,-73.96206,"(40.81053, -73.96206)",BROADWAY,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4440036,Sedan,,,, +07/22/2021,0:00,QUEENS,11422,40.655254,-73.7402,"(40.655254, -73.7402)",HUXLEY STREET,148 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439538,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,13:30,QUEENS,11434,40.66444,-73.78206,"(40.66444, -73.78206)",,,145-45 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439810,Box Truck,Box Truck,,, +07/23/2021,11:20,,,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,7:00,QUEENS,11368,40.743507,-73.85156,"(40.743507, -73.85156)",111 STREET,53 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439827,Sedan,Sedan,,, +07/13/2021,3:00,,,40.677025,-73.95268,"(40.677025, -73.95268)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440242,Bus,Sedan,,, +07/21/2021,11:00,BROOKLYN,11211,40.71499,-73.926765,"(40.71499, -73.926765)",,,235 GARDNER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439251,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,15:02,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",EAST 126 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439436,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,11:40,,,40.64316,-74.01922,"(40.64316, -74.01922)",58 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440187,Sedan,,,, +07/02/2021,8:17,BROOKLYN,11226,40.64446,-73.94778,"(40.64446, -73.94778)",,,3100 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4440264,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,14:00,STATEN ISLAND,10312,40.54778,-74.16684,"(40.54778, -74.16684)",SERRELL AVENUE,RICHMOND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439662,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,7:40,,,40.70966,-74.00484,"(40.70966, -74.00484)",,,GOLD STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439464,Sedan,Flat Bed,,, +07/23/2021,3:24,,,40.548317,-74.19396,"(40.548317, -74.19396)",ROSEDALE AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4439647,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/23/2021,18:20,BRONX,10462,40.84267,-73.8543,"(40.84267, -73.8543)",POPLAR STREET,BRONXDALE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4439815,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/21/2021,18:47,MANHATTAN,10032,40.831135,-73.94126,"(40.831135, -73.94126)",,,898 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439273,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,13:00,,,40.760475,-73.9222,"(40.760475, -73.9222)",BROADWAY,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4440114,Sedan,Sedan,,, +07/20/2021,17:00,,,40.669735,-73.93104,"(40.669735, -73.93104)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440248,Sedan,,,, +07/21/2021,3:17,QUEENS,11435,40.708206,-73.81322,"(40.708206, -73.81322)",,,86-03 143 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439615,Sedan,,,, +07/23/2021,17:00,BROOKLYN,11233,40.677822,-73.91636,"(40.677822, -73.91636)",HERKIMER STREET,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440511,Sedan,,,, +07/16/2021,9:00,MANHATTAN,10021,40.77012,-73.95741,"(40.77012, -73.95741)",EAST 74 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440480,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,16:25,,,40.609917,-73.89746,"(40.609917, -73.89746)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440161,Sedan,Sedan,,, +07/22/2021,20:00,,,40.57698,-73.981575,"(40.57698, -73.981575)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440288,Sedan,Sedan,,, +07/23/2021,9:36,,,40.745308,-73.90753,"(40.745308, -73.90753)",ROOSEVELT AVENUE,57 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440218,Sedan,Bike,,, +07/22/2021,21:27,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439578,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,19:30,QUEENS,11101,40.7448,-73.953415,"(40.7448, -73.953415)",VERNON BOULEVARD,47 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439528,Sedan,,,, +07/18/2021,10:45,BROOKLYN,11206,40.69529,-73.94339,"(40.69529, -73.94339)",VERNON AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440361,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,9:03,BROOKLYN,11218,40.638523,-73.97319,"(40.638523, -73.97319)",OCEAN PARKWAY,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439630,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,11:00,BRONX,10454,40.80614,-73.925804,"(40.80614, -73.925804)",,,85 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439113,Box Truck,Sedan,,, +07/21/2021,11:12,BRONX,10467,40.869694,-73.86723,"(40.869694, -73.86723)",WHITE PLAINS ROAD,ADEE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439137,Sedan,Moped,,, +07/23/2021,13:44,BROOKLYN,11208,40.673008,-73.87038,"(40.673008, -73.87038)",SUTTER AVENUE,PINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439890,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,8:10,STATEN ISLAND,10308,40.55464,-74.14608,"(40.55464, -74.14608)",KATAN AVENUE,GREAVES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439368,Sedan,,,, +07/23/2021,13:00,,,40.576157,-73.98902,"(40.576157, -73.98902)",WEST 22 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440281,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,1:05,BROOKLYN,11206,40.709015,-73.94855,"(40.709015, -73.94855)",LORIMER STREET,STAGG STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4439842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,15:20,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,1:00,BRONX,10459,40.830578,-73.88763,"(40.830578, -73.88763)",,,1423 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439573,Taxi,Sedan,,, +07/21/2021,19:30,QUEENS,11356,40.78463,-73.83634,"(40.78463, -73.83634)",132 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439220,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +07/23/2021,7:50,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439705,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,17:51,BROOKLYN,11234,40.608215,-73.92835,"(40.608215, -73.92835)",,,2113 EAST 37 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472680,Sedan,,,, +07/22/2021,19:15,MANHATTAN,10039,40.82215,-73.93869,"(40.82215, -73.93869)",,,2517 7 AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,Unspecified,,4439688,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/22/2021,22:30,QUEENS,11373,40.735115,-73.87524,"(40.735115, -73.87524)",,,88-01 QUEENS BOULEVARD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440067,Sedan,E-Bike,,, +07/23/2021,18:24,,,40.812664,-73.906334,"(40.812664, -73.906334)",EAST 149 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439941,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,1:05,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439544,Sedan,Sedan,,, +07/20/2021,23:23,QUEENS,11374,40.71338,-73.859665,"(40.71338, -73.859665)",COOPER AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4440236,Sedan,Sedan,,, +07/21/2021,5:41,,,40.80174,-73.96477,"(40.80174, -73.96477)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439098,Sedan,Box Truck,,, +07/21/2021,19:10,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",BAINBRIDGE AVENUE,EAST GUN HILL ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439378,Station Wagon/Sport Utility Vehicle,Bike,,, +07/17/2021,19:35,,,40.576157,-73.98902,"(40.576157, -73.98902)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440272,Sedan,Sedan,,, +07/23/2021,9:30,BROOKLYN,11218,40.638523,-73.97319,"(40.638523, -73.97319)",OCEAN PARKWAY,CORTELYOU ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440132,Bike,E-Bike,,, +07/21/2021,8:40,BROOKLYN,11219,40.627167,-74.00389,"(40.627167, -74.00389)",,,6514 12 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439127,Sedan,,,, +07/21/2021,7:40,,,40.65841,-73.96049,"(40.65841, -73.96049)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,20:40,,,40.610214,-73.94371,"(40.610214, -73.94371)",NOSTRAND AVENUE,QUENTIN ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440526,Sedan,Bike,,, +07/23/2021,10:25,BROOKLYN,11207,40.677357,-73.896225,"(40.677357, -73.896225)",FULTON STREET,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439748,Sedan,Sedan,,, +07/22/2021,4:58,BRONX,10472,40.826656,-73.8739,"(40.826656, -73.8739)",MORRISON AVENUE,WATSON AVENUE,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4439478,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,19:40,BRONX,10466,40.89562,-73.84375,"(40.89562, -73.84375)",DEREIMER AVENUE,BUSSING AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4440332,Sedan,Sedan,,, +07/23/2021,18:00,QUEENS,11428,40.718754,-73.74082,"(40.718754, -73.74082)",94 ROAD,215 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439848,Sedan,Sedan,,, +07/22/2021,21:45,BRONX,10467,40.86791,-73.86829,"(40.86791, -73.86829)",ARNOW AVENUE,OLINVILLE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439765,E-Scooter,,,, +07/21/2021,15:58,QUEENS,11436,40.683903,-73.80238,"(40.683903, -73.80238)",,,141-11 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439518,Sedan,Sedan,,, +07/22/2021,8:37,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",EAST 233 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439427,TRUCK,Sedan,,, +07/23/2021,7:25,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439642,Sedan,,,, +07/21/2021,12:47,QUEENS,11432,40.704697,-73.79681,"(40.704697, -73.79681)",JAMAICA AVENUE,163 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439213,Sedan,Sedan,,, +07/23/2021,12:45,QUEENS,11362,40.756992,-73.72966,"(40.756992, -73.72966)",MARATHON PARKWAY,61 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4439936,Sedan,Sedan,,, +07/21/2021,22:00,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",YORK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440445,Sedan,,,, +06/19/2021,10:00,STATEN ISLAND,10301,40.63563,-74.080376,"(40.63563, -74.080376)",,,3 TOMPKINS CIRCLE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440337,Sedan,,,, +07/23/2021,10:00,,,40.70777,-74.01297,"(40.70777, -74.01297)",TRINITY PLACE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439716,Box Truck,Sedan,,, +07/21/2021,8:53,QUEENS,11361,40.770744,-73.78582,"(40.770744, -73.78582)",32 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439710,Pick-up Truck,Sedan,,, +07/21/2021,10:15,QUEENS,11417,40.68108,-73.84048,"(40.68108, -73.84048)",LIBERTY AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439266,Sedan,E-Bike,,, +07/22/2021,19:04,,,,,,PARK AVENUE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439610,Sedan,E-Scooter,,, +07/22/2021,10:15,,,40.764557,-73.82891,"(40.764557, -73.82891)",LEAVITT STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439998,Pick-up Truck,,,, +07/23/2021,17:55,MANHATTAN,10012,,,,W. HOUSTON,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439874,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,16:10,,,40.635006,-73.93153,"(40.635006, -73.93153)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439803,Sedan,,,, +07/21/2021,7:30,BROOKLYN,11212,40.66663,-73.91874,"(40.66663, -73.91874)",,,35 GRAFTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440299,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,10:00,BROOKLYN,11212,40.664658,-73.90559,"(40.664658, -73.90559)",STONE AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440470,Sedan,,,, +07/23/2021,1:45,,,40.863018,-73.917564,"(40.863018, -73.917564)",9 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439742,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,23:00,QUEENS,11433,40.695488,-73.78592,"(40.695488, -73.78592)",,,167-27 109 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439774,Sedan,Sedan,,, +07/20/2021,17:30,BROOKLYN,11218,40.656868,-73.97482,"(40.656868, -73.97482)",,,292 WINDSOR PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440178,Sedan,,,, +05/19/2021,21:22,,,40.6427,-73.87661,"(40.6427, -73.87661)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,17:10,MANHATTAN,10002,40.721825,-73.987495,"(40.721825, -73.987495)",,,173 LUDLOW STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439832,Motorcycle,Sedan,,, +07/21/2021,21:50,MANHATTAN,10001,40.74913,-73.98824,"(40.74913, -73.98824)",AVENUE OF THE AMERICAS,WEST 33 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4440107,Taxi,Bike,,, +07/21/2021,0:48,BRONX,10474,40.80899,-73.88313,"(40.80899, -73.88313)",LONGFELLOW AVENUE,EAST BAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439737,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,14:45,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440321,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,8:00,,,,,,Seagirt Boulevard,Beach 9 street,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4439605,Bus,Sedan,,, +07/22/2021,23:55,,,40.828396,-73.945305,"(40.828396, -73.945305)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439560,Sedan,,,, +07/22/2021,12:00,BROOKLYN,11230,40.624977,-73.96326,"(40.624977, -73.96326)",EAST 13 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439472,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,17:45,,,40.632793,-74.13405,"(40.632793, -74.13405)",POST AVENUE,HEBERTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439800,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,13:15,,,40.728363,-74.00282,"(40.728363, -74.00282)",AVENUE OF THE AMERICAS,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4440148,Taxi,Box Truck,,, +07/23/2021,15:35,,,,,,GRAND CENTRAL PARKWAY,188 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4439863,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,21:55,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440076,Sedan,,,, +07/23/2021,8:43,BROOKLYN,11215,40.662777,-73.98978,"(40.662777, -73.98978)",,,284 17 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440419,Sedan,Dump,,, +07/22/2021,8:00,,,40.69467,-73.93115,"(40.69467, -73.93115)",LAWTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439598,Sedan,,,, +07/22/2021,19:00,BRONX,10457,40.847576,-73.90633,"(40.847576, -73.90633)",MONROE AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439973,Sedan,,,, +07/21/2021,23:25,BRONX,10465,40.824722,-73.82089,"(40.824722, -73.82089)",,,2819 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4439363,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,18:07,BROOKLYN,11229,40.602684,-73.94232,"(40.602684, -73.94232)",NOSTRAND AVENUE,AVENUE T,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439914,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,23:30,MANHATTAN,10001,40.74967,-73.99531,"(40.74967, -73.99531)",WEST 30 STREET,8 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4440128,Sedan,Sedan,Sedan,, +07/22/2021,22:50,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4439684,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,6:30,,,40.64405,-74.02217,"(40.64405, -74.02217)",59 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439043,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,10:45,,,40.698677,-73.95886,"(40.698677, -73.95886)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,15:15,QUEENS,11105,40.773087,-73.908424,"(40.773087, -73.908424)",,,22-19 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439669,Sedan,Ambulance,,, +07/21/2021,14:30,,,40.74359,-73.92242,"(40.74359, -73.92242)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439189,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,17:50,BROOKLYN,11219,40.637207,-73.99573,"(40.637207, -73.99573)",,,1133 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439637,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,11:30,BROOKLYN,11215,40.66997,-73.9757,"(40.66997, -73.9757)",8 AVENUE,2 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4439383,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/20/2021,20:50,,,40.831974,-73.9235,"(40.831974, -73.9235)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439884,Sedan,Sedan,,, +07/21/2021,22:55,,,40.79976,-73.96622,"(40.79976, -73.96622)",WEST 105 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439333,Sedan,Sedan,,, +07/23/2021,19:35,,,40.83468,-73.944435,"(40.83468, -73.944435)",WEST 158 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440387,,,,, +07/21/2021,6:00,QUEENS,11372,40.75182,-73.87713,"(40.75182, -73.87713)",,,35-14 90 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439908,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,18:15,,,40.611095,-74.11467,"(40.611095, -74.11467)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440226,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,10:40,,,40.729355,-73.86023,"(40.729355, -73.86023)",QUEENS BOULEVARD,64 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439701,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,18:00,BROOKLYN,11203,40.659237,-73.93966,"(40.659237, -73.93966)",,,600 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439780,Sedan,Sedan,,, +07/22/2021,10:35,STATEN ISLAND,10314,40.612747,-74.12712,"(40.612747, -74.12712)",VICTORY BOULEVARD,WESTCOTT BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4440346,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,17:05,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439282,Pick-up Truck,,,, +07/18/2021,12:59,QUEENS,11435,40.70971,-73.81342,"(40.70971, -73.81342)",143 STREET,85 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439609,Sedan,Flat Bed,,, +07/22/2021,18:31,BROOKLYN,11208,40.68387,-73.87145,"(40.68387, -73.87145)",,,3367 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439752,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,14:20,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439523,Tractor Truck Diesel,Bus,,, +07/19/2021,22:21,MANHATTAN,10039,40.82473,-73.94182,"(40.82473, -73.94182)",,,102 BRADHURST AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4440460,Sedan,Sedan,,, +07/21/2021,13:30,BRONX,10457,40.843822,-73.91038,"(40.843822, -73.91038)",EAST 173 STREET,SELWYN AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4439769,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/21/2021,16:10,MANHATTAN,10019,40.762856,-73.98942,"(40.762856, -73.98942)",WEST 49 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439306,Sedan,Box Truck,,, +07/22/2021,13:11,BROOKLYN,11226,40.645123,-73.96008,"(40.645123, -73.96008)",,,726 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439473,Taxi,Sedan,,, +07/22/2021,12:25,BRONX,10457,40.84521,-73.89072,"(40.84521, -73.89072)",,,711 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439620,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,21:35,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4439237,Sedan,,,, +07/23/2021,14:00,QUEENS,11412,40.68645,-73.761185,"(40.68645, -73.761185)",120 AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4439835,Sedan,Sedan,,, +07/20/2021,15:40,BROOKLYN,11232,40.651604,-74.01051,"(40.651604, -74.01051)",43 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440174,Sedan,,,, +07/22/2021,8:50,MANHATTAN,10028,40.77418,-73.95296,"(40.77418, -73.95296)",,,345 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439420,Sedan,,,, +07/19/2021,10:10,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4439818,Box Truck,,,, +07/20/2021,12:50,,,40.61857,-74.150505,"(40.61857, -74.150505)",,,154 HOME PLACE,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4440008,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,19:50,BRONX,10460,40.848682,-73.88379,"(40.848682, -73.88379)",EAST 182 STREET,MAPES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440495,Sedan,Moped,,, +07/21/2021,0:00,MANHATTAN,10025,,,,,,619 W 113 st,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4440048,Sedan,Sedan,Sedan,, +07/23/2021,10:00,BROOKLYN,11207,40.66701,-73.9004,"(40.66701, -73.9004)",SNEDIKER AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439757,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,15:00,BROOKLYN,11203,40.640163,-73.94553,"(40.640163, -73.94553)",NEW YORK AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439961,Sedan,,,, +07/23/2021,19:40,,,40.735794,-73.85807,"(40.735794, -73.85807)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439807,Motorcycle,,,, +07/07/2021,11:15,BROOKLYN,11212,40.656292,-73.92325,"(40.656292, -73.92325)",,,977 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439956,Sedan,,,, +07/22/2021,13:00,,,40.82054,-73.930786,"(40.82054, -73.930786)",EXTERIOR STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439770,PK,Sedan,,, +07/23/2021,21:44,BROOKLYN,11208,40.679108,-73.88062,"(40.679108, -73.88062)",ATLANTIC AVENUE,HIGHLAND PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439881,Sedan,Sedan,,, +07/19/2021,15:18,MANHATTAN,10025,40.80297,-73.96387,"(40.80297, -73.96387)",CATHEDRAL PARKWAY,AMSTERDAM AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Lane Marking Improper/Inadequate,,,,4440037,Sedan,E-Scooter,,, +07/23/2021,8:00,QUEENS,11373,40.746178,-73.89132,"(40.746178, -73.89132)",,,40-24 74 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439828,Sedan,,,, +07/21/2021,14:30,,,40.62055,-74.16919,"(40.62055, -74.16919)",SOUTH AVENUE,FAHY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439454,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,0:00,BRONX,10475,40.879898,-73.83181,"(40.879898, -73.83181)",,,1000 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440095,Carry All,,,, +07/22/2021,4:00,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4439265,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,0:00,,,40.640285,-74.13449,"(40.640285, -74.13449)",RICHMOND TERRACE,NORTH STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439927,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/21/2021,15:01,BROOKLYN,11222,40.727245,-73.94,"(40.727245, -73.94)",,,670 MORGAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440308,Flat Bed,Tractor Truck Gasoline,,, +07/23/2021,0:28,MANHATTAN,10014,40.73035,-74.00821,"(40.73035, -74.00821)",GREENWICH STREET,LEROY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439674,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/30/2022,8:12,,,40.872314,-73.91274,"(40.872314, -73.91274)",BROADWAY,,,4,0,0,0,0,0,4,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4560147,Sedan,Bus,,, +07/22/2021,17:02,BROOKLYN,11203,40.64975,-73.936,"(40.64975, -73.936)",SNYDER AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439966,Sedan,Sedan,Sedan,, +07/23/2021,14:00,BRONX,10456,40.825848,-73.90993,"(40.825848, -73.90993)",EAST 164 STREET,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4440084,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/22/2021,14:30,QUEENS,11694,40.57747,-73.84084,"(40.57747, -73.84084)",,,160 BEACH 121 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,16:05,QUEENS,11102,40.772892,-73.92543,"(40.772892, -73.92543)",,,26-38 21 STREET,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4440142,Taxi,Sedan,,, +07/22/2021,0:00,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439977,Sedan,Sedan,,, +07/22/2021,10:59,STATEN ISLAND,10312,40.56493,-74.18058,"(40.56493, -74.18058)",,,1174 ARTHUR KILL ROAD,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4439738,Sedan,Sedan,,, +07/21/2021,21:30,BROOKLYN,11208,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,DREW STREET,,2,0,2,0,0,0,0,0,Traffic Control Disregarded,,,,,4439392,Sedan,,,, +07/23/2021,15:52,BRONX,10475,40.884647,-73.82662,"(40.884647, -73.82662)",CONNER STREET,HOLLERS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440519,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,16:19,MANHATTAN,10036,40.759483,-73.99186,"(40.759483, -73.99186)",,,614 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440124,Pick-up Truck,Sedan,,, +07/21/2021,9:50,BROOKLYN,11215,40.668335,-73.98039,"(40.668335, -73.98039)",,,286 7 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439053,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/21/2021,17:50,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439312,Sedan,,,, +07/23/2021,16:10,,,,,,,,70 WEST DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439852,Bike,E-Scooter,,, +07/21/2021,12:00,,,40.62349,-74.000534,"(40.62349, -74.000534)",14 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439147,Van,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,18:00,QUEENS,11237,40.705627,-73.91552,"(40.705627, -73.91552)",STANHOPE STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440220,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,8:17,STATEN ISLAND,10312,40.549873,-74.17294,"(40.549873, -74.17294)",,,764 KATAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439652,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/23/2021,17:51,QUEENS,11428,40.715553,-73.752014,"(40.715553, -73.752014)",,,94-09 209 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4439784,Sedan,Sedan,Sedan,, +07/23/2021,23:10,BRONX,10467,40.859627,-73.86371,"(40.859627, -73.86371)",ASTOR AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439899,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,20:00,,,,,,SHEA STADIUM,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439324,Sedan,,,, +07/21/2021,18:30,QUEENS,11422,40.671947,-73.73384,"(40.671947, -73.73384)",241 STREET,135 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4439223,Sedan,Sedan,Sedan,, +07/21/2021,16:23,BRONX,10453,40.85078,-73.91222,"(40.85078, -73.91222)",WEST TREMONT AVENUE,WEST 177 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439310,Station Wagon/Sport Utility Vehicle,Bus,,, +07/22/2021,22:50,,,40.600567,-73.7621,"(40.600567, -73.7621)",BAY 25 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439624,Sedan,,,, +07/22/2021,12:30,,,40.747192,-73.80303,"(40.747192, -73.80303)",METCALF AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439498,Sedan,Sedan,,, +07/21/2021,17:20,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439277,Sedan,,,, +07/22/2021,6:08,BROOKLYN,11218,40.647594,-73.97351,"(40.647594, -73.97351)",CATON AVENUE,EAST 7 STREET,,0,1,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,,4439505,E-Bike,Dump,Station Wagon/Sport Utility Vehicle,, +06/21/2021,16:33,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440241,Pick-up Truck,Sedan,,, +07/21/2021,0:01,,,40.619736,-73.98958,"(40.619736, -73.98958)",64 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4438946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,10:00,QUEENS,11378,40.730362,-73.925415,"(40.730362, -73.925415)",43 STREET,55 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439534,Sedan,Box Truck,,, +07/23/2021,15:20,QUEENS,11413,40.666172,-73.76265,"(40.666172, -73.76265)",SOUTH CONDUIT AVENUE,182 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439945,Van,Sedan,,, +07/22/2021,23:35,BRONX,10458,40.858097,-73.89293,"(40.858097, -73.89293)",,,4656 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439641,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,9:00,,,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440257,Sedan,,,, +07/21/2021,16:00,MANHATTAN,10010,40.73707,-73.98102,"(40.73707, -73.98102)",,,301 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439442,Sedan,,,, +07/23/2021,18:30,BROOKLYN,11224,40.576275,-73.98796,"(40.576275, -73.98796)",WEST 21 STREET,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,14:40,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439592,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,11:23,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4439822,Sedan,Sedan,,, +07/20/2021,18:03,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4439981,Sedan,Sedan,Sedan,, +07/20/2021,0:00,BROOKLYN,11218,40.64066,-73.97595,"(40.64066, -73.97595)",EAST 4 STREET,AVENUE C,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440194,Sedan,Sedan,,, +07/22/2021,17:04,BROOKLYN,11230,40.624584,-73.96222,"(40.624584, -73.96222)",,,1009 EAST 14 STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439679,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/22/2021,13:07,,,40.71153,-73.95504,"(40.71153, -73.95504)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4439839,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,19:00,BROOKLYN,11225,40.66343,-73.95874,"(40.66343, -73.95874)",,,99 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440029,Station Wagon/Sport Utility Vehicle,,,, +06/01/2021,13:10,,,,,,VANWYCK EXPRESSWAY service road,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439811,Sedan,Sedan,,, +07/19/2021,12:55,,,40.58979,-74.19329,"(40.58979, -74.19329)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4440212,Sedan,,,, +07/14/2021,12:45,,,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440243,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,18:16,,,40.83354,-73.92037,"(40.83354, -73.92037)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439877,Sedan,Sedan,,, +07/21/2021,10:35,,,40.792526,-73.810234,"(40.792526, -73.810234)",11 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439993,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,23:00,BROOKLYN,11236,40.634445,-73.90583,"(40.634445, -73.90583)",,,1080 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440120,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/22/2021,9:30,MANHATTAN,10037,40.81074,-73.94079,"(40.81074, -73.94079)",,,36 WEST 131 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440464,Station Wagon/Sport Utility Vehicle,UKNOWN,,, +07/23/2021,19:05,,,40.680977,-74.00498,"(40.680977, -74.00498)",HAMILTON AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440501,Station Wagon/Sport Utility Vehicle,TOW TRUCK,,, +07/22/2021,9:05,,,40.839447,-73.88384,"(40.839447, -73.88384)",VYSE AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439574,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,20:54,QUEENS,11367,40.74039,-73.82209,"(40.74039, -73.82209)",148 STREET,61 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439693,PK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/22/2021,16:00,BROOKLYN,11205,40.698326,-73.96106,"(40.698326, -73.96106)",FLUSHING AVENUE,TAAFFE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440168,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,12:40,QUEENS,11429,40.703175,-73.7483,"(40.703175, -73.7483)",113 AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4439917,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/15/2021,11:15,,,40.842346,-73.93119,"(40.842346, -73.93119)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439706,Sedan,Box Truck,,, +07/19/2021,6:35,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439794,Sedan,Sedan,,, +07/20/2021,12:35,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439711,Pick-up Truck,Sedan,,, +07/22/2021,14:55,,,40.874702,-73.85803,"(40.874702, -73.85803)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440287,TRUCK,Bus,,, +07/22/2021,8:10,BRONX,10467,40.869972,-73.879845,"(40.869972, -73.879845)",,,391 EAST MOSHOLU PARKWAY NORTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439379,Station Wagon/Sport Utility Vehicle,Bus,,, +07/21/2021,13:40,BROOKLYN,11235,40.591053,-73.94594,"(40.591053, -73.94594)",AVENUE Y,EAST 24 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,12:00,,,40.79536,-73.96942,"(40.79536, -73.96942)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439129,Taxi,Box Truck,,, +07/21/2021,18:03,BROOKLYN,11237,40.698837,-73.91407,"(40.698837, -73.91407)",IRVING AVENUE,LINDEN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439345,Sedan,Motorbike,,, +07/22/2021,6:30,QUEENS,11101,40.74375,-73.95937,"(40.74375, -73.95937)",CENTER BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4439532,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,12:53,BROOKLYN,11212,40.659138,-73.915855,"(40.659138, -73.915855)",,,389 LEGION STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439160,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,12:15,BROOKLYN,11226,40.652554,-73.95602,"(40.652554, -73.95602)",,,2107 BEDFORD AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440345,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/21/2021,14:26,BRONX,10461,40.8506,-73.85159,"(40.8506, -73.85159)",,,1800 WILLIAMSBRIDGE ROAD,2,0,0,0,0,0,2,0,Tinted Windows,Unspecified,,,,4439370,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,15:30,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440158,Sedan,,,, +07/22/2021,21:50,QUEENS,11419,40.69064,-73.814,"(40.69064, -73.814)",,,132-01 LIBERTY AVENUE,2,0,2,0,0,0,0,0,Unspecified,,,,,4439554,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,16:45,BROOKLYN,11233,40.67882,-73.910545,"(40.67882, -73.910545)",,,38 SOMERS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473336,Sedan,Truck,,, +07/23/2021,0:00,BROOKLYN,11237,40.700672,-73.92164,"(40.700672, -73.92164)",KNICKERBOCKER AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439858,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,19:45,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439399,Bus,Sedan,,, +07/23/2021,17:01,BROOKLYN,11210,40.621162,-73.95354,"(40.621162, -73.95354)",AVENUE L,EAST 22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,3:43,BROOKLYN,11207,40.656616,-73.89027,"(40.656616, -73.89027)",SHEFFIELD AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4439572,Sedan,Sedan,,, +07/21/2021,7:52,BRONX,10458,40.861942,-73.89373,"(40.861942, -73.89373)",EAST FORDHAM ROAD,ELM PLACE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439091,Bike,Sedan,,, +07/21/2021,8:11,BRONX,10459,40.822628,-73.89587,"(40.822628, -73.89587)",WESTCHESTER AVENUE,KELLY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439725,Taxi,E-Bike,,, +07/21/2021,14:14,,,40.7025,-73.91633,"(40.7025, -73.91633)",WYCKOFF AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439346,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/17/2021,23:45,STATEN ISLAND,10308,40.54783,-74.13952,"(40.54783, -74.13952)",HYLAN BOULEVARD,FIELDWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439656,Sedan,,,, +07/17/2021,14:41,BROOKLYN,11213,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440137,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,15:00,BROOKLYN,11211,40.71515,-73.94522,"(40.71515, -73.94522)",,,148 CONSELYEA STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439893,Sedan,,,, +07/23/2021,23:17,BROOKLYN,11207,40.65626,-73.89574,"(40.65626, -73.89574)",DE WITT AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4439875,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,8:42,BRONX,10466,40.892006,-73.85305,"(40.892006, -73.85305)",,,836 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4440280,Sedan,Sedan,Sedan,, +07/22/2021,11:20,BROOKLYN,11211,40.711037,-73.96059,"(40.711037, -73.96059)",SOUTH 5 PLACE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439843,Tractor Truck Diesel,Sedan,,, +07/21/2021,22:45,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440498,Sedan,,,, +07/22/2021,1:18,BROOKLYN,11207,40.657066,-73.8895,"(40.657066, -73.8895)",,,850 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439395,Taxi,Sedan,,, +07/22/2021,17:30,QUEENS,11423,40.71844,-73.765274,"(40.71844, -73.765274)",,,197-01 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4439704,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,14:26,BROOKLYN,11220,40.64703,-74.012,"(40.64703, -74.012)",49 STREET,4 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4440068,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,10:00,MANHATTAN,10019,40.765675,-73.98441,"(40.765675, -73.98441)",,,309 WEST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439417,Sedan,,,, +07/16/2021,7:00,MANHATTAN,10027,40.80934,-73.94323,"(40.80934, -73.94323)",,,83 WEST 128 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439683,Sedan,,,, +07/15/2021,0:30,QUEENS,11105,40.771084,-73.908226,"(40.771084, -73.908226)",STEINWAY STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440135,Motorcycle,Sedan,,, +07/21/2021,0:20,,,40.824703,-73.944275,"(40.824703, -73.944275)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439101,Sedan,Taxi,,, +07/21/2021,13:50,BROOKLYN,11214,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,BATH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439159,Sedan,Motorcycle,,, +07/23/2021,16:00,QUEENS,11420,40.67335,-73.82582,"(40.67335, -73.82582)",114 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,16:29,,,40.906853,-73.90125,"(40.906853, -73.90125)",WEST 259 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440205,Pick-up Truck,Sedan,,, +07/21/2021,11:41,,,40.82897,-73.9486,"(40.82897, -73.9486)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439562,ambulance,,,, +07/19/2021,4:00,,,40.678455,-73.949684,"(40.678455, -73.949684)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440153,Sedan,Sedan,,, +07/23/2021,18:00,QUEENS,11420,40.66691,-73.822014,"(40.66691, -73.822014)",LEFFERTS BOULEVARD,150 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4440439,Sedan,Sedan,,, +07/17/2021,13:45,BRONX,10469,40.87886,-73.83949,"(40.87886, -73.83949)",,,3407 GRACE AVENUE,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4440289,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,13:50,MANHATTAN,10128,40.78221,-73.95993,"(40.78221, -73.95993)",5 AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439862,Van,,,, +07/23/2021,6:10,,,40.758316,-73.91069,"(40.758316, -73.91069)",48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440110,Sedan,,,, +07/23/2021,16:00,QUEENS,11367,40.72395,-73.812874,"(40.72395, -73.812874)",153 STREET,76 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439864,Sedan,,,, +07/22/2021,19:10,BROOKLYN,11211,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,HUMBOLDT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439567,Motorcycle,,,, +07/21/2021,10:23,BRONX,10465,40.81421,-73.82696,"(40.81421, -73.82696)",,,250 HOSMER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439202,Sedan,,,, +07/21/2021,14:00,,,40.85078,-73.91222,"(40.85078, -73.91222)",WEST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,Unspecified,,,4439297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/22/2021,18:10,QUEENS,11420,40.68275,-73.82043,"(40.68275, -73.82043)",121 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439556,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/22/2021,8:25,QUEENS,11426,40.73312,-73.71856,"(40.73312, -73.71856)",85 AVENUE,248 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439441,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,22:50,QUEENS,11373,40.735497,-73.869705,"(40.735497, -73.869705)",92 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439826,Sedan,,,, +07/22/2021,17:40,,,40.80206,-73.97352,"(40.80206, -73.97352)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,12:41,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",SCHENCK AVENUE,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439112,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,23:15,QUEENS,11365,40.73535,-73.78375,"(40.73535, -73.78375)",188 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4439694,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/19/2021,8:30,BROOKLYN,11210,40.63622,-73.937454,"(40.63622, -73.937454)",,,1514 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439960,Sedan,PAS,,, +07/21/2021,20:50,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439221,Sedan,,,, +07/22/2021,10:00,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",114 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,7:25,QUEENS,11361,40.761993,-73.75849,"(40.761993, -73.75849)",NORTHERN BOULEVARD,223 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439051,Sedan,Box Truck,,, +07/21/2021,19:51,QUEENS,11375,40.716637,-73.83422,"(40.716637, -73.83422)",76 DRIVE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439726,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,21:16,BRONX,10467,40.867874,-73.86627,"(40.867874, -73.86627)",CRUGER AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439663,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,15:00,,,40.72787,-73.92913,"(40.72787, -73.92913)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4439190,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,17:00,MANHATTAN,10021,40.77369,-73.961945,"(40.77369, -73.961945)",EAST 76 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439856,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/22/2021,18:30,BRONX,10453,40.85381,-73.91386,"(40.85381, -73.91386)",WEST BURNSIDE AVENUE,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439594,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2021,16:54,QUEENS,11372,40.751495,-73.883675,"(40.751495, -73.883675)",,,35-63 83 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439909,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/23/2021,22:35,,,40.725273,-73.89286,"(40.725273, -73.89286)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4440233,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,22:10,QUEENS,11101,40.75043,-73.93533,"(40.75043, -73.93533)",,,29-76 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Alcohol Involvement,Unspecified,Unspecified,Unspecified,4439341,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/14/2021,22:00,,,,,,W Loop Road,S Loop Roaqd,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4440112,Sedan,,,, +07/23/2021,15:40,,,40.65878,-73.960526,"(40.65878, -73.960526)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439779,Sedan,,,, +07/21/2021,14:45,,,40.79799,-73.96199,"(40.79799, -73.96199)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439170,Sedan,van,,, +07/17/2021,10:10,MANHATTAN,10029,40.796795,-73.94718,"(40.796795, -73.94718)",MADISON AVENUE,EAST 111 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439747,Sedan,,,, +07/21/2021,16:44,QUEENS,11367,40.72527,-73.816154,"(40.72527, -73.816154)",150 STREET,75 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439616,Sedan,Sedan,,, +07/22/2021,14:10,BROOKLYN,11217,40.68007,-73.97543,"(40.68007, -73.97543)",,,65 SAINT MARKS AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439497,Sedan,Bike,,, +07/20/2021,12:14,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440255,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +07/21/2021,12:50,,,40.682507,-73.94375,"(40.682507, -73.94375)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439402,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/21/2021,1:05,,,40.842464,-73.92414,"(40.842464, -73.92414)",OGDEN AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4440090,Motorcycle,,,, +07/15/2021,17:20,BROOKLYN,11218,40.647427,-73.979126,"(40.647427, -73.979126)",CATON AVENUE,EAST 2 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439631,Sedan,E-Bike,,, +07/23/2021,7:15,BROOKLYN,11232,40.656643,-74.00527,"(40.656643, -74.00527)",GOWANUS EXPRESSWAY,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439821,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,8:22,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4439252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/21/2021,9:38,,,40.58114,-74.08876,"(40.58114, -74.08876)",NAUGHTON AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4439367,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,1:43,MANHATTAN,10034,40.86518,-73.91841,"(40.86518, -73.91841)",,,3896 10 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4440021,Sedan,,,, +10/31/2021,1:40,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472804,Sedan,,,, +07/10/2021,11:06,BROOKLYN,11234,40.606773,-73.909904,"(40.606773, -73.909904)",,,2664 EAST 66 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4439898,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/21/2021,22:45,,,40.61135,-74.09847,"(40.61135, -74.09847)",NARROWS ROAD NORTH,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4439411,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/23/2021,2:10,,,40.6972,-73.952934,"(40.6972, -73.952934)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440494,Sedan,,,, +07/20/2021,11:00,,,40.731663,-73.78736,"(40.731663, -73.78736)",73 AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,Unspecified,,,4439687,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/21/2021,11:30,BRONX,10458,40.858303,-73.892784,"(40.858303, -73.892784)",PARK AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439390,Sedan,,,, +07/22/2021,7:45,BROOKLYN,11233,40.672497,-73.91686,"(40.672497, -73.91686)",SARATOGA AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440300,Bus,Sedan,,, +07/21/2021,19:46,MANHATTAN,10019,,,,55 street,8 avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439292,E-Bike,,,, +07/23/2021,14:00,BROOKLYN,11203,40.649216,-73.944435,"(40.649216, -73.944435)",,,3500 SNYDER AVENUE,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4440039,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/21/2021,21:54,MANHATTAN,10034,40.866333,-73.92501,"(40.866333, -73.92501)",BROADWAY,ACADEMY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439462,Ambulance,,,, +07/21/2021,0:56,MANHATTAN,10026,40.802765,-73.95148,"(40.802765, -73.95148)",,,160 WEST 116 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439542,Sedan,Bike,,, +07/21/2021,19:45,,,40.7104,-73.86663,"(40.7104, -73.86663)",COOPER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440229,Sedan,Sedan,,, +07/21/2021,16:25,QUEENS,11365,40.72848,-73.80523,"(40.72848, -73.80523)",164 STREET,72 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4439700,Sedan,,,, +07/21/2021,19:00,BROOKLYN,11201,40.691265,-73.99031,"(40.691265, -73.99031)",,,100 LIVINGSTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439246,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,2:45,QUEENS,11106,40.763573,-73.92189,"(40.763573, -73.92189)",31 AVENUE,33 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440140,Sedan,Sedan,,, +07/20/2021,17:15,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439658,Sedan,Sedan,,, +07/22/2021,16:15,MANHATTAN,10002,40.718002,-73.98659,"(40.718002, -73.98659)",DELANCEY STREET,SUFFOLK STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4439480,Sedan,Sedan,,, +07/23/2021,2:37,MANHATTAN,10032,40.845367,-73.94053,"(40.845367, -73.94053)",WEST 173 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439643,Taxi,,,, +07/23/2021,9:30,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4439732,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,14:15,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439236,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,16:34,MANHATTAN,10029,40.790627,-73.942444,"(40.790627, -73.942444)",EAST 106 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4439849,Station Wagon/Sport Utility Vehicle,Bus,,, +07/21/2021,8:20,MANHATTAN,10013,40.72119,-74.00443,"(40.72119, -74.00443)",,,380 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439040,Sedan,Box Truck,,, +07/22/2021,16:44,BROOKLYN,11203,40.659103,-73.93411,"(40.659103, -73.93411)",,,598 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439506,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/22/2021,19:43,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",CONEY ISLAND AVENUE,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440141,Sedan,,,, +07/22/2021,14:45,BRONX,10451,40.81698,-73.92116,"(40.81698, -73.92116)",,,295 EAST 149 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439599,Pick-up Truck,E-Scooter,,, +07/22/2021,21:15,BRONX,10456,40.83091,-73.92047,"(40.83091, -73.92047)",EAST 165 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439790,Motorcycle,Pick-up Truck,,, +07/23/2021,12:50,BRONX,10457,40.84403,-73.89351,"(40.84403, -73.89351)",,,1839 BELMONT AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4440446,Sedan,Sedan,,, +07/21/2021,7:05,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4439139,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/07/2021,20:59,,,40.748863,-73.97584,"(40.748863, -73.97584)",3 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439972,Bike,Sedan,,, +07/23/2021,7:24,QUEENS,11413,40.676693,-73.74221,"(40.676693, -73.74221)",MERRICK BOULEVARD,228 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,Unspecified,,,4439715,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +07/21/2021,22:16,QUEENS,11419,40.687004,-73.82836,"(40.687004, -73.82836)",115 STREET,103 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439267,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/03/2021,17:33,QUEENS,11379,40.71492,-73.90053,"(40.71492, -73.90053)",,,61-56 ELIOT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4439915,Sedan,Bus,,, +07/23/2021,2:25,,,40.788315,-73.9765,"(40.788315, -73.9765)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4439583,Station Wagon/Sport Utility Vehicle,Box Truck,Garbage or Refuse,, +07/21/2021,17:35,BROOKLYN,11234,40.615334,-73.918396,"(40.615334, -73.918396)",,,5827 AVENUE T,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439539,Sedan,Bike,,, +07/22/2021,12:12,,,40.760056,-73.941635,"(40.760056, -73.941635)",37 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,21:00,,,40.820263,-73.92976,"(40.820263, -73.92976)",EAST 150 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439891,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,11:45,BROOKLYN,11205,40.698326,-73.96106,"(40.698326, -73.96106)",TAAFFE PLACE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4440363,Tanker,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,23:58,,,,,,CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4440473,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/23/2021,13:29,BROOKLYN,11208,40.678547,-73.87079,"(40.678547, -73.87079)",,,415 CRESCENT STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439758,Pick-up Truck,Sedan,Sedan,, +07/14/2021,9:00,BROOKLYN,11203,40.646442,-73.9277,"(40.646442, -73.9277)",,,5204 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4440265,Sedan,,,, +07/22/2021,17:30,,,40.769604,-73.91139,"(40.769604, -73.91139)",38 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439668,Sedan,Sedan,,, +07/22/2021,23:59,QUEENS,11435,40.690258,-73.80831,"(40.690258, -73.80831)",,,104-49 142 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439775,Sedan,Sedan,,, +07/19/2021,16:09,BRONX,10455,40.816307,-73.90806,"(40.816307, -73.90806)",WESTCHESTER AVENUE,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4439942,Station Wagon/Sport Utility Vehicle,Bike,,, +07/22/2021,1:30,BROOKLYN,11215,40.66135,-73.99343,"(40.66135, -73.99343)",5 AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440183,Sedan,,,, +07/18/2021,16:54,,,40.558887,-74.1977,"(40.558887, -74.1977)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439626,Pick-up Truck,,,, +07/22/2021,23:57,STATEN ISLAND,10304,40.619,-74.084785,"(40.619, -74.084785)",TARGEE STREET,OSGOOD AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4440347,Sedan,Sedan,,, +07/14/2021,17:10,,,40.573082,-74.0928,"(40.573082, -74.0928)",OLYMPIA BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439648,Sedan,,,, +07/23/2021,10:00,QUEENS,11101,40.744404,-73.94032,"(40.744404, -73.94032)",27 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439833,Sedan,,,, +07/23/2021,18:00,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439816,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,13:15,BROOKLYN,11212,40.65885,-73.9236,"(40.65885, -73.9236)",,,1038 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440276,Sedan,Sedan,,, +07/21/2021,23:51,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,Unspecified,,4439274,Sedan,Sedan,Bus,Sedan, +07/23/2021,0:18,BRONX,10468,40.862324,-73.909874,"(40.862324, -73.909874)",,,205 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439907,Sedan,Sedan,,, +07/22/2021,10:31,,,40.846867,-73.90876,"(40.846867, -73.90876)",GRAND CONCOURSE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439604,Sedan,Sedan,,, +07/14/2021,14:30,,,40.82406,-73.92815,"(40.82406, -73.92815)",EAST 153 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439885,Motorcycle,Box Truck,,, +07/21/2021,1:08,,,40.874138,-73.877525,"(40.874138, -73.877525)",PERRY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439332,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,14:40,QUEENS,11378,40.720524,-73.90493,"(40.720524, -73.90493)",FLUSHING AVENUE,58 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440250,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,8:30,,,0,0,"(0.0, 0.0)",BAY 50 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439456,Sedan,,,, +07/10/2021,17:00,MANHATTAN,10016,40.750378,-73.98138,"(40.750378, -73.98138)",,,20 EAST 38 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440129,Sedan,Van,,, +07/23/2021,19:46,,,40.584057,-74.16102,"(40.584057, -74.16102)",MARSH AVENUE,WESTPORT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439925,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,2:16,BROOKLYN,11225,40.655632,-73.95987,"(40.655632, -73.95987)",PARKSIDE AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439260,NYC SANITA,,,, +07/23/2021,16:13,,,40.686817,-73.97821,"(40.686817, -73.97821)",ASHLAND PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439764,Taxi,,,, +07/23/2021,18:07,BRONX,10466,40.886856,-73.86099,"(40.886856, -73.86099)",,,3942 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4440333,Sedan,Motorbike,,, +10/31/2021,17:49,QUEENS,11375,40.720966,-73.8429,"(40.720966, -73.8429)",71 ROAD,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4472650,E-Scooter,,,, +07/23/2021,19:00,BROOKLYN,11228,40.61606,-74.02576,"(40.61606, -74.02576)",92 STREET,DAHLGREN PLACE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4439801,Station Wagon/Sport Utility Vehicle,Bus,,, +07/21/2021,18:00,QUEENS,11420,40.68179,-73.8098,"(40.68179, -73.8098)",LINDEN BOULEVARD,132 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439215,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,16:40,BROOKLYN,11215,40.668167,-73.97721,"(40.668167, -73.97721)",8 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439501,Sedan,Sedan,,, +07/22/2021,19:50,,,40.739574,-73.79167,"(40.739574, -73.79167)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439517,Sedan,Sedan,,, +07/19/2021,13:30,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440482,Sedan,E-Bike,,, +07/23/2021,15:40,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4439937,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/13/2021,13:35,QUEENS,11418,40.699207,-73.823,"(40.699207, -73.823)",127 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,22:00,,,40.748512,-73.98872,"(40.748512, -73.98872)",WEST 32 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440199,Station Wagon/Sport Utility Vehicle,Bike,,, +07/23/2021,16:10,BRONX,10453,40.848545,-73.90679,"(40.848545, -73.90679)",GRAND CONCOURSE,MOUNT HOPE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440007,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,9:25,,,40.57961,-74.109116,"(40.57961, -74.109116)",LINCOLN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439361,Station Wagon/Sport Utility Vehicle,Tanker,,, +07/21/2021,13:10,BRONX,10454,40.8077,-73.92955,"(40.8077, -73.92955)",BRUCKNER BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439280,Taxi,Sedan,,, +07/09/2021,8:20,,,40.760284,-73.769356,"(40.760284, -73.769356)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,18:40,BROOKLYN,11207,40.654392,-73.89295,"(40.654392, -73.89295)",,,215 LOUISIANA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,6:50,QUEENS,11422,40.66924,-73.73509,"(40.66924, -73.73509)",,,241-18 137 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4495955,Pick-up Truck,,,, +07/23/2021,14:12,QUEENS,11434,40.682583,-73.788864,"(40.682583, -73.788864)",116 DRIVE,155 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4440520,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,8:37,MANHATTAN,10027,40.810093,-73.95309,"(40.810093, -73.95309)",SAINT NICHOLAS AVENUE,WEST 124 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440045,Bike,,,, +07/23/2021,20:20,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,21:50,MANHATTAN,10028,40.778137,-73.95449,"(40.778137, -73.95449)",EAST 85 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439313,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/22/2021,19:26,BROOKLYN,11226,40.64464,-73.96201,"(40.64464, -73.96201)",,,1803 BEVERLEY ROAD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439680,Sedan,E-Bike,,, +07/23/2021,9:43,MANHATTAN,10036,40.75518,-73.98389,"(40.75518, -73.98389)",,,1 BRYANT PARK,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440198,Box Truck,Sedan,,, +07/23/2021,18:56,BRONX,10466,40.88569,-73.831245,"(40.88569, -73.831245)",,,3652 DYRE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440292,Sedan,Sedan,,, +07/23/2021,19:40,BROOKLYN,11223,40.608814,-73.973,"(40.608814, -73.973)",MC DONALD AVENUE,AVENUE P,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4439952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,5:45,MANHATTAN,10016,40.746403,-73.97973,"(40.746403, -73.97973)",EAST 34 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440070,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,9:22,BRONX,10456,40.827927,-73.90094,"(40.827927, -73.90094)",HOME STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439553,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,17:00,BROOKLYN,11222,40.73207,-73.957184,"(40.73207, -73.957184)",,,74 INDIA STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,7:48,STATEN ISLAND,10304,40.60792,-74.08921,"(40.60792, -74.08921)",NARROWS ROAD SOUTH,TARGEE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440221,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,8:00,BRONX,10474,40.819546,-73.88685,"(40.819546, -73.88685)",,,882 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439736,Station Wagon/Sport Utility Vehicle,,,, +09/23/2022,19:00,,,40.668327,-73.79627,"(40.668327, -73.79627)",143 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4566998,Sedan,,,, +07/23/2021,17:20,MANHATTAN,10065,40.764988,-73.96116,"(40.764988, -73.96116)",2 AVENUE,EAST 66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440456,Bus,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,23:41,,,40.86177,-73.91848,"(40.86177, -73.91848)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439470,Sedan,,,, +07/21/2021,15:14,BROOKLYN,11236,40.634575,-73.90596,"(40.634575, -73.90596)",AVENUE K,EAST 85 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4439906,Convertible,Sedan,Sedan,, +07/22/2021,14:00,,,40.59213,-73.788956,"(40.59213, -73.788956)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439675,Sedan,,,, +07/22/2021,11:00,,,40.752605,-73.9496,"(40.752605, -73.9496)",9 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439586,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/21/2021,20:30,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439325,Sedan,Sedan,,, +07/22/2021,13:15,,,,,,,,276 SOUTH 6 ST,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439844,Sedan,Sedan,,, +07/23/2021,0:25,,,40.652534,-73.74276,"(40.652534, -73.74276)",149 AVENUE,241 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439575,Sedan,,,, +07/22/2021,14:30,,,40.732037,-73.814926,"(40.732037, -73.814926)",JEWEL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439474,Sedan,Bus,,, +07/21/2021,5:03,QUEENS,11413,40.675755,-73.744896,"(40.675755, -73.744896)",135 AVENUE,226 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4438962,Sedan,,,, +07/22/2021,16:39,QUEENS,11377,40.742683,-73.89566,"(40.742683, -73.89566)",69 STREET,WOODSIDE AVENUE,,4,0,0,0,0,0,4,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,12:56,BROOKLYN,11233,40.66638,-73.9244,"(40.66638, -73.9244)",EAST 98 STREET,EAST NEW YORK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4440336,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,15:00,MANHATTAN,10010,40.737988,-73.98085,"(40.737988, -73.98085)",,,401 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439786,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2021,0:00,BRONX,10459,40.817184,-73.897675,"(40.817184, -73.897675)",,,991 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439719,Pick-up Truck,,,, +07/22/2021,11:54,QUEENS,11411,40.689377,-73.729004,"(40.689377, -73.729004)",,,118-20 234 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439712,Bike,Sedan,,, +07/22/2021,17:00,QUEENS,11361,40.7608,-73.7657,"(40.7608, -73.7657)",216 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439502,Sedan,Sedan,,, +07/21/2021,20:30,,,40.622013,-74.01641,"(40.622013, -74.01641)",79 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439245,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,14:31,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4439976,Sedan,Sedan,Sedan,, +07/22/2021,9:44,BRONX,10459,40.831146,-73.895706,"(40.831146, -73.895706)",,,1340 CHISHOLM STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439380,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,11:25,QUEENS,11104,40.743374,-73.92056,"(40.743374, -73.92056)",QUEENS BOULEVARD,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,7:30,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4439982,Sedan,,,, +07/22/2021,22:20,BROOKLYN,11207,40.658764,-73.891884,"(40.658764, -73.891884)",,,762 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439754,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,16:23,MANHATTAN,10018,40.755806,-73.992294,"(40.755806, -73.992294)",,,335 WEST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440125,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,13:57,QUEENS,11433,40.701794,-73.7855,"(40.701794, -73.7855)",,,105-06 171 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439771,Station Wagon/Sport Utility Vehicle,,,, +06/25/2021,8:31,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4440030,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,7:46,QUEENS,11365,40.736847,-73.8067,"(40.736847, -73.8067)",162 STREET,65 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439707,Sedan,,,, +07/15/2021,16:48,BROOKLYN,11211,40.716484,-73.95704,"(40.716484, -73.95704)",DRIGGS AVENUE,NORTH 6 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4439880,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +07/21/2021,19:20,STATEN ISLAND,10312,40.559128,-74.16948,"(40.559128, -74.16948)",RICHMOND AVENUE,GURLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439371,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +05/31/2021,12:00,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4439812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,10:00,,,40.67561,-73.941025,"(40.67561, -73.941025)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4440244,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,14:45,,,40.625786,-73.89309,"(40.625786, -73.89309)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,14:30,,,40.78941,-73.84466,"(40.78941, -73.84466)",123 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439994,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,10:55,QUEENS,11373,40.741287,-73.885735,"(40.741287, -73.885735)",79 STREET,45 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439829,Sedan,E-Bike,,, +07/23/2021,8:15,,,40.834614,-73.825165,"(40.834614, -73.825165)",BRUCKNER BOULEVARD,HOLLYWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439655,Sedan,Bus,,, +07/22/2021,8:10,,,40.688995,-73.78581,"(40.688995, -73.78581)",LINDEN BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439522,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,23:00,BROOKLYN,11226,40.65175,-73.948685,"(40.65175, -73.948685)",MARTENSE STREET,FAIRVIEW PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439969,Sedan,,,, +07/22/2021,9:00,QUEENS,11106,40.76771,-73.93247,"(40.76771, -73.93247)",14 STREET,31 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439451,Sedan,,,, +07/22/2021,15:30,,,40.840286,-73.92147,"(40.840286, -73.92147)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439768,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,23:20,MANHATTAN,10001,40.750713,-73.99082,"(40.750713, -73.99082)",,,431 7 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4439291,Station Wagon/Sport Utility Vehicle,,,, +07/04/2021,16:20,BROOKLYN,11212,40.654358,-73.91916,"(40.654358, -73.91916)",EAST 92 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440266,Sedan,Sedan,,, +07/22/2021,17:00,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Following Too Closely,,,,4440166,Sedan,Sedan,,, +07/23/2021,13:00,BROOKLYN,11235,40.593487,-73.94349,"(40.593487, -73.94349)",EAST 27 STREET,AVENUE X,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439916,Sedan,,,, +07/23/2021,9:05,QUEENS,11694,40.58156,-73.83896,"(40.58156, -73.83896)",,,115-06 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439797,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,15:06,BROOKLYN,11229,40.603813,-73.96062,"(40.603813, -73.96062)",,,1878 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,12:04,MANHATTAN,10036,40.76553,-73.99768,"(40.76553, -73.99768)",12 AVENUE,WEST 48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439304,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/21/2021,23:30,BROOKLYN,11218,40.64516,-73.98256,"(40.64516, -73.98256)",,,3385 12 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439636,Sedan,,,, +07/21/2021,17:19,BROOKLYN,11215,40.660225,-73.99459,"(40.660225, -73.99459)",23 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440175,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,17:00,MANHATTAN,10002,40.716923,-73.98322,"(40.716923, -73.98322)",DELANCEY STREET,PITT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439834,Sedan,,,, +07/22/2021,20:12,MANHATTAN,10013,40.722927,-74.00218,"(40.722927, -74.00218)",BROOME STREET,WOOSTER STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439739,Sedan,,,, +07/23/2021,15:20,BROOKLYN,11235,40.57563,-73.96395,"(40.57563, -73.96395)",BRIGHTON 3 STREET,BRIGHTWATER COURT,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4440286,Fire truck,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,16:10,BROOKLYN,11211,0,0,"(0.0, 0.0)",DRIGGS AVENUE,NORTH 6 STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4440307,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,15:17,BROOKLYN,11218,40.64544,-73.97685,"(40.64544, -73.97685)",EAST 4 STREET,ALBEMARLE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4439421,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Taxi,Sedan +07/21/2021,15:04,,,40.61204,-73.97848,"(40.61204, -73.97848)",65 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439342,Sedan,Sedan,,, +07/21/2021,8:00,BROOKLYN,11236,40.638306,-73.8947,"(40.638306, -73.8947)",,,1777 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4439167,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,8:00,BROOKLYN,11234,40.620087,-73.915375,"(40.620087, -73.915375)",,,6422 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4439806,Taxi,,,, +07/23/2021,16:05,QUEENS,11105,40.77117,-73.9134,"(40.77117, -73.9134)",,,23-73 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/23/2021,22:30,QUEENS,11436,40.679096,-73.79822,"(40.679096, -73.79822)",143 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4439838,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/22/2021,15:30,BROOKLYN,11222,40.727154,-73.956085,"(40.727154, -73.956085)",,,117 CALYER STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,16:30,BROOKLYN,11203,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,BROOKLYN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440342,Bike,,,, +07/23/2021,8:28,BROOKLYN,11232,40.650948,-74.00793,"(40.650948, -74.00793)",4 AVENUE,42 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4440060,Bike,Sedan,,, +07/21/2021,14:00,BROOKLYN,11203,40.643734,-73.93056,"(40.643734, -73.93056)",,,720 EAST 49 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439209,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,12:00,BROOKLYN,11203,40.655655,-73.93372,"(40.655655, -73.93372)",,,731 SCHENECTADY AVENUE,3,0,1,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4439959,Sedan,Sedan,Sedan,, +07/22/2021,13:10,BROOKLYN,11211,40.706806,-73.963264,"(40.706806, -73.963264)",,,155 CLYMER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439571,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,4:39,,,40.856792,-73.91742,"(40.856792, -73.91742)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439092,Sedan,,,, +07/22/2021,9:06,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4440397,Sedan,Sedan,Sedan,, +07/23/2021,19:24,,,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440091,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,21:20,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4439557,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,21:31,,,40.83779,-73.82495,"(40.83779, -73.82495)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4439348,Sedan,Sedan,Sedan,, +07/15/2021,22:40,BRONX,10461,40.843006,-73.84856,"(40.843006, -73.84856)",EAST TREMONT AVENUE,OVERING STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4440096,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,21:00,BROOKLYN,11233,40.668427,-73.92078,"(40.668427, -73.92078)",,,1429 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440463,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,20:00,QUEENS,11423,,,,,,9318 197 street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439695,Sedan,Sedan,,, +07/21/2021,15:20,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439264,Sedan,Sedan,,, +07/15/2021,20:30,QUEENS,11432,,,,,,8469 160 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439608,Sedan,,,, +07/21/2021,17:00,QUEENS,11105,40.773663,-73.90239,"(40.773663, -73.90239)",42 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440143,Sedan,,,, +07/21/2021,16:30,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",82 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439690,Sedan,Bus,,, +07/22/2021,12:10,,,,,,QUEENS PLAZA NORTH,28 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439531,Sedan,Dump,,, +07/22/2021,17:00,BRONX,10467,40.88316,-73.8809,"(40.88316, -73.8809)",,,3510 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439590,Sedan,,,, +07/21/2021,12:42,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",WEST GUN HILL ROAD,JEROME AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,14:27,BROOKLYN,11209,40.62149,-74.02622,"(40.62149, -74.02622)",5 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439217,Sedan,Sedan,,, +07/21/2021,0:00,MANHATTAN,10035,40.8017,-73.9343,"(40.8017, -73.9343)",,,2405 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439432,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,12:05,,,40.659016,-73.95673,"(40.659016, -73.95673)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440028,Pick-up Truck,Pick-up Truck,,, +07/21/2021,11:50,BROOKLYN,11207,40.665714,-73.898445,"(40.665714, -73.898445)",,,545 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439396,Sedan,,,, +07/21/2021,17:30,QUEENS,11385,40.693844,-73.89692,"(40.693844, -73.89692)",CYPRESS AVENUE,CABOT ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440240,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,9:57,BROOKLYN,11214,40.604767,-73.99088,"(40.604767, -73.99088)",81 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4439406,Sedan,Sedan,,, +07/15/2021,11:30,QUEENS,11432,40.70975,-73.79562,"(40.70975, -73.79562)",HILLSIDE AVENUE,167 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4439612,Sedan,Sedan,,, +07/03/2021,18:00,BRONX,10459,40.817184,-73.897675,"(40.817184, -73.897675)",,,991 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439722,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,7:20,QUEENS,11101,40.755554,-73.91848,"(40.755554, -73.91848)",43 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/19/2021,20:20,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439876,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,5:35,MANHATTAN,10013,40.72085,-74.00394,"(40.72085, -74.00394)",CANAL STREET,WOOSTER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,4:20,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",OCEAN PARKWAY,DITMAS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4440117,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,9:45,BROOKLYN,11236,40.64574,-73.912094,"(40.64574, -73.912094)",,,929 REMSEN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Failure to Yield Right-of-Way,,,,4439783,AMBULANCE,Sedan,,, +07/22/2021,12:49,BROOKLYN,11222,40.723774,-73.93754,"(40.723774, -73.93754)",VANDERVORT AVENUE,CHERRY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440311,Sedan,Sedan,,, +07/23/2021,7:00,BROOKLYN,11208,40.682972,-73.88365,"(40.682972, -73.88365)",,,144 RIDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439744,Sedan,,,, +07/21/2021,22:28,MANHATTAN,10028,40.776276,-73.95795,"(40.776276, -73.95795)",LEXINGTON AVENUE,EAST 81 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4439309,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/19/2021,6:15,,,40.85602,-73.88846,"(40.85602, -73.88846)",HOFFMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439619,Sedan,,,, +06/01/2021,13:00,,,40.672333,-73.901764,"(40.672333, -73.901764)",SNEDIKER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439751,Sedan,,,, +07/22/2021,13:37,BROOKLYN,11211,40.718307,-73.94222,"(40.718307, -73.94222)",,,216 FROST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439861,Carry All,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,21:00,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440261,Sedan,,,, +07/19/2021,3:07,BRONX,10458,40.854755,-73.883224,"(40.854755, -73.883224)",,,2427 CROTONA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4439640,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/22/2021,14:34,BROOKLYN,11212,40.65942,-73.92276,"(40.65942, -73.92276)",,,1067 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4439962,Sedan,,,, +07/23/2021,13:45,QUEENS,11373,40.74184,-73.88101,"(40.74184, -73.88101)",BROADWAY,ELMHURST AVENUE,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4439825,,,,, +07/17/2021,7:25,BROOKLYN,11216,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440507,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,8:38,MANHATTAN,10039,40.827633,-73.93577,"(40.827633, -73.93577)",WEST 154 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439120,Sedan,,,, +07/23/2021,2:03,,,40.785805,-73.942856,"(40.785805, -73.942856)",1 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440155,,,,, +07/22/2021,8:00,,,40.726357,-73.76388,"(40.726357, -73.76388)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439617,Sedan,,,, +07/23/2021,0:00,BRONX,10456,40.824665,-73.902336,"(40.824665, -73.902336)",EAST 165 STREET,TINTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440088,Sedan,,,, +07/22/2021,6:50,QUEENS,11356,40.78418,-73.83641,"(40.78418, -73.83641)",,,15-06 132 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4439980,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,16:10,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",ASTORIA BOULEVARD,82 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4439911,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,14:00,QUEENS,11372,40.752945,-73.89248,"(40.752945, -73.89248)",34 AVENUE,74 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4473082,Bike,,,, +07/22/2021,10:29,BRONX,10451,40.82054,-73.930786,"(40.82054, -73.930786)",MAJOR DEEGAN EXPRESSWAY,EAST 150 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439892,Sedan,Sedan,,, +07/23/2021,14:20,MANHATTAN,10033,40.84691,-73.93824,"(40.84691, -73.93824)",BROADWAY,WEST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440368,Taxi,Tractor Truck Diesel,,, +07/21/2021,8:30,,,40.738544,-73.90293,"(40.738544, -73.90293)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439047,Sedan,Sedan,,, +07/13/2021,19:35,QUEENS,11102,40.773247,-73.9263,"(40.773247, -73.9263)",,,18-47 26 ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4440130,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/21/2021,9:00,QUEENS,11434,40.661068,-73.772194,"(40.661068, -73.772194)",,,167-16 147 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4439222,Sedan,Sedan,,, +07/21/2021,20:30,BROOKLYN,11208,40.67169,-73.86621,"(40.67169, -73.86621)",,,690 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4439394,Sedan,Sedan,Pick-up Truck,, +07/22/2021,12:15,,,,,,,,26-45 BROOKLYN QUEENS EXPRESSWAY W/B,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439667,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,17:20,QUEENS,11368,,,,ROOSEVELT AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,1:46,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439727,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,17:00,QUEENS,11377,40.7515,-73.90276,"(40.7515, -73.90276)",BROADWAY,59 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439854,Motorcycle,Sedan,,, +06/24/2021,18:00,BRONX,10456,40.827763,-73.9153,"(40.827763, -73.9153)",EAST 164 STREET,FINDLAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,13:35,QUEENS,11368,40.757072,-73.85492,"(40.757072, -73.85492)",114 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439910,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,13:10,QUEENS,11102,40.765224,-73.92275,"(40.765224, -73.92275)",31 STREET,30 DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4439338,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,11:34,BROOKLYN,11225,40.66369,-73.95435,"(40.66369, -73.95435)",,,250 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439778,Taxi,,,, +07/21/2021,12:00,,,40.666737,-73.90224,"(40.666737, -73.90224)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439158,Sedan,,,, +07/23/2021,4:30,QUEENS,11417,40.674465,-73.84942,"(40.674465, -73.84942)",133 AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4440441,Sedan,Sedan,Sedan,Sedan,Sedan +07/23/2021,10:15,STATEN ISLAND,10301,40.620945,-74.10933,"(40.620945, -74.10933)",,,970 BARD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440348,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,10:43,BRONX,10466,40.888588,-73.849884,"(40.888588, -73.849884)",PAULDING AVENUE,EAST 230 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440328,Sedan,Sedan,,, +07/22/2021,19:32,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4439516,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/22/2021,15:40,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,14:50,QUEENS,11694,40.58609,-73.822525,"(40.58609, -73.822525)",BEACH CHANNEL DRIVE,BEACH 100 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439487,Sedan,Sedan,,, +07/23/2021,15:05,,,40.804153,-73.91304,"(40.804153, -73.91304)",BRUCKNER BOULEVARD,EAST 137 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4439938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,16:15,QUEENS,11375,40.711372,-73.85034,"(40.711372, -73.85034)",71 AVENUE,NANSEN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4439731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,19:00,BROOKLYN,11235,40.58183,-73.95284,"(40.58183, -73.95284)",SHORE BOULEVARD,AMHERST STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4439268,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/22/2021,11:00,MANHATTAN,10007,40.712425,-74.00902,"(40.712425, -74.00902)",,,27 BARCLAY STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439644,Bike,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,4:22,BROOKLYN,11211,40.714687,-73.942604,"(40.714687, -73.942604)",,,790 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4439837,Sedan,,,, +10/31/2021,0:13,,,40.704155,-73.90752,"(40.704155, -73.90752)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473132,Taxi,,,, +07/21/2021,11:43,BROOKLYN,11249,40.713043,-73.96753,"(40.713043, -73.96753)",,,337 KENT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439253,Sedan,Bus,,, +06/23/2021,8:30,BROOKLYN,11217,40.68962,-73.97313,"(40.68962, -73.97313)",DE KALB AVENUE,CUMBERLAND STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439763,Station Wagon/Sport Utility Vehicle,Bike,,, +07/22/2021,11:44,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4439440,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,18:00,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440019,Garbage or Refuse,Motorcycle,,, +07/09/2021,16:05,,,40.65317,-73.9616,"(40.65317, -73.9616)",OCEAN AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4440054,Station Wagon/Sport Utility Vehicle,Bike,,, +07/23/2021,17:00,BROOKLYN,11231,40.68295,-74.00635,"(40.68295, -74.00635)",HAMILTON AVENUE,VAN BRUNT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440497,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,14:00,BROOKLYN,11236,40.64024,-73.91947,"(40.64024, -73.91947)",RALPH AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4439805,Sedan,,,, +07/23/2021,14:51,,,40.669044,-73.87578,"(40.669044, -73.87578)",MILFORD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439872,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,12:48,QUEENS,11433,40.6957,-73.7933,"(40.6957, -73.7933)",160 STREET,108 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439776,Sedan,,,, +07/21/2021,14:20,BROOKLYN,11220,40.64423,-74.014915,"(40.64423, -74.014915)",4 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440185,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,8:54,BROOKLYN,11233,40.677364,-73.90798,"(40.677364, -73.90798)",EASTERN PARKWAY,HERKIMER STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4440476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/22/2021,12:20,BROOKLYN,11223,40.602108,-73.96629,"(40.602108, -73.96629)",,,1901 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4439461,Pick-up Truck,,,, +07/21/2021,7:20,,,40.690468,-73.9879,"(40.690468, -73.9879)",SMITH STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439275,Sedan,Bike,,, +07/19/2021,2:58,STATEN ISLAND,10307,40.515842,-74.23898,"(40.515842, -74.23898)",,,59 CRAIG AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4439649,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,21:00,BRONX,10466,40.889126,-73.843994,"(40.889126, -73.843994)",,,1179 EAST 233 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440327,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,14:00,,,40.88027,-73.90613,"(40.88027, -73.90613)",KINGSBRIDGE AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4440204,Sedan,Sedan,,, +07/17/2021,17:02,,,,,,MACOMBS DAM BRIDGE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4439879,Taxi,Sedan,,, +07/23/2021,11:16,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440081,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,18:59,,,,,,,,BEACH CHANNEL DRIVE,1,0,0,0,0,0,1,0,Outside Car Distraction,,,,,4440269,Sedan,,,, +07/23/2021,9:35,BROOKLYN,11214,40.610706,-73.99771,"(40.610706, -73.99771)",,,1818 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439798,Sedan,Sedan,,, +07/22/2021,16:55,,,40.69907,-73.93548,"(40.69907, -73.93548)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439600,Bus,Tractor Truck Diesel,,, +07/23/2021,20:48,BRONX,10475,40.863106,-73.82572,"(40.863106, -73.82572)",,,4100 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440486,Taxi,Sedan,,, +07/15/2021,0:35,BROOKLYN,11221,40.692356,-73.94282,"(40.692356, -73.94282)",DE KALB AVENUE,THROOP AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440164,Sedan,Bike,,, +07/21/2021,10:06,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439140,Box Truck,Taxi,,, +07/22/2021,14:51,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439584,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,8:55,,,40.79124,-73.9794,"(40.79124, -73.9794)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4439111,Sedan,Sedan,Sedan,Sedan, +07/22/2021,0:30,QUEENS,11436,40.677998,-73.79663,"(40.677998, -73.79663)",119 AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439525,Sedan,,,, +07/21/2021,22:24,MANHATTAN,10014,40.73401,-74.00457,"(40.73401, -74.00457)",BLEECKER STREET,WEST 10 STREET,,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4439366,Sedan,,,, +07/21/2021,14:24,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439975,Sedan,Box Truck,,, +07/20/2021,11:30,,,40.640347,-74.00093,"(40.640347, -74.00093)",9 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4439632,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/22/2021,19:14,,,,,,EAST GUN HILL ROAD,KINGSLAND AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439671,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,19:00,STATEN ISLAND,10310,40.636665,-74.11976,"(40.636665, -74.11976)",CHAPPELL STREET,HENDERSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439410,Sedan,,,, +07/21/2021,14:50,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",LONG ISLAND EXPRESSWAY,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439192,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,7:25,BRONX,10456,40.830402,-73.903404,"(40.830402, -73.903404)",,,1208 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4439293,Bus,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,17:40,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439943,Sedan,,,, +07/16/2021,14:20,MANHATTAN,10030,40.815067,-73.94526,"(40.815067, -73.94526)",,,184 WEST 134 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439682,Sedan,,,, +07/22/2021,8:30,,,40.764233,-73.81683,"(40.764233, -73.81683)",38 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439385,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,19:22,BROOKLYN,11226,40.650978,-73.9612,"(40.650978, -73.9612)",SAINT PAULS COURT,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4439329,Moped,,,, +07/14/2021,3:30,QUEENS,11105,40.77754,-73.91597,"(40.77754, -73.91597)",,,22-64 CRESCENT STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4440134,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/23/2021,0:00,,,,,,,,108-15 GUY R BREWER,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439699,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,23:50,QUEENS,11378,40.724735,-73.897575,"(40.724735, -73.897575)",,,66-51 GRAND AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4440232,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,18:06,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440222,Sedan,Sedan,,, +07/21/2021,0:45,,,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4439104,Bus,,,, +07/21/2021,6:45,BROOKLYN,11232,40.647484,-74.00067,"(40.647484, -74.00067)",7 AVENUE,41 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439042,Sedan,,,, +07/21/2021,14:20,QUEENS,11428,40.71514,-73.74937,"(40.71514, -73.74937)",JAMAICA AVENUE,211 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,21:17,BROOKLYN,11234,40.60984,-73.9225,"(40.60984, -73.9225)",,,2461 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439850,Sedan,,,, +07/21/2021,2:35,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439566,Taxi,Sedan,,, +07/21/2021,8:15,BRONX,10457,40.844177,-73.90292,"(40.844177, -73.90292)",WEBSTER AVENUE,EAST 174 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4439299,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,14:50,BRONX,10475,40.86967,-73.82605,"(40.86967, -73.82605)",,,2075 BARTOW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439201,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,23:00,BROOKLYN,11223,40.60536,-73.96174,"(40.60536, -73.96174)",CONEY ISLAND AVENUE,AVENUE R,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440524,Sedan,,,, +07/22/2021,11:32,STATEN ISLAND,10306,40.572014,-74.146996,"(40.572014, -74.146996)",RICHMOND ROAD,ARTHUR KILL ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4439659,Dump,Sedan,,, +07/22/2021,18:50,BROOKLYN,11203,40.649277,-73.94361,"(40.649277, -73.94361)",BROOKLYN AVENUE,SNYDER AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4439496,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,17:25,,,40.663727,-73.95386,"(40.663727, -73.95386)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439507,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,0:00,QUEENS,11368,40.750015,-73.86128,"(40.750015, -73.86128)",,,104-09 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4439714,Sedan,,,, +07/23/2021,16:00,,,40.769955,-73.836426,"(40.769955, -73.836426)",WHITESTONE EXPRESSWAY,DOWNING STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439791,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,10:50,MANHATTAN,10036,40.757114,-73.98955,"(40.757114, -73.98955)",,,234 WEST 42 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439445,Bus,Sedan,,, +07/16/2021,14:00,,,40.85482,-73.9112,"(40.85482, -73.9112)",WEST 179 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440005,Sedan,Moped,Station Wagon/Sport Utility Vehicle,, +07/16/2021,5:30,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4439759,Sedan,Sedan,,, +07/23/2021,13:20,,,40.6532,-74.005585,"(40.6532, -74.005585)",38 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440189,Sedan,Sedan,,, +07/22/2021,9:15,,,40.594585,-73.90858,"(40.594585, -73.90858)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439540,Sedan,,,, +07/22/2021,20:23,BRONX,10462,40.851627,-73.86013,"(40.851627, -73.86013)",NEILL AVENUE,RADCLIFF AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439664,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,10:00,BROOKLYN,11204,40.63042,-73.98191,"(40.63042, -73.98191)",,,1702 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440491,Sedan,,,, +07/23/2021,19:00,BROOKLYN,11212,40.66418,-73.92009,"(40.66418, -73.92009)",,,124 TAPSCOTT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440301,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,15:50,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440044,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,13:48,STATEN ISLAND,10309,40.527805,-74.232376,"(40.527805, -74.232376)",,,2900 VETERANS ROAD WEST,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,23:00,,,40.794353,-73.97836,"(40.794353, -73.97836)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439830,Sedan,Sedan,,, +07/21/2021,20:15,QUEENS,11434,40.690342,-73.78243,"(40.690342, -73.78243)",LINDEN BOULEVARD,167 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4439817,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,9:23,,,40.70479,-73.961876,"(40.70479, -73.961876)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439247,E-Scooter,Sedan,,, +07/22/2021,12:16,BROOKLYN,11219,40.636333,-73.98823,"(40.636333, -73.98823)",,,1379 45 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440116,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,9:20,BROOKLYN,11214,40.583656,-73.98656,"(40.583656, -73.98656)",BAY 52 STREET,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unsafe Speed,,,,4439457,Carry All,Sedan,,, +07/22/2021,14:15,QUEENS,11385,40.70465,-73.90191,"(40.70465, -73.90191)",,,66-95 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440251,Pick-up Truck,,,, +07/22/2021,23:00,BROOKLYN,11206,40.709213,-73.94857,"(40.709213, -73.94857)",,,410 LORIMER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4439563,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,16:40,BRONX,10461,40.84661,-73.832794,"(40.84661, -73.832794)",,,2930 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4439349,Sedan,,,, +07/22/2021,22:17,QUEENS,11361,40.761436,-73.76995,"(40.761436, -73.76995)",43 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439576,Sedan,,,, +07/23/2021,21:30,MANHATTAN,10016,40.747723,-73.976685,"(40.747723, -73.976685)",,,560 3 AVENUE,1,0,0,0,1,0,0,0,Pavement Defective,,,,,4439924,Bike,,,, +07/20/2021,2:30,BROOKLYN,11232,40.652042,-74.00519,"(40.652042, -74.00519)",,,437 39 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440173,Pick-up Truck,Sedan,,, +07/12/2021,10:54,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439728,gas scoote,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,9:00,MANHATTAN,10280,40.707462,-74.01713,"(40.707462, -74.01713)",3 PLACE,BATTERY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439596,Sedan,Sedan,,, +07/22/2021,11:15,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",BROOKVILLE BOULEVARD,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4439713,Sedan,Motorcycle,,, +07/19/2021,19:10,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440302,Sedan,,,, +07/23/2021,8:05,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,13:05,,,40.778137,-73.95449,"(40.778137, -73.95449)",EAST 85 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439132,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +07/21/2021,19:51,BROOKLYN,11215,40.67012,-73.99695,"(40.67012, -73.99695)",,,25 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439382,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,7:04,BROOKLYN,11222,40.72129,-73.94888,"(40.72129, -73.94888)",LEONARD STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440304,Sedan,,,, +07/21/2021,21:00,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4439530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/22/2021,2:27,,,40.793556,-73.967026,"(40.793556, -73.967026)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439343,Sedan,Sedan,,, +07/21/2021,12:15,,,40.80417,-73.966705,"(40.80417, -73.966705)",BROADWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439117,Sedan,Pick-up Truck,,, +07/21/2021,6:13,QUEENS,11375,40.724236,-73.837685,"(40.724236, -73.837685)",,,69-70 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439187,Sedan,,,, +07/23/2021,11:34,BROOKLYN,11235,40.58038,-73.967606,"(40.58038, -73.967606)",NEPTUNE AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440279,Sedan,Sedan,,, +07/15/2021,23:00,QUEENS,11385,40.70458,-73.896,"(40.70458, -73.896)",FRESH POND ROAD,68 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4439686,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/22/2021,12:55,STATEN ISLAND,10310,40.629776,-74.110664,"(40.629776, -74.110664)",,,644 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440341,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,18:51,BRONX,10469,40.87395,-73.85278,"(40.87395, -73.85278)",BOSTON ROAD,EAST 211 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439416,E-Bike,,,, +07/22/2021,8:45,BROOKLYN,11221,40.691807,-73.918625,"(40.691807, -73.918625)",PALMETTO STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,11:05,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,19:30,,,40.716034,-73.80416,"(40.716034, -73.80416)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439703,Sedan,Sedan,,, +07/22/2021,7:44,QUEENS,11385,40.700123,-73.90622,"(40.700123, -73.90622)",CYPRESS AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,21:00,QUEENS,11377,40.739548,-73.89205,"(40.739548, -73.89205)",,,70-65 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440382,Sedan,Sedan,,, +07/22/2021,15:45,BROOKLYN,11234,40.605072,-73.92988,"(40.605072, -73.92988)",AVENUE U,EAST 33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4439541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/23/2021,17:30,,,40.7429,-73.89659,"(40.7429, -73.89659)",68 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440373,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,15:06,STATEN ISLAND,10312,40.54534,-74.160576,"(40.54534, -74.160576)",,,4343 AMBOY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439654,Sedan,,,, +07/22/2021,11:00,,,40.72225,-74.00592,"(40.72225, -74.00592)",CANAL STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439896,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,16:43,MANHATTAN,10029,40.792984,-73.94007,"(40.792984, -73.94007)",,,309 EAST 110 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496515,Sedan,,,, +07/17/2021,2:57,QUEENS,11103,40.760185,-73.9147,"(40.760185, -73.9147)",43 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440139,Sedan,Sedan,,, +07/23/2021,13:00,BROOKLYN,11211,40.707623,-73.962135,"(40.707623, -73.962135)",DIVISION AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4439845,Sedan,,,, +07/23/2021,4:10,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439585,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,9:31,,,40.75199,-73.931274,"(40.75199, -73.931274)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4439452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,9:00,QUEENS,11365,,,,,,6100 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/21/2021,19:27,BRONX,10451,40.819786,-73.91216,"(40.819786, -73.91216)",EAST 156 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439279,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,13:00,QUEENS,11358,40.751637,-73.80518,"(40.751637, -73.80518)",162 STREET,LABURNUM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439500,Sedan,,,, +07/22/2021,17:35,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439503,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,0:55,QUEENS,11101,40.753304,-73.912575,"(40.753304, -73.912575)",50 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439015,Sedan,,,, +07/22/2021,21:45,BROOKLYN,11211,40.710957,-73.951126,"(40.710957, -73.951126)",GRAND STREET,UNION AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4439570,Sedan,Bike,,, +07/21/2021,22:40,,,40.766876,-73.97908,"(40.766876, -73.97908)",,,CENTRAL PARK SOUTH,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439308,Sedan,Bike,,, +07/23/2021,9:12,QUEENS,11378,40.718933,-73.91222,"(40.718933, -73.91222)",,,58-74 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,4:00,QUEENS,11372,40.74744,-73.885796,"(40.74744, -73.885796)",ROOSEVELT AVENUE,80 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4439326,Sedan,,,, +07/22/2021,17:28,,,40.58584,-73.93788,"(40.58584, -73.93788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439622,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,12:40,QUEENS,11364,40.74879,-73.756546,"(40.74879, -73.756546)",,,61-43 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4439787,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,17:17,MANHATTAN,10002,40.720966,-73.98218,"(40.720966, -73.98218)",RIDGE STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439536,Sedan,,,, +07/23/2021,5:30,QUEENS,11691,40.592793,-73.77788,"(40.592793, -73.77788)",ROCKAWAY FREEWAY,BEACH 47 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4439639,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,16:40,QUEENS,11377,40.743256,-73.89814,"(40.743256, -73.89814)",66 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439242,Ambulance,,,, +07/22/2021,9:00,,,40.575714,-73.96301,"(40.575714, -73.96301)",BRIGHTWATER COURT,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440260,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,17:00,BRONX,10453,40.855858,-73.91572,"(40.855858, -73.91572)",OSBORNE PLACE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439422,Sedan,,,, +07/22/2021,10:55,QUEENS,11435,40.71187,-73.810455,"(40.71187, -73.810455)",84 DRIVE,148 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4439718,Sedan,Sedan,,, +07/17/2021,17:50,BROOKLYN,11233,40.681915,-73.909676,"(40.681915, -73.909676)",,,502 MARION STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440488,Sedan,Sedan,,, +07/23/2021,3:18,,,40.66478,-73.88642,"(40.66478, -73.88642)",NEW LOTS AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4439755,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/22/2021,22:45,BROOKLYN,11220,40.638878,-74.00605,"(40.638878, -74.00605)",8 AVENUE,54 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440197,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/22/2021,10:23,,,40.751835,-73.82427,"(40.751835, -73.82427)",ELDER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439996,Van,,,, +07/23/2021,9:19,BROOKLYN,11210,40.616886,-73.95272,"(40.616886, -73.95272)",,,1447 EAST 22 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4439681,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,19:19,BROOKLYN,11233,40.681175,-73.908714,"(40.681175, -73.908714)",,,24 STONE AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4440297,Sedan,Bike,,, +07/23/2021,22:00,QUEENS,11413,40.65853,-73.764206,"(40.65853, -73.764206)",149 AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439949,Station Wagon/Sport Utility Vehicle,,,, +06/27/2021,6:02,QUEENS,11434,40.67517,-73.77861,"(40.67517, -73.77861)",131 AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4439813,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/23/2021,16:11,BROOKLYN,11234,40.609947,-73.92227,"(40.609947, -73.92227)",,,5100 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,,,,,4440073,,,,, +07/21/2021,8:25,MANHATTAN,10018,40.75619,-73.99057,"(40.75619, -73.99057)",,,625 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440123,Station Wagon/Sport Utility Vehicle,Bus,,, +07/22/2021,0:20,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439263,Sedan,Sedan,,, +07/21/2021,15:30,BROOKLYN,11213,40.677933,-73.94015,"(40.677933, -73.94015)",,,1550 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440245,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,18:00,QUEENS,11419,40.68349,-73.82643,"(40.68349, -73.82643)",,,115-11 107 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4439558,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,19:40,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4440462,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,18:55,QUEENS,11367,40.726685,-73.82183,"(40.726685, -73.82183)",MAIN STREET,72 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439696,Sedan,Bike,,, +07/16/2021,13:00,BROOKLYN,11201,40.699776,-73.98246,"(40.699776, -73.98246)",,,191 SANDS STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439676,Sedan,Bike,,, +07/16/2021,21:50,MANHATTAN,10029,40.797775,-73.9423,"(40.797775, -73.9423)",,,1830 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4439930,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/22/2021,10:15,BROOKLYN,11222,40.73046,-73.95149,"(40.73046, -73.95149)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440310,Lift Boom,Lift Boom,,, +07/23/2021,15:05,,,40.75484,-73.98412,"(40.75484, -73.98412)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440131,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,23:22,QUEENS,11101,40.756485,-73.94005,"(40.756485, -73.94005)",21 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440144,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,14:25,BRONX,10467,40.880466,-73.88384,"(40.880466, -73.88384)",EAST MOSHOLU PARKWAY NORTH,JEROME AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439745,Sedan,Sedan,,, +07/19/2021,18:10,QUEENS,11432,40.712616,-73.78399,"(40.712616, -73.78399)",,,179-11 HILLSIDE AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439613,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,17:25,,,40.698452,-73.92176,"(40.698452, -73.92176)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4439860,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/22/2021,12:50,QUEENS,11377,40.763584,-73.904205,"(40.763584, -73.904205)",50 STREET,BOROUGH PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439708,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,14:22,,,40.613075,-74.12257,"(40.613075, -74.12257)",VICTORY BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4440349,Sedan,Sedan,,, +07/17/2021,3:05,BROOKLYN,11211,40.714878,-73.95447,"(40.714878, -73.95447)",NORTH 6 STREET,HAVEMEYER STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4439887,Sedan,Motorcycle,,, +07/23/2021,20:30,QUEENS,11434,40.684277,-73.78302,"(40.684277, -73.78302)",FOCH BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4439809,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,8:00,BROOKLYN,11212,40.6584,-73.917114,"(40.6584, -73.917114)",,,394 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4439963,Sedan,,,, +07/22/2021,14:30,MANHATTAN,10033,40.853687,-73.93397,"(40.853687, -73.93397)",,,4365 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Traffic Control Disregarded,,,,4439740,Beverage Truck,Sedan,,, +07/18/2021,2:35,,,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4440509,Sedan,Sedan,,, +06/26/2021,15:45,MANHATTAN,10036,40.75542,-73.986534,"(40.75542, -73.986534)",,,1459 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440126,Sedan,Sedan,,, +07/22/2021,17:00,BRONX,10469,40.873283,-73.85555,"(40.873283, -73.85555)",,,3305 LACONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440284,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,18:51,BRONX,10467,40.87296,-73.87495,"(40.87296, -73.87495)",EAST 205 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4439317,Sedan,Motorbike,,, +07/21/2021,13:05,,,40.764896,-73.76155,"(40.764896, -73.76155)",221 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439164,Ambulance,Pick-up Truck,,, +07/21/2021,9:00,BROOKLYN,11207,40.65452,-73.882225,"(40.65452, -73.882225)",FLATLANDS AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439082,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,10:25,,,40.725243,-74.01006,"(40.725243, -74.01006)",CANAL STREET,WASHINGTON STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4439372,Sedan,Bike,,, +07/22/2021,10:55,BROOKLYN,11223,40.597145,-73.9611,"(40.597145, -73.9611)",,,2451 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439434,Sedan,Sedan,,, +07/21/2021,7:00,BRONX,10470,40.906384,-73.85167,"(40.906384, -73.85167)",EAST 242 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440335,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,14:50,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439218,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,13:10,BROOKLYN,11210,40.63169,-73.94074,"(40.63169, -73.94074)",,,1025 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439208,Sedan,Sedan,,, +07/21/2021,23:25,BROOKLYN,11208,40.680504,-73.8829,"(40.680504, -73.8829)",ESSEX STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439397,Sedan,Sedan,,, +07/22/2021,16:00,QUEENS,11420,40.667118,-73.811165,"(40.667118, -73.811165)",,,129-03 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4439550,,,,, +07/23/2021,23:01,,,,,,L.I.E / G.C.P (CDR),,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4440063,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,15:00,,,40.782703,-73.97123,"(40.782703, -73.97123)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4439723,Sedan,Box Truck,,, +07/22/2021,7:58,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4440396,Sedan,Sedan,Sedan,, +07/21/2021,9:00,BROOKLYN,11213,40.667824,-73.93122,"(40.667824, -73.93122)",UNION STREET,UTICA AVENUE,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439782,E-Bike,,,, +07/22/2021,11:38,,,40.516335,-74.23283,"(40.516335, -74.23283)",PAGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439650,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,22:50,BROOKLYN,11236,40.64359,-73.90471,"(40.64359, -73.90471)",EAST 94 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439905,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,7:45,BROOKLYN,11213,0,0,"(0.0, 0.0)",,,736 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4439258,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,7:45,QUEENS,11413,40.675755,-73.744896,"(40.675755, -73.744896)",226 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439290,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,0:20,,,40.669243,-73.80129,"(40.669243, -73.80129)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439521,Sedan,Sedan,,, +07/22/2021,7:00,,,40.605946,-74.19036,"(40.605946, -74.19036)",,,400 CHELSEA ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439476,Box Truck,Pick-up Truck,,, +07/23/2021,6:50,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439603,Sedan,,,, +07/10/2021,11:16,QUEENS,11423,40.711884,-73.781204,"(40.711884, -73.781204)",181 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439767,Taxi,,,, +06/20/2021,10:09,BROOKLYN,11213,40.674904,-73.94447,"(40.674904, -73.94447)",SAINT MARKS AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4440254,Sedan,,,, +07/22/2021,10:40,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439618,Sedan,,,, +07/21/2021,15:54,BRONX,10456,40.829998,-73.90632,"(40.829998, -73.90632)",,,3470 3 AVENUE,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4439302,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,13:50,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",FULTON STREET,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439750,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,13:36,,,40.637196,-74.00779,"(40.637196, -74.00779)",57 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439635,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,21:05,BROOKLYN,11211,40.709164,-73.95776,"(40.709164, -73.95776)",,,294 SOUTH 5 STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4439249,Sedan,E-Scooter,,, +07/22/2021,9:30,BRONX,10465,40.823414,-73.82351,"(40.823414, -73.82351)",,,2777 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439589,Sedan,,,, +07/21/2021,14:31,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439983,Sedan,Sedan,,, +07/04/2021,21:05,BROOKLYN,11205,40.694256,-73.97799,"(40.694256, -73.97799)",SAINT EDWARDS STREET,AUBURN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439824,Sedan,Sedan,,, +07/21/2021,22:00,QUEENS,11422,40.677845,-73.729744,"(40.677845, -73.729744)",BROOKVILLE BOULEVARD,130 ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4439458,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,23:15,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440215,Sedan,Tractor Truck Diesel,,, +07/19/2021,22:29,QUEENS,11434,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439841,Bus,Sedan,,, +07/09/2021,15:10,BROOKLYN,11203,40.6526,-73.9411,"(40.6526, -73.9411)",,,189 EAST 39 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439958,Sedan,Bike,,, +07/20/2021,2:21,,,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4440031,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/22/2021,22:45,QUEENS,11433,40.701557,-73.790276,"(40.701557, -73.790276)",MERRICK BOULEVARD,104 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439772,Sedan,Sedan,,, +07/22/2021,14:00,BROOKLYN,11235,40.592937,-73.94046,"(40.592937, -73.94046)",,,3720 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4439468,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,8:30,,,40.83383,-73.921234,"(40.83383, -73.921234)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439883,Sedan,,,, +07/23/2021,14:50,,,40.75124,-73.77502,"(40.75124, -73.77502)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439777,Sedan,Chassis Cab,,, +07/20/2021,15:31,BRONX,10459,40.826664,-73.88803,"(40.826664, -73.88803)",,,1246 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4439735,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,6:30,STATEN ISLAND,10307,40.50576,-74.25147,"(40.50576, -74.25147)",SHORE ROAD,BRYAN STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439645,Pick-up Truck,Sedan,,, +07/23/2021,17:00,,,40.844448,-73.82846,"(40.844448, -73.82846)",MIDDLETOWN ROAD,JARVIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440097,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,7:10,QUEENS,11412,40.70119,-73.76171,"(40.70119, -73.76171)",194 STREET,112 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4439493,Sedan,,,, +07/23/2021,12:40,,,40.66858,-73.84223,"(40.66858, -73.84223)",SOUTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440451,Bus,Sedan,,, +07/21/2021,16:51,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439271,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,11:01,QUEENS,11102,40.776882,-73.92332,"(40.776882, -73.92332)",19 STREET,24 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472986,Sedan,,,, +10/30/2021,6:32,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4473300,Sedan,,,, +10/15/2021,21:00,MANHATTAN,10003,40.73329,-73.98719,"(40.73329, -73.98719)",3 AVENUE,EAST 14 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473493,Bike,,,, +10/31/2021,13:25,MANHATTAN,10010,40.734085,-73.97806,"(40.734085, -73.97806)",,,431 EAST 20 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4472715,Sedan,Motorscooter,,, +10/31/2021,1:40,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473012,Sedan,Taxi,Sedan,, +10/25/2021,16:00,STATEN ISLAND,10305,40.614086,-74.06614,"(40.614086, -74.06614)",HYLAN BOULEVARD,BAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473328,Sedan,Sedan,,, +10/31/2021,19:12,BROOKLYN,11210,40.619083,-73.950264,"(40.619083, -73.950264)",BEDFORD AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4472874,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/28/2021,15:30,BROOKLYN,11230,40.629333,-73.96801,"(40.629333, -73.96801)",AVENUE H,EAST 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473366,3-Door,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,17:33,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4473396,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/31/2021,9:25,,,,,,UNION TURNPIKE,141 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472563,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,18:40,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472912,Sedan,,,, +10/31/2021,1:01,BRONX,10467,40.880722,-73.87665,"(40.880722, -73.87665)",,,3521 TRYON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473277,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,8:55,BROOKLYN,11210,40.619083,-73.950264,"(40.619083, -73.950264)",AVENUE M,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4472861,Sedan,Sedan,,, +10/31/2021,8:45,,,40.78625,-73.93935,"(40.78625, -73.93935)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4472539,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/31/2021,17:47,BROOKLYN,11220,40.63721,-74.02221,"(40.63721, -74.02221)",4 AVENUE,SHORE ROAD DRIVE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4472629,Sedan,Sedan,,, +10/31/2021,7:40,BRONX,10467,40.87272,-73.87659,"(40.87272, -73.87659)",,,3158 DECATUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4472953,Sedan,,,, +10/31/2021,11:30,,,40.688213,-73.919815,"(40.688213, -73.919815)",MADISON STREET,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4472938,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,2:59,,,40.650276,-74.01176,"(40.650276, -74.01176)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472499,Taxi,Sedan,,, +10/26/2021,8:40,,,40.866447,-73.9305,"(40.866447, -73.9305)",RIVERSIDE DRIVE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473301,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,15:20,,,40.600647,-73.74233,"(40.600647, -73.74233)",ELVIRA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473372,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,13:42,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472993,Sedan,,,, +10/26/2021,8:30,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4473419,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,13:27,BROOKLYN,11239,,,,,,516 schroeders ave,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472772,Sedan,,,, +10/31/2021,18:40,MANHATTAN,10018,40.759525,-73.99925,"(40.759525, -73.99925)",WEST 40 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473091,Sedan,Sedan,,, +10/31/2021,22:10,BRONX,10474,40.81532,-73.88665,"(40.81532, -73.88665)",,,720 HUNTS POINT AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4473119,Sedan,Sedan,,, +10/31/2021,1:05,QUEENS,11372,40.75596,-73.8815,"(40.75596, -73.8815)",,,86-02 NORTHERN BOULEVARD,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,Unspecified,,,4472391,Sedan,Sedan,Sedan,, +10/21/2021,8:45,,,,,,CROSS BRONX EXPRESSWAY,HAVEMEYER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4473350,Sedan,,,, +10/31/2021,1:45,BROOKLYN,11223,40.608932,-73.971924,"(40.608932, -73.971924)",AVENUE P,EAST 2 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4472820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,18:57,BRONX,10469,40.86386,-73.853874,"(40.86386, -73.853874)",,,2562 HERING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4472841,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,17:29,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473475,Pick-up Truck,Sedan,,, +06/20/2021,11:33,,,40.82451,-73.95186,"(40.82451, -73.95186)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473291,Taxi,MOPED,,, +10/28/2021,8:43,,,40.748306,-73.87104,"(40.748306, -73.87104)",95 STREET,40 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473525,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,7:52,,,40.788193,-73.79059,"(40.788193, -73.79059)",CROSS ISLAND PARKWAY,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4472686,Sedan,,,, +10/31/2021,18:30,BROOKLYN,11214,40.604523,-74.00071,"(40.604523, -74.00071)",,,47 BAY 22 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4472963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,15:46,BROOKLYN,11220,40.637196,-74.00779,"(40.637196, -74.00779)",57 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4472734,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,14:50,,,40.600895,-73.98031,"(40.600895, -73.98031)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4473324,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,15:00,MANHATTAN,10001,40.748165,-73.99941,"(40.748165, -73.99941)",,,350 WEST 26 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,0:55,,,40.75999,-73.751945,"(40.75999, -73.751945)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4472834,Sedan,,,, +10/31/2021,12:20,MANHATTAN,10036,40.756897,-73.99003,"(40.756897, -73.99003)",,,11 TIMES SQUARE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4472610,Station Wagon/Sport Utility Vehicle,Bus,,, +10/31/2021,5:16,QUEENS,11109,40.746162,-73.95666,"(40.746162, -73.95666)",CENTER BOULEVARD,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472467,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,3:35,BRONX,10460,40.838238,-73.876686,"(40.838238, -73.876686)",EAST 177 STREET,BRONX PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4472901,Sedan,Sedan,,, +07/24/2021,1:35,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439866,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,23:35,MANHATTAN,10010,40.741104,-73.98857,"(40.741104, -73.98857)",,,10 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472973,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,1:44,,,40.685867,-73.9883,"(40.685867, -73.9883)",HOYT STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,4472668,Motorcycle,Sedan,Sedan,Sedan,Sedan +10/31/2021,8:15,,,40.821144,-73.8889,"(40.821144, -73.8889)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4472661,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,19:06,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4472928,Taxi,Sedan,,, +10/29/2021,2:05,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473308,Motorcycle,,,, +10/31/2021,23:35,QUEENS,11426,40.731445,-73.720535,"(40.731445, -73.720535)",86 AVENUE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472729,Sedan,Pick-up Truck,,, +10/31/2021,17:08,BROOKLYN,11219,40.63937,-73.9948,"(40.63937, -73.9948)",46 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473210,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,13:30,QUEENS,11373,40.738323,-73.8856,"(40.738323, -73.8856)",QUEENS BOULEVARD,HILLYER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,16:00,QUEENS,11369,40.766468,-73.87014,"(40.766468, -73.87014)",,,24-07 100 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473413,Sedan,,,, +10/31/2021,2:10,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4473454,Sedan,Sedan,,, +10/31/2021,13:38,,,,,,,,96-26 MERRICK BOULEVARD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4472811,Sedan,Sedan,,, +10/26/2021,10:55,BRONX,10474,0,0,"(0.0, 0.0)",,,921 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473517,Pick-up Truck,Box Truck,,, +10/31/2021,19:57,,,40.67812,-74.00316,"(40.67812, -74.00316)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472718,Pick-up Truck,,,, +10/27/2021,23:50,BROOKLYN,11219,40.636494,-73.98701,"(40.636494, -73.98701)",14 AVENUE,44 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473385,E-Bike,,,, +10/31/2021,19:22,,,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473014,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,1:00,QUEENS,11374,40.730167,-73.86243,"(40.730167, -73.86243)",,,96-05 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473039,Sedan,,,, +10/31/2021,3:14,BROOKLYN,11208,40.671326,-73.87093,"(40.671326, -73.87093)",EUCLID AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4472765,Taxi,Sedan,,, +10/31/2021,15:30,,,40.829376,-73.88562,"(40.829376, -73.88562)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4473069,Sedan,Box Truck,,, +10/31/2021,1:52,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4472779,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,9:30,QUEENS,11415,40.712,-73.82546,"(40.712, -73.82546)",83 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485981,Station Wagon/Sport Utility Vehicle,Taxi,,, +12/10/2021,0:20,QUEENS,11101,40.753994,-73.94244,"(40.753994, -73.94244)",41 AVENUE,21 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486352,Taxi,,,, +12/12/2021,0:00,BROOKLYN,11208,40.671894,-73.87806,"(40.671894, -73.87806)",,,1096 SUTTER AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486098,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,20:06,,,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,,,0,0,0,0,0,0,0,0,,,,,,4486338,,,,, +12/12/2021,14:26,STATEN ISLAND,10310,40.634705,-74.10815,"(40.634705, -74.10815)",,,770 CASTLETON AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485675,Sedan,Sedan,,, +12/12/2021,13:25,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485768,Sedan,Sedan,,, +12/12/2021,21:10,QUEENS,11434,40.66922,-73.76295,"(40.66922, -73.76295)",143 AVENUE,181 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4485873,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,14:00,QUEENS,11385,40.69098,-73.889084,"(40.69098, -73.889084)",,,81-14 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495812,Sedan,Pick-up Truck,,, +01/21/2022,1:14,QUEENS,11368,40.74264,-73.86189,"(40.74264, -73.86189)",,,50-26 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496235,E-Bike,,,, +01/14/2022,19:29,QUEENS,11412,40.697765,-73.77039,"(40.697765, -73.77039)",,,111-20 DUNKIRK STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496384,Sedan,,,, +01/21/2022,5:36,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",SNYDER AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496564,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/19/2022,7:14,,,,,,SOUND VIEW AVENUE,ROSEDALE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495962,Station Wagon/Sport Utility Vehicle,Convertible,,, +01/19/2022,15:59,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495869,Taxi,,,, +01/20/2022,8:05,QUEENS,11374,40.711597,-73.85819,"(40.711597, -73.85819)",TROTTING COURSE LANE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495954,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,17:34,QUEENS,11419,40.690662,-73.81033,"(40.690662, -73.81033)",VANWYCK EXPRESSWAY,105 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496090,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,6:20,,,40.851887,-73.83586,"(40.851887, -73.83586)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,14:25,MANHATTAN,10065,40.75964,-73.95817,"(40.75964, -73.95817)",EAST 61 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496104,Sedan,Sedan,,, +01/19/2022,5:55,BRONX,10474,40.814503,-73.88649,"(40.814503, -73.88649)",SPOFFORD AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495648,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,16:46,QUEENS,11359,40.794376,-73.82448,"(40.794376, -73.82448)",WHITESTONE EXPRESSWAY,5 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4496130,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,6:00,,,40.686203,-73.950745,"(40.686203, -73.950745)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4496622,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/20/2022,22:16,QUEENS,11367,40.7158,-73.824486,"(40.7158, -73.824486)",UNION TURNPIKE,134 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496224,Sedan,Sedan,,, +01/20/2022,14:17,,,40.74985,-73.987946,"(40.74985, -73.987946)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4496054,Sedan,Flat Bed,Sedan,Station Wagon/Sport Utility Vehicle, +01/21/2022,12:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4496395,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,14:00,BRONX,10456,40.828194,-73.90386,"(40.828194, -73.90386)",EAST 167 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496175,Sedan,,,, +01/20/2022,22:29,BRONX,10470,40.89608,-73.86692,"(40.89608, -73.86692)",EAST 233 STREET,KATONAH AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4496469,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,2:13,BROOKLYN,11238,40.67834,-73.95521,"(40.67834, -73.95521)",PACIFIC STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496665,Taxi,Sedan,,, +01/19/2022,7:27,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",RALPH AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496262,Bus,,,, +01/19/2022,8:41,BROOKLYN,11212,40.672962,-73.90459,"(40.672962, -73.90459)",,,150 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496498,Box Truck,Sedan,,, +01/19/2022,15:30,BROOKLYN,11234,40.6073,-73.919716,"(40.6073, -73.919716)",FLATBUSH AVENUE,HENDRICKSON PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496696,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,7:00,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4496442,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/19/2022,10:03,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496671,Sedan,Box Truck,,, +01/18/2022,15:46,BRONX,10459,40.817146,-73.89765,"(40.817146, -73.89765)",,,980 LONGWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496822,Sedan,,,, +01/17/2022,14:00,BROOKLYN,11207,40.65923,-73.89329,"(40.65923, -73.89329)",HEGEMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496162,Sedan,,,, +01/12/2022,6:00,,,40.71512,-73.83224,"(40.71512, -73.83224)",78 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496276,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,8:10,BRONX,10470,40.89608,-73.86692,"(40.89608, -73.86692)",EAST 233 STREET,KATONAH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496289,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,20:40,,,40.897778,-73.88465,"(40.897778, -73.88465)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4496404,Sedan,,,, +01/16/2022,19:45,,,,,,RANDALL AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496294,Sedan,,,, +01/20/2022,7:00,MANHATTAN,10016,40.74036,-73.97318,"(40.74036, -73.97318)",FDR DRIVE,EAST 30 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496007,Sedan,,,, +01/19/2022,12:55,QUEENS,11418,40.70139,-73.83153,"(40.70139, -73.83153)",HILLSIDE AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495789,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,9:15,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495796,Tractor Truck Diesel,Sedan,,, +01/19/2022,14:55,,,40.733433,-73.9955,"(40.733433, -73.9955)",WEST 10 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495984,Bike,,,, +01/20/2022,9:18,QUEENS,11354,40.761944,-73.82487,"(40.761944, -73.82487)",,,38-20 BOWNE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496127,PK,Box Truck,,, +01/19/2022,14:40,BROOKLYN,11206,40.70321,-73.94626,"(40.70321, -73.94626)",BROADWAY,MOORE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4495821,Sedan,Sedan,,, +01/20/2022,11:01,MANHATTAN,10030,40.81984,-73.94411,"(40.81984, -73.94411)",,,2634 8 AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4496001,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,14:30,,,40.562767,-74.18087,"(40.562767, -74.18087)",CHATHAM STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496143,Box Truck,,,, +01/19/2022,15:50,,,40.887547,-73.81512,"(40.887547, -73.81512)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495856,Sedan,Sedan,,, +01/17/2022,17:48,,,40.6889,-73.92726,"(40.6889, -73.92726)",GATES AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496525,Sedan,,,, +01/19/2022,0:40,,,40.70253,-73.8143,"(40.70253, -73.8143)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4496026,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,17:10,BROOKLYN,11220,40.646244,-74.01827,"(40.646244, -74.01827)",,,238 54 STREET,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4496737,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/11/2022,11:15,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,8:41,,,40.788986,-73.97407,"(40.788986, -73.97407)",WEST 88 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495734,PK,Sedan,,, +01/21/2022,0:15,BROOKLYN,11215,40.660576,-73.99065,"(40.660576, -73.99065)",6 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496310,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,11:20,BROOKLYN,11209,40.6287,-74.022964,"(40.6287, -74.022964)",76 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495985,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,11:30,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",BROADWAY,37 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496239,Sedan,Sedan,,, +01/21/2022,20:31,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",12 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Oversized Vehicle,Unspecified,,,4496555,Taxi,Van,Taxi,, +01/21/2022,23:31,,,40.577747,-74.00814,"(40.577747, -74.00814)",LAUREL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4496537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/18/2022,10:00,,,40.771477,-73.91824,"(40.771477, -73.91824)",HOYT AVENUE NORTH,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496504,Sedan,,,, +01/20/2022,9:15,BROOKLYN,11218,40.647694,-73.98037,"(40.647694, -73.98037)",MC DONALD AVENUE,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496020,Sedan,,,, +01/20/2022,5:00,BRONX,10467,40.878365,-73.870445,"(40.878365, -73.870445)",,,598 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4496287,Sedan,Sedan,,, +01/21/2022,19:00,BROOKLYN,11249,40.71526,-73.96318,"(40.71526, -73.96318)",,,119 GRAND STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496750,Station Wagon/Sport Utility Vehicle,Bike,,, +01/20/2022,2:54,BRONX,10469,40.875755,-73.835724,"(40.875755, -73.835724)",NEW ENGLAND THRUWAY,BAYCHESTER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4496038,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,15:53,QUEENS,11413,40.674763,-73.761154,"(40.674763, -73.761154)",THURSTON STREET,137 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4496266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,7:30,BRONX,10472,40.82779,-73.86162,"(40.82779, -73.86162)",,,1037 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495764,Carry All,,,, +01/19/2022,16:27,,,40.685776,-73.76095,"(40.685776, -73.76095)",120 ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4495820,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/13/2022,11:50,QUEENS,11373,40.74107,-73.88,"(40.74107, -73.88)",CORNISH AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496150,,,,, +01/21/2022,15:00,,,40.83163,-73.92252,"(40.83163, -73.92252)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496529,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,11:20,BROOKLYN,11211,40.71821,-73.93699,"(40.71821, -73.93699)",,,410 MORGAN AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496804,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +01/19/2022,14:45,,,40.582382,-73.9837,"(40.582382, -73.9837)",WEST 15 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4496531,Bus,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,20:14,QUEENS,11368,40.74869,-73.85772,"(40.74869, -73.85772)",108 STREET,43 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inexperience,Following Too Closely,,,4496155,Sedan,Sedan,Sedan,, +01/19/2022,21:30,STATEN ISLAND,10301,40.63574,-74.08374,"(40.63574, -74.08374)",VICTORY BOULEVARD,JERSEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495939,Sedan,,,, +01/20/2022,17:30,,,40.55426,-74.21292,"(40.55426, -74.21292)",VETERANS ROAD EAST,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4496145,Ambulance,Sedan,,, +01/20/2022,16:01,,,40.76451,-73.77448,"(40.76451, -73.77448)",39 AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4496053,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/19/2022,16:00,BROOKLYN,11249,40.70525,-73.96662,"(40.70525, -73.96662)",,,541 WYTHE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496478,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,7:30,MANHATTAN,10029,40.78824,-73.94275,"(40.78824, -73.94275)",,,309 EAST 103 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496122,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,13:25,QUEENS,11368,40.756683,-73.85793,"(40.756683, -73.85793)",111 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495775,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,13:36,QUEENS,11361,40.755623,-73.778275,"(40.755623, -73.778275)",204 STREET,46 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4496277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,21:30,MANHATTAN,10010,40.740467,-73.99039,"(40.740467, -73.99039)",,,164 5 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4496641,Garbage or Refuse,Taxi,Convertible,, +01/19/2022,15:48,BRONX,10451,40.816757,-73.92622,"(40.816757, -73.92622)",EAST 146 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495867,Sedan,Fire Depar,,, +01/09/2022,18:30,QUEENS,11370,40.76014,-73.89663,"(40.76014, -73.89663)",30 AVENUE,71 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4496255,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,0:24,BROOKLYN,11234,40.619072,-73.92495,"(40.619072, -73.92495)",AVENUE N,EAST 52 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4495723,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/21/2022,21:05,BROOKLYN,11220,40.641533,-74.01045,"(40.641533, -74.01045)",6 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496311,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,8:45,,,40.844883,-73.907295,"(40.844883, -73.907295)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4495835,Sedan,Sedan,Sedan,, +01/10/2022,13:25,BROOKLYN,11221,40.691093,-73.93068,"(40.691093, -73.93068)",,,81 REID AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,15:35,,,40.78459,-73.94198,"(40.78459, -73.94198)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496177,Sedan,Sedan,,, +01/18/2022,8:45,BROOKLYN,11203,40.651123,-73.93424,"(40.651123, -73.93424)",,,428 EAST 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496576,Sedan,,,, +01/19/2022,19:45,,,40.81914,-73.93719,"(40.81914, -73.93719)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495977,Taxi,,,, +01/20/2022,10:02,BROOKLYN,11218,40.642796,-73.97945,"(40.642796, -73.97945)",MC DONALD AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496806,Pick-up Truck,,,, +01/19/2022,7:59,BROOKLYN,11218,40.647682,-73.96755,"(40.647682, -73.96755)",CHURCH AVENUE,ARGYLE ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496376,Bus,,,, +01/19/2022,19:12,QUEENS,11435,40.697857,-73.80417,"(40.697857, -73.80417)",148 STREET,97 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495825,,,,, +01/21/2022,10:30,,,40.711384,-73.8366,"(40.711384, -73.8366)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4496337,Tractor Truck Diesel,,,, +01/09/2022,4:04,,,40.878,-73.90408,"(40.878, -73.90408)",MAJOR DEEGAN EXPRESSWAY,,,1,1,0,0,0,0,1,1,Unspecified,Unspecified,,,,4496246,Snow Plow,Sedan,,, +01/21/2022,0:34,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4496199,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,2:00,QUEENS,11360,40.77345,-73.783875,"(40.77345, -73.783875)",28 AVENUE,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4496089,Sedan,Sedan,,, +01/20/2022,9:10,,,40.740643,-73.97581,"(40.740643, -73.97581)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496027,Sedan,Tractor Truck Diesel,,, +01/20/2022,4:10,MANHATTAN,10021,40.76973,-73.9577,"(40.76973, -73.9577)",,,1407 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496783,Box Truck,Taxi,,, +01/17/2022,0:50,QUEENS,11423,40.718643,-73.76625,"(40.718643, -73.76625)",197 STREET,FOOTHILL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4496214,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/07/2022,14:54,BRONX,10466,40.888016,-73.86374,"(40.888016, -73.86374)",EAST 224 STREET,CARPENTER AVENUE,,3,0,0,0,0,0,3,0,Pavement Slippery,Other Vehicular,,,,4496468,Sedan,Sedan,Sedan,, +01/19/2022,17:40,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495888,Sedan,Sedan,,, +01/19/2022,16:35,,,40.88809,-73.89254,"(40.88809, -73.89254)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495997,Sedan,,,, +01/18/2022,19:52,MANHATTAN,10034,40.872383,-73.912674,"(40.872383, -73.912674)",,,5141 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496687,Ambulance,Ambulance,,, +01/21/2022,21:40,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",FLATBUSH AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,22:15,,,40.580616,-74.152534,"(40.580616, -74.152534)",RICHMOND HILL ROAD,FOREST HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unsafe Speed,,,,4496034,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,12:03,MANHATTAN,10022,40.75815,-73.97044,"(40.75815, -73.97044)",,,153 EAST 53 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,15:00,MANHATTAN,10031,40.823547,-73.95539,"(40.823547, -73.95539)",WEST 139 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496014,Sedan,Sedan,,, +01/19/2022,15:00,BROOKLYN,11209,40.63439,-74.027466,"(40.63439, -74.027466)",,,279 71 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4495931,Sedan,Sedan,Sedan,, +01/21/2022,19:13,,,40.68617,-73.94448,"(40.68617, -73.94448)",MONROE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Alcohol Involvement,,,,4496716,Van,Sedan,,, +01/20/2022,15:45,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496071,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,15:13,,,40.63981,-73.995514,"(40.63981, -73.995514)",46 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496138,Sedan,Sedan,,, +01/21/2022,16:40,,,40.690468,-73.9879,"(40.690468, -73.9879)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496283,Bus,Bus,,, +01/20/2022,0:30,QUEENS,11420,40.68275,-73.81342,"(40.68275, -73.81342)",128 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4495881,Sedan,Sedan,,, +01/21/2022,13:15,QUEENS,11436,40.67405,-73.79793,"(40.67405, -73.79793)",ROCKAWAY BOULEVARD,142 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496241,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,20:30,,,40.667778,-73.80127,"(40.667778, -73.80127)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496083,Sedan,,,, +01/21/2022,10:28,QUEENS,11355,40.75652,-73.821434,"(40.75652, -73.821434)",ASH AVENUE,BOWNE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496226,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,22:50,,,40.731304,-73.925964,"(40.731304, -73.925964)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496319,Sedan,Box Truck,,, +01/19/2022,14:15,,,40.72511,-73.77056,"(40.72511, -73.77056)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4495873,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,23:37,QUEENS,11106,40.75658,-73.929756,"(40.75658, -73.929756)",31 STREET,36 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496510,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,6:54,MANHATTAN,10002,40.719105,-73.99002,"(40.719105, -73.99002)",,,80 DELANCEY STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495693,Taxi,Box Truck,,, +01/21/2022,0:45,BROOKLYN,11238,40.68178,-73.95874,"(40.68178, -73.95874)",,,1079 FULTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4496106,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,10:21,QUEENS,11378,40.721985,-73.90402,"(40.721985, -73.90402)",,,61-22 GRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,22:50,,,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,,,7,0,0,0,0,0,7,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4496399,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +01/19/2022,8:45,BRONX,10466,40.89213,-73.85341,"(40.89213, -73.85341)",EAST 233 STREET,BUSSING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495807,Sedan,,,, +01/20/2022,0:36,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",WEST 39 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496650,Convertible,Taxi,,, +01/21/2022,9:37,BROOKLYN,11225,40.66422,-73.958595,"(40.66422, -73.958595)",,,66 SULLIVAN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496298,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,8:40,BROOKLYN,11225,,,,EMPIRE BOULEVARD,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495908,Station Wagon/Sport Utility Vehicle,Dump,,, +01/21/2022,18:00,BROOKLYN,11212,40.658245,-73.916916,"(40.658245, -73.916916)",,,405 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4496583,Pick-up Truck,,,, +01/20/2022,14:40,,,40.859306,-73.89885,"(40.859306, -73.89885)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496167,Sedan,,,, +01/20/2022,11:30,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4496135,Sedan,Sedan,,, +01/20/2022,14:44,,,40.66566,-73.767624,"(40.66566, -73.767624)",FARMERS BOULEVARD,145 ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4496058,Sedan,Sedan,Sedan,, +01/20/2022,14:30,,,40.679565,-73.93436,"(40.679565, -73.93436)",FULTON STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4496553,Bus,Taxi,,, +01/21/2022,23:47,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496352,Sedan,Van,,, +01/21/2022,8:22,BRONX,10455,40.81237,-73.900406,"(40.81237, -73.900406)",,,651 TIMPSON PLACE,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,,,,,4496251,Van,,,, +01/20/2022,4:48,BROOKLYN,11208,40.679108,-73.88062,"(40.679108, -73.88062)",ATLANTIC AVENUE,HIGHLAND PLACE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4496371,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,14:12,BROOKLYN,11234,40.61146,-73.92437,"(40.61146, -73.92437)",FLATBUSH AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,9:40,BRONX,10452,40.84211,-73.91887,"(40.84211, -73.91887)",,,1455 CROMWELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496209,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,8:40,,,40.736496,-73.909225,"(40.736496, -73.909225)",58 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496231,Box Truck,Tractor Truck Diesel,,, +01/21/2022,20:45,QUEENS,11354,,,,COLLEGE POINT BOULEVARD,40 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496491,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,14:03,,,40.669865,-73.95051,"(40.669865, -73.95051)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4496456,Bus,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,7:30,,,40.72443,-73.99347,"(40.72443, -73.99347)",ELIZABETH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495914,Station Wagon/Sport Utility Vehicle,Dump,,, +01/21/2022,14:00,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4496573,Flat Rack,Sedan,,, +01/19/2022,8:55,,,40.814774,-73.94038,"(40.814774, -73.94038)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4495970,Taxi,,,, +01/20/2022,16:30,QUEENS,11422,40.654274,-73.72861,"(40.654274, -73.72861)",,,259-25 148 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496065,Sedan,,,, +12/17/2021,20:35,MANHATTAN,10013,40.71782,-73.99516,"(40.71782, -73.99516)",,,104 BOWERY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4496847,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,9:45,BROOKLYN,11215,40.670197,-73.9954,"(40.670197, -73.9954)",13 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496592,Sedan,,,, +01/19/2022,13:45,,,40.69666,-73.93109,"(40.69666, -73.93109)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing Too Closely,,,,4495896,Sedan,Box Truck,,, +01/21/2022,17:55,BRONX,10454,40.8067,-73.92131,"(40.8067, -73.92131)",,,441 EAST 136 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496358,Sedan,PK,Bus,, +01/19/2022,9:00,BROOKLYN,11211,40.713955,-73.95794,"(40.713955, -73.95794)",HOPE STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496767,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,9:24,BRONX,10456,40.830635,-73.90099,"(40.830635, -73.90099)",,,1264 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496415,Sedan,AMBULANCE,,, +01/19/2022,23:41,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4495859,Sedan,Sedan,,, +01/20/2022,20:15,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4496095,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/20/2022,17:55,BROOKLYN,11201,40.68583,-73.99425,"(40.68583, -73.99425)",,,238 COURT STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4496113,Bike,Sedan,,, +01/21/2022,21:50,BROOKLYN,11203,40.652176,-73.92848,"(40.652176, -73.92848)",EAST 52 STREET,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496602,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,15:30,MANHATTAN,10069,40.778397,-73.98851,"(40.778397, -73.98851)",,,180 RIVERSIDE BOULEVARD,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4496681,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,16:22,,,40.76736,-73.9371,"(40.76736, -73.9371)",10 STREET,VERNON BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495992,Sedan,,,, +01/20/2022,9:34,BROOKLYN,11214,40.592598,-73.995735,"(40.592598, -73.995735)",,,1752 SHORE PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496047,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,20:00,BROOKLYN,11222,40.71982,-73.94863,"(40.71982, -73.94863)",,,424 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495921,Sedan,,,, +01/20/2022,17:57,BROOKLYN,11205,40.693172,-73.97086,"(40.693172, -73.97086)",MYRTLE AVENUE,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496332,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,21:40,BROOKLYN,11206,40.698696,-73.93477,"(40.698696, -73.93477)",MELROSE STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496727,Sedan,Moped,,, +01/21/2022,10:30,,,40.8324,-73.890724,"(40.8324, -73.890724)",JENNINGS STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496417,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,14:54,MANHATTAN,10019,40.772236,-73.99388,"(40.772236, -73.99388)",12 AVENUE,WEST 58 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Driver Inattention/Distraction,,,,4495956,Taxi,Sedan,,, +01/21/2022,14:45,,,40.69599,-73.98322,"(40.69599, -73.98322)",TILLARY STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496263,Sedan,Dump,,, +01/14/2022,23:40,BROOKLYN,11213,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,ALBANY AVENUE,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4496628,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,13:00,,,40.636078,-74.019714,"(40.636078, -74.019714)",66 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496753,Sedan,,,, +01/21/2022,2:55,BRONX,10472,40.82636,-73.87136,"(40.82636, -73.87136)",,,1050 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496142,Sedan,Taxi,,, +01/21/2022,19:51,MANHATTAN,10006,40.70808,-74.01445,"(40.70808, -74.01445)",,,90 WASHINGTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496323,Sedan,Sedan,,, +01/20/2022,19:39,QUEENS,11692,,,,ROCKAWAY BEACH BOULEVARD,BEACH 73 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496075,Sedan,,,, +01/18/2022,23:00,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4496572,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,8:10,BROOKLYN,11220,40.637012,-74.01515,"(40.637012, -74.01515)",62 STREET,6 AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4496258,Station Wagon/Sport Utility Vehicle,Bus,,, +01/21/2022,0:50,BRONX,10460,0,0,"(0.0, 0.0)",EAST 175 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496170,Dump,Taxi,,, +01/19/2022,11:50,,,0,0,"(0.0, 0.0)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495963,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,14:30,,,40.76663,-73.89605,"(40.76663, -73.89605)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496505,Pick-up Truck,,,, +01/12/2022,14:00,BROOKLYN,11208,40.671883,-73.8812,"(40.671883, -73.8812)",,,490 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496163,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,14:45,,,40.881958,-73.816605,"(40.881958, -73.816605)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4496079,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,0:40,,,40.786285,-73.79685,"(40.786285, -73.79685)",CROSS ISLAND PARKWAY,166 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4495661,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,19:30,BROOKLYN,11225,,,,,,179 WINTHROP STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4440615,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,15:40,BRONX,10454,40.807514,-73.92913,"(40.807514, -73.92913)",,,14 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496131,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,8:25,,,40.65531,-73.97658,"(40.65531, -73.97658)",PROSPECT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496390,Station Wagon/Sport Utility Vehicle,Dump,,, +01/21/2022,22:43,BRONX,10475,40.87318,-73.827286,"(40.87318, -73.827286)",,,99 BELLAMY LOOP,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4496302,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/20/2022,17:21,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +01/21/2022,1:30,QUEENS,11429,40.703434,-73.74051,"(40.703434, -73.74051)",SPRINGFIELD BOULEVARD,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496096,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,12:32,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,Unspecified,,,4495880,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/13/2022,19:00,,,40.85045,-73.93667,"(40.85045, -73.93667)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,,,4496659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,6:59,MANHATTAN,10017,40.75425,-73.96899,"(40.75425, -73.96899)",2 AVENUE,EAST 49 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496009,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,10:02,QUEENS,11369,40.763367,-73.88009,"(40.763367, -73.88009)",,,24-45 89 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4495797,Concrete Mixer,,,, +01/14/2022,23:05,BROOKLYN,11238,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,WASHINGTON AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4496666,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,22:18,,,40.67452,-73.80321,"(40.67452, -73.80321)",ROCKAWAY BOULEVARD,135 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,4:59,MANHATTAN,10014,40.72911,-74.01068,"(40.72911, -74.01068)",WEST HOUSTON STREET,WEST STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4496833,Station Wagon/Sport Utility Vehicle,,,, +12/17/2021,18:30,,,40.732822,-73.8684,"(40.732822, -73.8684)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496367,Sedan,,,, +01/20/2022,12:55,BROOKLYN,11205,40.690693,-73.95728,"(40.690693, -73.95728)",DE KALB AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496701,PK,Moped,,, +01/21/2022,16:20,BROOKLYN,11226,40.63885,-73.964935,"(40.63885, -73.964935)",RUGBY ROAD,DORCHESTER ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496290,Sedan,,,, +01/19/2022,8:50,BROOKLYN,11221,40.68679,-73.92596,"(40.68679, -73.92596)",,,890 PUTNAM AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496543,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,8:25,QUEENS,11361,40.761246,-73.76294,"(40.761246, -73.76294)",219 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496002,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,18:00,BRONX,10475,40.87448,-73.83393,"(40.87448, -73.83393)",,,750 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4496443,,,,, +01/12/2022,23:00,,,40.839535,-73.946785,"(40.839535, -73.946785)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Other Vehicular,,,,4496714,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,18:59,BROOKLYN,11233,40.669403,-73.922554,"(40.669403, -73.922554)",,,578 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496672,Box Truck,,,, +01/19/2022,8:00,MANHATTAN,10001,40.75193,-73.990814,"(40.75193, -73.990814)",,,212 WEST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496484,Sedan,,,, +01/21/2022,8:35,QUEENS,11369,40.768726,-73.87056,"(40.768726, -73.87056)",100 STREET,23 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,19:54,,,40.691353,-73.92142,"(40.691353, -73.92142)",BUSHWICK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496118,Sedan,,,, +01/18/2022,23:49,MANHATTAN,10018,40.75355,-73.98505,"(40.75355, -73.98505)",WEST 40 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4496649,,,,, +01/19/2022,19:00,BROOKLYN,11210,40.637775,-73.95111,"(40.637775, -73.95111)",,,1302 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4496059,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/21/2022,19:10,BRONX,10458,40.86074,-73.895386,"(40.86074, -73.895386)",EAST 188 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496363,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,8:30,MANHATTAN,10011,40.741646,-74.00487,"(40.741646, -74.00487)",9 AVENUE,WEST 15 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4495930,Tractor Truck Diesel,Sedan,,, +01/21/2022,14:22,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496587,Sedan,Sedan,,, +01/18/2022,9:44,BROOKLYN,11234,40.61232,-73.93172,"(40.61232, -73.93172)",FILLMORE AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496408,Sedan,Pick-up Truck,,, +01/20/2022,18:20,,,40.834164,-73.922226,"(40.834164, -73.922226)",RIVER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4496206,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/20/2022,7:30,QUEENS,11354,40.756393,-73.835266,"(40.756393, -73.835266)",,,131-48 40 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4495947,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,19:20,,,40.725994,-73.75815,"(40.725994, -73.75815)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496219,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,12:05,,,40.762383,-73.90344,"(40.762383, -73.90344)",BOROUGH PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496493,Taxi,,,, +01/21/2022,18:52,,,40.701763,-73.9276,"(40.701763, -73.9276)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496327,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,11:50,BRONX,10474,40.812305,-73.89637,"(40.812305, -73.89637)",LEGGETT AVENUE,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496043,Van,Tractor Truck Diesel,,, +01/20/2022,10:35,BROOKLYN,11209,40.6167,-74.03085,"(40.6167, -74.03085)",4 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4495978,Taxi,,,, +01/19/2022,13:30,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4495824,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/20/2022,10:37,BROOKLYN,11220,40.63491,-74.01017,"(40.63491, -74.01017)",61 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,12:45,BROOKLYN,11212,40.664158,-73.90895,"(40.664158, -73.90895)",,,277 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496497,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,17:27,BROOKLYN,11233,40.678978,-73.9237,"(40.678978, -73.9237)",,,1884 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496533,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,18:00,BROOKLYN,11221,40.69986,-73.92829,"(40.69986, -73.92829)",CENTRAL AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496739,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,20:20,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4495855,Sedan,Sedan,,, +01/10/2022,22:35,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4496639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/20/2022,14:35,,,40.853027,-73.91827,"(40.853027, -73.91827)",SEDGWICK AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496159,Tractor Truck Diesel,Sedan,,, +01/19/2022,11:30,QUEENS,11422,40.65925,-73.73475,"(40.65925, -73.73475)",WELLER LANE,253 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495735,Sedan,Sedan,,, +01/20/2022,11:30,BRONX,10469,40.877125,-73.83952,"(40.877125, -73.83952)",,,3313 ELY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496791,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/15/2022,5:00,BRONX,10471,40.90788,-73.906555,"(40.90788, -73.906555)",,,5800 ARLINGTON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4496146,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/20/2022,8:40,STATEN ISLAND,10312,,,,st albans place,winchester ave,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4495986,Carry All,Sedan,,, +01/17/2022,22:00,BRONX,10465,,,,,,2963 Msgr halpin place,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496278,Sedan,,,, +01/19/2022,14:57,,,40.789783,-73.81419,"(40.789783, -73.81419)",150 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4495903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,7:45,,,,,,BOLLER AVENUE,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,20:54,BRONX,10456,40.835476,-73.907845,"(40.835476, -73.907845)",,,1331 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4496795,Sedan,,,, +07/19/2021,23:26,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4440712,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,21:15,QUEENS,11357,40.779106,-73.81729,"(40.779106, -73.81729)",22 AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4496126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/20/2022,23:30,BRONX,10456,40.825848,-73.90993,"(40.825848, -73.90993)",WASHINGTON AVENUE,EAST 164 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496174,PK,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,17:55,QUEENS,11373,40.73274,-73.86836,"(40.73274, -73.86836)",QUEENS BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495827,Pick-up Truck,Sedan,,, +01/19/2022,22:30,BROOKLYN,11228,40.629356,-74.014755,"(40.629356, -74.014755)",,,819 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495861,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,7:55,BROOKLYN,11204,40.607243,-73.98726,"(40.607243, -73.98726)",AVENUE P,STILLWELL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4496048,Sedan,Sedan,,, +01/21/2022,18:50,,,40.70537,-73.775826,"(40.70537, -73.775826)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496689,Sedan,Box Truck,,, +01/19/2022,11:00,,,40.63834,-74.01736,"(40.63834, -74.01736)",62 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496021,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,21:47,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",LIBERTY AVENUE,177 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496028,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/17/2022,17:45,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",STANLEY AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496195,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,20:34,BROOKLYN,11228,40.623913,-74.00726,"(40.623913, -74.00726)",71 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4496306,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/19/2022,0:00,,,40.671078,-73.842926,"(40.671078, -73.842926)",CROSS BAY BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495733,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,0:16,,,40.834774,-73.92527,"(40.834774, -73.92527)",ANDERSON AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496538,Ambulance,Sedan,,, +01/21/2022,8:30,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",7 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496234,Sedan,Tractor Truck Diesel,,, +01/21/2022,18:30,BRONX,10451,40.823032,-73.91647,"(40.823032, -73.91647)",,,807 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496818,Sedan,Sedan,,, +01/16/2022,8:00,,,40.878,-73.90408,"(40.878, -73.90408)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496383,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/21/2022,12:30,,,40.74504,-73.7345,"(40.74504, -73.7345)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,9:15,MANHATTAN,10036,40.763428,-73.99271,"(40.763428, -73.99271)",WEST 48 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495953,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,20:15,BRONX,10451,40.822838,-73.928764,"(40.822838, -73.928764)",RIVER AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,14:30,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4496344,Sedan,Sedan,,, +01/08/2022,16:00,BRONX,10456,40.83369,-73.91386,"(40.83369, -73.91386)",EAST 168 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496528,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,13:40,,,40.719784,-73.78283,"(40.719784, -73.78283)",GRAND CENTRAL PARKWAY,AVON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496223,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,21:35,BROOKLYN,11233,40.67652,-73.91403,"(40.67652, -73.91403)",,,2035 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4496643,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,5:45,BROOKLYN,11211,40.70955,-73.95886,"(40.70955, -73.95886)",SOUTH 5 STREET,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4496477,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +01/19/2022,12:15,BROOKLYN,11203,40.649918,-73.92438,"(40.649918, -73.92438)",,,290 EAST 56 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495788,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,2:43,,,40.840286,-73.92147,"(40.840286, -73.92147)",WEST 170 STREET,GRANT HIGHWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4496200,Sedan,,,, +01/21/2022,20:54,,,,,,EAST 95 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496782,Sedan,Sedan,,, +12/24/2021,12:53,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Illnes,,,,4496664,Sedan,Sedan,,, +01/20/2022,9:30,BROOKLYN,11210,40.632133,-73.939865,"(40.632133, -73.939865)",EAST 38 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496578,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,13:20,QUEENS,11377,40.75493,-73.904205,"(40.75493, -73.904205)",,,32-32 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495990,Box Truck,,,, +01/16/2022,4:25,BROOKLYN,11203,40.638523,-73.92607,"(40.638523, -73.92607)",FARRAGUT ROAD,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496554,Sedan,,,, +01/19/2022,6:30,,,40.883453,-73.87774,"(40.883453, -73.87774)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4495718,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/21/2022,0:45,BRONX,10461,40.848633,-73.82801,"(40.848633, -73.82801)",BRUCKNER BOULEVARD,WILLOW LANE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496850,Sedan,,,, +01/19/2022,16:15,BRONX,10455,40.816902,-73.91799,"(40.816902, -73.91799)",,,389 EAST 150 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495868,Station Wagon/Sport Utility Vehicle,Bike,,, +01/19/2022,8:40,QUEENS,11385,40.713528,-73.916336,"(40.713528, -73.916336)",METROPOLITAN AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496019,Sedan,Dump,,, +01/21/2022,11:45,,,40.834015,-73.82661,"(40.834015, -73.82661)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Obstruction/Debris,,,4496250,Tractor Truck Diesel,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +01/17/2022,10:32,QUEENS,11385,40.7014,-73.89332,"(40.7014, -73.89332)",,,61-50 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496178,Sedan,,,, +01/20/2022,16:30,,,40.844975,-73.91877,"(40.844975, -73.91877)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496312,Sedan,,,, +01/13/2022,12:00,,,40.81848,-73.9553,"(40.81848, -73.9553)",OLD BROADWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496522,Garbage or Refuse,,,, +12/06/2021,8:50,BROOKLYN,11221,40.69296,-73.93106,"(40.69296, -73.93106)",REID AVENUE,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496549,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,14:57,,,40.859093,-73.93745,"(40.859093, -73.93745)",HENRY HUDSON PARKWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,Unspecified,,,4435874,Convertible,Sedan,Station Wagon/Sport Utility Vehicle,, +07/16/2021,8:30,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,18:40,QUEENS,11434,40.672382,-73.78574,"(40.672382, -73.78574)",ROCKAWAY BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440854,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,23:50,MANHATTAN,10019,40.761147,-73.97952,"(40.761147, -73.97952)",WEST 52 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440859,Van,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,7:45,BRONX,10454,40.80599,-73.917656,"(40.80599, -73.917656)",,,530 EAST 137 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440839,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/22/2021,2:45,BROOKLYN,11204,40.617123,-73.98524,"(40.617123, -73.98524)",20 AVENUE,64 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440851,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,18:45,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BREWER BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440855,Sedan,Sedan,,, +07/23/2021,10:40,,,40.759163,-73.97675,"(40.759163, -73.97675)",5 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440864,E-Scooter,Van,,, +07/05/2021,16:45,,,40.683388,-73.79259,"(40.683388, -73.79259)",115 DRIVE,,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4440856,Motorcycle,Sedan,,, +07/24/2021,13:32,,,,,,,,1717 west 54 street,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440866,Station Wagon/Sport Utility Vehicle,Bike,,, +01/20/2022,22:30,BROOKLYN,11210,40.633007,-73.941864,"(40.633007, -73.941864)",,,1645 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4496577,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/20/2022,3:21,,,40.865955,-73.92988,"(40.865955, -73.92988)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,17:20,BROOKLYN,11210,40.620167,-73.95336,"(40.620167, -73.95336)",,,1302 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496374,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/19/2022,12:48,QUEENS,11378,40.715977,-73.9061,"(40.715977, -73.9061)",,,60-20 60 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4495818,Sedan,,,, +01/20/2022,1:20,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",EAST 63 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496112,Sedan,,,, +07/24/2021,22:00,,,40.751575,-73.85584,"(40.751575, -73.85584)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440023,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,20:05,BROOKLYN,11212,40.662632,-73.92959,"(40.662632, -73.92959)",,,51 EAST 91 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,19:00,,,40.840225,-73.91769,"(40.840225, -73.91769)",EAST 170 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4440094,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/23/2021,16:47,MANHATTAN,10032,40.83037,-73.94015,"(40.83037, -73.94015)",WEST 155 STREET,SAINT NICHOLAS PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4440816,Sedan,Station Wagon/Sport Utility Vehicle,Moped,, +07/21/2021,9:18,BRONX,10473,40.82389,-73.87461,"(40.82389, -73.87461)",,,1600 BRUCKNER BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4440640,Sedan,Sedan,Sedan,, +07/22/2021,16:11,MANHATTAN,10012,40.720623,-73.99498,"(40.720623, -73.99498)",ELIZABETH STREET,KENMARE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440610,Sedan,,,, +07/24/2021,0:37,BROOKLYN,11206,40.707653,-73.93984,"(40.707653, -73.93984)",MONTROSE AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4439846,Sedan,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle, +07/24/2021,17:30,QUEENS,11368,40.74418,-73.851906,"(40.74418, -73.851906)",111 STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440066,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,20:30,,,,,,WEST 143 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4440467,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/24/2021,8:49,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440151,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/14/2021,20:15,QUEENS,11419,40.68951,-73.827545,"(40.68951, -73.827545)",,,117-04 101 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440587,Sedan,,,, +07/24/2021,5:15,,,40.744286,-73.75993,"(40.744286, -73.75993)",BELL BOULEVARD,67 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440671,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,16:40,MANHATTAN,10035,40.806408,-73.94016,"(40.806408, -73.94016)",EAST 126 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4440735,Sedan,,,, +07/24/2021,1:20,,,40.685028,-73.971245,"(40.685028, -73.971245)",FULTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440169,Sedan,Sedan,,, +07/21/2021,6:45,,,40.826027,-73.878586,"(40.826027, -73.878586)",WATSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/22/2021,20:49,BRONX,10472,40.831177,-73.86333,"(40.831177, -73.86333)",,,1230 LELAND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440664,,,,, +01/20/2022,19:15,MANHATTAN,10029,40.79167,-73.95093,"(40.79167, -73.95093)",MADISON AVENUE,EAST 103 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496336,Sedan,Sedan,,, +07/24/2021,0:04,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4439889,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,14:29,QUEENS,11356,40.781662,-73.834435,"(40.781662, -73.834435)",,,134-15 20 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440003,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,15:03,,,40.711365,-73.97897,"(40.711365, -73.97897)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,15:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440378,Sedan,Sedan,,, +07/24/2021,4:45,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4440481,Taxi,,,, +07/23/2021,18:38,QUEENS,11418,40.699085,-73.8422,"(40.699085, -73.8422)",,,85-03 107 STREET,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4440538,,,,, +07/24/2021,15:29,QUEENS,11357,40.788063,-73.795,"(40.788063, -73.795)",TOTTEN STREET,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,14:07,BRONX,10468,40.872765,-73.88864,"(40.872765, -73.88864)",EAST BEDFORD PARK BOULEVARD,VILLA AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439929,Sedan,Bike,,, +07/23/2021,16:06,BRONX,10472,40.830647,-73.86058,"(40.830647, -73.86058)",GLEASON AVENUE,VIRGINIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440684,Van,,,, +07/20/2021,14:50,QUEENS,11419,40.695396,-73.81656,"(40.695396, -73.81656)",132 STREET,95 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4440721,Bike,,,, +07/24/2021,10:00,,,40.63834,-74.01736,"(40.63834, -74.01736)",5 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440793,Sedan,Bike,,, +07/24/2021,8:00,BROOKLYN,11228,40.60447,-74.01674,"(40.60447, -74.01674)",,,8950 15 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4439955,Sedan,,,, +07/24/2021,14:10,,,,,,BOSTON ROAD,PELHAM PARKWAY NORTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439931,Taxi,Taxi,,, +07/15/2021,9:30,BRONX,10473,40.80859,-73.85406,"(40.80859, -73.85406)",NEWMAN AVENUE,SOUND VIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440649,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,6:00,QUEENS,11423,40.710762,-73.75855,"(40.710762, -73.75855)",100 AVENUE,201 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439999,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,8:57,,,40.75619,-73.746414,"(40.75619, -73.746414)",CROSS ISLAND PARKWAY,,,5,0,0,0,0,0,5,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4439902,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/21/2021,12:00,MANHATTAN,10002,40.71551,-73.99395,"(40.71551, -73.99395)",,,102 CANAL STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440537,Station Wagon/Sport Utility Vehicle,Bike,,, +07/24/2021,20:36,,,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440122,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,1:45,,,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440184,Sedan,Motorcycle,,, +07/14/2021,0:17,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",ATLANTIC AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440557,Sedan,,,, +07/24/2021,23:21,,,40.739693,-73.84598,"(40.739693, -73.84598)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4440411,Sedan,Pick-up Truck,,, +07/24/2021,16:15,BROOKLYN,11207,40.674557,-73.89362,"(40.674557, -73.89362)",,,178 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440542,Sedan,Pick-up Truck,,, +07/24/2021,2:36,MANHATTAN,10030,,,,FREDERICK DOUGLASS BOULEVARD,WEST 142 STREET,,0,1,0,0,0,0,0,1,Alcohol Involvement,Unspecified,,,,4439921,Motorbike,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,12:41,,,40.852383,-73.92048,"(40.852383, -73.92048)",SEDGWICK AVENUE,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439988,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,16:20,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440075,Bus,Fire truck,,, +07/23/2021,16:30,,,40.82559,-73.86316,"(40.82559, -73.86316)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440680,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,7:20,BROOKLYN,11215,40.659863,-73.97752,"(40.659863, -73.97752)",10 AVENUE,PROSPECT PARK SOUTHWEST,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440800,Station Wagon/Sport Utility Vehicle,Motorcycle,Sedan,, +07/24/2021,7:50,MANHATTAN,10033,40.846764,-73.933784,"(40.846764, -73.933784)",AUDUBON AVENUE,WEST 178 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,6:33,BRONX,10473,40.821606,-73.87284,"(40.821606, -73.87284)",,,875 MORRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440603,Sedan,,,, +07/24/2021,7:20,BRONX,10472,40.8326,-73.866486,"(40.8326, -73.866486)",,,1310 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440685,Sedan,,,, +07/24/2021,1:01,,,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,15:30,BROOKLYN,11217,40.68342,-73.982,"(40.68342, -73.982)",BERGEN STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440780,Sedan,Sedan,,, +07/24/2021,15:50,,,40.66626,-73.99596,"(40.66626, -73.99596)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,14:39,BRONX,10473,40.825455,-73.84954,"(40.825455, -73.84954)",STORY AVENUE,CASTLE HILL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440653,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/24/2021,15:35,,,40.71008,-73.84848,"(40.71008, -73.84848)",METROPOLITAN AVENUE,72 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439935,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,19:30,,,40.806343,-73.93318,"(40.806343, -73.93318)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440586,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,4:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4440452,Sedan,,,, +07/24/2021,12:29,,,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440522,Sedan,Sedan,,, +07/22/2021,12:00,,,40.660927,-73.98669,"(40.660927, -73.98669)",17 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440795,Sedan,,,, +07/16/2021,9:35,QUEENS,11416,40.6884,-73.84209,"(40.6884, -73.84209)",,,95-40 102 STREET,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4440581,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,13:00,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440644,Tractor Truck Diesel,,,, +07/24/2021,23:21,BRONX,10467,40.877075,-73.87511,"(40.877075, -73.87511)",,,303 EAST 209 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440108,Sedan,,,, +07/20/2021,10:59,BRONX,10472,40.8311,-73.85716,"(40.8311, -73.85716)",PUGSLEY AVENUE,GLEASON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440619,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,8:30,BROOKLYN,11232,40.64741,-74.018684,"(40.64741, -74.018684)",53 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440171,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,5:57,BROOKLYN,11226,40.638893,-73.957855,"(40.638893, -73.957855)",,,618 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4440058,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +07/24/2021,10:42,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4440326,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/13/2021,23:36,BRONX,10459,40.82738,-73.88663,"(40.82738, -73.88663)",,,1298 WESTCHESTER AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4440676,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,16:44,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440012,Sedan,Sedan,,, +07/24/2021,7:57,MANHATTAN,10035,40.802353,-73.94445,"(40.802353, -73.94445)",,,15 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440593,Sedan,Motorcycle,Sedan,, +07/24/2021,22:57,BRONX,10472,40.827187,-73.86992,"(40.827187, -73.86992)",,,1702 WATSON AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440689,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,14:55,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440227,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,17:58,,,40.74105,-73.72587,"(40.74105, -73.72587)",UNION TURNPIKE,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4440069,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,14:00,QUEENS,11379,40.70796,-73.877785,"(40.70796, -73.877785)",73 PLACE,69 ROAD,,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,,,,4440234,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,8:00,MANHATTAN,10029,40.79456,-73.94669,"(40.79456, -73.94669)",,,1485 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440152,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,22:00,BRONX,10472,40.826492,-73.88354,"(40.826492, -73.88354)",,,1135 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440630,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,0:50,BROOKLYN,11234,40.625652,-73.930534,"(40.625652, -73.930534)",SCHENECTADY AVENUE,AVENUE K,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4439851,Sedan,Sedan,,, +07/23/2021,12:26,BROOKLYN,11215,40.677,-73.98197,"(40.677, -73.98197)",,,687 UNION STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4440660,Bike,Sedan,,, +07/21/2021,17:36,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440744,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,15:20,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440032,Sedan,,,, +07/18/2021,8:52,,,40.688995,-73.78581,"(40.688995, -73.78581)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4440573,Sedan,Pick-up Truck,,, +07/17/2021,13:00,,,40.694775,-73.84774,"(40.694775, -73.84774)",JAMAICA AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4440732,Sedan,Sedan,,, +07/17/2021,3:46,BRONX,10459,40.820972,-73.892845,"(40.820972, -73.892845)",EAST 163 STREET,SIMPSON STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4440688,Sedan,Sedan,,, +07/18/2021,13:05,MANHATTAN,10012,40.723907,-73.99367,"(40.723907, -73.99367)",,,264 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440609,Sedan,,,, +07/24/2021,4:00,MANHATTAN,10002,40.71366,-73.97739,"(40.71366, -73.97739)",,,473 FDR DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439867,Taxi,Sedan,,, +07/23/2021,21:40,,,40.839615,-73.88443,"(40.839615, -73.88443)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440639,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,17:00,,,40.619267,-74.1382,"(40.619267, -74.1382)",LIVERMORE AVENUE,LATHROP AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4440011,Station Wagon/Sport Utility Vehicle,Bike,,, +07/24/2021,22:15,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4440159,Motorcycle,,,, +07/23/2021,20:28,BROOKLYN,11215,40.678566,-73.98778,"(40.678566, -73.98778)",,,318 NEVINS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4440665,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,15:00,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440061,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,1:10,QUEENS,11421,40.685963,-73.85654,"(40.685963, -73.85654)",85 STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4440568,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,9:05,MANHATTAN,10029,40.799545,-73.94383,"(40.799545, -73.94383)",,,80 EAST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440592,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,1:00,,,,,,PARK DRIVE,ORCHARD BEACH ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440099,Sedan,,,, +07/18/2021,17:00,,,40.82831,-73.94315,"(40.82831, -73.94315)",WEST 151 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440817,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,17:25,MANHATTAN,10027,40.810627,-73.95828,"(40.810627, -73.95828)",AMSTERDAM AVENUE,WEST 122 STREET,,2,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4440722,E-Bike,Bike,,, +07/21/2021,18:05,BRONX,10473,40.810352,-73.853424,"(40.810352, -73.853424)",,,229 STEPHENS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440652,,,,, +07/24/2021,12:42,QUEENS,11361,40.752506,-73.7801,"(40.752506, -73.7801)",WEEKS LANE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439934,Sedan,PK,,, +07/24/2021,9:00,,,40.667328,-73.77903,"(40.667328, -73.77903)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4439967,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/24/2021,11:30,QUEENS,11419,40.684937,-73.833115,"(40.684937, -73.833115)",,,103-41 109 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4440436,Sedan,Sedan,,, +07/20/2021,13:39,BROOKLYN,11205,40.693436,-73.97784,"(40.693436, -73.97784)",SAINT EDWARDS STREET,MYRTLE AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440705,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/24/2021,7:00,,,40.86131,-73.92124,"(40.86131, -73.92124)",WEST 202 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440024,Sedan,,,, +07/24/2021,21:34,BROOKLYN,11208,40.674664,-73.88363,"(40.674664, -73.88363)",,,345 ELTON STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4440545,Sedan,Sedan,,, +07/24/2021,23:00,QUEENS,11358,40.7589,-73.78774,"(40.7589, -73.78774)",,,42-37 194 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440670,Sedan,,,, +07/24/2021,12:40,,,40.617752,-74.025055,"(40.617752, -74.025055)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4439922,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,15:55,BROOKLYN,11212,40.658115,-73.922104,"(40.658115, -73.922104)",,,327 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440263,Sedan,Sedan,,, +07/24/2021,20:30,QUEENS,11414,40.650177,-73.83765,"(40.650177, -73.83765)",,,164-33 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440453,Sedan,,,, +07/24/2021,11:30,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4439950,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,7:15,,,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440074,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/20/2021,13:45,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",8 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440604,Sedan,,,, +07/19/2021,4:07,,,40.86131,-73.92124,"(40.86131, -73.92124)",WEST 202 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440643,Sedan,Sedan,,, +07/17/2021,0:35,MANHATTAN,10013,40.719048,-73.99648,"(40.719048, -73.99648)",GRAND STREET,MOTT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440558,Dump,Sedan,,, +07/24/2021,4:25,,,40.739902,-73.972855,"(40.739902, -73.972855)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440016,Sedan,Sedan,,, +07/24/2021,8:00,BRONX,10456,40.83023,-73.901505,"(40.83023, -73.901505)",,,1245 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440087,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,14:11,,,40.64927,-74.009674,"(40.64927, -74.009674)",4 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4440805,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,21:20,BROOKLYN,11220,40.64508,-74.02109,"(40.64508, -74.02109)",,,5701 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440799,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,6:00,BRONX,10474,40.816574,-73.88908,"(40.816574, -73.88908)",MANIDA STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440681,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,0:58,MANHATTAN,10033,40.849285,-73.93894,"(40.849285, -73.93894)",FORT WASHINGTON AVENUE,WEST 179 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4440596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,13:00,BROOKLYN,11201,40.693798,-73.987236,"(40.693798, -73.987236)",JAY STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440781,Station Wagon/Sport Utility Vehicle,MTA Truck,,, +07/24/2021,20:51,BROOKLYN,11236,40.64275,-73.906044,"(40.64275, -73.906044)",,,9225 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4440410,Sedan,Sedan,Sedan,, +07/24/2021,7:50,BROOKLYN,11208,40.68192,-73.881325,"(40.68192, -73.881325)",,,148 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439870,Sedan,,,, +07/23/2021,18:29,BROOKLYN,11207,40.67118,-73.89181,"(40.67118, -73.89181)",BRADFORD STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4440541,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +07/24/2021,13:30,QUEENS,11432,40.707542,-73.78826,"(40.707542, -73.78826)",,,171-13 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440000,Sedan,Sedan,,, +04/23/2021,9:00,,,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440874,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,16:30,BROOKLYN,11212,40.66549,-73.91063,"(40.66549, -73.91063)",CHESTER STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440466,Sedan,Sedan,,, +07/24/2021,20:00,BRONX,10467,40.877525,-73.86443,"(40.877525, -73.86443)",HOLLAND AVENUE,EAST 211 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4440294,Sedan,Sedan,Sedan,Sedan, +07/24/2021,6:15,,,,,,ASTORIA BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4440119,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,15:10,BROOKLYN,11220,40.640625,-74.014984,"(40.640625, -74.014984)",58 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440803,Moped,,,, +07/24/2021,19:25,BRONX,10457,40.84434,-73.892044,"(40.84434, -73.892044)",CROTONA AVENUE,FAIRMOUNT PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4440648,Moped,Sedan,,, +07/24/2021,4:15,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4440182,Sedan,Sedan,Sedan,, +07/24/2021,22:25,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,22:36,MANHATTAN,10023,40.7736,-73.98158,"(40.7736, -73.98158)",COLUMBUS AVENUE,WEST 66 STREET,,1,0,0,0,0,0,1,0,Cell Phone (hands-free),Unspecified,,,,4440829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,22:29,BROOKLYN,11212,40.6549,-73.918495,"(40.6549, -73.918495)",,,501 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440040,Sedan,Sedan,,, +07/24/2021,16:00,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440546,Pick-up Truck,Sedan,,, +07/23/2021,14:06,QUEENS,11418,40.6965,-73.83996,"(40.6965, -73.83996)",,,86-64 108 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440582,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,16:12,,,40.831966,-73.8967,"(40.831966, -73.8967)",PROSPECT AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440086,Sedan,,,, +07/24/2021,13:55,MANHATTAN,10075,40.77428,-73.957306,"(40.77428, -73.957306)",3 AVENUE,EAST 79 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4440478,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,9:50,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4439901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,12:34,BROOKLYN,11209,40.627186,-74.026566,"(40.627186, -74.026566)",80 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440208,Sedan,,,, +07/24/2021,3:05,BROOKLYN,11226,40.654243,-73.95287,"(40.654243, -73.95287)",,,708 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439971,Sedan,Sedan,,, +07/24/2021,14:27,,,40.703106,-73.859985,"(40.703106, -73.859985)",MYRTLE AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4440247,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,22:58,,,40.85186,-73.92816,"(40.85186, -73.92816)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440027,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,16:40,MANHATTAN,10004,40.702538,-74.012566,"(40.702538, -74.012566)",,,1 NEW YORK PLAZA,0,0,0,0,0,0,0,0,Unspecified,,,,,4440200,PK,,,, +07/24/2021,20:32,,,40.767757,-73.99327,"(40.767757, -73.99327)",11 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440850,Sedan,Sedan,,, +07/20/2021,18:50,BRONX,10472,40.827187,-73.86992,"(40.827187, -73.86992)",,,1702 WATSON AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4440618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,4:15,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440103,Sedan,,,, +07/20/2021,13:00,,,,,,EAST 36 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440633,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/24/2021,0:53,,,40.84678,-73.8838,"(40.84678, -73.8838)",SOUTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439855,Sedan,Sedan,,, +07/23/2021,12:53,BROOKLYN,11217,40.67804,-73.98263,"(40.67804, -73.98263)",SACKETT STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4440661,Sedan,,,, +07/24/2021,15:58,,,40.684856,-73.79899,"(40.684856, -73.79899)",145 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440572,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,22:00,,,,,,RIEGALMAN BOARDWALK WEST,WEST 8 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4440740,E-Bike,,,, +07/20/2021,10:00,BRONX,10467,40.87916,-73.87715,"(40.87916, -73.87715)",TRYON AVENUE,RESERVOIR OVAL WEST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440706,Sedan,,,, +07/24/2021,2:48,BRONX,10460,40.844543,-73.88531,"(40.844543, -73.88531)",EAST 179 STREET,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4440455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/24/2021,13:30,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4439948,Sedan,,,, +07/24/2021,17:24,BROOKLYN,11236,40.630672,-73.901634,"(40.630672, -73.901634)",,,1334 EAST 85 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439951,Sedan,Sedan,,, +07/24/2021,18:55,BRONX,10475,40.890133,-73.81974,"(40.890133, -73.81974)",,,4340 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,14:59,,,40.82466,-73.870804,"(40.82466, -73.870804)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440659,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,16:04,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439987,Sedan,Sedan,,, +07/24/2021,6:30,QUEENS,11417,40.67172,-73.850975,"(40.67172, -73.850975)",NORTH CONDUIT AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4440437,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,14:35,BRONX,10472,40.835857,-73.87213,"(40.835857, -73.87213)",CROSS BRONX EXPRESSWAY,CROES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440674,Sedan,,,, +07/24/2021,18:25,QUEENS,11413,40.66129,-73.75884,"(40.66129, -73.75884)",,,221-12 146 AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4440015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,14:30,,,40.585342,-73.94157,"(40.585342, -73.94157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,7:30,,,40.803627,-73.963394,"(40.803627, -73.963394)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440695,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,2:40,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",JUNCTION BOULEVARD,34 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4439912,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/24/2021,15:00,BROOKLYN,11203,40.65345,-73.927635,"(40.65345, -73.927635)",,,263 EAST 53 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,16:50,QUEENS,11412,40.690224,-73.762215,"(40.690224, -73.762215)",FARMERS BOULEVARD,118 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4440512,Station Wagon/Sport Utility Vehicle,Bike,,, +07/24/2021,18:46,BROOKLYN,11207,40.67298,-73.88852,"(40.67298, -73.88852)",PITKIN AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440544,Sedan,,,, +07/24/2021,13:24,BROOKLYN,11209,40.631153,-74.01828,"(40.631153, -74.01828)",,,622 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439923,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,15:42,,,40.85179,-73.90279,"(40.85179, -73.90279)",EAST BURNSIDE AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4439986,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/22/2021,10:00,BRONX,10474,40.814243,-73.88544,"(40.814243, -73.88544)",,,674 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440682,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,5:11,BROOKLYN,11222,,,,VANDERVOORT AVENUE,BEADEL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4440687,Box Truck,Dump,,, +07/24/2021,12:50,QUEENS,11411,40.690254,-73.7366,"(40.690254, -73.7366)",119 AVENUE,226 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4440010,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,7:35,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440163,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/24/2021,2:14,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440677,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,0:15,,,,,,MANHATTAN BR UPPER,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4440571,Sedan,Sedan,,, +07/24/2021,16:45,BROOKLYN,11215,40.66818,-73.993,"(40.66818, -73.993)",,,136 14 STREET,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4440651,,,,, +07/24/2021,15:00,QUEENS,11362,40.760853,-73.72294,"(40.760853, -73.72294)",LITTLE NECK PARKWAY,59 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4439933,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,17:11,,,40.646927,-73.88074,"(40.646927, -73.88074)",PENNSYLVANIA AVENUE,FREEPORT LOOP,,1,0,0,0,0,0,1,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4440025,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,0:02,BRONX,10461,40.851505,-73.85458,"(40.851505, -73.85458)",RHINELANDER AVENUE,HAIGHT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4439897,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,15:24,QUEENS,11101,40.745975,-73.948074,"(40.745975, -73.948074)",21 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440001,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,1:14,BROOKLYN,11236,40.645794,-73.912186,"(40.645794, -73.912186)",,,924 REMSEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440756,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/24/2021,15:41,QUEENS,11417,40.676727,-73.85984,"(40.676727, -73.85984)",PITKIN AVENUE,77 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4440319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/24/2021,19:35,,,40.76197,-73.92539,"(40.76197, -73.92539)",BROADWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4439991,Sedan,Bus,,, +07/23/2021,22:23,,,40.82269,-73.94947,"(40.82269, -73.94947)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440819,E-Bike,,,, +07/24/2021,17:20,BROOKLYN,11235,40.577606,-73.9463,"(40.577606, -73.9463)",ORIENTAL BOULEVARD,FALMOUTH STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440531,Sedan,,,, +07/21/2021,22:15,,,40.664993,-73.80229,"(40.664993, -73.80229)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440857,Sedan,,,, +07/24/2021,15:15,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,22:43,BRONX,10462,40.856636,-73.86649,"(40.856636, -73.86649)",,,724 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440435,Taxi,Pick-up Truck,,, +07/24/2021,12:58,BROOKLYN,11207,40.67258,-73.89122,"(40.67258, -73.89122)",PITKIN AVENUE,MILLER AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4440540,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,12:38,QUEENS,11368,40.755337,-73.843254,"(40.755337, -73.843254)",ROOSEVELT AVENUE,126 STREET,,2,0,1,0,0,0,1,0,Unspecified,Unspecified,,,,4440475,Sedan,Motorbike,,, +07/24/2021,11:55,QUEENS,11101,40.749733,-73.936104,"(40.749733, -73.936104)",41 AVENUE,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440146,Taxi,,,, +07/23/2021,13:26,MANHATTAN,10035,40.799076,-73.93318,"(40.799076, -73.93318)",,,2351 1 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,16:06,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,3:45,,,40.818085,-73.96048,"(40.818085, -73.96048)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440050,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,23:31,,,40.60719,-74.16243,"(40.60719, -74.16243)",VICTORY BOULEVARD,RICHMOND AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440605,Sedan,E-Bike,,, +07/24/2021,22:20,QUEENS,11377,40.738438,-73.89988,"(40.738438, -73.89988)",65 PLACE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440035,Sedan,,,, +07/24/2021,2:30,BROOKLYN,11207,40.66006,-73.89389,"(40.66006, -73.89389)",,,679 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4439868,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/23/2021,9:00,BRONX,10457,40.845238,-73.89077,"(40.845238, -73.89077)",,,709 EAST TREMONT AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440635,E-Bike,Sedan,,, +07/24/2021,12:40,BROOKLYN,11210,40.62827,-73.941376,"(40.62827, -73.941376)",,,1838 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440791,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,4:40,BROOKLYN,11212,40.655273,-73.92272,"(40.655273, -73.92272)",,,421 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4439968,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,17:25,BROOKLYN,11214,40.612213,-73.99718,"(40.612213, -73.99718)",77 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440089,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/21/2021,8:51,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4440723,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,23:15,BROOKLYN,11238,40.67536,-73.969696,"(40.67536, -73.969696)",VANDERBILT AVENUE,PLAZA STREET EAST,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440666,Sedan,Bike,,, +06/18/2021,17:15,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440577,Sedan,Sedan,,, +07/24/2021,14:35,MANHATTAN,10019,40.762817,-73.981575,"(40.762817, -73.981575)",,,126 WEST 53 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440852,Sedan,Sedan,,, +07/24/2021,18:55,,,40.85206,-73.82664,"(40.85206, -73.82664)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440100,Sedan,Sedan,,, +07/20/2021,10:00,,,40.64882,-74.00288,"(40.64882, -74.00288)",41 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440797,Sedan,Box Truck,,, +07/24/2021,13:45,,,40.581516,-73.96734,"(40.581516, -73.96734)",WEST AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4440274,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/10/2021,21:30,BRONX,10473,40.80934,-73.855316,"(40.80934, -73.855316)",SOUND VIEW AVENUE,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4440583,Sedan,Sedan,Sedan,, +07/24/2021,21:45,BROOKLYN,11210,40.630035,-73.9356,"(40.630035, -73.9356)",,,4210 AVENUE I,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440072,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,19:40,,,40.757183,-73.85503,"(40.757183, -73.85503)",114 STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4440017,Station Wagon/Sport Utility Vehicle,Minibike,,, +07/24/2021,11:00,,,40.62357,-74.13836,"(40.62357, -74.13836)",,,21 MARIANNE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440625,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,8:55,BRONX,10473,40.81886,-73.866234,"(40.81886, -73.866234)",,,661 ROSEDALE AVENUE,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4440642,Sedan,Sedan,,, +07/24/2021,23:05,,,40.81792,-73.9307,"(40.81792, -73.9307)",EXTERIOR STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440381,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,5:23,,,40.752228,-73.93911,"(40.752228, -73.93911)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440118,Van,Sedan,,, +07/21/2021,10:46,BROOKLYN,11234,40.637577,-73.92593,"(40.637577, -73.92593)",KINGS HIGHWAY,PRESTON COURT,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440806,Sedan,Flat Bed,,, +07/24/2021,2:00,STATEN ISLAND,10308,40.551563,-74.1453,"(40.551563, -74.1453)",AMBOY ROAD,GREAT KILLS ROAD,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4440219,Sedan,Sedan,,, +07/23/2021,12:15,BRONX,10472,40.831097,-73.87689,"(40.831097, -73.87689)",,,1246 MANOR AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4440673,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,14:30,MANHATTAN,10035,40.801567,-73.94157,"(40.801567, -73.94157)",,,1707 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440595,Motorcycle,,,, +07/19/2021,14:23,MANHATTAN,10013,40.720432,-74.00675,"(40.720432, -74.00675)",,,16 ERICSSON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440727,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,18:00,QUEENS,11694,40.584606,-73.82159,"(40.584606, -73.82159)",,,234 BEACH 100 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440256,Sedan,,,, +07/07/2021,12:30,,,40.68005,-73.94327,"(40.68005, -73.94327)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4440601,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/24/2021,1:25,,,40.773018,-73.952194,"(40.773018, -73.952194)",EAST 80 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4439857,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,1:42,BROOKLYN,11217,40.677998,-73.97306,"(40.677998, -73.97306)",FLATBUSH AVENUE,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440662,Taxi,Sedan,,, +07/20/2021,19:20,BRONX,10472,40.829685,-73.86777,"(40.829685, -73.86777)",GLEASON AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440626,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,22:55,QUEENS,11101,40.74255,-73.93116,"(40.74255, -73.93116)",34 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440047,Sedan,Sedan,,, +07/24/2021,20:59,MANHATTAN,10021,40.77039,-73.954124,"(40.77039, -73.954124)",1 AVENUE,EAST 76 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440457,Sedan,Bike,,, +07/24/2021,0:44,,,40.609356,-74.01523,"(40.609356, -74.01523)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4439953,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,21:45,,,40.84046,-73.88596,"(40.84046, -73.88596)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440438,Sedan,Sedan,,, +07/21/2021,14:35,,,40.83232,-73.87395,"(40.83232, -73.87395)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4440646,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +07/23/2021,7:45,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",111 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440579,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,9:42,QUEENS,11370,40.76837,-73.889595,"(40.76837, -73.889595)",,,22-15 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440145,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,19:15,MANHATTAN,10019,40.762527,-73.98967,"(40.762527, -73.98967)",,,709 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +07/24/2021,6:15,BROOKLYN,11220,40.644768,-74.00708,"(40.644768, -74.00708)",,,4811 6 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440181,Sedan,Sedan,,, +07/22/2021,19:10,BROOKLYN,11208,40.67994,-73.88468,"(40.67994, -73.88468)",FULTON STREET,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440547,Sedan,Bike,,, +07/24/2021,2:09,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4440322,Hopper,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/24/2021,13:33,BRONX,10453,40.85739,-73.909706,"(40.85739, -73.909706)",,,2155 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439990,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/24/2021,17:30,,,40.736412,-73.74183,"(40.736412, -73.74183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4440014,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,19:10,BRONX,10459,40.823208,-73.888954,"(40.823208, -73.888954)",,,1000 ALDUS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440692,Sedan,Sedan,,, +07/24/2021,1:01,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4439918,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,12:00,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440678,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,16:20,,,40.71576,-73.74655,"(40.71576, -73.74655)",JAMAICA AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440344,Sedan,Sedan,,, +07/24/2021,22:24,,,40.69977,-73.98294,"(40.69977, -73.98294)",GOLD STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4440080,Sedan,,,, +07/22/2021,22:47,BROOKLYN,11232,40.654133,-74.01169,"(40.654133, -74.01169)",2 AVENUE,41 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4440802,Station Wagon/Sport Utility Vehicle,Moped,,, +07/24/2021,17:10,BROOKLYN,11238,40.675755,-73.97143,"(40.675755, -73.97143)",FLATBUSH AVENUE,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440655,Sedan,,,, +07/22/2021,19:10,,,40.81734,-73.80609,"(40.81734, -73.80609)",HARDING AVENUE,THROGS NECK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440738,Sedan,Sedan,,, +07/24/2021,7:00,,,40.74254,-73.82631,"(40.74254, -73.82631)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4439995,Sedan,,,, +07/24/2021,22:15,,,40.740448,-73.97732,"(40.740448, -73.97732)",EAST 28 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440020,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,9:34,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440565,Sedan,Box Truck,,, +07/24/2021,22:00,BRONX,10469,40.87686,-73.85976,"(40.87686, -73.85976)",BRONXWOOD AVENUE,TILDEN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4440516,Sedan,E-Scooter,,, +07/24/2021,21:30,BROOKLYN,11229,40.595543,-73.94095,"(40.595543, -73.94095)",,,3573 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440532,Pick-up Truck,,,, +07/24/2021,15:47,MANHATTAN,10010,40.742123,-73.99097,"(40.742123, -73.99097)",,,40 WEST 23 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440807,Sedan,,,, +07/24/2021,2:57,BROOKLYN,11236,40.636227,-73.88595,"(40.636227, -73.88595)",EAST 102 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4439904,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,14:40,QUEENS,11429,40.707962,-73.72908,"(40.707962, -73.72908)",227 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440192,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,12:15,MANHATTAN,10024,40.787045,-73.97759,"(40.787045, -73.97759)",BROADWAY,WEST 84 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440828,Sedan,Taxi,,, +07/24/2021,15:25,QUEENS,11413,40.66534,-73.743935,"(40.66534, -73.743935)",SOUTH CONDUIT AVENUE,232 STREET,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4439947,Pick-up Truck,Sedan,,, +07/15/2021,5:47,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4440826,Sedan,Sedan,Sedan,, +07/24/2021,21:37,BRONX,10455,,,,ST ANNS AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440379,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,8:55,BROOKLYN,11211,40.714073,-73.95104,"(40.714073, -73.95104)",,,525 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4439895,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/24/2021,1:30,MANHATTAN,10033,40.851093,-73.93244,"(40.851093, -73.93244)",SAINT NICHOLAS AVENUE,WEST 184 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4440026,Sedan,,,, +07/24/2021,16:50,BRONX,10464,40.853863,-73.7904,"(40.853863, -73.7904)",,,565 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440484,Van,Sedan,,, +07/24/2021,3:39,BROOKLYN,11236,40.641727,-73.907646,"(40.641727, -73.907646)",REMSEN AVENUE,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,,,,,,4440765,Sedan,,,, +07/24/2021,22:05,MANHATTAN,10002,40.71235,-73.97861,"(40.71235, -73.97861)",,,498 CHERRY STREET,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4440313,Sedan,Ambulance,,, +07/24/2021,17:50,BRONX,10453,40.85447,-73.91008,"(40.85447, -73.91008)",HARRISON AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439985,AMBULANCE,Sedan,,, +07/18/2021,14:00,BRONX,10472,40.827023,-73.88167,"(40.827023, -73.88167)",,,1150 COLGATE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440641,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,11:03,,,40.60805,-74.15736,"(40.60805, -74.15736)",VICTORY BOULEVARD,MORANI STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4440607,Sedan,Sedan,Sedan,, +07/24/2021,12:45,,,40.835396,-73.92031,"(40.835396, -73.92031)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440092,Sedan,Sedan,,, +07/24/2021,7:56,QUEENS,11372,40.74854,-73.87527,"(40.74854, -73.87527)",,,91-08 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440065,Sedan,Road sweep,,, +07/24/2021,14:25,MANHATTAN,10013,40.718708,-74.000946,"(40.718708, -74.000946)",,,262 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440570,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,18:24,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",EAST 120 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4440589,Sedan,Moped,,, +07/24/2021,21:15,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4440101,Sedan,Sedan,,, +07/23/2021,19:15,BROOKLYN,11220,40.6415,-74.02411,"(40.6415, -74.02411)",,,211 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440792,Sedan,,,, +07/24/2021,9:50,BROOKLYN,11226,40.64193,-73.95053,"(40.64193, -73.95053)",,,353 EAST 28 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439970,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,19:49,QUEENS,11416,40.68501,-73.85984,"(40.68501, -73.85984)",,,81-02 ATLANTIC AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4440725,Bike,Sedan,,, +07/24/2021,14:54,BRONX,10461,40.847004,-73.84473,"(40.847004, -73.84473)",,,1720 EASTCHESTER ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4439932,Flat Bed,,,, +07/24/2021,14:30,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440650,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,20:25,BRONX,10467,40.883633,-73.88517,"(40.883633, -73.88517)",WEST GUN HILL ROAD,WEST MOSHOLU PARKWAY NORTH,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440428,Taxi,E-Bike,,, +07/22/2021,16:41,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440858,Sedan,,,, +07/24/2021,10:23,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,9,0,0,0,0,0,9,0,Following Too Closely,Unspecified,,,,4440539,Bus,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,20:43,,,,,,LINDEN PLACE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440002,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,17:05,BROOKLYN,11236,40.63701,-73.91495,"(40.63701, -73.91495)",EAST 80 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440149,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,14:52,BRONX,10462,40.83645,-73.85223,"(40.83645, -73.85223)",,,1500 CASTLE HILL AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440471,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,9:30,,,40.58557,-73.969284,"(40.58557, -73.969284)",MURDOCK COURT,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440271,Sedan,Sedan,,, +07/24/2021,0:04,,,40.60579,-74.12092,"(40.60579, -74.12092)",,,800 MANOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4439926,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,6:00,BROOKLYN,11207,40.656452,-73.895226,"(40.656452, -73.895226)",,,400 DE WITT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4439869,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,22:00,QUEENS,11101,40.74854,-73.94964,"(40.74854, -73.94964)",11 STREET,44 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440034,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,23:15,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4440686,Sedan,Sedan,,, +07/24/2021,23:50,MANHATTAN,10025,40.794052,-73.970375,"(40.794052, -73.970375)",WEST 96 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440167,Sedan,E-Bike,,, +07/24/2021,15:30,,,40.704544,-73.727234,"(40.704544, -73.727234)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440009,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:01,BRONX,10472,40.82923,-73.87551,"(40.82923, -73.87551)",STRATFORD AVENUE,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440611,Sedan,,,, +07/21/2021,1:05,,,,,,STORY AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4440636,,,,, +07/21/2021,16:35,QUEENS,11412,40.701588,-73.74865,"(40.701588, -73.74865)",FRANCIS LEWIS BOULEVARD,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440574,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/23/2021,9:00,BRONX,10472,40.824726,-73.878296,"(40.824726, -73.878296)",,,1037 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440667,Sedan,Sedan,,, +07/24/2021,21:00,MANHATTAN,10019,40.76432,-73.9772,"(40.76432, -73.9772)",AVENUE OF THE AMERICAS,WEST 57 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440853,Sedan,Bike,,, +07/24/2021,9:00,BROOKLYN,11218,40.643745,-73.97009,"(40.643745, -73.97009)",BEVERLEY ROAD,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440055,Sedan,Sedan,,, +07/19/2021,15:20,MANHATTAN,10035,40.805042,-73.936935,"(40.805042, -73.936935)",EAST 126 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440584,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,19:12,BRONX,10459,40.818848,-73.894936,"(40.818848, -73.894936)",TIFFANY STREET,FOX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440683,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,19:00,,,40.690483,-73.93954,"(40.690483, -73.93954)",VAN BUREN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440354,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,18:50,BRONX,10451,40.821175,-73.92574,"(40.821175, -73.92574)",GRAND CONCOURSE,EAST 153 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Other Vehicular,,,,4440715,Station Wagon/Sport Utility Vehicle,Bike,,, +07/21/2021,13:20,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440768,Dump,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,3:33,BROOKLYN,11214,40.60958,-74.0065,"(40.60958, -74.0065)",86 STREET,BAY 13 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4439954,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/24/2021,14:53,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4440465,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,14:10,BROOKLYN,11217,40.68158,-73.976974,"(40.68158, -73.976974)",,,50 5 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4440654,Box Truck,Motorcycle,,, +07/24/2021,5:15,QUEENS,11420,40.68005,-73.80795,"(40.68005, -73.80795)",,,115-14 133 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4440323,Sedan,,,, +07/24/2021,3:10,,,40.635803,-74.017624,"(40.635803, -74.017624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439944,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,18:30,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,18:00,BROOKLYN,11208,40.679005,-73.86423,"(40.679005, -73.86423)",LIBERTY AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440543,Sedan,Sedan,,, +07/24/2021,19:18,BROOKLYN,11235,40.578117,-73.941666,"(40.578117, -73.941666)",ORIENTAL BOULEVARD,KENSINGTON STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4440534,Sedan,Sedan,,, +07/23/2021,9:07,BROOKLYN,11217,40.67573,-73.9746,"(40.67573, -73.9746)",7 AVENUE,LINCOLN PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440668,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,14:27,QUEENS,11101,40.75747,-73.93911,"(40.75747, -73.93911)",38 AVENUE,21 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,17:15,,,40.71164,-73.83591,"(40.71164, -73.83591)",UNION TURNPIKE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440580,Sedan,,,, +07/22/2021,18:34,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4440801,Tractor Truck Diesel,Sedan,,, +07/24/2021,14:15,QUEENS,11102,40.77187,-73.91481,"(40.77187, -73.91481)",32 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440113,Sedan,Box Truck,,, +01/20/2022,21:00,QUEENS,11412,40.69317,-73.75688,"(40.69317, -73.75688)",LINDEN BOULEVARD,195 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4496084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,23:58,,,40.686844,-73.836945,"(40.686844, -73.836945)",101 AVENUE,106 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4440628,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/24/2021,6:30,MANHATTAN,10002,40.71787,-73.98858,"(40.71787, -73.98858)",,,77 ESSEX STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4439865,Sedan,,,, +07/22/2021,22:55,BRONX,10474,40.808437,-73.88682,"(40.808437, -73.88682)",MANIDA STREET,EAST BAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440691,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,19:50,BROOKLYN,11213,40.66372,-73.93161,"(40.66372, -73.93161)",,,436 UTICA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4440191,Bus,,,, +07/24/2021,6:30,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4440258,Sedan,Sedan,Sedan,, +07/12/2021,21:00,,,40.625004,-74.14762,"(40.625004, -74.14762)",,,1761 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440846,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/22/2021,8:44,BRONX,10462,40.833908,-73.84184,"(40.833908, -73.84184)",SEABURY AVENUE,ELLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440663,Pick-up Truck,School Bus,,, +07/24/2021,10:30,QUEENS,11101,40.745068,-73.936356,"(40.745068, -73.936356)",THOMSON AVENUE,30 PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,22:00,BROOKLYN,11208,40.68632,-73.869095,"(40.68632, -73.869095)",NICHOLS AVENUE,RIDGEWOOD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4440548,Sedan,Sedan,Sedan,, +07/24/2021,14:42,,,40.689137,-73.990715,"(40.689137, -73.990715)",BOERUM PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440077,Station Wagon/Sport Utility Vehicle,Bus,,, +07/23/2021,7:30,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,18:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4440809,Sedan,Sedan,,, +07/24/2021,14:00,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440224,Sedan,Sedan,,, +07/24/2021,14:15,BRONX,10467,40.882153,-73.878136,"(40.882153, -73.878136)",BAINBRIDGE AVENUE,EAST 211 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4439989,Sedan,Sedan,,, +07/24/2021,3:25,,,40.797836,-73.96946,"(40.797836, -73.96946)",WEST 101 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4439903,Taxi,Moped,,, +07/24/2021,15:16,MANHATTAN,10027,40.812145,-73.946014,"(40.812145, -73.946014)",7 AVENUE,WEST 130 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4440447,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/20/2021,11:09,BROOKLYN,11230,40.613163,-73.95719,"(40.613163, -73.95719)",AVENUE O,EAST 17 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4440566,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,1:40,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4440022,Tractor Truck Gasoline,Tractor Truck Gasoline,,, +07/24/2021,20:45,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",BROOKVILLE BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440013,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,12:00,BRONX,10470,40.89889,-73.86503,"(40.89889, -73.86503)",,,4300 MARTHA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440517,Sedan,,,, +07/22/2021,15:30,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440672,Sedan,Sedan,,, +07/24/2021,19:45,,,40.61467,-73.92809,"(40.61467, -73.92809)",FLATBUSH AVENUE,FILLMORE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440071,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,7:50,BROOKLYN,11220,40.644253,-73.99987,"(40.644253, -73.99987)",,,802 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440136,Pick-up Truck,,,, +07/23/2021,23:28,,,40.83863,-73.93348,"(40.83863, -73.93348)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4440645,Motorcycle,Motorcycle,,, +07/20/2021,11:30,,,40.62528,-74.13548,"(40.62528, -74.13548)",BURNSIDE AVENUE,FOREST AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4440602,Bike,Sedan,,, +07/24/2021,9:18,,,40.643425,-74.01207,"(40.643425, -74.01207)",5 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4440796,Bike,,,, +07/14/2021,16:45,,,40.774155,-73.984886,"(40.774155, -73.984886)",WEST 65 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440827,Sedan,,,, +07/24/2021,14:14,BROOKLYN,11232,40.65476,-74.00724,"(40.65476, -74.00724)",,,976 3 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440179,Bike,Sedan,,, +07/23/2021,16:10,MANHATTAN,10019,40.760456,-73.98374,"(40.760456, -73.98374)",WEST 49 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,,,,4440865,Box Truck,Sedan,,, +07/24/2021,10:00,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CONEY ISLAND AVENUE,CATON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,12:22,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440737,Sedan,Sedan,,, +07/08/2021,18:55,,,40.834644,-73.865036,"(40.834644, -73.865036)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4440585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,13:41,MANHATTAN,10029,40.796005,-73.93542,"(40.796005, -73.93542)",EAST 116 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440594,Taxi,Sedan,,, +07/23/2021,10:15,,,,,,MANHATTAN BR LOWER,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440608,Moped,,,, +07/24/2021,18:43,,,40.842922,-73.90957,"(40.842922, -73.90957)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4440093,Station Wagon/Sport Utility Vehicle,Moped,,, +01/20/2022,9:44,,,40.80777,-73.94549,"(40.80777, -73.94549)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,Oversized Vehicle,,,,,4496606,Bulk Agriculture,,,, +01/21/2022,23:50,,,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496318,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,15:25,,,40.657093,-73.95026,"(40.657093, -73.95026)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495909,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,8:00,MANHATTAN,10036,40.762207,-73.991776,"(40.762207, -73.991776)",,,450 WEST 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496227,Sedan,,,, +01/21/2022,7:55,,,40.597477,-73.986465,"(40.597477, -73.986465)",86 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496496,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,11:12,,,40.87987,-73.842026,"(40.87987, -73.842026)",BOSTON ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4496467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,6:50,,,,,,PELHAM PARKWAY,STILLWELL AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4495892,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/21/2021,13:20,BRONX,10455,40.819542,-73.91353,"(40.819542, -73.91353)",3 AVENUE,EAST 155 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4496357,Sedan,Taxi,,, +01/20/2022,14:45,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4496052,Sedan,,,, +01/21/2022,14:30,MANHATTAN,10033,40.8453,-73.93827,"(40.8453, -73.93827)",WEST 174 STREET,WADSWORTH AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4496684,Sedan,Sedan,,, +01/16/2022,1:16,BROOKLYN,11237,40.692974,-73.90811,"(40.692974, -73.90811)",HALSEY STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4496733,Sedan,Sedan,,, +01/21/2022,10:45,QUEENS,11365,40.728104,-73.80877,"(40.728104, -73.80877)",,,160-11 72 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496423,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,2:07,,,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/17/2022,19:56,STATEN ISLAND,10308,40.553715,-74.16032,"(40.553715, -74.16032)",ARMSTRONG AVENUE,GENESEE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496372,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/20/2022,16:26,QUEENS,11426,40.731728,-73.717865,"(40.731728, -73.717865)",,,248-05 86 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496070,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,6:30,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495916,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,23:15,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496232,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,21:00,MANHATTAN,10003,40.735294,-73.98282,"(40.735294, -73.98282)",,,325 2 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4496542,Bike,Bike,,, +01/20/2022,12:15,BROOKLYN,11211,40.714455,-73.93502,"(40.714455, -73.93502)",,,1027 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496766,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,21:03,,,40.750443,-73.96599,"(40.750443, -73.96599)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496409,Sedan,Sedan,,, +01/15/2022,13:00,BROOKLYN,11225,40.658337,-73.96117,"(40.658337, -73.96117)",,,24 CHESTER COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4496183,Sedan,,,, +01/19/2022,0:34,BROOKLYN,11235,40.586075,-73.94403,"(40.586075, -73.94403)",,,4750 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495809,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,21:50,BROOKLYN,11211,40.715305,-73.96044,"(40.715305, -73.96044)",METROPOLITAN AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496168,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,8:05,MANHATTAN,10017,40.754032,-73.97206,"(40.754032, -73.97206)",,,757 3 AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495774,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +01/20/2022,23:32,BROOKLYN,11225,40.660027,-73.96061,"(40.660027, -73.96061)",FLATBUSH AVENUE,BEEKMAN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496121,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,16:35,,,40.79423,-73.94695,"(40.79423, -73.94695)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4495996,Van,DIRTBIKE,,, +01/09/2022,23:15,MANHATTAN,10040,40.856632,-73.927864,"(40.856632, -73.927864)",,,578 WEST 193 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496658,Sedan,Sedan,,, +01/19/2022,14:45,,,40.727295,-73.81281,"(40.727295, -73.81281)",KISSENA BOULEVARD,73 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4496215,,,,, +01/21/2022,12:00,QUEENS,11369,40.760746,-73.862434,"(40.760746, -73.862434)",ASTORIA BOULEVARD,COUCH PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4496254,Sedan,Sedan,Taxi,, +01/20/2022,13:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,15:30,BRONX,10466,40.883556,-73.84974,"(40.883556, -73.84974)",LACONIA AVENUE,EAST 224 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495837,Sedan,Motorcycle,,, +01/19/2022,17:30,BRONX,10453,40.856785,-73.916176,"(40.856785, -73.916176)",,,1981 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495932,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +01/19/2022,20:56,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4496620,Bike,,,, +01/10/2022,10:08,MANHATTAN,10022,40.75809,-73.96244,"(40.75809, -73.96244)",,,410 EAST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496265,Box Truck,,,, +01/20/2022,12:20,,,40.706013,-74.00882,"(40.706013, -74.00882)",HANOVER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496013,Box Truck,Sedan,,, +01/19/2022,9:20,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495969,Box Truck,CARGO TRAI,,, +01/21/2022,7:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496282,Sedan,Flat Bed,,, +01/19/2022,13:00,QUEENS,11413,40.66106,-73.75423,"(40.66106, -73.75423)",,,145-52 226 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4495770,Sedan,,,, +01/19/2022,6:24,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495694,Sedan,Sedan,,, +01/19/2022,3:04,,,,,,GRAND CENTRAL PARKWAY,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4495872,Sedan,,,, +01/21/2022,23:44,QUEENS,11102,40.771027,-73.93425,"(40.771027, -73.93425)",30 ROAD,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496511,Sedan,,,, +01/19/2022,8:45,BROOKLYN,11233,40.678444,-73.914055,"(40.678444, -73.914055)",,,2094 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495940,Sedan,Sedan,,, +01/19/2022,19:00,BROOKLYN,11235,40.58331,-73.95202,"(40.58331, -73.95202)",,,1625 EMMONS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4495842,Sedan,Sedan,,, +01/21/2022,10:55,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4496242,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,20:15,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4496088,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,9:06,,,40.666603,-73.95655,"(40.666603, -73.95655)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/09/2022,4:39,BRONX,10463,40.883743,-73.89831,"(40.883743, -73.89831)",,,3626 BAILEY AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496400,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,12:35,,,40.70243,-73.9328,"(40.70243, -73.9328)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496056,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,15:41,,,40.777905,-73.98209,"(40.777905, -73.98209)",WEST 71 STREET,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4496679,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,20:00,,,40.68375,-73.81692,"(40.68375, -73.81692)",109 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496353,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,19:00,QUEENS,11429,40.710747,-73.75066,"(40.710747, -73.75066)",104 AVENUE,208 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473158,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,10:30,BROOKLYN,11203,40.661217,-73.93141,"(40.661217, -73.93141)",,,506 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4473274,Sedan,Sedan,,, +11/01/2021,15:05,BRONX,10459,40.831474,-73.89018,"(40.831474, -73.89018)",,,1301 HOE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473212,Bus,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,6:00,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473901,Sedan,Sedan,,, +11/01/2021,15:05,BROOKLYN,11207,40.67567,-73.89785,"(40.67567, -73.89785)",SHEFFIELD AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4473874,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,18:30,,,40.753304,-73.912575,"(40.753304, -73.912575)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,16:49,QUEENS,11691,40.601734,-73.74902,"(40.601734, -73.74902)",,,14-03 GATEWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4473623,Pick-up Truck,,,, +11/01/2021,3:15,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4472793,Sedan,,,, +11/01/2021,11:00,BROOKLYN,11235,40.576534,-73.95283,"(40.576534, -73.95283)",,,200 WEST END AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473192,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,4:00,BRONX,10471,40.900223,-73.907616,"(40.900223, -73.907616)",,,5245 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473912,Dump,,,, +11/01/2021,6:27,BROOKLYN,11235,40.583668,-73.94843,"(40.583668, -73.94843)",OCEAN AVENUE,EMMONS AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473343,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,11:30,,,40.82967,-73.931076,"(40.82967, -73.931076)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473235,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,19:30,BRONX,10459,40.82661,-73.89357,"(40.82661, -73.89357)",,,933 EAST 167 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,21:45,BRONX,10463,,,,VANCORTLANDT PARK SOUTH,PUTNAM AVENUE WEST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473706,Sedan,Sedan,,, +10/29/2021,13:45,QUEENS,11361,40.75759,-73.78108,"(40.75759, -73.78108)",NORTHERN BOULEVARD,202 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,Unspecified,Unspecified,,4473779,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +11/01/2021,4:55,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472919,Sedan,,,, +11/01/2021,23:50,BROOKLYN,11223,40.60667,-73.972595,"(40.60667, -73.972595)",MC DONALD AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4473244,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,17:24,,,40.766685,-73.892136,"(40.766685, -73.892136)",77 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473644,Sedan,E-Scooter,,, +10/28/2021,16:57,MANHATTAN,10039,40.823196,-73.93792,"(40.823196, -73.93792)",,,2537 7 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4473692,Sedan,,,, +11/01/2021,10:57,,,40.878475,-73.851395,"(40.878475, -73.851395)",FISH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473501,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,10:00,BRONX,10466,,,,,,671 EAST 225 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473928,Sedan,,,, +11/01/2021,6:00,QUEENS,11377,40.7515,-73.90276,"(40.7515, -73.90276)",59 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4472996,Sedan,Sedan,,, +11/01/2021,10:50,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4473139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,8:30,BRONX,10458,40.86475,-73.8889,"(40.86475, -73.8889)",EAST 195 STREET,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473280,Sedan,,,, +10/30/2021,21:40,MANHATTAN,10027,40.81764,-73.95686,"(40.81764, -73.95686)",,,3260 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473888,Box Truck,,,, +11/01/2021,22:55,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,197 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,,,,,4473303,Sedan,,,, +11/01/2021,23:55,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473352,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,9:15,BROOKLYN,11219,40.63283,-74.00516,"(40.63283, -74.00516)",60 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,12:26,BROOKLYN,11225,40.661846,-73.95702,"(40.661846, -73.95702)",,,1799 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473105,Motorcycle,Sedan,,, +11/01/2021,8:37,MANHATTAN,10037,40.809875,-73.93674,"(40.809875, -73.93674)",,,58 EAST 132 STREET,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4473048,Sedan,,,, +11/01/2021,20:18,BROOKLYN,11234,40.61877,-73.929794,"(40.61877, -73.929794)",AVENUE N,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473738,Sedan,Sedan,,, +11/01/2021,0:41,MANHATTAN,10024,40.779476,-73.97358,"(40.779476, -73.97358)",CENTRAL PARK WEST,WEST 77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/28/2021,16:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4473809,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +11/01/2021,4:15,QUEENS,11369,40.76255,-73.87813,"(40.76255, -73.87813)",,,26-12 91 STREET,0,0,0,0,0,0,0,0,,,,,,4473090,,,,, +11/01/2021,8:15,QUEENS,11373,40.743153,-73.88791,"(40.743153, -73.88791)",,,42-45 77 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4473057,Sedan,,,, +10/29/2021,21:33,BRONX,10463,40.88205,-73.90442,"(40.88205, -73.90442)",,,3241 KINGSBRIDGE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4473669,Sedan,,,, +11/01/2021,8:40,BROOKLYN,11234,40.60952,-73.92736,"(40.60952, -73.92736)",AVENUE T,RYDER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473129,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,6:41,,,40.61632,-74.15936,"(40.61632, -74.15936)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,8:45,,,40.636597,-74.13293,"(40.636597, -74.13293)",,,161 PARK AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473379,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,7:15,BRONX,10467,40.86795,-73.8705,"(40.86795, -73.8705)",BRONX PARK EAST,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473225,Sedan,Sedan,,, +11/01/2021,14:35,MANHATTAN,10014,40.736965,-74.00996,"(40.736965, -74.00996)",WEST STREET,BETHUNE STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4473253,Bike,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,7:38,,,40.888615,-73.91019,"(40.888615, -73.91019)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473897,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,8:00,BROOKLYN,11214,40.60981,-73.99471,"(40.60981, -73.99471)",,,1946 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473925,Sedan,,,, +11/01/2021,15:04,BRONX,10463,40.882114,-73.91101,"(40.882114, -73.91101)",JOHNSON AVENUE,WEST 231 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473450,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,15:49,MANHATTAN,10029,40.79839,-73.94106,"(40.79839, -73.94106)",,,159 EAST 116 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4473316,Box Truck,Sedan,,, +11/01/2021,9:20,MANHATTAN,10023,40.771053,-73.98715,"(40.771053, -73.98715)",WEST 60 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4473406,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/01/2021,8:02,QUEENS,11412,40.701588,-73.74865,"(40.701588, -73.74865)",FRANCIS LEWIS BOULEVARD,MURDOCK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473034,Sedan,,,, +11/01/2021,4:22,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",SOUTHERN BOULEVARD,EAST 163 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4473117,Sedan,Sedan,,, +11/01/2021,21:06,QUEENS,11411,40.68884,-73.744446,"(40.68884, -73.744446)",121 AVENUE,219 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473198,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:41,MANHATTAN,10011,40.742138,-73.99864,"(40.742138, -73.99864)",,,210 WEST 19 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4473727,Sedan,Sedan,Sedan,Sedan, +10/31/2021,22:00,STATEN ISLAND,10308,40.54996,-74.15085,"(40.54996, -74.15085)",AMBOY ROAD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473822,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,21:45,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473299,Sedan,,,, +10/21/2021,22:43,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",CEDAR AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473617,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,19:00,QUEENS,11378,40.723698,-73.90859,"(40.723698, -73.90859)",,,56-64 59 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473739,Sedan,,,, +11/01/2021,13:30,QUEENS,11377,40.734882,-73.909966,"(40.734882, -73.909966)",,,52-35 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473141,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,20:55,STATEN ISLAND,10310,40.63806,-74.11766,"(40.63806, -74.11766)",BROADWAY,WAYNE STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473790,Sedan,Sedan,Sedan,, +11/01/2021,12:10,MANHATTAN,10016,40.74481,-73.97992,"(40.74481, -73.97992)",,,165 EAST 32 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473172,Moped,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,20:48,,,40.703213,-73.90133,"(40.703213, -73.90133)",68 ROAD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473677,Sedan,,,, +11/01/2021,7:43,,,40.877815,-73.868126,"(40.877815, -73.868126)",EAST GUN HILL ROAD,OLINVILLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473074,Sedan,Sedan,,, +11/01/2021,18:00,,,40.678596,-73.882416,"(40.678596, -73.882416)",ATLANTIC AVENUE,ESSEX STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473576,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,18:20,,,40.598606,-73.97893,"(40.598606, -73.97893)",WEST 7 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473332,Sedan,Sedan,,, +11/01/2021,19:10,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4473358,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/01/2021,8:40,,,,,,,,256B MASON AVENUE,1,0,1,0,0,0,0,0,,,,,,4473814,,,,, +10/30/2021,15:00,BROOKLYN,11208,40.66717,-73.88086,"(40.66717, -73.88086)",LINWOOD STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473569,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,13:40,BRONX,10467,,,,,,718 EAST 219 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4473664,Bike,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,19:11,BRONX,10454,40.804962,-73.923065,"(40.804962, -73.923065)",,,102 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473220,Sedan,,,, +10/27/2021,16:36,QUEENS,11103,40.758316,-73.91069,"(40.758316, -73.91069)",31 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473634,Station Wagon/Sport Utility Vehicle,Moped,,, +11/01/2021,10:47,QUEENS,11368,40.742844,-73.85122,"(40.742844, -73.85122)",111 STREET,54 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473247,Sedan,,,, +10/30/2021,10:23,BRONX,10463,40.888367,-73.90867,"(40.888367, -73.90867)",,,521 WEST 238 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473905,Sedan,,,, +11/01/2021,12:00,BROOKLYN,11209,40.62149,-74.02622,"(40.62149, -74.02622)",86 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473182,Bike,Bus,,, +10/21/2021,18:30,BRONX,10469,,,,BURKE AVENUE,LURTING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473916,,,,, +11/01/2021,9:24,QUEENS,11421,40.684692,-73.86497,"(40.684692, -73.86497)",,,92-35 75 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4473290,Sedan,Sedan,Sedan,Sedan, +10/31/2021,1:50,QUEENS,11374,40.731144,-73.86937,"(40.731144, -73.86937)",BOOTH STREET,ELIOT AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4473714,Sedan,,,, +11/01/2021,10:33,,,40.690357,-73.989746,"(40.690357, -73.989746)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473148,Sedan,Sedan,,, +10/29/2021,18:20,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,View Obstructed/Limited,,,,4473594,Sedan,,,, +10/26/2021,21:15,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4473747,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/01/2021,14:45,BROOKLYN,11212,40.66785,-73.92103,"(40.66785, -73.92103)",EAST NEW YORK AVENUE,TAPSCOTT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4473263,Station Wagon/Sport Utility Vehicle,Convertible,Sedan,, +11/01/2021,16:35,BROOKLYN,11235,40.58634,-73.93145,"(40.58634, -73.93145)",KNAPP STREET,HARKNESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473193,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,5:01,,,40.57698,-73.981575,"(40.57698, -73.981575)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473264,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,17:25,,,40.835598,-73.9138,"(40.835598, -73.9138)",EAST 169 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473236,,,,, +11/01/2021,3:30,,,40.76943,-73.91025,"(40.76943, -73.91025)",ASTORIA BOULEVARD,STEINWAY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473639,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,0:10,QUEENS,11432,40.71385,-73.77888,"(40.71385, -73.77888)",HILLSIDE AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/12/2021,20:02,QUEENS,11412,40.70314,-73.76007,"(40.70314, -73.76007)",111 AVENUE,196 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4473681,Sedan,Sedan,,, +10/30/2021,20:45,STATEN ISLAND,10310,40.634697,-74.106544,"(40.634697, -74.106544)",CASTLETON AVENUE,BARD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473786,Sedan,Sedan,,, +11/01/2021,9:20,QUEENS,11356,40.78015,-73.84241,"(40.78015, -73.84241)",22 AVENUE,126 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473168,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,15:11,BROOKLYN,11219,40.63562,-73.98432,"(40.63562, -73.98432)",,,4305 15 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473548,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:20,MANHATTAN,10018,40.756767,-73.9984,"(40.756767, -73.9984)",,,515 WEST 37 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4473775,Sedan,Sedan,,, +11/01/2021,17:29,BRONX,10459,40.818768,-73.89867,"(40.818768, -73.89867)",,,831 DAWSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473745,Sedan,,,, +10/28/2021,11:49,,,40.899548,-73.892136,"(40.899548, -73.892136)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473622,Sedan,Sedan,,, +11/01/2021,5:41,BRONX,10466,40.89215,-73.86147,"(40.89215, -73.86147)",,,4125 CARPENTER AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4472920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:40,STATEN ISLAND,10312,40.5308,-74.19286,"(40.5308, -74.19286)",,,11 ANDROVETTE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4473645,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,12:15,MANHATTAN,10002,40.720345,-73.983475,"(40.720345, -73.983475)",,,151 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473145,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/01/2021,3:00,BRONX,10456,40.830986,-73.91139,"(40.830986, -73.91139)",EAST 167 STREET,CLAY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4473237,Taxi,,,, +10/24/2021,4:26,,,40.8854,-73.89723,"(40.8854, -73.89723)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4473694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/01/2021,18:59,,,40.700565,-73.76411,"(40.700565, -73.76411)",112 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473183,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,23:03,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4473489,Sedan,Sedan,,, +10/29/2021,17:08,,,40.850822,-73.90147,"(40.850822, -73.90147)",RYER AVENUE,EAST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473593,Sedan,,,, +11/01/2021,19:15,,,40.83623,-73.90741,"(40.83623, -73.90741)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473213,Sedan,Pick-up Truck,,, +10/29/2021,6:30,BRONX,10471,40.90686,-73.904106,"(40.90686, -73.904106)",RIVERDALE AVENUE,WEST 259 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473875,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,21:15,MANHATTAN,10069,,,,WEST END AVENUE,WEST 63 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,,,4473766,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +10/31/2021,0:46,QUEENS,11385,40.702873,-73.89953,"(40.702873, -73.89953)",CATALPA AVENUE,60 STREET,,1,0,0,0,0,0,0,0,Pavement Slippery,Following Too Closely,,,,4473676,E-Scooter,Sedan,,, +11/01/2021,15:45,MANHATTAN,10075,40.777317,-73.9624,"(40.777317, -73.9624)",,,18 EAST 80 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473909,Sedan,,,, +11/01/2021,8:30,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473073,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,13:18,BROOKLYN,11220,40.63367,-74.01427,"(40.63367, -74.01427)",,,711B 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473092,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,12:00,,,40.599705,-73.99016,"(40.599705, -73.99016)",86 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473322,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,6:59,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4473755,Sedan,Box Truck,,, +11/01/2021,1:05,,,40.755486,-73.82472,"(40.755486, -73.82472)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473164,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,14:20,,,,,,ORCHARD BEACH RD,SHORE RD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440492,Motorcycle,,,, +11/01/2021,4:05,,,40.75458,-73.99915,"(40.75458, -73.99915)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473427,Sedan,Sedan,,, +10/31/2021,21:30,,,40.67132,-73.9281,"(40.67132, -73.9281)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473703,Sedan,,,, +11/01/2021,7:50,,,40.65763,-73.85625,"(40.65763, -73.85625)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4473036,Sedan,Sedan,,, +11/01/2021,22:35,,,40.84497,-73.90247,"(40.84497, -73.90247)",ITTNER PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473271,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,10:20,,,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473333,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,12:30,BROOKLYN,11235,40.592205,-73.93551,"(40.592205, -73.93551)",AVENUE Y,COYLE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473084,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,16:40,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4473197,Sedan,,,, +10/25/2021,3:18,,,,,,FORT INDEPENDENCE STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4473618,Sedan,,,, +11/01/2021,20:29,BRONX,10456,40.82699,-73.909294,"(40.82699, -73.909294)",WASHINGTON AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473662,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,3:51,BROOKLYN,11234,40.618484,-73.92004,"(40.618484, -73.92004)",,,1433 EAST 57 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4473451,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,3:30,QUEENS,11435,40.70678,-73.80898,"(40.70678, -73.80898)",,,148-02 87 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473152,Sedan,,,, +11/01/2021,15:51,BROOKLYN,11221,40.697075,-73.93185,"(40.697075, -73.93185)",BUSHWICK AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473203,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/25/2021,6:28,,,,,,GREENPOINT AVENUE,REVIEW AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473857,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,1:24,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4473820,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,11:55,BROOKLYN,11205,40.693306,-73.96726,"(40.693306, -73.96726)",,,455 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4473729,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,20:00,,,40.739666,-73.79215,"(40.739666, -73.79215)",HORACE HARDING EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4473597,Sedan,Sedan,,, +10/24/2021,18:40,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473797,Sedan,Sedan,,, +11/01/2021,8:00,,,40.846867,-73.90876,"(40.846867, -73.90876)",EAST 175 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4473310,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +11/01/2021,6:00,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4472989,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,18:19,MANHATTAN,10024,40.786022,-73.97623,"(40.786022, -73.97623)",,,489 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473404,Sedan,Tow Truck / Wrecker,,, +11/01/2021,13:10,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473133,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,22:01,,,40.58502,-74.14763,"(40.58502, -74.14763)",FOREST HILL ROAD,TRAVIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473924,Sedan,Sedan,,, +11/01/2021,20:34,BROOKLYN,11226,40.65249,-73.95267,"(40.65249, -73.95267)",ROGERS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4473342,Sedan,Sedan,Ambulance,, +11/01/2021,5:05,BRONX,10468,40.86196,-73.910324,"(40.86196, -73.910324)",,,236 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4473279,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/01/2021,19:40,,,40.66807,-73.80789,"(40.66807, -73.80789)",131 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473224,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,21:00,MANHATTAN,10011,40.73539,-73.99828,"(40.73539, -73.99828)",WEST 11 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4473851,Bike,,,, +11/01/2021,1:46,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,2,1,0,0,0,0,2,1,Unsafe Speed,,,,,4473668,Sedan,,,, +12/12/2021,4:45,MANHATTAN,10019,40.762238,-73.9763,"(40.762238, -73.9763)",,,40 WEST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486077,,,,, +07/25/2021,15:00,,,,,,,,81 WEST DRIVE,1,0,0,0,1,0,0,0,Lost Consciousness,,,,,4440707,E-Bike,,,, +11/01/2021,15:15,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",77 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473252,Pick-up Truck,,,, +10/26/2021,5:37,,,40.669403,-73.94221,"(40.669403, -73.94221)",KINGSTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473604,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +11/01/2021,16:09,,,40.817596,-73.95319,"(40.817596, -73.95319)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473887,Station Wagon/Sport Utility Vehicle,Bus,,, +11/01/2021,14:27,,,,,,COLLEGE POINT BOULEVARD,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473171,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +11/01/2021,21:59,QUEENS,11361,40.766552,-73.77255,"(40.766552, -73.77255)",BELL BOULEVARD,38 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4473435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,10:00,BROOKLYN,11207,40.68102,-73.8934,"(40.68102, -73.8934)",,,79 SUNNYSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4473571,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +11/01/2021,19:45,BROOKLYN,11237,40.701485,-73.91143,"(40.701485, -73.91143)",SAINT NICHOLAS AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473202,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,15:50,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473348,Sedan,Sedan,,, +11/01/2021,2:38,,,40.875,-73.87471,"(40.875, -73.87471)",EAST 207 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4473018,Sedan,Sedan,,, +11/01/2021,9:00,,,40.697716,-73.967735,"(40.697716, -73.967735)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473259,Sedan,Bike,,, +11/01/2021,11:00,BRONX,10472,40.831196,-73.86084,"(40.831196, -73.86084)",,,1223 VIRGINIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,16:15,MANHATTAN,10019,40.76484,-73.98054,"(40.76484, -73.98054)",WEST 56 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473266,Van,Sedan,,, +11/01/2021,0:20,QUEENS,11355,40.74777,-73.815994,"(40.74777, -73.815994)",KISSENA BOULEVARD,OAK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4473167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,16:04,BROOKLYN,11211,40.716484,-73.943016,"(40.716484, -73.943016)",,,413 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473258,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,16:45,BROOKLYN,11219,40.628643,-74.005936,"(40.628643, -74.005936)",11 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473896,Station Wagon/Sport Utility Vehicle,Bike,,, +10/28/2021,5:10,QUEENS,11106,40.761543,-73.92573,"(40.761543, -73.92573)",,,32-55 31 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4473633,Sedan,,,, +11/01/2021,8:40,BRONX,10454,40.80762,-73.916954,"(40.80762, -73.916954)",,,233 SAINT ANNS AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473219,Taxi,Bike,,, +11/01/2021,12:32,,,40.76791,-73.92542,"(40.76791, -73.92542)",30 ROAD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473640,Pick-up Truck,,,, +11/01/2021,1:25,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4472845,Sedan,Sedan,,, +10/29/2021,11:00,BROOKLYN,11204,40.619755,-73.97892,"(40.619755, -73.97892)",21 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473685,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,15:38,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",CHRYSTIE STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473929,E-Scooter,,,, +11/01/2021,13:00,BROOKLYN,11218,40.643677,-73.970726,"(40.643677, -73.970726)",EAST 9 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473538,Taxi,,,, +10/29/2021,22:00,,,40.6293,-74.07661,"(40.6293, -74.07661)",SANDS STREET,BAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473785,Sedan,,,, +10/21/2021,14:59,MANHATTAN,10023,,,,COLUMBUS AVENUE,WEST 60 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473759,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,17:10,BROOKLYN,11203,40.65542,-73.9229,"(40.65542, -73.9229)",REMSEN AVENUE,EAST 58 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473339,Sedan,,,, +11/01/2021,0:50,QUEENS,11372,40.7524,-73.87892,"(40.7524, -73.87892)",,,88-09 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473081,Sedan,Pick-up Truck,,, +11/01/2021,0:00,,,40.86348,-73.90812,"(40.86348, -73.90812)",WEBB AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4473085,Taxi,,,, +11/01/2021,22:55,,,40.691868,-73.863846,"(40.691868, -73.863846)",78 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4473294,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,9:30,QUEENS,11378,,,,FLUSHING AVENUE,61 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4473680,Box Truck,Motorcycle,,, +11/01/2021,5:35,,,40.810287,-73.90172,"(40.810287, -73.90172)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473116,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,22:15,MANHATTAN,10017,40.752686,-73.97905,"(40.752686, -73.97905)",,,50 EAST 42 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473329,Sedan,E-Bike,,, +10/29/2021,0:00,QUEENS,11375,40.726864,-73.85199,"(40.726864, -73.85199)",67 ROAD,102 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473713,Sedan,Sedan,,, +11/01/2021,13:45,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",HOOK CREEK BOULEVARD,SUNRISE HIGHWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473151,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,19:10,,,40.607815,-74.14082,"(40.607815, -74.14082)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,,,,,,4473360,,,,, +10/27/2021,3:18,MANHATTAN,10024,,,,AMSTERDAM AVENUE,81 street,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4473754,Taxi,,,, +11/01/2021,7:50,,,40.679012,-73.74928,"(40.679012, -73.74928)",220 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4473030,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,16:00,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473296,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +11/01/2021,7:53,BROOKLYN,11230,40.615314,-73.95442,"(40.615314, -73.95442)",,,1903 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473354,Sedan,Sedan,,, +11/01/2021,17:40,,,40.768826,-73.86631,"(40.768826, -73.86631)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473423,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,8:00,BROOKLYN,11221,40.69051,-73.91188,"(40.69051, -73.91188)",,,550 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473037,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,6:01,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473109,Sedan,Sedan,,, +10/29/2021,5:30,,,40.6985,-73.98698,"(40.6985, -73.98698)",JAY STREET,,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473734,Station Wagon/Sport Utility Vehicle,Bike,,, +10/25/2021,20:00,MANHATTAN,10036,40.7591,-73.99214,"(40.7591, -73.99214)",WEST 43 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473744,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,15:30,,,40.69024,-73.99437,"(40.69024, -73.99437)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473144,Box Truck,Sedan,,, +11/01/2021,6:48,,,40.84126,-73.92805,"(40.84126, -73.92805)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,15:36,,,40.80641,-73.94227,"(40.80641, -73.94227)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473721,Motorcycle,Sedan,,, +11/01/2021,11:00,BRONX,10466,40.893246,-73.85407,"(40.893246, -73.85407)",BARNES AVENUE,EAST 234 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473516,Sedan,Sedan,,, +10/25/2021,19:13,BRONX,10463,40.875717,-73.909706,"(40.875717, -73.909706)",,,58 MARBLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473675,Sedan,,,, +11/01/2021,9:05,MANHATTAN,10128,40.78257,-73.94522,"(40.78257, -73.94522)",EAST 95 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4473063,Box Truck,Sedan,,, +11/01/2021,7:50,,,40.766434,-73.83767,"(40.766434, -73.83767)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4473165,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,8:30,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473005,,,,, +11/01/2021,14:00,BROOKLYN,11229,40.609394,-73.9406,"(40.609394, -73.9406)",,,3023 AVENUE R,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473134,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,15:00,STATEN ISLAND,10301,40.638268,-74.0788,"(40.638268, -74.0788)",MONROE AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473787,School Bus,Sedan,,, +11/01/2021,6:00,QUEENS,11004,40.751236,-73.71349,"(40.751236, -73.71349)",,,263-24 74 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473284,Sedan,,,, +11/01/2021,14:30,QUEENS,11237,40.70738,-73.91849,"(40.70738, -73.91849)",CYPRESS AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473123,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,20:00,BRONX,10460,40.842236,-73.87175,"(40.842236, -73.87175)",,,520 MORRIS PARK AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Other Vehicular,,,,4496136,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,12:54,,,40.79847,-73.96901,"(40.79847, -73.96901)",WEST 102 STREET,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4473632,Taxi,Sedan,,, +11/01/2021,9:15,BROOKLYN,11210,40.634815,-73.95225,"(40.634815, -73.95225)",,,645 EAST 26 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473365,,,,, +10/30/2021,20:39,MANHATTAN,10075,40.77579,-73.960396,"(40.77579, -73.960396)",,,903 PARK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473910,Taxi,Taxi,,, +11/01/2021,12:00,MANHATTAN,10013,40.715195,-73.997284,"(40.715195, -73.997284)",,,47 BAYARD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473189,Box Truck,Pick-up Truck,,, +11/01/2021,11:00,MANHATTAN,10035,40.79834,-73.93888,"(40.79834, -73.93888)",,,220 EAST 117 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4473319,Sedan,,,, +11/01/2021,7:47,BROOKLYN,11206,40.695084,-73.93859,"(40.695084, -73.93859)",,,760 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473398,Sedan,PK,,, +11/01/2021,16:15,BROOKLYN,11212,40.65634,-73.92137,"(40.65634, -73.92137)",KINGS HIGHWAY,EAST 92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473346,Bus,Bus,,, +11/01/2021,0:27,,,40.661743,-73.94784,"(40.661743, -73.94784)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473231,Motorcycle,,,, +10/29/2021,6:30,,,40.75887,-73.82064,"(40.75887, -73.82064)",SANFORD AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473592,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,21:15,,,40.692604,-73.92751,"(40.692604, -73.92751)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4473702,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/01/2021,17:44,QUEENS,11413,40.6743,-73.74655,"(40.6743, -73.74655)",,,225-15 137 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473179,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/26/2021,20:00,BRONX,10463,40.87664,-73.90139,"(40.87664, -73.90139)",ALBANY CRESCENT,KINGSBRIDGE TERRACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473619,Sedan,,,, +10/27/2021,19:28,,,40.803143,-73.97256,"(40.803143, -73.97256)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4472129,Sedan,Sedan,,, +11/01/2021,16:02,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473170,Station Wagon/Sport Utility Vehicle,Bus,,, +01/21/2022,12:00,,,40.677044,-74.000725,"(40.677044, -74.000725)",NELSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496247,Sedan,,,, +11/01/2021,17:57,QUEENS,11103,40.766827,-73.909294,"(40.766827, -73.909294)",25 AVENUE,43 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473641,Bike,Pick-up Truck,,, +10/31/2021,17:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473798,Sedan,Sedan,,, +11/01/2021,13:38,BROOKLYN,11222,40.72585,-73.94212,"(40.72585, -73.94212)",,,247 NASSAU AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4473096,Sedan,,,, +11/01/2021,9:30,BROOKLYN,11237,40.70933,-73.92249,"(40.70933, -73.92249)",SCOTT AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473204,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,7:00,BROOKLYN,11221,,,,MARCUS GARVEY BOULEVARD,MONROE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473770,Sedan,,,, +11/01/2021,22:45,,,40.675037,-73.930534,"(40.675037, -73.930534)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,4:10,BROOKLYN,11236,40.647526,-73.89469,"(40.647526, -73.89469)",FLATLANDS AVENUE,EAST 105 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4473557,Sedan,Sedan,,, +10/30/2021,22:10,,,40.90034,-73.90591,"(40.90034, -73.90591)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473898,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,15:55,QUEENS,11420,40.683662,-73.80665,"(40.683662, -73.80665)",,,111-36 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473215,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,17:00,STATEN ISLAND,10306,40.580727,-74.10757,"(40.580727, -74.10757)",NORTH RAILROAD AVENUE,MIDLAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473819,Motorcycle,Sedan,,, +11/01/2021,18:57,BRONX,10458,40.867027,-73.89111,"(40.867027, -73.89111)",EAST 196 STREET,BRIGGS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473276,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,11:00,BROOKLYN,11208,40.67269,-73.87253,"(40.67269, -73.87253)",,,1215 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473572,Sedan,Sedan,,, +11/01/2021,20:56,,,40.584366,-73.9271,"(40.584366, -73.9271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473195,Sedan,,,, +11/01/2021,15:00,QUEENS,11413,40.66162,-73.76364,"(40.66162, -73.76364)",,,146-22 183 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473153,Sedan,,,, +10/28/2021,13:35,QUEENS,11105,40.773376,-73.89474,"(40.773376, -73.89474)",,,19-45 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473636,Sedan,Sedan,,, +11/01/2021,8:00,BRONX,10473,40.82404,-73.873604,"(40.82404, -73.873604)",,,1650 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473654,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,4:40,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4473307,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,20:30,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473453,Sedan,,,, +11/01/2021,14:45,QUEENS,11414,40.66252,-73.84071,"(40.66252, -73.84071)",CROSS BAY BOULEVARD,157 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473222,Sedan,Box Truck,,, +10/29/2021,21:24,,,40.874638,-73.909744,"(40.874638, -73.909744)",BROADWAY,WEST 225 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473858,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,16:29,BROOKLYN,11212,40.659058,-73.91095,"(40.659058, -73.91095)",BOYLAND STREET,NEWPORT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473261,,,,, +10/19/2021,13:12,,,,,,PARK PLACE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4473711,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,21:06,,,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4473596,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,14:18,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4473774,Sedan,Sedan,,, +11/01/2021,16:50,MANHATTAN,10012,40.727287,-74.00064,"(40.727287, -74.00064)",WEST HOUSTON STREET,THOMPSON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473267,Pick-up Truck,Sedan,,, +11/01/2021,16:08,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Brakes Defective,Unspecified,,,4473760,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/01/2021,0:00,QUEENS,11421,40.69366,-73.85217,"(40.69366, -73.85217)",WOODHAVEN BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473610,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,5:35,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4472896,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,15:20,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4473687,Sedan,Motorscooter,,, +11/01/2021,8:28,QUEENS,11101,40.752937,-73.92204,"(40.752937, -73.92204)",36 AVENUE,NORTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4473637,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/01/2021,15:30,,,40.746883,-73.76348,"(40.746883, -73.76348)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,8:45,BROOKLYN,11203,40.650684,-73.92354,"(40.650684, -73.92354)",,,5690 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473340,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,21:16,,,40.66394,-73.99769,"(40.66394, -73.99769)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,21:55,QUEENS,11356,40.785633,-73.855995,"(40.785633, -73.855995)",111 STREET,14 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4473330,Sedan,Box Truck,,, +10/27/2021,21:05,,,40.61632,-74.15936,"(40.61632, -74.15936)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473666,Sedan,Pick-up Truck,,, +10/28/2021,11:15,BROOKLYN,11219,40.630363,-74.00414,"(40.630363, -74.00414)",62 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473561,Sedan,Bike,,, +11/01/2021,16:45,BRONX,10454,40.80565,-73.92062,"(40.80565, -73.92062)",EAST 135 STREET,BROOK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473227,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,8:00,MANHATTAN,10027,40.81722,-73.95228,"(40.81722, -73.95228)",WEST 133 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473892,Sedan,,,, +11/01/2021,8:39,,,40.754864,-73.85255,"(40.754864, -73.85255)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4473251,Sedan,Pick-up Truck,,, +11/01/2021,21:00,BRONX,10466,40.88778,-73.84701,"(40.88778, -73.84701)",,,4125 LACONIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4473922,Sedan,,,, +11/01/2021,19:00,BRONX,10463,40.883755,-73.898285,"(40.883755, -73.898285)",,,3638 BAILEY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473443,Sedan,,,, +11/01/2021,2:00,QUEENS,11416,40.685204,-73.84837,"(40.685204, -73.84837)",,,97-44 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473286,Pick-up Truck,,,, +11/01/2021,12:20,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS HILLS STREET,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473122,Sedan,Sedan,,, +11/01/2021,20:10,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473150,Ambulance,Sedan,,, +10/30/2021,8:57,MANHATTAN,10023,40.7773,-73.98259,"(40.7773, -73.98259)",WEST 70 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4473751,Sedan,Sedan,,, +11/01/2021,9:11,BRONX,10457,40.85076,-73.89179,"(40.85076, -73.89179)",EAST 181 STREET,LAFONTAINE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473032,Ambulance,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,22:37,MANHATTAN,10027,40.809196,-73.95187,"(40.809196, -73.95187)",,,2300 8 AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,,,,4473722,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,17:32,,,40.850395,-73.9228,"(40.850395, -73.9228)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473297,Sedan,Van,,, +11/01/2021,17:30,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",BROADWAY,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473201,Bus,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,4:50,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473827,Taxi,Sedan,,, +10/31/2021,15:02,,,40.682926,-73.76665,"(40.682926, -73.76665)",URSINA ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,14:45,QUEENS,11694,40.58356,-73.82174,"(40.58356, -73.82174)",ROCKAWAY BEACH BOULEVARD,BEACH 101 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473782,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,0:05,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473125,Sedan,Sedan,,, +11/01/2021,10:27,MANHATTAN,10031,40.82279,-73.94941,"(40.82279, -73.94941)",,,1640 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473154,Sedan,Sedan,,, +11/01/2021,11:00,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WYTHE AVENUE,WILLIAMSBURG STREET WEST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473458,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/01/2021,19:56,BROOKLYN,11230,40.62539,-73.95951,"(40.62539, -73.95951)",AVENUE J,EAST 17 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473355,E-Bike,Sedan,,, +11/01/2021,11:51,BROOKLYN,11230,40.619583,-73.95841,"(40.619583, -73.95841)",EAST 17 STREET,BAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473368,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,6:30,BRONX,10456,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4473861,Taxi,,,, +11/01/2021,5:30,,,40.736412,-73.74183,"(40.736412, -73.74183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,12:30,BROOKLYN,11238,40.682373,-73.96162,"(40.682373, -73.96162)",GRAND AVENUE,FULTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473256,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,15:23,BRONX,10471,40.90589,-73.90572,"(40.90589, -73.90572)",,,5644 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473883,Sedan,E-Bike,,, +11/01/2021,8:00,BROOKLYN,11234,40.620956,-73.91742,"(40.620956, -73.91742)",RALPH AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473080,Taxi,Sedan,,, +10/30/2021,16:48,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4473881,Sedan,Sedan,,, +11/01/2021,14:58,,,40.853844,-73.91592,"(40.853844, -73.91592)",BILLINGSLY TERRACE,PHELAN PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473306,Bus,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,8:25,BRONX,10472,40.830383,-73.857,"(40.830383, -73.857)",PUGSLEY AVENUE,POWELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473003,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,7:45,QUEENS,11360,40.785675,-73.78159,"(40.785675, -73.78159)",212 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4473166,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/01/2021,18:30,,,40.67329,-73.76585,"(40.67329, -73.76585)",175 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473353,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,20:15,STATEN ISLAND,10305,40.610912,-74.06576,"(40.610912, -74.06576)",,,47 BELAIR ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473788,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,11:04,,,,,,GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4473281,Tractor Truck Diesel,,,, +11/01/2021,12:56,BROOKLYN,11213,40.66839,-73.94125,"(40.66839, -73.94125)",,,1462 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473106,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,23:45,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473647,Taxi,Sedan,,, +11/01/2021,9:15,,,40.592793,-73.77788,"(40.592793, -73.77788)",BEACH 47 STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4473620,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,23:49,BROOKLYN,11206,40.707283,-73.935905,"(40.707283, -73.935905)",JOHNSON AVENUE,WHITE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473206,Sedan,Sedan,,, +11/01/2021,18:00,BROOKLYN,11221,40.69772,-73.92454,"(40.69772, -73.92454)",STOCKHOLM STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473191,Sedan,,,, +11/01/2021,18:35,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",ALLEN STREET,EAST HOUSTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473510,Bus,,,, +10/26/2021,12:50,BRONX,10451,40.821484,-73.91218,"(40.821484, -73.91218)",3 AVENUE,EAST 158 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473590,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,14:08,QUEENS,11420,40.677,-73.81965,"(40.677, -73.81965)",LEFFERTS BOULEVARD,115 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473216,Station Wagon/Sport Utility Vehicle,,,, +02/22/2021,19:10,QUEENS,11379,40.728935,-73.87455,"(40.728935, -73.87455)",85 STREET,60 ROAD,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4394289,E-Bike,PK,,, +05/23/2021,1:00,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4419656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,14:00,STATEN ISLAND,10306,40.554893,-74.14021,"(40.554893, -74.14021)",AMBOY ROAD,FAWN LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4436235,Sedan,E-Bike,,, +10/27/2021,16:00,STATEN ISLAND,10305,40.594807,-74.08633,"(40.594807, -74.08633)",HYLAN BOULEVARD,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473807,Bus,Sedan,,, +07/21/2021,8:40,QUEENS,11435,40.6974,-73.80952,"(40.6974, -73.80952)",95 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4439212,Sedan,Sedan,,, +07/25/2021,19:39,BRONX,10453,40.850475,-73.915436,"(40.850475, -73.915436)",WEST TREMONT AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4441257,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/18/2021,17:06,,,40.76161,-73.97076,"(40.76161, -73.97076)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441233,Sedan,Taxi,,, +07/25/2021,18:30,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441248,Tractor Truck Diesel,Sedan,,, +07/25/2021,15:08,QUEENS,11368,40.749462,-73.86656,"(40.749462, -73.86656)",ROOSEVELT AVENUE,99 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441258,Sedan,Sedan,,, +07/22/2021,18:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441259,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/24/2021,17:07,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441230,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,19:47,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4441247,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,5:57,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4441218,Sedan,,,, +07/22/2021,14:30,QUEENS,11373,40.737705,-73.88231,"(40.737705, -73.88231)",QUEENS BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441264,Sedan,Box Truck,,, +07/24/2021,12:30,,,,,,STATEN ISLAND EXPRESSWAY,,,6,0,0,0,0,0,6,0,Following Too Closely,Unspecified,Unspecified,,,4441255,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/01/2021,13:15,MANHATTAN,10103,40.759995,-73.97615,"(40.759995, -73.97615)",,,660 5 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473101,Sedan,Bike,,, +10/29/2021,18:39,,,,,,CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4473771,Sedan,Sedan,,, +11/01/2021,8:08,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,17:25,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473670,Van,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,16:12,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4473317,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,20:13,MANHATTAN,10013,40.71509,-74.00195,"(40.71509, -74.00195)",,,141 WORTH STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473911,Sedan,Sedan,,, +11/01/2021,21:59,,,40.68727,-73.79003,"(40.68727, -73.79003)",157 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4473395,Sedan,Sedan,Sedan,, +11/01/2021,1:20,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473138,Sedan,Sedan,,, +11/01/2021,15:04,,,40.8398,-73.928665,"(40.8398, -73.928665)",WEST 167 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4473234,Bike,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,16:21,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4440367,Sedan,Sedan,,, +07/25/2021,15:50,BROOKLYN,11229,40.611732,-73.94889,"(40.611732, -73.94889)",,,3710 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440527,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,0:00,,,40.724495,-73.72469,"(40.724495, -73.72469)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4440415,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,22:12,MANHATTAN,10022,40.757637,-73.96342,"(40.757637, -73.96342)",EAST 56 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441206,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/24/2021,10:58,STATEN ISLAND,10301,40.63851,-74.07581,"(40.63851, -74.07581)",BAY STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440968,Sedan,Sedan,,, +07/24/2021,0:00,QUEENS,11432,40.71405,-73.77801,"(40.71405, -73.77801)",DALNY ROAD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440945,Sedan,,,, +07/25/2021,0:15,,,40.69611,-73.96406,"(40.69611, -73.96406)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440051,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/25/2021,13:00,,,40.76509,-73.82907,"(40.76509, -73.82907)",LEAVITT STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440398,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,22:30,,,40.867767,-73.92593,"(40.867767, -73.92593)",SEAMAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4440647,Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/25/2021,5:00,,,40.67715,-73.8609,"(40.67715, -73.8609)",76 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440450,Sedan,,,, +07/25/2021,18:36,,,40.697582,-73.92983,"(40.697582, -73.92983)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4440889,Pick-up Truck,Bike,,, +07/23/2021,10:45,STATEN ISLAND,10307,40.513092,-74.24857,"(40.513092, -74.24857)",ARTHUR KILL ROAD,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441029,Sedan,,,, +07/25/2021,9:25,BRONX,10463,40.882427,-73.902306,"(40.882427, -73.902306)",,,5716 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4441098,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,1:35,BROOKLYN,11204,40.61785,-73.988075,"(40.61785, -73.988075)",65 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,4:00,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440469,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,20:45,STATEN ISLAND,10304,40.617786,-74.08111,"(40.617786, -74.08111)",VANDERBILT AVENUE,OSGOOD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440966,Sedan,Sedan,,, +07/24/2021,16:00,QUEENS,11429,40.712055,-73.75319,"(40.712055, -73.75319)",100 AVENUE,FRANCIS LEWIS BOULEVARD,,4,0,0,0,0,0,4,0,Driver Inexperience,Driver Inattention/Distraction,,,,4441008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,8:31,MANHATTAN,10036,40.76099,-73.99077,"(40.76099, -73.99077)",9 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440863,Taxi,Bike,,, +07/25/2021,4:13,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440109,Sedan,,,, +07/25/2021,18:30,QUEENS,11412,40.69612,-73.746185,"(40.69612, -73.746185)",LINDEN BOULEVARD,FRANCIS LEWIS BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4440343,Sedan,,,, +07/25/2021,6:25,,,40.58407,-73.92344,"(40.58407, -73.92344)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4440536,Sedan,,,, +07/25/2021,15:00,BROOKLYN,11230,40.613163,-73.95719,"(40.613163, -73.95719)",AVENUE O,EAST 17 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440564,Sedan,Sedan,,, +07/25/2021,2:40,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440690,Taxi,Sedan,,, +07/25/2021,15:08,QUEENS,11004,40.738377,-73.70352,"(40.738377, -73.70352)",,,265-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4440724,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,3:40,,,40.58353,-73.971214,"(40.58353, -73.971214)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Obstruction/Debris,,,,4440291,Sedan,Sedan,,, +07/25/2021,2:49,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,CANAL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440207,Sedan,Motorcycle,,, +07/25/2021,22:30,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4441062,E-Scooter,,,, +07/23/2021,2:17,BRONX,10463,40.8827,-73.89273,"(40.8827, -73.89273)",SEDGWICK AVENUE,VANCORTLANDT AVENUE WEST,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4441091,Taxi,Sedan,,, +07/24/2021,1:09,BRONX,10469,40.870605,-73.8465,"(40.870605, -73.8465)",,,1357 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441146,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,15:10,BROOKLYN,11217,40.688255,-73.979294,"(40.688255, -73.979294)",FULTON STREET,ROCKWELL PLACE,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440275,Taxi,E-Scooter,,, +07/25/2021,12:30,,,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4440209,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,, +07/24/2021,18:50,QUEENS,11365,40.737995,-73.794,"(40.737995, -73.794)",64 AVENUE,175 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440989,Sedan,,,, +07/25/2021,16:35,,,,,,PELHAM PARKWAY NORTH,EASTCHESTER ROAD,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4440320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,3:50,QUEENS,11368,40.75772,-73.86358,"(40.75772, -73.86358)",,,105-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440157,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,20:30,BROOKLYN,11205,40.69326,-73.9675,"(40.69326, -73.9675)",,,448 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440716,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,2:30,BRONX,10468,40.864872,-73.90253,"(40.864872, -73.90253)",WEST 190 STREET,AQUEDUCT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440432,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,19:00,QUEENS,11429,40.70781,-73.72916,"(40.70781, -73.72916)",,,107-12 227 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440824,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/25/2021,12:53,MANHATTAN,10035,40.7964,-73.93423,"(40.7964, -73.93423)",,,423 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440599,Sedan,,,, +07/25/2021,18:30,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4440753,Sedan,,,, +07/25/2021,4:55,BROOKLYN,11219,40.63659,-73.994736,"(40.63659, -73.994736)",49 STREET,NEW UTRECHT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4440195,Sedan,Taxi,Bus,, +07/25/2021,10:45,STATEN ISLAND,10305,40.589035,-74.08988,"(40.589035, -74.08988)",HYLAN BOULEVARD,DELAWARE AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4440305,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/25/2021,21:57,,,40.61394,-73.92053,"(40.61394, -73.92053)",AVENUE T,EAST 56 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440403,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,22:27,BROOKLYN,11212,40.66006,-73.910225,"(40.66006, -73.910225)",,,448 BRISTOL STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4441050,E-Scooter,,,, +07/08/2021,10:30,,,40.737152,-73.90602,"(40.737152, -73.90602)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441159,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,12:23,MANHATTAN,10038,40.711998,-74.005264,"(40.711998, -74.005264)",FRANKFORT STREET,PARK ROW,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440562,School Bus,Sedan,,, +07/25/2021,16:25,BROOKLYN,11215,40.66803,-73.983955,"(40.66803, -73.983955)",9 STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440916,Sedan,Bike,,, +05/13/2021,22:30,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",PROSPECT STREET,FULTON STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4441065,Sedan,,,, +07/25/2021,16:33,BROOKLYN,11236,40.630543,-73.90872,"(40.630543, -73.90872)",,,17 PAERDEGAT 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,18:20,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4441133,E-Bike,,,, +07/25/2021,17:40,QUEENS,11374,40.71549,-73.860634,"(40.71549, -73.860634)",68 AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440383,Sedan,,,, +06/20/2021,11:00,,,40.69979,-73.950096,"(40.69979, -73.950096)",,,MARCY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4440998,E-Bike,,,, +07/25/2021,10:30,,,40.59664,-74.066345,"(40.59664, -74.066345)",CEDAR AVENUE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440223,Sedan,Sedan,,, +07/25/2021,18:40,,,40.708694,-73.92071,"(40.708694, -73.92071)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,15:07,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440620,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/22/2021,21:45,QUEENS,11375,40.70863,-73.85144,"(40.70863, -73.85144)",71 AVENUE,SYBILLA STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441147,Sedan,Sedan,,, +01/16/2022,3:03,,,,,,MACOMBS DAM BRIDGE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4496210,Garbage or Refuse,Sedan,,, +07/24/2021,22:03,BROOKLYN,11237,40.69697,-73.90653,"(40.69697, -73.90653)",WYCKOFF AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440882,Sedan,,,, +07/19/2021,0:23,BROOKLYN,11216,40.679832,-73.95322,"(40.679832, -73.95322)",BEDFORD AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440980,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,19:23,,,40.832283,-73.92975,"(40.832283, -73.92975)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440426,Sedan,,,, +07/07/2021,13:00,QUEENS,11385,40.69993,-73.90588,"(40.69993, -73.90588)",CYPRESS AVENUE,CORNELIA STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440954,E-Bike,,,, +07/25/2021,18:15,,,40.887547,-73.81512,"(40.887547, -73.81512)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440472,Sedan,Sedan,,, +07/25/2021,6:04,BRONX,10469,40.86745,-73.84399,"(40.86745, -73.84399)",,,1456 ARNOW AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4440391,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/25/2021,21:00,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4440553,Sedan,Sedan,,, +07/20/2021,19:40,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441040,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,15:00,,,40.68693,-73.95089,"(40.68693, -73.95089)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440355,Sedan,,,, +07/20/2021,8:53,,,40.78809,-73.98271,"(40.78809, -73.98271)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440907,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,20:23,MANHATTAN,10024,40.78994,-73.98036,"(40.78994, -73.98036)",RIVERSIDE DRIVE,WEST 86 STREET,,3,0,0,0,1,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4441069,Bike,Moped,,, +07/25/2021,3:25,BRONX,10454,40.806934,-73.92075,"(40.806934, -73.92075)",,,198 BROWN PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440506,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,17:00,,,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440399,Bike,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,0:00,,,40.589977,-73.99313,"(40.589977, -73.99313)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,4440508,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/25/2021,13:00,QUEENS,11419,40.686573,-73.82231,"(40.686573, -73.82231)",,,104-38 121 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440454,Sedan,,,, +07/23/2021,17:05,STATEN ISLAND,10304,40.62669,-74.07527,"(40.62669, -74.07527)",,,56 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440960,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,0:20,MANHATTAN,10016,40.742252,-73.97769,"(40.742252, -73.97769)",2 AVENUE,EAST 30 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440052,E-Scooter,Convertible,,, +07/25/2021,8:40,QUEENS,11691,40.594543,-73.76189,"(40.594543, -73.76189)",,,191 BEACH 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441003,Sedan,Sedan,,, +07/24/2021,1:25,QUEENS,11693,40.59028,-73.8108,"(40.59028, -73.8108)",,,318 BEACH 85 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4441110,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/25/2021,16:50,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440374,Sedan,,,, +07/16/2021,9:45,,,40.69324,-73.92865,"(40.69324, -73.92865)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440877,Station Wagon/Sport Utility Vehicle,Sedan,Garbage or Refuse,, +07/25/2021,8:17,BRONX,10463,40.875378,-73.91015,"(40.875378, -73.91015)",,,36 MARBLE HILL AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,19:30,BRONX,10474,40.819267,-73.884865,"(40.819267, -73.884865)",WHITTIER STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4441068,Sedan,Motorbike,,, +07/15/2021,12:25,MANHATTAN,10036,40.75706,-73.979515,"(40.75706, -73.979515)",,,21 WEST 47 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4440944,Sedan,,,, +07/25/2021,0:03,,,,,,THROGS NECK EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440102,Sedan,,,, +07/24/2021,4:14,STATEN ISLAND,10314,40.610172,-74.12146,"(40.610172, -74.12146)",MANOR ROAD,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440967,Sedan,Sedan,,, +07/25/2021,4:26,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440353,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,1:44,,,40.777634,-73.94289,"(40.777634, -73.94289)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,,,4440458,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/25/2021,18:41,QUEENS,11433,40.700428,-73.78851,"(40.700428, -73.78851)",,,168-31 106 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4441012,FDNY FIRE,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,23:17,MANHATTAN,10033,40.84619,-73.93846,"(40.84619, -73.93846)",BROADWAY,WEST 175 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440392,E-Bike,,,, +07/25/2021,12:00,,,40.67302,-73.76763,"(40.67302, -73.76763)",137 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440861,Sedan,,,, +07/22/2021,15:27,STATEN ISLAND,10314,40.610085,-74.11668,"(40.610085, -74.11668)",SLOSSON AVENUE,LORTEL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4440905,Taxi,,,, +07/25/2021,23:40,,,40.660393,-74.001236,"(40.660393, -74.001236)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440418,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/21/2021,12:55,,,40.779476,-73.97358,"(40.779476, -73.97358)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441216,Taxi,Sedan,,, +07/23/2021,9:08,BRONX,10463,40.876583,-73.90266,"(40.876583, -73.90266)",HEATH AVENUE,ALBANY CRESCENT,,5,0,0,0,0,0,5,0,Backing Unsafely,Unspecified,,,,4441092,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,10:10,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,0:57,STATEN ISLAND,10305,40.60391,-74.07002,"(40.60391, -74.07002)",,,14 NARROWS ROAD SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4440213,Sedan,,,, +07/25/2021,14:32,BRONX,10467,40.871933,-73.87758,"(40.871933, -73.87758)",,,359 EAST 204 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440278,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,4:30,,,40.632576,-74.13364,"(40.632576, -74.13364)",,,989 POST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/17/2021,7:50,MANHATTAN,10024,40.786938,-73.979294,"(40.786938, -73.979294)",WEST END AVENUE,WEST 83 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441074,Sedan,,,, +07/25/2021,8:00,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440369,Sedan,,,, +07/25/2021,19:30,,,40.688572,-73.991104,"(40.688572, -73.991104)",BOERUM PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4440787,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/24/2021,16:20,MANHATTAN,10038,40.710175,-74.001144,"(40.710175, -74.001144)",ROBERT F WAGNER PLACE,PEARL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441028,Van,Sedan,,, +07/25/2021,11:50,MANHATTAN,10007,40.71373,-74.01385,"(40.71373, -74.01385)",WEST STREET,VESEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,18:00,BRONX,10469,40.874134,-73.840866,"(40.874134, -73.840866)",GUNTHER AVENUE,BURKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440518,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,17:21,,,40.668964,-73.95059,"(40.668964, -73.95059)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4440622,Sedan,,,, +07/25/2021,9:00,QUEENS,11385,40.69826,-73.90577,"(40.69826, -73.90577)",,,1652 HANCOCK STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4440238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,1:28,QUEENS,11375,40.720707,-73.84626,"(40.720707, -73.84626)",,,70-23 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4440402,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,13:05,MANHATTAN,10065,40.765984,-73.965454,"(40.765984, -73.965454)",LEXINGTON AVENUE,EAST 65 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440928,Bike,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,19:35,BROOKLYN,11212,40.665627,-73.909706,"(40.665627, -73.909706)",ROCKAWAY AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440976,Ambulance,,,, +07/25/2021,1:55,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,0:00,,,40.69645,-73.946495,"(40.69645, -73.946495)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4440362,Sedan,Sedan,Sedan,Sedan,Sedan +07/25/2021,22:35,BROOKLYN,11203,40.65471,-73.93072,"(40.65471, -73.93072)",,,756 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440408,Sedan,Sedan,,, +07/03/2021,16:20,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441164,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,16:12,,,40.806343,-73.93318,"(40.806343, -73.93318)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441158,Sedan,Sedan,,, +07/14/2021,22:58,,,40.81339,-73.95627,"(40.81339, -73.95627)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441053,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,0:10,,,,,,WASHINGTON BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440911,Sedan,Sedan,,, +07/25/2021,10:39,BRONX,10469,40.869686,-73.83483,"(40.869686, -73.83483)",,,2895 GRACE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441141,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,6:10,,,40.856712,-73.93264,"(40.856712, -73.93264)",BROADWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4440597,Sedan,,,, +07/25/2021,6:20,,,40.876976,-73.88966,"(40.876976, -73.88966)",PAUL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4440106,Pick-up Truck,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/25/2021,17:53,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440743,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,16:15,,,40.71041,-73.98545,"(40.71041, -73.98545)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440324,Sedan,,,, +07/25/2021,8:45,,,40.689003,-73.829346,"(40.689003, -73.829346)",115 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440632,Sedan,,,, +07/25/2021,16:00,BROOKLYN,11235,40.583862,-73.94008,"(40.583862, -73.94008)",,,2877 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440535,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,19:43,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",DAVIDSON AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440430,Sedan,Sedan,,, +07/25/2021,13:49,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441163,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,16:08,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440986,Tractor Truck Gasoline,Tractor Truck Gasoline,,, +07/25/2021,17:30,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",EAST 60 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440487,Sedan,Sedan,,, +07/23/2021,19:29,BROOKLYN,11215,40.671783,-73.9742,"(40.671783, -73.9742)",8 AVENUE,MONTGOMERY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4440912,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/25/2021,0:03,BRONX,10455,40.815296,-73.91904,"(40.815296, -73.91904)",,,2810 3 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4440380,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/25/2021,23:40,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Other Electronic Device,Unspecified,,,,4440798,Sedan,Sedan,,, +07/25/2021,13:42,,,40.691456,-73.9178,"(40.691456, -73.9178)",EVERGREEN AVENUE,,,4,0,0,0,0,0,4,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,4440883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/25/2021,19:49,BRONX,10474,40.812634,-73.88313,"(40.812634, -73.88313)",WHITTIER STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4440407,Sedan,Sedan,,, +07/25/2021,18:46,BRONX,10474,,,,TIFFANY STREET,VIELE AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440675,Sedan,Bike,,, +07/25/2021,5:20,QUEENS,11372,40.754353,-73.87378,"(40.754353, -73.87378)",,,34-15 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440156,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,23:15,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440503,Sedan,Taxi,,, +07/25/2021,2:07,BRONX,10466,40.894436,-73.84807,"(40.894436, -73.84807)",BRUNER AVENUE,BUSSING AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4440290,Sedan,Sedan,,, +07/25/2021,7:00,BROOKLYN,11233,40.682568,-73.91713,"(40.682568, -73.91713)",SARATOGA AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440513,Sedan,,,, +07/25/2021,3:00,QUEENS,11377,40.751926,-73.904564,"(40.751926, -73.904564)",,,34-22 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440372,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,20:06,,,40.67251,-73.99905,"(40.67251, -73.99905)",HAMILTON AVENUE,SMITH STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440502,Sedan,Sedan,,, +07/14/2021,20:37,QUEENS,11385,40.709343,-73.9153,"(40.709343, -73.9153)",,,1863 HART STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440951,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,10:09,,,40.83369,-73.91386,"(40.83369, -73.91386)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4440425,Taxi,Taxi,,, +07/16/2021,22:15,,,40.61118,-74.105606,"(40.61118, -74.105606)",LITTLE CLOVE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440961,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,3:10,QUEENS,11377,40.73573,-73.89324,"(40.73573, -73.89324)",71 STREET,51 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440053,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,14:07,,,40.71808,-73.95962,"(40.71808, -73.95962)",BERRY STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441004,Van,Bike,,, +07/15/2021,12:30,,,40.701195,-73.91409,"(40.701195, -73.91409)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440876,Sedan,Box Truck,,, +07/15/2021,17:50,,,40.875484,-73.8507,"(40.875484, -73.8507)",BOSTON ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441107,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,15:20,,,40.730587,-73.95772,"(40.730587, -73.95772)",FRANKLIN STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441077,Sedan,Sedan,,, +07/25/2021,16:40,,,40.610214,-74.1202,"(40.610214, -74.1202)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4440623,Motorcycle,,,, +07/25/2021,11:40,QUEENS,11385,40.709515,-73.8988,"(40.709515, -73.8988)",,,65-14 FRESH POND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4440235,Sedan,,,, +07/25/2021,9:15,,,,,,WILLETS POINT BOULEVARD,CLEARVIEW EXPRESSWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4440249,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,22:00,BROOKLYN,11233,40.675884,-73.90347,"(40.675884, -73.90347)",ATLANTIC AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440554,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,23:15,QUEENS,11435,40.687508,-73.80666,"(40.687508, -73.80666)",109 AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441002,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,0:00,BRONX,10469,40.871315,-73.860374,"(40.871315, -73.860374)",RADCLIFF AVENUE,BURKE AVENUE,,0,0,0,0,0,0,0,0,Tinted Windows,Driver Inattention/Distraction,,,,4440296,Sedan,Sedan,,, +07/25/2021,16:00,,,40.608433,-74.15544,"(40.608433, -74.15544)",VICTORY BOULEVARD,CHRISTOPHER LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440613,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,22:50,,,40.8651,-73.92189,"(40.8651, -73.92189)",WEST 204 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441039,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,11:59,QUEENS,11377,40.746235,-73.89895,"(40.746235, -73.89895)",65 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440360,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,22:00,BROOKLYN,11225,40.668945,-73.95018,"(40.668945, -73.95018)",,,1261 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440708,Sedan,,,, +07/23/2021,13:00,BROOKLYN,11220,40.632496,-74.01071,"(40.632496, -74.01071)",,,856 64 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441073,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,7:20,,,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440172,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,0:15,MANHATTAN,10002,40.71738,-73.99131,"(40.71738, -73.99131)",ALLEN STREET,GRAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440556,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,0:00,BRONX,10462,40.832233,-73.85427,"(40.832233, -73.85427)",OLMSTEAD AVENUE,ELLIS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440694,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,15:30,MANHATTAN,10002,40.710464,-73.986626,"(40.710464, -73.986626)",CLINTON STREET,SOUTH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440755,Sedan,Bike,,, +07/25/2021,6:05,MANHATTAN,10004,40.70404,-74.01319,"(40.70404, -74.01319)",STONE STREET,WHITEHALL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/25/2021,0:24,BRONX,10470,40.89551,-73.863495,"(40.89551, -73.863495)",,,4201 WEBSTER AVENUE,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4440295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,9:30,MANHATTAN,10035,40.80288,-73.94061,"(40.80288, -73.94061)",,,1751 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441055,Sedan,,,, +07/24/2021,17:00,BROOKLYN,11201,40.700703,-73.98868,"(40.700703, -73.98868)",PROSPECT STREET,ADAMS STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,16:45,,,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440352,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/30/2022,15:00,QUEENS,11432,40.71322,-73.79722,"(40.71322, -73.79722)",,,167-04 GOTHIC DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4568871,Sedan,,,, +07/25/2021,8:00,,,40.609707,-74.011284,"(40.609707, -74.011284)",15 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4440459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,21:55,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4441042,Sedan,,,, +07/25/2021,9:00,,,40.62757,-73.976585,"(40.62757, -73.976585)",MC DONALD AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440872,Station Wagon/Sport Utility Vehicle,Bike,,, +07/25/2021,19:27,QUEENS,11367,40.73303,-73.82251,"(40.73303, -73.82251)",147 STREET,68 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4440991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/25/2021,7:35,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440211,Sedan,Sedan,,, +07/25/2021,1:05,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440370,Sedan,,,, +07/25/2021,0:14,,,40.638695,-73.87859,"(40.638695, -73.87859)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4440154,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,5:00,BRONX,10467,40.881374,-73.86653,"(40.881374, -73.86653)",,,3679 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440330,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,17:00,BROOKLYN,11201,40.6911,-73.98647,"(40.6911, -73.98647)",GALLATIN PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441113,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,2:10,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440550,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,1:00,QUEENS,11414,40.659843,-73.83521,"(40.659843, -73.83521)",159 AVENUE,98 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4440316,Pick-up Truck,E-Scooter,,, +07/25/2021,11:15,QUEENS,11385,40.697933,-73.892006,"(40.697933, -73.892006)",COOPER AVENUE,64 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4440950,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,21:25,,,40.672363,-73.9308,"(40.672363, -73.9308)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440709,Sedan,,,, +07/25/2021,21:00,BROOKLYN,11226,40.655144,-73.95459,"(40.655144, -73.95459)",,,158 CLARKSON AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440393,Bike,,,, +07/25/2021,1:12,,,40.62037,-74.15761,"(40.62037, -74.15761)",,,72 ADA DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440606,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,14:53,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440742,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/25/2021,20:55,BROOKLYN,11217,40.67839,-73.97495,"(40.67839, -73.97495)",,,103 PARK PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440657,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,3:30,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4440440,Sedan,,,, +07/22/2021,14:45,QUEENS,11418,40.697247,-73.84302,"(40.697247, -73.84302)",86 AVENUE,105 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4440903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,20:36,MANHATTAN,10012,40.72162,-73.995476,"(40.72162, -73.995476)",MOTT STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441027,Station Wagon/Sport Utility Vehicle,Unk,,, +07/25/2021,0:13,BROOKLYN,11226,40.64196,-73.95708,"(40.64196, -73.95708)",FLATBUSH AVENUE,VANDERVEER PLACE,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4440388,Sedan,,,, +07/17/2021,12:36,BRONX,10472,40.83455,-73.8717,"(40.83455, -73.8717)",,,1701 EAST 174 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440931,Sedan,,,, +07/25/2021,16:30,,,40.745705,-73.89474,"(40.745705, -73.89474)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440376,Box Truck,Sedan,,, +07/25/2021,4:01,,,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440104,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,8:15,STATEN ISLAND,10301,40.619408,-74.09023,"(40.619408, -74.09023)",HOWARD AVENUE,ARLO ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440962,Sedan,,,, +07/24/2021,22:13,BROOKLYN,11212,,,,MOTHER GASTON BLVD,LOTT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441144,Sedan,Sedan,,, +07/25/2021,5:59,BRONX,10467,40.87835,-73.870346,"(40.87835, -73.870346)",EAST GUN HILL ROAD,NEWELL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440282,Sedan,,,, +07/25/2021,0:15,BRONX,10474,40.81666,-73.888,"(40.81666, -73.888)",HUNTS POINT AVENUE,LAFAYETTE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440409,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,16:40,BRONX,10463,,,,,,66 van cortlandt park south,0,0,0,0,0,0,0,0,Unspecified,,,,,4441093,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,19:20,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441020,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,13:30,BROOKLYN,11206,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,GARDEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440879,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,15:41,QUEENS,11105,40.771236,-73.91203,"(40.771236, -73.91203)",,,23-34 36 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4440421,Bike,,,, +07/18/2021,20:26,,,40.90034,-73.90591,"(40.90034, -73.90591)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,Obstruction/Debris,,,4441157,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,, +07/25/2021,0:40,,,40.588028,-73.94926,"(40.588028, -73.94926)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440533,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,11:53,,,40.830223,-73.834045,"(40.830223, -73.834045)",BRUCKNER BOULEVARD,BALCOM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440885,Sedan,Sedan,,, +07/25/2021,9:05,,,40.75662,-73.81718,"(40.75662, -73.81718)",PARSONS BOULEVARD,DELAWARE AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4440401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/25/2021,17:20,QUEENS,11362,40.75739,-73.72776,"(40.75739, -73.72776)",251 STREET,61 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4440364,Sedan,Sedan,Sedan,, +07/15/2021,18:19,,,,,,METROPOLITAN AVE,RENTAR PLZ,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440956,Moped,,,, +07/22/2021,23:34,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440974,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,0:33,,,40.804012,-73.93097,"(40.804012, -73.93097)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440591,Sedan,Sedan,,, +07/25/2021,0:00,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Unspecified,,,,,4440830,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,19:50,BRONX,10452,40.83057,-73.93072,"(40.83057, -73.93072)",WEST 161 STREET,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,2:38,,,40.779892,-73.76895,"(40.779892, -73.76895)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,,,,4441174,Sedan,Pick-up Truck,,, +07/25/2021,15:30,BROOKLYN,11214,40.611797,-74.00553,"(40.611797, -74.00553)",83 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440504,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,13:15,QUEENS,11101,40.749844,-73.95225,"(40.749844, -73.95225)",VERNON BOULEVARD,44 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441035,Station Wagon/Sport Utility Vehicle,PICK UP,,, +07/25/2021,3:00,QUEENS,11377,40.754257,-73.905045,"(40.754257, -73.905045)",,,32-49 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440910,Sedan,,,, +07/24/2021,10:36,BRONX,10463,40.882023,-73.90441,"(40.882023, -73.90441)",,,3240 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441096,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,13:10,BROOKLYN,11212,40.660725,-73.91819,"(40.660725, -73.91819)",HOWARD AVENUE,EAST 98 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4440514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/24/2021,21:25,BROOKLYN,11208,40.68992,-73.87261,"(40.68992, -73.87261)",JAMAICA AVENUE,HEMLOCK STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441084,Sedan,Moped,,, +07/23/2021,16:15,BROOKLYN,11207,40.679607,-73.89303,"(40.679607, -73.89303)",MILLER AVENUE,ARLINGTON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440914,Station Wagon/Sport Utility Vehicle,Bike,,, +07/25/2021,3:28,,,40.736732,-73.85451,"(40.736732, -73.85451)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440059,Sedan,,,, +07/23/2021,14:51,STATEN ISLAND,10309,40.519623,-74.220146,"(40.519623, -74.220146)",AMBOY ROAD,GEORGIA COURT,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4441005,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/24/2021,3:40,,,40.725925,-73.89088,"(40.725925, -73.89088)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440957,Sedan,,,, +07/25/2021,13:25,,,,,,EXTERIOR STREET,,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,,,,4440386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,16:00,,,40.659016,-73.95673,"(40.659016, -73.95673)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440624,Sedan,Sedan,,, +07/25/2021,12:35,BROOKLYN,11203,40.658867,-73.92921,"(40.658867, -73.92921)",,,90 EAST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4440268,Sedan,,,, +07/25/2021,21:25,,,40.625004,-74.14762,"(40.625004, -74.14762)",,,1761 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440616,Sedan,Sedan,Sedan,, +01/21/2022,3:00,BRONX,10459,40.82868,-73.89864,"(40.82868, -73.89864)",,,816 EAST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496486,Sedan,,,, +07/24/2021,4:00,QUEENS,11377,40.73437,-73.89602,"(40.73437, -73.89602)",,,51-31 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440985,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,11:23,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4440880,Station Wagon/Sport Utility Vehicle,Bike,,, +07/25/2021,9:00,BRONX,10459,40.830654,-73.89066,"(40.830654, -73.89066)",,,1277 HOE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440434,Sedan,Sedan,,, +07/09/2021,14:00,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441242,Sedan,,,, +07/25/2021,3:02,,,40.780464,-73.94404,"(40.780464, -73.94404)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4440485,Motorcycle,,,, +07/20/2021,15:40,,,40.75533,-73.99119,"(40.75533, -73.99119)",WEST 39 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4439034,Sedan,,,, +07/25/2021,12:40,BROOKLYN,11232,40.651512,-74.00734,"(40.651512, -74.00734)",41 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440804,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/25/2021,3:20,BROOKLYN,11207,40.677525,-73.88625,"(40.677525, -73.88625)",,,2929 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440551,Sedan,,,, +07/25/2021,1:00,BRONX,10460,40.84441,-73.8689,"(40.84441, -73.8689)",MORRIS PARK AVENUE,FILLMORE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440315,Sedan,Sedan,,, +07/25/2021,5:15,MANHATTAN,10032,40.842438,-73.93926,"(40.842438, -73.93926)",BROADWAY,WEST 170 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440359,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,19:57,BROOKLYN,11209,40.630566,-74.03405,"(40.630566, -74.03405)",78 STREET,COLONIAL ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4441072,Sedan,Sedan,,, +07/25/2021,3:00,BROOKLYN,11218,40.654648,-73.973274,"(40.654648, -73.973274)",PROSPECT PARK SOUTHWEST,VANDERBILT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4440180,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/22/2021,15:07,MANHATTAN,10023,40.774853,-73.98067,"(40.774853, -73.98067)",COLUMBUS AVENUE,WEST 68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441046,Pick-up Truck,,,, +07/25/2021,17:15,QUEENS,11421,40.691536,-73.85419,"(40.691536, -73.85419)",88 AVENUE,90 STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4440559,Sedan,Sedan,,, +07/25/2021,0:00,MANHATTAN,10029,40.789055,-73.94861,"(40.789055, -73.94861)",EAST 101 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4440405,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/25/2021,12:11,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441161,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,14:19,QUEENS,11435,40.70253,-73.8143,"(40.70253, -73.8143)",QUEENS BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441001,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,17:31,BRONX,10471,40.903538,-73.89741,"(40.903538, -73.89741)",,,5612 POST ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441100,Sedan,,,, +07/25/2021,16:19,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440317,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,20:30,QUEENS,11364,40.753857,-73.76627,"(40.753857, -73.76627)",BELL BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440365,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,3:23,BROOKLYN,11223,40.59783,-73.96549,"(40.59783, -73.96549)",OCEAN PARKWAY,AVENUE U,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4440842,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,18:00,BRONX,10473,40.81992,-73.86647,"(40.81992, -73.86647)",,,756 ROSEDALE AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4440696,Ambulance,Sedan,,, +07/25/2021,0:01,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440710,Sedan,,,, +07/21/2021,20:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441188,Sedan,DUMP TRUCK,,, +07/25/2021,4:20,,,40.758965,-73.95819,"(40.758965, -73.95819)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4440165,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,18:05,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,0:00,QUEENS,11434,40.676548,-73.76838,"(40.676548, -73.76838)",BEDELL STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441228,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,5:56,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",ROCKAWAY PARKWAY,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473344,Taxi,Sedan,,, +07/25/2021,2:00,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",69 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4440231,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/25/2021,4:33,,,40.680855,-74.00305,"(40.680855, -74.00305)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441220,Sedan,,,, +07/25/2021,18:15,QUEENS,11436,40.666946,-73.79712,"(40.666946, -73.79712)",NORTH CONDUIT AVENUE,142 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4440567,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,4:40,,,40.76989,-73.880455,"(40.76989, -73.880455)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440150,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,4:43,,,40.846466,-73.94516,"(40.846466, -73.94516)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,2:00,,,40.832897,-73.862274,"(40.832897, -73.862274)",WESTCHESTER AVENUE,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4440693,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/24/2021,13:05,BROOKLYN,11203,40.651646,-73.93233,"(40.651646, -73.93233)",CHURCH AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441122,Sedan,E-Scooter,,, +07/25/2021,1:20,,,,,,,,397 SCHROEDERS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4440549,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/25/2021,8:38,,,40.58546,-73.9891,"(40.58546, -73.9891)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440293,Sedan,,,, +07/25/2021,1:30,STATEN ISLAND,10304,40.623817,-74.08209,"(40.623817, -74.08209)",,,195 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440970,Sedan,,,, +07/20/2021,19:15,QUEENS,11365,40.741222,-73.78433,"(40.741222, -73.78433)",,,190-02 HORACE HARDING EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4440937,Sedan,,,, +07/25/2021,21:29,BRONX,10453,40.850018,-73.9107,"(40.850018, -73.9107)",WEST 177 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440413,Sedan,,,, +07/25/2021,17:57,,,40.696342,-73.97644,"(40.696342, -73.97644)",PARK AVENUE,NORTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440394,Sedan,,,, +07/25/2021,0:50,MANHATTAN,10036,40.759365,-73.98696,"(40.759365, -73.98696)",,,266 WEST 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440867,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,23:56,BROOKLYN,11221,40.693726,-73.92572,"(40.693726, -73.92572)",BUSHWICK AVENUE,LAFAYETTE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440890,Taxi,,,, +07/25/2021,21:12,QUEENS,11105,40.771084,-73.908226,"(40.771084, -73.908226)",STEINWAY STREET,23 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440422,Station Wagon/Sport Utility Vehicle,Bike,,, +07/27/2012,20:53,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441145,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/25/2021,14:45,BRONX,10469,40.87617,-73.84904,"(40.87617, -73.84904)",SEYMOUR AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,18:20,BRONX,10471,40.898594,-73.897095,"(40.898594, -73.897095)",BROADWAY,LAKE VIEW PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4441094,Sedan,Moped,,, +07/25/2021,14:00,BROOKLYN,11213,40.667103,-73.93281,"(40.667103, -73.93281)",,,1651 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440210,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,5:49,,,40.738064,-73.83657,"(40.738064, -73.83657)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4440990,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,18:31,MANHATTAN,10035,40.79716,-73.93608,"(40.79716, -73.93608)",,,322 EAST 117 STREET,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4440600,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/25/2021,6:20,,,40.5872,-73.97439,"(40.5872, -73.97439)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440741,Sedan,,,, +01/19/2022,23:44,BROOKLYN,11211,40.71721,-73.93471,"(40.71721, -73.93471)",VANDERVORT AVENUE,MASPETH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496461,Sedan,Sedan,,, +07/25/2021,18:40,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440444,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,0:00,BROOKLYN,11217,40.683514,-73.97596,"(40.683514, -73.97596)",ATLANTIC AVENUE,FORT GREENE PLACE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4440656,Sedan,,,, +07/25/2021,17:58,BROOKLYN,11223,40.591988,-73.97665,"(40.591988, -73.97665)",AVENUE W,WEST 6 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440528,Pick-up Truck,Bike,,, +07/25/2021,8:57,,,40.726166,-73.99837,"(40.726166, -73.99837)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440206,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,2:50,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,Unspecified,4440105,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/25/2021,11:12,,,40.730118,-73.86232,"(40.730118, -73.86232)",QUEENS BOULEVARD,63 DRIVE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440375,Station Wagon/Sport Utility Vehicle,Bike,,, +06/22/2021,14:30,BROOKLYN,11201,40.688248,-73.988205,"(40.688248, -73.988205)",,,315 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441066,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,2:35,BROOKLYN,11212,40.657135,-73.90365,"(40.657135, -73.90365)",NEW LOTS AVENUE,STONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440468,Sedan,Sedan,,, +07/25/2021,17:55,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440351,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,22:20,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440949,Sedan,,,, +07/14/2021,12:30,STATEN ISLAND,10310,40.630573,-74.106255,"(40.630573, -74.106255)",,,501 FOREST AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440963,Sedan,,,, +07/24/2021,13:15,BROOKLYN,11221,40.69808,-73.92536,"(40.69808, -73.92536)",MYRTLE AVENUE,DE KALB AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440878,Armored Truck,,,, +07/22/2021,13:27,QUEENS,11435,40.69591,-73.80995,"(40.69591, -73.80995)",97 AVENUE,CRESSKILL PLACE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4441021,Station Wagon/Sport Utility Vehicle,Bike,,, +07/24/2021,12:45,,,40.610214,-74.1202,"(40.610214, -74.1202)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441256,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,16:10,BROOKLYN,11207,40.67077,-73.89456,"(40.67077, -73.89456)",BELMONT AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4440389,Sedan,Motorbike,,, +07/24/2021,16:34,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440886,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/23/2021,10:40,MANHATTAN,10025,40.805073,-73.9629,"(40.805073, -73.9629)",,,501 WEST 113 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441061,Sedan,Box Truck,,, +07/25/2021,18:35,,,,,,FDR DRIVE,CATHERINE SLIP,,2,0,0,0,0,0,2,0,Unsafe Speed,Following Too Closely,Unspecified,,,4440561,Motorcycle,Sedan,Motorcycle,, +07/22/2021,18:11,BRONX,10463,40.882923,-73.90828,"(40.882923, -73.90828)",,,3215 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441090,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,19:40,BROOKLYN,11210,40.63713,-73.94519,"(40.63713, -73.94519)",,,1471 NEW YORK AVENUE,1,0,1,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4441123,Sedan,Sedan,Sedan,Sedan, +07/25/2021,4:10,,,40.586212,-73.990585,"(40.586212, -73.990585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4440273,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,2:25,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440631,Sedan,Sedan,,, +07/22/2021,14:00,QUEENS,11433,40.700268,-73.80232,"(40.700268, -73.80232)",,,151-24 BEAVER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441000,Sedan,,,, +07/25/2021,21:20,,,40.645344,-73.87897,"(40.645344, -73.87897)",PENNSYLVANIA AVENUE,HORNELL LOOP,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440552,Sedan,Sedan,,, +07/25/2021,7:33,QUEENS,11385,40.712864,-73.90478,"(40.712864, -73.90478)",ELIOT AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,14:15,,,,,,PELHAM PARKWAY NORTH,WILLIAMSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,21:40,,,40.71983,-73.98755,"(40.71983, -73.98755)",RIVINGTON STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440754,Sedan,Moped,,, +07/25/2021,21:00,STATEN ISLAND,10306,40.575207,-74.12776,"(40.575207, -74.12776)",,,3211 RICHMOND ROAD,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4440713,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,9:49,QUEENS,11364,40.749573,-73.75467,"(40.749573, -73.75467)",,,221-52 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440193,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,8:30,,,40.720764,-73.99063,"(40.720764, -73.99063)",ELDRIDGE STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4441026,Van,Box Truck,,, +07/24/2021,7:34,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441095,Sedan,Sedan,,, +07/21/2021,9:05,,,40.690647,-73.90805,"(40.690647, -73.90805)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4440881,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/25/2021,10:20,,,40.88305,-73.89983,"(40.88305, -73.89983)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441160,Sedan,,,, +07/25/2021,14:13,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440427,Tractor Truck Diesel,Sedan,,, +07/21/2021,15:30,QUEENS,11385,40.70041,-73.90368,"(40.70041, -73.90368)",MYRTLE AVENUE,SENECA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440955,Sedan,,,, +07/25/2021,14:30,QUEENS,11379,40.714127,-73.87933,"(40.714127, -73.87933)",,,66-50 74 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440958,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,4:13,QUEENS,11422,40.666416,-73.738495,"(40.666416, -73.738495)",BROOKVILLE BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440078,Sedan,Sedan,,, +07/23/2021,20:40,,,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4441071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,16:20,,,40.874992,-73.81846,"(40.874992, -73.81846)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440493,4 dr sedan,Sedan,,, +07/25/2021,18:34,BROOKLYN,11212,40.65846,-73.90066,"(40.65846, -73.90066)",,,130 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440515,Sedan,Sedan,,, +07/14/2021,0:56,BRONX,10455,40.815533,-73.91861,"(40.815533, -73.91861)",EAST 148 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441235,Sedan,,,, +07/25/2021,2:05,QUEENS,11423,40.708927,-73.77733,"(40.708927, -73.77733)",JAMAICA AVENUE,183 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441006,Sedan,,,, +07/25/2021,13:00,BRONX,10451,40.81238,-73.92473,"(40.81238, -73.92473)",,,2615 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440385,Sedan,,,, +07/25/2021,7:10,MANHATTAN,10031,40.82807,-73.94064,"(40.82807, -73.94064)",,,371 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440822,Sedan,,,, +07/25/2021,7:10,,,40.731964,-73.97412,"(40.731964, -73.97412)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4440404,Sedan,,,, +07/22/2020,12:30,BROOKLYN,11212,40.657658,-73.90377,"(40.657658, -73.90377)",,,853 STONE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441049,Sedan,,,, +07/23/2021,6:03,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4441202,Sedan,Box Truck,,, +07/25/2021,10:45,BROOKLYN,11212,40.672844,-73.907036,"(40.672844, -73.907036)",,,99 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440505,Sedan,E-Bike,,, +07/25/2021,12:40,BROOKLYN,11211,40.715553,-73.95188,"(40.715553, -73.95188)",,,497 UNION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440306,Van,Sedan,,, +07/25/2021,6:57,,,,,,EAST 32 STREET,FDR SERVICE ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4440160,Convertible,,,, +07/25/2021,0:00,,,40.582203,-74.16276,"(40.582203, -74.16276)",,,77 MARSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,17:00,,,40.76428,-73.99859,"(40.76428, -73.99859)",12 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440860,Sedan,Sedan,,, +07/25/2021,11:50,,,40.759686,-73.77183,"(40.759686, -73.77183)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4440366,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,18:30,MANHATTAN,10032,40.838497,-73.939835,"(40.838497, -73.939835)",WEST 165 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440357,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,18:00,MANHATTAN,10035,40.80194,-73.93414,"(40.80194, -73.93414)",,,2409 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440703,Sedan,Sedan,,, +07/22/2021,7:30,MANHATTAN,10128,40.784245,-73.9471,"(40.784245, -73.9471)",2 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4441032,Sedan,,,, +07/25/2021,21:10,MANHATTAN,10016,40.744556,-73.983185,"(40.744556, -73.983185)",EAST 30 STREET,PARK AVENUE SOUTH,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4440400,Station Wagon/Sport Utility Vehicle,Bike,,, +07/25/2021,7:45,BRONX,10459,40.82943,-73.89089,"(40.82943, -73.89089)",,,1237 HOE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440433,Sedan,Sedan,,, +07/21/2021,7:02,MANHATTAN,10035,40.803585,-73.93961,"(40.803585, -73.93961)",,,100 EAST 123 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440982,Sedan,Box Truck,,, +07/25/2021,6:30,BROOKLYN,11207,40.665024,-73.887436,"(40.665024, -73.887436)",,,674 HENDRIX STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4440915,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/23/2021,15:40,BRONX,10466,40.8925,-73.86125,"(40.8925, -73.86125)",,,4130 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441149,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/19/2021,15:51,BRONX,10451,40.816944,-73.92109,"(40.816944, -73.92109)",,,298 EAST 149 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441226,Sedan,E-Bike,,, +07/25/2021,8:52,MANHATTAN,10075,40.77564,-73.96263,"(40.77564, -73.96263)",MADISON AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4440483,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,6:40,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4440390,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,12:00,BRONX,10463,40.87664,-73.90139,"(40.87664, -73.90139)",ALBANY CRESCENT,KINGSBRIDGE TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441099,Sedan,,,, +07/24/2021,3:22,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440887,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/12/2021,14:50,MANHATTAN,10023,40.778164,-73.97454,"(40.778164, -73.97454)",WEST 75 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4440908,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,1:05,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4440940,Sedan,Motorcycle,,, +07/25/2021,2:28,MANHATTAN,10002,40.720837,-73.98953,"(40.720837, -73.98953)",,,156 ALLEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440414,Taxi,Sedan,,, +11/01/2021,15:07,BROOKLYN,11225,40.668346,-73.960526,"(40.668346, -73.960526)",,,934 CARROLL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473275,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,10:25,QUEENS,11375,40.718334,-73.83349,"(40.718334, -73.83349)",76 ROAD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4473044,Sedan,Pick-up Truck,,, +11/01/2021,2:20,,,40.835194,-73.874054,"(40.835194, -73.874054)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4472988,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,12:00,QUEENS,11355,40.75317,-73.82193,"(40.75317, -73.82193)",KISSENA BOULEVARD,ELDER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,7:40,QUEENS,11378,40.719555,-73.92287,"(40.719555, -73.92287)",,,57-47 47 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473741,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,11:30,,,40.830143,-73.92858,"(40.830143, -73.92858)",ANDERSON AVENUE,,,2,0,0,0,0,0,2,0,Driverless/Runaway Vehicle,Unspecified,,,,4473242,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,0:01,QUEENS,11101,40.75093,-73.948685,"(40.75093, -73.948685)",,,11-01 43 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473142,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,16:00,QUEENS,11691,40.60225,-73.75383,"(40.60225, -73.75383)",,,20-11 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473627,Pick-up Truck,,,, +10/31/2021,2:10,,,40.885426,-73.897446,"(40.885426, -73.897446)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473643,PK,Sedan,,, +11/01/2021,19:06,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",AVENUE M,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4473556,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,6:05,,,40.675793,-73.94438,"(40.675793, -73.94438)",BROOKLYN AVENUE,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4473700,Sedan,,,, +10/27/2021,16:45,,,40.87626,-73.90395,"(40.87626, -73.90395)",BAILEY AVENUE,WEST 230 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473899,Sedan,,,, +01/19/2022,15:45,BROOKLYN,11235,40.58761,-73.95235,"(40.58761, -73.95235)",,,2623 EAST 17 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4495882,Sedan,,,, +10/27/2021,20:00,BROOKLYN,11207,40.65452,-73.882225,"(40.65452, -73.882225)",VAN SICLEN AVENUE,FLATLANDS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4473573,Sedan,Sedan,,, +11/01/2021,9:00,BROOKLYN,11201,40.6985,-73.98698,"(40.6985, -73.98698)",JAY STREET,NASSAU STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473735,Sedan,Bike,,, +11/01/2021,10:15,BROOKLYN,11210,40.636627,-73.94226,"(40.636627, -73.94226)",FARRAGUT ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473298,Sedan,Sedan,,, +10/28/2021,22:27,,,40.787563,-73.97882,"(40.787563, -73.97882)",WEST END AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473761,Motorcycle,,,, +11/01/2021,16:50,STATEN ISLAND,10304,40.628735,-74.074486,"(40.628735, -74.074486)",FRONT STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473789,Sedan,,,, +11/01/2021,11:20,BROOKLYN,11208,40.681877,-73.88036,"(40.681877, -73.88036)",,,146 HALE AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4473087,Station Wagon/Sport Utility Vehicle,Ambulance,,, +11/01/2021,21:17,,,40.64967,-73.95237,"(40.64967, -73.95237)",,,ROGERS AVENUE,2,0,0,0,0,0,2,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4473341,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/30/2021,18:46,QUEENS,11379,40.721485,-73.86658,"(40.721485, -73.86658)",WOODHAVEN BOULEVARD,64 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473678,Sedan,Sedan,,, +11/01/2021,9:00,,,,,,ATLANTIC AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4473289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,1:31,QUEENS,11432,40.715076,-73.79413,"(40.715076, -73.79413)",,,170-21 84 DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4473076,Sedan,Sedan,,, +11/01/2021,4:07,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4473126,Sedan,,,, +11/01/2021,3:30,QUEENS,11101,40.743904,-73.94877,"(40.743904, -73.94877)",21 STREET,47 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473422,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,18:20,QUEENS,11374,40.730434,-73.86061,"(40.730434, -73.86061)",63 DRIVE,97 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4473377,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/01/2021,8:14,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473033,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,12:59,BROOKLYN,11233,40.671898,-73.92231,"(40.671898, -73.92231)",PARK PLACE,RALPH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473701,Sedan,Sedan,,, +10/29/2021,18:45,MANHATTAN,10024,40.78642,-73.978065,"(40.78642, -73.978065)",WEST 83 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473772,Sedan,,,, +11/01/2021,21:06,BRONX,10455,40.81656,-73.90037,"(40.81656, -73.90037)",,,939 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,9:45,STATEN ISLAND,10308,40.560295,-74.16046,"(40.560295, -74.16046)",ABINGDON AVENUE,GURLEY AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473823,Station Wagon/Sport Utility Vehicle,Bike,,, +11/01/2021,9:30,BRONX,10454,40.80635,-73.9212,"(40.80635, -73.9212)",,,165 BROWN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473221,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,9:30,QUEENS,11101,40.754692,-73.93665,"(40.754692, -73.93665)",,,25-17 39 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4473635,Sedan,Sedan,,, +10/30/2021,5:40,,,40.758705,-73.93793,"(40.758705, -73.93793)",21 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4473638,Sedan,Sedan,,, +11/01/2021,0:05,BRONX,10475,40.870014,-73.832436,"(40.870014, -73.832436)",BAYCHESTER AVENUE,ALDRICH STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4472906,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,9:10,MANHATTAN,10023,40.776684,-73.983055,"(40.776684, -73.983055)",AMSTERDAM AVENUE,WEST 69 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473749,Sedan,,,, +11/01/2021,0:00,,,,,,south elliott place,south portland avenue,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473255,Sedan,,,, +11/01/2021,20:00,MANHATTAN,10038,40.708004,-74.00617,"(40.708004, -74.00617)",,,99 JOHN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473268,Motorcycle,,,, +10/29/2021,11:28,QUEENS,11373,40.739082,-73.88954,"(40.739082, -73.88954)",,,74-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473890,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,4:52,MANHATTAN,10027,40.811623,-73.950584,"(40.811623, -73.950584)",,,255 WEST 127 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4473688,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/31/2021,14:00,,,40.575203,-74.169846,"(40.575203, -74.169846)",,,2873 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473927,Sedan,,,, +11/01/2021,14:35,QUEENS,11428,40.71806,-73.74778,"(40.71806, -73.74778)",,,93-46 212 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4473175,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/01/2021,11:50,,,40.879475,-73.91675,"(40.879475, -73.91675)",KAPPOCK STREET,KNOLLS CRESCENT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473448,Sedan,,,, +11/01/2021,0:13,BROOKLYN,11233,40.671608,-73.91695,"(40.671608, -73.91695)",SARATOGA AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473200,Sedan,Sedan,,, +10/29/2021,13:00,MANHATTAN,10005,40.704273,-74.00869,"(40.704273, -74.00869)",,,77 WATER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473724,Sedan,,,, +10/24/2021,11:05,QUEENS,11103,,,,,,31-04 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473863,Sedan,Sedan,,, +11/01/2021,18:45,BROOKLYN,11212,40.665348,-73.922325,"(40.665348, -73.922325)",SUTTER AVENUE,RALPH AVENUE,,1,0,1,0,0,0,0,0,,,,,,4473262,,,,, +11/01/2021,6:57,,,40.810287,-73.90172,"(40.810287, -73.90172)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473118,Chassis Cab,Sedan,,, +11/01/2021,4:20,BROOKLYN,11211,40.70648,-73.96375,"(40.70648, -73.96375)",BEDFORD AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473028,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/01/2021,19:25,QUEENS,11355,40.75156,-73.829384,"(40.75156, -73.829384)",CROMMELIN STREET,CHERRY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4473331,Sedan,E-Bike,,, +11/01/2021,20:21,BROOKLYN,11211,40.7138,-73.93319,"(40.7138, -73.93319)",VANDERVORT AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4473460,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,15:53,,,40.822258,-73.95616,"(40.822258, -73.95616)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473157,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/01/2021,18:02,QUEENS,11432,40.7187,-73.78195,"(40.7187, -73.78195)",,,84-53 AVON STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473149,Sedan,Sedan,,, +11/01/2021,22:22,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",FOSTER AVENUE,OCEAN PARKWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4473356,Taxi,,,, +10/30/2021,0:30,BROOKLYN,11221,40.684624,-73.93838,"(40.684624, -73.93838)",MARCUS GARVEY BOULEVARD,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473707,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,16:40,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473194,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,7:35,BRONX,10454,40.81099,-73.914856,"(40.81099, -73.914856)",SAINT ANNS AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473226,Bus,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,8:00,,,40.629826,-74.147385,"(40.629826, -74.147385)",WALKER DRIVE,DEAD END,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4473665,Sedan,Bus,,, +11/01/2021,20:46,QUEENS,11691,40.60685,-73.750824,"(40.60685, -73.750824)",,,19-15 NAMEOKE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473616,Sedan,,,, +10/31/2021,23:15,STATEN ISLAND,10306,40.573265,-74.146965,"(40.573265, -74.146965)",RICHMOND HILL ROAD,OLD MILL ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4473816,Garbage or Refuse,,,, +10/24/2021,11:05,QUEENS,11103,,,,,,40-10 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473882,Sedan,Sedan,,, +11/01/2021,18:53,,,,,,G.C.P. / LAGUARDIA (CDR),,,3,0,0,0,0,0,3,0,Passing Too Closely,View Obstructed/Limited,,,,4473248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,19:19,MANHATTAN,10002,40.72071,-73.99253,"(40.72071, -73.99253)",,,163 CHRYSTIE STREET,2,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4473918,E-Bike,Bike,,, +11/01/2021,17:00,QUEENS,11413,40.657185,-73.76597,"(40.657185, -73.76597)",150 AVENUE,182 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473181,Sedan,,,, +10/30/2021,23:30,QUEENS,11378,40.727608,-73.89452,"(40.727608, -73.89452)",,,55-26 69 PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473780,Sedan,,,, +11/01/2021,17:46,BROOKLYN,11207,40.681026,-73.89336,"(40.681026, -73.89336)",,,82 SUNNYSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473575,Sedan,,,, +10/30/2021,3:34,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,18:34,,,40.878,-73.90408,"(40.878, -73.90408)",MAJOR DEEGAN EXPRESSWAY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,Unspecified,,4473621,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/01/2021,23:52,,,40.57275,-73.997055,"(40.57275, -73.997055)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,21:34,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",ROGERS AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,4:25,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485839,Sedan,,,, +12/11/2021,4:04,,,40.72648,-73.89442,"(40.72648, -73.89442)",69 PLACE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486489,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,9:03,QUEENS,11385,40.706223,-73.88638,"(40.706223, -73.88638)",,,68-01 OTTO ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485722,Sedan,,,, +12/08/2021,14:40,,,40.870415,-73.91515,"(40.870415, -73.91515)",BROADWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4486392,Station Wagon/Sport Utility Vehicle,Van,,, +12/12/2021,4:05,MANHATTAN,10011,40.741943,-73.99449,"(40.741943, -73.99449)",,,117 WEST 21 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486224,Sedan,Sedan,,, +12/10/2021,23:15,,,40.53465,-74.19386,"(40.53465, -74.19386)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4486386,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2017,16:10,BROOKLYN,11203,40.6369807,-73.9365431,"(40.6369807, -73.9365431)",FARRAGUT ROAD,EAST 42 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,3618395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/26/2018,0:06,BROOKLYN,11203,40.6372771,-73.9317652,"(40.6372771, -73.9317652)",FARRAGUT ROAD,SCHENECTADY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,3869923,Sedan,Sedan,,, +07/12/2020,12:33,,,40.7265697,-73.8380179,"(40.7265697, -73.8380179)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4328048,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,15:50,BRONX,10451,40.814907,-73.92436,"(40.814907, -73.92436)",,,370 MORRIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496817,Sedan,Sedan,,, +01/20/2022,19:00,,,40.672688,-73.73544,"(40.672688, -73.73544)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496066,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/24/2020,0:00,BROOKLYN,11226,40.6523139,-73.9560111,"(40.6523139, -73.9560111)",BEDFORD AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4379109,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2021,17:15,,,40.656861,-73.9270238,"(40.656861, -73.9270238)",EAST 54 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4385438,Sedan,,,, +01/20/2022,6:46,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496151,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/15/2021,0:10,,,40.700469,-73.934528,"(40.700469, -73.934528)",STANWIX STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4420141,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/01/2021,14:46,QUEENS,11422,40.6652573,-73.7395512,"(40.6652573, -73.7395512)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4422634,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2021,22:10,BRONX,10451,40.8246333,-73.9105876,"(40.8246333, -73.9105876)",EAST 163 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4435624,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,20:20,QUEENS,11101,40.7565397,-73.9467863,"(40.7565397, -73.9467863)",,,40-13 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4437073,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/19/2022,17:30,,,40.853905,-73.89864,"(40.853905, -73.89864)",TIEBOUT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495987,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/12/2021,13:00,BRONX,10452,40.8402259,-73.9176827,"(40.8402259, -73.9176827)",JEROME AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446368,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/08/2021,3:00,BROOKLYN,11221,40.6866487,-73.9207388,"(40.6866487, -73.9207388)",JEFFERSON AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446373,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,0:00,,,40.7288651,-73.9278123,"(40.7288651, -73.9278123)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4446656,Sedan,Sedan,,, +07/08/2021,18:25,BROOKLYN,11217,40.6805492,-73.9744291,"(40.6805492, -73.9744291)",,,67 6 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447508,Dump,Sedan,,, +08/16/2021,23:27,BRONX,10457,40.8474873,-73.9055219,"(40.8474873, -73.9055219)",EAST 176 STREET,TOPPING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447744,Sedan,,,, +07/25/2021,14:43,,,40.7128574,-73.9048939,"(40.7128574, -73.9048939)",METROPOLITAN AVENUE,60 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447963,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/22/2021,0:26,QUEENS,11420,40.6814069,-73.8235501,"(40.6814069, -73.8235501)",,,109-11 117 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4449270,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/25/2021,14:23,BRONX,10452,40.8454299,-73.9139752,"(40.8454299, -73.9139752)",JEROME AVENUE,FEATHERBED LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450628,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +01/18/2022,15:45,BROOKLYN,11211,40.716522,-73.93732,"(40.716522, -73.93732)",,,139 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496164,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,15:48,BROOKLYN,11217,40.67645,-73.97411,"(40.67645, -73.97411)",SAINT JOHNS PLACE,7 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496591,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,6:35,MANHATTAN,10027,40.8077723,-73.9454833,"(40.8077723, -73.9454833)",WEST 125 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451962,Sedan,Sedan,,, +07/21/2021,15:15,BROOKLYN,11237,40.7065744,-73.9228648,"(40.7065744, -73.9228648)",WYCKOFF AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4452478,Sedan,Sedan,,, +09/01/2021,18:00,BROOKLYN,11225,40.669823,-73.949745,"(40.669823, -73.949745)",,,518 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4452870,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,0:12,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440794,Sedan,Sedan,,, +01/20/2022,19:45,,,40.833206,-73.82797,"(40.833206, -73.82797)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496313,Taxi,Sedan,,, +09/02/2021,20:00,,,40.7199263,-73.7838344,"(40.7199263, -73.7838344)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unsafe Speed,Unsafe Speed,Unsafe Speed,,4453431,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/03/2021,13:45,QUEENS,11420,40.6661438,-73.8232509,"(40.6661438, -73.8232509)",NORTH CONDUIT AVENUE,118 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4453578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,21:47,MANHATTAN,10027,40.8139383,-73.9484189,"(40.8139383, -73.9484189)",8 AVENUE,WEST 131 STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4454168,Sedan,Sedan,,, +01/20/2022,3:55,,,40.72822,-73.886116,"(40.72822, -73.886116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4496179,Sedan,Box Truck,,, +09/10/2021,15:50,,,40.5852419,-73.9892259,"(40.5852419, -73.9892259)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Glare,Unspecified,Unspecified,,,4456006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/21/2021,9:29,MANHATTAN,10011,40.740772,-73.99435,"(40.740772, -73.99435)",,,646 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496296,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/19/2022,14:16,,,40.57928,-74.16349,"(40.57928, -74.16349)",MARSH AVENUE,STATEN ISLAND MALL DRIVE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4495800,Sedan,,,, +09/10/2021,16:45,BRONX,10467,40.8841485,-73.8588522,"(40.8841485, -73.8588522)",,,3852 BARNES AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456485,Sedan,,,, +01/20/2022,9:00,,,40.694035,-73.72679,"(40.694035, -73.72679)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496010,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,22:59,,,40.86536,-73.87043,"(40.86536, -73.87043)",ALLERTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496125,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,16:00,BROOKLYN,11219,40.6286429,-74.0059263,"(40.6286429, -74.0059263)",65 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4457607,Sedan,,,, +09/15/2021,19:50,,,40.7677758,-73.8649828,"(40.7677758, -73.8649828)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4457932,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,16:00,,,40.6658496,-73.7555007,"(40.6658496, -73.7555007)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4458423,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,17:51,BRONX,10462,40.85594,-73.86764,"(40.85594, -73.86764)",,,2184 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495979,Sedan,Sedan,,, +09/18/2021,7:15,STATEN ISLAND,10306,40.5734359,-74.1064621,"(40.5734359, -74.1064621)",,,2350 HYLAN BOULEVARD,2,0,0,0,0,0,2,0,Passenger Distraction,,,,,4458557,Sedan,,,, +09/15/2021,0:00,BROOKLYN,11233,40.6753803,-73.9081956,"(40.6753803, -73.9081956)",EASTERN PARKWAY,PACIFIC STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4458683,Station Wagon/Sport Utility Vehicle,Bike,,, +09/17/2021,15:42,BROOKLYN,11203,40.6510887,-73.9391882,"(40.6510887, -73.9391882)",,,920 ALBANY AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4458747,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/19/2022,1:20,,,40.819157,-73.96038,"(40.819157, -73.96038)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4495787,Sedan,Sedan,,, +01/19/2022,14:43,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4495828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/13/2022,18:00,BROOKLYN,11234,40.61791,-73.91905,"(40.61791, -73.91905)",,,1498 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496269,Sedan,Sedan,,, +09/21/2021,14:30,BRONX,10475,40.875133,-73.8333395,"(40.875133, -73.8333395)",,,850 BAYCHESTER AVENUE,6,0,6,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459742,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,14:08,,,40.81943,-73.88972,"(40.81943, -73.88972)",HUNTS POINT AVENUE,,,0,1,0,0,0,0,0,1,Lost Consciousness,Unspecified,,,,4453643,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,18:44,BRONX,10469,40.8723169,-73.8495814,"(40.8723169, -73.8495814)",,,1283 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,7:10,,,40.5855001,-73.9557635,"(40.5855001, -73.9557635)",SHORE PARKWAY,EAST 13 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4460163,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,7:31,,,40.6768131,-73.9192363,"(40.6768131, -73.9192363)",HOWARD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4460197,Sedan,,,, +01/20/2022,2:50,BRONX,10466,40.89024,-73.860306,"(40.89024, -73.860306)",LOWERRE PLACE,EAST 228 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4496037,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/22/2021,18:30,MANHATTAN,10019,40.7631012,-73.9877621,"(40.7631012, -73.9877621)",,,345 WEST 50 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4460465,Bike,,,, +09/24/2021,15:34,QUEENS,11361,40.7586802,-73.7755711,"(40.7586802, -73.7755711)",NORTHERN BOULEVARD,208 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4460557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van,, +09/24/2021,15:30,BROOKLYN,11228,40.6159968,-74.0154882,"(40.6159968, -74.0154882)",12 AVENUE,85 STREET,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4460605,Sedan,Bike,,, +09/24/2021,16:00,,,40.8339652,-73.862892,"(40.8339652, -73.862892)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4460762,Sedan,Sedan,,, +09/24/2021,23:12,STATEN ISLAND,10301,40.6345336,-74.0866969,"(40.6345336, -74.0866969)",CASTLETON AVENUE,CEBRA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4460827,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,16:45,QUEENS,11433,40.694748,-73.78991,"(40.694748, -73.78991)",,,109-001 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/26/2021,11:15,,,40.6355203,-74.0166962,"(40.6355203, -74.0166962)",65 STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4461027,Tanker,Bike,,, +09/25/2021,6:37,BROOKLYN,11212,40.666189,-73.9166575,"(40.666189, -73.9166575)",SARATOGA AVENUE,SUTTER AVENUE,,2,1,0,0,0,0,2,1,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4461288,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/24/2021,21:50,,,40.7790506,-73.9434935,"(40.7790506, -73.9434935)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4461371,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,6:30,QUEENS,11422,40.666416,-73.738495,"(40.666416, -73.738495)",NORTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495742,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/27/2021,9:30,MANHATTAN,10003,40.7364966,-73.9845859,"(40.7364966, -73.9845859)",,,233 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4461812,Box Truck,,,, +09/27/2021,21:00,BROOKLYN,11212,40.6611498,-73.9228401,"(40.6611498, -73.9228401)",,,205 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461988,Sedan,Pick-up Truck,,, +09/29/2021,8:45,,,40.7188191,-73.8326472,"(40.7188191, -73.8326472)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462184,Sedan,Sedan,,, +09/29/2021,9:26,,,40.7160431,-73.8041526,"(40.7160431, -73.8041526)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,7:00,BROOKLYN,11236,40.6536316,-73.9189461,"(40.6536316, -73.9189461)",,,9111 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462245,Sedan,,,, +09/29/2021,14:13,STATEN ISLAND,10306,40.5627,-74.1117052,"(40.5627, -74.1117052)",,,265 MILL ROAD,1,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4462303,Sedan,,,, +09/26/2021,10:04,BRONX,10451,40.8157206,-73.9250541,"(40.8157206, -73.9250541)",EAST 144 STREET,RIDER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4462323,Station Wagon/Sport Utility Vehicle,Bike,,, +09/29/2021,22:25,,,40.7221049,-73.7777123,"(40.7221049, -73.7777123)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462416,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/07/2022,14:30,BRONX,10469,40.87965,-73.84236,"(40.87965, -73.84236)",,,3636 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496286,Sedan,Pick-up Truck,,, +01/20/2022,18:45,BROOKLYN,11235,40.590633,-73.94976,"(40.590633, -73.94976)",OCEAN AVENUE,AVENUE Y,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4496137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,16:20,QUEENS,11368,40.75322,-73.86868,"(40.75322, -73.86868)",,,35-46 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,3:15,,,40.8303057,-73.8717924,"(40.8303057, -73.8717924)",WESTCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4462860,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/01/2021,12:45,BROOKLYN,11249,40.7016614,-73.9614533,"(40.7016614, -73.9614533)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462910,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,9:15,,,40.610902,-74.1419738,"(40.610902, -74.1419738)",,,5 CRAFTON AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4463104,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,15:50,,,,,,,,94 WEST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4440925,E-Bike,,,, +10/01/2021,15:00,,,40.7395015,-73.8368894,"(40.7395015, -73.8368894)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4463113,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/01/2021,20:00,BROOKLYN,11235,40.5862603,-73.9489224,"(40.5862603, -73.9489224)",OCEAN AVENUE,VOORHIES AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4463147,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,7:30,,,40.6249126,-74.1467004,"(40.6249126, -74.1467004)",FOREST AVENUE,WILLOW ROAD WEST,,1,0,1,0,0,0,0,0,Unspecified,,,,,4463181,Sedan,,,, +10/02/2021,10:00,BRONX,10473,40.8220118,-73.858263,"(40.8220118, -73.858263)",WHITE PLAINS ROAD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463237,Station Wagon/Sport Utility Vehicle,Convertible,,, +10/02/2021,13:35,,,40.678255,-74.002722,"(40.678255, -74.002722)",HAMILTON AVENUE,,,0,1,0,0,0,0,0,1,Unsafe Speed,Turning Improperly,,,,4463263,Motorcycle,Sedan,,, +10/02/2021,10:00,,,40.7190642,-73.8331949,"(40.7190642, -73.8331949)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4463276,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/17/2022,0:30,,,40.639023,-73.941536,"(40.639023, -73.941536)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496558,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,10:51,BROOKLYN,11218,40.6433896,-73.9778546,"(40.6433896, -73.9778546)",,,250 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463368,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,9:12,BROOKLYN,11235,40.5871218,-73.962045,"(40.5871218, -73.962045)",EAST 7 STREET,AVENUE Z,,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4463444,Sedan,,,, +01/21/2022,4:30,QUEENS,11101,40.75739,-73.94044,"(40.75739, -73.94044)",,,38-72 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496506,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,6:40,,,,,,HICKS STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4496169,Sedan,Sedan,,, +01/19/2022,15:35,,,40.610477,-74.09396,"(40.610477, -74.09396)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4496062,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/04/2021,19:28,BROOKLYN,11223,40.5915855,-73.9737863,"(40.5915855, -73.9737863)",,,2481 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4464200,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,7:40,BRONX,10451,40.8184304,-73.9210458,"(40.8184304, -73.9210458)",,,290 EAST 151 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4464223,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,22:47,QUEENS,11419,40.6890032,-73.8293347,"(40.6890032, -73.8293347)",115 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4464257,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/30/2021,15:00,QUEENS,11375,40.7216183,-73.8545695,"(40.7216183, -73.8545695)",YELLOWSTONE BOULEVARD,CLYDE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4464297,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/04/2021,17:10,QUEENS,11412,40.69041,-73.7555643,"(40.69041, -73.7555643)",119 AVENUE,195 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4464299,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,22:33,,,40.8516684,-73.9213895,"(40.8516684, -73.9213895)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4464304,Sedan,Sedan,Sedan,, +10/04/2021,13:10,BROOKLYN,11234,40.6099823,-73.921878,"(40.6099823, -73.921878)",,,5100 AVENUE U,9,0,0,0,0,0,9,0,Unsafe Speed,,,,,4464357,,,,, +01/13/2022,8:15,QUEENS,11412,40.70882,-73.751854,"(40.70882, -73.751854)",FRANCIS LEWIS BOULEVARD,109 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4496190,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,14:57,,,40.8782149,-73.8411402,"(40.8782149, -73.8411402)",EAST 222 STREET,BRUNER AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4464411,Station Wagon/Sport Utility Vehicle,Bike,,, +10/04/2021,18:45,QUEENS,11354,40.7664463,-73.8290893,"(40.7664463, -73.8290893)",LEAVITT STREET,34 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4464444,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,15:00,QUEENS,11432,40.7168035,-73.7872268,"(40.7168035, -73.7872268)",EDGERTON BOULEVARD,HENLEY ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464457,Sedan,Sedan,,, +10/05/2021,15:15,BROOKLYN,11201,40.6893066,-73.9852405,"(40.6893066, -73.9852405)",,,222 LIVINGSTON STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464470,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,19:50,QUEENS,11414,40.6641936,-73.8411164,"(40.6641936, -73.8411164)",CROSS BAY BOULEVARD,156 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4464534,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/05/2021,11:00,BROOKLYN,11228,40.6114054,-74.009512,"(40.6114054, -74.009512)",86 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4464644,Sedan,Bike,,, +10/02/2021,1:47,,,,,,NEW ENGLAND THRUWAY,,,2,1,0,0,0,0,2,1,Unsafe Speed,Unspecified,,,,4464370,Sedan,Sedan,,, +01/19/2022,11:00,BROOKLYN,11222,40.734673,-73.960045,"(40.734673, -73.960045)",WEST STREET,EAGLE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4495920,Pick-up Truck,Box Truck,,, +10/04/2021,6:00,QUEENS,11385,40.7014946,-73.9054655,"(40.7014946, -73.9054655)",PUTNAM AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4464672,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/06/2021,8:29,,,40.8325458,-73.8579674,"(40.8325458, -73.8579674)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464709,Sedan,Motorcycle,,, +10/06/2021,10:15,BROOKLYN,11233,40.6730798,-73.9112306,"(40.6730798, -73.9112306)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464714,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,13:53,QUEENS,11377,40.7518401,-73.9035714,"(40.7518401, -73.9035714)",BROADWAY,58 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4464798,Station Wagon/Sport Utility Vehicle,Moped,,, +10/07/2021,1:50,MANHATTAN,10022,40.7612344,-73.9638843,"(40.7612344, -73.9638843)",EAST 60 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4464849,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,20:39,,,40.7132101,-73.9772222,"(40.7132101, -73.9772222)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,Unspecified,,,4464856,Sedan,Sedan,Sedan,, +01/20/2022,17:46,QUEENS,11374,40.73251,-73.857056,"(40.73251, -73.857056)",99 STREET,63 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496094,Sedan,Sedan,,, +09/18/2021,3:05,MANHATTAN,10034,40.8642444,-73.9174485,"(40.8642444, -73.9174485)",,,401 WEST 207 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4464939,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,17:06,QUEENS,11103,40.765575,-73.91475,"(40.765575, -73.91475)",,,28-46 38 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4496099,Sedan,,,, +10/07/2021,7:00,,,40.6675755,-73.729503,"(40.6675755, -73.729503)",HOOK CREEK BOULEVARD,137 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4464981,Sedan,Bike,,, +10/07/2021,8:30,BROOKLYN,11206,40.7084944,-73.9388628,"(40.7084944, -73.9388628)",BUSHWICK PLACE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4464996,Sedan,Flat Bed,,, +10/02/2021,10:50,,,40.8636899,-73.9170643,"(40.8636899, -73.9170643)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465002,Sedan,Sedan,,, +10/05/2021,15:51,MANHATTAN,10003,40.7357435,-73.9925888,"(40.7357435, -73.9925888)",,,7 EAST 14 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465006,Bike,Taxi,,, +10/07/2021,14:30,BROOKLYN,11203,40.6397952,-73.9291071,"(40.6397952, -73.9291071)",UTICA AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465086,E-Bike,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,5:36,QUEENS,11354,40.756657,-73.83482,"(40.756657, -73.83482)",,,131-72 40 ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4495662,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,21:41,,,40.6625349,-73.9479124,"(40.6625349, -73.9479124)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4465118,Sedan,,,, +10/07/2021,22:21,BROOKLYN,11236,40.6383153,-73.9140952,"(40.6383153, -73.9140952)",,,670 EAST 82 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4465126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/08/2021,6:40,,,40.6652495,-73.9481518,"(40.6652495, -73.9481518)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4465165,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/07/2021,17:15,,,40.6984155,-73.9337943,"(40.6984155, -73.9337943)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465185,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,9:30,,,40.85809,-73.901924,"(40.85809, -73.901924)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496158,Snow Plow,Pick-up Truck,,, +10/02/2021,11:41,QUEENS,11434,40.6862815,-73.7769974,"(40.6862815, -73.7769974)",170 STREET,FOCH BOULEVARD,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4465326,Box Truck,Bike,,, +10/08/2021,14:22,MANHATTAN,10075,40.7763113,-73.9642299,"(40.7763113, -73.9642299)",EAST 78 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,Unspecified,,,4465335,Station Wagon/Sport Utility Vehicle,Bike,Station Wagon/Sport Utility Vehicle,, +10/07/2021,0:08,,,40.8020705,-73.9735112,"(40.8020705, -73.9735112)",HENRY HUDSON PARKWAY,,,0,1,0,0,0,1,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4465371,Sedan,Bike,,, +10/08/2021,17:18,,,40.7440274,-73.7176262,"(40.7440274, -73.7176262)",UNION TURNPIKE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465398,Sedan,,,, +01/19/2022,23:48,,,40.763115,-73.99966,"(40.763115, -73.99966)",12 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4495952,Sedan,Sedan,,, +01/20/2022,4:24,BRONX,10473,40.81983,-73.841934,"(40.81983, -73.841934)",RANDALL AVENUE,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495965,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,16:00,,,40.837875,-73.91971,"(40.837875, -73.91971)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496205,Bus,Sedan,,, +10/09/2021,16:27,BRONX,10460,40.8357057,-73.8887453,"(40.8357057, -73.8887453)",SOUTHERN BOULEVARD,EAST 173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465522,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,12:30,,,40.6101508,-74.1469669,"(40.6101508, -74.1469669)",WILLOWBROOK ROAD,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4465552,Sedan,Sedan,,, +10/09/2021,6:30,BROOKLYN,11212,40.6637842,-73.9035407,"(40.6637842, -73.9035407)",,,383 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4465581,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +10/07/2021,20:41,STATEN ISLAND,10314,40.6114287,-74.1168345,"(40.6114287, -74.1168345)",SLOSSON AVENUE,REON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465687,Sedan,Sedan,,, +10/11/2021,20:30,MANHATTAN,10026,40.80396,-73.94828,"(40.80396, -73.94828)",WEST 119 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466248,Station Wagon/Sport Utility Vehicle,Bike,,, +01/21/2022,23:00,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4496393,Sedan,,,, +07/14/2021,19:45,BRONX,10466,40.885636,-73.8584015,"(40.885636, -73.8584015)",,,3925 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4465810,Sedan,Pick-up Truck,,, +10/08/2021,7:25,BROOKLYN,11221,40.6870097,-73.9196066,"(40.6870097, -73.9196066)",,,975 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4465821,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/10/2021,8:32,BROOKLYN,11236,40.640808,-73.9118656,"(40.640808, -73.9118656)",,,634 EAST 86 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4465854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/10/2021,19:26,BRONX,10463,40.8764759,-73.9044863,"(40.8764759, -73.9044863)",MAJOR DEEGAN EXPRESSWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4465883,Taxi,Sedan,,, +10/10/2021,9:30,,,40.7492931,-73.7566381,"(40.7492931, -73.7566381)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Speed,,,,4465909,Sedan,Sedan,,, +01/20/2022,12:40,BROOKLYN,11235,40.593502,-73.94328,"(40.593502, -73.94328)",,,2710 AVENUE X,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496132,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,14:30,QUEENS,11417,40.6733217,-73.8463905,"(40.6733217, -73.8463905)",PITKIN AVENUE,SITKA STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4466011,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/10/2021,7:43,,,40.685723,-73.8573737,"(40.685723, -73.8573737)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Alcohol Involvement,Alcohol Involvement,,,,4466045,Pick-up Truck,Sedan,,, +10/10/2021,23:23,,,40.665116,-73.9293072,"(40.665116, -73.9293072)",CROWN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4466079,Sedan,Sedan,,, +10/09/2021,23:47,BRONX,10475,40.8803256,-73.8277623,"(40.8803256, -73.8277623)",GIVAN AVENUE,ROMBOUTS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4466099,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/11/2021,14:05,BROOKLYN,11210,40.6296168,-73.9424729,"(40.6296168, -73.9424729)",AVENUE I,EAST 35 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466210,Station Wagon/Sport Utility Vehicle,Bike,,, +10/11/2021,16:20,STATEN ISLAND,10305,40.5952986,-74.0628627,"(40.5952986, -74.0628627)",CAPODANNO BOULEVARD,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466214,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,14:00,BROOKLYN,11220,40.6326333,-74.0125342,"(40.6326333, -74.0125342)",65 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466236,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/11/2021,18:11,BROOKLYN,11209,40.6324945,-74.0215798,"(40.6324945, -74.0215798)",,,7102 5 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466237,Bike,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,8:37,BRONX,10467,40.858826,-73.86858,"(40.858826, -73.86858)",OLINVILLE AVENUE,THWAITES PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496222,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,15:06,,,40.6103374,-74.1311058,"(40.6103374, -74.1311058)",PURDY AVENUE,WHEELER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466254,Sedan,Sedan,Sedan,, +10/11/2021,20:06,QUEENS,11422,40.6668538,-73.7367116,"(40.6668538, -73.7367116)",FRANCIS LEWIS BOULEVARD,241 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4466255,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,0:01,QUEENS,11413,40.6761178,-73.7404569,"(40.6761178, -73.7404569)",230 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466256,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,7:50,BROOKLYN,11229,40.606346,-73.95273,"(40.606346, -73.95273)",OCEAN AVENUE,AVENUE R,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495878,Sedan,,,, +10/11/2021,23:30,,,40.7008471,-73.9949415,"(40.7008471, -73.9949415)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Oversized Vehicle,,,,4466257,Tractor Truck Gasoline,Sedan,,, +10/11/2021,11:20,QUEENS,11362,40.7700155,-73.7356516,"(40.7700155, -73.7356516)",,,252-20 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466259,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,18:51,QUEENS,11362,40.7648351,-73.7260024,"(40.7648351, -73.7260024)",,,254-41 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466260,Sedan,Sedan,,, +10/09/2021,0:55,MANHATTAN,10022,40.7583082,-73.9629257,"(40.7583082, -73.9629257)",EAST 57 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466261,Station Wagon/Sport Utility Vehicle,Bike,,, +10/11/2021,21:49,,,40.8214864,-73.9485395,"(40.8214864, -73.9485395)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466262,Station Wagon/Sport Utility Vehicle,MOPPED,,, +10/11/2021,18:22,QUEENS,11416,40.68424,-73.8460949,"(40.68424, -73.8460949)",WOODHAVEN BOULEVARD,101 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466263,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/04/2021,21:10,QUEENS,11418,40.7015324,-73.8234023,"(40.7015324, -73.8234023)",129 STREET,JAMAICA AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466266,4 dr sedan,Bike,,, +10/11/2021,20:15,QUEENS,11419,40.6944406,-73.8151197,"(40.6944406, -73.8151197)",133 STREET,97 AVENUE,,5,0,0,0,0,0,5,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4466267,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/11/2021,14:15,QUEENS,11420,40.6661202,-73.8222416,"(40.6661202, -73.8222416)",LEFFERTS BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466268,Sedan,Sedan,,, +10/11/2021,13:00,QUEENS,11419,40.682243,-73.8222131,"(40.682243, -73.8222131)",LEFFERTS BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466269,Sedan,Sedan,,, +10/11/2021,18:45,,,40.6912102,-73.8135384,"(40.6912102, -73.8135384)",LIBERTY AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4466270,Sedan,Bike,,, +10/11/2021,21:13,,,40.6666992,-73.8117267,"(40.6666992, -73.8117267)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4466272,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,0:41,QUEENS,11419,40.6904357,-73.8114198,"(40.6904357, -73.8114198)",,,134-17 105 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466273,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/10/2021,23:14,,,40.6757957,-73.8170533,"(40.6757957, -73.8170533)",ROCKAWAY BOULEVARD,121 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466274,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,11:00,QUEENS,11420,40.6687266,-73.8214416,"(40.6687266, -73.8214416)",149 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,18:06,QUEENS,11417,40.6769174,-73.8527274,"(40.6769174, -73.8527274)",84 STREET,108 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466276,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,9:00,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496044,Tractor Truck Diesel,Tractor Truck Diesel,,, +10/11/2021,8:04,,,40.6896595,-74.0004688,"(40.6896595, -74.0004688)",COLUMBIA STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466281,Van,Box Truck,,, +01/21/2022,15:00,BROOKLYN,11228,40.625774,-74.016495,"(40.625774, -74.016495)",FORT HAMILTON PARKWAY,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,17:27,BROOKLYN,11235,40.5909015,-73.9396197,"(40.5909015, -73.9396197)",,,3823 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466284,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,16:20,BROOKLYN,11229,40.6031897,-73.9584733,"(40.6031897, -73.9584733)",,,1318 AVENUE S,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466285,Bike,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,4:33,BROOKLYN,11223,40.5971853,-73.9724299,"(40.5971853, -73.9724299)",,,315 AVENUE U,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4466287,Sedan,Pick-up Truck,,, +10/07/2021,7:10,MANHATTAN,10035,40.8012713,-73.9362873,"(40.8012713, -73.9362873)",,,224 EAST 122 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4466288,Van,Sedan,,, +10/11/2021,9:41,MANHATTAN,10035,40.8034264,-73.933083,"(40.8034264, -73.933083)",EAST 126 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4466289,Sedan,Garbage or Refuse,,, +10/11/2021,6:30,MANHATTAN,10037,40.814055,-73.9348317,"(40.814055, -73.9348317)",EAST 138 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466290,Sedan,,,, +10/11/2021,7:00,MANHATTAN,10035,40.7987955,-73.9346738,"(40.7987955, -73.9346738)",,,332 EAST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466291,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,15:29,MANHATTAN,10035,40.8009801,-73.9317744,"(40.8009801, -73.9317744)",1 AVENUE,EAST 124 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466292,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/12/2021,0:40,BROOKLYN,11206,40.7011785,-73.9429051,"(40.7011785, -73.9429051)",,,716 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4466294,Sedan,Pick-up Truck,Motorcycle,, +10/11/2021,2:00,BROOKLYN,11211,40.7180041,-73.944588,"(40.7180041, -73.944588)",,,168 FROST STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466295,Sedan,,,, +10/11/2021,23:40,,,40.815611,-73.934297,"(40.815611, -73.934297)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466296,Sedan,,,, +10/11/2021,17:00,BROOKLYN,11222,40.726103,-73.9384262,"(40.726103, -73.9384262)",,,300 NASSAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466297,Sedan,,,, +10/11/2021,21:25,QUEENS,11379,40.7175238,-73.8842277,"(40.7175238, -73.8842277)",71 STREET,JUNIPER BOULEVARD SOUTH,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4466301,Sedan,,,, +10/11/2021,20:45,QUEENS,11385,40.7065479,-73.8750114,"(40.7065479, -73.8750114)",,,77-03 75 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466302,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/11/2021,6:53,QUEENS,11385,40.6914356,-73.8906231,"(40.6914356, -73.8906231)",CYPRESS AVENUE,VERMONT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466303,Sedan,,,, +10/11/2021,22:55,QUEENS,11374,40.7253863,-73.8701823,"(40.7253863, -73.8701823)",,,62-62 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4466304,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,7:00,BROOKLYN,11217,40.6808521,-73.9774553,"(40.6808521, -73.9774553)",SAINT MARKS AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466305,Sedan,,,, +01/21/2022,0:00,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",LEFFERTS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496348,Sedan,Sedan,,, +10/07/2021,18:40,MANHATTAN,10036,40.7609926,-73.990759,"(40.7609926, -73.990759)",9 AVENUE,WEST 46 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466308,Sedan,Bike,,, +10/11/2021,19:00,,,40.6046716,-74.0165156,"(40.6046716, -74.0165156)",15 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466309,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,19:00,QUEENS,11691,40.5959345,-73.759619,"(40.5959345, -73.759619)",SEAGIRT BOULEVARD,BEACH 26 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466310,Sedan,Motorcycle,,, +10/08/2021,11:30,MANHATTAN,10022,40.7619084,-73.9696292,"(40.7619084, -73.9696292)",,,110 EAST 58 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4466311,Sedan,,,, +01/21/2022,12:40,,,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496673,Sedan,Sedan,,, +10/11/2021,0:00,BROOKLYN,11222,40.7299172,-73.9509512,"(40.7299172, -73.9509512)",,,224 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466313,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,6:30,QUEENS,11101,40.7452378,-73.9376959,"(40.7452378, -73.9376959)",SKILLMAN AVENUE,THOMSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466314,Taxi,,,, +10/08/2021,16:10,MANHATTAN,10036,40.7587238,-73.983745,"(40.7587238, -73.983745)",,,150 WEST 47 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4466315,Motorcycle,,,, +10/08/2021,17:30,MANHATTAN,10019,40.7703138,-73.9914004,"(40.7703138, -73.9914004)",WEST 57 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4466316,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,3:20,,,40.7221796,-73.9498645,"(40.7221796, -73.9498645)",DRIGGS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,23:12,,,40.7297901,-73.9482567,"(40.7297901, -73.9482567)",CALYER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466318,Sedan,TRAILER,,, +10/08/2021,11:35,,,40.7585739,-73.9850489,"(40.7585739, -73.9850489)",WEST 46 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466319,Bike,Bike,,, +10/09/2021,2:53,QUEENS,11691,40.6021218,-73.7579296,"(40.6021218, -73.7579296)",,,23-11 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466320,Sedan,Sedan,,, +10/11/2021,9:00,BROOKLYN,11230,40.6325563,-73.9578833,"(40.6325563, -73.9578833)",,,1212 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466321,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,12:45,BROOKLYN,11230,40.6182488,-73.9590061,"(40.6182488, -73.9590061)",,,1605 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466322,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,20:00,,,40.6441434,-73.9579191,"(40.6441434, -73.9579191)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466324,Sedan,Sedan,,, +10/12/2021,1:49,BRONX,10451,40.8216698,-73.9151801,"(40.8216698, -73.9151801)",MELROSE AVENUE,EAST 157 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4466325,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/12/2021,0:14,BROOKLYN,11210,40.6317075,-73.946481,"(40.6317075, -73.946481)",FLATBUSH AVENUE,AVENUE H,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466326,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/18/2022,13:00,,,40.671627,-73.93364,"(40.671627, -73.93364)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4569172,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,5:30,,,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,,,1,0,0,0,1,0,0,0,Pavement Slippery,Passing or Lane Usage Improper,,,,4496264,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/20/2022,19:00,,,40.686905,-73.94463,"(40.686905, -73.94463)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496627,Sedan,,,, +10/09/2021,20:05,MANHATTAN,10019,40.7632592,-73.9906061,"(40.7632592, -73.9906061)",,,424 WEST 49 STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4466331,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,0:11,,,40.646328,-73.91276,"(40.646328, -73.91276)",REMSEN AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4431957,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,10:45,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4435176,Van,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/23/2021,22:15,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4439820,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,18:40,,,,,,belt parkway,ocean parkway,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4441452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/19/2021,14:30,,,40.693573,-73.92275,"(40.693573, -73.92275)",EVERGREEN AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4441518,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,23:15,,,40.737167,-74.001465,"(40.737167, -74.001465)",BANK STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441491,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,1:33,BROOKLYN,11232,40.649303,-74.0203,"(40.649303, -74.0203)",1 AVENUE,52 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4441465,Sedan,Trailer,,, +07/22/2021,23:13,BROOKLYN,11224,40.574593,-73.98764,"(40.574593, -73.98764)",WEST 21 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4441451,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/25/2021,14:21,MANHATTAN,10003,40.732178,-73.99136,"(40.732178, -73.99136)",,,795 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4441494,Sedan,,,, +07/26/2021,19:00,BROOKLYN,11232,40.653755,-74.00501,"(40.653755, -74.00501)",37 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4441464,Sedan,Bike,,, +07/04/2021,21:05,BROOKLYN,11205,40.694256,-73.97799,"(40.694256, -73.97799)",SAINT EDWARDS STREET,AUBURN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441473,Sedan,Sedan,,, +07/26/2021,21:59,,,40.766556,-73.96294,"(40.766556, -73.96294)",3 AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,Unspecified,,,4441495,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,0:37,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,,,,4441449,Sedan,Chassis Cab,,, +07/20/2021,22:25,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441463,Sedan,,,, +10/08/2021,0:41,MANHATTAN,10019,40.7647362,-73.988033,"(40.7647362, -73.988033)",WEST 52 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466332,Taxi,,,, +10/10/2021,10:55,MANHATTAN,10019,40.7644248,-73.975587,"(40.7644248, -73.975587)",,,42 WEST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466333,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,14:30,BRONX,10458,40.8703866,-73.8819765,"(40.8703866, -73.8819765)",EAST MOSHOLU PARKWAY SOUTH,MARION AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4466334,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,21:50,,,40.8674755,-73.8974019,"(40.8674755, -73.8974019)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466335,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,8:15,BROOKLYN,11211,40.70479,-73.961876,"(40.70479, -73.961876)",ROSS STREET,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4496444,Station Wagon/Sport Utility Vehicle,Bus,,, +10/10/2021,10:12,BRONX,10458,40.8742704,-73.8847756,"(40.8742704, -73.8847756)",EAST 204 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,14:22,MANHATTAN,10036,40.7559108,-73.9793391,"(40.7559108, -73.9793391)",,,556 5 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4466339,Sedan,Taxi,Sedan,, +10/11/2021,0:00,BRONX,10458,40.8760008,-73.8850882,"(40.8760008, -73.8850882)",,,161 EAST 206 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4466340,Sedan,Sedan,Sedan,, +10/11/2021,6:55,BRONX,10458,40.8586258,-73.8858711,"(40.8586258, -73.8858711)",,,574 EAST FORDHAM ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/26/2021,13:40,QUEENS,11429,40.713985,-73.73812,"(40.713985, -73.73812)",HEMPSTEAD AVENUE,218 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440776,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,22:35,QUEENS,11427,40.728024,-73.74764,"(40.728024, -73.74764)",HILLSIDE AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4440929,Sedan,Sedan,,, +07/26/2021,17:40,BROOKLYN,11226,40.6535,-73.9654,"(40.6535, -73.9654)",,,115 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440841,Carry All,Sedan,,, +07/24/2021,16:50,QUEENS,11435,40.71451,-73.822975,"(40.71451, -73.822975)",135 STREET,82 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,15:50,QUEENS,11106,40.75892,-73.92566,"(40.75892, -73.92566)",33 STREET,34 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4441283,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,1:41,,,40.733707,-73.722275,"(40.733707, -73.722275)",CROSS ISLAND PARKWAY,84 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440412,Sedan,Sedan,,, +07/26/2021,2:30,MANHATTAN,10016,40.74373,-73.98507,"(40.74373, -73.98507)",,,50 EAST 28 STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4440815,Sedan,,,, +07/26/2021,17:02,BROOKLYN,11205,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,PULASKI STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4441009,Sedan,Sedan,,, +07/26/2021,6:30,,,40.846443,-73.826004,"(40.846443, -73.826004)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440892,Sedan,Tractor Truck Diesel,,, +07/26/2021,14:23,,,40.688614,-73.999435,"(40.688614, -73.999435)",WARREN STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441221,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/24/2021,21:20,,,40.751526,-73.859184,"(40.751526, -73.859184)",108 STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441397,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,5:00,,,40.696556,-73.98091,"(40.696556, -73.98091)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4440424,Sedan,,,, +07/26/2021,13:21,BRONX,10460,40.8466,-73.88346,"(40.8466, -73.88346)",CROTONA PARKWAY,EAST 181 STREET,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,Unspecified,,4440897,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/24/2021,9:00,QUEENS,11435,40.709343,-73.8178,"(40.709343, -73.8178)",MANTON STREET,84 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441320,Sedan,,,, +07/15/2021,16:40,QUEENS,11369,40.764126,-73.88194,"(40.764126, -73.88194)",,,87-16 ASTORIA BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4441383,Sedan,,,, +07/26/2021,15:00,,,40.889175,-73.84416,"(40.889175, -73.84416)",EAST 233 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441136,Motorcycle,Sedan,,, +07/26/2021,1:05,QUEENS,11412,40.69955,-73.747734,"(40.69955, -73.747734)",115 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4440523,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,0:20,,,40.649693,-73.936966,"(40.649693, -73.936966)",SNYDER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440761,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,15:42,BRONX,10462,40.846367,-73.862724,"(40.846367, -73.862724)",,,1808 BARNES AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440934,Sedan,PK,,, +07/26/2021,15:23,STATEN ISLAND,10310,40.62586,-74.114746,"(40.62586, -74.114746)",BROADWAY,COLONIAL COURT,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440964,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/26/2021,15:00,QUEENS,11432,40.70576,-73.80167,"(40.70576, -73.80167)",89 AVENUE,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441017,Sedan,,,, +07/26/2021,0:00,,,,,,EAST 58 STREET,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441044,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,14:15,MANHATTAN,10035,40.805042,-73.936935,"(40.805042, -73.936935)",EAST 126 STREET,LEXINGTON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4440736,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,7:30,BRONX,10462,40.833393,-73.859375,"(40.833393, -73.859375)",,,1943 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440698,Bus,Sedan,,, +07/26/2021,18:21,MANHATTAN,10024,40.783897,-73.97407,"(40.783897, -73.97407)",WEST 82 STREET,COLUMBUS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441414,E-Bike,Taxi,,, +07/26/2021,18:25,BRONX,10461,40.840164,-73.84262,"(40.840164, -73.84262)",WESTCHESTER AVENUE,FERRIS PLACE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4441435,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,10:00,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440729,Box Truck,Box Truck,,, +07/26/2021,8:50,BROOKLYN,11208,40.67081,-73.879974,"(40.67081, -73.879974)",,,551 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440699,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,18:14,MANHATTAN,10022,40.76093,-73.96914,"(40.76093, -73.96914)",EAST 57 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441335,Sedan,Sedan,,, +07/26/2021,16:51,BRONX,10458,40.86607,-73.89439,"(40.86607, -73.89439)",EAST KINGSBRIDGE ROAD,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440757,,,,, +07/26/2021,0:50,,,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440576,Bike,,,, +07/26/2021,23:41,MANHATTAN,10016,40.747925,-73.97362,"(40.747925, -73.97362)",2 AVENUE,EAST 39 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4441041,Taxi,Sedan,,, +07/26/2021,16:20,,,40.610523,-73.981186,"(40.610523, -73.981186)",WEST 7 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440871,Sedan,,,, +07/26/2021,18:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440904,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:20,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4441105,Sedan,Sedan,Sedan,, +07/26/2021,13:20,STATEN ISLAND,10310,40.634567,-74.1172,"(40.634567, -74.1172)",BROADWAY,CASTLETON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440972,Sedan,Sedan,,, +07/26/2021,15:15,MANHATTAN,10027,40.812088,-73.95145,"(40.812088, -73.95145)",,,341 SAINT NICHOLAS AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4441063,Bike,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,0:00,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",EAST 36 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440634,Sedan,Flat Bed,,, +07/26/2021,14:00,BROOKLYN,11228,40.626293,-74.01572,"(40.626293, -74.01572)",FORT HAMILTON PARKWAY,74 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440747,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,12:55,BROOKLYN,11205,40.68931,-73.96509,"(40.68931, -73.96509)",,,14A SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440831,Sedan,Sedan,,, +06/23/2021,16:00,QUEENS,11369,40.760937,-73.8699,"(40.760937, -73.8699)",,,99-15 31 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441407,Sedan,Sedan,,, +07/26/2021,19:42,QUEENS,11385,40.701862,-73.89272,"(40.701862, -73.89272)",CYPRESS HILLS STREET,CENTRAL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4440953,E-Bike,Sedan,,, +07/26/2021,22:36,BROOKLYN,11218,40.64353,-73.9796,"(40.64353, -73.9796)",,,446 MC DONALD AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441271,Taxi,E-Bike,,, +07/20/2021,6:00,BRONX,10474,40.81269,-73.89321,"(40.81269, -73.89321)",,,1175 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441415,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,17:00,BROOKLYN,11226,40.644344,-73.950806,"(40.644344, -73.950806)",CORTELYOU ROAD,EAST 28 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4440762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,8:00,BROOKLYN,11229,40.606926,-73.95408,"(40.606926, -73.95408)",,,1780 EAST 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440788,Sedan,Sedan,,, +07/20/2021,19:00,BROOKLYN,11228,40.62657,-74.01167,"(40.62657, -74.01167)",10 AVENUE,71 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441346,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/26/2021,10:05,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440704,Sedan,,,, +07/26/2021,6:40,BROOKLYN,11205,40.69504,-73.969215,"(40.69504, -73.969215)",,,78 CLINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441209,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/26/2021,13:45,QUEENS,11105,40.77645,-73.90167,"(40.77645, -73.90167)",20 AVENUE,STEINWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440993,Sedan,,,, +07/26/2021,16:01,MANHATTAN,10029,40.79157,-73.94678,"(40.79157, -73.94678)",EAST 105 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441030,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,11:30,QUEENS,11377,40.750336,-73.9,"(40.750336, -73.9)",,,62-01 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4441179,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,20:56,,,,,,VICTORY BOULEVARD,SILVERLAKE PARK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441327,Sedan,Sedan,,, +07/26/2021,21:28,BROOKLYN,11204,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,65 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4440862,Sedan,E-Bike,,, +07/26/2021,14:30,BROOKLYN,11238,,,,VANDERBILT AVENUE,PROSPECT PLACE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4441290,Sedan,Bike,,, +07/26/2021,18:30,,,40.859623,-73.88747,"(40.859623, -73.88747)",EAST FORDHAM ROAD,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4440898,Sedan,Sedan,,, +07/26/2021,19:08,,,40.857483,-73.909676,"(40.857483, -73.909676)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440943,Sedan,Sedan,,, +07/23/2021,14:15,,,40.760494,-73.8614,"(40.760494, -73.8614)",ASTORIA BOULEVARD,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441401,Sedan,Sedan,,, +07/26/2021,13:49,BROOKLYN,11236,40.64452,-73.91207,"(40.64452, -73.91207)",FOSTER AVENUE,EAST 89 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Turning Improperly,,,,4440767,Sedan,Box Truck,,, +07/26/2021,13:15,QUEENS,11373,40.738213,-73.88228,"(40.738213, -73.88228)",,,81-22 DONGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441250,Station Wagon/Sport Utility Vehicle,,,, +07/06/2021,11:11,MANHATTAN,10023,40.77353,-73.98534,"(40.77353, -73.98534)",AMSTERDAM AVENUE,WEST 64 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441420,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,19:32,BROOKLYN,11207,40.66374,-73.89668,"(40.66374, -73.89668)",,,499 ALABAMA AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4440922,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,14:55,,,40.82312,-73.9505,"(40.82312, -73.9505)",HAMILTON PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440818,Bus,Sedan,,, +07/26/2021,18:40,BROOKLYN,11208,40.68536,-73.88221,"(40.68536, -73.88221)",HIGHLAND BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440923,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,23:20,,,,,,HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4440893,Sedan,Taxi,,, +07/25/2021,22:31,BRONX,10472,40.835835,-73.87308,"(40.835835, -73.87308)",CROSS BRONX EXPRESSWAY,FTELEY AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4441307,Pick-up Truck,Sedan,,, +07/26/2021,2:15,,,40.73306,-73.72289,"(40.73306, -73.72289)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4440416,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,22:15,,,40.60481,-74.023964,"(40.60481, -74.023964)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4441364,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,21:00,QUEENS,11101,40.754128,-73.94945,"(40.754128, -73.94945)",,,42-00 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,0:01,BRONX,10466,40.90404,-73.84194,"(40.90404, -73.84194)",,,966 CRANFORD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4441148,Sedan,,,, +07/14/2021,18:00,MANHATTAN,10023,40.781128,-73.983536,"(40.781128, -73.983536)",WEST 74 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441419,Van,,,, +07/26/2021,17:50,QUEENS,11103,40.760773,-73.914215,"(40.760773, -73.914215)",,,30-39 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441281,Sedan,Lunch Wagon,,, +07/26/2021,0:40,,,40.86404,-73.89245,"(40.86404, -73.89245)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440431,Sedan,E-Bike,,, +07/22/2021,19:03,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441321,Sedan,Bike,,, +07/26/2021,19:33,BROOKLYN,11236,40.634815,-73.901276,"(40.634815, -73.901276)",EAST 89 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440766,Sedan,Sedan,,, +07/26/2021,9:00,BROOKLYN,11221,40.691822,-73.92223,"(40.691822, -73.92223)",GROVE STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440894,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,19:38,QUEENS,11369,40.76075,-73.87185,"(40.76075, -73.87185)",,,97-13 31 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441384,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,17:44,QUEENS,11374,40.724434,-73.8693,"(40.724434, -73.8693)",WOODHAVEN BOULEVARD,63 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440812,Bus,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,13:26,BROOKLYN,11203,40.659286,-73.92925,"(40.659286, -73.92925)",,,66 EAST 52 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441126,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,0:00,BRONX,10451,40.818012,-73.92519,"(40.818012, -73.92519)",EAST 149 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4441241,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/26/2021,17:54,BROOKLYN,11223,40.609776,-73.9643,"(40.609776, -73.9643)",AVENUE P,EAST 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440843,Sedan,Sedan,,, +07/15/2021,16:10,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441436,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,12:49,BRONX,10454,40.809643,-73.91037,"(40.809643, -73.91037)",JACKSON AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441345,Sedan,,,, +07/26/2021,10:08,BROOKLYN,11207,40.672844,-73.88943,"(40.672844, -73.88943)",PITKIN AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440702,Sedan,Sedan,,, +07/26/2021,13:05,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440730,Sedan,Bike,,, +07/26/2021,6:03,QUEENS,11378,40.72298,-73.89393,"(40.72298, -73.89393)",,,59-09 69 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440983,Van,Sedan,,, +07/26/2021,18:30,,,,,,SANDS STREET,JAY STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4441424,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,13:51,,,40.66555,-73.74239,"(40.66555, -73.74239)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440777,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/26/2021,10:09,,,40.72766,-73.92938,"(40.72766, -73.92938)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441081,Pick-up Truck,Sedan,,, +07/15/2021,18:54,BROOKLYN,11213,40.677643,-73.93469,"(40.677643, -73.93469)",,,1690 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441396,Sedan,Sedan,,, +07/26/2021,6:20,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",EAST TREMONT AVENUE,SOUTHERN BOULEVARD,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4440638,Sedan,Bike,E-Bike,, +07/26/2021,21:32,BROOKLYN,11208,40.674652,-73.87712,"(40.674652, -73.87712)",PITKIN AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4440927,Taxi,Pick-up Truck,,, +07/26/2021,14:14,,,40.602028,-73.99857,"(40.602028, -73.99857)",BAY 26 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4440994,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,12:00,BROOKLYN,11232,40.66326,-73.99512,"(40.66326, -73.99512)",4 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440718,Sedan,,,, +07/26/2021,20:03,QUEENS,11420,40.678757,-73.81347,"(40.678757, -73.81347)",126 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440823,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,22:36,BROOKLYN,11212,40.664803,-73.92271,"(40.664803, -73.92271)",,,83 EAST 98 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4441276,E-Bike,,,, +07/24/2021,12:55,STATEN ISLAND,10301,40.64412,-74.07659,"(40.64412, -74.07659)",,,55 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Unspecified,,,,,4441326,Sedan,,,, +07/26/2021,4:15,,,,,,VANCORTLANDT PARK,east 233rd street,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4441109,Sedan,,,, +07/26/2021,9:35,QUEENS,11434,40.655254,-73.76568,"(40.655254, -73.76568)",ROCKAWAY BOULEVARD,182 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4440772,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +07/26/2021,9:20,BRONX,10455,40.81922,-73.91062,"(40.81922, -73.91062)",EAST 156 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440836,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,14:50,QUEENS,11372,40.750107,-73.8948,"(40.750107, -73.8948)",,,34-55 71 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441408,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,18:05,,,40.6877,-73.91095,"(40.6877, -73.91095)",COVERT STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441260,E-Bike,Sedan,,, +07/26/2021,11:30,STATEN ISLAND,10310,40.633858,-74.12596,"(40.633858, -74.12596)",CLOVE ROAD,CASTLETON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440971,Sedan,Pick-up Truck,,, +07/26/2021,3:00,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",WEBSTER AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440489,Sedan,Sedan,,, +07/26/2021,22:06,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441060,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,13:30,QUEENS,11420,40.66725,-73.8132,"(40.66725, -73.8132)",127 STREET,149 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4440758,Sedan,Sedan,,, +07/26/2021,22:15,,,40.682537,-73.95002,"(40.682537, -73.95002)",HANCOCK STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441007,Taxi,,,, +07/26/2021,17:49,BRONX,10469,40.86709,-73.83975,"(40.86709, -73.83975)",EAST GUN HILL ROAD,WESTERVELT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4440933,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,20:25,,,,,,NASSAU EXPRESSWAY,JFK EXPRESSWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4440870,Sedan,,,, +07/22/2021,9:19,MANHATTAN,10039,40.822308,-73.93859,"(40.822308, -73.93859)",7 AVENUE,WEST 146 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441332,Sedan,,,, +10/10/2021,20:11,QUEENS,11691,40.5972883,-73.7488347,"(40.5972883, -73.7488347)",,,262 BEACH 15 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4466342,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/26/2021,16:40,BROOKLYN,11221,40.69986,-73.92829,"(40.69986, -73.92829)",CENTRAL AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441261,Sedan,PK,,, +07/26/2021,16:20,BROOKLYN,11201,,,,bridge plaza court,concord street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440786,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,20:44,,,40.72565,-73.93205,"(40.72565, -73.93205)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4441087,Sedan,,,, +07/26/2021,7:30,,,40.832012,-73.85621,"(40.832012, -73.85621)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4441183,Sedan,Motorcycle,,, +07/26/2021,22:13,BRONX,10467,40.874313,-73.87848,"(40.874313, -73.87848)",,,282 EAST 205 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440835,Sedan,Motorcycle,,, +07/26/2021,12:15,,,40.702496,-73.81303,"(40.702496, -73.81303)",139 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4441016,Tractor Truck Gasoline,Sedan,,, +07/26/2021,1:45,BROOKLYN,11229,40.587986,-73.91973,"(40.587986, -73.91973)",GERRITSEN AVENUE,LOIS AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4440575,FDNY FIRE,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,15:54,BROOKLYN,11208,40.661156,-73.87101,"(40.661156, -73.87101)",COZINE AVENUE,MONTAUK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440919,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,13:20,,,40.870907,-73.90725,"(40.870907, -73.90725)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4440734,Sedan,,,, +07/26/2021,14:20,,,40.673275,-73.86853,"(40.673275, -73.86853)",SUTTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440924,RV,Sedan,,, +07/26/2021,14:20,QUEENS,11377,40.739574,-73.892235,"(40.739574, -73.892235)",QUEENS BOULEVARD,72 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440782,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,12:35,BROOKLYN,11207,40.67006,-73.890564,"(40.67006, -73.890564)",SUTTER AVENUE,MILLER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440918,Sedan,Sedan,Sedan,, +07/26/2021,12:45,,,40.766903,-73.897934,"(40.766903, -73.897934)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441289,Sedan,Sedan,,, +07/26/2021,20:25,,,40.63363,-74.138985,"(40.63363, -74.138985)",HATFIELD PLACE,TREADWELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440847,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,3:59,QUEENS,11418,40.698265,-73.833855,"(40.698265, -73.833855)",,,87-59 115 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441308,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,1:10,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440417,Sedan,,,, +07/25/2021,13:09,QUEENS,11372,40.747856,-73.88174,"(40.747856, -73.88174)",,,84-30 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4441367,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,10:40,BRONX,10467,40.88337,-73.85956,"(40.88337, -73.85956)",BARNES AVENUE,EAST 220 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441142,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,14:55,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441427,Sedan,Bus,,, +07/26/2021,14:40,,,,,,JAMAICA AVENUE,202 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4440996,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,11:29,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440717,Van,,,, +07/26/2021,0:00,BROOKLYN,11213,40.668648,-73.945465,"(40.668648, -73.945465)",,,1405 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440719,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,6:42,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440946,Pick-up Truck,Sedan,Sedan,, +07/23/2021,9:34,MANHATTAN,10009,40.73378,-73.98065,"(40.73378, -73.98065)",EAST 18 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441362,Sedan,,,, +07/26/2021,11:10,,,40.83569,-73.86857,"(40.83569, -73.86857)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440746,Sedan,,,, +07/26/2021,17:43,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4440984,Sedan,Sedan,Sedan,Sedan, +07/26/2021,19:05,QUEENS,11369,40.760914,-73.869965,"(40.760914, -73.869965)",,,99-08 31 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441400,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,13:30,QUEENS,11429,40.713284,-73.7358,"(40.713284, -73.7358)",SPRINGFIELD BOULEVARD,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440771,Sedan,,,, +07/26/2021,5:00,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4441031,Sedan,,,, +07/16/2021,12:21,MANHATTAN,10023,40.781193,-73.97975,"(40.781193, -73.97975)",WEST 76 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441423,Sedan,Sedan,,, +07/26/2021,0:00,QUEENS,11420,40.676796,-73.80634,"(40.676796, -73.80634)",133 STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440614,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,8:17,QUEENS,11385,40.708344,-73.910355,"(40.708344, -73.910355)",,,1936 HARMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4440947,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,17:10,,,40.83542,-73.86809,"(40.83542, -73.86809)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4441022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,9:50,BROOKLYN,11222,40.73046,-73.95149,"(40.73046, -73.95149)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441078,Sedan,Bike,,, +07/26/2021,8:20,BROOKLYN,11236,40.64025,-73.89287,"(40.64025, -73.89287)",AVENUE L,EAST 100 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4440658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,15:40,MANHATTAN,10035,40.806408,-73.94016,"(40.806408, -73.94016)",EAST 126 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4440745,Sedan,,,, +07/23/2021,12:11,BRONX,10474,40.819077,-73.88947,"(40.819077, -73.88947)",,,888 HUNTS POINT AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4441412,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,11:00,BRONX,10474,40.81331,-73.88619,"(40.81331, -73.88619)",,,647 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441417,Sedan,,,, +07/26/2021,0:00,BROOKLYN,11236,40.633934,-73.91131,"(40.633934, -73.91131)",,,8002 AVENUE J,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4440764,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/26/2021,16:30,,,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440895,E-Bike,Sedan,,, +07/25/2021,12:00,QUEENS,11369,40.76942,-73.880295,"(40.76942, -73.880295)",DITMARS BOULEVARD,90 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4441402,Sedan,Sedan,Sedan,Sedan,Sedan +07/26/2021,21:30,BRONX,10466,40.90152,-73.84695,"(40.90152, -73.84695)",EAST 241 STREET,BAYCHESTER AVENUE,,5,0,0,0,0,0,5,0,Turning Improperly,Unspecified,,,,4441139,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,10:37,BRONX,10467,40.87859,-73.86895,"(40.87859, -73.86895)",EAST 211 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441338,Sedan,Motorcycle,,, +07/26/2021,3:27,BROOKLYN,11207,40.68049,-73.89252,"(40.68049, -73.89252)",,,233 JAMAICA AVENUE,0,0,0,0,0,0,0,0,,,,,,4440701,,,,, +07/26/2021,20:10,STATEN ISLAND,10306,40.562828,-74.102615,"(40.562828, -74.102615)",ROMA AVENUE,GARIBALDI AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,4:32,BROOKLYN,11210,40.61777,-73.9481,"(40.61777, -73.9481)",,,1368 EAST 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440563,Sedan,,,, +07/26/2021,10:34,QUEENS,11101,40.74457,-73.95351,"(40.74457, -73.95351)",,,47-42 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440759,Sedan,,,, +07/26/2021,19:35,MANHATTAN,10002,40.710464,-73.986626,"(40.710464, -73.986626)",SOUTH STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,14:52,,,40.582726,-73.97321,"(40.582726, -73.97321)",WEST AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440750,Sedan,Sedan,,, +07/25/2020,0:50,,,40.771374,-73.877144,"(40.771374, -73.877144)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4441288,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,23:13,BROOKLYN,11220,40.639088,-74.03351,"(40.639088, -74.03351)",68 STREET,NARROWS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4441033,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,9:30,QUEENS,11375,40.721676,-73.835976,"(40.721676, -73.835976)",GRAND CENTRAL PARKWAY,72 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4440813,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Pick-up Truck,Sedan, +07/26/2021,16:37,,,,,,EASTERN PARKWAY,HULL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440977,Sedan,Sedan,,, +07/26/2021,19:25,,,40.66597,-73.928604,"(40.66597, -73.928604)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441059,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,10:35,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,,4441014,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/26/2021,4:00,BRONX,10465,40.84632,-73.823296,"(40.84632, -73.823296)",,,3154 AMPERE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440884,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,0:41,BRONX,10468,40.857758,-73.90095,"(40.857758, -73.90095)",EAST 183 STREET,CRESTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441231,E-Scooter,Sedan,,, +07/25/2021,6:02,QUEENS,11368,40.752842,-73.8629,"(40.752842, -73.8629)",,,104-18 37 ROAD,1,0,0,0,1,0,0,0,Pavement Slippery,Pavement Slippery,,,,4441393,Bike,,,, +07/26/2021,8:55,,,40.771984,-73.91891,"(40.771984, -73.91891)",HOYT AVENUE NORTH,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441277,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/26/2021,10:30,MANHATTAN,10009,40.73055,-73.98058,"(40.73055, -73.98058)",,,449 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440785,Sedan,,,, +07/26/2021,3:15,,,40.734978,-73.8614,"(40.734978, -73.8614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440449,Sedan,,,, +07/06/2021,8:50,,,40.611458,-74.15254,"(40.611458, -74.15254)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441313,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,10:00,MANHATTAN,10005,40.70694,-74.00901,"(40.70694, -74.00901)",WILLIAM STREET,PINE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440731,Sedan,,,, +07/26/2021,18:15,BRONX,10455,40.81888,-73.916504,"(40.81888, -73.916504)",MELROSE AVENUE,EAST 153 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4440837,E-Bike,,,, +07/25/2021,15:45,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4441440,Sedan,Taxi,Sedan,, +07/25/2021,22:13,QUEENS,11372,40.754494,-73.8954,"(40.754494, -73.8954)",,,71-08 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441388,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +07/26/2021,21:00,QUEENS,11354,40.765823,-73.82373,"(40.765823, -73.82373)",35 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441166,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,12:44,BROOKLYN,11231,40.676834,-74.0108,"(40.676834, -74.0108)",RICHARDS STREET,SULLIVAN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440844,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/26/2021,19:49,BRONX,10461,40.85088,-73.851814,"(40.85088, -73.851814)",,,1820 WILLIAMSBRIDGE ROAD,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Speed,,,,4440932,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/26/2021,15:15,,,40.655273,-74.0105,"(40.655273, -74.0105)",2 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441185,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/26/2021,11:55,QUEENS,11356,40.791187,-73.85229,"(40.791187, -73.85229)",115 STREET,POPPENHUSEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440821,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,7:30,MANHATTAN,10016,40.73841,-73.976204,"(40.73841, -73.976204)",,,435 EAST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440773,Ambulance,Ambulance,,, +07/23/2021,17:50,QUEENS,11415,40.70883,-73.833405,"(40.70883, -73.833405)",,,119-04 AUDLEY STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4441299,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,16:37,STATEN ISLAND,10304,40.61658,-74.08275,"(40.61658, -74.08275)",VANDERBILT AVENUE,IRVING PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441325,Sedan,,,, +07/26/2021,10:00,STATEN ISLAND,10301,40.643497,-74.07418,"(40.643497, -74.07418)",,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440969,Sedan,Sedan,,, +07/26/2021,19:40,QUEENS,11694,40.579735,-73.837425,"(40.579735, -73.837425)",,,116-01 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441112,Sedan,,,, +07/26/2021,10:47,,,40.68484,-73.79281,"(40.68484, -73.79281)",SUTPHIN BOULEVARD,115 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4440869,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/26/2021,16:45,BROOKLYN,11207,40.658512,-73.89822,"(40.658512, -73.89822)",,,659 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4440920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,8:40,BRONX,10474,40.812634,-73.88313,"(40.812634, -73.88313)",RANDALL AVENUE,WHITTIER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441399,Sedan,,,, +07/26/2021,18:45,QUEENS,11373,40.73998,-73.87711,"(40.73998, -73.87711)",87 STREET,CORONA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441254,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,16:55,,,40.598953,-74.00696,"(40.598953, -74.00696)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441432,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,20:30,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4441263,Sedan,Sedan,,, +07/26/2021,0:15,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440420,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/19/2021,0:00,MANHATTAN,10027,40.805965,-73.95107,"(40.805965, -73.95107)",,,201 WEST 120 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4441375,Dump,Sedan,Sedan,Sedan,Sedan +07/09/2021,12:40,BROOKLYN,11217,40.67813,-73.98081,"(40.67813, -73.98081)",,,692 DE GRAW STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441303,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,20:50,BROOKLYN,11223,40.591988,-73.97665,"(40.591988, -73.97665)",AVENUE W,WEST 6 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440790,Bike,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:08,QUEENS,11367,40.721947,-73.814445,"(40.721947, -73.814445)",150 STREET,77 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440997,Pick-up Truck,,,, +07/26/2021,12:13,,,40.664303,-73.9573,"(40.664303, -73.9573)",SULLIVAN PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440720,Sedan,,,, +07/26/2021,20:00,QUEENS,11435,40.709633,-73.8145,"(40.709633, -73.8145)",,,141-59 85 ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4440988,Sedan,,,, +07/25/2021,16:45,,,40.710186,-73.82113,"(40.710186, -73.82113)",QUEENS BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4441331,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,9:05,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",UNION STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4441171,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/26/2021,11:25,BROOKLYN,11230,40.61748,-73.96482,"(40.61748, -73.96482)",AVENUE M,EAST 10 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4440875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/26/2021,14:47,BRONX,10456,40.82877,-73.91032,"(40.82877, -73.91032)",EAST 166 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4440901,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,11:00,BRONX,10463,40.886024,-73.90887,"(40.886024, -73.90887)",,,3555 OXFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441101,Sedan,,,, +07/26/2021,20:50,BRONX,10468,40.860264,-73.90164,"(40.860264, -73.90164)",EAST 184 STREET,WALTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440941,Sedan,,,, +07/26/2021,13:41,,,40.57925,-74.07781,"(40.57925, -74.07781)",CAPODANNO BOULEVARD,,,2,0,0,0,0,0,2,0,Turning Improperly,,,,,4440749,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,9:51,,,40.759727,-73.8455,"(40.759727, -73.8455)",126 STREET,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4440770,Tractor Truck Diesel,,,, +07/14/2021,22:57,,,40.783337,-73.970764,"(40.783337, -73.970764)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441422,Station Wagon/Sport Utility Vehicle,Scooter,,, +07/26/2021,1:40,BROOKLYN,11225,40.66525,-73.94816,"(40.66525, -73.94816)",NEW YORK AVENUE,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,,,4440627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/26/2021,19:40,QUEENS,11370,40.760532,-73.89291,"(40.760532, -73.89291)",75 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441403,Sedan,Sedan,,, +07/26/2021,16:41,QUEENS,11378,40.733604,-73.8979,"(40.733604, -73.8979)",67 STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440948,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,23:25,BROOKLYN,11205,40.69557,-73.97896,"(40.69557, -73.97896)",,,25 MONUMENT WALK,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4440834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/23/2021,9:14,BRONX,10473,40.822277,-73.86715,"(40.822277, -73.86715)",,,831 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4441357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:40,,,40.719204,-73.99037,"(40.719204, -73.99037)",ALLEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440751,Sedan,Bike,,, +07/26/2021,16:05,MANHATTAN,10010,40.74026,-73.990524,"(40.74026, -73.990524)",EAST 21 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inexperience,,,,4440774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,14:15,,,40.64644,-73.91289,"(40.64644, -73.91289)",REMSEN AVENUE,AVENUE D,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,18:25,BRONX,10462,40.833702,-73.856445,"(40.833702, -73.856445)",,,2039 WESTCHESTER AVENUE,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441023,Sedan,,,, +07/26/2021,0:33,,,40.863113,-73.920616,"(40.863113, -73.920616)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4441036,Sedan,Sedan,,, +07/26/2021,0:05,QUEENS,11417,40.682262,-73.84514,"(40.682262, -73.84514)",WOODHAVEN BOULEVARD,103 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440588,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,14:45,BROOKLYN,11207,40.664974,-73.89702,"(40.664974, -73.89702)",,,456 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440917,Sedan,Pick-up Truck,,, +07/26/2021,12:09,STATEN ISLAND,10305,40.57558,-74.08335,"(40.57558, -74.08335)",CAPODANNO BOULEVARD,IONA STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4440714,Sedan,Sedan,,, +07/26/2021,16:00,BROOKLYN,11219,40.6435,-73.99408,"(40.6435, -73.99408)",41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440965,Sedan,,,, +07/26/2021,4:55,BROOKLYN,11207,40.65711,-73.89788,"(40.65711, -73.89788)",,,710 SNEDIKER AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4440555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/26/2021,12:00,QUEENS,11361,40.759186,-73.76716,"(40.759186, -73.76716)",215 STREET,45 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440779,Sedan,,,, +07/26/2021,17:00,QUEENS,11433,40.69691,-73.790436,"(40.69691, -73.790436)",164 STREET,108 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4441019,Sedan,Sedan,,, +07/26/2021,17:10,BRONX,10454,40.803787,-73.92023,"(40.803787, -73.92023)",,,145 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4441485,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,18:59,BRONX,10461,40.850315,-73.843124,"(40.850315, -73.843124)",,,1776 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440935,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,9:13,QUEENS,11419,40.690247,-73.82497,"(40.690247, -73.82497)",101 AVENUE,120 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4440739,Pick-up Truck,,,, +07/24/2021,23:15,QUEENS,11366,40.72682,-73.78843,"(40.72682, -73.78843)",,,179-22 UNION TURNPIKE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4441323,Sedan,,,, +07/26/2021,7:54,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441278,Sedan,Sedan,,, +07/26/2021,3:00,,,40.80612,-73.91796,"(40.80612, -73.91796)",EAST 137 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4440838,Sedan,Sedan,Pick-up Truck,Sedan,Sedan +07/26/2021,14:03,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",QUEENS BOULEVARD,77 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440814,Sedan,Dump,,, +07/26/2021,14:20,BRONX,10469,40.87353,-73.844475,"(40.87353, -73.844475)",,,3218 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4441138,Dump,,,, +07/26/2021,18:45,BRONX,10454,40.80566,-73.90848,"(40.80566, -73.90848)",,,810 EAST 141 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441225,Box Truck,Sedan,,, +07/26/2021,18:17,BROOKLYN,11231,40.67098,-73.99997,"(40.67098, -73.99997)",BAY STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440845,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,13:44,,,40.699066,-73.76699,"(40.699066, -73.76699)",MANGIN AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4441500,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,14:00,QUEENS,11418,40.700954,-73.825676,"(40.700954, -73.825676)",JAMAICA AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4440733,Sedan,Bike,,, +07/26/2021,11:30,,,40.584557,-73.950874,"(40.584557, -73.950874)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441441,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,8:30,,,40.66999,-73.85912,"(40.66999, -73.85912)",LINDEN BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440700,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,23:00,BRONX,10473,40.822903,-73.87005,"(40.822903, -73.87005)",,,900 FTELEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441336,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,5:15,,,40.678116,-73.90787,"(40.678116, -73.90787)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4440975,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,17:00,BROOKLYN,11225,40.666378,-73.95266,"(40.666378, -73.95266)",,,240 CROWN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441058,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,7:03,,,40.749607,-73.89687,"(40.749607, -73.89687)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4440760,Sedan,,,, +07/26/2021,4:35,BROOKLYN,11221,40.68836,-73.91615,"(40.68836, -73.91615)",JEFFERSON AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440891,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/26/2021,16:25,BROOKLYN,11204,40.626335,-73.97924,"(40.626335, -73.97924)",19 AVENUE,50 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,21:30,BRONX,10467,40.86541,-73.86849,"(40.86541, -73.86849)",,,671 ALLERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,6:03,BRONX,10460,40.835938,-73.86697,"(40.835938, -73.86697)",,,1426 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440697,Sedan,,,, +07/26/2021,5:58,,,40.737682,-73.85206,"(40.737682, -73.85206)",LONG ISLAND EXPRESSWAY,108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440474,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,21:49,BROOKLYN,11203,40.66111,-73.93137,"(40.66111, -73.93137)",,,505 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440784,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,12:10,BRONX,10474,40.810406,-73.88926,"(40.810406, -73.88926)",,,527 CASANOVA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441416,Sedan,,,, +07/26/2021,20:30,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4440896,Sedan,Moped,,, +07/26/2021,18:00,,,40.64632,-73.92981,"(40.64632, -73.92981)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440763,Station Wagon/Sport Utility Vehicle,Van,,, +07/26/2021,15:00,,,40.7315,-73.872086,"(40.7315, -73.872086)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4441285,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Flat Bed, +07/21/2021,5:00,,,,,,CLEARVIEW EXPRESSWAY,LONG ISLAND EXPRESSWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4441319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +07/26/2021,14:35,BRONX,10466,40.883556,-73.84974,"(40.883556, -73.84974)",EAST 224 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4441150,Station Wagon/Sport Utility Vehicle,Bus,,, +07/21/2021,8:26,QUEENS,11692,40.592846,-73.79616,"(40.592846, -73.79616)",BEACH 67 STREET,BEACH CHANNEL DRIVE,,2,0,0,0,0,0,2,0,Driver Inexperience,Following Too Closely,,,,4441389,Bus,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,23:00,BROOKLYN,11209,40.6277,-74.02933,"(40.6277, -74.02933)",,,8005 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4440808,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,19:31,,,,,,,,97 EAST DRIVE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inexperience,,,,4441196,Bike,Bike,,, +07/14/2021,11:19,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4441413,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +07/26/2021,17:28,QUEENS,11385,40.708996,-73.92041,"(40.708996, -73.92041)",,,1717B TROUTMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4440952,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,7:05,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441434,Box Truck,,,, +07/25/2021,23:00,BRONX,10456,40.831375,-73.905685,"(40.831375, -73.905685)",,,3524 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441489,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,9:48,MANHATTAN,10013,40.720375,-74.003265,"(40.720375, -74.003265)",CANAL STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440728,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,11:31,,,40.70927,-73.797325,"(40.70927, -73.797325)",HILLSIDE AVENUE,165 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4440999,Bus,Sedan,,, +07/26/2021,15:00,BRONX,10463,40.88273,-73.90373,"(40.88273, -73.90373)",,,3425 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:20,,,40.84731,-73.9149,"(40.84731, -73.9149)",GRAND AVENUE,WEST 174 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4440942,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/26/2021,11:35,,,40.742435,-73.76516,"(40.742435, -73.76516)",210 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440711,PK,,,, +07/26/2021,15:55,,,,,,MONTGOMERY STREET,SOUTH STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440752,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,15:50,QUEENS,11421,40.69248,-73.85939,"(40.69248, -73.85939)",,,84-32 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441075,Sedan,Taxi,,, +07/26/2021,4:02,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441038,Lift Boom,Sedan,,, +07/26/2021,3:30,MANHATTAN,10022,40.75645,-73.97032,"(40.75645, -73.97032)",EAST 51 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4440629,Van,Taxi,,, +07/26/2021,23:35,,,40.770718,-73.87887,"(40.770718, -73.87887)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4441391,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle +07/22/2021,6:20,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441447,Sedan,,,, +07/26/2021,23:30,,,,,,QUEENS PLAZA NORTH,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441176,Sedan,Sedan,,, +07/26/2021,7:30,QUEENS,11436,40.67144,-73.79402,"(40.67144, -73.79402)",145 STREET,129 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4440868,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,9:30,BROOKLYN,11215,40.6689,-73.97874,"(40.6689, -73.97874)",,,500 5 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4441295,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/22/2021,2:15,,,40.689445,-73.95513,"(40.689445, -73.95513)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441306,Sedan,Sedan,,, +07/26/2021,3:10,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4440423,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,8:16,MANHATTAN,10023,40.77242,-73.97873,"(40.77242, -73.97873)",WEST 66 STREET,CENTRAL PARK WEST,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4441421,Sedan,E-Bike,,, +07/26/2021,11:30,BRONX,10467,40.880764,-73.87663,"(40.880764, -73.87663)",,,3525 TRYON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4440909,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,20:27,BROOKLYN,11217,40.68111,-73.97531,"(40.68111, -73.97531)",,,239 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,View Obstructed/Limited,,,,4440926,Sedan,Bike,,, +06/29/2021,18:23,BROOKLYN,11225,40.664112,-73.94777,"(40.664112, -73.94777)",,,421 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4441382,Sedan,Bus,,, +07/26/2021,22:10,BROOKLYN,11223,40.594315,-73.96342,"(40.594315, -73.96342)",EAST 7 STREET,GRAVESEND NECK ROAD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4440789,Taxi,,,, +07/26/2021,18:30,BRONX,10463,40.882427,-73.902306,"(40.882427, -73.902306)",,,5716 BROADWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441103,Motorscooter,Sedan,,, +07/26/2021,0:44,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440833,Sedan,,,, +07/21/2021,9:50,QUEENS,11368,40.753437,-73.860176,"(40.753437, -73.860176)",,,37-18 108 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441404,Sedan,,,, +07/26/2021,15:45,BROOKLYN,11238,40.675907,-73.969505,"(40.675907, -73.969505)",VANDERBILT AVENUE,STERLING PLACE,,5,0,0,0,0,0,5,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4440921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,13:49,,,40.66989,-73.93381,"(40.66989, -73.93381)",LINCOLN PLACE,,,1,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4440748,Sedan,E-Scooter,,, +07/26/2021,5:50,QUEENS,11434,40.6775,-73.76289,"(40.6775, -73.76289)",133 AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4440578,Sedan,Sedan,,, +07/26/2021,16:10,,,40.741814,-73.770325,"(40.741814, -73.770325)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440992,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,11:30,BROOKLYN,11203,40.644432,-73.9296,"(40.644432, -73.9296)",UTICA AVENUE,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441124,Sedan,Sedan,,, +07/26/2021,4:00,QUEENS,11434,40.660294,-73.771736,"(40.660294, -73.771736)",,,147-35 FARMERS BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440775,Sedan,,,, +07/26/2021,0:09,,,40.74206,-73.82453,"(40.74206, -73.82453)",LONG ISLAND EXPRESSWAY,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4440769,Sedan,,,, +07/26/2021,22:11,BRONX,10460,40.839886,-73.86445,"(40.839886, -73.86445)",,,1868 GUERLAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441024,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,1:22,QUEENS,11372,40.747036,-73.88958,"(40.747036, -73.88958)",76 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441398,Sedan,E-Scooter,,, +07/26/2021,16:15,MANHATTAN,10030,40.820877,-73.94517,"(40.820877, -73.94517)",WEST 141 STREET,EDGECOMBE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440820,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,10:42,BROOKLYN,11219,40.63845,-73.99325,"(40.63845, -73.99325)",,,1169 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440873,Sedan,,,, +07/22/2021,9:20,QUEENS,11415,40.71111,-73.831375,"(40.71111, -73.831375)",AUSTIN STREET,82 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4441328,Sedan,Sedan,,, +07/26/2021,8:30,BRONX,10456,40.83159,-73.90388,"(40.83159, -73.90388)",,,1265 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441265,Sedan,,,, +07/26/2021,22:42,BROOKLYN,11220,40.637978,-74.01416,"(40.637978, -74.01416)",,,6022 6 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440900,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,12:30,QUEENS,11375,40.72569,-73.85463,"(40.72569, -73.85463)",BOOTH STREET,67 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440810,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,4:55,BROOKLYN,11225,40.668964,-73.95059,"(40.668964, -73.95059)",NOSTRAND AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441456,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,22:59,QUEENS,11434,40.65694,-73.76878,"(40.65694, -73.76878)",ROCKAWAY BOULEVARD,150 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441199,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,9:00,QUEENS,11368,40.739437,-73.85763,"(40.739437, -73.85763)",,,101-21 MARTENSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441253,Station Wagon/Sport Utility Vehicle,,,, +07/26/2020,19:00,QUEENS,11377,40.75415,-73.90877,"(40.75415, -73.90877)",,,50-003 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441280,E-Scooter,Sedan,,, +07/26/2021,18:08,,,40.65484,-73.9597,"(40.65484, -73.9597)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4440840,Sedan,,,, +10/11/2021,7:04,BRONX,10468,40.8659982,-73.8998013,"(40.8659982, -73.8998013)",WEST 192 STREET,DAVIDSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466343,Sedan,,,, +01/19/2022,9:50,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",WILLIAMSBURG STREET WEST,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496759,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,8:15,BRONX,10451,40.8261528,-73.9202583,"(40.8261528, -73.9202583)",EAST 161 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4466345,Station Wagon/Sport Utility Vehicle,Bus,,, +01/19/2022,10:50,BRONX,10474,40.816994,-73.8858,"(40.816994, -73.8858)",,,1325 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4496827,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/11/2021,13:45,BRONX,10458,40.8582627,-73.8855523,"(40.8582627, -73.8855523)",,,590 EAST FORDHAM ROAD,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4466347,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,23:16,QUEENS,11691,40.5955246,-73.7568852,"(40.5955246, -73.7568852)",,,20-50 SEAGIRT BOULEVARD,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4466348,Sedan,,,, +01/19/2022,15:21,QUEENS,11356,40.778614,-73.83887,"(40.778614, -73.83887)",130 STREET,23 AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4495902,Sedan,,,, +10/10/2021,21:30,MANHATTAN,10013,40.7207946,-74.0042532,"(40.7207946, -74.0042532)",,,370 CANAL STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466350,Sedan,Bike,,, +10/11/2021,10:00,QUEENS,11101,40.753636,-73.918923,"(40.753636, -73.918923)",NORTHERN BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466351,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/01/2021,14:15,QUEENS,11101,40.7573294,-73.9450662,"(40.7573294, -73.9450662)",9 STREET,40 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466352,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/11/2021,13:30,QUEENS,11370,40.7675151,-73.899295,"(40.7675151, -73.899295)",,,69-35 ASTORIA BOULEVARD,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466354,Sedan,Bike,,, +10/11/2021,10:47,,,40.7360016,-74.010035,"(40.7360016, -74.010035)",WEST STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4466356,Sedan,Sedan,Sedan,, +10/11/2021,21:25,,,40.7110321,-74.0145328,"(40.7110321, -74.0145328)",LIBERTY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466357,Sedan,,,, +10/10/2021,13:00,BROOKLYN,11237,40.7080591,-73.9225385,"(40.7080591, -73.9225385)",SAINT NICHOLAS AVENUE,JEFFERSON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4466358,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,21:04,BROOKLYN,11206,40.6969863,-73.9352238,"(40.6969863, -73.9352238)",BROADWAY,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466359,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,22:30,,,40.7869141,-73.8116143,"(40.7869141, -73.8116143)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4466360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,16:45,BROOKLYN,11212,40.6692484,-73.9128471,"(40.6692484, -73.9128471)",,,1636 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466362,E-Bike,Sedan,,, +10/11/2021,16:49,BROOKLYN,11237,40.6984873,-73.9214352,"(40.6984873, -73.9214352)",MYRTLE AVENUE,HIMROD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466364,Station Wagon/Sport Utility Vehicle,Bike,,, +10/11/2021,10:20,MANHATTAN,10014,40.734545,-74.000392,"(40.734545, -74.000392)",,,132 WEST 10 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Oversized Vehicle,,,,4466365,Sedan,FIRE ENGIN,,, +10/08/2021,21:29,BROOKLYN,11207,40.680036,-73.9054924,"(40.680036, -73.9054924)",EASTERN PARKWAY,BROADWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4466366,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +10/11/2021,14:15,BROOKLYN,11212,40.659619,-73.9071901,"(40.659619, -73.9071901)",NEWPORT STREET,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466367,Sedan,Sedan,,, +10/09/2021,13:45,QUEENS,11691,40.6019562,-73.7454051,"(40.6019562, -73.7454051)",BEACH 9 STREET,CAFFREY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4466368,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/19/2022,16:41,BRONX,10461,40.841194,-73.842926,"(40.841194, -73.842926)",,,67 WESTCHESTER SQUARE,1,0,1,0,0,0,0,0,Unspecified,,,,,4496279,Sedan,,,, +01/16/2022,5:27,BROOKLYN,11220,40.64143,-74.02098,"(40.64143, -74.02098)",3 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496259,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,18:55,BROOKLYN,11212,40.6690836,-73.9107349,"(40.6690836, -73.9107349)",,,444 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466370,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,19:00,MANHATTAN,10014,40.7322637,-74.0035757,"(40.7322637, -74.0035757)",7 AVENUE SOUTH,BLEECKER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466371,Sedan,Sedan,,, +10/07/2021,23:51,MANHATTAN,10011,40.7341384,-73.9991845,"(40.7341384, -73.9991845)",WEST 9 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466372,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,23:45,BRONX,10474,40.8144383,-73.8930727,"(40.8144383, -73.8930727)",LONGWOOD AVENUE,BARRY STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4466373,Sedan,Motorcycle,,, +10/11/2021,11:15,,,40.8201447,-73.8902829,"(40.8201447, -73.8902829)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466374,Sedan,,,, +10/11/2021,19:00,,,40.7375662,-74.0099197,"(40.7375662, -74.0099197)",WEST STREET,,,2,0,1,0,0,0,0,0,Unsafe Speed,,,,,4466375,E-Scooter,,,, +10/11/2021,20:36,,,40.7387605,-74.0024069,"(40.7387605, -74.0024069)",GREENWICH AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Passing or Lane Usage Improper,,,,4466376,Taxi,Motorscooter,,, +10/10/2021,23:35,MANHATTAN,10014,40.7333917,-74.0042758,"(40.7333917, -74.0042758)",CHRISTOPHER STREET,BLEECKER STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466377,Taxi,Sedan,,, +10/10/2021,20:18,,,40.8548229,-73.911194,"(40.8548229, -73.911194)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466378,E-Bike,Sedan,,, +10/10/2021,23:15,MANHATTAN,10013,40.7225555,-74.0014034,"(40.7225555, -74.0014034)",BROOME STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466380,Sedan,,,, +10/11/2021,20:08,QUEENS,11691,40.5951359,-73.7532016,"(40.5951359, -73.7532016)",BEACH 19 STREET,SEAGIRT BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4466381,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/21/2022,18:10,BROOKLYN,11203,40.65239,-73.92655,"(40.65239, -73.92655)",CHURCH AVENUE,EAST 54 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496599,Sedan,,,, +01/15/2022,23:50,MANHATTAN,10029,40.795536,-73.9481,"(40.795536, -73.9481)",MADISON AVENUE,EAST 109 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496335,Station Wagon/Sport Utility Vehicle,Bike,,, +10/11/2021,23:09,BRONX,10453,40.8545875,-73.9018608,"(40.8545875, -73.9018608)",GRAND CONCOURSE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466384,Sedan,Sedan,,, +10/07/2021,11:30,QUEENS,11691,40.6009113,-73.7558751,"(40.6009113, -73.7558751)",,,22-11 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466385,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,9:15,,,40.5920086,-73.7841102,"(40.5920086, -73.7841102)",EDGEMERE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466386,Sedan,Sedan,,, +01/21/2022,10:00,QUEENS,11413,40.67935,-73.75035,"(40.67935, -73.75035)",MERRICK BOULEVARD,219 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496196,Bus,,,, +12/23/2021,0:20,BROOKLYN,11206,40.69468,-73.93739,"(40.69468, -73.93739)",,,82 LEWIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,,4496527,Sedan,Sedan,Sedan,Sedan, +10/08/2021,22:50,STATEN ISLAND,10306,40.5870756,-74.1039242,"(40.5870756, -74.1039242)",RICHMOND ROAD,SEAVER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466389,Sedan,Sedan,,, +10/10/2021,17:00,QUEENS,11436,40.6713276,-73.788475,"(40.6713276, -73.788475)",SUTTER AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466391,Pick-up Truck,,,, +10/11/2021,14:15,STATEN ISLAND,10304,40.5918322,-74.1009755,"(40.5918322, -74.1009755)",RICHMOND ROAD,GARRETSON AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4466392,Sedan,Pick-up Truck,,, +10/10/2021,18:03,QUEENS,11434,40.6825669,-73.7926578,"(40.6825669, -73.7926578)",116 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,6:30,,,40.6814909,-73.7723227,"(40.6814909, -73.7723227)",172 STREET,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4466394,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,0:35,,,40.6245928,-74.1412853,"(40.6245928, -74.1412853)",FOREST AVENUE,DECKER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466395,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,6:05,BROOKLYN,11212,40.659745,-73.9006513,"(40.659745, -73.9006513)",,,596 JUNIUS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4466397,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle +10/10/2021,13:44,STATEN ISLAND,10306,40.5580789,-74.1132396,"(40.5580789, -74.1132396)",PELICAN CIRCLE,OLD MILL ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4466398,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,6:01,,,,,,UNION TURNPIKE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4440973,Sedan,Bus,,, +10/11/2021,14:20,STATEN ISLAND,10314,40.6094034,-74.1165609,"(40.6094034, -74.1165609)",SLOSSON AVENUE,SCHMIDTS LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466399,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/09/2021,11:25,STATEN ISLAND,10305,40.5979121,-74.0836066,"(40.5979121, -74.0836066)",HYLAN BOULEVARD,PARKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466400,Station Wagon/Sport Utility Vehicle,Bus,,, +10/11/2021,10:40,,,40.5644155,-74.1556503,"(40.5644155, -74.1556503)",,,405 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4466402,Sedan,,,, +10/11/2021,13:30,,,40.5878767,-74.1653587,"(40.5878767, -74.1653587)",,,77 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466403,Sedan,Sedan,,, +10/11/2021,18:50,STATEN ISLAND,10304,40.5996102,-74.0886033,"(40.5996102, -74.0886033)",PROVIDENCE STREET,SCRANTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466404,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,10:20,,,40.6142103,-74.1622868,"(40.6142103, -74.1622868)",,,110 KIRSHON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466406,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,9:00,,,40.6185191,-74.16367,"(40.6185191, -74.16367)",FAHY AVENUE,LONGDALE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,8:18,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496291,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,16:54,BROOKLYN,11212,40.6644448,-73.907512,"(40.6644448, -73.907512)",,,321 DUMONT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466410,Sedan,Bike,,, +10/11/2021,20:05,BROOKLYN,11224,40.5799723,-73.9746526,"(40.5799723, -73.9746526)",WEST 6 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466411,Sedan,,,, +10/12/2021,7:48,QUEENS,11373,40.7357423,-73.8726564,"(40.7357423, -73.8726564)",90 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466412,Sedan,Bus,,, +10/11/2021,11:00,QUEENS,11373,40.7440465,-73.881659,"(40.7440465, -73.881659)",KETCHAM STREET,BRITTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466413,Sedan,Sedan,,, +10/10/2021,17:27,,,40.5788242,-73.9862735,"(40.5788242, -73.9862735)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4466414,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,0:15,,,40.7396822,-73.8573087,"(40.7396822, -73.8573087)",MARTENSE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466415,Sedan,Sedan,,, +10/11/2021,12:00,,,40.7221049,-73.7777123,"(40.7221049, -73.7777123)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466416,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,20:05,BROOKLYN,11223,40.5857583,-73.9744596,"(40.5857583, -73.9744596)",AVENUE Z,SHELL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466417,Sedan,,,, +10/10/2021,1:21,QUEENS,11435,40.7159613,-73.8196413,"(40.7159613, -73.8196413)",GRAND CENTRAL PARKWAY,139 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466418,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,22:40,QUEENS,11367,40.7285596,-73.8285226,"(40.7285596, -73.8285226)",JEWEL AVENUE,137 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4466419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,11:45,BROOKLYN,11212,40.6662372,-73.9022418,"(40.6662372, -73.9022418)",,,340 JUNIUS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466421,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,12:00,,,40.6715017,-73.9150358,"(40.6715017, -73.9150358)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466422,Bus,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,20:00,BROOKLYN,11212,40.6708708,-73.9085793,"(40.6708708, -73.9085793)",,,90 WATKINS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466423,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,7:15,BROOKLYN,11212,40.6544685,-73.9104395,"(40.6544685, -73.9104395)",,,1335 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,3:30,BROOKLYN,11212,40.6698234,-73.9098038,"(40.6698234, -73.9098038)",THATFORD AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466425,Sedan,Sedan,,, +10/08/2021,13:05,BROOKLYN,11212,40.669257,-73.9172777,"(40.669257, -73.9172777)",,,477 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4466426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,15:20,BRONX,10451,40.8246333,-73.9105876,"(40.8246333, -73.9105876)",EAST 163 STREET,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4466428,Sedan,Bike,,, +10/10/2021,14:40,,,40.5833519,-73.9669182,"(40.5833519, -73.9669182)",OCEAN PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4466405,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,19:01,BRONX,10460,40.8372142,-73.8876222,"(40.8372142, -73.8876222)",,,920 EAST 174 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466429,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,15:11,,,40.7988329,-73.9520171,"(40.7988329, -73.9520171)",WEST 111 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466430,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,16:47,,,40.7988329,-73.9520171,"(40.7988329, -73.9520171)",WEST 111 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466431,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,8:46,MANHATTAN,10026,40.8032165,-73.9525305,"(40.8032165, -73.9525305)",WEST 116 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466432,Sedan,,,, +01/19/2022,15:40,MANHATTAN,10011,40.74014,-73.99935,"(40.74014, -73.99935)",,,210 WEST 16 STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4496550,Station Wagon/Sport Utility Vehicle,Van,,, +10/11/2021,7:19,QUEENS,11691,40.6081071,-73.7541333,"(40.6081071, -73.7541333)",BEACH CHANNEL DRIVE,NAMEOKE AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4466434,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,22:49,BRONX,10459,40.8301369,-73.8918767,"(40.8301369, -73.8918767)",SOUTHERN BOULEVARD,FREEMAN STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466435,Sedan,,,, +10/11/2021,17:00,BRONX,10459,40.8300576,-73.8864096,"(40.8300576, -73.8864096)",WEST FARMS ROAD,BOONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466436,Sedan,,,, +10/07/2021,9:45,QUEENS,11691,40.6073763,-73.754178,"(40.6073763, -73.754178)",,,13-72 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466437,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,14:40,QUEENS,11691,40.6066288,-73.7482855,"(40.6066288, -73.7482855)",,,12-23 CHANNING ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466438,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,14:40,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,18:44,BROOKLYN,11212,40.6579423,-73.9077366,"(40.6579423, -73.9077366)",ROCKAWAY AVENUE,LOTT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4466441,Motorbike,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,15:14,BROOKLYN,11233,40.6716074,-73.9169427,"(40.6716074, -73.9169427)",SARATOGA AVENUE,PARK PLACE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4466442,Bike,,,, +10/01/2021,17:32,BROOKLYN,11233,40.6742806,-73.9166906,"(40.6742806, -73.9166906)",SARATOGA AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466443,Sedan,,,, +10/08/2021,21:40,BROOKLYN,11212,40.6687091,-73.9173068,"(40.6687091, -73.9173068)",PITKIN AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466444,Sedan,,,, +10/05/2021,10:00,BROOKLYN,11233,40.6753803,-73.9081956,"(40.6753803, -73.9081956)",EASTERN PARKWAY,PACIFIC STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4466445,Station Wagon/Sport Utility Vehicle,Bike,,, +10/12/2021,8:30,BROOKLYN,11212,40.659756,-73.9067769,"(40.659756, -73.9067769)",,,225 NEWPORT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466446,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,4:27,QUEENS,11385,40.69319,-73.89575,"(40.69319, -73.89575)",CYPRESS AVENUE,CLOVER PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496644,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:25,,,40.5951403,-73.7539866,"(40.5951403, -73.7539866)",SEAGIRT BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4466448,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,6:31,MANHATTAN,10037,40.815093,-73.9404596,"(40.815093, -73.9404596)",,,525 LENOX AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4466450,Bus,Ambulance,,, +10/08/2021,8:30,QUEENS,11691,40.6000251,-73.757404,"(40.6000251, -73.757404)",BROOKHAVEN AVENUE,BRIAR PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4466451,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,14:25,,,40.7875154,-73.938297,"(40.7875154, -73.938297)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4466452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/30/2021,15:42,QUEENS,11432,40.7050781,-73.8010858,"(40.7050781, -73.8010858)",,,89-25 PARSONS BOULEVARD,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466453,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,9:50,,,40.8529554,-73.8431525,"(40.8529554, -73.8431525)",EASTCHESTER ROAD,STILLWELL AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4466454,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,13:30,QUEENS,11691,40.5958232,-73.7500074,"(40.5958232, -73.7500074)",,,215 BEACH 16 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466455,Sedan,Dump,,, +10/11/2021,15:00,BRONX,10462,40.853685,-73.8691664,"(40.853685, -73.8691664)",BRONX PARK EAST,MARAN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466457,Moped,,,, +07/27/2021,11:50,,,,,,VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441167,Sedan,,,, +10/11/2021,22:49,,,40.8652228,-73.8361856,"(40.8652228, -73.8361856)",ALLERTON AVENUE,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4466458,Taxi,Motorcycle,,, +10/12/2021,6:10,,,40.8399338,-73.9328562,"(40.8399338, -73.9328562)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,4466459,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Ambulance,Sedan, +10/08/2021,14:50,,,40.6224353,-74.1500054,"(40.6224353, -74.1500054)",RICHMOND AVENUE,VEDDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466460,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,15:54,BRONX,10461,40.846745,-73.84978,"(40.846745, -73.84978)",PIERCE AVENUE,TOMLINSON AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4496329,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,8:45,QUEENS,11420,40.6792565,-73.8117043,"(40.6792565, -73.8117043)",115 AVENUE,128 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,Unspecified,,,4466462,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/10/2021,19:25,QUEENS,11691,40.6022084,-73.7470066,"(40.6022084, -73.7470066)",,,816 HURLEY COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4466463,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,11:15,MANHATTAN,10036,40.7609926,-73.990759,"(40.7609926, -73.990759)",9 AVENUE,WEST 46 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4466465,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,8:30,,,40.88136,-73.88138,"(40.88136, -73.88138)",DEKALB AVENUE,KOSSUTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496837,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,16:12,,,40.713875,-73.97703,"(40.713875, -73.97703)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4495957,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +10/12/2021,8:00,BROOKLYN,11228,40.6215623,-74.0091393,"(40.6215623, -74.0091393)",,,1207 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,11:58,,,40.7079009,-73.8488839,"(40.7079009, -73.8488839)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,,4466469,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/12/2021,9:00,BROOKLYN,11218,40.6383995,-73.9704763,"(40.6383995, -73.9704763)",,,471 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466470,Station Wagon/Sport Utility Vehicle,Bus,,, +01/19/2022,17:20,BRONX,10469,40.870697,-73.84332,"(40.870697, -73.84332)",,,3060 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4495823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,16:04,BROOKLYN,11232,40.6656643,-73.9973462,"(40.6656643, -73.9973462)",,,89 19 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466472,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/12/2021,10:25,BRONX,10467,40.8688807,-73.8796111,"(40.8688807, -73.8796111)",,,3016 WEBSTER AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4466474,Station Wagon/Sport Utility Vehicle,Bike,,, +10/11/2021,12:18,BRONX,10469,40.8730311,-73.8565525,"(40.8730311, -73.8565525)",DUNCAN STREET,LURTING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,Unspecified,Unspecified,4466475,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +01/19/2022,7:50,,,40.687748,-73.7618,"(40.687748, -73.7618)",119 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4495729,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,6:15,MANHATTAN,10011,40.7468134,-74.0079578,"(40.7468134, -74.0079578)",WEST 20 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4466478,Bus,Sedan,Pick-up Truck,, +10/11/2021,9:40,,,40.8884565,-73.841962,"(40.8884565, -73.841962)",BAYCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466479,Moped,Pick-up Truck,,, +10/10/2021,0:17,STATEN ISLAND,10304,40.614026,-74.084783,"(40.614026, -74.084783)",TARGEE STREET,SOBEL COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466480,Sedan,Sedan,,, +10/08/2021,4:25,,,40.7459518,-73.9980079,"(40.7459518, -73.9980079)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466481,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/11/2021,15:51,STATEN ISLAND,10304,40.619258,-74.0803338,"(40.619258, -74.0803338)",COURSEN PLACE,PLEASANT COURT,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4466482,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/12/2021,10:18,QUEENS,11412,40.69041,-73.7555643,"(40.69041, -73.7555643)",119 AVENUE,195 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4466483,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/10/2021,4:30,QUEENS,11691,40.6022948,-73.7586202,"(40.6022948, -73.7586202)",CORNAGA AVENUE,ROCKAWAY FREEWAY,,1,0,0,0,1,0,0,0,Unspecified,,,,,4466484,Bike,,,, +01/19/2022,9:28,,,40.598236,-73.75426,"(40.598236, -73.75426)",BEACH 20 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496003,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,0:05,,,40.7570653,-74.001054,"(40.7570653, -74.001054)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466486,Sedan,Sedan,,, +10/06/2021,8:50,MANHATTAN,10018,40.7576718,-73.9948239,"(40.7576718, -73.9948239)",DYER AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4466487,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/06/2021,12:05,MANHATTAN,10011,40.7440605,-74.0068099,"(40.7440605, -74.0068099)",10 AVENUE,WEST 17 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,17:00,MANHATTAN,10036,40.758981,-73.9959428,"(40.758981, -73.9959428)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466489,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/10/2021,18:00,QUEENS,11691,40.5989704,-73.7393372,"(40.5989704, -73.7393372)",,,529 JARVIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466490,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,7:25,BROOKLYN,11207,40.6585778,-73.8906229,"(40.6585778, -73.8906229)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466491,Sedan,,,, +10/11/2021,12:16,BROOKLYN,11207,40.6668534,-73.8906923,"(40.6668534, -73.8906923)",DUMONT AVENUE,BRADFORD STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4466492,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,11:30,BROOKLYN,11207,40.6687913,-73.8891663,"(40.6687913, -73.8891663)",,,799 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466493,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,16:00,BROOKLYN,11207,40.6705544,-73.8953248,"(40.6705544, -73.8953248)",,,291 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4466494,Sedan,,,, +10/11/2021,18:30,BROOKLYN,11208,40.659121,-73.8725869,"(40.659121, -73.8725869)",,,1065 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466495,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,9:30,BROOKLYN,11239,40.6498926,-73.8860314,"(40.6498926, -73.8860314)",,,50 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466496,Sedan,,,, +10/11/2021,11:30,,,40.6667077,-73.8718221,"(40.6667077, -73.8718221)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466497,Sedan,,,, +10/11/2021,11:00,BROOKLYN,11208,40.67493,-73.866067,"(40.67493, -73.866067)",BELMONT AVENUE,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466498,Sedan,,,, +10/05/2021,9:10,BROOKLYN,11208,40.6869382,-73.8732219,"(40.6869382, -73.8732219)",CRESCENT STREET,ETNA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466499,Sedan,,,, +10/11/2021,13:31,BROOKLYN,11208,40.6611568,-73.8710038,"(40.6611568, -73.8710038)",MONTAUK AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466500,Sedan,Pick-up Truck,,, +10/11/2021,17:15,,,40.6823715,-73.8641015,"(40.6823715, -73.8641015)",95 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466501,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,19:56,,,40.6885631,-73.8757069,"(40.6885631, -73.8757069)",JAMAICA AVENUE,EUCLID AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Driver Inattention/Distraction,,,,4466502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,22:35,BROOKLYN,11207,40.6555642,-73.8797328,"(40.6555642, -73.8797328)",FLATLANDS AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Failure to Yield Right-of-Way,,,,4466503,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,8:10,BROOKLYN,11207,40.6735747,-73.9020767,"(40.6735747, -73.9020767)",LIBERTY AVENUE,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466504,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,9:31,BROOKLYN,11208,40.6662545,-73.8620436,"(40.6662545, -73.8620436)",ELDERTS LANE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466505,Taxi,,,, +10/12/2021,9:35,,,40.7283988,-73.8330164,"(40.7283988, -73.8330164)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466506,Sedan,Sedan,,, +10/12/2021,11:18,,,40.6678344,-73.8948325,"(40.6678344, -73.8948325)",BLAKE AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466507,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,8:30,QUEENS,11432,40.7149604,-73.7961132,"(40.7149604, -73.7961132)",,,84-49 168 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466508,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,11:00,,,40.6774998,-73.8714805,"(40.6774998, -73.8714805)",CONDUIT BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466509,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,5:10,BROOKLYN,11218,40.6355144,-73.980843,"(40.6355144, -73.980843)",16 AVENUE,41 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4466510,Station Wagon/Sport Utility Vehicle,Van,Station Wagon/Sport Utility Vehicle,Sedan, +10/10/2021,19:38,BROOKLYN,11218,40.6408838,-73.972644,"(40.6408838, -73.972644)",,,622 AVENUE C,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466511,Sedan,E-Bike,,, +07/27/2021,10:30,BROOKLYN,11215,40.66511,-73.981415,"(40.66511, -73.981415)",,,530 11 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441293,Sedan,,,, +10/08/2021,13:00,,,40.6263574,-74.1323009,"(40.6263574, -74.1323009)",FOREST AVENUE,ORDELL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466514,Motorcycle,Sedan,,, +10/12/2021,12:50,,,40.6354682,-74.1660347,"(40.6354682, -74.1660347)",,,181 SOUTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466515,Lift Boom,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,16:00,MANHATTAN,10128,40.7845155,-73.9498247,"(40.7845155, -73.9498247)",EAST 95 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466517,E-Bike,,,, +01/20/2022,12:40,BROOKLYN,11214,40.596745,-73.985275,"(40.596745, -73.985275)",STILLWELL AVENUE,86 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496049,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +10/12/2021,6:40,QUEENS,11429,40.7119207,-73.7332728,"(40.7119207, -73.7332728)",221 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466519,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,22:46,QUEENS,11412,40.6926401,-73.761416,"(40.6926401, -73.761416)",190 STREET,116 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466520,Sedan,Sedan,,, +10/10/2021,4:50,MANHATTAN,10033,40.8509074,-73.9382837,"(40.8509074, -73.9382837)",FORT WASHINGTON AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466521,Taxi,,,, +10/06/2021,5:10,QUEENS,11004,40.7520753,-73.7210967,"(40.7520753, -73.7210967)",LITTLE NECK PARKWAY,260 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466522,Sedan,,,, +10/12/2021,6:25,QUEENS,11411,40.6997814,-73.7432788,"(40.6997814, -73.7432788)",NASHVILLE BOULEVARD,115 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4466523,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/09/2021,12:31,QUEENS,11422,40.6652813,-73.7356112,"(40.6652813, -73.7356112)",SOUTH CONDUIT AVENUE,243 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466524,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,15:30,,,40.8626134,-73.9285984,"(40.8626134, -73.9285984)",SHERMAN AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4466525,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,18:57,,,40.7489568,-73.8713571,"(40.7489568, -73.8713571)",95 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,4466526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +01/19/2022,16:40,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4495862,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,17:20,QUEENS,11369,40.7602854,-73.8771849,"(40.7602854, -73.8771849)",,,91-11 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466528,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,15:00,QUEENS,11368,40.7517938,-73.8628894,"(40.7517938, -73.8628894)",,,37-62 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466529,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,11:47,,,40.705837,-73.9024549,"(40.705837, -73.9024549)",MADISON STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466531,Sedan,,,, +10/06/2021,19:15,,,40.7092306,-73.8701786,"(40.7092306, -73.8701786)",80 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466532,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/07/2021,16:00,,,40.6962506,-73.8942864,"(40.6962506, -73.8942864)",COOPER AVENUE,60 LANE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466533,Sedan,Sedan,,, +10/12/2021,8:44,BROOKLYN,11230,40.6114516,-73.95867,"(40.6114516, -73.95867)",,,1561 EAST 15 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466534,Sedan,,,, +01/19/2022,13:15,,,40.85223,-73.87141,"(40.85223, -73.87141)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495854,Sedan,Sedan,,, +10/09/2021,11:50,QUEENS,11385,40.6939271,-73.8987876,"(40.6939271, -73.8987876)",,,57-47 COOPER AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4466537,Sedan,Bike,,, +10/12/2021,15:10,,,40.5944424,-74.1589678,"(40.5944424, -74.1589678)",,,1278 ROCKLAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466538,Station Wagon/Sport Utility Vehicle,Tanker,,, +10/11/2021,14:00,,,40.6056539,-74.1657741,"(40.6056539, -74.1657741)",FOREST STREET,ARLENE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466539,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,20:00,,,40.688712,-73.9549775,"(40.688712, -73.9549775)",CLIFTON PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466540,Sedan,,,, +10/09/2021,17:33,,,40.6985403,-73.9411512,"(40.6985403, -73.9411512)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Driver Inattention/Distraction,,,,4466541,Sedan,Sedan,,, +10/11/2021,14:10,MANHATTAN,10065,40.769222,-73.967316,"(40.769222, -73.967316)",EAST 68 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4466516,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,20:30,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441341,Sedan,Sedan,,, +01/19/2022,23:00,MANHATTAN,10022,40.756382,-73.96433,"(40.756382, -73.96433)",1 AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496022,Sedan,Motorbike,,, +01/20/2022,0:00,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,AVENUE P,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496141,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,12:40,QUEENS,11416,40.6826323,-73.8512095,"(40.6826323, -73.8512095)",,,88-14 101 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4466545,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,2:20,QUEENS,11372,40.7468448,-73.8914308,"(40.7468448, -73.8914308)",74 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4466546,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,23:00,QUEENS,11432,40.7103517,-73.7938951,"(40.7103517, -73.7938951)",HILLSIDE AVENUE,168 PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4466547,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,18:50,QUEENS,11433,40.7012377,-73.794641,"(40.7012377, -73.794641)",LIBERTY AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466548,Sedan,,,, +10/11/2021,22:41,QUEENS,11420,40.6857669,-73.8066379,"(40.6857669, -73.8066379)",VANWYCK EXPRESSWAY,LAKEWOOD AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4466549,Ambulance,Sedan,,, +10/12/2021,12:30,BRONX,10462,40.8542507,-73.8658847,"(40.8542507, -73.8658847)",,,2131 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466550,Sedan,,,, +10/11/2021,22:32,,,40.6937956,-73.8117259,"(40.6937956, -73.8117259)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4466551,Sedan,,,, +10/12/2021,13:50,BROOKLYN,11208,40.6781823,-73.8706969,"(40.6781823, -73.8706969)",CRESCENT STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466552,Sedan,,,, +10/12/2021,14:10,BROOKLYN,11208,40.6827493,-73.8753608,"(40.6827493, -73.8753608)",CHESTNUT STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466553,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,19:00,MANHATTAN,10001,40.75193,-73.990814,"(40.75193, -73.990814)",,,212 WEST 35 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496740,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,1:21,MANHATTAN,10001,40.745287,-73.9887294,"(40.745287, -73.9887294)",WEST 28 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466555,Sedan,Sedan,,, +10/02/2021,9:13,,,40.8289244,-73.8384047,"(40.8289244, -73.8384047)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466556,Sedan,Tractor Truck Diesel,,, +01/20/2022,23:52,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496307,Convertible,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,0:00,STATEN ISLAND,10306,40.5642549,-74.1043278,"(40.5642549, -74.1043278)",MILTON AVENUE,MARINE WAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466558,Sedan,,,, +10/12/2021,8:55,,,40.7991318,-73.9666629,"(40.7991318, -73.9666629)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4466559,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,12:06,BROOKLYN,11228,40.615227,-74.01272,"(40.615227, -74.01272)",13 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4496382,Sedan,Bus,,, +01/21/2022,8:10,,,,,,PELHAM PARKWAY,EASTCHESTER ROAD,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4496233,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,13:25,,,40.7725539,-73.7722858,"(40.7725539, -73.7722858)",214 PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466562,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/12/2021,16:30,,,40.6541334,-73.9123297,"(40.6541334, -73.9123297)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466563,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,23:17,BROOKLYN,11210,40.6374087,-73.9471322,"(40.6374087, -73.9471322)",EAST 31 STREET,FARRAGUT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466565,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +10/11/2021,10:30,BROOKLYN,11203,40.6500012,-73.9299072,"(40.6500012, -73.9299072)",,,5002 SNYDER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,20:50,,,40.6485398,-73.9242472,"(40.6485398, -73.9242472)",TILDEN AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4466567,Sedan,Sedan,,, +10/12/2021,8:30,BROOKLYN,11203,40.6465591,-73.9259215,"(40.6465591, -73.9259215)",BEVERLEY ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4466568,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,14:50,,,40.6395223,-74.0848658,"(40.6395223, -74.0848658)",BENZIGER AVENUE,,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4466570,Sedan,Sedan,,, +10/12/2021,15:20,,,40.6333355,-74.0161278,"(40.6333355, -74.0161278)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,16:33,,,40.6369521,-74.0224794,"(40.6369521, -74.0224794)",67 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4466572,Sedan,E-Bike,,, +01/20/2022,6:24,BROOKLYN,11212,40.660267,-73.92141,"(40.660267, -73.92141)",,,1112 CLARKSON AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496567,Van,,,, +10/05/2021,22:00,QUEENS,11413,40.6741976,-73.7560635,"(40.6741976, -73.7560635)",SPRINGFIELD BOULEVARD,138 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466574,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,9:10,QUEENS,11427,40.7236414,-73.7557707,"(40.7236414, -73.7557707)",HILLSIDE AVENUE,211 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466575,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,17:10,BRONX,10468,40.8624717,-73.9002838,"(40.8624717, -73.9002838)",EAST FORDHAM ROAD,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466576,VMS,,,, +10/12/2021,17:15,QUEENS,11379,40.7159904,-73.8720845,"(40.7159904, -73.8720845)",80 STREET,JUNIPER VALLEY ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,15:32,QUEENS,11434,40.6610209,-73.766602,"(40.6610209, -73.766602)",,,178-40 146 TERRACE,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4466578,Station Wagon/Sport Utility Vehicle,Sedan,Convertible,, +08/16/2021,1:00,BRONX,10469,40.8774659,-73.8476228,"(40.8774659, -73.8476228)",,,3458 CORSA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4466579,Sedan,,,, +01/19/2022,12:14,,,40.7065,-73.91701,"(40.7065, -73.91701)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4495895,Sedan,Tractor Truck Diesel,,, +10/12/2021,16:00,QUEENS,11418,40.6998217,-73.8327537,"(40.6998217, -73.8327537)",,,86-10 117 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4466581,Sedan,Sedan,,, +10/11/2021,15:00,,,40.7045039,-73.8174195,"(40.7045039, -73.8174195)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466582,Sedan,,,, +10/12/2021,14:40,BRONX,10469,40.879465,-73.8524848,"(40.879465, -73.8524848)",LACONIA AVENUE,EAST 218 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466583,Sedan,Sedan,,, +10/11/2021,18:18,QUEENS,11421,40.6952041,-73.8492899,"(40.6952041, -73.8492899)",86 ROAD,96 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4466584,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,14:00,MANHATTAN,10002,40.7209677,-73.9821677,"(40.7209677, -73.9821677)",EAST HOUSTON STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4466585,Box Truck,Box Truck,,, +10/11/2021,12:00,BROOKLYN,11220,40.6440161,-74.0178514,"(40.6440161, -74.0178514)",,,316 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466586,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,16:30,,,40.6623073,-73.9887304,"(40.6623073, -73.9887304)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4466587,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/12/2021,12:45,BROOKLYN,11215,40.6614055,-73.9906938,"(40.6614055, -73.9906938)",,,284 19 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4466588,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/12/2021,10:10,QUEENS,11375,40.7256184,-73.8510251,"(40.7256184, -73.8510251)",QUEENS BOULEVARD,68 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466591,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/19/2022,19:44,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4495927,Bus,Sedan,,, +10/11/2021,11:00,QUEENS,11354,40.7672697,-73.8290439,"(40.7672697, -73.8290439)",LEAVITT STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,13:49,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4496117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,14:35,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,23:30,,,40.8537155,-73.8718608,"(40.8537155, -73.8718608)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466598,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,8:45,QUEENS,11418,40.70361,-73.8367,"(40.70361, -73.8367)",,,83-87 115 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496186,Sedan,,,, +10/12/2021,19:15,,,40.7833407,-73.9436776,"(40.7833407, -73.9436776)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466600,Sedan,Sedan,Sedan,, +10/07/2021,15:30,BROOKLYN,11238,40.6818566,-73.96759,"(40.6818566, -73.96759)",,,803 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466602,Sedan,,,, +10/10/2021,4:10,,,40.6959697,-73.9640906,"(40.6959697, -73.9640906)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4466603,Sedan,,,, +10/12/2021,17:50,,,40.654313,-73.9175769,"(40.654313, -73.9175769)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,13:00,BROOKLYN,11203,40.643345,-73.9365008,"(40.643345, -73.9365008)",,,492 EAST 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466605,Sedan,,,, +10/12/2021,21:50,,,40.847918,-73.8711997,"(40.847918, -73.8711997)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4466606,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/12/2021,21:30,BRONX,10466,40.8927532,-73.8577324,"(40.8927532, -73.8577324)",WHITE PLAINS ROAD,EAST 232 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466607,Sedan,,,, +10/12/2021,21:40,BROOKLYN,11238,40.6870434,-73.9664817,"(40.6870434, -73.9664817)",,,367 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466608,Sedan,,,, +10/12/2021,14:44,BROOKLYN,11225,40.6689642,-73.9556258,"(40.6689642, -73.9556258)",,,1561 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466609,Station Wagon/Sport Utility Vehicle,Bike,,, +10/12/2021,8:00,,,40.670658,-73.9579745,"(40.670658, -73.9579745)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,17:25,BROOKLYN,11201,40.6904686,-73.9878913,"(40.6904686, -73.9878913)",LIVINGSTON STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466611,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,4:05,BROOKLYN,11201,40.6935074,-73.9884247,"(40.6935074, -73.9884247)",,,335 ADAMS STREET,0,0,0,0,0,0,0,0,,,,,,4466612,,,,, +10/12/2021,12:22,,,40.688616,-73.9891681,"(40.688616, -73.9891681)",SMITH STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466613,Sedan,Sedan,,, +01/21/2022,15:20,,,,,,FEATHERBED LANE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496362,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,6:50,,,40.7384039,-73.9386261,"(40.7384039, -73.9386261)",30 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466615,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,16:30,QUEENS,11378,40.7320184,-73.9190359,"(40.7320184, -73.9190359)",48 STREET,LONG ISLAND EXPRESSWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4466616,Sedan,Sedan,,, +10/12/2021,17:00,,,40.7055813,-73.739711,"(40.7055813, -73.739711)",SPRINGFIELD BOULEVARD,112 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466617,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,21:20,QUEENS,11422,40.6655588,-73.7298428,"(40.6655588, -73.7298428)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4466618,Sedan,Sedan,,, +10/13/2021,1:20,,,40.7259911,-73.724209,"(40.7259911, -73.724209)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4466620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,1:20,,,40.7431872,-73.9720607,"(40.7431872, -73.9720607)",EAST 34 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,11:45,MANHATTAN,10009,40.7234696,-73.9832226,"(40.7234696, -73.9832226)",,,230 EAST 4 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4466622,Sedan,Sedan,,, +10/12/2021,7:05,MANHATTAN,10009,40.7215948,-73.9747647,"(40.7215948, -73.9747647)",EAST 6 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466623,Bus,Sedan,,, +10/12/2021,16:57,MANHATTAN,10009,40.7293696,-73.9839983,"(40.7293696, -73.9839983)",EAST 11 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466624,Taxi,,,, +10/12/2021,11:30,MANHATTAN,10016,40.7464029,-73.9797248,"(40.7464029, -73.9797248)",LEXINGTON AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4466625,Sedan,Sedan,,, +10/12/2021,8:30,BROOKLYN,11211,40.7116135,-73.961841,"(40.7116135, -73.961841)",,,155 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4466626,Sedan,Sedan,,, +10/12/2021,9:55,,,40.6997084,-73.9571664,"(40.6997084, -73.9571664)",WALLABOUT STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466627,Sedan,School Bus,,, +10/11/2021,20:30,BROOKLYN,11211,40.7092222,-73.9575506,"(40.7092222, -73.9575506)",,,283 SOUTH 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466628,Sedan,Trailer,,, +10/12/2021,20:14,BROOKLYN,11206,40.702078,-73.9490993,"(40.702078, -73.9490993)",,,157 HARRISON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4466629,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,7:00,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496201,Tractor Truck Diesel,,,, +10/11/2021,20:00,MANHATTAN,10029,40.78893,-73.9454215,"(40.78893, -73.9454215)",,,215 EAST 102 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466632,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,12:56,BROOKLYN,11218,40.642384,-73.98042,"(40.642384, -73.98042)",DAHILL ROAD,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495946,Sedan,Sedan,,, +01/21/2022,12:05,QUEENS,11375,40.72589,-73.8514,"(40.72589, -73.8514)",,,102-11 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496341,Sedan,,,, +10/12/2021,17:39,BROOKLYN,11229,40.6040288,-73.952294,"(40.6040288, -73.952294)",OCEAN AVENUE,AVENUE S,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466635,Sedan,Sedan,,, +10/12/2021,10:15,MANHATTAN,10021,40.7684858,-73.9555012,"(40.7684858, -73.9555012)",EAST 73 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466636,E-Scooter,,,, +10/12/2021,19:21,,,40.7636378,-73.9532966,"(40.7636378, -73.9532966)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466638,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,16:03,MANHATTAN,10021,40.766868,-73.9597766,"(40.766868, -73.9597766)",2 AVENUE,EAST 69 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,1:00,QUEENS,11420,40.6753147,-73.8103815,"(40.6753147, -73.8103815)",,,127-07 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466640,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,15:00,QUEENS,11414,40.6608493,-73.8402918,"(40.6608493, -73.8402918)",CROSS BAY BOULEVARD,158 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,19:00,QUEENS,11434,40.66454,-73.8227505,"(40.66454, -73.8227505)",SOUTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466642,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,19:45,QUEENS,11420,40.6860237,-73.8108631,"(40.6860237, -73.8108631)",133 STREET,109 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4466643,Sedan,Sedan,,, +10/12/2021,12:30,BROOKLYN,11222,40.7236278,-73.9421579,"(40.7236278, -73.9421579)",,,124 MONITOR STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466646,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,21:00,QUEENS,11373,40.7433678,-73.8841137,"(40.7433678, -73.8841137)",,,80-30 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4466647,Sedan,Bike,,, +10/12/2021,22:10,,,40.7178641,-73.9483201,"(40.7178641, -73.9483201)",LEONARD STREET,MEEKER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466648,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,21:00,,,40.7225868,-73.9404856,"(40.7225868, -73.9404856)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466649,Sedan,Sedan,,, +10/11/2021,10:05,BRONX,10451,40.816554,-73.9195436,"(40.816554, -73.9195436)",EAST 149 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4466650,Taxi,,,, +10/12/2021,8:10,,,40.8104377,-73.9305668,"(40.8104377, -73.9305668)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466651,Pick-up Truck,Sedan,,, +10/12/2021,23:12,BRONX,10454,40.8068143,-73.9174964,"(40.8068143, -73.9174964)",EAST 138 STREET,SAINT ANNS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466652,Station Wagon/Sport Utility Vehicle,Bike,,, +01/18/2022,15:30,,,40.716312,-73.81938,"(40.716312, -73.81938)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4496218,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,16:41,BRONX,10452,40.832501,-73.9280995,"(40.832501, -73.9280995)",WOODYCREST AVENUE,WEST 164 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466654,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,12:47,,,40.7211721,-73.9965764,"(40.7211721, -73.9965764)",KENMARE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466655,Station Wagon/Sport Utility Vehicle,Convertible,,, +01/19/2022,15:30,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4495883,Sedan,Sedan,,, +10/11/2021,4:00,,,40.8317235,-73.9150083,"(40.8317235, -73.9150083)",MORRIS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466657,Bike,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,19:22,MANHATTAN,10007,40.7152372,-74.0133794,"(40.7152372, -74.0133794)",WEST STREET,MURRAY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466658,Sedan,Sedan,,, +10/12/2021,15:05,BRONX,10455,40.8187699,-73.9037882,"(40.8187699, -73.9037882)",,,791 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466659,Sedan,Box Truck,,, +10/06/2021,19:20,BRONX,10456,40.833275,-73.9092684,"(40.833275, -73.9092684)",,,1249 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466660,Motorbike,Van,,, +10/12/2021,14:58,BROOKLYN,11234,40.6144783,-73.9264002,"(40.6144783, -73.9264002)",UTICA AVENUE,FILLMORE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466662,Dump,Sedan,,, +10/12/2021,17:20,MANHATTAN,10013,40.7233076,-74.00298,"(40.7233076, -74.00298)",BROOME STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466663,Ambulance,PK,,, +10/08/2021,23:57,BROOKLYN,11226,40.6556301,-73.9531588,"(40.6556301, -73.9531588)",,,650 ROGERS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466664,Sedan,Sedan,,, +07/20/2021,16:51,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441791,Sedan,Bike,,, +07/26/2021,8:00,,,40.7013,-73.93674,"(40.7013, -73.93674)",MONTIETH STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441812,Sedan,,,, +07/19/2021,11:30,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4441807,Sedan,Sedan,,, +01/21/2022,6:11,BRONX,10457,40.83648,-73.897736,"(40.83648, -73.897736)",CLAREMONT PARKWAY,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496173,Sedan,,,, +10/12/2021,21:00,QUEENS,11373,40.73477,-73.8745815,"(40.73477, -73.8745815)",QUEENS BOULEVARD,56 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4466667,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +10/12/2021,14:50,BROOKLYN,11230,40.6158525,-73.9632842,"(40.6158525, -73.9632842)",,,1707 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466668,Station Wagon/Sport Utility Vehicle,Bus,,, +10/12/2021,18:00,,,40.7400607,-73.8786312,"(40.7400607, -73.8786312)",BROADWAY,SAINT JAMES AVENUE,,1,0,1,0,0,0,0,0,,,,,,4466669,E-Bike,,,, +01/16/2022,21:50,,,40.677025,-73.95268,"(40.677025, -73.95268)",DEAN STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4496668,Bus,Sedan,,, +10/12/2021,16:37,,,40.6531723,-73.9615966,"(40.6531723, -73.9615966)",OCEAN AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4466671,Station Wagon/Sport Utility Vehicle,Bike,,, +10/12/2021,20:00,BROOKLYN,11226,40.6386507,-73.956838,"(40.6386507, -73.956838)",NEWKIRK AVENUE,EAST 22 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466672,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/19/2022,8:30,BROOKLYN,11206,40.701077,-73.94043,"(40.701077, -73.94043)",HUMBOLDT STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496475,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,8:25,,,40.8309366,-73.9123967,"(40.8309366, -73.9123967)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466674,Bus,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,22:48,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496067,Sedan,Sedan,,, +01/21/2022,15:40,BROOKLYN,11223,40.60069,-73.98249,"(40.60069, -73.98249)",,,90 AVENUE S,0,0,0,0,0,0,0,0,Unspecified,,,,,4496501,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,15:00,,,40.582725,-73.9732043,"(40.582725, -73.9732043)",WEST AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466677,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,19:33,,,40.7333726,-74.0025727,"(40.7333726, -74.0025727)",GROVE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466678,Taxi,E-Bike,,, +01/07/2022,9:00,,,40.69412,-73.96017,"(40.69412, -73.96017)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496638,Sedan,Box Truck,,, +10/12/2021,20:00,,,40.709932,-73.9904646,"(40.709932, -73.9904646)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Reaction to Uninvolved Vehicle,,,,4466680,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,15:47,MANHATTAN,10013,40.7170989,-73.9985895,"(40.7170989, -73.9985895)",CANAL STREET,MULBERRY STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4466681,Sedan,Box Truck,,, +10/12/2021,0:10,QUEENS,11417,40.677492,-73.8414578,"(40.677492, -73.8414578)",,,109-17 96 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466682,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,12:44,BRONX,10460,40.8349176,-73.8941239,"(40.8349176, -73.8941239)",BOSTON ROAD,WILKENS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466683,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,16:38,BRONX,10457,40.8502262,-73.8954806,"(40.8502262, -73.8954806)",,,2051 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466684,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,0:45,QUEENS,11364,40.7362694,-73.7728608,"(40.7362694, -73.7728608)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466685,Sedan,,,, +01/21/2022,18:10,,,40.73425,-73.86336,"(40.73425, -73.86336)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4496702,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,18:22,BRONX,10457,40.8381983,-73.9011767,"(40.8381983, -73.9011767)",3 AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466687,E-Bike,,,, +10/11/2021,12:30,BRONX,10459,40.8209797,-73.8938751,"(40.8209797, -73.8938751)",FOX STREET,EAST 163 STREET,,1,0,1,0,0,0,0,0,Obstruction/Debris,,,,,4466689,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,10:45,BRONX,10474,40.8124982,-73.8909501,"(40.8124982, -73.8909501)",,,627 TIFFANY STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4466690,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,8:49,BROOKLYN,11219,40.631535,-74.007904,"(40.631535, -74.007904)",,,6308 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496368,Sedan,,,, +10/12/2021,23:25,MANHATTAN,10019,40.7680332,-73.9958483,"(40.7680332, -73.9958483)",12 AVENUE,WEST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466693,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/27/2021,16:27,QUEENS,11004,40.740322,-73.703514,"(40.740322, -73.703514)",266 STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4441156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,19:00,BRONX,10468,40.870636,-73.902054,"(40.870636, -73.902054)",,,2629 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441212,Sedan,,,, +07/21/2021,9:30,,,40.693497,-73.94594,"(40.693497, -73.94594)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441659,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,15:15,,,40.81632,-73.95784,"(40.81632, -73.95784)",WEST 129 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441631,Sedan,Moped,,, +07/27/2021,3:07,BROOKLYN,11205,40.694084,-73.965096,"(40.694084, -73.965096)",,,127 RYERSON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4440832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/27/2021,19:35,STATEN ISLAND,10312,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441190,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,13:23,BROOKLYN,11228,40.615227,-74.01272,"(40.615227, -74.01272)",13 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,10:45,,,40.854477,-73.90125,"(40.854477, -73.90125)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441238,Sedan,Sedan,,, +07/22/2021,17:45,MANHATTAN,10002,40.719597,-73.97791,"(40.719597, -73.97791)",,,442 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441605,Sedan,Bus,,, +07/27/2021,17:30,,,40.708637,-73.90412,"(40.708637, -73.90412)",FOREST AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4441707,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/27/2021,0:00,MANHATTAN,10035,40.802998,-73.932106,"(40.802998, -73.932106)",,,336 EAST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4440936,Sedan,Sedan,,, +07/27/2021,12:15,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441251,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/20/2021,0:00,,,40.68984,-73.945206,"(40.68984, -73.945206)",VAN BUREN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441657,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,19:00,,,40.670734,-73.93373,"(40.670734, -73.93373)",SCHENECTADY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441691,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,19:25,,,40.761585,-73.76086,"(40.761585, -73.76086)",220 PLACE,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441560,Sedan,Bike,,, +07/27/2021,5:30,STATEN ISLAND,10310,40.621075,-74.1101,"(40.621075, -74.1101)",,,807 BEMENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,14:45,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",BEDFORD AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,18:21,MANHATTAN,10035,40.803185,-73.93463,"(40.803185, -73.93463)",,,254 EAST 125 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441298,Sedan,Bike,,, +07/27/2021,3:00,BRONX,10457,40.85348,-73.89349,"(40.85348, -73.89349)",,,509 EAST 182 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441317,Sedan,,,, +07/27/2021,17:15,QUEENS,11368,40.75285,-73.86425,"(40.75285, -73.86425)",,,37-12 103 STREET,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4441406,Sedan,,,, +07/27/2021,16:50,,,40.673157,-73.789024,"(40.673157, -73.789024)",149 STREET,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4441504,Sedan,,,, +07/27/2021,11:53,BRONX,10471,40.896633,-73.898346,"(40.896633, -73.898346)",,,5152 POST ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441106,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,13:40,QUEENS,11420,40.679794,-73.80982,"(40.679794, -73.80982)",115 AVENUE,131 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441051,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,15:45,BROOKLYN,11235,40.581257,-73.957924,"(40.581257, -73.957924)",BRIGHTON 10 STREET,BRIGHTON 10 PATH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441728,Bike,Sedan,,, +07/27/2021,14:30,BROOKLYN,11222,40.7331,-73.94191,"(40.7331, -73.94191)",,,425 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441086,Motorcycle,,,, +07/27/2021,13:46,QUEENS,11418,40.701706,-73.83655,"(40.701706, -73.83655)",85 AVENUE,114 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4441052,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:10,,,40.564877,-74.18132,"(40.564877, -74.18132)",WOODROW ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441673,Sedan,,,, +07/27/2021,11:20,BROOKLYN,11203,40.65134,-73.9389,"(40.65134, -73.9389)",,,4103 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441125,Box Truck,Sedan,,, +07/27/2021,9:00,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",130 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441011,Sedan,Sedan,,, +07/27/2021,7:06,BROOKLYN,11219,40.62728,-73.9914,"(40.62728, -73.9914)",,,1542 57 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4441503,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,16:00,BRONX,10455,40.815975,-73.91102,"(40.815975, -73.91102)",WESTCHESTER AVENUE,EAGLE AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4441227,Station Wagon/Sport Utility Vehicle,Bike,,, +07/27/2021,12:00,,,40.736534,-73.85611,"(40.736534, -73.85611)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4441268,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,18:58,MANHATTAN,10005,40.706013,-74.00882,"(40.706013, -74.00882)",HANOVER STREET,WALL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441540,Sedan,Ambulance,,, +07/27/2021,22:25,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441337,Sedan,Sedan,,, +07/27/2021,16:45,BROOKLYN,11221,40.6904,-73.92365,"(40.6904, -73.92365)",BROADWAY,GROVE STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4441520,Bike,,,, +07/27/2021,13:00,BRONX,10460,40.842514,-73.871544,"(40.842514, -73.871544)",MORRIS PARK AVENUE,VANBUREN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4441043,Motorcycle,Motorcycle,,, +07/27/2021,8:20,BROOKLYN,11236,40.64352,-73.90257,"(40.64352, -73.90257)",,,156 CONKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441116,Sedan,,,, +07/27/2021,16:44,BROOKLYN,11217,40.682423,-73.97069,"(40.682423, -73.97069)",ATLANTIC AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,16:45,QUEENS,11432,40.70675,-73.798996,"(40.70675, -73.798996)",,,162-05 89 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441721,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,10:00,BRONX,10458,40.85775,-73.88267,"(40.85775, -73.88267)",,,2496 CAMBRELENG AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441316,Sedan,Sedan,,, +07/26/2021,22:15,,,40.55316,-74.17033,"(40.55316, -74.17033)",WAINWRIGHT AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,16:22,MANHATTAN,10023,40.77242,-73.97873,"(40.77242, -73.97873)",CENTRAL PARK WEST,WEST 66 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4441730,Sedan,scooter,,, +07/27/2021,15:33,BROOKLYN,11203,40.65725,-73.92903,"(40.65725, -73.92903)",,,166 EAST 52 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4441131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/27/2021,6:30,QUEENS,11109,40.74762,-73.95651,"(40.74762, -73.95651)",CENTER BOULEVARD,46 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441175,Sedan,Dump,,, +07/27/2021,18:00,BROOKLYN,11216,40.676674,-73.95508,"(40.676674, -73.95508)",,,961 BERGEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441679,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,6:50,BROOKLYN,11201,40.698242,-73.99321,"(40.698242, -73.99321)",,,69 PINEAPPLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441064,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,12:10,BROOKLYN,11233,40.680138,-73.90566,"(40.680138, -73.90566)",BROADWAY,HULL STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4441604,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,14:56,QUEENS,11693,40.588997,-73.81629,"(40.588997, -73.81629)",BEACH CHANNEL DRIVE,BEACH 91 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,View Obstructed/Limited,,,,4441348,Sedan,Bus,,, +07/27/2021,14:50,,,40.665512,-73.926384,"(40.665512, -73.926384)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441443,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,0:30,,,40.725643,-73.99207,"(40.725643, -73.99207)",EAST 2 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441593,Taxi,Sedan,,, +07/23/2021,19:20,STATEN ISLAND,10312,40.531918,-74.19175,"(40.531918, -74.19175)",HUGUENOT AVENUE,AMBOY ROAD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4441664,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,19:30,,,40.687317,-74.00006,"(40.687317, -74.00006)",HICKS STREET,KANE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441219,Taxi,Sedan,,, +07/23/2021,18:49,,,40.686577,-73.947464,"(40.686577, -73.947464)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441637,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,17:15,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441252,Sedan,GARBAGE TR,,, +07/27/2021,9:22,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4441184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/27/2021,22:32,,,40.845432,-73.93658,"(40.845432, -73.93658)",SAINT NICHOLAS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441305,Sedan,,,, +07/14/2021,12:51,QUEENS,11385,40.708996,-73.863594,"(40.708996, -73.863594)",,,73-10 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441712,Box Truck,,,, +07/27/2021,17:21,BRONX,10475,40.88504,-73.8271,"(40.88504, -73.8271)",,,3525 CONNER STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4441137,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,13:26,BRONX,10469,40.874393,-73.83713,"(40.874393, -73.83713)",,,3155 GRACE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4441612,Sedan,Sedan,Sedan,Sedan, +07/26/2021,17:19,,,,,,EAST 53 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441761,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,22:20,BROOKLYN,11212,,,,CHRISTOPHER AVE,Newport st,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441282,Sedan,,,, +07/27/2021,22:50,BROOKLYN,11210,40.63908,-73.940605,"(40.63908, -73.940605)",FOSTER AVENUE,EAST 38 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4441191,Sedan,Sedan,,, +07/27/2021,1:00,QUEENS,11102,40.77078,-73.93317,"(40.77078, -73.93317)",,,11-48 30 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4441284,Sedan,,,, +07/27/2021,14:58,MANHATTAN,10036,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,11 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441239,Sedan,E-Scooter,,, +07/09/2021,17:19,BROOKLYN,11209,40.62605,-74.03804,"(40.62605, -74.03804)",,,46 85 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441647,Sedan,E-Bike,,, +07/27/2021,6:00,,,40.661777,-73.85069,"(40.661777, -73.85069)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4440848,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,13:55,,,40.67004,-73.93658,"(40.67004, -73.93658)",TROY AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4441684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,10:55,,,,,,CROSS ISLAND PARKWAY,160 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4441169,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,16:00,MANHATTAN,10009,40.72222,-73.9771,"(40.72222, -73.9771)",,,54 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441573,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,18:32,,,40.676548,-73.76838,"(40.676548, -73.76838)",133 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4441751,Sedan,Sedan,,, +07/27/2021,11:27,,,40.531796,-74.170425,"(40.531796, -74.170425)",JANSEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441630,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,4:08,MANHATTAN,10002,40.721222,-73.98301,"(40.721222, -73.98301)",ATTORNEY STREET,EAST HOUSTON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4440939,Sedan,,,, +07/26/2021,1:09,BROOKLYN,11216,40.6802,-73.953285,"(40.6802, -73.953285)",BEDFORD AVENUE,BREVOORT PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4441658,Taxi,Sedan,,, +07/27/2021,18:53,BROOKLYN,11228,40.62228,-74.010735,"(40.62228, -74.010735)",,,1150 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4441135,Station Wagon/Sport Utility Vehicle,4 dr sedan,Station Wagon/Sport Utility Vehicle,, +07/27/2021,20:30,MANHATTAN,10019,40.77099,-73.99092,"(40.77099, -73.99092)",WEST 58 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441240,Sedan,Bike,,, +07/24/2021,15:20,QUEENS,11385,40.70522,-73.91354,"(40.70522, -73.91354)",,,1738 HARMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441692,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,17:00,,,40.66495,-73.993355,"(40.66495, -73.993355)",4 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4441186,Bike,Sedan,,, +07/27/2021,19:20,BROOKLYN,11217,40.67412,-73.972534,"(40.67412, -73.972534)",8 AVENUE,BERKELEY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441559,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,17:48,MANHATTAN,10003,40.730877,-73.9894,"(40.730877, -73.9894)",,,95 EAST 10 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441611,Sedan,Sedan,,, +07/27/2021,13:22,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441213,NYS AMBULA,Sedan,,, +07/23/2021,11:45,,,,,,MERIDIAN ROAD,GCP WEST BOUND EXIT 9,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441796,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2021,14:50,,,40.672363,-73.9308,"(40.672363, -73.9308)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441678,Sedan,,,, +07/27/2021,14:30,QUEENS,11361,40.770485,-73.7867,"(40.770485, -73.7867)",32 AVENUE,203 STREET,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4441057,Sedan,Pick-up Truck,,, +07/27/2021,17:00,BROOKLYN,11249,40.717678,-73.96349,"(40.717678, -73.96349)",,,63 NORTH 3 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,23:20,QUEENS,11417,40.679344,-73.85318,"(40.679344, -73.85318)",,,105-17 84 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4441342,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,15:20,,,40.658875,-73.94753,"(40.658875, -73.94753)",NEW YORK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441775,Sedan,Bike,,, +07/27/2021,14:45,,,40.8219,-73.81854,"(40.8219, -73.81854)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441162,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:20,QUEENS,11103,40.765854,-73.914505,"(40.765854, -73.914505)",38 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441531,Sedan,Sedan,,, +07/13/2021,10:12,QUEENS,11385,40.70246,-73.8869,"(40.70246, -73.8869)",,,71-38 67 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441706,Sedan,Sedan,,, +07/27/2021,10:16,BROOKLYN,11217,40.68342,-73.982,"(40.68342, -73.982)",3 AVENUE,BERGEN STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4441045,Sedan,Sedan,,, +07/27/2021,13:16,MANHATTAN,10035,40.80109,-73.94146,"(40.80109, -73.94146)",,,101 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441292,Sedan,Pick-up Truck,,, +07/27/2021,12:00,,,40.667328,-73.77903,"(40.667328, -73.77903)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4441351,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,16:40,BROOKLYN,11201,40.68937,-73.991394,"(40.68937, -73.991394)",,,241 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441080,Sedan,Sedan,,, +07/27/2021,13:44,,,,,,,,109 WEST DRIVE,1,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4441194,Bike,E-Bike,,, +07/25/2021,22:10,MANHATTAN,10036,40.757633,-73.98581,"(40.757633, -73.98581)",,,1515 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4441624,Motorcycle,,,, +07/08/2021,0:00,,,40.67994,-73.941216,"(40.67994, -73.941216)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441662,Sedan,Sedan,,, +07/06/2021,11:20,BRONX,10473,40.82201,-73.85827,"(40.82201, -73.85827)",WHITE PLAINS ROAD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441548,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/27/2021,15:44,QUEENS,11413,40.665955,-73.757965,"(40.665955, -73.757965)",SPRINGFIELD BOULEVARD,SOUTHERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441152,Sedan,,,, +07/27/2021,16:10,MANHATTAN,10016,40.745068,-73.97258,"(40.745068, -73.97258)",EAST 36 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4441207,Sedan,Moped,,, +07/26/2021,10:30,,,40.703236,-73.80717,"(40.703236, -73.80717)",148 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4441723,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,14:01,BROOKLYN,11206,40.695885,-73.93828,"(40.695885, -73.93828)",,,303 VERNON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441617,Sedan,,,, +07/27/2021,23:27,MANHATTAN,10027,40.81261,-73.9556,"(40.81261, -73.9556)",,,425 WEST 125 STREET,1,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4441334,Taxi,E-Bike,,, +07/27/2021,5:09,,,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4440978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,15:00,,,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Aggressive Driving/Road Rage,,,,4441519,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/27/2021,16:14,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441127,Bus,Sedan,,, +07/27/2021,14:24,MANHATTAN,10027,40.80858,-73.95342,"(40.80858, -73.95342)",,,310 WEST 122 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441371,Sedan,Sedan,,, +07/27/2021,17:45,BROOKLYN,11223,40.59823,-73.961975,"(40.59823, -73.961975)",,,901 AVENUE U,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,7:04,MANHATTAN,10021,40.770477,-73.96639,"(40.770477, -73.96639)",MADISON AVENUE,EAST 70 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441224,Sedan,Bike,,, +07/25/2021,13:50,STATEN ISLAND,10312,40.55754,-74.19707,"(40.55754, -74.19707)",,,27 KYLE COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4441671,Sedan,,,, +07/27/2021,16:05,MANHATTAN,10025,40.79525,-73.97321,"(40.79525, -73.97321)",WEST END AVENUE,WEST 96 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441267,Convertible,,,, +07/26/2021,1:05,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441618,Sedan,,,, +07/27/2021,18:17,,,40.775444,-73.828445,"(40.775444, -73.828445)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4441173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/26/2021,10:30,QUEENS,11105,40.777615,-73.89853,"(40.777615, -73.89853)",,,41-16 19 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441532,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,17:30,,,40.606457,-73.989136,"(40.606457, -73.989136)",78 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441595,Sedan,,,, +07/27/2021,15:49,BROOKLYN,11228,40.614666,-74.0133,"(40.614666, -74.0133)",85 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441201,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,0:00,QUEENS,11372,40.755493,-73.88606,"(40.755493, -73.88606)",,,81-17 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441405,Sedan,,,, +07/27/2021,9:00,QUEENS,11417,40.67243,-73.841194,"(40.67243, -73.841194)",95 STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441010,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,16:00,BROOKLYN,11233,40.673542,-73.91955,"(40.673542, -73.91955)",HOWARD AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441274,Sedan,,,, +07/27/2021,14:40,MANHATTAN,10029,40.78775,-73.947464,"(40.78775, -73.947464)",3 AVENUE,EAST 100 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441104,Sedan,,,, +07/27/2021,12:00,QUEENS,11101,40.758984,-73.943306,"(40.758984, -73.943306)",38 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441286,Sedan,,,, +07/27/2021,18:30,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4441168,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/27/2021,17:00,BROOKLYN,11233,40.678574,-73.916306,"(40.678574, -73.916306)",FULTON STREET,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441273,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,7:00,,,40.812572,-73.950935,"(40.812572, -73.950935)",SAINT NICHOLAS AVENUE,WEST 128 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4441636,Sedan,,,, +07/27/2021,5:41,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4441217,Pick-up Truck,,,, +07/21/2021,7:45,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4441653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/27/2021,0:50,,,40.836975,-73.87933,"(40.836975, -73.87933)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,Unspecified,,,4440899,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/08/2021,14:35,,,,,,,,36 MARINE PARK BRIDGE NB LP,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,15:56,,,40.595642,-73.99676,"(40.595642, -73.99676)",23 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441572,Pick-up Truck,,,, +07/27/2021,19:33,BROOKLYN,11218,40.642845,-73.97826,"(40.642845, -73.97826)",BEVERLEY ROAD,EAST 2 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441785,Sedan,Sedan,,, +07/27/2021,16:45,BRONX,10469,40.86124,-73.84087,"(40.86124, -73.84087)",,,2408 MICKLE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441352,Ambulance,,,, +07/27/2021,17:30,BROOKLYN,11201,40.6911,-73.98647,"(40.6911, -73.98647)",FULTON STREET,GALLATIN PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441079,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,16:00,,,40.697506,-73.982285,"(40.697506, -73.982285)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441082,Sedan,Sedan,,, +07/27/2021,15:20,QUEENS,11364,40.734943,-73.751396,"(40.734943, -73.751396)",UNION TURNPIKE,220 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4441311,Box Truck,Sedan,,, +07/26/2021,15:25,BROOKLYN,11213,40.676895,-73.93593,"(40.676895, -73.93593)",PACIFIC STREET,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441682,Sedan,Sedan,,, +07/27/2021,19:10,BROOKLYN,11225,40.656796,-73.95983,"(40.656796, -73.95983)",,,2110 WESTBURY COURT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441114,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/27/2021,18:00,BRONX,10461,40.844856,-73.846634,"(40.844856, -73.846634)",,,1516 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4441343,Sedan,Motorcycle,,, +07/27/2021,6:30,QUEENS,11378,40.7152,-73.91823,"(40.7152, -73.91823)",,,58-15 49 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441710,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,17:10,BROOKLYN,11203,40.655754,-73.92403,"(40.655754, -73.92403)",LENOX ROAD,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/27/2021,22:25,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Following Too Closely,,,4441444,Sedan,Sedan,Sedan,, +07/27/2021,16:30,BROOKLYN,11226,40.635017,-73.96328,"(40.635017, -73.96328)",,,604 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4441774,Sedan,,,, +07/27/2021,11:30,QUEENS,11418,40.696865,-73.81535,"(40.696865, -73.81535)",ATLANTIC AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4441025,Sedan,Sedan,,, +07/27/2021,21:35,MANHATTAN,10032,40.837193,-73.9367,"(40.837193, -73.9367)",WEST 165 STREET,EDGECOMBE AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441312,Sedan,E-Bike,,, +07/27/2021,18:35,QUEENS,11372,40.755753,-73.883514,"(40.755753, -73.883514)",84 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441411,Sedan,,,, +07/24/2021,21:10,,,40.771076,-73.91872,"(40.771076, -73.91872)",HOYT AVENUE SOUTH,29 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441529,Box Truck,E-Bike,,, +07/27/2021,9:10,,,40.860332,-73.8983,"(40.860332, -73.8983)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4441047,Sedan,Sedan,,, +07/27/2021,18:00,QUEENS,11356,40.78873,-73.846405,"(40.78873, -73.846405)",,,9-27 COLLEGE PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441111,Pick-up Truck,Sedan,,, +07/24/2021,23:30,QUEENS,11435,40.696785,-73.81171,"(40.696785, -73.81171)",,,138-09 95 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441724,Sedan,,,, +07/26/2021,10:31,,,40.681488,-73.77233,"(40.681488, -73.77233)",125 AVENUE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4441750,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,18:20,MANHATTAN,10031,40.82465,-73.94623,"(40.82465, -73.94623)",WEST 145 STREET,CONVENT AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inexperience,,,,4441134,Sedan,Sedan,,, +07/27/2021,18:45,,,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4441245,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,14:35,BRONX,10463,40.886528,-73.89979,"(40.886528, -73.89979)",BROADWAY,WEST 240 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441716,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,12:35,QUEENS,11375,40.711823,-73.83612,"(40.711823, -73.83612)",MARKWOOD ROAD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441571,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,13:24,,,40.67117,-73.92534,"(40.67117, -73.92534)",BUFFALO AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441677,E-Bike,,,, +07/27/2021,13:30,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4441056,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +07/27/2021,8:54,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441165,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/27/2021,7:20,QUEENS,11421,40.691456,-73.85012,"(40.691456, -73.85012)",89 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4440987,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/27/2021,10:40,BROOKLYN,11236,40.647606,-73.915504,"(40.647606, -73.915504)",DITMAS AVENUE,EAST 89 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4441128,Sedan,E-Bike,,, +07/27/2021,20:05,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",BERGEN STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4441301,Bike,,,, +07/27/2021,8:04,QUEENS,11004,40.74831,-73.70954,"(40.74831, -73.70954)",UNION TURNPIKE,263 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441119,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,17:44,,,40.53465,-74.19386,"(40.53465, -74.19386)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441634,Sedan,Sedan,,, +07/27/2021,14:05,BROOKLYN,11217,40.686928,-73.98484,"(40.686928, -73.98484)",ATLANTIC AVENUE,BOND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441445,Pick-up Truck,Pick-up Truck,,, +07/27/2021,21:38,QUEENS,11372,40.749386,-73.88424,"(40.749386, -73.88424)",,,37-59 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441187,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,12:55,MANHATTAN,10036,40.757996,-73.98923,"(40.757996, -73.98923)",,,680 8 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441515,Bus,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,19:00,,,40.865383,-73.89348,"(40.865383, -73.89348)",VALENTINE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441380,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,21:15,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441234,Sedan,,,, +07/22/2021,12:00,MANHATTAN,10003,40.733116,-73.99092,"(40.733116, -73.99092)",,,60 EAST 12 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441610,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,12:33,QUEENS,11378,40.72175,-73.91933,"(40.72175, -73.91933)",,,56-71 49 PLACE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441705,Sedan,,,, +07/27/2021,19:15,,,40.733917,-73.9219,"(40.733917, -73.9219)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4441180,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck, +07/24/2021,16:38,STATEN ISLAND,10309,,,,,,565A VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4441626,Sedan,,,, +07/27/2021,18:15,QUEENS,11101,40.73572,-73.93677,"(40.73572, -73.93677)",STARR AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441172,Station Wagon/Sport Utility Vehicle,Carry All,,, +07/27/2021,6:23,QUEENS,11378,40.71464,-73.90313,"(40.71464, -73.90313)",,,60-56 60 LANE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440959,Sedan,Sedan,,, +07/15/2021,12:15,,,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441654,Sedan,Lift Boom,,, +07/27/2021,17:11,MANHATTAN,10025,40.79465,-73.97179,"(40.79465, -73.97179)",WEST 96 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441089,Bus,Bus,,, +07/27/2021,23:51,MANHATTAN,10022,40.757122,-73.97192,"(40.757122, -73.97192)",LEXINGTON AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441208,Sedan,Sedan,,, +07/26/2021,5:15,QUEENS,11433,40.696213,-73.78228,"(40.696213, -73.78228)",171 PLACE,110 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4441797,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,23:05,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441694,Sedan,Sedan,,, +07/27/2021,13:15,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4441582,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,7:15,BRONX,10467,40.879818,-73.880226,"(40.879818, -73.880226)",,,120 EAST 210 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441214,Sedan,,,, +07/27/2021,15:47,,,40.689426,-73.94223,"(40.689426, -73.94223)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4441296,Sedan,Sedan,,, +07/27/2021,20:40,BROOKLYN,11204,40.61824,-73.98408,"(40.61824, -73.98408)",62 STREET,20 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441599,Sedan,Bike,,, +07/27/2021,12:55,BROOKLYN,11205,40.68975,-73.96541,"(40.68975, -73.96541)",,,328 DE KALB AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441193,Sedan,,,, +07/27/2021,8:54,QUEENS,11427,40.726227,-73.756714,"(40.726227, -73.756714)",GRAND CENTRAL PARKWAY,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441153,Sedan,Sedan,,, +07/27/2021,10:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441641,Sedan,,,, +07/24/2021,19:40,,,40.69253,-73.95985,"(40.69253, -73.95985)",TAAFFE PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441661,Sedan,,,, +07/27/2021,23:18,,,,,,MATTHEWSON ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441333,Sedan,Sedan,,, +07/26/2021,18:10,BROOKLYN,11234,40.618275,-73.93713,"(40.618275, -73.93713)",,,1568 RYDER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441550,Sedan,,,, +07/27/2021,14:16,MANHATTAN,10028,40.77317,-73.94859,"(40.77317, -73.94859)",,,505 EAST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441223,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,19:15,BROOKLYN,11212,,,,Pitkin Avenue,Mother Gaston Boulevard,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441275,Sedan,Sedan,,, +07/27/2021,18:11,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4441709,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/16/2021,16:00,BROOKLYN,11205,40.698326,-73.96106,"(40.698326, -73.96106)",FLUSHING AVENUE,TAAFFE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441615,Box Truck,Pick-up Truck,,, +07/27/2021,19:29,QUEENS,11377,40.757195,-73.90827,"(40.757195, -73.90827)",HOBART STREET,31 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441287,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,1:20,BROOKLYN,11204,40.62202,-73.98726,"(40.62202, -73.98726)",60 STREET,18 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441786,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/27/2021,7:00,,,40.84104,-73.92195,"(40.84104, -73.92195)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441619,Sedan,Sedan,,, +07/27/2021,0:30,QUEENS,11415,40.712357,-73.8263,"(40.712357, -73.8263)",,,125-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4440906,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/11/2021,18:13,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441689,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,17:00,,,40.690918,-73.7623,"(40.690918, -73.7623)",FARMERS BOULEVARD,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4441644,Sedan,,,, +07/27/2021,8:55,,,40.74762,-73.95651,"(40.74762, -73.95651)",NORTH BASIN ROAD,CENTER BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441178,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,13:00,MANHATTAN,10003,40.73586,-73.993256,"(40.73586, -73.993256)",,,7 EAST 14 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441361,Station Wagon/Sport Utility Vehicle,Bike,,, +07/27/2021,10:00,BROOKLYN,11207,40.655605,-73.883896,"(40.655605, -73.883896)",,,200 COZINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441083,Sedan,,,, +07/27/2021,15:00,BRONX,10455,40.817173,-73.90667,"(40.817173, -73.90667)",WESTCHESTER AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4441344,Sedan,,,, +07/25/2021,15:20,STATEN ISLAND,10309,40.516624,-74.20279,"(40.516624, -74.20279)",HYLAN BOULEVARD,BAYVIEW AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4441670,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,20:00,,,40.61495,-74.0002,"(40.61495, -74.0002)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441586,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,17:21,BRONX,10455,40.813232,-73.90908,"(40.813232, -73.90908)",JACKSON AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441232,Sedan,,,, +07/27/2021,17:00,,,40.702953,-73.91706,"(40.702953, -73.91706)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4441266,Station Wagon/Sport Utility Vehicle,FIRETRUCK,,, +07/24/2021,2:00,MANHATTAN,10001,40.750294,-73.99485,"(40.750294, -73.99485)",WEST 31 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441538,Taxi,,,, +07/27/2021,21:05,,,40.689476,-73.82769,"(40.689476, -73.82769)",101 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4441302,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,0:00,BROOKLYN,11226,40.64136,-73.948555,"(40.64136, -73.948555)",,,1833 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441118,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,16:53,BRONX,10467,40.877945,-73.86616,"(40.877945, -73.86616)",WHITE PLAINS ROAD,EAST 211 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4441143,Bike,Sedan,,, +07/18/2021,14:31,BROOKLYN,11225,40.65508,-73.96191,"(40.65508, -73.96191)",,,239 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441773,Sedan,Sedan,,, +07/27/2021,3:55,BROOKLYN,11209,40.63444,-74.02544,"(40.63444, -74.02544)",,,333 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4441034,Sedan,Sedan,,, +07/24/2021,2:45,QUEENS,11432,40.709324,-73.78838,"(40.709324, -73.78838)",,,172-09 90 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4441718,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,20:35,,,40.831776,-73.82097,"(40.831776, -73.82097)",THROGS NECK EXPRESSWAY,LAFAYETTE AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4441314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,23:30,QUEENS,11413,40.67652,-73.73711,"(40.67652, -73.73711)",133 AVENUE,232 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4441198,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,21:20,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,PARK PLACE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4441681,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,12:00,QUEENS,11434,40.660168,-73.77423,"(40.660168, -73.77423)",147 AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441120,Sedan,Sedan,,, +07/27/2021,16:45,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HILLSIDE AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441154,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,14:35,,,40.63831,-74.16609,"(40.63831, -74.16609)",,,71 SOUTH AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4441553,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/27/2021,22:08,,,40.773697,-73.98894,"(40.773697, -73.98894)",WEST END AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441418,Taxi,E-Scooter,,, +07/27/2021,22:15,,,40.619545,-73.91727,"(40.619545, -73.91727)",AVENUE N,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4441498,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,7:00,QUEENS,11435,40.698406,-73.80647,"(40.698406, -73.80647)",SUTPHIN BOULEVARD,95 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Turning Improperly,,,,4441018,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/27/2021,20:30,BRONX,10457,40.838875,-73.90266,"(40.838875, -73.90266)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4441272,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,16:52,,,40.702793,-73.83214,"(40.702793, -73.83214)",LEFFERTS BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441076,Sedan,,,, +07/27/2021,16:40,STATEN ISLAND,10304,40.616333,-74.08712,"(40.616333, -74.08712)",,,937 VANDUZER STREET,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4441324,Motorbike,,,, +07/27/2021,8:15,,,,,,QUEENSBORO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4440981,Station Wagon/Sport Utility Vehicle,LIMO,LIMO,Sedan, +07/27/2021,13:12,BRONX,10459,40.824696,-73.89184,"(40.824696, -73.89184)",,,1042 WESTCHESTER AVENUE,4,0,0,0,0,0,4,0,Other Vehicular,Unspecified,,,,4441410,Sedan,Sedan,,, +07/27/2021,18:54,QUEENS,11421,40.684475,-73.866516,"(40.684475, -73.866516)",ELDERTS LANE,93 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441300,Sedan,Sedan,,, +07/27/2021,13:27,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,BOSTON ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4441108,Sedan,Sedan,,, +07/17/2021,11:22,BRONX,10466,40.889366,-73.84232,"(40.889366, -73.84232)",,,3955 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4441660,,,,, +07/23/2021,0:00,,,,,,WEST SHORE EXPRESSWAY,VETERANS ROAD EAST,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4441627,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,18:25,BRONX,10467,40.88046,-73.881645,"(40.88046, -73.881645)",,,3424 KOSSUTH AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4441210,Sedan,Sedan,NYC AMBULA,, +07/27/2021,17:40,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441189,Sedan,Ambulance,,, +07/27/2021,21:00,BRONX,10465,40.840496,-73.82113,"(40.840496, -73.82113)",,,1342 LOHENGRIN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441570,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,20:08,BROOKLYN,11223,40.598244,-73.98264,"(40.598244, -73.98264)",AVENUE T,WEST 11 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441609,Sedan,Sedan,,, +07/27/2021,20:59,BRONX,10467,40.87367,-73.879234,"(40.87367, -73.879234)",EAST 205 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441215,Sedan,,,, +07/27/2021,18:09,MANHATTAN,10029,40.786423,-73.94239,"(40.786423, -73.94239)",EAST 101 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441102,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +07/21/2021,23:20,QUEENS,11434,40.682266,-73.78781,"(40.682266, -73.78781)",,,155-19 FOCH BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4441798,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,8:23,QUEENS,11416,40.683735,-73.85932,"(40.683735, -73.85932)",95 AVENUE,81 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4441054,Sedan,Sedan,,, +07/15/2021,23:30,,,40.635098,-73.917915,"(40.635098, -73.917915)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441676,Sedan,Sedan,,, +07/27/2021,23:00,QUEENS,11694,40.584587,-73.81958,"(40.584587, -73.81958)",BEACH 98 STREET,ROCKAWAY BEACH BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4441340,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,5:40,,,40.68521,-73.76612,"(40.68521, -73.76612)",120 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4441505,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,12:30,BROOKLYN,11203,40.647232,-73.92989,"(40.647232, -73.92989)",,,1051 UTICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441129,PK,Sedan,,, +07/27/2021,4:15,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",EAST 138 STREET,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441236,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,7:39,,,40.791084,-73.953445,"(40.791084, -73.953445)",5 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441374,Sedan,Sedan,,, +07/27/2021,13:44,QUEENS,11365,40.738396,-73.79462,"(40.738396, -73.79462)",,,175-04 HORACE HARDING EXPRESSWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441294,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,13:56,BROOKLYN,11223,40.592323,-73.96074,"(40.592323, -73.96074)",CONEY ISLAND AVENUE,CRAWFORD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4441048,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/27/2021,12:25,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441170,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/23/2021,7:00,BROOKLYN,11203,40.655884,-73.942535,"(40.655884, -73.942535)",,,451 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441745,Sedan,Sedan,,, +07/27/2021,0:00,,,40.837646,-73.85101,"(40.837646, -73.85101)",GLEBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441249,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,16:20,BROOKLYN,11226,40.640648,-73.95316,"(40.640648, -73.95316)",,,2502 AVENUE D,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4441132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/25/2021,17:11,,,40.690594,-73.95162,"(40.690594, -73.95162)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4441633,Sedan,Sedan,,, +07/08/2021,15:40,,,40.688698,-73.942085,"(40.688698, -73.942085)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441656,Sedan,Sedan,,, +07/27/2021,22:06,MANHATTAN,10009,40.729237,-73.98367,"(40.729237, -73.98367)",,,401 EAST 11 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4441574,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,12:38,QUEENS,11378,40.72452,-73.897995,"(40.72452, -73.897995)",,,66-17 GRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441701,Box Truck,,,, +07/27/2021,4:10,BROOKLYN,11234,40.618717,-73.93262,"(40.618717, -73.93262)",,,2098 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441181,Sedan,,,, +07/04/2021,6:00,BROOKLYN,11205,40.6921,-73.95754,"(40.6921, -73.95754)",,,211 FRANKLIN AVENUE,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441600,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/27/2021,13:08,QUEENS,11433,40.694984,-73.799904,"(40.694984, -73.799904)",107 AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441725,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,17:15,MANHATTAN,10017,40.753376,-73.98096,"(40.753376, -73.98096)",,,501 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441315,Sedan,Taxi,,, +07/20/2021,16:20,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441789,Station Wagon/Sport Utility Vehicle,Bike,,, +07/27/2021,17:15,BROOKLYN,11208,40.681095,-73.8736,"(40.681095, -73.8736)",ATLANTIC AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,22:07,,,40.74137,-73.97252,"(40.74137, -73.97252)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,4441363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/24/2021,10:00,,,,,,BEACH 181 STREET,STATE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441680,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,18:15,MANHATTAN,10035,40.804474,-73.93764,"(40.804474, -73.93764)",,,135 EAST 125 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4441304,Sedan,,,, +07/27/2021,12:47,BROOKLYN,11228,40.623356,-74.00784,"(40.623356, -74.00784)",12 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441070,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,16:58,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441121,Sedan,Sedan,,, +07/27/2021,7:20,MANHATTAN,10005,40.705544,-74.00796,"(40.705544, -74.00796)",WALL STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441521,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,9:00,,,40.69142,-73.7875,"(40.69142, -73.7875)",CLAUDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441499,Sedan,,,, +07/27/2021,3:05,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441037,Taxi,,,, +07/12/2021,18:14,QUEENS,11385,40.712864,-73.90478,"(40.712864, -73.90478)",METROPOLITAN AVENUE,ELIOT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441704,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/27/2021,9:15,,,40.717022,-73.94913,"(40.717022, -73.94913)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,8:00,MANHATTAN,10009,40.723637,-73.98733,"(40.723637, -73.98733)",,,101 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441589,Sedan,,,, +07/27/2021,13:40,,,40.771286,-73.9467,"(40.771286, -73.9467)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,0:00,,,40.69854,-73.94116,"(40.69854, -73.94116)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4441640,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,3:50,BROOKLYN,11225,40.65767,-73.96036,"(40.65767, -73.96036)",,,642 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441645,Sedan,,,, +07/27/2021,0:21,,,,,,MACOMBS ROAD,FEATHERBED LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4440913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,22:00,MANHATTAN,10002,40.717396,-73.9906,"(40.717396, -73.9906)",,,68 ORCHARD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441767,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/27/2021,23:45,,,40.742493,-73.87337,"(40.742493, -73.87337)",CORONA AVENUE,91 PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441269,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,12:54,,,,,,GRAND CENTRAL PARKWAY,138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441291,Sedan,Sedan,,, +07/16/2021,16:16,BROOKLYN,11226,40.655594,-73.94717,"(40.655594, -73.94717)",NEW YORK AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441690,Sedan,Sedan,,, +07/27/2021,12:15,,,40.73701,-73.89993,"(40.73701, -73.89993)",50 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441177,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,17:07,MANHATTAN,10014,40.726955,-74.003456,"(40.726955, -74.003456)",CHARLTON STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4441539,Moped,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,14:26,MANHATTAN,10002,40.718002,-73.98659,"(40.718002, -73.98659)",DELANCEY STREET,SUFFOLK STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4441197,Van,,,, +07/27/2021,18:10,QUEENS,11435,40.69691,-73.81124,"(40.69691, -73.81124)",95 AVENUE,138 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441720,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,23:46,BROOKLYN,11212,,,,,,415 CHRISTOPHER AVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441279,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/27/2021,10:50,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441117,Dump,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,0:30,QUEENS,11433,40.69498,-73.79009,"(40.69498, -73.79009)",BREWER BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441015,Sedan,Sedan,,, +07/27/2021,18:00,,,,,,,,7601 76 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441347,Sedan,,,, +07/11/2021,0:16,MANHATTAN,10037,40.810505,-73.938225,"(40.810505, -73.938225)",,,16 EAST 132 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4441557,E-Bike,,,, +07/27/2021,17:50,QUEENS,11413,40.668392,-73.75627,"(40.668392, -73.75627)",,,219-32 143 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441155,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,9:10,BRONX,10466,40.893623,-73.85525,"(40.893623, -73.85525)",EAST 234 STREET,BYRON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4441140,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,19:00,BRONX,10461,40.85071,-73.83569,"(40.85071, -73.83569)",,,1926 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4441431,Sedan,,,, +07/23/2021,8:47,QUEENS,11385,40.7085,-73.89766,"(40.7085, -73.89766)",,,61-55 PALMETTO STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441708,Motorcycle,,,, +07/27/2021,18:40,BROOKLYN,11238,40.683453,-73.96184,"(40.683453, -73.96184)",,,436 GRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441192,Sedan,Van,,, +07/27/2021,12:50,,,40.852383,-73.90365,"(40.852383, -73.90365)",GRAND CONCOURSE,EAST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4441229,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,2:30,,,40.55079,-74.20098,"(40.55079, -74.20098)",HUGUENOT AVENUE,,,0,0,0,0,0,0,0,0,Headlights Defective,Unspecified,,,,4441666,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/21/2021,15:00,BRONX,10453,40.84915,-73.917336,"(40.84915, -73.917336)",WEST 176 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4441620,Sedan,Bus,Sedan,, +07/27/2021,12:30,BRONX,10451,40.824257,-73.909325,"(40.824257, -73.909325)",,,508 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441262,Station Wagon/Sport Utility Vehicle,Tow truck,,, +07/27/2021,10:55,BROOKLYN,11210,40.62318,-73.93693,"(40.62318, -73.93693)",,,1 OVERBAUGH PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441182,Van,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,18:48,QUEENS,11004,40.747017,-73.704994,"(40.747017, -73.704994)",,,79-59 267 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441602,Sedan,,,, +07/27/2021,22:05,BROOKLYN,11204,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,65 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4441613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/27/2021,10:30,,,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441629,Bus,Sedan,,, +07/27/2021,17:51,BRONX,10468,40.861412,-73.90497,"(40.861412, -73.90497)",AQUEDUCT AVENUE,WEST 184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441211,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,1:50,MANHATTAN,10019,40.7692957,-73.9949385,"(40.7692957, -73.9949385)",12 AVENUE,WEST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466694,Taxi,Pick-up Truck,,, +01/19/2022,14:26,BROOKLYN,11220,40.631752,-74.01725,"(40.631752, -74.01725)",,,649 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496074,Sedan,Box Truck,,, +09/26/2021,18:21,BRONX,10459,40.8227021,-73.8919604,"(40.8227021, -73.8919604)",,,995 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4466696,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,8:38,MANHATTAN,10003,,,,2 AVENUE,EAST 20 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496546,Sedan,Sedan,,, +10/12/2021,19:55,,,40.7875502,-73.850529,"(40.7875502, -73.850529)",12 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466698,3-Door,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,21:35,STATEN ISLAND,10305,40.574135,-74.08581,"(40.574135, -74.08581)",CAPODANNO BOULEVARD,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496373,Sedan,Pick-up Truck,,, +01/21/2022,17:08,MANHATTAN,10013,40.723305,-74.00299,"(40.723305, -74.00299)",WEST BROADWAY,BROOME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496322,Sedan,Tow Truck / Wrecker,,, +10/10/2021,11:00,QUEENS,11412,40.7055008,-73.762131,"(40.7055008, -73.762131)",109 ROAD,195 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466701,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,21:09,,,40.6663161,-73.791704,"(40.6663161, -73.791704)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4466702,Sedan,,,, +10/01/2021,22:10,QUEENS,11436,40.6833421,-73.804323,"(40.6833421, -73.804323)",139 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466703,Sedan,Sedan,,, +10/09/2021,0:00,BROOKLYN,11238,40.681888,-73.9654882,"(40.681888, -73.9654882)",,,555 WAVERLY AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4466705,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,10:57,,,40.5753322,-74.1617859,"(40.5753322, -74.1617859)",FOREST HILL ROAD,PLATINUM AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,1:00,,,40.815611,-73.934297,"(40.815611, -73.934297)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466708,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,17:45,MANHATTAN,10031,0,0,"(0.0, 0.0)",BROADWAY,WEST 147 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4496228,Sedan,Bus,,, +10/12/2021,7:28,MANHATTAN,10035,40.7976168,-73.932939,"(40.7976168, -73.932939)",,,419 EAST 119 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466710,Sedan,Sedan,,, +10/10/2021,22:16,,,40.8548229,-73.911194,"(40.8548229, -73.911194)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4466711,Bike,Sedan,,, +10/10/2021,23:00,MANHATTAN,10033,40.8485182,-73.9359293,"(40.8485182, -73.9359293)",WEST 179 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466712,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,16:15,,,40.6096259,-74.1495445,"(40.6096259, -74.1495445)",WILLOW ROAD EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466714,Sedan,Sedan,,, +10/12/2021,16:18,BRONX,10458,40.8598744,-73.8932165,"(40.8598744, -73.8932165)",EAST 188 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466715,Sedan,Box Truck,,, +01/21/2022,16:14,BRONX,10466,40.880924,-73.83966,"(40.880924, -73.83966)",BOSTON ROAD,EDSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496798,Sedan,Sedan,,, +10/12/2021,18:39,MANHATTAN,10035,40.7996625,-73.9389866,"(40.7996625, -73.9389866)",,,2172 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466717,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +01/20/2022,6:00,QUEENS,11414,40.65878,-73.83977,"(40.65878, -73.83977)",,,159-13 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496085,Pick-up Truck,,,, +01/19/2022,16:20,BROOKLYN,11203,40.655884,-73.942535,"(40.655884, -73.942535)",,,451 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4495910,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,5:30,MANHATTAN,10001,40.7452028,-73.9945236,"(40.7452028, -73.9945236)",,,170 WEST 25 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,11:52,BROOKLYN,11222,40.7227796,-73.9539908,"(40.7227796, -73.9539908)",,,17 NASSAU AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466726,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,2:00,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4441200,Sedan,Sedan,Sedan,, +10/13/2021,5:40,,,40.7554913,-73.7417264,"(40.7554913, -73.7417264)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4466735,Sedan,Pick-up Truck,,, +10/12/2021,23:47,QUEENS,11365,40.743451,-73.790949,"(40.743451, -73.790949)",56 AVENUE,185 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,17:30,QUEENS,11369,40.7613154,-73.860869,"(40.7613154, -73.860869)",,,108-25 31 DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4466737,Sedan,Sedan,Sedan,, +10/12/2021,21:50,QUEENS,11370,40.7650136,-73.8870909,"(40.7650136, -73.8870909)",ASTORIA BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4466739,Sedan,Pick-up Truck,,, +10/08/2021,23:15,STATEN ISLAND,10309,40.5250272,-74.2392663,"(40.5250272, -74.2392663)",ARTHUR KILL ROAD,SOUTH BRIDGE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4466740,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,23:19,QUEENS,11691,40.5933791,-73.7768785,"(40.5933791, -73.7768785)",,,45-19 ROCKAWAY BEACH BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4466742,,,,, +10/08/2021,21:57,STATEN ISLAND,10305,40.5985436,-74.0794843,"(40.5985436, -74.0794843)",ALLENDALE ROAD,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466743,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,8:03,MANHATTAN,10035,40.7978898,-73.9368996,"(40.7978898, -73.9368996)",,,2288 2 AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4466744,Sedan,Bike,,, +10/12/2021,0:15,,,40.5962568,-73.766834,"(40.5962568, -73.766834)",SEAGIRT BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4466745,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,8:45,QUEENS,11691,40.6069288,-73.747439,"(40.6069288, -73.747439)",CHANNING ROAD,BEACH 12 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466746,Station Wagon/Sport Utility Vehicle,Bus,,, +10/12/2021,18:45,MANHATTAN,10037,40.8127391,-73.9376183,"(40.8127391, -73.9376183)",WEST 135 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466747,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,16:00,BRONX,10460,40.8406312,-73.888045,"(40.8406312, -73.888045)",,,1830 MOHEGAN AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4466748,Sedan,,,, +10/12/2021,21:25,BROOKLYN,11212,40.6562732,-73.9073064,"(40.6562732, -73.9073064)",ROCKAWAY AVENUE,HEGEMAN AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4466749,Taxi,,,, +10/11/2021,8:49,BROOKLYN,11212,40.6652035,-73.9225511,"(40.6652035, -73.9225511)",,,10 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466750,Sedan,Box Truck,,, +10/12/2021,18:14,BROOKLYN,11212,40.6626114,-73.9071352,"(40.6626114, -73.9071352)",,,280 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466752,Sedan,,,, +10/01/2021,12:25,BROOKLYN,11212,40.6576666,-73.9095968,"(40.6576666, -73.9095968)",BRISTOL STREET,LOTT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466754,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,22:00,,,40.8553962,-73.9180955,"(40.8553962, -73.9180955)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4466756,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,14:56,MANHATTAN,10016,40.7497316,-73.9762344,"(40.7497316, -73.9762344)",,,144 EAST 40 STREET,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4466759,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,12:50,,,40.7449019,-73.7702092,"(40.7449019, -73.7702092)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4466760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,5:00,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,3,0,0,0,0,0,3,0,Fatigued/Drowsy,Unspecified,,,,4496333,Sedan,Sedan,,, +07/28/2021,8:44,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441430,Sedan,,,, +10/12/2021,16:41,MANHATTAN,10007,40.7137303,-74.0138408,"(40.7137303, -74.0138408)",WEST STREET,VESEY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4466762,Bike,,,, +10/05/2021,11:00,BROOKLYN,11217,40.6820589,-73.9908673,"(40.6820589, -73.9908673)",HOYT STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466765,Sedan,,,, +10/11/2021,7:03,,,40.6685062,-73.9256052,"(40.6685062, -73.9256052)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4466766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,9:30,BROOKLYN,11223,40.5975812,-73.9677754,"(40.5975812, -73.9677754)",AVENUE U,EAST 4 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466769,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,12:51,BRONX,10469,40.8617202,-73.8305294,"(40.8617202, -73.8305294)",,,1990 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466772,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,0:40,,,40.6297311,-73.9222151,"(40.6297311, -73.9222151)",FLATLANDS AVENUE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4466773,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,19:30,BROOKLYN,11210,40.6222066,-73.9440427,"(40.6222066, -73.9440427)",AVENUE L,EAST 32 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4466777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/12/2021,3:08,,,40.6784553,-73.9496774,"(40.6784553, -73.9496774)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466778,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,18:00,,,40.6758186,-73.9304568,"(40.6758186, -73.9304568)",DEAN STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466780,Sedan,,,, +10/05/2021,18:37,,,40.6789349,-73.9619567,"(40.6789349, -73.9619567)",DEAN STREET,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4466781,Station Wagon/Sport Utility Vehicle,Bike,,, +10/12/2021,20:10,,,40.8863332,-73.9126832,"(40.8863332, -73.9126832)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Steering Failure,,,,,4466782,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,16:40,,,40.6685062,-73.9256052,"(40.6685062, -73.9256052)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466783,Pick-up Truck,Box Truck,,, +10/09/2021,2:17,BROOKLYN,11234,40.6035493,-73.9153053,"(40.6035493, -73.9153053)",,,2777 FLATBUSH AVENUE,3,0,0,0,0,0,3,0,Fell Asleep,,,,,4466788,Sedan,,,, +10/10/2021,6:30,QUEENS,11385,40.7049151,-73.8804493,"(40.7049151, -73.8804493)",,,71-19 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466793,Sedan,,,, +10/08/2021,23:30,QUEENS,11379,40.712877,-73.8788932,"(40.712877, -73.8788932)",,,73-11 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466794,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/12/2021,14:45,,,40.6503478,-73.8684855,"(40.6503478, -73.8684855)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466800,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,18:00,,,40.5849841,-73.9433948,"(40.5849841, -73.9433948)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4466801,Sedan,Sedan,Sedan,, +10/04/2021,19:40,BROOKLYN,11206,40.69603,-73.9435263,"(40.69603, -73.9435263)",THROOP AVENUE,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,,,,4466806,Sedan,Sedan,,, +10/08/2021,19:41,BRONX,10452,40.8313358,-73.9216614,"(40.8313358, -73.9216614)",EAST 165 STREET,WALTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466812,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,22:00,,,40.8281223,-73.9310615,"(40.8281223, -73.9310615)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4466814,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/12/2021,16:20,QUEENS,11377,40.7497011,-73.9025603,"(40.7497011, -73.9025603)",60 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466816,Sedan,Sedan,,, +10/11/2021,14:50,BROOKLYN,11201,40.6881735,-73.9839866,"(40.6881735, -73.9839866)",SCHERMERHORN STREET,BOND STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4466818,Sedan,Sedan,,, +10/05/2021,19:00,MANHATTAN,10002,40.7198654,-73.9897554,"(40.7198654, -73.9897554)",,,132 ALLEN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466820,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,8:00,BROOKLYN,11205,40.6895615,-73.9671143,"(40.6895615, -73.9671143)",DE KALB AVENUE,WAVERLY AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4466822,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/15/2021,14:45,,,40.8281594,-73.9129604,"(40.8281594, -73.9129604)",EAST 165 STREET,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4466824,Bus,Sedan,,, +10/13/2021,7:15,,,40.7159668,-73.8127455,"(40.7159668, -73.8127455)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466827,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/26/2021,22:52,,,40.824085,-73.874344,"(40.824085, -73.874344)",BRUCKNER EXPRESSWAY,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4490225,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,0:44,MANHATTAN,10001,40.749706,-73.99157,"(40.749706, -73.99157)",WEST 32 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4518845,Sedan,Bike,,, +04/09/2022,22:16,QUEENS,11385,40.695652,-73.90269,"(40.695652, -73.90269)",,,1616 NORMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518836,Sedan,Sedan,,, +10/06/2021,14:45,MANHATTAN,10003,40.7333949,-73.990919,"(40.7333949, -73.990919)",,,830 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4466836,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,16:00,MANHATTAN,10003,40.7344895,-73.9907722,"(40.7344895, -73.9907722)",,,852 BROADWAY,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inattention/Distraction,,,,4466837,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,22:30,QUEENS,11385,40.70276,-73.88894,"(40.70276, -73.88894)",66 STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518837,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,22:00,QUEENS,11385,40.69993,-73.90588,"(40.69993, -73.90588)",CORNELIA STREET,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518835,Sedan,,,, +04/11/2022,7:15,BROOKLYN,11226,40.637875,-73.95847,"(40.637875, -73.95847)",,,2011 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518838,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,11:50,,,,,,BELT PARKWAY,BAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518792,Station Wagon/Sport Utility Vehicle,TRUCK,,, +04/11/2022,23:56,,,40.597122,-74.00418,"(40.597122, -74.00418)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4518791,Convertible,Sedan,Sedan,, +04/11/2022,17:10,,,40.708256,-73.91997,"(40.708256, -73.91997)",CYPRESS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518839,Bus,Sedan,,, +04/11/2022,1:10,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522436,Sedan,,,, +04/25/2022,8:30,BRONX,10468,,,,,,2825 WEBB AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522435,Van,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,14:00,BRONX,10456,40.831127,-73.91745,"(40.831127, -73.91745)",EAST 166 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522442,Taxi,,,, +04/18/2022,16:00,,,40.843643,-73.90676,"(40.843643, -73.90676)",MONROE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4522441,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,15:50,BRONX,10457,40.844833,-73.909386,"(40.844833, -73.909386)",EAST 174 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522440,Station Wagon/Sport Utility Vehicle,,,, +03/11/2022,16:30,BRONX,10452,40.83005,-73.922424,"(40.83005, -73.922424)",EAST 164 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522431,Sedan,Sedan,,, +04/22/2022,16:20,BRONX,10468,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEBB AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4522437,Sedan,Tow Truck,,, +04/23/2022,12:00,,,0,0,"(0.0, 0.0)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4522443,Pick-up Truck,Sedan,,, +10/13/2021,15:03,MANHATTAN,10028,40.7801743,-73.95931,"(40.7801743, -73.95931)",MADISON AVENUE,EAST 85 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466858,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,8:40,BRONX,10453,40.851807,-73.90683,"(40.851807, -73.90683)",MORRIS AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441616,Sedan,,,, +04/11/2022,11:32,BROOKLYN,11218,40.634354,-73.97891,"(40.634354, -73.97891)",DAHILL ROAD,41 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518189,Sedan,Sedan,,, +04/11/2022,13:41,BROOKLYN,11237,40.70205,-73.91443,"(40.70205, -73.91443)",,,377 BLEECKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518357,Sedan,Sedan,,, +10/02/2021,0:30,MANHATTAN,10022,40.7609829,-73.9649873,"(40.7609829, -73.9649873)",,,237 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466855,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/11/2022,15:12,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4518260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/21/2022,15:15,,,40.676872,-73.94985,"(40.676872, -73.94985)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518744,Sedan,Bus,,, +04/11/2022,9:33,BROOKLYN,11233,40.676693,-73.917404,"(40.676693, -73.917404)",ATLANTIC AVENUE,LOUIS PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4518704,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/11/2022,0:01,QUEENS,11368,40.740467,-73.8593,"(40.740467, -73.8593)",,,101-16 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4517808,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,16:40,BROOKLYN,11226,40.648293,-73.95823,"(40.648293, -73.95823)",,,918 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4518234,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/05/2022,23:24,MANHATTAN,10039,40.825222,-73.93779,"(40.825222, -73.93779)",,,230 WEST 150 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,Unspecified,4518567,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/11/2022,18:45,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518305,Sedan,Sedan,,, +04/02/2022,20:10,,,40.7466,-73.76503,"(40.7466, -73.76503)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4518661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/11/2021,22:39,QUEENS,11416,40.6812413,-73.8513189,"(40.6812413, -73.8513189)",88 STREET,102 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466865,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/11/2022,0:36,MANHATTAN,10128,40.78294,-73.948044,"(40.78294, -73.948044)",EAST 94 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4517856,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,17:20,,,,,,CROSS BAY BOULEVARD,WEST 22 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4518314,Sedan,Sedan,,, +10/09/2021,22:00,,,40.7922448,-73.9441814,"(40.7922448, -73.9441814)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466868,Sedan,,,, +04/06/2022,13:00,BRONX,10459,40.82162,-73.89589,"(40.82162, -73.89589)",,,957 KELLY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518734,Sedan,,,, +10/13/2021,18:10,,,40.8132378,-73.93129,"(40.8132378, -73.93129)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466870,Sedan,Motorcycle,,, +04/04/2022,5:14,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4518634,Sedan,,,, +04/11/2022,8:00,,,40.780224,-73.80255,"(40.780224, -73.80255)",FRANCIS LEWIS BOULEVARD,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4517973,Sedan,,,, +04/11/2022,15:25,QUEENS,11366,40.72778,-73.78551,"(40.72778, -73.78551)",,,183-02 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518169,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,12:20,MANHATTAN,10016,40.74709,-73.97419,"(40.74709, -73.97419)",,,696 2 AVENUE,1,0,1,0,0,0,0,0,,,,,,4518383,,,,, +04/11/2022,14:30,BRONX,10459,40.82406,-73.8998,"(40.82406, -73.8998)",PROSPECT AVENUE,EAST 165 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518439,Dump,Bus,,, +04/11/2022,15:40,BRONX,10466,40.899628,-73.84435,"(40.899628, -73.84435)",NEREID AVENUE,WILDER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518573,Sedan,Sedan,,, +10/14/2021,2:32,,,40.7400268,-73.8456427,"(40.7400268, -73.8456427)",GRAND CENTRAL PKWY,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4466878,Sedan,,,, +04/11/2022,7:30,QUEENS,11377,40.7555,-73.90843,"(40.7555, -73.90843)",,,31-34 51 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518600,E-Bike,,,, +10/13/2021,7:30,,,40.7344798,-73.8631559,"(40.7344798, -73.8631559)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4466880,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,6:44,,,40.7365435,-73.8561008,"(40.7365435, -73.8561008)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466881,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/11/2022,9:45,BROOKLYN,11235,40.583652,-73.94356,"(40.583652, -73.94356)",EMMONS AVENUE,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518139,Sedan,,,, +04/11/2022,10:10,QUEENS,11411,40.6867,-73.73745,"(40.6867, -73.73745)",FRANCIS LEWIS BOULEVARD,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,13:20,STATEN ISLAND,10305,40.59351,-74.08392,"(40.59351, -74.08392)",REID AVENUE,HURLBERT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4518115,Sedan,Sedan,,, +04/11/2022,9:00,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518082,Sedan,Sedan,,, +04/10/2022,15:51,BRONX,10459,40.820984,-73.893326,"(40.820984, -73.893326)",,,999 EAST 163 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,Unspecified,,,4518774,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/11/2022,12:58,BROOKLYN,11201,0,0,"(0.0, 0.0)",SMITH STREET,STATE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518165,Taxi,Bike,,, +04/11/2022,8:42,MANHATTAN,10029,40.79505,-73.93317,"(40.79505, -73.93317)",EAST 116 STREET,PLEASANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518035,Sedan,Sedan,,, +10/07/2021,12:20,,,40.8257582,-73.950939,"(40.8257582, -73.950939)",BROADWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4466891,Box Truck,Sedan,,, +10/08/2021,12:20,,,40.8277283,-73.9495067,"(40.8277283, -73.9495067)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4466892,Beverage Truck,Sedan,,, +10/01/2021,16:00,,,40.8289254,-73.9503947,"(40.8289254, -73.9503947)",WEST 148 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466893,Sedan,,,, +10/04/2021,12:00,MANHATTAN,10030,40.8221958,-73.9447134,"(40.8221958, -73.9447134)",,,165 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466894,Box Truck,,,, +04/09/2022,16:58,,,40.59281,-73.97877,"(40.59281, -73.97877)",86 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518597,Sedan,E-Bike,,, +10/07/2021,13:31,BROOKLYN,11222,40.7214426,-73.9452203,"(40.7214426, -73.9452203)",,,160 NEWTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466896,Sedan,Box Truck,,, +04/11/2022,6:00,BRONX,10462,40.83451,-73.84039,"(40.83451, -73.84039)",,,1190 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4518289,Sedan,,,, +10/11/2021,15:05,,,40.8271531,-73.9462009,"(40.8271531, -73.9462009)",WEST 148 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466898,Sedan,,,, +04/11/2022,12:38,,,0,0,"(0.0, 0.0)",ELDERT STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518340,PK,Glass Rack,,, +10/07/2021,16:25,,,40.8327103,-73.9502235,"(40.8327103, -73.9502235)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4466900,Sedan,,,, +04/11/2022,7:20,,,40.697075,-73.93185,"(40.697075, -73.93185)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518622,Sedan,Bike,,, +10/13/2021,21:15,,,40.8479791,-73.9247661,"(40.8479791, -73.9247661)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,Following Too Closely,,,4466902,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +04/11/2022,15:30,,,40.583275,-73.982254,"(40.583275, -73.982254)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518454,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/11/2022,14:56,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,NORTHERN BOULEVARD,,2,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4518604,E-Scooter,,,, +04/11/2022,10:00,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518067,Bus,Sedan,,, +04/11/2022,6:48,BRONX,10466,0,0,"(0.0, 0.0)",,,4525 BARNES AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4518157,Sedan,,,, +04/11/2022,7:45,BRONX,10457,40.85407,-73.89932,"(40.85407, -73.89932)",EAST 181 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518240,Sedan,,,, +10/07/2021,0:45,,,40.7087741,-73.9981114,"(40.7087741, -73.9981114)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4466908,Sedan,,,, +10/12/2021,19:00,,,40.6581467,-74.0035588,"(40.6581467, -74.0035588)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466909,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,5:55,,,40.6615311,-74.0000699,"(40.6615311, -74.0000699)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466910,Sedan,Sedan,,, +09/08/2021,23:30,MANHATTAN,10019,40.7700767,-73.9874019,"(40.7700767, -73.9874019)",,,1000 10 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4466912,Moped,,,, +08/21/2021,1:06,,,40.7707422,-73.9945485,"(40.7707422, -73.9945485)",12 AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4466913,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,15:00,MANHATTAN,10012,40.7211721,-73.9965764,"(40.7211721, -73.9965764)",KENMARE STREET,MULBERRY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466914,Motorcycle,Sedan,,, +10/08/2021,0:05,,,40.5842623,-73.9637906,"(40.5842623, -73.9637906)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Steering Failure,Unspecified,,,,4466915,Sedan,Sedan,,, +09/25/2021,13:00,,,40.6304365,-73.8859293,"(40.6304365, -73.8859293)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466916,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,7:00,,,40.6545439,-73.8609088,"(40.6545439, -73.8609088)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4466917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,5:30,BRONX,10455,0,0,"(0.0, 0.0)",LEGGETT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518436,Box Truck,Box Truck,,, +10/06/2021,10:55,BRONX,10460,40.8414831,-73.8885224,"(40.8414831, -73.8885224)",EAST 176 STREET,MARMION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,16:13,,,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518690,Sedan,,,, +09/25/2021,12:30,,,40.6029571,-73.8993152,"(40.6029571, -73.8993152)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4466921,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,6:30,BROOKLYN,11221,40.694001,-73.9234996,"(40.694001, -73.9234996)",GREENE AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466922,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,8:30,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4518170,Sedan,Sedan,,, +10/13/2021,19:50,,,40.7198717,-73.9448532,"(40.7198717, -73.9448532)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Passing or Lane Usage Improper,Unspecified,,,,4466924,Sedan,Armored Truck,,, +04/11/2022,13:00,QUEENS,11368,40.74069,-73.86353,"(40.74069, -73.86353)",CHRISTIE AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518202,Motorcycle,,,, +09/25/2021,10:30,,,40.585171,-73.9564096,"(40.585171, -73.9564096)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466926,Pick-up Truck,Sedan,Pick-up Truck,, +10/11/2021,12:00,BROOKLYN,11237,40.6976795,-73.9163657,"(40.6976795, -73.9163657)",GROVE STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466927,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,8:00,BROOKLYN,11221,40.6924837,-73.9202992,"(40.6924837, -73.9202992)",LINDEN STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466928,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,20:45,,,40.6918236,-73.9222292,"(40.6918236, -73.9222292)",GROVE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466929,Sedan,Sedan,,, +10/02/2021,14:25,,,40.699628,-73.9238321,"(40.699628, -73.9238321)",DE KALB AVENUE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4466930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:55,BROOKLYN,11204,40.615993,-73.99717,"(40.615993, -73.99717)",73 STREET,17 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518790,Station Wagon/Sport Utility Vehicle,Bike,,, +10/14/2021,3:07,,,40.6985519,-73.9623509,"(40.6985519, -73.9623509)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4466932,Sedan,,,, +04/11/2022,8:00,,,40.676815,-73.82338,"(40.676815, -73.82338)",ROCKAWAY BOULEVARD,115 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518089,Sedan,Sedan,,, +10/12/2021,15:17,BROOKLYN,11221,40.6938318,-73.9096054,"(40.6938318, -73.9096054)",KNICKERBOCKER AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4466934,Station Wagon/Sport Utility Vehicle,Bus,,, +04/09/2022,19:15,,,40.760708,-73.77954,"(40.760708, -73.77954)",205 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518660,Sedan,,,, +04/11/2022,16:00,,,40.671078,-73.842926,"(40.671078, -73.842926)",CROSS BAY BOULEVARD,149 AVENUE,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4518527,Motorcycle,,,, +04/11/2022,18:49,,,40.581516,-73.96734,"(40.581516, -73.96734)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518587,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,6:16,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518648,Sedan,,,, +10/13/2021,0:00,,,40.5603501,-74.1276931,"(40.5603501, -74.1276931)",MONTREAL AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4466939,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,17:01,BROOKLYN,11206,40.70247,-73.93478,"(40.70247, -73.93478)",,,945 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518755,Sedan,Motorcycle,,, +04/11/2022,13:03,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518277,Taxi,Ambulance,,, +04/05/2022,21:59,,,,,,PELHAM PARKWAY,WILLIAMSBRIDGE ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518713,Sedan,Sedan,,, +04/11/2022,17:20,MANHATTAN,10002,40.717148,-73.99051,"(40.717148, -73.99051)",,,324 GRAND STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518320,Sedan,Box Truck,,, +04/11/2022,11:29,QUEENS,11434,40.678158,-73.779335,"(40.678158, -73.779335)",,,127-04 BREWER BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4518218,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,22:45,,,40.725174,-73.83739,"(40.725174, -73.83739)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518403,Sedan,Sedan,,, +04/11/2022,16:00,,,40.63552,-74.0167,"(40.63552, -74.0167)",6 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518178,Sedan,Bike,,, +04/09/2022,0:00,BRONX,10469,40.882767,-73.85504,"(40.882767, -73.85504)",,,947 EAST 221 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,0:05,,,40.7537216,-73.8328215,"(40.7537216, -73.8328215)",MAPLE AVENUE,,,1,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4466947,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/12/2021,11:15,QUEENS,11691,40.6008797,-73.7542056,"(40.6008797, -73.7542056)",,,20-20 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466949,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,17:10,BROOKLYN,11230,40.6107571,-73.9627161,"(40.6107571, -73.9627161)",,,1910 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Backing Unsafely,,,,4466950,Sedan,Sedan,,, +10/06/2021,15:55,QUEENS,11101,40.7574719,-73.9390994,"(40.7574719, -73.9390994)",21 STREET,38 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466952,Sedan,Sedan,,, +10/12/2021,14:30,QUEENS,11101,40.7440288,-73.9261524,"(40.7440288, -73.9261524)",QUEENS BOULEVARD,39 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466953,Sedan,Bike,,, +04/11/2022,20:47,BROOKLYN,11226,40.646515,-73.958115,"(40.646515, -73.958115)",FLATBUSH AVENUE,TILDEN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518235,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,23:15,QUEENS,11377,40.7392038,-73.91854,"(40.7392038, -73.91854)",47 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466955,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,19:55,BROOKLYN,11239,40.654343,-73.864204,"(40.654343, -73.864204)",,,11629 SEAVIEW AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,11:09,MANHATTAN,10029,40.7912359,-73.9521936,"(40.7912359, -73.9521936)",,,10 EAST 102 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466957,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,16:47,QUEENS,11103,40.76132,-73.9170907,"(40.76132, -73.9170907)",31 AVENUE,STEINWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466958,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,19:45,QUEENS,11372,40.755363,-73.88723,"(40.755363, -73.88723)",80 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518306,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:59,,,40.5798042,-73.9718339,"(40.5798042, -73.9718339)",WEST 5 STREET,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4466960,Sedan,Sedan,Sedan,Sedan,Sedan +04/10/2022,21:30,BROOKLYN,11221,40.69248,-73.93517,"(40.69248, -73.93517)",,,476 KOSCIUSZKO STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518727,Sedan,,,, +10/12/2021,14:25,QUEENS,11101,40.7534886,-73.9379409,"(40.7534886, -73.9379409)",40 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466962,Tractor Truck Diesel,,,, +04/11/2022,0:02,QUEENS,11377,40.75321,-73.907814,"(40.75321, -73.907814)",,,51-35 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4517814,Sedan,Sedan,,, +10/12/2021,15:02,MANHATTAN,10029,40.7993065,-73.9432328,"(40.7993065, -73.9432328)",PARK AVENUE,EAST 116 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466964,Sedan,Bike,,, +10/12/2021,17:34,,,40.7602045,-73.901662,"(40.7602045, -73.901662)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4466965,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/08/2021,11:30,,,40.5773235,-74.0056913,"(40.5773235, -74.0056913)",LYME AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466967,Sedan,,,, +09/28/2021,13:00,,,40.77077,-73.91727,"(40.77077, -73.91727)",HOYT AVENUE NORTH,31 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466951,Taxi,Tractor Truck Diesel,,, +04/11/2022,8:00,BROOKLYN,11238,40.680954,-73.96768,"(40.680954, -73.96768)",VANDERBILT AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4518198,Tractor Truck Diesel,,,, +04/07/2022,15:50,BROOKLYN,11215,40.66917,-73.98631,"(40.66917, -73.98631)",9 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518641,Sedan,,,, +04/10/2022,13:00,MANHATTAN,10012,40.724796,-73.99621,"(40.724796, -73.99621)",,,132 CROSBY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518703,Sedan,,,, +10/12/2021,22:15,QUEENS,11102,40.7722922,-73.9153946,"(40.7722922, -73.9153946)",31 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466971,Sedan,Motorcycle,,, +04/11/2022,1:02,BROOKLYN,11222,40.728134,-73.95328,"(40.728134, -73.95328)",CALYER STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517878,Bus,Sedan,,, +04/06/2022,13:00,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518743,Sedan,Sedan,,, +04/11/2022,21:35,,,40.745422,-73.990974,"(40.745422, -73.990974)",WEST 27 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518173,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:15,BRONX,10469,40.86528,-73.84719,"(40.86528, -73.84719)",ALLERTON AVENUE,FISH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,18:02,BRONX,10453,40.851208,-73.91742,"(40.851208, -73.91742)",,,1770 MONTGOMERY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518221,Sedan,Bus,,, +04/09/2022,17:15,,,40.85025,-73.9007,"(40.85025, -73.9007)",EAST BURNSIDE AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518633,Station Wagon/Sport Utility Vehicle,Bike,,, +04/07/2022,9:51,BRONX,10466,40.887688,-73.85225,"(40.887688, -73.85225)",,,943 EAST 228 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4518679,Sedan,,,, +04/11/2022,15:52,BRONX,10455,40.81116,-73.90981,"(40.81116, -73.90981)",,,470 JACKSON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4518266,Box Truck,,,, +10/09/2021,0:08,MANHATTAN,10033,40.8498406,-73.9349665,"(40.8498406, -73.9349665)",WADSWORTH AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4466980,Moped,,,, +10/08/2021,14:33,BROOKLYN,11224,40.578358,-73.9905035,"(40.578358, -73.9905035)",NEPTUNE AVENUE,WEST 23 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466981,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,8:20,BROOKLYN,11214,40.603275,-73.99606,"(40.603275, -73.99606)",86 STREET,21 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518787,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,0:17,,,40.8538839,-73.9404874,"(40.8538839, -73.9404874)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4466983,Taxi,,,, +04/11/2022,5:55,QUEENS,11417,40.6749,-73.85243,"(40.6749, -73.85243)",,,132-22 84 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4518088,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/13/2021,9:55,,,40.6204463,-74.1671955,"(40.6204463, -74.1671955)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466985,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,2:54,STATEN ISLAND,10306,40.5567026,-74.1159471,"(40.5567026, -74.1159471)",,,533 MILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466986,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,21:10,MANHATTAN,10033,40.8493135,-73.9300151,"(40.8493135, -73.9300151)",AMSTERDAM AVENUE,WEST 183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466987,Motorcycle,Sedan,,, +04/11/2022,8:01,BRONX,10451,40.81542,-73.924614,"(40.81542, -73.924614)",,,260 EAST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518117,Sedan,Box Truck,,, +04/11/2022,13:25,STATEN ISLAND,10309,40.524612,-74.230446,"(40.524612, -74.230446)",BOSCOMBE AVENUE,TYRELLAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518472,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,18:05,,,40.76912,-73.95505,"(40.76912, -73.95505)",1 AVENUE,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4518192,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,9:40,BROOKLYN,11206,40.7109353,-73.9354664,"(40.7109353, -73.9354664)",MEADOW STREET,BOGART STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4466991,Sedan,Sedan,Box Truck,, +10/11/2021,15:00,MANHATTAN,10026,40.8059833,-73.9567356,"(40.8059833, -73.9567356)",,,353 WEST 117 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466992,Sedan,,,, +03/29/2022,13:30,BROOKLYN,11235,40.580128,-73.959,"(40.580128, -73.959)",,,1022 OCEANVIEW AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518612,,,,, +04/11/2022,9:45,,,40.70546,-73.7949,"(40.70546, -73.7949)",165 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518068,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,15:18,QUEENS,11419,40.6925709,-73.8193097,"(40.6925709, -73.8193097)",,,97-19 127 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4466984,Sedan,,,, +10/13/2021,6:40,,,40.6099925,-74.1201649,"(40.6099925, -74.1201649)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466996,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,11:00,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",HENDRIX STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518356,Sedan,,,, +10/09/2021,19:23,MANHATTAN,10075,40.773844,-73.9598862,"(40.773844, -73.9598862)",,,1102 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,22:35,BROOKLYN,11234,40.6276946,-73.9260834,"(40.6276946, -73.9260834)",,,1320 EAST 52 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4466999,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:20,STATEN ISLAND,10301,40.63029,-74.08891,"(40.63029, -74.08891)",VICTORY BOULEVARD,FOREST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518541,Sedan,Sedan,,, +04/11/2022,6:00,BROOKLYN,11236,40.64729,-73.89202,"(40.64729, -73.89202)",,,972 EAST 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518100,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,12:25,QUEENS,11691,40.6028,-73.74879,"(40.6028, -73.74879)",NAMEOKE STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Traffic Control Disregarded,,,,4518239,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,18:51,BROOKLYN,11213,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,8:30,BRONX,10458,40.8571285,-73.8807926,"(40.8571285, -73.8807926)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,7:55,,,40.6093329,-73.9484149,"(40.6093329, -73.9484149)",BEDFORD AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467005,E-Scooter,Sedan,,, +10/10/2021,19:51,QUEENS,11374,40.7118451,-73.8597598,"(40.7118451, -73.8597598)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4467006,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/08/2021,23:10,QUEENS,11385,40.7020766,-73.8791656,"(40.7020766, -73.8791656)",MYRTLE AVENUE,71 PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467007,Sedan,Sedan,,, +10/10/2021,16:28,MANHATTAN,10065,40.7618573,-73.9634255,"(40.7618573, -73.9634255)",EAST 61 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467008,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,16:20,,,40.706,-73.95698,"(40.706, -73.95698)",KEAP STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518753,Pick-up Truck,,,, +04/07/2022,9:15,,,40.750828,-74.00189,"(40.750828, -74.00189)",WEST 28 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4518626,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,11:40,QUEENS,11101,40.7570322,-73.938118,"(40.7570322, -73.938118)",38 AVENUE,22 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467011,Sedan,,,, +04/11/2022,6:30,BROOKLYN,11205,0,0,"(0.0, 0.0)",WILLOUGHBY AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518184,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,0:00,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4518248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,14:56,QUEENS,11429,40.7136697,-73.7377881,"(40.7136697, -73.7377881)",,,218-14 HEMPSTEAD AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467014,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,22:50,MANHATTAN,10035,40.805588,-73.94028,"(40.805588, -73.94028)",,,51 EAST 125 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518683,Sedan,Tractor Truck Diesel,,, +04/11/2022,12:15,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518451,Sedan,Van,,, +04/11/2022,0:35,BROOKLYN,11230,40.61562,-73.95959,"(40.61562, -73.95959)",AVENUE N,EAST 15 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4517921,Sedan,Sedan,,, +04/09/2022,14:40,,,40.576744,-73.98372,"(40.576744, -73.98372)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518603,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,0:00,,,40.6658653,-73.750036,"(40.6658653, -73.750036)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4467019,Sedan,,,, +04/11/2022,19:00,QUEENS,11354,40.76651,-73.81651,"(40.76651, -73.81651)",35 AVENUE,149 PLACE,,1,0,1,0,0,0,0,0,,,,,,4518166,,,,, +04/11/2022,13:30,,,40.81922,-73.91062,"(40.81922, -73.91062)",SAINT ANNS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,22:00,MANHATTAN,10037,40.808903,-73.93835,"(40.808903, -73.93835)",EAST 130 STREET,MADISON AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4518364,Sedan,,,, +07/29/2021,9:30,,,,,,MC GUINNESS BLVD SOUTH,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441852,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/05/2021,21:00,,,40.6271444,-74.0003134,"(40.6271444, -74.0003134)",63 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467024,Sedan,,,, +04/11/2022,7:00,BRONX,10462,40.832233,-73.85427,"(40.832233, -73.85427)",ELLIS AVENUE,OLMSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518287,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,20:32,,,40.687527,-73.97173,"(40.687527, -73.97173)",LAFAYETTE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518771,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,14:43,,,40.5936827,-73.7753767,"(40.5936827, -73.7753767)",BEACH 44 STREET,ROCKAWAY BEACH BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4467027,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,10:31,,,40.703976,-73.92309,"(40.703976, -73.92309)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4518339,Tractor Truck Diesel,Sedan,,, +04/09/2022,16:19,,,40.68005,-73.94327,"(40.68005, -73.94327)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518684,Sedan,,,, +04/11/2022,14:00,QUEENS,11368,40.7375,-73.85276,"(40.7375, -73.85276)",HORACE HARDING EXPRESSWAY,GRANGER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518201,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,22:10,BRONX,10460,40.834156,-73.88427,"(40.834156, -73.88427)",,,1010 EAST 173 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518613,Sedan,,,, +04/07/2022,8:13,,,40.723698,-74.00792,"(40.723698, -74.00792)",CANAL STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518649,Bus,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,13:30,,,40.8228364,-73.9419157,"(40.8228364, -73.9419157)",8 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467033,Sedan,Bike,,, +04/11/2022,13:15,,,40.7242,-73.93765,"(40.7242, -73.93765)",VANDERVORT AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518244,Sedan,Sedan,,, +10/12/2021,13:07,BRONX,10470,40.8964553,-73.863158,"(40.8964553, -73.863158)",,,4225 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,,,4467035,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/12/2021,11:15,QUEENS,11101,40.7431952,-73.9367235,"(40.7431952, -73.9367235)",30 PLACE,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467036,Sedan,Sedan,,, +03/25/2022,5:50,BRONX,10468,40.859608,-73.90778,"(40.859608, -73.90778)",UNIVERSITY AVENUE,WEST 183 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4518571,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,8:10,QUEENS,11416,40.681484,-73.84788,"(40.681484, -73.84788)",ROCKAWAY BOULEVARD,103 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518029,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/17/2021,12:00,,,40.8077723,-73.9454833,"(40.8077723, -73.9454833)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467039,Sedan,Sedan,,, +04/11/2022,10:30,,,,,,ATLANTIC AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,16:00,MANHATTAN,10027,40.8090355,-73.9554855,"(40.8090355, -73.9554855)",,,81 MORNINGSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467041,Sedan,,,, +10/07/2021,20:00,MANHATTAN,10027,40.8098677,-73.9513113,"(40.8098677, -73.9513113)",,,2320 8 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4467042,Sedan,E-Scooter,,, +04/11/2022,14:03,,,40.763645,-73.97769,"(40.763645, -73.97769)",AVENUE OF THE AMERICAS,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4518130,Sedan,,,, +04/11/2022,22:15,,,40.659405,-73.9505,"(40.659405, -73.9505)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518351,Sedan,Sedan,,, +04/11/2022,14:40,BROOKLYN,11238,40.67639,-73.97189,"(40.67639, -73.97189)",FLATBUSH AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4518197,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/09/2021,15:10,BROOKLYN,11232,40.6687388,-73.9966728,"(40.6687388, -73.9966728)",HAMILTON AVENUE,2 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4467046,Sedan,Sedan,Sedan,Sedan, +04/11/2022,11:30,,,40.702255,-73.92008,"(40.702255, -73.92008)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518345,Taxi,Box Truck,,, +03/04/2022,21:00,QUEENS,11435,40.693035,-73.8096,"(40.693035, -73.8096)",,,138-11 LLOYD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518709,Sedan,,,, +04/11/2022,15:58,,,40.85144,-73.88896,"(40.85144, -73.88896)",HUGHES AVENUE,EAST 182 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518276,PK,,,, +04/11/2022,17:37,,,40.67939,-73.92535,"(40.67939, -73.92535)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518728,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,2:00,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4517817,Tractor Truck Diesel,Sedan,,, +04/09/2022,18:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518639,Sedan,,,, +10/12/2021,20:17,,,40.7554882,-73.8247175,"(40.7554882, -73.8247175)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467054,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,17:12,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518547,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,20:35,QUEENS,11435,40.6933461,-73.802267,"(40.6933461, -73.802267)",107 AVENUE,WALTHAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467056,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:00,,,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518095,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,15:23,BRONX,10467,40.8798659,-73.8759568,"(40.8798659, -73.8759568)",EAST GUN HILL ROAD,KINGS COLLEGE PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467058,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,0:00,BROOKLYN,11201,40.692635,-73.9777,"(40.692635, -73.9777)",,,140 SAINT EDWARDS STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4518101,Pick-up Truck,,,, +04/11/2022,7:53,QUEENS,11694,40.578415,-73.83746,"(40.578415, -73.83746)",,,136 BEACH 117 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518406,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,11:00,,,40.77105,-73.76265,"(40.77105, -73.76265)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518155,Station Wagon/Sport Utility Vehicle,Van,,, +04/11/2022,21:04,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518475,Sedan,Sedan,,, +04/11/2022,12:20,BROOKLYN,11217,40.688076,-73.98037,"(40.688076, -73.98037)",,,11 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4518183,Sedan,Sedan,,, +04/11/2022,15:55,QUEENS,11421,40.692833,-73.862465,"(40.692833, -73.862465)",,,80-11 86 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518588,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:50,BROOKLYN,11220,40.63347,-74.02102,"(40.63347, -74.02102)",5 AVENUE,BAY RIDGE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518054,Pick-up Truck,,,, +10/08/2021,13:50,MANHATTAN,10026,40.8033321,-73.9551798,"(40.8033321, -73.9551798)",,,272 WEST 115 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4467067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/11/2022,9:30,BRONX,10461,40.846386,-73.828285,"(40.846386, -73.828285)",,,3109 ROBERTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518412,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,9:45,,,40.7632532,-73.7580527,"(40.7632532, -73.7580527)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4467069,Sedan,Sedan,,, +10/12/2021,18:30,,,40.6290374,-74.1653746,"(40.6290374, -74.1653746)",GRANDVIEW AVENUE,NETHERLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467070,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,16:37,,,40.6249126,-74.1467004,"(40.6249126, -74.1467004)",FOREST AVENUE,WILLOW ROAD WEST,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467071,Sedan,,,, +04/09/2022,13:10,BRONX,10470,40.90123,-73.86217,"(40.90123, -73.86217)",,,512 EAST 240 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4518576,Sedan,,,, +10/09/2021,17:50,,,40.6056297,-74.140705,"(40.6056297, -74.140705)",WOOLLEY AVENUE,WESTWOOD AVENUE,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,,,,,4467073,Sedan,,,, +04/09/2022,0:10,QUEENS,11694,40.57948,-73.84005,"(40.57948, -73.84005)",,,250 BEACH 119 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518607,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/11/2022,5:40,,,40.749607,-73.89687,"(40.749607, -73.89687)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518070,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/11/2022,10:00,,,40.666187,-73.79176,"(40.666187, -73.79176)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4518151,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,10:00,QUEENS,11367,40.721947,-73.814445,"(40.721947, -73.814445)",77 ROAD,150 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4518172,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/14/2021,13:20,,,40.6663942,-73.8017715,"(40.6663942, -73.8017715)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Following Too Closely,,,,4467078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,7:32,BRONX,10462,40.853363,-73.866745,"(40.853363, -73.866745)",,,2105 CRUGER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518311,Station Wagon/Sport Utility Vehicle,Bus,,, +10/12/2021,21:35,BROOKLYN,11207,40.6592762,-73.8889963,"(40.6592762, -73.8889963)",LINDEN BOULEVARD,VERMONT STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,12:55,,,40.7506611,-73.9877793,"(40.7506611, -73.9877793)",WEST 35 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467081,Sedan,Bike,,, +03/14/2022,9:17,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518638,Sedan,Sedan,,, +04/11/2022,15:05,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518785,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,9:03,,,40.721497,-73.83531,"(40.721497, -73.83531)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518085,Box Truck,Sedan,,, +04/11/2022,15:00,QUEENS,11417,40.680164,-73.84095,"(40.680164, -73.84095)",98 STREET,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518194,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,0:00,BROOKLYN,11207,40.67897,-73.895706,"(40.67897, -73.895706)",JAMAICA AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518018,Sedan,,,, +04/11/2022,10:12,,,40.670296,-73.997604,"(40.670296, -73.997604)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518167,Tractor Truck Diesel,Convertible,,, +10/06/2021,14:55,,,40.7585944,-73.8745114,"(40.7585944, -73.8745114)",32 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4467089,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,19:20,QUEENS,11372,40.7493558,-73.8880269,"(40.7493558, -73.8880269)",78 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4467090,Sedan,,,, +04/11/2022,17:55,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Unspecified,,4518392,Sedan,Multi-Wheeled Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/11/2022,13:05,,,40.754356,-73.83497,"(40.754356, -73.83497)",SANFORD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518160,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,14:00,QUEENS,11385,40.7043845,-73.9018151,"(40.7043845, -73.9018151)",FOREST AVENUE,67 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467094,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,19:00,,,40.814487,-73.95547,"(40.814487, -73.95547)",WEST 128 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518706,Sedan,,,, +04/11/2022,19:40,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4518590,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,21:10,,,40.811565,-73.942726,"(40.811565, -73.942726)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518222,Taxi,Bike,,, +04/11/2022,19:34,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,MAPLE AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4518469,Sedan,E-Bike,,, +04/10/2022,16:55,QUEENS,11369,40.760307,-73.87582,"(40.760307, -73.87582)",93 STREET,31 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518602,Sedan,Sedan,,, +04/09/2022,21:05,,,,,,SHORE PARKWAY,SHELL ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518570,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,5:55,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4518302,Sedan,,,, +10/09/2021,13:00,,,40.6059418,-73.9792777,"(40.6059418, -73.9792777)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,10:05,BROOKLYN,11204,40.6165212,-73.9858588,"(40.6165212, -73.9858588)",65 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467103,Sedan,,,, +04/08/2022,11:35,,,40.675323,-73.86332,"(40.675323, -73.86332)",CONDUIT BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518677,Sedan,Sedan,,, +04/11/2022,5:58,MANHATTAN,10013,40.72298,-74.01161,"(40.72298, -74.01161)",WEST STREET,VESTRY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518209,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,20:17,MANHATTAN,10027,40.8108332,-73.9531547,"(40.8108332, -73.9531547)",,,360 WEST 125 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4467106,Sedan,Bus,,, +04/01/2022,19:50,BROOKLYN,11233,40.682808,-73.928,"(40.682808, -73.928)",,,460 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518695,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,15:20,,,,,,UNION STREET,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518200,PK,Sedan,,, +10/12/2021,15:20,,,40.8100093,-73.958721,"(40.8100093, -73.958721)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4467109,Station Wagon/Sport Utility Vehicle,MOPED,,, +04/11/2022,0:09,BRONX,10456,40.82358,-73.90675,"(40.82358, -73.90675)",EAST 163 STREET,CAULDWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517899,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,8:56,,,40.67973,-73.9374,"(40.67973, -73.9374)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518730,Sedan,Sedan,,, +01/20/2022,7:30,,,40.831387,-73.87793,"(40.831387, -73.87793)",WARD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496938,Sedan,Box Truck,,, +10/13/2021,7:54,,,40.5966278,-74.0023024,"(40.5966278, -74.0023024)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4467114,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/11/2022,8:35,MANHATTAN,10036,40.761974,-73.99376,"(40.761974, -73.99376)",,,648 10 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4518120,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/11/2022,16:40,MANHATTAN,10013,40.717365,-73.99744,"(40.717365, -73.99744)",,,105 MOTT STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,9:45,,,40.73243,-73.83512,"(40.73243, -73.83512)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4518644,Sedan,Box Truck,Box Truck,, +04/11/2022,16:00,BROOKLYN,11218,40.63974,-73.98633,"(40.63974, -73.98633)",,,1315 40 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4518269,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,12:57,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518359,Sedan,Dump,,, +10/14/2021,1:03,,,40.7967462,-73.9292484,"(40.7967462, -73.9292484)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467120,Taxi,,,, +10/14/2021,1:05,,,40.7967462,-73.9292484,"(40.7967462, -73.9292484)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467121,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,8:30,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unsafe Speed,,,,4518651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,17:50,,,40.835445,-73.923386,"(40.835445, -73.923386)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518237,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,16:48,QUEENS,11104,40.74348,-73.921486,"(40.74348, -73.921486)",QUEENS BOULEVARD,43 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518185,Bike,,,, +08/30/2021,1:00,QUEENS,11435,40.7025309,-73.814293,"(40.7025309, -73.814293)",QUEENS BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467125,Sedan,Sedan,,, +10/12/2021,10:06,BROOKLYN,11204,40.6174702,-73.9812876,"(40.6174702, -73.9812876)",61 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467126,Taxi,Sedan,,, +10/07/2021,9:50,BROOKLYN,11223,40.6028547,-73.9844572,"(40.6028547, -73.9844572)",HIGHLAWN AVENUE,WEST 12 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467127,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,10:33,,,40.65431,-74.004425,"(40.65431, -74.004425)",4 AVENUE,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4518717,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,19:30,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518752,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,16:09,,,40.819504,-73.897896,"(40.819504, -73.897896)",,,DAWSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518444,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,11:45,BROOKLYN,11204,40.6223214,-73.990361,"(40.6223214, -73.990361)",,,6119 17 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467131,PK,Bus,,, +10/12/2021,17:00,BROOKLYN,11214,40.6048466,-73.9947464,"(40.6048466, -73.9947464)",,,8310 21 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467133,Sedan,,,, +04/10/2022,0:10,MANHATTAN,10011,40.743393,-73.99799,"(40.743393, -73.99799)",,,248 WEST 21 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518627,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,23:45,BROOKLYN,11204,40.62718,-73.98555,"(40.62718, -73.98555)",,,5314 17 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518286,Station Wagon/Sport Utility Vehicle,,,, +10/01/2021,12:30,BROOKLYN,11204,40.621671,-73.9912574,"(40.621671, -73.9912574)",17 AVENUE,63 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467136,E-Scooter,,,, +10/05/2021,14:33,BROOKLYN,11228,40.6100628,-74.0076032,"(40.6100628, -74.0076032)",,,1584 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467137,Sedan,,,, +04/11/2022,13:30,BROOKLYN,11207,40.679024,-73.899475,"(40.679024, -73.899475)",,,1720 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518347,Sedan,Sedan,,, +04/10/2022,12:54,BRONX,10466,40.895973,-73.85258,"(40.895973, -73.85258)",DIGNEY AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518682,Sedan,,,, +04/11/2022,5:44,BROOKLYN,11207,40.67591,-73.89492,"(40.67591, -73.89492)",ATLANTIC AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518352,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,18:30,MANHATTAN,10002,,,,,,88 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518687,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,0:25,QUEENS,11420,40.68034,-73.80787,"(40.68034, -73.80787)",115 AVENUE,LINCOLN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4517824,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,10:45,,,40.70403,-73.81711,"(40.70403, -73.81711)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,0:00,MANHATTAN,10038,40.709522,-74.00167,"(40.709522, -74.00167)",PEARL STREET,DOVER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518208,Sedan,,,, +04/07/2022,10:50,BRONX,10457,0,0,"(0.0, 0.0)",,,411 EAST 178 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518562,Sedan,,,, +04/11/2022,6:30,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4518103,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,10:45,MANHATTAN,10018,40.75081,-73.98285,"(40.75081, -73.98285)",,,420 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518517,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,17:00,QUEENS,11378,40.718117,-73.90905,"(40.718117, -73.90905)",,,58-46 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518761,Sedan,,,, +04/04/2022,1:00,,,40.830402,-73.837654,"(40.830402, -73.837654)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518645,Sedan,,,, +10/14/2021,12:05,,,40.7282398,-73.8331214,"(40.7282398, -73.8331214)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4467153,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,12:00,BROOKLYN,11203,40.647007,-73.946266,"(40.647007, -73.946266)",NEW YORK AVENUE,TILDEN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4518300,Station Wagon/Sport Utility Vehicle,Bike,,, +04/11/2022,15:55,MANHATTAN,10033,40.846645,-73.93542,"(40.846645, -73.93542)",,,599 WEST 177 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518335,Sedan,Sedan,,, +04/10/2022,11:45,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518617,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,6:29,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518397,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/11/2022,13:13,MANHATTAN,10128,40.786903,-73.95338,"(40.786903, -73.95338)",,,53 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518159,Moped,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,9:02,BROOKLYN,11238,40.68308,-73.96886,"(40.68308, -73.96886)",,,483 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518181,3-Door,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,7:35,,,40.63932,-74.02356,"(40.63932, -74.02356)",3 AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4518055,Sedan,Sedan,,, +04/11/2022,17:46,,,40.833126,-73.828285,"(40.833126, -73.828285)",BRUCKNER EXPRESSWAY,BAISLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518421,Sedan,,,, +10/11/2021,8:35,BROOKLYN,11221,40.694745,-73.9315648,"(40.694745, -73.9315648)",,,1064 BROADWAY,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4467162,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/09/2021,9:20,,,40.5504501,-74.1540791,"(40.5504501, -74.1540791)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467163,Sedan,,,, +04/11/2022,7:05,BRONX,10457,40.844734,-73.89935,"(40.844734, -73.89935)",WASHINGTON AVENUE,EAST 175 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,2:00,QUEENS,11432,0,0,"(0.0, 0.0)",,,150-51 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518161,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/11/2022,12:20,BROOKLYN,11219,40.63223,-73.99504,"(40.63223, -73.99504)",13 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518187,Sedan,Sedan,,, +10/14/2021,18:10,,,40.7542707,-73.7433337,"(40.7542707, -73.7433337)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467167,Sedan,Sedan,,, +10/08/2021,20:05,,,40.6820036,-73.9546214,"(40.6820036, -73.9546214)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467172,Moped,,,, +10/11/2021,17:00,QUEENS,11422,40.6722124,-73.7346248,"(40.6722124, -73.7346248)",BROOKVILLE BOULEVARD,135 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467173,Sedan,Motorcycle,,, +10/09/2021,18:00,,,40.71294,-73.823845,"(40.71294, -73.823845)",HOOVER AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4467171,Sedan,Pick-up Truck,,, +12/30/2021,12:25,BROOKLYN,11211,40.71406,-73.95292,"(40.71406, -73.95292)",METROPOLITAN AVENUE,RODNEY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4490984,Sedan,Sedan,,, +01/15/2022,11:45,BRONX,10451,,,,EAST 138 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4495239,Sedan,Sedan,,, +01/21/2022,18:30,STATEN ISLAND,10301,40.61152,-74.098625,"(40.61152, -74.098625)",CLOVE ROAD,LITTLE CLOVE ROAD,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4496274,Motorcycle,,,, +10/14/2021,20:35,,,40.8380174,-73.8732824,"(40.8380174, -73.8732824)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4467175,Sedan,Sedan,,, +10/14/2021,20:35,,,40.8380174,-73.8732824,"(40.8380174, -73.8732824)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467176,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/09/2022,11:59,MANHATTAN,10018,40.756584,-73.99771,"(40.756584, -73.99771)",,,485 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518629,Sedan,,,, +04/10/2022,17:18,BROOKLYN,11235,,,,,,3079 Brighton 1st Street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518578,Sedan,,,, +04/11/2022,17:30,BROOKLYN,11223,40.58919,-73.98256,"(40.58919, -73.98256)",,,29 AVENUE X,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518593,Sedan,Sedan,,, +04/11/2022,1:37,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518049,Sedan,Sedan,,, +04/11/2022,8:40,,,40.69706,-73.91933,"(40.69706, -73.91933)",BLEECKER STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518344,Sedan,,,, +10/03/2021,11:50,STATEN ISLAND,10306,40.5671203,-74.1130312,"(40.5671203, -74.1130312)",,,2656 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4467182,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,8:00,QUEENS,11420,40.674896,-73.80745,"(40.674896, -73.80745)",131 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518094,Sedan,Pick-up Truck,,, +04/11/2022,8:05,BRONX,10474,40.81319,-73.885185,"(40.81319, -73.885185)",,,647 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518443,Sedan,,,, +04/11/2022,1:45,,,40.66475,-73.89405,"(40.66475, -73.89405)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4517993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,16:00,QUEENS,11419,40.69011,-73.81206,"(40.69011, -73.81206)",134 STREET,105 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4518195,Sedan,,,, +04/10/2022,0:00,MANHATTAN,10027,40.820625,-73.95842,"(40.820625, -73.95842)",12 AVENUE,WEST 134 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Turning Improperly,Unspecified,,,4518575,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,12:52,MANHATTAN,10029,40.786556,-73.946594,"(40.786556, -73.946594)",,,216 EAST 99 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518389,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,12:08,,,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518150,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/11/2022,16:20,BROOKLYN,11206,40.699833,-73.95609,"(40.699833, -73.95609)",,,178 WALLABOUT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518748,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,17:56,BRONX,10465,40.818157,-73.80985,"(40.818157, -73.80985)",,,394 PENNYFIELD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4518701,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/11/2022,12:55,QUEENS,11420,40.680756,-73.82045,"(40.680756, -73.82045)",120 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518254,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,22:05,,,40.7432067,-73.8958842,"(40.7432067, -73.8958842)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4467193,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,20:52,QUEENS,11377,40.7425138,-73.9073308,"(40.7425138, -73.9073308)",58 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4467194,Sedan,Sedan,Sedan,Sedan, +10/12/2021,18:50,BROOKLYN,11238,40.6847487,-73.9644304,"(40.6847487, -73.9644304)",,,101 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467196,Sedan,Sedan,,, +04/11/2022,15:42,BROOKLYN,11226,40.638725,-73.95667,"(40.638725, -73.95667)",,,2206 NEWKIRK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518229,Sedan,Sedan,,, +04/10/2022,10:43,,,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4518636,Sedan,,,, +04/11/2022,8:23,BROOKLYN,11207,40.67315,-73.896194,"(40.67315, -73.896194)",PENNSYLVANIA AVENUE,GLENMORE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Following Too Closely,,,,4518670,Sedan,Dump,,, +04/11/2022,14:56,BRONX,10465,40.8266,-73.82084,"(40.8266, -73.82084)",EDISON AVENUE,RANDALL AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518272,Sedan,E-Scooter,,, +04/11/2022,12:10,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",SOUTH CONDUIT AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,14:32,,,,,,North conduit avenue,Crescent street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442033,Sedan,,,, +02/20/2022,19:20,,,,,,146th St,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504960,Sedan,,,, +01/22/2022,21:15,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4496481,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,21:15,,,40.844975,-73.91877,"(40.844975, -73.91877)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4496779,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/10/2021,21:20,QUEENS,11436,40.6714474,-73.7894191,"(40.6714474, -73.7894191)",SUTTER AVENUE,149 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467207,Sedan,,,, +01/22/2022,19:35,BRONX,10458,40.854755,-73.890396,"(40.854755, -73.890396)",,,4434 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496611,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,20:54,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",85 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,6:05,,,40.6673588,-73.7699356,"(40.6673588, -73.7699356)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4467210,Sedan,Sedan,Sedan,, +01/21/2022,15:21,MANHATTAN,10030,40.817173,-73.94607,"(40.817173, -73.94607)",8 AVENUE,WEST 136 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496984,Sedan,Sedan,,, +01/22/2022,0:35,BROOKLYN,11203,40.660645,-73.94191,"(40.660645, -73.94191)",,,558 MIDWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496304,Sedan,Sedan,,, +10/06/2021,20:30,QUEENS,11432,40.7065539,-73.7944515,"(40.7065539, -73.7944515)",91 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4467213,Pick-up Truck,,,, +01/22/2022,22:30,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496571,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,10:00,BRONX,10468,40.860565,-73.905716,"(40.860565, -73.905716)",AQUEDUCT AVENUE,NORTH STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496885,Sedan,Sedan,,, +01/22/2022,1:25,,,40.851093,-73.93244,"(40.851093, -73.93244)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496667,Sedan,Sedan,,, +10/14/2021,14:07,,,40.665596,-73.8313172,"(40.665596, -73.8313172)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467217,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,4:15,BRONX,10472,40.828133,-73.86286,"(40.828133, -73.86286)",,,1856 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,8:45,BROOKLYN,11237,40.7076309,-73.9291146,"(40.7076309, -73.9291146)",,,119 INGRAHAM STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467219,Dump,Sedan,,, +10/14/2021,13:30,,,40.7026246,-73.9605742,"(40.7026246, -73.9605742)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467220,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,1:40,QUEENS,11378,40.732513,-73.88831,"(40.732513, -73.88831)",74 STREET,52 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4496328,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/14/2021,22:00,,,40.7091914,-73.956819,"(40.7091914, -73.956819)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467222,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,17:35,QUEENS,11432,40.710342,-73.79161,"(40.710342, -73.79161)",170 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496693,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/28/2021,9:20,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,EAST 57 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4497018,Sedan,Bike,,, +10/09/2021,1:00,BRONX,10465,40.8417944,-73.8236354,"(40.8417944, -73.8236354)",,,1379 SIEGFRIED PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467226,Sedan,Motorcycle,,, +01/17/2022,12:50,QUEENS,11372,40.75033,-73.87874,"(40.75033, -73.87874)",88 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496932,Sedan,,,, +01/22/2022,3:52,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496351,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,18:45,BROOKLYN,11205,40.68954,-73.971146,"(40.68954, -73.971146)",DE KALB AVENUE,ADELPHI STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4496454,Sedan,Bike,,, +01/22/2022,0:00,BROOKLYN,11222,40.726242,-73.937805,"(40.726242, -73.937805)",,,310 NASSAU AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Oversized Vehicle,,,,4496807,Sedan,Pick-up Truck,,, +10/07/2021,21:05,BROOKLYN,11220,40.6431097,-74.0160711,"(40.6431097, -74.0160711)",56 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4467231,Taxi,Motorcycle,,, +10/14/2021,16:54,,,40.843913,-73.927279,"(40.843913, -73.927279)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4467234,Sedan,Sedan,Sedan,, +07/26/2021,15:47,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442069,Taxi,,,, +01/22/2022,8:00,,,40.860306,-73.90949,"(40.860306, -73.90949)",LORING PLACE NORTH,WEST 183 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496853,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,0:27,BRONX,10452,40.8431749,-73.9119469,"(40.8431749, -73.9119469)",MOUNT EDEN PARKWAY,GRAND CONCOURSE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4467238,Station Wagon/Sport Utility Vehicle,Moped,,, +01/18/2022,0:48,,,40.646214,-73.876114,"(40.646214, -73.876114)",VAN SICLEN AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4496899,Sedan,,,, +01/18/2022,21:46,,,40.673378,-73.88585,"(40.673378, -73.88585)",WARWICK STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496911,Sedan,E-Bike,,, +01/22/2022,15:15,BRONX,10469,40.860893,-73.84321,"(40.860893, -73.84321)",WARING AVENUE,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496434,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,13:25,QUEENS,11372,40.755264,-73.88817,"(40.755264, -73.88817)",NORTHERN BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496397,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,10:24,,,40.8409687,-73.899174,"(40.8409687, -73.899174)",EAST 173 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4467243,Sedan,Bike,,, +01/22/2022,15:51,,,,,,HORACE HARDING EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496429,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,1:36,,,40.8117585,-73.9314396,"(40.8117585, -73.9314396)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4467246,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,1:02,MANHATTAN,10025,40.79465,-73.97179,"(40.79465, -73.97179)",WEST 96 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496398,Taxi,Sedan,,, +01/22/2022,14:20,BROOKLYN,11212,40.668793,-73.91668,"(40.668793, -73.91668)",,,1542 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497067,Sedan,,,, +01/22/2022,17:30,QUEENS,11429,40.71458,-73.73108,"(40.71458, -73.73108)",222 STREET,100 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496449,Sedan,,,, +01/22/2022,8:10,BRONX,10469,40.86767,-73.85485,"(40.86767, -73.85485)",,,1123 ARNOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496377,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,17:25,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,1:42,,,40.8579322,-73.8725649,"(40.8579322, -73.8725649)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4467253,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,14:00,QUEENS,11379,40.715866,-73.89861,"(40.715866, -73.89861)",ELIOT AVENUE,64 STREET,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4496647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,23:13,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496707,Sedan,Sedan,,, +10/12/2021,15:59,BROOKLYN,11207,40.6545182,-73.8822143,"(40.6545182, -73.8822143)",FLATLANDS AVENUE,VAN SICLEN AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Turning Improperly,,,,4467256,Sedan,Sedan,,, +01/19/2022,9:30,BROOKLYN,11208,40.69031,-73.8679,"(40.69031, -73.8679)",,,34 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496926,Sedan,,,, +10/07/2021,12:45,BROOKLYN,11207,40.6702118,-73.8983398,"(40.6702118, -73.8983398)",ALABAMA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467258,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,7:05,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",LINDEN BOULEVARD,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4496861,Sedan,Sedan,,, +01/19/2022,14:40,BROOKLYN,11207,40.666153,-73.89542,"(40.666153, -73.89542)",DUMONT AVENUE,SHEFFIELD AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4496918,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,8:05,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4496388,Station Wagon/Sport Utility Vehicle,Sedan,Tractor Truck Diesel,, +01/22/2022,2:50,,,,,,EAST 58 STREET,ED KOCH QUEENSBORO BRIDGE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4496440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,18:19,BROOKLYN,11226,40.646885,-73.94916,"(40.646885, -73.94916)",NOSTRAND AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496588,Sedan,,,, +01/22/2022,12:53,,,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496852,Sedan,Sedan,,, +01/21/2022,10:04,,,,,,BRUCKNER EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496973,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,18:50,BROOKLYN,11220,40.639706,-74.01961,"(40.639706, -74.01961)",4 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4496457,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/22/2022,16:02,QUEENS,11105,40.779564,-73.90607,"(40.779564, -73.90607)",,,31-07 20 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4496517,Sedan,Motorcycle,,, +01/16/2022,2:30,BROOKLYN,11206,40.69911,-73.93402,"(40.69911, -73.93402)",MELROSE STREET,STANWIX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497088,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,16:06,QUEENS,11354,40.75866,-73.82969,"(40.75866, -73.82969)",,,40-33 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496413,Sedan,,,, +01/21/2022,15:30,STATEN ISLAND,10312,40.5447,-74.17978,"(40.5447, -74.17978)",,,166 EDGEGROVE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496949,Sedan,Sedan,,, +10/12/2021,18:05,BROOKLYN,11207,40.6795349,-73.9004708,"(40.6795349, -73.9004708)",BUSHWICK AVENUE,HIGHLAND BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467272,Sedan,Pick-up Truck,,, +01/20/2022,23:00,STATEN ISLAND,10304,40.626816,-74.074135,"(40.626816, -74.074135)",FRONT STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496878,Sedan,Sedan,,, +01/18/2022,7:25,,,40.67765,-73.87058,"(40.67765, -73.87058)",CONDUIT BOULEVARD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496905,Sedan,Sedan,,, +10/09/2021,4:21,MANHATTAN,10035,40.8050639,-73.9411654,"(40.8050639, -73.9411654)",MADISON AVENUE,EAST 124 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4467275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,17:00,,,40.56345,-74.169754,"(40.56345, -74.169754)",RICHMOND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496944,UTILITY,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,16:35,BROOKLYN,11212,40.657246,-73.91243,"(40.657246, -73.91243)",LOTT AVENUE,HERZL STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4497052,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,17:54,BROOKLYN,11237,40.7067428,-73.9203146,"(40.7067428, -73.9203146)",SAINT NICHOLAS AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467278,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/22/2022,22:00,MANHATTAN,10012,40.72931,-73.997894,"(40.72931, -73.997894)",WEST 3 STREET,LAGUARDIA PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496632,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,14:02,BROOKLYN,11204,40.617233,-73.99212,"(40.617233, -73.99212)",,,6820 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496990,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,13:00,QUEENS,11435,40.697258,-73.80575,"(40.697258, -73.80575)",SUTPHIN BOULEVARD,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496694,Station Wagon/Sport Utility Vehicle,Ambulance,,, +10/14/2021,15:50,,,40.8650786,-73.8718425,"(40.8650786, -73.8718425)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467282,Sedan,Sedan,,, +01/22/2022,22:53,BROOKLYN,11204,40.62266,-73.98834,"(40.62266, -73.98834)",,,1752 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496563,Sedan,Sedan,,, +01/22/2022,18:30,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",MOTT STREET,KENMARE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496840,Sedan,Sedan,,, +01/22/2022,6:58,,,,,,JOHNSON STREET,METROTECH CENTER,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496463,Sedan,Bus,,, +04/15/2021,13:47,,,40.9011789,-73.9020431,"(40.9011789, -73.9020431)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467286,FLATBED,,,, +01/22/2022,3:00,QUEENS,11423,40.71596,-73.76364,"(40.71596, -73.76364)",,,89-54 197 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496954,Sedan,Sedan,,, +01/22/2022,18:05,BROOKLYN,11233,40.67843,-73.91357,"(40.67843, -73.91357)",FULTON STREET,BOYLAND STREET,,1,0,1,0,0,0,0,0,,,,,,4496757,,,,, +01/22/2022,12:45,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496575,Pick-up Truck,Sedan,,, +01/22/2022,6:00,QUEENS,11420,40.67769,-73.82884,"(40.67769, -73.82884)",ROCKAWAY BOULEVARD,110 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496765,Pick-up Truck,Tow Truck / Wrecker,,, +01/22/2022,15:45,MANHATTAN,10040,40.85618,-73.92872,"(40.85618, -73.92872)",SAINT NICHOLAS AVENUE,WEST 192 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496685,Sedan,Sedan,,, +01/17/2022,14:00,,,40.681618,-73.99853,"(40.681618, -73.99853)",CARROLL STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497002,Sedan,,,, +01/22/2022,3:15,BROOKLYN,11234,40.599163,-73.91084,"(40.599163, -73.91084)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4496308,Sedan,,,, +01/20/2022,17:36,MANHATTAN,10000,40.780968,-73.96121,"(40.780968, -73.96121)",,,3 TRANSVERSE ROAD NUMBER THREE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497100,Sedan,E-Bike,,, +01/22/2022,14:50,,,,,,ALBEMARLE ROAD,WESTMINISTER ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4496508,Sedan,Sedan,,, +10/14/2021,15:00,BRONX,10462,40.843767,-73.8655934,"(40.843767, -73.8655934)",WHITE PLAINS ROAD,VANNEST AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467287,Sedan,,,, +10/08/2021,15:10,,,40.8910726,-73.9082717,"(40.8910726, -73.9082717)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4467297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,10:25,QUEENS,11379,40.71309,-73.87584,"(40.71309, -73.87584)",,,75-43 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,14:40,,,40.84299,-73.82625,"(40.84299, -73.82625)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4497019,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,9:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4496462,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,20:41,MANHATTAN,10040,40.856606,-73.92841,"(40.856606, -73.92841)",SAINT NICHOLAS AVENUE,WADSWORTH AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4496686,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,11:27,,,40.684963,-73.935455,"(40.684963, -73.935455)",JEFFERSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Following Too Closely,Unspecified,,,4496566,Sedan,Sedan,,, +01/22/2022,1:39,,,40.605835,-74.16339,"(40.605835, -74.16339)",,,33 FOREST STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4496931,Sedan,Sedan,Sedan,, +01/22/2022,21:15,STATEN ISLAND,10309,40.54339,-74.21123,"(40.54339, -74.21123)",,,111 MCBAINE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496953,Sedan,Sedan,,, +04/11/2022,9:17,BRONX,10467,40.879337,-73.87494,"(40.879337, -73.87494)",,,282 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518083,Taxi,Sedan,,, +01/21/2022,20:30,,,40.773335,-73.94421,"(40.773335, -73.94421)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Other Vehicular,,,,4497073,Sedan,Sedan,,, +01/22/2022,17:45,,,40.788986,-73.97407,"(40.788986, -73.97407)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496411,Sedan,Sedan,,, +10/15/2021,2:55,,,40.7713823,-73.8771351,"(40.7713823, -73.8771351)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4467309,Sedan,,,, +01/22/2022,19:37,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496430,Sedan,,,, +01/18/2022,14:00,STATEN ISLAND,10301,40.627274,-74.10418,"(40.627274, -74.10418)",CITY BOULEVARD,CROSSHILL STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4496871,Sedan,Sedan,,, +01/22/2022,19:53,BRONX,10459,40.8319,-73.89249,"(40.8319, -73.89249)",,,1344 WILKENS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496487,Sedan,Sedan,,, +10/10/2021,19:15,,,40.7265697,-73.8380179,"(40.7265697, -73.8380179)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467313,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,12:05,,,40.7213656,-73.8480763,"(40.7213656, -73.8480763)",AUSTIN STREET,,,1,0,1,0,0,0,0,0,,,,,,4467314,,,,, +01/22/2022,23:20,BROOKLYN,11208,40.67421,-73.86208,"(40.67421, -73.86208)",SUTTER AVENUE,DREW STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4496921,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,9:39,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",BRONX RIVER PARKWAY,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4496391,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,19:55,QUEENS,11369,40.7691939,-73.8760951,"(40.7691939, -73.8760951)",,,94-00 DITMARS BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467317,Sedan,,,, +01/22/2022,12:23,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4496778,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,11:10,STATEN ISLAND,10301,40.635597,-74.092445,"(40.635597, -74.092445)",BRIGHTON AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496879,Sedan,Sedan,,, +01/22/2022,18:00,BROOKLYN,11228,40.609272,-74.02499,"(40.609272, -74.02499)",,,9362 7 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496419,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,16:00,BROOKLYN,11203,40.649693,-73.936966,"(40.649693, -73.936966)",SNYDER AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496585,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,21:38,BROOKLYN,11232,40.646717,-73.99789,"(40.646717, -73.99789)",40 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496977,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/22/2022,22:05,,,,,,PROSPECT EXPRESSWAY RAMP,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4497050,Sedan,Sedan,,, +01/19/2022,22:26,BROOKLYN,11207,40.663704,-73.88991,"(40.663704, -73.88991)",,,614 BRADFORD STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4496927,Sedan,Sedan,,, +10/08/2021,18:00,MANHATTAN,10128,40.7821994,-73.9511638,"(40.7821994, -73.9511638)",,,1623 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467326,Motorcycle,,,, +01/22/2022,19:45,BRONX,10466,40.891838,-73.86275,"(40.891838, -73.86275)",EAST 229 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496473,Ambulance,,,, +10/12/2021,14:40,QUEENS,11367,40.7403935,-73.8220832,"(40.7403935, -73.8220832)",148 STREET,61 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467329,Sedan,Sedan,,, +10/14/2021,13:59,,,40.8582196,-73.9167798,"(40.8582196, -73.9167798)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467330,Sedan,Sedan,,, +01/22/2022,2:55,BRONX,10458,40.859184,-73.88663,"(40.859184, -73.88663)",,,550 EAST FORDHAM ROAD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4496607,Sedan,,,, +01/22/2022,17:14,BRONX,10472,40.82548,-73.87042,"(40.82548, -73.87042)",,,1010 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496964,Sedan,,,, +01/22/2022,10:47,BRONX,10458,40.87304,-73.885796,"(40.87304, -73.885796)",,,222 EAST 202 STREET,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4496860,Taxi,,,, +10/14/2021,21:35,,,40.8421726,-73.8890142,"(40.8421726, -73.8890142)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4467334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/19/2021,16:20,BROOKLYN,11221,40.6966299,-73.9185632,"(40.6966299, -73.9185632)",WILSON AVENUE,MENAHAN STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4467335,Sedan,Sedan,,, +10/06/2021,13:45,BRONX,10457,40.8462709,-73.8919165,"(40.8462709, -73.8919165)",,,1974 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467336,Sedan,,,, +10/15/2021,5:38,,,40.7344911,-73.9224226,"(40.7344911, -73.9224226)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467337,Sedan,Carry All,,, +01/22/2022,4:27,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,CHAMBERS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496343,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,13:30,BROOKLYN,11207,40.665848,-73.886696,"(40.665848, -73.886696)",SCHENCK AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496917,Sedan,,,, +09/29/2021,23:15,QUEENS,11101,40.740493,-73.9296675,"(40.740493, -73.9296675)",36 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4467340,Sedan,DELIVERY T,,, +01/22/2022,15:50,QUEENS,11413,40.66542,-73.745995,"(40.66542, -73.745995)",SOUTH CONDUIT AVENUE,230 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496450,Sedan,,,, +01/22/2022,9:15,STATEN ISLAND,10301,40.62434,-74.09396,"(40.62434, -74.09396)",THERESA PLACE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496884,Sedan,,,, +01/22/2022,13:27,BROOKLYN,11222,40.732323,-73.95461,"(40.732323, -73.95461)",INDIA STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4496803,Sedan,Sedan,,, +10/06/2021,14:05,BRONX,10458,40.8688059,-73.8905447,"(40.8688059, -73.8905447)",VALENTINE AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467344,Sedan,Sedan,,, +01/22/2022,15:30,BROOKLYN,11233,40.670715,-73.91697,"(40.670715, -73.91697)",STERLING PLACE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4496637,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,13:50,,,40.666885,-73.911964,"(40.666885, -73.911964)",,,BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497060,Bus,Sedan,,, +01/22/2022,17:15,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496705,Sedan,Sedan,,, +01/22/2022,18:30,BRONX,10460,40.840622,-73.866234,"(40.840622, -73.866234)",,,1840 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496965,Sedan,,,, +01/22/2022,14:00,MANHATTAN,10012,40.72216,-73.996185,"(40.72216, -73.996185)",,,214 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496514,Sedan,,,, +01/19/2022,16:44,,,40.67211,-73.88553,"(40.67211, -73.88553)",BELMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496923,Sedan,,,, +10/10/2021,15:00,BRONX,10459,40.8235627,-73.8903271,"(40.8235627, -73.8903271)",,,1010 HOE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467351,Sedan,Sedan,,, +03/21/2022,7:45,STATEN ISLAND,10306,,,,ELISE CT,CORONA AVE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4518783,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,10:40,QUEENS,11101,40.740597,-73.9306,"(40.740597, -73.9306)",35 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496598,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/20/2022,11:00,,,40.78566,-73.855095,"(40.78566, -73.855095)",14 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496894,Sedan,,,, +10/04/2021,7:33,BRONX,10459,40.8161389,-73.8948691,"(40.8161389, -73.8948691)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467355,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,12:00,MANHATTAN,10004,40.7067,-74.01605,"(40.7067, -74.01605)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496375,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/22/2022,10:20,BROOKLYN,11237,40.6993,-73.91361,"(40.6993, -73.91361)",MYRTLE AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4496731,Station Wagon/Sport Utility Vehicle,Bike,,, +01/22/2022,0:15,,,40.604637,-73.97614,"(40.604637, -73.97614)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496433,Sedan,Sedan,,, +01/22/2022,21:00,QUEENS,11420,40.666348,-73.82021,"(40.666348, -73.82021)",,,150-15 121 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496770,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,7:00,,,40.67731,-73.90703,"(40.67731, -73.90703)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4496500,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,20:18,,,40.8471777,-73.9339332,"(40.8471777, -73.9339332)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4467361,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,10:56,BROOKLYN,11237,40.70476,-73.91996,"(40.70476, -73.91996)",WYCKOFF AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496730,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,13:40,BRONX,10462,40.834126,-73.85246,"(40.834126, -73.85246)",,,2167 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496987,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,8:45,,,40.731064,-74.00142,"(40.731064, -74.00142)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496625,Sedan,Sedan,,, +10/01/2021,11:30,MANHATTAN,10032,40.8384262,-73.9416888,"(40.8384262, -73.9416888)",WEST 164 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467365,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,20:35,QUEENS,11360,40.77367,-73.77482,"(40.77367, -73.77482)",BELL BOULEVARD,32 AVENUE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4497005,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/22/2022,0:05,,,40.61562,-73.89724,"(40.61562, -73.89724)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496314,Sedan,Sedan,,, +01/22/2022,0:09,BRONX,10456,40.834515,-73.91771,"(40.834515, -73.91771)",GRAND CONCOURSE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4497101,Sedan,,,, +01/21/2022,14:16,,,40.60086,-74.137726,"(40.60086, -74.137726)",HAROLD STREET,FIELDS AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4496935,Bus,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,11:34,STATEN ISLAND,10310,40.63533,-74.12537,"(40.63533, -74.12537)",BODINE STREET,DEGROOT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496880,Sedan,,,, +01/22/2022,16:25,BROOKLYN,11219,40.63103,-74.00702,"(40.63103, -74.00702)",,,6305 10 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496418,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,3:55,,,40.73243,-73.83512,"(40.73243, -73.83512)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,Unspecified,,,4496420,Sedan,Sedan,,, +01/22/2022,14:30,BRONX,10458,40.859425,-73.8947,"(40.859425, -73.8947)",EAST 187 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496841,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,21:58,,,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497099,Sedan,,,, +01/22/2022,17:33,BROOKLYN,11209,40.62149,-74.02622,"(40.62149, -74.02622)",86 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496439,Sedan,,,, +10/13/2021,1:35,,,40.7904077,-73.8234424,"(40.7904077, -73.8234424)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4467376,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,12:00,STATEN ISLAND,10301,40.641483,-74.08496,"(40.641483, -74.08496)",,,151 JERSEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496872,Sedan,Sedan,,, +01/22/2022,14:44,BRONX,10466,40.896496,-73.85905,"(40.896496, -73.85905)",EAST 236 STREET,CARPENTER AVENUE,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496472,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,10:59,BROOKLYN,11207,40.674118,-73.89839,"(40.674118, -73.89839)",GEORGIA AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4496906,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,4:00,QUEENS,11426,40.72555,-73.72627,"(40.72555, -73.72627)",,,92-36 242 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496385,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,3:46,,,40.87916,-73.87715,"(40.87916, -73.87715)",TRYON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4496842,Sedan,Pick-up Truck,,, +01/16/2022,5:50,BROOKLYN,11208,40.677746,-73.87369,"(40.677746, -73.87369)",,,954 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496902,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,22:30,BROOKLYN,11238,40.6885556,-73.9628347,"(40.6885556, -73.9628347)",GRAND AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467383,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/19/2022,15:40,BROOKLYN,11207,40.675602,-73.89973,"(40.675602, -73.89973)",ATLANTIC AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,14:45,BRONX,10467,40.86778,-73.8615,"(40.86778, -73.8615)",BRONXWOOD AVENUE,ARNOW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4496392,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,12:27,,,40.743244,-73.73154,"(40.743244, -73.73154)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496438,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,16:37,BROOKLYN,11206,40.702477,-73.94065,"(40.702477, -73.94065)",,,24 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496460,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/22/2022,12:55,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",LIBERTY AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4496690,Sedan,Sedan,,, +01/17/2022,3:20,,,,,,RICHMOND AVENUE,DRAPER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496934,Sedan,,,, +01/22/2022,20:00,BROOKLYN,11234,40.623787,-73.90821,"(40.623787, -73.90821)",BERGEN COVE,ROYCE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497072,Sedan,Sedan,,, +01/22/2022,8:52,BROOKLYN,11233,40.672825,-73.911804,"(40.672825, -73.911804)",,,1710 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496406,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,19:36,QUEENS,11355,40.751453,-73.83228,"(40.751453, -73.83228)",COLLEGE POINT BOULEVARD,BLOSSOM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4496490,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,2:36,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4496366,Sedan,,,, +09/23/2021,17:35,QUEENS,11411,40.6919491,-73.7306662,"(40.6919491, -73.7306662)",LINDEN BOULEVARD,231 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4467397,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/22/2022,21:28,,,40.709023,-73.798195,"(40.709023, -73.798195)",164 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4496452,Sedan,Sedan,,, +01/22/2022,4:00,,,40.81148,-73.9264,"(40.81148, -73.9264)",EAST 139 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496819,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,11:30,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496446,Sedan,Sedan,,, +01/22/2022,10:01,MANHATTAN,10027,,,,Adam CLAYTON POWELL BLVD,West 128 Street,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4496986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,15:33,BROOKLYN,11208,40.684982,-73.871445,"(40.684982, -73.871445)",HEMLOCK STREET,ADLER PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496907,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,8:47,BROOKLYN,11233,40.682163,-73.920555,"(40.682163, -73.920555)",,,414 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496568,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,23:15,QUEENS,11416,40.685017,-73.84336,"(40.685017, -73.84336)",101 AVENUE,98 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4496865,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,10:50,BROOKLYN,11208,40.680504,-73.8829,"(40.680504, -73.8829)",ESSEX STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496913,Sedan,,,, +01/22/2022,14:15,QUEENS,11421,40.686832,-73.85792,"(40.686832, -73.85792)",,,91-59 84 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496889,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,7:45,QUEENS,11101,40.7466701,-73.9478358,"(40.7466701, -73.9478358)",45 ROAD,21 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467408,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/22/2022,18:19,BROOKLYN,11226,40.648922,-73.94938,"(40.648922, -73.94938)",NOSTRAND AVENUE,SNYDER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496655,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,15:00,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496952,Sedan,,,, +10/12/2021,10:00,BRONX,10467,40.8734384,-73.879187,"(40.8734384, -73.879187)",,,282 EAST 204 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467411,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,20:56,BRONX,10458,40.8682833,-73.8884749,"(40.8682833, -73.8884749)",,,2800 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4467412,Pick-up Truck,Sedan,Sedan,Sedan,Sedan +10/08/2021,20:42,BRONX,10468,40.8637993,-73.9025197,"(40.8637993, -73.9025197)",WEST 188 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4467413,Station Wagon/Sport Utility Vehicle,GAS MOPED,,, +10/08/2021,19:00,QUEENS,11377,40.75221,-73.90443,"(40.75221, -73.90443)",BROADWAY,57 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467403,Bus,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,12:42,BRONX,10468,40.8682829,-73.9010669,"(40.8682829, -73.9010669)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4467416,Sedan,Sedan,,, +01/22/2022,0:15,,,40.604637,-73.97614,"(40.604637, -73.97614)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496523,Sedan,Sedan,,, +10/10/2021,14:06,,,40.8631541,-73.9090643,"(40.8631541, -73.9090643)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467418,Sedan,Sedan,Sedan,, +01/10/2022,22:38,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",CHURCH AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4496978,Sedan,Sedan,,, +01/22/2022,15:42,BROOKLYN,11214,40.608494,-74.004715,"(40.608494, -74.004715)",,,1702 86 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496513,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,4:30,QUEENS,11374,40.72525,-73.86817,"(40.72525, -73.86817)",,,88-25 63 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4496339,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,19:15,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4497006,Sedan,Box Truck,,, +01/22/2022,15:05,,,40.739082,-73.79345,"(40.739082, -73.79345)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Following Too Closely,,4496431,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/12/2021,16:00,QUEENS,11432,40.7048474,-73.8011112,"(40.7048474, -73.8011112)",PARSONS BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467425,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/11/2021,15:30,QUEENS,11433,40.6976261,-73.7877261,"(40.6976261, -73.7877261)",,,108-14 167 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467426,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,19:50,QUEENS,11433,40.7068328,-73.7833705,"(40.7068328, -73.7833705)",177 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467427,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,17:45,QUEENS,11433,40.7012773,-73.78311,"(40.7012773, -73.78311)",,,106-19 173 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467428,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,18:05,QUEENS,11412,40.69247,-73.75942,"(40.69247, -73.75942)",192 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496608,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/07/2021,18:20,MANHATTAN,10036,40.7601559,-73.998798,"(40.7601559, -73.998798)",WEST 41 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4467430,Sedan,PK,,, +10/10/2021,21:55,MANHATTAN,10018,40.7570653,-74.001054,"(40.7570653, -74.001054)",11 AVENUE,WEST 36 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467431,Bus,,,, +10/11/2021,16:16,MANHATTAN,10036,40.7603968,-73.9968889,"(40.7603968, -73.9968889)",,,529 WEST 42 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,12:00,BRONX,10472,40.829147,-73.8793,"(40.829147, -73.8793)",,,1210 ELDER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496940,Pick-up Truck,,,, +01/22/2022,22:55,BROOKLYN,11232,40.645947,-73.9951,"(40.645947, -73.9951)",9 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496616,Bus,Taxi,,, +01/22/2022,12:50,MANHATTAN,10128,40.78106,-73.94943,"(40.78106, -73.94943)",EAST 91 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496785,Moped,,,, +01/21/2022,17:44,BRONX,10472,40.828293,-73.861725,"(40.828293, -73.861725)",UNDERHILL AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496946,Sedan,Sedan,,, +10/11/2021,20:30,MANHATTAN,10036,40.762025,-74.0011515,"(40.762025, -74.0011515)",12 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467439,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,13:00,MANHATTAN,10011,40.7469444,-74.0028044,"(40.7469444, -74.0028044)",,,436 WEST 23 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467440,Sedan,Sedan,,, +01/22/2022,10:30,BROOKLYN,11226,40.639664,-73.94837,"(40.639664, -73.94837)",,,1881 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4496584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/22/2022,0:15,QUEENS,11411,40.702286,-73.74592,"(40.702286, -73.74592)",MURDOCK AVENUE,209 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4496476,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/16/2022,7:49,,,40.609333,-73.996925,"(40.609333, -73.996925)",19 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496994,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,18:44,MANHATTAN,10018,40.758305,-74.000145,"(40.758305, -74.000145)",11 AVENUE,WEST 38 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4467432,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,2:00,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497045,Sedan,Sedan,,, +10/15/2021,15:57,,,40.6606061,-74.0012666,"(40.6606061, -74.0012666)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467447,Sedan,Tractor Truck Diesel,,, +09/26/2021,10:00,BRONX,10472,40.8270861,-73.8698138,"(40.8270861, -73.8698138)",,,1702 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467448,Sedan,,,, +01/09/2022,20:41,BRONX,10455,40.816746,-73.915306,"(40.816746, -73.915306)",,,600 BERGEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496858,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,21:43,,,40.8237097,-73.8789881,"(40.8237097, -73.8789881)",BRUCKNER BOULEVARD,WHEELER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,14:58,,,40.834606,-73.8639712,"(40.834606, -73.8639712)",CROSS BRONX EXPRESSWAY,LELAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467451,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,2:07,BROOKLYN,11207,40.65591,-73.89191,"(40.65591, -73.89191)",ALABAMA AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496928,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,15:24,BROOKLYN,11212,40.65613,-73.90825,"(40.65613, -73.90825)",HEGEMAN AVENUE,CHESTER STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4496636,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,22:48,BRONX,10472,40.8256666,-73.8754874,"(40.8256666, -73.8754874)",,,1048 MANOR AVENUE,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4467454,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/08/2021,14:00,BRONX,10473,40.8208121,-73.866034,"(40.8208121, -73.866034)",,,1748 LAFAYETTE AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4467455,Station Wagon/Sport Utility Vehicle,Moped,,, +10/08/2021,23:55,,,40.8301207,-73.8502577,"(40.8301207, -73.8502577)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4467456,Sedan,Tractor Truck Diesel,Sedan,, +10/09/2021,2:30,BRONX,10473,40.8255043,-73.843062,"(40.8255043, -73.843062)",,,850 ZEREGA AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4467457,Sedan,Sedan,,, +10/08/2021,23:25,BRONX,10462,40.8377516,-73.863335,"(40.8377516, -73.863335)",,,1478 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467458,Station Wagon/Sport Utility Vehicle,GMC DELIVE,,, +10/09/2021,3:35,,,40.8246725,-73.8707966,"(40.8246725, -73.8707966)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,,,,,,4467459,Sedan,,,, +01/22/2022,20:10,BROOKLYN,11221,40.69174,-73.91401,"(40.69174, -73.91401)",CENTRAL AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496732,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,3:30,BRONX,10472,40.8339652,-73.862892,"(40.8339652, -73.862892)",CROSS BRONX EXPRESSWAY,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467461,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,21:11,BRONX,10473,40.8184993,-73.8680939,"(40.8184993, -73.8680939)",SEWARD AVENUE,CROES AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4467462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,6:35,,,40.8309144,-73.8735923,"(40.8309144, -73.8735923)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4467463,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/21/2022,21:53,,,40.836403,-73.875595,"(40.836403, -73.875595)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4496961,Sedan,,,, +10/12/2021,10:56,,,40.8252014,-73.8677049,"(40.8252014, -73.8677049)",BRUCKNER BOULEVARD,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467465,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,7:00,,,40.8338223,-73.862742,"(40.8338223, -73.862742)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467466,Sedan,Tractor Truck Diesel,,, +10/12/2021,12:53,,,40.8241662,-73.8746132,"(40.8241662, -73.8746132)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467467,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,13:00,BRONX,10459,40.8312003,-73.884767,"(40.8312003, -73.884767)",,,1440 SHERIDAN EXPRESSWAY,0,0,0,0,0,0,0,0,,,,,,4467468,,,,, +10/12/2021,11:00,,,40.8341221,-73.8632654,"(40.8341221, -73.8632654)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467469,Tractor Truck Diesel,,,, +01/22/2022,2:40,MANHATTAN,10002,40.719868,-73.986626,"(40.719868, -73.986626)",,,131 NORFOLK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496774,Sedan,Sedan,,, +01/17/2022,12:09,,,40.849247,-73.82739,"(40.849247, -73.82739)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,0:52,BROOKLYN,11236,40.634377,-73.899445,"(40.634377, -73.899445)",,,1507 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4496317,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +07/28/2021,13:01,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4442327,Sedan,Sedan,,, +10/13/2021,13:25,,,40.8250769,-73.8667418,"(40.8250769, -73.8667418)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4467473,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,0:00,,,40.8301207,-73.8502577,"(40.8301207, -73.8502577)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4467474,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,19:15,BROOKLYN,11214,40.60461,-73.99826,"(40.60461, -73.99826)",86 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497107,Sedan,,,, +01/17/2022,16:52,BRONX,10473,40.82577,-73.85277,"(40.82577, -73.85277)",QUIMBY AVENUE,OLMSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,11:11,,,,,,ASTORIA BOULEVARD,33 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4496519,Sedan,,,, +10/13/2021,23:36,,,40.823145,-73.8822388,"(40.823145, -73.8822388)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467478,Sedan,Dump,,, +01/22/2022,18:00,,,40.74872,-73.87371,"(40.74872, -73.87371)",93 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496881,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +01/22/2022,11:54,,,40.614937,-74.034546,"(40.614937, -74.034546)",3 AVENUE,MARINE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496426,Bus,,,, +10/08/2021,10:00,,,40.8320378,-73.855676,"(40.8320378, -73.855676)",ELLIS AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4467481,Bike,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,7:37,BRONX,10462,40.8375888,-73.8594617,"(40.8375888, -73.8594617)",,,40 METROPOLITAN OVAL,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4467482,Station Wagon/Sport Utility Vehicle,Bike,,, +01/20/2022,18:06,STATEN ISLAND,10301,40.637,-74.07654,"(40.637, -74.07654)",,,206 BAY STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4496875,Sedan,Sedan,,, +09/26/2021,21:45,BRONX,10462,40.8360499,-73.8551252,"(40.8360499, -73.8551252)",OLMSTEAD AVENUE,STARLING AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4467484,Sedan,,,, +01/21/2022,9:38,,,40.588028,-73.94926,"(40.588028, -73.94926)",OCEAN AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497055,E-Scooter,Sedan,,, +01/21/2022,0:00,BRONX,10472,40.82624,-73.87706,"(40.82624, -73.87706)",,,1551 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496942,Sedan,,,, +01/22/2022,17:15,QUEENS,11378,40.72428,-73.898445,"(40.72428, -73.898445)",GRAND AVENUE,HAMILTON PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496652,Sedan,Sedan,,, +10/08/2021,17:30,BRONX,10473,40.8220118,-73.858263,"(40.8220118, -73.858263)",LAFAYETTE AVENUE,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467488,Sedan,,,, +01/22/2022,20:50,BRONX,10469,40.86544,-73.85579,"(40.86544, -73.85579)",ALLERTON AVENUE,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4496703,Sedan,,,, +01/19/2022,19:10,BROOKLYN,11208,40.66384,-73.8784,"(40.66384, -73.8784)",LINDEN BOULEVARD,LINWOOD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496924,Pick-up Truck,,,, +01/22/2022,8:30,,,40.80515,-73.91105,"(40.80515, -73.91105)",EAST 139 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496820,Sedan,,,, +01/22/2022,15:00,,,40.788956,-73.823555,"(40.788956, -73.823555)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496445,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,12:15,BRONX,10466,40.881264,-73.83875,"(40.881264, -73.83875)",BOSTON ROAD,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496471,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,2:06,MANHATTAN,10014,40.7419392,-74.0078992,"(40.7419392, -74.0078992)",,,460 WEST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467495,Convertible,,,, +10/15/2021,8:41,,,40.6304365,-73.8859293,"(40.6304365, -73.8859293)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467496,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,15:40,,,40.6056787,-74.0309407,"(40.6056787, -74.0309407)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,19:00,QUEENS,11411,40.6997872,-73.737481,"(40.6997872, -73.737481)",,,115-11 220 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467498,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,0:00,QUEENS,11413,40.658913,-73.75661,"(40.658913, -73.75661)",225 STREET,147 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496386,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,5:50,BRONX,10468,40.86593,-73.902885,"(40.86593, -73.902885)",,,2515 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4496843,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/22/2022,15:55,BROOKLYN,11203,40.64949,-73.93014,"(40.64949, -73.93014)",,,957 UTICA AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496596,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,22:00,BROOKLYN,11225,40.6642368,-73.9428691,"(40.6642368, -73.9428691)",,,577 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467503,Sedan,,,, +01/21/2022,18:00,QUEENS,11368,40.746387,-73.85991,"(40.746387, -73.85991)",104 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497094,Sedan,,,, +10/14/2021,20:00,,,40.7223536,-73.7771631,"(40.7223536, -73.7771631)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467505,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,19:35,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4496447,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,22:10,BROOKLYN,11208,40.674232,-73.86177,"(40.674232, -73.86177)",SUTTER AVENUE,CONDUIT BOULEVARD,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4496479,Sedan,Sedan,Sedan,, +10/14/2021,0:00,,,40.7263507,-73.7650741,"(40.7263507, -73.7650741)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,2:06,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496929,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/11/2021,4:45,MANHATTAN,10027,40.8089731,-73.9483252,"(40.8089731, -73.9483252)",WEST 125 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467510,Taxi,Sedan,Convertible,, +10/15/2021,21:05,,,40.7158422,-73.8137451,"(40.7158422, -73.8137451)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4467511,Sedan,Sedan,,, +01/13/2022,11:45,BROOKLYN,11207,40.678825,-73.89284,"(40.678825, -73.89284)",,,104 MILLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496903,Sedan,Carry All,,, +10/12/2021,10:00,QUEENS,11367,40.7263549,-73.8219073,"(40.7263549, -73.8219073)",,,72-08 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467513,Sedan,,,, +01/18/2022,17:15,BROOKLYN,11207,40.672607,-73.89992,"(40.672607, -73.89992)",GLENMORE AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496908,Sedan,,,, +01/22/2022,3:50,QUEENS,11412,40.696667,-73.750175,"(40.696667, -73.750175)",203 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496379,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,12:06,BROOKLYN,11210,40.636265,-73.94802,"(40.636265, -73.94802)",NOSTRAND AVENUE,FARRAGUT ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4496726,Sedan,Sedan,,, +01/22/2022,2:52,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",EAST HOUSTON STREET,ESSEX STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496416,Sedan,Taxi,,, +01/22/2022,22:00,BRONX,10467,40.88397,-73.88027,"(40.88397, -73.88027)",,,3550 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496855,Taxi,,,, +01/22/2022,8:00,QUEENS,11385,40.704998,-73.90785,"(40.704998, -73.90785)",,,1865 LINDEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496359,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,19:59,,,40.7482348,-73.7597819,"(40.7482348, -73.7597819)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467520,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,15:30,QUEENS,11354,40.76407,-73.80914,"(40.76407, -73.80914)",NORTHERN BOULEVARD,156 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4496492,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,20:00,,,40.8379052,-73.8813742,"(40.8379052, -73.8813742)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467522,Tractor Truck Diesel,Taxi,,, +01/22/2022,12:00,BROOKLYN,11209,40.62132,-74.0349,"(40.62132, -74.0349)",90 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,1:11,BROOKLYN,11226,40.644615,-73.962166,"(40.644615, -73.962166)",BEVERLEY ROAD,EAST 18 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496815,Sedan,Sedan,,, +01/22/2022,21:46,BROOKLYN,11209,40.617367,-74.028275,"(40.617367, -74.028275)",,,530 92 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496436,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,20:01,BROOKLYN,11232,40.658314,-74.00353,"(40.658314, -74.00353)",3 AVENUE,31 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497032,Sedan,Sedan,,, +01/22/2022,17:21,QUEENS,11418,40.695965,-73.83786,"(40.695965, -73.83786)",,,87-18 110 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496979,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,17:50,QUEENS,11434,40.6707,-73.77366,"(40.6707, -73.77366)",140 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496609,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,13:20,,,40.686825,-73.93881,"(40.686825, -73.93881)",MONROE STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496569,Sedan,Sedan,,, +01/14/2022,14:00,,,40.63868,-74.16323,"(40.63868, -74.16323)",,,3131 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496933,Sedan,,,, +01/22/2022,4:00,BRONX,10473,40.826233,-73.85286,"(40.826233, -73.85286)",,,950 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496951,Sedan,,,, +01/22/2022,4:20,BROOKLYN,11216,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496621,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +01/22/2022,15:15,,,40.753395,-73.79243,"(40.753395, -73.79243)",UTOPIA PARKWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496432,Sedan,,,, +01/22/2022,13:17,BROOKLYN,11210,40.63129,-73.94606,"(40.63129, -73.94606)",,,1610 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496401,Sedan,Tractor Truck Diesel,,, +01/20/2022,18:59,BROOKLYN,11233,40.68214,-73.91433,"(40.68214, -73.91433)",CHAUNCEY STREET,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497070,Sedan,,,, +01/08/2022,21:50,,,40.804012,-73.93097,"(40.804012, -73.93097)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,7:27,,,40.67765,-73.87058,"(40.67765, -73.87058)",CONDUIT BOULEVARD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496912,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,9:20,BROOKLYN,11201,40.687993,-73.9896117,"(40.687993, -73.9896117)",SMITH STREET,PACIFIC STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467541,Sedan,E-Scooter,,, +01/22/2022,13:51,BROOKLYN,11225,40.65994,-73.95347,"(40.65994, -73.95347)",ROGERS AVENUE,MIDWOOD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4496453,Taxi,,,, +01/22/2022,20:00,,,40.83863,-73.93348,"(40.83863, -73.93348)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496657,Sedan,,,, +01/22/2022,16:04,,,40.68305,-73.85029,"(40.68305, -73.85029)",90 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4496886,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan, +01/22/2022,10:09,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496784,Taxi,Sedan,,, +01/22/2022,2:32,,,40.663284,-73.96096,"(40.663284, -73.96096)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4496396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,3:54,,,40.830727,-73.83756,"(40.830727, -73.83756)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4496342,Sedan,,,, +01/22/2022,3:20,,,40.782856,-73.910736,"(40.782856, -73.910736)",24 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496512,Sedan,Sedan,,, +01/22/2022,18:50,QUEENS,11423,40.714855,-73.76289,"(40.714855, -73.76289)",,,90-29 197 STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,,,4496692,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,4:05,BROOKLYN,11237,40.70467,-73.93142,"(40.70467, -73.93142)",,,26 MORGAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4496459,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/22/2022,0:50,,,40.816025,-73.93947,"(40.816025, -73.93947)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496985,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,8:10,,,40.744194,-73.97133,"(40.744194, -73.97133)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497007,Sedan,Sedan,,, +10/15/2021,4:45,,,40.8751317,-73.9051695,"(40.8751317, -73.9051695)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4467553,Taxi,Sedan,,, +01/21/2022,12:02,,,40.711338,-73.85646,"(40.711338, -73.85646)",SELFRIDGE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496939,FIRE TRUCK,Sedan,,, +09/27/2021,12:00,,,40.693211,-73.912556,"(40.693211, -73.912556)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467555,Sedan,Bus,,, +01/22/2022,18:48,BRONX,10451,40.826515,-73.917946,"(40.826515, -73.917946)",EAST 162 STREET,MORRIS AVENUE,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4496532,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,13:50,,,,,,KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496947,Carry All,,,, +01/22/2022,4:10,BROOKLYN,11215,40.668526,-73.973595,"(40.668526, -73.973595)",,,64 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496851,Sedan,Sedan,,, +01/22/2022,11:56,BROOKLYN,11236,40.639477,-73.89322,"(40.639477, -73.89322)",,,1207 EAST 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496427,Sedan,,,, +01/20/2022,10:02,STATEN ISLAND,10314,40.620354,-74.13078,"(40.620354, -74.13078)",,,25 OHIO PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496883,Station Wagon/Sport Utility Vehicle,,,, +01/13/2022,15:39,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497090,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,19:00,,,40.8934353,-73.8834598,"(40.8934353, -73.8834598)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467563,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,14:45,MANHATTAN,10169,40.754677,-73.975815,"(40.754677, -73.975815)",EAST 46 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4496824,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,17:30,QUEENS,11360,40.7831,-73.77972,"(40.7831, -73.77972)",212 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496414,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,20:00,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496448,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,16:50,BROOKLYN,11239,40.652462,-73.87658,"(40.652462, -73.87658)",,,590 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496919,Sedan,Sedan,,, +01/18/2022,19:30,,,40.68341,-73.87304,"(40.68341, -73.87304)",FULTON STREET,PINE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496909,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,7:44,BROOKLYN,11230,40.62325,-73.96292,"(40.62325, -73.96292)",,,1081 EAST 13 STREET,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4496387,Sedan,,,, +01/21/2022,13:28,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4496943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +01/22/2022,4:30,BROOKLYN,11223,40.606144,-73.97737,"(40.606144, -73.97737)",QUENTIN ROAD,WEST 4 STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,Unspecified,4496635,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/14/2022,17:15,BROOKLYN,11223,40.598488,-73.980354,"(40.598488, -73.980354)",,,131 AVENUE T,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4496991,Bike,,,, +01/18/2022,14:40,BRONX,10462,40.833218,-73.8469,"(40.833218, -73.8469)",,,2336 ELLIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496999,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,2:48,,,40.718678,-73.9405,"(40.718678, -73.9405)",KINGSLAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496325,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,23:13,MANHATTAN,10029,40.7874418,-73.9447705,"(40.7874418, -73.9447705)",EAST 101 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4467576,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,17:23,QUEENS,11436,40.682358,-73.79376,"(40.682358, -73.79376)",116 AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496722,Sedan,Sedan,,, +01/22/2022,14:41,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4496775,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/22/2022,16:30,,,40.753284,-73.92049,"(40.753284, -73.92049)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496518,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,1:05,,,40.8751317,-73.9051695,"(40.8751317, -73.9051695)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467580,Taxi,Tractor Truck Diesel,,, +10/10/2021,1:00,QUEENS,11365,40.7407471,-73.7844108,"(40.7407471, -73.7844108)",,,61-09 190 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4467581,Sedan,Sedan,,, +01/19/2022,20:30,BROOKLYN,11208,40.668327,-73.869606,"(40.668327, -73.869606)",,,2555 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496925,Bus,Sedan,,, +01/22/2022,9:00,BROOKLYN,11203,40.651554,-73.928406,"(40.651554, -73.928406)",,,371 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496595,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,8:12,MANHATTAN,10001,40.749332,-73.984665,"(40.749332, -73.984665)",,,6 WEST 35 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496742,Box Truck,Van,,, +01/22/2022,22:20,QUEENS,11429,40.714027,-73.735725,"(40.714027, -73.735725)",SPRINGFIELD BOULEVARD,102 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496441,Sedan,Sedan,,, +09/12/2021,4:00,,,40.7328979,-73.920577,"(40.7328979, -73.920577)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4467587,Motorcycle,,,, +10/12/2021,8:18,BRONX,10468,40.8682829,-73.9010669,"(40.8682829, -73.9010669)",UNIVERSITY AVENUE,WEST KINGSBRIDGE ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467588,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,9:25,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",39 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496378,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,19:50,QUEENS,11372,40.74906,-73.89082,"(40.74906, -73.89082)",75 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496877,Sedan,E-Scooter,,, +01/21/2022,14:30,MANHATTAN,10035,40.799576,-73.935905,"(40.799576, -73.935905)",EAST 120 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496930,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/29/2021,20:15,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4442463,Sedan,Sedan,,, +01/22/2022,19:30,,,40.6785,-73.821365,"(40.6785, -73.821365)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496480,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,6:24,BRONX,10466,40.89725,-73.855255,"(40.89725, -73.855255)",EAST 237 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4496466,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/18/2022,11:07,,,40.675667,-73.86436,"(40.675667, -73.86436)",CONDUIT BOULEVARD,ELDERTS LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496904,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,17:25,QUEENS,11368,,,,Seaver Way,Northern Boulevard,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496579,Sedan,Sedan,,, +10/16/2021,8:00,,,40.7392014,-73.9012744,"(40.7392014, -73.9012744)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467599,Sedan,Sedan,,, +01/22/2022,16:27,QUEENS,11379,40.722233,-73.8858,"(40.722233, -73.8858)",,,60-11 74 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496651,Sedan,Sedan,,, +10/15/2021,22:30,,,40.7869511,-73.7755783,"(40.7869511, -73.7755783)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,21:45,,,40.7869511,-73.7755783,"(40.7869511, -73.7755783)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,,,,,4467602,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,14:08,BROOKLYN,11233,40.6715,-73.91505,"(40.6715, -73.91505)",EASTERN PARKWAY,PARK PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497054,Sedan,,,, +01/18/2022,12:27,BROOKLYN,11208,40.67389,-73.864365,"(40.67389, -73.864365)",,,1447 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496969,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,23:00,QUEENS,11433,40.697666,-73.792046,"(40.697666, -73.792046)",,,107-23 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496700,Sedan,,,, +01/22/2022,10:50,,,40.58576,-73.974464,"(40.58576, -73.974464)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,17:30,BRONX,10462,40.835796,-73.861084,"(40.835796, -73.861084)",,,1409 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4496948,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,0:00,BRONX,10472,40.828587,-73.85026,"(40.828587, -73.85026)",,,1038 CASTLE HILL AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4496960,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/22/2022,15:00,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",COOPER AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496981,Sedan,Sedan,,, +01/22/2022,18:45,BRONX,10458,40.855495,-73.88891,"(40.855495, -73.88891)",,,2380 HOFFMAN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4496610,Sedan,,,, +04/11/2022,17:20,QUEENS,11427,40.729034,-73.74387,"(40.729034, -73.74387)",SPRINGFIELD BOULEVARD,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518456,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,13:05,QUEENS,11102,40.775375,-73.92797,"(40.775375, -73.92797)",,,25-40 14 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4518601,Sedan,Sedan,Sedan,, +10/12/2021,12:35,BROOKLYN,11234,40.6193087,-73.9198942,"(40.6193087, -73.9198942)",,,5720 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4467613,Sedan,,,, +04/11/2022,10:34,QUEENS,11367,40.71995,-73.81342,"(40.71995, -73.81342)",150 STREET,79 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518168,Sedan,,,, +04/11/2022,15:40,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518304,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,18:20,,,40.58117,-73.95989,"(40.58117, -73.95989)",CONEY ISLAND AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518569,Bike,Sedan,,, +04/11/2022,12:47,BROOKLYN,11221,0,0,"(0.0, 0.0)",DE KALB AVENUE,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4518358,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:50,,,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518073,Sedan,Sedan,,, +04/11/2022,0:24,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4517907,Van,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,12:45,BROOKLYN,11215,40.672768,-73.98672,"(40.672768, -73.98672)",4 AVENUE,5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518199,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,11:40,BRONX,10467,40.863876,-73.869354,"(40.863876, -73.869354)",,,2540 BARKER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518312,Sedan,,,, +10/15/2021,19:47,,,40.5924309,-73.9950722,"(40.5924309, -73.9950722)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467622,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,19:20,QUEENS,11432,40.714054,-73.79474,"(40.714054, -73.79474)",GOTHIC DRIVE,169 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518171,Sedan,,,, +04/08/2022,21:00,BROOKLYN,11220,40.64715,-74.0137,"(40.64715, -74.0137)",,,329 50 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518705,Sedan,Sedan,,, +04/05/2022,10:00,BRONX,10455,40.807228,-73.90262,"(40.807228, -73.90262)",,,955 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518733,Sedan,,,, +04/07/2022,20:55,BROOKLYN,11215,40.67255,-73.9863,"(40.67255, -73.9863)",,,270 5 STREET,2,0,1,0,1,0,0,0,Unsafe Speed,,,,,4518642,Pedicab,,,, +04/11/2022,13:00,BROOKLYN,11203,0,0,"(0.0, 0.0)",,,471 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Eating or Drinking,Unspecified,,,,4518212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,12:30,,,40.71282,-73.90378,"(40.71282, -73.90378)",METROPOLITAN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518656,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,10:02,,,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518435,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,2:15,BRONX,10457,40.848606,-73.8898,"(40.848606, -73.8898)",EAST 180 STREET,BELMONT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518105,Sedan,Sedan,,, +04/11/2022,12:25,,,40.843884,-73.89613,"(40.843884, -73.89613)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518563,Sedan,Sedan,,, +04/11/2022,8:45,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518399,Box Truck,Sedan,,, +04/11/2022,10:20,QUEENS,11417,40.680668,-73.836334,"(40.680668, -73.836334)",104 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518090,Sedan,,,, +04/11/2022,14:40,,,0,0,"(0.0, 0.0)",ROBINSON STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518162,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,1:00,QUEENS,11361,40.764046,-73.776024,"(40.764046, -73.776024)",,,209-33 39 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4518606,Sedan,Sedan,Sedan,, +04/12/2021,14:30,BRONX,10460,40.83921,-73.88055,"(40.83921, -73.88055)",,,1939 WEST FARMS ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4518595,Sedan,,,, +04/11/2022,9:30,QUEENS,11354,40.76465,-73.823494,"(40.76465, -73.823494)",NORTHERN BOULEVARD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4518061,Taxi,Flat Bed,,, +04/07/2022,14:18,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4518647,Pick-up Truck,Sedan,,, +10/14/2021,22:49,,,40.7045039,-73.8174195,"(40.7045039, -73.8174195)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4467640,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,7:00,,,40.844715,-73.91228,"(40.844715, -73.91228)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4518278,Sedan,Sedan,Sedan,Sedan, +04/10/2022,14:00,,,40.648724,-73.97284,"(40.648724, -73.97284)",KERMIT PLACE,EAST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518714,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,2:30,,,40.7083351,-73.8431299,"(40.7083351, -73.8431299)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,Unspecified,,,4467643,Sedan,,,, +03/02/2022,3:30,BRONX,10455,40.817684,-73.89853,"(40.817684, -73.89853)",LONGWOOD AVENUE,KELLY STREET,,1,0,1,0,0,0,0,0,,,,,,4518724,Sedan,,,, +04/11/2022,4:51,BROOKLYN,11206,40.69982,-73.9498,"(40.69982, -73.9498)",FLUSHING AVENUE,GERRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4517828,Sedan,Sedan,,, +04/11/2022,23:30,,,40.69687,-73.923035,"(40.69687, -73.923035)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518342,Taxi,Sedan,,, +04/11/2022,13:48,,,0,0,"(0.0, 0.0)",ATLANTIC AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4518354,Sedan,Sedan,Pick-up Truck,Sedan, +04/11/2022,17:00,BROOKLYN,11223,40.6005,-73.962265,"(40.6005, -73.962265)",,,925 AVENUE T,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518205,Sedan,,,, +04/10/2022,7:00,BROOKLYN,11211,40.716877,-73.9465,"(40.716877, -73.9465)",,,367 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4518618,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,16:54,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",EAST 180 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518241,Sedan,Bike,,, +04/11/2022,17:04,BROOKLYN,11225,0,0,"(0.0, 0.0)",,,1715 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518348,Sedan,,,, +10/15/2021,20:00,,,40.8450874,-73.9111073,"(40.8450874, -73.9111073)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,12:54,,,40.791046,-73.95138,"(40.791046, -73.95138)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518158,Sedan,Bike,,, +10/14/2021,14:30,,,40.8380174,-73.8732824,"(40.8380174, -73.8732824)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467655,Sedan,Sedan,,, +04/11/2022,3:30,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518046,Sedan,,,, +04/11/2022,8:00,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",7 AVENUE,WEST 34 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518521,Bike,,,, +04/11/2022,23:50,,,40.762024,-74.00116,"(40.762024, -74.00116)",12 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518631,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,14:00,BROOKLYN,11204,40.615833,-73.97573,"(40.615833, -73.97573)",,,5905 23 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518188,Sedan,,,, +04/11/2022,20:39,BROOKLYN,11209,40.634422,-74.03082,"(40.634422, -74.03082)",,,170 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518180,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,13:09,BROOKLYN,11224,40.57858,-73.9884,"(40.57858, -73.9884)",WEST 21 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518580,Sedan,Sedan,Sedan,, +04/11/2022,21:15,BROOKLYN,11210,40.621162,-73.95354,"(40.621162, -73.95354)",AVENUE L,EAST 22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518236,Sedan,Sedan,,, +04/11/2022,13:50,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",EAST 174 STREET,BRONX RIVER AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518295,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,15:35,BROOKLYN,11204,40.616913,-73.98187,"(40.616913, -73.98187)",21 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518757,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,20:20,,,40.67417,-73.95671,"(40.67417, -73.95671)",PARK PLACE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518689,Station Wagon/Sport Utility Vehicle,Bike,,, +04/11/2022,13:10,QUEENS,11106,40.768715,-73.93322,"(40.768715, -73.93322)",,,12-26 31 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518328,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,16:39,,,,,,165 street,Baisley Blvd,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4518213,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/28/2022,8:00,QUEENS,11361,40.762516,-73.76522,"(40.762516, -73.76522)",,,42-05 217 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518659,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,13:00,BROOKLYN,11207,40.661762,-73.89618,"(40.661762, -73.89618)",,,583 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,13:10,,,40.6775,-73.94701,"(40.6775, -73.94701)",PACIFIC STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4518702,Bike,,,, +04/11/2022,8:45,,,40.68444,-73.83192,"(40.68444, -73.83192)",110 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518255,Sedan,,,, +07/07/2022,13:00,,,,,,SHEA RD,BOAT BASIN PL,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544442,Sedan,,,, +01/23/2022,19:30,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Reaction to Uninvolved Vehicle,,,,4496704,Sedan,,,, +10/12/2021,16:15,BROOKLYN,11226,40.6405903,-73.9542821,"(40.6405903, -73.9542821)",BEDFORD AVENUE,AVENUE D,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467684,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/16/2021,13:35,,,40.7259836,-73.7574917,"(40.7259836, -73.7574917)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467686,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,6:30,BRONX,10461,40.8532225,-73.8273925,"(40.8532225, -73.8273925)",,,3289 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467700,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,23:30,,,40.8258032,-73.8612337,"(40.8258032, -73.8612337)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467704,Dump,Sedan,,, +10/08/2021,12:30,BRONX,10451,40.8169326,-73.925822,"(40.8169326, -73.925822)",,,2824 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467715,Sedan,,,, +10/13/2021,8:07,,,40.8060576,-73.9226859,"(40.8060576, -73.9226859)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467724,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/12/2022,8:04,,,,,,Bruckner Blvs,East tremont avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518416,Pick-up Truck,,,, +10/15/2021,18:00,,,40.7375092,-73.9338507,"(40.7375092, -73.9338507)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467748,Sedan,,,, +10/15/2021,23:00,,,40.66741,-73.7736302,"(40.66741, -73.7736302)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467749,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,23:30,,,40.753091,-73.7245805,"(40.753091, -73.7245805)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467751,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,13:20,,,40.588728,-73.9923325,"(40.588728, -73.9923325)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467764,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,19:25,,,40.5829845,-73.9804203,"(40.5829845, -73.9804203)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467776,Sedan,Sedan,,, +07/31/2021,23:15,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442726,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,14:05,,,40.6030888,-73.9926175,"(40.6030888, -73.9926175)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467777,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,7:27,,,40.6664404,-73.9536083,"(40.6664404, -73.9536083)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467779,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,15:25,,,40.7348905,-73.9748297,"(40.7348905, -73.9748297)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467785,Sedan,Sedan,,, +10/15/2021,21:50,,,40.5840201,-73.9858671,"(40.5840201, -73.9858671)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467788,Sedan,Sedan,,, +10/11/2021,14:50,BROOKLYN,11233,40.67398,-73.91115,"(40.67398, -73.91115)",ROCKAWAY AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,Other Vehicular,Unspecified,,4467798,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/10/2021,3:00,BROOKLYN,11212,40.6706587,-73.9042007,"(40.6706587, -73.9042007)",POWELL STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467804,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,16:13,,,,,,19401C 64th Circle,64 CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544533,Sedan,Sedan,,, +10/11/2021,9:40,,,40.6840001,-73.9503006,"(40.6840001, -73.9503006)",PUTNAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467835,Bike,,,, +10/15/2021,20:00,,,40.7662794,-73.8903392,"(40.7662794, -73.8903392)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467837,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,15:50,,,40.75778,-73.8541563,"(40.75778, -73.8541563)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4467841,Motorcycle,,,, +10/11/2021,20:55,QUEENS,11372,40.7493558,-73.8880269,"(40.7493558, -73.8880269)",78 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467842,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,19:40,BROOKLYN,11206,40.6975836,-73.9496485,"(40.6975836, -73.9496485)",MARCY AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4467847,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,8:15,,,40.6952888,-73.9433863,"(40.6952888, -73.9433863)",VERNON AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467853,Sedan,Bike,,, +10/10/2021,5:20,,,40.6957047,-73.9463647,"(40.6957047, -73.9463647)",TOMPKINS AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4467855,Bike,,,, +10/09/2021,12:10,BROOKLYN,11206,40.6952888,-73.9433863,"(40.6952888, -73.9433863)",VERNON AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4467859,Moped,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:32,,,40.69111,-73.91697,"(40.69111, -73.91697)",MADISON STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518621,Sedan,Van,,, +07/08/2022,13:30,QUEENS,11422,40.665268,-73.73556,"(40.665268, -73.73556)",,,243-02 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544589,Sedan,,,, +10/16/2021,20:28,,,40.7378047,-73.8506925,"(40.7378047, -73.8506925)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4467871,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/10/2021,9:30,QUEENS,11106,40.762447,-73.91949,"(40.762447, -73.91949)",36 STREET,31 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4467884,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2021,8:30,QUEENS,11102,40.7693194,-73.9192006,"(40.7693194, -73.9192006)",,,25-52 31 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467879,Sedan,,,, +10/07/2021,22:36,QUEENS,11102,40.767935,-73.9202734,"(40.767935, -73.9202734)",,,28-17 31 STREET,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4467880,Sedan,,,, +10/06/2021,16:44,QUEENS,11101,40.7520129,-73.9148586,"(40.7520129, -73.9148586)",,,34-51 48 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467881,E-Scooter,,,, +10/12/2021,16:45,QUEENS,11101,40.7554475,-73.9446375,"(40.7554475, -73.9446375)",,,10-25 41 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467886,Bus,Sedan,,, +10/16/2021,23:15,,,40.8330205,-73.9502666,"(40.8330205, -73.9502666)",HENRY HUDSON PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,,,,,4467898,Taxi,,,, +01/22/2022,11:30,STATEN ISLAND,10304,40.608776,-74.090805,"(40.608776, -74.090805)",NARROWS ROAD SOUTH,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4497252,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,15:00,,,,,,,,25-15 94 avenue,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497260,Sedan,,,, +10/15/2021,0:30,,,40.7521862,-73.8520065,"(40.7521862, -73.8520065)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4467915,Sedan,,,, +10/17/2021,5:08,,,40.7283988,-73.8330164,"(40.7283988, -73.8330164)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467918,Sedan,Tractor Truck Diesel,,, +10/05/2021,14:30,MANHATTAN,10010,40.7388307,-73.9831481,"(40.7388307, -73.9831481)",EAST 23 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467930,Sedan,Sedan,,, +07/04/2022,19:11,BRONX,10472,40.8283,-73.87624,"(40.8283, -73.87624)",,,1166 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544627,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,7:38,,,,,,,,109 EAST DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518775,Bike,E-Bike,,, +10/09/2021,22:30,MANHATTAN,10033,40.8459475,-73.9378112,"(40.8459475, -73.9378112)",WEST 175 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467936,Station Wagon/Sport Utility Vehicle,Bus,,, +10/17/2021,0:00,,,40.8423426,-73.9310865,"(40.8423426, -73.9310865)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4467942,Ambulance,Sedan,,, +12/12/2021,3:34,MANHATTAN,10019,40.764473,-73.98825,"(40.764473, -73.98825)",,,771 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497372,Sedan,Sedan,,, +01/04/2022,12:20,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497384,Box Truck,Sedan,,, +11/26/2021,19:58,MANHATTAN,10030,40.823647,-73.943855,"(40.823647, -73.943855)",WEST 145 STREET,EDGECOMBE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4497368,Sedan,,,, +01/22/2022,18:00,MANHATTAN,10029,40.79292,-73.94579,"(40.79292, -73.94579)",LEXINGTON AVENUE,EAST 107 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4497393,Sedan,,,, +01/23/2022,20:53,,,40.695965,-73.96642,"(40.695965, -73.96642)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497381,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,18:10,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497367,Sedan,Sedan,,, +01/20/2022,15:32,,,40.681473,-73.72776,"(40.681473, -73.72776)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,10:00,MANHATTAN,10011,40.743423,-73.999855,"(40.743423, -73.999855)",WEST 20 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497380,Sedan,,,, +01/23/2022,0:40,,,,,,ASTORIA BOULEVARD,49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497374,Sedan,,,, +01/21/2022,15:35,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4496273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,9:30,BRONX,10470,40.8998846,-73.8652194,"(40.8998846, -73.8652194)",EAST 238 STREET,MARTHA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467962,Sedan,,,, +02/19/2022,14:32,BRONX,10453,40.84915,-73.917336,"(40.84915, -73.917336)",UNIVERSITY AVENUE,WEST 176 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4505034,Station Wagon/Sport Utility Vehicle,Van,,, +02/18/2022,15:00,QUEENS,11101,40.754623,-73.931335,"(40.754623, -73.931335)",,,37-21 31 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505031,Sedan,Bulk Agriculture,,, +02/18/2022,20:42,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4505023,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/20/2022,4:15,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505024,Sedan,,,, +02/21/2022,10:27,BROOKLYN,11218,40.631275,-73.97606,"(40.631275, -73.97606)",18 AVENUE,EAST 2 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4505026,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,7:57,QUEENS,11369,40.76181,-73.8683,"(40.76181, -73.8683)",ASTORIA BOULEVARD,KEARNEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4505027,Sedan,Sedan,,, +02/16/2022,7:05,BROOKLYN,11213,,,,UTICA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4505035,Sedan,Pick-up Truck,,, +02/21/2022,1:33,,,,,,CROSS BAY BOULEVARD,CROSS BAY PARKWAY,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4505030,Sedan,,,, +01/23/2022,5:46,BROOKLYN,11211,40.711044,-73.950294,"(40.711044, -73.950294)",,,521 GRAND STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Other Vehicular,Unspecified,,,4496768,Sedan,food truck,Sedan,, +10/11/2021,14:18,,,40.6725157,-73.9335533,"(40.6725157, -73.9335533)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467964,Sedan,AMBU,,, +10/12/2021,3:00,BRONX,10470,40.8967575,-73.8697559,"(40.8967575, -73.8697559)",,,219 EAST 234 STREET,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4467965,Sedan,,,, +01/23/2022,19:49,BROOKLYN,11223,40.60631,-73.96181,"(40.60631, -73.96181)",,,2087 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497057,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,4:40,,,40.853706,-73.871864,"(40.853706, -73.871864)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4496854,Sedan,,,, +01/14/2022,18:05,STATEN ISLAND,10314,40.60763,-74.12105,"(40.60763, -74.12105)",,,761 MANOR ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4497321,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,11:26,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497286,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,1:35,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496458,Sedan,Sedan,,, +10/12/2021,20:30,QUEENS,11378,40.7293433,-73.902619,"(40.7293433, -73.902619)",63 STREET,53 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4467971,Sedan,Sedan,,, +01/23/2022,2:56,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496823,Sedan,Sedan,,, +01/20/2022,8:18,QUEENS,11421,40.695717,-73.856125,"(40.695717, -73.856125)",,,89-02 85 ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497145,Sedan,,,, +01/23/2022,5:00,,,40.692493,-73.84663,"(40.692493, -73.84663)",98 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496887,Sedan,,,, +01/23/2022,4:30,,,40.59889,-73.99337,"(40.59889, -73.99337)",23 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/23/2022,18:00,,,40.69283,-73.85468,"(40.69283, -73.85468)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496915,Sedan,,,, +10/15/2021,11:00,,,40.6923186,-73.8814602,"(40.6923186, -73.8814602)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4467977,Sedan,,,, +01/23/2022,11:10,STATEN ISLAND,10306,40.57507,-74.121796,"(40.57507, -74.121796)",,,2493 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4497319,Pick-up Truck,,,, +01/14/2022,15:58,QUEENS,11422,40.65435,-73.73155,"(40.65435, -73.73155)",,,257-55 148 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497226,Station Wagon/Sport Utility Vehicle,x trailer,,, +11/26/2020,21:11,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",GRAND CONCOURSE,EAST MOUNT EDEN AVENUE,,0,1,0,1,0,0,0,0,Obstruction/Debris,,,,,4372558,Sedan,,,, +07/17/2021,17:30,,,40.834644,-73.865036,"(40.834644, -73.865036)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4438602,Station Wagon/Sport Utility Vehicle,Convertible,Taxi,, +07/22/2021,7:24,BRONX,10466,40.88839,-73.84666,"(40.88839, -73.84666)",EAST 231 STREET,LACONIA AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4439418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,10:00,BROOKLYN,11233,40.676735,-73.9179,"(40.676735, -73.9179)",,,1967 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496570,Tractor Truck Diesel,,,, +07/24/2021,20:25,BROOKLYN,11220,40.643776,-74.008125,"(40.643776, -74.008125)",50 STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4440190,Sedan,Bike,,, +07/24/2021,19:20,,,40.61023,-74.10529,"(40.61023, -74.10529)",STATEN ISLAND EXPRESSWAY,,,7,0,0,0,0,0,7,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4440621,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/18/2021,4:22,MANHATTAN,10002,40.721935,-73.98533,"(40.721935, -73.98533)",,,250 EAST HOUSTON STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443150,Sedan,Sedan,,, +07/31/2021,23:30,BRONX,10461,40.836792,-73.84669,"(40.836792, -73.84669)",WESTCHESTER AVENUE,ZEREGA AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4443124,Sedan,Taxi,Sedan,, +06/30/2021,8:20,QUEENS,11370,40.757164,-73.88281,"(40.757164, -73.88281)",,,32-35 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443170,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,5:05,QUEENS,11413,40.675884,-73.75577,"(40.675884, -73.75577)",SPRINGFIELD BOULEVARD,EAST GATE PLAZA,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4440569,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,22:18,MANHATTAN,10036,40.75866,-73.98875,"(40.75866, -73.98875)",,,700 8 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4496745,Taxi,Taxi,,, +07/27/2021,21:03,,,40.643063,-73.95166,"(40.643063, -73.95166)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442181,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,16:07,BROOKLYN,11201,40.688,-73.99757,"(40.688, -73.99757)",WARREN STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442443,Sedan,,,, +07/28/2021,17:30,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",QUEENS BOULEVARD,77 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441471,E-Scooter,Pick-up Truck,,, +07/31/2021,18:00,BROOKLYN,11203,40.654045,-73.92673,"(40.654045, -73.92673)",LINDEN BOULEVARD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442630,Sedan,,,, +07/31/2021,12:30,,,40.766434,-73.83767,"(40.766434, -73.83767)",COLLEGE POINT BOULEVARD,32 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Turning Improperly,,,,4442352,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,17:00,QUEENS,11419,40.68297,-73.82824,"(40.68297, -73.82824)",107 AVENUE,113 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4442165,Sedan,Bike,,, +07/30/2021,10:00,BRONX,10466,40.890224,-73.84455,"(40.890224, -73.84455)",,,4002 GRACE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442612,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,17:59,,,40.664654,-73.916275,"(40.664654, -73.916275)",BLAKE AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4441901,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,7:00,QUEENS,11356,40.78566,-73.855095,"(40.78566, -73.855095)",14 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441569,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +07/31/2021,11:38,BROOKLYN,11222,40.724636,-73.94818,"(40.724636, -73.94818)",MC GUINNESS BOULEVARD,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442908,Sedan,,,, +07/29/2021,11:08,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442871,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,22:30,BRONX,10461,40.836792,-73.84669,"(40.836792, -73.84669)",ZEREGA AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,15:10,MANHATTAN,10036,40.760353,-73.99124,"(40.760353, -73.99124)",WEST 45 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441516,Sedan,,,, +07/28/2021,14:00,,,,,,edward el grant hwy,nelson ave,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4442015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/24/2021,19:45,QUEENS,11412,40.695934,-73.761604,"(40.695934, -73.761604)",FARMERS BOULEVARD,115 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442761,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/30/2021,16:20,QUEENS,11374,40.729572,-73.86083,"(40.729572, -73.86083)",QUEENS BOULEVARD,64 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,4:56,BROOKLYN,11211,40.709084,-73.960106,"(40.709084, -73.960106)",,,240 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4442988,Sedan,,,, +07/21/2021,14:50,BROOKLYN,11218,40.641266,-73.976074,"(40.641266, -73.976074)",,,454 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4442390,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +07/30/2021,11:30,BROOKLYN,11212,40.675205,-73.904396,"(40.675205, -73.904396)",PACIFIC STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Pavement Defective,,,,4441869,Station Wagon/Sport Utility Vehicle,CARGO,,, +07/30/2021,15:20,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442164,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,7:57,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442625,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/29/2021,3:15,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441772,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,17:20,,,40.680855,-74.00305,"(40.680855, -74.00305)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442444,Pick-up Truck,Sedan,,, +07/29/2021,8:30,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",ALABAMA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442054,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,14:30,,,40.8464,-73.89338,"(40.8464, -73.89338)",EAST TREMONT AVENUE,ARTHUR AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442729,E-Scooter,E-Scooter,,, +07/15/2021,6:20,,,40.723648,-73.99103,"(40.723648, -73.99103)",2 AVENUE,,,1,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4442543,Sedan,E-Scooter,,, +07/26/2021,12:40,MANHATTAN,10039,40.8226,-73.939316,"(40.8226, -73.939316)",,,210 WEST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442004,Taxi,,,, +07/29/2021,11:50,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441755,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,16:45,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4442506,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +07/31/2021,23:27,BRONX,10468,40.867878,-73.893005,"(40.867878, -73.893005)",GRAND CONCOURSE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442892,Sedan,,,, +07/31/2021,9:01,BROOKLYN,11210,40.62158,-73.94975,"(40.62158, -73.94975)",AVENUE L,EAST 26 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442319,Bus,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,13:00,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4442091,Sedan,Sedan,Sedan,, +07/30/2021,19:32,BROOKLYN,11236,40.63917,-73.91604,"(40.63917, -73.91604)",FARRAGUT ROAD,EAST 81 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442202,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,19:28,MANHATTAN,10065,40.76614,-73.97166,"(40.76614, -73.97166)",5 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441496,Station Wagon/Sport Utility Vehicle,Bike,,, +07/24/2021,6:55,,,40.854923,-73.82636,"(40.854923, -73.82636)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442768,Sedan,,,, +07/27/2021,13:44,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442017,Sedan,Flat Bed,,, +07/30/2021,17:00,QUEENS,11413,40.666405,-73.74669,"(40.666405, -73.74669)",,,227-15 NORTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441888,Sedan,Sedan,,, +07/30/2021,7:30,BRONX,10473,40.80934,-73.855316,"(40.80934, -73.855316)",SOUND VIEW AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442927,Sedan,,,, +07/30/2021,19:10,QUEENS,11369,40.76233,-73.87136,"(40.76233, -73.87136)",ASTORIA BOULEVARD,98 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4441944,E-Bike,Sedan,,, +07/27/2021,15:15,MANHATTAN,10003,40.726494,-73.98829,"(40.726494, -73.98829)",,,321 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442559,Sedan,Sedan,,, +07/29/2021,6:30,MANHATTAN,10010,40.742886,-73.99075,"(40.742886, -73.99075)",,,44 WEST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441635,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,16:50,BRONX,10472,40.83388,-73.8766,"(40.83388, -73.8766)",EAST 174 STREET,STRATFORD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442948,Sedan,Motorscooter,,, +07/27/2021,5:00,,,40.84366,-73.92005,"(40.84366, -73.92005)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442059,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,21:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4442839,Sedan,,,, +07/30/2021,11:51,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442118,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,14:20,,,40.831776,-73.82097,"(40.831776, -73.82097)",THROGS NECK EXPRESSWAY,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4442304,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,5:00,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4442590,Sedan,Dump,,, +07/29/2021,4:15,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441537,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,20:00,BROOKLYN,11212,40.654163,-73.91154,"(40.654163, -73.91154)",,,1 BROOKDALE PLAZA,1,0,0,0,0,0,1,0,Unspecified,,,,,4442219,Sedan,,,, +07/20/2021,22:13,BRONX,10451,40.809883,-73.930305,"(40.809883, -73.930305)",,,200 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442271,Sedan,,,, +07/29/2021,13:45,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441735,Sedan,3-Door,,, +07/28/2021,6:00,BROOKLYN,11237,40.70837,-73.923065,"(40.70837, -73.923065)",FLUSHING AVENUE,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441811,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,17:22,,,40.622234,-73.990685,"(40.622234, -73.990685)",62 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,View Obstructed/Limited,,,,4442690,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,16:50,QUEENS,11385,40.694275,-73.901855,"(40.694275, -73.901855)",WYCKOFF AVENUE,DECATUR STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,12:50,BROOKLYN,11222,40.729877,-73.9576,"(40.729877, -73.9576)",FRANKLIN STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441844,Sedan,Bike,,, +07/30/2021,9:00,BRONX,10460,40.834724,-73.89609,"(40.834724, -73.89609)",,,1436 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442282,Sedan,Sedan,,, +07/31/2021,6:30,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4442696,Sedan,,,, +07/28/2021,3:30,,,40.763428,-73.99271,"(40.763428, -73.99271)",WEST 48 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441243,Sedan,Garbage or Refuse,,, +07/28/2021,14:02,STATEN ISLAND,10310,40.62452,-74.104454,"(40.62452, -74.104454)",WHITEWOOD AVENUE,BARD AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4442422,Sedan,,,, +07/30/2021,9:57,,,40.826298,-73.85742,"(40.826298, -73.85742)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442932,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,5:30,BRONX,10457,40.84541,-73.891136,"(40.84541, -73.891136)",EAST TREMONT AVENUE,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441985,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,12:15,BRONX,10457,40.846577,-73.891884,"(40.846577, -73.891884)",HUGHES AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441545,Sedan,,,, +07/30/2021,1:43,QUEENS,11413,40.66367,-73.76372,"(40.66367, -73.76372)",,,145-64 182 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441770,Sedan,Sedan,,, +07/29/2021,11:15,MANHATTAN,10038,40.709576,-73.99635,"(40.709576, -73.99635)",,,10 CATHERINE SLIP,0,0,0,0,0,0,0,0,Unspecified,,,,,4442821,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:07,BROOKLYN,11204,40.614414,-73.994965,"(40.614414, -73.994965)",,,7316 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441915,Sedan,Sedan,,, +07/31/2021,23:36,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4443033,Bike,,,, +07/29/2021,8:30,STATEN ISLAND,10305,40.61194,-74.07038,"(40.61194, -74.07038)",,,255 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4442427,Sedan,,,, +07/29/2021,17:47,,,40.68846,-73.80878,"(40.68846, -73.80878)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4441976,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,21:34,,,40.78781,-73.82341,"(40.78781, -73.82341)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4442191,Sedan,Sedan,,, +07/30/2021,6:44,BROOKLYN,11208,40.677296,-73.87682,"(40.677296, -73.87682)",LIBERTY AVENUE,LOGAN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4442047,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/31/2021,14:00,QUEENS,11364,40.734943,-73.751396,"(40.734943, -73.751396)",UNION TURNPIKE,220 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4442150,Sedan,Sedan,Pick-up Truck,, +07/29/2021,20:13,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4441802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van, +07/28/2021,9:00,QUEENS,11378,40.72621,-73.920525,"(40.72621, -73.920525)",56 ROAD,48 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4442213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,9:00,QUEENS,11378,40.71453,-73.914085,"(40.71453, -73.914085)",,,52-15 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441703,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,11:00,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4442133,,,,, +07/31/2021,3:00,BRONX,10467,40.885296,-73.860374,"(40.885296, -73.860374)",,,721 EAST 222 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4442635,Sedan,Sedan,,, +07/27/2021,22:00,BROOKLYN,11224,40.57515,-73.98558,"(40.57515, -73.98558)",WEST 19 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442406,Sedan,,,, +07/30/2021,17:46,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442882,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,0:35,,,40.64002,-74.13042,"(40.64002, -74.13042)",RICHMOND TERRACE,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441310,Sedan,,,, +07/31/2021,21:30,,,40.664948,-73.94262,"(40.664948, -73.94262)",MONTGOMERY STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4442710,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,16:57,BRONX,10475,40.863106,-73.82572,"(40.863106, -73.82572)",,,4100 HUTCHINSON RIVER PARKWAY EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441921,Sedan,Sedan,,, +07/28/2021,23:20,,,40.825794,-73.86124,"(40.825794, -73.86124)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4441920,Sedan,Flat Bed,,, +07/28/2021,10:45,QUEENS,11413,40.675755,-73.744896,"(40.675755, -73.744896)",226 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441454,Sedan,,,, +07/25/2021,2:20,,,,,,CARTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442809,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,2:35,QUEENS,11436,40.669823,-73.78883,"(40.669823, -73.78883)",150 STREET,130 AVENUE,,10,0,0,0,0,0,10,0,Turning Improperly,Unspecified,,,,4442086,Station Wagon/Sport Utility Vehicle,Bus,,, +07/28/2021,12:00,QUEENS,11417,40.679546,-73.85048,"(40.679546, -73.85048)",,,105-57 88 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441578,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,14:45,BROOKLYN,11208,40.671597,-73.88018,"(40.671597, -73.88018)",SUTTER AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442036,Sedan,,,, +07/29/2021,9:45,,,40.525932,-74.221924,"(40.525932, -74.221924)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442858,Station Wagon/Sport Utility Vehicle,Dump,,, +07/26/2021,9:58,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4442339,Sedan,Sedan,Sedan,Sedan, +07/30/2021,15:30,,,40.584625,-73.94713,"(40.584625, -73.94713)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4442255,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,23:08,BROOKLYN,11213,40.66788,-73.93243,"(40.66788, -73.93243)",,,1692 UNION STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4443070,Sedan,Sedan,Sedan,, +07/27/2021,14:00,MANHATTAN,10030,40.817844,-73.94185,"(40.817844, -73.94185)",7 AVENUE,WEST 139 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442008,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,1:24,BRONX,10453,40.84825,-73.90975,"(40.84825, -73.90975)",EAST 176 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4442979,Sedan,Taxi,Sedan,Station Wagon/Sport Utility Vehicle, +07/24/2021,14:50,QUEENS,11411,40.69487,-73.736206,"(40.69487, -73.736206)",,,116-51 224 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442358,Sedan,,,, +07/30/2021,18:00,BROOKLYN,11206,40.71082,-73.93595,"(40.71082, -73.93595)",,,35 MEADOW STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443016,Sedan,,,, +07/31/2021,13:51,QUEENS,11693,40.586308,-73.8068,"(40.586308, -73.8068)",,,80-00 SHORE FRONT PARKWAY,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442237,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/29/2021,0:03,BROOKLYN,11210,40.6211,-73.945816,"(40.6211, -73.945816)",,,2600 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442289,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,15:50,,,,,,,,21`-15 Broadway,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4442467,Sedan,Bike,,, +07/31/2021,18:00,QUEENS,11368,40.738033,-73.86115,"(40.738033, -73.86115)",,,98-32 57 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442510,Sedan,,,, +01/23/2022,23:10,BRONX,10452,40.844234,-73.92363,"(40.844234, -73.92363)",OGDEN AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497102,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,3:09,BROOKLYN,11236,40.652115,-73.916664,"(40.652115, -73.916664)",AVENUE A,EAST 92 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4441876,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,11:58,,,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442074,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,8:00,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441592,Sedan,Sedan,,, +07/24/2021,16:50,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4442960,Motorcycle,Sedan,,, +07/29/2021,23:55,MANHATTAN,10001,40.74453,-73.98888,"(40.74453, -73.98888)",WEST 27 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442494,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/31/2021,18:00,QUEENS,11411,40.70256,-73.74482,"(40.70256, -73.74482)",,,210-12 MURDOCK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4442206,Sedan,,,, +07/26/2021,20:55,,,40.732914,-74.00398,"(40.732914, -74.00398)",GROVE STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442373,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/29/2021,8:23,MANHATTAN,10017,40.75457,-73.97169,"(40.75457, -73.97169)",EAST 48 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4441643,Station Wagon/Sport Utility Vehicle,Bus,,, +07/31/2021,19:10,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442750,Sedan,E-Bike,,, +07/29/2021,11:30,QUEENS,11372,40.74724,-73.888695,"(40.74724, -73.888695)",,,37-37 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441940,Sedan,,,, +07/26/2021,13:30,BROOKLYN,11215,40.671318,-73.98372,"(40.671318, -73.98372)",,,343 5 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442915,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,14:10,BROOKLYN,11231,40.675117,-74.00962,"(40.675117, -74.00962)",OTSEGO STREET,LORRAINE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442449,Sedan,Bus,,, +07/29/2021,12:00,BROOKLYN,11235,40.585354,-73.93104,"(40.585354, -73.93104)",,,3900 SHORE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441668,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,4:55,,,40.725918,-73.89535,"(40.725918, -73.89535)",GRAND AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442586,Sedan,Dump,,, +07/22/2021,7:30,BROOKLYN,11211,40.711166,-73.9489,"(40.711166, -73.9489)",LORIMER STREET,GRAND STREET,,2,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442994,Bus,E-Scooter,,, +07/29/2021,13:19,MANHATTAN,10027,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4442796,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,6:49,QUEENS,11355,40.759113,-73.808876,"(40.759113, -73.808876)",157 STREET,43 AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4441425,Sedan,E-Bike,,, +07/28/2021,1:05,,,40.789528,-73.820435,"(40.789528, -73.820435)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4442324,Sedan,Flat Bed,,, +07/31/2021,19:10,BROOKLYN,11223,40.60456,-73.96897,"(40.60456, -73.96897)",,,551 KINGS HIGHWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442249,Station Wagon/Sport Utility Vehicle,Bike,,, +07/29/2021,8:35,MANHATTAN,10014,40.737915,-74.00444,"(40.737915, -74.00444)",,,23 8 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442385,DODGE RAM,Bike,,, +07/29/2021,18:30,BROOKLYN,11236,40.634552,-73.91477,"(40.634552, -73.91477)",FLATLANDS AVENUE,EAST 78 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441953,Sedan,,,, +07/28/2021,5:14,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441366,Sedan,,,, +07/26/2021,12:00,,,40.675186,-73.933304,"(40.675186, -73.933304)",BERGEN STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4442555,Sedan,Box Truck,,, +07/31/2021,7:00,STATEN ISLAND,10314,40.61258,-74.129166,"(40.61258, -74.129166)",VICTORY BOULEVARD,QUINLAN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4442434,Sedan,Sedan,,, +07/18/2021,19:00,BROOKLYN,11221,40.686478,-73.926796,"(40.686478, -73.926796)",,,144 PATCHEN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,,,4442641,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/20/2021,13:35,,,40.837177,-73.942604,"(40.837177, -73.942604)",WEST 162 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441824,Sedan,Bike,,, +07/29/2021,22:45,QUEENS,11421,40.68632,-73.86352,"(40.68632, -73.86352)",91 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Pavement Slippery,,,,4441837,Sedan,Sedan,,, +07/07/2021,10:45,,,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4441856,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,2:50,QUEENS,11370,40.756897,-73.893196,"(40.756897, -73.893196)",32 AVENUE,74 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442101,Sedan,Sedan,,, +07/29/2021,8:20,BROOKLYN,11234,40.630688,-73.92521,"(40.630688, -73.92521)",AVENUE I,EAST 53 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441972,Sedan,Motorcycle,,, +07/28/2021,14:19,STATEN ISLAND,10310,40.62452,-74.104454,"(40.62452, -74.104454)",BARD AVENUE,WHITEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441390,Sedan,,,, +07/29/2021,9:15,BROOKLYN,11209,40.62783,-74.02928,"(40.62783, -74.02928)",80 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443023,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/25/2021,13:40,BROOKLYN,11211,40.70941,-73.960815,"(40.70941, -73.960815)",,,204 BROADWAY,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4442967,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,10:00,QUEENS,11363,,,,,,42 25 235 street,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441368,Sedan,Pick-up Truck,,, +07/29/2021,20:09,,,,,,BROADWAY,ROEBLING STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4443008,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/30/2021,15:28,BROOKLYN,11210,40.631287,-73.945564,"(40.631287, -73.945564)",,,1623 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,,,,,,4442187,,,,, +07/30/2021,1:45,,,40.767372,-73.950066,"(40.767372, -73.950066)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441783,Sedan,,,, +07/18/2021,10:55,QUEENS,11377,40.745106,-73.908646,"(40.745106, -73.908646)",56 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441925,Sedan,Sedan,,, +07/28/2021,17:09,,,40.739178,-73.79393,"(40.739178, -73.79393)",175 PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441446,Sedan,Sedan,,, +07/31/2021,8:30,MANHATTAN,10032,40.83923,-73.94555,"(40.83923, -73.94555)",RIVERSIDE DRIVE,WEST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442652,Sedan,,,, +01/20/2022,5:42,BRONX,10473,40.823902,-73.87452,"(40.823902, -73.87452)",,,1602 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4497120,,,,, +07/30/2021,14:10,BRONX,10454,40.80879,-73.91619,"(40.80879, -73.91619)",EAST 141 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442265,Station Wagon/Sport Utility Vehicle,Moped,,, +06/11/2021,12:29,BRONX,10463,,,,VAN CORTLANDT PARK SOUTH,DICKINSON AVENUE,,0,1,0,0,0,1,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4443102,Bike,,,, +07/28/2021,10:00,QUEENS,11421,40.690475,-73.86792,"(40.690475, -73.86792)",ELDERTS LANE,87 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441339,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,10:46,,,40.75519,-73.97122,"(40.75519, -73.97122)",EAST 49 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442106,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,14:52,BRONX,10473,40.8223,-73.873,"(40.8223, -73.873)",MORRISON AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,9:40,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4443158,Sedan,Sedan,,, +07/31/2021,15:52,BROOKLYN,11235,40.594425,-73.93496,"(40.594425, -73.93496)",AVENUE X,BRAGG STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442259,Sedan,Sedan,,, +07/25/2021,2:21,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441908,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,12:30,BROOKLYN,11207,40.65975,-73.8921,"(40.65975, -73.8921)",,,525 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442040,Station Wagon/Sport Utility Vehicle,Bus,,, +07/28/2021,19:35,,,40.769604,-73.91139,"(40.769604, -73.91139)",38 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441530,Sedan,Motorcycle,,, +07/20/2021,14:30,,,40.850166,-73.93576,"(40.850166, -73.93576)",WEST 181 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443022,Sedan,Sedan,,, +07/30/2021,8:50,STATEN ISLAND,10306,40.566227,-74.12025,"(40.566227, -74.12025)",TYSENS LANE,10 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442123,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,17:25,MANHATTAN,10037,40.81329,-73.93517,"(40.81329, -73.93517)",,,2150 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442155,Sedan,Taxi,,, +01/23/2022,14:20,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497159,Sedan,,,, +07/31/2021,5:40,QUEENS,11102,40.775154,-73.920166,"(40.775154, -73.920166)",,,24-04 24 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4442472,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Sedan, +07/31/2021,0:36,BROOKLYN,11213,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4442241,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,16:19,BRONX,10457,40.8416,-73.90112,"(40.8416, -73.90112)",WASHINGTON AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,13:22,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442344,Taxi,Sedan,,, +07/28/2021,17:30,MANHATTAN,10035,40.796227,-73.93188,"(40.796227, -73.93188)",,,515 EAST 118 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441552,Sedan,Sedan,,, +07/30/2021,17:00,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",CLARKSON AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441880,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,3:40,MANHATTAN,10031,40.82237,-73.95454,"(40.82237, -73.95454)",,,630 WEST 138 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443074,PK,Sedan,,, +07/29/2021,21:11,MANHATTAN,10010,40.737007,-73.98157,"(40.737007, -73.98157)",,,375 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442499,Sedan,Taxi,,, +07/27/2021,5:10,QUEENS,11427,40.72182,-73.75671,"(40.72182, -73.75671)",,,88-49 209 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,16:44,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4442909,Sedan,E-Bike,,, +07/29/2021,15:55,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,12:30,QUEENS,11372,40.748478,-73.89081,"(40.748478, -73.89081)",,,37-12 75 STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4442659,Bike,,,, +07/29/2021,12:47,,,40.709557,-74.00644,"(40.709557, -74.00644)",WILLIAM STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442804,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,21:57,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",12 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,15:45,,,40.73769,-73.76858,"(40.73769, -73.76858)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4442078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/28/2021,9:10,BROOKLYN,11207,40.658337,-73.87759,"(40.658337, -73.87759)",ASHFORD STREET,COZINE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4441996,Sedan,Sedan,,, +07/29/2021,8:15,QUEENS,11422,40.665257,-73.73926,"(40.665257, -73.73926)",MEMPHIS AVENUE,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441598,Sedan,Sedan,,, +07/31/2021,15:33,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442361,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,9:30,,,40.7778,-73.91308,"(40.7778, -73.91308)",27 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,12:45,,,40.870552,-73.84641,"(40.870552, -73.84641)",EAST GUN HILL ROAD,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4442095,Station Wagon/Sport Utility Vehicle,Moped,,, +07/31/2021,11:00,BROOKLYN,11203,40.654976,-73.936554,"(40.654976, -73.936554)",LENOX ROAD,TROY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442174,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,0:50,,,40.57788,-73.99477,"(40.57788, -73.99477)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4442397,Sedan,,,, +07/31/2021,13:05,BRONX,10457,40.85118,-73.88637,"(40.85118, -73.88637)",,,670 GARDEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442736,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,9:10,QUEENS,11418,,,,130 STREET,92 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441675,Sedan,,,, +07/28/2021,7:23,BRONX,10462,40.83313,-73.85765,"(40.83313, -73.85765)",,,1275 PUGSLEY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441358,Sedan,Sedan,,, +07/30/2021,16:45,MANHATTAN,10019,40.77099,-73.99092,"(40.77099, -73.99092)",WEST 58 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442826,Sedan,Sedan,,, +07/28/2021,19:00,BROOKLYN,11237,40.70912,-73.92764,"(40.70912, -73.92764)",RANDOLPH STREET,VARICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442999,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/30/2021,23:44,BROOKLYN,11224,40.574005,-73.98969,"(40.574005, -73.98969)",WEST 23 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441957,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,20:35,,,40.695995,-73.96742,"(40.695995, -73.96742)",WASHINGTON AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442419,Station Wagon/Sport Utility Vehicle,Bike,,, +07/22/2021,14:00,QUEENS,11378,40.718273,-73.90219,"(40.718273, -73.90219)",61 STREET,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442551,Sedan,Carry All,,, +07/28/2021,19:50,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4441507,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/30/2021,8:30,BRONX,10452,40.838154,-73.9212,"(40.838154, -73.9212)",CROMWELL AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442142,Sedan,Sedan,,, +07/29/2021,10:44,BROOKLYN,11221,40.687687,-73.93123,"(40.687687, -73.93123)",,,648 MONROE STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442598,Station Wagon/Sport Utility Vehicle,Convertible,,, +07/29/2021,12:20,BRONX,10468,40.86661,-73.90121,"(40.86661, -73.90121)",WEST 192 STREET,AQUEDUCT AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4441820,Sedan,,,, +07/30/2021,17:12,,,40.634953,-74.16141,"(40.634953, -74.16141)",,,54 LOCKMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442312,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,21:12,MANHATTAN,10027,40.81694,-73.95366,"(40.81694, -73.95366)",,,1453 AMSTERDAM AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4442430,Sedan,Bike,,, +07/24/2021,18:00,,,40.74106,-73.946106,"(40.74106, -73.946106)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4441952,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/30/2021,15:20,,,40.78176,-73.944145,"(40.78176, -73.944145)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442778,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/01/2021,14:20,QUEENS,11379,40.712914,-73.877365,"(40.712914, -73.877365)",,,75-16 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4441861,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,3:30,QUEENS,11422,40.682175,-73.733345,"(40.682175, -73.733345)",,,128-23 233 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,16:10,QUEENS,11435,40.70352,-73.813866,"(40.70352, -73.813866)",,,88-14 139 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4441747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,9:25,QUEENS,11375,40.723267,-73.83833,"(40.723267, -73.83833)",113 STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441825,Sedan,Sedan,,, +07/26/2021,16:35,MANHATTAN,10003,40.73238,-73.98288,"(40.73238, -73.98288)",,,353 EAST 15 STREET,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4441984,Sedan,Bike,,, +07/28/2021,16:25,QUEENS,11427,40.7281,-73.74896,"(40.7281, -73.74896)",,,87-47 216 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441455,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,17:15,,,,,,EAST 34 STREET,QUEENS MIDTOWN TUNNEL ENTRANCE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4441481,Sedan,Bike,,, +07/30/2021,7:55,BRONX,10458,40.854973,-73.89251,"(40.854973, -73.89251)",EAST 183 STREET,BASSFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442756,Sedan,,,, +07/28/2021,17:46,BROOKLYN,11218,40.642086,-73.973885,"(40.642086, -73.973885)",,,300 OCEAN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4441790,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,22:25,BROOKLYN,11206,40.70302,-73.93312,"(40.70302, -73.93312)",,,985 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442971,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,7:00,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",ROOSEVELT AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441376,Sedan,TRAILER,,, +07/29/2021,18:10,QUEENS,11420,40.674004,-73.81881,"(40.674004, -73.81881)",SUTTER AVENUE,120 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4441734,Pick-up Truck,Sedan,,, +07/28/2021,0:00,MANHATTAN,10030,40.820534,-73.94054,"(40.820534, -73.94054)",,,200 WEST 143 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4442011,Sedan,,,, +07/27/2021,11:00,MANHATTAN,10033,40.848625,-73.93425,"(40.848625, -73.93425)",SAINT NICHOLAS AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4442487,Sedan,Sedan,,, +07/29/2021,22:15,BROOKLYN,11207,40.650223,-73.89103,"(40.650223, -73.89103)",,,11042 FLATLANDS AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442028,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,18:00,BRONX,10461,40.851852,-73.83376,"(40.851852, -73.83376)",WILKINSON AVENUE,MAYFLOWER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443165,Sedan,,,, +07/30/2021,3:45,BRONX,10465,40.828785,-73.82268,"(40.828785, -73.82268)",,,812 EDISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4442298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/28/2021,2:00,QUEENS,11355,40.743866,-73.82568,"(40.743866, -73.82568)",MAIN STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,23:00,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4441651,Sedan,Sedan,,, +07/31/2021,13:00,,,40.743008,-73.77996,"(40.743008, -73.77996)",HORACE HARDING EXPRESSWAY,UNDERHILL AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4442127,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,6:10,QUEENS,11412,40.69289,-73.75376,"(40.69289, -73.75376)",118 AVENUE,198 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4441979,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/30/2021,9:10,,,40.88125,-73.86071,"(40.88125, -73.86071)",BARNES AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4442634,Sedan,Sedan,,, +07/31/2021,21:20,,,40.81914,-73.93719,"(40.81914, -73.93719)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4442766,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,11:50,BRONX,10462,40.854443,-73.86482,"(40.854443, -73.86482)",LYDIG AVENUE,WALLACE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441857,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,18:00,BROOKLYN,11204,40.617683,-73.98466,"(40.617683, -73.98466)",20 AVENUE,63 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441912,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,21:26,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",ELIOT AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442159,Sedan,Sedan,,, +07/29/2021,15:20,QUEENS,11374,40.72937,-73.85899,"(40.72937, -73.85899)",,,97-17 64 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4441727,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,1:39,MANHATTAN,10030,40.82092,-73.94333,"(40.82092, -73.94333)",8 AVENUE,WEST 142 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4442182,Sedan,,,, +07/29/2021,23:36,,,40.686928,-73.98484,"(40.686928, -73.98484)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441779,Sedan,Sedan,,, +07/27/2021,2:58,BROOKLYN,11207,40.656204,-73.886696,"(40.656204, -73.886696)",WORTMAN AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442021,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,17:10,MANHATTAN,10012,40.725304,-73.99911,"(40.725304, -73.99911)",,,131 GREENE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,18:58,MANHATTAN,10011,,,,,,424 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442378,Taxi,Motorbike,,, +07/28/2021,23:00,BROOKLYN,11237,40.6993,-73.91361,"(40.6993, -73.91361)",LINDEN STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441525,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,15:08,BROOKLYN,11238,40.68112,-73.96,"(40.68112, -73.96)",,,94 LEFFERTS PLACE,0,0,0,0,0,0,0,0,Physical Disability,,,,,4441759,Sedan,,,, +07/28/2021,19:30,BRONX,10462,40.832096,-73.85531,"(40.832096, -73.85531)",,,2049 ELLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441546,Sedan,Sedan,,, +07/28/2021,12:15,BROOKLYN,11208,40.668655,-73.8785,"(40.668655, -73.8785)",DUMONT AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442050,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,7:00,,,40.759403,-73.98511,"(40.759403, -73.98511)",WEST 47 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4442830,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,14:00,,,40.735424,-73.974754,"(40.735424, -73.974754)",FDR DRIVE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4442502,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,16:30,BROOKLYN,11213,40.67888,-73.93561,"(40.67888, -73.93561)",HERKIMER STREET,TROY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442605,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,12:30,QUEENS,11411,40.694866,-73.73927,"(40.694866, -73.73927)",LINDEN BOULEVARD,221 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4441884,Sedan,,,, +07/29/2021,16:50,STATEN ISLAND,10306,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,MIDLAND AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4442110,Pick-up Truck,Bike,,, +07/29/2021,18:22,QUEENS,11354,40.77151,-73.815865,"(40.77151, -73.815865)",150 STREET,BAYSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4442349,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,1:05,QUEENS,11104,40.742508,-73.91788,"(40.742508, -73.91788)",GREENPOINT AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4441488,Box Truck,Sedan,Sedan,Sedan, +07/30/2021,17:50,QUEENS,11422,40.662357,-73.73517,"(40.662357, -73.73517)",MEMPHIS AVENUE,248 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441889,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,12:27,,,,,,COOPER SQUARE,ASTOR PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4442548,Taxi,Ambulance,,, +07/29/2021,14:15,BRONX,10467,40.885216,-73.87937,"(40.885216, -73.87937)",EAST 213 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,21:00,,,40.665398,-73.95093,"(40.665398, -73.95093)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443080,Sedan,,,, +07/30/2021,21:30,BRONX,10469,40.875256,-73.84342,"(40.875256, -73.84342)",KINGSLAND AVENUE,GIVAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442647,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,18:00,MANHATTAN,10027,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442365,Sedan,,,, +07/30/2021,7:10,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",OCEAN PARKWAY,AVENUE J,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442458,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,13:45,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442016,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,14:51,,,,,,CENTRAL PARK WEST,WEST 80 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4442138,Sedan,,,, +07/30/2021,16:29,BROOKLYN,11216,40.675762,-73.95522,"(40.675762, -73.95522)",,,557 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442563,Sedan,PK,,, +07/31/2021,16:30,BRONX,10465,40.829685,-73.81989,"(40.829685, -73.81989)",THROGS NECK EXPRESSWAY,PHILIP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442308,Sedan,Pick-up Truck,,, +07/28/2021,22:24,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441584,Sedan,,,, +07/26/2021,21:12,,,40.59565,-73.908165,"(40.59565, -73.908165)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4442873,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/30/2021,19:14,,,40.763885,-73.84002,"(40.763885, -73.84002)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4441933,Sedan,,,, +07/27/2021,23:05,MANHATTAN,10012,40.720623,-73.99498,"(40.720623, -73.99498)",KENMARE STREET,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442223,Sedan,,,, +07/28/2021,17:00,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4441816,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/31/2021,2:30,BRONX,10473,40.82757,-73.84515,"(40.82757, -73.84515)",,,2338 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442952,Sedan,Sedan,,, +07/28/2021,15:45,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4441460,Bus,Sedan,,, +07/31/2021,14:24,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",NORTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442170,Sedan,Sedan,,, +07/28/2021,22:00,STATEN ISLAND,10304,40.622463,-74.07254,"(40.622463, -74.07254)",BAY STREET,VANDERBILT AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4442426,Sedan,,,, +07/30/2021,0:00,MANHATTAN,10002,40.720535,-73.99395,"(40.720535, -73.99395)",,,183 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442228,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/30/2021,13:19,,,,,,WILLIS AVE BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442275,Sedan,,,, +07/28/2021,10:50,BROOKLYN,11238,40.685215,-73.95928,"(40.685215, -73.95928)",GATES AVENUE,CLASSON AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4441739,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,12:42,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441829,Station Wagon/Sport Utility Vehicle,,,, +07/02/2021,19:00,BROOKLYN,11213,40.675644,-73.94161,"(40.675644, -73.94161)",BERGEN STREET,KINGSTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442532,Sedan,Bike,,, +07/30/2021,1:20,BROOKLYN,11220,40.640415,-74.01162,"(40.640415, -74.01162)",56 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4442412,Sedan,Sedan,,, +07/30/2021,0:00,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442695,Sedan,Sedan,Sedan,, +07/18/2021,16:50,,,40.629036,-74.16538,"(40.629036, -74.16538)",GRANDVIEW AVENUE,NETHERLAND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441989,Sedan,Sedan,,, +07/31/2021,12:40,,,40.607555,-74.08711,"(40.607555, -74.08711)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442785,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,13:09,,,40.718647,-73.83771,"(40.718647, -73.83771)",QUEENS BOULEVARD,75 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441563,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,8:40,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",AVENUE H,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442316,Sedan,,,, +07/30/2021,11:45,QUEENS,11368,40.747444,-73.8685,"(40.747444, -73.8685)",,,40-67 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4441932,Bike,,,, +07/28/2021,7:40,BROOKLYN,11234,40.62788,-73.93251,"(40.62788, -73.93251)",AVENUE J,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4441497,Bus,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,10:50,MANHATTAN,10019,40.76434,-73.98834,"(40.76434, -73.98834)",,,765 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441564,Box Truck,,,, +07/27/2021,16:21,BROOKLYN,11214,40.595566,-73.99996,"(40.595566, -73.99996)",,,1628 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4442196,Sedan,Sedan,,, +07/31/2021,6:55,QUEENS,11385,40.709427,-73.91045,"(40.709427, -73.91045)",FAIRVIEW AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4442583,Sedan,Sedan,,, +07/31/2021,0:10,,,40.699265,-73.72717,"(40.699265, -73.72717)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,14:45,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442572,Sedan,Sedan,,, +07/28/2021,10:18,MANHATTAN,10006,40.709076,-74.01406,"(40.709076, -74.01406)",WASHINGTON STREET,CARLISLE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441541,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/29/2021,19:10,BROOKLYN,11236,40.637108,-73.89338,"(40.637108, -73.89338)",ROCKAWAY PARKWAY,AVENUE M,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441765,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,14:38,BROOKLYN,11210,40.629227,-73.93956,"(40.629227, -73.93956)",,,1054 EAST 38 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4441964,Sedan,,,, +07/30/2021,18:10,BRONX,10465,40.84492,-73.82031,"(40.84492, -73.82031)",,,1532 STADIUM AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442928,Bike,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,1:45,QUEENS,11377,40.744938,-73.90959,"(40.744938, -73.90959)",ROOSEVELT AVENUE,55 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441203,Taxi,Pick-up Truck,,, +07/31/2021,13:45,,,40.81479,-73.93614,"(40.81479, -73.93614)",WEST 138 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442760,Sedan,Sedan,,, +07/31/2021,18:26,BROOKLYN,11249,40.70154,-73.963875,"(40.70154, -73.963875)",KENT AVENUE,KEAP STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442993,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,6:45,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441795,Sedan,,,, +07/16/2021,13:00,QUEENS,11365,40.735924,-73.78534,"(40.735924, -73.78534)",,,67-35B 186 LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442393,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,23:05,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442043,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,18:48,,,40.8421,-73.92624,"(40.8421, -73.92624)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4442063,Lift Boom,Sedan,,, +07/15/2021,17:56,BROOKLYN,11234,40.611637,-73.91287,"(40.611637, -73.91287)",STRICKLAND AVENUE,EAST 60 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441848,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,0:10,,,40.627827,-73.89021,"(40.627827, -73.89021)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441477,Sedan,,,, +07/28/2021,17:20,,,40.75426,-73.74334,"(40.75426, -73.74334)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441715,Pick-up Truck,Sedan,,, +07/30/2021,12:25,QUEENS,11354,40.772675,-73.833595,"(40.772675, -73.833595)",,,130-30 28 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441843,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/11/2021,2:39,,,40.656914,-73.95315,"(40.656914, -73.95315)",WINTHROP STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4442704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/29/2021,18:04,MANHATTAN,10032,40.84105,-73.94469,"(40.84105, -73.94469)",RIVERSIDE DRIVE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/31/2021,19:20,,,40.74006,-73.789894,"(40.74006, -73.789894)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442940,Sedan,Sedan,,, +07/29/2021,10:50,QUEENS,11434,40.684277,-73.78302,"(40.684277, -73.78302)",FOCH BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Tow Hitch Defective,Tow Hitch Defective,Unspecified,Unspecified,Unspecified,4441754,Station Wagon/Sport Utility Vehicle,TRAILER,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/28/2021,8:30,,,40.60855,-74.13216,"(40.60855, -74.13216)",BRADLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441988,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,0:37,BROOKLYN,11209,40.61283,-74.03365,"(40.61283, -74.03365)",4 AVENUE,100 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441244,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,23:57,,,40.86258,-73.925385,"(40.86258, -73.925385)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,2:00,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4441771,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,15:30,BROOKLYN,11224,40.575806,-73.9922,"(40.575806, -73.9922)",MERMAID AVENUE,WEST 25 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441459,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,11:23,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4441916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,0:33,BRONX,10457,40.84286,-73.893486,"(40.84286, -73.893486)",EAST 175 STREET,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441542,Station Wagon/Sport Utility Vehicle,SCOOTER,,, +07/27/2021,21:43,MANHATTAN,10027,40.811253,-73.949646,"(40.811253, -73.949646)",,,237 WEST 127 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442048,Sedan,,,, +07/31/2021,2:15,QUEENS,11368,40.74788,-73.85731,"(40.74788, -73.85731)",108 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442507,Sedan,Sedan,,, +07/08/2021,8:00,MANHATTAN,10029,40.788265,-73.93893,"(40.788265, -73.93893)",,,425 EAST 105 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441975,Sedan,,,, +07/31/2021,22:22,QUEENS,11377,40.7497,-73.902565,"(40.7497, -73.902565)",60 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4442214,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,20:12,BROOKLYN,11223,40.600082,-73.96591,"(40.600082, -73.96591)",OCEAN PARKWAY,AVENUE T,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441803,Convertible,,,, +07/26/2021,4:49,,,40.841133,-73.924,"(40.841133, -73.924)",PLIMPTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442065,Sedan,Sedan,,, +07/31/2021,0:50,BROOKLYN,11204,40.607243,-73.98726,"(40.607243, -73.98726)",STILLWELL AVENUE,AVENUE P,,1,0,0,0,1,0,0,0,Unspecified,,,,,4442197,E-Bike,,,, +07/24/2021,18:50,QUEENS,11434,40.686394,-73.782455,"(40.686394, -73.782455)",MARSDEN STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4442082,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/30/2021,8:00,,,,,,WHITESTONE EXPRESSWAY,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4442335,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,9:23,MANHATTAN,10034,40.870415,-73.91515,"(40.870415, -73.91515)",WEST 216 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442488,Sedan,,,, +07/28/2021,16:40,BRONX,10451,40.82485,-73.911316,"(40.82485, -73.911316)",EAST 163 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4441490,Sedan,Sedan,,, +07/05/2021,4:35,QUEENS,11370,40.761215,-73.886406,"(40.761215, -73.886406)",30 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443171,Bus,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,12:53,QUEENS,11385,40.712757,-73.902,"(40.712757, -73.902)",,,61-01 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441702,Sedan,,,, +07/27/2021,10:25,BRONX,10473,40.823536,-73.868416,"(40.823536, -73.868416)",,,925 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442926,Sedan,,,, +07/31/2021,18:34,QUEENS,11416,40.68588,-73.838875,"(40.68588, -73.838875)",,,101-51 104 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442832,Sedan,Sedan,,, +07/31/2021,3:00,BRONX,10461,40.836792,-73.84669,"(40.836792, -73.84669)",ZEREGA AVENUE,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4442303,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,14:00,,,40.78356,-73.82449,"(40.78356, -73.82449)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442353,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,16:35,BROOKLYN,11236,40.64932,-73.904175,"(40.64932, -73.904175)",EAST 99 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441917,Station Wagon/Sport Utility Vehicle,Forklift,,, +07/29/2021,18:18,BROOKLYN,11228,40.625576,-74.01927,"(40.625576, -74.01927)",7 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441738,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,14:18,,,40.69754,-73.98312,"(40.69754, -73.98312)",GOLD STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441902,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,7:10,,,40.724552,-73.72452,"(40.724552, -73.72452)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4439920,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,8:30,,,40.74121,-73.84277,"(40.74121, -73.84277)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442070,Convertible,Tractor Truck Diesel,,, +07/28/2021,13:40,MANHATTAN,10016,40.744556,-73.983185,"(40.744556, -73.983185)",PARK AVENUE SOUTH,EAST 30 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441517,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,11:35,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,CONNER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442683,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,16:16,BROOKLYN,11223,40.59064,-73.97514,"(40.59064, -73.97514)",86 STREET,LAKE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442254,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,20:20,,,40.66495,-73.92288,"(40.66495, -73.92288)",EAST 98 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442642,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,12:42,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442340,Pick-up Truck,Tractor Truck Gasoline,,, +07/29/2021,8:30,,,40.760216,-73.89826,"(40.760216, -73.89826)",30 AVENUE,BOODY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442656,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,22:00,,,40.508713,-74.248055,"(40.508713, -74.248055)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442857,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,16:15,QUEENS,11375,40.71513,-73.83055,"(40.71513, -73.83055)",,,118-35 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443066,Sedan,,,, +07/30/2021,12:00,,,40.85162,-73.8265,"(40.85162, -73.8265)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,19:33,BROOKLYN,11230,40.623962,-73.97245,"(40.623962, -73.97245)",BAY PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442464,Sedan,Sedan,,, +07/31/2021,13:20,,,40.67549,-73.93885,"(40.67549, -73.93885)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442533,Sedan,,,, +07/24/2021,17:15,,,40.707752,-73.94666,"(40.707752, -73.94666)",MESEROLE STREET,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442961,Sedan,E-Bike,,, +07/31/2021,9:43,,,40.682667,-74.0023,"(40.682667, -74.0023)",HICKS STREET,CARROLL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442445,Sedan,Sedan,,, +07/27/2021,21:50,,,40.652557,-73.96043,"(40.652557, -73.96043)",EAST 21 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442288,Sedan,,,, +07/31/2021,19:55,MANHATTAN,10039,40.829163,-73.93727,"(40.829163, -73.93727)",8 AVENUE,WEST 155 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4442743,Sedan,Sedan,,, +07/23/2021,15:25,,,40.73453,-73.99227,"(40.73453, -73.99227)",EAST 13 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442369,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/27/2021,19:25,BROOKLYN,11221,40.69375,-73.93079,"(40.69375, -73.93079)",,,1107 DE KALB AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442606,Bus,Sedan,,, +07/31/2021,11:31,BROOKLYN,11226,40.63904,-73.9611,"(40.63904, -73.9611)",,,495 EAST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442320,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,8:24,BROOKLYN,11221,40.68434,-73.93534,"(40.68434, -73.93534)",,,334 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4442637,Sedan,Sedan,Sedan,Sedan, +07/27/2021,23:54,MANHATTAN,10036,,,,WEST 42 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4442527,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,12:12,BROOKLYN,11249,40.707214,-73.96615,"(40.707214, -73.96615)",,,71 DIVISION AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443009,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,15:08,BRONX,10473,40.81824,-73.87001,"(40.81824, -73.87001)",SEWARD AVENUE,METCALF AVENUE,,2,0,1,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4441838,Motorbike,,,, +07/28/2021,16:50,BROOKLYN,11220,40.64292,-74.00069,"(40.64292, -74.00069)",,,824 46 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441788,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/30/2021,13:00,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442791,Sedan,Sedan,,, +07/29/2021,20:30,,,40.64592,-74.02384,"(40.64592, -74.02384)",58 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442407,Sedan,,,, +07/29/2021,16:00,QUEENS,11426,40.726547,-73.726265,"(40.726547, -73.726265)",242 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441885,Sedan,,,, +07/30/2021,19:25,BRONX,10458,40.86834,-73.891884,"(40.86834, -73.891884)",,,209 MIRIAM STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,11:30,BRONX,10468,40.85934,-73.90448,"(40.85934, -73.90448)",EVELYN PLACE,DAVIDSON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4441373,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/28/2021,7:00,QUEENS,11372,40.754707,-73.87575,"(40.754707, -73.87575)",92 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4441392,Bike,,,, +07/31/2021,18:00,BRONX,10473,40.813046,-73.86007,"(40.813046, -73.86007)",THIERIOT AVENUE,PATTERSON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4442954,Sedan,Sedan,Sedan,, +07/31/2021,14:55,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",HYLAN BOULEVARD,NELSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442134,Sedan,Motorcycle,,, +07/28/2021,12:00,BROOKLYN,11233,40.677776,-73.91564,"(40.677776, -73.91564)",,,1138 HERKIMER STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4441606,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,14:10,,,40.80964,-73.947845,"(40.80964, -73.947845)",7 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4442364,Flat Bed,FEDEX TRUC,,, +07/26/2021,10:14,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442097,Tractor Truck Diesel,Sedan,,, +07/29/2021,23:15,,,40.70919,-73.99513,"(40.70919, -73.99513)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441928,Sedan,,,, +07/29/2021,15:11,BRONX,10462,40.835167,-73.857185,"(40.835167, -73.857185)",,,1959 MCGRAW AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4441833,Sedan,PK,,, +07/28/2021,2:10,QUEENS,11385,40.71042,-73.85964,"(40.71042, -73.85964)",WOODHAVEN BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4441472,Sedan,,,, +07/29/2021,0:00,BROOKLYN,11237,40.704823,-73.92459,"(40.704823, -73.92459)",IRVING AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441960,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/28/2021,21:59,BROOKLYN,11238,40.675926,-73.95608,"(40.675926, -73.95608)",FRANKLIN AVENUE,SAINT MARKS AVENUE,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4441686,Sedan,Bike,,, +07/24/2021,21:30,QUEENS,11369,0,0,"(0.0, 0.0)",,,32-25 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441943,Sedan,Sedan,,, +07/30/2021,12:38,MANHATTAN,10002,40.710083,-73.99411,"(40.710083, -73.99411)",MARKET SLIP,WATER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inexperience,,,,4442229,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,8:00,QUEENS,11373,40.740894,-73.87974,"(40.740894, -73.87974)",,,83-13 BROADWAY,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442166,Sedan,E-Scooter,,, +07/12/2021,18:23,BROOKLYN,11234,40.641186,-73.91956,"(40.641186, -73.91956)",RALPH AVENUE,PRESTON COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441965,Sedan,Sedan,Sedan,, +07/29/2021,8:15,BROOKLYN,11221,40.687355,-73.9183,"(40.687355, -73.9183)",BROADWAY,CORNELIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441810,Sedan,,,, +07/31/2021,14:00,,,40.760662,-73.814,"(40.760662, -73.814)",SANFORD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442330,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,9:55,BRONX,10460,40.83609,-73.86522,"(40.83609, -73.86522)",,,1425 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441359,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +07/29/2021,0:00,,,40.812737,-73.93762,"(40.812737, -73.93762)",EAST 135 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4441568,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,10:50,BRONX,10455,40.81676,-73.917465,"(40.81676, -73.917465)",EAST 150 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441621,Convertible,Sedan,,, +07/31/2021,6:00,QUEENS,11423,40.718136,-73.75726,"(40.718136, -73.75726)",FRANCIS LEWIS BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442359,Sedan,,,, +07/29/2021,17:38,BRONX,10451,40.81396,-73.928185,"(40.81396, -73.928185)",EAST 140 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442270,PK,Sedan,,, +07/28/2021,0:00,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441381,Sedan,,,, +07/22/2021,8:40,BROOKLYN,11249,40.717022,-73.96527,"(40.717022, -73.96527)",KENT AVENUE,NORTH 1 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4442989,Sedan,Sedan,Sedan,Sedan, +07/28/2021,17:37,,,40.860996,-73.89643,"(40.860996, -73.89643)",EAST 188 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441506,Sedan,Sedan,,, +07/31/2021,17:44,QUEENS,11103,40.759346,-73.91981,"(40.759346, -73.91981)",BROADWAY,38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442471,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +07/29/2021,20:00,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4442003,Sedan,Box Truck,,, +07/29/2021,17:25,,,40.701813,-73.80888,"(40.701813, -73.80888)",146 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441748,Dump,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,13:10,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442391,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +07/31/2021,6:00,QUEENS,11370,40.76501,-73.8871,"(40.76501, -73.8871)",ASTORIA BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442102,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,6:30,BROOKLYN,11207,40.671204,-73.90051,"(40.671204, -73.90051)",PITKIN AVENUE,HINSDALE STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442020,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/30/2021,12:50,BROOKLYN,11221,40.68798,-73.91943,"(40.68798, -73.91943)",,,1446 BROADWAY,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4442626,Sedan,E-Scooter,,, +07/28/2021,8:50,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PROSPECT STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4441778,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,1:30,QUEENS,11368,40.754456,-73.85559,"(40.754456, -73.85559)",,,112-08 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441697,Bus,Sedan,,, +07/27/2021,23:05,BROOKLYN,11236,40.63787,-73.90963,"(40.63787, -73.90963)",EAST 85 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441897,Bike,Sedan,,, +07/28/2021,20:00,QUEENS,11377,40.746426,-73.895424,"(40.746426, -73.895424)",ROOSEVELT AVENUE,70 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4441467,Sedan,Sedan,,, +07/30/2021,22:00,QUEENS,11373,40.74217,-73.88071,"(40.74217, -73.88071)",,,84-11 ELMHURST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442161,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/29/2021,8:40,BROOKLYN,11214,40.60997,-74.00343,"(40.60997, -74.00343)",17 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,13:35,QUEENS,11423,40.72172,-73.76172,"(40.72172, -73.76172)",,,87-50 204 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4442396,Sedan,,,, +07/29/2021,16:40,BROOKLYN,11210,40.629505,-73.94416,"(40.629505, -73.94416)",FLATBUSH AVENUE,AVENUE I,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4441971,Sedan,,,, +07/28/2021,14:00,MANHATTAN,10001,40.749718,-73.9935,"(40.749718, -73.9935)",,,252 WEST 31 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4441511,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,23:15,BRONX,10465,40.827377,-73.81404,"(40.827377, -73.81404)",,,3232 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441865,Sedan,,,, +07/31/2021,11:56,BROOKLYN,11236,40.6349,-73.91892,"(40.6349, -73.91892)",,,1690 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442889,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,13:00,BROOKLYN,11231,40.67617,-74.006966,"(40.67617, -74.006966)",,,465 COLUMBIA STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4443151,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,13:56,BROOKLYN,11236,40.637856,-73.899536,"(40.637856, -73.899536)",,,1353 EAST 93 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4442201,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,18:15,STATEN ISLAND,10306,40.567703,-74.112526,"(40.567703, -74.112526)",,,2626 HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442119,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,1:15,BROOKLYN,11236,40.639053,-73.881584,"(40.639053, -73.881584)",EAST 108 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442058,Sedan,Sedan,Pick-up Truck,, +07/21/2021,11:30,MANHATTAN,10014,40.730083,-74.004814,"(40.730083, -74.004814)",,,21 7 AVENUE SOUTH,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442374,,,,, +07/22/2021,20:15,QUEENS,11106,40.761967,-73.93212,"(40.761967, -73.93212)",,,21-25 34 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442440,Sedan,Bike,,, +07/30/2021,16:25,MANHATTAN,10019,40.76529,-73.979485,"(40.76529, -73.979485)",,,171 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442841,Bike,Sedan,,, +07/29/2021,22:00,,,40.61029,-74.13167,"(40.61029, -74.13167)",,,144 PURDY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441997,Sedan,,,, +07/29/2021,14:03,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442029,Sedan,Tractor Truck Diesel,,, +07/31/2021,23:15,MANHATTAN,10029,40.78833,-73.94913,"(40.78833, -73.94913)",,,1565 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442947,Motorcycle,,,, +07/28/2021,11:30,BROOKLYN,11225,40.667286,-73.96173,"(40.667286, -73.96173)",,,921 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4442712,Carry All,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,17:00,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4442615,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/29/2021,21:40,,,40.753605,-73.9871,"(40.753605, -73.9871)",WEST 39 STREET,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4442299,Station Wagon/Sport Utility Vehicle,Bike,,, +07/31/2021,21:00,QUEENS,11422,40.66411,-73.74045,"(40.66411, -73.74045)",BROOKVILLE BOULEVARD,142 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442218,Sedan,,,, +07/29/2021,14:15,MANHATTAN,10017,40.75524,-73.97328,"(40.75524, -73.97328)",LEXINGTON AVENUE,EAST 48 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4442914,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,15:35,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442087,Sedan,,,, +07/31/2021,11:55,MANHATTAN,10027,40.81278,-73.95188,"(40.81278, -73.95188)",,,10 SAINT NICHOLAS TERRACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4442798,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +06/18/2021,13:45,BROOKLYN,11225,40.655632,-73.95987,"(40.655632, -73.95987)",PARKSIDE AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443078,,,,, +07/17/2021,0:45,QUEENS,11372,40.747658,-73.883736,"(40.747658, -73.883736)",,,82-11 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443125,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,19:57,BROOKLYN,11229,40.6107,-73.9534,"(40.6107, -73.9534)",,,2000 KINGS HIGHWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442250,Sedan,E-Bike,,, +07/29/2021,12:10,,,40.624706,-74.13644,"(40.624706, -74.13644)",,,1435 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441992,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,7:44,BROOKLYN,11232,40.65203,-74.0052,"(40.65203, -74.0052)",,,436 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442386,Sedan,,,, +07/30/2021,9:55,MANHATTAN,10010,40.73883,-73.983154,"(40.73883, -73.983154)",EAST 23 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4441860,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,16:30,QUEENS,11385,40.70295,-73.858536,"(40.70295, -73.858536)",MYRTLE AVENUE,82 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4442556,Sedan,,,, +06/25/2021,13:45,,,40.679565,-73.93436,"(40.679565, -73.93436)",LEWIS AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442597,AMBULANCE,Sedan,,, +07/28/2021,19:22,BRONX,10468,40.86431,-73.901474,"(40.86431, -73.901474)",,,30 WEST 190 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441821,Sedan,,,, +07/29/2021,14:55,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4441742,Sedan,Sedan,,, +07/30/2021,22:35,QUEENS,11361,,,,39 AVENUE,CORPORAL KENNEDY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442763,Sedan,,,, +07/29/2021,12:00,BROOKLYN,11239,40.65264,-73.876785,"(40.65264, -73.876785)",,,510 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442055,Sedan,,,, +07/30/2021,19:31,BRONX,10456,40.8313,-73.90074,"(40.8313, -73.90074)",EAST 169 STREET,CLINTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442283,E-Bike,E-Bike,,, +07/30/2021,11:51,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4442114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/31/2021,2:31,MANHATTAN,10002,40.721462,-73.98853,"(40.721462, -73.98853)",STANTON STREET,ORCHARD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4442234,E-Bike,,,, +07/29/2021,15:15,,,40.82077,-73.95459,"(40.82077, -73.95459)",WEST 136 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442738,Sedan,,,, +07/05/2021,1:15,,,40.693073,-73.7733,"(40.693073, -73.7733)",LINDEN BOULEVARD,176 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4442982,Motorcycle,,,, +07/28/2021,15:00,STATEN ISLAND,10304,40.60817,-74.08559,"(40.60817, -74.08559)",,,430 HANOVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442423,Sedan,,,, +07/28/2021,6:04,QUEENS,11418,40.69951,-73.82096,"(40.69951, -73.82096)",,,130-15 89 ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442822,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +07/31/2021,2:00,,,40.582874,-73.98053,"(40.582874, -73.98053)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4443034,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/29/2021,12:50,BROOKLYN,11211,40.71327,-73.96209,"(40.71327, -73.96209)",BEDFORD AVENUE,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443015,Sedan,Box Truck,,, +07/29/2021,14:01,BRONX,10461,40.84589,-73.8263,"(40.84589, -73.8263)",,,3439 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4441853,Sedan,Carry All,,, +07/27/2021,12:00,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442186,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,23:50,QUEENS,11373,40.739243,-73.87116,"(40.739243, -73.87116)",,,52-08 92 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442514,Sedan,Sedan,,, +07/29/2021,11:41,BROOKLYN,11215,40.66495,-73.993355,"(40.66495, -73.993355)",17 STREET,4 AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442602,Box Truck,E-Scooter,,, +07/29/2021,7:21,MANHATTAN,10065,40.76468,-73.9643,"(40.76468, -73.9643)",3 AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4441597,Station Wagon/Sport Utility Vehicle,Bus,,, +07/30/2021,18:43,BROOKLYN,11236,40.633984,-73.889404,"(40.633984, -73.889404)",,,9706 SEAVIEW AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442151,,,,, +07/30/2021,19:00,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442787,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,21:38,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,,,,4442678,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,8:45,,,40.858868,-73.89113,"(40.858868, -73.89113)",EAST 188 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4442771,Sedan,E-Bike,,, +07/24/2021,22:00,BROOKLYN,11206,40.703373,-73.93764,"(40.703373, -73.93764)",BUSHWICK AVENUE,VARET STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4442966,E-Scooter,,,, +07/27/2021,17:52,BRONX,10455,40.814934,-73.91496,"(40.814934, -73.91496)",EAST 149 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442266,Sedan,E-Scooter,,, +07/31/2021,3:00,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,KINGSTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442562,Sedan,Sedan,,, +07/30/2021,0:32,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441939,Sedan,Sedan,,, +07/28/2021,5:10,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4441309,Dump,Sedan,,, +07/01/2021,15:35,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4442751,Pick-up Truck,Sedan,,, +07/29/2021,11:19,BROOKLYN,11234,40.627987,-73.93078,"(40.627987, -73.93078)",SCHENECTADY AVENUE,AVENUE J,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4441674,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,8:30,QUEENS,11378,40.728127,-73.88945,"(40.728127, -73.88945)",,,57-10 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442591,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,6:30,QUEENS,11101,40.73634,-73.93266,"(40.73634, -73.93266)",GREENPOINT AVENUE,GALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441924,Box Truck,Sedan,,, +07/28/2021,16:28,,,40.792362,-73.96418,"(40.792362, -73.96418)",WEST 97 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441448,Sedan,,,, +07/31/2021,23:15,,,40.733147,-74.00587,"(40.733147, -74.00587)",BEDFORD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442810,Taxi,Sedan,,, +07/30/2021,13:50,QUEENS,11413,40.677086,-73.73887,"(40.677086, -73.73887)",FRANCIS LEWIS BOULEVARD,133 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4441892,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,22:38,STATEN ISLAND,10307,40.513195,-74.24834,"(40.513195, -74.24834)",,,5378 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4441632,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/31/2021,13:40,STATEN ISLAND,10305,40.595497,-74.084076,"(40.595497, -74.084076)",LACONIA AVENUE,QUINTARD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442129,Sedan,Pick-up Truck,,, +07/28/2021,0:00,QUEENS,11414,40.670708,-73.85352,"(40.670708, -73.85352)",,,80-98 LINDEN BOULEVARD,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unsafe Speed,,,,4441577,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,11:00,QUEENS,11426,40.72998,-73.7269,"(40.72998, -73.7269)",240 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442417,Sedan,Sedan,,, +07/30/2021,10:20,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442146,Sedan,Sedan,,, +07/29/2021,20:21,,,40.786118,-73.804085,"(40.786118, -73.804085)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442325,Sedan,Sedan,,, +07/30/2021,17:42,MANHATTAN,10021,40.767803,-73.95601,"(40.767803, -73.95601)",EAST 72 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441956,Bus,Box Truck,,, +07/31/2021,22:17,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4442784,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,22:20,BROOKLYN,11208,40.684647,-73.8687,"(40.684647, -73.8687)",FULTON STREET,NICHOLS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442035,Sedan,,,, +07/31/2021,14:25,MANHATTAN,10003,40.724556,-73.99152,"(40.724556, -73.99152)",,,11 EAST 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442574,Sedan,,,, +07/30/2021,13:00,BROOKLYN,11232,40.655636,-74.00513,"(40.655636, -74.00513)",,,160 35 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442401,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,14:30,,,40.793552,-73.945335,"(40.793552, -73.945335)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4441528,Sedan,Bus,,, +07/20/2021,14:10,BRONX,10475,40.882965,-73.82563,"(40.882965, -73.82563)",,,2310 TILLOTSON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441864,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,21:00,MANHATTAN,10030,40.817505,-73.94494,"(40.817505, -73.94494)",,,282 WEST 137 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442007,Sedan,,,, +07/29/2021,19:50,MANHATTAN,10021,40.771103,-73.96383,"(40.771103, -73.96383)",PARK AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441782,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,4:16,STATEN ISLAND,10301,40.645206,-74.09389,"(40.645206, -74.09389)",,,644 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4442433,Sedan,,,, +07/27/2021,17:47,,,40.81782,-73.915276,"(40.81782, -73.915276)",3 AVENUE,EAST 152 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442846,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,2:30,BRONX,10469,40.871708,-73.84371,"(40.871708, -73.84371)",,,3118 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442616,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,10:00,BROOKLYN,11239,,,,,,200 Bethel Loop,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442024,Sedan,Sedan,,, +07/28/2021,13:55,MANHATTAN,10029,40.79829,-73.94082,"(40.79829, -73.94082)",,,171 EAST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441551,Sedan,Sedan,,, +07/29/2021,18:02,QUEENS,11429,40.703384,-73.741684,"(40.703384, -73.741684)",MURDOCK AVENUE,NASHVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441743,Sedan,Sedan,,, +07/28/2021,11:00,BROOKLYN,11203,40.64166,-73.93705,"(40.64166, -73.93705)",EAST 42 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441875,Sedan,Sedan,,, +07/29/2021,4:14,QUEENS,11360,40.779007,-73.78211,"(40.779007, -73.78211)",,,209-16 23 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443136,Sedan,,,, +07/31/2021,4:01,,,40.741356,-73.989136,"(40.741356, -73.989136)",EAST 23 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4442498,Bus,,,, +07/29/2021,4:30,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4441480,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,7:02,,,40.630066,-74.10912,"(40.630066, -74.10912)",FOREST AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442090,Convertible,,,, +07/30/2021,2:00,MANHATTAN,10018,40.754093,-73.99209,"(40.754093, -73.99209)",8 AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442295,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,14:03,BROOKLYN,11215,40.666126,-73.9953,"(40.666126, -73.9953)",3 AVENUE,17 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442895,Van,Sedan,,, +07/29/2021,15:00,QUEENS,11414,40.655388,-73.83896,"(40.655388, -73.83896)",,,161-16 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441687,Sedan,Sedan,,, +07/30/2021,14:20,,,40.697407,-73.93601,"(40.697407, -73.93601)",BROADWAY,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442073,E-Bike,Tractor Truck Diesel,,, +07/31/2021,18:04,BROOKLYN,11234,40.622272,-73.93377,"(40.622272, -73.93377)",FLATLANDS AVENUE,EAST 40 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442205,Sedan,Sedan,,, +07/29/2021,8:41,,,,,,,,21-20 Newtown Road,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4442454,Sedan,,,, +07/31/2021,19:00,BROOKLYN,11238,40.683037,-73.96478,"(40.683037, -73.96478)",WASHINGTON AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4442222,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,14:00,BROOKLYN,11225,40.669636,-73.96195,"(40.669636, -73.96195)",PRESIDENT STREET,CLASSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442706,Sedan,Bike,,, +07/18/2021,13:20,MANHATTAN,10037,40.81359,-73.93967,"(40.81359, -73.93967)",,,40 WEST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442012,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,23:38,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",LINDEN BOULEVARD,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4442178,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/28/2021,16:28,BRONX,10457,40.8385,-73.90598,"(40.8385, -73.90598)",WEBSTER AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442062,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,8:01,BROOKLYN,11212,40.662495,-73.92168,"(40.662495, -73.92168)",,,166 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4442173,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,11:00,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,BLAKE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4442025,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,10:14,,,,,,WESTCHESTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442951,Sedan,Ambulance,,, +07/30/2021,1:20,,,40.688232,-73.933105,"(40.688232, -73.933105)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,,,4442601,Sedan,Sedan,Sedan,, +07/30/2021,13:34,,,40.827076,-73.85171,"(40.827076, -73.85171)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442943,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,2:20,STATEN ISLAND,10306,40.570747,-74.1281,"(40.570747, -74.1281)",TYSENS LANE,DALTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,13:00,MANHATTAN,10002,40.71949,-73.99231,"(40.71949, -73.99231)",,,127 FORSYTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4442215,Box Truck,,,, +07/26/2021,12:36,BROOKLYN,11233,40.682903,-73.92273,"(40.682903, -73.92273)",,,202 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442633,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,5:50,QUEENS,11385,40.706596,-73.908585,"(40.706596, -73.908585)",WOODWARD AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442552,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,23:30,MANHATTAN,10035,40.805058,-73.93904,"(40.805058, -73.93904)",EAST 125 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442834,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,16:30,QUEENS,11434,40.67542,-73.76358,"(40.67542, -73.76358)",135 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442083,Sedan,,,, +01/23/2022,14:02,MANHATTAN,10036,40.757584,-73.98213,"(40.757584, -73.98213)",,,1185 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497181,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,8:00,BROOKLYN,11223,40.590355,-73.971886,"(40.590355, -73.971886)",,,300 AVENUE X,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442246,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,11:20,MANHATTAN,10001,40.752132,-73.99125,"(40.752132, -73.99125)",,,235 WEST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441510,Station Wagon/Sport Utility Vehicle,Moped,,, +07/24/2021,20:38,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,4,2,0,0,0,0,4,2,Unsafe Speed,Failure to Yield Right-of-Way,,,,4442158,Sedan,Sedan,,, +07/28/2021,17:15,,,40.729168,-74.0012,"(40.729168, -74.0012)",BLEECKER STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442381,Bike,Bike,,, +07/30/2021,20:20,BROOKLYN,11236,40.64953,-73.91633,"(40.64953, -73.91633)",REMSEN AVENUE,AVENUE B,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441929,Sedan,Sedan,,, +07/31/2021,2:05,QUEENS,11433,40.69158,-73.79319,"(40.69158, -73.79319)",157 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4442777,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/27/2021,18:00,QUEENS,11374,40.728657,-73.863266,"(40.728657, -73.863266)",BOOTH STREET,63 DRIVE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4442183,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/25/2021,2:00,MANHATTAN,10034,40.85891,-73.922966,"(40.85891, -73.922966)",10 AVENUE,DYCKMAN STREET,,3,0,3,0,0,0,0,0,Unsafe Speed,,,,,4443021,Sedan,,,, +07/29/2021,18:10,QUEENS,11385,40.711082,-73.89923,"(40.711082, -73.89923)",,,61-68 MENAHAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442582,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:13,BRONX,10472,40.84822,-73.883125,"(40.84822, -73.883125)",EAST 182 STREET,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4442755,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,15:00,MANHATTAN,10009,40.72147,-73.9801,"(40.72147, -73.9801)",,,279 EAST 3 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4442569,Sedan,,,, +07/30/2021,23:20,MANHATTAN,10036,40.757256,-73.98583,"(40.757256, -73.98583)",BROADWAY,WEST 44 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442240,,,,, +07/28/2021,16:30,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4442051,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,18:30,QUEENS,11421,40.69756,-73.85275,"(40.69756, -73.85275)",PARK LANE SOUTH,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442829,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,17:00,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4443003,Sedan,,,, +07/31/2021,11:30,,,40.7615,-73.997826,"(40.7615, -73.997826)",WEST 43 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443152,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,6:00,,,,,,CONCOURSE VILLAGE EAST,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442279,Sedan,,,, +07/31/2021,14:30,BRONX,10467,40.866047,-73.87207,"(40.866047, -73.87207)",SOUTHERN BOULEVARD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4443027,Sedan,Pick-up Truck,,, +07/26/2021,8:00,BROOKLYN,11206,40.706093,-73.933525,"(40.706093, -73.933525)",BOGART STREET,HARRISON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442970,,,,, +07/30/2021,4:12,MANHATTAN,10038,40.71058,-74.007385,"(40.71058, -74.007385)",NASSAU STREET,ANN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Oversized Vehicle,,,,4442803,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/25/2021,15:48,,,40.77447,-73.9924,"(40.77447, -73.9924)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4442190,Sedan,Taxi,Sedan,, +07/24/2021,13:55,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442911,,,,, +07/31/2021,21:15,BROOKLYN,11236,40.652786,-73.91997,"(40.652786, -73.91997)",REMSEN AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442664,Sedan,Sedan,,, +07/28/2021,14:40,,,40.679035,-73.938515,"(40.679035, -73.938515)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442646,Box Truck,Sedan,,, +07/30/2021,7:20,,,40.59287,-73.96878,"(40.59287, -73.96878)",AVENUE W,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4441993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,23:45,BROOKLYN,11211,40.714066,-73.94938,"(40.714066, -73.94938)",METROPOLITAN AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4442568,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,8:45,MANHATTAN,10065,40.769222,-73.967316,"(40.769222, -73.967316)",EAST 68 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441642,Sedan,,,, +07/30/2021,9:06,BROOKLYN,11219,40.640713,-73.989784,"(40.640713, -73.989784)",,,4109 12 AVENUE,2,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442465,E-Bike,,,, +07/31/2021,22:35,BROOKLYN,11234,40.614918,-73.91468,"(40.614918, -73.91468)",EAST 61 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442261,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,1:05,STATEN ISLAND,10304,40.62186,-74.07207,"(40.62186, -74.07207)",BAY STREET,NORWOOD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4441330,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,13:09,,,40.590393,-74.1661,"(40.590393, -74.1661)",,,2385 RICHMOND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441558,Sedan,,,, +07/22/2021,14:00,QUEENS,11378,40.72282,-73.89498,"(40.72282, -73.89498)",CALDWELL AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442587,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,14:15,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442105,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,11:00,BROOKLYN,11237,40.709393,-73.9219,"(40.709393, -73.9219)",FLUSHING AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442998,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,14:45,BRONX,10455,40.8168,-73.89705,"(40.8168, -73.89705)",LONGWOOD AVENUE,FOX STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441409,Sedan,,,, +07/29/2021,18:53,,,40.624878,-73.96418,"(40.624878, -73.96418)",AVENUE J,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442321,Sedan,Bike,,, +07/30/2021,3:45,BRONX,10465,40.828518,-73.84119,"(40.828518, -73.84119)",BRUCKNER BOULEVARD,BRUSH AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4441907,Sedan,,,, +07/29/2021,9:45,BROOKLYN,11207,40.663925,-73.89961,"(40.663925, -73.89961)",SNEDIKER AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442039,Sedan,Tractor Truck Diesel,,, +07/25/2021,17:10,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442141,Sedan,Taxi,,, +07/28/2021,10:06,MANHATTAN,10036,40.75979,-73.98793,"(40.75979, -73.98793)",8 AVENUE,WEST 46 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4441565,Pick-up Truck,E-Scooter,,, +07/28/2021,9:30,MANHATTAN,10002,40.718304,-73.987404,"(40.718304, -73.987404)",DELANCEY STREET,NORFOLK STREET,,1,0,0,0,0,0,1,0,Accelerator Defective,Unspecified,,,,4441476,,,,, +07/28/2021,9:50,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441556,Sedan,Sedan,,, +07/30/2021,16:15,,,,,,KINGS HIGHWAY SOUTH,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441879,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,18:05,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441758,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/29/2021,2:03,BROOKLYN,11237,40.698536,-73.91788,"(40.698536, -73.91788)",KNICKERBOCKER AVENUE,BLEECKER STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4441524,Sedan,Sedan,,, +07/30/2021,0:08,BROOKLYN,11208,40.674255,-73.87989,"(40.674255, -73.87989)",PITKIN AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441766,Sedan,Sedan,,, +07/28/2021,15:18,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442929,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,7:00,,,40.78356,-73.82449,"(40.78356, -73.82449)",WHITESTONE EXPRESSWAY,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442334,Sedan,Bike,,, +07/28/2021,2:58,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4441204,Sedan,,,, +07/31/2021,22:00,BRONX,10455,40.821198,-73.91716,"(40.821198, -73.91716)",,,356 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442733,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,16:30,,,40.858112,-73.93299,"(40.858112, -73.93299)",BENNETT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442503,Sedan,,,, +07/29/2021,17:05,BROOKLYN,11206,40.700214,-73.94632,"(40.700214, -73.94632)",FLUSHING AVENUE,WHIPPLE STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4442992,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,13:05,,,40.8452,-73.916885,"(40.8452, -73.916885)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4441799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,12:25,QUEENS,11414,40.65569,-73.84004,"(40.65569, -73.84004)",161 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442169,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/30/2021,15:06,,,40.79275,-73.97132,"(40.79275, -73.97132)",WEST 94 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441896,Sedan,,,, +07/29/2021,7:26,QUEENS,11356,40.778614,-73.83887,"(40.778614, -73.83887)",130 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442348,Sedan,,,, +07/29/2021,17:17,MANHATTAN,10025,40.794075,-73.972206,"(40.794075, -73.972206)",,,2538 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441714,Sedan,,,, +07/30/2021,1:05,BROOKLYN,11207,40.663296,-73.88979,"(40.663296, -73.88979)",NEW LOTS AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442044,Sedan,,,, +07/26/2021,15:22,BROOKLYN,11222,40.730587,-73.95772,"(40.730587, -73.95772)",KENT STREET,FRANKLIN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441847,Box Truck,Sedan,,, +07/30/2021,22:00,STATEN ISLAND,10301,40.644756,-74.099724,"(40.644756, -74.099724)",RICHMOND TERRACE,TYSEN STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442484,Pick-up Truck,E-Bike,,, +07/30/2021,21:30,BROOKLYN,11221,40.687504,-73.91465,"(40.687504, -73.91465)",BUSHWICK AVENUE,WEIRFIELD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442077,Station Wagon/Sport Utility Vehicle,Moped,,, +07/31/2021,16:25,BROOKLYN,11226,40.6436,-73.94979,"(40.6436, -73.94979)",,,250 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,16:55,BROOKLYN,11235,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON BEACH AVENUE,BRIGHTON 5 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442307,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,14:35,BRONX,10469,40.87965,-73.84236,"(40.87965, -73.84236)",,,3636 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442650,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,14:10,,,40.868015,-73.89997,"(40.868015, -73.89997)",RESERVOIR AVENUE,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4442879,Sedan,Sedan,,, +07/25/2021,22:00,BRONX,10454,40.806057,-73.91779,"(40.806057, -73.91779)",,,541 EAST 137 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443099,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,18:50,QUEENS,11368,40.738373,-73.86008,"(40.738373, -73.86008)",99 STREET,57 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441934,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,23:00,BROOKLYN,11210,40.63858,-73.9396,"(40.63858, -73.9396)",,,747 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442629,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,10:00,BROOKLYN,11228,40.61458,-74.022804,"(40.61458, -74.022804)",7 AVENUE,92 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4442094,Pick-up Truck,,,, +07/26/2021,23:00,,,40.611008,-73.995186,"(40.611008, -73.995186)",77 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442694,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,15:07,BROOKLYN,11222,40.72705,-73.954704,"(40.72705, -73.954704)",,,183 GUERNSEY STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4442902,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,19:30,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",REMSEN AVENUE,FLATLANDS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4442210,Bike,,,, +07/28/2021,8:20,BRONX,10466,40.88881,-73.85578,"(40.88881, -73.85578)",,,811 EAST 228 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442614,Bus,Sedan,,, +07/30/2021,16:50,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",GRAND CONCOURSE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442863,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,20:20,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4442066,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,10:06,MANHATTAN,10011,40.748203,-74.005424,"(40.748203, -74.005424)",,,530 WEST 23 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442528,Box Truck,Bike,,, +07/30/2021,17:05,BRONX,10458,40.863163,-73.8942,"(40.863163, -73.8942)",EAST KINGSBRIDGE ROAD,BRIGGS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442898,Bike,,,, +07/28/2021,12:44,BROOKLYN,11226,40.647694,-73.95817,"(40.647694, -73.95817)",,,970 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442315,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,11:03,,,40.773113,-73.82786,"(40.773113, -73.82786)",28 ROAD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4442336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,12:54,STATEN ISLAND,10305,40.603626,-74.06931,"(40.603626, -74.06931)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442122,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,16:45,MANHATTAN,10029,40.793743,-73.93706,"(40.793743, -73.93706)",,,2180 1 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4442198,Sedan,constructi,,, +07/31/2021,15:28,,,40.585625,-73.954865,"(40.585625, -73.954865)",SHORE PARKWAY,EAST 14 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,17:09,,,40.719124,-73.791405,"(40.719124, -73.791405)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442439,Sedan,Sedan,,, +07/26/2021,11:00,,,,,,KING PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442489,Taxi,,,, +07/29/2021,16:45,BROOKLYN,11218,40.644382,-73.97402,"(40.644382, -73.97402)",,,179 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4442459,Box Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck +07/30/2021,21:15,,,40.831623,-73.95072,"(40.831623, -73.95072)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4443073,Sedan,Sedan,Sedan,Sedan, +07/29/2021,16:05,BRONX,10472,40.82817,-73.86265,"(40.82817, -73.86265)",LELAND AVENUE,WATSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441834,Sedan,Sedan,,, +07/31/2021,2:45,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",WATTS STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442807,Sedan,Sedan,,, +07/30/2021,16:40,BROOKLYN,11210,40.626545,-73.94101,"(40.626545, -73.94101)",EAST 36 STREET,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441948,Station Wagon/Sport Utility Vehicle,,,, +07/19/2021,20:10,MANHATTAN,10003,40.727814,-73.99116,"(40.727814, -73.99116)",,,25 COOPER SQUARE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4442547,Sedan,Bike,,, +07/31/2021,20:56,BRONX,10460,40.8324,-73.890724,"(40.8324, -73.890724)",JENNINGS STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442292,Sedan,E-Scooter,,, +07/27/2021,18:45,BROOKLYN,11206,40.70854,-73.93844,"(40.70854, -73.93844)",,,243 MESEROLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443005,Sedan,,,, +07/21/2021,10:30,,,,,,WARDS ISLAND,TRIBOROUGH BRIDGE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442154,Tow Truck / Wrecker,Bus,,, +07/29/2021,18:00,BROOKLYN,11215,40.67148,-73.97531,"(40.67148, -73.97531)",,,253 GARFIELD PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441961,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,17:00,BROOKLYN,11239,40.654343,-73.864204,"(40.654343, -73.864204)",,,11629 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442049,Sedan,Sedan,,, +07/27/2021,21:15,MANHATTAN,10035,40.802494,-73.9409,"(40.802494, -73.9409)",EAST 121 STREET,PARK AVENUE,,3,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4442825,Sedan,E-Bike,,, +07/28/2021,16:15,BROOKLYN,11234,40.610443,-73.93462,"(40.610443, -73.93462)",FILLMORE AVENUE,EAST 34 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4441966,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,20:47,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442759,Sedan,Sedan,,, +07/31/2021,21:05,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4442956,Sedan,Sedan,Sedan,, +07/22/2021,23:00,,,40.728363,-74.00282,"(40.728363, -74.00282)",AVENUE OF THE AMERICAS,WEST HOUSTON STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4442368,Station Wagon/Sport Utility Vehicle,MOTOR SCOO,,, +07/28/2021,9:46,BRONX,10455,40.81542,-73.9173,"(40.81542, -73.9173)",,,527 BERGEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441622,Station Wagon/Sport Utility Vehicle,GAS SCOOTE,,, +07/28/2021,8:19,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",UNIVERSITY AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441379,Sedan,,,, +07/28/2021,12:16,,,40.739082,-73.79345,"(40.739082, -73.79345)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4441385,Box Truck,Sedan,,, +07/25/2021,14:50,BROOKLYN,11211,40.717472,-73.949,"(40.717472, -73.949)",,,307 MEEKER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443051,Sedan,,,, +07/28/2021,14:50,QUEENS,11373,40.74184,-73.88101,"(40.74184, -73.88101)",BROADWAY,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441585,Bus,,,, +07/29/2021,19:00,QUEENS,11373,40.73574,-73.872665,"(40.73574, -73.872665)",90 STREET,56 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441794,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,12:00,QUEENS,11354,40.76961,-73.831505,"(40.76961, -73.831505)",31 ROAD,137 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441429,Sedan,,,, +07/30/2021,13:25,BROOKLYN,11215,40.664425,-73.98696,"(40.664425, -73.98696)",15 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4442400,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/28/2021,11:05,BRONX,10467,40.869984,-73.86931,"(40.869984, -73.86931)",,,3013 BARKER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441607,Sedan,Sedan,,, +07/27/2021,15:40,BROOKLYN,11226,40.64973,-73.96313,"(40.64973, -73.96313)",,,61 EAST 18 STREET,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4442287,Sedan,Bike,,, +07/28/2021,17:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441815,Sedan,Sedan,,, +07/28/2021,16:18,QUEENS,11422,40.65257,-73.72558,"(40.65257, -73.72558)",262 PLACE,149 ROAD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441466,Sedan,Sedan,,, +07/19/2021,16:00,MANHATTAN,10128,40.78263,-73.9512,"(40.78263, -73.9512)",EAST 92 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4443164,Sedan,Beverage Truck,,, +07/27/2021,22:45,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4442109,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/29/2021,6:30,,,40.646904,-74.01527,"(40.646904, -74.01527)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4441652,Sedan,Tractor Truck Diesel,,, +07/27/2021,20:00,MANHATTAN,10013,40.71793,-74.00099,"(40.71793, -74.00099)",LAFAYETTE STREET,WALKER STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442225,,,,, +07/29/2021,16:05,BRONX,10462,40.835026,-73.858086,"(40.835026, -73.858086)",PUGSLEY AVENUE,MCGRAW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441832,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,4:06,,,40.738728,-73.812164,"(40.738728, -73.812164)",LONG ISLAND EXPRESSWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4441354,Sedan,,,, +07/29/2021,15:30,QUEENS,11415,40.7096,-73.8318,"(40.7096, -73.8318)",,,82-37 GRENFELL STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441980,Sedan,,,, +07/28/2021,10:14,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4441587,Motorcycle,Sedan,,, +07/26/2021,10:50,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",86 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441911,Ambulance,Taxi,,, +07/31/2021,5:26,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",SAINT ANNS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4442274,Sedan,,,, +07/30/2021,14:05,,,40.78383,-73.97783,"(40.78383, -73.97783)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4442137,Tanker,Sedan,,, +07/29/2021,9:50,STATEN ISLAND,10306,40.556534,-74.12813,"(40.556534, -74.12813)",BUFFALO STREET,HYLAN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442120,Sedan,Bike,,, +07/31/2021,23:25,,,40.802074,-73.93407,"(40.802074, -73.93407)",EAST 124 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442833,Taxi,,,, +07/31/2021,22:50,,,40.692722,-73.72673,"(40.692722, -73.72673)",CROSS ISLAND PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4442363,Sedan,Sedan,Sedan,, +07/31/2021,12:00,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4442098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,23:23,BROOKLYN,11218,40.63329,-73.97644,"(40.63329, -73.97644)",AVENUE F,EAST 2 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,1:57,,,40.67786,-73.93863,"(40.67786, -73.93863)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4442557,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/29/2021,8:46,MANHATTAN,10017,40.752064,-73.97351,"(40.752064, -73.97351)",3 AVENUE,EAST 44 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441648,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,12:30,,,40.698246,-73.92997,"(40.698246, -73.92997)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441959,Box Truck,Sedan,,, +07/22/2021,0:30,QUEENS,11385,40.69832,-73.90011,"(40.69832, -73.90011)",SENECA AVENUE,NORMAN STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442592,E-Bike,,,, +07/29/2021,13:25,MANHATTAN,10013,40.715446,-73.997955,"(40.715446, -73.997955)",,,60 BAYARD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442230,Sedan,,,, +07/29/2021,15:15,,,40.730118,-73.86232,"(40.730118, -73.86232)",63 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441685,Sedan,Sedan,,, +07/14/2021,12:55,QUEENS,11370,40.757935,-73.89242,"(40.757935, -73.89242)",,,31-35 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441938,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/30/2021,21:15,BRONX,10455,40.816307,-73.90806,"(40.816307, -73.90806)",JACKSON AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4442273,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/28/2021,10:00,,,,,,Cross Bronx Expressway Service R,Harrod Avenue,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441360,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,12:30,,,40.764988,-73.82067,"(40.764988, -73.82067)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441428,Station Wagon/Sport Utility Vehicle,Bike,,, +07/26/2021,14:40,BROOKLYN,11218,40.638065,-73.97735,"(40.638065, -73.97735)",CORTELYOU ROAD,EAST 2 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442387,Sedan,,,, +07/31/2021,16:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442793,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,23:00,BROOKLYN,11218,40.6496,-73.96792,"(40.6496, -73.96792)",CATON AVENUE,ARGYLE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442314,Sedan,,,, +07/30/2021,10:35,STATEN ISLAND,10305,40.58229,-74.085625,"(40.58229, -74.085625)",,,528 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441822,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:31,BRONX,10451,40.817738,-73.924164,"(40.817738, -73.924164)",,,234 EAST 149 STREET,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4442284,Sedan,Sedan,,, +07/31/2021,23:05,QUEENS,11378,40.716793,-73.92155,"(40.716793, -73.92155)",47 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4442424,Motorbike,,,, +07/26/2021,8:40,,,40.72911,-74.01068,"(40.72911, -74.01068)",WEST STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442370,Sedan,Sedan,,, +07/30/2021,17:00,,,,,,TODT HILL ROAD,FLAGG PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442113,Sedan,,,, +07/31/2021,21:43,BROOKLYN,11229,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442251,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,15:27,STATEN ISLAND,10304,40.60574,-74.08353,"(40.60574, -74.08353)",SABLE AVENUE,MOSEL AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4442115,Sedan,,,, +07/30/2021,10:43,BROOKLYN,11217,40.687286,-73.97982,"(40.687286, -73.97982)",,,60 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4441827,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,7:45,BROOKLYN,11216,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442534,Sedan,,,, +07/28/2021,9:50,,,,,,MAPLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441458,Sedan,Sedan,,, +07/28/2021,17:20,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441543,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,18:00,QUEENS,11434,40.691017,-73.77464,"(40.691017, -73.77464)",175 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442792,Sedan,,,, +07/29/2021,15:50,,,40.561275,-74.198456,"(40.561275, -74.198456)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,20:06,BROOKLYN,11228,40.621098,-74.01377,"(40.621098, -74.01377)",,,7815 11 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441713,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/30/2021,18:50,BROOKLYN,11206,40.70152,-73.94052,"(40.70152, -73.94052)",,,13 HUMBOLDT STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443010,Pick-up Truck,Bike,Sedan,, +07/31/2021,23:22,BRONX,10457,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442965,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,16:10,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442081,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/28/2021,16:51,BROOKLYN,11219,40.644356,-73.995514,"(40.644356, -73.995514)",,,932 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441787,Taxi,,,, +07/28/2021,9:30,QUEENS,11373,40.735634,-73.87602,"(40.735634, -73.87602)",55 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441370,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,13:20,BROOKLYN,11234,40.613235,-73.92335,"(40.613235, -73.92335)",AVENUE S,EAST 53 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4441949,Sedan,Sedan,Bus,, +07/31/2021,18:50,,,40.665737,-73.75194,"(40.665737, -73.75194)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4442177,Sedan,,,, +07/29/2021,3:30,QUEENS,11422,40.682175,-73.733345,"(40.682175, -73.733345)",,,128-23 233 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,8:35,,,40.752098,-73.94425,"(40.752098, -73.94425)",21 STREET,QUEENS PLAZA SOUTH,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4441927,Sedan,Bike,,, +07/30/2021,19:00,MANHATTAN,10002,40.719933,-73.97879,"(40.719933, -73.97879)",,,415 EAST HOUSTON STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442812,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/28/2021,6:30,MANHATTAN,10032,40.835674,-73.946815,"(40.835674, -73.946815)",,,648 WEST 158 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441329,Bike,,,, +07/28/2021,20:30,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4441981,Sedan,,,, +07/26/2021,8:56,,,40.85735,-73.936584,"(40.85735, -73.936584)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442501,Sedan,,,, +07/28/2021,3:00,,,40.834995,-73.825,"(40.834995, -73.825)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4441918,Box Truck,,,, +07/28/2021,14:24,BROOKLYN,11209,40.617817,-74.03339,"(40.617817, -74.03339)",,,9406 3 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441450,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,23:00,BROOKLYN,11220,40.63347,-74.02102,"(40.63347, -74.02102)",BAY RIDGE AVENUE,5 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442108,Sedan,E-Bike,,, +07/29/2021,7:42,BRONX,10465,40.827152,-73.83698,"(40.827152, -73.83698)",,,915 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,1,0,Unspecified,,,,,4441849,Sedan,,,, +07/29/2021,17:55,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,108 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443036,Sedan,Sedan,,, +07/30/2021,10:50,BRONX,10452,40.83994,-73.9242,"(40.83994, -73.9242)",,,120 WEST 169 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442147,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,15:50,QUEENS,11356,40.784725,-73.85036,"(40.784725, -73.85036)",117 STREET,14 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4442329,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,8:10,,,40.712162,-73.83495,"(40.712162, -73.83495)",UNION TURNPIKE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441580,Sedan,Sedan,,, +07/31/2021,22:30,,,,,,NOSTRAND AVENUE,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4442253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,16:26,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4442034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,20:40,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",82 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442658,Sedan,,,, +07/27/2021,18:05,QUEENS,11413,40.675446,-73.759514,"(40.675446, -73.759514)",137 AVENUE,BENNETT STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442764,Sedan,Sedan,,, +07/24/2021,10:00,BROOKLYN,11211,0,0,"(0.0, 0.0)",OLIVE STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442990,Sedan,,,, +07/28/2021,17:47,,,40.639847,-73.91055,"(40.639847, -73.91055)",EAST 86 STREET,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4441438,Sedan,E-Bike,,, +07/28/2021,19:55,,,40.840927,-73.912704,"(40.840927, -73.912704)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442002,Station Wagon/Sport Utility Vehicle,Minicycle,,, +07/30/2021,16:00,BROOKLYN,11219,40.628235,-73.996414,"(40.628235, -73.996414)",,,5916 NEW UTRECHT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442745,Convertible,Carry All,,, +07/26/2021,16:53,BROOKLYN,11203,40.649452,-73.94077,"(40.649452, -73.94077)",EAST 39 STREET,SNYDER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4441871,Sedan,Sedan,,, +07/31/2021,17:00,MANHATTAN,10037,40.81551,-73.93564,"(40.81551, -73.93564)",,,2300 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442740,Sedan,,,, +07/29/2021,15:00,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4441757,Sedan,Sedan,,, +07/24/2021,12:36,,,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442479,Sedan,,,, +07/30/2021,9:41,QUEENS,11355,40.752052,-73.8307,"(40.752052, -73.8307)",CROMMELIN STREET,BLOSSOM AVENUE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4442347,Sedan,Sedan,,, +07/28/2021,15:06,,,40.899536,-73.89418,"(40.899536, -73.89418)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Reaction to Uninvolved Vehicle,,,,4441655,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,22:00,BROOKLYN,11249,40.70683,-73.9684,"(40.70683, -73.9684)",DIVISION AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443014,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,15:10,BROOKLYN,11223,40.605175,-73.963425,"(40.605175, -73.963425)",AVENUE R,EAST 9 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442244,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,19:45,QUEENS,11413,40.66546,-73.74724,"(40.66546, -73.74724)",,,230-02 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442513,Sedan,,,, +07/25/2021,14:40,BROOKLYN,11211,40.706394,-73.95411,"(40.706394, -73.95411)",,,11 HARRISON AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4442962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/28/2021,19:02,QUEENS,11422,40.65953,-73.73261,"(40.65953, -73.73261)",MEMPHIS AVENUE,254 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4441886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/30/2021,21:07,,,40.69426,-73.91036,"(40.69426, -73.91036)",JEFFERSON AVENUE,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442076,,,,, +01/23/2022,19:55,QUEENS,11422,40.682796,-73.732185,"(40.682796, -73.732185)",234 STREET,128 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496711,Sedan,Sedan,,, +07/28/2021,14:23,BROOKLYN,11229,40.606388,-73.952446,"(40.606388, -73.952446)",,,2019 AVENUE R,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4441492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/28/2021,15:00,,,,,,LIBERTY AVENUE,Liberty Ave,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441603,Sedan,Sedan,,, +07/31/2021,17:31,,,40.6666,-73.73177,"(40.6666, -73.73177)",246 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442208,Multi-Wheeled Vehicle,3-Door,,, +07/31/2021,9:16,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,19:00,BROOKLYN,11216,,,,,,642 ST MARKS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442561,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,0:59,,,,,,L.I.E / G.C.P CDR,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442140,Sedan,,,, +07/31/2021,0:45,,,40.720642,-73.943275,"(40.720642, -73.943275)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442913,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,21:19,MANHATTAN,10016,40.74074,-73.97601,"(40.74074, -73.97601)",,,333 EAST 29 STREET,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4441672,Sedan,E-Bike,,, +07/31/2021,12:17,,,40.67994,-73.941216,"(40.67994, -73.941216)",FULTON STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442945,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,2:42,,,,,,ASTORIA BOULEVARD SOUTH,GCP,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442451,Sedan,Sedan,,, +07/25/2021,1:35,,,40.7636,-73.77098,"(40.7636, -73.77098)",BELL BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441942,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,13:40,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4441639,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,10:00,,,40.736,-74.01004,"(40.736, -74.01004)",,,WEST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442375,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,12:37,QUEENS,11106,40.755753,-73.92801,"(40.755753, -73.92801)",,,33-06 36 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,17:00,QUEENS,11429,40.707306,-73.75122,"(40.707306, -73.75122)",FRANCIS LEWIS BOULEVARD,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442217,Sedan,Sedan,,, +07/09/2021,15:55,BROOKLYN,11213,40.66521,-73.93094,"(40.66521, -73.93094)",,,791 CROWN STREET,1,0,1,0,0,0,0,0,,,,,,4443079,Sedan,,,, +07/29/2021,13:45,MANHATTAN,10029,40.786724,-73.94822,"(40.786724, -73.94822)",,,1774 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441737,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,16:49,,,40.85681,-73.89818,"(40.85681, -73.89818)",EAST 183 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4441809,Dump,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,5:20,,,40.781853,-73.82523,"(40.781853, -73.82523)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4442326,Sedan,,,, +07/31/2021,11:05,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442783,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,15:10,BROOKLYN,11233,40.679245,-73.92864,"(40.679245, -73.92864)",,,1766 FULTON STREET,3,0,0,0,0,0,3,0,Following Too Closely,,,,,4442596,Bus,,,, +07/30/2021,18:55,BRONX,10469,40.871346,-73.84967,"(40.871346, -73.84967)",,,1277 BURKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441955,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,18:30,BRONX,10454,40.809395,-73.91954,"(40.809395, -73.91954)",,,485 EAST 140 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4441484,,,,, +07/21/2021,19:47,BROOKLYN,11233,40.679348,-73.93067,"(40.679348, -73.93067)",,,1711 FULTON STREET,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4442644,Sedan,Bike,Sedan,, +07/31/2021,7:04,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",BRUCKNER BOULEVARD,EAST 141 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4442277,Sedan,,,, +07/29/2021,17:45,BROOKLYN,11204,40.6087,-73.97404,"(40.6087, -73.97404)",DAHILL ROAD,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441913,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,17:59,MANHATTAN,10003,40.725105,-73.98878,"(40.725105, -73.98878)",,,66 EAST 3 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4442575,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,22:40,QUEENS,11378,40.71516,-73.90133,"(40.71516, -73.90133)",,,60-70 FRESH POND ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442581,Sedan,PK,,, +07/29/2021,21:47,,,40.709023,-73.798195,"(40.709023, -73.798195)",164 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441749,Sedan,Sedan,,, +07/30/2021,16:35,BROOKLYN,11207,40.689884,-73.90878,"(40.689884, -73.90878)",,,186 COVERT STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4441898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,13:00,MANHATTAN,10029,40.793816,-73.94012,"(40.793816, -73.94012)",EAST 111 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,,,,,4441987,E-Scooter,,,, +07/28/2021,16:15,QUEENS,11429,0,0,"(0.0, 0.0)",112 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441479,Sedan,Sedan,,, +07/31/2021,0:35,QUEENS,11368,40.750946,-73.87051,"(40.750946, -73.87051)",,,37-22 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442103,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,0:25,,,40.66535,-73.81695,"(40.66535, -73.81695)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,4441246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/31/2021,13:00,,,,,,MANHATTAN BR LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442823,Convertible,Sedan,,, +07/28/2021,16:00,MANHATTAN,10002,40.717648,-73.98868,"(40.717648, -73.98868)",ESSEX STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4441768,Sedan,Station Wagon/Sport Utility Vehicle,Bus,, +07/31/2021,11:49,BRONX,10454,40.804962,-73.923065,"(40.804962, -73.923065)",,,102 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4442278,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/30/2021,12:20,,,40.795326,-73.9713,"(40.795326, -73.9713)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4441854,Sedan,Sedan,,, +07/29/2021,23:50,BROOKLYN,11208,40.67264,-73.87281,"(40.67264, -73.87281)",CHESTNUT STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442045,Sedan,Sedan,,, +07/29/2021,18:40,STATEN ISLAND,10314,40.61332,-74.11945,"(40.61332, -74.11945)",VICTORY BOULEVARD,HODGES PLACE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4442429,Sedan,Pick-up Truck,,, +07/28/2021,11:35,BRONX,10460,40.842377,-73.86907,"(40.842377, -73.86907)",,,1711 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441394,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:40,BROOKLYN,11212,40.655197,-73.91354,"(40.655197, -73.91354)",,,560 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442185,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,21:59,BROOKLYN,11221,40.690132,-73.92953,"(40.690132, -73.92953)",,,742 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4442638,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,16:15,BROOKLYN,11234,40.63172,-73.919136,"(40.63172, -73.919136)",,,5912 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441970,E-Scooter,,,, +07/28/2021,17:30,BRONX,10457,40.85179,-73.90279,"(40.85179, -73.90279)",ANTHONY AVENUE,EAST BURNSIDE AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4441512,Taxi,Moped,,, +07/29/2021,11:05,BRONX,10467,40.887444,-73.878006,"(40.887444, -73.878006)",JEROME AVENUE,BAINBRIDGE AVENUE,,14,0,0,0,0,0,14,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4442152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +07/30/2021,8:13,MANHATTAN,10032,40.840195,-73.94307,"(40.840195, -73.94307)",WEST 165 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441839,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,15:35,QUEENS,11436,40.682358,-73.79376,"(40.682358, -73.79376)",148 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442788,Sedan,,,, +07/29/2021,19:35,BROOKLYN,11235,40.58207,-73.950066,"(40.58207, -73.950066)",SHORE BOULEVARD,DOVER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4441804,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/29/2021,12:50,,,40.71328,-73.76606,"(40.71328, -73.76606)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4441719,Sedan,Pick-up Truck,,, +07/29/2021,22:00,MANHATTAN,10023,40.78175,-73.98107,"(40.78175, -73.98107)",WEST 76 STREET,BROADWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442135,Sedan,Taxi,,, +07/21/2021,23:10,QUEENS,11372,40.747692,-73.89381,"(40.747692, -73.89381)",72 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443172,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,22:45,BROOKLYN,11215,40.666126,-73.9953,"(40.666126, -73.9953)",17 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4442408,Sedan,,,, +07/31/2021,19:23,BRONX,10458,40.862614,-73.890114,"(40.862614, -73.890114)",WEBSTER AVENUE,EAST 193 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4442886,Sedan,,,, +07/28/2021,5:12,QUEENS,11365,40.73858,-73.77457,"(40.73858, -73.77457)",,,197-80G PECK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4442441,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/29/2021,5:00,,,40.83923,-73.92579,"(40.83923, -73.92579)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442013,Chassis Cab,Sedan,,, +07/31/2021,13:25,,,40.789368,-73.78612,"(40.789368, -73.78612)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,6:04,,,40.738403,-73.93864,"(40.738403, -73.93864)",BORDEN AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4441923,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,10:00,BROOKLYN,11207,40.671295,-73.89997,"(40.671295, -73.89997)",,,1971 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442030,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,17:37,BRONX,10460,40.843166,-73.87786,"(40.843166, -73.87786)",,,2123 BOSTON ROAD,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4442716,Convertible,Bike,,, +07/31/2021,3:52,QUEENS,11417,40.67674,-73.843735,"(40.67674, -73.843735)",SUTTER AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4442167,Sedan,,,, +07/29/2021,8:30,BROOKLYN,11210,40.632298,-73.947624,"(40.632298, -73.947624)",,,2167 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4442300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +07/29/2021,8:51,BROOKLYN,11203,40.650948,-73.94668,"(40.650948, -73.94668)",CHURCH AVENUE,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4441881,Sedan,Sedan,,, +07/27/2021,22:00,BROOKLYN,11220,40.64166,-74.00916,"(40.64166, -74.00916)",,,624 53 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4442403,Sedan,Sedan,,, +07/18/2021,5:10,BROOKLYN,11201,40.69985,-73.991035,"(40.69985, -73.991035)",MIDDAGH STREET,CADMAN PLAZA WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441903,Sedan,,,, +07/31/2021,6:30,,,40.751682,-73.836006,"(40.751682, -73.836006)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442088,Sedan,Box Truck,,, +07/30/2021,9:45,,,,,,JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442071,Sedan,Sedan,,, +07/31/2021,21:40,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442360,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/28/2021,16:10,,,40.872494,-73.88147,"(40.872494, -73.88147)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441522,Sedan,Sedan,,, +07/31/2021,8:05,BRONX,10456,40.833286,-73.914085,"(40.833286, -73.914085)",EAST 167 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442145,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,13:40,BRONX,10457,40.85127,-73.88523,"(40.85127, -73.88523)",,,2263 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441859,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/15/2021,15:35,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",HOWARD AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442130,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,8:30,QUEENS,11418,40.69997,-73.81553,"(40.69997, -73.81553)",,,90-28 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441576,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,11:50,,,40.753395,-73.79243,"(40.753395, -73.79243)",UTOPIA PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442341,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,15:30,,,40.78028,-73.98153,"(40.78028, -73.98153)",WEST 74 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4441731,Bike,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,14:50,BRONX,10453,40.853474,-73.906456,"(40.853474, -73.906456)",EAST BURNSIDE AVENUE,WALTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442851,Sedan,Taxi,,, +07/30/2021,17:40,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442267,Sedan,Sedan,,, +07/31/2021,11:15,MANHATTAN,10029,40.793472,-73.93726,"(40.793472, -73.93726)",EAST 112 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4442157,Box Truck,Sedan,,, +07/28/2021,19:58,BROOKLYN,11234,40.6278,-73.915855,"(40.6278, -73.915855)",,,1106 EAST 73 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441502,Sedan,Sedan,,, +07/28/2021,16:04,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4442019,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,13:54,QUEENS,11435,40.70619,-73.80818,"(40.70619, -73.80818)",,,148-43 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442392,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +07/31/2021,17:15,,,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442239,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,16:25,BROOKLYN,11208,40.683346,-73.88651,"(40.683346, -73.88651)",JAMAICA AVENUE,CLEVELAND STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442056,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,3:38,QUEENS,11101,40.74413,-73.927055,"(40.74413, -73.927055)",38 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441468,Sedan,Sedan,,, +07/29/2021,6:00,MANHATTAN,10017,40.75425,-73.96899,"(40.75425, -73.96899)",EAST 49 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4441762,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,0:00,,,40.8133,-73.930405,"(40.8133, -73.930405)",EAST 138 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4441777,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,22:02,BROOKLYN,11209,40.632835,-74.02724,"(40.632835, -74.02724)",73 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4442621,Bike,Sedan,,, +07/28/2021,22:00,BROOKLYN,11231,40.674625,-74.00772,"(40.674625, -74.00772)",LORRAINE STREET,COLUMBIA STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4442446,Sedan,Sedan,Sedan,Sedan,Sedan +07/31/2021,12:30,MANHATTAN,10035,40.799522,-73.94164,"(40.799522, -73.94164)",,,127 EAST 117 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,Unspecified,Unspecified,,4442828,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle, +07/19/2021,8:00,MANHATTAN,10011,40.74595,-73.99802,"(40.74595, -73.99802)",WEST 24 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442546,Pick-up Truck,,,, +07/30/2021,4:10,QUEENS,11420,40.677334,-73.82548,"(40.677334, -73.82548)",LINDEN BOULEVARD,113 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4442162,Sedan,,,, +07/30/2021,11:45,QUEENS,11102,40.772617,-73.918144,"(40.772617, -73.918144)",,,24-60 28 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442469,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,15:00,BROOKLYN,11219,40.623817,-73.994804,"(40.623817, -73.994804)",,,1551 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442311,Sedan,Sedan,,, +07/31/2021,10:15,QUEENS,11368,40.748066,-73.8574,"(40.748066, -73.8574)",108 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4442508,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,3:50,,,40.696983,-73.935234,"(40.696983, -73.935234)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442607,Pick-up Truck,,,, +07/31/2021,23:53,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4443146,Sedan,Sedan,,, +07/31/2021,13:20,,,40.583725,-73.89372,"(40.583725, -73.89372)",AVIATION ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4442204,Sedan,,,, +07/28/2021,18:00,BROOKLYN,11212,40.665062,-73.90281,"(40.665062, -73.90281)",DUMONT AVENUE,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441596,Pick-up Truck,,,, +07/29/2021,5:45,QUEENS,11385,40.698753,-73.89726,"(40.698753, -73.89726)",DECATUR STREET,FOREST AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4441698,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,5:00,BROOKLYN,11212,40.67264,-73.907646,"(40.67264, -73.907646)",,,260 STONE AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4496634,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,6:40,BROOKLYN,11206,40.697853,-73.93325,"(40.697853, -73.93325)",BUSHWICK AVENUE,TROUTMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441527,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,23:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441866,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,9:00,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441998,Sedan,E-Bike,,, +07/31/2021,2:25,MANHATTAN,10010,40.743923,-73.99208,"(40.743923, -73.99208)",,,745 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4442497,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/30/2021,22:42,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442669,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,9:20,MANHATTAN,10128,40.784515,-73.94983,"(40.784515, -73.94983)",3 AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442772,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,7:30,QUEENS,11106,40.758175,-73.924065,"(40.758175, -73.924065)",34 AVENUE,35 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442466,Sedan,Bike,,, +07/27/2021,23:40,MANHATTAN,10002,40.715904,-73.995094,"(40.715904, -73.995094)",,,125 CANAL STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442221,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/29/2021,21:57,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442057,Sedan,E-Bike,,, +07/30/2021,11:19,,,40.712,-73.82546,"(40.712, -73.82546)",QUEENS BOULEVARD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4442880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,20:00,,,40.6775,-73.94701,"(40.6775, -73.94701)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4442565,Sedan,,,, +07/26/2021,14:03,MANHATTAN,10017,40.749157,-73.9727,"(40.749157, -73.9727)",EAST 41 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442919,AMBULANCE,Taxi,,, +07/28/2021,10:46,BROOKLYN,11215,40.66575,-73.97923,"(40.66575, -73.97923)",9 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441561,Sedan,Bike,,, +07/30/2021,21:04,QUEENS,11373,40.74107,-73.88,"(40.74107, -73.88)",SOUTH RAILROAD AVENUE,CORNISH AVENUE,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4441935,Moped,,,, +07/13/2021,10:56,BROOKLYN,11213,40.6727,-73.93635,"(40.6727, -73.93635)",TROY AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4442536,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,20:30,BRONX,10462,40.840412,-73.862686,"(40.840412, -73.862686)",,,1580 UNIONPORT ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442950,Sedan,,,, +07/31/2021,17:02,BRONX,10465,40.82486,-73.820465,"(40.82486, -73.820465)",,,3801 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442310,Sedan,Sedan,,, +07/26/2021,0:00,MANHATTAN,10011,40.73267,-73.999535,"(40.73267, -73.999535)",,,123 WAVERLY PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442371,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,16:00,BROOKLYN,11236,40.647068,-73.91492,"(40.647068, -73.91492)",,,330 EAST 89 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442172,Sedan,,,, +07/29/2021,23:20,BRONX,10470,40.90362,-73.85068,"(40.90362, -73.85068)",,,691 EAST 241 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4442639,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,19:20,,,40.747112,-73.96894,"(40.747112, -73.96894)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4442231,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,11:02,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4442997,Pick-up Truck,Pick-up Truck,,, +07/31/2021,3:05,BRONX,10469,40.875423,-73.86028,"(40.875423, -73.86028)",,,901 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442682,Sedan,,,, +07/29/2021,5:16,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441814,Sedan,Sedan,,, +07/31/2021,15:45,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442414,Sedan,Sedan,,, +07/30/2021,8:00,BROOKLYN,11210,40.63184,-73.95463,"(40.63184, -73.95463)",,,754 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442322,Sedan,,,, +07/29/2021,10:40,,,40.601444,-74.1935,"(40.601444, -74.1935)",,,1775 SOUTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441991,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,0:14,STATEN ISLAND,10301,40.623055,-74.11327,"(40.623055, -74.11327)",CLOVE ROAD,TYLER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4442432,Sedan,,,, +07/26/2021,16:44,,,40.68316,-73.93809,"(40.68316, -73.93809)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442600,Sedan,,,, +07/31/2021,12:16,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,14:48,BROOKLYN,11228,40.61405,-74.013916,"(40.61405, -74.013916)",13 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,19:30,,,40.82317,-73.9275,"(40.82317, -73.9275)",EAST 153 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442144,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,14:12,QUEENS,11372,40.74694,-73.89051,"(40.74694, -73.89051)",ROOSEVELT AVENUE,75 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441930,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/30/2021,13:00,QUEENS,11385,40.71092,-73.9204,"(40.71092, -73.9204)",,,1819 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442570,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,9:50,BRONX,10454,40.808807,-73.9107,"(40.808807, -73.9107)",JACKSON AVENUE,SAINT MARYS STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4441842,Sedan,Bike,,, +07/28/2021,23:49,,,40.757385,-73.98226,"(40.757385, -73.98226)",WEST 46 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441566,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,14:40,QUEENS,11412,40.69689,-73.74929,"(40.69689, -73.74929)",116 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442776,Sedan,Sedan,,, +07/30/2021,22:35,QUEENS,11420,40.67447,-73.82144,"(40.67447, -73.82144)",,,117-06 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442099,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,16:10,QUEENS,11378,40.727303,-73.895454,"(40.727303, -73.895454)",,,55-47 69 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4442585,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,16:30,BRONX,10472,40.826557,-73.87771,"(40.826557, -73.87771)",,,1057 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,21:00,QUEENS,11432,40.71071,-73.793045,"(40.71071, -73.793045)",HILLSIDE AVENUE,HOME LAWN STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4441744,Sedan,,,, +07/28/2021,0:52,BROOKLYN,11236,40.63132,-73.902336,"(40.63132, -73.902336)",AVENUE M,EAST 85 STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4441205,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,20:00,BROOKLYN,11211,40.708717,-73.96419,"(40.708717, -73.96419)",SOUTH 9 STREET,BEDFORD AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4443004,Box Truck,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/29/2021,15:20,QUEENS,11368,40.74484,-73.85225,"(40.74484, -73.85225)",111 STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441800,Sedan,,,, +07/27/2021,14:00,QUEENS,11432,40.714237,-73.80736,"(40.714237, -73.80736)",84 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442395,Sedan,,,, +07/30/2021,18:10,QUEENS,11436,40.679615,-73.79642,"(40.679615, -73.79642)",145 STREET,FOCH BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442758,Pick-up Truck,,,, +07/29/2021,13:00,BROOKLYN,11207,40.655983,-73.897575,"(40.655983, -73.897575)",SNEDIKER AVENUE,DE WITT AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4442041,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,13:20,,,40.794697,-73.93637,"(40.794697, -73.93637)",1 AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4441974,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/26/2021,18:04,BROOKLYN,11234,40.621563,-73.939125,"(40.621563, -73.939125)",KINGS HIGHWAY,EAST 37 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441967,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,20:00,BROOKLYN,11205,40.697716,-73.967735,"(40.697716, -73.967735)",FLUSHING AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441763,Sedan,Sedan,,, +07/28/2021,15:23,BRONX,10451,40.812267,-73.92747,"(40.812267, -73.92747)",EAST 139 STREET,RIDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441483,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:40,,,40.799717,-73.92991,"(40.799717, -73.92991)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442189,Sedan,Sedan,,, +07/28/2021,18:15,STATEN ISLAND,10314,40.61919,-74.118515,"(40.61919, -74.118515)",SLOSSON AVENUE,DRAKE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442485,Sedan,Sedan,,, +07/29/2021,12:25,,,40.672104,-73.783455,"(40.672104, -73.783455)",132 AVENUE,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4441625,Sedan,,,, +07/28/2021,9:15,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,DYCKMAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441386,Sedan,,,, +07/26/2021,4:15,BROOKLYN,11223,40.600048,-73.972824,"(40.600048, -73.972824)",,,2160 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442194,PK,,,, +07/29/2021,16:36,BRONX,10452,40.84366,-73.92005,"(40.84366, -73.92005)",WEST 172 STREET,SHAKESPEARE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4442009,Sedan,Pick-up Truck,,, +07/19/2021,5:47,BROOKLYN,11213,40.669624,-73.94635,"(40.669624, -73.94635)",,,668 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4442707,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Sedan +07/31/2021,3:10,BROOKLYN,11234,40.63742,-73.92401,"(40.63742, -73.92401)",EAST 55 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4442262,Sedan,Sedan,,, +07/30/2021,18:00,BROOKLYN,11221,40.692623,-73.93398,"(40.692623, -73.93398)",STUYVESANT AVENUE,KOSCIUSZKO STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442628,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,20:00,BROOKLYN,11208,40.666996,-73.86789,"(40.666996, -73.86789)",CRESCENT STREET,LORING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442026,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,17:14,BROOKLYN,11236,40.63642,-73.8988,"(40.63642, -73.8988)",,,9211 AVENUE L,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4442211,Sedan,Sedan,Sedan,, +07/05/2021,8:46,QUEENS,11369,40.761925,-73.86283,"(40.761925, -73.86283)",,,106-16 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443169,Sedan,,,, +07/29/2021,18:00,,,40.70064,-73.93647,"(40.70064, -73.93647)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4441962,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/31/2021,0:02,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",CROSS BRONX EXPRESSWAY,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442862,Sedan,Sedan,,, +07/29/2021,7:10,MANHATTAN,10128,40.781387,-73.95213,"(40.781387, -73.95213)",EAST 90 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4442930,Sedan,Sedan,,, +07/30/2021,15:30,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442944,Pick-up Truck,Sedan,,, +07/30/2021,16:50,,,40.601204,-74.06509,"(40.601204, -74.06509)",LILY POND AVENUE,,,3,0,0,0,0,0,3,0,Glare,Unspecified,,,,4442125,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,4:11,BRONX,10467,40.879242,-73.86536,"(40.879242, -73.86536)",WHITE PLAINS ROAD,EAST 213 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4441608,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,22:20,MANHATTAN,10002,40.71826,-73.98551,"(40.71826, -73.98551)",,,101 CLINTON STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442067,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,16:00,BROOKLYN,11233,40.681297,-73.93472,"(40.681297, -73.93472)",DECATUR STREET,LEWIS AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4442509,Bike,Sedan,,, +07/29/2021,18:15,QUEENS,11357,40.78884,-73.81381,"(40.78884, -73.81381)",150 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442337,Sedan,,,, +07/29/2021,17:50,MANHATTAN,10012,40.72441,-73.99763,"(40.72441, -73.99763)",,,568 BROADWAY,0,0,0,0,0,0,0,0,Passenger Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4442216,Taxi,Bike,,, +07/31/2021,15:09,BROOKLYN,11230,40.610947,-73.97733,"(40.610947, -73.97733)",WEST 3 STREET,AVENUE O,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442199,Sedan,Box Truck,,, +07/26/2021,19:00,QUEENS,11434,40.68723,-73.78711,"(40.68723, -73.78711)",115 ROAD,159 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4442084,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +06/23/2021,11:13,,,40.695614,-73.94056,"(40.695614, -73.94056)",,,VERNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442491,Station Wagon/Sport Utility Vehicle,PK,,, +07/25/2021,15:25,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4441910,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,23:10,BROOKLYN,11201,40.692123,-73.98904,"(40.692123, -73.98904)",BOERUM PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441781,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2021,21:00,BROOKLYN,11213,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,ROCHESTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443072,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,8:50,MANHATTAN,10013,40.720078,-74.00519,"(40.720078, -74.00519)",,,32 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4442806,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,18:00,MANHATTAN,10039,40.82274,-73.93959,"(40.82274, -73.93959)",,,225 WEST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442184,Sedan,,,, +07/28/2021,2:30,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,0:10,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442023,Taxi,Sedan,,, +07/28/2021,11:00,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441534,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,22:00,,,40.77446,-73.84668,"(40.77446, -73.84668)",COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4442355,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,14:22,BRONX,10457,,,,third ave,east 180 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,1:57,BRONX,10459,40.826458,-73.8993,"(40.826458, -73.8993)",,,822 EAST 167 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442291,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,8:08,MANHATTAN,10035,40.798805,-73.93799,"(40.798805, -73.93799)",,,247 EAST 118 STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4442153,Sedan,Sedan,,, +07/28/2021,23:15,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,17:55,,,40.860954,-73.92651,"(40.860954, -73.92651)",ARDEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442504,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,17:02,BROOKLYN,11212,40.657295,-73.915886,"(40.657295, -73.915886)",,,440 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4441878,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,7:10,,,40.729866,-73.87733,"(40.729866, -73.87733)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441549,Box Truck,Sedan,,, +07/30/2021,13:55,MANHATTAN,10019,40.76204,-73.97584,"(40.76204, -73.97584)",,,20 WEST 55 STREET,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442824,E-Scooter,Bike,,, +07/25/2021,23:00,BROOKLYN,11233,40.68013,-73.91666,"(40.68013, -73.91666)",,,180 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4442603,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Ambulance,, +07/30/2021,13:30,,,40.634964,-74.0204,"(40.634964, -74.0204)",5 AVENUE,SENATOR STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4441891,Station Wagon/Sport Utility Vehicle,Bike,,, +07/31/2021,19:15,MANHATTAN,10001,40.75219,-73.99347,"(40.75219, -73.99347)",WEST 34 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442296,Sedan,Bike,,, +07/30/2021,12:25,QUEENS,11354,40.772675,-73.833595,"(40.772675, -73.833595)",,,130-30 28 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442089,Sedan,Sedan,,, +07/25/2021,16:50,MANHATTAN,10009,40.72507,-73.98122,"(40.72507, -73.98122)",AVENUE B,EAST 7 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442550,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,21:30,,,40.633938,-74.13439,"(40.633938, -74.13439)",,,107 ALBION PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441994,Pick-up Truck,Sedan,,, +07/25/2021,22:45,BROOKLYN,11234,40.61232,-73.93172,"(40.61232, -73.93172)",EAST 38 STREET,FILLMORE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4442894,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/18/2021,19:00,MANHATTAN,10003,,,,,,79 WASHINGTON SQUARE EAST,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4442367,SUBURBAN,,,, +07/31/2021,13:00,MANHATTAN,10014,40.738743,-74.00426,"(40.738743, -74.00426)",,,24 HORATIO STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442380,Sedan,Box Truck,,, +07/28/2021,13:00,,,,,,GRAND CENTRAL PARKWAY,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441693,Pick-up Truck,Sedan,,, +07/28/2021,22:06,,,40.742676,-73.839516,"(40.742676, -73.839516)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441581,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,22:30,BROOKLYN,11233,40.6845,-73.92639,"(40.6845, -73.92639)",PATCHEN AVENUE,HALSEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4442645,Bike,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,4:00,QUEENS,11433,40.69961,-73.79242,"(40.69961, -73.79242)",,,104-26 164 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496698,Sedan,Sedan,,, +07/28/2021,15:30,QUEENS,11355,40.7452,-73.8249,"(40.7452, -73.8249)",141 STREET,58 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441437,Sedan,,,, +07/28/2021,7:33,,,40.840878,-73.90477,"(40.840878, -73.90477)",WEBSTER AVENUE,CLAY AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4442061,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/31/2021,22:08,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442252,Sedan,,,, +07/30/2021,23:30,BROOKLYN,11209,40.621353,-74.02635,"(40.621353, -74.02635)",,,8610 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442093,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,13:00,QUEENS,11385,40.704834,-73.90445,"(40.704834, -73.90445)",,,1935 WOODBINE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442588,Sedan,,,, +07/31/2021,11:19,MANHATTAN,10025,40.801926,-73.96519,"(40.801926, -73.96519)",,,201 WEST 108 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4442116,Sedan,Sedan,,, +07/19/2021,14:50,STATEN ISLAND,10304,40.620834,-74.07127,"(40.620834, -74.07127)",BAY STREET,GREENFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4442399,Sedan,Bike,,, +07/31/2021,13:00,MANHATTAN,10012,40.72388,-73.996956,"(40.72388, -73.996956)",CROSBY STREET,PRINCE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442226,Sedan,,,, +07/28/2021,13:55,BROOKLYN,11220,40.647675,-74.014595,"(40.647675, -74.014595)",3 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441462,Sedan,Sedan,,, +07/31/2021,12:40,,,40.75183,-73.70289,"(40.75183, -73.70289)",UNION TURNPIKE,271 STREET,,6,0,0,0,0,0,6,0,Unspecified,Unspecified,,,,4442176,Sedan,Sedan,,, +07/30/2021,22:42,,,40.584976,-73.9434,"(40.584976, -73.9434)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4442613,Sedan,Moped,,, +07/28/2021,23:00,QUEENS,11429,40.710964,-73.74975,"(40.710964, -73.74975)",209 STREET,104 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441831,Bike,Sedan,,, +07/28/2021,10:35,BROOKLYN,11229,40.60926,-73.9584,"(40.60926, -73.9584)",,,1656 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441355,Sedan,,,, +07/30/2021,17:15,BROOKLYN,11204,40.619972,-73.98933,"(40.619972, -73.98933)",,,6313 18 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442692,Pick-up Truck,,,, +07/28/2021,9:21,STATEN ISLAND,10301,40.64384,-74.080605,"(40.64384, -74.080605)",BELMONT PLACE,VINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442421,Sedan,,,, +07/31/2021,0:43,BROOKLYN,11235,40.58345,-73.95039,"(40.58345, -73.95039)",EMMONS AVENUE,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4442245,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,12:28,MANHATTAN,10010,40.74432,-73.99026,"(40.74432, -73.99026)",,,55 WEST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496640,Sedan,,,, +07/28/2021,20:00,BRONX,10458,40.869827,-73.89148,"(40.869827, -73.89148)",,,2802 GRAND CONCOURSE,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4441818,Sedan,,,, +07/27/2021,8:59,MANHATTAN,10019,40.76607,-73.98132,"(40.76607, -73.98132)",,,225 WEST 57 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442836,Taxi,Bike,,, +07/30/2021,3:52,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4442963,Taxi,,,, +07/28/2021,17:30,QUEENS,11368,40.738373,-73.86008,"(40.738373, -73.86008)",99 STREET,57 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441588,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,9:15,BROOKLYN,11213,40.667866,-73.93212,"(40.667866, -73.93212)",,,1702 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442247,Sedan,,,, +07/31/2021,12:52,,,40.81286,-73.96341,"(40.81286, -73.96341)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,15:30,BROOKLYN,11234,40.620865,-73.935,"(40.620865, -73.935)",FLATBUSH AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4441950,Sedan,Dump,,, +07/30/2021,15:30,QUEENS,11385,40.7122,-73.86208,"(40.7122, -73.86208)",METROPOLITAN AVENUE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442553,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,17:42,,,40.826412,-73.9406,"(40.826412, -73.9406)",WEST 150 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441509,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/22/2021,10:21,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441863,Sedan,Tractor Truck Diesel,,, +07/24/2021,13:00,,,40.674885,-73.927765,"(40.674885, -73.927765)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442530,Box Truck,Sedan,,, +07/29/2021,4:10,BROOKLYN,11206,40.705738,-73.944695,"(40.705738, -73.944695)",BOERUM STREET,MANHATTAN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4443006,Sedan,,,, +07/25/2021,22:03,BRONX,10451,40.82261,-73.91345,"(40.82261, -73.91345)",,,416 EAST 159 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442280,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/31/2021,15:32,MANHATTAN,10029,40.788586,-73.95529,"(40.788586, -73.95529)",5 AVENUE,EAST 97 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4443029,ambulance,E-Bike,,, +07/17/2021,2:54,QUEENS,11368,40.751762,-73.86791,"(40.751762, -73.86791)",,,37-19 99 STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4441945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,1:47,BROOKLYN,11211,40.711323,-73.94725,"(40.711323, -73.94725)",GRAND STREET,LEONARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442969,Sedan,Motorcycle,,, +07/29/2021,19:30,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",82 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441793,Sedan,Sedan,,, +07/30/2021,16:25,BROOKLYN,11219,40.633507,-74.00496,"(40.633507, -74.00496)",,,5902 FORT HAMILTON PARKWAY,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4442753,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/30/2021,11:20,BRONX,10455,40.814934,-73.91496,"(40.814934, -73.91496)",EAST 149 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4441846,Box Truck,Sedan,,, +07/30/2021,22:00,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",CYPRESS AVENUE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442578,Sedan,,,, +07/28/2021,12:55,BROOKLYN,11236,40.642574,-73.90235,"(40.642574, -73.90235)",FLATLANDS AVENUE,EAST 95 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441439,Sedan,,,, +07/31/2021,2:33,,,40.84603,-73.93034,"(40.84603, -73.93034)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442649,Tanker,Tractor Truck Diesel,,, +07/28/2021,3:53,QUEENS,11101,40.743717,-73.92807,"(40.743717, -73.92807)",,,45-45 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441469,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,16:56,QUEENS,11372,40.753326,-73.8718,"(40.753326, -73.8718)",35 AVENUE,JUNCTION BOULEVARD,,1,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4441699,Sedan,Sedan,E-Bike,, +07/31/2021,20:30,QUEENS,11422,40.657406,-73.74507,"(40.657406, -73.74507)",BROOKVILLE BOULEVARD,147 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442209,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,11:30,MANHATTAN,10075,40.77204,-73.951965,"(40.77204, -73.951965)",,,425 EAST 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443163,Sedan,Box Truck,,, +07/29/2021,10:49,,,40.63552,-74.0167,"(40.63552, -74.0167)",6 AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4441649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,17:25,,,,,,KISSENA BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442333,Sedan,Pick-up Truck,,, +07/29/2021,13:29,,,,,,ZEREGA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441663,Sedan,Box Truck,,, +07/30/2021,16:00,BRONX,10462,40.854504,-73.867714,"(40.854504, -73.867714)",WHITE PLAINS ROAD,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441867,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,18:30,BROOKLYN,11249,40.71647,-73.95998,"(40.71647, -73.95998)",,,117 NORTH 4 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442906,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,23:52,MANHATTAN,10016,40.751575,-73.982285,"(40.751575, -73.982285)",5 AVENUE,EAST 39 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442900,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/30/2021,6:34,,,40.73639,-73.90972,"(40.73639, -73.90972)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441977,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,7:30,BROOKLYN,11215,40.667973,-73.99586,"(40.667973, -73.99586)",HAMILTON AVENUE,16 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441353,Sedan,Sedan,,, +07/29/2021,14:00,BROOKLYN,11233,40.68282,-73.932045,"(40.68282, -73.932045)",,,346 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442632,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/29/2021,10:24,STATEN ISLAND,10306,40.585922,-74.10526,"(40.585922, -74.10526)",JEFFERSON AVENUE,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4442121,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/30/2021,19:30,QUEENS,11413,40.674923,-73.73694,"(40.674923, -73.73694)",MERRICK BOULEVARD,233 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441906,Pick-up Truck,,,, +07/29/2021,19:45,BROOKLYN,11229,40.5981,-73.94342,"(40.5981, -73.94342)",AVENUE V,EAST 28 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4442257,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/29/2021,7:00,BROOKLYN,11208,40.6806,-73.883896,"(40.6806, -73.883896)",,,216 LINWOOD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442038,Sedan,,,, +07/30/2021,13:40,,,40.73814,-74.00816,"(40.73814, -74.00816)",JANE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442384,Sedan,E-Scooter,,, +07/30/2021,16:54,MANHATTAN,10040,40.856808,-73.92827,"(40.856808, -73.92827)",FORT GEORGE AVENUE,WEST 193 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443020,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,22:45,,,40.687325,-73.83525,"(40.687325, -73.83525)",101 AVENUE,108 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442986,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,13:20,,,40.829697,-73.91313,"(40.829697, -73.91313)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4441999,Sedan,Tractor Truck Diesel,,, +07/28/2021,20:08,,,40.624912,-74.146706,"(40.624912, -74.146706)",FOREST AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441555,Sedan,Sedan,,, +07/28/2021,16:51,BROOKLYN,11203,40.65563,-73.9261,"(40.65563, -73.9261)",,,901 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4441874,Ambulance,,,, +07/31/2021,23:15,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4442731,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,16:23,BRONX,10456,40.837513,-73.91478,"(40.837513, -73.91478)",GRAND CONCOURSE,MARCY PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442006,Sedan,,,, +07/31/2021,12:15,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4442112,Sedan,Sedan,,, +07/21/2021,21:00,MANHATTAN,10011,40.746883,-74.00224,"(40.746883, -74.00224)",,,425 WEST 23 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442524,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,7:33,QUEENS,11357,40.782368,-73.803955,"(40.782368, -73.803955)",,,17-55 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442351,Sedan,,,, +07/30/2021,15:10,BROOKLYN,11205,40.696384,-73.977394,"(40.696384, -73.977394)",PARK AVENUE,NORTH ELLIOTT PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441895,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,20:38,MANHATTAN,10007,40.713814,-74.00558,"(40.713814, -74.00558)",,,52 CHAMBERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442802,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,17:38,BROOKLYN,11226,40.656185,-73.951256,"(40.656185, -73.951256)",,,670 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4443084,Sedan,Garbage or Refuse,,, +07/31/2021,17:00,BRONX,10472,40.827904,-73.8646,"(40.827904, -73.8646)",,,1810 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442955,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,19:03,BROOKLYN,11226,40.64573,-73.94903,"(40.64573, -73.94903)",,,1657 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4442179,Sedan,,,, +07/31/2021,10:02,,,,,,ZEREGA AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442957,Sedan,PK,,, +07/30/2021,10:15,QUEENS,11434,40.69225,-73.76669,"(40.69225, -73.76669)",LINDEN BOULEVARD,180 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442080,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,2:55,,,40.7282303,-73.8861119,"(40.7282303, -73.8861119)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4467988,Taxi,Sedan,,, +07/28/2021,11:00,,,40.74738,-73.83509,"(40.74738, -73.83509)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441378,Station Wagon/Sport Utility Vehicle,Tanker,,, +07/30/2021,22:42,BRONX,10456,40.825993,-73.907936,"(40.825993, -73.907936)",3 AVENUE,WEIHER COURT,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4442285,Sedan,Sedan,,, +07/29/2021,17:30,BROOKLYN,11226,40.639748,-73.952286,"(40.639748, -73.952286)",NEWKIRK AVENUE,EAST 26 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,1:17,,,40.701283,-73.961266,"(40.701283, -73.961266)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4443011,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,8:00,BROOKLYN,11225,40.66465,-73.95143,"(40.66465, -73.95143)",,,300 SULLIVAN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,5:35,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442820,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,19:58,,,40.653503,-73.935425,"(40.653503, -73.935425)",EAST 45 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442192,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,7:00,QUEENS,11101,40.743416,-73.95387,"(40.743416, -73.95387)",VERNON BOULEVARD,49 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442610,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,11:40,BRONX,10456,40.83639,-73.91588,"(40.83639, -73.91588)",EAST 169 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442149,Sedan,Sedan,,, +07/23/2021,14:00,BROOKLYN,11211,40.708595,-73.963196,"(40.708595, -73.963196)",,,142 SOUTH 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442959,Sedan,,,, +07/28/2021,14:15,BROOKLYN,11212,40.67041,-73.91188,"(40.67041, -73.91188)",,,57 CHESTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441594,Sedan,,,, +07/29/2021,23:20,BROOKLYN,11225,40.658875,-73.94753,"(40.658875, -73.94753)",NEW YORK AVENUE,FENIMORE STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Turning Improperly,,,,4443081,Sedan,Sedan,,, +07/31/2021,0:22,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4442136,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +07/31/2021,2:20,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442648,Taxi,,,, +07/31/2021,23:18,,,40.73442,-73.92238,"(40.73442, -73.92238)",BROOKLYN QUEENS EXPRESSWAY,LONG ISLAND EXPRESSWAY,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4442409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,0:42,BRONX,10457,40.854008,-73.894135,"(40.854008, -73.894135)",,,2191 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4441318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,18:13,,,40.807186,-73.924286,"(40.807186, -73.924286)",EAST 135 STREET,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4442268,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,21:20,BROOKLYN,11201,40.690346,-73.99206,"(40.690346, -73.99206)",COURT STREET,STATE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4441475,Sedan,E-Bike,,, +07/29/2021,9:30,,,40.75738,-73.966705,"(40.75738, -73.966705)",EAST 54 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,6:00,BRONX,10460,40.846943,-73.88159,"(40.846943, -73.88159)",,,876 BRONX PARK SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442749,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,14:15,QUEENS,11379,40.712204,-73.88638,"(40.712204, -73.88638)",METROPOLITAN AVENUE,69 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442560,Sedan,,,, +07/29/2021,8:00,QUEENS,11357,40.777905,-73.814674,"(40.777905, -73.814674)",150 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4442813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/30/2021,18:50,,,40.7414,-73.79278,"(40.7414, -73.79278)",58 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441922,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,21:35,QUEENS,11379,40.725006,-73.8792,"(40.725006, -73.8792)",80 STREET,ELIOT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442593,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,9:02,,,,,,Kingsland Ave,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441850,Box Truck,Sedan,,, +07/24/2021,1:46,QUEENS,11421,40.689243,-73.84501,"(40.689243, -73.84501)",ATLANTIC AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441982,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,14:45,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4442107,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +07/30/2021,20:51,QUEENS,11418,40.696247,-73.840805,"(40.696247, -73.840805)",,,86-66 107 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4442131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/17/2021,10:10,BROOKLYN,11222,40.72102,-73.94611,"(40.72102, -73.94611)",,,142 NEWTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443050,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,6:58,,,40.82802,-73.93122,"(40.82802, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4442148,Sedan,Box Truck,,, +07/28/2021,4:50,QUEENS,11415,40.71003,-73.83405,"(40.71003, -73.83405)",ONSLOW PLACE,PARK LANE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4441579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,11:30,QUEENS,11355,40.74036,-73.81642,"(40.74036, -73.81642)",,,153-33 60 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,15:15,STATEN ISLAND,10314,40.61813,-74.11545,"(40.61813, -74.11545)",,,7 RICE AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4442425,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,21:16,BROOKLYN,11232,40.65576,-74.01132,"(40.65576, -74.01132)",,,168 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442404,Pick-up Truck,,,, +07/28/2021,21:24,BROOKLYN,11249,40.703686,-73.965065,"(40.703686, -73.965065)",WYTHE AVENUE,WILSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442991,Sedan,,,, +07/17/2021,2:51,BROOKLYN,11233,40.684902,-73.92946,"(40.684902, -73.92946)",HANCOCK STREET,REID AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442576,Sedan,,,, +07/27/2021,18:30,BROOKLYN,11218,40.647297,-73.9803,"(40.647297, -73.9803)",CATON AVENUE,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442389,Box Truck,Sedan,,, +07/29/2021,17:55,BRONX,10455,40.818226,-73.916794,"(40.818226, -73.916794)",MELROSE AVENUE,EAST 152 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441776,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/27/2021,19:50,,,40.764053,-73.99225,"(40.764053, -73.99225)",WEST 49 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442001,Sedan,Box Truck,,, +07/28/2021,8:25,QUEENS,11413,40.682365,-73.755135,"(40.682365, -73.755135)",WILLIAMSON AVENUE,BENTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441752,Sedan,,,, +07/30/2021,11:30,QUEENS,11420,40.67027,-73.820984,"(40.67027, -73.820984)",,,135-46 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442163,Sedan,Sedan,,, +07/26/2021,6:00,,,40.84423,-73.89964,"(40.84423, -73.89964)",CROSS BRONX EXPRESSWAY,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441986,Sedan,Sedan,,, +07/31/2021,19:30,QUEENS,11420,40.670208,-73.81902,"(40.670208, -73.81902)",135 AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442730,Taxi,Sedan,,, +07/28/2021,14:30,BROOKLYN,11207,40.66447,-73.89593,"(40.66447, -73.89593)",LIVONIA AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441513,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,16:00,BROOKLYN,11206,40.695854,-73.93841,"(40.695854, -73.93841)",,,300 VERNON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442893,Sedan,,,, +07/30/2021,10:00,BROOKLYN,11210,40.629387,-73.94524,"(40.629387, -73.94524)",,,3204 AVENUE I,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441899,Sedan,,,, +07/28/2021,6:45,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442092,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/31/2021,3:07,MANHATTAN,10011,40.744164,-73.99371,"(40.744164, -73.99371)",,,149 WEST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442496,Taxi,Sedan,,, +07/30/2021,18:41,BROOKLYN,11221,40.693245,-73.91955,"(40.693245, -73.91955)",,,110 LINDEN STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4442075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,15:55,BROOKLYN,11229,40.597996,-73.94435,"(40.597996, -73.94435)",EAST 27 STREET,AVENUE V,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441493,Sedan,Sedan,,, +07/28/2021,13:25,BRONX,10451,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,SHERMAN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4442018,Sedan,Moped,,, +07/28/2021,14:40,QUEENS,11385,40.700497,-73.90021,"(40.700497, -73.90021)",MYRTLE AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441711,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,17:41,QUEENS,11411,40.692623,-73.7445,"(40.692623, -73.7445)",FRANCIS LEWIS BOULEVARD,119 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442207,Sedan,,,, +07/30/2021,13:00,MANHATTAN,10022,40.76067,-73.97259,"(40.76067, -73.97259)",,,60 EAST 55 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4442837,Bike,,,, +07/30/2021,11:05,QUEENS,11378,40.728035,-73.902176,"(40.728035, -73.902176)",,,54-35 63 PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4442558,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,12:44,,,40.713505,-73.998634,"(40.713505, -73.998634)",WORTH STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442224,Bike,,,, +07/29/2021,11:39,,,,,,12 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4442456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,22:25,QUEENS,11367,40.720554,-73.81863,"(40.720554, -73.81863)",,,77-30 MAIN STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442060,Sedan,Sedan,,, +07/28/2021,19:35,STATEN ISLAND,10308,40.551003,-74.15431,"(40.551003, -74.15431)",COLON AVENUE,BALTIMORE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442117,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,23:50,BROOKLYN,11208,40.680504,-73.8829,"(40.680504, -73.8829)",FULTON STREET,ESSEX STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442031,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,23:04,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4442301,Sedan,Sedan,,, +07/30/2021,19:30,BROOKLYN,11233,40.682426,-73.937935,"(40.682426, -73.937935)",MARCUS GARVEY BOULEVARD,MACON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442953,E-Bike,,,, +07/28/2021,9:30,BROOKLYN,11231,40.680573,-74.00644,"(40.680573, -74.00644)",SEABRING STREET,RICHARDS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442442,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,13:30,,,40.68662,-73.82319,"(40.68662, -73.82319)",LIBERTY AVENUE,120 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441736,Sedan,,,, +07/30/2021,13:30,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,0:00,BROOKLYN,11237,40.697395,-73.90728,"(40.697395, -73.90728)",JEFFERSON AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,Unspecified,,,4441523,Box Truck,Sedan,Sedan,, +07/22/2021,7:12,BROOKLYN,11222,40.72624,-73.93795,"(40.72624, -73.93795)",APOLLO STREET,NASSAU AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4442907,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,0:01,BROOKLYN,11221,,,,DE KALB AVENUE,Malcolm X Boulevard,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442595,Sedan,,,, +07/31/2021,17:15,,,40.579197,-73.98195,"(40.579197, -73.98195)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443122,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,13:57,BROOKLYN,11238,40.68302,-73.96783,"(40.68302, -73.96783)",,,470 VANDERBILT AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4441904,Sedan,E-Scooter,,, +07/30/2021,5:20,BROOKLYN,11219,40.631313,-73.999565,"(40.631313, -73.999565)",58 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442388,Sedan,,,, +07/30/2021,22:30,,,40.626328,-74.13132,"(40.626328, -74.13132)",FOREST AVENUE,JEWETT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,18:05,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4442765,Sedan,Sedan,,, +07/16/2021,11:38,,,40.661743,-73.94784,"(40.661743, -73.94784)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4443071,Sedan,Box Truck,,, +07/30/2021,14:20,STATEN ISLAND,10306,40.579903,-74.10779,"(40.579903, -74.10779)",,,100 COLFAX AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442124,Sedan,,,, +07/29/2021,9:00,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,STEWART AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443007,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,14:50,,,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442238,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/31/2021,11:45,,,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4442541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,15:30,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4442356,Sedan,Sedan,Sedan,, +07/31/2021,17:15,,,40.752056,-74.00099,"(40.752056, -74.00099)",10 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442545,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/28/2021,22:31,,,40.823257,-73.94293,"(40.823257, -73.94293)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4442053,Sedan,,,, +07/29/2021,13:15,,,40.70738,-73.91849,"(40.70738, -73.91849)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441855,Pick-up Truck,,,, +07/26/2021,14:00,QUEENS,11102,40.77247,-73.922005,"(40.77247, -73.922005)",,,25-20 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442447,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,9:30,BRONX,10460,40.83451,-73.88526,"(40.83451, -73.88526)",LONGFELLOW AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442290,Dump,Sedan,,, +07/28/2021,11:00,BRONX,10469,40.86265,-73.83801,"(40.86265, -73.83801)",MACE AVENUE,TIEMANN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441395,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,17:50,MANHATTAN,10032,40.837074,-73.944305,"(40.837074, -73.944305)",WEST 161 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441840,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,2:14,,,40.630383,-74.04066,"(40.630383, -74.04066)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442671,Pick-up Truck,Sedan,,, +07/28/2021,9:08,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441369,Pick-up Truck,Dump,,, +07/28/2021,20:45,QUEENS,11004,40.73953,-73.70719,"(40.73953, -73.70719)",262 STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442512,Sedan,Sedan,,, +07/30/2021,17:15,,,40.83228,-73.90963,"(40.83228, -73.90963)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442757,Sedan,Sedan,,, +07/28/2021,11:00,BROOKLYN,11204,40.625084,-73.978676,"(40.625084, -73.978676)",,,1953 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441784,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,21:05,BROOKLYN,11212,40.664505,-73.90673,"(40.664505, -73.90673)",,,330 DUMONT AVENUE,3,0,0,0,0,0,3,0,Unspecified,,,,,4441601,Sedan,Sedan,,, +07/30/2021,8:30,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442188,Station Wagon/Sport Utility Vehicle,Bus,,, +07/30/2021,15:05,QUEENS,11422,0,0,"(0.0, 0.0)",246 STREET,137 ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441887,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:45,,,40.759575,-73.77703,"(40.759575, -73.77703)",CLEARVIEW EXPRESSWAY,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441926,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/29/2021,14:10,BROOKLYN,11229,40.593456,-73.94056,"(40.593456, -73.94056)",,,3662 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441669,Sedan,Refrigerated Van,,, +07/28/2021,7:00,QUEENS,11434,40.663998,-73.7664,"(40.663998, -73.7664)",179 STREET,145 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441453,Sedan,,,, +07/28/2021,22:15,,,40.758705,-73.93793,"(40.758705, -73.93793)",21 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4441536,Sedan,Sedan,Sedan,, +07/29/2021,17:00,QUEENS,11417,40.67801,-73.84975,"(40.67801, -73.84975)",88 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442168,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,19:45,QUEENS,11372,40.74906,-73.89082,"(40.74906, -73.89082)",75 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441937,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/29/2021,2:15,MANHATTAN,10017,40.753242,-73.96662,"(40.753242, -73.96662)",EAST 49 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441638,Sedan,E-Bike,,, +07/28/2021,14:20,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4441575,Sedan,Sedan,Sedan,, +07/26/2021,8:30,,,40.713795,-73.944275,"(40.713795, -73.944275)",GRAHAM AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4442996,Bike,,,, +07/30/2021,12:37,BRONX,10459,40.82805,-73.898155,"(40.82805, -73.898155)",,,1221 PROSPECT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,12:25,BROOKLYN,11217,40.681152,-73.97253,"(40.681152, -73.97253)",,,535 DEAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441954,Van,Sedan,,, +07/30/2021,14:40,,,40.775974,-73.82779,"(40.775974, -73.82779)",25 ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4442328,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,20:44,QUEENS,11358,40.749763,-73.80288,"(40.749763, -73.80288)",164 STREET,OAK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,8:25,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441365,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,8:00,QUEENS,11385,40.698338,-73.89483,"(40.698338, -73.89483)",,,75-02 60 LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442580,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,0:17,BRONX,10460,40.83539,-73.887825,"(40.83539, -73.887825)",EAST 173 STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4441270,Sedan,Sedan,,, +07/28/2021,17:04,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441478,Sedan,Ambulance,,, +07/27/2021,14:40,BROOKLYN,11233,40.678097,-73.92748,"(40.678097, -73.92748)",,,28 ROCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442624,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,4:20,QUEENS,11368,40.758026,-73.85776,"(40.758026, -73.85776)",NORTHERN BOULEVARD,112 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4442104,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,9:31,QUEENS,11375,40.72098,-73.840866,"(40.72098, -73.840866)",72 AVENUE,110 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4441826,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,4:00,BRONX,10460,40.838844,-73.87817,"(40.838844, -73.87817)",EAST 177 STREET,SHERIDAN EXPRESSWAY,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4441544,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,18:40,BROOKLYN,11236,,,,FOSTER AVENUE,EAST 83 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441457,Sedan,,,, +07/30/2021,18:59,QUEENS,11101,40.753265,-73.914764,"(40.753265, -73.914764)",,,34-41 48 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442468,Pick-up Truck,Sedan,,, +07/30/2021,17:30,,,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441914,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,17:40,,,40.688995,-73.78581,"(40.688995, -73.78581)",LINDEN BOULEVARD,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4441756,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/30/2021,0:01,,,40.73444,-73.72179,"(40.73444, -73.72179)",COMMONWEALTH BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4441769,Sedan,Sedan,Sedan,, +07/28/2021,22:15,BROOKLYN,11210,40.62262,-73.94028,"(40.62262, -73.94028)",AVENUE L,EAST 36 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441969,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,1:05,BROOKLYN,11207,40.659702,-73.89788,"(40.659702, -73.89788)",,,214 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442046,Sedan,Sedan,,, +07/29/2021,15:53,,,40.876583,-73.90266,"(40.876583, -73.90266)",ALBANY CRESCENT,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4441717,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,18:30,BROOKLYN,11236,40.63505,-73.90523,"(40.63505, -73.90523)",,,1054 EAST 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442203,Sedan,Sedan,,, +07/25/2021,16:40,MANHATTAN,10011,40.739666,-73.99273,"(40.739666, -73.99273)",,,39 WEST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443149,Sedan,,,, +07/28/2021,23:50,,,40.863113,-73.920616,"(40.863113, -73.920616)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442493,Van,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,18:58,BROOKLYN,11249,40.721733,-73.95806,"(40.721733, -73.95806)",WYTHE AVENUE,NORTH 11 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4442912,Taxi,Bike,,, +07/28/2021,12:54,BROOKLYN,11213,40.668056,-73.93562,"(40.668056, -73.93562)",,,1608 UNION STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442708,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,12:00,,,40.834667,-73.92939,"(40.834667, -73.92939)",SUMMIT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442014,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,5:00,BRONX,10462,40.83658,-73.863335,"(40.83658, -73.863335)",,,1442 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4442949,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,5:00,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442305,Tractor Truck Diesel,,,, +07/29/2021,22:30,,,40.67181,-73.998795,"(40.67181, -73.998795)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4441806,Sedan,Bus,,, +07/28/2021,18:45,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441919,Taxi,Station Wagon/Sport Utility Vehicle,Taxi,, +07/31/2021,3:30,BROOKLYN,11201,40.687763,-73.99516,"(40.687763, -73.99516)",,,54 VERANDAH PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442450,Sedan,Sedan,,, +07/27/2021,14:20,,,40.73656,-74.0011,"(40.73656, -74.0011)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442376,Sedan,E-Scooter,,, +07/31/2021,17:20,BROOKLYN,11236,40.647606,-73.915504,"(40.647606, -73.915504)",DITMAS AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442220,Sedan,Sedan,,, +07/30/2021,16:00,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441882,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,22:36,QUEENS,11434,40.669376,-73.76389,"(40.669376, -73.76389)",180 STREET,143 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442085,Sedan,,,, +07/19/2021,20:08,BROOKLYN,11237,40.700977,-73.91782,"(40.700977, -73.91782)",HARMAN STREET,IRVING AVENUE,,1,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4442072,Sedan,E-Bike,,, +07/28/2021,10:00,BRONX,10460,40.8382,-73.88512,"(40.8382, -73.88512)",,,1838 VYSE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4441486,Box Truck,Sedan,,, +07/31/2021,5:40,BROOKLYN,11233,40.67692,-73.91737,"(40.67692, -73.91737)",,,29 LOUIS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442640,Sedan,,,, +07/31/2021,15:33,BROOKLYN,11229,40.60247,-73.94425,"(40.60247, -73.94425)",AVENUE T,EAST 28 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4442256,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,18:16,,,40.69205,-73.982544,"(40.69205, -73.982544)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441732,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,22:10,MANHATTAN,10040,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,NAGLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442849,Station Wagon/Sport Utility Vehicle,Bus,,, +07/30/2021,12:52,QUEENS,11354,40.76304,-73.814125,"(40.76304, -73.814125)",,,40-23 150 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442342,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,10:33,,,40.56011,-74.16495,"(40.56011, -74.16495)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441823,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,20:34,BRONX,10466,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,EAST 233 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4442781,Taxi,Bike,,, +07/30/2021,17:11,,,40.71995,-74.00859,"(40.71995, -74.00859)",HUDSON STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Other Vehicular,Other Vehicular,Unspecified,,4442805,Sedan,Motorcycle,Sedan,UNK, +07/29/2021,2:30,QUEENS,11413,40.676945,-73.75184,"(40.676945, -73.75184)",136 AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,0:00,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441836,Sedan,Sedan,Sedan,, +07/04/2021,19:50,QUEENS,11385,40.713436,-73.91467,"(40.713436, -73.91467)",METROPOLITAN AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442584,Sedan,Sedan,,, +07/29/2021,10:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442156,Sedan,Sedan,,, +07/31/2021,6:30,BRONX,10460,40.834057,-73.88973,"(40.834057, -73.88973)",EAST 172 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442294,HWH,,,, +07/30/2021,6:50,MANHATTAN,10018,40.75398,-73.99373,"(40.75398, -73.99373)",,,338 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441983,Sedan,Sedan,,, +07/28/2021,21:44,,,40.71759,-73.94995,"(40.71759, -73.94995)",FROST STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441851,Dump,Station Wagon/Sport Utility Vehicle,,, +06/29/2021,17:20,BROOKLYN,11226,40.654926,-73.958405,"(40.654926, -73.958405)",,,35 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443077,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,11:00,BROOKLYN,11215,40.671402,-73.99439,"(40.671402, -73.99439)",11 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4441968,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,13:30,BRONX,10464,40.856678,-73.790794,"(40.856678, -73.790794)",,,691 BRIDGE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442377,Unmarked V,Marked Van,,, +07/30/2021,22:15,QUEENS,11427,40.72981,-73.74469,"(40.72981, -73.74469)",HILLSIDE AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441946,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,9:50,MANHATTAN,10034,40.862564,-73.9165,"(40.862564, -73.9165)",,,300 WEST 206 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4441387,Sedan,Flat Bed,,, +07/27/2021,3:14,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442549,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,9:30,,,40.742146,-74.00821,"(40.742146, -74.00821)",WEST 14 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442523,Sedan,Bike,,, +07/31/2021,19:50,BROOKLYN,11204,40.617287,-73.97786,"(40.617287, -73.97786)",BAY PARKWAY,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442752,Pick-up Truck,Sedan,,, +07/28/2021,13:24,QUEENS,11358,40.762775,-73.787384,"(40.762775, -73.787384)",195 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441628,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,12:12,,,40.729855,-74.00396,"(40.729855, -74.00396)",BEDFORD STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4442379,DUMP TRUCK,,,, +07/29/2021,13:19,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4441792,Dump,Pick-up Truck,,, +07/28/2021,17:20,,,40.76249,-73.839584,"(40.76249, -73.839584)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441583,Sedan,Sedan,,, +07/25/2021,19:55,BROOKLYN,11211,40.713547,-73.94695,"(40.713547, -73.94695)",,,97 DEVOE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442968,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,5:47,QUEENS,11367,40.72784,-73.83284,"(40.72784, -73.83284)",VANWYCK EXPRESSWAY,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441377,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,4:02,BROOKLYN,11212,40.659336,-73.92726,"(40.659336, -73.92726)",EAST 54 STREET,REMSEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4441442,Sedan,Dump,,, +07/31/2021,17:54,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442362,Sedan,Sedan,,, +07/30/2021,14:00,QUEENS,11369,40.75837,-73.87925,"(40.75837, -73.87925)",89 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4441941,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,23:30,,,40.63777,-74.07602,"(40.63777, -74.07602)",BAY STREET,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442398,Sedan,,,, +07/28/2021,21:05,MANHATTAN,10031,40.82493,-73.94785,"(40.82493, -73.94785)",,,1710 AMSTERDAM AVENUE,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441683,E-Bike,E-Bike,,, +07/25/2021,11:00,QUEENS,11370,40.763054,-73.88389,"(40.763054, -73.88389)",,,25-55 85 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443167,Sedan,,,, +07/29/2021,11:30,BRONX,10472,40.827637,-73.87608,"(40.827637, -73.87608)",,,1130 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441665,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,7:40,BRONX,10473,40.82312,-73.86053,"(40.82312, -73.86053)",,,867 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441356,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,17:52,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4442827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,21:50,MANHATTAN,10022,40.76285,-73.967735,"(40.76285, -73.967735)",EAST 60 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441958,Taxi,Sedan,,, +07/30/2021,12:35,BROOKLYN,11249,40.701942,-73.961754,"(40.701942, -73.961754)",WYTHE AVENUE,HOOPER STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443000,E-Scooter,,,, +07/28/2021,12:30,QUEENS,11355,40.74371,-73.825645,"(40.74371, -73.825645)",,,59-11 MAIN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,9:04,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4442413,Station Wagon/Sport Utility Vehicle,C1,,, +07/28/2021,1:04,,,40.69426,-73.91036,"(40.69426, -73.91036)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4441808,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/29/2021,17:40,,,40.666126,-73.9953,"(40.666126, -73.9953)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442411,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,22:50,BRONX,10475,40.8695,-73.82619,"(40.8695, -73.82619)",COOP CITY BOULEVARD,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441909,Bike,Sedan,,, +07/30/2021,19:00,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442139,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,11:10,QUEENS,11429,40.70268,-73.74078,"(40.70268, -73.74078)",SPRINGFIELD BOULEVARD,113 DRIVE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4442100,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,1:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4441841,Sedan,,,, +07/29/2021,13:20,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4441726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/28/2021,13:54,BRONX,10461,40.84592,-73.831566,"(40.84592, -73.831566)",,,1731 CROSBY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4441862,Sedan,Sedan,,, +07/29/2021,4:40,BROOKLYN,11221,40.689648,-73.9184,"(40.689648, -73.9184)",BUSHWICK AVENUE,MADISON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4441526,Taxi,,,, +07/30/2021,8:49,,,,,,WILLIS AVENUE BRIDGE APPROACH,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442276,DUMPSTER T,Sedan,,, +01/23/2022,22:00,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",YORK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497356,Taxi,Sedan,,, +07/29/2021,19:00,BROOKLYN,11238,40.682873,-73.96397,"(40.682873, -73.96397)",,,977 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4441760,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,18:03,,,40.636593,-73.89418,"(40.636593, -73.89418)",EAST 96 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4441764,Sedan,Sedan,Sedan,, +07/28/2021,5:15,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4441237,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,5:10,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4441830,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/29/2021,0:00,MANHATTAN,10035,40.80307,-73.93838,"(40.80307, -73.93838)",EAST 123 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441554,Sedan,Sedan,,, +07/26/2021,5:00,BROOKLYN,11206,40.70082,-73.957466,"(40.70082, -73.957466)",HEYWARD STREET,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442478,Sedan,Moped,,, +07/29/2021,15:42,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4442343,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,23:49,MANHATTAN,10036,40.758118,-73.98401,"(40.758118, -73.98401)",,,166 WEST 46 STREET,1,0,1,0,0,0,0,0,,,,,,4441567,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,23:04,BROOKLYN,11203,40.642014,-73.9313,"(40.642014, -73.9313)",AVENUE D,EAST 48 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441877,Sedan,Sedan,,, +07/29/2021,11:15,BROOKLYN,11208,40.665947,-73.8735,"(40.665947, -73.8735)",LINDEN BOULEVARD,MILFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442042,Sedan,Dump,,, +07/29/2021,19:22,QUEENS,11694,40.578365,-73.849396,"(40.578365, -73.849396)",,,421 BEACH 129 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4441801,Sedan,,,, +07/30/2021,13:21,,,40.606544,-74.03255,"(40.606544, -74.03255)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4441894,Sedan,Sedan,Sedan,, +07/28/2021,16:40,,,40.809044,-73.92856,"(40.809044, -73.92856)",EAST 135 STREET,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441482,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,16:55,,,40.78884,-73.81381,"(40.78884, -73.81381)",150 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442350,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,7:29,,,40.689686,-73.89029,"(40.689686, -73.89029)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4441695,Sedan,,,, +07/21/2021,19:39,BRONX,10457,40.84464,-73.8939,"(40.84464, -73.8939)",,,630 EAST 176 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4441973,Sedan,Taxi,,, +07/30/2021,12:20,,,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442881,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,18:05,QUEENS,11101,40.758984,-73.943306,"(40.758984, -73.943306)",38 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442448,Sedan,,,, +07/27/2021,21:30,MANHATTAN,10022,40.758488,-73.97514,"(40.758488, -73.97514)",EAST 51 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442010,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/31/2021,14:30,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442309,Sedan,Sedan,,, +07/31/2021,17:42,,,40.84048,-73.93647,"(40.84048, -73.93647)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,18:40,MANHATTAN,10029,40.794807,-73.94441,"(40.794807, -73.94441)",EAST 110 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4442200,Sedan,Bike,,, +07/31/2021,15:15,BROOKLYN,11203,40.651657,-73.93191,"(40.651657, -73.93191)",,,4842 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442627,Sedan,,,, +06/21/2021,13:15,,,40.86006,-73.891136,"(40.86006, -73.891136)",EAST 189 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443103,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,16:40,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441936,Sedan,Sedan,,, +07/30/2021,15:00,BROOKLYN,11234,40.63075,-73.92425,"(40.63075, -73.92425)",AVENUE I,EAST 54 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,5:48,MANHATTAN,10014,40.742374,-74.0088,"(40.742374, -74.0088)",WEST STREET,WEST 14 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4442372,Sedan,Box Truck,,, +07/26/2021,8:45,,,40.673103,-73.92793,"(40.673103, -73.92793)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442540,Sedan,Unknown ve,,, +07/30/2021,23:10,QUEENS,11417,40.682262,-73.84514,"(40.682262, -73.84514)",WOODHAVEN BOULEVARD,103 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,8:55,,,40.595985,-73.90822,"(40.595985, -73.90822)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,15:20,MANHATTAN,10010,40.741356,-73.989136,"(40.741356, -73.989136)",EAST 23 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442679,Bike,Sedan,,, +07/31/2021,23:00,MANHATTAN,10029,40.794132,-73.94282,"(40.794132, -73.94282)",EAST 110 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442232,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,13:00,,,40.584324,-73.91604,"(40.584324, -73.91604)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4442260,Sedan,,,, +07/29/2021,15:07,STATEN ISLAND,10309,40.542423,-74.218254,"(40.542423, -74.218254)",,,684 BLOOMINGDALE ROAD,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4442859,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,14:45,,,40.678818,-73.96535,"(40.678818, -73.96535)",BERGEN STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inexperience,Unspecified,,,4442531,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/29/2021,3:50,BRONX,10453,40.853523,-73.90273,"(40.853523, -73.90273)",GRAND CONCOURSE,EAST 180 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4441508,Sedan,Taxi,,, +07/24/2021,22:35,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442338,Sedan,Taxi,,, +07/29/2021,14:20,BRONX,10468,40.869415,-73.8932,"(40.869415, -73.8932)",,,2756 CRESTON AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4441819,Sedan,,,, +07/31/2021,11:15,,,40.818172,-73.95649,"(40.818172, -73.95649)",WEST 132 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442435,Pick-up Truck,,,, +07/28/2021,15:15,,,40.6972,-73.952934,"(40.6972, -73.952934)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inexperience,,,,4442492,Sedan,Motorbike,,, +07/30/2021,22:23,QUEENS,11004,40.7379,-73.714775,"(40.7379, -73.714775)",83 AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4441951,Sedan,,,, +07/31/2021,14:20,BROOKLYN,11218,40.644115,-73.976295,"(40.644115, -73.976295)",,,424 CHURCH AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4442746,Sedan,,,, +07/30/2021,8:00,QUEENS,11368,40.74958,-73.8654,"(40.74958, -73.8654)",,,100-14 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441931,Taxi,,,, +07/31/2021,17:00,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442160,Flat Bed,Pick-up Truck,,, +07/29/2021,17:55,MANHATTAN,10014,40.742374,-74.0088,"(40.742374, -74.0088)",WEST STREET,WEST 14 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442383,Sedan,Box Truck,,, +07/30/2021,15:53,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4442269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,17:30,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",EAST 141 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442281,Sedan,,,, +07/24/2021,19:22,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WYTHE AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442987,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,18:46,MANHATTAN,10003,40.730198,-73.98341,"(40.730198, -73.98341)",,,201 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442571,Garbage or Refuse,,,, +07/27/2021,18:00,BRONX,10452,40.843296,-73.917816,"(40.843296, -73.917816)",MACOMBS ROAD,CROMWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442000,Station Wagon/Sport Utility Vehicle,Van,,, +07/30/2021,10:45,BRONX,10461,40.850315,-73.843124,"(40.850315, -73.843124)",,,1776 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4441868,Sedan,Sedan,,, +07/29/2021,12:25,BROOKLYN,11224,40.57281,-73.99916,"(40.57281, -73.99916)",WEST 33 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442801,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,16:30,,,40.7024,-73.9605,"(40.7024, -73.9605)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443017,Sedan,Pick-up Truck,,, +01/23/2022,14:10,BROOKLYN,11207,40.68665,-73.91315,"(40.68665, -73.91315)",ELDERT STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496736,Sedan,Van,,, +07/29/2021,16:00,,,40.609436,-74.1498,"(40.609436, -74.1498)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442111,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,12:50,,,40.812737,-73.93762,"(40.812737, -73.93762)",5 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442831,Ambulance,Sedan,,, +07/29/2021,22:30,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",PACIFIC STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441963,Box Truck,Sedan,,, +07/29/2021,23:45,BROOKLYN,11220,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,60 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442405,Taxi,,,, +07/30/2021,14:25,QUEENS,11419,40.688934,-73.82836,"(40.688934, -73.82836)",,,101-05 116 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4442132,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,8:10,BROOKLYN,11206,40.69399,-73.93517,"(40.69399, -73.93517)",,,365 PULASKI STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442604,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,10:19,BRONX,10457,40.843777,-73.90947,"(40.843777, -73.90947)",MORRIS AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4442064,Sedan,Chassis Cab,,, +07/30/2021,18:00,,,40.81847,-73.9414,"(40.81847, -73.9414)",7 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4442180,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,8:00,BRONX,10462,40.847363,-73.8579,"(40.847363, -73.8579)",BOGART AVENUE,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441995,Bus,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,18:10,BROOKLYN,11219,40.640614,-73.998375,"(40.640614, -73.998375)",,,968 47 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4442462,Taxi,,,, +07/28/2021,15:30,QUEENS,11379,40.71235,-73.89128,"(40.71235, -73.89128)",,,66-26 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442577,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,10:30,BRONX,10460,40.838013,-73.88669,"(40.838013, -73.88669)",,,1762 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442264,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,19:32,,,40.802532,-73.95303,"(40.802532, -73.95303)",WEST 115 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442366,Station Wagon/Sport Utility Vehicle,Bike,,, +07/28/2021,15:44,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441562,Sedan,Sedan,,, +07/28/2021,12:56,,,40.853477,-73.82622,"(40.853477, -73.82622)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441433,Bus,Sedan,,, +07/28/2021,9:33,,,40.860355,-73.86716,"(40.860355, -73.86716)",BOSTON ROAD,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441350,Moped,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,7:43,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,DYRE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441614,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,7:50,QUEENS,11368,40.758026,-73.85776,"(40.758026, -73.85776)",112 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4441700,Sedan,,,, +07/30/2021,9:18,QUEENS,11435,40.704147,-73.815834,"(40.704147, -73.815834)",,,138-19 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4442394,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,22:15,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441470,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,14:55,QUEENS,11385,40.713295,-73.916245,"(40.713295, -73.916245)",FLUSHING AVENUE,TROUTMAN STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Reaction to Uninvolved Vehicle,,,,4442564,Moped,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,21:30,QUEENS,11103,40.76709,-73.91793,"(40.76709, -73.91793)",,,28-30 34 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4441461,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,0:15,QUEENS,11385,40.700962,-73.88504,"(40.700962, -73.88504)",,,72-39 67 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442589,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,9:36,MANHATTAN,10026,40.80545,-73.95653,"(40.80545, -73.95653)",,,399 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4441650,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,20:30,MANHATTAN,10009,40.724594,-73.98376,"(40.724594, -73.98376)",,,519 EAST 5 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4443161,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,15:48,,,40.61467,-73.92809,"(40.61467, -73.92809)",FLATBUSH AVENUE,FILLMORE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4441813,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,1:30,MANHATTAN,10012,40.72138,-73.99555,"(40.72138, -73.99555)",,,202 MOTT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442227,Sedan,,,, +07/29/2021,13:38,MANHATTAN,10029,40.79078,-73.951546,"(40.79078, -73.951546)",,,1465 MADISON AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4441978,BOX,Bike,,, +07/28/2021,12:15,STATEN ISLAND,10314,40.612633,-74.128555,"(40.612633, -74.128555)",,,1933 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4442420,Sedan,,,, +07/31/2021,14:30,,,40.67429,-73.800644,"(40.67429, -73.800644)",140 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442786,Sedan,,,, +07/29/2021,5:00,BROOKLYN,11208,40.68536,-73.88221,"(40.68536, -73.88221)",JAMAICA AVENUE,HIGHLAND PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442037,Sedan,Sedan,,, +01/01/2021,5:28,,,40.6873,-73.973656,"(40.6873, -73.973656)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441905,Sedan,Sedan,,, +07/30/2021,18:51,,,40.840927,-73.912704,"(40.840927, -73.912704)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Pavement Defective,Unspecified,,,,4442143,Moped,Bike,,, +07/28/2021,19:35,BROOKLYN,11234,40.612354,-73.92422,"(40.612354, -73.92422)",,,1923 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4441501,Sedan,,,, +07/28/2021,9:55,QUEENS,11105,40.771687,-73.904434,"(40.771687, -73.904434)",,,42-18 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441533,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/29/2021,13:56,,,40.691532,-73.993744,"(40.691532, -73.993744)",CLINTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4441780,Sedan,Box Truck,,, +07/29/2021,12:50,BROOKLYN,11217,40.68342,-73.982,"(40.68342, -73.982)",3 AVENUE,BERGEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441746,,,,, +07/30/2020,0:01,MANHATTAN,10010,40.736164,-73.97891,"(40.736164, -73.97891)",1 AVENUE,EAST 22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4441858,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/28/2021,19:00,BROOKLYN,11207,40.66965,-73.89047,"(40.66965, -73.89047)",,,442 MILLER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442022,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,12:09,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442345,Sedan,Sedan,,, +07/29/2021,21:45,BROOKLYN,11226,40.651344,-73.947716,"(40.651344, -73.947716)",,,14 RALEIGH PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4441873,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/29/2021,6:00,BRONX,10460,40.83803,-73.86778,"(40.83803, -73.86778)",,,1795 MANSION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4441547,Sedan,Sedan,,, +07/28/2021,7:30,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,17:00,MANHATTAN,10040,40.855556,-73.92918,"(40.855556, -73.92918)",WEST 191 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442505,Sedan,,,, +07/30/2021,17:30,QUEENS,11413,40.66439,-73.76245,"(40.66439, -73.76245)",183 STREET,145 ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4441890,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/28/2021,23:15,,,,,,QUEENS PLAZA SOUTH,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4441487,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +07/30/2021,9:00,BROOKLYN,11201,40.688614,-73.989174,"(40.688614, -73.989174)",SMITH STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442500,Sedan,Sedan,,, +07/15/2021,9:30,QUEENS,11385,40.697437,-73.900955,"(40.697437, -73.900955)",,,1712 NORMAN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442594,Sedan,,,, +07/28/2021,16:52,STATEN ISLAND,10304,40.610664,-74.093575,"(40.610664, -74.093575)",,,755 NARROWS ROAD NORTH,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442486,Sedan,Sedan,,, +07/18/2021,14:55,BROOKLYN,11229,40.608746,-73.95829,"(40.608746, -73.95829)",KINGS HIGHWAY,EAST 15 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442897,Bike,,,, +07/20/2021,13:30,BROOKLYN,11222,40.728638,-73.95738,"(40.728638, -73.95738)",,,114 FRANKLIN STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4441845,Box Truck,E-Bike,,, +07/25/2021,3:25,BROOKLYN,11214,40.60973,-73.99158,"(40.60973, -73.99158)",,,2032 76 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,14:00,QUEENS,11412,40.69977,-73.755585,"(40.69977, -73.755585)",MURDOCK AVENUE,199 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,18:35,BRONX,10461,40.85446,-73.85754,"(40.85446, -73.85754)",,,1085 LYDIG AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4441733,Sedan,,,, +07/26/2021,22:15,,,40.688625,-73.93618,"(40.688625, -73.93618)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442631,Bike,Sedan,,, +07/30/2021,12:40,BROOKLYN,11226,40.6535,-73.9654,"(40.6535, -73.9654)",,,115 PARKSIDE AVENUE,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4442317,Sedan,Sedan,,, +07/29/2021,9:09,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442096,Sedan,Sedan,,, +07/24/2021,12:30,BROOKLYN,11226,40.643127,-73.950676,"(40.643127, -73.950676)",EAST 28 STREET,CLARENDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442175,Sedan,,,, +07/29/2021,0:05,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4442297,Carry All,Sedan,,, +07/31/2021,21:57,QUEENS,11377,40.742683,-73.89566,"(40.742683, -73.89566)",69 STREET,WOODSIDE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442212,Bike,,,, +07/29/2021,20:15,BROOKLYN,11207,40.672882,-73.89808,"(40.672882, -73.89808)",GLENMORE AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442027,Sedan,,,, +07/30/2021,10:00,BRONX,10457,40.849224,-73.88781,"(40.849224, -73.88781)",,,2135 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442737,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,12:00,MANHATTAN,10128,40.78076,-73.9487,"(40.78076, -73.9487)",,,323 EAST 91 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442931,Sedan,,,, +07/29/2021,13:10,QUEENS,11413,40.677925,-73.75486,"(40.677925, -73.75486)",SPRINGFIELD BOULEVARD,136 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4441740,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,12:06,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4442128,Sedan,Sedan,,, +07/27/2021,8:30,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",WARWICK STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442032,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,2:02,,,40.593918,-74.1869,"(40.593918, -74.1869)",,,3970 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4441990,Sedan,,,, +07/30/2021,18:27,,,40.688637,-73.98026,"(40.688637, -73.98026)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442691,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,17:50,BROOKLYN,11238,40.68632,-73.96911,"(40.68632, -73.96911)",,,80 GREENE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4441900,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,13:30,BROOKLYN,11203,40.65992,-73.94763,"(40.65992, -73.94763)",,,597 NEW YORK AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4442248,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,17:08,,,40.67986,-73.7883,"(40.67986, -73.7883)",154 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4441753,Sedan,,,, +07/29/2021,2:15,MANHATTAN,10027,40.81133,-73.96403,"(40.81133, -73.96403)",WEST 120 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4442431,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,0:00,MANHATTAN,10018,40.755554,-73.98982,"(40.755554, -73.98982)",,,274 WEST 40 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4441514,Sedan,,,, +07/31/2021,23:18,MANHATTAN,10036,40.757973,-73.98554,"(40.757973, -73.98554)",BROADWAY,WEST 45 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4442599,Moped,Moped,,, +07/31/2021,5:05,QUEENS,11385,40.702972,-73.89651,"(40.702972, -73.89651)",,,60-72 69 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442554,Sedan,Pick-up Truck,,, +10/07/2021,20:30,BROOKLYN,11233,40.6810657,-73.9253854,"(40.6810657, -73.9253854)",,,291 PATCHEN AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467991,Sedan,Bike,,, +01/23/2022,7:30,BROOKLYN,11203,40.654068,-73.92621,"(40.654068, -73.92621)",,,858 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4496600,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +10/12/2021,8:30,BRONX,10470,40.896957,-73.8629201,"(40.896957, -73.8629201)",,,4249 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467993,Sedan,,,, +01/23/2022,8:20,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4497180,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +01/23/2022,16:39,BRONX,10468,40.863686,-73.907425,"(40.863686, -73.907425)",,,2400 WEBB AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4496869,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,17:15,BRONX,10472,40.82817,-73.86265,"(40.82817, -73.86265)",WATSON AVENUE,LELAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496970,Sedan,Sedan,,, +01/19/2022,13:30,BRONX,10455,40.817513,-73.91712,"(40.817513, -73.91712)",EAST 151 STREET,MELROSE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497212,Sedan,,,, +01/21/2022,17:05,BRONX,10461,40.849907,-73.85225,"(40.849907, -73.85225)",MORRIS PARK AVENUE,TOMLINSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497125,Station Wagon/Sport Utility Vehicle,,,, +12/18/2021,13:40,BRONX,10454,40.81145,-73.916214,"(40.81145, -73.916214)",,,505 EAST 144 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497189,Sedan,,,, +01/23/2022,7:55,BROOKLYN,11232,40.64741,-74.018684,"(40.64741, -74.018684)",2 AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496623,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,21:07,,,40.9002506,-73.8864647,"(40.9002506, -73.8864647)",MOSHOLU PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4467997,Sedan,,,, +09/25/2021,15:00,,,40.88996,-73.88738,"(40.88996, -73.88738)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4468019,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/23/2022,15:38,BROOKLYN,11220,40.639435,-74.00546,"(40.639435, -74.00546)",8 AVENUE,53 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,Unspecified,,,4496721,E-Bike,Pick-up Truck,Bus,, +01/23/2022,17:30,QUEENS,11355,40.743866,-73.82568,"(40.743866, -73.82568)",MAIN STREET,59 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4496834,Sedan,Sedan,,, +01/15/2022,22:30,BRONX,10472,40.826183,-73.86053,"(40.826183, -73.86053)",,,1889 BRUCKNER BOULEVARD,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4497119,Sedan,Sedan,,, +01/23/2022,13:24,STATEN ISLAND,10301,40.634995,-74.076454,"(40.634995, -74.076454)",VANDUZER STREET,SWAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497273,Sedan,Sedan,,, +01/23/2022,11:50,BROOKLYN,11206,40.70109,-73.94502,"(40.70109, -73.94502)",WHIPPLE STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4496747,Sedan,,,, +01/23/2022,16:05,,,40.769844,-73.96686,"(40.769844, -73.96686)",EAST 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496793,Sedan,Sedan,,, +09/30/2021,12:40,,,40.6985403,-73.9411512,"(40.6985403, -73.9411512)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468009,Sedan,Bus,,, +01/23/2022,14:30,QUEENS,11427,40.728024,-73.74764,"(40.728024, -73.74764)",HILLSIDE AVENUE,217 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496675,Sedan,Sedan,,, +10/13/2021,10:45,,,40.6457941,-74.0164299,"(40.6457941, -74.0164299)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468011,Flat Bed,Box Truck,Sedan,, +01/22/2022,11:45,STATEN ISLAND,10304,40.608776,-74.090805,"(40.608776, -74.090805)",NARROWS ROAD SOUTH,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4497251,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,17:24,,,40.716972,-73.99446,"(40.716972, -73.99446)",HESTER STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497135,Sedan,,,, +10/14/2021,17:00,,,40.6972254,-73.8729478,"(40.6972254, -73.8729478)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468014,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,4:20,,,40.690483,-73.80022,"(40.690483, -73.80022)",109 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497169,Sedan,,,, +01/18/2022,20:00,STATEN ISLAND,10306,40.573784,-74.10643,"(40.573784, -74.10643)",HYLAN BOULEVARD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497246,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,15:00,BROOKLYN,11211,40.712265,-73.95548,"(40.712265, -73.95548)",MARCY AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497349,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,11:42,MANHATTAN,10065,40.76624,-73.960236,"(40.76624, -73.960236)",EAST 68 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496863,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/22/2022,14:50,,,40.688564,-73.93019,"(40.688564, -73.93019)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497299,Sedan,FIRE TRUCK,,, +01/23/2022,8:10,BROOKLYN,11218,40.636284,-73.97137,"(40.636284, -73.97137)",EAST 7 STREET,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496810,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,0:34,QUEENS,11385,40.70247,-73.88783,"(40.70247, -73.88783)",,,71-25 66 PLACE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497112,Sedan,,,, +01/23/2022,19:50,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4496752,Sedan,Garbage or Refuse,,, +01/23/2022,21:42,STATEN ISLAND,10306,40.576405,-74.127075,"(40.576405, -74.127075)",ROCKLAND AVENUE,RICHMOND ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4497256,Sedan,Sedan,,, +01/23/2022,7:00,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4497013,Sedan,Sedan,Sedan,, +01/23/2022,7:30,MANHATTAN,10019,40.77099,-73.99092,"(40.77099, -73.99092)",WEST 58 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4496825,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,10:50,MANHATTAN,10036,40.7580218,-73.9817932,"(40.7580218, -73.9817932)",AVENUE OF THE AMERICAS,WEST 47 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Turning Improperly,,,,4468031,Taxi,Bike,,, +01/23/2022,20:18,QUEENS,11418,40.689873,-73.84282,"(40.689873, -73.84282)",ATLANTIC AVENUE,102 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4496916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,16:16,,,40.6791818,-73.9273563,"(40.6791818, -73.9273563)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468034,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,17:13,,,40.739693,-73.84598,"(40.739693, -73.84598)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4497015,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/23/2022,5:29,QUEENS,11421,40.688496,-73.8548,"(40.688496, -73.8548)",91 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496891,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,10:45,,,40.697098,-73.95386,"(40.697098, -73.95386)",SANDFORD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497312,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,11:46,BROOKLYN,11233,40.6807878,-73.919574,"(40.6807878, -73.919574)",HOWARD AVENUE,MARION STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468038,Sedan,Sedan,,, +01/23/2022,0:20,,,40.6427,-73.87661,"(40.6427, -73.87661)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496474,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,21:33,MANHATTAN,10065,40.76415,-73.95526,"(40.76415, -73.95526)",,,525 EAST 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496788,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,22:39,BROOKLYN,11232,40.65169,-74.00461,"(40.65169, -74.00461)",,,473 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497238,Sedan,,,, +10/11/2021,2:03,BROOKLYN,11233,40.6792919,-73.9226343,"(40.6792919, -73.9226343)",,,1871 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,12:14,BROOKLYN,11233,40.6821509,-73.9227087,"(40.6821509, -73.9227087)",,,218 RALPH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468044,Sedan,Sedan,,, +01/19/2022,18:38,QUEENS,11385,40.70422,-73.908615,"(40.70422, -73.908615)",,,1832 LINDEN STREET,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4497282,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/23/2022,7:14,BROOKLYN,11226,40.64802,-73.952194,"(40.64802, -73.952194)",ROGERS AVENUE,ALBEMARLE ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496557,Sedan,Sedan,,, +01/23/2022,19:40,STATEN ISLAND,10314,40.606358,-74.120926,"(40.606358, -74.120926)",WESTWOOD AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497320,Sedan,,,, +10/08/2021,17:49,BROOKLYN,11213,40.6791096,-73.9313916,"(40.6791096, -73.9313916)",,,1700 FULTON STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468048,Sedan,E-Bike,,, +01/23/2022,19:50,BROOKLYN,11206,40.71015,-73.94369,"(40.71015, -73.94369)",,,223 GRAHAM AVENUE,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4496751,Sedan,Pick-up Truck,,, +01/23/2022,0:04,QUEENS,11418,40.699604,-73.83069,"(40.699604, -73.83069)",,,87-03 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,14:08,BROOKLYN,11218,40.642944,-73.974045,"(40.642944, -73.974045)",,,260 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496811,Sedan,,,, +01/20/2022,17:30,BRONX,10452,40.841618,-73.91448,"(40.841618, -73.91448)",EAST 172 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497223,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,23:20,STATEN ISLAND,10314,40.589066,-74.138626,"(40.589066, -74.138626)",ROCKLAND AVENUE,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497255,Sedan,,,, +10/15/2021,3:05,,,40.7612837,-73.9557023,"(40.7612837, -73.9557023)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468054,Taxi,,,, +01/23/2022,14:46,BRONX,10468,40.87016,-73.89099,"(40.87016, -73.89099)",GRAND CONCOURSE,EAST 198 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496856,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,13:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,,4496662,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/23/2022,14:30,,,40.71486,-73.75922,"(40.71486, -73.75922)",93 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4496699,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/22/2022,13:15,,,40.82451,-73.95186,"(40.82451, -73.95186)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497128,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,14:40,BROOKLYN,11229,40.601852,-73.94988,"(40.601852, -73.94988)",AVENUE T,EAST 22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496777,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,8:25,,,,,,FORDHAM PLAZA,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4497195,Taxi,,,, +10/17/2021,0:49,,,40.7624195,-73.9544273,"(40.7624195, -73.9544273)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468061,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,12:20,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4496624,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/23/2022,0:05,QUEENS,11354,40.75666,-73.83378,"(40.75666, -73.83378)",,,40-49 COLLEGE POINT BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497043,Sedan,Sedan,Sedan,, +10/09/2021,3:40,,,40.6078926,-74.1351109,"(40.6078926, -74.1351109)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468066,Bus,Station Wagon/Sport Utility Vehicle,,, +10/02/2021,20:55,,,40.6142563,-74.1537884,"(40.6142563, -74.1537884)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468067,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,20:52,,,40.715847,-73.994934,"(40.715847, -73.994934)",CANAL STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4497137,Sedan,,,, +01/23/2022,14:00,,,40.789444,-73.98212,"(40.789444, -73.98212)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496688,Sedan,,,, +10/13/2021,7:30,,,40.6075657,-74.0871064,"(40.6075657, -74.0871064)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4468070,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/14/2021,15:55,,,40.6085525,-74.0888544,"(40.6085525, -74.0888544)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468071,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,21:10,,,40.6061902,-74.0761311,"(40.6061902, -74.0761311)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468072,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,16:45,QUEENS,11360,40.78221,-73.78151,"(40.78221, -73.78151)",,,211-17 18 AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4496832,Sedan,Station Wagon/Sport Utility Vehicle,Bike,, +10/15/2021,10:50,,,40.6059597,-74.0760084,"(40.6059597, -74.0760084)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468074,Flat Bed,Dump,,, +01/18/2022,9:28,STATEN ISLAND,10304,40.631077,-74.08808,"(40.631077, -74.08808)",VICTORY BOULEVARD,LOUIS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497276,Sedan,Sedan,,, +10/16/2021,22:30,,,40.7636378,-73.9532966,"(40.7636378, -73.9532966)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468076,Sedan,Sedan,,, +01/21/2022,7:45,,,,,,SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497342,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,16:35,BRONX,10452,40.83981,-73.91314,"(40.83981, -73.91314)",GRAND CONCOURSE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497215,Bus,Sedan,,, +01/23/2022,15:30,,,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496839,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,21:52,BROOKLYN,11204,40.614586,-73.98429,"(40.614586, -73.98429)",21 AVENUE,66 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4497124,Sedan,Sedan,Sedan,, +01/23/2022,8:44,,,40.72626,-73.72387,"(40.72626, -73.72387)",91 AVENUE,CROSS ISLAND PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4496562,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/24/2021,18:30,,,,,,VANWYCK EXPRESSWAY EXTENSION,132 avenue,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497186,Sedan,,,, +01/23/2022,0:00,,,40.69212,-73.90661,"(40.69212, -73.90661)",KNICKERBOCKER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4496738,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/20/2022,13:30,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497144,E-Bike,,,, +01/23/2022,21:00,BROOKLYN,11226,40.636368,-73.961586,"(40.636368, -73.961586)",NEWKIRK AVENUE,EAST 17 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497098,Sedan,,,, +01/23/2022,17:15,MANHATTAN,10035,40.799297,-73.94113,"(40.799297, -73.94113)",EAST 117 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4496868,Sedan,Sedan,,, +01/23/2022,15:35,MANHATTAN,10021,40.76611,-73.95796,"(40.76611, -73.95796)",,,333 EAST 69 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4497355,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/15/2021,6:35,QUEENS,11422,40.665256,-73.7353338,"(40.665256, -73.7353338)",SOUTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4468089,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,15:32,BRONX,10462,40.835373,-73.85522,"(40.835373, -73.85522)",,,1455 UNIONPORT ROAD,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4496966,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +01/23/2022,22:14,,,40.627453,-73.97807,"(40.627453, -73.97807)",48 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4497266,Bike,,,, +01/23/2022,11:00,MANHATTAN,10028,40.776196,-73.94988,"(40.776196, -73.94988)",EAST 85 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496792,Sedan,,,, +01/22/2022,12:05,,,40.822784,-73.9574,"(40.822784, -73.9574)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497196,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,14:49,STATEN ISLAND,10306,0,0,"(0.0, 0.0)",AMBOY ROAD,MOBILE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497247,Sedan,Sedan,,, +10/11/2021,12:49,,,40.6819344,-73.9225436,"(40.6819344, -73.9225436)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468095,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,18:40,,,40.7379141,-73.9045781,"(40.7379141, -73.9045781)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468096,Sedan,,,, +01/23/2022,21:10,QUEENS,11354,40.765823,-73.82373,"(40.765823, -73.82373)",PARSONS BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4496838,Fire truck,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,5:30,,,40.605522,-74.18429,"(40.605522, -74.18429)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497157,Sedan,,,, +01/23/2022,7:55,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4496594,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,21:50,BROOKLYN,11218,40.637863,-73.96568,"(40.637863, -73.96568)",,,459 ARGYLE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496997,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,18:39,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496710,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/23/2022,17:10,QUEENS,11374,40.730118,-73.86232,"(40.730118, -73.86232)",63 ROAD,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4497016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,13:01,MANHATTAN,10065,40.760857,-73.961075,"(40.760857, -73.961075)",EAST 61 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496787,Taxi,3 Wheel Sc,,, +01/23/2022,18:30,MANHATTAN,10010,40.73914,-73.98294,"(40.73914, -73.98294)",,,310 3 AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4496988,Station Wagon/Sport Utility Vehicle,Bus,,, +12/17/2021,8:30,BROOKLYN,11233,40.680077,-73.932365,"(40.680077, -73.932365)",,,85 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497297,Sedan,,,, +01/23/2022,16:45,BROOKLYN,11203,40.651512,-73.93506,"(40.651512, -73.93506)",,,4502 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496862,Sedan,,,, +01/17/2022,12:37,,,40.693203,-73.953995,"(40.693203, -73.953995)",WALWORTH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497316,Box Truck,Sedan,,, +01/23/2022,0:57,BRONX,10459,40.8275,-73.886406,"(40.8275, -73.886406)",WESTCHESTER AVENUE,HOME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496485,Station Wagon/Sport Utility Vehicle,U HAUL,,, +01/19/2022,11:58,BROOKLYN,11220,40.64228,-74.00868,"(40.64228, -74.00868)",,,618 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497237,Sedan,PK,,, +09/27/2021,4:50,BROOKLYN,11213,40.6652755,-73.9294204,"(40.6652755, -73.9294204)",,,24 FORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468111,Sedan,,,, +01/22/2022,14:50,,,40.83147,-73.94678,"(40.83147, -73.94678)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497138,Sedan,,,, +01/23/2022,15:45,MANHATTAN,10002,40.71521,-73.98427,"(40.71521, -73.98427)",GRAND STREET,PITT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496680,Sedan,Sedan,,, +01/23/2022,18:54,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496691,Sedan,Sedan,,, +01/22/2022,2:05,,,40.691074,-73.88733,"(40.691074, -73.88733)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497114,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,16:22,BROOKLYN,11215,40.661232,-73.99171,"(40.661232, -73.99171)",,,273 20 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496720,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,11:15,QUEENS,11385,40.70719,-73.91511,"(40.70719, -73.91511)",SENECA AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497129,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,20:40,QUEENS,11411,40.69314,-73.74486,"(40.69314, -73.74486)",SPRINGFIELD BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496756,Station Wagon/Sport Utility Vehicle,,,, +10/07/2021,18:15,BROOKLYN,11233,40.6786223,-73.927268,"(40.6786223, -73.927268)",,,15 ROCHESTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468119,Sedan,Sedan,,, +01/22/2022,13:20,QUEENS,11103,40.765198,-73.913925,"(40.765198, -73.913925)",,,28-41 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497173,Sedan,,,, +01/23/2022,8:30,BRONX,10469,40.87548,-73.85758,"(40.87548, -73.85758)",PAULDING AVENUE,EAST 211 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/23/2022,5:30,BROOKLYN,11224,40.576885,-74.00323,"(40.576885, -74.00323)",NEPTUNE AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497115,Sedan,,,, +01/22/2022,0:00,BRONX,10465,40.827583,-73.84085,"(40.827583, -73.84085)",,,905 BRUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4497164,Sedan,Sedan,,, +01/22/2022,15:42,BRONX,10457,40.852142,-73.8976,"(40.852142, -73.8976)",,,415 EAST 180 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497194,Sedan,,,, +01/23/2022,11:10,,,40.73814,-74.00816,"(40.73814, -74.00816)",WASHINGTON STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4496630,Sedan,Sedan,,, +10/17/2021,21:10,,,40.6658024,-73.7463956,"(40.6658024, -73.7463956)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468128,Sedan,Sedan,,, +01/23/2022,18:15,MANHATTAN,10032,40.839867,-73.94064,"(40.839867, -73.94064)",WEST 166 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496715,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,19:36,BROOKLYN,11249,40.707,-73.9673,"(40.707, -73.9673)",WYTHE AVENUE,DIVISION AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496749,Station Wagon/Sport Utility Vehicle,Bike,,, +01/23/2022,17:15,MANHATTAN,10009,40.729443,-73.97804,"(40.729443, -73.97804)",,,545 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496893,Sedan,,,, +01/11/2022,2:58,,,40.609142,-74.14711,"(40.609142, -74.14711)",NEPTUNE PLACE,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4497231,Garbage or Refuse,,,, +10/17/2021,20:30,,,40.6924672,-73.7268683,"(40.6924672, -73.7268683)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468133,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +01/23/2022,0:00,QUEENS,11373,40.745197,-73.871574,"(40.745197, -73.871574)",94 STREET,DENMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496660,Sedan,,,, +01/23/2022,18:45,,,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4496780,Station Wagon/Sport Utility Vehicle,Bike,,, +01/23/2022,9:50,BROOKLYN,11228,40.606842,-74.0155,"(40.606842, -74.0155)",CROPSEY AVENUE,BAY 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496586,Sedan,,,, +01/23/2022,16:18,MANHATTAN,10018,40.751827,-73.9886,"(40.751827, -73.9886)",,,155 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496743,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,15:43,QUEENS,11385,40.70193,-73.90621,"(40.70193, -73.90621)",MADISON STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497109,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/23/2022,18:24,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496725,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,11:10,,,40.6845,-73.92639,"(40.6845, -73.92639)",PATCHEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,23:00,,,40.6050231,-74.0292838,"(40.6050231, -74.0292838)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468143,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,17:45,,,40.7091914,-73.956819,"(40.7091914, -73.956819)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468144,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,11:20,QUEENS,11105,40.776314,-73.90845,"(40.776314, -73.90845)",,,21-47 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497174,Sedan,Sedan,,, +01/23/2022,18:55,,,40.76417,-73.83967,"(40.76417, -73.83967)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496812,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/03/2022,19:00,,,40.827343,-73.94279,"(40.827343, -73.94279)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497127,Sedan,,,, +10/17/2021,23:00,,,40.8337639,-73.8740639,"(40.8337639, -73.8740639)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468149,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,18:50,STATEN ISLAND,10301,40.610897,-74.10001,"(40.610897, -74.10001)",LITTLE CLOVE ROAD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4497184,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,13:15,,,40.689102,-73.94507,"(40.689102, -73.94507)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4497151,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,8:50,,,40.6303667,-73.9737131,"(40.6303667, -73.9737131)",NOSTRAND AVENUE,CAMPUS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468138,Sedan,,,, +08/01/2021,21:00,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442843,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,10:52,BROOKLYN,11239,40.644042,-73.8775195,"(40.644042, -73.8775195)",PENNSYLVANIA AVENUE,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4468155,Sedan,Sedan,,, +10/17/2021,0:48,,,40.6782423,-73.8975215,"(40.6782423, -73.8975215)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4468156,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/23/2022,2:21,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",CLAREMONT PARKWAY,FULTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496876,Taxi,Pick-up Truck,,, +10/17/2021,18:15,,,40.6519829,-73.8654117,"(40.6519829, -73.8654117)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468158,Sedan,Pick-up Truck,,, +01/20/2022,19:14,,,40.68267,-73.97187,"(40.68267, -73.97187)",ATLANTIC AVENUE,,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,Unspecified,,,4497254,Van,Sedan,Sedan,, +01/23/2022,19:45,BRONX,10475,40.880833,-73.83232,"(40.880833, -73.83232)",TILLOTSON AVENUE,REEDS MILL LANE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4496799,Sedan,,,, +12/23/2021,18:50,QUEENS,11694,40.579235,-73.838936,"(40.579235, -73.838936)",ROCKAWAY BEACH BOULEVARD,BEACH 118 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497278,Sedan,,,, +09/30/2021,16:00,,,40.683783,-73.7897299,"(40.683783, -73.7897299)",116 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468162,Sedan,,,, +01/23/2022,10:45,,,40.878212,-73.84115,"(40.878212, -73.84115)",EAST 222 STREET,BRUNER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4496790,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,5:40,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",SPRINGFIELD BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496560,Truck,Sedan,,, +10/16/2021,12:30,,,40.651873,-73.8653471,"(40.651873, -73.8653471)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4468165,Sedan,Sedan,Sedan,Sedan, +01/22/2022,16:30,STATEN ISLAND,10308,40.558163,-74.153404,"(40.558163, -74.153404)",,,282 GIFFORDS LANE,1,0,1,0,0,0,0,0,Unspecified,,,,,4497317,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,10:30,,,40.796642,-73.96848,"(40.796642, -73.96848)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4496845,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/19/2022,12:00,,,40.58661,-74.08683,"(40.58661, -74.08683)",MASON AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497242,Sedan,Sedan,,, +01/23/2022,18:43,BRONX,10468,40.869656,-73.898926,"(40.869656, -73.898926)",WEST 195 STREET,RESERVOIR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496857,Sedan,,,, +01/23/2022,21:20,BROOKLYN,11218,40.638733,-73.98468,"(40.638733, -73.98468)",40 STREET,14 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4497079,Sedan,Bike,,, +01/15/2022,22:33,,,,,,RCHMOND ROAD,DONGAN HILLS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497248,Sedan,,,, +01/23/2022,3:07,,,40.794895,-73.822235,"(40.794895, -73.822235)",147 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496831,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/23/2022,17:00,QUEENS,11419,40.68343,-73.82661,"(40.68343, -73.82661)",107 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496762,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,15:36,,,40.89492,-73.85314,"(40.89492, -73.85314)",BARNES AVENUE,EAST 236 STREET,,3,0,0,0,0,0,3,0,Driver Inexperience,Failure to Yield Right-of-Way,,,,4497303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,21:50,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497331,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,15:45,,,40.6425478,-73.8765147,"(40.6425478, -73.8765147)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468177,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,6:45,,,40.840866,-73.87281,"(40.840866, -73.87281)",MORRIS PARK AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4497123,,,,, +01/23/2022,23:01,,,40.831722,-73.915016,"(40.831722, -73.915016)",MORRIS AVENUE,,,1,0,1,0,0,0,0,0,Passenger Distraction,,,,,4497216,Sedan,,,, +01/23/2022,11:49,MANHATTAN,10029,40.797688,-73.9394,"(40.797688, -73.9394)",,,219 EAST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496867,Sedan,,,, +10/12/2021,15:17,QUEENS,11434,40.683144,-73.7685817,"(40.683144, -73.7685817)",MERRICK BOULEVARD,SUNBURY ROAD,,3,0,0,0,0,0,3,0,Turning Improperly,Turning Improperly,,,,4468183,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,17:16,QUEENS,11413,40.6660102,-73.78953,"(40.6660102, -73.78953)",150 STREET,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468184,E-Bike,,,, +01/23/2022,21:45,,,,,,HICKS STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4497001,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/12/2021,14:28,QUEENS,11434,40.681338,-73.7741368,"(40.681338, -73.7741368)",170 STREET,MARSDEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468185,Sedan,,,, +01/23/2022,11:30,BROOKLYN,11203,40.649754,-73.93584,"(40.649754, -73.93584)",,,4402 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4497259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,21:16,BROOKLYN,11205,40.68888,-73.960014,"(40.68888, -73.960014)",CLASSON AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497022,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,2:45,BROOKLYN,11236,40.636505,-73.91572,"(40.636505, -73.91572)",GLENWOOD ROAD,EAST 79 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4497269,Sedan,Pick-up Truck,Sedan,Sedan,Sedan +01/23/2022,4:40,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496503,Sedan,Sedan,,, +01/23/2022,12:30,BRONX,10469,40.87632,-73.84854,"(40.87632, -73.84854)",,,3452 BOSTON ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497306,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,13:00,,,40.878998,-73.85858,"(40.878998, -73.85858)",BRONXWOOD AVENUE,EAST 215 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496797,Sedan,,,, +01/23/2022,18:50,MANHATTAN,10001,40.74991,-73.985985,"(40.74991, -73.985985)",,,63 WEST 35 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497141,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,3:22,QUEENS,11433,40.69961,-73.79242,"(40.69961, -73.79242)",,,104-26 164 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4496695,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +01/23/2022,11:10,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",TROUTMAN STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4497130,Sedan,Sedan,,, +01/21/2022,20:00,,,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4497353,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,22:18,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497244,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,16:50,BRONX,10456,40.830994,-73.90705,"(40.830994, -73.90705)",,,1186 WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4496874,Sedan,,,, +01/23/2022,0:10,,,40.61017,-74.188736,"(40.61017, -74.188736)",,,333 CHELSEA ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4496937,Sedan,,,, +01/20/2022,11:00,QUEENS,11691,40.593594,-73.77656,"(40.593594, -73.77656)",,,45-19 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4497200,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,23:20,,,40.697216,-73.872955,"(40.697216, -73.872955)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4497110,Sedan,Sedan,,, +01/23/2022,15:10,,,40.673786,-73.76381,"(40.673786, -73.76381)",BEDELL STREET,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,21:08,MANHATTAN,10026,40.803432,-73.95237,"(40.803432, -73.95237)",,,1925 7 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496755,Sedan,,,, +01/20/2022,8:57,QUEENS,11385,40.703487,-73.855446,"(40.703487, -73.855446)",WOODHAVEN BOULEVARD,82 ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4497116,Station Wagon/Sport Utility Vehicle,Bus,,, +01/23/2022,19:00,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496836,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,3:14,,,40.70183,-73.91933,"(40.70183, -73.91933)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4496734,Sedan,Sedan,Sedan,Sedan, +01/23/2022,0:00,QUEENS,11420,40.674995,-73.80854,"(40.674995, -73.80854)",ROCKAWAY BOULEVARD,130 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496763,Sedan,Sedan,,, +01/05/2022,14:40,QUEENS,11411,40.690514,-73.73747,"(40.690514, -73.73747)",225 STREET,119 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4497219,Sedan,Sedan,,, +01/21/2022,23:00,QUEENS,11385,40.708443,-73.90876,"(40.708443, -73.90876)",,,509 FAIRVIEW AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497165,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,0:15,,,40.6648495,-73.8222861,"(40.6648495, -73.8222861)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,11:13,QUEENS,11101,40.752995,-73.93495,"(40.752995, -73.93495)",,,39-39 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497175,Sedan,,,, +10/17/2021,9:50,QUEENS,11420,40.6788389,-73.8271903,"(40.6788389, -73.8271903)",111 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4468206,Sedan,,,, +01/23/2022,7:05,BRONX,10470,40.89646,-73.86921,"(40.89646, -73.86921)",,,243 EAST 233 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4496604,Sedan,Ambulance,,, +01/23/2022,2:55,MANHATTAN,10016,40.74197,-73.980865,"(40.74197, -73.980865)",EAST 28 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496983,Sedan,,,, +01/23/2022,16:27,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4496677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/05/2022,17:00,MANHATTAN,10031,40.83147,-73.94678,"(40.83147, -73.94678)",WEST 153 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497121,Sedan,Sedan,,, +01/23/2022,2:05,QUEENS,11372,40.74713,-73.88869,"(40.74713, -73.88869)",ROOSEVELT AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496580,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,2:23,MANHATTAN,10021,40.76649,-73.95696,"(40.76649, -73.95696)",1 AVENUE,EAST 70 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4496786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,23:41,,,40.6664846,-73.8081263,"(40.6664846, -73.8081263)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468220,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,1:34,,,40.665596,-73.8313172,"(40.665596, -73.8313172)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unsafe Speed,,,,4468221,Sedan,,,, +01/23/2022,23:33,BROOKLYN,11226,40.64344,-73.95171,"(40.64344, -73.95171)",,,1092 ROGERS AVENUE,2,0,1,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4497162,Sedan,Sedan,,, +01/23/2022,7:07,QUEENS,11420,40.673874,-73.819855,"(40.673874, -73.819855)",,,130-50 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497104,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,17:26,QUEENS,11411,40.689724,-73.734856,"(40.689724, -73.734856)",228 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4496712,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/16/2022,16:52,QUEENS,11413,40.666397,-73.755516,"(40.666397, -73.755516)",NORTH CONDUIT AVENUE,144 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497329,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,16:15,QUEENS,11693,40.59028,-73.8108,"(40.59028, -73.8108)",,,318 BEACH 85 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497279,Station Wagon/Sport Utility Vehicle,,,, +10/04/2021,5:34,MANHATTAN,10034,40.867276,-73.9192147,"(40.867276, -73.9192147)",VERMILYEA AVENUE,ISHAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468227,Taxi,,,, +01/23/2022,12:51,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",BRUCKNER EXPRESSWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496848,Sedan,Sedan,,, +01/23/2022,8:30,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,EXTERIOR STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4496821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +01/22/2022,15:10,QUEENS,11004,40.73871,-73.70192,"(40.73871, -73.70192)",HILLSIDE AVENUE,267 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497229,Sedan,E-Bike,,, +01/22/2022,13:30,STATEN ISLAND,10308,40.552326,-74.154884,"(40.552326, -74.154884)",COLON AVENUE,KATAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497253,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,20:00,BRONX,10468,40.880688,-73.885704,"(40.880688, -73.885704)",MOSHOLU PARKWAY,PAUL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496859,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,14:40,,,40.750156,-73.97699,"(40.750156, -73.97699)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496708,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,4:40,QUEENS,11103,40.7615528,-73.9126426,"(40.7615528, -73.9126426)",,,30-34 44 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468234,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/06/2021,0:05,,,40.7744252,-73.8987909,"(40.7744252, -73.8987909)",20 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468235,Box Truck,Bike,,, +01/23/2022,11:00,BROOKLYN,11203,40.637157,-73.93368,"(40.637157, -73.93368)",FARRAGUT ROAD,EAST 45 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4496656,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/23/2022,22:15,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4497363,,,,, +12/01/2021,0:00,,,40.82077,-73.95459,"(40.82077, -73.95459)",WEST 136 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497126,Sedan,,,, +10/17/2021,17:32,,,40.5846692,-73.9508512,"(40.5846692, -73.9508512)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468240,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,0:00,QUEENS,11412,40.691666,-73.76239,"(40.691666, -73.76239)",LINDEN BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,17:15,MANHATTAN,10001,40.74877,-73.98434,"(40.74877, -73.98434)",,,362 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4496744,Station Wagon/Sport Utility Vehicle,Bus,,, +01/23/2022,3:55,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496882,Sedan,,,, +10/12/2021,17:00,BROOKLYN,11229,40.6061132,-73.9548711,"(40.6061132, -73.9548711)",AVENUE R,EAST 18 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468248,Motorcycle,,,, +01/23/2022,21:20,BROOKLYN,11220,40.633583,-74.00797,"(40.633583, -74.00797)",61 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497078,,,,, +01/23/2022,7:00,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4496631,Sedan,,,, +01/23/2022,7:30,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4496561,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,10:11,BRONX,10466,40.888878,-73.843216,"(40.888878, -73.843216)",,,1199 EAST 233 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4496789,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,3:25,BROOKLYN,11208,40.670784,-73.86122,"(40.670784, -73.86122)",,,777 DREW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4496914,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/23/2022,18:25,BROOKLYN,11205,40.698463,-73.960205,"(40.698463, -73.960205)",FLUSHING AVENUE,KENT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496748,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,17:38,BROOKLYN,11233,40.681892,-73.92948,"(40.681892, -73.92948)",,,360 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4497295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,3:30,STATEN ISLAND,10308,40.549374,-74.152664,"(40.549374, -74.152664)",AMBOY ROAD,LINDENWOOD ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4497318,Sedan,,,, +01/19/2022,20:19,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHURCH STREET,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497239,Sedan,Motorscooter,,, +01/23/2022,0:30,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4496800,Sedan,,,, +10/15/2021,10:40,,,40.8281223,-73.9310615,"(40.8281223, -73.9310615)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468259,Sedan,Sedan,,, +10/15/2021,10:19,,,40.8452876,-73.9264896,"(40.8452876, -73.9264896)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468260,Sedan,Sedan,,, +01/21/2022,18:27,STATEN ISLAND,10306,40.571266,-74.09118,"(40.571266, -74.09118)",PATTERSON AVENUE,MIDLAND AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497249,Station Wagon/Sport Utility Vehicle,Bike,,, +01/23/2022,19:35,BROOKLYN,11224,40.574867,-74.00069,"(40.574867, -74.00069)",MERMAID AVENUE,WEST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497118,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,16:44,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",UTICA AVENUE,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496697,Sedan,Sedan,,, +01/22/2022,18:05,,,40.75595,-73.99074,"(40.75595, -73.99074)",WEST 40 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4497142,unk,Bike,,, +01/16/2022,22:50,BROOKLYN,11214,40.60058,-73.99161,"(40.60058, -73.99161)",23 AVENUE,86 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497111,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,17:00,QUEENS,11434,40.66696,-73.77078,"(40.66696, -73.77078)",SOUTH CONDUIT AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496676,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,0:00,BROOKLYN,11237,40.7025,-73.91633,"(40.7025, -73.91633)",HARMAN STREET,WYCKOFF AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496735,Sedan,Sedan,,, +01/23/2022,3:00,QUEENS,11436,40.670574,-73.794235,"(40.670574, -73.794235)",145 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497191,Sedan,,,, +09/17/2021,5:13,BRONX,10452,40.8289689,-73.9239325,"(40.8289689, -73.9239325)",,,928 GERARD AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468271,Sedan,Sedan,,, +08/01/2021,19:10,,,,,,CARTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4443251,Sedan,Motorcycle,,, +01/23/2022,15:15,BRONX,10472,40.831886,-73.87422,"(40.831886, -73.87422)",HARROD AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4497178,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Tow Truck / Wrecker +01/23/2022,8:40,QUEENS,11105,40.773594,-73.91179,"(40.773594, -73.91179)",23 AVENUE,33 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496619,Sedan,,,, +01/20/2022,2:12,STATEN ISLAND,10306,40.57122,-74.093445,"(40.57122, -74.093445)",COLONY AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4497245,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,9:15,BROOKLYN,11234,40.62006,-73.908936,"(40.62006, -73.908936)",EAST 70 STREET,VETERANS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496866,Sedan,,,, +12/19/2021,22:49,BROOKLYN,11233,40.67699,-73.92283,"(40.67699, -73.92283)",ATLANTIC AVENUE,COLUMBUS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497300,Sedan,,,, +09/28/2021,13:30,BROOKLYN,11233,40.68004,-73.93267,"(40.68004, -73.93267)",,,69 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497310,Sedan,,,, +01/23/2022,4:45,BROOKLYN,11214,40.614166,-74.000404,"(40.614166, -74.000404)",NEW UTRECHT AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4496520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,17:30,MANHATTAN,10016,40.7434737,-73.9767593,"(40.7434737, -73.9767593)",EAST 32 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,17:10,BRONX,10472,40.826305,-73.876595,"(40.826305, -73.876595)",,,1557 WATSON AVENUE,1,0,1,0,0,0,0,0,,,,,,4496972,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,14:40,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497031,Sedan,Sedan,,, +01/23/2022,7:30,BRONX,10467,40.879974,-73.8614,"(40.879974, -73.8614)",,,3664 BARNES AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4496796,Sedan,Sedan,Sedan,, +01/23/2022,6:09,,,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4497210,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,5:00,MANHATTAN,10012,40.722534,-73.99922,"(40.722534, -73.99922)",,,514 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496835,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,16:24,QUEENS,11427,40.725674,-73.7524,"(40.725674, -73.7524)",,,213-12 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497012,Sedan,,,, +01/23/2022,9:30,,,40.68484,-73.79281,"(40.68484, -73.79281)",115 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496723,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,8:45,MANHATTAN,10027,40.808804,-73.95589,"(40.808804, -73.95589)",WEST 121 STREET,MORNINGSIDE AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4496603,,,,, +01/23/2022,10:19,QUEENS,11385,40.70397,-73.90413,"(40.70397, -73.90413)",MADISON STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497131,E-Bike,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,11:30,BRONX,10457,40.843822,-73.91038,"(40.843822, -73.91038)",EAST 173 STREET,SELWYN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497222,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,14:30,BRONX,10456,40.8349135,-73.9157139,"(40.8349135, -73.9157139)",,,1230 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468295,Bus,Box Truck,,, +01/23/2022,3:00,QUEENS,11375,40.728806,-73.84033,"(40.728806, -73.84033)",68 AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4496764,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,22:16,,,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4496754,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +01/05/2022,13:21,,,,,,FDR DRIVE,EAST 53 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497168,Sedan,,,, +01/23/2022,8:20,QUEENS,11356,40.787834,-73.8331,"(40.787834, -73.8331)",136 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4496830,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,23:30,BRONX,10475,40.8854417,-73.8280433,"(40.8854417, -73.8280433)",,,4090 BOSTON ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4468300,,,,, +01/23/2022,13:59,BRONX,10456,40.83428,-73.90397,"(40.83428, -73.90397)",,,3630 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4496873,Sedan,Box Truck,,, +01/23/2022,16:30,,,40.76666,-73.94542,"(40.76666, -73.94542)",,,750 MAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/24/2021,21:30,,,40.69038,-73.7504,"(40.69038, -73.7504)",120 AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497272,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,10:30,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496936,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,17:35,,,40.715305,-73.96044,"(40.715305, -73.96044)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4496809,Taxi,Sedan,Sedan,Sedan,Sedan +01/22/2022,13:34,STATEN ISLAND,10305,40.59219,-74.087395,"(40.59219, -74.087395)",HYLAN BOULEVARD,BENTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4497250,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/22/2022,13:35,STATEN ISLAND,10306,40.566666,-74.11358,"(40.566666, -74.11358)",,,2690 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4497258,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,10:50,,,40.8380174,-73.8732824,"(40.8380174, -73.8732824)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4468311,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/20/2022,20:52,QUEENS,11374,40.724434,-73.8693,"(40.724434, -73.8693)",63 AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497280,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/23/2022,16:33,,,40.833282,-73.82836,"(40.833282, -73.82836)",BRUCKNER BOULEVARD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4496849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,11:28,BROOKLYN,11211,40.7171991,-73.9465314,"(40.7171991, -73.9465314)",WITHERS STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468333,Sedan,Box Truck,,, +10/17/2021,22:20,,,40.7197701,-73.9447595,"(40.7197701, -73.9447595)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468334,Sedan,Sedan,,, +04/12/2022,15:47,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4518926,Pick-up Truck,Sedan,,, +02/20/2022,23:10,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4505053,Sedan,Sedan,,, +10/16/2021,0:10,,,40.7251495,-73.9338053,"(40.7251495, -73.9338053)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468336,Sedan,Tractor Truck Diesel,,, +10/14/2021,23:49,,,40.8438947,-73.8961242,"(40.8438947, -73.8961242)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468348,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,5:00,,,40.8466512,-73.9256785,"(40.8466512, -73.9256785)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468355,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,1:30,,,40.7967462,-73.9292484,"(40.7967462, -73.9292484)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468361,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,17:08,BROOKLYN,11207,40.6835047,-73.9115123,"(40.6835047, -73.9115123)",BROADWAY,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4468362,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,9:19,,,40.6709,-73.95319,"(40.6709, -73.95319)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518959,Sedan,Box Truck,,, +01/24/2022,6:30,,,40.7099,-73.786736,"(40.7099, -73.786736)",175 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496955,Sedan,,,, +07/30/2021,23:03,BROOKLYN,11213,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,ALBANY AVENUE,,1,0,1,0,0,0,0,0,,,,,,4443468,,,,, +07/16/2021,17:30,BROOKLYN,11221,40.692623,-73.923676,"(40.692623, -73.923676)",BLEECKER STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4437596,Tractor Truck Diesel,Sedan,,, +07/31/2021,16:00,BRONX,10458,40.866283,-73.89068,"(40.866283, -73.89068)",,,2710 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442888,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,15:20,,,40.71787,-73.997116,"(40.71787, -73.997116)",MOTT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443576,Sedan,Box Truck,,, +07/31/2021,8:10,,,40.710587,-73.94711,"(40.710587, -73.94711)",LEONARD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4443528,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,20:55,,,40.82967,-73.931076,"(40.82967, -73.931076)",JEROME AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443546,Sedan,Bike,,, +08/01/2021,12:45,MANHATTAN,10002,40.719482,-73.991295,"(40.719482, -73.991295)",DELANCEY STREET,ELDRIDGE STREET,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4443578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,18:46,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,JEROME AVENUE,,1,0,0,0,0,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4443591,Taxi,E-Bike,,, +07/28/2021,13:30,BROOKLYN,11217,40.67975,-73.976364,"(40.67975, -73.976364)",,,43 PROSPECT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443524,Sedan,,,, +07/31/2021,1:20,,,40.845078,-73.91111,"(40.845078, -73.91111)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443544,Dump,Sedan,,, +07/29/2021,13:30,QUEENS,11426,40.726833,-73.71358,"(40.726833, -73.71358)",,,251-05 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443592,Sedan,,,, +08/01/2021,10:00,BROOKLYN,11230,40.614155,-73.96214,"(40.614155, -73.96214)",,,1441 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443552,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,14:35,BROOKLYN,11211,40.70835,-73.95323,"(40.70835, -73.95323)",HOOPER STREET,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443542,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,17:00,BROOKLYN,11249,40.70262,-73.96521,"(40.70262, -73.96521)",KENT AVENUE,ROSS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443512,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,23:35,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443568,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/30/2021,13:00,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,WALTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443533,Motorcycle,Sedan,,, +10/18/2021,6:52,,,40.6667645,-73.8365302,"(40.6667645, -73.8365302)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Tire Failure/Inadequate,Other Vehicular,,,,4468368,Sedan,Sedan,,, +10/08/2021,10:45,,,40.6082313,-74.1293996,"(40.6082313, -74.1293996)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468370,Pick-up Truck,Sedan,,, +10/15/2021,20:40,,,40.8553962,-73.9180955,"(40.8553962, -73.9180955)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468371,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,12:30,,,40.7355701,-73.9150494,"(40.7355701, -73.9150494)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468373,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,7:05,,,40.7234506,-73.938984,"(40.7234506, -73.938984)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468378,Sedan,,,, +10/15/2021,19:14,,,40.8553962,-73.9180955,"(40.8553962, -73.9180955)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468380,Sedan,Sedan,,, +08/01/2021,8:40,STATEN ISLAND,10306,40.57548,-74.11489,"(40.57548, -74.11489)",NORTH RAILROAD AVENUE,BURBANK AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4442666,Pick-up Truck,,,, +07/25/2021,16:25,BROOKLYN,11213,40.674004,-73.94455,"(40.674004, -73.94455)",PROSPECT PLACE,BROOKLYN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443483,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,3:00,BROOKLYN,11234,40.633053,-73.92259,"(40.633053, -73.92259)",,,912 EAST 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442722,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,19:50,BRONX,10466,40.892056,-73.8615,"(40.892056, -73.8615)",,,4118 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443427,Sedan,,,, +07/31/2021,0:20,,,40.810287,-73.90172,"(40.810287, -73.90172)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4443402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,9:15,,,40.703545,-73.92234,"(40.703545, -73.92234)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443242,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,16:10,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4443224,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,2:51,BROOKLYN,11217,40.677048,-73.98004,"(40.677048, -73.98004)",5 AVENUE,BERKELEY PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4442233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,22:30,,,40.67884,-73.75419,"(40.67884, -73.75419)",135 AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4442699,Sedan,,,, +08/01/2021,17:35,BROOKLYN,11216,40.67363,-73.95401,"(40.67363, -73.95401)",BEDFORD AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443449,Sedan,Motorcycle,,, +08/01/2021,17:23,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443002,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,23:03,QUEENS,11364,40.7343,-73.7552,"(40.7343, -73.7552)",BELL BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,13:20,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443201,Sedan,,,, +07/30/2021,15:05,STATEN ISLAND,10304,40.61208,-74.08527,"(40.61208, -74.08527)",TARGEE STREET,PALMA DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443293,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/29/2021,23:15,BROOKLYN,11207,40.683502,-73.91152,"(40.683502, -73.91152)",BROADWAY,ROCKAWAY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443363,E-Bike,Sedan,,, +08/01/2021,3:28,BRONX,10456,40.825527,-73.905945,"(40.825527, -73.905945)",EAST 165 STREET,CAULDWELL AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4442286,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/01/2021,22:25,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442780,Taxi,Sedan,,, +07/12/2021,20:30,QUEENS,11691,40.59567,-73.775734,"(40.59567, -73.775734)",BEACH CHANNEL DRIVE,BEACH 44 STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,,,,,4443238,Bike,,,, +07/30/2021,10:00,MANHATTAN,10031,40.82451,-73.95186,"(40.82451, -73.95186)",WEST 142 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443278,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,18:00,BROOKLYN,11208,40.671997,-73.87742,"(40.671997, -73.87742)",SUTTER AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443185,Sedan,Sedan,,, +08/01/2021,9:00,QUEENS,11413,40.67545,-73.74404,"(40.67545, -73.74404)",135 AVENUE,227 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442415,Sedan,RV,,, +08/01/2021,17:15,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4442622,Moped,,,, +08/01/2021,20:22,,,40.69225,-73.81791,"(40.69225, -73.81791)",101 AVENUE,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4442852,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,22:45,BRONX,10469,40.87088,-73.84617,"(40.87088, -73.84617)",,,3102 SEYMOUR AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443415,Sedan,,,, +08/01/2021,20:30,,,40.600754,-74.009865,"(40.600754, -74.009865)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442899,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,19:34,,,40.640945,-73.94852,"(40.640945, -73.94852)",AVENUE D,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443019,Sedan,Sedan,,, +08/01/2021,12:59,BRONX,10460,40.835636,-73.88217,"(40.835636, -73.88217)",,,1763 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4443117,Sedan,,,, +08/01/2021,9:00,QUEENS,11373,40.746582,-73.87973,"(40.746582, -73.87973)",,,86-13 BRITTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442538,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,0:30,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4442480,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,14:40,,,40.715553,-73.82617,"(40.715553, -73.82617)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4443312,Sedan,Sedan,,, +07/28/2021,10:00,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443354,Sedan,Sedan,,, +07/26/2021,19:20,BRONX,10474,40.80967,-73.89302,"(40.80967, -73.89302)",,,515 TRUXTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4443388,Sedan,Box Truck,,, +08/01/2021,15:18,QUEENS,11373,40.735645,-73.88657,"(40.735645, -73.88657)",,,77-04 KNEELAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442525,Sedan,Sedan,,, +08/01/2021,1:19,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",FOSTER AVENUE,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442481,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,11:08,QUEENS,11378,40.726097,-73.91943,"(40.726097, -73.91943)",56 ROAD,49 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442617,Station Wagon/Sport Utility Vehicle,PK,,, +08/01/2021,12:40,QUEENS,11004,40.745735,-73.714386,"(40.745735, -73.714386)",UNION TURNPIKE,257 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442438,Sedan,Sedan,,, +08/01/2021,14:00,,,40.82082,-73.91562,"(40.82082, -73.91562)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443097,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,21:15,,,40.821068,-73.934525,"(40.821068, -73.934525)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4442741,Sedan,Sedan,,, +08/01/2021,8:56,,,40.68625,-73.76848,"(40.68625, -73.76848)",BAISLEY BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4442799,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/26/2021,21:21,BRONX,10466,40.898243,-73.858864,"(40.898243, -73.858864)",,,4352 BRONX BOULEVARD,1,0,0,0,0,0,1,0,Passing Too Closely,Oversized Vehicle,,,,4443424,Sedan,Garbage or Refuse,,, +07/13/2021,11:20,STATEN ISLAND,10310,40.634407,-74.11883,"(40.634407, -74.11883)",,,1080 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443454,Sedan,Sedan,,, +08/01/2021,18:00,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443179,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,12:03,BROOKLYN,11217,40.681244,-73.97434,"(40.681244, -73.97434)",,,52 6 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442920,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/01/2021,17:48,,,40.816772,-73.809135,"(40.816772, -73.809135)",HARDING AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4443126,Sedan,Taxi,,, +08/01/2021,12:25,,,40.755203,-73.74191,"(40.755203, -73.74191)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442474,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/01/2021,0:01,,,40.70333,-73.8638,"(40.70333, -73.8638)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4442566,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,16:45,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4442711,Sedan,,,, +07/30/2021,13:40,,,40.86135,-73.89774,"(40.86135, -73.89774)",,,EAST 188 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443306,Sedan,,,, +07/22/2021,13:50,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443393,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,18:43,BRONX,10458,40.873753,-73.88498,"(40.873753, -73.88498)",,,3044 VALENTINE AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4442890,Bike,,,, +07/31/2021,20:00,BROOKLYN,11208,40.667336,-73.88091,"(40.667336, -73.88091)",,,732 LINWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443212,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,15:30,QUEENS,11435,40.686913,-73.79438,"(40.686913, -73.79438)",SUTPHIN BOULEVARD,113 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443317,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,15:30,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Obstruction/Debris,,,,4442623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,7:30,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",HILLSIDE AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443381,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,18:15,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442680,Sedan,Sedan,,, +07/31/2021,21:40,,,40.697582,-73.92983,"(40.697582, -73.92983)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,14:15,QUEENS,11413,40.678955,-73.74914,"(40.678955, -73.74914)",,,220-02 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4442511,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,5:30,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4443200,Sedan,,,, +08/01/2021,23:15,BROOKLYN,11219,40.633904,-73.99329,"(40.633904, -73.99329)",13 AVENUE,51 STREET,,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442958,Sedan,E-Bike,,, +08/01/2021,18:34,QUEENS,11434,40.664936,-73.775826,"(40.664936, -73.775826)",167 STREET,144 DRIVE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443047,Sedan,E-Scooter,,, +07/28/2021,21:24,BRONX,10459,40.821,-73.8969,"(40.821, -73.8969)",INTERVALE AVENUE,EAST 163 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443389,Sedan,Motorscooter,,, +07/31/2021,19:00,BROOKLYN,11208,40.68419,-73.880936,"(40.68419, -73.880936)",,,40 HALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443194,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,10:45,,,0,0,"(0.0, 0.0)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4443246,Bus,Fire Truck,,, +08/01/2021,10:07,QUEENS,11420,40.677,-73.81965,"(40.677, -73.81965)",LEFFERTS BOULEVARD,115 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4442728,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/31/2021,21:35,BROOKLYN,11207,40.671165,-73.895676,"(40.671165, -73.895676)",,,265 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443228,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,3:00,QUEENS,11420,40.67704,-73.80443,"(40.67704, -73.80443)",,,117-11 135 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442789,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,19:50,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443428,Sedan,Box Truck,,, +08/01/2021,23:12,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4442688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,18:40,STATEN ISLAND,10304,40.615204,-74.084656,"(40.615204, -74.084656)",TARGEE STREET,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443450,Sedan,,,, +08/01/2021,22:40,MANHATTAN,10029,40.78722,-73.952065,"(40.78722, -73.952065)",PARK AVENUE,EAST 97 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442869,Sedan,,,, +07/31/2021,20:05,BRONX,10461,40.847004,-73.84473,"(40.847004, -73.84473)",,,1720 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443299,Sedan,,,, +08/01/2021,6:16,,,,,,HENRY HUDSON PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4442654,Sedan,,,, +07/30/2021,18:00,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443205,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/18/2021,3:40,BROOKLYN,11222,40.723232,-73.95049,"(40.723232, -73.95049)",,,607 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4443334,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/01/2021,17:00,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4442818,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,20:38,BROOKLYN,11211,40.715122,-73.9599,"(40.715122, -73.9599)",,,232 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4442700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Moped,Moped +08/01/2021,17:11,QUEENS,11357,40.79087,-73.807434,"(40.79087, -73.807434)",154 STREET,12 ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4442819,Convertible,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,7:00,QUEENS,11412,40.687286,-73.758865,"(40.687286, -73.758865)",190 STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442770,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,9:30,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443233,Sedan,Sedan,,, +08/01/2021,1:40,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4442235,Sedan,Sedan,,, +08/01/2021,22:06,BROOKLYN,11237,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,KNICKERBOCKER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443260,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,12:45,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4443369,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,2:13,BROOKLYN,11213,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,1,1,0,0,0,0,1,1,Unspecified,,,,,4442673,Motorcycle,,,, +07/28/2021,7:50,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4443189,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/29/2021,16:00,,,40.673542,-73.91955,"(40.673542, -73.91955)",HOWARD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443362,Sedan,,,, +07/08/2021,9:30,BROOKLYN,11222,40.736214,-73.95864,"(40.736214, -73.95864)",COMMERCIAL STREET,FRANKLIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443333,Tractor Truck Diesel,Dump,,, +07/30/2021,14:49,QUEENS,11435,40.690483,-73.80022,"(40.690483, -73.80022)",LIVERPOOL STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4443223,Sedan,Sedan,Sedan,, +08/01/2021,5:55,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442346,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/27/2021,13:08,QUEENS,11691,40.59312,-73.772705,"(40.59312, -73.772705)",EDGEMERE AVENUE,BEACH 41 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443241,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,15:59,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4442651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,19:26,BRONX,10465,40.846115,-73.817406,"(40.846115, -73.817406)",AMPERE AVENUE,BAY VIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4442773,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +07/09/2021,18:40,BROOKLYN,11220,40.646374,-74.01591,"(40.646374, -74.01591)",,,5223 3 AVENUE,0,1,0,1,0,0,0,0,Unspecified,,,,,4443281,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,23:40,BROOKLYN,11203,40.64043,-73.92917,"(40.64043, -73.92917)",,,1325 UTICA AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4442689,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,15:25,BROOKLYN,11207,40.66645,-73.89642,"(40.66645, -73.89642)",,,391 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443184,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,17:38,BROOKLYN,11208,40.683716,-73.87829,"(40.683716, -73.87829)",,,115 LOGAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443204,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,11:30,BROOKLYN,11207,40.679104,-73.88916,"(40.679104, -73.88916)",,,170 BARBEY STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443493,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,10:31,BROOKLYN,11234,40.60667,-73.91149,"(40.60667, -73.91149)",EAST 65 STREET,56 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442723,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,13:50,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443403,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/15/2021,18:49,QUEENS,11369,40.763874,-73.875465,"(40.763874, -73.875465)",,,25-21 94 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443355,Sedan,Pick-up Truck,,, +07/31/2021,15:45,,,40.697823,-73.90803,"(40.697823, -73.90803)",CORNELIA STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4443254,Box Truck,Station Wagon/Sport Utility Vehicle,,, +06/30/2021,13:00,,,40.87683,-73.86472,"(40.87683, -73.86472)",TILDEN STREET,EAST GUN HILL ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443430,Sedan,,,, +08/01/2021,12:00,MANHATTAN,10016,40.743168,-73.98177,"(40.743168, -73.98177)",,,129 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442495,Station Wagon/Sport Utility Vehicle,UNK,,, +08/01/2021,12:00,,,40.697575,-73.984055,"(40.697575, -73.984055)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4442526,Sedan,,,, +08/01/2021,12:00,BROOKLYN,11230,40.617004,-73.96912,"(40.617004, -73.96912)",OCEAN PARKWAY,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442934,Ambulance,Sedan,,, +07/30/2021,10:45,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443348,Sedan,Sedan,,, +08/01/2021,13:50,STATEN ISLAND,10305,40.583042,-74.096176,"(40.583042, -74.096176)",HYLAN BOULEVARD,SEAVER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442667,Sedan,Sedan,,, +07/26/2021,8:25,QUEENS,11435,40.69242,-73.808685,"(40.69242, -73.808685)",,,104-15 PINEGROVE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443175,Sedan,Sedan,Sedan,, +07/31/2021,20:10,STATEN ISLAND,10310,40.64289,-74.11386,"(40.64289, -74.11386)",RICHMOND TERRACE,BEMENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443292,Sedan,Sedan,,, +08/01/2021,12:30,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4442475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/01/2021,11:56,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4442842,Sedan,Sedan,,, +08/01/2021,1:48,BRONX,10473,40.82437,-73.84299,"(40.82437, -73.84299)",,,805 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442972,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/01/2021,18:00,QUEENS,11385,40.70634,-73.8805,"(40.70634, -73.8805)",,,71-42 EDSALL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,11:54,BROOKLYN,11225,,,,,,45 Hawthorne,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4442709,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,13:21,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443213,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,22:00,,,40.69579,-73.93313,"(40.69579, -73.93313)",BROADWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4443245,E-Bike,Sedan,,, +07/27/2021,11:47,QUEENS,11691,40.606117,-73.75921,"(40.606117, -73.75921)",,,23-08 MOTT AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4443180,Sedan,,,, +07/18/2021,17:30,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4443462,Station Wagon/Sport Utility Vehicle,TRAILER,,, +08/01/2021,21:15,QUEENS,11001,40.727226,-73.71051,"(40.727226, -73.71051)",JAMAICA AVENUE,LITTLE NECK PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4442661,Sedan,,,, +08/01/2021,19:32,,,,,,KINGS HIGHWAY,EAST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442717,Bus,Sedan,,, +07/05/2021,20:45,QUEENS,11372,40.74945,-73.88711,"(40.74945, -73.88711)",37 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443397,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,20:20,,,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443392,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,3:07,,,40.595932,-73.75963,"(40.595932, -73.75963)",SEAGIRT BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4443307,Sedan,Sedan,,, +07/31/2021,6:40,BROOKLYN,11207,40.67315,-73.896194,"(40.67315, -73.896194)",PENNSYLVANIA AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443208,Sedan,Sedan,,, +07/26/2021,18:23,BRONX,10459,40.823284,-73.88762,"(40.823284, -73.88762)",LONGFELLOW AVENUE,ALDUS STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unsafe Speed,,,,4443383,Sedan,Motorscooter,,, +08/01/2021,5:30,,,40.71406,-73.95292,"(40.71406, -73.95292)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,3:30,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442410,Sedan,,,, +08/01/2021,16:22,BRONX,10461,40.83913,-73.84964,"(40.83913, -73.84964)",,,2402 SAINT RAYMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443121,Sedan,,,, +08/01/2021,8:00,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442618,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,19:00,BRONX,10459,40.823936,-73.89488,"(40.823936, -73.89488)",EAST 165 STREET,TIFFANY STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443453,,,,, +08/01/2021,12:38,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,5:40,,,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442850,Sedan,Sedan,,, +08/01/2021,15:35,QUEENS,11420,40.678288,-73.82914,"(40.678288, -73.82914)",110 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Aggressive Driving/Road Rage,,,,4442739,Sedan,Multi-Wheeled Vehicle,,, +07/26/2021,7:00,QUEENS,11369,40.761066,-73.863976,"(40.761066, -73.863976)",,,105-14 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4443396,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,20:00,MANHATTAN,10021,40.770737,-73.96622,"(40.770737, -73.96622)",,,860 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442797,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,13:45,BROOKLYN,11207,40.671986,-73.893906,"(40.671986, -73.893906)",,,301 VERMONT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443209,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/01/2021,10:30,BRONX,10467,40.885178,-73.860054,"(40.885178, -73.860054)",,,736 EAST 222 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443414,Sedan,,,, +08/01/2021,22:15,,,40.733334,-73.98319,"(40.733334, -73.98319)",EAST 16 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442677,Pick-up Truck,Pick-up Truck,,, +07/24/2021,11:06,QUEENS,11691,40.606426,-73.75045,"(40.606426, -73.75045)",,,14-01 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443176,Sedan,,,, +08/01/2021,17:40,BROOKLYN,11208,40.671467,-73.88109,"(40.671467, -73.88109)",SUTTER AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443195,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,17:00,,,40.59366,-73.98469,"(40.59366, -73.98469)",BENSON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4442715,,,,, +08/01/2021,9:25,BROOKLYN,11211,40.711903,-73.96295,"(40.711903, -73.96295)",BEDFORD AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443018,Sedan,Sedan,,, +08/01/2021,1:00,,,40.818733,-73.96109,"(40.818733, -73.96109)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442437,Sedan,,,, +08/01/2021,10:30,,,40.786495,-73.79463,"(40.786495, -73.79463)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4442815,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/01/2021,2:20,,,40.667465,-73.9247,"(40.667465, -73.9247)",UNION STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4442537,Sedan,,,, +08/01/2021,2:20,MANHATTAN,10035,40.799484,-73.92929,"(40.799484, -73.92929)",,,30 PALADINO AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4442835,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +08/01/2021,6:00,BROOKLYN,11203,40.651108,-73.94283,"(40.651108, -73.94283)",CHURCH AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4442672,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,16:30,,,40.788303,-73.81699,"(40.788303, -73.81699)",CROSS ISLAND PARKWAY,,,6,0,0,0,0,0,6,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4442814,Sedan,Sedan,Taxi,Sedan,Sedan +07/29/2021,20:55,,,40.900486,-73.85411,"(40.900486, -73.85411)",RICHARDSON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443423,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,18:00,BROOKLYN,11208,40.66041,-73.87693,"(40.66041, -73.87693)",WORTMAN AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443227,Sedan,Sedan,,, +08/01/2021,8:00,,,40.676647,-73.82236,"(40.676647, -73.82236)",116 STREET,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442727,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,10:00,BROOKLYN,11208,40.67825,-73.87611,"(40.67825, -73.87611)",WELLS STREET,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443234,Sedan,,,, +08/01/2021,1:24,,,40.61018,-74.03548,"(40.61018, -74.03548)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442236,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,21:55,,,40.60283,-73.758064,"(40.60283, -73.758064)",MCBRIDE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443261,Sedan,,,, +07/22/2021,18:00,BRONX,10474,40.814594,-73.88588,"(40.814594, -73.88588)",SPOFFORD AVENUE,HUNTS POINT AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443460,Sedan,E-Bike,,, +08/01/2021,1:52,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443188,Sedan,Sedan,,, +06/26/2021,15:48,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443366,Sedan,Sedan,,, +07/30/2021,11:00,,,,,,,,905 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4443350,Sedan,Sedan,Sedan,, +08/01/2021,10:25,,,40.828804,-73.84686,"(40.828804, -73.84686)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4442973,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/01/2021,15:30,,,40.668785,-73.94782,"(40.668785, -73.94782)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442517,Taxi,,,, +08/01/2021,14:51,,,40.557568,-74.207,"(40.557568, -74.207)",ARTHUR KILL ROAD,VETERANS ROAD WEST,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4442519,Sedan,Pick-up Truck,,, +08/01/2021,18:19,BROOKLYN,11219,40.635166,-73.98481,"(40.635166, -73.98481)",44 STREET,15 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442870,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,17:45,,,40.69841,-73.913315,"(40.69841, -73.913315)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443259,Sedan,,,, +08/01/2021,18:50,,,40.664948,-73.94262,"(40.664948, -73.94262)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442544,Sedan,Sedan,,, +08/01/2021,12:00,QUEENS,11413,40.679913,-73.73942,"(40.679913, -73.73942)",131 AVENUE,229 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442935,Sedan,Sedan,,, +07/17/2021,13:21,STATEN ISLAND,10314,40.618526,-74.11819,"(40.618526, -74.11819)",SLOSSON AVENUE,UTTER AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Other Vehicular,Unspecified,Unspecified,,4443297,Sedan,Sedan,Sedan,Sedan, +08/01/2021,19:42,,,40.74906,-73.870384,"(40.74906, -73.870384)",ROOSEVELT AVENUE,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4442660,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,13:48,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443060,Bike,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,23:00,BROOKLYN,11249,40.72073,-73.960884,"(40.72073, -73.960884)",,,49 NORTH 8 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443338,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,11:13,BROOKLYN,11220,40.636547,-74.02866,"(40.636547, -74.02866)",BAY RIDGE AVENUE,RIDGE BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4442460,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,14:21,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",JEROME AVENUE,WEST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442874,Pick-up Truck,Tanker,,, +08/01/2021,18:50,BRONX,10468,40.86645,-73.897354,"(40.86645, -73.897354)",,,25 EAST 193 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443028,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,0:00,QUEENS,11435,40.69401,-73.80714,"(40.69401, -73.80714)",LIBERTY AVENUE,PRINCETON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443174,Sedan,Sedan,,, +08/01/2021,13:50,,,40.635708,-73.95439,"(40.635708, -73.95439)",FARRAGUT ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442476,Sedan,Pick-up Truck,,, +08/01/2021,6:40,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,5,0,0,0,0,0,5,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4442542,PK,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/01/2021,15:55,QUEENS,11691,40.60076,-73.754036,"(40.60076, -73.754036)",,,20-10 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4443309,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,17:00,BROOKLYN,11226,40.648983,-73.94841,"(40.648983, -73.94841)",SNYDER AVENUE,EAST 31 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443324,Sedan,Bike,,, +08/01/2021,9:00,BROOKLYN,11233,40.682766,-73.92202,"(40.682766, -73.92202)",,,527 DECATUR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442643,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,19:20,,,40.738445,-73.999756,"(40.738445, -73.999756)",,,59 WEST DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4442774,Bike,,,, +07/31/2021,1:00,BROOKLYN,11212,40.662132,-73.911736,"(40.662132, -73.911736)",LIVONIA AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443300,Sedan,,,, +08/01/2021,2:50,BROOKLYN,11208,40.67613,-73.884865,"(40.67613, -73.884865)",LIBERTY AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443187,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,7:00,,,40.599243,-73.752495,"(40.599243, -73.752495)",BROOKHAVEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443253,Sedan,,,, +08/01/2021,11:40,,,40.802204,-73.967804,"(40.802204, -73.967804)",WEST 107 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442490,Sedan,Sedan,,, +08/01/2021,17:05,,,40.572224,-74.12139,"(40.572224, -74.12139)",,,AMBOY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4442668,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,9:45,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442418,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,13:30,QUEENS,11101,40.743416,-73.95387,"(40.743416, -73.95387)",VERNON BOULEVARD,49 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442619,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,22:00,BRONX,10455,40.815125,-73.8988,"(40.815125, -73.8988)",,,737 FOX STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4443372,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,19:30,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,WEST 181 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4442854,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/01/2021,15:30,BROOKLYN,11232,40.6532,-74.005585,"(40.6532, -74.005585)",38 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442608,Sedan,Sedan,,, +08/01/2021,15:39,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4443405,Convertible,,,, +07/30/2021,11:12,BROOKLYN,11207,40.67628,-73.892166,"(40.67628, -73.892166)",ATLANTIC AVENUE,MILLER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443226,Sedan,Sedan,,, +08/01/2021,22:21,MANHATTAN,10016,,,,Tunnel exit street,EAST 40 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443067,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,11:09,BRONX,10472,40.83568,-73.87037,"(40.83568, -73.87037)",,,1730 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443436,Sedan,Sedan,,, +08/01/2021,15:24,,,40.719833,-73.82624,"(40.719833, -73.82624)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4442693,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/01/2021,1:26,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442925,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/01/2021,21:48,QUEENS,11368,40.754486,-73.86039,"(40.754486, -73.86039)",,,36-11 108 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4443119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/01/2021,2:55,BROOKLYN,11237,40.710533,-73.928276,"(40.710533, -73.928276)",VARICK AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443013,Sedan,Dump,,, +08/01/2021,19:20,,,,,,SHORE PARKWAY,CROSS BAY BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442754,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,16:24,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",EAST NEW YORK AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443203,Sedan,,,, +07/23/2021,17:19,,,40.692024,-73.9818,"(40.692024, -73.9818)",WILLOUGHBY STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,,,,,4443286,Sedan,Bike,,, +08/01/2021,14:20,BRONX,10466,40.89193,-73.848076,"(40.89193, -73.848076)",EDENWALD AVENUE,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442685,Sedan,Sedan,,, +07/31/2021,22:00,BROOKLYN,11207,40.66127,-73.896065,"(40.66127, -73.896065)",NEWPORT STREET,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443214,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,1:30,BROOKLYN,11234,40.632847,-73.928375,"(40.632847, -73.928375)",UTICA AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443464,Sedan,Van,,, +08/01/2021,2:15,MANHATTAN,10010,40.741745,-73.993645,"(40.741745, -73.993645)",,,670 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4442676,Sedan,Sedan,,, +08/01/2021,4:20,QUEENS,11422,40.635643,-73.74013,"(40.635643, -73.74013)",ROCKAWAY BOULEVARD,3 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4442357,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,6:20,QUEENS,11691,40.59723,-73.76237,"(40.59723, -73.76237)",BEACH 29 STREET,DEERFIELD ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443235,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,13:00,QUEENS,11426,40.75001,-73.72166,"(40.75001, -73.72166)",,,252-09 72 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443385,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/01/2021,4:58,BRONX,10469,40.86827,-73.84426,"(40.86827, -73.84426)",,,2952 FENTON AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4442529,Sedan,Sedan,Sedan,, +08/01/2021,14:50,,,40.601738,-73.90031,"(40.601738, -73.90031)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442718,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,19:04,,,40.74457,-73.731575,"(40.74457, -73.731575)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443356,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,21:55,BROOKLYN,11232,40.658875,-74.002945,"(40.658875, -74.002945)",3 AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443282,Sedan,,,, +08/01/2021,13:10,BROOKLYN,11208,40.66947,-73.86246,"(40.66947, -73.86246)",,,2724 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4443191,Station Wagon/Sport Utility Vehicle,PK,,, +07/26/2021,23:00,BRONX,10466,40.891838,-73.86275,"(40.891838, -73.86275)",BRONX BOULEVARD,EAST 229 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443425,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,11:40,BROOKLYN,11201,0,0,"(0.0, 0.0)",SCHERMERHORN STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driverless/Runaway Vehicle,,,,4443502,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,17:30,,,,,,CROTONA PARK NORTH,CROTONA PARK,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442724,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,20:30,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443391,Sedan,E-Bike,,, +08/01/2021,15:15,,,40.694862,-73.81842,"(40.694862, -73.81842)",130 STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442848,Sedan,E-Bike,,, +08/01/2012,10:22,BROOKLYN,11208,40.67452,-73.878044,"(40.67452, -73.878044)",PITKIN AVENUE,MONTAUK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443197,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,11:53,,,40.668964,-73.95059,"(40.668964, -73.95059)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442705,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,21:25,BROOKLYN,11212,40.655663,-73.91404,"(40.655663, -73.91404)",,,525 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442662,Sedan,Sedan,,, +08/01/2021,13:00,,,40.66906,-73.88658,"(40.66906, -73.88658)",BLAKE AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4443230,Sedan,Sedan,,, +07/31/2021,18:30,QUEENS,11435,40.696644,-73.80741,"(40.696644, -73.80741)",LIVERPOOL STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443244,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,17:30,BROOKLYN,11249,40.719227,-73.962906,"(40.719227, -73.962906)",KENT AVENUE,NORTH 5 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442904,Sedan,E-Bike,,, +07/30/2021,18:50,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443181,ambulance,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,11:25,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442735,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/20/2021,9:00,BRONX,10474,40.809628,-73.890045,"(40.809628, -73.890045)",OAK POINT AVENUE,TIFFANY STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4443398,Sedan,,,, +08/01/2021,14:30,QUEENS,11356,40.781677,-73.83871,"(40.781677, -73.83871)",20 AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4442816,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/31/2021,18:29,,,40.870987,-73.84726,"(40.870987, -73.84726)",FISH AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4443295,Sedan,Sedan,,, +07/30/2021,2:00,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",EAST NEW YORK AVENUE,ALABAMA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4443207,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,21:20,BROOKLYN,11212,40.66861,-73.912415,"(40.66861, -73.912415)",,,104 BRISTOL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443360,Sedan,Sedan,,, +08/01/2021,2:28,MANHATTAN,10035,40.79971,-73.94017,"(40.79971, -73.94017)",,,152 EAST 118 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442838,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,23:44,BROOKLYN,11212,40.65794,-73.907745,"(40.65794, -73.907745)",ROCKAWAY AVENUE,LOTT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4443351,Sedan,,,, +07/31/2021,9:45,BROOKLYN,11208,40.689007,-73.874695,"(40.689007, -73.874695)",,,814 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443210,Box Truck,Sedan,,, +08/01/2021,4:10,BROOKLYN,11225,40.661003,-73.94776,"(40.661003, -73.94776)",MAPLE STREET,NEW YORK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Brakes Defective,,,,4442243,Sedan,Sedan,,, +07/29/2021,17:37,BROOKLYN,11212,40.668976,-73.90668,"(40.668976, -73.90668)",STONE AVENUE,BELMONT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4443271,Sedan,Sedan,,, +08/01/2021,18:05,BROOKLYN,11208,40.68767,-73.870285,"(40.68767, -73.870285)",LINCOLN AVENUE,ETNA STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4443231,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +08/01/2021,22:50,BRONX,10466,40.893616,-73.8526,"(40.893616, -73.8526)",BRONXWOOD AVENUE,EAST 235 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442684,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,13:58,BRONX,10472,40.827423,-73.86823,"(40.827423, -73.86823)",ROSEDALE AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442974,Sedan,Sedan,,, +08/01/2021,13:45,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442520,Sedan,Sedan,,, +08/01/2021,4:00,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4442941,Sedan,Sedan,,, +07/30/2021,19:00,,,40.70004,-73.9361,"(40.70004, -73.9361)",NOLL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443248,Sedan,,,, +08/01/2021,12:05,,,40.678577,-73.867935,"(40.678577, -73.867935)",LINCOLN AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443192,Sedan,,,, +08/01/2021,18:40,,,40.826553,-73.93466,"(40.826553, -73.93466)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Unsafe Speed,,,4442747,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/12/2021,19:28,,,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4443422,Taxi,Bike,,, +08/01/2021,16:30,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4442795,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/30/2021,18:30,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",BRUCKNER BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443452,Sedan,Pick-up Truck,,, +07/30/2021,8:00,QUEENS,11435,40.70028,-73.80354,"(40.70028, -73.80354)",150 STREET,94 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443177,Tractor Truck Diesel,Sedan,,, +08/01/2021,12:46,,,,,,HUTCHINSON RIVER PARKWAY,NEW ENGLAND THRUWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4442860,Sedan,Sedan,Sedan,, +08/01/2021,14:00,QUEENS,11385,40.704605,-73.9023,"(40.704605, -73.9023)",FAIRVIEW AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4442573,Sedan,Sedan,,, +08/01/2021,17:00,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4442657,Sedan,,,, +06/25/2021,20:00,MANHATTAN,10036,40.756767,-73.98272,"(40.756767, -73.98272)",WEST 45 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443336,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,13:30,,,40.752724,-73.996796,"(40.752724, -73.996796)",9 AVENUE,,,1,0,0,0,1,0,0,0,Obstruction/Debris,,,,,4442470,Bike,,,, +07/25/2021,13:00,MANHATTAN,10013,40.718536,-73.999054,"(40.718536, -73.999054)",,,202A HESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,0:00,BRONX,10467,40.88103,-73.87751,"(40.88103, -73.87751)",,,3519 WAYNE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442876,Sedan,,,, +08/01/2021,16:34,,,40.584625,-73.94713,"(40.584625, -73.94713)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442714,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,1:55,BRONX,10459,40.81974,-73.90149,"(40.81974, -73.90149)",,,840 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4443395,Sedan,,,, +07/30/2021,20:05,,,40.608105,-73.75414,"(40.608105, -73.75414)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443257,Pick-up Truck,,,, +07/26/2021,15:00,BROOKLYN,11212,40.666603,-73.91387,"(40.666603, -73.91387)",SUTTER AVENUE,AMBOY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443365,Bus,Motorbike,,, +08/01/2021,17:18,BROOKLYN,11209,40.62776,-74.02443,"(40.62776, -74.02443)",,,469 78 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442609,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,18:29,,,40.6796,-73.80349,"(40.6796, -73.80349)",VANWYCK EXPRESSWAY,116 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442663,Sedan,Sedan,,, +07/30/2021,21:50,BROOKLYN,11207,40.666718,-73.89162,"(40.666718, -73.89162)",DUMONT AVENUE,WYONA STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443182,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,0:56,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443031,Sedan,,,, +08/01/2021,9:10,,,40.622414,-73.896484,"(40.622414, -73.896484)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4443092,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/29/2021,9:30,BRONX,10474,40.819126,-73.88579,"(40.819126, -73.88579)",SENECA AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443399,Tractor Truck Diesel,Taxi,,, +08/01/2021,4:14,,,40.74128,-73.90257,"(40.74128, -73.90257)",61 STREET,QUEENS BOULEVARD,,7,0,0,0,0,0,7,0,Failure to Yield Right-of-Way,Unspecified,,,,4442453,Sedan,,,, +08/01/2021,23:15,,,40.731705,-74.00096,"(40.731705, -74.00096)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442811,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,14:39,BRONX,10469,40.873497,-73.85429,"(40.873497, -73.85429)",,,1128 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443413,Sedan,Sedan,,, +07/25/2021,4:35,BROOKLYN,11212,40.662796,-73.92612,"(40.662796, -73.92612)",,,80 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443456,Pick-up Truck,,,, +08/01/2021,15:43,BROOKLYN,11226,40.65488,-73.96189,"(40.65488, -73.96189)",PARKSIDE AVENUE,OCEAN AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4442516,Bike,,,, +08/01/2021,12:20,,,40.696674,-73.957535,"(40.696674, -73.957535)",SKILLMAN STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443407,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,15:20,BROOKLYN,11222,40.727802,-73.95308,"(40.727802, -73.95308)",,,802 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442903,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,8:00,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442416,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,8:50,,,40.597805,-74.07178,"(40.597805, -74.07178)",MAJOR AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442670,Sedan,,,, +08/01/2021,23:08,,,40.873592,-73.88506,"(40.873592, -73.88506)",EAST 203 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4443025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/26/2021,9:40,BRONX,10474,40.816517,-73.88789,"(40.816517, -73.88789)",,,796 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443373,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/01/2021,22:30,QUEENS,11415,40.707726,-73.82611,"(40.707726, -73.82611)",KEW GARDEN ROAD,126 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4442853,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,14:15,,,40.79978,-73.96821,"(40.79978, -73.96821)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442539,Station Wagon/Sport Utility Vehicle,Bus,,, +07/28/2021,8:00,QUEENS,11691,40.601936,-73.74876,"(40.601936, -73.74876)",MOTT AVENUE,GATEWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443243,Station Wagon/Sport Utility Vehicle,,,, +07/18/2021,17:15,BROOKLYN,11207,40.67046,-73.88788,"(40.67046, -73.88788)",SUTTER AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443220,Sedan,,,, +08/01/2021,20:45,BRONX,10456,40.83493,-73.90315,"(40.83493, -73.90315)",,,535 EAST 170 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442719,Taxi,,,, +08/01/2021,22:25,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",EAST 57 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442697,AMBULANCE,Pick-up Truck,,, +08/01/2021,1:11,,,40.675663,-73.901695,"(40.675663, -73.901695)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443186,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,16:18,,,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4443202,Sedan,,,, +08/01/2021,20:58,BRONX,10456,40.836998,-73.90691,"(40.836998, -73.90691)",,,1408 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,13:00,BROOKLYN,11211,40.71135,-73.96143,"(40.71135, -73.96143)",DRIGGS AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443510,Sedan,,,, +07/25/2021,19:49,BRONX,10474,40.81942,-73.88392,"(40.81942, -73.88392)",EDGEWATER ROAD,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443387,MOTOR SCOO,,,, +08/01/2021,17:55,,,40.73453,-73.99227,"(40.73453, -73.99227)",EAST 13 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442535,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,19:29,BROOKLYN,11212,40.66633,-73.91571,"(40.66633, -73.91571)",STRAUSS STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443357,Sedan,,,, +08/01/2021,12:07,BROOKLYN,11236,40.634846,-73.888084,"(40.634846, -73.888084)",SEAVIEW AVENUE,EAST 99 STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4442482,Motorcycle,,,, +07/31/2021,8:38,,,40.69584,-73.92959,"(40.69584, -73.92959)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443252,Sedan,Bike,,, +08/01/2021,7:35,,,40.788994,-73.94656,"(40.788994, -73.94656)",3 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4442924,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,14:45,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4443448,Sedan,Sedan,,, +08/01/2021,23:15,QUEENS,11370,40.75729,-73.88948,"(40.75729, -73.88948)",32 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443118,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,13:34,QUEENS,11365,40.744797,-73.77952,"(40.744797, -73.77952)",58 AVENUE,197 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,0:30,,,40.83862,-73.92708,"(40.83862, -73.92708)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4442762,Sedan,Sedan,,, +08/01/2021,3:20,BROOKLYN,11237,40.70854,-73.927414,"(40.70854, -73.927414)",JOHNSON AVENUE,VARICK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443012,Sedan,E-Bike,,, +08/01/2021,1:30,QUEENS,11419,40.689953,-73.826004,"(40.689953, -73.826004)",LEFFERTS BOULEVARD,101 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442847,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,13:13,BROOKLYN,11204,40.61652,-73.98586,"(40.61652, -73.98586)",65 STREET,20 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442477,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/01/2021,5:10,MANHATTAN,10025,40.79854,-73.95969,"(40.79854, -73.95969)",,,467 CENTRAL PARK WEST,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442402,Sedan,,,, +08/01/2021,21:46,,,40.684856,-73.97805,"(40.684856, -73.97805)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442675,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,21:25,QUEENS,11434,40.676037,-73.79035,"(40.676037, -73.79035)",SUTPHIN BOULEVARD,123 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443322,Pick-up Truck,,,, +08/01/2021,4:37,BRONX,10452,40.833363,-73.92915,"(40.833363, -73.92915)",,,1011 OGDEN AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4442775,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,5:20,BROOKLYN,11236,40.651733,-73.92013,"(40.651733, -73.92013)",,,27 EAST 89 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4442636,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/31/2021,2:06,BROOKLYN,11208,40.676327,-73.86547,"(40.676327, -73.86547)",PITKIN AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443225,Sedan,Sedan,,, +07/25/2021,18:52,QUEENS,11691,40.605335,-73.75528,"(40.605335, -73.75528)",MOTT AVENUE,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443237,Sedan,,,, +05/21/2021,15:05,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443190,Pick-up Truck,Sedan,,, +07/19/2021,8:25,QUEENS,11368,40.757725,-73.86372,"(40.757725, -73.86372)",105 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443284,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,4:30,,,40.88302,-73.85325,"(40.88302, -73.85325)",EAST 222 STREET,,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4443426,Sedan,Motorcycle,,, +08/01/2021,1:19,BRONX,10466,40.884888,-73.85872,"(40.884888, -73.85872)",,,3901 BARNES AVENUE,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,Unspecified,,,4442686,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/31/2021,23:00,BROOKLYN,11208,40.668266,-73.88116,"(40.668266, -73.88116)",DUMONT AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443198,Sedan,,,, +07/31/2021,1:47,BROOKLYN,11208,40.67784,-73.87307,"(40.67784, -73.87307)",,,989 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4443310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/01/2021,21:00,QUEENS,11434,40.66591,-73.76998,"(40.66591, -73.76998)",BREWER BOULEVARD,145 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inexperience,,,,4442877,Van,Sedan,,, +08/01/2021,0:30,BROOKLYN,11233,40.681713,-73.91152,"(40.681713, -73.91152)",ROCKAWAY AVENUE,MARION STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4443353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/13/2021,17:03,,,40.5842623,-73.9637906,"(40.5842623, -73.9637906)",BELT PARKWAY,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4468382,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,14:50,BROOKLYN,11236,40.646763,-73.89983,"(40.646763, -73.89983)",,,10009 GLENWOOD ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4442522,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,12:30,QUEENS,11435,40.688564,-73.79781,"(40.688564, -73.79781)",110 ROAD,147 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442980,Sedan,,,, +07/31/2021,20:45,,,40.69321,-73.91256,"(40.69321, -73.91256)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4443256,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/01/2021,16:29,BROOKLYN,11219,40.628983,-74.00033,"(40.628983, -74.00033)",,,1245 61 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442868,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,1:05,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4442515,Sedan,,,, +08/01/2021,1:00,BROOKLYN,11233,40.68532,-73.91931,"(40.68532, -73.91931)",,,829 HALSEY STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4442611,Sedan,Sedan,Sedan,Sedan, +07/30/2021,11:00,QUEENS,11433,40.69976,-73.7857,"(40.69976, -73.7857)",,,107-27 171 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443173,Sedan,Box Truck,,, +08/01/2021,22:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4443093,Pick-up Truck,,,, +08/01/2021,13:43,QUEENS,11429,40.703636,-73.74652,"(40.703636, -73.74652)",113 AVENUE,209 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442473,Sedan,Sedan,,, +07/06/2021,15:38,,,40.6873,-73.973656,"(40.6873, -73.973656)",LAFAYETTE AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4443285,E-Bike,,,, +07/26/2021,8:33,BROOKLYN,11212,40.65733,-73.9032,"(40.65733, -73.9032)",,,54 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443359,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,17:10,BROOKLYN,11207,40.65732,-73.88967,"(40.65732, -73.88967)",,,835 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443193,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,10:30,,,,,,BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4442732,Sedan,Pick-up Truck,,, +08/01/2021,3:55,BROOKLYN,11208,40.683933,-73.87119,"(40.683933, -73.87119)",FULTON STREET,HEMLOCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4443229,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +08/01/2021,22:20,BROOKLYN,11208,40.676495,-73.8636,"(40.676495, -73.8636)",FORBELL STREET,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443232,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,5:14,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4442263,Taxi,Sedan,,, +07/26/2021,7:15,BROOKLYN,11211,,,,VANDERVORT AVENUE,MASPETH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,17:34,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442800,Sedan,Sedan,,, +08/01/2021,5:14,,,40.82691,-73.93103,"(40.82691, -73.93103)",EAST 157 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4442840,Sedan,Sedan,,, +07/26/2021,0:00,BRONX,10466,40.897102,-73.843185,"(40.897102, -73.843185)",,,2050 PITMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443417,Sedan,,,, +07/31/2021,18:15,BRONX,10459,,,,REVEREND JAMES A POLITE AVENUE,E 167 ST,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443394,Sedan,E-Scooter,,, +08/01/2021,6:00,STATEN ISLAND,10304,40.62926,-74.076614,"(40.62926, -74.076614)",,,520 BAY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443274,Sedan,Sedan,,, +06/24/2021,23:30,STATEN ISLAND,10304,40.623905,-74.08175,"(40.623905, -74.08175)",,,218 BROAD STREET,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4443455,Sedan,,,, +08/01/2021,17:25,,,40.72545,-73.837776,"(40.72545, -73.837776)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442681,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,22:20,,,40.70003,-73.78873,"(40.70003, -73.78873)",MERRICK BOULEVARD,107 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Driver Inattention/Distraction,,,,4443178,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,5:00,BROOKLYN,11223,40.59981,-73.96132,"(40.59981, -73.96132)",,,2340 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4442713,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,9:28,BRONX,10462,40.84816,-73.86338,"(40.84816, -73.86338)",BARNES AVENUE,RHINELANDER AVENUE,,3,0,0,0,0,0,3,0,View Obstructed/Limited,View Obstructed/Limited,Unspecified,,,4443304,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/30/2021,13:15,BRONX,10459,40.824135,-73.89296,"(40.824135, -73.89296)",WESTCHESTER AVENUE,SIMPSON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443401,Pick-up Truck,,,, +08/01/2021,19:04,,,,,,CLINTONVILLE STREET,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Illnes,,,,,4442817,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,1:10,BROOKLYN,11213,40.67327,-73.9335,"(40.67327, -73.9335)",,,172 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442567,Sedan,Sedan,,, +08/01/2021,8:15,BRONX,10454,40.807552,-73.91922,"(40.807552, -73.91922)",EAST 138 STREET,BROOK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442452,Sedan,Bike,,, +08/01/2021,17:41,BRONX,10468,40.86177,-73.89868,"(40.86177, -73.89868)",CRESTON AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4442946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,0:00,BROOKLYN,11208,40.670067,-73.86869,"(40.670067, -73.86869)",CRESCENT STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443183,Sedan,,,, +08/01/2021,8:05,,,40.600204,-74.08117,"(40.600204, -74.08117)",CLOVE ROAD,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4442665,Sedan,Sedan,,, +08/01/2021,1:52,MANHATTAN,10032,,,,,,805 RIVERSIDE DRIVE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4442655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/01/2021,7:20,,,40.667465,-73.9247,"(40.667465, -73.9247)",PORTAL STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443035,Sedan,Pick-up Truck,,, +07/21/2021,19:40,STATEN ISLAND,10310,40.63534,-74.11129,"(40.63534, -74.11129)",,,291 OAKLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443294,Sedan,,,, +08/01/2021,14:50,BROOKLYN,11206,40.706543,-73.939644,"(40.706543, -73.939644)",,,279 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443511,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,19:12,,,40.58877,-73.98597,"(40.58877, -73.98597)",28 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442703,Sedan,Sedan,,, +08/01/2021,14:30,QUEENS,11420,40.671196,-73.802666,"(40.671196, -73.802666)",135 PLACE,130 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4442744,Sedan,Sedan,,, +07/29/2021,6:30,QUEENS,11691,40.600933,-73.750916,"(40.600933, -73.750916)",,,18-26 EVERDELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443247,Sedan,,,, +07/31/2021,20:05,BROOKLYN,11208,40.660072,-73.877754,"(40.660072, -73.877754)",WORTMAN AVENUE,CLEVELAND STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443211,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,6:28,BRONX,10459,40.825287,-73.88646,"(40.825287, -73.88646)",WHITLOCK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4443390,Sedan,Van,,, +07/31/2021,20:30,QUEENS,11101,40.757473,-73.946144,"(40.757473, -73.946144)",,,40-13 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4443412,Sedan,,,, +08/01/2021,14:30,QUEENS,11420,40.67535,-73.812386,"(40.67535, -73.812386)",,,125-21 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4442790,Sedan,,,, +07/28/2021,7:05,STATEN ISLAND,10301,40.643497,-74.07418,"(40.643497, -74.07418)",,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443451,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,3:23,,,40.68038,-73.80466,"(40.68038, -73.80466)",VAN WYCK EXPWY,,,2,1,0,0,0,0,2,1,Unsafe Speed,Unspecified,Unspecified,,,4442687,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/31/2021,15:50,BROOKLYN,11233,40.676098,-73.90635,"(40.676098, -73.90635)",,,2379 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443364,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,6:49,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Unspecified,,,,,4443199,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,15:48,BROOKLYN,11208,40.674385,-73.87897,"(40.674385, -73.87897)",PITKIN AVENUE,ATKINS AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4443206,Bike,,,, +08/01/2021,15:10,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",BREWER BOULEVARD,ROCKAWAY BOULEVARD,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4443472,Flat Bed,Sedan,,, +07/26/2021,7:15,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443222,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,21:00,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",CLAREMONT PARKWAY,PARK AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442720,E-Bike,Sedan,,, +10/17/2021,15:15,,,40.8451973,-73.9111939,"(40.8451973, -73.9111939)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,12:46,,,40.8466512,-73.9256785,"(40.8466512, -73.9256785)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468388,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,16:30,,,40.6073017,-73.9197094,"(40.6073017, -73.9197094)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4468404,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/10/2021,12:43,,,40.8373176,-73.9233023,"(40.8373176, -73.9233023)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468405,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,10:00,QUEENS,11361,,,,40 avenue,corporal stone,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519037,Sedan,,,, +01/17/2022,11:30,MANHATTAN,10038,40.70563,-74.005295,"(40.70563, -74.005295)",,,161 MAIDEN LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495267,Sedan,Sedan,,, +04/09/2022,3:46,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518442,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,14:34,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4522506,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/02/2022,2:19,BROOKLYN,11221,40.696182,-73.93384,"(40.696182, -73.93384)",BROADWAY,DITMARS STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519144,Taxi,Box Truck,,, +04/07/2022,21:57,QUEENS,11385,40.693844,-73.89692,"(40.693844, -73.89692)",CABOT ROAD,CYPRESS AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519132,E-Bike,,,, +10/13/2021,5:24,,,40.8450427,-73.9450747,"(40.8450427, -73.9450747)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468420,Sedan,Sedan,Sedan,, +03/30/2022,17:15,,,,,,MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519148,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,14:27,,,40.626217,-74.15783,"(40.626217, -74.15783)",FOREST AVENUE,UNION AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519125,Station Wagon/Sport Utility Vehicle,,,, +03/24/2022,14:30,BROOKLYN,11231,40.67602,-74.001236,"(40.67602, -74.001236)",HAMILTON AVENUE,CLINTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing Too Closely,,,,4519138,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,7:41,,,40.7175249,-73.7975756,"(40.7175249, -73.7975756)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468425,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/02/2021,2:15,,,40.6208269,-74.0818918,"(40.6208269, -74.0818918)",WARREN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468433,Sedan,,,, +10/01/2021,10:45,,,40.6282609,-74.0803807,"(40.6282609, -74.0803807)",WRIGHT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468437,Sedan,Sedan,,, +04/25/2022,13:40,BROOKLYN,11203,40.653267,-73.93927,"(40.653267, -73.93927)",LINDEN BOULEVARD,ALBANY AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4522510,Sedan,Box Truck,,, +04/25/2022,14:00,BROOKLYN,11223,,,,AVENUE V,EAST 4 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522505,Sedan,,,, +04/22/2022,9:15,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4522501,Sedan,Pick-up Truck,Sedan,, +04/24/2022,9:45,BROOKLYN,11210,0,0,"(0.0, 0.0)",,,3215 AVENUE H,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4522509,Station Wagon/Sport Utility Vehicle,,,, +04/22/2022,16:05,BROOKLYN,11212,0,0,"(0.0, 0.0)",,,488 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4522500,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/03/2021,9:32,BROOKLYN,11203,40.6445538,-73.9276606,"(40.6445538, -73.9276606)",EAST 52 STREET,CLARENDON ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468440,Sedan,,,, +10/16/2021,8:20,,,40.7934492,-73.9328309,"(40.7934492, -73.9328309)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4468441,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:00,BROOKLYN,11236,40.63068,-73.91847,"(40.63068, -73.91847)",,,1910 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:47,MANHATTAN,10031,40.82897,-73.9486,"(40.82897, -73.9486)",WEST 149 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518536,Sedan,,,, +04/12/2022,0:15,QUEENS,11377,40.74251,-73.90734,"(40.74251, -73.90734)",58 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518176,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,14:36,,,40.75781,-73.97353,"(40.75781, -73.97353)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4518514,Box Truck,,,, +04/12/2022,15:20,BROOKLYN,11217,40.68249,-73.97962,"(40.68249, -73.97962)",BERGEN STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,1:50,,,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518566,Sedan,Pick-up Truck,,, +04/09/2022,21:45,MANHATTAN,10026,40.80016,-73.946846,"(40.80016, -73.946846)",,,1400 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4518892,Taxi,Sedan,,, +04/12/2022,21:19,,,40.78393,-73.94423,"(40.78393, -73.94423)",1 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4519034,Station Wagon/Sport Utility Vehicle,Bike,,, +04/12/2022,0:21,BROOKLYN,11229,40.597263,-73.95101,"(40.597263, -73.95101)",OCEAN AVENUE,AVENUE V,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518206,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,5:33,,,40.7344798,-73.8631559,"(40.7344798, -73.8631559)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468451,Sedan,Sedan,,, +04/12/2022,16:20,MANHATTAN,10035,40.804066,-73.93267,"(40.804066, -73.93267)",2 AVENUE,EAST 127 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518582,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,10:00,BROOKLYN,11238,40.677933,-73.970116,"(40.677933, -73.970116)",,,199 PROSPECT PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518955,Sedan,Pick-up Truck,,, +04/08/2022,13:04,BRONX,10461,40.841667,-73.843544,"(40.841667, -73.843544)",WESTCHESTER SQUARE,PONTON AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4519010,Concrete Mixer,Sedan,Station Wagon/Sport Utility Vehicle,, +04/12/2022,16:40,MANHATTAN,10001,40.748108,-73.9935,"(40.748108, -73.9935)",,,209 WEST 29 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518859,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,5:49,BRONX,10472,40.834007,-73.87568,"(40.834007, -73.87568)",EAST 174 STREET,MORRISON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4518292,Sedan,Bike,,, +10/17/2021,11:17,,,40.7554913,-73.7417264,"(40.7554913, -73.7417264)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468457,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:59,BROOKLYN,11209,40.62931,-74.02273,"(40.62931, -74.02273)",,,7510 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518458,Box Truck,Sedan,,, +04/12/2022,23:50,QUEENS,11412,40.697823,-73.76799,"(40.697823, -73.76799)",WOOD STREET,MANGIN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4518632,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,11:45,BROOKLYN,11207,40.656116,-73.89666,"(40.656116, -73.89666)",HINSDALE STREET,DE WITT AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4518669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,9:50,BROOKLYN,11236,40.64542,-73.90266,"(40.64542, -73.90266)",,,1420 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518738,Bus,Bus,,, +04/12/2022,17:30,BROOKLYN,11228,40.609287,-74.00935,"(40.609287, -74.00935)",,,70 BAY 11 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518793,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,10:57,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518369,Ambulance,Ambulance,,, +04/11/2022,21:20,BRONX,10471,40.90028,-73.89704,"(40.90028, -73.89704)",BROADWAY,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4519071,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,13:47,QUEENS,11434,40.67897,-73.75985,"(40.67897, -73.75985)",MERRICK BOULEVARD,BELKNAP STREET,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4518400,Sedan,Sedan,,, +04/12/2022,10:00,QUEENS,11428,40.715904,-73.75559,"(40.715904, -73.75559)",,,93-15 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518370,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,12:45,,,40.680977,-74.00498,"(40.680977, -74.00498)",HAMILTON AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518973,Sedan,Sedan,,, +04/12/2022,15:30,BRONX,10466,40.881588,-73.84704,"(40.881588, -73.84704)",SCHIEFELIN AVENUE,EAST 223 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518447,Sedan,Taxi,,, +04/12/2022,10:15,BRONX,10457,40.846386,-73.89841,"(40.846386, -73.89841)",,,1874 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518319,Pick-up Truck,Box Truck,,, +04/12/2022,7:30,BROOKLYN,11228,40.618908,-74.00047,"(40.618908, -74.00047)",,,1525 72 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518789,Bus,Sedan,,, +04/12/2022,11:35,,,40.85668,-73.90811,"(40.85668, -73.90811)",WEST 181 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4518557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,22:00,QUEENS,11418,40.696865,-73.81535,"(40.696865, -73.81535)",ATLANTIC AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,11:30,QUEENS,11385,40.701862,-73.881744,"(40.701862, -73.881744)",,,69-30 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518840,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,19:30,,,40.67006,-73.890564,"(40.67006, -73.890564)",SUTTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518674,Station Wagon/Sport Utility Vehicle,Motorbike,,, +04/12/2022,16:32,BROOKLYN,11225,40.65719,-73.948875,"(40.65719, -73.948875)",,,339 WINTHROP STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518805,Sedan,,,, +04/12/2022,1:20,BROOKLYN,11207,40.675602,-73.89973,"(40.675602, -73.89973)",ATLANTIC AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518360,Convertible,,,, +10/11/2021,19:30,QUEENS,11374,40.7294733,-73.8654883,"(40.7294733, -73.8654883)",BOOTH STREET,63 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468481,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,11:53,QUEENS,11374,40.7309116,-73.860831,"(40.7309116, -73.860831)",97 STREET,63 ROAD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4468482,Pick-up Truck,,,, +04/12/2022,18:36,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518429,Sedan,Sedan,,, +04/12/2022,16:11,BROOKLYN,11229,40.60175,-73.950806,"(40.60175, -73.950806)",AVENUE T,EAST 21 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518520,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,23:40,BROOKLYN,11234,40.62392,-73.9216,"(40.62392, -73.9216)",EAST 56 STREET,AVENUE L,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519058,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/12/2022,0:00,BROOKLYN,11208,40.677166,-73.87775,"(40.677166, -73.87775)",MILFORD STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4518667,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,9:25,MANHATTAN,10003,40.73602,-73.98228,"(40.73602, -73.98228)",EAST 20 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518919,Taxi,E-Bike,,, +03/30/2022,15:58,BROOKLYN,11212,40.662132,-73.911736,"(40.662132, -73.911736)",BOYLAND STREET,LIVONIA AVENUE,,2,0,2,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519078,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,14:30,BROOKLYN,11209,40.62781,-74.02334,"(40.62781, -74.02334)",,,7710 5 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518461,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,10:46,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518496,Sedan,Sedan,,, +04/12/2022,8:05,,,40.8325,-73.92811,"(40.8325, -73.92811)",WEST 164 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4518980,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,18:00,,,40.786732,-73.9832385,"(40.786732, -73.9832385)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,19:05,,,40.776724,-73.9792859,"(40.776724, -73.9792859)",COLUMBUS AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4468493,Bike,,,, +04/12/2022,8:50,,,40.78076,-73.825424,"(40.78076, -73.825424)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518377,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,7:24,MANHATTAN,10069,40.7741151,-73.988627,"(40.7741151, -73.988627)",WEST 63 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468495,Bus,,,, +04/09/2022,3:30,MANHATTAN,10026,40.80066,-73.9544,"(40.80066, -73.9544)",7 AVENUE,WEST 112 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518890,Taxi,,,, +10/08/2021,10:45,MANHATTAN,10023,40.776724,-73.9792859,"(40.776724, -73.9792859)",COLUMBUS AVENUE,WEST 71 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4468498,Sedan,Armored Truck,,, +04/12/2022,19:00,,,40.701237,-73.79465,"(40.701237, -73.79465)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4518707,Sedan,E-Bike,,, +04/12/2022,18:38,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,8:10,,,40.7876856,-73.9750141,"(40.7876856, -73.9750141)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468502,E-Scooter,,,, +03/24/2022,8:22,MANHATTAN,10035,40.802597,-73.94506,"(40.802597, -73.94506)",WEST 119 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518872,Pick-up Truck,,,, +04/03/2022,11:28,QUEENS,11101,40.753742,-73.92984,"(40.753742, -73.92984)",,,37-25 33 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4518967,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/12/2022,12:40,,,,,,JEWEL AVENUE,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518550,Sedan,Sedan,,, +04/06/2022,9:11,,,40.73978,-73.97951,"(40.73978, -73.97951)",EAST 26 STREET,,,1,0,1,0,0,0,0,0,,,,,,4518937,,,,, +04/12/2022,16:15,,,,,,MADISON AVE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,3:20,BROOKLYN,11232,40.646717,-73.99789,"(40.646717, -73.99789)",40 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518508,Station Wagon/Sport Utility Vehicle,Bike,,, +04/12/2022,16:00,MANHATTAN,10003,40.729683,-73.989815,"(40.729683, -73.989815)",,,13 3 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518650,Sedan,Bike,,, +10/18/2021,12:16,,,40.6763071,-73.7320467,"(40.6763071, -73.7320467)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,8:42,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519042,Sedan,Sedan,,, +04/12/2022,8:20,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518465,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,15:40,,,40.7829172,-73.9857743,"(40.7829172, -73.9857743)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468513,Sedan,Pick-up Truck,,, +04/11/2022,22:10,MANHATTAN,10027,40.809086,-73.94859,"(40.809086, -73.94859)",,,163 WEST 125 STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4518898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,0:00,BROOKLYN,11219,40.642727,-73.99281,"(40.642727, -73.99281)",,,1062 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519109,Sedan,,,, +10/09/2021,19:42,MANHATTAN,10023,40.768891,-73.9820935,"(40.768891, -73.9820935)",BROADWAY,WEST 60 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468516,Ambulance,,,, +04/12/2022,8:15,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",EAST 173 STREET,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518610,Sedan,Sedan,,, +04/12/2022,20:40,MANHATTAN,10036,40.760117,-73.98484,"(40.760117, -73.98484)",BROADWAY,WEST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518515,Station Wagon/Sport Utility Vehicle,Bike,,, +04/12/2022,18:05,BRONX,10460,40.834515,-73.89454,"(40.834515, -73.89454)",BOSTON ROAD,STEBBINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518614,Sedan,Sedan,,, +04/12/2022,21:25,MANHATTAN,10039,40.823208,-73.93795,"(40.823208, -73.93795)",,,2546 7 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518568,Taxi,,,, +04/09/2022,16:06,,,40.57741,-73.96237,"(40.57741, -73.96237)",BRIGHTON BEACH AVENUE,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4518946,Motorscooter,,,, +04/12/2022,0:50,,,40.655743,-73.85908,"(40.655743, -73.85908)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4518177,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,21:00,BROOKLYN,11230,40.61848,-73.96107,"(40.61848, -73.96107)",,,1277 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518996,Sedan,,,, +10/13/2021,13:25,,,40.5917631,-73.908294,"(40.5917631, -73.908294)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4468524,PK,Taxi,,, +04/12/2022,23:39,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518486,Sedan,,,, +04/12/2022,16:40,,,40.705864,-73.91884,"(40.705864, -73.91884)",HART STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518865,Sedan,,,, +04/12/2022,16:15,,,40.768166,-73.83749,"(40.768166, -73.83749)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519107,Sedan,Sedan,,, +04/12/2022,17:10,MANHATTAN,10016,40.741642,-73.97817,"(40.741642, -73.97817)",2 AVENUE,EAST 29 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518924,Sedan,Bike,,, +10/17/2021,15:38,,,40.7435125,-73.8356671,"(40.7435125, -73.8356671)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468531,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,12:10,,,40.7006366,-73.7272352,"(40.7006366, -73.7272352)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4468532,Sedan,,,, +04/12/2022,0:36,,,,,,EAST 176 STREET,CARTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518251,Station Wagon/Sport Utility Vehicle,,,, +04/03/2022,1:27,QUEENS,11101,40.753593,-73.92338,"(40.753593, -73.92338)",STEINWAY STREET,36 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4518956,Sedan,Sedan,,, +10/18/2021,14:51,,,40.681666,-73.7278247,"(40.681666, -73.7278247)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4468536,Box Truck,,,, +04/12/2022,16:45,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518464,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,23:30,BROOKLYN,11235,40.577827,-73.96038,"(40.577827, -73.96038)",,,722 BRIGHTON BEACH AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4518572,Pick-up Truck,Sedan,,, +04/12/2022,11:00,BROOKLYN,11234,40.61871,-73.93076,"(40.61871, -73.93076)",AVENUE N,EAST 46 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519012,Sedan,Sedan,,, +04/12/2022,20:39,BRONX,10468,40.877422,-73.88732,"(40.877422, -73.88732)",,,3191 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518511,Sedan,,,, +04/10/2022,18:00,BROOKLYN,11249,40.709885,-73.96723,"(40.709885, -73.96723)",,,60 SOUTH 8 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518857,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,18:10,MANHATTAN,10012,40.72654,-74.000244,"(40.72654, -74.000244)",,,471 WEST BROADWAY,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4518896,Bike,Sedan,,, +04/12/2022,19:15,,,40.580616,-74.152534,"(40.580616, -74.152534)",FOREST HILL ROAD,RICHMOND HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518537,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,21:29,BRONX,10452,40.83354,-73.92037,"(40.83354, -73.92037)",MCCLELLAN STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4518979,Sedan,Ambulance,,, +04/12/2022,13:54,MANHATTAN,10016,40.746033,-73.9768,"(40.746033, -73.9768)",EAST 35 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518376,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,14:45,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518401,Sedan,Sedan,,, +04/12/2022,3:00,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518693,Sedan,Pick-up Truck,,, +10/18/2021,6:21,,,40.7883144,-73.8169911,"(40.7883144, -73.8169911)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,18:58,,,40.61106,-73.89714,"(40.61106, -73.89714)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518481,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,21:04,,,40.663284,-73.96096,"(40.663284, -73.96096)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518811,Sedan,,,, +04/03/2022,11:00,BRONX,10458,40.85717,-73.88621,"(40.85717, -73.88621)",,,2477 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519030,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,7:38,BRONX,10467,40.874653,-73.86269,"(40.874653, -73.86269)",MAGENTA STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4518361,Sedan,Sedan,,, +10/17/2021,16:26,,,40.7891273,-73.8225863,"(40.7891273, -73.8225863)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468555,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,21:25,BROOKLYN,11221,40.689922,-73.92281,"(40.689922, -73.92281)",BROADWAY,LINDEN STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4518620,Sedan,Sedan,,, +04/12/2022,12:52,QUEENS,11435,40.69401,-73.80714,"(40.69401, -73.80714)",LIBERTY AVENUE,PRINCETON STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4518708,Sedan,Pick-up Truck,Sedan,Trailor, +04/12/2022,13:25,MANHATTAN,10029,40.790894,-73.945175,"(40.790894, -73.945175)",EAST 105 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4518393,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/12/2022,8:35,BROOKLYN,11235,40.578373,-73.93887,"(40.578373, -73.93887)",ORIENTAL BOULEVARD,NORFOLK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518519,Taxi,Sedan,,, +04/10/2022,16:30,MANHATTAN,10003,,,,Fifth Avenue,14th street,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4518920,Station Wagon/Sport Utility Vehicle,Bike,,, +04/03/2022,10:25,QUEENS,11102,40.76696,-73.92158,"(40.76696, -73.92158)",,,30-08 30 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518964,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,6:25,BRONX,10467,40.884014,-73.8791,"(40.884014, -73.8791)",EAST 212 STREET,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4518848,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/12/2022,19:40,QUEENS,11433,40.700058,-73.78199,"(40.700058, -73.78199)",174 STREET,108 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4518471,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,20:20,QUEENS,11419,40.683662,-73.82578,"(40.683662, -73.82578)",116 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,10:29,BROOKLYN,11234,40.60648,-73.9277,"(40.60648, -73.9277)",AVENUE U,EAST 36 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519060,Sedan,,,, +03/27/2022,2:55,BROOKLYN,11205,40.690594,-73.95162,"(40.690594, -73.95162)",NOSTRAND AVENUE,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4518914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/18/2021,21:46,,,40.7080495,-73.8450242,"(40.7080495, -73.8450242)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468573,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,19:00,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518673,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,2:24,QUEENS,11411,40.6873,-73.7331,"(40.6873, -73.7331)",231 STREET,120 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518262,Sedan,Sedan,,, +04/12/2022,23:45,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518800,Tractor Truck Diesel,Tractor Truck Diesel,,, +04/12/2022,13:05,,,40.88922,-73.85969,"(40.88922, -73.85969)",WHITE PLAINS ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518448,Pick-up Truck,Moped,,, +04/12/2022,11:40,,,40.700672,-73.92164,"(40.700672, -73.92164)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518722,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,14:05,MANHATTAN,10018,40.760777,-74.00219,"(40.760777, -74.00219)",WEST 40 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518630,Bike,Bus,,, +04/12/2022,14:01,BROOKLYN,11212,40.67211,-73.91124,"(40.67211, -73.91124)",,,1540 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518553,Sedan,Van,,, +04/06/2022,15:25,BRONX,10455,40.81985,-73.91471,"(40.81985, -73.91471)",,,440 EAST 155 STREET,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4518971,Sedan,,,, +04/12/2022,4:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,13:00,,,40.772343,-73.95269,"(40.772343, -73.95269)",EAST 79 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518915,Taxi,,,, +04/12/2022,18:15,QUEENS,11378,40.72632,-73.90179,"(40.72632, -73.90179)",BORDEN AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518493,Sedan,Sedan,,, +04/12/2022,23:43,,,40.666428,-73.93691,"(40.666428, -73.93691)",CARROLL STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4518812,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,12:03,,,40.7071535,-73.9314809,"(40.7071535, -73.9314809)",INGRAHAM STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468588,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/06/2022,7:55,,,40.67164,-73.95034,"(40.67164, -73.95034)",NOSTRAND AVENUE,,,5,0,4,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:18,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518524,Sedan,Sedan,,, +04/12/2022,19:34,BROOKLYN,11236,40.642727,-73.91749,"(40.642727, -73.91749)",,,420 EAST 83 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518736,Sedan,E-Scooter,,, +04/12/2022,0:25,BROOKLYN,11236,40.634087,-73.88372,"(40.634087, -73.88372)",,,1560 EAST 102 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518318,Sedan,Sedan,,, +04/12/2022,8:34,,,40.68971,-73.826866,"(40.68971, -73.826866)",118 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518599,Sedan,Sedan,,, +04/12/2022,15:20,,,,,,LONG ISLAND EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518414,Sedan,Sedan,,, +04/12/2022,12:56,,,40.82914,-73.90811,"(40.82914, -73.90811)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518615,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,19:45,,,,,,BRUCKNER BOULEVARD,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518484,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/12/2022,9:25,,,40.854687,-73.890396,"(40.854687, -73.890396)",EAST 184 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518596,Sedan,,,, +04/12/2022,17:50,MANHATTAN,10010,40.741547,-73.98958,"(40.741547, -73.98958)",5 AVENUE,EAST 23 STREET,,2,0,1,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4518933,Moped,,,, +04/12/2022,8:00,,,40.744556,-73.870834,"(40.744556, -73.870834)",94 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518549,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,7:14,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518947,Sedan,Sedan,,, +10/18/2021,20:07,,,40.683103,-73.8057565,"(40.683103, -73.8057565)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4468603,Sedan,Sedan,,, +04/12/2022,0:06,MANHATTAN,10029,40.788532,-73.95322,"(40.788532, -73.95322)",EAST 98 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518193,Motorcycle,,,, +04/12/2022,0:01,,,40.618214,-73.95815,"(40.618214, -73.95815)",EAST 17 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518997,Van,Sedan,Sedan,, +04/11/2022,16:10,MANHATTAN,10011,40.737865,-74.00019,"(40.737865, -74.00019)",7 AVENUE,WEST 13 STREET,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4518864,Sedan,Sedan,,, +04/12/2022,17:30,BROOKLYN,11218,,,,,,101 prospect park southwest,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4518715,Station Wagon/Sport Utility Vehicle,Bike,,, +10/16/2021,3:30,,,40.5828736,-73.974851,"(40.5828736, -73.974851)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468608,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,12:20,,,40.777447,-73.812546,"(40.777447, -73.812546)",MURRAY STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4518391,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,7:05,,,40.7668452,-73.8966523,"(40.7668452, -73.8966523)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,14:40,MANHATTAN,10029,40.79507,-73.93919,"(40.79507, -73.93919)",EAST 113 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518395,Sedan,Garbage or Refuse,,, +04/12/2022,17:20,MANHATTAN,10003,40.72633,-73.98932,"(40.72633, -73.98932)",,,74 2 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518652,Station Wagon/Sport Utility Vehicle,Bike,,, +02/27/2022,11:00,BRONX,10467,40.87739,-73.8665,"(40.87739, -73.8665)",WHITE PLAINS ROAD,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4518995,Bus,,,, +10/06/2021,13:25,BRONX,10465,40.8325366,-73.8283748,"(40.8325366, -73.8283748)",,,3424 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,,,,,,4468614,Sedan,,,, +04/12/2022,15:22,QUEENS,11423,,,,181 street,Jamaica avenue,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518427,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,21:30,BROOKLYN,11238,40.671642,-73.96258,"(40.671642, -73.96258)",WASHINGTON AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518696,Sedan,Sedan,,, +04/12/2022,14:03,QUEENS,11432,40.714333,-73.77686,"(40.714333, -73.77686)",,,185-05 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519040,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,15:50,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518468,Sedan,Dump,,, +04/12/2022,15:37,QUEENS,11377,40.745335,-73.913536,"(40.745335, -73.913536)",,,41-24 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518770,Sedan,Box Truck,,, +04/12/2022,10:05,MANHATTAN,10011,40.74097,-73.99794,"(40.74097, -73.99794)",,,132 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518329,Van,Box Truck,,, +04/12/2022,17:05,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518657,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,0:45,,,40.7674973,-73.9016982,"(40.7674973, -73.9016982)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468623,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,8:25,BROOKLYN,11211,40.7138,-73.9516,"(40.7138, -73.9516)",UNION AVENUE,KEAP STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518747,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/12/2022,20:20,BROOKLYN,11225,40.665726,-73.96143,"(40.665726, -73.96143)",,,971 WASHINGTON AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518809,Sedan,Sedan,,, +04/12/2022,8:00,MANHATTAN,10035,40.806915,-73.93557,"(40.806915, -73.93557)",EAST 129 STREET,LEXINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4518365,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/12/2022,15:51,,,40.83872,-73.91378,"(40.83872, -73.91378)",EAST 170 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518424,Taxi,Sedan,,, +08/02/2021,14:00,QUEENS,11413,40.66542,-73.745995,"(40.66542, -73.745995)",230 PLACE,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443375,Sedan,,,, +04/12/2022,18:03,BROOKLYN,11234,40.62853,-73.9221,"(40.62853, -73.9221)",AVENUE J,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519062,Bike,Sedan,,, +04/07/2022,7:05,QUEENS,11430,40.665245,-73.80204,"(40.665245, -73.80204)",VANWYCK EXPRESSWAY,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519096,Sedan,Box Truck,,, +04/12/2022,16:30,QUEENS,11413,40.65932,-73.759346,"(40.65932, -73.759346)",147 AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518463,Sedan,Sedan,,, +04/12/2022,17:15,BRONX,10458,,,,,,387 Bedford Park Blvd,0,0,0,0,0,0,0,0,Glare,,,,,4518579,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,17:20,BRONX,10459,40.820972,-73.892845,"(40.820972, -73.892845)",SIMPSON STREET,EAST 163 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519043,Station Wagon/Sport Utility Vehicle,Ambulance,,, +04/12/2022,19:00,MANHATTAN,10014,40.728638,-74.00531,"(40.728638, -74.00531)",,,206 VARICK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518863,Sedan,,,, +10/18/2021,21:20,,,40.8340262,-73.8266007,"(40.8340262, -73.8266007)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468640,Motorcycle,Tractor Truck Diesel,,, +04/12/2022,17:29,QUEENS,11422,40.67234,-73.73643,"(40.67234, -73.73643)",,,135-33 234 PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518975,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,11:00,BRONX,10453,40.854588,-73.90187,"(40.854588, -73.90187)",GRAND CONCOURSE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518375,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,23:05,,,40.87647,-73.87058,"(40.87647, -73.87058)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4518482,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,2:30,QUEENS,11103,40.7619,-73.913315,"(40.7619, -73.913315)",,,30-26 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4518316,Sedan,Sedan,Taxi,Sedan, +04/12/2022,20:30,,,40.719833,-73.82624,"(40.719833, -73.82624)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4518455,Sedan,Carry All,,, +04/12/2022,13:30,,,40.66822,-73.97383,"(40.66822, -73.97383)",PROSPECT PARK WEST,15 STREET DRIVE,,2,0,0,0,2,0,0,0,Unsafe Speed,Unsafe Speed,,,,4518640,Bike,Bike,,, +04/12/2022,17:08,BRONX,10474,40.80669,-73.8854,"(40.80669, -73.8854)",VIELE AVENUE,COSTER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518438,Box Truck,,,, +04/11/2022,21:10,MANHATTAN,10016,40.742023,-73.98292,"(40.742023, -73.98292)",EAST 27 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518930,Taxi,E-Bike,,, +04/12/2022,19:45,BROOKLYN,11228,40.608772,-74.01227,"(40.608772, -74.01227)",,,8734 15 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518773,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,13:51,MANHATTAN,10019,40.759842,-73.984184,"(40.759842, -73.984184)",WEST 48 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518512,Taxi,Bike,,, +04/12/2022,15:06,,,40.674145,-73.93062,"(40.674145, -73.93062)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518688,Sedan,,,, +04/12/2022,10:00,QUEENS,11414,40.65245,-73.83821,"(40.65245, -73.83821)",163 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518798,Ambulance,Sedan,,, +10/19/2021,1:30,,,40.7400268,-73.8456427,"(40.7400268, -73.8456427)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4468653,Sedan,Sedan,,, +04/12/2022,23:23,BROOKLYN,11221,40.69369,-73.93121,"(40.69369, -73.93121)",REID AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4518731,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,10:07,BRONX,10457,40.85407,-73.89932,"(40.85407, -73.89932)",EAST 181 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518561,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,11:45,MANHATTAN,10026,40.802998,-73.94792,"(40.802998, -73.94792)",,,85 WEST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518895,Sedan,,,, +10/17/2021,14:00,,,40.6142771,-74.1566483,"(40.6142771, -74.1566483)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4468658,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/18/2021,19:00,,,40.6055324,-74.1842826,"(40.6055324, -74.1842826)",WEST SHORE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4468660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/18/2021,6:30,,,40.6075657,-74.0871064,"(40.6075657, -74.0871064)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4468661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/08/2022,17:00,BRONX,10461,40.854897,-73.82813,"(40.854897, -73.82813)",,,2105 BURR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519026,Sedan,,,, +10/19/2021,6:45,,,40.6075657,-74.0871064,"(40.6075657, -74.0871064)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468664,Sedan,Sedan,,, +04/12/2022,22:31,,,40.696213,-73.97528,"(40.696213, -73.97528)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4518503,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/09/2022,11:20,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",7 AVENUE,WEST 23 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4518921,Bike,,,, +04/12/2022,8:40,,,40.701588,-73.98863,"(40.701588, -73.98863)",YORK STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518492,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,2:20,,,,,,ATLANTIC AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4518259,Tractor Truck Diesel,,,, +04/12/2022,14:53,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518952,Sedan,,,, +04/12/2022,15:10,QUEENS,11435,40.695637,-73.80372,"(40.695637, -73.80372)",105 AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518405,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/12/2022,8:00,,,40.637142,-74.16017,"(40.637142, -74.16017)",RICHMOND TERRACE,HARBOR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518533,Dump,Dump,,, +04/07/2022,9:05,BROOKLYN,11204,40.612873,-73.98245,"(40.612873, -73.98245)",,,6627 BAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519016,Sedan,Bus,,, +04/12/2022,11:00,,,40.7013,-73.93674,"(40.7013, -73.93674)",MONTIETH STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518867,Sedan,,,, +04/12/2022,6:18,BROOKLYN,11233,40.679295,-73.90643,"(40.679295, -73.90643)",EASTERN PARKWAY,SOMERS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518542,Sedan,Sedan,,, +04/12/2022,8:54,QUEENS,11691,40.60772,-73.745445,"(40.60772, -73.745445)",SAGE STREET,BOLTON ROAD,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4518628,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/01/2022,8:25,,,40.765224,-73.9317,"(40.765224, -73.9317)",21 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518878,Sedan,Box Truck,,, +04/12/2022,11:30,BROOKLYN,11229,40.598488,-73.941536,"(40.598488, -73.941536)",,,3480 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518518,Sedan,,,, +04/12/2022,16:20,STATEN ISLAND,10307,40.51107,-74.24669,"(40.51107, -74.24669)",JOHNSON AVENUE,CRAIG AVENUE,,4,0,0,0,0,0,4,0,View Obstructed/Limited,View Obstructed/Limited,,,,4518473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,8:30,BROOKLYN,11210,40.62423,-73.93858,"(40.62423, -73.93858)",FLATBUSH AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518940,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,12:35,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518963,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,9:01,BROOKLYN,11208,40.671513,-73.880714,"(40.671513, -73.880714)",,,1032 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518672,Station Wagon/Sport Utility Vehicle,Bus,,, +04/10/2022,0:00,,,40.618534,-74.157135,"(40.618534, -74.157135)",,,5 COMSTOCK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4518850,Sedan,,,, +04/12/2022,8:45,BROOKLYN,11212,40.6692,-73.90383,"(40.6692, -73.90383)",,,211 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518552,Sedan,,,, +04/12/2022,20:07,QUEENS,11693,,,,,,88-07 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4518608,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,16:09,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4519039,Sedan,Sedan,,, +04/11/2022,22:00,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",HUDSON STREET,LAIGHT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518908,Sedan,Sedan,,, +04/12/2022,13:00,QUEENS,11418,40.701218,-73.81622,"(40.701218, -73.81622)",,,89-00 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518616,Concrete Mixer,Sedan,,, +04/08/2022,20:55,,,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4518916,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,0:30,,,40.656593,-73.857635,"(40.656593, -73.857635)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,View Obstructed/Limited,View Obstructed/Limited,,,,4518196,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,11:00,BRONX,10459,40.824654,-73.89194,"(40.824654, -73.89194)",SOUTHERN BOULEVARD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518998,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/02/2022,14:00,,,,,,ASTORIA BOULEVARD,33 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518944,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,15:35,BRONX,10472,40.831085,-73.86909,"(40.831085, -73.86909)",ROSEDALE AVENUE,WESTCHESTER AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4518502,Sedan,E-Bike,,, +04/12/2022,18:40,,,40.692627,-73.959,"(40.692627, -73.959)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518719,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,16:20,,,40.788994,-73.94656,"(40.788994, -73.94656)",3 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4518396,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,14:46,,,40.676807,-73.95576,"(40.676807, -73.95576)",BERGEN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,9:50,QUEENS,11105,40.77862,-73.901695,"(40.77862, -73.901695)",,,19-30 37 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518970,Sedan,,,, +04/12/2022,22:00,BROOKLYN,11237,40.694557,-73.906555,"(40.694557, -73.906555)",IRVING AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518870,Sedan,,,, +10/07/2021,15:30,MANHATTAN,10027,40.8084473,-73.9449951,"(40.8084473, -73.9449951)",WEST 126 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468700,Sedan,Bus,,, +04/12/2022,18:09,,,40.851654,-73.91566,"(40.851654, -73.91566)",WEST TREMONT AVENUE,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4518560,Bus,Sedan,,, +04/12/2022,4:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518586,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,12:03,QUEENS,11373,40.7415195,-73.8812858,"(40.7415195, -73.8812858)",,,82-66 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468703,Sedan,,,, +04/12/2022,19:51,BROOKLYN,11218,40.641182,-73.9712,"(40.641182, -73.9712)",EAST 8 STREET,AVENUE C,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518816,Sedan,,,, +04/12/2022,8:00,,,40.717655,-73.7968,"(40.717655, -73.7968)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4518643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/12/2022,3:30,BRONX,10474,40.80697,-73.88357,"(40.80697, -73.88357)",VIELE AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4518437,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,17:58,,,40.6142007,-73.8971984,"(40.6142007, -73.8971984)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4468707,Motorcycle,,,, +10/18/2021,8:30,,,40.6663311,-73.8348011,"(40.6663311, -73.8348011)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468708,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,12:50,BROOKLYN,11217,40.685226,-73.978294,"(40.685226, -73.978294)",,,123 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518467,Sedan,Taxi,,, +04/12/2022,8:00,QUEENS,11101,40.749737,-73.94026,"(40.749737, -73.94026)",,,42-20 27 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518331,Sedan,Sedan,,, +04/12/2022,18:35,BRONX,10474,40.81694,-73.886024,"(40.81694, -73.886024)",,,1320 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519044,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +04/12/2022,10:10,,,40.75778,-73.79202,"(40.75778, -73.79202)",189 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518658,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,18:14,,,40.633644,-73.96395,"(40.633644, -73.96395)",FOSTER AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518523,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/12/2022,21:00,,,40.66408,-73.94817,"(40.66408, -73.94817)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518994,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,13:05,BRONX,10474,40.809887,-73.88042,"(40.809887, -73.88042)",,,420 HALLECK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518445,Sedan,,,, +04/12/2022,18:17,BROOKLYN,11236,40.64609,-73.89691,"(40.64609, -73.89691)",EAST 102 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518477,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,15:39,,,40.625515,-74.15226,"(40.625515, -74.15226)",FOREST AVENUE,EUNICE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518851,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:45,,,40.619156,-73.99388,"(40.619156, -73.99388)",17 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518758,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,6:10,,,40.5506804,-74.2185465,"(40.5506804, -74.2185465)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468721,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,5:00,,,,,,LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497703,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,17:19,BRONX,10456,40.82748,-73.910866,"(40.82748, -73.910866)",,,422 EAST 165 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4440083,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,14:46,,,40.595116,-73.996124,"(40.595116, -73.996124)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443771,Box Truck,,,, +07/26/2021,18:56,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Traffic Control Disregarded,Unspecified,,,4440902,Sedan,Sedan,Sedan,, +07/23/2021,14:50,,,40.800686,-73.952515,"(40.800686, -73.952515)",WEST 113 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4442382,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,22:30,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4443032,Sedan,Sedan,,, +08/02/2021,11:45,MANHATTAN,10014,40.735596,-74.00767,"(40.735596, -74.00767)",,,332 WEST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443061,Van,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,21:30,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443219,Sedan,Sedan,,, +08/02/2021,23:40,MANHATTAN,10029,40.7879,-73.953674,"(40.7879, -73.953674)",EAST 97 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443112,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,7:11,,,40.763626,-73.88116,"(40.763626, -73.88116)",25 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4443683,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,2:33,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,7,0,0,0,0,0,7,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4443640,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/02/2021,3:36,STATEN ISLAND,10304,40.58749,-74.110565,"(40.58749, -74.110565)",TODT HILL ROAD,COVENTRY ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442698,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,14:30,QUEENS,11420,40.666332,-73.81056,"(40.666332, -73.81056)",130 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4443095,Sedan,Sedan,,, +08/02/2021,11:00,,,40.648598,-73.923256,"(40.648598, -73.923256)",EAST 57 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,14:59,BROOKLYN,11226,40.65457,-73.96183,"(40.65457, -73.96183)",,,341 OCEAN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443139,Sedan,PK,,, +07/20/2021,13:04,,,40.898537,-73.87957,"(40.898537, -73.87957)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4443601,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,18:15,BROOKLYN,11226,40.64527,-73.94682,"(40.64527, -73.94682)",,,3215 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,0:21,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442748,Sedan,Sedan,Sedan,, +08/02/2021,8:00,,,40.79337,-73.93274,"(40.79337, -73.93274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4443144,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,5:00,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443681,Sedan,,,, +08/02/2021,19:50,BRONX,10455,40.815502,-73.89958,"(40.815502, -73.89958)",,,724 BECK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443734,Commercial,,,, +08/02/2021,8:31,,,40.699276,-73.988594,"(40.699276, -73.988594)",BROOKLYN BRIDGE,ADAMS STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4443495,Sedan,Sedan,,, +08/02/2021,1:50,MANHATTAN,10037,40.814384,-73.93464,"(40.814384, -73.93464)",,,138-000 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442845,Sedan,,,, +08/02/2021,16:00,,,40.7499,-73.72802,"(40.7499, -73.72802)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4443044,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,18:58,BRONX,10457,40.85108,-73.8948,"(40.85108, -73.8948)",EAST 180 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443240,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,11:22,STATEN ISLAND,10310,40.63173,-74.1249,"(40.63173, -74.1249)",CLOVE ROAD,POST AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443275,Sedan,Sedan,,, +08/02/2021,15:25,BRONX,10462,40.85241,-73.867775,"(40.85241, -73.867775)",BRADY AVENUE,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4443329,,,,, +08/02/2021,14:50,BROOKLYN,11209,40.62457,-74.02218,"(40.62457, -74.02218)",,,558 80 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4442984,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,8:17,BROOKLYN,11222,40.728134,-73.95328,"(40.728134, -73.95328)",CALYER STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4442905,Garbage or Refuse,Sedan,Sedan,, +07/31/2021,23:50,,,40.66132,-73.942696,"(40.66132, -73.942696)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443780,Sedan,Sedan,Sedan,, +08/02/2021,19:05,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,3:10,,,40.824207,-73.87529,"(40.824207, -73.87529)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4442975,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/02/2021,10:00,BROOKLYN,11215,40.67362,-73.986015,"(40.67362, -73.986015)",,,348 4 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442916,Sedan,,,, +07/30/2021,22:00,MANHATTAN,10004,40.704548,-74.0143,"(40.704548, -74.0143)",BROADWAY,BATTERY PLACE,,1,0,1,0,0,0,0,0,,,,,,4443705,,,,, +08/02/2021,16:30,,,40.793556,-73.967026,"(40.793556, -73.967026)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443040,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,4:00,,,40.839615,-73.88443,"(40.839615, -73.88443)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442864,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,18:00,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443371,Multi-Wheeled Vehicle,E-Scooter,,, +08/02/2021,7:56,,,,,,160 STREET,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443132,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,21:50,MANHATTAN,10036,40.75857,-73.985054,"(40.75857, -73.985054)",WEST 46 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4443154,Bike,,,, +08/02/2021,14:12,BRONX,10472,40.83213,-73.86547,"(40.83213, -73.86547)",WESTCHESTER AVENUE,TAYLOR AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443437,Sedan,,,, +08/02/2021,18:00,,,40.82207,-73.94993,"(40.82207, -73.94993)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443280,Station Wagon/Sport Utility Vehicle,Bike,,, +08/02/2021,7:50,,,40.697903,-73.9468,"(40.697903, -73.9468)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443409,Tanker,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,9:45,BROOKLYN,11220,40.64057,-74.028854,"(40.64057, -74.028854)",,,112 WAKEMAN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4442878,Sedan,,,, +08/02/2021,12:25,BRONX,10468,40.87315,-73.88721,"(40.87315, -73.88721)",,,3005 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4443024,Van,Sedan,,, +08/02/2021,9:53,BRONX,10454,40.802723,-73.91985,"(40.802723, -73.91985)",,,600 EAST 132 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4443104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,5:49,MANHATTAN,10040,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,NAGLE AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4443272,Sedan,Sedan,Sedan,Sedan, +08/02/2021,17:30,MANHATTAN,10027,40.813385,-73.94511,"(40.813385, -73.94511)",WEST 132 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443629,Sedan,,,, +07/29/2021,5:34,,,,,,VERRAZANO BRIDGE UPPER,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4443789,Sedan,Bus,,, +08/02/2021,16:40,QUEENS,11428,40.71841,-73.74167,"(40.71841, -73.74167)",215 STREET,94 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443045,Sedan,Sedan,,, +08/02/2021,18:22,,,40.66777,-73.94514,"(40.66777, -73.94514)",BROOKLYN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443082,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,16:50,QUEENS,11435,40.69747,-73.80929,"(40.69747, -73.80929)",,,143-09 95 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443711,Sedan,Sedan,,, +08/02/2021,13:00,QUEENS,11411,40.688885,-73.73833,"(40.688885, -73.73833)",120 AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442923,Sedan,Sedan,,, +07/22/2021,11:29,BRONX,10463,40.87717,-73.906075,"(40.87717, -73.906075)",,,5500 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443600,Sedan,Bus,,, +08/02/2021,9:40,,,40.592087,-73.786255,"(40.592087, -73.786255)",ROCKAWAY BEACH BOULEVARD,BEACH 56 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443313,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,16:00,BRONX,10460,40.841457,-73.86805,"(40.841457, -73.86805)",,,1650 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4443347,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,14:35,,,40.608307,-74.13132,"(40.608307, -74.13132)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443563,Tractor Truck Diesel,Sedan,,, +08/02/2021,8:15,QUEENS,11435,40.68927,-73.798645,"(40.68927, -73.798645)",,,109-68 LIVERPOOL STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443693,Sedan,,,, +08/02/2021,18:30,,,40.57515,-73.98558,"(40.57515, -73.98558)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4443127,Sedan,Sedan,,, +08/01/2021,22:01,QUEENS,11385,40.704605,-73.9023,"(40.704605, -73.9023)",FAIRVIEW AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4443653,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,0:00,,,40.7859,-73.848656,"(40.7859, -73.848656)",119 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443145,Sedan,,,, +08/02/2021,21:25,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443089,E-Bike,,,, +08/02/2021,15:26,BRONX,10468,40.86531,-73.90333,"(40.86531, -73.90333)",UNIVERSITY AVENUE,WEST 190 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443266,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,0:55,BROOKLYN,11234,40.625706,-73.91019,"(40.625706, -73.91019)",,,7266 BERGEN COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4443756,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,10:18,BROOKLYN,11205,40.68945,-73.96809,"(40.68945, -73.96809)",DE KALB AVENUE,CLINTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443052,Station Wagon/Sport Utility Vehicle,Bike,,, +08/02/2021,15:13,MANHATTAN,10033,40.847355,-73.93518,"(40.847355, -73.93518)",SAINT NICHOLAS AVENUE,WEST 178 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443614,Sedan,,,, +08/02/2021,19:00,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,BROWN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443813,Sedan,Box Truck,,, +08/02/2021,22:50,QUEENS,11370,40.76118,-73.88356,"(40.76118, -73.88356)",,,30-02 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443168,Sedan,,,, +08/02/2021,17:40,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4443096,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/02/2021,11:20,BROOKLYN,11207,40.663296,-73.88979,"(40.663296, -73.88979)",NEW LOTS AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,19:01,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4443140,Bus,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,14:00,,,40.751522,-73.99396,"(40.751522, -73.99396)",8 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443665,Van,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,1:34,BROOKLYN,11204,40.610447,-73.98497,"(40.610447, -73.98497)",BAY PARKWAY,WEST 11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442701,Taxi,Sedan,,, +07/31/2021,20:00,BROOKLYN,11234,40.623497,-73.92838,"(40.623497, -73.92838)",AVENUE L,EAST 49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443721,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,7:07,BROOKLYN,11225,40.654255,-73.96177,"(40.654255, -73.96177)",,,287 OCEAN AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,Unspecified,,4443068,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +08/02/2021,11:25,QUEENS,11693,40.587566,-73.811264,"(40.587566, -73.811264)",ROCKAWAY BEACH BOULEVARD,BEACH 86 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443513,Sedan,Bus,,, +08/02/2021,8:00,BRONX,10454,40.81099,-73.914856,"(40.81099, -73.914856)",EAST 144 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443810,Taxi,,,, +08/02/2021,16:20,BROOKLYN,11203,40.653564,-73.934494,"(40.653564, -73.934494)",LINDEN BOULEVARD,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4443639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/02/2021,5:55,,,40.84106,-73.92851,"(40.84106, -73.92851)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4442769,Taxi,,,, +08/02/2021,11:45,BROOKLYN,11222,40.727848,-73.95638,"(40.727848, -73.95638)",,,109 OAK STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443682,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/02/2021,18:22,QUEENS,11004,40.737137,-73.70923,"(40.737137, -73.70923)",HILLSIDE AVENUE,259 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443049,Motorcycle,,,, +08/02/2021,17:00,BROOKLYN,11210,40.62247,-73.95092,"(40.62247, -73.95092)",,,3282 BEDFORD AVENUE,3,0,0,0,1,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4443141,Station Wagon/Sport Utility Vehicle,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +08/01/2021,11:42,QUEENS,11692,40.58963,-73.797806,"(40.58963, -73.797806)",,,190 BEACH 69 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443737,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,15:20,QUEENS,11378,40.727608,-73.91211,"(40.727608, -73.91211)",58 STREET,55 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443090,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/02/2021,15:45,,,,,,DOUGLASTON PARKWAY,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443491,Sedan,Sedan,,, +08/02/2021,9:00,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443613,Sedan,Sedan,,, +08/02/2021,23:50,MANHATTAN,10029,40.7861,-73.93967,"(40.7861, -73.93967)",EAST 102 STREET,FDR DRIVE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443114,Sedan,E-Bike,,, +07/29/2021,11:23,,,40.7586,-73.802345,"(40.7586, -73.802345)",43 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4443841,Sedan,Sedan,,, +07/31/2021,0:30,QUEENS,11435,40.696934,-73.80358,"(40.696934, -73.80358)",148 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443710,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,9:20,BROOKLYN,11209,40.617336,-74.032104,"(40.617336, -74.032104)",,,343 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4442922,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,6:40,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Shoulders Defective/Improper,Unspecified,,,,4442976,Box Truck,Sedan,,, +08/02/2021,9:01,BRONX,10469,40.868546,-73.85859,"(40.868546, -73.85859)",BOSTON ROAD,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443296,Sedan,,,, +08/02/2021,20:10,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",WEST BROADWAY,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443828,Bike,,,, +08/02/2021,10:30,BROOKLYN,11201,40.696835,-73.99705,"(40.696835, -73.99705)",,,216 COLUMBIA HEIGHTS,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4443062,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,20:26,BRONX,10467,40.87739,-73.8665,"(40.87739, -73.8665)",EAST GUN HILL ROAD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4443420,Sedan,,,, +07/26/2021,18:50,BROOKLYN,11225,40.656914,-73.95315,"(40.656914, -73.95315)",ROGERS AVENUE,WINTHROP STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443742,Sedan,Sedan,,, +08/02/2021,6:20,,,40.87016,-73.89099,"(40.87016, -73.89099)",EAST 198 STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442883,Sedan,E-Bike,,, +08/02/2021,0:00,BROOKLYN,11208,40.68416,-73.86745,"(40.68416, -73.86745)",,,274 GRANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443218,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,13:55,QUEENS,11691,40.606712,-73.763565,"(40.606712, -73.763565)",,,24-22 BAYSWATER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443314,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,12:00,QUEENS,11417,40.68424,-73.83808,"(40.68424, -73.83808)",104 STREET,103 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442938,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/02/2021,9:36,,,40.671078,-73.842926,"(40.671078, -73.842926)",CROSS BAY BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443101,Bus,Sedan,,, +07/28/2021,22:10,,,40.81851,-73.93765,"(40.81851, -73.93765)",WEST 142 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4443630,Sedan,,,, +08/02/2021,14:25,BRONX,10454,40.799255,-73.91206,"(40.799255, -73.91206)",EAST 132 STREET,WALNUT AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4443691,Pick-up Truck,,,, +08/02/2021,14:40,MANHATTAN,10038,40.709698,-74.00978,"(40.709698, -74.00978)",,,4 MAIDEN LANE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443443,Sedan,,,, +08/02/2021,15:00,MANHATTAN,10002,40.710697,-73.984634,"(40.710697, -73.984634)",,,299 SOUTH STREET,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4443056,E-Bike,,,, +08/02/2021,15:01,QUEENS,11417,40.680748,-73.84486,"(40.680748, -73.84486)",,,94-05 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443108,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,21:52,BRONX,10459,40.82193,-73.88844,"(40.82193, -73.88844)",BRUCKNER BOULEVARD,BRYANT AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443772,E-Bike,,,, +08/02/2021,13:07,,,40.57375,-74.109566,"(40.57375, -74.109566)",CLAWSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443620,Sedan,,,, +08/02/2021,16:50,MANHATTAN,10031,40.82269,-73.94947,"(40.82269, -73.94947)",AMSTERDAM AVENUE,WEST 141 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4443279,Sedan,Sedan,Sedan,, +08/02/2021,0:00,,,40.81423,-73.93444,"(40.81423, -73.93444)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4442844,Sedan,Sedan,,, +08/02/2021,14:00,,,40.689754,-73.93939,"(40.689754, -73.93939)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443408,Sedan,Sedan,,, +08/02/2021,4:05,,,40.640133,-74.026276,"(40.640133, -74.026276)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4443041,Sedan,Sedan,,, +08/02/2021,23:05,,,40.592484,-73.78417,"(40.592484, -73.78417)",ROCKAWAY BEACH BOULEVARD,BEACH 54 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443323,Sedan,Sedan,,, +08/02/2021,23:13,BROOKLYN,11235,40.583687,-73.944695,"(40.583687, -73.944695)",,,2255 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443239,Sedan,,,, +08/02/2021,4:30,QUEENS,11355,40.762062,-73.81589,"(40.762062, -73.81589)",149 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4443131,Sedan,Sedan,,, +08/02/2021,20:30,,,40.690628,-73.79734,"(40.690628, -73.79734)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443702,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,10:50,MANHATTAN,10022,40.75889,-73.97486,"(40.75889, -73.97486)",,,488 MADISON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443153,Taxi,Box Truck,,, +08/01/2021,18:19,STATEN ISLAND,10305,40.582367,-74.074486,"(40.582367, -74.074486)",,,625 CAPODANNO BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443621,Sedan,Sedan,,, +08/02/2021,20:48,MANHATTAN,10002,40.716442,-73.98837,"(40.716442, -73.98837)",GRAND STREET,NORFOLK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443076,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,22:17,BRONX,10469,40.875492,-73.86052,"(40.875492, -73.86052)",EAST GUN HILL ROAD,BRONXWOOD AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4443429,Sedan,Sedan,,, +08/02/2021,17:20,QUEENS,11358,40.765263,-73.80617,"(40.765263, -73.80617)",,,35-56 159 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443565,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,21:04,QUEENS,11417,40.67215,-73.843185,"(40.67215, -73.843185)",CROSS BAY BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443107,Sedan,Sedan,,, +08/02/2021,19:30,,,40.637012,-74.01515,"(40.637012, -74.01515)",6 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443328,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,9:35,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4442861,Sedan,E-Bike,,, +08/02/2021,13:30,MANHATTAN,10003,40.729774,-73.98682,"(40.729774, -73.98682)",2 AVENUE,EAST 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443160,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,11:30,QUEENS,11434,40.680294,-73.76282,"(40.680294, -73.76282)",MERRICK BOULEVARD,130 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4442981,Bus,,,, +08/02/2021,12:17,BROOKLYN,11208,40.68761,-73.87522,"(40.68761, -73.87522)",,,27 EUCLID AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4443215,Sedan,,,, +08/02/2021,21:28,BROOKLYN,11220,40.649822,-74.009094,"(40.649822, -74.009094)",44 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443065,Station Wagon/Sport Utility Vehicle,Bike,,, +08/02/2021,21:57,BRONX,10460,40.834038,-73.89528,"(40.834038, -73.89528)",BOSTON ROAD,BRISTOW STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443159,Station Wagon/Sport Utility Vehicle,Bike,,, +06/19/2021,2:45,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",RUST STREET,GRAND AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443652,Sedan,E-Bike,,, +08/02/2021,18:52,BRONX,10460,40.8324,-73.890724,"(40.8324, -73.890724)",SOUTHERN BOULEVARD,JENNINGS STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443123,MOPED,,,, +08/02/2021,16:35,QUEENS,11379,40.720417,-73.8689,"(40.720417, -73.8689)",64 ROAD,84 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443667,Motorcycle,Sedan,,, +08/02/2021,0:28,BROOKLYN,11236,40.644016,-73.90803,"(40.644016, -73.90803)",FARRAGUT ROAD,EAST 92 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4442702,Sedan,Sedan,Sedan,, +08/02/2021,0:00,QUEENS,11372,40.74694,-73.89051,"(40.74694, -73.89051)",75 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443723,Sedan,Bike,,, +08/02/2021,14:01,BROOKLYN,11217,40.686386,-73.98346,"(40.686386, -73.98346)",,,450 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4443500,Sedan,Motorcycle,,, +08/02/2021,14:40,BROOKLYN,11204,40.622787,-73.9901,"(40.622787, -73.9901)",61 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443829,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,14:49,QUEENS,11691,40.60696,-73.75561,"(40.60696, -73.75561)",,,13-32 PINSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443316,Station Wagon/Sport Utility Vehicle,EMS TRUCK,,, +08/02/2021,14:00,,,40.7462,-73.73563,"(40.7462, -73.73563)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442937,Sedan,Sedan,,, +08/02/2021,13:05,,,40.74709,-73.76325,"(40.74709, -73.76325)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4442939,Flat Bed,Sedan,,, +08/02/2021,8:50,BRONX,10458,40.864216,-73.895805,"(40.864216, -73.895805)",GRAND CONCOURSE,EAST 192 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443267,Sedan,,,, +07/27/2021,12:30,BRONX,10474,40.81899,-73.8867,"(40.81899, -73.8867)",SENECA AVENUE,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,10:45,BROOKLYN,11237,40.709316,-73.93301,"(40.709316, -73.93301)",MESEROLE STREET,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443001,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,11:20,BRONX,10467,40.85964,-73.86277,"(40.85964, -73.86277)",ASTOR AVENUE,MATTHEWS AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4443298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,1:00,STATEN ISLAND,10312,40.554157,-74.17955,"(40.554157, -74.17955)",,,148 MCARTHUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443754,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,16:25,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4443055,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,9:37,BROOKLYN,11233,40.684032,-73.91742,"(40.684032, -73.91742)",SARATOGA AVENUE,MACDONOUGH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,15:00,,,40.726173,-74.01097,"(40.726173, -74.01097)",WEST STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443825,Pick-up Truck,Sedan,,, +08/02/2021,8:00,,,40.859623,-73.88747,"(40.859623, -73.88747)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4442867,Sedan,Sedan,Taxi,, +08/02/2021,23:31,BRONX,10458,40.866383,-73.88515,"(40.866383, -73.88515)",WEBSTER AVENUE,OLIVER PLACE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443268,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/02/2021,7:19,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443339,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,17:56,BRONX,10470,40.901806,-73.851036,"(40.901806, -73.851036)",,,711 EAST 240 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,7:45,,,40.854248,-73.89399,"(40.854248, -73.89399)",EAST 182 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4442884,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,7:40,BROOKLYN,11206,40.7109,-73.943794,"(40.7109, -73.943794)",GRAHAM AVENUE,MAUJER STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4442995,Box Truck,Bike,,, +07/14/2021,17:06,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443773,Pick-up Truck,,,, +07/29/2021,17:00,MANHATTAN,10016,40.7417,-73.98317,"(40.7417, -73.98317)",,,88 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443807,Bike,Van,,, +08/02/2021,17:50,QUEENS,11411,40.68836,-73.73659,"(40.68836, -73.73659)",227 STREET,120 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443048,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,21:00,BROOKLYN,11210,40.624325,-73.95317,"(40.624325, -73.95317)",,,1081 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443142,Motorcycle,,,, +08/01/2021,18:07,,,40.774113,-73.98863,"(40.774113, -73.98863)",WEST END AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443764,Ambulance,Motorcycle,,, +08/02/2021,20:25,,,40.70333,-73.99339,"(40.70333, -73.99339)",BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4443499,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,15:23,,,40.581764,-73.8383,"(40.581764, -73.8383)",BEACH 116 STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4443707,Station Wagon/Sport Utility Vehicle,USPS TRUCK,,, +08/02/2021,11:59,,,40.678677,-73.9822,"(40.678677, -73.9822)",4 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442921,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,16:35,BROOKLYN,11201,40.69421,-73.99492,"(40.69421, -73.99492)",,,91 REMSEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443063,Convertible,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,10:00,QUEENS,11429,40.711784,-73.75307,"(40.711784, -73.75307)",,,100-31 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442856,Sedan,Sedan,,, +08/02/2021,17:48,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443042,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,17:35,,,,,,EAST DRIVE,EAST 74 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443263,Bike,,,, +08/02/2021,14:00,BROOKLYN,11201,40.701275,-73.98075,"(40.701275, -73.98075)",NAVY STREET,YORK STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4443037,Station Wagon/Sport Utility Vehicle,scooter,,, +07/10/2021,2:19,QUEENS,11379,40.712227,-73.88436,"(40.712227, -73.88436)",METROPOLITAN AVENUE,71 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4443650,Sedan,,,, +08/02/2021,9:30,MANHATTAN,10034,40.867794,-73.92999,"(40.867794, -73.92999)",STAFF STREET,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443358,Sedan,,,, +08/02/2021,11:49,,,,,,69 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443091,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,17:16,BRONX,10472,40.834793,-73.868996,"(40.834793, -73.868996)",EAST 174 STREET,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,20:24,BRONX,10474,40.817352,-73.88339,"(40.817352, -73.88339)",EDGEWATER ROAD,LAFAYETTE AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443400,Sedan,Bike,,, +08/02/2021,18:30,BROOKLYN,11232,40.648453,-74.00226,"(40.648453, -74.00226)",,,619 41 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443327,Sedan,,,, +08/02/2021,16:15,QUEENS,11356,40.784042,-73.85032,"(40.784042, -73.85032)",15 AVENUE,117 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4443135,Station Wagon/Sport Utility Vehicle,Bike,,, +07/31/2021,2:36,BRONX,10468,40.86135,-73.89774,"(40.86135, -73.89774)",EAST 188 STREET,GRAND CONCOURSE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4443611,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,17:00,,,,,,BRUCKNER EXPRESSWAY,EAST 156 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4443741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,15:44,,,40.65133,-73.90607,"(40.65133, -73.90607)",ROCKAWAY AVENUE,AVENUE D,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443086,Sedan,E-Bike,,, +08/02/2021,14:48,,,40.824757,-73.94052,"(40.824757, -73.94052)",WEST 148 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4443631,Sedan,,,, +08/02/2021,7:34,,,40.827553,-73.95328,"(40.827553, -73.95328)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443075,Sedan,Sedan,,, +08/02/2021,0:00,,,40.679363,-73.7973,"(40.679363, -73.7973)",FOCH BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4442779,Sedan,Sedan,,, +07/30/2021,6:50,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",MAURICE AVENUE,55 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443669,Sedan,Carry All,,, +08/02/2021,9:00,BRONX,10473,40.82553,-73.86012,"(40.82553, -73.86012)",BOLTON AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442977,Sedan,,,, +08/01/2021,21:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443846,Sedan,Sedan,,, +08/02/2021,15:55,,,40.59087,-73.801285,"(40.59087, -73.801285)",BEACH CHANNEL DRIVE,BEACH 73 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4443738,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/12/2022,7:30,,,40.740692,-73.84418,"(40.740692, -73.84418)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518323,Sedan,Pick-up Truck,,, +08/02/2021,16:48,MANHATTAN,10029,40.792812,-73.937744,"(40.792812, -73.937744)",EAST 111 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443116,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,9:37,,,40.688625,-73.84925,"(40.688625, -73.84925)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443236,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/02/2021,19:47,MANHATTAN,10013,40.71543,-73.99797,"(40.71543, -73.99797)",,,61 BAYARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443575,Station Wagon/Sport Utility Vehicle,Bus,,, +08/02/2021,23:41,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4443100,Sedan,Sedan,,, +08/02/2021,9:43,BROOKLYN,11217,40.68442,-73.97839,"(40.68442, -73.97839)",ATLANTIC AVENUE,4 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443057,Taxi,Bike,,, +07/20/2021,22:05,QUEENS,11378,40.716793,-73.92155,"(40.716793, -73.92155)",GRAND AVENUE,47 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443657,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,16:13,MANHATTAN,10128,40.781387,-73.94828,"(40.781387, -73.94828)",,,320 EAST 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443690,Sedan,Box Truck,,, +08/02/2021,11:37,,,40.6216,-74.11154,"(40.6216, -74.11154)",CLOVE ROAD,CLOVE WAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4443277,Sedan,Motorcycle,,, +08/02/2021,16:30,MANHATTAN,10004,40.70599,-74.01133,"(40.70599, -74.01133)",,,25 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443444,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,22:14,,,40.856358,-73.826515,"(40.856358, -73.826515)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4443129,Sedan,Tractor Truck Diesel,,, +08/02/2021,20:12,MANHATTAN,10012,40.72639,-73.991806,"(40.72639, -73.991806)",BOWERY,EAST 3 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,,,,4443162,Sedan,Bike,,, +08/01/2021,22:33,QUEENS,11413,40.67884,-73.75419,"(40.67884, -73.75419)",135 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4443753,Sedan,Sedan,,, +08/02/2021,17:44,,,40.610214,-74.1202,"(40.610214, -74.1202)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443618,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/22/2021,16:00,,,40.827423,-73.836754,"(40.827423, -73.836754)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4443857,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/02/2021,12:00,BROOKLYN,11207,40.663807,-73.90042,"(40.663807, -73.90042)",LIVONIA AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443216,Sedan,,,, +08/02/2021,22:00,BROOKLYN,11208,40.6790038,-73.8642165,"(40.6790038, -73.8642165)",LIBERTY AVENUE,FORBELL STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4443109,Sedan,Sedan,,, +07/21/2021,13:26,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4443831,Refrigerated Van,Sedan,,, +08/02/2021,22:35,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4443622,Sedan,Sedan,Tractor Truck Diesel,, +08/02/2021,5:30,QUEENS,11420,40.66691,-73.822014,"(40.66691, -73.822014)",150 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4442734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,1:10,BRONX,10474,40.80676,-73.8849,"(40.80676, -73.8849)",,,1290 VIELE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443727,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,10:17,QUEENS,11385,40.694008,-73.90557,"(40.694008, -73.90557)",,,1011 IRVING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443660,Sedan,,,, +08/02/2021,5:10,BROOKLYN,11236,40.63425,-73.89021,"(40.63425, -73.89021)",,,2000 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,20:30,QUEENS,11691,40.60123,-73.75183,"(40.60123, -73.75183)",BEACH 19 STREET,EVERDELL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443318,Sedan,Bus,,, +08/02/2021,8:05,,,40.75727,-73.74765,"(40.75727, -73.74765)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4442942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/02/2021,7:44,BRONX,10469,40.860897,-73.84292,"(40.860897, -73.84292)",,,1505 WARING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443301,COM,Bus,,, +07/15/2021,19:25,QUEENS,11435,40.704678,-73.80921,"(40.704678, -73.80921)",,,88-02 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443701,Sedan,,,, +08/02/2021,4:40,BRONX,10453,40.848637,-73.91169,"(40.848637, -73.91169)",JEROME AVENUE,EAST 176 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4443547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,14:04,QUEENS,11354,40.76189,-73.82967,"(40.76189, -73.82967)",138 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Passing or Lane Usage Improper,,,,4443134,Pick-up Truck,Sedan,,, +08/02/2021,22:52,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4443148,Sedan,Sedan,,, +08/02/2021,15:50,BRONX,10467,40.885323,-73.86046,"(40.885323, -73.86046)",,,717 EAST 222 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4443431,Sedan,,,, +08/02/2021,21:15,,,40.864254,-73.88813,"(40.864254, -73.88813)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443264,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/02/2021,14:30,BRONX,10462,40.834812,-73.863045,"(40.834812, -73.863045)",,,1365 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,16:48,BROOKLYN,11234,40.62219,-73.903824,"(40.62219, -73.903824)",BERGEN AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443054,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,15:20,,,40.746002,-73.99427,"(40.746002, -73.99427)",7 AVENUE,,,2,0,2,0,0,0,0,0,,,,,,4443817,,,,, +08/02/2021,7:03,BROOKLYN,11204,40.621994,-73.99493,"(40.621994, -73.99493)",16 AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442872,Sedan,Sedan,,, +07/26/2021,0:15,,,40.77242,-73.97873,"(40.77242, -73.97873)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443765,Station Wagon/Sport Utility Vehicle,Van,,, +08/02/2021,2:20,BROOKLYN,11230,40.61359,-73.97082,"(40.61359, -73.97082)",RYDER AVENUE,EAST 4 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4443269,Pick-up Truck,Sedan,,, +08/02/2021,21:44,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443106,Sedan,,,, +07/31/2021,5:25,,,40.71958,-73.75834,"(40.71958, -73.75834)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443715,Bus,Sedan,,, +08/02/2021,15:00,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4443038,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,13:25,BROOKLYN,11201,40.69684,-73.98707,"(40.69684, -73.98707)",JAY STREET,CATHEDRAL PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443058,Sedan,E-Bike,,, +08/02/2021,13:35,BROOKLYN,11203,40.64993,-73.93312,"(40.64993, -73.93312)",SNYDER AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443458,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,21:46,BROOKLYN,11211,40.714943,-73.942764,"(40.714943, -73.942764)",,,371 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443340,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,10:39,,,40.76241,-73.95443,"(40.76241, -73.95443)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Drugs (illegal),Unspecified,,,,4443361,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,7:00,BRONX,10457,40.853626,-73.894356,"(40.853626, -73.894356)",,,2185 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4442866,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,0:01,,,40.70269,-73.839485,"(40.70269, -73.839485)",PARK LANE SOUTH,,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4443157,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,12:00,,,40.786423,-73.94239,"(40.786423, -73.94239)",1 AVENUE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4442936,Sedan,STREET SWE,,, +08/02/2021,23:37,MANHATTAN,10002,40.72166,-73.98755,"(40.72166, -73.98755)",,,172 LUDLOW STREET,0,0,0,0,0,0,0,0,Headlights Defective,Unspecified,,,,4443276,Sedan,Bike,,, +08/02/2021,6:28,,,40.86499,-73.824715,"(40.86499, -73.824715)",HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4442855,Sedan,Sedan,Sedan,, +08/02/2021,8:00,,,40.65073,-73.9719,"(40.65073, -73.9719)",CONEY ISLAND AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443064,Pedicab,Sedan,,, +08/02/2021,21:10,BROOKLYN,11232,40.667614,-73.99644,"(40.667614, -73.99644)",,,566 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4443331,Sedan,,,, +08/02/2021,13:05,MANHATTAN,10001,40.74882,-73.98546,"(40.74882, -73.98546)",,,19 WEST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443258,Station Wagon/Sport Utility Vehicle,Bus,,, +08/02/2021,9:49,BROOKLYN,11234,40.619377,-73.91985,"(40.619377, -73.91985)",,,5722 AVENUE N,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4442985,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/16/2021,12:40,,,,,,,,72 WEST DRIVE,2,0,1,0,1,0,0,0,Unsafe Speed,,,,,4443686,Bike,,,, +07/30/2021,6:20,BROOKLYN,11219,40.642708,-73.99428,"(40.642708, -73.99428)",42 STREET,NEW UTRECHT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443634,Sedan,Bike,,, +08/02/2021,8:00,QUEENS,11373,40.74529,-73.88819,"(40.74529, -73.88819)",,,77-08 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443110,Sedan,,,, +08/02/2021,17:43,BROOKLYN,11223,40.609264,-73.962234,"(40.609264, -73.962234)",,,1963 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443094,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,22:35,,,40.68902,-73.98617,"(40.68902, -73.98617)",HOYT STREET,,,1,0,0,0,1,0,0,0,Passenger Distraction,Following Too Closely,,,,4443496,Taxi,Bike,,, +06/26/2021,0:20,,,40.868015,-73.89997,"(40.868015, -73.89997)",RESERVOIR AVENUE,WEST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443605,Sedan,Sedan,,, +08/02/2021,12:10,BRONX,10456,40.827755,-73.9117,"(40.827755, -73.9117)",BROOK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443120,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,7:10,BRONX,10459,40.83126,-73.8848,"(40.83126, -73.8848)",,,1440 SHERIDAN EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4442978,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/31/2021,15:45,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443847,Sedan,Sedan,,, +08/02/2021,7:06,BROOKLYN,11217,40.684437,-73.97773,"(40.684437, -73.97773)",,,139 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4442918,Box Truck,,,, +08/01/2021,22:30,QUEENS,11423,40.709373,-73.78006,"(40.709373, -73.78006)",,,91-28 181 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443706,Sedan,Sedan,Sedan,, +08/02/2021,19:38,BROOKLYN,11220,40.641544,-74.00596,"(40.641544, -74.00596)",,,714 51 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4443283,Sedan,,,, +08/02/2021,14:30,,,40.8499,-73.90919,"(40.8499, -73.90919)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443382,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,13:28,QUEENS,11411,40.696148,-73.743355,"(40.696148, -73.743355)",,,216-07 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4443043,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,0:30,,,40.76657,-73.8174,"(40.76657, -73.8174)",35 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443137,Sedan,,,, +08/02/2021,9:50,BROOKLYN,11203,40.655273,-73.93178,"(40.655273, -73.93178)",LENOX ROAD,EAST 49 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4443326,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,23:15,BROOKLYN,11207,0,0,"(0.0, 0.0)",FULTON STREET,VERMONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443221,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,5:20,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4442901,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,6:36,BRONX,10469,40.877346,-73.84547,"(40.877346, -73.84547)",BOSTON ROAD,MICKLE AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4442782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,13:50,BROOKLYN,11225,40.65671,-73.95648,"(40.65671, -73.95648)",WINTHROP STREET,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443069,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,10:54,BROOKLYN,11210,40.629677,-73.94151,"(40.629677, -73.94151)",BROOKLYN AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,22:05,BROOKLYN,11210,40.618385,-73.94725,"(40.618385, -73.94725)",,,1339 EAST 28 STREET,3,0,0,0,0,0,3,0,Unspecified,,,,,4443143,Sedan,,,, +08/02/2021,14:00,,,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443046,Sedan,Sedan,,, +08/02/2021,8:58,BROOKLYN,11203,40.653088,-73.94211,"(40.653088, -73.94211)",LINDEN BOULEVARD,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443642,Sedan,,,, +07/27/2021,15:24,,,,,,VERRAZANO BRIDGE,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4443676,Sedan,Box Truck,,, +08/02/2021,19:00,BROOKLYN,11238,40.679695,-73.96815,"(40.679695, -73.96815)",,,566 VANDERBILT AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,16:46,QUEENS,11693,40.583706,-73.81595,"(40.583706, -73.81595)",SHORE FRONT PARKWAY,BEACH 95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4443739,Sedan,FIRE TRUCK,,, +08/02/2021,17:06,BROOKLYN,11236,40.64208,-73.91967,"(40.64208, -73.91967)",RALPH AVENUE,CHASE COURT,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,12:00,,,40.700356,-73.912575,"(40.700356, -73.912575)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4443595,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,12:00,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443774,Van,,,, +08/02/2021,20:21,BROOKLYN,11219,40.632942,-74.00379,"(40.632942, -74.00379)",,,1028 59 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4443270,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,9:20,,,40.61898,-74.163895,"(40.61898, -74.163895)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4443832,Tractor Truck Diesel,Sedan,,, +08/02/2021,12:00,MANHATTAN,10017,40.753242,-73.96662,"(40.753242, -73.96662)",1 AVENUE,EAST 49 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4442964,Sedan,DELV,,, +08/02/2021,22:38,QUEENS,11434,40.683098,-73.78432,"(40.683098, -73.78432)",LONG STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4443319,Sedan,,,, +08/02/2021,16:13,QUEENS,11435,40.69248,-73.800995,"(40.69248, -73.800995)",LAKEWOOD AVENUE,WALTHAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443712,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/02/2021,16:30,BROOKLYN,11219,40.641254,-73.9964,"(40.641254, -73.9964)",45 STREET,10 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4443265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,6:25,,,40.639256,-73.968796,"(40.639256, -73.968796)",CONEY ISLAND AVENUE,CORTELYOU ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4442933,Sedan,Sedan,,, +08/02/2021,16:00,,,40.79465,-73.97179,"(40.79465, -73.97179)",WEST 96 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4443039,Station Wagon/Sport Utility Vehicle,Moped,,, +08/02/2021,16:07,,,40.88893,-73.86579,"(40.88893, -73.86579)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443418,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,14:40,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443367,Sedan,Sedan,,, +08/02/2021,8:10,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unsafe Lane Changing,,,,4442875,Tractor Truck Diesel,Sedan,,, +04/12/2022,12:30,BRONX,10458,40.86012,-73.89297,"(40.86012, -73.89297)",,,2458 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518594,Sedan,Pick-up Truck,,, +08/02/2021,21:26,,,,,,BRONX WHITESTONE BRIDGE,,,7,0,0,0,0,0,7,0,Following Too Closely,Unspecified,,,,4443850,Sedan,Sedan,,, +08/02/2021,18:30,,,40.766308,-73.8197,"(40.766308, -73.8197)",147 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443556,Sedan,,,, +08/02/2021,23:11,,,40.834915,-73.894135,"(40.834915, -73.894135)",BOSTON ROAD,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4443128,Box Truck,Sedan,,, +07/25/2021,18:27,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",METROPOLITAN AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443654,Sedan,Sedan,,, +07/31/2021,12:21,QUEENS,11385,40.70059,-73.89719,"(40.70059, -73.89719)",,,60-33 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443664,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,3:00,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4442742,Sedan,,,, +07/29/2021,19:00,BRONX,10451,40.811714,-73.92671,"(40.811714, -73.92671)",EAST 139 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4443815,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,16:00,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443217,Sedan,,,, +08/02/2021,15:15,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443729,Motorcycle,Sedan,,, +08/02/2021,14:00,BROOKLYN,11225,40.668083,-73.95929,"(40.668083, -73.95929)",,,960 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443083,Sedan,,,, +08/02/2021,19:07,BRONX,10466,40.8937,-73.86175,"(40.8937, -73.86175)",,,4150 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4443432,Sedan,Sedan,Sedan,, +08/02/2021,16:53,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443105,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,12:30,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443768,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,14:35,MANHATTAN,10021,40.77144,-73.95939,"(40.77144, -73.95939)",,,1300 3 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4443166,Station Wagon/Sport Utility Vehicle,Bike,,, +08/02/2021,15:35,BRONX,10467,40.883453,-73.87774,"(40.883453, -73.87774)",EAST 212 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443026,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +08/02/2021,5:50,,,40.838757,-73.882904,"(40.838757, -73.882904)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442865,Tractor Truck Diesel,Sedan,,, +08/02/2021,15:45,BROOKLYN,11232,40.656963,-74.0088,"(40.656963, -74.0088)",2 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4443311,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,17:07,QUEENS,11358,40.76776,-73.78932,"(40.76776, -73.78932)",JORDAN STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,0:05,,,40.719738,-73.78574,"(40.719738, -73.78574)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4443059,Sedan,,,, +08/02/2021,19:13,,,40.681118,-73.96443,"(40.681118, -73.96443)",ATLANTIC AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443053,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,17:38,,,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443346,Ambulance,Sedan,,, +07/24/2021,7:15,BROOKLYN,11203,40.66184,-73.93488,"(40.66184, -73.93488)",,,777 MAPLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443748,Sedan,,,, +08/02/2021,15:30,QUEENS,11414,40.66873,-73.85585,"(40.66873, -73.85585)",79 STREET,149 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4443098,Station Wagon/Sport Utility Vehicle,Bike,,, +08/02/2021,10:05,BROOKLYN,11230,40.61748,-73.95556,"(40.61748, -73.95556)",,,1919 BAY AVENUE,1,0,0,0,0,0,1,0,Physical Disability,,,,,4443133,Sedan,,,, +08/02/2021,14:20,MANHATTAN,10007,40.714584,-74.00723,"(40.714584, -74.00723)",,,90 CHAMBERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443699,PK,Sedan,,, +07/30/2021,11:55,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4443627,Taxi,Sedan,Sedan,, +08/02/2021,11:55,,,40.833828,-73.931564,"(40.833828, -73.931564)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,,,4443147,Sedan,Sedan,Sedan,, +08/02/2021,17:25,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",37 AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443088,Sedan,Box Truck,,, +08/01/2021,23:02,,,40.693874,-73.91777,"(40.693874, -73.91777)",GATES AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4443597,Bike,Sedan,,, +08/02/2021,14:29,STATEN ISLAND,10305,40.58657,-74.09206,"(40.58657, -74.09206)",HYLAN BOULEVARD,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443617,Taxi,Sedan,,, +07/10/2021,16:55,BRONX,10460,40.84037,-73.86712,"(40.84037, -73.86712)",,,1796 EAST TREMONT AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443637,Sedan,E-Bike,,, +08/02/2021,22:50,BROOKLYN,11210,40.629616,-73.94248,"(40.629616, -73.94248)",EAST 35 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443111,Sedan,Sedan,,, +01/04/2022,18:05,BROOKLYN,11207,40.658337,-73.87759,"(40.658337, -73.87759)",COZINE AVENUE,ASHFORD STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4492441,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,15:45,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",GRAND CONCOURSE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443155,Sedan,Flat Bed,,, +01/19/2022,22:10,MANHATTAN,10128,40.78148,-73.95625,"(40.78148, -73.95625)",EAST 88 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4496107,Bike,Sedan,,, +01/20/2022,16:00,QUEENS,11373,40.732887,-73.87443,"(40.732887, -73.87443)",57 ROAD,SEABURY STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4496154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,19:00,BROOKLYN,11239,40.649624,-73.88383,"(40.649624, -73.88383)",,,1255 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496194,Sedan,,,, +04/12/2022,10:25,QUEENS,11358,40.753696,-73.803955,"(40.753696, -73.803955)",163 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518388,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:15,BROOKLYN,11208,40.67226,-73.87557,"(40.67226, -73.87557)",LOGAN STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4518671,Sedan,Sedan,Sedan,, +04/12/2022,2:05,BRONX,10467,40.866062,-73.86538,"(40.866062, -73.86538)",,,2728 HOLLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518313,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,10:00,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",EAST 149 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518483,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,21:40,MANHATTAN,10038,40.7081,-73.999405,"(40.7081, -73.999405)",,,BROOKLYN BRIDGE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518740,Sedan,Taxi,,, +04/12/2022,10:23,QUEENS,11420,40.67467,-73.822525,"(40.67467, -73.822525)",SUTTER AVENUE,116 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4518635,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,13:27,BRONX,10461,40.840164,-73.84262,"(40.840164, -73.84262)",WESTCHESTER AVENUE,FERRIS PLACE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4518420,Motorbike,,,, +04/03/2022,3:55,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518962,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,10:30,MANHATTAN,10010,40.741547,-73.98958,"(40.741547, -73.98958)",5 AVENUE,WEST 23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518922,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/07/2021,4:32,QUEENS,11432,40.7215085,-73.7893972,"(40.7215085, -73.7893972)",,,176-20 KILDARE ROAD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4468735,Sedan,Sedan,,, +04/12/2022,13:15,,,40.631336,-74.1478,"(40.631336, -74.1478)",WALKER STREET,PULASKI AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518534,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,14:50,MANHATTAN,10018,40.754055,-73.99583,"(40.754055, -73.99583)",9 AVENUE,WEST 35 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518513,Sedan,Bike,,, +10/18/2021,12:00,,,40.7409183,-73.8372685,"(40.7409183, -73.8372685)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/29/2022,20:35,BROOKLYN,11230,40.6202,-73.966286,"(40.6202, -73.966286)",,,1194 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518861,Sedan,,,, +04/11/2022,15:45,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518894,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,8:00,STATEN ISLAND,10301,,,,DANIEL LOW TERRACE,CRESCENT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4518546,Sedan,,,, +10/18/2021,11:30,,,40.5838165,-73.9693747,"(40.5838165, -73.9693747)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,8:40,BROOKLYN,11201,40.6915,-73.988525,"(40.6915, -73.988525)",,,409 RED HOOK LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518411,Sedan,,,, +04/12/2022,5:22,BROOKLYN,11204,40.61986,-73.982376,"(40.61986, -73.982376)",,,5903 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518371,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,18:12,QUEENS,11423,40.713875,-73.75405,"(40.713875, -73.75405)",FRANCIS LEWIS BOULEVARD,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518974,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,16:10,BROOKLYN,11208,40.679108,-73.88062,"(40.679108, -73.88062)",HIGHLAND PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518678,Box Truck,,,, +04/12/2022,0:00,QUEENS,11420,40.67054,-73.820885,"(40.67054, -73.820885)",135 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518795,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,15:30,QUEENS,11411,40.70114,-73.73827,"(40.70114, -73.73827)",219 STREET,114 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518457,Sedan,Sedan,,, +04/12/2022,14:53,,,40.818504,-73.91448,"(40.818504, -73.91448)",EAST 153 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518564,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/19/2021,7:10,,,40.651873,-73.8653471,"(40.651873, -73.8653471)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468754,Sedan,Sedan,,, +01/24/2022,0:02,BROOKLYN,11212,40.66479,-73.91532,"(40.66479, -73.91532)",BLAKE AVENUE,STRAUSS STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4497053,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,7:05,,,40.636864,-74.15287,"(40.636864, -74.15287)",RICHMOND TERRACE,VANNAME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497232,Bus,Sedan,,, +01/24/2022,1:00,MANHATTAN,10002,40.719524,-73.99315,"(40.719524, -73.99315)",,,135 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4497132,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,20:40,,,40.810993,-73.9542878,"(40.810993, -73.9542878)",MORNINGSIDE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4468758,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,12:54,STATEN ISLAND,10301,40.639267,-74.0941,"(40.639267, -74.0941)",LAFAYETTE AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497531,Sedan,,,, +01/24/2022,15:00,MANHATTAN,10029,40.794132,-73.94282,"(40.794132, -73.94282)",3 AVENUE,EAST 110 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4497500,Taxi,E-Bike,,, +01/24/2022,0:50,QUEENS,11419,40.690193,-73.81462,"(40.690193, -73.81462)",,,131-19 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496769,Sedan,,,, +01/24/2022,5:40,QUEENS,11368,40.759727,-73.8455,"(40.759727, -73.8455)",126 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497084,Sedan,Sedan,,, +01/21/2022,12:20,,,40.61183,-74.00108,"(40.61183, -74.00108)",80 STREET,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4497401,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/24/2022,12:57,,,40.61241,-74.13281,"(40.61241, -74.13281)",,,2081 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4497158,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,0:55,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,11:30,BROOKLYN,11234,40.621178,-73.92132,"(40.621178, -73.92132)",,,1402 EAST 56 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497590,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,5:30,BRONX,10457,40.84467,-73.8972,"(40.84467, -73.8972)",,,4123 3 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4497712,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,15:00,QUEENS,11435,40.6944252,-73.8009367,"(40.6944252, -73.8009367)",150 STREET,107 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468769,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,4:43,QUEENS,11368,40.74218,-73.850876,"(40.74218, -73.850876)",111 STREET,55 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4496814,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:36,BROOKLYN,11208,40.67122,-73.88276,"(40.67122, -73.88276)",SUTTER AVENUE,ELTON STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4518729,Bus,Flat Bed,,, +01/23/2022,8:30,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,19:48,MANHATTAN,10019,40.76531,-73.99134,"(40.76531, -73.99134)",WEST 51 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497582,Sedan,,,, +01/18/2022,10:30,BROOKLYN,11208,40.66682,-73.88166,"(40.66682, -73.88166)",NEW LOTS AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4497454,Beverage Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +01/24/2022,7:50,QUEENS,11104,40.74689,-73.92081,"(40.74689, -73.92081)",43 STREET,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496895,Sedan,Sedan,,, +01/24/2022,6:30,,,40.788784,-73.79116,"(40.788784, -73.79116)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4497036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,18:45,,,40.676632,-73.95944,"(40.676632, -73.95944)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497263,Dump,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,9:15,BRONX,10466,40.87987,-73.842026,"(40.87987, -73.842026)",BOSTON ROAD,EAST 224 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Turning Improperly,,,,4497301,Dump,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,6:40,MANHATTAN,10027,40.810276,-73.94738,"(40.810276, -73.94738)",WEST 127 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4497414,Sedan,Sedan,Sedan,, +01/22/2022,14:30,BROOKLYN,11208,40.683002,-73.883514,"(40.683002, -73.883514)",ESSEX STREET,RIDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497432,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,15:20,,,40.839867,-73.94064,"(40.839867, -73.94064)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497014,Sedan,Box Truck,,, +01/24/2022,12:35,BRONX,10465,40.817368,-73.81049,"(40.817368, -73.81049)",,,186 MEAGHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496968,Station Wagon/Sport Utility Vehicle,Van,,, +01/21/2022,18:06,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,6:30,BRONX,10452,40.83828,-73.92728,"(40.83828, -73.92728)",,,1212 UNIVERSITY AVENUE,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4497691,Sedan,,,, +01/24/2022,15:14,BROOKLYN,11231,40.682957,-73.99788,"(40.682957, -73.99788)",CLINTON STREET,UNION STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4497004,Sedan,Sedan,,, +01/24/2022,10:10,BRONX,10472,40.835335,-73.87001,"(40.835335, -73.87001)",,,1415 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496971,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,10:28,QUEENS,11358,40.758785,-73.79047,"(40.758785, -73.79047)",,,42-32 191 STREET,0,1,0,1,0,0,0,0,Unspecified,,,,,4497550,Dump,,,, +01/24/2022,20:16,MANHATTAN,10016,40.749664,-73.98158,"(40.749664, -73.98158)",EAST 37 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4497030,Taxi,E-Bike,,, +01/24/2022,5:00,QUEENS,11416,40.68057,-73.851,"(40.68057, -73.851)",88 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496900,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,12:18,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497430,Sedan,Sedan,,, +01/24/2022,13:14,,,40.853027,-73.91827,"(40.853027, -73.91827)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497150,Sedan,Bus,,, +01/24/2022,7:31,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4497188,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,5:10,BROOKLYN,11207,40.673294,-73.89519,"(40.673294, -73.89519)",GLENMORE AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497447,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,12:26,BROOKLYN,11217,40.687504,-73.97995,"(40.687504, -73.97995)",,,41 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4497326,Sedan,,,, +01/21/2022,14:00,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497439,Sedan,Box Truck,,, +01/24/2022,12:00,STATEN ISLAND,10309,40.540012,-74.22283,"(40.540012, -74.22283)",,,148 CLAY PIT ROAD,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4496958,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,16:45,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497024,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:11,,,40.6056787,-74.0309407,"(40.6056787, -74.0309407)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468802,Sedan,Sedan,,, +01/24/2022,8:30,,,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497092,,,,, +01/24/2022,15:00,BROOKLYN,11220,40.636375,-74.02154,"(40.636375, -74.02154)",,,438 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497625,Sedan,,,, +01/24/2022,22:30,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497298,M2,Sedan,,, +01/24/2022,4:30,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497488,Sedan,,,, +10/09/2021,15:40,,,40.7151868,-73.9519598,"(40.7151868, -73.9519598)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4468807,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/14/2022,11:49,BROOKLYN,11208,40.659996,-73.87553,"(40.659996, -73.87553)",,,1055 LINWOOD STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4497643,Tractor Truck Diesel,Sedan,,, +10/12/2021,8:40,QUEENS,11433,40.707935,-73.7856861,"(40.707935, -73.7856861)",JAMAICA AVENUE,175 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4468809,Carry All,,,, +10/12/2021,18:30,BROOKLYN,11213,40.6713386,-73.9447945,"(40.6713386, -73.9447945)",BROOKLYN AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4468810,Sedan,,,, +01/24/2022,10:01,QUEENS,11356,40.78382,-73.85645,"(40.78382, -73.85645)",,,110-43 15 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497037,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,17:00,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4497066,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/21/2022,0:00,,,40.818394,-73.95089,"(40.818394, -73.95089)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4497561,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,4:35,,,40.8636899,-73.9170643,"(40.8636899, -73.9170643)",WEST 207 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468817,Sedan,Sedan,,, +01/24/2022,2:30,QUEENS,11385,40.703728,-73.87304,"(40.703728, -73.87304)",,,78-38 76 STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4496980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan +01/24/2022,0:10,,,40.645256,-73.874954,"(40.645256, -73.874954)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497471,Sedan,Sedan,,, +10/11/2021,0:21,MANHATTAN,10033,40.8481201,-73.9308839,"(40.8481201, -73.9308839)",AMSTERDAM AVENUE,WEST 181 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4468820,Taxi,Sedan,,, +01/24/2022,7:00,BROOKLYN,11221,40.693726,-73.92572,"(40.693726, -73.92572)",BUSHWICK AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497389,Sedan,,,, +01/20/2022,7:03,BROOKLYN,11208,40.67736,-73.87645,"(40.67736, -73.87645)",,,895 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497425,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,13:25,BROOKLYN,11207,40.67897,-73.895706,"(40.67897, -73.895706)",VERMONT STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497463,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,1:05,,,40.669434,-73.9255,"(40.669434, -73.9255)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497540,Sedan,,,, +01/24/2022,15:30,,,40.822735,-73.94763,"(40.822735, -73.94763)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497143,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,12:30,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4497515,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,11:50,MANHATTAN,10014,40.73624,-74.00318,"(40.73624, -74.00318)",,,249 WEST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497177,Box Truck,Sedan,Sedan,, +01/24/2022,22:00,BROOKLYN,11222,40.724796,-73.952415,"(40.724796, -73.952415)",,,969 LORIMER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497076,Sedan,,,, +10/12/2021,16:20,STATEN ISLAND,10312,40.5441955,-74.1763418,"(40.5441955, -74.1763418)",,,1002 ARDEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468829,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/24/2022,18:22,STATEN ISLAND,10301,40.634468,-74.086945,"(40.634468, -74.086945)",,,100 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,23:43,QUEENS,11373,40.731182,-73.871605,"(40.731182, -73.871605)",WETHEROLE STREET,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497612,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,16:15,QUEENS,11355,40.75357,-73.814575,"(40.75357, -73.814575)",,,146-34 HOLLY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497041,Sedan,,,, +01/20/2022,19:27,BROOKLYN,11207,40.673954,-73.88599,"(40.673954, -73.88599)",,,397 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497481,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,2:40,,,40.72662,-73.757324,"(40.72662, -73.757324)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4497658,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,22:05,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",GRAND CONCOURSE,EAST 158 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4497218,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/24/2022,16:45,BROOKLYN,11230,40.622787,-73.960945,"(40.622787, -73.960945)",AVENUE K,EAST 15 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4497086,Box Truck,,,, +10/03/2021,21:00,,,40.6348753,-74.1379484,"(40.6348753, -74.1379484)",,,198 CHARLES AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4468838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/24/2022,10:30,BRONX,10451,40.823467,-73.92447,"(40.823467, -73.92447)",GRAND CONCOURSE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497220,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,21:10,,,40.85706,-73.90469,"(40.85706, -73.90469)",WEST 182 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497160,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,13:30,BROOKLYN,11213,40.665535,-73.93699,"(40.665535, -73.93699)",TROY AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497525,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,3:20,,,40.665268,-73.827705,"(40.665268, -73.827705)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4496771,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,16:20,BROOKLYN,11221,40.684624,-73.93838,"(40.684624, -73.93838)",JEFFERSON AVENUE,MARCUS GARVEY BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,Unspecified,4497569,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +01/19/2022,17:11,,,40.754147,-73.722885,"(40.754147, -73.722885)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4495843,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,19:18,BROOKLYN,11229,40.605797,-73.95773,"(40.605797, -73.95773)",AVENUE R,EAST 15 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497062,Sedan,,,, +01/13/2022,18:25,,,40.602528,-74.015114,"(40.602528, -74.015114)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4497458,Sedan,Sedan,Sedan,, +01/22/2022,7:15,MANHATTAN,10012,40.72593,-73.99466,"(40.72593, -73.99466)",LAFAYETTE STREET,BLEECKER STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,,,4497711,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +01/19/2022,8:50,,,40.711998,-73.82286,"(40.711998, -73.82286)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497654,Pick-up Truck,Sedan,,, +01/20/2022,10:30,,,40.58197,-73.95495,"(40.58197, -73.95495)",CASS PLACE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4497499,Sedan,Sedan,,, +01/24/2022,3:05,BRONX,10474,40.81033,-73.8854,"(40.81033, -73.8854)",FAILE STREET,OAK POINT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4496829,Tractor Truck Diesel,Sedan,,, +01/24/2022,15:00,,,40.705944,-73.81202,"(40.705944, -73.81202)",144 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497530,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,13:45,QUEENS,11355,40.745304,-73.82595,"(40.745304, -73.82595)",58 AVENUE,MAIN STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4497040,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,14:00,BRONX,10453,40.848545,-73.90679,"(40.848545, -73.90679)",GRAND CONCOURSE,MOUNT HOPE PLACE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4497161,Station Wagon/Sport Utility Vehicle,Bus,,, +12/28/2021,20:02,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4497584,Sedan,,,, +01/24/2022,6:30,BRONX,10454,40.8086,-73.909775,"(40.8086, -73.909775)",SAINT MARYS STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497080,Taxi,Sedan,,, +01/24/2022,0:00,BROOKLYN,11208,40.674786,-73.8762,"(40.674786, -73.8762)",PITKIN AVENUE,LOGAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497452,Sedan,Sedan,,, +01/24/2022,13:00,BROOKLYN,11223,40.60915,-73.96997,"(40.60915, -73.96997)",AVENUE P,EAST 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497479,Bike,Sedan,,, +01/24/2022,5:24,MANHATTAN,10018,40.75537,-73.98746,"(40.75537, -73.98746)",WEST 41 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497133,Taxi,Taxi,,, +01/12/2022,21:46,,,40.77247,-73.91959,"(40.77247, -73.91959)",HOYT AVENUE NORTH,27 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4497699,E-Scooter,,,, +01/18/2022,11:26,MANHATTAN,10027,40.813885,-73.95211,"(40.813885, -73.95211)",,,416 WEST 129 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4497560,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,5:07,BROOKLYN,11232,40.649307,-74.00367,"(40.649307, -74.00367)",,,569 41 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4496976,Sedan,Sedan,,, +01/24/2022,9:46,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497008,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,22:56,,,40.735424,-73.84466,"(40.735424, -73.84466)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,4497365,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/21/2022,13:56,MANHATTAN,10002,40.71384,-73.99273,"(40.71384, -73.99273)",EAST BROADWAY,PIKE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497674,Sedan,,,, +10/19/2021,13:15,,,40.7412428,-73.8457301,"(40.7412428, -73.8457301)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4468869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,11:35,BROOKLYN,11229,40.59842,-73.96019,"(40.59842, -73.96019)",AVENUE U,EAST 12 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497056,Sedan,,,, +01/24/2022,16:49,BROOKLYN,11207,40.651688,-73.88877,"(40.651688, -73.88877)",ALABAMA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4497442,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/22/2022,14:05,MANHATTAN,10010,40.73951,-73.98475,"(40.73951, -73.98475)",LEXINGTON AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Glare,,,,,4497589,Sedan,,,, +01/24/2022,10:00,QUEENS,11432,40.71157,-73.785034,"(40.71157, -73.785034)",178 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496959,Sedan,,,, +01/24/2022,23:00,,,40.5953,-74.1619,"(40.5953, -74.1619)",RICHMOND AVENUE,ROCKLAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497230,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,19:16,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443580,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,2:25,,,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4497390,Sedan,,,, +01/24/2022,6:30,BROOKLYN,11219,40.624928,-73.993645,"(40.624928, -73.993645)",,,1522 61 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4496995,Sedan,,,, +01/24/2022,10:59,MANHATTAN,10005,40.705296,-74.01001,"(40.705296, -74.01001)",,,15 WILLIAM STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4497091,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/23/2022,13:44,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497489,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,9:30,QUEENS,11106,40.767853,-73.934235,"(40.767853, -73.934235)",12 STREET,31 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497538,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,19:08,MANHATTAN,10023,40.776724,-73.9792859,"(40.776724, -73.9792859)",WEST 71 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468882,Sedan,Sedan,,, +10/12/2021,16:30,,,40.7843547,-73.9811649,"(40.7843547, -73.9811649)",WEST 79 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468883,Sedan,Sedan,,, +01/22/2022,10:00,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497448,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,1:08,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4497047,Sedan,Sedan,,, +01/24/2022,18:10,,,40.68846,-73.80878,"(40.68846, -73.80878)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497105,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/05/2022,7:05,,,40.556583,-74.176254,"(40.556583, -74.176254)",ANNADALE ROAD,DRUMGOOLE ROAD WEST,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4497631,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,18:30,,,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497484,Sedan,Sedan,,, +01/24/2022,20:00,,,40.68635,-73.96241,"(40.68635, -73.96241)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497325,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,22:15,,,40.6669444,-73.7827084,"(40.6669444, -73.7827084)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468890,Sedan,,,, +01/24/2022,0:12,QUEENS,11419,40.690025,-73.82571,"(40.690025, -73.82571)",,,119-18 101 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4496890,Pick-up Truck,Sedan,Sedan,, +01/21/2022,8:55,BROOKLYN,11207,40.657913,-73.87854,"(40.657913, -73.87854)",,,380 COZINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497438,Sedan,,,, +01/24/2022,7:20,BROOKLYN,11225,40.65671,-73.95648,"(40.65671, -73.95648)",BEDFORD AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497033,Sedan,,,, +01/24/2022,18:20,,,40.766617,-73.8389,"(40.766617, -73.8389)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497398,Van,,,, +01/24/2022,18:38,STATEN ISLAND,10306,40.566494,-74.11377,"(40.566494, -74.11377)",HYLAN BOULEVARD,ALLISON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497261,Sedan,,,, +01/24/2022,6:00,,,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497148,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,18:15,BROOKLYN,11238,40.677525,-73.963715,"(40.677525, -73.963715)",WASHINGTON AVENUE,SAINT MARKS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497549,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,2:44,,,40.611095,-74.11467,"(40.611095, -74.11467)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Pavement Slippery,,,,,4497187,Sedan,,,, +01/22/2022,15:00,,,40.678596,-73.882416,"(40.678596, -73.882416)",ATLANTIC AVENUE,ESSEX STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497485,Sedan,,,, +10/11/2021,20:30,BROOKLYN,11236,40.6333536,-73.8832765,"(40.6333536, -73.8832765)",,,5995 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4468904,Sedan,,,, +01/24/2022,6:00,BROOKLYN,11212,40.65989,-73.91217,"(40.65989, -73.91217)",,,418 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497065,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,4:59,BROOKLYN,11208,40.667526,-73.868996,"(40.667526, -73.868996)",,,711 PINE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497444,Sedan,,,, +01/24/2022,13:00,BROOKLYN,11207,40.664345,-73.88633,"(40.664345, -73.88633)",,,654 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4497464,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,15:17,QUEENS,11691,40.593204,-73.77535,"(40.593204, -73.77535)",,,211 BEACH 44 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4443612,Sedan,,,, +10/19/2021,17:30,,,40.82439,-73.8363,"(40.82439, -73.8363)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,17:35,QUEENS,11419,40.687668,-73.8117,"(40.687668, -73.8117)",107 AVENUE,133 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497096,Pick-up Truck,,,, +01/13/2022,15:00,QUEENS,11362,40.76485,-73.73543,"(40.76485, -73.73543)",MARATHON PARKWAY,MORENCI LANE,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4497410,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,0:41,MANHATTAN,10029,40.787693,-73.94148,"(40.787693, -73.94148)",EAST 103 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496898,Taxi,Bike,,, +01/24/2022,22:07,BROOKLYN,11236,40.633606,-73.91623,"(40.633606, -73.91623)",FLATLANDS AVENUE,EAST 76 STREET,,3,0,0,0,0,0,3,0,Brakes Defective,,,,,4497207,Sedan,,,, +01/24/2022,17:00,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4497011,Bike,,,, +01/24/2022,8:29,,,40.840878,-73.90477,"(40.840878, -73.90477)",WEBSTER AVENUE,CLAY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497221,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,15:00,MANHATTAN,10128,40.78427,-73.95634,"(40.78427, -73.95634)",,,1280 MADISON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Passing Too Closely,,,,4497061,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/07/2021,8:52,QUEENS,11354,40.7647488,-73.8214142,"(40.7647488, -73.8214142)",,,144-50 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468922,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,19:50,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",FLATLANDS AVENUE,ROCKAWAY PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,,,,,4497206,Sedan,,,, +01/14/2022,16:24,BRONX,10463,40.88396,-73.90128,"(40.88396, -73.90128)",,,5782 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Glare,,,,4497513,Sedan,Ambulance,,, +01/24/2022,20:29,MANHATTAN,10020,40.759644,-73.98064,"(40.759644, -73.98064)",,,1251 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Turning Improperly,Turning Improperly,,,,4497140,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/22/2022,19:00,,,,,,VANCORTLANDT PARK,INTERSTATE ROUTE 87 NORTH,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497526,Sedan,,,, +01/24/2022,4:42,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4496772,Sedan,Sedan,,, +01/21/2022,19:20,BROOKLYN,11207,40.65906,-73.88459,"(40.65906, -73.88459)",VAN SICLEN AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497570,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,8:20,BROOKLYN,11207,40.67731,-73.89913,"(40.67731, -73.89913)",JAMAICA AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497457,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/16/2022,19:00,,,40.716644,-73.99582,"(40.716644, -73.99582)",BOWERY,CANAL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497675,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,14:44,MANHATTAN,10029,40.791718,-73.95298,"(40.791718, -73.95298)",EAST 102 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497391,Station Wagon/Sport Utility Vehicle,Bus,,, +01/24/2022,14:24,,,40.59052,-73.805336,"(40.59052, -73.805336)",BEACH CHANNEL DRIVE,BEACH 79 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496993,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,7:05,BROOKLYN,11210,40.63782,-73.952965,"(40.63782, -73.952965)",,,1361 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496996,Sedan,Bus,,, +01/24/2022,8:01,QUEENS,11385,40.707092,-73.89724,"(40.707092, -73.89724)",FRESH POND ROAD,MADISON STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4497281,Station Wagon/Sport Utility Vehicle,Bus,,, +08/26/2021,9:00,QUEENS,11434,40.681335,-73.77415,"(40.681335, -73.77415)",170 STREET,MARSDEN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497565,Sedan,,,, +01/24/2022,14:59,,,40.64592,-74.02384,"(40.64592, -74.02384)",58 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497023,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,20:25,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,Other Vehicular,,,4497366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/07/2021,20:19,QUEENS,11354,40.7636871,-73.8144329,"(40.7636871, -73.8144329)",150 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468940,Bus,,,, +01/23/2022,11:10,QUEENS,11429,40.70591,-73.731926,"(40.70591, -73.731926)",,,111-07 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497611,Sedan,,,, +01/24/2022,7:11,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497046,Sedan,Sedan,,, +01/20/2022,7:47,BROOKLYN,11207,40.6783,-73.88988,"(40.6783, -73.88988)",FULTON STREET,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4497426,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,14:45,MANHATTAN,10028,40.777332,-73.95451,"(40.777332, -73.95451)",,,207 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497670,Sedan,Box Truck,,, +01/24/2022,20:40,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unsafe Speed,Unsafe Speed,,,4497287,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/20/2022,15:30,BROOKLYN,11224,40.580944,-74.002914,"(40.580944, -74.002914)",WEST 36 STREET,BAY VIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497421,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,17:05,BROOKLYN,11207,40.67891,-73.89003,"(40.67891, -73.89003)",,,103 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497441,Bus,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,5:39,BROOKLYN,11222,40.72218,-73.938736,"(40.72218, -73.938736)",MORGAN AVENUE,LOMBARDY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496962,Sedan,Sedan,,, +01/24/2022,7:30,BROOKLYN,11205,,,,st james place,lafayette avenue,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497021,,,,, +01/21/2022,18:40,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497637,Sedan,,,, +01/21/2022,16:55,BROOKLYN,11206,40.70547,-73.95024,"(40.70547, -73.95024)",BROADWAY,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497652,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,11:17,QUEENS,11367,40.73963,-73.82482,"(40.73963, -73.82482)",MAIN STREET,63 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497039,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,10:20,,,,,,ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497163,Flat Bed,,,, +10/19/2021,16:59,,,40.7128108,-73.9541654,"(40.7128108, -73.9541654)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,11:43,QUEENS,11374,40.7293,-73.862854,"(40.7293, -73.862854)",SAUNDERS STREET,63 DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497613,Box Truck,,,, +01/22/2022,0:44,BROOKLYN,11207,40.665714,-73.898445,"(40.665714, -73.898445)",,,545 DUMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4497456,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,8:00,,,40.6148,-73.98766,"(40.6148, -73.98766)",68 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,9:30,BRONX,10451,40.82154,-73.91842,"(40.82154, -73.91842)",,,285 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4496975,Sedan,Sedan,,, +01/24/2022,17:30,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4497058,Sedan,,,, +01/24/2022,4:27,BRONX,10474,40.809914,-73.88815,"(40.809914, -73.88815)",OAK POINT AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4496897,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,19:30,BROOKLYN,11211,40.711903,-73.95129,"(40.711903, -73.95129)",,,379 UNION AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497034,Sedan,Sedan,,, +01/24/2022,19:29,BROOKLYN,11222,40.7263,-73.94913,"(40.7263, -73.94913)",MC GUINNESS BOULEVARD,NORMAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497267,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,7:11,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497027,Sedan,Sedan,,, +01/24/2022,13:00,,,40.823082,-73.86722,"(40.823082, -73.86722)",,,ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497511,Sedan,,,, +01/21/2022,0:00,BROOKLYN,11208,40.672405,-73.871185,"(40.672405, -73.871185)",,,591 EUCLID AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4497427,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,14:35,BROOKLYN,11219,40.638855,-73.98813,"(40.638855, -73.98813)",,,4201 13 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497081,Sedan,Sedan,,, +10/19/2021,14:10,,,40.5845311,-73.94899,"(40.5845311, -73.94899)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468973,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,16:00,QUEENS,11420,40.66878,-73.80266,"(40.66878, -73.80266)",,,133-34 135 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4497339,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,14:19,BROOKLYN,11208,40.6701,-73.85829,"(40.6701, -73.85829)",,,2858 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497437,Sedan,Sedan,,, +01/21/2022,19:00,BROOKLYN,11214,40.60143,-74.00514,"(40.60143, -74.00514)",19 AVENUE,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497406,Sedan,Sedan,,, +01/24/2022,11:30,BROOKLYN,11210,40.63322,-73.94477,"(40.63322, -73.94477)",,,1615 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497155,Sedan,,,, +01/22/2022,9:00,BROOKLYN,11239,40.652462,-73.87658,"(40.652462, -73.87658)",,,590 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497474,Sedan,Sedan,,, +01/21/2022,5:00,MANHATTAN,10011,40.739735,-74.00033,"(40.739735, -74.00033)",,,161 WEST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497588,Pick-up Truck,,,, +01/24/2022,15:33,BRONX,10456,40.828533,-73.903465,"(40.828533, -73.903465)",HOME STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497071,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/05/2022,5:48,,,40.570835,-74.16983,"(40.570835, -74.16983)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4497491,Sedan,Sedan,,, +01/24/2022,16:10,BRONX,10459,40.82389,-73.89585,"(40.82389, -73.89585)",EAST 165 STREET,KELLY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,12:30,,,40.708256,-73.91997,"(40.708256, -73.91997)",STARR STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4518623,Bus,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,4:30,,,40.879307,-73.90295,"(40.879307, -73.90295)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4497527,Sedan,Sedan,,, +01/24/2022,13:05,QUEENS,11413,40.678226,-73.75236,"(40.678226, -73.75236)",135 AVENUE,218 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497009,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,14:45,BROOKLYN,11211,40.715065,-73.9462,"(40.715065, -73.9462)",MANHATTAN AVENUE,CONSELYEA STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497108,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/24/2022,7:45,,,40.73135,-73.98256,"(40.73135, -73.98256)",EAST 14 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497700,Station Wagon/Sport Utility Vehicle,,,, +12/15/2021,20:55,QUEENS,11436,40.678436,-73.80057,"(40.678436, -73.80057)",141 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4497585,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,15:30,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497460,Sedan,E-Scooter,,, +01/24/2022,21:34,BRONX,10453,40.85779,-73.90645,"(40.85779, -73.90645)",,,2200 GRAND AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4497136,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,16:21,QUEENS,11435,40.70058,-73.80775,"(40.70058, -73.80775)",SUTPHIN BOULEVARD,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497257,Sedan,Sedan,,, +01/20/2022,11:30,BROOKLYN,11224,40.57275,-73.997055,"(40.57275, -73.997055)",WEST 31 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497465,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,17:08,MANHATTAN,10005,40.70734,-74.00865,"(40.70734, -74.00865)",WILLIAM STREET,CEDAR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497089,Sedan,,,, +01/24/2022,22:15,,,40.724495,-73.72469,"(40.724495, -73.72469)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497048,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,22:56,,,,,,110 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497519,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,3:32,,,40.669262,-73.784386,"(40.669262, -73.784386)",134 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497535,Sedan,Van,,, +01/24/2022,7:27,BROOKLYN,11216,40.685047,-73.954254,"(40.685047, -73.954254)",BEDFORD AVENUE,MONROE STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497313,Sedan,E-Bike,,, +09/25/2021,5:06,MANHATTAN,10037,40.8154026,-73.9399099,"(40.8154026, -73.9399099)",WEST 137 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469002,Sedan,,,, +10/16/2021,3:10,,,40.8319864,-73.9351481,"(40.8319864, -73.9351481)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4469003,Sedan,,,, +01/24/2022,0:54,BROOKLYN,11208,40.6647,-73.87364,"(40.6647, -73.87364)",,,553 MONTAUK AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4497449,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/24/2022,18:54,MANHATTAN,10031,40.829597,-73.94814,"(40.829597, -73.94814)",BROADWAY,WEST 150 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497147,Sedan,,,, +10/20/2021,1:00,,,40.7644443,-73.7226816,"(40.7644443, -73.7226816)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4469006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,23:00,,,40.757365,-73.7388639,"(40.757365, -73.7388639)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,Unspecified,,4469007,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,18:45,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4497209,Sedan,,,, +01/10/2022,20:44,BROOKLYN,11236,40.639637,-73.88224,"(40.639637, -73.88224)",EAST 108 STREET,FLATLANDS 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497608,Sedan,,,, +01/21/2022,8:00,BROOKLYN,11207,40.65444,-73.89081,"(40.65444, -73.89081)",ALABAMA AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497483,Sedan,Sedan,,, +10/16/2021,16:30,,,40.7537979,-73.7442812,"(40.7537979, -73.7442812)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469012,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,5:55,,,40.746892,-73.7634715,"(40.746892, -73.7634715)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4469014,Station Wagon/Sport Utility Vehicle,,,, +01/01/2022,14:31,BROOKLYN,11221,40.694305,-73.91852,"(40.694305, -73.91852)",CENTRAL AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4497707,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/11/2021,17:00,BROOKLYN,11231,40.6773546,-74.0044561,"(40.6773546, -74.0044561)",HICKS STREET,HUNTINGTON STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4469016,Sedan,,,, +01/24/2022,3:57,,,40.836945,-73.91532,"(40.836945, -73.91532)",EAST CLARKE PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497224,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,14:40,BRONX,10452,40.838158,-73.92324,"(40.838158, -73.92324)",WEST 168 STREET,SHAKESPEARE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4497686,Sedan,Sedan,,, +10/18/2021,0:20,,,40.709696,-73.9912545,"(40.709696, -73.9912545)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4469019,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,16:00,BROOKLYN,11239,40.65289,-73.866745,"(40.65289, -73.866745)",GATEWAY DRIVE,ERSKINE STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4497486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,0:20,QUEENS,11417,40.67215,-73.843185,"(40.67215, -73.843185)",CROSS BAY BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4496773,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,5:25,MANHATTAN,10031,40.817596,-73.95319,"(40.817596, -73.95319)",AMSTERDAM AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4497574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/04/2021,13:50,,,40.68626,-73.8013,"(40.68626, -73.8013)",111 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497521,Sedan,,,, +01/24/2022,15:42,BRONX,10460,40.83404,-73.88759,"(40.83404, -73.88759)",,,1562 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497069,Sedan,Bus,,, +01/16/2022,15:00,MANHATTAN,10026,40.80332,-73.95619,"(40.80332, -73.95619)",,,2115 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4497396,Sedan,,,, +01/24/2022,16:09,QUEENS,11364,40.74932,-73.75569,"(40.74932, -73.75569)",,,221-28 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497000,Sedan,,,, +01/24/2022,17:40,,,40.607838,-74.0872,"(40.607838, -74.0872)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4497378,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +01/18/2022,0:00,QUEENS,11422,40.666416,-73.738495,"(40.666416, -73.738495)",BROOKVILLE BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497547,Sedan,Sedan,,, +01/21/2022,15:15,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",FORBELL STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497461,Sedan,Sedan,,, +10/19/2021,12:01,,,40.8310089,-73.8852386,"(40.8310089, -73.8852386)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4469030,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,10:30,BROOKLYN,11210,40.63336,-73.941925,"(40.63336, -73.941925)",,,1626 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497154,Sedan,,,, +01/24/2022,6:55,QUEENS,11412,40.69689,-73.74929,"(40.69689, -73.74929)",116 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497185,Sedan,Sedan,,, +01/21/2022,6:27,BROOKLYN,11208,40.67201,-73.86628,"(40.67201, -73.86628)",BLAKE AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497445,Sedan,,,, +10/19/2021,9:00,,,40.8452097,-73.9168828,"(40.8452097, -73.9168828)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469034,Tractor Truck Gasoline,,,, +01/24/2022,6:34,MANHATTAN,10021,40.77233,-73.958725,"(40.77233, -73.958725)",3 AVENUE,EAST 76 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497268,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,18:45,QUEENS,11429,40.709316,-73.73441,"(40.709316, -73.73441)",221 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4497026,Sedan,Sedan,,, +01/24/2022,17:07,BROOKLYN,11214,40.60891,-73.990204,"(40.60891, -73.990204)",21 AVENUE,76 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497044,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,18:02,,,40.73986,-73.79012,"(40.73986, -73.79012)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497662,Sedan,Sedan,Sedan,, +01/24/2022,5:37,BROOKLYN,11220,40.642185,-74.013374,"(40.642185, -74.013374)",,,5510 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496956,Sedan,Pick-up Truck,,, +01/24/2022,8:17,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4497614,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/02/2021,0:38,,,,,,VANDUZER STREET,SAINT JULIAN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444096,Sedan,,,, +01/24/2022,13:30,,,40.885517,-73.894684,"(40.885517, -73.894684)",VANCORTLANDT AVENUE WEST,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497288,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,14:50,,,40.745792,-73.8855,"(40.745792, -73.8855)",80 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4497095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,18:04,,,40.8448803,-73.920671,"(40.8448803, -73.920671)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469047,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/12/2021,9:00,QUEENS,11412,40.703373,-73.759186,"(40.703373, -73.759186)",197 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497564,Sedan,,,, +01/24/2022,15:34,,,40.60719,-74.16243,"(40.60719, -74.16243)",RICHMOND AVENUE,VICTORY BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,,,,,4497028,Bus,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,16:40,,,40.5842623,-73.9637906,"(40.5842623, -73.9637906)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469050,Sedan,Sedan,,, +10/19/2021,23:56,,,40.5840106,-73.9215677,"(40.5840106, -73.9215677)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4469051,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,23:39,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",65 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497049,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,17:52,BROOKLYN,11207,40.65747,-73.89364,"(40.65747, -73.89364)",,,1851 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4497450,Sedan,,,, +01/12/2022,14:08,QUEENS,11355,40.757523,-73.82914,"(40.757523, -73.82914)",MAIN STREET,41 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497422,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,15:55,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497428,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,11:35,,,40.61652,-73.98586,"(40.61652, -73.98586)",20 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4496941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,20:39,MANHATTAN,10030,40.818913,-73.94243,"(40.818913, -73.94243)",,,227 WEST 140 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497202,Sedan,Pick-up Truck,,, +01/24/2022,8:45,BROOKLYN,11204,40.61074,-73.97919,"(40.61074, -73.97919)",AVENUE O,WEST 5 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4496992,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/24/2022,8:50,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497302,Sedan,Bus,,, +01/24/2022,3:17,,,40.873383,-73.88938,"(40.873383, -73.88938)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4496896,Sedan,Sedan,,, +01/24/2022,22:00,BROOKLYN,11235,40.592514,-73.95231,"(40.592514, -73.95231)",AVENUE X,EAST 18 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497059,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,19:02,BROOKLYN,11219,40.621853,-74.00083,"(40.621853, -74.00083)",,,1435 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497415,Sedan,,,, +01/24/2022,11:51,MANHATTAN,10025,40.792126,-73.97178,"(40.792126, -73.97178)",AMSTERDAM AVENUE,WEST 93 STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4497264,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,17:16,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4497017,Bus,Pick-up Truck,,, +01/21/2022,8:08,BROOKLYN,11214,40.598045,-73.99661,"(40.598045, -73.99661)",BATH AVENUE,BAY 31 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497533,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,13:30,BROOKLYN,11204,40.61723,-73.99955,"(40.61723, -73.99955)",,,7310 NEW UTRECHT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4497494,Van,Tow Truck / Wrecker,,, +01/24/2022,0:00,,,40.58401,-73.98587,"(40.58401, -73.98587)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4497113,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle,, +01/24/2022,21:05,BROOKLYN,11218,40.640984,-73.972916,"(40.640984, -73.972916)",,,626 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497082,Sedan,,,, +01/21/2022,18:51,BROOKLYN,11207,40.65923,-73.89329,"(40.65923, -73.89329)",HEGEMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4497455,Sedan,Sedan,,, +10/19/2021,18:06,,,40.8115107,-73.9348031,"(40.8115107, -73.9348031)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4469072,Station Wagon/Sport Utility Vehicle,,,, +09/16/2021,7:15,,,40.7043902,-73.7791586,"(40.7043902, -73.7791586)",180 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469073,Station Wagon/Sport Utility Vehicle,,,, +06/15/2021,8:15,,,40.67798,-73.872116,"(40.67798, -73.872116)",LIBERTY AVENUE,CONDUIT BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4427800,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/13/2021,13:53,BROOKLYN,11217,40.68631,-73.97445,"(40.68631, -73.97445)",SOUTH PORTLAND AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4436811,Sedan,Bike,,, +08/01/2021,12:52,BRONX,10475,40.879898,-73.83181,"(40.879898, -73.83181)",,,1000 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4444174,Station Wagon/Sport Utility Vehicle,,,, +07/17/2021,18:10,BROOKLYN,11237,40.691673,-73.904686,"(40.691673, -73.904686)",,,1326 DECATUR STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444176,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,4:31,,,40.701153,-73.93057,"(40.701153, -73.93057)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4444178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/30/2021,23:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444188,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,21:30,,,40.69397,-73.75397,"(40.69397, -73.75397)",198 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444181,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,13:53,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444182,Sedan,Sedan,,, +01/23/2022,11:47,BROOKLYN,11207,40.672314,-73.893036,"(40.672314, -73.893036)",PITKIN AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497473,Sedan,,,, +01/24/2022,17:38,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497139,Taxi,Box Truck,,, +01/24/2022,15:00,QUEENS,11413,40.689735,-73.74729,"(40.689735, -73.74729)",121 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497010,Sedan,Pick-up Truck,,, +10/19/2021,18:00,,,40.8361011,-73.8703842,"(40.8361011, -73.8703842)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,7:41,BRONX,10451,40.813374,-73.93058,"(40.813374, -73.93058)",WALTON AVENUE,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4496974,Sedan,Van,,, +10/19/2021,18:09,,,40.8361011,-73.8703842,"(40.8361011, -73.8703842)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4469083,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/20/2022,9:18,MANHATTAN,10075,40.775642,-73.958405,"(40.775642, -73.958405)",LEXINGTON AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497553,Taxi,E-Scooter,,, +01/24/2022,12:00,,,40.658577,-73.76475,"(40.658577, -73.76475)",149 AVENUE,183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497330,Van,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,15:14,BRONX,10472,40.82779,-73.87517,"(40.82779, -73.87517)",,,1124 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497434,Bus,,,, +10/19/2021,19:50,,,40.8224407,-73.8729435,"(40.8224407, -73.8729435)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469087,Sedan,Sedan,,, +01/24/2022,8:14,,,40.764378,-73.81007,"(40.764378, -73.81007)",155 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497035,Sedan,Sedan,,, +01/24/2022,12:10,BROOKLYN,11203,40.641735,-73.93593,"(40.641735, -73.93593)",,,4307 AVENUE D,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4497156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,18:48,,,40.850445,-73.922554,"(40.850445, -73.922554)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,Driver Inattention/Distraction,,,4497403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,14:30,MANHATTAN,10028,40.774933,-73.94477,"(40.774933, -73.94477)",EAST END AVENUE,EAST 86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497243,Sedan,,,, +01/24/2022,7:00,BRONX,10457,40.854946,-73.89339,"(40.854946, -73.89339)",,,2270 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496963,Bus,Sedan,,, +01/24/2022,6:56,QUEENS,11419,40.688168,-73.809944,"(40.688168, -73.809944)",135 STREET,107 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4496888,Sedan,,,, +01/24/2022,16:05,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",SOUTHERN BOULEVARD,EAST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497063,Bus,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,0:00,QUEENS,11427,40.726227,-73.756714,"(40.726227, -73.756714)",GRAND CENTRAL PARKWAY,CLEARVIEW EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4497651,Sedan,Sedan,,, +01/24/2022,22:00,BRONX,10457,40.84664,-73.90469,"(40.84664, -73.90469)",CLAY AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497167,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,14:19,,,40.67267,-73.77738,"(40.67267, -73.77738)",134 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443479,Sedan,,,, +08/03/2021,14:50,BROOKLYN,11207,40.678867,-73.89282,"(40.678867, -73.89282)",,,101 MILLER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443584,Sedan,,,, +08/03/2021,22:15,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4443526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,20:03,BROOKLYN,11233,40.67413,-73.913925,"(40.67413, -73.913925)",BOYLAND STREET,BERGEN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4443974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/03/2021,8:50,BRONX,10467,40.873844,-73.87425,"(40.873844, -73.87425)",,,3300 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,Other Vehicular,,,4443939,Sedan,Sedan,Sedan,, +08/03/2021,4:20,,,40.695385,-73.840355,"(40.695385, -73.840355)",107 STREET,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4443113,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/03/2021,17:15,QUEENS,11104,40.74576,-73.92581,"(40.74576, -73.92581)",39 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443508,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,9:30,QUEENS,11237,40.705627,-73.91552,"(40.705627, -73.91552)",STANHOPE STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443658,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/03/2021,0:55,BROOKLYN,11230,40.622585,-73.96281,"(40.622585, -73.96281)",AVENUE K,EAST 13 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443550,Sedan,Sedan,,, +07/30/2021,18:00,MANHATTAN,10035,40.799675,-73.93806,"(40.799675, -73.93806)",,,213 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443913,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,6:40,,,40.7285249,-73.8842677,"(40.7285249, -73.8842677)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,23:00,,,40.672752,-73.95432,"(40.672752, -73.95432)",BEDFORD AVENUE,,,2,0,0,0,2,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4444117,Bike,Bike,,, +08/03/2021,6:38,,,40.816273,-73.89287,"(40.816273, -73.89287)",GARRISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443250,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,6:30,BROOKLYN,11226,40.65276,-73.96507,"(40.65276, -73.96507)",,,20 WOODRUFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443557,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,16:30,MANHATTAN,10004,40.701782,-74.01117,"(40.701782, -74.01117)",SOUTH STREET,BROAD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443969,Sedan,Taxi,,, +07/30/2021,8:00,,,40.557568,-74.207,"(40.557568, -74.207)",WEST SERVICE ROAD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444021,Garbage or Refuse,Bus,,, +08/03/2021,14:27,MANHATTAN,10019,40.763626,-73.9796,"(40.763626, -73.9796)",,,140 WEST 55 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443873,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,9:00,BRONX,10462,40.83121,-73.850876,"(40.83121, -73.850876)",CASTLE HILL AVENUE,POWELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4443290,Sedan,,,, +08/03/2021,15:32,MANHATTAN,10027,40.814793,-73.95629,"(40.814793, -73.95629)",,,520 WEST 126 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4443463,Sedan,,,, +08/03/2021,23:40,BROOKLYN,11207,40.67006,-73.890564,"(40.67006, -73.890564)",SUTTER AVENUE,MILLER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4443588,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +08/03/2021,2:32,,,40.588078,-74.16127,"(40.588078, -74.16127)",NOME AVENUE,MERRYMOUNT STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4443670,Sedan,Sedan,Sedan,Sedan, +08/03/2021,18:26,BROOKLYN,11236,40.641727,-73.907646,"(40.641727, -73.907646)",REMSEN AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443751,Sedan,Sedan,,, +08/03/2021,13:30,BRONX,10470,40.90249,-73.8512,"(40.90249, -73.8512)",,,4623 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4443433,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,11:40,BROOKLYN,11211,,,,,,328 LEONARD STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4443344,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/31/2021,13:32,QUEENS,11435,40.705177,-73.80942,"(40.705177, -73.80942)",,,87-69 SUTPHIN BOULEVARD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4444066,Sedan,Sedan,,, +07/09/2021,14:55,,,40.672825,-73.93908,"(40.672825, -73.93908)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444110,Sedan,Motorcycle,,, +08/02/2021,16:35,BROOKLYN,11211,40.705845,-73.955734,"(40.705845, -73.955734)",,,239 HOOPER STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444134,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,8:03,BROOKLYN,11205,40.698677,-73.95886,"(40.698677, -73.95886)",FRANKLIN AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4443406,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,9:30,,,40.595654,-74.08216,"(40.595654, -74.08216)",PARKINSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443345,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,15:30,QUEENS,11434,40.680748,-73.78948,"(40.680748, -73.78948)",118 AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444001,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,16:30,,,40.71401,-73.85965,"(40.71401, -73.85965)",YELLOWSTONE BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443447,Pick-up Truck,Sedan,,, +08/03/2021,8:49,BROOKLYN,11208,40.672752,-73.87205,"(40.672752, -73.87205)",DOSCHER STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443308,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,15:48,BROOKLYN,11236,40.634373,-73.89033,"(40.634373, -73.89033)",,,1991 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,18:22,BRONX,10454,40.806965,-73.911674,"(40.806965, -73.911674)",EAST 141 STREET,JACKSON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443540,Bike,Sedan,,, +08/03/2021,18:00,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4443562,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,19:35,BROOKLYN,11214,40.59905,-73.99442,"(40.59905, -73.99442)",,,88 BAY 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443862,Sedan,,,, +08/03/2021,15:50,STATEN ISLAND,10306,40.5744,-74.099304,"(40.5744, -74.099304)",LINCOLN AVENUE,OLDFIELD STREET,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4443624,Sedan,,,, +08/03/2021,23:58,BROOKLYN,11215,40.67146,-73.99103,"(40.67146, -73.99103)",3 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443761,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,9:25,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443337,Van,Box Truck,,, +08/03/2021,9:15,BRONX,10473,40.822895,-73.88218,"(40.822895, -73.88218)",,,1430 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,12:30,BROOKLYN,11249,40.71725,-73.965744,"(40.71725, -73.965744)",NORTH 1 STREET,RIVER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443517,Station Wagon/Sport Utility Vehicle,,,, +07/23/2021,12:20,,,40.89213,-73.85341,"(40.89213, -73.85341)",EAST 233 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444050,Sedan,,,, +08/03/2021,14:15,MANHATTAN,10002,40.721985,-73.98552,"(40.721985, -73.98552)",EAST HOUSTON STREET,NORFOLK STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444155,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,14:00,MANHATTAN,10018,40.753475,-73.99254,"(40.753475, -73.99254)",WEST 36 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443610,Van,Refrigerated Van,,, +08/01/2021,13:40,BRONX,10466,40.881264,-73.83875,"(40.881264, -73.83875)",BOSTON ROAD,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443930,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +06/06/2021,21:00,BRONX,10467,40.87624,-73.86686,"(40.87624, -73.86686)",,,3444 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444072,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,18:25,QUEENS,11377,40.73516,-73.89784,"(40.73516, -73.89784)",MAURICE AVENUE,67 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4443465,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,19:45,,,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4444125,Sedan,Sedan,,, +08/03/2021,20:00,BRONX,10459,40.822086,-73.89035,"(40.822086, -73.89035)",,,951 HOE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443490,Sedan,Sedan,,, +07/23/2021,17:13,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444009,Sedan,Pick-up Truck,,, +08/03/2021,6:17,BRONX,10474,40.804035,-73.87836,"(40.804035, -73.87836)",,,1 HALLECK STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4443374,Sedan,,,, +07/25/2021,13:55,QUEENS,11358,40.757095,-73.789375,"(40.757095, -73.789375)",192 STREET,43 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443911,Sedan,Sedan,,, +08/03/2021,23:15,,,40.64836,-73.9271,"(40.64836, -73.9271)",EAST 53 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443644,Taxi,,,, +08/03/2021,18:00,MANHATTAN,10004,40.701782,-74.01117,"(40.701782, -74.01117)",BROAD STREET,SOUTH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443703,Sedan,,,, +07/31/2021,8:00,BROOKLYN,11211,40.71302,-73.959305,"(40.71302, -73.959305)",,,202 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444135,Sedan,Sedan,,, +08/03/2021,17:44,,,40.843597,-73.90587,"(40.843597, -73.90587)",TOPPING AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443895,Ambulance,Sedan,,, +06/26/2021,3:00,BRONX,10459,40.821598,-73.89787,"(40.821598, -73.89787)",WESTCHESTER AVENUE,ROGERS PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443988,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,0:01,QUEENS,11417,40.676243,-73.84792,"(40.676243, -73.84792)",89 STREET,SUTTER AVENUE,,1,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4443536,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/01/2021,6:00,BRONX,10467,40.88103,-73.87751,"(40.88103, -73.87751)",,,3519 WAYNE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443944,Sedan,,,, +08/03/2021,11:05,BROOKLYN,11210,40.61772,-73.94518,"(40.61772, -73.94518)",,,2746 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443558,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,18:00,QUEENS,11375,40.730946,-73.84859,"(40.730946, -73.84859)",108 STREET,65 ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443503,Sedan,Sedan,,, +08/03/2021,11:04,,,40.70324,-73.91439,"(40.70324, -73.91439)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443599,Sedan,,,, +07/25/2021,23:55,,,40.6843,-73.94121,"(40.6843, -73.94121)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444044,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,18:50,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4443470,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,13:00,MANHATTAN,10009,40.730614,-73.98078,"(40.730614, -73.98078)",,,436 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443920,Bus,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,17:30,QUEENS,11379,40.723858,-73.87056,"(40.723858, -73.87056)",63 AVENUE,84 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444087,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,18:39,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",GRAND STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443577,Station Wagon/Sport Utility Vehicle,Bike,,, +08/03/2021,1:00,BROOKLYN,11206,40.70839,-73.939964,"(40.70839, -73.939964)",BUSHWICK AVENUE,MESEROLE STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4443509,Station Wagon/Sport Utility Vehicle,Bike,,, +08/03/2021,17:45,,,40.66813,-73.93675,"(40.66813, -73.93675)",UNION STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443579,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,9:00,BROOKLYN,11210,40.619778,-73.95421,"(40.619778, -73.95421)",,,1375 EAST 21 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443551,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,22:30,BROOKLYN,11212,40.666744,-73.91292,"(40.666744, -73.91292)",SUTTER AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443960,Sedan,Motorbike,,, +08/03/2021,5:40,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443115,Dump,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/01/2021,22:31,QUEENS,11413,40.67243,-73.75637,"(40.67243, -73.75637)",140 AVENUE,SPRINGFIELD BOULEVARD,,3,0,2,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4444014,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/30/2021,16:36,BROOKLYN,11212,40.667095,-73.92276,"(40.667095, -73.92276)",EAST NEW YORK AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444121,Sedan,Sedan,,, +08/03/2021,16:10,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4443486,Sedan,,,, +08/03/2021,18:52,BRONX,10458,40.85816,-73.89113,"(40.85816, -73.89113)",,,4675 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443887,Sedan,,,, +07/15/2021,3:20,,,40.67279,-73.922226,"(40.67279, -73.922226)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4444116,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/02/2021,8:30,QUEENS,11385,40.710533,-73.92076,"(40.710533, -73.92076)",FLUSHING AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444086,Pick-up Truck,Box Truck,,, +08/03/2021,18:00,BROOKLYN,11234,40.613235,-73.92335,"(40.613235, -73.92335)",AVENUE S,EAST 53 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4443938,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,3:30,BROOKLYN,11221,40.68879,-73.91691,"(40.68879, -73.91691)",BUSHWICK AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443262,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,13:30,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443972,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,8:35,,,,,,JAY STREET,SANDS STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4443469,Bike,,,, +08/03/2021,14:30,BRONX,10451,40.822357,-73.91146,"(40.822357, -73.91146)",,,830 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443553,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,16:00,STATEN ISLAND,10309,40.543205,-74.21272,"(40.543205, -74.21272)",,,165 MCBAINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444022,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,16:20,QUEENS,11101,40.74135,-73.937096,"(40.74135, -73.937096)",30 PLACE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443505,Sedan,Sedan,,, +08/03/2021,20:58,BROOKLYN,11224,40.576275,-73.98796,"(40.576275, -73.98796)",WEST 21 STREET,MERMAID AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443869,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/01/2021,4:10,BROOKLYN,11234,40.632664,-73.93128,"(40.632664, -73.93128)",AVENUE H,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4443919,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +08/03/2021,17:06,,,40.82802,-73.93122,"(40.82802, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4443527,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/02/2021,17:10,BROOKLYN,11213,40.66878,-73.93071,"(40.66878, -73.93071)",,,1125 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,13:10,QUEENS,11412,40.696186,-73.751976,"(40.696186, -73.751976)",116 AVENUE,201 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,Unspecified,,4444007,Sedan,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle, +08/03/2021,9:15,QUEENS,11413,40.682777,-73.7483,"(40.682777, -73.7483)",,,219-02 131 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443370,Sedan,,,, +08/03/2021,10:11,BROOKLYN,11205,40.690346,-73.9603,"(40.690346, -73.9603)",DE KALB AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4443410,Taxi,Tanker,,, +08/03/2021,17:01,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443633,Sedan,,,, +07/30/2021,21:00,STATEN ISLAND,10301,40.639523,-74.08487,"(40.639523, -74.08487)",BISMARK AVENUE,BENZIGER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444097,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,20:44,QUEENS,11361,40.75738,-73.76539,"(40.75738, -73.76539)",,,215-40 47 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4443480,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,16:16,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443799,,,,, +08/01/2021,23:50,STATEN ISLAND,10309,40.555664,-74.21351,"(40.555664, -74.21351)",ROSSVILLE AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444029,,,,, +08/03/2021,8:00,,,40.7242,-73.93765,"(40.7242, -73.93765)",VANDERVORT AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Passing Too Closely,,,,4443341,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/03/2021,9:05,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4443583,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Dump, +08/03/2021,19:15,BROOKLYN,11208,40.66717,-73.88086,"(40.66717, -73.88086)",NEW LOTS AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4443645,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/03/2021,12:18,QUEENS,11413,40.67134,-73.74982,"(40.67134, -73.74982)",224 STREET,139 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443380,Sedan,Sedan,,, +08/03/2021,10:05,BROOKLYN,11217,40.68178,-73.97415,"(40.68178, -73.97415)",,,38 6 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443516,Sedan,,,, +07/31/2021,11:50,BROOKLYN,11234,40.58544,-73.89567,"(40.58544, -73.89567)",,,3260 FLATBUSH AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4443932,Sedan,Bus,,, +07/18/2021,8:40,,,,,,,,501 OAK POINT AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4443983,Sedan,,,, +08/03/2021,9:12,BROOKLYN,11204,40.60882,-73.98183,"(40.60882, -73.98183)",,,1568 WEST 8 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4443865,Pick-up Truck,,,, +08/03/2021,15:35,BROOKLYN,11219,40.624584,-74.003,"(40.624584, -74.003)",,,6728 13 AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4443475,Sedan,,,, +08/03/2021,19:50,QUEENS,11417,40.674557,-73.859604,"(40.674557, -73.859604)",SUTTER AVENUE,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,3:05,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Outside Car Distraction,Unspecified,,,4444164,Bus,Sedan,Sedan,, +07/29/2021,7:33,MANHATTAN,10002,40.719547,-73.98663,"(40.719547, -73.98663)",,,131 RIVINGTON STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4444154,Sedan,Sedan,,, +08/03/2021,9:30,,,40.895447,-73.88002,"(40.895447, -73.88002)",EAST 233 STREET,JEROME AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4444052,Bus,Pick-up Truck,,, +06/21/2021,17:00,,,40.70025,-73.93774,"(40.70025, -73.93774)",BEAVER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443924,Sedan,,,, +08/03/2021,18:00,,,40.67549,-73.93885,"(40.67549, -73.93885)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4444128,Sedan,,,, +08/03/2021,13:05,STATEN ISLAND,10305,40.60066,-74.079285,"(40.60066, -74.079285)",BEVERLY ROAD,ALLENDALE ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443623,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,2:41,BRONX,10472,40.829754,-73.87374,"(40.829754, -73.87374)",WESTCHESTER AVENUE,HARROD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4443289,Sedan,,,, +08/03/2021,12:20,MANHATTAN,10023,40.77221,-73.982185,"(40.77221, -73.982185)",WEST 64 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4443760,Van,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,12:08,BROOKLYN,11212,40.655132,-73.916336,"(40.655132, -73.916336)",CHURCH AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443457,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/03/2021,23:48,,,40.69366,-73.85217,"(40.69366, -73.85217)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443655,Sedan,Garbage or Refuse,,, +08/03/2021,19:00,BROOKLYN,11208,40.6769,-73.87959,"(40.6769, -73.87959)",ATKINS AVENUE,LIBERTY AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4443587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/03/2021,16:40,MANHATTAN,10029,40.794914,-73.94073,"(40.794914, -73.94073)",,,236 EAST 112 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4443539,Sedan,Sedan,Sedan,, +07/30/2021,15:38,MANHATTAN,10065,40.76115,-73.96087,"(40.76115, -73.96087)",,,1121 1 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4444163,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,20:48,QUEENS,11436,40.667976,-73.79814,"(40.667976, -73.79814)",135 AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444000,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,18:00,BROOKLYN,11210,40.63158,-73.94755,"(40.63158, -73.94755)",NOSTRAND AVENUE,AVENUE H,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443561,Sedan,,,, +08/01/2021,2:58,QUEENS,11372,40.75081,-73.89398,"(40.75081, -73.89398)",72 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443925,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,21:00,,,40.822872,-73.886986,"(40.822872, -73.886986)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4443489,Motorcycle,,,, +08/03/2021,22:30,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4443800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,10:07,,,40.840878,-73.90477,"(40.840878, -73.90477)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443896,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,19:20,BROOKLYN,11217,40.67904,-73.98311,"(40.67904, -73.98311)",,,611 DE GRAW STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4443520,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/03/2021,0:00,QUEENS,11377,40.735146,-73.89903,"(40.735146, -73.89903)",MAURICE AVENUE,66 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4443666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/03/2021,8:58,,,,,,Lafayette Avenue,Cross Bronx expwy,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443305,Sedan,Sedan,,, +08/03/2021,21:30,BROOKLYN,11226,40.63836,-73.96098,"(40.63836, -73.96098)",DITMAS AVENUE,EAST 18 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4443570,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,14:18,BROOKLYN,11235,40.58575,-73.95368,"(40.58575, -73.95368)",,,1513 VOORHIES AVENUE,1,0,0,0,0,0,1,0,Other Electronic Device,Unspecified,,,,4443421,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,13:39,QUEENS,11434,40.687824,-73.784065,"(40.687824, -73.784065)",MARSDEN STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4443485,Sedan,Sedan,,, +08/03/2021,15:38,,,40.77812,-73.800606,"(40.77812, -73.800606)",163 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4443569,Sedan,,,, +08/03/2021,17:30,,,40.71242,-73.82932,"(40.71242, -73.82932)",KEW GARDEN ROAD,82 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4443943,Sedan,Sedan,,, +08/03/2021,12:40,QUEENS,11414,40.662247,-73.84262,"(40.662247, -73.84262)",157 AVENUE,91 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443535,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,22:11,QUEENS,11385,40.70703,-73.909325,"(40.70703, -73.909325)",WOODWARD AVENUE,BLEECKER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443961,E-Bike,Sedan,,, +08/03/2021,2:25,QUEENS,11372,40.75004,-73.88152,"(40.75004, -73.88152)",85 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443130,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,9:40,,,,,,ARTHUR KILL ROAD,VETERANS ROAD WEST,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444016,Sedan,Trailer,,, +08/01/2021,18:20,BRONX,10451,40.826397,-73.92116,"(40.826397, -73.92116)",EAST 161 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443884,Sedan,Sedan,,, +08/01/2021,0:00,BROOKLYN,11213,40.668587,-73.92708,"(40.668587, -73.92708)",,,1245 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444120,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,22:51,STATEN ISLAND,10304,40.621143,-74.08561,"(40.621143, -74.08561)",VANDUZER STREET,YOUNG STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444098,Sedan,Sedan,,, +08/03/2021,21:00,QUEENS,11372,40.748035,-73.88,"(40.748035, -73.88)",,,86-10 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443647,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,14:00,QUEENS,11434,40.668907,-73.76988,"(40.668907, -73.76988)",170 STREET,144 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4443378,Sedan,Sedan,,, +08/03/2021,8:41,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443384,Sedan,Sedan,,, +08/03/2021,11:30,BROOKLYN,11237,40.703114,-73.921585,"(40.703114, -73.921585)",HART STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443602,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,0:00,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444013,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,10:00,,,40.82304,-73.88193,"(40.82304, -73.88193)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443438,Sedan,,,, +08/03/2021,19:34,,,40.74017,-73.97615,"(40.74017, -73.97615)",EAST 28 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443638,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,8:00,MANHATTAN,10031,40.818188,-73.95036,"(40.818188, -73.95036)",,,443 WEST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444041,Sedan,,,, +08/03/2021,12:38,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443474,Sedan,,,, +08/03/2021,12:45,,,40.692463,-73.81082,"(40.692463, -73.81082)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443708,Sedan,Sedan,,, +08/03/2021,8:15,BROOKLYN,11219,40.641247,-73.99337,"(40.641247, -73.99337)",43 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443321,Station Wagon/Sport Utility Vehicle,Van,,, +08/03/2021,21:40,BRONX,10461,40.83527,-73.832245,"(40.83527, -73.832245)",EAST TREMONT AVENUE,PURITAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4443603,,,,, +08/03/2021,2:15,QUEENS,11435,40.694546,-73.80212,"(40.694546, -73.80212)",SUTPHIN BOULEVARD,SOUTH ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443694,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/03/2021,12:39,QUEENS,11379,40.72165,-73.886444,"(40.72165, -73.886444)",ELIOT AVENUE,72 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443779,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,8:40,,,40.725243,-73.933914,"(40.725243, -73.933914)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443342,Sedan,Sedan,,, +08/03/2021,15:50,,,40.67765,-73.949776,"(40.67765, -73.949776)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443435,Sedan,Sedan,,, +08/02/2021,12:10,BRONX,10466,40.89487,-73.85657,"(40.89487, -73.85657)",EAST 235 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444057,Sedan,Sedan,,, +08/03/2021,7:50,BROOKLYN,11234,40.633095,-73.93131,"(40.633095, -73.93131)",,,1585 SCHENECTADY AVENUE,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4444085,Sedan,Sedan,,, +08/03/2021,18:36,,,40.63073,-74.01734,"(40.63073, -74.01734)",7 AVENUE,OVINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,8:00,,,40.622894,-73.96002,"(40.622894, -73.96002)",AVENUE K,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443554,Sedan,,,, +08/03/2021,17:33,QUEENS,11372,40.753746,-73.87326,"(40.753746, -73.87326)",,,94-16 34 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444045,Dump,Sedan,,, +08/02/2021,11:35,BRONX,10457,40.846264,-73.89146,"(40.846264, -73.89146)",,,1974 BELMONT AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,Other Vehicular,,,4443881,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/03/2021,23:07,QUEENS,11434,40.68199,-73.788414,"(40.68199, -73.788414)",FOCH BOULEVARD,155 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444006,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,10:45,,,,,,14 AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4497038,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/03/2021,1:55,QUEENS,11427,40.73274,-73.74521,"(40.73274, -73.74521)",,,228-18 STRONGHURST AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4443368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +08/03/2021,19:45,,,,,,SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443481,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,7:40,BRONX,10472,40.82993,-73.86592,"(40.82993, -73.86592)",GLEASON AVENUE,BEACH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443302,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/03/2021,8:55,MANHATTAN,10027,40.819553,-73.95919,"(40.819553, -73.95919)",,,2321 12 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443459,Sedan,Bike,,, +08/02/2021,13:29,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444122,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,15:30,MANHATTAN,10019,40.76428,-73.9921,"(40.76428, -73.9921)",,,725 10 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4443594,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,13:50,,,40.825165,-73.86699,"(40.825165, -73.86699)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443442,Sedan,,,, +08/01/2021,20:01,,,40.872128,-73.88248,"(40.872128, -73.88248)",EAST MOSHOLU PARKWAY SOUTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443941,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,2:14,BRONX,10459,40.820625,-73.8903,"(40.820625, -73.8903)",,,985 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4443718,Van,,,, +08/03/2021,17:00,QUEENS,11377,40.746143,-73.89812,"(40.746143, -73.89812)",ROOSEVELT AVENUE,67 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443506,Bike,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,12:58,MANHATTAN,10037,40.816025,-73.93947,"(40.816025, -73.93947)",WEST 138 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4443632,Taxi,,,, +08/03/2021,13:57,QUEENS,11377,40.73698,-73.89417,"(40.73698, -73.89417)",70 STREET,GARFIELD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443759,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,17:30,MANHATTAN,10036,40.7591,-73.99214,"(40.7591, -73.99214)",WEST 43 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443662,Sedan,Sedan,,, +08/03/2021,15:00,,,,,,,,211 UNION AVNUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443545,Station Wagon/Sport Utility Vehicle,,,, +07/12/2021,19:05,BROOKLYN,11234,40.628803,-73.92793,"(40.628803, -73.92793)",,,1791 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443917,Sedan,,,, +08/01/2021,20:50,STATEN ISLAND,10309,40.52418,-74.2348,"(40.52418, -74.2348)",PAGE AVENUE,SOUTH BRIDGE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4444028,Sedan,,,, +08/03/2021,16:12,BROOKLYN,11217,40.68733,-73.98183,"(40.68733, -73.98183)",NEVINS STREET,SCHERMERHORN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443497,Bike,,,, +08/02/2021,22:36,BRONX,10463,40.87384,-73.90892,"(40.87384, -73.90892)",,,40 WEST 225 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4443933,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck +08/03/2021,17:24,,,40.68091,-73.78106,"(40.68091, -73.78106)",BREWER BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443488,Sedan,Sedan,,, +08/03/2021,6:55,MANHATTAN,10029,40.791084,-73.953445,"(40.791084, -73.953445)",EAST 101 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4443273,E-Scooter,,,, +07/19/2021,0:30,QUEENS,11385,40.708244,-73.910484,"(40.708244, -73.910484)",,,1923 HARMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443962,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/28/2021,3:30,BROOKLYN,11211,40.71142,-73.95313,"(40.71142, -73.95313)",KEAP STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444129,Sedan,,,, +08/03/2021,13:50,BROOKLYN,11221,40.68883,-73.940834,"(40.68883, -73.940834)",,,494 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4443411,Sedan,Sedan,Sedan,Sedan, +08/03/2021,23:34,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",5 AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443522,Sedan,E-Scooter,,, +07/30/2021,17:50,,,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444112,Bike,Sedan,,, +07/21/2021,11:41,BRONX,10471,40.899,-73.89832,"(40.899, -73.89832)",,,5254 POST ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444023,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,22:30,,,,,,MAJOR DEEGAN EXPRESSWAY,WEST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443889,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,9:55,,,,,,MORRIS AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443532,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,15:00,QUEENS,11104,40.743374,-73.92056,"(40.743374, -73.92056)",QUEENS BOULEVARD,44 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444145,Sedan,Sedan,,, +08/03/2021,18:40,BROOKLYN,11239,40.64816,-73.88212,"(40.64816, -73.88212)",,,1346 PENNSYLVANIA AVENUE,6,0,4,0,0,0,2,0,Driver Inattention/Distraction,,,,,4443586,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,17:06,BRONX,10462,40.84652,-73.86281,"(40.84652, -73.86281)",,,1817 BARNES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443905,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,21:05,QUEENS,11691,40.59615,-73.761314,"(40.59615, -73.761314)",SEAGIRT BOULEVARD,BEACH 28 STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4443515,Sedan,Sedan,Pick-up Truck,, +08/03/2021,19:10,BROOKLYN,11236,40.63849,-73.894936,"(40.63849, -73.894936)",,,1764 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4443476,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,23:30,,,40.882046,-73.86863,"(40.882046, -73.86863)",BRONX RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4443949,Sedan,Sedan,,, +07/12/2021,6:20,BRONX,10474,40.812817,-73.89198,"(40.812817, -73.89198)",WORTHEN STREET,TRUXTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443979,Pick-up Truck,Box Truck,,, +08/03/2021,18:27,MANHATTAN,10035,40.79778,-73.93412,"(40.79778, -73.93412)",,,2319 1 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443616,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,10:22,BROOKLYN,11212,40.664185,-73.92205,"(40.664185, -73.92205)",,,112 EAST 98 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4443866,Sedan,,,, +08/03/2021,13:20,BRONX,10454,40.809696,-73.91564,"(40.809696, -73.91564)",EAST 142 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443538,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,14:04,BRONX,10475,40.870907,-73.827385,"(40.870907, -73.827385)",,,140 ASCH LOOP,0,0,0,0,0,0,0,0,,,,,,4444165,Sedan,,,, +08/03/2021,22:40,QUEENS,11413,40.67976,-73.73741,"(40.67976, -73.73741)",,,130-40 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/21/2021,0:30,,,40.815113,-73.95501,"(40.815113, -73.95501)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444040,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/16/2021,16:31,BROOKLYN,11207,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,HALSEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443923,Sedan,Motorcycle,,, +07/29/2021,21:03,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444115,Sedan,Sedan,,, +08/03/2021,23:40,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443581,Tractor Truck Diesel,Sedan,,, +08/02/2021,23:30,STATEN ISLAND,10301,40.615623,-74.105354,"(40.615623, -74.105354)",VICTORY BOULEVARD,ONTARIO AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4444101,Sedan,,,, +08/02/2021,16:19,BRONX,10468,40.867035,-73.896324,"(40.867035, -73.896324)",MORRIS AVENUE,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443928,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/03/2021,0:25,QUEENS,11355,40.746887,-73.8347,"(40.746887, -73.8347)",COLLEGE POINT BOULEVARD,57 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443138,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,12:30,,,40.534798,-74.23591,"(40.534798, -74.23591)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4444017,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/29/2021,10:00,,,40.735413,-73.91835,"(40.735413, -73.91835)",LAUREL HILL BOULEVARD,48 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4443951,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,20:10,,,40.68777,-73.98701,"(40.68777, -73.98701)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4443494,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,14:38,BRONX,10472,40.83183,-73.86649,"(40.83183, -73.86649)",,,1798 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4443649,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,12:30,QUEENS,11422,40.65869,-73.72782,"(40.65869, -73.72782)",,,145-36 FRANKTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443386,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,14:07,BROOKLYN,11203,40.64195,-73.932274,"(40.64195, -73.932274)",AVENUE D,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443641,Sedan,Bike,,, +08/02/2021,10:00,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443996,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,19:00,MANHATTAN,10013,40.71392,-73.998726,"(40.71392, -73.998726)",,,5 MOTT STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,20:14,BROOKLYN,11211,40.705128,-73.95982,"(40.705128, -73.95982)",,,180 RODNEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443543,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,15:15,QUEENS,11356,40.78463,-73.83634,"(40.78463, -73.83634)",132 STREET,15 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4443560,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,11:03,MANHATTAN,10027,40.809868,-73.94255,"(40.809868, -73.94255)",,,43 WEST 129 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443858,Sedan,,,, +08/03/2021,19:00,MANHATTAN,10019,40.766712,-73.98289,"(40.766712, -73.98289)",WEST 57 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443596,Sedan,E-Scooter,,, +08/03/2021,10:40,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443441,Tractor Truck Gasoline,,,, +08/03/2021,21:45,QUEENS,11411,40.6873,-73.7331,"(40.6873, -73.7331)",120 AVENUE,231 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4443473,Sedan,,,, +08/03/2021,13:07,,,40.727192,-73.89328,"(40.727192, -73.89328)",69 LANE,GRAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,2:15,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443330,Box Truck,Sedan,,, +07/28/2021,17:00,BROOKLYN,11238,40.68187,-73.96348,"(40.68187, -73.96348)",LEFFERTS PLACE,SAINT JAMES PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444046,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,23:05,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443607,Sedan,Sedan,,, +08/03/2021,5:30,BROOKLYN,11215,40.668976,-73.98415,"(40.668976, -73.98415)",,,334 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443519,Sedan,,,, +07/29/2021,17:25,MANHATTAN,10075,40.773018,-73.952194,"(40.773018, -73.952194)",1 AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4444161,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,5:15,QUEENS,11434,40.681778,-73.78156,"(40.681778, -73.78156)",119 ROAD,BREWER BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4444011,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/03/2021,8:00,,,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4444119,Box Truck,Flat Bed,,, +08/03/2021,1:00,QUEENS,11377,40.74054,-73.89208,"(40.74054, -73.89208)",,,72-02 45 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443445,Taxi,,,, +08/03/2021,18:45,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443477,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,18:50,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443867,Sedan,,,, +08/03/2021,22:11,MANHATTAN,10014,40.732853,-74.00753,"(40.732853, -74.00753)",CHRISTOPHER STREET,GREENWICH STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443698,Bike,Bike,,, +08/03/2021,10:13,BROOKLYN,11220,40.64018,-74.00112,"(40.64018, -74.00112)",,,4922 9 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443725,Sedan,Sedan,Sedan,, +07/30/2021,12:50,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444167,Sedan,Sedan,,, +08/03/2021,7:00,QUEENS,11412,40.688957,-73.76205,"(40.688957, -73.76205)",FARMERS BOULEVARD,118 ROAD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4443320,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +08/03/2021,0:00,BRONX,10460,,,,EAST 174 STREET,BOONE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443567,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/03/2021,12:36,QUEENS,11413,40.678226,-73.75236,"(40.678226, -73.75236)",218 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443377,Sedan,,,, +08/03/2021,20:33,,,40.803143,-73.97256,"(40.803143, -73.97256)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443615,Sedan,Sedan,,, +08/03/2021,7:50,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4443291,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,21:30,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443482,Sedan,,,, +08/03/2021,9:40,,,,,,,,90 WEST DRIVE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443687,E-Scooter,,,, +08/03/2021,15:30,BROOKLYN,11211,40.7042,-73.95825,"(40.7042, -73.95825)",HOOPER STREET,LEE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4444123,Motorscooter,,,, +08/03/2021,11:00,,,40.57343,-73.99175,"(40.57343, -73.99175)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,14:12,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443434,Van,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,16:00,MANHATTAN,10030,40.819046,-73.944695,"(40.819046, -73.944695)",WEST 139 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443978,Sedan,,,, +08/03/2021,8:30,BROOKLYN,11210,40.628162,-73.94137,"(40.628162, -73.94137)",,,1844 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443934,Sedan,Sedan,,, +08/03/2021,17:08,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4443523,Sedan,Sedan,,, +08/03/2021,21:49,QUEENS,11101,40.737537,-73.929955,"(40.737537, -73.929955)",HUNTERS POINT AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443507,Tow Truck / Wrecker,Sedan,,, +07/30/2021,0:00,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4443879,Sedan,,,, +08/03/2021,6:45,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,AVENUE C,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443916,Station Wagon/Sport Utility Vehicle,Bike,,, +08/03/2021,12:45,,,40.691208,-73.813545,"(40.691208, -73.813545)",133 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443534,Sedan,E-Bike,,, +08/03/2021,13:30,BROOKLYN,11211,40.709946,-73.953026,"(40.709946, -73.953026)",,,366 SOUTH 2 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444132,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,6:25,,,40.88455,-73.832344,"(40.88455, -73.832344)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443416,Sedan,Sedan,,, +07/30/2021,23:03,BROOKLYN,11213,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,ALBANY AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4444113,Sedan,,,, +08/03/2021,5:00,BRONX,10458,40.875237,-73.885185,"(40.875237, -73.885185)",,,178 EAST 205 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443352,Sedan,,,, +08/03/2021,14:40,QUEENS,11434,40.688362,-73.77663,"(40.688362, -73.77663)",MERRICK BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444004,Sedan,Sedan,,, +08/03/2021,16:50,MANHATTAN,10010,40.738693,-73.98281,"(40.738693, -73.98281)",,,201 EAST 23 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443628,Station Wagon/Sport Utility Vehicle,Bus,,, +08/03/2021,19:05,BROOKLYN,11210,40.629734,-73.940544,"(40.629734, -73.940544)",EAST 37 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443755,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,16:45,MANHATTAN,10027,40.82,-73.95887,"(40.82, -73.95887)",12 AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4443461,Sedan,Taxi,,, +08/03/2021,23:39,BROOKLYN,11209,40.631504,-74.024796,"(40.631504, -74.024796)",74 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443548,Sedan,Sedan,,, +08/03/2021,21:14,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,17:00,BROOKLYN,11208,40.663914,-73.86716,"(40.663914, -73.86716)",WORTMAN AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443585,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,1:00,BROOKLYN,11211,40.716248,-73.949,"(40.716248, -73.949)",,,63 JACKSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443343,Sedan,,,, +08/03/2021,5:45,QUEENS,11418,40.701405,-73.82392,"(40.701405, -73.82392)",JAMAICA AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4443287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,16:50,QUEENS,11412,40.694294,-73.74868,"(40.694294, -73.74868)",118 AVENUE,203 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4443487,Sedan,Sedan,,, +01/05/2022,4:00,BRONX,10463,40.87802,-73.90646,"(40.87802, -73.90646)",,,226 KIMBERLY PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497504,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,15:12,,,40.612854,-73.96001,"(40.612854, -73.96001)",AVENUE O,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443555,Taxi,Van,,, +08/03/2021,19:31,QUEENS,11378,40.733307,-73.88998,"(40.733307, -73.88998)",,,73-07 52 ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4443466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,18:40,BRONX,10463,40.8722,-73.90501,"(40.8722, -73.90501)",,,2775 HEATH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443940,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,13:00,BROOKLYN,11234,40.599163,-73.91084,"(40.599163, -73.91084)",,,2900 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443968,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,17:00,BRONX,10457,40.8477,-73.90097,"(40.8477, -73.90097)",WEBSTER AVENUE,EAST TREMONT AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4443888,Moped,Sedan,,, +07/31/2021,13:45,,,40.547832,-74.220375,"(40.547832, -74.220375)",BLOOMINGDALE ROAD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444025,Pick-up Truck,Pick-up Truck,,, +08/03/2021,18:33,BROOKLYN,11217,40.685524,-73.98125,"(40.685524, -73.98125)",,,510 ATLANTIC AVENUE,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4443498,Station Wagon/Sport Utility Vehicle,Bike,,, +08/01/2021,3:00,QUEENS,11370,40.758156,-73.89627,"(40.758156, -73.89627)",71 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,6:36,,,40.78318,-73.94362,"(40.78318, -73.94362)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4444061,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/03/2021,6:15,QUEENS,11412,40.69385,-73.76643,"(40.69385, -73.76643)",TIOGA DRIVE,DUNKIRK STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443608,Sedan,,,, +08/03/2021,19:00,STATEN ISLAND,10304,40.633953,-74.085754,"(40.633953, -74.085754)",CEBRA AVENUE,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4444102,Sedan,Sedan,Sedan,, +08/03/2021,18:00,BROOKLYN,11238,40.679375,-73.96408,"(40.679375, -73.96408)",WASHINGTON AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444124,Sedan,Sedan,,, +08/03/2021,15:09,MANHATTAN,10022,40.757698,-73.9694,"(40.757698, -73.9694)",EAST 53 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443404,Taxi,Sedan,,, +08/03/2021,8:03,,,40.58038,-73.967606,"(40.58038, -73.967606)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4443651,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/23/2021,0:30,QUEENS,11433,40.69142,-73.7875,"(40.69142, -73.7875)",BREWER BOULEVARD,CLAUDE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4444010,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/03/2021,9:00,,,40.692482,-73.9203,"(40.692482, -73.9203)",LINDEN STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443598,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,10:00,QUEENS,11413,40.67337,-73.75619,"(40.67337, -73.75619)",SPRINGFIELD BOULEVARD,139 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443376,Sedan,Sedan,,, +08/03/2021,8:00,MANHATTAN,10282,40.717743,-74.01409,"(40.717743, -74.01409)",,,345 CHAMBERS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443446,Bus,,,, +08/03/2021,0:00,MANHATTAN,10030,40.821262,-73.94608,"(40.821262, -73.94608)",WEST 141 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Turning Improperly,,,,4443776,Bike,Sedan,,, +08/03/2021,21:23,,,40.82255,-73.88573,"(40.82255, -73.88573)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4443726,Sedan,Sedan,Sedan,, +08/03/2021,12:09,,,40.651268,-73.97181,"(40.651268, -73.97181)",PARK CIRCLE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443332,Pick-up Truck,Sedan,,, +07/31/2021,0:00,STATEN ISLAND,10312,40.541275,-74.19056,"(40.541275, -74.19056)",RATHBUN AVENUE,DELMAR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444026,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,21:56,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444114,Sedan,Multi-Wheeled Vehicle,,, +07/15/2021,20:17,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",LAFAYETTE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443893,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/02/2021,8:25,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444160,Sedan,Sedan,,, +08/03/2021,9:36,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4443537,Van,Sedan,,, +08/03/2021,17:34,,,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443945,Sedan,,,, +07/08/2021,0:00,MANHATTAN,10031,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,WEST 135 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4443958,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,5:04,MANHATTAN,10022,40.762287,-73.972374,"(40.762287, -73.972374)",EAST 57 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443156,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,8:03,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444088,Bus,Bus,,, +08/03/2021,14:00,BRONX,10456,40.833004,-73.89803,"(40.833004, -73.89803)",,,1382 CROTONA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443566,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,12:50,BROOKLYN,11208,40.67487,-73.88098,"(40.67487, -73.88098)",,,393 SHEPHERD AVENUE,1,0,1,0,0,0,0,0,,,,,,4443582,,,,, +09/28/2021,18:00,BROOKLYN,11238,40.6805377,-73.9701714,"(40.6805377, -73.9701714)",,,594 DEAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4469102,Box Truck,,,, +08/03/2021,17:00,STATEN ISLAND,10309,40.5426,-74.208336,"(40.5426, -74.208336)",,,655 ROSSVILLE AVENUE,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4444020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,20:11,BROOKLYN,11217,40.68671,-73.979065,"(40.68671, -73.979065)",ROCKWELL PLACE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443492,Sedan,,,, +08/03/2021,14:30,BRONX,10465,40.831,-73.82652,"(40.831, -73.82652)",EAST TREMONT AVENUE,BARKLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4443860,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/03/2021,14:00,BROOKLYN,11215,40.674686,-73.97601,"(40.674686, -73.97601)",,,849A UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443518,Van,,,, +04/12/2022,8:55,,,40.809494,-73.935814,"(40.809494, -73.935814)",PARK AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4518366,Station Wagon/Sport Utility Vehicle,,,, +07/15/2021,14:00,BROOKLYN,11237,40.709393,-73.9219,"(40.709393, -73.9219)",FLUSHING AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444168,Sedan,Sedan,,, +08/03/2021,16:54,BRONX,10457,40.83648,-73.897736,"(40.83648, -73.897736)",CLAREMONT PARKWAY,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443574,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,14:22,BRONX,10460,40.838524,-73.87009,"(40.838524, -73.87009)",,,1541 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443440,Sedan,Sedan,,, +08/03/2021,11:15,BROOKLYN,11235,40.586025,-73.95107,"(40.586025, -73.95107)",VOORHIES AVENUE,EAST 18 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,17:50,BROOKLYN,11226,40.64967,-73.95237,"(40.64967, -73.95237)",ROGERS AVENUE,ERASMUS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443643,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,0:05,,,40.796795,-73.94718,"(40.796795, -73.94718)",EAST 111 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4443868,Sedan,Sedan,,, +08/03/2021,19:59,BROOKLYN,11236,40.629707,-73.90822,"(40.629707, -73.90822)",PAERDEGAT 7 STREET,PAERDEGAT AVENUE NORTH,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443478,Pick-up Truck,Bike,,, +08/03/2021,18:25,,,40.666145,-73.759125,"(40.666145, -73.759125)",BELT PARKWAY,,,8,0,0,0,0,0,8,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4443471,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/03/2021,20:45,MANHATTAN,10013,40.72363,-74.01148,"(40.72363, -74.01148)",DESBROSSES STREET,WEST STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443700,Sedan,,,, +08/03/2021,17:30,QUEENS,11421,40.696587,-73.85285,"(40.696587, -73.85285)",,,85-08 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,20:10,BROOKLYN,11229,40.60739,-73.943214,"(40.60739, -73.943214)",NOSTRAND AVENUE,AVENUE R,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4443514,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/03/2021,9:00,BROOKLYN,11237,40.713997,-73.924126,"(40.713997, -73.924126)",,,1340 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443541,Sedan,,,, +08/01/2021,7:25,QUEENS,11423,40.714302,-73.76657,"(40.714302, -73.76657)",90 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443990,Sedan,Sedan,Sedan,, +07/24/2021,9:20,BRONX,10466,40.892567,-73.85275,"(40.892567, -73.85275)",,,1678 BUSSING AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443929,Sedan,,,, +08/01/2021,15:50,,,40.733685,-73.92396,"(40.733685, -73.92396)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444142,Sedan,,,, +08/03/2021,17:20,BROOKLYN,11210,40.63375,-73.950676,"(40.63375, -73.950676)",,,2708 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443559,Bus,Sedan,,, +08/03/2021,21:40,BROOKLYN,11201,40.6943,-73.99769,"(40.6943, -73.99769)",,,25 GRACE COURT,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443501,Motorbike,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,13:00,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444118,Sedan,Sedan,,, +08/03/2021,22:20,,,40.759018,-73.85349,"(40.759018, -73.85349)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4443909,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/03/2021,6:25,BROOKLYN,11234,40.61146,-73.92437,"(40.61146, -73.92437)",FLATBUSH AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4443922,Sedan,,,, +08/03/2021,12:40,BRONX,10469,40.873337,-73.84648,"(40.873337, -73.84648)",,,3250 FENTON AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4443935,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/03/2021,14:00,BROOKLYN,11211,40.715427,-73.93876,"(40.715427, -73.93876)",,,81 OLIVE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4443525,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/18/2021,14:45,QUEENS,11434,40.670982,-73.76997,"(40.670982, -73.76997)",,,170-01 140 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4497528,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,5:40,,,,,,,,242-10 GRAND CENTRAL PARKWAY,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4518261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/19/2022,14:23,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497586,Sedan,Sedan,,, +01/24/2022,19:25,BROOKLYN,11222,40.726833,-73.94942,"(40.726833, -73.94942)",,,126 MC GUINNESS BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4497074,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,10:15,,,40.7676217,-73.9499978,"(40.7676217, -73.9499978)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Following Too Closely,,,,4469109,Sedan,Sedan,,, +01/21/2022,3:52,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497639,Sedan,Sedan,,, +01/24/2022,14:39,BROOKLYN,11221,40.690235,-73.92215,"(40.690235, -73.92215)",,,839 QUINCY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497292,Sedan,FDNY ambul,,, +12/14/2021,8:31,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497690,Tractor Truck Diesel,Tractor Truck Diesel,,, +01/24/2022,12:07,BROOKLYN,11201,40.689342,-73.99866,"(40.689342, -73.99866)",,,391 HICKS STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497003,Box Truck,,,, +01/22/2022,4:37,MANHATTAN,10026,40.80403,-73.95658,"(40.80403, -73.95658)",,,308 WEST 115 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497397,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,13:30,MANHATTAN,10027,40.812008,-73.951515,"(40.812008, -73.951515)",SAINT NICHOLAS AVENUE,WEST 127 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4497562,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,10:50,,,40.688778,-73.786446,"(40.688778, -73.786446)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4497270,Sedan,,,, +01/24/2022,11:16,MANHATTAN,10011,40.738876,-73.99575,"(40.738876, -73.99575)",,,579 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496989,Station Wagon/Sport Utility Vehicle,Van,,, +01/24/2022,19:46,,,40.63195,-74.14667,"(40.63195, -74.14667)",MORNINGSTAR ROAD,HOOKER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497029,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/21/2022,12:20,BROOKLYN,11207,40.654266,-73.88281,"(40.654266, -73.88281)",,,12205 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,3:20,BRONX,10457,40.8514695,-73.8955651,"(40.8514695, -73.8955651)",EAST 180 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,22:20,BROOKLYN,11208,40.67374,-73.88341,"(40.67374, -73.88341)",PITKIN AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497429,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,6:38,BRONX,10458,40.860035,-73.89117,"(40.860035, -73.89117)",3 AVENUE,EAST 189 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4496957,Bus,,,, +12/22/2021,20:25,QUEENS,11436,40.67554,-73.79231,"(40.67554, -73.79231)",,,146-02 123 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497587,Sedan,,,, +01/18/2022,19:40,QUEENS,11103,40.75898,-73.91681,"(40.75898, -73.91681)",,,31-74 42 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4497706,Sedan,Sedan,,, +01/22/2022,19:30,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4497462,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,21:00,QUEENS,11421,40.689854,-73.86311,"(40.689854, -73.86311)",,,78-08 88 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497146,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,16:30,,,40.90122,-73.90322,"(40.90122, -73.90322)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497517,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,23:40,,,40.8854,-73.89723,"(40.8854, -73.89723)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4497522,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/11/2021,14:36,MANHATTAN,10011,40.7422847,-74.0044171,"(40.7422847, -74.0044171)",9 AVENUE,WEST 16 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469130,,,,, +01/22/2022,3:24,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4497468,Sedan,Sedan,,, +08/04/2021,0:05,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443504,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/24/2022,1:00,QUEENS,11373,40.73401,-73.866455,"(40.73401, -73.866455)",,,60-32 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496813,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/23/2022,13:00,QUEENS,11365,40.739296,-73.78505,"(40.739296, -73.78505)",,,188-02 64 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497659,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,16:23,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,,,,4497193,Station Wagon/Sport Utility Vehicle,Bus,,, +01/24/2022,12:00,,,40.839603,-73.918144,"(40.839603, -73.918144)",ELLIOT PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497225,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,8:50,BROOKLYN,11232,40.66874,-73.99668,"(40.66874, -73.99668)",2 AVENUE,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4497580,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,8:29,BROOKLYN,11233,,,,ROCKAWAY AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497068,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,17:50,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4497446,Sedan,Sedan,,, +01/24/2022,0:00,,,40.703545,-73.92234,"(40.703545, -73.92234)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497093,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +01/19/2022,17:05,BROOKLYN,11212,40.665348,-73.91157,"(40.665348, -73.91157)",BRISTOL STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497624,Bus,Sedan,,, +01/24/2022,6:25,BRONX,10452,40.838333,-73.91692,"(40.838333, -73.91692)",WALTON AVENUE,MARCY PLACE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4497214,Garbage or Refuse,Sedan,Sedan,, +01/24/2022,14:50,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4497025,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,6:50,BROOKLYN,11204,40.62731,-73.98539,"(40.62731, -73.98539)",53 STREET,17 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4496922,Sedan,Bike,,, +01/24/2022,13:20,BROOKLYN,11226,40.653576,-73.95946,"(40.653576, -73.95946)",LENOX ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497379,Tractor Truck Gasoline,Sedan,,, +01/24/2022,16:15,BROOKLYN,11208,40.67986,-73.87794,"(40.67986, -73.87794)",,,3180 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4497451,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,10:35,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497051,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,17:50,QUEENS,11354,40.76315,-73.81261,"(40.76315, -73.81261)",MURRAY STREET,41 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497042,Station Wagon/Sport Utility Vehicle,,,, +01/05/2022,5:48,STATEN ISLAND,10312,40.56345,-74.169754,"(40.56345, -74.169754)",DRUMGOOLE ROAD WEST,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4497423,Sedan,Sedan,,, +01/22/2022,17:58,QUEENS,11433,40.696392,-73.78328,"(40.696392, -73.78328)",,,109-52 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4497607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,23:05,QUEENS,11419,40.68854,-73.82294,"(40.68854, -73.82294)",103 AVENUE,121 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497087,Sedan,Pick-up Truck,,, +01/24/2022,15:00,BROOKLYN,11210,40.636776,-73.94615,"(40.636776, -73.94615)",,,585 EAST 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497153,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,22:48,,,40.74947,-73.85056,"(40.74947, -73.85056)",GRAND CENTRAL PKWY,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4497543,Sedan,,,, +01/23/2022,18:06,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497487,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,20:00,,,40.61068,-74.00669,"(40.61068, -74.00669)",16 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497179,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,17:28,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",CROSS ISLAND PARKWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497075,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +12/16/2021,5:00,BRONX,10454,40.803272,-73.918884,"(40.803272, -73.918884)",BRUCKNER BOULEVARD,SAINT ANNS PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497721,LOCOMOTIVE,Chassis Cab,,, +01/20/2022,9:15,BROOKLYN,11208,40.677296,-73.87682,"(40.677296, -73.87682)",LOGAN STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4497470,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,2:20,BROOKLYN,11207,40.660946,-73.880196,"(40.660946, -73.880196)",,,738 STANLEY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4497482,Sedan,Sedan,,, +01/22/2022,22:54,,,40.65768,-73.925415,"(40.65768, -73.925415)",CLARKSON AVENUE,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4497497,Sedan,Sedan,,, +01/24/2022,18:30,BRONX,10473,40.82256,-73.87101,"(40.82256, -73.87101)",METCALF AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497122,Sedan,Sedan,,, +10/20/2021,10:00,,,40.6667453,-73.7862704,"(40.6667453, -73.7862704)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469168,Sedan,Sedan,,, +10/20/2021,12:00,,,40.6664122,-73.8026258,"(40.6664122, -73.8026258)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469170,Sedan,Sedan,,, +02/11/2022,23:15,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4502206,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/16/2022,11:59,QUEENS,11106,40.759293,-73.92646,"(40.759293, -73.92646)",34 AVENUE,32 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4503726,Sedan,,,, +02/17/2022,3:00,BROOKLYN,11205,,,,BEDFORD AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4504122,Sedan,Sedan,,, +02/18/2022,21:10,QUEENS,11385,40.703712,-73.90677,"(40.703712, -73.90677)",ONDERDONK AVENUE,PALMETTO STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4505187,Station Wagon/Sport Utility Vehicle,Bike,,, +02/21/2022,4:48,QUEENS,11385,40.706028,-73.89559,"(40.706028, -73.89559)",,,67-07 62 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4505200,Sedan,Sedan,Sedan,Sedan, +12/26/2021,20:35,MANHATTAN,10031,40.823887,-73.95232,"(40.823887, -73.95232)",WEST 141 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4505201,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,17:55,,,40.82897,-73.9486,"(40.82897, -73.9486)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4505204,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,20:53,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",EAST TREMONT AVENUE,CLINTON AVENUE,,4,0,0,0,0,0,4,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4505193,PICKUP,Sedan,Station Wagon/Sport Utility Vehicle,, +02/18/2022,11:55,,,40.608253,-74.08879,"(40.608253, -74.08879)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4505194,Sedan,Sedan,,, +02/08/2022,8:10,QUEENS,11364,40.743168,-73.762474,"(40.743168, -73.762474)",67 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4505205,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,16:07,,,40.845837,-73.892006,"(40.845837, -73.892006)",EAST TREMONT AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4505192,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,11:08,MANHATTAN,10031,40.827774,-73.945755,"(40.827774, -73.945755)",AMSTERDAM AVENUE,WEST 149 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4505199,E-Bike,,,, +02/22/2022,18:00,MANHATTAN,10065,40.761856,-73.96343,"(40.761856, -73.96343)",EAST 61 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4505134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,8:46,,,40.7067,-73.95292,"(40.7067, -73.95292)",HEWES STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4504851,Station Wagon/Sport Utility Vehicle,Dump,,, +02/15/2022,20:30,BRONX,10466,40.895145,-73.83979,"(40.895145, -73.83979)",,,4167 MONTICELLO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4505231,Sedan,,,, +04/12/2022,18:30,,,40.853706,-73.871864,"(40.853706, -73.871864)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4518487,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/12/2022,19:00,BROOKLYN,11212,,,,New Lots Avenue,Mother Gaston Blvd,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519079,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,14:20,MANHATTAN,10029,40.7978,-73.9397,"(40.7978, -73.9397)",,,200 EAST 116 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518581,Sedan,Sedan,,, +04/12/2022,18:45,,,40.88622,-73.86711,"(40.88622, -73.86711)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518462,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/07/2022,18:00,BRONX,10469,40.88219,-73.85066,"(40.88219, -73.85066)",EAST 222 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518929,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,22:50,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518954,Sedan,Sedan,,, +04/07/2022,16:05,BROOKLYN,11221,40.692974,-73.91398,"(40.692974, -73.91398)",,,1279 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518866,Sedan,Box Truck,,, +04/08/2022,10:36,,,40.615185,-73.98367,"(40.615185, -73.98367)",65 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4519020,Sedan,Pick-up Truck,,, +04/12/2022,9:20,QUEENS,11366,40.722992,-73.80008,"(40.722992, -73.80008)",,,168-01 UNION TURNPIKE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4518504,Tanker,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,22:20,STATEN ISLAND,10305,40.59054,-74.076706,"(40.59054, -74.076706)",NORWAY AVENUE,OLYMPIA BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518880,Sedan,E-Scooter,,, +10/01/2021,12:50,BRONX,10467,40.8732603,-73.8692978,"(40.8732603, -73.8692978)",ROSEWOOD STREET,BARKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469197,Sedan,Sedan,,, +04/04/2022,10:00,BROOKLYN,11211,40.7145,-73.93046,"(40.7145, -73.93046)",,,1117 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519070,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,16:18,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518662,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,13:20,,,40.702564,-73.99175,"(40.702564, -73.99175)",FRONT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518398,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,4:45,BROOKLYN,11207,40.66798,-73.893845,"(40.66798, -73.893845)",BLAKE AVENUE,NEW JERSEY AVENUE,,1,0,1,0,0,0,0,0,,,,,,4518720,,,,, +04/08/2022,21:26,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4518992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,13:05,MANHATTAN,10012,40.728413,-73.99426,"(40.728413, -73.99426)",BROADWAY,EAST 4 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518646,Sedan,Bike,,, +04/12/2022,8:20,QUEENS,11385,,,,SUMMERFIELD STREET,FOREST AVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518380,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,18:30,BRONX,10472,40.82835,-73.86116,"(40.82835, -73.86116)",,,1890 WATSON AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518446,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,18:00,BROOKLYN,11225,40.66415,-73.947075,"(40.66415, -73.947075)",,,451 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518806,Sedan,Sedan,,, +04/12/2022,18:00,BROOKLYN,11223,40.60636,-73.97532,"(40.60636, -73.97532)",,,292 QUENTIN ROAD,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4518788,Sedan,Pick-up Truck,,, +04/12/2022,7:15,BRONX,10452,40.83533,-73.927,"(40.83533, -73.927)",WEST 166 STREET,NELSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518336,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,8:00,BRONX,10465,40.824577,-73.82318,"(40.824577, -73.82318)",,,2925 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4519024,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,17:27,MANHATTAN,10027,40.808163,-73.94519,"(40.808163, -73.94519)",,,310 LENOX AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4518871,Station Wagon/Sport Utility Vehicle,Bike,,, +04/12/2022,10:30,QUEENS,11368,40.739635,-73.86074,"(40.739635, -73.86074)",55 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518551,Taxi,,,, +04/10/2022,3:10,BROOKLYN,11220,40.636345,-74.01096,"(40.636345, -74.01096)",,,731 60 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4518938,Sedan,Sedan,Sedan,, +04/09/2022,3:26,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",7 AVENUE,WEST 23 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518945,,,,, +04/12/2022,4:45,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4518203,Sedan,,,, +10/19/2021,19:45,,,40.7549095,-73.7454788,"(40.7549095, -73.7454788)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469217,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,17:40,,,40.636024,-74.13477,"(40.636024, -74.13477)",CASTLETON AVENUE,PORT RICHMOND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519124,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/16/2021,21:00,,,40.7607137,-73.8582397,"(40.7607137, -73.8582397)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469220,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,23:05,,,40.693726,-73.84471,"(40.693726, -73.84471)",102 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4518592,Sedan,Sedan,,, +04/12/2022,9:30,,,40.701332,-73.92684,"(40.701332, -73.92684)",STARR STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518619,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,10:00,QUEENS,11436,40.673573,-73.79258,"(40.673573, -73.79258)",ROCKAWAY BOULEVARD,INWOOD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518999,Sedan,Sedan,,, +04/12/2022,13:50,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Passing or Lane Usage Improper,Unspecified,,,4518500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,5:25,,,40.7666377,-73.8890281,"(40.7666377, -73.8890281)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,19:09,,,40.8319864,-73.9351481,"(40.8319864, -73.9351481)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469227,Sedan,Sedan,,, +10/13/2021,18:11,,,40.8319864,-73.9351481,"(40.8319864, -73.9351481)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4469228,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,20:00,BROOKLYN,11218,40.63817,-73.976425,"(40.63817, -73.976425)",CORTELYOU ROAD,EAST 3 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518818,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,13:45,,,40.739032,-73.9733486,"(40.739032, -73.9733486)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469230,Bus,Sedan,,, +04/12/2022,13:50,BROOKLYN,11210,40.623863,-73.95117,"(40.623863, -73.95117)",AVENUE K,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4518522,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,19:30,BROOKLYN,11234,40.632965,-73.92643,"(40.632965, -73.92643)",EAST 52 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519057,Sedan,,,, +04/12/2022,10:26,BRONX,10456,40.831383,-73.906845,"(40.831383, -73.906845)",WASHINGTON AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518609,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,4:40,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518430,Sedan,,,, +04/12/2022,10:15,MANHATTAN,10002,40.717648,-73.98868,"(40.717648, -73.98868)",ESSEX STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518321,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/12/2022,10:30,,,40.829098,-73.836494,"(40.829098, -73.836494)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4518700,Tractor Truck Diesel,PK,,, +04/11/2022,16:13,BROOKLYN,11206,0,0,"(0.0, 0.0)",,,323 SCHOLES STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518856,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/12/2022,17:39,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4518478,Sedan,Sedan,,, +04/12/2022,22:10,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518466,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,14:30,,,40.688614,-73.989174,"(40.688614, -73.989174)",,,ATLANTIC AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Following Too Closely,,,,4518763,Van,Sedan,,, +04/12/2022,5:36,MANHATTAN,10017,40.7528,-73.979294,"(40.7528, -73.979294)",EAST 42 STREET,MADISON AVENUE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4518516,Taxi,E-Scooter,,, +04/12/2022,16:15,BRONX,10461,40.852947,-73.8421,"(40.852947, -73.8421)",,,1500 BASSETT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518558,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,10:25,,,40.67766,-73.968864,"(40.67766, -73.968864)",VANDERBILT AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518968,Pick-up Truck,Bike,,, +03/29/2022,11:40,,,40.696686,-73.9378,"(40.696686, -73.9378)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4518918,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/12/2022,16:28,MANHATTAN,10035,40.802494,-73.9409,"(40.802494, -73.9409)",EAST 121 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4518585,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/12/2022,22:34,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",DITMAS AVENUE,OCEAN PARKWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518505,Sedan,Bike,,, +04/12/2022,14:30,,,,,,69 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518884,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:00,MANHATTAN,10014,40.728924,-74.00344,"(40.728924, -74.00344)",,,3 BEDFORD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518902,Sedan,,,, +04/10/2022,10:50,MANHATTAN,10016,40.7429,-73.98309,"(40.7429, -73.98309)",,,118 EAST 28 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4518923,Taxi,,,, +04/12/2022,14:34,,,40.82265,-73.95131,"(40.82265, -73.95131)",HAMILTON PLACE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518535,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,16:40,,,40.7549095,-73.7454788,"(40.7549095, -73.7454788)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469256,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,2:36,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4443876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:20,BROOKLYN,11208,40.6731932,-73.868355,"(40.6731932, -73.868355)",,,1340 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469236,Sedan,,,, +10/20/2021,15:50,,,40.7299328,-73.9120763,"(40.7299328, -73.9120763)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/14/2021,2:30,,,40.6753333,-73.9360776,"(40.6753333, -73.9360776)",TROY AVENUE,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4469280,Sedan,Sedan,,, +01/25/2022,4:25,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4497324,Box Truck,,,, +02/18/2022,17:25,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4504940,Sedan,Sedan,,, +01/23/2022,1:13,BROOKLYN,11215,40.668617,-73.98515,"(40.668617, -73.98515)",,,341 9 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4505171,Tractor Truck Diesel,Sedan,,, +02/21/2022,0:49,,,40.587784,-74.165565,"(40.587784, -74.165565)",,,77 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504305,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,13:30,BRONX,10455,40.819736,-73.91339,"(40.819736, -73.91339)",,,3027 3 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504664,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,18:49,,,,,,East 182 street,Davidson Avenue,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4505012,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,11:53,,,,,,140-158 32nd St,4 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4504757,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/19/2022,12:29,QUEENS,11373,40.72993,-73.87157,"(40.72993, -73.87157)",,,60-76 WOODHAVEN BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4505145,Sedan,Sedan,,, +02/21/2022,9:20,BROOKLYN,11209,40.62597,-74.02815,"(40.62597, -74.02815)",,,369 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504464,Sedan,,,, +02/21/2022,14:44,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,4,0,0,0,0,0,4,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4504797,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,13:00,QUEENS,11372,40.750538,-73.893005,"(40.750538, -73.893005)",,,35-48 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4505072,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,8:48,BRONX,10454,40.811394,-73.916046,"(40.811394, -73.916046)",,,483 EAST 144 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504477,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,11:45,BROOKLYN,11220,40.642765,-74.01857,"(40.642765, -74.01857)",,,314 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504596,Sedan,,,, +02/17/2022,15:30,,,,,,HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,14:30,MANHATTAN,10001,40.755116,-74.00248,"(40.755116, -74.00248)",WEST 33 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504976,Sedan,Sedan,,, +02/18/2022,0:00,QUEENS,11372,40.75444,-73.8724,"(40.75444, -73.8724)",,,34-20 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505018,Sedan,Sedan,,, +02/21/2022,13:58,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504553,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,9:00,BROOKLYN,11207,40.664406,-73.893974,"(40.664406, -73.893974)",,,518 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504590,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,11:45,,,40.700592,-73.85457,"(40.700592, -73.85457)",FOREST PARK DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4504488,Sedan,,,, +02/21/2022,11:40,QUEENS,11434,40.66487,-73.77235,"(40.66487, -73.77235)",145 AVENUE,176 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504749,Sedan,,,, +02/21/2022,16:20,MANHATTAN,10065,40.76631,-73.96313,"(40.76631, -73.96313)",,,1142 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504861,Sedan,Bike,,, +02/16/2022,23:57,BROOKLYN,11236,40.647114,-73.89092,"(40.647114, -73.89092)",,,10718 AVENUE J,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505058,Station Wagon/Sport Utility Vehicle,,,, +02/17/2022,20:00,,,40.58893,-73.78934,"(40.58893, -73.78934)",BEACH 60 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504984,Sedan,,,, +02/17/2022,21:30,,,40.674736,-73.925,"(40.674736, -73.925)",BERGEN STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4505042,Taxi,,,, +02/21/2022,11:16,QUEENS,11418,40.694416,-73.83599,"(40.694416, -73.83599)",111 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4504505,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +02/21/2022,0:00,BROOKLYN,11208,40.65985,-73.876495,"(40.65985, -73.876495)",,,961 ELTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504572,Sedan,,,, +02/21/2022,14:44,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504680,Sedan,Sedan,,, +10/20/2021,22:16,,,40.7425908,-73.7297411,"(40.7425908, -73.7297411)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4469288,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/20/2021,22:30,,,40.7418076,-73.728142,"(40.7418076, -73.728142)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469291,Sedan,Sedan,,, +10/20/2021,14:07,,,40.5861249,-73.9360349,"(40.5861249, -73.9360349)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,16:20,,,40.6649675,-73.8222497,"(40.6649675, -73.8222497)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469310,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,19:12,,,40.656807,-73.8575739,"(40.656807, -73.8575739)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4469312,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,, +01/25/2022,15:14,,,,,,WILLIS AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497359,Sedan,Sedan,,, +10/20/2021,5:40,,,40.7461426,-73.8360431,"(40.7461426, -73.8360431)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469320,Sedan,,,, +10/20/2021,6:30,,,40.7582758,-73.838984,"(40.7582758, -73.838984)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469324,Sedan,Sedan,Sedan,, +10/20/2021,20:00,,,40.7461426,-73.8360431,"(40.7461426, -73.8360431)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4469327,Sedan,Sedan,,, +10/15/2021,13:00,,,40.7384228,-73.8489879,"(40.7384228, -73.8489879)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4469332,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/09/2021,6:55,,,40.7504066,-73.8351267,"(40.7504066, -73.8351267)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469334,4 dr sedan,Sedan,,, +02/21/2022,10:00,,,40.69663,-73.91857,"(40.69663, -73.91857)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504974,Sedan,,,, +10/17/2021,16:29,,,40.5850344,-73.9582674,"(40.5850344, -73.9582674)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469348,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,4:50,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4505163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,7:55,,,40.6999379,-73.9618813,"(40.6999379, -73.9618813)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,9:50,MANHATTAN,10019,40.7669166,-73.9899275,"(40.7669166, -73.9899275)",,,800 10 AVENUE,1,0,1,0,0,0,0,0,,,,,,4469328,,,,, +02/21/2022,7:34,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4504598,Sedan,,,, +02/21/2022,8:00,BROOKLYN,11209,40.617924,-74.02665,"(40.617924, -74.02665)",,,9031 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4504532,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,19:15,QUEENS,11434,40.67897,-73.75985,"(40.67897, -73.75985)",MERRICK BOULEVARD,BELKNAP STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4505142,Sedan,,,, +02/19/2022,11:24,BRONX,10452,40.83852,-73.92619,"(40.83852, -73.92619)",OGDEN AVENUE,WEST 168 STREET,,1,0,0,0,0,0,1,0,Illnes,,,,,4505003,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,19:50,QUEENS,11434,40.657875,-73.77051,"(40.657875, -73.77051)",ROCKAWAY BOULEVARD,175 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4505113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,16:36,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",SOUTHERN BOULEVARD,EAST 180 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4504744,Sedan,,,, +02/21/2022,14:00,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Passing Too Closely,,,,4504798,Tractor Truck Diesel,Sedan,,, +02/21/2022,11:30,BROOKLYN,11229,40.599415,-73.95105,"(40.599415, -73.95105)",,,2022 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,,,,,4504651,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,1:55,MANHATTAN,10026,40.80132,-73.95763,"(40.80132, -73.95763)",,,2050 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504605,Sedan,Taxi,,, +01/16/2022,19:40,QUEENS,11367,0,0,"(0.0, 0.0)",,,75-25 153 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4505155,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/10/2022,17:00,STATEN ISLAND,10308,40.55933,-74.162224,"(40.55933, -74.162224)",ARMSTRONG AVENUE,EAST BRANDIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504934,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,19:33,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",WESTCHESTER AVENUE,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4504665,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,18:17,BRONX,10472,40.8332,-73.87343,"(40.8332, -73.87343)",,,1352 METCALF AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504935,Sedan,,,, +02/21/2022,14:04,,,40.608593,-74.00486,"(40.608593, -74.00486)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,0:55,QUEENS,11434,40.673008,-73.78809,"(40.673008, -73.78809)",150 STREET,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4504314,Sedan,Sedan,,, +02/17/2022,8:20,,,40.760494,-73.8614,"(40.760494, -73.8614)",ASTORIA BOULEVARD,108 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4505077,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,13:41,BROOKLYN,11215,40.673485,-73.97614,"(40.673485, -73.97614)",,,122 7 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4505170,Sedan,,,, +02/21/2022,3:10,,,40.824085,-73.874344,"(40.824085, -73.874344)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504465,Sedan,,,, +10/20/2021,1:20,QUEENS,11354,40.7728109,-73.848912,"(40.7728109, -73.848912)",,,28-14 119 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,21:42,,,40.7080495,-73.8450242,"(40.7080495, -73.8450242)",JACKIE ROBINSON PKWY,,,5,0,0,0,0,0,5,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4469369,Sedan,Sedan,Sedan,, +10/20/2021,17:15,,,40.7665795,-73.8884579,"(40.7665795, -73.8884579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469376,Sedan,Sedan,,, +10/20/2021,21:25,,,40.7661632,-73.8922527,"(40.7661632, -73.8922527)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469377,Taxi,,,, +01/25/2022,12:03,BRONX,10467,,,,East 212nd street,White plains road,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497596,Van,Sedan,,, +10/12/2021,19:45,,,40.6289563,-74.1730397,"(40.6289563, -74.1730397)",,,2501 FOREST AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469385,Sedan,Bike,,, +10/10/2021,9:35,,,40.8631133,-73.9206117,"(40.8631133, -73.9206117)",NAGLE AVENUE,,,2,0,0,0,0,0,0,0,Passenger Distraction,,,,,4469387,E-Bike,,,, +10/18/2021,20:13,,,40.78421,-73.9422072,"(40.78421, -73.9422072)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469401,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,23:15,,,40.790761,-73.9813668,"(40.790761, -73.9813668)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469403,Taxi,Sedan,,, +01/22/2022,7:00,QUEENS,11101,40.751076,-73.934616,"(40.751076, -73.934616)",,,30-01 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4497736,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,6:20,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4504760,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/22/2022,16:50,QUEENS,11372,40.751198,-73.89027,"(40.751198, -73.89027)",35 AVENUE,76 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4505070,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,12:25,BRONX,10455,40.817158,-73.90154,"(40.817158, -73.90154)",HEWITT PLACE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505224,Pick-up Truck,,,, +02/16/2022,0:00,BRONX,10469,40.875206,-73.8511,"(40.875206, -73.8511)",,,3382 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4505256,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,14:00,BROOKLYN,11220,40.632633,-74.01254,"(40.632633, -74.01254)",65 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4504776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,20:25,QUEENS,11428,40.715347,-73.74845,"(40.715347, -73.74845)",HOLLIS COURT BOULEVARD,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504826,,,,, +02/22/2022,17:58,,,40.80054,-73.96192,"(40.80054, -73.96192)",WEST 108 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504846,Sedan,,,, +02/22/2022,5:00,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504964,Sedan,PK,,, +02/20/2022,4:26,,,40.850395,-73.9228,"(40.850395, -73.9228)",MAJOR DEEGAN EXPRESSWAY,,,9,0,0,0,0,0,9,0,Brakes Defective,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4505281,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +02/22/2022,8:15,QUEENS,11105,,,,,,36-17 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4505424,Sedan,,,, +02/22/2022,12:40,,,,,,,,64 WEST DRIVE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4504787,Sedan,HORSE CARR,,, +02/22/2022,20:25,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4504866,Taxi,Bike,,, +02/22/2022,4:45,,,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504722,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,9:38,QUEENS,11354,40.761623,-73.82208,"(40.761623, -73.82208)",ROOSEVELT AVENUE,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504839,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,18:15,,,,,,CLARK STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4505049,Sedan,,,, +02/22/2022,19:02,MANHATTAN,10031,40.828613,-73.943855,"(40.828613, -73.943855)",,,451 WEST 151 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/16/2022,23:06,BROOKLYN,11234,40.6109,-73.93391,"(40.6109, -73.93391)",FILLMORE AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4505342,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/12/2022,5:28,BRONX,10459,40.82097,-73.89242,"(40.82097, -73.89242)",,,1018 EAST 163 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505234,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/22/2022,13:30,QUEENS,11373,40.74733,-73.8818,"(40.74733, -73.8818)",,,40-19 GLEANE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4504894,Sedan,Taxi,,, +02/22/2022,19:47,BROOKLYN,11236,40.638428,-73.91275,"(40.638428, -73.91275)",GLENWOOD ROAD,EAST 83 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505120,Convertible,,,, +02/02/2022,7:30,QUEENS,11101,40.74411,-73.95364,"(40.74411, -73.95364)",VERNON BOULEVARD,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505251,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,9:30,STATEN ISLAND,10301,40.614544,-74.10937,"(40.614544, -74.10937)",VICTORY BOULEVARD,MARX STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4505314,Sedan,Pick-up Truck,,, +02/22/2022,0:00,BROOKLYN,11205,40.697716,-73.967735,"(40.697716, -73.967735)",WASHINGTON AVENUE,FLUSHING AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4504885,Sedan,Bike,,, +10/14/2021,20:15,,,40.8449252,-73.9263743,"(40.8449252, -73.9263743)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469424,Box Truck,,,, +08/31/2021,8:30,BRONX,10452,40.8429984,-73.9147445,"(40.8429984, -73.9147445)",,,1549 TOWNSEND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4469425,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +10/06/2021,22:10,BROOKLYN,11221,40.6922138,-73.9229175,"(40.6922138, -73.9229175)",BUSHWICK AVENUE,MENAHAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Other Lighting Defects,,,,4469435,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,20:36,,,40.60583,-73.75779,"(40.60583, -73.75779)",MOTT AVENUE,MCBRIDE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497809,Sedan,,,, +10/20/2021,21:11,,,40.8945774,-73.9081005,"(40.8945774, -73.9081005)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4469460,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,10:57,BROOKLYN,11218,0,0,"(0.0, 0.0)",36 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518823,Station Wagon/Sport Utility Vehicle,Stake or Rack,,, +07/07/2022,22:09,,,,,,Horace Harding Expressway,College Point Boulevard,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544937,Sedan,Sedan,,, +10/18/2021,18:36,,,40.7258847,-73.7600609,"(40.7258847, -73.7600609)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4469495,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/25/2022,16:50,BROOKLYN,11206,40.701862,-73.94383,"(40.701862, -73.94383)",BROADWAY,WHIPPLE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497344,Station Wagon/Sport Utility Vehicle,Bike,,, +01/25/2022,19:15,BROOKLYN,11234,40.62619,-73.921844,"(40.62619, -73.921844)",EAST 56 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4497572,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,19:05,,,40.851654,-73.91566,"(40.851654, -73.91566)",ANDREWS AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497409,Sedan,Sedan,,, +10/21/2021,1:00,,,40.7297448,-73.8337202,"(40.7297448, -73.8337202)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469503,Sedan,,,, +10/12/2021,23:46,BRONX,10466,40.8947022,-73.8472027,"(40.8947022, -73.8472027)",ELY AVENUE,BUSSING AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469504,Sedan,,,, +01/13/2022,14:30,MANHATTAN,10065,40.762486,-73.96298,"(40.762486, -73.96298)",EAST 62 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4497956,Station Wagon/Sport Utility Vehicle,Bike,,, +01/09/2022,3:54,BROOKLYN,11213,40.67968,-73.93663,"(40.67968, -73.93663)",,,1600 FULTON STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4497887,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2022,20:00,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544951,Sedan,Bike,,, +08/04/2021,0:53,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4444271,Sedan,Box Truck,,, +10/20/2021,4:00,QUEENS,11367,40.732473,-73.8122968,"(40.732473, -73.8122968)",,,155-23 JEWEL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469500,Sedan,,,, +04/13/2022,17:19,MANHATTAN,10172,40.75592,-73.9749,"(40.75592, -73.9749)",EAST 48 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518883,Bike,,,, +01/25/2022,1:55,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497077,Sedan,,,, +01/25/2022,12:19,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497385,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,17:25,BROOKLYN,11215,40.676147,-73.98391,"(40.676147, -73.98391)",4 AVENUE,CARROLL STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4497476,Bike,Sedan,,, +01/16/2022,13:13,,,,,,ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497845,Van,,,, +01/25/2022,6:58,BRONX,10468,40.86431,-73.901474,"(40.86431, -73.901474)",,,30 WEST 190 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497106,Sedan,,,, +01/25/2022,18:51,,,,,,SOUTH AVENUE,GLEN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4497493,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,14:00,STATEN ISLAND,10309,40.5198349,-74.2193192,"(40.5198349, -74.2193192)",,,6498 AMBOY ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4469514,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,16:24,,,40.74137,-73.97252,"(40.74137, -73.97252)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4497938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,7:40,,,40.61157,-73.994606,"(40.61157, -73.994606)",19 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497171,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,20:40,,,40.750451,-73.9659813,"(40.750451, -73.9659813)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469517,Sedan,Sedan,,, +01/25/2022,10:59,STATEN ISLAND,10305,40.59971,-74.08261,"(40.59971, -74.08261)",FAYETTE AVENUE,WOODLAWN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Traffic Control Disregarded,,,,4497322,Sedan,Sedan,,, +01/25/2022,16:30,BROOKLYN,11206,40.70239,-73.94181,"(40.70239, -73.94181)",,,60 COOK STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497664,Sedan,,,, +01/25/2022,20:30,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",METROPOLITAN AVENUE,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497743,Sedan,Sedan,,, +01/20/2022,14:00,,,,,,Seagirt Boulevard,Beach 9 street,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497765,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/19/2021,10:10,,,40.5413708,-74.2238445,"(40.5413708, -74.2238445)",WEST SHORE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Fatigued/Drowsy,Unspecified,,,,4469522,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,15:52,STATEN ISLAND,10312,40.5286359,-74.1913679,"(40.5286359, -74.1913679)",ANDROVETTE AVENUE,DEISIUS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,20:00,STATEN ISLAND,10312,40.5303802,-74.186741,"(40.5303802, -74.186741)",,,314 DEISIUS STREET,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4469524,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,8:15,,,40.5257538,-74.2275044,"(40.5257538, -74.2275044)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469525,Sedan,,,, +01/25/2022,16:50,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497285,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/25/2022,8:10,,,40.84469,-73.90667,"(40.84469, -73.90667)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497211,Box Truck,Bus,,, +10/21/2021,0:00,,,40.7423378,-73.8376295,"(40.7423378, -73.8376295)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4469528,Sedan,Sedan,,, +10/09/2021,1:54,BRONX,10452,40.8427518,-73.9228189,"(40.8427518, -73.9228189)",PLIMPTON AVENUE,GRANT HIGHWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469529,Sedan,Garbage or Refuse,,, +01/25/2022,16:00,,,40.786423,-73.82394,"(40.786423, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497271,Sedan,Tractor Truck Diesel,,, +01/25/2022,10:00,,,40.801685,-73.91734,"(40.801685, -73.91734)",EAST 132 STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497213,Sedan,,,, +01/25/2022,7:40,BRONX,10467,40.87856,-73.865776,"(40.87856, -73.865776)",WHITE PLAINS ROAD,EAST 212 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,7:40,QUEENS,11434,40.67071,-73.77697,"(40.67071, -73.77697)",137 AVENUE,159 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497190,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,5:01,,,40.843913,-73.927279,"(40.843913, -73.927279)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4469534,Sedan,Sedan,Sedan,, +01/21/2022,17:40,QUEENS,11358,40.765385,-73.789085,"(40.765385, -73.789085)",,,34-33 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,,,,,,4497761,,,,, +01/25/2022,16:10,,,40.66585,-73.88392,"(40.66585, -73.88392)",WARWICK STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497443,Bus,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,14:50,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444282,Sedan,,,, +01/25/2022,16:45,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,5,0,0,0,0,0,5,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4497503,Bus,,,, +01/25/2022,20:35,,,40.852337,-73.92517,"(40.852337, -73.92517)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497795,Sedan,Sedan,,, +01/25/2022,17:11,BROOKLYN,11232,40.65431,-74.004425,"(40.65431, -74.004425)",4 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497697,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,14:50,BROOKLYN,11207,40.65821,-73.89625,"(40.65821, -73.89625)",,,716 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497779,Sedan,Bus,,, +01/25/2022,8:24,QUEENS,11416,40.68672,-73.848114,"(40.68672, -73.848114)",,,95-02 94 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4497203,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +01/25/2022,16:16,QUEENS,11377,40.735596,-73.89901,"(40.735596, -73.89901)",66 STREET,GARFIELD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4497293,Sedan,Motorcycle,,, +01/25/2022,12:14,BROOKLYN,11249,40.71727,-73.96286,"(40.71727, -73.96286)",NORTH 3 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497395,Sedan,Sedan,,, +01/25/2022,19:08,BROOKLYN,11211,40.7042,-73.95825,"(40.7042, -73.95825)",HOOPER STREET,LEE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497663,Sedan,Sedan,,, +12/22/2021,13:00,,,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497879,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,17:30,QUEENS,11433,40.691074,-73.79656,"(40.691074, -73.79656)",,,109-33 153 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497323,Sedan,Sedan,,, +01/25/2022,17:13,QUEENS,11416,40.681404,-73.85334,"(40.681404, -73.85334)",86 STREET,102 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4497358,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/25/2022,6:27,BROOKLYN,11236,40.648067,-73.89784,"(40.648067, -73.89784)",EAST 103 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497233,Bike,Bus,,, +01/20/2022,16:00,,,40.760567,-73.9155,"(40.760567, -73.9155)",31 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497844,Sedan,,,, +01/25/2022,19:15,MANHATTAN,10032,40.835194,-73.9385,"(40.835194, -73.9385)",WEST 162 STREET,JUMEL TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497725,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,13:07,QUEENS,11691,40.609905,-73.74503,"(40.609905, -73.74503)",,,833 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497754,Sedan,,,, +01/21/2022,20:14,,,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497821,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,14:59,MANHATTAN,10029,40.789948,-73.94293,"(40.789948, -73.94293)",EAST 105 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4497970,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,16:34,,,40.8361658,-73.871779,"(40.8361658, -73.871779)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469554,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,18:00,BROOKLYN,11204,40.612495,-73.97922,"(40.612495, -73.97922)",65 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497418,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,3:13,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497901,Sedan,,,, +01/25/2022,11:05,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4497495,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,15:55,MANHATTAN,10022,40.760105,-73.97478,"(40.760105, -73.97478)",,,520 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497375,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:57,BROOKLYN,11212,40.65905,-73.90027,"(40.65905, -73.90027)",JUNIUS STREET,LOTT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497628,PK,,,, +01/25/2022,8:30,QUEENS,11428,40.71488,-73.75368,"(40.71488, -73.75368)",,,94-09 207 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497332,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,17:30,MANHATTAN,10029,40.792114,-73.941345,"(40.792114, -73.941345)",,,2086 2 AVENUE,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4497859,Bike,Bike,,, +01/25/2022,23:56,STATEN ISLAND,10301,40.638157,-74.07971,"(40.638157, -74.07971)",CORSON AVENUE,LOW TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497514,Sedan,,,, +01/25/2022,9:39,BROOKLYN,11207,40.68238,-73.90565,"(40.68238, -73.90565)",BUSHWICK AVENUE,ABERDEEN STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4497386,Sedan,Sedan,,, +01/25/2022,10:40,BRONX,10460,40.84017,-73.88702,"(40.84017, -73.88702)",,,1829 TRAFALGAR PLACE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4497516,Motorcycle,,,, +10/21/2021,10:50,,,40.6221498,-74.1686424,"(40.6221498, -74.1686424)",,,700 SOUTH AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Glare,,,,4469543,Van,Sedan,,, +01/25/2022,21:20,BROOKLYN,11208,40.679653,-73.88556,"(40.679653, -73.88556)",FULTON STREET,CLEVELAND STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497477,Sedan,Sedan,,, +01/25/2022,10:20,,,40.781837,-73.979294,"(40.781837, -73.979294)",WEST 77 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497913,Box Truck,Sedan,,, +01/25/2022,2:30,QUEENS,11368,40.746357,-73.86245,"(40.746357, -73.86245)",102 STREET,45 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497083,Sedan,E-Bike,,, +01/25/2022,0:47,BROOKLYN,11211,40.706436,-73.95778,"(40.706436, -73.95778)",,,240 RODNEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497350,Taxi,Garbage or Refuse,,, +12/04/2021,8:33,,,40.840824,-73.94597,"(40.840824, -73.94597)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497814,Sedan,Sedan,,, +01/18/2022,9:34,MANHATTAN,10027,40.810406,-73.95387,"(40.810406, -73.95387)",,,350 WEST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497886,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,1:02,QUEENS,11385,40.693737,-73.89675,"(40.693737, -73.89675)",,,80-10 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497117,Sedan,,,, +01/21/2022,17:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4497939,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/12/2021,19:34,BRONX,10469,40.8763798,-73.8460045,"(40.8763798, -73.8460045)",EASTCHESTER ROAD,TILLOTSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469574,Sedan,,,, +01/25/2022,6:53,BROOKLYN,11233,40.683605,-73.91462,"(40.683605, -73.91462)",BOYLAND STREET,DECATUR STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497328,Pick-up Truck,,,, +01/25/2022,14:45,BROOKLYN,11208,40.67314,-73.86945,"(40.67314, -73.86945)",CRESCENT STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4497478,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,10:00,MANHATTAN,10018,40.754063,-73.99388,"(40.754063, -73.99388)",,,347 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497376,PK,Van,,, +01/23/2022,8:38,QUEENS,11691,40.603603,-73.751755,"(40.603603, -73.751755)",MOTT AVENUE,BEACH 19 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497807,Bus,PK,,, +01/10/2022,9:00,BROOKLYN,11221,40.69221,-73.92293,"(40.69221, -73.92293)",BUSHWICK AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497854,Bus,Sedan,,, +01/25/2022,17:12,BRONX,10468,40.857758,-73.90095,"(40.857758, -73.90095)",EAST 183 STREET,CRESTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497412,Sedan,,,, +01/25/2022,13:45,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,12:30,MANHATTAN,10016,40.74036,-73.97318,"(40.74036, -73.97318)",EAST 30 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497274,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,19:24,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497716,Sedan,,,, +01/25/2022,17:32,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497345,Sedan,AMBULANCE,,, +01/22/2022,11:00,QUEENS,11691,40.60809,-73.752235,"(40.60809, -73.752235)",,,13-01 REDFERN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497791,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,17:10,BRONX,10469,40.8710347,-73.8564478,"(40.8710347, -73.8564478)",,,3075 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469586,Sedan,Sedan,,, +01/25/2022,10:49,QUEENS,11421,40.692318,-73.8609,"(40.692318, -73.8609)",JAMAICA AVENUE,FOREST PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497204,Sedan,Sedan,,, +01/25/2022,15:33,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497566,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,13:30,QUEENS,11373,40.74522,-73.890854,"(40.74522, -73.890854)",,,74-18 41 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497726,Box Truck,Sedan,,, +01/25/2022,11:30,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",86 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497240,Sedan,Sedan,,, +01/25/2022,14:45,MANHATTAN,10128,40.786903,-73.95338,"(40.786903, -73.95338)",,,53 EAST 96 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4497394,Van,,,, +01/25/2022,19:45,,,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4497880,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/26/2021,9:00,QUEENS,11422,40.6827353,-73.7261684,"(40.6827353, -73.7261684)",,,121-16 HOOK CREEK BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4469593,Sedan,,,, +10/06/2021,7:00,QUEENS,11413,40.6751631,-73.7557241,"(40.6751631, -73.7557241)",,,138-01 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4469596,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,2:30,QUEENS,11413,40.6606432,-73.7638777,"(40.6606432, -73.7638777)",,,146-61 183 STREET,0,0,0,0,0,0,0,0,,,,,,4469597,,,,, +01/19/2022,5:50,BROOKLYN,11206,40.708942,-73.941765,"(40.708942, -73.941765)",HUMBOLDT STREET,SCHOLES STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497964,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,6:45,,,40.7113919,-73.8365939,"(40.7113919, -73.8365939)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4469599,Box Truck,,,, +10/21/2021,18:15,,,40.6982617,-73.8693899,"(40.6982617, -73.8693899)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469600,Sedan,Taxi,,, +01/16/2022,15:00,QUEENS,11377,40.73984,-73.89766,"(40.73984, -73.89766)",67 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497796,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,0:14,QUEENS,11420,40.681225,-73.80953,"(40.681225, -73.80953)",,,114-24 132 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4497338,Sedan,Sedan,Sedan,Sedan, +10/20/2021,14:00,,,40.7170411,-73.8220892,"(40.7170411, -73.8220892)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469603,Sedan,,,, +01/25/2022,9:52,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497404,Box Truck,Pick-up Truck,,, +12/16/2021,20:31,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497868,Sedan,,,, +01/25/2022,15:45,QUEENS,11354,40.76373,-73.81431,"(40.76373, -73.81431)",,,150-01 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4497687,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,8:57,QUEENS,11385,40.701862,-73.89272,"(40.701862, -73.89272)",CENTRAL AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497166,Station Wagon/Sport Utility Vehicle,Dump,,, +01/20/2022,9:00,,,,,,UNIONPORT ROAD,BRONX RIVER PARK,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497777,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,17:14,,,40.64204,-74.0204,"(40.64204, -74.0204)",60 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4497311,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,7:30,QUEENS,11691,40.594334,-73.75122,"(40.594334, -73.75122)",,,125 BEACH 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497735,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,17:45,,,40.7179096,-73.8320145,"(40.7179096, -73.8320145)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4469615,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +01/25/2022,15:00,BRONX,10466,40.884777,-73.85877,"(40.884777, -73.85877)",EAST 222 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497593,Sedan,,,, +01/25/2022,7:44,BROOKLYN,11207,40.6698,-73.901115,"(40.6698, -73.901115)",SNEDIKER AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497431,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:20,BROOKLYN,11215,40.669724,-73.98742,"(40.669724, -73.98742)",,,275 9 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497502,Sedan,Bike,,, +01/01/2022,3:40,,,40.6772,-73.94147,"(40.6772, -73.94147)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497876,Sedan,,,, +01/25/2022,11:38,BRONX,10454,40.801624,-73.90968,"(40.801624, -73.90968)",EAST 136 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497357,Sedan,Sedan,,, +01/25/2022,9:30,,,40.640827,-74.17976,"(40.640827, -74.17976)",WESTERN AVENUE,RICHMOND TERRACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4497792,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,17:55,QUEENS,11434,40.67824,-73.7711,"(40.67824, -73.7711)",BEDELL STREET,130 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497823,Sedan,,,, +01/25/2022,13:31,,,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497402,Bus,Sedan,,, +01/16/2022,20:05,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4497740,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,14:10,,,40.6666632,-73.8099065,"(40.6666632, -73.8099065)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4469630,Sedan,Sedan,,, +10/21/2021,15:00,,,40.6665812,-73.8117667,"(40.6665812, -73.8117667)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4469631,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/22/2021,0:30,,,40.6667645,-73.8365302,"(40.6667645, -73.8365302)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469632,Sedan,Sedan,,, +01/25/2022,4:33,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497182,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,14:00,QUEENS,11430,40.6663227,-73.8016838,"(40.6663227, -73.8016838)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469634,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,6:37,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4497508,Sedan,Taxi,,, +01/25/2022,6:45,QUEENS,11375,40.712864,-73.856636,"(40.712864, -73.856636)",SELFRIDGE STREET,OLCOTT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4497284,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,18:34,QUEENS,11434,40.68126,-73.76483,"(40.68126, -73.76483)",MERRICK BOULEVARD,ANDERSON ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497518,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,3:00,,,40.7444741,-73.7717841,"(40.7444741, -73.7717841)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4469638,Motorcycle,,,, +01/25/2022,23:12,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,,,,,4497348,Taxi,,,, +01/25/2022,14:40,BRONX,10457,40.85194,-73.88966,"(40.85194, -73.88966)",,,609 EAST 182 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497507,Sedan,,,, +01/25/2022,19:52,BROOKLYN,11236,40.653378,-73.90658,"(40.653378, -73.90658)",ROCKAWAY AVENUE,DITMAS AVENUE,,0,1,0,0,0,0,0,1,Driver Inexperience,Unspecified,,,,4497898,Garbage or Refuse,Motorscooter,,, +10/22/2021,0:45,,,40.6201621,-74.0230011,"(40.6201621, -74.0230011)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469642,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,9:00,MANHATTAN,10026,40.80251,-73.94678,"(40.80251, -73.94678)",,,35 WEST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497417,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/22/2022,23:15,QUEENS,11428,40.71945,-73.739105,"(40.71945, -73.739105)",94 ROAD,217 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497920,Sedan,,,, +01/25/2022,3:58,,,,,,GRAND CENTRAL PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497085,Sedan,,,, +01/21/2022,14:30,MANHATTAN,10032,40.84405,-73.942665,"(40.84405, -73.942665)",,,80 HAVEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497813,Sedan,,,, +01/21/2022,22:20,MANHATTAN,10027,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4497727,Sedan,E-Bike,,, +01/25/2022,6:22,STATEN ISLAND,10308,40.555824,-74.16103,"(40.555824, -74.16103)",ARMSTRONG AVENUE,LEVERETT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4497236,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:28,BROOKLYN,11209,40.631344,-74.022804,"(40.631344, -74.022804)",,,476 73 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497241,Sedan,,,, +01/25/2022,23:50,BROOKLYN,11223,40.59401,-73.96086,"(40.59401, -73.96086)",,,2575 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497629,Sedan,,,, +01/25/2022,17:44,BROOKLYN,11213,40.663555,-73.93162,"(40.663555, -73.93162)",EMPIRE BOULEVARD,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497291,Bus,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,16:35,BRONX,10456,40.818756,-73.90876,"(40.818756, -73.90876)",EAST 156 STREET,CAULDWELL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497720,Sedan,,,, +01/25/2022,20:09,,,40.70786,-73.74779,"(40.70786, -73.74779)",209 PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4497337,Sedan,Sedan,,, +12/30/2021,14:00,MANHATTAN,10033,40.850185,-73.93209,"(40.850185, -73.93209)",,,563 WEST 183 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497755,Convertible,,,, +01/25/2022,8:28,MANHATTAN,10029,40.79814,-73.94051,"(40.79814, -73.94051)",,,186 EAST 116 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,22:40,,,40.674385,-73.88795,"(40.674385, -73.88795)",GLENMORE AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497634,Sedan,Sedan,,, +01/18/2022,15:18,QUEENS,11691,40.606956,-73.74353,"(40.606956, -73.74353)",VIRGINIA STREET,EMPIRE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4497745,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/21/2022,12:30,QUEENS,11691,,,,seagirt avenue,beach 9 street,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4497785,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/21/2021,14:54,,,40.7091914,-73.956819,"(40.7091914, -73.956819)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4469663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:00,BROOKLYN,11230,40.62704,-73.96663,"(40.62704, -73.96663)",EAST 10 STREET,AVENUE I,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497205,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,18:30,BROOKLYN,11226,40.649456,-73.95236,"(40.649456, -73.95236)",,,860 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497290,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,16:00,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",7 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497327,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/25/2022,7:55,BROOKLYN,11207,40.66976,-73.89254,"(40.66976, -73.89254)",,,710 SUTTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497490,Station Wagon/Sport Utility Vehicle,,,, +01/18/2022,18:10,MANHATTAN,10032,40.84215,-73.94228,"(40.84215, -73.94228)",FORT WASHINGTON AVENUE,WEST 168 STREET,,1,0,1,0,0,0,0,0,Drugs (illegal),,,,,4497812,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,17:25,,,40.5861063,-73.9323662,"(40.5861063, -73.9323662)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,7:30,,,40.730656,-73.73649,"(40.730656, -73.73649)",WINCHESTER BOULEVARD,88 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497227,Station Wagon/Sport Utility Vehicle,Armored Truck,,, +01/25/2022,12:50,BROOKLYN,11211,40.70307,-73.95699,"(40.70307, -73.95699)",PENN STREET,LEE AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4497346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/25/2022,6:15,QUEENS,11370,40.770916,-73.889046,"(40.770916, -73.889046)",81 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497176,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,13:23,,,40.8751317,-73.9051695,"(40.8751317, -73.9051695)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469677,Sedan,Sedan,,, +01/25/2022,15:40,,,40.686028,-73.82506,"(40.686028, -73.82506)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4497314,Sedan,,,, +01/25/2022,23:50,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",FULTON STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497620,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,21:51,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497305,Sedan,Sedan,,, +01/25/2022,20:35,BROOKLYN,11238,40.686096,-73.97109,"(40.686096, -73.97109)",,,38 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,2:40,,,40.593544,-73.77716,"(40.593544, -73.77716)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497757,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,16:00,BRONX,10452,40.841496,-73.92486,"(40.841496, -73.92486)",WEST 170 STREET,OGDEN AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4497377,E-Bike,,,, +01/25/2022,16:00,BROOKLYN,11204,40.630745,-73.97717,"(40.630745, -73.97717)",MC DONALD AVENUE,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497710,Sedan,,,, +01/21/2022,12:30,QUEENS,11691,40.601143,-73.7566,"(40.601143, -73.7566)",,,22-42 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,9:30,QUEENS,11691,40.594334,-73.75122,"(40.594334, -73.75122)",,,125 BEACH 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497739,Sedan,,,, +01/25/2022,19:30,BROOKLYN,11207,40.66685,-73.8907,"(40.66685, -73.8907)",DUMONT AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497467,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/22/2022,17:30,,,40.71576,-73.74655,"(40.71576, -73.74655)",JAMAICA AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497851,Station Wagon/Sport Utility Vehicle,Bus,,, +01/25/2022,16:20,BROOKLYN,11218,40.641537,-73.981766,"(40.641537, -73.981766)",35 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497362,Sedan,,,, +01/23/2022,23:29,,,40.770603,-73.917656,"(40.770603, -73.917656)",GRAND CENTRAL PKWY,,,1,1,0,1,0,0,1,0,Unspecified,Unspecified,,,,4497882,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,20:50,QUEENS,11102,40.766884,-73.921394,"(40.766884, -73.921394)",31 STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497354,Sedan,E-Bike,,, +01/25/2022,5:50,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4497134,Sedan,Bike,,, +01/24/2022,21:46,MANHATTAN,10018,40.755264,-73.989136,"(40.755264, -73.989136)",,,240 WEST 40 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4497927,Sedan,Taxi,,, +06/17/2021,16:45,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444430,Pick-up Truck,Sedan,,, +10/21/2021,10:07,,,40.600883,-73.958681,"(40.600883, -73.958681)",EAST 13 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4469698,Bike,Sedan,,, +01/25/2022,8:35,STATEN ISLAND,10314,40.6148,-74.12066,"(40.6148, -74.12066)",BEECHWOOD PLACE,DONGAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4497277,Sedan,Sedan,,, +01/25/2022,18:55,QUEENS,11355,40.757355,-73.82485,"(40.757355, -73.82485)",,,42-08 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497405,Sedan,,,, +01/20/2022,19:33,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4497817,Sedan,Sedan,Sedan,, +01/25/2022,23:23,,,40.8518,-73.909225,"(40.8518, -73.909225)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497413,Bus,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,17:35,BROOKLYN,11210,40.626713,-73.94121,"(40.626713, -73.94121)",FLATBUSH AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497583,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/25/2022,17:00,QUEENS,11412,40.695934,-73.761604,"(40.695934, -73.761604)",DORMANS ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497825,Sedan,,,, +01/25/2022,8:15,,,40.609417,-73.9677,"(40.609417, -73.9677)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497392,Sedan,Sedan,,, +01/25/2022,16:00,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4497340,Sedan,Sedan,,, +01/21/2022,10:05,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497903,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,14:55,,,40.69225,-73.76669,"(40.69225, -73.76669)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497960,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,16:45,,,40.83142,-73.92643,"(40.83142, -73.92643)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4497681,Sedan,Sedan,,, +01/23/2022,21:43,QUEENS,11691,40.609905,-73.74503,"(40.609905, -73.74503)",,,833 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497799,Snow Plow,Sedan,,, +01/25/2022,13:45,,,40.75425,-73.827835,"(40.75425, -73.827835)",MAIN STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4497424,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,15:15,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497509,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,8:45,,,40.639866,-73.87788,"(40.639866, -73.87788)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,Unspecified,,,4497866,Sedan,Pick-up Truck,Sedan,, +01/25/2022,17:33,MANHATTAN,10029,40.79686,-73.93742,"(40.79686, -73.93742)",,,301 EAST 116 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4497536,Sedan,Sedan,Pick-up Truck,, +01/20/2022,10:30,,,40.669586,-73.92827,"(40.669586, -73.92827)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497877,Sedan,Sedan,,, +01/25/2022,6:09,,,,,,GRAND CENTRAL PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,15:50,MANHATTAN,10023,40.76889,-73.9821,"(40.76889, -73.9821)",WEST 60 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497908,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/01/2021,19:13,,,40.8371809,-73.9489011,"(40.8371809, -73.9489011)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469721,Van,Sedan,,, +01/25/2022,14:20,STATEN ISLAND,10312,40.534748,-74.16527,"(40.534748, -74.16527)",ARDEN AVENUE,KOCH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497361,Sedan,Sedan,,, +01/17/2022,6:21,QUEENS,11691,40.593708,-73.75319,"(40.593708, -73.75319)",,,120 BEACH 19 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,4:50,QUEENS,11432,,,,,,8510 Parsons Blvd,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4497262,Bus,Sedan,,, +01/24/2022,19:20,BROOKLYN,11217,40.68247,-73.9763,"(40.68247, -73.9763)",,,178 FLATBUSH AVENUE,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4497723,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,16:48,,,40.8910726,-73.9082717,"(40.8910726, -73.9082717)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4469726,Sedan,Sedan,,, +01/22/2022,9:26,BROOKLYN,11210,40.62701,-73.94482,"(40.62701, -73.94482)",,,3201 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497818,Sedan,,,, +01/25/2022,12:53,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4497466,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,13:17,,,40.70154,-73.93837,"(40.70154, -73.93837)",GARDEN STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444482,E-Bike,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,18:44,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497498,Armored Truck,Sedan,,, +01/23/2022,9:30,,,40.625908,-74.15577,"(40.625908, -74.15577)",FOREST AVENUE,VANPELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4497793,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,20:45,BROOKLYN,11212,40.66843,-73.91919,"(40.66843, -73.91919)",PITKIN AVENUE,GRAFTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497622,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,9:00,,,40.7366625,-73.9078925,"(40.7366625, -73.9078925)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4469733,Box Truck,Sedan,Sedan,, +01/25/2022,7:45,BRONX,10470,40.90117,-73.86199,"(40.90117, -73.86199)",,,518 EAST 240 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497304,Sedan,Sedan,,, +01/25/2022,21:00,,,40.67884,-73.75419,"(40.67884, -73.75419)",SPRINGFIELD BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497335,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,7:54,MANHATTAN,10035,40.798935,-73.93637,"(40.798935, -73.93637)",2 AVENUE,EAST 119 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497199,Station Wagon/Sport Utility Vehicle,Van,,, +01/25/2022,15:51,QUEENS,11367,40.719482,-73.81058,"(40.719482, -73.81058)",153 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497653,Sedan,Taxi,Sedan,, +01/25/2022,18:00,QUEENS,11356,40.778603,-73.846115,"(40.778603, -73.846115)",23 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497400,Sedan,,,, +01/25/2022,9:53,,,40.721233,-73.98778,"(40.721233, -73.98778)",LUDLOW STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4497307,Sedan,Bike,,, +01/25/2022,17:25,QUEENS,11414,40.664192,-73.841125,"(40.664192, -73.841125)",CROSS BAY BOULEVARD,156 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4497341,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,8:00,QUEENS,11691,40.595985,-73.763,"(40.595985, -73.763)",SEAGIRT BOULEVARD,BEACH 30 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497803,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/24/2022,6:00,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",WEST 34 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497747,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,11:58,QUEENS,11692,40.59026,-73.78872,"(40.59026, -73.78872)",,,102 BEACH 59 STREET,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4497758,Station Wagon/Sport Utility Vehicle,Snow Plow,,, +01/25/2022,7:22,BROOKLYN,11210,40.634026,-73.95023,"(40.634026, -73.95023)",KENILWORTH PLACE,GLENWOOD ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Turning Improperly,,,,4497197,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,23:24,MANHATTAN,10035,40.808334,-73.940865,"(40.808334, -73.940865)",5 AVENUE,EAST 128 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4497506,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/25/2022,11:23,BRONX,10472,40.82856,-73.87954,"(40.82856, -73.87954)",,,1513 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497235,Sedan,Sedan,,, +01/25/2022,23:00,BRONX,10455,40.81437,-73.896706,"(40.81437, -73.896706)",BRUCKNER BOULEVARD,EAST 156 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497671,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/25/2022,8:10,QUEENS,11373,40.735325,-73.865166,"(40.735325, -73.865166)",JUNCTION BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497172,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,12:00,,,40.586185,-73.98328,"(40.586185, -73.98328)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497744,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,15:38,,,40.793377,-73.97086,"(40.793377, -73.97086)",WEST 95 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497289,Sedan,,,, +01/09/2022,0:00,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497959,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,0:00,BROOKLYN,11233,40.68262,-73.92964,"(40.68262, -73.92964)",,,434 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497884,Sedan,Garbage or Refuse,,, +01/25/2022,16:20,,,40.858986,-73.89382,"(40.858986, -73.89382)",WEBSTER AVENUE,EAST 187 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497407,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/25/2022,6:40,,,40.69141,-73.72668,"(40.69141, -73.72668)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497609,Sedan,Sedan,,, +08/03/2021,13:45,,,,,,31 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444521,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,18:31,,,40.85068,-73.82731,"(40.85068, -73.82731)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497383,Tractor Truck Diesel,Sedan,,, +01/25/2022,18:55,MANHATTAN,10033,40.847794,-73.934845,"(40.847794, -73.934845)",,,1370 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4497810,Sedan,Sedan,Sedan,, +01/25/2022,13:30,MANHATTAN,10029,40.78459,-73.94198,"(40.78459, -73.94198)",FDR DRIVE,EAST 99 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,8:15,MANHATTAN,10027,40.80949,-73.95167,"(40.80949, -73.95167)",WEST 124 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4497416,Sedan,Tractor Truck Diesel,,, +01/25/2022,14:45,BROOKLYN,11220,40.639126,-74.023224,"(40.639126, -74.023224)",,,301 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,8:30,QUEENS,11427,40.737167,-73.740166,"(40.737167, -73.740166)",UNION TURNPIKE,STRONGHURST AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497217,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,18:28,QUEENS,11102,40.772804,-73.92112,"(40.772804, -73.92112)",,,25-03 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497702,Ambulance,Sedan,,, +01/25/2022,22:00,,,40.795437,-73.943954,"(40.795437, -73.943954)",EAST 111 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497769,Sedan,,,, +01/25/2022,10:00,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497315,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,10:01,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,8:22,QUEENS,11691,40.594334,-73.75122,"(40.594334, -73.75122)",,,125 BEACH 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497737,Sedan,,,, +01/25/2022,14:25,,,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4497573,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,13:00,MANHATTAN,10030,,,,ADAM CLAYTON POWELL BOULEVARD,WEST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497208,Bus,,,, +01/25/2022,7:50,,,40.625103,-74.14877,"(40.625103, -74.14877)",FOREST AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:22,BROOKLYN,11203,40.660294,-73.93614,"(40.660294, -73.93614)",RUTLAND ROAD,EAST 45 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497352,Sedan,,,, +01/25/2022,13:40,MANHATTAN,10035,40.80288,-73.94061,"(40.80288, -73.94061)",,,1751 PARK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497492,Sedan,Box Truck,,, +01/25/2022,23:30,BROOKLYN,11221,40.689274,-73.92398,"(40.689274, -73.92398)",GATES AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4497888,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/17/2022,3:30,,,40.814144,-73.95571,"(40.814144, -73.95571)",WEST 126 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497931,Sedan,,,, +01/21/2022,21:46,MANHATTAN,10032,40.8449,-73.94073,"(40.8449, -73.94073)",,,285 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497816,Sedan,,,, +01/25/2022,15:20,,,40.86661,-73.890366,"(40.86661, -73.890366)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497364,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,13:57,MANHATTAN,10027,40.806866,-73.94337,"(40.806866, -73.94337)",,,28 WEST 125 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4497829,Sedan,Sedan,,, +01/25/2022,14:10,QUEENS,11432,40.71714,-73.778046,"(40.71714, -73.778046)",CHELSEA STREET,BARRINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497655,Sedan,,,, +01/25/2022,13:50,,,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4497265,Van,Sedan,,, +01/19/2022,17:32,,,,,,G.C.P / L.I.E. (CDR),,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4497730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/25/2022,18:43,BROOKLYN,11209,40.616985,-74.0275,"(40.616985, -74.0275)",FORT HAMILTON PARKWAY,92 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4497627,Station Wagon/Sport Utility Vehicle,Van,Bus,Station Wagon/Sport Utility Vehicle,Sedan +01/25/2022,8:07,BRONX,10472,40.82709,-73.87405,"(40.82709, -73.87405)",,,1105 MORRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497234,Sedan,,,, +01/25/2022,4:30,MANHATTAN,10002,40.710697,-73.984634,"(40.710697, -73.984634)",,,299 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497308,Sedan,,,, +01/25/2022,6:05,BROOKLYN,11208,40.67239,-73.87463,"(40.67239, -73.87463)",SUTTER AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497784,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,16:15,MANHATTAN,10029,40.78848,-73.95114,"(40.78848, -73.95114)",EAST 99 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497760,Sedan,E-Bike,,, +01/25/2022,9:40,BROOKLYN,11228,40.60461,-74.01777,"(40.60461, -74.01777)",,,359 BAY 8 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4497201,Sedan,Sedan,,, +01/22/2022,12:00,MANHATTAN,10003,40.73426,-73.98356,"(40.73426, -73.98356)",2 AVENUE,EAST 17 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4497820,E-Bike,E-Bike,,, +01/25/2022,19:10,QUEENS,11354,40.76242,-73.82752,"(40.76242, -73.82752)",37 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497419,Bus,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,10:33,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497902,Sedan,Sedan,,, +01/25/2022,9:30,,,40.66955,-73.94497,"(40.66955, -73.94497)",BROOKLYN AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Other Vehicular,,,,4497912,Sedan,Bus,,, +01/25/2022,6:58,BROOKLYN,11222,40.7199,-73.93884,"(40.7199, -73.93884)",,,311 RICHARDSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4497103,Taxi,Box Truck,,, +01/25/2022,14:27,,,40.82383,-73.87624,"(40.82383, -73.87624)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4497505,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:10,BROOKLYN,11222,40.737488,-73.95321,"(40.737488, -73.95321)",MC GUINNESS BOULEVARD,BOX STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497548,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/24/2022,11:50,QUEENS,11691,40.596256,-73.76684,"(40.596256, -73.76684)",SEAGIRT BOULEVARD,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4497794,Bus,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,13:15,QUEENS,11356,40.791615,-73.847855,"(40.791615, -73.847855)",,,6-001 COLLEGE PLACE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4497399,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +01/25/2022,15:03,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4497510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,15:30,,,,,,LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4497294,Sedan,Sedan,Sedan,, +01/25/2022,10:00,,,40.72025,-73.834305,"(40.72025, -73.834305)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4497192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/17/2022,9:30,QUEENS,11691,40.594334,-73.75122,"(40.594334, -73.75122)",,,125 BEACH 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497724,Sedan,,,, +01/25/2022,8:45,,,,,,DOUGLASTON PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497804,Sedan,Sedan,,, +01/25/2022,11:30,QUEENS,11414,40.661312,-73.849106,"(40.661312, -73.849106)",84 STREET,157 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4497343,Station Wagon/Sport Utility Vehicle,Bus,,, +01/25/2022,16:25,QUEENS,11413,40.67313,-73.75347,"(40.67313, -73.75347)",,,138-10 CARSON STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4497334,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/22/2022,16:56,QUEENS,11427,40.72364,-73.755775,"(40.72364, -73.755775)",HILLSIDE AVENUE,211 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497750,Sedan,,,, +01/25/2022,17:13,MANHATTAN,10022,40.761223,-73.965836,"(40.761223, -73.965836)",,,226 EAST 59 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4497387,Sedan,Bike,,, +01/25/2022,6:30,,,40.67798,-73.872116,"(40.67798, -73.872116)",LIBERTY AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497453,Sedan,Sedan,,, +01/13/2022,7:50,,,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4497878,Sedan,Sedan,,, +01/25/2022,14:00,BROOKLYN,11212,40.65463,-73.92201,"(40.65463, -73.92201)",KINGS HIGHWAY,REMSEN AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4497496,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,5:20,,,40.60487,-74.02955,"(40.60487, -74.02955)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4497370,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/07/2022,0:01,,,40.660362,-73.77553,"(40.660362, -73.77553)",ROCKAWAY BOULEVARD,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4497830,Sedan,,,, +01/08/2022,13:14,MANHATTAN,10016,40.74445,-73.97304,"(40.74445, -73.97304)",EAST 35 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497860,Bike,,,, +01/21/2022,1:21,BROOKLYN,11233,,,,ATLANTIC AVENUE,DEWEY PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4497885,Box Truck,Sedan,Sedan,, +11/02/2021,4:00,QUEENS,11420,40.669735,-73.8085,"(40.669735, -73.8085)",133 AVENUE,130 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473478,Sedan,,,, +08/06/2021,8:43,,,,,,PARK AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4444664,Sedan,Moped,,, +01/25/2022,15:55,,,40.59124,-73.99402,"(40.59124, -73.99402)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497408,Station Wagon/Sport Utility Vehicle,Bus,,, +02/21/2022,20:14,,,40.597813,-74.16708,"(40.597813, -74.16708)",RIVINGTON AVENUE,MULBERRY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4504604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/21/2022,12:52,,,40.61592,-74.00482,"(40.61592, -74.00482)",15 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504772,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,8:20,BROOKLYN,11229,40.6094,-73.96031,"(40.6094, -73.96031)",,,1632 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504652,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,14:00,QUEENS,11372,40.75644,-73.87345,"(40.75644, -73.87345)",,,33-09 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505069,Sedan,Sedan,,, +02/12/2022,21:00,QUEENS,11432,40.706738,-73.80625,"(40.706738, -73.80625)",,,150-49 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4505154,,,,, +02/21/2022,17:17,BRONX,10469,40.867554,-73.847206,"(40.867554, -73.847206)",ARNOW AVENUE,FISH AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4504708,Sedan,Sedan,,, +02/21/2022,18:30,QUEENS,11372,40.756306,-73.8751,"(40.756306, -73.8751)",,,33-04 93 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504531,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,10:50,QUEENS,11434,40.682888,-73.78488,"(40.682888, -73.78488)",LAKEVIEW BOULEVARD EAST,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504991,Station Wagon/Sport Utility Vehicle,,,, +02/18/2022,7:30,,,40.67295,-73.92517,"(40.67295, -73.92517)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4505046,SCHOOL BUS,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,3:00,,,40.652786,-73.91997,"(40.652786, -73.91997)",REMSEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504520,Sedan,,,, +02/17/2022,21:25,,,40.56274,-74.11755,"(40.56274, -74.11755)",MALDEN PLACE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504939,Station Wagon/Sport Utility Vehicle,,,, +02/19/2022,14:50,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4505004,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/21/2022,15:43,,,40.83623,-73.90741,"(40.83623, -73.90741)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Reaction to Uninvolved Vehicle,,,,4504677,Moped,LIMO,,, +02/20/2022,4:05,,,40.70453,-73.817245,"(40.70453, -73.817245)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4505164,Sedan,Sedan,,, +02/21/2022,17:22,MANHATTAN,10029,40.790997,-73.94931,"(40.790997, -73.94931)",EAST 103 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4505060,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,21:55,BROOKLYN,11215,40.658287,-73.99134,"(40.658287, -73.99134)",,,310 23 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4504611,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/21/2022,16:30,QUEENS,11433,40.69182,-73.78779,"(40.69182, -73.78779)",111 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504688,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,5:00,QUEENS,11365,,,,167 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505158,Sedan,,,, +02/15/2022,0:00,QUEENS,11694,40.57799,-73.8354,"(40.57799, -73.8354)",,,115-02 OCEAN PROMENADE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4504982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,5:30,QUEENS,11422,40.636112,-73.7403,"(40.636112, -73.7403)",ROCKAWAY BOULEVARD,MEYER AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4504476,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/16/2022,16:30,BROOKLYN,11238,40.680798,-73.958405,"(40.680798, -73.958405)",CLASSON AVENUE,LEFFERTS PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4505039,Sedan,Sedan,,, +02/21/2022,16:00,BROOKLYN,11207,40.667835,-73.889984,"(40.667835, -73.889984)",,,521 MILLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504591,Sedan,,,, +01/23/2022,17:30,QUEENS,11692,40.59176,-73.79705,"(40.59176, -73.79705)",,,320 BEACH 68 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4505011,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,22:34,BRONX,10472,40.826786,-73.87591,"(40.826786, -73.87591)",,,1101 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504944,Sedan,government,,, +02/21/2022,13:23,,,40.61751,-74.15156,"(40.61751, -74.15156)",WILLOW ROAD EAST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504857,Sedan,Sedan,,, +02/07/2022,9:09,,,40.71713,-73.7986,"(40.71713, -73.7986)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4505159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,7:59,,,,,,MANHATTAN BR LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473511,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,18:25,,,,,,Canarsie Veterans Circle,Rockaway Parkway,,0,0,0,0,0,0,0,0,,,,,,4497602,,,,, +04/13/2022,15:50,,,40.687016,-73.77487,"(40.687016, -73.77487)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4518991,Motorcycle,,,, +07/28/2021,6:10,,,,,,CROSS BAY BOULEVARD,NORTH CHANNEL BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444868,Sedan,,,, +07/06/2022,11:39,BROOKLYN,11234,,,,,,1714 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545101,Sedan,,,, +06/20/2022,16:45,QUEENS,11412,40.694973,-73.76759,"(40.694973, -73.76759)",DUNKIRK STREET,ROME DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4539302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2022,11:57,QUEENS,11106,40.764256,-73.923294,"(40.764256, -73.923294)",,,31-10 31 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4540953,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/01/2022,22:00,QUEENS,11417,,,,CENTREVILLE AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4543135,Sedan,,,, +06/16/2022,7:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4543820,Sedan,Sedan,,, +06/24/2022,12:00,BROOKLYN,11224,40.578987,-73.97531,"(40.578987, -73.97531)",,,626 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4543943,Sedan,,,, +07/03/2022,13:30,BRONX,10462,40.84274,-73.854485,"(40.84274, -73.854485)",,,1514 BRONXDALE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544141,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/08/2022,11:25,QUEENS,11373,40.735012,-73.86625,"(40.735012, -73.86625)",,,94-31 59 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544941,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,19:00,QUEENS,11434,40.670494,-73.78359,"(40.670494, -73.78359)",ROCKAWAY BOULEVARD,133 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4544059,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,10:35,,,40.69309,-73.94296,"(40.69309, -73.94296)",PULASKI STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4544921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2022,11:35,MANHATTAN,10027,40.808105,-73.952675,"(40.808105, -73.952675)",,,2268 8 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544575,Box Truck,,,, +07/04/2022,23:08,,,40.71181,-73.78785,"(40.71181, -73.78785)",175 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545171,Sedan,,,, +07/06/2022,22:30,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4544136,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/07/2022,23:08,MANHATTAN,10038,40.708843,-74.00251,"(40.708843, -74.00251)",PECK SLIP,PEARL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544700,Bus,Sedan,,, +07/05/2022,5:20,MANHATTAN,10012,40.721172,-73.99658,"(40.721172, -73.99658)",KENMARE STREET,MULBERRY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4544557,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/07/2022,16:37,QUEENS,11366,40.73197,-73.78651,"(40.73197, -73.78651)",184 STREET,73 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544543,Station Wagon/Sport Utility Vehicle,Bus,,, +07/04/2022,4:05,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4544920,Sedan,Garbage or Refuse,,, +07/07/2022,17:13,BRONX,10469,40.86516,-73.84076,"(40.86516, -73.84076)",MICKLE AVENUE,ALLERTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544459,Sedan,Moped,,, +07/06/2022,12:10,QUEENS,11355,40.756317,-73.83369,"(40.756317, -73.83369)",COLLEGE POINT BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Backing Unsafely,,,,4544754,Sedan,garbage tr,,, +07/08/2022,19:45,,,40.71576,-73.74655,"(40.71576, -73.74655)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544685,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,5:15,BRONX,10471,40.909607,-73.8987,"(40.909607, -73.8987)",WEST 261 STREET,SPENCER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544444,Sedan,,,, +07/05/2022,13:32,,,40.593994,-73.98072,"(40.593994, -73.98072)",AVENUE V,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545203,Tow Truck / Wrecker,E-Bike,,, +08/06/2021,14:51,,,,,,SHORE PARKWAY,BAY PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444984,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,2:07,,,,,,GRAND CENTRAL PARKWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497732,Sedan,,,, +10/21/2021,21:00,MANHATTAN,10033,,,,WEST 179 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474023,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,17:55,,,40.59121,-74.1651,"(40.59121, -74.1651)",,,2325 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544818,Sedan,Sedan,,, +07/06/2022,21:20,STATEN ISLAND,10306,40.562134,-74.11819,"(40.562134, -74.11819)",OAK AVENUE,HYLAN BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4544968,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,1:00,BRONX,10463,,,,,,3611 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544105,Sedan,,,, +07/08/2022,0:05,BROOKLYN,11226,40.647125,-73.9615,"(40.647125, -73.9615)",,,1900 ALBEMARLE ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544702,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,9:50,,,,,,NEW ENGLAND THRUWAY,PELHAM BAY PARK,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544562,Taxi,,,, +07/05/2022,0:00,,,40.755398,-73.77654,"(40.755398, -73.77654)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544618,Sedan,Sedan,,, +07/06/2022,9:35,BROOKLYN,11203,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544320,Sedan,Sedan,,, +07/08/2022,21:07,BRONX,10461,40.835827,-73.828804,"(40.835827, -73.828804)",EDISON AVENUE,BAISLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544762,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/08/2022,15:50,MANHATTAN,10036,40.756035,-73.98695,"(40.756035, -73.98695)",WEST 42 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544861,Sedan,Sedan,,, +07/08/2022,18:03,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4545173,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,23:30,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544180,Tractor Truck Diesel,Sedan,,, +07/04/2022,1:53,BROOKLYN,11216,40.676094,-73.94992,"(40.676094, -73.94992)",NOSTRAND AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544990,Taxi,Garbage or Refuse,,, +07/07/2022,21:00,QUEENS,11413,40.669125,-73.74369,"(40.669125, -73.74369)",230 PLACE,139 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544413,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,14:30,BRONX,10453,40.860317,-73.90937,"(40.860317, -73.90937)",,,111 WEST 183 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544486,Sedan,,,, +07/07/2022,13:38,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544518,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,12:15,QUEENS,11101,40.75245,-73.94507,"(40.75245, -73.94507)",13 STREET,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545137,Sedan,Box Truck,,, +07/06/2022,4:50,MANHATTAN,10035,40.805042,-73.936935,"(40.805042, -73.936935)",LEXINGTON AVENUE,EAST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543823,Sedan,,,, +07/02/2022,21:30,BRONX,10462,40.83313,-73.85765,"(40.83313, -73.85765)",,,1275 PUGSLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544659,Sedan,,,, +07/07/2022,0:10,QUEENS,11428,40.728733,-73.73717,"(40.728733, -73.73717)",WINCHESTER BOULEVARD,BRADDOCK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544191,Sedan,,,, +07/07/2022,18:30,,,,,,STILLWELL AVENUE,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4544457,Sedan,,,, +07/08/2022,14:40,BROOKLYN,11220,40.611366,-74.03488,"(40.611366, -74.03488)",4 AVENUE,SHORE ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544650,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,19:45,BROOKLYN,11226,40.643246,-73.94877,"(40.643246, -73.94877)",CLARENDON ROAD,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544746,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2022,10:44,MANHATTAN,10029,40.786175,-73.9457,"(40.786175, -73.9457)",EAST 99 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544904,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,16:00,BRONX,10458,40.854366,-73.88437,"(40.854366, -73.88437)",,,2405 BEAUMONT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544479,Sedan,,,, +07/08/2022,16:25,MANHATTAN,10001,40.75219,-73.99347,"(40.75219, -73.99347)",8 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,2:00,,,40.59907,-73.90498,"(40.59907, -73.90498)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4544386,Sedan,Sedan,,, +07/06/2022,20:20,,,40.668125,-73.90358,"(40.668125, -73.90358)",SUTTER AVENUE,,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544880,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/06/2022,8:40,QUEENS,11369,40.768127,-73.87625,"(40.768127, -73.87625)",94 STREET,23 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543865,Sedan,,,, +07/07/2022,19:50,BRONX,10459,40.82097,-73.892296,"(40.82097, -73.892296)",,,1022 EAST 163 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4544595,,,,, +11/02/2021,19:23,BRONX,10460,40.836685,-73.8889,"(40.836685, -73.8889)",,,1698 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4474136,Sedan,,,, +07/07/2022,13:15,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",WESTCHESTER AVENUE,LONGFELLOW AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4544594,Sedan,Bus,,, +07/06/2022,20:53,BROOKLYN,11238,40.68798,-73.9678,"(40.68798, -73.9678)",CLINTON AVENUE,LAFAYETTE AVENUE,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544030,Bike,Sedan,,, +07/06/2022,17:15,,,,,,MC KENNY SQUARE,DOUGHTY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544812,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,6:00,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4544244,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,18:43,QUEENS,11427,40.73347,-73.73614,"(40.73347, -73.73614)",HILLSIDE AVENUE,234 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544730,Bus,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,20:51,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4545066,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,0:40,BROOKLYN,11210,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544692,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,23:40,,,40.759197,-73.98463,"(40.759197, -73.98463)",WEST 47 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4545026,Bike,,,, +07/07/2022,17:15,BROOKLYN,11236,40.63013,-73.89727,"(40.63013, -73.89727)",,,1451 EAST 88 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545146,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,14:08,QUEENS,11385,40.713917,-73.92265,"(40.713917, -73.92265)",,,46-40 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4544550,Box Truck,Motorcycle,,, +06/10/2022,2:10,QUEENS,11368,40.753994,-73.8687,"(40.753994, -73.8687)",,,99-11 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544788,Sedan,Sedan,,, +07/08/2022,0:01,,,40.706966,-73.75283,"(40.706966, -73.75283)",HOLLIS AVENUE,205 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4544973,Sedan,,,, +07/07/2022,17:40,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544332,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/08/2022,14:00,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4544614,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,8:40,STATEN ISLAND,10309,40.522366,-74.21674,"(40.522366, -74.21674)",PENTON STREET,AMBOY ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544364,Sedan,,,, +07/06/2022,14:28,BROOKLYN,11238,40.674,-73.960396,"(40.674, -73.960396)",CLASSON AVENUE,STERLING PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4543996,Sedan,Sedan,,, +07/08/2022,11:02,,,40.703857,-73.91851,"(40.703857, -73.91851)",STOCKHOLM STREET,,,5,0,1,0,0,0,4,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4545217,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/07/2022,19:50,STATEN ISLAND,10310,40.63573,-74.10676,"(40.63573, -74.10676)",BARD AVENUE,SOUTH SAINT AUSTINS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4545055,Sedan,Sedan,Sedan,, +10/21/2021,19:07,,,40.7498974,-73.7743569,"(40.7498974, -73.7743569)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469748,Sedan,Sedan,,, +07/06/2022,5:30,QUEENS,11385,40.70178,-73.88283,"(40.70178, -73.88283)",MYRTLE AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4543918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +06/14/2022,7:00,,,40.771328,-73.90391,"(40.771328, -73.90391)",DITMARS BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544498,E-Scooter,,,, +07/04/2022,16:30,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",VERNON BOULEVARD,36 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544511,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,16:30,BRONX,10469,,,,GRACE AVENUE,HAMMERSLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544782,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,16:20,,,40.7434356,-73.775465,"(40.7434356, -73.775465)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4469755,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/22/2021,6:05,,,40.6803893,-73.8046539,"(40.6803893, -73.8046539)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469757,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,11:56,,,40.80275,-73.93358,"(40.80275, -73.93358)",2 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497847,Concrete Mixer,Taxi,,, +07/31/2021,14:30,BROOKLYN,11230,40.634468,-73.967415,"(40.634468, -73.967415)",CONEY ISLAND AVENUE,WEBSTER AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4442318,Sedan,Sedan,,, +08/02/2021,17:30,BROOKLYN,11215,40.670727,-73.98948,"(40.670727, -73.98948)",,,225 9 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4443530,Sedan,E-Bike,,, +07/29/2021,10:25,STATEN ISLAND,10304,40.61816,-74.08492,"(40.61816, -74.08492)",TARGEE STREET,WAVERLY PLACE,,0,1,0,0,0,0,0,1,Driver Inexperience,Unspecified,,,,4444034,Motorcycle,,,, +08/05/2021,15:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4445171,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/24/2021,14:50,MANHATTAN,10012,40.72195,-73.99628,"(40.72195, -73.99628)",MULBERRY STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445167,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,9:00,,,40.720432,-73.99987,"(40.720432, -73.99987)",CROSBY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445166,Sedan,,,, +06/23/2022,10:00,QUEENS,11104,40.74576,-73.92581,"(40.74576, -73.92581)",39 STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4544530,Sedan,Box Truck,,, +07/08/2022,0:00,MANHATTAN,10001,40.744957,-73.99373,"(40.744957, -73.99373)",,,170 WEST 25 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544835,Sedan,Motorcycle,,, +07/08/2022,15:30,,,40.758633,-73.96579,"(40.758633, -73.96579)",2 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544646,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,16:39,,,,,,BERGEN STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4543986,Sedan,Bike,,, +07/06/2022,13:45,,,40.753468,-73.91355,"(40.753468, -73.91355)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4543919,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/06/2022,18:30,QUEENS,11419,40.693348,-73.830536,"(40.693348, -73.830536)",ATLANTIC AVENUE,116 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544467,PK,Sedan,Station Wagon/Sport Utility Vehicle,, +10/21/2021,11:45,,,40.7542707,-73.7433337,"(40.7542707, -73.7433337)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469769,Box Truck,Sedan,,, +07/08/2022,9:00,BRONX,10463,40.87831,-73.90523,"(40.87831, -73.90523)",BROADWAY,VERVEELEN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544599,Box Truck,,,, +07/06/2022,7:40,MANHATTAN,10027,40.810844,-73.95281,"(40.810844, -73.95281)",,,350 WEST 125 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4544022,Sedan,Pick-up Truck,Trailor,, +07/07/2022,21:00,QUEENS,11379,40.725307,-73.878586,"(40.725307, -73.878586)",,,80-11 ELIOT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545089,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,16:15,,,40.5564645,-74.2077693,"(40.5564645, -74.2077693)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469774,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,8:18,QUEENS,11360,40.783566,-73.77733,"(40.783566, -73.77733)",BELL BOULEVARD,18 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543888,Sedan,Flat Bed,,, +10/22/2021,7:00,,,40.7633517,-73.7579043,"(40.7633517, -73.7579043)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4469776,Motorcycle,,,, +06/20/2022,14:00,BROOKLYN,11212,40.665085,-73.90958,"(40.665085, -73.90958)",,,582 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544844,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,13:18,STATEN ISLAND,10307,40.5119,-74.24963,"(40.5119, -74.24963)",,,116 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544362,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,14:25,,,,,,FOREST AVENUE,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545074,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,8:25,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545224,Tractor Truck Diesel,Sedan,,, +07/05/2022,14:30,QUEENS,11373,40.733307,-73.88838,"(40.733307, -73.88838)",,,52-05 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544582,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,0:00,,,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4544737,Sedan,Sedan,,, +07/06/2022,9:50,,,40.8178,-73.9456,"(40.8178, -73.9456)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing Too Closely,,,,4544173,Sedan,Sedan,,, +07/06/2022,19:36,BROOKLYN,11212,40.661713,-73.903824,"(40.661713, -73.903824)",RIVERDALE AVENUE,CHRISTOPHER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544866,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,5:10,,,40.78941,-73.847984,"(40.78941, -73.847984)",120 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Failure to Yield Right-of-Way,Unspecified,,,4444583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,0:01,,,40.840874,-73.91979,"(40.840874, -73.91979)",WEST 170 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445025,Sedan,Bike,,, +08/04/2021,18:59,,,40.81438,-73.89623,"(40.81438, -73.89623)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Cell Phone (hand-Held),Unspecified,Unspecified,,,4443775,Sedan,Sedan,Sedan,, +08/05/2021,6:20,QUEENS,11693,40.5861,-73.81856,"(40.5861, -73.81856)",ROCKAWAY FREEWAY,BEACH 96 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444866,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,12:45,QUEENS,11102,40.772987,-73.9164,"(40.772987, -73.9164)",29 STREET,24 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4444552,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,16:40,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4444239,Pick-up Truck,Sedan,Sedan,, +05/23/2021,16:38,,,40.681503,-73.904106,"(40.681503, -73.904106)",BUSHWICK AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444791,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,9:40,BRONX,10451,40.813313,-73.92288,"(40.813313, -73.92288)",EAST 143 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443819,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/05/2021,21:04,BROOKLYN,11236,40.644016,-73.90803,"(40.644016, -73.90803)",EAST 92 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444353,Sedan,Sedan,Sedan,, +08/05/2021,9:00,,,,,,CORNAGA AVENUE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444221,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,20:45,MANHATTAN,10018,40.754333,-73.99268,"(40.754333, -73.99268)",,,308 WEST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444910,Sedan,,,, +08/06/2021,9:30,BRONX,10458,40.857006,-73.88632,"(40.857006, -73.88632)",,,2466 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445054,Sedan,Sedan,,, +08/06/2021,4:30,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",GRAND CONCOURSE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444207,Sedan,Box Truck,,, +08/05/2021,12:00,QUEENS,11101,40.755013,-73.93434,"(40.755013, -73.93434)",28 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4444551,Sedan,Sedan,Sedan,, +08/05/2021,15:00,QUEENS,11101,40.746494,-73.932274,"(40.746494, -73.932274)",SKILLMAN AVENUE,32 PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4444074,Taxi,Bike,,, +08/03/2021,16:48,,,40.69925,-73.973206,"(40.69925, -73.973206)",7 AVENUE,6 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445027,Sedan,Bike,,, +08/06/2021,4:50,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444392,Sedan,,,, +08/06/2021,10:45,BRONX,10452,40.83609,-73.92926,"(40.83609, -73.92926)",UNIVERSITY AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444342,Sedan,Tractor Truck Diesel,,, +08/05/2021,0:45,BRONX,10469,40.874702,-73.85803,"(40.874702, -73.85803)",PAULDING AVENUE,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4444055,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:25,,,40.67476,-73.79884,"(40.67476, -73.79884)",142 STREET,123 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4445128,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,11:50,QUEENS,11378,40.725273,-73.90731,"(40.725273, -73.90731)",,,59-20 56 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444818,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,21:15,QUEENS,11691,40.604046,-73.756996,"(40.604046, -73.756996)",GRASSMERE TERRACE,REGINA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4444436,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,17:03,MANHATTAN,10003,40.7344,-73.991936,"(40.7344, -73.991936)",,,39 EAST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444634,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,0:00,,,,,,LINDEN BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443801,Sedan,Sedan,Sedan,, +08/05/2021,19:10,QUEENS,11435,40.70058,-73.80775,"(40.70058, -73.80775)",SUTPHIN BOULEVARD,ARCHER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444355,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,14:55,BROOKLYN,11212,40.664436,-73.902626,"(40.664436, -73.902626)",,,365 POWELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,22:33,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443942,Sedan,,,, +08/06/2021,15:16,,,40.68987,-73.988304,"(40.68987, -73.988304)",SCHERMERHORN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444397,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/04/2021,22:30,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4444795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,5:41,QUEENS,11436,40.677055,-73.798485,"(40.677055, -73.798485)",119 ROAD,142 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4443839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/06/2021,17:00,BROOKLYN,11224,40.579918,-73.973625,"(40.579918, -73.973625)",,,525 NEPTUNE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444662,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,11:00,MANHATTAN,10032,40.837193,-73.9367,"(40.837193, -73.9367)",WEST 165 STREET,EDGECOMBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544910,Sedan,,,, +08/05/2021,11:00,,,40.795464,-73.96381,"(40.795464, -73.96381)",WEST 101 STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4444024,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,16:05,BROOKLYN,11213,40.67243,-73.93211,"(40.67243, -73.93211)",,,1368 PARK PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444130,Sedan,Sedan,,, +08/06/2021,0:45,MANHATTAN,10128,40.78519,-73.94934,"(40.78519, -73.94934)",EAST 96 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4444179,Sedan,Bike,,, +08/05/2021,19:38,,,40.68137,-73.94063,"(40.68137, -73.94063)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Other Vehicular,Other Vehicular,,4444750,Sedan,Sedan,Pick-up Truck,Sedan, +08/04/2021,6:30,QUEENS,11357,40.786907,-73.812935,"(40.786907, -73.812935)",CROSS ISLAND PARKWAY,MURRAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443573,Sedan,,,, +07/28/2021,20:15,,,40.67973,-73.9374,"(40.67973, -73.9374)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444973,E-Bike,,,, +08/06/2021,12:17,MANHATTAN,10019,40.7642,-73.98872,"(40.7642, -73.98872)",,,350 WEST 51 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444323,PK,Taxi,Station Wagon/Sport Utility Vehicle,, +08/04/2021,17:15,,,40.783268,-73.82485,"(40.783268, -73.82485)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4443845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,16:10,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4444071,Taxi,,,, +08/05/2021,20:30,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,18:35,,,40.84105,-73.94469,"(40.84105, -73.94469)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4444983,Sedan,,,, +08/05/2021,23:34,BRONX,10455,40.812496,-73.90283,"(40.812496, -73.90283)",,,580 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4444314,Sedan,Sedan,Sedan,, +08/06/2021,11:20,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444605,Sedan,,,, +08/06/2021,16:00,BRONX,10474,40.820503,-73.8881,"(40.820503, -73.8881)",GARRISON AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,11:55,QUEENS,11103,40.76958,-73.9156,"(40.76958, -73.9156)",,,34-16 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444523,Sedan,Chassis Cab,,, +08/05/2021,20:30,QUEENS,11413,40.661934,-73.76048,"(40.661934, -73.76048)",SPRINGFIELD BOULEVARD,146 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444105,Sedan,,,, +08/06/2021,21:30,,,40.644142,-73.957924,"(40.644142, -73.957924)",CORTELYOU ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444652,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,13:00,,,,,,DEXTER COURT,CYPRESS CEMENTARY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443992,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,14:25,STATEN ISLAND,10309,40.54505,-74.21931,"(40.54505, -74.21931)",BLOOMINGDALE ROAD,CORRELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444502,Sedan,,,, +07/27/2021,13:00,,,40.676693,-73.917404,"(40.676693, -73.917404)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4444944,Sedan,,,, +08/04/2021,4:50,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4443609,Tractor Truck Diesel,Sedan,,, +08/06/2021,10:00,BROOKLYN,11207,40.654484,-73.886536,"(40.654484, -73.886536)",COZINE AVENUE,NEW JERSEY AVENUE,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4444259,Van,Sedan,,, +08/05/2021,21:30,BROOKLYN,11208,40.678272,-73.869995,"(40.678272, -73.869995)",,,1062 LIBERTY AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4444258,Sedan,Bike,,, +08/04/2021,12:30,QUEENS,11104,40.740437,-73.92304,"(40.740437, -73.92304)",42 STREET,GREENPOINT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443744,Motorcycle,Bike,,, +07/08/2022,19:22,BROOKLYN,11206,40.703606,-73.93791,"(40.703606, -73.93791)",,,389 BUSHWICK AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545037,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/04/2021,6:21,MANHATTAN,10065,40.761993,-73.961784,"(40.761993, -73.961784)",,,329 EAST 62 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing Too Closely,Unspecified,,,4443882,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/03/2021,15:39,MANHATTAN,10022,40.754818,-73.96455,"(40.754818, -73.96455)",,,424 EAST 52 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4444374,Sedan,,,, +08/06/2021,19:30,QUEENS,11368,40.75349,-73.86359,"(40.75349, -73.86359)",104 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444843,Sedan,E-Bike,,, +08/02/2021,8:45,MANHATTAN,10023,,,,Riverside Dr,West 74th Street,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4444711,Sedan,E-Scooter,,, +08/04/2021,13:20,MANHATTAN,10033,40.848736,-73.93234,"(40.848736, -73.93234)",AUDUBON AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,15:10,QUEENS,11368,40.747498,-73.853615,"(40.747498, -73.853615)",111 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444872,Sedan,,,, +07/25/2021,17:00,MANHATTAN,10026,40.79968,-73.95586,"(40.79968, -73.95586)",,,207 WEST 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444681,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,19:00,BROOKLYN,11216,40.688774,-73.9479,"(40.688774, -73.9479)",MARCY AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444762,Sedan,,,, +07/30/2021,10:00,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,18:50,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4445150,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/05/2021,12:00,,,40.845024,-73.92632,"(40.845024, -73.92632)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444214,Tractor Truck Diesel,Tractor Truck Diesel,,, +08/06/2021,18:40,BROOKLYN,11206,40.709015,-73.94855,"(40.709015, -73.94855)",LORIMER STREET,STAGG STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4444412,Moped,,,, +08/04/2021,16:00,STATEN ISLAND,10306,40.569588,-74.11064,"(40.569588, -74.11064)",,,2546 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4443901,Station Wagon/Sport Utility Vehicle,Bike,,, +08/04/2021,19:03,,,40.736958,-74.00826,"(40.736958, -74.00826)",BETHUNE STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4445107,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,14:28,BROOKLYN,11226,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,PARADE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,15:23,,,40.601696,-74.12518,"(40.601696, -74.12518)",HAROLD STREET,MOUNTAINVIEW AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,7:50,,,40.882393,-73.83623,"(40.882393, -73.83623)",BOLLER AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443950,Sedan,Sedan,,, +08/06/2021,8:45,,,40.583733,-73.91969,"(40.583733, -73.91969)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444278,Sedan,Sedan,,, +08/03/2021,7:26,MANHATTAN,10128,40.782005,-73.95167,"(40.782005, -73.95167)",3 AVENUE,EAST 91 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4445034,Sedan,Tractor Truck Diesel,,, +08/05/2021,11:00,BRONX,10458,40.85391,-73.88364,"(40.85391, -73.88364)",EAST 187 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443966,Sedan,Taxi,,, +08/04/2021,14:31,QUEENS,11428,40.726562,-73.74125,"(40.726562, -73.74125)",,,90-10 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443714,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,12:20,QUEENS,11385,0,0,"(0.0, 0.0)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4444824,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,11:00,BROOKLYN,11212,40.663235,-73.90442,"(40.663235, -73.90442)",,,305 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444696,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,17:20,,,40.610256,-74.13232,"(40.610256, -74.13232)",BRADLEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444904,Sedan,Sedan,,, +08/06/2021,13:13,QUEENS,11413,40.682987,-73.75459,"(40.682987, -73.75459)",WILLIAMSON AVENUE,LUCAS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444291,Sedan,,,, +08/04/2021,10:30,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443673,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,15:46,BROOKLYN,11225,40.663284,-73.96096,"(40.663284, -73.96096)",WASHINGTON AVENUE,EMPIRE BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445001,Sedan,Motorcycle,,, +08/05/2021,20:28,QUEENS,11377,40.75321,-73.90782,"(40.75321, -73.90782)",,,51-31 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4444147,Sedan,Open Body,,, +08/04/2021,20:42,,,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4444169,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/06/2021,6:20,QUEENS,11368,40.746098,-73.866425,"(40.746098, -73.866425)",43 AVENUE,97 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444194,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,17:30,BROOKLYN,11239,40.652878,-73.87706,"(40.652878, -73.87706)",,,410 GATEWAY DRIVE,1,0,0,0,1,0,0,0,Unspecified,,,,,4444453,Sedan,Bike,,, +08/05/2021,13:50,MANHATTAN,10032,40.83427,-73.94537,"(40.83427, -73.94537)",MORGAN PLACE,WEST 157 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4444310,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,11:55,QUEENS,11435,40.700848,-73.80998,"(40.700848, -73.80998)",,,144-31 91 AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4443696,Station Wagon/Sport Utility Vehicle,Bus,,, +08/04/2021,10:35,STATEN ISLAND,10305,40.595036,-74.06611,"(40.595036, -74.06611)",,,64 AUSTIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443674,Sedan,,,, +08/06/2021,8:27,BRONX,10469,40.871162,-73.85214,"(40.871162, -73.85214)",,,1210 BURKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444597,Sedan,,,, +08/05/2021,17:43,MANHATTAN,10029,40.787525,-73.94887,"(40.787525, -73.94887)",,,169 EAST 99 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444082,Sedan,,,, +08/05/2021,19:20,STATEN ISLAND,10306,40.560074,-74.10733,"(40.560074, -74.10733)",FINLEY AVENUE,NAVESINK PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,10:05,BRONX,10474,40.82114,-73.88649,"(40.82114, -73.88649)",,,1339 GARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443733,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,16:35,,,40.6972,-73.952934,"(40.6972, -73.952934)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444724,Sedan,Sedan,,, +08/04/2021,0:35,BRONX,10472,40.83211,-73.862335,"(40.83211, -73.862335)",,,1272 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,21:00,,,40.6993,-73.91361,"(40.6993, -73.91361)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444460,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,0:00,,,40.715622,-73.99428,"(40.715622, -73.99428)",CANAL STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4443965,Station Wagon/Sport Utility Vehicle,Bike,,, +08/06/2021,6:03,BROOKLYN,11212,40.662663,-73.902145,"(40.662663, -73.902145)",,,473 POWELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444715,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,15:05,,,,,,,,55-37 55 STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4444828,Sedan,,,, +08/06/2021,4:20,,,40.708427,-73.780556,"(40.708427, -73.780556)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444246,Sedan,,,, +08/06/2021,14:30,BROOKLYN,11236,40.64165,-73.90378,"(40.64165, -73.90378)",EAST 93 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444378,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,12:20,BROOKLYN,11210,40.636826,-73.95099,"(40.636826, -73.95099)",,,1355 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443834,E-Bike,,,, +08/06/2021,8:30,BRONX,10467,40.884388,-73.87997,"(40.884388, -73.87997)",JEROME AVENUE,EAST 212 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444490,PK,,,, +07/30/2021,7:00,BRONX,10468,40.863537,-73.897575,"(40.863537, -73.897575)",,,2534 CRESTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444530,Taxi,,,, +08/03/2021,16:30,,,40.62678,-74.1629,"(40.62678, -74.1629)",,,2196 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444901,Sedan,,,, +08/05/2021,19:02,BROOKLYN,11219,40.633358,-73.98482,"(40.633358, -73.98482)",,,1553 46 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,8:50,BROOKLYN,11212,40.67066,-73.904205,"(40.67066, -73.904205)",POWELL STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444689,Sedan,,,, +08/01/2021,18:30,BROOKLYN,11221,40.686695,-73.91717,"(40.686695, -73.91717)",,,1520 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444775,Sedan,,,, +07/31/2021,17:30,QUEENS,11372,40.75507,-73.89002,"(40.75507, -73.89002)",77 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444853,Sedan,Sedan,,, +08/04/2021,16:38,,,40.678234,-73.89753,"(40.678234, -73.89753)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443853,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,2:05,QUEENS,11413,40.6755,-73.73864,"(40.6755, -73.73864)",MERRICK BOULEVARD,231 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4444218,Sedan,Sedan,,, +08/03/2021,21:05,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445118,Bike,,,, +07/30/2021,12:00,BROOKLYN,11212,40.66137,-73.90609,"(40.66137, -73.90609)",,,280 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444231,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,5:30,MANHATTAN,10017,40.751984,-73.967545,"(40.751984, -73.967545)",,,845 UN PLAZA,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443984,Sedan,,,, +08/06/2021,21:20,BROOKLYN,11234,40.621834,-73.919464,"(40.621834, -73.919464)",EAST 58 STREET,AVENUE M,,3,0,0,0,0,0,3,0,Unspecified,,,,,4444416,Taxi,,,, +08/06/2021,15:30,QUEENS,11428,40.715218,-73.74899,"(40.715218, -73.74899)",,,211-10 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444334,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,18:49,QUEENS,11369,40.75842,-73.87159,"(40.75842, -73.87159)",,,32-14 97 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443906,Bike,Sedan,,, +07/18/2021,11:40,,,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444880,Bike,Sedan,,, +08/05/2021,21:10,BROOKLYN,11215,40.66551,-73.992775,"(40.66551, -73.992775)",4 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445039,Sedan,Sedan,,, +07/31/2021,6:35,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444440,Sedan,Sedan,,, +08/06/2021,23:00,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444566,Taxi,Sedan,,, +08/02/2021,13:00,BROOKLYN,11233,40.67715,-73.92559,"(40.67715, -73.92559)",,,1825 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444923,Sedan,,,, +08/05/2021,13:30,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443973,Sedan,,,, +08/04/2021,8:07,BRONX,10460,40.83582,-73.88753,"(40.83582, -73.88753)",,,1569 HOE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443663,Sedan,Sedan,,, +08/06/2021,13:05,,,40.72948,-73.9721,"(40.72948, -73.9721)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,Following Too Closely,,,4444295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/18/2021,18:15,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444963,Sedan,Sedan,Sedan,, +08/04/2021,14:15,QUEENS,11369,40.76041,-73.87485,"(40.76041, -73.87485)",31 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443722,Taxi,,,, +08/04/2021,10:30,MANHATTAN,10009,40.72926,-73.977615,"(40.72926, -73.977615)",,,605 EAST 14 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4443806,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,23:59,QUEENS,11103,40.764267,-73.9158,"(40.764267, -73.9158)",30 AVENUE,38 STREET,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4444515,Sedan,Sedan,,, +08/05/2021,10:30,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444141,Box Truck,Sedan,,, +07/29/2021,10:50,BROOKLYN,11221,40.68723,-73.941795,"(40.68723, -73.941795)",THROOP AVENUE,GATES AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444810,Sedan,E-Scooter,,, +08/06/2021,20:00,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4444988,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,13:50,QUEENS,11412,40.690224,-73.762215,"(40.690224, -73.762215)",FARMERS BOULEVARD,118 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444290,Sedan,,,, +08/04/2021,8:00,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444199,Sedan,,,, +08/05/2021,0:17,STATEN ISLAND,10308,40.550434,-74.13608,"(40.550434, -74.13608)",HYLAN BOULEVARD,AINSWORTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443900,Sedan,,,, +08/05/2021,13:11,,,40.683723,-73.96797,"(40.683723, -73.96797)",VANDERBILT AVENUE,,,2,0,0,0,1,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4444043,Sedan,E-Bike,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +08/05/2021,21:00,QUEENS,11420,40.666332,-73.81056,"(40.666332, -73.81056)",SOUTH CONDUIT AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444148,Sedan,E-Scooter,,, +08/06/2021,14:00,BROOKLYN,11225,40.665825,-73.94811,"(40.665825, -73.94811)",,,402 NEW YORK AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4444322,Sedan,Sedan,,, +08/04/2021,14:30,BROOKLYN,11226,40.65081,-73.9493,"(40.65081, -73.9493)",,,3018 CHURCH AVENUE,0,0,0,0,0,0,0,0,Illnes,,,,,4443746,Sedan,,,, +08/04/2021,17:29,,,40.766617,-73.98667,"(40.766617, -73.98667)",9 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4444190,Sedan,Box Truck,,, +08/04/2021,19:40,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,16:00,QUEENS,11375,40.720165,-73.844795,"(40.720165, -73.844795)",AUSTIN STREET,71 AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4444092,Sedan,,,, +08/04/2021,1:15,,,,,,,,25-18 HUMPHERYS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,1:41,BRONX,10461,40.856045,-73.85249,"(40.856045, -73.85249)",TENBROECK AVENUE,LYDIG AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444019,Sedan,Sedan,,, +08/06/2021,13:30,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",FARMERS BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444349,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,17:20,BROOKLYN,11219,40.641808,-73.99429,"(40.641808, -73.99429)",NEW UTRECHT AVENUE,43 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445084,Sedan,Sedan,,, +06/11/2021,7:35,,,40.6958,-73.99824,"(40.6958, -73.99824)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4444366,Motorcycle,,,, +08/04/2021,23:37,QUEENS,11420,40.667675,-73.80264,"(40.667675, -73.80264)",135 AVENUE,135 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4443921,Sedan,Tow,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/31/2021,14:09,BROOKLYN,11233,40.670868,-73.9198,"(40.670868, -73.9198)",HOWARD AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4444781,Sedan,,,, +08/01/2021,12:38,QUEENS,11379,40.725086,-73.87901,"(40.725086, -73.87901)",,,80-10 ELIOT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444832,Station Wagon/Sport Utility Vehicle,Bike,,, +08/04/2021,15:40,,,40.83394,-73.9087,"(40.83394, -73.9087)",WEBSTER AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Aggressive Driving/Road Rage,,,,4443956,Taxi,Moped,,, +08/03/2021,16:55,MANHATTAN,10006,40.711033,-74.01454,"(40.711033, -74.01454)",WEST STREET,LIBERTY STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4444495,Sedan,Pick-up Truck,,, +08/05/2021,19:16,MANHATTAN,10007,40.712093,-74.00835,"(40.712093, -74.00835)",,,2 BARCLAY STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444317,Sedan,E-Scooter,,, +08/05/2021,14:00,MANHATTAN,10019,40.765728,-73.98359,"(40.765728, -73.98359)",,,938 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,23:30,BROOKLYN,11207,40.67811,-73.89762,"(40.67811, -73.89762)",JAMAICA AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444250,Sedan,,,, +08/05/2021,2:15,,,40.77077,-73.91727,"(40.77077, -73.91727)",HOYT AVENUE NORTH,31 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444538,Sedan,Sedan,,, +08/04/2021,19:11,QUEENS,11434,40.681973,-73.766304,"(40.681973, -73.766304)",MERRICK BOULEVARD,126 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4444005,PK,,,, +08/05/2021,18:42,QUEENS,11354,40.757183,-73.83396,"(40.757183, -73.83396)",COLLEGE POINT BOULEVARD,40 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444584,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,15:10,BROOKLYN,11213,40.66837,-73.94091,"(40.66837, -73.94091)",,,1474 UNION STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4444078,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,18:03,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4444359,Sedan,Sedan,,, +08/02/2021,15:20,,,40.585884,-74.15994,"(40.585884, -74.15994)",,,96 ROCKNE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444897,Sedan,Sedan,,, +08/04/2021,17:00,MANHATTAN,10038,40.708843,-74.00251,"(40.708843, -74.00251)",PEARL STREET,PECK SLIP,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443824,NYS AMBULA,Sedan,,, +08/05/2021,15:00,QUEENS,11372,40.749775,-73.88411,"(40.749775, -73.88411)",,,82-11 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444060,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,18:05,MANHATTAN,10018,40.75437,-73.98703,"(40.75437, -73.98703)",,,136 WEST 40 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4443848,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,16:20,BROOKLYN,11232,40.65716,-74.003136,"(40.65716, -74.003136)",,,132 32 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4444388,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,22:05,MANHATTAN,10037,40.810856,-73.939026,"(40.810856, -73.939026)",5 AVENUE,WEST 132 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4445123,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,3:19,,,40.850845,-73.87146,"(40.850845, -73.87146)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Tire Failure/Inadequate,Following Too Closely,,,,4444222,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,10:35,MANHATTAN,10031,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444467,Moped,Station Wagon/Sport Utility Vehicle,,, +07/17/2021,4:15,,,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444862,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,23:00,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4443794,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,14:10,BROOKLYN,11233,,,,PACIFIC STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444227,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,21:48,,,40.5726,-74.16669,"(40.5726, -74.16669)",FOREST HILL ROAD,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444884,Sedan,Sedan,,, +08/05/2021,15:50,,,40.638897,-74.01678,"(40.638897, -74.01678)",61 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4445048,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,22:00,QUEENS,11432,40.70467,-73.80566,"(40.70467, -73.80566)",150 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444354,Motorscooter,Sedan,,, +07/31/2021,7:00,QUEENS,11103,40.758118,-73.917206,"(40.758118, -73.917206)",,,42-16 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444511,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,17:41,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444802,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,12:54,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",EAST MOUNT EDEN AVENUE,JEROME AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4443892,Sedan,,,, +08/06/2021,12:34,BRONX,10457,40.84001,-73.9034,"(40.84001, -73.9034)",,,3890 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444667,Motorcycle,,,, +08/05/2021,5:43,,,,,,,,61 EAST DRIVE,2,0,0,0,2,0,0,0,Unspecified,Unspecified,Unspecified,,,4444137,Bike,Bike,Bike,, +08/04/2021,17:44,BROOKLYN,11234,40.61913,-73.92398,"(40.61913, -73.92398)",AVENUE N,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443757,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,15:00,,,40.753307,-73.90669,"(40.753307, -73.90669)",54 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444557,Pick-up Truck,,,, +08/05/2021,23:16,,,40.63714,-74.08088,"(40.63714, -74.08088)",VICTORY BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444982,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,5:20,MANHATTAN,10027,40.80411,-73.94672,"(40.80411, -73.94672)",,,34 WEST 120 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4444674,Sedan,,,, +07/30/2021,17:20,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4444740,Sedan,Sedan,,, +08/05/2021,10:19,STATEN ISLAND,10312,40.529972,-74.16543,"(40.529972, -74.16543)",,,235 KINGHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444032,Sedan,PK,,, +08/04/2021,14:37,MANHATTAN,10002,40.719715,-73.982765,"(40.719715, -73.982765)",,,196 STANTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444152,Sedan,,,, +08/01/2021,22:30,BROOKLYN,11213,40.679665,-73.93634,"(40.679665, -73.93634)",,,1610 FULTON STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444953,Ambulance,Sedan,,, +08/05/2021,20:15,BRONX,10452,40.841618,-73.912476,"(40.841618, -73.912476)",GRAND CONCOURSE,ROCKWOOD STREET,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),,,,,4444327,Moped,,,, +08/04/2021,15:48,BROOKLYN,11203,40.658417,-73.929146,"(40.658417, -73.929146)",WINTHROP STREET,EAST 52 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443864,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/01/2021,6:45,BROOKLYN,11233,40.67055,-73.91738,"(40.67055, -73.91738)",,,1521 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444814,Sedan,Sedan,,, +08/04/2021,7:05,,,40.84231,-73.937035,"(40.84231, -73.937035)",AUDUBON AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4444270,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,0:30,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443802,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,15:30,BROOKLYN,11203,40.64214,-73.92909,"(40.64214, -73.92909)",,,5016 AVENUE D,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443870,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,14:59,MANHATTAN,10032,40.830112,-73.940315,"(40.830112, -73.940315)",,,80 SAINT NICHOLAS PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444621,Sedan,,,, +08/05/2021,19:33,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444285,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,9:50,QUEENS,11356,40.781647,-73.8367,"(40.781647, -73.8367)",20 AVENUE,132 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4443840,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/05/2021,17:15,QUEENS,11432,40.711433,-73.79102,"(40.711433, -73.79102)",171 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444067,Sedan,Sedan,,, +08/05/2021,18:30,,,40.728725,-73.95462,"(40.728725, -73.95462)",LORIMER STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,0:28,BROOKLYN,11220,40.641747,-74.013824,"(40.641747, -74.013824)",5 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443531,Sedan,Sedan,,, +08/04/2021,0:00,STATEN ISLAND,10301,40.643497,-74.07418,"(40.643497, -74.07418)",,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444099,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,13:30,,,40.69488,-73.94042,"(40.69488, -73.94042)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444914,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,16:00,,,40.767418,-73.7906,"(40.767418, -73.7906)",FRANCIS LEWIS BOULEVARD,33 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,21:55,QUEENS,11428,40.728542,-73.73633,"(40.728542, -73.73633)",BRADDOCK AVENUE,SABRE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4444401,Sedan,Pick-up Truck,Sedan,, +08/05/2021,17:42,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444185,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,15:40,BROOKLYN,11217,40.681545,-73.98129,"(40.681545, -73.98129)",,,567 WARREN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,6:00,QUEENS,11435,40.699017,-73.80696,"(40.699017, -73.80696)",SUTPHIN BOULEVARD,94 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443997,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,19:35,MANHATTAN,10031,40.828346,-73.94906,"(40.828346, -73.94906)",BROADWAY,WEST 148 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444177,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,2:44,,,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS PLAZA SOUTH,JACKSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444151,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +08/05/2021,16:15,BROOKLYN,11234,40.61284,-73.92598,"(40.61284, -73.92598)",,,2348 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444054,Sedan,,,, +07/05/2021,19:00,QUEENS,11423,40.71206,-73.76934,"(40.71206, -73.76934)",,,190-12 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444326,Sedan,Sedan,,, +08/04/2021,0:50,BROOKLYN,11207,40.6777,-73.89068,"(40.6777, -73.89068)",,,184 HENDRIX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443589,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,13:07,BROOKLYN,11219,40.63358,-74.00483,"(40.63358, -74.00483)",FORT HAMILTON PARKWAY,59 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445071,Taxi,,,, +08/05/2021,13:15,BROOKLYN,11215,40.671368,-73.98206,"(40.671368, -73.98206)",,,371 4 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4444073,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/04/2021,9:05,BROOKLYN,11236,40.6385,-73.899925,"(40.6385, -73.899925)",,,9319 AVENUE K,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443752,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,5:00,,,40.67798,-73.872116,"(40.67798, -73.872116)",CONDUIT BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444254,Sedan,,,, +08/04/2021,13:02,QUEENS,11355,40.756264,-73.823524,"(40.756264, -73.823524)",UNION STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443842,Sedan,,,, +08/06/2021,18:48,,,40.68787,-73.978355,"(40.68787, -73.978355)",FULTON STREET,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4444386,Sedan,Motorscooter,,, +08/04/2021,5:08,,,40.68775,-73.79039,"(40.68775, -73.79039)",157 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445130,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,6:09,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444313,Sedan,DUMP,,, +08/05/2021,15:30,BRONX,10459,40.83064,-73.885635,"(40.83064, -73.885635)",JENNINGS STREET,WEST FARMS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444656,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,16:00,,,40.693623,-73.72879,"(40.693623, -73.72879)",232 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444106,Sedan,Sedan,,, +08/06/2021,18:40,QUEENS,11412,40.699757,-73.75855,"(40.699757, -73.75855)",196 STREET,113 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444403,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,23:00,,,40.8119,-73.966255,"(40.8119, -73.966255)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444624,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,21:23,BRONX,10461,,,,Waters Place,Marconi Street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/21/2021,18:15,QUEENS,11372,40.753864,-73.89264,"(40.753864, -73.89264)",,,33-45 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444839,Sedan,,,, +08/06/2021,14:50,BRONX,10470,40.89845,-73.85431,"(40.89845, -73.85431)",NEREID AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445086,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,3:29,,,40.69728,-73.987045,"(40.69728, -73.987045)",JAY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4443795,Taxi,Bike,,, +08/05/2021,10:55,,,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443991,Sedan,Sedan,,, +08/06/2021,6:10,QUEENS,11414,40.660847,-73.8403,"(40.660847, -73.8403)",CROSS BAY BOULEVARD,158 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,20:30,BROOKLYN,11216,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444867,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,7:03,BROOKLYN,11208,40.659412,-73.8708,"(40.659412, -73.8708)",FLATLANDS AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444255,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,9:30,,,40.684685,-73.98114,"(40.684685, -73.98114)",PACIFIC STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4444031,Sedan,,,, +08/05/2021,20:07,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444240,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,15:15,QUEENS,11354,40.764347,-73.82595,"(40.764347, -73.82595)",NORTHERN BOULEVARD,BOWNE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444408,Sedan,Sedan,,, +08/04/2021,16:45,QUEENS,11414,40.657497,-73.83947,"(40.657497, -73.83947)",CROSS BAY BOULEVARD,160 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443820,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,15:47,,,40.66223,-73.93997,"(40.66223, -73.93997)",EAST NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444710,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,9:15,QUEENS,11370,40.760662,-73.88629,"(40.760662, -73.88629)",,,30-19 82 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444845,Sedan,Motorcycle,,, +08/05/2021,12:34,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",GRAND CONCOURSE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444208,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/05/2021,18:50,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4445055,Convertible,,,, +08/06/2021,3:47,BROOKLYN,11217,40.682423,-73.97069,"(40.682423, -73.97069)",ATLANTIC AVENUE,CARLTON AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4445028,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,9:40,,,40.69657,-73.95844,"(40.69657, -73.95844)",FRANKLIN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444761,Station Wagon/Sport Utility Vehicle,Bike,,, +07/14/2021,17:45,,,40.677025,-73.95268,"(40.677025, -73.95268)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444888,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,21:35,QUEENS,11385,40.69842,-73.90564,"(40.69842, -73.90564)",,,1663 HANCOCK STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444819,E-Bike,,,, +08/04/2021,23:30,BRONX,10475,40.8804,-73.8275,"(40.8804, -73.8275)",,,2244 GIVAN AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4444170,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,7:43,QUEENS,11375,40.70973,-73.84631,"(40.70973, -73.84631)",METROPOLITAN AVENUE,72 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,20:51,,,40.682835,-73.94092,"(40.682835, -73.94092)",THROOP AVENUE,,,2,0,0,0,1,0,1,0,Reaction to Uninvolved Vehicle,Other Vehicular,Unspecified,,,4444947,Motorcycle,Bike,Sedan,, +08/05/2021,13:29,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444223,Taxi,Sedan,,, +08/04/2021,11:26,QUEENS,11385,40.702595,-73.8553,"(40.702595, -73.8553)",MYRTLE AVENUE,WOODHAVEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443678,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,11:54,QUEENS,11432,40.705826,-73.79397,"(40.705826, -73.79397)",JAMAICA AVENUE,MERRICK BOULEVARD,,1,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4443697,E-Bike,Sedan,,, +08/06/2021,14:55,,,40.78613,-73.80215,"(40.78613, -73.80215)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4444506,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,8:54,BRONX,10467,40.861343,-73.86749,"(40.861343, -73.86749)",WHITE PLAINS ROAD,WARING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4443912,Station Wagon/Sport Utility Vehicle,Moped,,, +07/30/2021,6:44,,,40.60719,-74.16243,"(40.60719, -74.16243)",VICTORY BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444883,Sedan,Sedan,,, +08/06/2021,15:45,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4444442,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/06/2021,9:50,QUEENS,11418,40.7007,-73.83805,"(40.7007, -73.83805)",MYRTLE AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444266,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,21:39,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444158,Sedan,Sedan,,, +08/04/2021,21:39,QUEENS,11417,40.673965,-73.84157,"(40.673965, -73.84157)",LINDEN BOULEVARD,95 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4443777,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,21:00,BROOKLYN,11211,40.71592,-73.95909,"(40.71592, -73.95909)",,,149 NORTH 4 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4444298,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,12:00,,,40.843678,-73.89426,"(40.843678, -73.89426)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443977,Flat Bed,Sedan,,, +08/06/2021,7:50,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4444281,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +07/29/2021,19:00,,,40.80647,-73.94644,"(40.80647, -73.94644)",LENOX AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4444675,Sedan,Taxi,,, +08/05/2021,17:00,QUEENS,11105,40.782368,-73.91005,"(40.782368, -73.91005)",CRESCENT STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444553,Sedan,Box Truck,,, +08/05/2021,19:30,,,40.72831,-73.959015,"(40.72831, -73.959015)",NOBLE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444303,Sedan,Sedan,,, +08/05/2021,16:10,BROOKLYN,11211,40.702892,-73.95681,"(40.702892, -73.95681)",,,162 LEE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444127,Bus,Sedan,,, +08/05/2021,17:19,QUEENS,11385,40.696415,-73.88785,"(40.696415, -73.88785)",,,65-30 80 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444831,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,5:00,QUEENS,11385,40.706875,-73.90908,"(40.706875, -73.90908)",,,558 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443668,Sedan,,,, +08/04/2021,12:43,MANHATTAN,10020,40.758644,-73.981346,"(40.758644, -73.981346)",AVENUE OF THE AMERICAS,WEST 48 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4443875,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,2:15,,,40.861217,-73.90437,"(40.861217, -73.90437)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443926,Sedan,Sedan,,, +08/06/2021,18:45,QUEENS,11373,40.741028,-73.87697,"(40.741028, -73.87697)",88 STREET,SAINT JAMES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444873,Sedan,Pick-up Truck,Sedan,, +08/04/2021,21:55,,,40.692425,-73.96075,"(40.692425, -73.96075)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444735,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,11:30,,,40.820568,-73.959305,"(40.820568, -73.959305)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443688,Sedan,,,, +08/04/2021,8:12,,,40.74757,-73.83481,"(40.74757, -73.83481)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443805,Sedan,Tractor Truck Diesel,,, +07/25/2021,0:34,BRONX,10467,40.88055,-73.864525,"(40.88055, -73.864525)",EAST 215 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4445067,BOX TRUCK,,,, +07/23/2021,2:30,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444341,Sedan,,,, +08/05/2021,15:00,QUEENS,11372,40.752785,-73.87255,"(40.752785, -73.87255)",,,35-35 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444047,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,20:15,MANHATTAN,10001,40.750843,-73.99026,"(40.750843, -73.99026)",,,151 WEST 34 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4444912,Sedan,Bike,,, +08/06/2021,21:30,BROOKLYN,11208,,,,,,600-610 Euclid Ave,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444454,Sedan,Sedan,,, +08/06/2021,11:50,QUEENS,11355,40.75193,-73.808914,"(40.75193, -73.808914)",158 STREET,LABURNUM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,12:30,,,40.670124,-73.95528,"(40.670124, -73.95528)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444077,Sedan,E-Scooter,,, +08/05/2021,6:52,MANHATTAN,10016,40.74854,-73.97315,"(40.74854, -73.97315)",2 AVENUE,EAST 40 STREET,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,,,,4443985,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/06/2021,7:00,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444235,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,16:14,,,40.741035,-73.78634,"(40.741035, -73.78634)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4443766,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,17:43,BRONX,10468,40.861298,-73.906265,"(40.861298, -73.906265)",,,2331 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444543,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,8:45,BROOKLYN,11206,40.69441,-73.93806,"(40.69441, -73.93806)",,,323 HART STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444922,Sedan,,,, +07/28/2021,13:00,QUEENS,11103,40.764164,-73.90485,"(40.764164, -73.90485)",,,25-15 49 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444309,Sedan,,,, +08/04/2021,11:06,BRONX,10454,40.80314,-73.90906,"(40.80314, -73.90906)",,,850 EAST 138 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443812,PK,,,, +07/31/2021,1:40,,,,,,STATEN ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4444203,Sedan,,,, +08/04/2021,10:00,,,40.729977,-73.99407,"(40.729977, -73.99407)",WAVERLY PLACE,,,0,0,0,0,0,0,0,0,,,,,,4444633,Box Truck,,,, +08/06/2021,13:25,,,40.703674,-73.91513,"(40.703674, -73.91513)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444483,Sedan,Dump,,, +08/06/2021,20:26,BROOKLYN,11201,40.692154,-73.98529,"(40.692154, -73.98529)",WILLOUGHBY STREET,BRIDGE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444396,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,20:35,,,40.626328,-74.13132,"(40.626328, -74.13132)",JEWETT AVENUE,FOREST AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4444893,Sedan,Motorcycle,Sedan,, +08/04/2021,21:30,BROOKLYN,11220,40.63858,-74.02078,"(40.63858, -74.02078)",4 AVENUE,64 STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4445014,Sedan,Bike,,, +08/06/2021,9:00,BROOKLYN,11216,40.67272,-73.947464,"(40.67272, -73.947464)",,,222 NEW YORK AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4444335,Sedan,Sedan,,, +08/04/2021,13:07,,,40.85735,-73.936584,"(40.85735, -73.936584)",CABRINI BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444367,Refrigerated Van,Sedan,,, +08/01/2021,18:00,BROOKLYN,11233,40.678116,-73.90787,"(40.678116, -73.90787)",EASTERN PARKWAY,FULTON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4444782,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,10:00,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",NEPTUNE AVENUE,WEST 17 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444660,Sedan,,,, +07/16/2021,19:30,MANHATTAN,10036,40.758408,-73.982704,"(40.758408, -73.982704)",,,125 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444432,Sedan,,,, +08/06/2021,16:20,,,40.70996,-73.989334,"(40.70996, -73.989334)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444699,Sedan,Sedan,,, +07/30/2021,10:25,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444330,Tanker,Sedan,,, +08/06/2021,17:35,,,40.600624,-74.163,"(40.600624, -74.163)",,,1931 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444905,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/05/2021,14:50,BRONX,10455,40.814266,-73.912964,"(40.814266, -73.912964)",EAST 149 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4444198,Bus,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,17:58,STATEN ISLAND,10304,40.610996,-74.09581,"(40.610996, -74.09581)",,,801 NARROWS ROAD NORTH,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444143,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,14:15,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444036,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,22:55,BROOKLYN,11204,40.607765,-73.98255,"(40.607765, -73.98255)",AVENUE P,WEST 9 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4444393,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/06/2021,21:18,QUEENS,11103,40.760498,-73.915344,"(40.760498, -73.915344)",,,42-07 31 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444752,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/03/2021,10:30,QUEENS,11367,,,,153 STREET,77 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444478,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,13:23,MANHATTAN,10026,40.79825,-73.950645,"(40.79825, -73.950645)",,,60 WEST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444680,Bus,,,, +08/04/2021,14:31,BRONX,10462,40.846657,-73.85944,"(40.846657, -73.85944)",MORRIS PARK AVENUE,BRONXDALE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444976,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,14:30,MANHATTAN,10002,40.721096,-73.9887,"(40.721096, -73.9887)",,,164 ORCHARD STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444191,,,,, +08/03/2021,8:59,BROOKLYN,11236,40.638363,-73.900116,"(40.638363, -73.900116)",AVENUE K,EAST 93 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4444594,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,7:30,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4443904,Sedan,,,, +08/04/2021,13:00,QUEENS,11103,40.758965,-73.920105,"(40.758965, -73.920105)",,,32-25 38 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444524,Sedan,,,, +08/06/2021,21:52,,,40.825996,-73.92483,"(40.825996, -73.92483)",EAST 158 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4444725,Sedan,Motorcycle,,, +08/05/2021,22:20,MANHATTAN,10019,40.770313,-73.99141,"(40.770313, -73.99141)",11 AVENUE,WEST 57 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444277,Bus,Sedan,,, +08/04/2021,5:10,BROOKLYN,11221,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443606,FDNY TRUCK,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,0:00,,,40.804367,-73.93533,"(40.804367, -73.93533)",EAST 126 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443971,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,17:56,,,40.576283,-74.12666,"(40.576283, -74.12666)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444262,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,14:10,MANHATTAN,10010,40.738216,-73.98568,"(40.738216, -73.98568)",LEXINGTON AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443735,Van,Sedan,,, +08/05/2021,10:12,QUEENS,11691,40.60848,-73.76537,"(40.60848, -73.76537)",,,13-67 BAY 28 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444230,Sedan,Sedan,,, +08/05/2021,4:15,BROOKLYN,11210,40.619633,-73.945366,"(40.619633, -73.945366)",,,3003 AVENUE M,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443937,Sedan,,,, +07/14/2021,12:20,,,40.55492,-74.19364,"(40.55492, -74.19364)",ARDEN AVENUE,HAMPTON GREEN,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444498,Sedan,Sedan,,, +08/05/2021,3:08,BROOKLYN,11219,40.625183,-74.00018,"(40.625183, -74.00018)",,,1365 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4443880,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/03/2021,22:40,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4444962,Station Wagon/Sport Utility Vehicle,Bike,,, +08/03/2021,8:00,QUEENS,11377,40.753643,-73.90767,"(40.753643, -73.90767)",53 PLACE,BROADWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444519,Station Wagon/Sport Utility Vehicle,Bike,,, +08/06/2021,7:45,QUEENS,11385,40.704742,-73.902504,"(40.704742, -73.902504)",,,791 FAIRVIEW AVENUE,0,0,0,0,0,0,0,0,,,,,,4444825,,,,, +08/06/2021,12:20,QUEENS,11004,40.737362,-73.70817,"(40.737362, -73.70817)",,,260-04 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4444294,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,12:00,QUEENS,11416,40.679344,-73.859535,"(40.679344, -73.859535)",LIBERTY AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444373,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,11:00,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444931,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,15:25,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",FARMERS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443830,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,11:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444202,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/06/2021,13:10,BROOKLYN,11229,40.60295,-73.93979,"(40.60295, -73.93979)",,,2994 AVENUE T,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444345,E-Scooter,Sedan,,, +08/05/2021,17:26,,,40.790905,-73.93914,"(40.790905, -73.93914)",1 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444081,Sedan,Sedan,,, +08/03/2021,10:40,BROOKLYN,11225,40.66338,-73.94681,"(40.66338, -73.94681)",,,425 STERLING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444999,Sedan,,,, +08/05/2021,3:00,QUEENS,11355,40.754925,-73.836044,"(40.754925, -73.836044)",DELONG STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444362,Sedan,,,, +08/04/2021,8:40,BROOKLYN,11207,40.670975,-73.89315,"(40.670975, -73.89315)",,,446 BELMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443852,Sedan,Sedan,,, +08/05/2021,11:40,QUEENS,11419,40.68884,-73.8219,"(40.68884, -73.8219)",103 AVENUE,123 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444038,Sedan,Sedan,,, +07/30/2021,18:00,BRONX,10453,40.849804,-73.92033,"(40.849804, -73.92033)",WEST 176 STREET,POPHAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444213,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,14:10,MANHATTAN,10030,40.82092,-73.94333,"(40.82092, -73.94333)",8 AVENUE,WEST 142 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4445115,Taxi,Sedan,,, +08/04/2021,5:10,MANHATTAN,10026,40.79748,-73.94879,"(40.79748, -73.94879)",5 AVENUE,EAST 111 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443786,Sedan,,,, +08/06/2021,17:00,,,40.584755,-73.94712,"(40.584755, -73.94712)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444435,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,20:04,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",POWELL STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4444777,Sedan,Sedan,,, +08/04/2021,10:27,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4443980,Sedan,,,, +08/05/2021,18:30,BROOKLYN,11211,40.7124,-73.95136,"(40.7124, -73.95136)",UNION AVENUE,AINSLIE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444411,Sedan,Bike,,, +08/05/2021,13:15,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",AVENUE I,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444643,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,7:16,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445038,Sedan,Motorcycle,,, +08/06/2021,3:05,BRONX,10459,40.830368,-73.89718,"(40.830368, -73.89718)",FREEMAN STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4444666,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +08/05/2021,15:47,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",LANSING AVENUE,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444350,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:00,QUEENS,11428,40.72091,-73.73371,"(40.72091, -73.73371)",94 ROAD,221 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444580,Sedan,,,, +08/05/2021,3:15,QUEENS,11001,40.732197,-73.71031,"(40.732197, -73.71031)",,,86-27 256 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4444400,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,2:15,MANHATTAN,10022,40.758488,-73.96591,"(40.758488, -73.96591)",,,1059 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444565,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,5:43,QUEENS,11356,40.780148,-73.84603,"(40.780148, -73.84603)",COLLEGE POINT BOULEVARD,22 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444363,Sedan,,,, +08/06/2021,17:22,,,40.725243,-74.01006,"(40.725243, -74.01006)",CANAL STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444494,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,14:14,BRONX,10451,40.824707,-73.91552,"(40.824707, -73.91552)",EAST 161 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444657,Sedan,Sedan,,, +08/06/2021,21:55,,,40.58566,-73.81729,"(40.58566, -73.81729)",BEACH 95 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4444424,Sedan,Sedan,Sedan,, +08/04/2021,20:01,,,40.6678,-73.801414,"(40.6678, -73.801414)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4444008,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,2:52,BROOKLYN,11212,40.658215,-73.9088,"(40.658215, -73.9088)",,,546 CHESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444693,Sedan,Sedan,,, +08/04/2021,7:30,,,,,,WILLIS AVENUE BRIDGE APPROACH,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4443811,Tractor Truck Diesel,Sedan,,, +08/04/2021,20:24,QUEENS,11102,40.76844,-73.927155,"(40.76844, -73.927155)",23 STREET,30 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444537,Sedan,Sedan,,, +08/05/2021,4:30,,,40.608154,-74.13211,"(40.608154, -74.13211)",STATEN ISLAND EXPRESSWAY,BRADLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444900,Taxi,Chassis Cab,,, +08/06/2021,7:10,MANHATTAN,10032,40.83639,-73.940735,"(40.83639, -73.940735)",,,520 WEST 162 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444267,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,18:10,QUEENS,11360,40.778,-73.7783,"(40.778, -73.7783)",,,211-27 26 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4444586,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/26/2021,14:35,BROOKLYN,11233,40.67529,-73.906555,"(40.67529, -73.906555)",,,2380 PACIFIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444686,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,16:57,QUEENS,11101,40.73634,-73.93266,"(40.73634, -73.93266)",GALE AVENUE,GREENPOINT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444389,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,16:00,,,40.695377,-73.94921,"(40.695377, -73.94921)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444747,Station Wagon/Sport Utility Vehicle,Bus,,, +08/06/2021,14:12,,,40.748848,-73.872375,"(40.748848, -73.872375)",94 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444604,E-Bike,,,, +08/05/2021,0:51,,,40.671627,-73.93364,"(40.671627, -73.93364)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444331,Sedan,,,, +08/04/2021,17:15,,,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,,,10,0,0,0,0,0,10,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4443948,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/25/2021,17:41,,,40.885693,-73.86165,"(40.885693, -73.86165)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4445056,Sedan,,,, +08/05/2021,10:35,BROOKLYN,11233,40.672157,-73.91691,"(40.672157, -73.91691)",,,396 SARATOGA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4444717,Sedan,,,, +08/04/2021,2:00,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443626,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,19:30,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,8,0,0,0,0,0,8,0,Unsafe Speed,Unspecified,Unspecified,,,4443859,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/06/2021,22:11,BROOKLYN,11207,40.67937,-73.886444,"(40.67937, -73.886444)",FULTON STREET,ASHFORD STREET,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4444459,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,9:20,QUEENS,11422,40.665245,-73.73709,"(40.665245, -73.73709)",SOUTH CONDUIT AVENUE,140 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443713,Sedan,Sedan,,, +08/04/2021,21:00,,,40.716625,-73.904625,"(40.716625, -73.904625)",60 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444821,Sedan,,,, +08/05/2021,21:23,MANHATTAN,10030,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unsafe Speed,,,,4444245,E-Bike,Bike,,, +08/06/2021,11:50,QUEENS,11417,40.67256,-73.840256,"(40.67256, -73.840256)",PITKIN AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444377,Sedan,Sedan,,, +08/01/2021,17:45,QUEENS,11106,40.76122,-73.93056,"(40.76122, -73.93056)",CRESCENT STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444514,Sedan,Bike,,, +08/05/2021,6:18,,,40.58712,-73.96205,"(40.58712, -73.96205)",AVENUE Z,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,21:53,QUEENS,11434,40.674744,-73.76368,"(40.674744, -73.76368)",GARRETT STREET,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4443782,Sedan,,,, +08/04/2021,12:30,QUEENS,11691,40.595592,-73.739624,"(40.595592, -73.739624)",,,146 BEACH 4 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4443856,Van,,,, +08/05/2021,11:58,,,40.85573,-73.910416,"(40.85573, -73.910416)",UNIVERSITY AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444217,Bike,Sedan,,, +08/05/2021,16:30,QUEENS,11372,40.749416,-73.88427,"(40.749416, -73.88427)",,,37-12 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,19:05,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4443823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,16:10,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",LIBERTY AVENUE,177 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444068,Sedan,,,, +08/01/2021,13:00,QUEENS,11369,40.761425,-73.86053,"(40.761425, -73.86053)",31 DRIVE,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444838,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,3:04,BROOKLYN,11220,40.63367,-74.01427,"(40.63367, -74.01427)",,,711A 65 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4443549,Sedan,,,, +08/06/2021,22:50,,,40.815826,-73.947044,"(40.815826, -73.947044)",8 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445124,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,11:50,,,40.628544,-74.07648,"(40.628544, -74.07648)",BAY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444100,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,6:20,QUEENS,11101,40.755325,-73.94599,"(40.755325, -73.94599)",,,41-12 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4444556,Sedan,Sedan,Sedan,, +08/06/2021,7:00,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4444234,Sedan,Sedan,Sedan,, +08/06/2021,0:23,,,40.672363,-73.9308,"(40.672363, -73.9308)",UTICA AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444859,Taxi,E-Bike,,, +08/05/2021,9:13,BROOKLYN,11207,40.672607,-73.89992,"(40.672607, -73.89992)",GLENMORE AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4443995,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck +08/06/2021,18:59,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4444382,Bus,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,18:11,,,40.7393,-73.837036,"(40.7393, -73.837036)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444184,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,19:00,BROOKLYN,11218,40.644077,-73.97638,"(40.644077, -73.97638)",,,410 CHURCH AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4445080,Sedan,Sedan,,, +08/06/2021,18:29,BROOKLYN,11210,40.624634,-73.93794,"(40.624634, -73.93794)",,,23 HUBBARD PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444415,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/06/2021,14:30,QUEENS,11377,40.734848,-73.90002,"(40.734848, -73.90002)",MAURICE AVENUE,65 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444612,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/06/2021,13:20,STATEN ISLAND,10304,40.612717,-74.085014,"(40.612717, -74.085014)",TARGEE STREET,ELLINGTON STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4444801,Sedan,Sedan,,, +08/06/2021,0:50,QUEENS,11370,40.759037,-73.8879,"(40.759037, -73.8879)",80 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444272,Sedan,Sedan,,, +08/06/2021,15:20,,,40.568893,-74.09205,"(40.568893, -74.09205)",CAPODANNO BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444439,Sedan,,,, +08/05/2021,9:35,BRONX,10456,40.82602,-73.905754,"(40.82602, -73.905754)",,,1033 CAULDWELL AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4444649,Ambulance,Station Wagon/Sport Utility Vehicle,Box Truck,, +07/30/2021,16:00,,,40.67247,-73.79987,"(40.67247, -73.79987)",140 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444404,Sedan,,,, +07/30/2021,14:00,BROOKLYN,11233,40.67695,-73.91367,"(40.67695, -73.91367)",,,218 BOYLAND STREET,1,0,0,0,0,0,1,0,Other Vehicular,Passing Too Closely,Unspecified,,,4444813,Gas scoote,Taxi,Sedan,, +08/06/2021,3:00,QUEENS,11369,40.75898,-73.87075,"(40.75898, -73.87075)",32 AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4444840,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/06/2021,23:40,BROOKLYN,11207,40.6828,-73.90638,"(40.6828, -73.90638)",BUSHWICK AVENUE,FURMAN AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Other Vehicular,,,,4444487,Bike,Sedan,,, +08/02/2021,13:40,,,40.729755,-74.00217,"(40.729755, -74.00217)",BLEECKER STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444630,Van,Bike,,, +08/01/2021,2:40,MANHATTAN,10027,40.811478,-73.950226,"(40.811478, -73.950226)",WEST 127 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4444714,E-Bike,,,, +08/05/2021,0:05,,,40.657413,-73.983,"(40.657413, -73.983)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445012,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,5:00,QUEENS,11106,40.76019,-73.9329,"(40.76019, -73.9329)",24 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445090,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,14:30,BROOKLYN,11220,40.64479,-74.00827,"(40.64479, -74.00827)",,,573 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,16:37,MANHATTAN,10038,40.708492,-74.00294,"(40.708492, -74.00294)",,,299 PEARL STREET,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4444159,Sedan,E-Scooter,,, +08/06/2021,11:30,QUEENS,11361,40.756958,-73.77326,"(40.756958, -73.77326)",46 AVENUE,OCEANIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444286,Sedan,Moped,,, +07/26/2021,14:51,BROOKLYN,11212,40.66353,-73.913086,"(40.66353, -73.913086)",AMBOY STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444774,Sedan,Sedan,,, +08/05/2021,17:00,BRONX,10451,40.81505,-73.92427,"(40.81505, -73.92427)",EAST 143 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444529,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,12:29,BROOKLYN,11222,40.735043,-73.95621,"(40.735043, -73.95621)",,,122 EAGLE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444299,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,16:00,BROOKLYN,11205,40.68945,-73.96809,"(40.68945, -73.96809)",CLINTON AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444387,Sedan,E-Scooter,,, +08/06/2021,10:12,BROOKLYN,11211,40.714687,-73.94271,"(40.714687, -73.94271)",HUMBOLDT STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4444304,Box Truck,Tractor Truck Diesel,,, +06/19/2021,4:50,BROOKLYN,11216,40.677845,-73.95282,"(40.677845, -73.95282)",BEDFORD AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444887,Sedan,Sedan,,, +08/05/2021,0:10,,,,,,DECATUR AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443927,Sedan,,,, +08/04/2021,7:55,BROOKLYN,11238,40.681343,-73.965515,"(40.681343, -73.965515)",ATLANTIC AVENUE,WAVERLY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443685,Flat Bed,,,, +08/04/2021,10:20,,,40.71769,-73.831406,"(40.71769, -73.831406)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443689,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,19:50,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4443894,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/05/2021,18:00,,,40.696342,-73.97644,"(40.696342, -73.97644)",NORTH PORTLAND AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444095,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,5:01,BRONX,10474,40.80348,-73.87374,"(40.80348, -73.87374)",FOOD CENTER DRIVE,FARRAGUT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443720,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,21:05,BROOKLYN,11221,40.696815,-73.93496,"(40.696815, -73.93496)",,,956 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444930,Bus,Sedan,,, +08/05/2021,3:10,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4443914,Sedan,,,, +08/05/2021,13:40,,,40.68039,-73.94956,"(40.68039, -73.94956)",FULTON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444760,Sedan,E-Bike,,, +08/04/2021,20:00,BROOKLYN,11206,40.70839,-73.939964,"(40.70839, -73.939964)",MESEROLE STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444136,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,17:54,QUEENS,11040,40.753555,-73.70362,"(40.753555, -73.70362)",HEWLETT STREET,77 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443763,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,21:32,,,40.819424,-73.955574,"(40.819424, -73.955574)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444466,Sedan,fire truck,,, +08/04/2021,0:00,,,40.83045,-73.8509,"(40.83045, -73.8509)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4443957,Sedan,Sedan,,, +08/05/2021,9:08,,,40.58038,-73.967606,"(40.58038, -73.967606)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4444670,Sedan,Sedan,Sedan,Sedan,Sedan +08/04/2021,22:00,BRONX,10456,40.820297,-73.90411,"(40.820297, -73.90411)",TINTON AVENUE,EAST 160 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444157,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,8:50,BRONX,10462,40.83358,-73.861084,"(40.83358, -73.861084)",,,11 GRANT CIRCLE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4443648,Tractor Truck Diesel,Sedan,,, +06/18/2021,16:19,BRONX,10474,40.81443,-73.88691,"(40.81443, -73.88691)",,,1290 SPOFFORD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4444318,Sedan,,,, +08/04/2021,15:55,,,40.821175,-73.92574,"(40.821175, -73.92574)",GRAND CONCOURSE,,,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4443897,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/04/2021,0:00,BROOKLYN,11239,40.643543,-73.87787,"(40.643543, -73.87787)",,,11275 SEAVIEW AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444249,Sedan,Sedan,,, +08/06/2021,16:45,QUEENS,11101,40.752228,-73.93911,"(40.752228, -73.93911)",CRESCENT STREET,41 AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4444739,Sedan,E-Scooter,,, +07/27/2021,16:12,QUEENS,11105,40.780605,-73.91222,"(40.780605, -73.91222)",21 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444510,Station Wagon/Sport Utility Vehicle,Bike,,, +08/06/2021,16:30,BROOKLYN,11237,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,MENAHAN STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4444484,Sedan,Sedan,,, +07/30/2021,18:30,,,40.6266,-74.16119,"(40.6266, -74.16119)",AMITY PLACE,FOREST AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444882,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,13:20,MANHATTAN,10029,,,,3 AVENUE,East 97th Street,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444449,Box Truck,Sedan,,, +08/05/2021,11:45,BROOKLYN,11220,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445047,Flat Bed,Bus,,, +08/04/2021,14:45,QUEENS,11385,40.70003,-73.90698,"(40.70003, -73.90698)",MYRTLE AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443953,Sedan,Sedan,,, +07/30/2021,1:32,BROOKLYN,11222,40.720573,-73.93622,"(40.720573, -73.93622)",VANDERVORT AVENUE,RICHARDSON STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4444297,Sedan,Dump,,, +07/24/2021,10:30,MANHATTAN,10029,40.788994,-73.94656,"(40.788994, -73.94656)",EAST 102 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4444676,Station Wagon/Sport Utility Vehicle,Van,,, +08/05/2021,9:30,,,40.809284,-73.92927,"(40.809284, -73.92927)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443976,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,11:20,BROOKLYN,11205,40.69535,-73.962494,"(40.69535, -73.962494)",,,73 EMERSON PLACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444276,Taxi,Sedan,,, +08/06/2021,15:34,,,40.76548,-73.913704,"(40.76548, -73.913704)",STEINWAY STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444738,Sedan,Bike,,, +08/04/2021,1:10,MANHATTAN,10036,40.755154,-73.98086,"(40.755154, -73.98086)",,,20 WEST 44 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443671,Sedan,,,, +08/04/2021,13:50,BRONX,10472,40.832657,-73.86097,"(40.832657, -73.86097)",GRANT CIRCLE,VIRGINIA AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4443717,Bus,Sedan,,, +08/06/2021,15:00,,,40.635853,-74.16619,"(40.635853, -74.16619)",SOUTH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444906,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:11,BROOKLYN,11228,40.61606,-74.02576,"(40.61606, -74.02576)",92 STREET,DAHLGREN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444812,Sedan,Sedan,,, +08/05/2021,21:50,STATEN ISLAND,10301,40.642563,-74.08653,"(40.642563, -74.08653)",JERSEY STREET,CRESCENT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444144,Sedan,,,, +07/12/2021,16:19,,,40.688698,-73.942085,"(40.688698, -73.942085)",LEXINGTON AVENUE,,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unsafe Lane Changing,,,,4444755,Sedan,E-Bike,,, +08/04/2021,18:35,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444977,Station Wagon/Sport Utility Vehicle,,,, +06/20/2021,22:20,,,40.672363,-73.9308,"(40.672363, -73.9308)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444889,Sedan,Sedan,,, +08/06/2021,23:15,,,40.60715,-73.89837,"(40.60715, -73.89837)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4444472,Sedan,Sedan,Sedan,, +08/06/2021,8:30,BROOKLYN,11236,40.65288,-73.90646,"(40.65288, -73.90646)",,,1084 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444706,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,21:35,,,40.71604,-73.80504,"(40.71604, -73.80504)",GRAND CENTRAL PKWY,,,7,0,0,0,0,0,7,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444479,Sedan,Sedan,Sedan,, +08/04/2021,21:45,MANHATTAN,10022,40.756763,-73.96716,"(40.756763, -73.96716)",2 AVENUE,EAST 53 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4444150,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/04/2021,16:20,BROOKLYN,11203,40.65619,-73.9396,"(40.65619, -73.9396)",,,738 ALBANY AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443749,Bus,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,15:20,QUEENS,11354,40.77058,-73.84303,"(40.77058, -73.84303)",,,30-29 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,,,,,4443843,Sedan,,,, +08/05/2021,20:47,,,40.747334,-73.73681,"(40.747334, -73.73681)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444138,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/05/2021,12:15,BROOKLYN,11208,40.67251,-73.873726,"(40.67251, -73.873726)",SUTTER AVENUE,CRYSTAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443994,Sedan,Tow Truck / Wrecker,,, +08/06/2021,8:40,,,40.81053,-73.96206,"(40.81053, -73.96206)",WEST 120 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444419,van,Bike,,, +08/05/2021,8:15,,,40.72297,-73.84448,"(40.72297, -73.84448)",108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444090,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,12:25,,,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4443677,Sedan,Sedan,,, +08/06/2021,12:40,,,40.752045,-73.78885,"(40.752045, -73.78885)",192 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,14:42,MANHATTAN,10023,40.778606,-73.98163,"(40.778606, -73.98163)",WEST 72 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444571,Station Wagon/Sport Utility Vehicle,Bus,,, +08/04/2021,19:40,QUEENS,11433,40.693676,-73.780815,"(40.693676, -73.780815)",,,111-54 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443778,Sedan,Sedan,,, +08/05/2021,18:00,QUEENS,11421,40.692516,-73.85911,"(40.692516, -73.85911)",JAMAICA AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444265,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,5:18,STATEN ISLAND,10305,40.59034,-74.06663,"(40.59034, -74.06663)",CAPODANNO BOULEVARD,SAND LANE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4443625,Sedan,,,, +08/06/2021,14:23,BROOKLYN,11234,40.615166,-73.91864,"(40.615166, -73.91864)",EAST 58 STREET,AVENUE T,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444319,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,12:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445122,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,10:55,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4444256,Sedan,Sedan,,, +08/04/2021,13:51,,,40.690346,-73.9603,"(40.690346, -73.9603)",CLASSON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4443736,Sedan,Motorcycle,,, +07/17/2021,15:45,,,40.698807,-73.91837,"(40.698807, -73.91837)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4444462,Sedan,,,, +08/05/2021,22:12,QUEENS,11368,40.738373,-73.86008,"(40.738373, -73.86008)",99 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444186,Sedan,,,, +08/03/2021,10:30,QUEENS,11103,40.765217,-73.90589,"(40.765217, -73.90589)",,,47-20 25 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,20:25,QUEENS,11378,40.722248,-73.90133,"(40.722248, -73.90133)",,,57-27 64 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444830,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,16:00,,,40.856106,-73.90646,"(40.856106, -73.90646)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4443885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,13:50,MANHATTAN,10023,40.779182,-73.98297,"(40.779182, -73.98297)",,,233 WEST 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,17:00,,,40.76417,-73.83967,"(40.76417, -73.83967)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444372,Sedan,Sedan,,, +08/04/2021,0:00,BROOKLYN,11215,40.66959,-73.9959,"(40.66959, -73.9959)",2 AVENUE,14 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443730,Flat Bed,,,, +08/04/2021,18:04,QUEENS,11370,40.758724,-73.88689,"(40.758724, -73.88689)",,,31-17 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444340,Sedan,,,, +08/04/2021,0:39,BRONX,10469,40.869267,-73.84397,"(40.869267, -73.84397)",,,1454 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4444209,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,15:37,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",EAST 233 STREET,BAYCHESTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444058,Motorscooter,Motorscooter,,, +08/06/2021,8:45,BROOKLYN,11204,40.624947,-73.97712,"(40.624947, -73.97712)",50 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445070,Bus,Bus,,, +07/30/2021,5:50,QUEENS,11368,40.754406,-73.855804,"(40.754406, -73.855804)",112 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,,4444856,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,11:50,STATEN ISLAND,10306,40.546963,-74.158295,"(40.546963, -74.158295)",,,4255 AMBOY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443959,Sedan,,,, +07/14/2021,16:24,MANHATTAN,10026,40.80366,-73.95357,"(40.80366, -73.95357)",,,221 WEST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444691,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,0:00,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4444224,Sedan,Sedan,,, +08/06/2021,4:55,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444414,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,13:00,BROOKLYN,11210,40.620285,-73.94564,"(40.620285, -73.94564)",,,2645 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443796,Sedan,,,, +08/04/2021,18:15,QUEENS,11362,40.763878,-73.72673,"(40.763878, -73.72673)",,,254-27 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443910,Sedan,Sedan,,, +07/21/2021,5:45,MANHATTAN,10009,40.73065,-73.98308,"(40.73065, -73.98308)",1 AVENUE,EAST 13 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4444647,Sedan,Motorbike,,, +08/05/2021,23:12,BRONX,10463,40.874615,-73.90472,"(40.874615, -73.90472)",BAILEY AVENUE,WEST 229 STREET,,1,1,0,0,0,0,1,1,Tinted Windows,Unspecified,,,,4444800,Motorcycle,Sedan,,, +08/01/2021,14:30,,,40.765766,-73.90347,"(40.765766, -73.90347)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4444513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/05/2021,11:40,MANHATTAN,10012,40.724052,-74.00439,"(40.724052, -74.00439)",SULLIVAN STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443970,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,11:10,BRONX,10458,40.851757,-73.88473,"(40.851757, -73.88473)",EAST 183 STREET,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445037,Sedan,N/A,,, +07/08/2022,10:30,QUEENS,11420,40.666855,-73.80425,"(40.666855, -73.80425)",NORTH CONDUIT AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545152,Pick-up Truck,,,, +08/01/2021,9:00,QUEENS,11370,40.75729,-73.88948,"(40.75729, -73.88948)",78 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4444280,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/04/2021,10:30,BRONX,10470,40.902935,-73.84934,"(40.902935, -73.84934)",,,724 EAST 241 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443947,Sedan,,,, +04/10/2021,20:45,BROOKLYN,11216,40.675053,-73.947235,"(40.675053, -73.947235)",NEW YORK AVENUE,SAINT MARKS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444894,E-Scooter,,,, +08/04/2021,20:25,,,40.632885,-73.94771,"(40.632885, -73.94771)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443837,Box Truck,,,, +08/04/2021,14:45,BROOKLYN,11235,40.588886,-73.965645,"(40.588886, -73.965645)",OCEAN PARKWAY,AVENUE Y,,1,0,0,0,1,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4444659,Bike,,,, +08/04/2021,15:15,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444030,Sedan,,,, +08/04/2021,18:00,BROOKLYN,11216,40.67187,-73.95464,"(40.67187, -73.95464)",SAINT JOHNS PLACE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444126,Sedan,,,, +08/05/2021,0:24,QUEENS,11385,40.69759,-73.90194,"(40.69759, -73.90194)",STEPHEN STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444826,MOPED,Station Wagon/Sport Utility Vehicle,,, +07/19/2021,18:50,BROOKLYN,11237,40.699024,-73.91623,"(40.699024, -73.91623)",MENAHAN STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444293,Sedan,Moped,,, +08/06/2021,17:49,QUEENS,11101,40.752228,-73.93911,"(40.752228, -73.93911)",CRESCENT STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,15:02,BROOKLYN,11207,40.671448,-73.89001,"(40.671448, -73.89001)",BELMONT AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4444251,Sedan,Sedan,Sedan,, +08/04/2021,8:30,BRONX,10470,40.896423,-73.86291,"(40.896423, -73.86291)",,,4225 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4444049,Sedan,,,, +08/05/2021,18:45,,,40.738266,-73.79706,"(40.738266, -73.79706)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4444236,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,18:44,QUEENS,11435,40.699017,-73.80696,"(40.699017, -73.80696)",SUTPHIN BOULEVARD,94 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444325,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,16:45,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",VANDAM STREET,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443785,Van,Pick-up Truck,,, +08/06/2021,21:00,BROOKLYN,11207,40.660595,-73.89686,"(40.660595, -73.89686)",,,616 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4444455,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,1:30,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443590,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,17:00,BRONX,10461,40.856045,-73.85249,"(40.856045, -73.85249)",LYDIG AVENUE,TENBROECK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444069,Sedan,,,, +08/06/2021,17:45,,,40.681805,-73.94987,"(40.681805, -73.94987)",HALSEY STREET,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4444745,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,11:01,MANHATTAN,10002,40.714897,-73.9919,"(40.714897, -73.9919)",CANAL STREET,ORCHARD STREET,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4444192,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,17:10,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4444383,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,19:00,MANHATTAN,10032,40.837513,-73.93865,"(40.837513, -73.93865)",,,2106 AMSTERDAM AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444985,E-Bike,Sedan,,, +08/04/2021,8:30,,,40.67681,-73.79405,"(40.67681, -73.79405)",120 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443704,Sedan,,,, +08/04/2021,19:33,QUEENS,11355,40.744934,-73.82943,"(40.744934, -73.82943)",58 ROAD,136 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444588,CHERV,,,, +07/27/2021,0:09,QUEENS,11105,40.768433,-73.90447,"(40.768433, -73.90447)",,,46-09 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4444308,Sedan,,,, +08/04/2021,17:51,BRONX,10454,40.80697,-73.91785,"(40.80697, -73.91785)",,,527 EAST 138 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4443814,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,13:50,QUEENS,11103,40.76645,-73.9085,"(40.76645, -73.9085)",44 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/05/2021,17:33,,,40.689407,-73.913956,"(40.689407, -73.913956)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444171,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,17:03,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4444107,Bus,Bike,,, +08/05/2021,12:58,BROOKLYN,11234,40.62814,-73.9182,"(40.62814, -73.9182)",,,2048 RALPH AVENUE,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,,,4443999,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle,, +08/05/2021,13:00,,,40.776096,-73.800896,"(40.776096, -73.800896)",163 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444507,Sedan,,,, +08/05/2021,22:00,,,40.680496,-73.92858,"(40.680496, -73.92858)",REID AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444949,Sedan,,,, +08/06/2021,16:00,BROOKLYN,11232,0,0,"(0.0, 0.0)",4 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445015,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,9:09,MANHATTAN,10022,40.76025,-73.969635,"(40.76025, -73.969635)",LEXINGTON AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444261,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,9:00,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,WEST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444368,Station Wagon/Sport Utility Vehicle,Bus,,, +08/05/2021,20:15,QUEENS,11102,40.772987,-73.9164,"(40.772987, -73.9164)",29 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444554,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/13/2021,21:26,BROOKLYN,11212,40.663036,-73.91645,"(40.663036, -73.91645)",,,91 DUMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444783,Sedan,Sedan,,, +08/06/2021,1:34,QUEENS,11429,40.714447,-73.73211,"(40.714447, -73.73211)",,,100-36 221 STREET,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,Unspecified,,,4444219,Sedan,Sedan,Sedan,, +07/31/2021,14:20,,,40.810062,-73.95497,"(40.810062, -73.95497)",WEST 123 STREET,,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4444935,Station Wagon/Sport Utility Vehicle,Bike,,, +08/05/2021,22:00,QUEENS,11433,40.696518,-73.79892,"(40.696518, -73.79892)",,,106-21 155 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4444241,Pick-up Truck,Sedan,,, +07/30/2021,8:00,,,40.828346,-73.94906,"(40.828346, -73.94906)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444433,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,22:43,QUEENS,11355,40.742973,-73.814316,"(40.742973, -73.814316)",KISSENA BOULEVARD,BOOTH MEMORIAL AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444409,Sedan,Bike,,, +05/24/2021,15:37,,,40.6792,-73.9553,"(40.6792, -73.9553)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4444878,Sedan,Bus,,, +08/04/2021,14:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4443821,Sedan,Sedan,Sedan,, +08/02/2021,13:44,,,40.77096,-73.92143,"(40.77096, -73.92143)",ASTORIA BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,17:25,MANHATTAN,10031,40.825905,-73.94712,"(40.825905, -73.94712)",AMSTERDAM AVENUE,WEST 146 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444197,Sedan,Sedan,,, +08/06/2021,13:50,,,40.554142,-74.17635,"(40.554142, -74.17635)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444499,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,7:40,QUEENS,11385,40.704403,-73.89392,"(40.704403, -73.89392)",CATALPA AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443878,Sedan,Carry All,,, +07/30/2021,17:30,QUEENS,11369,40.76352,-73.863174,"(40.76352, -73.863174)",,,29-10 BUTLER STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4444847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,21:30,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4444012,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,9:05,,,40.817596,-73.95319,"(40.817596, -73.95319)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444729,Sedan,,,, +08/06/2021,23:00,BRONX,10455,40.81527,-73.904434,"(40.81527, -73.904434)",UNION AVENUE,EAST 152 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4444533,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,13:33,QUEENS,11420,40.669384,-73.81447,"(40.669384, -73.81447)",135 AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4443804,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/06/2021,4:30,QUEENS,11355,40.75678,-73.82651,"(40.75678, -73.82651)",,,42-20 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4444357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/27/2021,11:30,,,40.693863,-73.92971,"(40.693863, -73.92971)",DE KALB AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444913,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,22:06,MANHATTAN,10026,40.804825,-73.954216,"(40.804825, -73.954216)",,,279 WEST 117 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,22:45,,,40.606556,-73.973625,"(40.606556, -73.973625)",DAHILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444394,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,16:20,,,40.762974,-73.760796,"(40.762974, -73.760796)",221 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4443767,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/05/2021,18:05,,,40.82101,-73.93436,"(40.82101, -73.93436)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444063,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,19:10,,,40.74559,-73.76857,"(40.74559, -73.76857)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444076,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,0:00,BROOKLYN,11215,40.670074,-73.98638,"(40.670074, -73.98638)",,,269 8 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445031,Tractor Truck Diesel,Sedan,,, +08/05/2021,7:45,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444548,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,14:19,BROOKLYN,11220,40.641113,-74.003716,"(40.641113, -74.003716)",8 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445066,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/23/2021,13:29,BROOKLYN,11216,40.683647,-73.94688,"(40.683647, -73.94688)",MARCY AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444809,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,17:30,QUEENS,11418,40.70021,-73.83356,"(40.70021, -73.83356)",,,116-11 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445136,Sedan,,,, +08/03/2021,17:00,BROOKLYN,11204,40.617924,-73.98983,"(40.617924, -73.98983)",,,1844 66 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444641,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,22:30,STATEN ISLAND,10306,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,MIDLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,8:06,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",EAST 53 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443986,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +08/04/2021,12:11,QUEENS,11691,40.601334,-73.76257,"(40.601334, -73.76257)",BAY 25 STREET,OCEAN CREST BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443827,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,21:25,BROOKLYN,11235,40.58327,-73.96006,"(40.58327, -73.96006)",CONEY ISLAND AVENUE,GUIDER AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4444204,Sedan,Sedan,Sedan,, +08/05/2021,12:00,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444336,Dump,Tow Truck / Wrecker,,, +08/06/2021,12:46,,,40.812813,-73.94181,"(40.812813, -73.94181)",WEST 133 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445113,Sedan,Sedan,,, +08/06/2021,4:00,BRONX,10470,40.903656,-73.85082,"(40.903656, -73.85082)",,,686 EAST 241 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4445057,Sedan,Sedan,,, +08/05/2021,18:40,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,18:30,BRONX,10461,40.849792,-73.83036,"(40.849792, -73.83036)",,,3131 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4443861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/04/2021,14:45,,,40.83427,-73.94537,"(40.83427, -73.94537)",MORGAN PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444273,,,,, +08/05/2021,14:30,,,40.692883,-73.95678,"(40.692883, -73.95678)",SKILLMAN STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444808,Sedan,E-Bike,,, +08/01/2021,15:00,,,40.598232,-74.12623,"(40.598232, -74.12623)",,,101 BRIELLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444890,Sedan,Sedan,Sedan,, +08/03/2021,10:14,BROOKLYN,11203,40.663425,-73.93337,"(40.663425, -73.93337)",,,840 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444563,Station Wagon/Sport Utility Vehicle,Van,,, +07/24/2021,18:51,MANHATTAN,10026,40.80248,-73.95485,"(40.80248, -73.95485)",,,234 WEST 114 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444677,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/05/2021,22:05,BROOKLYN,11211,40.704876,-73.95571,"(40.704876, -73.95571)",MARCY AVENUE,HEWES STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4444133,TRAILER,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,17:00,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",FARMERS BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444961,Sedan,Sedan,,, +08/06/2021,17:15,QUEENS,11385,40.69814,-73.89111,"(40.69814, -73.89111)",COOPER AVENUE,64 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444822,Station Wagon/Sport Utility Vehicle,Bus,,, +08/06/2021,8:00,BRONX,10457,40.8438,-73.90674,"(40.8438, -73.90674)",,,1676 MONROE AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4444329,Sedan,Box Truck,,, +07/27/2021,14:55,,,40.72752,-73.75879,"(40.72752, -73.75879)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444997,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/05/2021,11:20,BROOKLYN,11214,40.61239,-74.000916,"(40.61239, -74.000916)",17 AVENUE,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4444035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,11:00,QUEENS,11102,40.7699,-73.92597,"(40.7699, -73.92597)",23 STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444517,Sedan,Sedan,,, +08/05/2021,19:20,MANHATTAN,10033,40.843567,-73.93422,"(40.843567, -73.93422)",WEST 174 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444268,Sedan,,,, +08/04/2021,10:40,BRONX,10461,40.849533,-73.83045,"(40.849533, -73.83045)",,,3113 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444175,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,18:30,QUEENS,11421,40.69528,-73.86211,"(40.69528, -73.86211)",,,85-10 FOREST PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443872,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,15:30,,,40.677155,-73.86887,"(40.677155, -73.86887)",CONDUIT BOULEVARD,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444451,Sedan,,,, +08/04/2021,21:00,,,40.840828,-73.84797,"(40.840828, -73.84797)",SAINT PETERS AVENUE,SAINT RAYMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444162,Ambulance,Sedan,,, +08/04/2021,13:40,,,40.572872,-73.99491,"(40.572872, -73.99491)",WEST 29 STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4444039,Pick-up Truck,Sedan,,, +08/04/2021,0:58,QUEENS,11357,40.790733,-73.81457,"(40.790733, -73.81457)",12 AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443564,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,16:21,,,40.784943,-73.946594,"(40.784943, -73.946594)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444103,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,2:10,BROOKLYN,11221,40.694016,-73.93128,"(40.694016, -73.93128)",,,10 REID AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4444921,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,9:10,MANHATTAN,10024,40.781273,-73.976006,"(40.781273, -73.976006)",WEST 78 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444379,Sedan,BOX TRUCK,,, +08/06/2021,8:46,BRONX,10474,40.808716,-73.88497,"(40.808716, -73.88497)",FAILE STREET,EAST BAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444312,Station Wagon/Sport Utility Vehicle,Bus,,, +08/05/2021,15:00,BROOKLYN,11249,40.718723,-73.95894,"(40.718723, -73.95894)",,,116 BERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444305,Sedan,,,, +08/04/2021,15:35,,,40.833065,-73.85974,"(40.833065, -73.85974)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444064,Tractor Truck Diesel,Tractor Truck Diesel,,, +08/04/2021,17:20,MANHATTAN,10000,40.77994,-73.97103,"(40.77994, -73.97103)",TRANSVERSE ROAD NUMBER TWO,WEST DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443790,Sedan,Sedan,,, +08/06/2021,15:50,QUEENS,11373,40.745895,-73.87497,"(40.745895, -73.87497)",,,42-07 ELBERTSON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,20:12,BROOKLYN,11220,40.63558,-74.00812,"(40.63558, -74.00812)",,,833 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445081,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,8:00,BROOKLYN,11206,40.697117,-73.93401,"(40.697117, -73.93401)",MYRTLE AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443931,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,12:30,BRONX,10472,40.828228,-73.88297,"(40.828228, -73.88297)",,,1170 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443692,Sedan,,,, +08/05/2021,14:20,QUEENS,11101,,,,42rd,27 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444614,Sedan,Pick-up Truck,,, +08/05/2021,12:30,BROOKLYN,11228,40.6216,-74.00493,"(40.6216, -74.00493)",,,1325 72 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444347,Sedan,,,, +08/02/2021,21:27,BROOKLYN,11233,40.682446,-73.911674,"(40.682446, -73.911674)",ROCKAWAY AVENUE,CHAUNCEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4444719,Motorcycle,,,, +08/05/2021,7:47,QUEENS,11358,40.765285,-73.80144,"(40.765285, -73.80144)",35 AVENUE,164 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4444364,Sedan,Sedan,,, +08/05/2021,20:26,BROOKLYN,11230,40.615414,-73.96144,"(40.615414, -73.96144)",AVENUE N,EAST 13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444650,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/30/2021,5:00,BROOKLYN,11211,40.724022,-73.955635,"(40.724022, -73.955635)",,,18 WYTHE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,22:00,MANHATTAN,10013,40.72508,-74.01048,"(40.72508, -74.01048)",,,530 CANAL STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4444493,Sedan,Sedan,,, +08/04/2021,16:56,BRONX,10461,40.842644,-73.85181,"(40.842644, -73.85181)",EAST TREMONT AVENUE,PAULDING AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4443915,Sedan,Sedan,,, +07/30/2021,23:30,,,40.736885,-73.978546,"(40.736885, -73.978546)",EAST 23 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4444405,Motorcycle,,,, +08/06/2021,18:07,,,40.735065,-73.88184,"(40.735065, -73.88184)",VANKLEECK STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4445143,Sedan,E-Scooter,,, +08/06/2021,18:45,QUEENS,11372,40.747925,-73.88114,"(40.747925, -73.88114)",ROOSEVELT AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444841,Sedan,E-Bike,,, +08/05/2021,13:00,BRONX,10459,40.8339,-73.883514,"(40.8339, -73.883514)",WEST FARMS ROAD,EAST 173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444658,Sedan,,,, +08/05/2021,19:00,,,40.730434,-74.00908,"(40.730434, -74.00908)",WASHINGTON STREET,,,1,0,1,0,0,0,0,0,,,,,,4444631,,,,, +08/06/2021,17:45,,,40.770485,-73.7867,"(40.770485, -73.7867)",203 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444427,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,8:45,QUEENS,11101,40.759068,-73.94442,"(40.759068, -73.94442)",,,38-09 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445091,Sedan,,,, +08/04/2021,21:10,,,40.81479,-73.93614,"(40.81479, -73.93614)",WEST 138 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444248,Sedan,Sedan,,, +08/05/2021,14:24,,,40.739666,-73.79215,"(40.739666, -73.79215)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444080,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,23:45,QUEENS,11356,40.784916,-73.84213,"(40.784916, -73.84213)",126 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444587,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,21:15,,,40.66735,-73.76994,"(40.66735, -73.76994)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444002,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,1:42,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,18:15,QUEENS,11357,40.78467,-73.80256,"(40.78467, -73.80256)",160 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443836,Sedan,,,, +07/14/2021,8:18,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4444869,Station Wagon/Sport Utility Vehicle,,,, +07/05/2021,0:00,BROOKLYN,11212,40.656273,-73.90731,"(40.656273, -73.90731)",ROCKAWAY AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444773,Sedan,,,, +08/04/2021,14:00,BRONX,10454,40.810253,-73.91434,"(40.810253, -73.91434)",SAINT MARYS STREET,CRIMMINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444528,Sedan,,,, +08/06/2021,17:19,,,40.740093,-73.89986,"(40.740093, -73.89986)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444390,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,10:00,BRONX,10466,40.89432,-73.83948,"(40.89432, -73.83948)",,,4111 MONTICELLO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445125,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,7:00,,,40.61799,-74.0365,"(40.61799, -74.0365)",95 STREET,MARINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444216,Sedan,,,, +08/04/2021,11:15,MANHATTAN,10001,40.74967,-73.99531,"(40.74967, -73.99531)",WEST 30 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4443851,Taxi,,,, +07/11/2021,0:29,BROOKLYN,11212,40.662914,-73.90903,"(40.662914, -73.90903)",,,666 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444229,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,18:20,BROOKLYN,11233,40.68623,-73.91786,"(40.68623, -73.91786)",SARATOGA AVENUE,HANCOCK STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4444778,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,11:00,MANHATTAN,10031,40.824818,-73.94869,"(40.824818, -73.94869)",,,509 WEST 144 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444434,Sedan,,,, +08/06/2021,3:15,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444332,Sedan,Sedan,,, +06/18/2021,21:45,,,40.67642,-73.94154,"(40.67642, -73.94154)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444886,Sedan,Sedan,,, +06/28/2021,12:08,BROOKLYN,11213,40.672516,-73.93356,"(40.672516, -73.93356)",PARK PLACE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4444899,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +08/05/2021,11:33,MANHATTAN,10035,40.80711,-73.93753,"(40.80711, -73.93753)",,,1881 PARK AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4443981,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,22:22,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443886,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,17:00,QUEENS,11385,40.709393,-73.91406,"(40.709393, -73.91406)",,,1893 DE KALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4444817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,13:10,MANHATTAN,10038,40.7103,-74.00106,"(40.7103, -74.00106)",,,375 PEARL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4443728,Bus,,,, +08/06/2021,18:12,,,40.69205,-73.982544,"(40.69205, -73.982544)",WILLOUGHBY STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4444399,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,16:00,BROOKLYN,11233,40.67538,-73.9082,"(40.67538, -73.9082)",EASTERN PARKWAY,PACIFIC STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4444707,Bike,,,, +08/06/2021,23:05,,,40.602295,-73.752174,"(40.602295, -73.752174)",CORNAGA AVENUE,BEACH 19 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4444438,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,4:30,,,40.705215,-73.92069,"(40.705215, -73.92069)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444480,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/30/2021,10:45,BROOKLYN,11201,40.699818,-73.995605,"(40.699818, -73.995605)",,,97 COLUMBIA HEIGHTS,0,0,0,0,0,0,0,0,Unspecified,,,,,4444929,Sedan,,,, +08/06/2021,20:00,,,40.579826,-73.97622,"(40.579826, -73.97622)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444671,Sedan,,,, +08/04/2021,14:35,BROOKLYN,11217,40.680935,-73.9818,"(40.680935, -73.9818)",,,568 BALTIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443762,Sedan,Sedan,,, +08/01/2021,0:00,MANHATTAN,10023,40.775146,-73.98047,"(40.775146, -73.98047)",,,188 COLUMBUS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4444570,Sedan,,,, +08/05/2021,5:15,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4444156,Sedan,Sedan,Sedan,, +08/04/2021,0:00,,,40.729305,-73.910385,"(40.729305, -73.910385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4443656,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,16:10,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,PACIFIC STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4444965,Pick-up Truck,Sedan,,, +08/02/2021,10:52,BROOKLYN,11204,40.61957,-73.98973,"(40.61957, -73.98973)",,,6417 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444692,Sedan,,,, +08/04/2021,12:57,,,40.638554,-74.08174,"(40.638554, -74.08174)",WESTERVELT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444139,Sedan,,,, +08/04/2021,12:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4443898,Tractor Truck Diesel,Sedan,,, +07/24/2021,10:46,MANHATTAN,10027,40.80755,-73.95291,"(40.80755, -73.95291)",SAINT NICHOLAS AVENUE,WEST 121 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4444694,Sedan,Sedan,,, +08/05/2021,17:30,BROOKLYN,11220,40.642746,-74.00794,"(40.642746, -74.00794)",,,628 51 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445011,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,12:10,BRONX,10468,40.86135,-73.89774,"(40.86135, -73.89774)",GRAND CONCOURSE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444288,Sedan,Bus,,, +08/04/2021,14:00,,,40.82207,-73.94993,"(40.82207, -73.94993)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443809,Sedan,,,, +08/05/2021,7:35,BROOKLYN,11235,40.59181,-73.954124,"(40.59181, -73.954124)",,,2411 EAST 16 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444201,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,8:35,,,40.68324,-73.9439,"(40.68324, -73.9439)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444748,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,22:00,QUEENS,11369,40.762436,-73.86142,"(40.762436, -73.86142)",,,109-03 DITMARS BOULEVARD,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4444283,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/06/2022,15:34,,,40.69798,-73.91257,"(40.69798, -73.91257)",PALMETTO STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544210,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,16:47,QUEENS,11412,40.69595,-73.75288,"(40.69595, -73.75288)",116 AVENUE,200 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4444183,Sedan,Box Truck,,, +08/04/2021,11:43,MANHATTAN,10016,40.747295,-73.97405,"(40.747295, -73.97405)",EAST 38 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443731,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,9:39,BROOKLYN,11228,40.62677,-74.01501,"(40.62677, -74.01501)",73 STREET,FORT HAMILTON PARKWAY,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4443769,Sedan,Sedan,Sedan,, +08/05/2021,8:15,QUEENS,11426,40.746044,-73.727516,"(40.746044, -73.727516)",,,74-10 COMMONWEALTH BOULEVARD,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4443987,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,21:35,BROOKLYN,11226,40.646793,-73.958115,"(40.646793, -73.958115)",,,1005 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4444648,Bus,E-Bike,,, +08/04/2021,20:05,BRONX,10462,40.834038,-73.846466,"(40.834038, -73.846466)",,,2365 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443954,Sedan,Sedan,,, +08/05/2021,22:13,QUEENS,11368,40.756714,-73.85774,"(40.756714, -73.85774)",,,111-10 34 AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444836,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,10:00,QUEENS,11361,40.76259,-73.76305,"(40.76259, -73.76305)",,,219-20 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443963,Sedan,,,, +08/05/2021,9:50,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4444205,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,9:50,BRONX,10474,40.810192,-73.88632,"(40.810192, -73.88632)",COSTER STREET,OAK POINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444315,Box Truck,Van,,, +08/04/2021,8:00,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443646,Sedan,Sedan,,, +08/06/2021,19:40,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,FLUSHING AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444485,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,21:55,MANHATTAN,10039,40.829487,-73.93705,"(40.829487, -73.93705)",,,2931 8 AVENUE,4,0,0,0,0,0,4,0,Aggressive Driving/Road Rage,Unspecified,,,,4444244,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,10:30,,,40.78517,-73.973145,"(40.78517, -73.973145)",WEST 84 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4444713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +08/06/2021,8:55,QUEENS,11420,40.677334,-73.82548,"(40.677334, -73.82548)",ROCKAWAY BOULEVARD,113 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4444376,Sedan,Station Wagon/Sport Utility Vehicle,Flat Bed,, +08/06/2021,15:50,,,40.592236,-74.18978,"(40.592236, -74.18978)",,,4077 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444903,Station Wagon/Sport Utility Vehicle,Chassis Cab,Station Wagon/Sport Utility Vehicle,, +08/05/2021,22:21,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",EAST 167 STREET,JEROME AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444337,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,21:20,BROOKLYN,11207,40.6783,-73.88988,"(40.6783, -73.88988)",FULTON STREET,SCHENCK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4443855,Bike,,,, +08/06/2021,6:40,,,40.744465,-73.77179,"(40.744465, -73.77179)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444212,Dump,Box Truck,,, +08/06/2021,10:15,,,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444344,Sedan,Van,,, +07/31/2021,12:17,QUEENS,11377,40.747623,-73.89658,"(40.747623, -73.89658)",69 STREET,37 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444469,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/02/2021,20:02,BROOKLYN,11213,40.675644,-73.94161,"(40.675644, -73.94161)",BERGEN STREET,KINGSTON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444864,Sedan,Motorbike,,, +08/05/2021,15:25,BROOKLYN,11233,40.678116,-73.90787,"(40.678116, -73.90787)",EASTERN PARKWAY,FULTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444233,Sedan,,,, +08/04/2021,5:52,,,,,,COLLEGE POINT BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4444581,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,2:40,BRONX,10472,40.832912,-73.87638,"(40.832912, -73.87638)",,,1349 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:00,BRONX,10457,40.85325,-73.89308,"(40.85325, -73.89308)",EAST 182 STREET,BATHGATE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445050,Sedan,Sedan,,, +08/04/2021,2:05,BROOKLYN,11249,40.721977,-73.959946,"(40.721977, -73.959946)",KENT AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4443684,Sedan,,,, +07/26/2021,0:01,BROOKLYN,11205,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444759,Sedan,Bike,,, +06/26/2022,9:45,MANHATTAN,10012,40.72195,-73.99628,"(40.72195, -73.99628)",SPRING STREET,MULBERRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544554,Sedan,,,, +07/29/2021,16:50,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444690,Sedan,Sedan,,, +08/06/2021,12:15,QUEENS,11101,40.75065,-73.94283,"(40.75065, -73.94283)",42 ROAD,23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444607,Sedan,,,, +08/04/2021,9:00,QUEENS,11101,40.75201,-73.93016,"(40.75201, -73.93016)",34 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444522,E-Scooter,Sedan,,, +08/04/2021,20:00,STATEN ISLAND,10304,40.59493,-74.09799,"(40.59493, -74.09799)",ATLANTIC AVENUE,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4443902,Sedan,,,, +08/06/2021,20:32,QUEENS,11355,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4444508,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/30/2021,13:53,BROOKLYN,11221,40.687557,-73.93896,"(40.687557, -73.93896)",MARCUS GARVEY BOULEVARD,GATES AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,1:10,STATEN ISLAND,10308,40.544075,-74.15808,"(40.544075, -74.15808)",OAKDALE STREET,ROBINSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4443619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,15:20,,,40.690594,-73.95162,"(40.690594, -73.95162)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444731,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,23:55,BROOKLYN,11236,40.642467,-73.91103,"(40.642467, -73.91103)",,,590 EAST 88 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4443781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/04/2021,2:22,,,40.662533,-73.94792,"(40.662533, -73.94792)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4443952,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/05/2021,0:01,STATEN ISLAND,10308,40.536716,-74.14712,"(40.536716, -74.14712)",,,19 HIGHLAND LANE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444260,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,4:00,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4444187,Sedan,Sedan,,, +08/06/2021,2:57,BROOKLYN,11210,40.623875,-73.93547,"(40.623875, -73.93547)",KINGS HIGHWAY,EAST 40 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4444320,Sedan,,,, +08/06/2021,12:50,BROOKLYN,11226,40.65525,-73.952965,"(40.65525, -73.952965)",ROGERS AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4444461,Station Wagon/Sport Utility Vehicle,Bus,,, +08/01/2021,13:30,STATEN ISLAND,10312,40.546745,-74.17358,"(40.546745, -74.17358)",,,186 SERRELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444500,Sedan,,,, +08/05/2021,6:55,,,40.75592,-73.9749,"(40.75592, -73.9749)",EAST 48 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443883,Sedan,,,, +08/06/2021,16:00,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4444371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,3:02,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",8 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443716,Tractor Truck Diesel,E-Bike,,, +06/14/2021,1:00,,,40.6843,-73.94121,"(40.6843, -73.94121)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444981,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,9:15,,,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444938,Sedan,E-Scooter,,, +08/05/2021,16:24,MANHATTAN,10001,40.751488,-73.99769,"(40.751488, -73.99769)",WEST 31 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444909,Sedan,,,, +08/05/2021,18:48,,,40.891674,-73.864685,"(40.891674, -73.864685)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444075,Sedan,Multi-Wheeled Vehicle,,, +07/30/2021,21:00,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444339,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,10:20,BRONX,10466,40.899815,-73.85781,"(40.899815, -73.85781)",NEREID AVENUE,BRONX BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444051,Sedan,,,, +08/05/2021,11:00,QUEENS,11106,40.758812,-73.925446,"(40.758812, -73.925446)",,,33-18 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444550,Sedan,Sedan,,, +08/06/2021,16:25,BRONX,10472,40.828293,-73.861725,"(40.828293, -73.861725)",WATSON AVENUE,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444324,Sedan,Sedan,,, +08/05/2021,0:05,QUEENS,11373,40.74622,-73.87755,"(40.74622, -73.87755)",ELMHURST AVENUE,FORLEY STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4443816,Station Wagon/Sport Utility Vehicle,Moped,,, +08/05/2021,18:35,BROOKLYN,11212,40.66493,-73.9144,"(40.66493, -73.9144)",BLAKE AVENUE,HERZL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444237,Sedan,Sedan,,, +08/06/2021,15:00,QUEENS,11691,40.597504,-73.75096,"(40.597504, -73.75096)",,,250 BEACH 17 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444437,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,0:00,QUEENS,11418,40.70272,-73.83807,"(40.70272, -73.83807)",84 AVENUE,113 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445108,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,2:02,BROOKLYN,11211,40.705334,-73.95953,"(40.705334, -73.95953)",LEE AVENUE,RODNEY STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444413,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +08/04/2021,21:17,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443798,Sedan,Sedan,,, +08/02/2021,16:19,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,1:15,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,MALTA STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443993,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,19:10,BROOKLYN,11218,40.631493,-73.97557,"(40.631493, -73.97557)",,,4205 18 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4444646,Sedan,,,, +08/06/2021,22:30,BRONX,10459,40.828907,-73.886986,"(40.828907, -73.886986)",,,1017 FREEMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444669,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,14:43,MANHATTAN,10065,40.76483,-73.96081,"(40.76483, -73.96081)",,,300 EAST 66 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4445040,Sedan,Box Truck,,, +08/06/2021,8:13,BROOKLYN,11201,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,BOERUM PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,6:58,,,40.703403,-73.917786,"(40.703403, -73.917786)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444481,Station Wagon/Sport Utility Vehicle,Bus,,, +08/03/2021,0:45,,,,,,WASHINGTON BRIDGE 181 ST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4444369,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,14:30,BROOKLYN,11212,40.670815,-73.90318,"(40.670815, -73.90318)",,,1885 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444784,Station Wagon/Sport Utility Vehicle,Motorbike,,, +08/03/2021,19:30,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445024,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/05/2021,12:25,,,,,,JAY STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4444027,Box Truck,Sedan,,, +08/04/2021,12:58,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443822,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,14:41,QUEENS,11377,40.73931,-73.91947,"(40.73931, -73.91947)",46 STREET,48 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4444242,Sedan,skate boar,,, +08/02/2021,9:07,,,40.754055,-73.99583,"(40.754055, -73.99583)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444907,Sedan,,,, +08/04/2021,10:05,,,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444811,Sedan,,,, +08/06/2021,21:00,BRONX,10468,40.866955,-73.89782,"(40.866955, -73.89782)",,,2647 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444491,Sedan,Motorcycle,,, +07/14/2021,16:00,MANHATTAN,10026,40.803635,-73.95349,"(40.803635, -73.95349)",,,217 WEST 116 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,8:00,BROOKLYN,11238,40.677765,-73.96488,"(40.677765, -73.96488)",,,324 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444870,Convertible,,,, +08/02/2021,20:30,,,40.617672,-73.99542,"(40.617672, -73.99542)",17 AVENUE,,,1,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4444391,Taxi,E-Bike,,, +08/05/2021,14:45,,,40.758022,-73.981804,"(40.758022, -73.981804)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4444193,Taxi,Bike,,, +08/06/2021,9:42,BROOKLYN,11215,40.667156,-73.98384,"(40.667156, -73.98384)",,,469 10 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4445032,Pick-up Truck,Bike,,, +08/05/2021,23:50,QUEENS,11103,40.76577,-73.919,"(40.76577, -73.919)",34 STREET,30 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444767,Bike,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,13:25,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443709,Sedan,,,, +08/05/2021,19:50,,,40.77904,-73.9435,"(40.77904, -73.9435)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444172,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,10:45,,,40.592342,-74.064186,"(40.592342, -74.064186)",DOTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443675,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,18:00,QUEENS,11435,40.68489,-73.80592,"(40.68489, -73.80592)",,,138-07 111 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4444084,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/05/2021,6:30,QUEENS,11372,40.756336,-73.87794,"(40.756336, -73.87794)",90 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443908,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,7:25,QUEENS,11373,40.73821,-73.866486,"(40.73821, -73.866486)",JUNCTION BOULEVARD,55 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444598,Station Wagon/Sport Utility Vehicle,Bike,,, +07/30/2021,23:45,BRONX,10468,40.864674,-73.896835,"(40.864674, -73.896835)",CRESTON AVENUE,EAST 192 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444225,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,9:39,BRONX,10465,40.83071,-73.82713,"(40.83071, -73.82713)",,,2877 BARKLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444264,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,11:00,BROOKLYN,11207,0,0,"(0.0, 0.0)",,,587 SUTTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,14:28,,,40.745815,-73.945656,"(40.745815, -73.945656)",DAVIS STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443743,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/05/2021,5:47,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443838,Sedan,Sedan,,, +08/05/2021,16:32,QUEENS,11101,40.752975,-73.91024,"(40.752975, -73.91024)",51 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444555,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,9:27,BRONX,10451,40.818012,-73.92519,"(40.818012, -73.92519)",EAST 149 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444275,Taxi,Taxi,,, +08/04/2021,17:25,,,40.884388,-73.87997,"(40.884388, -73.87997)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4443946,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,6:30,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4443877,Sedan,Sedan,,, +08/03/2021,10:15,,,,,,FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444737,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,5:30,MANHATTAN,10128,40.77855,-73.951256,"(40.77855, -73.951256)",EAST 87 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444292,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/28/2021,15:00,QUEENS,11378,40.72428,-73.898445,"(40.72428, -73.898445)",GRAND AVENUE,HAMILTON PLACE,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444829,Sedan,E-Bike,,, +08/06/2021,6:30,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",MAURICE AVENUE,55 DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444823,Box Truck,Sedan,,, +08/04/2021,8:10,QUEENS,11362,40.75787,-73.725555,"(40.75787, -73.725555)",,,253-39 61 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443672,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,1:00,BROOKLYN,11207,40.6877,-73.91095,"(40.6877, -73.91095)",COVERT STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443604,Sedan,,,, +08/04/2021,11:30,BROOKLYN,11217,40.68582,-73.982834,"(40.68582, -73.982834)",,,89 NEVINS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4443784,Sedan,Sedan,,, +08/06/2021,17:38,BROOKLYN,11208,40.679787,-73.8782,"(40.679787, -73.8782)",,,3170 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4444456,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +08/05/2021,22:35,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444149,Ambulance,,,, +08/04/2021,21:30,QUEENS,11358,40.76027,-73.80401,"(40.76027, -73.80401)",162 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4443844,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,14:45,QUEENS,11433,40.702168,-73.7924,"(40.702168, -73.7924)",LIBERTY AVENUE,165 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4443747,Sedan,Sedan,,, +08/06/2021,17:30,BRONX,10460,40.840004,-73.877396,"(40.840004, -73.877396)",DEVOE AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445064,Sedan,E-Scooter,,, +08/05/2021,18:56,BROOKLYN,11208,40.67567,-73.87008,"(40.67567, -73.87008)",PITKIN AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,7:00,BRONX,10466,40.895367,-73.86072,"(40.895367, -73.86072)",EAST 234 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444056,Sedan,,,, +08/05/2021,9:43,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4444070,Tractor Truck Diesel,,,, +08/03/2021,15:14,BRONX,10460,40.84398,-73.8696,"(40.84398, -73.8696)",GARFIELD STREET,MORRIS PARK AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,14:48,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FULTON STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444384,Taxi,Sedan,,, +08/05/2021,9:15,BROOKLYN,11208,40.67173,-73.87926,"(40.67173, -73.87926)",SUTTER AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443998,Station Wagon/Sport Utility Vehicle,Carry All,,, +08/06/2021,15:50,,,40.729446,-74.00518,"(40.729446, -74.00518)",VARICK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444635,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,15:31,MANHATTAN,10012,40.728523,-73.999916,"(40.728523, -73.999916)",,,160 BLEECKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445106,Box Truck,Bike,,, +08/06/2021,14:30,,,40.766308,-73.8197,"(40.766308, -73.8197)",35 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444352,Sedan,Sedan,,, +08/05/2021,19:20,STATEN ISLAND,10310,40.62667,-74.12827,"(40.62667, -74.12827)",FOREST AVENUE,DUBOIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444799,Sedan,,,, +08/04/2021,19:50,BROOKLYN,11228,40.623913,-74.00726,"(40.623913, -74.00726)",12 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444108,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,17:13,STATEN ISLAND,10306,40.572037,-74.144196,"(40.572037, -74.144196)",RICHMOND ROAD,SAINT PATRICK PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444257,Sedan,Sedan,,, +08/04/2021,19:19,MANHATTAN,10128,40.780464,-73.953865,"(40.780464, -73.953865)",,,170 EAST 88 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4445035,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/24/2021,15:30,,,40.671032,-73.93927,"(40.671032, -73.93927)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444895,Box Truck,Sedan,,, +08/05/2021,9:41,BRONX,10459,40.832085,-73.89561,"(40.832085, -73.89561)",,,775 JENNINGS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444663,Box Truck,Sedan,,, +08/06/2021,0:00,QUEENS,11422,40.66406,-73.73846,"(40.66406, -73.73846)",241 STREET,141 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444220,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,20:27,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444429,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,22:34,STATEN ISLAND,10306,40.566715,-74.13769,"(40.566715, -74.13769)",CLARKE AVENUE,AMBER STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4444410,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,16:00,,,,,,,,93 WEST DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4443792,Box Truck,,,, +08/05/2021,11:50,MANHATTAN,10023,40.781303,-73.98201,"(40.781303, -73.98201)",,,240 WEST 75 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4444712,Sedan,,,, +08/05/2021,10:08,BROOKLYN,11236,40.63538,-73.896034,"(40.63538, -73.896034)",,,9316 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444015,Sedan,Sedan,,, +08/02/2021,20:00,QUEENS,11377,40.75054,-73.896545,"(40.75054, -73.896545)",69 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444848,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,12:46,QUEENS,11104,40.74889,-73.91944,"(40.74889, -73.91944)",,,39-43 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444146,Sedan,,,, +08/04/2021,15:33,BRONX,10452,40.833916,-73.92702,"(40.833916, -73.92702)",WEST 165 STREET,WOODYCREST AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4443899,Sedan,Sedan,,, +08/05/2021,7:30,MANHATTAN,10128,40.780853,-73.95672,"(40.780853, -73.95672)",EAST 87 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4444166,Post offic,Motorcycle,,, +08/06/2021,23:13,BRONX,10451,40.814762,-73.92761,"(40.814762, -73.92761)",,,2656 PARK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444531,Sedan,Sedan,,, +08/01/2021,7:17,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Speed,,,,4444776,Sedan,,,, +08/06/2021,14:40,BROOKLYN,11210,40.623676,-73.937996,"(40.623676, -73.937996)",FLATBUSH AVENUE,ALTON PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444321,Sedan,Sedan,,, +08/05/2021,16:44,MANHATTAN,10019,40.768032,-73.99586,"(40.768032, -73.99586)",12 AVENUE,WEST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444189,Convertible,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,15:00,,,40.71543,-73.95387,"(40.71543, -73.95387)",NORTH 7 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444306,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/21/2021,14:35,,,40.67786,-73.93863,"(40.67786, -73.93863)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444896,Convertible,,,, +08/06/2021,9:50,MANHATTAN,10037,40.81061,-73.93847,"(40.81061, -73.93847)",,,10 EAST 132 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444284,Sedan,Sedan,,, +08/04/2021,1:00,,,40.702744,-73.80592,"(40.702744, -73.80592)",LOWE COURT,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4443695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,8:53,BRONX,10469,40.8801,-73.85799,"(40.8801, -73.85799)",,,3717 BRONXWOOD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4443936,Sedan,Sedan,,, +08/03/2021,8:20,,,40.608612,-74.13098,"(40.608612, -74.13098)",NORTH GANNON AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444898,Sedan,Box Truck,,, +08/05/2021,6:45,QUEENS,11385,40.69453,-73.897896,"(40.69453, -73.897896)",,,79-14 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444093,Sedan,,,, +08/04/2021,15:16,,,40.853138,-73.9017,"(40.853138, -73.9017)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4443890,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/04/2021,12:15,BRONX,10457,40.838875,-73.90266,"(40.838875, -73.90266)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443680,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,13:30,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",KINGS HIGHWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443732,Sedan,Concrete Mixer,,, +07/27/2021,9:25,,,40.625816,-74.15519,"(40.625816, -74.15519)",,,1980 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444881,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,12:45,MANHATTAN,10001,40.75219,-73.99347,"(40.75219, -73.99347)",WEST 34 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444279,Sedan,Sedan,,, +08/03/2021,19:35,,,40.679565,-73.93436,"(40.679565, -73.93436)",LEWIS AVENUE,FULTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444924,Bike,,,, +08/04/2021,16:00,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4443975,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,10:00,BRONX,10458,40.85415,-73.88447,"(40.85415, -73.88447)",BEAUMONT AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443964,Sedan,Ambulance,,, +08/04/2021,2:45,QUEENS,11418,40.70013,-73.84274,"(40.70013, -73.84274)",,,84-28 107 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4443659,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/03/2021,8:30,BROOKLYN,11222,40.732136,-73.94441,"(40.732136, -73.94441)",,,374 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4444296,Station Wagon/Sport Utility Vehicle,,,, +06/21/2021,18:25,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444834,Sedan,Bike,,, +07/30/2021,19:20,BROOKLYN,11221,40.69003,-73.93048,"(40.69003, -73.93048)",REID AVENUE,LEXINGTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unsafe Speed,,,,4444954,Sedan,Motorbike,,, +08/05/2021,17:20,BROOKLYN,11228,40.61728,-74.00856,"(40.61728, -74.00856)",,,1359 79 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444109,Sedan,Sedan,,, +08/05/2021,13:45,BROOKLYN,11206,40.695854,-73.93841,"(40.695854, -73.93841)",,,300 VERNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444952,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/06/2021,8:50,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444247,Flat Bed,,,, +07/29/2021,14:50,QUEENS,11102,40.776546,-73.92377,"(40.776546, -73.92377)",HOYT AVENUE NORTH,19 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444512,Sedan,,,, +08/06/2021,17:35,QUEENS,11103,40.756676,-73.920876,"(40.756676, -73.920876)",STEINWAY STREET,34 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4444741,Sedan,Taxi,,, +08/06/2021,16:05,BROOKLYN,11239,40.648956,-73.88301,"(40.648956, -73.88301)",,,1310 PENNSYLVANIA AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444452,E-Bike,,,, +08/05/2021,19:43,MANHATTAN,10029,40.79293,-73.94791,"(40.79293, -73.94791)",PARK AVENUE,EAST 106 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444173,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,9:00,,,40.690086,-73.751205,"(40.690086, -73.751205)",120 AVENUE,199 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4444003,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,8:45,,,40.59125,-74.19328,"(40.59125, -74.19328)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444200,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,17:51,,,,,,VANWYCK EXPRESSWAY,PARK DRIVE EAST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443826,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,21:50,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444062,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,16:55,BRONX,10462,40.85159,-73.867805,"(40.85159, -73.867805)",BRONXDALE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444065,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/04/2021,0:35,QUEENS,11422,40.662186,-73.737946,"(40.662186, -73.737946)",243 STREET,143 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4443572,Sedan,,,, +08/04/2021,15:27,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444153,Sedan,Sedan,,, +08/04/2021,19:18,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4443854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,16:36,BROOKLYN,11218,40.640865,-73.9852,"(40.640865, -73.9852)",,,1312 38 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445069,Van,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,1:47,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",JUNCTION BOULEVARD,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444849,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,21:20,MANHATTAN,10025,40.79856,-73.96336,"(40.79856, -73.96336)",WEST 105 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443874,Sedan,Sedan,,, +08/06/2021,9:03,QUEENS,11416,40.689713,-73.840775,"(40.689713, -73.840775)",104 STREET,94 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444215,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,9:37,,,,,,COLUMBUS AVENUE,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444380,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,22:45,BROOKLYN,11201,40.68866,-73.985245,"(40.68866, -73.985245)",,,193 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444104,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,13:00,BROOKLYN,11212,,,,CHRISTOPHER AVE,Livonia avenue,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4444232,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,8:00,QUEENS,11377,40.735928,-73.89036,"(40.735928, -73.89036)",,,72-38 51 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443788,Sedan,,,, +06/29/2021,21:05,,,40.67582,-73.930466,"(40.67582, -73.930466)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444863,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,5:00,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4443982,Sedan,Tractor Truck Diesel,,, +08/05/2021,15:30,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444311,Station Wagon/Sport Utility Vehicle,SEMI TRAIL,,, +08/06/2021,14:30,,,40.76739,-73.97073,"(40.76739, -73.97073)",EAST 64 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445033,Motorcycle,,,, +08/03/2021,9:12,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4444348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/05/2021,15:40,MANHATTAN,10002,40.719067,-73.99336,"(40.719067, -73.99336)",CHRYSTIE STREET,BROOME STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4444803,Sedan,,,, +08/02/2021,22:58,MANHATTAN,10011,40.732925,-74.00007,"(40.732925, -74.00007)",WAVERLY PLACE,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4444632,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +08/05/2021,19:00,BRONX,10454,40.806118,-73.924805,"(40.806118, -73.924805)",,,130 WILLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444274,Sedan,,,, +08/01/2021,21:00,,,40.622826,-74.162224,"(40.622826, -74.162224)",LUDWIG LANE,AMITY PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444891,Sedan,,,, +08/06/2021,17:49,,,40.660786,-73.93982,"(40.660786, -73.93982)",MIDWOOD STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4444562,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,18:25,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4444406,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/06/2021,11:13,,,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,,,,4444678,Van,Sedan,,, +08/06/2021,11:56,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",HOWARD AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444716,Sedan,Ambulance,,, +08/04/2021,22:30,,,40.74424,-73.84717,"(40.74424, -73.84717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4443808,Sedan,Sedan,,, +08/02/2021,1:30,QUEENS,11368,40.75232,-73.85959,"(40.75232, -73.85959)",108 STREET,38 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444842,E-Bike,,,, +08/04/2021,21:15,STATEN ISLAND,10302,40.623386,-74.132065,"(40.623386, -74.132065)",JEWETT AVENUE,RAVENHURST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444140,Sedan,Sedan,,, +08/03/2021,18:10,BROOKLYN,11230,40.624878,-73.96418,"(40.624878, -73.96418)",AVENUE J,EAST 12 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4445008,Station Wagon/Sport Utility Vehicle,Bus,,, +08/06/2021,14:29,BRONX,10462,40.82876,-73.84123,"(40.82876, -73.84123)",BRUSH AVENUE,BRUCKNER EXPRESSWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,11:28,BRONX,10462,40.850494,-73.86573,"(40.850494, -73.86573)",,,2016 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444289,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,21:41,MANHATTAN,10033,40.84552,-73.93469,"(40.84552, -73.93469)",WEST 176 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444269,Sedan,,,, +08/06/2021,0:00,QUEENS,11417,40.671257,-73.84425,"(40.671257, -73.84425)",,,138-18 REDDING STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444542,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,20:00,,,40.575203,-74.169846,"(40.575203, -74.169846)",,,2873 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4444902,Sedan,Motorbike,,, +08/06/2021,19:36,BROOKLYN,11205,40.690594,-73.95162,"(40.690594, -73.95162)",NOSTRAND AVENUE,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,1:45,BROOKLYN,11216,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444749,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,8:15,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444338,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,19:37,BROOKLYN,11229,40.604584,-73.952415,"(40.604584, -73.952415)",,,2350 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444206,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +08/06/2021,7:40,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444468,Sedan,Box Truck,,, +08/03/2021,18:30,,,40.7196,-73.94391,"(40.7196, -73.94391)",HUMBOLDT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444301,Sedan,Pick-up Truck,,, +07/31/2021,1:00,BROOKLYN,11206,40.697514,-73.94093,"(40.697514, -73.94093)",,,43 MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,0:00,STATEN ISLAND,10312,40.552124,-74.17258,"(40.552124, -74.17258)",POMPEY AVENUE,GENESEE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444501,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,13:55,,,40.669964,-73.775314,"(40.669964, -73.775314)",140 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4444402,Sedan,Taxi,,, +08/06/2021,17:32,,,40.783268,-73.82485,"(40.783268, -73.82485)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444582,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,21:31,BROOKLYN,11216,40.670124,-73.95528,"(40.670124, -73.95528)",BEDFORD AVENUE,EASTERN PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444333,Station Wagon/Sport Utility Vehicle,Bike,,, +08/06/2021,3:00,BRONX,10470,40.906155,-73.848206,"(40.906155, -73.848206)",,,743 EAST 243 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445053,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/27/2021,6:43,BRONX,10452,40.832916,-73.92939,"(40.832916, -73.92939)",OGDEN AVENUE,WEST 164 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444722,Taxi,,,, +05/01/2021,10:43,,,40.673256,-73.9307,"(40.673256, -73.9307)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4444885,Sedan,Bus,,, +08/05/2021,1:55,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4443863,Box Truck,,,, +08/04/2021,9:50,,,40.660442,-73.95688,"(40.660442, -73.95688)",BEDFORD AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4443724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,7:40,,,,,,142 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4443636,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,17:00,,,40.691914,-73.88363,"(40.691914, -73.88363)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4443918,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,9:00,BROOKLYN,11208,40.671467,-73.88109,"(40.671467, -73.88109)",SUTTER AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4443989,Carry All,PK,,, +08/02/2021,21:35,,,40.69149,-73.92557,"(40.69149, -73.92557)",BROADWAY,GREENE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444920,E-Bike,Sedan,,, +08/04/2021,20:08,QUEENS,11378,40.729084,-73.93104,"(40.729084, -73.93104)",LAUREL HILL BOULEVARD,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4443770,Sedan,,,, +08/04/2021,12:48,,,40.591755,-73.9083,"(40.591755, -73.9083)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4443758,Sedan,,,, +08/05/2021,9:49,,,40.825413,-73.923485,"(40.825413, -73.923485)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443955,Sedan,Pick-up Truck,,, +08/05/2021,7:32,BROOKLYN,11249,40.700977,-73.95871,"(40.700977, -73.95871)",,,98 RUTLEDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/30/2021,9:00,,,40.80885,-73.95404,"(40.80885, -73.95404)",WEST 122 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4444673,,,,, +07/31/2021,20:21,MANHATTAN,10007,40.71322,-74.01172,"(40.71322, -74.01172)",,,250 GREENWICH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444316,Sedan,Sedan,,, +06/18/2021,15:35,,,40.671925,-73.939186,"(40.671925, -73.939186)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4444964,Sedan,Sedan,Sedan,, +08/06/2021,6:15,QUEENS,11419,40.690235,-73.81214,"(40.690235, -73.81214)",,,104-32 134 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/05/2020,19:50,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4444243,Flat Bed,,,, +08/02/2021,3:45,,,,,,ASTORIA BOULEVARD,33 STREET,,2,0,2,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4444516,,,,, +08/05/2021,2:00,QUEENS,11419,40.691357,-73.812904,"(40.691357, -73.812904)",,,133-12 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443803,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,14:23,BROOKLYN,11230,40.629543,-73.96609,"(40.629543, -73.96609)",CONEY ISLAND AVENUE,AVENUE H,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4443835,Sedan,E-Scooter,,, +08/05/2021,13:40,QUEENS,11433,40.69821,-73.78648,"(40.69821, -73.78648)",,,108-09 MERRICK BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444079,Sedan,Sedan,,, +08/04/2021,10:40,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4444042,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/05/2021,18:53,MANHATTAN,10019,40.761383,-73.978165,"(40.761383, -73.978165)",,,28 WEST 53 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444196,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/06/2021,16:00,,,40.775665,-73.84537,"(40.775665, -73.84537)",25 ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444360,Station Wagon/Sport Utility Vehicle,Bus,,, +08/06/2021,20:56,,,,,,69 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444855,Sedan,,,, +08/06/2021,8:20,QUEENS,11368,40.73631,-73.85766,"(40.73631, -73.85766)",,,99-45 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444211,Sedan,Box Truck,,, +08/04/2021,16:27,,,40.783245,-73.81173,"(40.783245, -73.81173)",MURRAY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4443849,Station Wagon/Sport Utility Vehicle,Van,,, +07/24/2021,3:00,,,40.874146,-73.927216,"(40.874146, -73.927216)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driverless/Runaway Vehicle,,,,,4444343,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,15:11,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",MERRICK BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4445126,Taxi,Bus,,, +07/29/2021,19:00,BROOKLYN,11212,40.666603,-73.91387,"(40.666603, -73.91387)",SUTTER AVENUE,AMBOY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444228,Sedan,,,, +08/04/2021,23:40,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4443793,Sedan,Sedan,,, +08/06/2021,22:30,BRONX,10460,40.842266,-73.885765,"(40.842266, -73.885765)",,,1941 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445120,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,11:20,BROOKLYN,11219,40.636456,-74.000534,"(40.636456, -74.000534)",FORT HAMILTON PARKWAY,53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445082,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,9:02,BRONX,10461,40.841305,-73.82735,"(40.841305, -73.82735)",,,3061 CODDINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4444180,Sedan,Sedan,Sedan,, +07/31/2021,12:00,BROOKLYN,11232,40.65443,-74.00757,"(40.65443, -74.00757)",3 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,22:10,BROOKLYN,11210,40.618946,-73.94439,"(40.618946, -73.94439)",,,1324 EAST 31 STREET,3,0,0,0,0,0,3,0,Unspecified,,,,,4444417,Sedan,,,, +08/04/2021,18:42,BRONX,10462,40.85,-73.861946,"(40.85, -73.861946)",,,1962 MULINER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444018,Pick-up Truck,Pick-up Truck,,, +07/16/2021,19:58,BROOKLYN,11233,40.678116,-73.90787,"(40.678116, -73.90787)",FULTON STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444815,Sedan,Sedan,,, +08/05/2021,8:00,,,40.73566,-73.91521,"(40.73566, -73.91521)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444441,Sedan,Box Truck,,, +08/06/2021,22:00,MANHATTAN,10022,40.75694,-73.97145,"(40.75694, -73.97145)",,,151 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444567,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,0:00,BROOKLYN,11233,40.67265,-73.91963,"(40.67265, -73.91963)",HOWARD AVENUE,PROSPECT PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4444780,Sedan,Motorcycle,,, +08/06/2021,11:41,BROOKLYN,11210,40.628563,-73.94823,"(40.628563, -73.94823)",,,909 EAST 29 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4444651,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,15:29,,,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444365,Sedan,Sedan,,, +08/05/2021,11:40,,,40.60416,-73.99752,"(40.60416, -73.99752)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444033,,,,, +08/06/2021,18:25,MANHATTAN,10013,40.722992,-74.0023,"(40.722992, -74.0023)",,,484 BROOME STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444496,Sedan,Box Truck,,, +08/04/2021,14:00,MANHATTAN,10034,40.86485,-73.9226,"(40.86485, -73.9226)",,,172 SHERMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444370,Sedan,,,, +08/04/2021,23:00,BRONX,10456,40.83316,-73.91317,"(40.83316, -73.91317)",,,1221 COLLEGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444328,Sedan,Sedan,,, +08/06/2021,4:00,QUEENS,11691,40.595978,-73.77079,"(40.595978, -73.77079)",,,38-01 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444238,Box Truck,,,, +08/01/2021,5:09,BROOKLYN,11233,40.67584,-73.91655,"(40.67584, -73.91655)",SARATOGA AVENUE,PACIFIC STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4444695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,22:50,,,40.666786,-73.78452,"(40.666786, -73.78452)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,16:16,,,40.699833,-73.93697,"(40.699833, -73.93697)",BEAVER STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4444992,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,18:20,BRONX,10459,40.8315,-73.888084,"(40.8315, -73.888084)",JENNINGS STREET,BRYANT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4443818,,,,, +07/04/2022,14:30,BROOKLYN,11223,40.60549,-73.979195,"(40.60549, -73.979195)",,,1721 WEST 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544567,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,13:00,BROOKLYN,11207,40.667652,-73.88531,"(40.667652, -73.88531)",DUMONT AVENUE,JEROME STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544379,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,13:30,,,40.75829,-73.83431,"(40.75829, -73.83431)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,23:35,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Other Vehicular,,,,,4544675,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,23:54,,,40.7029527,-73.9170515,"(40.7029527, -73.9170515)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469798,AMBULANCE,,,, +07/06/2022,23:50,BROOKLYN,11211,40.717552,-73.95727,"(40.717552, -73.95727)",,,169 NORTH 7 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544283,Taxi,,,, +07/08/2022,21:32,,,40.71294,-73.823845,"(40.71294, -73.823845)",VANWYCK EXPRESSWAY,HOOVER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4544823,Van,Sedan,,, +06/30/2022,17:10,QUEENS,11373,40.738377,-73.87734,"(40.738377, -73.87734)",,,86-07 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544934,Flat Bed,Bike,,, +07/06/2022,13:36,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544370,Sedan,Box Truck,,, +07/06/2022,12:42,QUEENS,11354,40.775932,-73.82445,"(40.775932, -73.82445)",,,25-27 PARSONS BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4543899,Pick-up Truck,,,, +07/08/2022,11:53,BRONX,10472,40.834522,-73.87183,"(40.834522, -73.87183)",EAST 174 STREET,CROES AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4544631,Sedan,,,, +10/20/2021,14:00,,,40.7191462,-73.7894826,"(40.7191462, -73.7894826)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4469805,Convertible,,,, +07/06/2022,19:42,BROOKLYN,11235,40.58659,-73.94593,"(40.58659, -73.94593)",VOORHIES AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4544004,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,14:30,QUEENS,11373,40.74663,-73.883255,"(40.74663, -73.883255)",,,82-28 BAXTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544114,Sedan,,,, +07/08/2022,20:55,BROOKLYN,11207,40.682655,-73.910034,"(40.682655, -73.910034)",BROADWAY,CHAUNCEY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4544895,Sedan,,,, +07/07/2022,20:05,,,40.8514,-73.90606,"(40.8514, -73.90606)",EAST 179 STREET,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4544494,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,15:22,MANHATTAN,10024,40.788506,-73.98107,"(40.788506, -73.98107)",WEST 84 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545193,Sedan,,,, +07/08/2022,13:50,,,40.694115,-73.79214,"(40.694115, -73.79214)",160 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4544626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,3:50,QUEENS,11432,0,0,"(0.0, 0.0)",,,172-68 HENLEY ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4544535,Sedan,,,, +07/06/2022,19:05,QUEENS,11378,40.727825,-73.89218,"(40.727825, -73.89218)",,,71-01 GRAND AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4544273,Sedan,Motorcycle,Motorcycle,, +07/07/2022,17:00,BROOKLYN,11211,40.71332,-73.9425,"(40.71332, -73.9425)",,,321 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544434,Sedan,,,, +06/18/2022,4:25,,,40.76635,-73.89093,"(40.76635, -73.89093)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,Unspecified,Unspecified,,4544499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +07/04/2022,4:19,BRONX,10472,40.828915,-73.88276,"(40.828915, -73.88276)",,,1217 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4544658,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/06/2022,0:00,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544032,Sedan,Sedan,,, +06/24/2022,9:30,QUEENS,11433,40.70312,-73.78941,"(40.70312, -73.78941)",,,168-42 LIBERTY AVENUE,1,0,1,0,0,0,0,0,,,,,,4544526,,,,, +07/06/2022,18:30,MANHATTAN,10022,40.76025,-73.969635,"(40.76025, -73.969635)",LEXINGTON AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544076,Taxi,Sedan,,, +07/04/2022,23:13,QUEENS,11419,40.691814,-73.81672,"(40.691814, -73.81672)",,,101-37 130 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4544471,Sedan,,,, +07/06/2022,14:35,BROOKLYN,11217,40.68342,-73.982,"(40.68342, -73.982)",BERGEN STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4543946,Moped,,,, +07/07/2022,17:40,QUEENS,11429,40.71232,-73.73202,"(40.71232, -73.73202)",222 STREET,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544412,Sedan,,,, +07/07/2022,18:30,BROOKLYN,11226,40.636353,-73.965256,"(40.636353, -73.965256)",,,1303 DITMAS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544696,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/09/2021,4:00,BRONX,10466,40.8836139,-73.8504028,"(40.8836139, -73.8504028)",,,1056 EAST 224 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4469825,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/20/2021,14:00,,,40.7289557,-73.9279276,"(40.7289557, -73.9279276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469826,Sedan,Pick-up Truck,,, +07/07/2022,15:15,BROOKLYN,11228,40.608513,-74.016106,"(40.608513, -74.016106)",,,8809 14 AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4544716,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2022,8:15,BRONX,10472,40.830128,-73.85087,"(40.830128, -73.85087)",,,2170 CROSS BRONX EXPRESSWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544304,Bike,Sedan,,, +07/06/2022,18:58,QUEENS,11103,40.77056,-73.91751,"(40.77056, -73.91751)",GRAND CENTRAL PARKWAY,31 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4545158,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/07/2022,19:31,QUEENS,11364,40.745968,-73.75965,"(40.745968, -73.75965)",,,64-37 217 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544341,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,15:50,BROOKLYN,11212,40.655853,-73.910126,"(40.655853, -73.910126)",HEGEMAN AVENUE,BOYLAND STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544870,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,5:58,,,40.7344911,-73.9224226,"(40.7344911, -73.9224226)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469832,Station Wagon/Sport Utility Vehicle,,,, +06/24/2022,9:40,MANHATTAN,10027,40.81569,-73.958305,"(40.81569, -73.958305)",BROADWAY,WEST 125 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544653,Taxi,Delivery,,, +07/07/2022,11:30,,,40.715885,-73.81661,"(40.715885, -73.81661)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544531,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/08/2022,7:44,BROOKLYN,11219,40.629368,-74.00876,"(40.629368, -74.00876)",10 AVENUE,66 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544586,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,16:00,BROOKLYN,11220,40.63799,-74.00607,"(40.63799, -74.00607)",,,815 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544915,Sedan,,,, +07/07/2022,0:00,MANHATTAN,10065,40.76524,-73.95788,"(40.76524, -73.95788)",1 AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544396,Sedan,Sedan,,, +07/08/2022,15:30,QUEENS,11373,40.748215,-73.87846,"(40.748215, -73.87846)",BRITTON AVENUE,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544942,E-Bike,,,, +07/05/2022,13:37,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",WOODHAVEN BOULEVARD,91 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544463,Sedan,Bike,,, +07/06/2022,22:00,BROOKLYN,11229,40.60101,-73.93292,"(40.60101, -73.93292)",,,2272 STUART STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544707,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,2:46,BROOKLYN,11221,40.691299,-73.9454956,"(40.691299, -73.9454956)",TOMPKINS AVENUE,KOSCIUSZKO STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4469844,Sedan,Sedan,,, +07/07/2022,9:00,,,40.62149,-74.17076,"(40.62149, -74.17076)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,,,,,,4544164,,,,, +07/07/2022,13:00,QUEENS,11368,40.738663,-73.857895,"(40.738663, -73.857895)",,,57-72 XENIA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,12:00,QUEENS,11368,,,,marina road,boat basin pl,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519244,Sedan,,,, +10/22/2021,9:08,,,40.5846209,-73.9271041,"(40.5846209, -73.9271041)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4469855,Sedan,Sedan,,, +05/22/2021,12:03,QUEENS,11692,,,,Beach 69 Street,catamaran way,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4419565,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/06/2022,13:00,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4492509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/08/2022,1:20,,,40.69015,-73.99864,"(40.69015, -73.99864)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Following Too Closely,Unspecified,,,4494170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +01/17/2022,14:00,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Turning Improperly,,,,4495270,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/13/2022,13:48,BROOKLYN,11221,40.687557,-73.93896,"(40.687557, -73.93896)",MARCUS GARVEY BOULEVARD,GATES AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4495508,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/20/2022,16:33,MANHATTAN,10031,40.825138,-73.9514,"(40.825138, -73.9514)",BROADWAY,WEST 143 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Following Too Closely,,,,4496147,Taxi,Sedan,,, +01/13/2022,0:00,BROOKLYN,11224,40.577003,-74.00217,"(40.577003, -74.00217)",NEPTUNE AVENUE,WEST 36 STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4496535,Sedan,,,, +01/22/2022,15:17,BROOKLYN,11218,40.641285,-73.970276,"(40.641285, -73.970276)",AVENUE C,EAST 9 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4496615,Sedan,Sedan,,, +01/24/2022,6:00,BROOKLYN,11204,40.60817,-73.98735,"(40.60817, -73.98735)",BAY PARKWAY,BAY RIDGE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497170,Sedan,Sedan,,, +02/20/2022,4:25,BROOKLYN,11233,40.670216,-73.92442,"(40.670216, -73.92442)",,,1610 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4505047,Sedan,Sedan,,, +02/17/2022,14:28,,,40.62108,-74.02199,"(40.62108, -74.02199)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4505128,Sedan,Sedan,,, +02/21/2022,8:25,MANHATTAN,10032,40.833275,-73.94299,"(40.833275, -73.94299)",,,527 WEST 157 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504687,Station Wagon/Sport Utility Vehicle,,,, +02/11/2022,13:30,MANHATTAN,10009,40.732296,-73.981735,"(40.732296, -73.981735)",,,262 1 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4505016,Sedan,,,, +02/21/2022,11:15,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504482,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/20/2022,18:30,QUEENS,11373,40.747314,-73.86935,"(40.747314, -73.86935)",41 AVENUE,WARREN STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4504930,Sedan,Box Truck,,, +02/21/2022,14:36,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",BROOKVILLE BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4504551,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +01/26/2022,14:15,BROOKLYN,11209,40.61719,-74.02992,"(40.61719, -74.02992)",,,9252 5 AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4497630,Sedan,,,, +01/26/2022,21:00,BROOKLYN,11209,40.631462,-74.0278,"(40.631462, -74.0278)",3 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497756,Sedan,,,, +01/26/2022,19:52,,,40.744667,-73.971146,"(40.744667, -73.971146)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497683,Sedan,Sedan,,, +01/27/2022,19:55,MANHATTAN,10016,,,,36 STREET,Madison Avenue,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4497933,Armored Truck,Taxi,,, +01/27/2022,19:15,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",JACKSON AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497915,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,1:30,QUEENS,11429,40.712837,-73.7465,"(40.712837, -73.7465)",212 STREET,102 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497333,Sedan,,,, +01/26/2022,9:56,BROOKLYN,11211,40.713245,-73.942474,"(40.713245, -73.942474)",HUMBOLDT STREET,AINSLIE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497665,Sedan,,,, +01/26/2022,13:30,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4497811,Sedan,Sedan,,, +01/26/2022,13:45,,,,,,33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497708,Bus,Sedan,,, +10/21/2021,19:38,,,40.756375,-73.9601128,"(40.756375, -73.9601128)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4469878,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/26/2022,14:50,,,40.679592,-73.93488,"(40.679592, -73.93488)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497890,Bus,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,16:40,,,40.705887,-73.94297,"(40.705887, -73.94297)",BOERUM STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497966,Sedan,,,, +01/26/2022,4:25,BROOKLYN,11212,40.665627,-73.909706,"(40.665627, -73.909706)",BLAKE AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4497373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,11:45,STATEN ISLAND,10312,40.53742,-74.174904,"(40.53742, -74.174904)",AMBOY ROAD,RAE AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4497717,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,0:00,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497930,Sedan,,,, +01/27/2022,5:49,,,40.77529,-73.953636,"(40.77529, -73.953636)",EAST 82 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4497955,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,10:05,BROOKLYN,11232,40.6532,-74.005585,"(40.6532, -74.005585)",4 AVENUE,38 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4497862,Station Wagon/Sport Utility Vehicle,Bike,,, +01/26/2022,2:08,BROOKLYN,11207,40.657864,-73.89227,"(40.657864, -73.89227)",LINDEN BOULEVARD,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,18:45,BROOKLYN,11236,40.640568,-73.91391,"(40.640568, -73.91391)",FARRAGUT ROAD,EAST 84 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497603,Sedan,Motorscooter,,, +01/26/2022,23:32,,,40.85512,-73.872215,"(40.85512, -73.872215)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497764,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,7:55,,,40.801857,-73.957245,"(40.801857, -73.957245)",WEST 112 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497780,Sedan,,,, +01/27/2022,9:35,,,40.68747,-73.794785,"(40.68747, -73.794785)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,Following Too Closely,Other Vehicular,,,4497824,Sedan,Sedan,Sedan,, +09/26/2021,4:18,QUEENS,11378,40.7328674,-73.891136,"(40.7328674, -73.891136)",,,52-25 72 PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469891,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,16:58,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497838,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,14:26,QUEENS,11427,40.73346,-73.735466,"(40.73346, -73.735466)",HILLSIDE AVENUE,WINCHESTER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544192,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/26/2022,8:22,,,40.728138,-73.74532,"(40.728138, -73.74532)",218 PLACE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4497541,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,15:05,BRONX,10462,40.848324,-73.858665,"(40.848324, -73.858665)",,,1849 BOGART AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4497979,Sedan,,,, +01/26/2022,15:07,MANHATTAN,10035,40.796192,-73.93374,"(40.796192, -73.93374)",,,453 EAST 117 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497567,Sedan,,,, +01/26/2022,8:40,,,,,,WHITE PLAINS ROAD,SAGAMORE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497542,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/28/2022,0:25,,,,,,HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4497943,Sedan,Sedan,,, +10/14/2021,22:00,,,40.7251495,-73.9338053,"(40.7251495, -73.9338053)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4469901,Sedan,Pick-up Truck,,, +01/26/2022,8:04,BRONX,10466,40.89205,-73.86081,"(40.89205, -73.86081)",,,632 EAST 230 STREET,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4497599,Pick-up Truck,Sedan,,, +01/26/2022,0:00,,,40.672447,-73.892136,"(40.672447, -73.892136)",PITKIN AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497480,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/27/2022,6:00,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",KINGS HIGHWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497837,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,21:45,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,CHAMBERS STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,21:10,QUEENS,11373,40.743675,-73.88711,"(40.743675, -73.88711)",WOODSIDE AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497731,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,0:00,BROOKLYN,11207,40.688553,-73.91245,"(40.688553, -73.91245)",EVERGREEN AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497853,Sedan,Sedan,,, +01/27/2022,8:30,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",ALLERTON AVENUE,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497786,Bus,Sedan,,, +01/27/2022,8:25,QUEENS,11103,40.763138,-73.91341,"(40.763138, -73.91341)",42 STREET,30 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497842,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,9:51,,,,,,LAFAYETTE AVENUE,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497532,Sedan,ambulance,,, +01/26/2022,17:30,QUEENS,11429,40.709473,-73.735855,"(40.709473, -73.735855)",,,107-01 220 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497591,Sedan,Sedan,,, +01/26/2022,17:19,,,40.81707,-73.88525,"(40.81707, -73.88525)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497672,Sedan,,,, +01/27/2022,22:00,QUEENS,11416,40.685665,-73.83976,"(40.685665, -73.83976)",,,101-25 103 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497975,Sedan,Sedan,,, +01/27/2022,6:37,,,40.85071,-73.865906,"(40.85071, -73.865906)",ANTIN PLACE,BRONXDALE AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4497778,Sedan,Bike,,, +01/27/2022,17:10,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497906,Sedan,Sedan,,, +10/22/2021,21:00,,,40.7242705,-73.9374428,"(40.7242705, -73.9374428)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469916,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,19:10,STATEN ISLAND,10307,40.51116,-74.241295,"(40.51116, -74.241295)",,,7319 AMBOY ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4497980,Pick-up Truck,Sedan,,, +10/21/2021,18:44,,,40.78421,-73.9422072,"(40.78421, -73.9422072)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4469918,Sedan,Sedan,,, +01/26/2022,17:20,QUEENS,11429,40.71575,-73.73737,"(40.71575, -73.73737)",,,218-03 99 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497604,Sedan,,,, +01/26/2022,18:30,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4497645,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/27/2022,15:45,,,40.62194,-73.91753,"(40.62194, -73.91753)",RALPH AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497947,Sedan,Sedan,,, +01/26/2022,8:15,QUEENS,11358,40.76543,-73.8033,"(40.76543, -73.8033)",162 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497551,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,8:35,,,40.69369,-73.93121,"(40.69369, -73.93121)",REID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4497889,Bus,Van,,, +01/26/2022,1:45,,,,,,LILY POND AVENUE,ROOSEVELT BOARDWALK,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497800,Sedan,Sedan,,, +01/27/2022,9:04,,,,,,LIE LOWER LEVEL (CDR),,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4497832,Sedan,Sedan,Sedan,Sedan,Sedan +01/27/2022,10:30,QUEENS,11385,40.712696,-73.900604,"(40.712696, -73.900604)",FRESH POND ROAD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497873,Sedan,Box Truck,,, +10/20/2021,22:12,,,40.6983296,-73.9622573,"(40.6983296, -73.9622573)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469927,Convertible,,,, +01/27/2022,15:45,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,16:40,,,40.82751,-73.92495,"(40.82751, -73.92495)",EAST 161 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4497692,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,12:20,QUEENS,11411,40.699364,-73.72782,"(40.699364, -73.72782)",114 TERRACE,230 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4497919,Sedan,,,, +01/26/2022,16:05,STATEN ISLAND,10312,40.56152,-74.17186,"(40.56152, -74.17186)",ARTHUR KILL ROAD,DRUMGOOLE ROAD WEST,,0,0,0,0,0,0,0,0,Glare,,,,,4497718,Sedan,,,, +01/26/2022,7:55,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",UNION TURNPIKE,MAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497656,Sedan,Sedan,,, +01/27/2022,1:15,BRONX,10473,40.822655,-73.86751,"(40.822655, -73.86751)",,,847 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497771,,,,, +01/27/2022,13:55,MANHATTAN,10029,40.794807,-73.94441,"(40.794807, -73.94441)",EAST 110 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497971,Sedan,,,, +01/26/2022,14:30,,,40.72003,-73.85673,"(40.72003, -73.85673)",FLEET STREET,THORNTON PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497615,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,14:40,BRONX,10467,40.876633,-73.86412,"(40.876633, -73.86412)",,,760 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497895,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,15:05,,,40.575302,-73.9766,"(40.575302, -73.9766)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497746,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,15:30,BROOKLYN,11206,40.70814,-73.93991,"(40.70814, -73.93991)",,,225 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497666,Sedan,Box Truck,,, +01/26/2022,15:30,,,40.585155,-74.16881,"(40.585155, -74.16881)",,,2535 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497748,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,20:45,,,40.691307,-73.91326,"(40.691307, -73.91326)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497709,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,0:28,,,40.5883886,-74.0996382,"(40.5883886, -74.0996382)",BUEL AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469941,Sedan,,,, +01/27/2022,7:15,,,40.64644,-73.91289,"(40.64644, -73.91289)",REMSEN AVENUE,AVENUE D,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4497925,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +01/26/2022,0:40,QUEENS,11385,40.703068,-73.85953,"(40.703068, -73.85953)",,,87-59 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497336,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,7:20,BRONX,10469,40.857506,-73.83818,"(40.857506, -73.83818)",PELHAM PARKWAY NORTH,TIEMANN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497951,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,19:40,,,40.677155,-73.86887,"(40.677155, -73.86887)",GLENMORE AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497638,Sedan,,,, +01/27/2022,14:05,,,40.759586,-73.968056,"(40.759586, -73.968056)",3 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4497867,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,8:51,,,40.740093,-73.89986,"(40.740093, -73.89986)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497914,Sedan,Sedan,,, +01/26/2022,5:29,MANHATTAN,10011,40.743103,-73.99638,"(40.743103, -73.99638)",,,196 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4497382,Sedan,Sedan,,, +01/27/2022,21:16,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497932,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,22:30,,,40.7258847,-73.7600609,"(40.7258847, -73.7600609)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469951,Pick-up Truck,Sedan,,, +01/26/2022,20:42,QUEENS,11004,40.74351,-73.717415,"(40.74351, -73.717415)",80 AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497610,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/26/2022,18:20,BROOKLYN,11204,40.62051,-73.99248,"(40.62051, -73.99248)",65 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497713,Sedan,Pick-up Truck,,, +10/22/2021,1:41,,,40.7348814,-73.9233062,"(40.7348814, -73.9233062)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469954,Sedan,,,, +01/27/2022,0:00,MANHATTAN,10021,40.77246,-73.96705,"(40.77246, -73.96705)",5 AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497957,Sedan,Taxi,,, +01/26/2022,10:40,,,40.7178,-73.80358,"(40.7178, -73.80358)",164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497657,Sedan,Sedan,,, +01/26/2022,18:20,STATEN ISLAND,10310,40.633858,-74.12596,"(40.633858, -74.12596)",CLOVE ROAD,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497861,Sedan,,,, +01/27/2022,6:07,BRONX,10467,40.871464,-73.86888,"(40.871464, -73.86888)",,,658 BURKE AVENUE,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,Unspecified,Unspecified,Unspecified,4497894,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/26/2022,14:30,MANHATTAN,10016,40.74163,-73.975075,"(40.74163, -73.975075)",,,520 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497684,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,17:00,BROOKLYN,11236,40.63077,-73.91848,"(40.63077, -73.91848)",,,1902 RALPH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497946,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,11:55,QUEENS,11427,40.72524,-73.75318,"(40.72524, -73.75318)",,,212-40 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497546,Sedan,Sedan,,, +01/26/2022,6:30,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PROSPECT STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4497568,Sedan,Sedan,,, +01/26/2022,10:00,BRONX,10472,40.827908,-73.88309,"(40.827908, -73.88309)",,,1152 BRONX RIVER AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4497789,Sedan,Sedan,,, +01/26/2022,23:30,,,40.830265,-73.95131,"(40.830265, -73.95131)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,,,,4497632,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,19:24,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4497965,Station Wagon/Sport Utility Vehicle,Bus,,, +01/26/2022,9:45,,,40.784355,-73.98117,"(40.784355, -73.98117)",WEST 79 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing Too Closely,,,,4497534,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/23/2021,1:25,,,40.7654428,-73.8626735,"(40.7654428, -73.8626735)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4469970,Sedan,Sedan,,, +01/26/2022,17:14,MANHATTAN,10001,40.75449,-74.006744,"(40.75449, -74.006744)",12 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497753,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +01/26/2022,12:10,BROOKLYN,11234,40.60897,-73.92159,"(40.60897, -73.92159)",,,2520 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4497801,Sedan,,,, +01/26/2022,12:27,MANHATTAN,10013,40.719837,-74.005196,"(40.719837, -74.005196)",AVENUE OF THE AMERICAS,WALKER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497556,PK,Bike,,, +01/26/2022,15:08,MANHATTAN,10065,40.76661,-73.965,"(40.76661, -73.965)",EAST 66 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Traffic Control Disregarded,,,,4497669,Sedan,Bike,,, +01/27/2022,17:00,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497907,Sedan,Box Truck,,, +09/30/2021,0:00,BROOKLYN,11225,40.6577386,-73.9496075,"(40.6577386, -73.9496075)",,,322 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469976,Sedan,,,, +01/27/2022,20:50,BROOKLYN,11209,40.635475,-74.03204,"(40.635475, -74.03204)",71 STREET,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4497936,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +01/27/2022,11:07,,,40.737682,-73.85206,"(40.737682, -73.85206)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497855,Sedan,Tractor Truck Diesel,,, +01/26/2022,23:45,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4497619,Sedan,,,, +01/26/2022,7:03,BRONX,10456,40.83369,-73.91386,"(40.83369, -73.91386)",EAST 168 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,1:00,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4497976,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +01/26/2022,14:15,BRONX,10461,40.838337,-73.83883,"(40.838337, -73.83883)",,,1325 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497899,Sedan,Sedan,,, +01/26/2022,13:31,BROOKLYN,11207,40.67604,-73.895905,"(40.67604, -73.895905)",,,164 NEW JERSEY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497783,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,18:00,,,40.643246,-73.94877,"(40.643246, -73.94877)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544749,Sedan,Bus,,, +01/27/2022,11:18,,,40.60323,-74.09261,"(40.60323, -74.09261)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4497841,Ambu,Sedan,,, +01/26/2022,19:00,MANHATTAN,10025,40.795036,-73.97269,"(40.795036, -73.97269)",,,275 WEST 96 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497600,Sedan,Taxi,,, +10/23/2021,5:20,,,40.7647528,-73.8617869,"(40.7647528, -73.8617869)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469991,Sedan,,,, +01/27/2022,8:00,BROOKLYN,11235,40.587093,-73.94134,"(40.587093, -73.94134)",VOORHIES AVENUE,EAST 28 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497808,Sedan,,,, +01/26/2022,7:54,,,40.863647,-73.8918,"(40.863647, -73.8918)",MARION AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4497763,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,10:15,BROOKLYN,11226,40.648533,-73.95827,"(40.648533, -73.95827)",FLATBUSH AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inexperience,,,,4497695,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,16:00,,,40.81108,-73.9273,"(40.81108, -73.9273)",EAST 138 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497942,Sedan,Sedan,,, +10/23/2021,7:40,,,40.6975472,-73.8710538,"(40.6975472, -73.8710538)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469996,Sedan,Sedan,,, +01/26/2022,9:15,QUEENS,11368,40.74618,-73.85293,"(40.74618, -73.85293)",111 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497729,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,19:09,,,40.6975472,-73.8710538,"(40.6975472, -73.8710538)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469999,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,0:30,BRONX,10465,40.84525,-73.82031,"(40.84525, -73.82031)",,,1555 STADIUM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4497900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/26/2022,15:43,BROOKLYN,11207,40.671715,-73.8882,"(40.671715, -73.8882)",BELMONT AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497644,Sedan,Sedan,,, +01/27/2022,12:30,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497848,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,16:25,BROOKLYN,11203,40.64638,-73.9288,"(40.64638, -73.9288)",BEVERLEY ROAD,EAST 51 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497874,Sedan,,,, +10/02/2021,12:55,QUEENS,11102,40.772114,-73.9349894,"(40.772114, -73.9349894)",,,3-10 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470004,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,10:42,MANHATTAN,10036,40.7615455,-73.9961887,"(40.7615455, -73.9961887)",,,546 WEST 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470005,Sedan,Sedan,,, +01/26/2022,12:30,QUEENS,11419,40.68645,-73.81583,"(40.68645, -73.81583)",107 AVENUE,128 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4497677,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,14:50,MANHATTAN,10019,40.7622904,-73.9861058,"(40.7622904, -73.9861058)",WEST 50 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470008,Tractor Truck Gasoline,Sedan,,, +01/27/2022,1:00,MANHATTAN,10016,40.742645,-73.98246,"(40.742645, -73.98246)",LEXINGTON AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497822,Sedan,Taxi,,, +01/26/2022,8:15,BROOKLYN,11215,40.665028,-73.98646,"(40.665028, -73.98646)",6 AVENUE,14 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4497469,Sedan,Bike,,, +01/26/2022,19:10,,,40.577995,-73.95964,"(40.577995, -73.95964)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497738,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,8:00,MANHATTAN,10027,40.81751,-73.96069,"(40.81751, -73.96069)",SAINT CLAIR PLACE,RIVERSIDE DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497576,Sedan,,,, +01/27/2022,8:00,,,40.607723,-74.1473,"(40.607723, -74.1473)",SOUTH GANNON AVENUE,WILLOWBROOK ROAD,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4497749,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,19:21,BROOKLYN,11207,40.67974,-73.89213,"(40.67974, -73.89213)",VAN SICLEN AVENUE,ARLINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4497636,Sedan,Sedan,,, +01/27/2022,6:10,,,40.72455,-74.00194,"(40.72455, -74.00194)",SPRING STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4497734,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,6:55,,,40.743317,-73.731384,"(40.743317, -73.731384)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4497918,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/26/2022,14:37,BROOKLYN,11230,40.625477,-73.97614,"(40.625477, -73.97614)",,,1127 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497689,Sedan,,,, +10/22/2021,2:00,,,40.7113919,-73.8365939,"(40.7113919, -73.8365939)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4470020,Box Truck,,,, +10/21/2021,20:30,,,40.6663311,-73.8348011,"(40.6663311, -73.8348011)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470021,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,1:00,,,40.7187236,-73.794051,"(40.7187236, -73.794051)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4470022,Sedan,Sedan,,, +08/03/2021,13:40,BROOKLYN,11233,,,,Thomas boyland street,Prospect pl,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445185,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,16:55,BROOKLYN,11236,40.64891,-73.89256,"(40.64891, -73.89256)",EAST 108 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497926,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,0:49,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4497360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,18:00,BRONX,10467,40.866577,-73.867325,"(40.866577, -73.867325)",WHITE PLAINS ROAD,BRITTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497952,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,13:00,,,40.709827,-73.83983,"(40.709827, -73.83983)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497865,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,8:25,,,40.563915,-74.11637,"(40.563915, -74.11637)",HYLAN BOULEVARD,TYSENS LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497802,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,8:30,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4497555,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +01/26/2022,12:44,MANHATTAN,10017,40.74955,-73.97158,"(40.74955, -73.97158)",,,320 EAST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4497558,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +01/27/2022,8:13,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",CEDAR AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497773,Sedan,Garbage or Refuse,,, +01/27/2022,12:55,QUEENS,11419,40.68574,-73.82774,"(40.68574, -73.82774)",115 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497950,,,,, +01/26/2022,15:15,,,40.681263,-73.83954,"(40.681263, -73.83954)",101 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4497581,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,18:30,STATEN ISLAND,10305,40.59415,-74.086586,"(40.59415, -74.086586)",HYLAN BOULEVARD,REID AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497790,,,,, +01/26/2022,20:54,,,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4497969,Bus,Sedan,,, +01/26/2022,17:37,,,40.69164,-73.971565,"(40.69164, -73.971565)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497618,Sedan,,,, +01/26/2022,16:18,BROOKLYN,11236,40.65141,-73.913414,"(40.65141, -73.913414)",EAST 94 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497833,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,7:15,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4497520,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,18:35,MANHATTAN,10029,40.79496,-73.95064,"(40.79496, -73.95064)",EAST 107 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497774,Sedan,,,, +01/26/2022,0:00,BROOKLYN,11236,40.65002,-73.91555,"(40.65002, -73.91555)",EAST 91 STREET,AVENUE B,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497827,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,12:15,QUEENS,11106,40.75621,-73.92896,"(40.75621, -73.92896)",32 STREET,36 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497846,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,4:52,,,40.63082,-73.88636,"(40.63082, -73.88636)",ROCKAWAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497537,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,8:20,BROOKLYN,11220,40.638153,-74.01397,"(40.638153, -74.01397)",60 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497579,Van,,,, +01/27/2022,19:53,BRONX,10461,40.84493,-73.84671,"(40.84493, -73.84671)",,,1520 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4497977,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/26/2022,19:40,BRONX,10459,40.818848,-73.894936,"(40.818848, -73.894936)",TIFFANY STREET,FOX STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4497606,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,9:46,BRONX,10457,40.848503,-73.898834,"(40.848503, -73.898834)",,,4246 PARK AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4497714,Sedan,Sedan,,, +08/09/2021,14:35,,,40.6967006,-73.9103011,"(40.6967006, -73.9103011)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470050,Sedan,Tractor Truck Gasoline,,, +01/27/2022,23:55,,,40.885216,-73.87937,"(40.885216, -73.87937)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497972,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,9:00,,,40.67794,-73.8023,"(40.67794, -73.8023)",FOCH BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497864,Sedan,Tractor Truck Diesel,,, +01/27/2022,15:03,,,40.583725,-73.89372,"(40.583725, -73.89372)",AVIATION ROAD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4497945,Sedan,,,, +01/26/2022,7:39,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,17:05,BROOKLYN,11207,40.675606,-73.89926,"(40.675606, -73.89926)",,,2578 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497633,Sedan,,,, +01/26/2022,6:49,,,40.5859,-73.96634,"(40.5859, -73.96634)",OCEAN PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497436,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,19:25,BRONX,10466,40.882133,-73.844215,"(40.882133, -73.844215)",,,1195 EAST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497601,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,14:40,BRONX,10463,40.88313,-73.89217,"(40.88313, -73.89217)",,,3951 GOUVERNEUR AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497767,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,10:00,BRONX,10467,40.878807,-73.86388,"(40.878807, -73.86388)",EAST 213 STREET,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497595,Sedan,,,, +01/27/2022,18:41,QUEENS,11377,40.73328,-73.91078,"(40.73328, -73.91078)",,,53-15 58 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497917,Sedan,Pick-up Truck,,, +01/27/2022,1:28,BROOKLYN,11236,40.652786,-73.91997,"(40.652786, -73.91997)",REMSEN AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497834,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,18:30,QUEENS,11435,40.706367,-73.816734,"(40.706367, -73.816734)",QUEENS BOULEVARD,87 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497660,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,8:40,BROOKLYN,11208,40.672775,-73.880974,"(40.672775, -73.880974)",,,778 BELMONT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4497788,Sedan,,,, +10/05/2021,13:18,BRONX,10474,40.8143642,-73.8874009,"(40.8143642, -73.8874009)",COSTER STREET,SPOFFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470070,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,8:15,BROOKLYN,11203,40.646854,-73.92119,"(40.646854, -73.92119)",EAST 59 STREET,BEVERLEY ROAD,,2,0,2,0,0,0,0,0,Unspecified,,,,,4497840,Convertible,,,, +10/22/2021,15:45,,,40.8354931,-73.9493975,"(40.8354931, -73.9493975)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470072,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,23:07,MANHATTAN,10032,40.8341493,-73.9414588,"(40.8341493, -73.9414588)",,,500 WEST 159 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470073,Sedan,Sedan,,, +01/27/2022,1:16,,,40.72948,-73.9721,"(40.72948, -73.9721)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497819,Sedan,Bus,Sedan,, +01/26/2022,14:14,QUEENS,11101,40.746597,-73.94372,"(40.746597, -73.94372)",JACKSON AVENUE,45 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497704,Tractor Truck Diesel,Sedan,,, +10/11/2021,6:50,,,40.8408355,-73.94596,"(40.8408355, -73.94596)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4470076,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,16:00,BRONX,10469,40.87645,-73.848175,"(40.87645, -73.848175)",BOSTON ROAD,FENTON AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4497893,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,15:40,BROOKLYN,11206,40.700462,-73.947495,"(40.700462, -73.947495)",HARRISON AVENUE,BARTLETT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497963,Station Wagon/Sport Utility Vehicle,Bus,,, +01/26/2022,19:50,BROOKLYN,11207,40.675648,-73.898506,"(40.675648, -73.898506)",,,2591 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497648,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,14:16,,,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4497909,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/26/2022,22:00,BROOKLYN,11207,40.681637,-73.88887,"(40.681637, -73.88887)",,,15 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497641,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,6:18,MANHATTAN,10075,40.774952,-73.96101,"(40.774952, -73.96101)",EAST 78 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4497388,Station Wagon/Sport Utility Vehicle,Bike,,, +07/02/2022,6:50,,,40.59845,-73.98079,"(40.59845, -73.98079)",WEST 9 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544558,Pick-up Truck,,,, +01/26/2022,6:14,BROOKLYN,11234,40.63147,-73.91955,"(40.63147, -73.91955)",FLATLANDS AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,14:07,,,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497679,Sedan,,,, +02/21/2022,22:00,STATEN ISLAND,10305,40.596825,-74.0659,"(40.596825, -74.0659)",CONGER STREET,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504936,Sedan,,,, +10/23/2021,17:20,,,40.6999379,-73.9618813,"(40.6999379, -73.9618813)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470087,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,6:45,,,40.5998197,-74.0085647,"(40.5998197, -74.0085647)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4470088,Sedan,Sedan,,, +10/23/2021,18:50,,,40.7052535,-73.9590758,"(40.7052535, -73.9590758)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,21:55,MANHATTAN,10026,40.8011739,-73.9507181,"(40.8011739, -73.9507181)",,,95 LENOX AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470091,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,16:14,MANHATTAN,10027,40.8074117,-73.9442088,"(40.8074117, -73.9442088)",,,55 WEST 125 STREET,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4470092,Bike,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,10:15,,,40.76468,-73.9643,"(40.76468, -73.9643)",3 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4497958,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,13:00,BROOKLYN,11201,40.698257,-73.98063,"(40.698257, -73.98063)",,,251 NASSAU STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497870,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,13:05,,,40.75513,-73.96525,"(40.75513, -73.96525)",1 AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497685,Sedan,Taxi,,, +01/27/2022,8:10,QUEENS,11375,40.711338,-73.85646,"(40.711338, -73.85646)",METROPOLITAN AVENUE,SELFRIDGE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4497762,Sedan,Sedan,,, +01/26/2022,10:13,BROOKLYN,11217,40.682777,-73.98242,"(40.682777, -73.98242)",3 AVENUE,SAINT MARKS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497875,Sedan,,,, +10/14/2021,17:30,,,40.5846508,-73.9601578,"(40.5846508, -73.9601578)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470098,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,4:11,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497668,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,15:47,BROOKLYN,11212,40.66463,-73.92114,"(40.66463, -73.92114)",,,2115 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4497621,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,11:58,,,40.588512,-73.949356,"(40.588512, -73.949356)",OCEAN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544851,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/27/2022,15:43,BROOKLYN,11228,,,,INDEPENDENCE AVE,BAY 8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4497935,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,12:41,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,10:00,QUEENS,11375,40.721363,-73.84808,"(40.721363, -73.84808)",AUSTIN STREET,69 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497856,Sedan,Pick-up Truck,,, +01/27/2022,1:38,QUEENS,11358,40.75625,-73.802666,"(40.75625, -73.802666)",164 STREET,45 AVENUE,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,Unspecified,,,4497694,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/27/2022,5:20,QUEENS,11379,40.714607,-73.897125,"(40.714607, -73.897125)",65 STREET,62 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497741,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,17:00,BROOKLYN,11249,40.699177,-73.9605,"(40.699177, -73.9605)",KENT AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497968,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,20:50,,,40.7160431,-73.8041526,"(40.7160431, -73.8041526)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470110,Sedan,,,, +01/26/2022,16:42,,,40.89154,-73.849846,"(40.89154, -73.849846)",EDENWALD AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497897,Sedan,,,, +01/27/2022,3:58,,,40.60544,-74.16789,"(40.60544, -74.16789)",LISA PLACE,FOREST STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4497751,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,15:11,BRONX,10461,40.844078,-73.834694,"(40.844078, -73.834694)",,,1617 MAYFLOWER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497904,Bus,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,4:56,QUEENS,11373,40.74651,-73.89109,"(40.74651, -73.89109)",,,74-22 BROADWAY,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4497369,Sedan,E-Bike,,, +01/28/2022,0:22,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497953,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,19:20,QUEENS,11435,40.68787,-73.79747,"(40.68787, -73.79747)",111 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497923,Sedan,Sedan,,, +01/26/2022,15:50,BROOKLYN,11208,40.685917,-73.87071,"(40.685917, -73.87071)",RIDGEWOOD AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497647,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,7:50,,,40.64939,-73.975296,"(40.64939, -73.975296)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470105,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,23:49,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4445319,Sedan,Sedan,Sedan,, +01/27/2022,7:15,BROOKLYN,11229,40.598476,-73.95245,"(40.598476, -73.95245)",,,2131 EAST 19 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497805,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/26/2022,10:00,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",GRAND CONCOURSE,EAST MOUNT EDEN AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4497559,Sedan,Sedan,,, +01/27/2022,11:15,QUEENS,11361,40.764816,-73.7868,"(40.764816, -73.7868)",35 AVENUE,200 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497797,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,8:15,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,8:30,MANHATTAN,10029,40.797943,-73.94213,"(40.797943, -73.94213)",LEXINGTON AVENUE,EAST 115 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4497871,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,2:35,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4497701,Garbage or Refuse,,,, +01/27/2022,1:30,BRONX,10451,40.816917,-73.92298,"(40.816917, -73.92298)",,,526 MORRIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497722,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,5:25,,,40.716164,-73.74477,"(40.716164, -73.74477)",JAMAICA AVENUE,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497850,Bus,Sedan,,, +01/26/2022,22:12,BRONX,10462,40.855118,-73.8677,"(40.855118, -73.8677)",,,2153 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497768,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,15:19,BRONX,10474,40.810608,-73.88356,"(40.810608, -73.88356)",OAK POINT AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497594,Taxi,Tractor Truck Diesel,,, +01/26/2022,16:00,BROOKLYN,11217,40.68599,-73.97367,"(40.68599, -73.97367)",,,708 FULTON STREET,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4497617,Sedan,Bus,,, +01/26/2022,11:00,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4497523,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,19:30,QUEENS,11377,40.745106,-73.89201,"(40.745106, -73.89201)",41 AVENUE,73 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497973,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,2:20,MANHATTAN,10029,40.796844,-73.93743,"(40.796844, -73.93743)",,,300 EAST 116 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4497775,Sedan,Van,,, +01/26/2022,19:50,,,40.675446,-73.81354,"(40.675446, -73.81354)",ROCKAWAY BOULEVARD,124 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497676,Sedan,Sedan,,, +01/27/2022,22:11,,,,,,BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inexperience,,,,4497949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,19:45,QUEENS,11413,40.666714,-73.75156,"(40.666714, -73.75156)",225 STREET,143 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497597,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,10:30,BROOKLYN,11233,40.668777,-73.920074,"(40.668777, -73.920074)",,,553 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497623,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,12:23,MANHATTAN,10022,40.7616,-73.96865,"(40.7616, -73.96865)",LEXINGTON AVENUE,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497857,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,20:30,BROOKLYN,11210,40.63595,-73.944115,"(40.63595, -73.944115)",,,824 EAST 34 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497828,Sedan,,,, +01/27/2022,8:30,BROOKLYN,11230,40.624393,-73.96512,"(40.624393, -73.96512)",,,1358 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4497835,Box Truck,,,, +01/26/2022,0:25,BRONX,10460,40.845028,-73.880394,"(40.845028, -73.880394)",,,941 EAST 181 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Alcohol Involvement,,,,4497512,Sedan,Sedan,,, +10/23/2021,7:00,,,40.7671233,-73.9040489,"(40.7671233, -73.9040489)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4470146,Motorcycle,,,, +01/26/2022,16:00,BROOKLYN,11204,40.623154,-73.99372,"(40.623154, -73.99372)",16 AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497733,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,8:15,MANHATTAN,10075,40.774323,-73.96149,"(40.774323, -73.96149)",PARK AVENUE,EAST 77 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4497554,Station Wagon/Sport Utility Vehicle,Bike,,, +01/27/2022,3:42,,,40.682556,-73.8882,"(40.682556, -73.8882)",JAMAICA AVENUE,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4497781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +01/26/2022,6:16,,,40.87305,-73.882965,"(40.87305, -73.882965)",BRIGGS AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497435,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,17:45,BROOKLYN,11207,40.668957,-73.898026,"(40.668957, -73.898026)",ALABAMA AVENUE,SUTTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4497635,Sedan,,,, +01/27/2022,8:30,BROOKLYN,11211,40.708675,-73.956314,"(40.708675, -73.956314)",SOUTH 5 STREET,RODNEY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497826,Sedan,,,, +10/21/2021,22:06,,,40.8833516,-73.8161328,"(40.8833516, -73.8161328)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470157,Sedan,Sedan,,, +01/26/2022,19:48,BRONX,10458,40.8639,-73.89429,"(40.8639, -73.89429)",EAST KINGSBRIDGE ROAD,EAST 192 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497766,Sedan,,,, +01/26/2022,11:30,BROOKLYN,11201,40.697575,-73.984055,"(40.697575, -73.984055)",CONCORD STREET,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497578,Box Truck,Sedan,,, +01/27/2022,15:58,BROOKLYN,11209,40.633205,-74.02568,"(40.633205, -74.02568)",,,340 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497934,Sedan,,,, +01/27/2022,15:25,BROOKLYN,11206,40.702675,-73.93396,"(40.702675, -73.93396)",EVERGREEN AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497910,Sedan,Sedan,,, +10/11/2021,22:00,MANHATTAN,10001,40.7444841,-73.9923133,"(40.7444841, -73.9923133)",,,107 WEST 25 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470162,Sedan,,,, +01/26/2022,16:09,BROOKLYN,11229,40.609985,-73.95658,"(40.609985, -73.95658)",,,1637 EAST 17 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4497680,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,21:25,,,,,,UTOPIA PARKWAY,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4497661,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,17:30,,,40.8339901,-73.8263442,"(40.8339901, -73.8263442)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470165,Sedan,,,, +01/27/2022,2:18,,,40.643005,-74.00533,"(40.643005, -74.00533)",49 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497863,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,14:05,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4497892,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/04/2021,17:00,,,,,,WEST DRIVE,CENTRAL PARK SOUTH,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4443791,Bike,Bike,,, +08/04/2021,14:00,QUEENS,11355,40.759773,-73.8173,"(40.759773, -73.8173)",SANFORD AVENUE,147 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444407,E-Bike,,,, +08/07/2021,8:50,BROOKLYN,11236,40.64782,-73.897575,"(40.64782, -73.897575)",,,704 EAST 103 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444593,Sedan,Sedan,,, +08/07/2021,18:00,MANHATTAN,10002,40.72192,-73.99004,"(40.72192, -73.99004)",STANTON STREET,ELDRIDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444807,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,9:40,,,40.576275,-73.98796,"(40.576275, -73.98796)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444661,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,21:20,,,40.576252,-74.16978,"(40.576252, -74.16978)",,,2845 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445503,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/16/2021,18:00,,,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4445451,Sedan,,,, +08/07/2021,21:45,BRONX,10473,40.824734,-73.849365,"(40.824734, -73.849365)",CASTLE HILL AVENUE,HERMANY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4445245,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,16:00,,,,,,MC GUINNESS BOULEVARD,EAGLE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4445228,Station Wagon/Sport Utility Vehicle,Motorcycle,Sedan,, +08/07/2021,2:13,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444420,Sedan,,,, +08/07/2021,6:34,QUEENS,11373,40.738323,-73.8856,"(40.738323, -73.8856)",QUEENS BOULEVARD,ALBION AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4444623,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/07/2021,3:00,,,40.656105,-74.00594,"(40.656105, -74.00594)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445013,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,5:00,,,40.686497,-73.9168,"(40.686497, -73.9168)",HANCOCK STREET,BROADWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4444705,Sedan,Sedan,,, +07/25/2021,6:10,QUEENS,11423,40.715454,-73.772575,"(40.715454, -73.772575)",,,189-10 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445201,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,17:40,,,40.593323,-74.15871,"(40.593323, -74.15871)",FERNDALE AVENUE,SAXON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445300,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,15:30,BROOKLYN,11203,40.64166,-73.93705,"(40.64166, -73.93705)",EAST 42 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445379,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,0:13,QUEENS,11361,40.760284,-73.769356,"(40.760284, -73.769356)",BELL BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444428,Sedan,Sedan,,, +08/07/2021,11:00,,,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444726,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,20:45,BRONX,10473,40.823368,-73.87877,"(40.823368, -73.87877)",,,1500 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445243,Sedan,,,, +08/06/2021,11:00,QUEENS,11423,40.725517,-73.76993,"(40.725517, -73.76993)",,,198-15 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4445283,Sedan,,,, +08/07/2021,19:43,,,40.678276,-73.762344,"(40.678276, -73.762344)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445175,Sedan,Sedan,,, +08/07/2021,3:55,BROOKLYN,11208,40.681667,-73.88607,"(40.681667, -73.88607)",,,145 CLEVELAND STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4444446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,17:54,BROOKLYN,11220,40.634617,-74.02353,"(40.634617, -74.02353)",BAY RIDGE AVENUE,4 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4444572,Motorcycle,Sedan,,, +08/07/2021,0:30,QUEENS,11372,40.752945,-73.89248,"(40.752945, -73.89248)",34 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,5:54,BRONX,10452,,,,Jerome avenue,mount eden avenue,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4445492,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,11:08,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444939,Tractor Truck Gasoline,Sedan,,, +08/07/2021,23:00,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",EAST 163 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4445045,Motorbike,,,, +08/07/2021,14:30,,,40.576275,-73.98796,"(40.576275, -73.98796)",WEST 21 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4445109,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,6:10,BRONX,10468,40.86023,-73.907234,"(40.86023, -73.907234)",,,2257 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4444540,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,11:20,,,,,,,,60 WEST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4444476,Bike,,,, +08/05/2021,14:44,MANHATTAN,10002,40.720848,-73.98883,"(40.720848, -73.98883)",,,156 ORCHARD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445335,Firetruck,Sedan,,, +08/07/2021,16:35,QUEENS,11366,40.723824,-73.797615,"(40.723824, -73.797615)",171 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445358,Bike,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,13:40,BROOKLYN,11203,40.653267,-73.93927,"(40.653267, -73.93927)",ALBANY AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4445392,Sedan,E-Bike,,, +08/07/2021,0:02,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4444532,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Sedan,, +08/07/2021,13:25,,,,,,,,71 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4444477,Bike,,,, +08/06/2021,23:30,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445262,Pick-up Truck,,,, +08/07/2021,3:28,BROOKLYN,11209,40.619724,-74.02327,"(40.619724, -74.02327)",86 STREET,GOWANUS EXPRESSWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4444561,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,0:45,,,40.678303,-73.87289,"(40.678303, -73.87289)",CONDUIT BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444457,Sedan,,,, +08/07/2021,12:26,BRONX,10461,40.840164,-73.84262,"(40.840164, -73.84262)",WESTCHESTER AVENUE,FERRIS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445095,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,0:40,MANHATTAN,10002,40.719204,-73.99037,"(40.719204, -73.99037)",DELANCEY STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4444700,Sedan,Sedan,,, +08/07/2021,10:03,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444756,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,22:00,,,40.575336,-73.996445,"(40.575336, -73.996445)",MERMAID AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445498,Taxi,,,, +08/07/2021,7:31,,,40.690147,-73.78656,"(40.690147, -73.78656)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445148,Sedan,,,, +08/07/2021,10:17,BROOKLYN,11236,40.639595,-73.88517,"(40.639595, -73.88517)",,,10516 AVENUE N,0,0,0,0,0,0,0,0,,,,,,4444955,,,,, +08/07/2021,16:52,QUEENS,11421,40.684753,-73.86077,"(40.684753, -73.86077)",ATLANTIC AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445131,Sedan,Moped,,, +08/07/2021,13:00,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444471,Sedan,Sedan,,, +08/07/2021,0:52,,,40.865257,-73.9096,"(40.865257, -73.9096)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4444546,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,19:34,BROOKLYN,11236,40.63429,-73.89023,"(40.63429, -73.89023)",,,1997 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444629,Sedan,Sedan,,, +07/31/2021,7:46,QUEENS,11367,40.729855,-73.81853,"(40.729855, -73.81853)",150 STREET,70 ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4445322,Sedan,,,, +07/30/2021,17:00,QUEENS,11427,40.72402,-73.76356,"(40.72402, -73.76356)",,,86-70 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445400,Sedan,,,, +08/07/2021,16:12,,,40.844982,-73.92067,"(40.844982, -73.92067)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444937,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/06/2021,17:02,BROOKLYN,11222,40.73115,-73.95179,"(40.73115, -73.95179)",MC GUINNESS BOULEVARD,KENT STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4445216,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/07/2021,21:00,STATEN ISLAND,10306,40.574394,-74.10581,"(40.574394, -74.10581)",HYLAN BOULEVARD,BANCROFT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445336,Bus,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,14:50,BROOKLYN,11214,40.6027,-73.99511,"(40.6027, -73.99511)",,,2138 86 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444573,Sedan,Sedan,,, +08/06/2021,15:35,,,40.64028,-73.94363,"(40.64028, -73.94363)",NEWKIRK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445387,Sedan,Chassis Cab,,, +08/07/2021,17:00,BRONX,10467,40.878464,-73.88168,"(40.878464, -73.88168)",,,92 EAST 208 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444609,Sedan,,,, +08/05/2021,14:50,,,,,,CENTRE STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445269,Sedan,,,, +08/07/2021,5:54,,,40.86242,-73.89405,"(40.86242, -73.89405)",EAST KINGSBRIDGE ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4444492,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/03/2021,9:30,,,40.63722,-74.16238,"(40.63722, -74.16238)",,,34 ANDROS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445200,TOW TRUCK,Sedan,,, +08/07/2021,21:20,MANHATTAN,10036,40.75734,-73.98602,"(40.75734, -73.98602)",7 AVENUE,WEST 44 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4444980,Motorcycle,Bike,,, +08/07/2021,14:57,BROOKLYN,11219,40.63283,-74.00516,"(40.63283, -74.00516)",60 STREET,10 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4445073,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,14:10,,,40.650642,-73.92161,"(40.650642, -73.92161)",SNYDER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4445393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,22:00,BROOKLYN,11211,40.71556,-73.95262,"(40.71556, -73.95262)",,,292 NORTH 8 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445193,Sedan,Sedan,,, +08/01/2021,14:30,,,,,,HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445255,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,0:03,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4444685,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,13:20,QUEENS,11367,40.718494,-73.817566,"(40.718494, -73.817566)",,,79-06 MAIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,1:39,,,40.833088,-73.91904,"(40.833088, -73.91904)",GRAND CONCOURSE,,,2,0,1,0,1,0,0,0,Unspecified,,,,,4444727,E-Bike,,,, +07/16/2021,12:55,,,40.60219,-74.13962,"(40.60219, -74.13962)",,,65 UXBRIDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445505,Sedan,,,, +08/07/2021,15:45,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4444617,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/07/2021,0:50,,,40.67417,-73.95671,"(40.67417, -73.95671)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444860,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,18:20,,,40.86203,-73.80215,"(40.86203, -73.80215)",CITY ISLAND ROAD,PARK DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445314,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,14:49,BROOKLYN,11234,40.622005,-73.913536,"(40.622005, -73.913536)",,,48 GEORGETOWN LANE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4444577,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,5:15,QUEENS,11423,40.717648,-73.76665,"(40.717648, -73.76665)",HILLSIDE AVENUE,196 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445207,Sedan,Sedan,,, +08/05/2021,10:00,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4445348,Sedan,Box Truck,,, +08/07/2021,22:30,MANHATTAN,10003,40.73714,-73.9886,"(40.73714, -73.9886)",EAST 18 STREET,PARK AVENUE SOUTH,,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4444772,Taxi,,,, +08/07/2021,20:44,,,40.678165,-73.746506,"(40.678165, -73.746506)",223 STREET,MERRICK BOULEVARD,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4444625,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,18:28,QUEENS,11417,40.680008,-73.8488,"(40.680008, -73.8488)",LIBERTY AVENUE,90 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4444789,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,23:24,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4444708,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,8:22,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,1:30,,,40.712524,-73.962555,"(40.712524, -73.962555)",SOUTH 3 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4444421,Station Wagon/Sport Utility Vehicle,Bike,,, +08/07/2021,19:47,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445274,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/05/2021,18:00,BROOKLYN,11210,40.631252,-73.94167,"(40.631252, -73.94167)",,,1699 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445383,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,21:02,BROOKLYN,11233,40.679348,-73.93067,"(40.679348, -73.93067)",,,1711 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444601,Sedan,,,, +08/02/2021,13:20,BROOKLYN,11226,40.653435,-73.95278,"(40.653435, -73.95278)",,,728 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,17:24,BROOKLYN,11206,40.69595,-73.93764,"(40.69595, -73.93764)",VERNON AVENUE,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445347,Sedan,,,, +08/03/2021,0:50,,,40.716526,-73.82308,"(40.716526, -73.82308)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445227,Sedan,,,, +08/07/2021,2:48,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444431,Sedan,,,, +08/07/2021,18:00,BRONX,10472,40.832073,-73.87905,"(40.832073, -73.87905)",,,1331 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445244,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,18:00,,,40.610317,-73.98304,"(40.610317, -73.98304)",WEST 9 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444576,Sedan,,,, +08/07/2021,4:05,,,40.69642,-73.95978,"(40.69642, -73.95978)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/07/2021,4:38,BROOKLYN,11249,40.710846,-73.964935,"(40.710846, -73.964935)",,,88 SOUTH 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445284,Sedan,Sedan,,, +08/07/2021,14:50,MANHATTAN,10000,40.768387,-73.97107,"(40.768387, -73.97107)",,,20 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444618,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,0:27,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445174,Sedan,Sedan,Sedan,, +08/07/2021,3:22,,,40.62686,-74.157875,"(40.62686, -74.157875)",,,386 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,17:42,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444665,Sedan,,,, +08/02/2021,0:50,BRONX,10457,40.837654,-73.89997,"(40.837654, -73.89997)",FULTON AVENUE,CLAREMONT PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4445468,Bike,Sedan,,, +08/06/2021,13:39,,,40.697433,-73.93123,"(40.697433, -73.93123)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445368,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,12:12,BROOKLYN,11231,40.684143,-73.999405,"(40.684143, -73.999405)",SACKETT STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4445268,Sedan,,,, +08/07/2021,0:00,MANHATTAN,10003,40.730133,-73.98578,"(40.730133, -73.98578)",,,305 EAST 11 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445508,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,11:45,QUEENS,11362,40.76369,-73.72498,"(40.76369, -73.72498)",HORACE HARDING EXPRESSWAY,256 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,11:34,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Following Too Closely,,,,4444534,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,17:00,,,40.678543,-73.96855,"(40.678543, -73.96855)",SAINT MARKS AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4444966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,13:40,,,40.68138,-73.95352,"(40.68138, -73.95352)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445352,Sedan,Bike,,, +08/07/2021,20:15,BROOKLYN,11226,40.65505,-73.95631,"(40.65505, -73.95631)",BEDFORD AVENUE,CLARKSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4444595,Station Wagon/Sport Utility Vehicle,Bike,Bike,, +08/07/2021,1:00,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,7:45,BRONX,10451,40.825413,-73.923485,"(40.825413, -73.923485)",EAST 158 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445298,Sedan,Sedan,,, +08/07/2021,12:25,STATEN ISLAND,10306,40.57104,-74.10919,"(40.57104, -74.10919)",HYLAN BOULEVARD,JACQUES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444473,Station Wagon/Sport Utility Vehicle,Dump,,, +08/07/2021,8:48,STATEN ISLAND,10304,40.623455,-74.083176,"(40.623455, -74.083176)",,,218 BROAD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444804,Sedan,Sedan,,, +08/07/2021,20:49,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4444991,Station Wagon/Sport Utility Vehicle,DIRTBIKE,,, +08/07/2021,14:05,,,40.776756,-73.82764,"(40.776756, -73.82764)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444505,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/07/2021,21:29,,,40.69593,-73.96548,"(40.69593, -73.96548)",PARK AVENUE,RYERSON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444628,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,12:40,QUEENS,11412,40.704807,-73.77278,"(40.704807, -73.77278)",LIBERTY AVENUE,184 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445217,Sedan,Sedan,,, +08/04/2021,0:52,,,,,,141 STREET,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4445252,Sedan,,,, +08/07/2021,15:00,BRONX,10466,40.89493,-73.84825,"(40.89493, -73.84825)",,,4226 BRUNER AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4445152,Sedan,,,, +08/07/2021,20:45,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444589,Sedan,Motorcycle,,, +08/07/2021,23:57,MANHATTAN,10011,40.731705,-74.00096,"(40.731705, -74.00096)",WEST 4 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444645,Sedan,,,, +08/07/2021,1:26,BROOKLYN,11236,40.63747,-73.91027,"(40.63747, -73.91027)",,,8401 FLATLANDS AVENUE,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4445433,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Pick-up Truck,Sedan +08/07/2021,23:45,BROOKLYN,11203,40.638046,-73.92698,"(40.638046, -73.92698)",EAST 52 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,11:55,BROOKLYN,11222,40.735638,-73.95004,"(40.735638, -73.95004)",EAGLE STREET,PROVOST STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445323,Box Truck,Carry All,,, +08/04/2021,7:20,QUEENS,11432,40.712444,-73.80256,"(40.712444, -73.80256)",,,85-07 162 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445210,Station Wagon/Sport Utility Vehicle,Bus,,, +08/06/2021,21:00,BROOKLYN,11203,40.64999,-73.943695,"(40.64999, -73.943695)",,,974 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445388,Sedan,,,, +08/07/2021,18:50,BROOKLYN,11233,40.680164,-73.93151,"(40.680164, -73.93151)",STUYVESANT AVENUE,CHAUNCEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4444950,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,6:40,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4444445,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,1:15,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4445129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,19:00,BROOKLYN,11205,40.69441,-73.97606,"(40.69441, -73.97606)",AUBURN PLACE,NORTH PORTLAND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444564,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,23:44,BROOKLYN,11230,40.617805,-73.96189,"(40.617805, -73.96189)",AVENUE M,EAST 13 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445005,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,14:53,MANHATTAN,10013,40.716618,-73.99723,"(40.716618, -73.99723)",,,168 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504928,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,6:55,BROOKLYN,11234,40.630238,-73.93246,"(40.630238, -73.93246)",KINGS HIGHWAY,AVENUE I,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4444833,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/07/2021,16:08,BROOKLYN,11212,40.65846,-73.90066,"(40.65846, -73.90066)",,,130 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,19:29,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445420,Sedan,Sedan,Sedan,, +08/06/2021,13:45,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",HILLSIDE AVENUE,178 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445261,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,13:10,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4444751,Convertible,Bike,,, +08/06/2021,14:30,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445211,Taxi,Sedan,,, +08/07/2021,12:50,,,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,14:30,QUEENS,11377,40.75,-73.89924,"(40.75, -73.89924)",63 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444608,Pick-up Truck,,,, +08/07/2021,15:00,QUEENS,11418,40.699055,-73.83238,"(40.699055, -73.83238)",,,87-21 117 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445138,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,14:55,BROOKLYN,11222,40.72125,-73.93651,"(40.72125, -73.93651)",VANDERVORT AVENUE,DIVISION PLACE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4445194,Box Truck,Bike,,, +08/07/2021,23:15,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",CROSS ISLAND PARKWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444639,Sedan,,,, +08/07/2021,0:25,,,40.65431,-74.004425,"(40.65431, -74.004425)",36 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4445041,Sedan,Sedan,,, +08/07/2021,3:30,MANHATTAN,10029,40.796074,-73.94349,"(40.796074, -73.94349)",LEXINGTON AVENUE,EAST 112 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4444450,Sedan,Taxi,,, +08/07/2021,18:40,,,40.768013,-73.90423,"(40.768013, -73.90423)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444764,Sedan,Sedan,,, +08/07/2021,3:36,QUEENS,11420,40.682224,-73.81418,"(40.682224, -73.81418)",,,111-28 127 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444539,Taxi,,,, +08/07/2021,13:50,QUEENS,11420,40.673145,-73.8141,"(40.673145, -73.8141)",,,124-02 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444796,,,,, +08/07/2021,20:55,MANHATTAN,10013,40.720104,-74.00677,"(40.720104, -74.00677)",,,19 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,18:45,QUEENS,11102,40.773464,-73.92316,"(40.773464, -73.92316)",23 STREET,25 ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4444763,Sedan,Pick-up Truck,,, +08/06/2021,10:00,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",34 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445497,SKATEBOARD,,,, +08/03/2021,4:02,,,40.831493,-73.85444,"(40.831493, -73.85444)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4445232,Box Truck,,,, +08/07/2021,0:25,MANHATTAN,10029,40.797718,-73.946495,"(40.797718, -73.946495)",,,1695 MADISON AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444679,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,19:11,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445240,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,1:27,BROOKLYN,11249,40.712597,-73.967735,"(40.712597, -73.967735)",KENT AVENUE,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444422,Sedan,Sedan,,, +08/05/2021,12:45,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445276,TRAILER,Sedan,,, +08/07/2021,15:55,BROOKLYN,11212,40.668922,-73.912476,"(40.668922, -73.912476)",,,85 BRISTOL STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445184,E-Bike,,,, +08/05/2021,20:24,BROOKLYN,11212,40.66398,-73.92618,"(40.66398, -73.92618)",,,61 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445382,Station Wagon/Sport Utility Vehicle,,,, +07/26/2021,4:30,,,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445353,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,3:30,BROOKLYN,11203,40.656097,-73.93909,"(40.656097, -73.93909)",,,599 CLARKSON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444998,Sedan,,,, +08/07/2021,16:00,QUEENS,11354,40.7731,-73.84566,"(40.7731, -73.84566)",COLLEGE POINT BOULEVARD,28 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444504,Sedan,Sedan,,, +08/07/2021,14:58,,,40.746887,-73.8347,"(40.746887, -73.8347)",COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4444509,Sedan,Sedan,,, +08/07/2021,22:25,BROOKLYN,11238,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,WASHINGTON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4444865,Sedan,,,, +08/03/2021,9:18,,,40.681335,-74.00297,"(40.681335, -74.00297)",HICKS STREET,WOODHULL STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4445272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,16:00,QUEENS,11429,40.7032,-73.73395,"(40.7032, -73.73395)",,,223-24 MURDOCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4444545,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/07/2021,2:26,QUEENS,11434,,,,Belt Parkway,150 Street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444970,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,7:26,BRONX,10455,40.80865,-73.90445,"(40.80865, -73.90445)",,,421 BRUCKNER BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,,,,,4445307,E-Bike,,,, +08/07/2021,14:19,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444585,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,5:06,BROOKLYN,11218,40.639194,-73.97663,"(40.639194, -73.97663)",,,524 EAST 3 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445083,Sedan,Sedan,,, +08/06/2021,16:00,,,40.685844,-73.94732,"(40.685844, -73.94732)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445351,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,2:40,QUEENS,11361,40.761845,-73.76766,"(40.761845, -73.76766)",,,215-05 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,,4444464,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/07/2021,23:45,QUEENS,11693,40.605114,-73.81973,"(40.605114, -73.81973)",CROSS BAY BOULEVARD,WEST 11 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444871,Sedan,Sedan,,, +08/07/2021,7:21,BRONX,10457,40.85192,-73.89694,"(40.85192, -73.89694)",EAST 180 STREET,PARK AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4445058,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,19:36,QUEENS,11385,40.700592,-73.85457,"(40.700592, -73.85457)",WOODHAVEN BOULEVARD,FOREST PARK DRIVE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445133,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,2:20,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4444474,Sedan,Sedan,,, +08/07/2021,1:41,QUEENS,11417,40.6807,-73.84465,"(40.6807, -73.84465)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4444544,Sedan,Sedan,,, +08/05/2021,9:30,BROOKLYN,11222,40.723774,-73.93754,"(40.723774, -73.93754)",VANDERVORT AVENUE,CHERRY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4445324,Van,Box Truck,,, +07/27/2021,19:00,,,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445346,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,17:30,BROOKLYN,11228,40.619926,-74.00066,"(40.619926, -74.00066)",71 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444575,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,16:09,BRONX,10456,40.82839,-73.916916,"(40.82839, -73.916916)",EAST 164 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4444721,Sedan,E-Bike,,, +02/09/2022,7:57,,,0,0,"(0.0, 0.0)",78 AVENUE,141 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4505185,Sedan,,,, +07/10/2021,12:50,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4445183,Sedan,,,, +08/07/2021,16:26,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4445266,Sedan,Sedan,,, +08/07/2021,0:00,BROOKLYN,11221,40.690075,-73.91916,"(40.690075, -73.91916)",BUSHWICK AVENUE,WOODBINE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444488,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,18:30,QUEENS,11361,40.76041,-73.768295,"(40.76041, -73.768295)",,,214-27 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4444596,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,5:50,BROOKLYN,11234,40.60984,-73.93123,"(40.60984, -73.93123)",,,3605 AVENUE S,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4444448,Sedan,Sedan,Sedan,Sedan,Sedan +08/07/2021,15:30,,,40.757698,-73.9694,"(40.757698, -73.9694)",3 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444568,E-Bike,Taxi,,, +08/06/2021,0:34,,,40.659336,-73.92726,"(40.659336, -73.92726)",REMSEN AVENUE,WINTHROP STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445384,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,5:30,QUEENS,11368,40.7558,-73.86156,"(40.7558, -73.86156)",,,34-20 107 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444846,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,0:17,,,40.71312,-73.83376,"(40.71312, -73.83376)",AUSTIN STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444558,,,,, +08/07/2021,16:30,QUEENS,11368,40.74099,-73.86563,"(40.74099, -73.86563)",,,51-18 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445474,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:30,BRONX,10462,40.83121,-73.850876,"(40.83121, -73.850876)",POWELL AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,22:39,,,40.75253,-73.94384,"(40.75253, -73.94384)",21 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4445089,Sedan,Sedan,,, +08/07/2021,0:00,MANHATTAN,10003,40.73174,-73.99147,"(40.73174, -73.99147)",BROADWAY,EAST 10 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4445509,Sedan,Sedan,,, +08/07/2021,22:33,QUEENS,11372,40.75624,-73.87887,"(40.75624, -73.87887)",89 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444620,Sedan,Sedan,,, +08/07/2021,21:57,QUEENS,11428,40.72009,-73.739555,"(40.72009, -73.739555)",94 AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444958,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,12:50,MANHATTAN,10039,40.82316,-73.937996,"(40.82316, -73.937996)",,,2534 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445127,Station Wagon/Sport Utility Vehicle,UNK,,, +08/07/2021,17:30,,,,,,WEST DRIVE,WEST LAKE DRIVE,,2,0,0,0,2,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4445030,Bike,Bike,,, +08/07/2021,23:08,,,40.66767,-73.92845,"(40.66767, -73.92845)",UNION STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4444703,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/26/2021,15:36,QUEENS,11435,40.694096,-73.810814,"(40.694096, -73.810814)",,,101-11 REMINGTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445205,Sedan,,,, +08/05/2021,12:00,,,40.606358,-74.120926,"(40.606358, -74.120926)",MANOR ROAD,WESTWOOD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445291,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,11:40,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",QUEENS BOULEVARD,58 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444613,Sedan,PK,,, +08/07/2021,16:00,QUEENS,11432,40.70963,-73.78656,"(40.70963, -73.78656)",,,90-13 175 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445218,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,10:00,QUEENS,11377,40.741154,-73.919106,"(40.741154, -73.919106)",46 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444606,Sedan,Sedan,Taxi,, +08/07/2021,9:00,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",VANNEST AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444443,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,17:30,QUEENS,11423,40.72921,-73.781166,"(40.72921, -73.781166)",UNION TURNPIKE,188 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445241,Sedan,,,, +08/06/2021,19:28,BROOKLYN,11226,40.6413,-73.95435,"(40.6413, -73.95435)",,,2555 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445390,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,12:50,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",BRUCKNER BOULEVARD,ALEXANDER AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4444535,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,10:30,BROOKLYN,11226,40.644325,-73.95994,"(40.644325, -73.95994)",,,750 OCEAN AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4444653,Sedan,Bike,,, +07/18/2021,5:10,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4445374,Sedan,,,, +08/07/2021,8:55,BROOKLYN,11206,40.704113,-73.94786,"(40.704113, -73.94786)",BROADWAY,LORIMER STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4445285,E-Scooter,,,, +08/02/2021,11:55,BROOKLYN,11223,40.605278,-73.98114,"(40.605278, -73.98114)",WEST 8 STREET,KINGS HIGHWAY,,1,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4445188,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/07/2021,15:58,,,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445499,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,5:26,BRONX,10456,40.832737,-73.90504,"(40.832737, -73.90504)",3 AVENUE,EAST 169 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4444668,Station Wagon/Sport Utility Vehicle,Moped,,, +08/07/2021,19:20,BROOKLYN,11203,40.65142,-73.93716,"(40.65142, -73.93716)",CHURCH AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445395,Sedan,Sedan,,, +08/07/2021,16:46,QUEENS,11378,40.721844,-73.89306,"(40.721844, -73.89306)",,,59-61 69 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4444827,Station Wagon/Sport Utility Vehicle,Sedan,4 dr sedan,Sedan, +08/01/2021,16:00,BROOKLYN,11222,40.725803,-73.93694,"(40.725803, -73.93694)",,,15 VAN DAM STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4445195,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/07/2021,11:04,BROOKLYN,11236,40.650948,-73.906,"(40.650948, -73.906)",ROCKAWAY AVENUE,EAST 99 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444627,Taxi,E-Bike,,, +08/07/2021,16:40,BRONX,10471,40.90861,-73.90172,"(40.90861, -73.90172)",,,6018 LIEBIG AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4444590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,8:15,BRONX,10473,40.821926,-73.853065,"(40.821926, -73.853065)",,,2066 VIRGIL PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445235,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,9:00,,,40.7152,-73.77847,"(40.7152, -73.77847)",DALNY ROAD,WEXFORD TERRACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445249,Sedan,,,, +08/07/2021,23:48,BROOKLYN,11233,40.6831,-73.93209,"(40.6831, -73.93209)",STUYVESANT AVENUE,MACON STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4444945,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,19:00,,,40.806973,-73.937645,"(40.806973, -73.937645)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4445155,Sedan,,,, +08/07/2021,13:50,,,40.7107,-73.98471,"(40.7107, -73.98471)",SOUTH STREET,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4444697,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,17:00,,,40.698643,-73.94697,"(40.698643, -73.94697)",ELLERY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445437,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,17:35,QUEENS,11103,40.756718,-73.91422,"(40.756718, -73.91422)",46 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4444765,,,,, +08/07/2021,23:29,BROOKLYN,11220,40.644035,-74.0131,"(40.644035, -74.0131)",,,452 53 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445306,Sedan,Sedan,Sedan,, +08/02/2021,11:20,BROOKLYN,11204,40.612797,-73.98162,"(40.612797, -73.98162)",,,1328 WEST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445209,Sedan,,,, +08/03/2021,14:10,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445377,Sedan,Sedan,,, +08/07/2021,22:15,,,40.858635,-73.846466,"(40.858635, -73.846466)",PELHAM PARKWAY NORTH,SEYMOUR AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4444797,Moped,,,, +08/02/2021,13:00,QUEENS,11432,40.71118,-73.80444,"(40.71118, -73.80444)",,,85-60 160 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445354,Sedan,,,, +08/03/2021,9:46,QUEENS,11367,40.726707,-73.819084,"(40.726707, -73.819084)",,,147-31 72 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445213,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,1:45,,,,,,LAUREL HILL BOULEVARD,61 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4444425,Sedan,Sedan,,, +08/04/2021,6:26,,,,,,BROOKLYN BATTERY TUNNEL,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4445277,Pick-up Truck,Sedan,,, +08/07/2021,9:00,BROOKLYN,11222,40.72696,-73.95465,"(40.72696, -73.95465)",,,179 GUERNSEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445236,Sedan,,,, +08/07/2021,14:10,QUEENS,11377,40.746178,-73.90813,"(40.746178, -73.90813)",56 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444611,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/07/2021,20:40,BROOKLYN,11225,40.663727,-73.95386,"(40.663727, -73.95386)",EMPIRE BOULEVARD,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4445002,Sedan,Sedan,,, +08/07/2021,1:09,BRONX,10454,40.80761,-73.91341,"(40.80761, -73.91341)",EAST 141 STREET,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4444526,Scooter,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,21:18,BRONX,10461,40.8431,-73.84778,"(40.8431, -73.84778)",EAST TREMONT AVENUE,SILVER STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4444972,Sedan,Sedan,,, +08/04/2021,6:30,QUEENS,11432,40.714542,-73.78124,"(40.714542, -73.78124)",AVON STREET,WEXFORD TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445257,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,10:53,QUEENS,11104,40.74743,-73.925476,"(40.74743, -73.925476)",SKILLMAN AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,21:36,,,,,,east new york avenue,Mother Gaston Blvd,,1,0,1,0,0,0,0,0,Unspecified,,,,,4444702,Sedan,,,, +08/03/2021,16:14,,,40.5861,-73.97128,"(40.5861, -73.97128)",AVENUE Z,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445496,Sedan,FDNY AMBUL,,, +08/07/2021,13:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444734,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/07/2021,5:25,QUEENS,11434,40.69103,-73.78079,"(40.69103, -73.78079)",LINDEN BOULEVARD,169 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4445142,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/07/2021,22:32,QUEENS,11372,40.750626,-73.87595,"(40.750626, -73.87595)",91 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444850,Sedan,,,, +08/07/2021,9:10,QUEENS,11377,40.756107,-73.90071,"(40.756107, -73.90071)",62 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,10:20,BROOKLYN,11219,40.64401,-73.99189,"(40.64401, -73.99189)",,,1039 39 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4497688,Sedan,Sedan,,, +07/31/2021,18:44,,,40.6802,-73.953285,"(40.6802, -73.953285)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Passenger Distraction,Following Too Closely,,,,4445350,Taxi,Bike,,, +08/07/2021,8:00,,,40.795326,-73.9713,"(40.795326, -73.9713)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4444465,Sedan,Sedan,Sedan,, +08/04/2021,10:45,MANHATTAN,10022,,,,1 avenue,East 55,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445318,Pick-up Truck,Taxi,,, +08/07/2021,20:30,QUEENS,11373,40.731968,-73.88478,"(40.731968, -73.88478)",GRAND AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444874,E-Bike,Sedan,,, +08/07/2021,23:30,,,40.75935,-73.750244,"(40.75935, -73.750244)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4444637,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,14:41,,,40.673965,-73.99998,"(40.673965, -73.99998)",CENTRE STREET,HAMILTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4445271,Station Wagon/Sport Utility Vehicle,Bike,,, +08/05/2021,16:40,BROOKLYN,11212,40.66435,-73.92906,"(40.66435, -73.92906)",EAST NEW YORK AVENUE,EAST 93 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445381,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,10:08,QUEENS,11375,40.722313,-73.841545,"(40.722313, -73.841545)",71 AVENUE,110 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,9:20,BROOKLYN,11201,40.692078,-73.99123,"(40.692078, -73.99123)",,,60 COURT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444591,Sedan,Sedan,,, +08/07/2021,18:30,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445161,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,11:52,BRONX,10466,40.889923,-73.85931,"(40.889923, -73.85931)",WHITE PLAINS ROAD,EAST 228 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445060,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,2:40,,,40.887817,-73.83102,"(40.887817, -73.83102)",LIGHT STREET,DYRE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445092,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/05/2021,18:00,BROOKLYN,11203,40.638138,-73.93572,"(40.638138, -73.93572)",,,701 EAST 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445444,Sedan,,,, +08/07/2021,1:00,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4444463,Sedan,Sedan,,, +08/07/2021,18:30,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4444758,Taxi,Sedan,,, +08/06/2021,13:00,QUEENS,11374,40.714153,-73.85967,"(40.714153, -73.85967)",,,68-27 WOODHAVEN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4445486,Pick-up Truck,,,, +08/07/2021,14:40,,,,,,canarsie veterans circle,rockaway pkwy,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444503,Pick-up Truck,Sedan,,, +08/06/2021,12:00,,,40.721474,-73.98383,"(40.721474, -73.98383)",EAST HOUSTON STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445484,Bike,,,, +08/07/2021,18:18,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",GRAND CONCOURSE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4444941,Station Wagon/Sport Utility Vehicle,Bus,,, +08/07/2021,9:00,,,,,,KINGS HIGHWAY,EAST 53 STREET,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4444447,Sedan,,,, +08/07/2021,1:00,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444599,Sedan,Sedan,,, +08/07/2021,14:30,BROOKLYN,11220,40.643005,-74.00533,"(40.643005, -74.00533)",7 AVENUE,49 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445051,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,12:00,,,40.64854,-73.924255,"(40.64854, -73.924255)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4445385,Sedan,Sedan,,, +08/05/2021,6:32,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4445405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/07/2021,4:30,,,40.76113,-73.85851,"(40.76113, -73.85851)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444844,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,13:45,,,40.66712,-73.81228,"(40.66712, -73.81228)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4444541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,9:34,QUEENS,11367,40.71817,-73.82261,"(40.71817, -73.82261)",,,138-39 78 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445248,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,20:15,,,40.71927,-73.790306,"(40.71927, -73.790306)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445221,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,10:20,,,40.635784,-73.95953,"(40.635784, -73.95953)",EAST 19 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4444654,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/07/2021,13:50,,,40.847965,-73.87145,"(40.847965, -73.87145)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,3:53,QUEENS,11417,40.67815,-73.84869,"(40.67815, -73.84869)",,,89-04 107 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445180,Pick-up Truck,,,, +08/07/2021,16:20,QUEENS,11432,40.70569,-73.806145,"(40.70569, -73.806145)",150 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445204,Sedan,,,, +08/07/2021,17:00,,,40.576275,-73.98796,"(40.576275, -73.98796)",WEST 21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444672,Ambulance,Sedan,,, +08/07/2021,10:58,BROOKLYN,11203,40.650642,-73.92161,"(40.650642, -73.92161)",SNYDER AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445391,Sedan,,,, +08/07/2021,16:06,,,40.809284,-73.92927,"(40.809284, -73.92927)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444536,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,13:20,BROOKLYN,11203,40.651325,-73.93906,"(40.651325, -73.93906)",ALBANY AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445375,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,9:00,BROOKLYN,11221,40.695114,-73.911865,"(40.695114, -73.911865)",PUTNAM AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444486,Sedan,Box Truck,,, +08/07/2021,16:43,BRONX,10458,40.865353,-73.89494,"(40.865353, -73.89494)",GRAND CONCOURSE,EAST 193 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4445265,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,14:27,MANHATTAN,10036,,,,42nd street,6 avenue,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4444956,Sedan,Bike,,, +08/07/2021,8:36,BRONX,10457,40.845966,-73.89224,"(40.845966, -73.89224)",EAST TREMONT AVENUE,HUGHES AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445121,E-Bike,Sedan,,, +08/07/2021,17:46,MANHATTAN,10023,0,0,"(0.0, 0.0)",COLUMBUS AVENUE,WEST 71 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444569,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,0:42,BROOKLYN,11212,40.662506,-73.90929,"(40.662506, -73.90929)",,,233 LIVONIA AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4444704,Sedan,E-Bike,,, +08/07/2021,13:08,,,,,,BRONX WHITESTONE BRIDGE,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,Unspecified,4445016,Sedan,Sedan,Sedan,Sedan,Sedan +08/07/2021,7:50,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",RUST STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4444820,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/07/2021,11:05,,,,,,CROSS ISLAND PARKWAY,BRADDOCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444475,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,1:30,BRONX,10462,40.853718,-73.86483,"(40.853718, -73.86483)",,,2120 WALLACE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444444,Sedan,Sedan,,, +08/07/2021,0:12,QUEENS,11373,,,,45 AVENUE,76 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4444603,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,11:30,BRONX,10473,40.819523,-73.848145,"(40.819523, -73.848145)",,,616 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445345,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,18:15,,,40.830936,-73.91241,"(40.830936, -73.91241)",EAST 167 STREET,,,2,0,0,0,1,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4444723,Sedan,Bike,,, +08/07/2021,14:30,BROOKLYN,11214,40.602455,-73.99929,"(40.602455, -73.99929)",BAY 25 STREET,BENSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444574,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,13:45,BROOKLYN,11222,40.730885,-73.9479,"(40.730885, -73.9479)",MOULTRIE STREET,GREENPOINT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445230,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,19:55,BRONX,10473,40.823082,-73.86722,"(40.823082, -73.86722)",STORY AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445242,Sedan,Bus,,, +08/03/2021,9:20,,,40.604618,-74.02771,"(40.604618, -74.02771)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4445186,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,17:10,BROOKLYN,11206,40.701466,-73.95198,"(40.701466, -73.95198)",,,55 LORIMER STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,4445286,Sedan,Motorcycle,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/26/2021,8:23,,,40.64052,-74.171295,"(40.64052, -74.171295)",HOLLAND AVENUE,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445501,Box Truck,Sedan,,, +08/07/2021,18:00,QUEENS,11422,40.66353,-73.734535,"(40.66353, -73.734535)",,,140-22 247 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444615,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,22:05,MANHATTAN,10009,40.721363,-73.97772,"(40.721363, -73.97772)",,,30 AVENUE D,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4445196,Van,,,, +08/05/2021,10:26,BROOKLYN,11222,40.72708,-73.94284,"(40.72708, -73.94284)",,,228 MONITOR STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445325,Sedan,Sedan,,, +08/07/2021,12:00,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444927,Station Wagon/Sport Utility Vehicle,Bike,,, +08/04/2021,19:12,,,40.717033,-73.8221,"(40.717033, -73.8221)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445357,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,13:55,BROOKLYN,11212,40.6559,-73.91433,"(40.6559, -73.91433)",,,488 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445386,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,17:08,BRONX,10455,40.815975,-73.91102,"(40.815975, -73.91102)",WESTCHESTER AVENUE,EAGLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444527,E-Bike,,,, +08/07/2021,23:55,BROOKLYN,11203,40.6628,-73.94001,"(40.6628, -73.94001)",,,501 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4445003,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/07/2021,10:09,,,40.686756,-73.9938,"(40.686756, -73.9938)",COURT STREET,WARREN STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4445270,Sedan,Bike,,, +08/07/2021,9:30,QUEENS,11692,40.59213,-73.79509,"(40.59213, -73.79509)",,,303 BEACH 66 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444857,Sedan,,,, +08/07/2021,12:50,,,40.781647,-73.8367,"(40.781647, -73.8367)",132 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4444497,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,16:00,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,13:30,,,40.676487,-73.79693,"(40.676487, -73.79693)",143 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445132,Sedan,,,, +08/07/2021,5:54,,,40.87787,-73.8701,"(40.87787, -73.8701)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4445094,Sedan,,,, +08/07/2021,12:30,QUEENS,11385,40.70713,-73.90327,"(40.70713, -73.90327)",FOREST AVENUE,PALMETTO STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4444470,Sedan,Tractor Truck Diesel,,, +07/20/2021,18:00,,,40.711166,-73.9489,"(40.711166, -73.9489)",GRAND STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4445287,Bike,,,, +08/04/2021,21:37,BROOKLYN,11210,40.63692,-73.93752,"(40.63692, -73.93752)",ALBANY AVENUE,FARRAGUT ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4445376,Sedan,Sedan,,, +08/05/2021,8:30,QUEENS,11365,40.736015,-73.81054,"(40.736015, -73.81054)",,,65-23 PARSONS BOULEVARD,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445192,Sedan,Sedan,,, +08/03/2021,12:45,QUEENS,11428,40.722782,-73.74209,"(40.722782, -73.74209)",217 STREET,92 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445404,Sedan,Sedan,,, +08/07/2021,12:10,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4444687,Sedan,Sedan,Sedan,Sedan, +08/04/2021,23:55,,,40.780464,-73.94404,"(40.780464, -73.94404)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445234,Tractor Truck Gasoline,,,, +08/07/2021,15:15,BROOKLYN,11249,40.721943,-73.95545,"(40.721943, -73.95545)",NORTH 13 STREET,BERRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445237,Sedan,,,, +08/07/2021,5:53,,,40.741344,-73.95459,"(40.741344, -73.95459)",BORDEN AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444426,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/29/2021,18:13,BROOKLYN,11238,40.6892,-73.95716,"(40.6892, -73.95716)",,,415 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445349,Sedan,,,, +08/07/2021,17:30,QUEENS,11101,40.753468,-73.91355,"(40.753468, -73.91355)",49 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444757,E-Bike,Sedan,,, +01/26/2022,8:30,BROOKLYN,11210,40.624596,-73.9445,"(40.624596, -73.9445)",AVENUE K,EAST 32 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4497575,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,5:00,MANHATTAN,10028,40.776947,-73.952415,"(40.776947, -73.952415)",,,1632 2 AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4445495,Sedan,Sedan,Sedan,, +07/29/2021,17:09,,,,,,MARINE PARKWAY BRIDGE S/B ROADWA,BEACH CHANNEL DRIVE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4445281,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,18:35,,,40.736496,-73.909225,"(40.736496, -73.909225)",58 STREET,LAUREL HILL BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444610,Bike,,,, +08/07/2021,10:57,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4445146,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/07/2021,7:55,,,40.73938,-74.00995,"(40.73938, -74.00995)",WEST STREET,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4444636,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/04/2021,18:20,,,40.717033,-73.8221,"(40.717033, -73.8221)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445447,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,3:21,QUEENS,11106,40.75892,-73.92566,"(40.75892, -73.92566)",33 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444768,Sedan,Bike,,, +08/07/2021,9:28,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4444547,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/07/2021,0:00,BROOKLYN,11208,40.683235,-73.87368,"(40.683235, -73.87368)",,,3299 FULTON STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4444458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,4:04,BROOKLYN,11224,40.576157,-73.98902,"(40.576157, -73.98902)",MERMAID AVENUE,WEST 22 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444979,Motorcycle,Taxi,,, +08/07/2021,21:00,BRONX,10469,40.880825,-73.85158,"(40.880825, -73.85158)",LACONIA AVENUE,EAST 220 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4445163,Sedan,Sedan,,, +08/07/2021,19:15,BROOKLYN,11236,40.627464,-73.89956,"(40.627464, -73.89956)",EAST 80 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4444592,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,17:40,QUEENS,11413,40.658203,-73.75397,"(40.658203, -73.75397)",147 AVENUE,228 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4444578,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,16:50,BRONX,10458,40.85808,-73.883934,"(40.85808, -73.883934)",,,619 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,15:19,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4445303,Box Truck,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan, +08/07/2021,20:44,QUEENS,11413,40.67934,-73.74584,"(40.67934, -73.74584)",223 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444626,Sedan,,,, +08/07/2021,17:30,BROOKLYN,11212,40.665554,-73.91014,"(40.665554, -73.91014)",,,254 BLAKE AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4444701,Sedan,E-Bike,,, +08/03/2021,16:40,,,40.73854,-73.80089,"(40.73854, -73.80089)",168 STREET,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4445256,,,,, +08/04/2021,3:15,QUEENS,11366,40.731407,-73.77213,"(40.731407, -73.77213)",,,198-10 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445215,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,14:46,BROOKLYN,11226,40.64421,-73.94886,"(40.64421, -73.94886)",,,1705 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4445394,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,10:00,MANHATTAN,10003,40.728825,-73.98642,"(40.728825, -73.98642)",,,328 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445485,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,14:30,,,40.576626,-73.98478,"(40.576626, -73.98478)",MERMAID AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444733,Garbage or Refuse,Bike,,, +08/07/2021,23:00,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444616,Sedan,,,, +08/05/2021,16:25,BROOKLYN,11236,40.653625,-73.920906,"(40.653625, -73.920906)",RALPH AVENUE,REMSEN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445380,Sedan,E-Scooter,,, +08/05/2021,19:56,BRONX,10453,40.85866,-73.90374,"(40.85866, -73.90374)",,,2285 JEROME AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445197,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,21:05,,,40.586815,-74.1639,"(40.586815, -74.1639)",,,115 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445208,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,7:30,,,40.745384,-73.76879,"(40.745384, -73.76879)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445226,Tractor Truck Diesel,Sedan,,, +08/07/2021,19:29,BROOKLYN,11226,40.6527,-73.96355,"(40.6527, -73.96355)",,,47 SAINT PAULS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444655,Sedan,,,, +01/26/2022,6:30,QUEENS,11429,40.70947,-73.74581,"(40.70947, -73.74581)",HOLLIS AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497544,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,14:50,,,40.725792,-74.01103,"(40.725792, -74.01103)",WEST STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497944,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,9:50,,,40.702255,-73.92008,"(40.702255, -73.92008)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4497787,Sedan,Sedan,,, +01/26/2022,8:20,BROOKLYN,11236,40.64503,-73.91998,"(40.64503, -73.91998)",RALPH AVENUE,CLARENDON ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4497839,Bus,Sedan,,, +01/26/2022,23:07,BROOKLYN,11232,40.661037,-73.99744,"(40.661037, -73.99744)",24 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4497705,Sedan,Bike,,, +01/26/2022,21:49,,,,,,RIVERSIDE DRIVE,RIVERSIDE DRIVE WEST,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4497815,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,15:48,MANHATTAN,10029,40.79,-73.952156,"(40.79, -73.952156)",,,1450 MADISON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497759,AMBULANCE,Sedan,,, +01/26/2022,9:42,,,40.7431,-73.974014,"(40.7431, -73.974014)",1 AVENUE,,,2,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4497539,Sedan,E-Bike,,, +01/26/2022,2:58,QUEENS,11101,40.752403,-73.92442,"(40.752403, -73.92442)",STEINWAY STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,18:40,,,40.67944,-73.89714,"(40.67944, -73.89714)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497640,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,16:50,,,40.8327,-73.950226,"(40.8327, -73.950226)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497981,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,13:05,,,40.862602,-73.92028,"(40.862602, -73.92028)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497715,Sedan,Sedan,,, +01/26/2022,18:15,QUEENS,11428,40.7171,-73.74077,"(40.7171, -73.74077)",JAMAICA AVENUE,215 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497605,Sedan,Sedan,,, +01/27/2022,12:44,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",69 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4497916,Sedan,Sedan,,, +01/26/2022,12:34,BROOKLYN,11215,40.659092,-73.9852,"(40.659092, -73.9852)",,,415A 18 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4497929,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,13:50,MANHATTAN,10033,40.850166,-73.93576,"(40.850166, -73.93576)",BROADWAY,WEST 181 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4497869,Sedan,Armored Truck,,, +01/27/2022,19:25,MANHATTAN,10075,40.771076,-73.947586,"(40.771076, -73.947586)",EAST END AVENUE,EAST 80 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4497961,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,17:30,QUEENS,11434,40.686646,-73.78471,"(40.686646, -73.78471)",116 AVENUE,BEDELL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544089,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,15:32,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497881,,,,, +01/26/2022,17:45,BRONX,10461,40.842854,-73.85,"(40.842854, -73.85)",EAST TREMONT AVENUE,LURTING AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497978,Sedan,E-Bike,,, +01/26/2022,11:30,,,40.69407,-73.821236,"(40.69407, -73.821236)",95 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497776,Sedan,,,, +01/26/2022,10:30,BRONX,10454,40.809155,-73.90377,"(40.809155, -73.90377)",,,415 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4497563,Sedan,Box Truck,,, +01/27/2022,10:20,BRONX,10467,40.862114,-73.863625,"(40.862114, -73.863625)",,,2442 BARNES AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4497806,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,11:50,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4497948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,14:58,BRONX,10468,40.862743,-73.905106,"(40.862743, -73.905106)",,,80 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4497770,Ambulance,Bus,,, +01/26/2022,12:53,,,40.76095,-73.832756,"(40.76095, -73.832756)",37 AVENUE,PRINCE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497552,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,8:11,BRONX,10469,40.880333,-73.846146,"(40.880333, -73.846146)",EAST 222 STREET,KINGSLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497598,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,11:42,,,40.743187,-73.97207,"(40.743187, -73.97207)",EAST 34 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,17:09,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497836,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,7:15,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497524,Sedan,,,, +01/27/2022,21:05,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497962,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,17:15,,,40.700695,-73.7832,"(40.700695, -73.7832)",173 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497872,Sedan,,,, +01/26/2022,8:51,BROOKLYN,11230,40.628998,-73.95703,"(40.628998, -73.95703)",,,1360 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497693,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/27/2022,0:09,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4497921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,17:00,BROOKLYN,11220,40.638756,-74.019554,"(40.638756, -74.019554)",,,415 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497924,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,0:00,,,40.6657792,-73.9194119,"(40.6657792, -73.9194119)",HOWARD AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470212,Sedan,Sedan,,, +01/26/2022,1:16,,,40.65418,-73.91072,"(40.65418, -73.91072)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4497371,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,16:15,MANHATTAN,10018,40.757065,-74.00106,"(40.757065, -74.00106)",11 AVENUE,WEST 36 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,,,4497752,Sedan,Van,Sedan,, +06/17/2022,15:34,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544563,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,19:30,,,40.665142,-73.88557,"(40.665142, -73.88557)",BARBEY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497646,Sedan,Pick-up Truck,,, +01/27/2022,10:38,,,40.691307,-73.91326,"(40.691307, -73.91326)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4497852,Sedan,,,, +07/07/2022,16:12,BROOKLYN,11226,40.65447,-73.96292,"(40.65447, -73.96292)",,,160 PARKSIDE AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544701,Station Wagon/Sport Utility Vehicle,Bike,,, +01/27/2022,16:30,QUEENS,11103,40.765335,-73.90612,"(40.765335, -73.90612)",25 AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4497974,Sedan,Sedan,,, +01/26/2022,20:48,QUEENS,11385,40.693737,-73.89675,"(40.693737, -73.89675)",,,80-10 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4497742,Sedan,,,, +10/19/2021,10:15,,,40.8441132,-73.8979996,"(40.8441132, -73.8979996)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470221,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/26/2022,7:43,BRONX,10466,40.889294,-73.849495,"(40.889294, -73.849495)",EAST 231 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,9:35,,,40.6655296,-73.7446592,"(40.6655296, -73.7446592)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4470223,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,7:39,MANHATTAN,10029,40.78586,-73.94301,"(40.78586, -73.94301)",,,342 EAST 100 STREET,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4497501,Sedan,Bus,,, +01/27/2022,8:37,QUEENS,11361,40.76049,-73.767525,"(40.76049, -73.767525)",NORTHERN BOULEVARD,215 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497798,Sedan,,,, +10/24/2021,0:11,,,40.7621801,-73.7567895,"(40.7621801, -73.7567895)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4470226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,19:00,BRONX,10472,40.8324089,-73.8663164,"(40.8324089, -73.8663164)",,,1310 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470227,Sedan,,,, +01/27/2022,12:14,,,40.88517,-73.90733,"(40.88517, -73.90733)",WEST 235 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4497858,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,0:00,BROOKLYN,11221,40.6957911,-73.933119,"(40.6957911, -73.933119)",WILLOUGHBY AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470229,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,16:42,BROOKLYN,11233,40.670116,-73.92248,"(40.670116, -73.92248)",RALPH AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,14:30,,,40.8492,-73.82716,"(40.8492, -73.82716)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497616,Box Truck,Sedan,,, +01/27/2022,9:00,,,,,,east gun hill road,gun hill road,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497831,Sedan,Sedan,,, +01/27/2022,22:40,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WYTHE AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4497967,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,17:55,,,40.707405,-73.959946,"(40.707405, -73.959946)",HAVEMEYER STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4497667,Sedan,,,, +01/26/2022,11:00,BROOKLYN,11220,40.647434,-74.006645,"(40.647434, -74.006645)",,,528 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497698,Sedan,Sedan,,, +01/27/2022,7:00,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Obstruction/Debris,Obstruction/Debris,Other Vehicular,,,4497940,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/27/2022,12:00,,,40.684277,-73.78302,"(40.684277, -73.78302)",BREWER BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497905,Sedan,,,, +01/26/2022,14:04,BROOKLYN,11223,40.59814,-73.983574,"(40.59814, -73.983574)",AVENUE T,WEST 12 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4497719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,15:00,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497650,Sedan,Motorbike,,, +01/27/2022,17:02,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,15:48,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",WILSON AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4497896,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,15:35,BROOKLYN,11221,40.693314,-73.92496,"(40.693314, -73.92496)",BUSHWICK AVENUE,VAN BUREN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497911,Bus,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:20,,,40.8387658,-73.8828978,"(40.8387658, -73.8828978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4470245,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,14:49,BRONX,10452,40.840225,-73.91769,"(40.840225, -73.91769)",JEROME AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4497682,Sedan,,,, +02/21/2022,0:55,,,40.8399,-73.87562,"(40.8399, -73.87562)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Passing Too Closely,,,,4504741,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,4:50,,,40.68747,-73.794785,"(40.68747, -73.794785)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4504385,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/12/2022,4:00,QUEENS,11370,40.756416,-73.88649,"(40.756416, -73.88649)",,,32-56 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505076,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,11:15,BRONX,10468,40.867,-73.89776,"(40.867, -73.89776)",,,2630 JEROME AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4505006,Sedan,,,, +02/21/2022,14:20,,,,,,PECK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504536,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,3:35,,,40.7087741,-73.9981114,"(40.7087741, -73.9981114)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4470252,Sedan,,,, +02/15/2022,17:25,STATEN ISLAND,10309,40.545456,-74.23052,"(40.545456, -74.23052)",ARTHUR KILL ROAD,JOHNSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504961,Taxi,Sedan,,, +02/21/2022,3:20,,,40.672176,-73.89397,"(40.672176, -73.89397)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504570,Sedan,Sedan,,, +02/09/2022,23:58,,,,,,VERRAZANO BRIDGE UPPER,,,15,0,0,0,0,0,15,0,Obstruction/Debris,Unspecified,,,,4504992,Bus,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,15:05,,,40.62332,-73.99713,"(40.62332, -73.99713)",65 STREET,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4504610,Station Wagon/Sport Utility Vehicle,Taxi,,, +02/21/2022,4:30,BROOKLYN,11209,40.626328,-74.03284,"(40.626328, -74.03284)",83 STREET,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/10/2022,20:33,,,40.748356,-74.00369,"(40.748356, -74.00369)",WEST 24 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504968,Taxi,Bike,,, +02/20/2022,0:18,MANHATTAN,10016,40.74577,-73.97043,"(40.74577, -73.97043)",EAST 38 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4505020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,10:43,,,40.671787,-73.95311,"(40.671787, -73.95311)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505045,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,5:55,BROOKLYN,11226,40.649044,-73.95232,"(40.649044, -73.95232)",,,880 ROGERS AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4504521,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/08/2022,8:00,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,10:50,MANHATTAN,10023,40.778477,-73.98546,"(40.778477, -73.98546)",WEST END AVENUE,WEST 70 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545187,Sedan,Bike,,, +07/06/2022,11:12,MANHATTAN,10022,40.756477,-73.9613,"(40.756477, -73.9613)",,,25 SUTTON PLACE SOUTH,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544263,E-Bike,Sedan,,, +07/08/2022,10:41,MANHATTAN,10035,40.802338,-73.93389,"(40.802338, -73.93389)",,,2425 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544607,Taxi,Sedan,,, +07/02/2022,15:01,BRONX,10473,40.818874,-73.86524,"(40.818874, -73.86524)",SEWARD AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4544999,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2022,15:18,MANHATTAN,10026,40.80366,-73.95357,"(40.80366, -73.95357)",,,221 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544490,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,8:30,BRONX,10467,40.87,-73.87888,"(40.87, -73.87888)",,,3050 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544048,Bus,,,, +07/08/2022,19:00,BROOKLYN,11215,40.669186,-73.981094,"(40.669186, -73.981094)",,,456 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544929,Sedan,,,, +07/07/2022,17:13,MANHATTAN,10022,40.763588,-73.97142,"(40.763588, -73.97142)",EAST 59 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545020,Sedan,Taxi,Sedan,, +06/20/2022,6:30,,,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545109,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,17:51,,,40.831944,-73.91987,"(40.831944, -73.91987)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544426,Taxi,Sedan,,, +07/07/2022,12:25,,,40.846565,-73.92589,"(40.846565, -73.92589)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544503,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2022,19:55,BROOKLYN,11215,40.673035,-73.99075,"(40.673035, -73.99075)",,,191 7 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544663,Sedan,Sedan,,, +07/06/2022,21:00,MANHATTAN,10002,40.710815,-73.98326,"(40.710815, -73.98326)",FDR DRIVE,GOUVERNEUR SLIP EAST,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544224,Sedan,,,, +07/07/2022,17:45,,,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4545199,Sedan,Sedan,,, +07/01/2022,8:20,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4544606,Sedan,,,, +07/06/2022,8:50,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unsafe Speed,Unspecified,,,4544107,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/06/2022,16:20,BRONX,10467,40.87525,-73.8756,"(40.87525, -73.8756)",HULL AVENUE,EAST 207 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544226,,,,, +07/08/2022,20:40,QUEENS,11106,40.76156,-73.93518,"(40.76156, -73.93518)",,,34-41 21 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing Too Closely,,,,4544957,Taxi,Bike,,, +07/06/2022,18:53,BRONX,10474,40.81693,-73.88617,"(40.81693, -73.88617)",BRYANT AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544621,Sedan,,,, +07/07/2022,5:50,MANHATTAN,10037,40.814774,-73.94038,"(40.814774, -73.94038)",WEST 136 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544182,PK,Bike,,, +07/07/2022,9:45,,,40.83959,-73.88268,"(40.83959, -73.88268)",BOSTON ROAD,BRYANT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Following Too Closely,,,,4544453,Bus,Taxi,,, +07/07/2022,9:09,BROOKLYN,11210,40.62997,-73.936775,"(40.62997, -73.936775)",ALBANY AVENUE,AVENUE I,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544638,Sedan,,,, +07/06/2022,0:10,MANHATTAN,10003,40.73329,-73.98719,"(40.73329, -73.98719)",EAST 14 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4543692,Sedan,Sedan,,, +07/03/2022,0:30,QUEENS,11369,40.764484,-73.88399,"(40.764484, -73.88399)",,,85-05 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544475,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,19:53,BROOKLYN,11226,40.651546,-73.95257,"(40.651546, -73.95257)",MARTENSE STREET,ROGERS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544741,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2022,19:00,BROOKLYN,11208,40.675766,-73.87279,"(40.675766, -73.87279)",,,67 DOSCHER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,17:16,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519266,Sedan,Tractor Truck Diesel,,, +07/08/2022,9:25,,,40.850845,-73.87146,"(40.850845, -73.87146)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544522,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,0:30,QUEENS,11436,,,,INWOOD STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544069,Sedan,,,, +10/23/2021,18:34,,,40.6656858,-73.7482957,"(40.6656858, -73.7482957)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470299,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,0:00,,,40.7545613,-73.7431665,"(40.7545613, -73.7431665)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4470300,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,2:35,QUEENS,11420,40.6786,-73.82707,"(40.6786, -73.82707)",,,111-21 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544390,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,23:05,QUEENS,11354,40.759567,-73.83015,"(40.759567, -73.83015)",ROOSEVELT AVENUE,MAIN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544517,Sedan,Bike,,, +07/08/2022,3:50,QUEENS,11368,40.758305,-73.85561,"(40.758305, -73.85561)",114 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544502,Sedan,Sedan,,, +07/07/2022,22:00,QUEENS,11368,40.755337,-73.843254,"(40.755337, -73.843254)",ROOSEVELT AVENUE,126 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544443,Bike,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,16:22,BROOKLYN,11238,40.67686,-73.97222,"(40.67686, -73.97222)",,,357 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544662,Sedan,E-Bike,,, +07/06/2022,8:18,QUEENS,11377,40.748604,-73.89984,"(40.748604, -73.89984)",,,37-05 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543828,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,16:15,BRONX,10461,40.848602,-73.85123,"(40.848602, -73.85123)",VANNEST AVENUE,TOMLINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544458,Sedan,E-Scooter,,, +07/06/2022,9:25,QUEENS,11419,40.690662,-73.81033,"(40.690662, -73.81033)",VANWYCK EXPRESSWAY,105 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544035,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,9:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544590,Sedan,Sedan,,, +07/06/2022,15:40,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544187,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,16:35,BROOKLYN,11212,40.66283,-73.92615,"(40.66283, -73.92615)",EAST 94 STREET,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544747,Sedan,Sedan,,, +10/23/2021,1:09,,,40.7099055,-73.8394002,"(40.7099055, -73.8394002)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Illnes,,,,,4470314,Sedan,,,, +07/08/2022,18:00,,,40.748436,-73.984566,"(40.748436, -73.984566)",WEST 34 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544983,Sedan,Bike,,, +07/05/2022,4:15,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,6,0,0,0,0,0,6,0,Passing or Lane Usage Improper,Unspecified,,,,4544480,Station Wagon/Sport Utility Vehicle,TRUCK,,, +10/22/2021,23:30,,,40.697741,-73.8140842,"(40.697741, -73.8140842)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470317,Sedan,Sedan,,, +07/08/2022,17:45,BROOKLYN,11207,40.662502,-73.89855,"(40.662502, -73.89855)",,,475 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544773,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,15:21,BROOKLYN,11221,40.685764,-73.9415,"(40.685764, -73.9415)",MADISON STREET,THROOP AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4544963,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,7:05,QUEENS,11354,40.76213,-73.82494,"(40.76213, -73.82494)",BOWNE STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,4:53,,,40.8274644,-73.8366016,"(40.8274644, -73.8366016)",HUTCHINSON RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4470321,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +06/30/2022,8:17,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4542358,Sedan,UTILITY,,, +07/06/2022,22:40,,,40.665688,-73.939766,"(40.665688, -73.939766)",CROWN STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544098,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,11:30,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Unspecified,,,,,4544385,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,22:52,MANHATTAN,10128,40.782677,-73.95711,"(40.782677, -73.95711)",,,17 EAST 89 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4545172,Sedan,Sedan,,, +07/05/2022,7:50,QUEENS,11368,40.746075,-73.86408,"(40.746075, -73.86408)",44 AVENUE,NATIONAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544591,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,17:05,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544425,Sedan,Sedan,,, +07/07/2022,11:35,QUEENS,11426,40.72473,-73.72316,"(40.72473, -73.72316)",BRADDOCK AVENUE,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544576,Sedan,Sedan,,, +07/01/2022,7:55,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544783,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,10:15,QUEENS,11354,40.764084,-73.83336,"(40.764084, -73.83336)",35 AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544139,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/08/2022,16:50,STATEN ISLAND,10310,40.634697,-74.106544,"(40.634697, -74.106544)",BARD AVENUE,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545063,Sedan,,,, +07/07/2022,18:00,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544544,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,9:04,,,40.823145,-73.8822388,"(40.823145, -73.8822388)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470335,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/22/2022,20:55,BROOKLYN,11236,40.643204,-73.90929,"(40.643204, -73.90929)",REMSEN AVENUE,FARRAGUT ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545145,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,18:55,BRONX,10456,40.83305,-73.90592,"(40.83305, -73.90592)",EAST 169 STREET,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545204,Pick-up Truck,Bike,,, +07/07/2022,13:45,QUEENS,11358,40.758743,-73.797615,"(40.758743, -73.797615)",NORTHERN BOULEVARD,169 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4544512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,5:35,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4544470,Sedan,,,, +07/08/2022,9:00,BRONX,10461,40.839794,-73.84307,"(40.839794, -73.84307)",WESTCHESTER AVENUE,COMMERCE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544559,Tow Truck / Wrecker,Sedan,,, +07/06/2022,9:45,BRONX,10456,40.836998,-73.90691,"(40.836998, -73.90691)",,,1408 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4543942,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/06/2022,15:30,BROOKLYN,11212,40.664017,-73.90541,"(40.664017, -73.90541)",,,603 STONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543987,Sedan,Sedan,,, +07/05/2022,4:18,BROOKLYN,11233,40.67531,-73.906876,"(40.67531, -73.906876)",,,2360 PACIFIC STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4544881,Sedan,Van,,, +07/06/2022,8:05,QUEENS,11423,40.713707,-73.76959,"(40.713707, -73.76959)",90 AVENUE,191 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544292,Sedan,Bus,,, +06/26/2022,1:55,MANHATTAN,10168,40.751442,-73.97606,"(40.751442, -73.97606)",EAST 42 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544830,ambulance,Sedan,,, +06/30/2022,14:32,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544602,Sedan,,,, +07/02/2022,4:20,QUEENS,11105,40.773594,-73.91179,"(40.773594, -73.91179)",33 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544507,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,9:15,BRONX,10455,40.815697,-73.91678,"(40.815697, -73.91678)",EAST 149 STREET,BERGEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,8:20,BRONX,10467,40.880283,-73.88269,"(40.880283, -73.88269)",DEKALB AVENUE,EAST 210 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4544634,Sedan,Sedan,,, +07/07/2022,17:20,,,40.717194,-73.98411,"(40.717194, -73.98411)",RIDGE STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544374,Sedan,E-Bike,,, +07/07/2022,21:20,,,,,,VANDUZER STREET,SAINT JULIAN PLACE,,0,1,0,1,0,0,0,0,Unspecified,,,,,4544617,Pick-up Truck,,,, +07/07/2022,20:36,MANHATTAN,10019,40.763737,-73.97583,"(40.763737, -73.97583)",,,60 WEST 57 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,6:00,,,40.679184,-73.941284,"(40.679184, -73.941284)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544922,Sedan,Sedan,,, +07/07/2022,13:43,BROOKLYN,11234,40.61907,-73.910484,"(40.61907, -73.910484)",,,2042 EAST 68 STREET,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4544639,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/10/2021,9:25,BROOKLYN,11213,40.6742518,-73.9377652,"(40.6742518, -73.9377652)",,,1008 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,,,,,,4470358,,,,, +07/03/2022,11:28,QUEENS,11101,40.755493,-73.94534,"(40.755493, -73.94534)",,,10-07 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/16/2022,11:25,BROOKLYN,11208,,,,ELDERT ln,KARWEG PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4539165,Sedan,Sedan,Sedan,, +07/06/2022,11:28,,,,,,GRAND CONCOURSE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4543900,Sedan,Bike,,, +07/06/2022,22:45,BROOKLYN,11208,40.671352,-73.88182,"(40.671352, -73.88182)",,,1000 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544234,Taxi,Sedan,,, +07/07/2022,8:28,,,40.83569,-73.86857,"(40.83569, -73.86857)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544305,Station Wagon/Sport Utility Vehicle,Sedan,Van,, +07/08/2022,14:06,BROOKLYN,11234,40.635006,-73.93153,"(40.635006, -73.93153)",GLENWOOD ROAD,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,15:11,BROOKLYN,11204,40.614563,-73.994804,"(40.614563, -73.994804)",18 AVENUE,73 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4543959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,12:49,BROOKLYN,11230,40.613056,-73.95816,"(40.613056, -73.95816)",AVENUE O,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544113,Sedan,Sedan,Sedan,, +07/08/2022,22:17,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",225 STREET,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544684,Sedan,Sedan,,, +07/07/2022,12:53,BROOKLYN,11211,40.715427,-73.93876,"(40.715427, -73.93876)",,,81 OLIVE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544435,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,16:12,MANHATTAN,10003,40.732437,-73.98165,"(40.732437, -73.98165)",,,265 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544836,Ambulance,Sedan,,, +07/08/2022,16:55,MANHATTAN,10014,40.727947,-74.00315,"(40.727947, -74.00315)",,,227 AVENUE OF THE AMERICAS,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544705,Bus,Bike,,, +07/07/2022,12:00,BROOKLYN,11207,40.66879,-73.88839,"(40.66879, -73.88839)",BLAKE AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544380,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,10:00,QUEENS,11101,40.749733,-73.936104,"(40.749733, -73.936104)",NORTHERN BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4544571,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,18:13,BRONX,10451,40.81243,-73.92736,"(40.81243, -73.92736)",,,277 RIDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544053,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,9:00,BROOKLYN,11232,40.6556268,-74.0088078,"(40.6556268, -74.0088078)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470378,Sedan,,,, +07/08/2022,6:00,BROOKLYN,11218,40.63492,-73.97253,"(40.63492, -73.97253)",,,550 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4544917,Sedan,Garbage or Refuse,,, +07/08/2022,0:42,,,,,,FLATBUSH AVENUE,Belt parkway overpass,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,View Obstructed/Limited,,,,4544645,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,1:35,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4544120,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/06/2022,19:20,QUEENS,11432,40.717663,-73.77584,"(40.717663, -73.77584)",HENLEY ROAD,CHEVY CHASE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544539,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,17:05,,,40.800602,-73.97426,"(40.800602, -73.97426)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4544967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/07/2022,15:00,MANHATTAN,10016,40.747078,-73.981346,"(40.747078, -73.981346)",EAST 34 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,22:45,BRONX,10465,40.82359,-73.811104,"(40.82359, -73.811104)",,,99D EDGEWATER PARK,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544761,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,9:20,BROOKLYN,11201,40.689957,-73.98228,"(40.689957, -73.98228)",,,14 DE KALB AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544676,Sedan,Sedan,,, +07/01/2022,16:30,QUEENS,11385,40.70019,-73.90561,"(40.70019, -73.90561)",MYRTLE AVENUE,CORNELIA STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544717,Station Wagon/Sport Utility Vehicle,Bike,,, +10/16/2021,15:10,,,40.8940655,-73.8624729,"(40.8940655, -73.8624729)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4470391,Sedan,Sedan,,, +10/11/2021,8:40,BRONX,10475,40.8820861,-73.8335421,"(40.8820861, -73.8335421)",,,3475 BIVONA STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4470401,Pick-up Truck,,,, +10/23/2021,16:15,,,40.8952499,-73.8613962,"(40.8952499, -73.8613962)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470409,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,16:40,BRONX,10466,40.8843497,-73.851765,"(40.8843497, -73.851765)",,,1011 EAST 224 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4470414,Sedan,Sedan,,, +10/23/2021,23:07,,,40.7633517,-73.7579043,"(40.7633517, -73.7579043)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470420,Sedan,Sedan,,, +10/15/2021,21:08,BROOKLYN,11221,40.6944007,-73.9309847,"(40.6944007, -73.9309847)",,,1080 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470415,Taxi,,,, +12/06/2021,18:47,QUEENS,11378,40.72021,-73.89178,"(40.72021, -73.89178)",69 STREET,60 DRIVE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486478,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,17:06,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4485909,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,Sedan,, +12/12/2021,2:00,BRONX,10463,40.87655,-73.90948,"(40.87655, -73.90948)",WEST 227 STREET,MARBLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486446,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,16:25,QUEENS,11101,40.75781,-73.94584,"(40.75781, -73.94584)",VERNON BOULEVARD,40 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4485851,Station Wagon/Sport Utility Vehicle,Bike,,, +12/12/2021,12:07,MANHATTAN,10019,40.76359,-73.98144,"(40.76359, -73.98144)",7 AVENUE,WEST 54 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4486067,Sedan,Bike,,, +11/20/2021,7:50,MANHATTAN,10001,40.750473,-74.002144,"(40.750473, -74.002144)",,,288 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486558,Sedan,,,, +12/12/2021,7:52,BROOKLYN,11203,40.64615,-73.93242,"(40.64615, -73.93242)",,,4722 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,8:30,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,1:38,BROOKLYN,11207,40.676598,-73.903404,"(40.676598, -73.903404)",,,45 VAN SIDERIN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486010,Sedan,,,, +12/12/2021,13:55,QUEENS,11414,40.661312,-73.849106,"(40.661312, -73.849106)",84 STREET,157 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485865,Sedan,Bike,,, +12/12/2021,6:23,,,40.67628,-73.892166,"(40.67628, -73.892166)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486011,Taxi,Sedan,,, +12/12/2021,17:31,BRONX,10462,40.854504,-73.867714,"(40.854504, -73.867714)",LYDIG AVENUE,WHITE PLAINS ROAD,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485944,Sedan,,,, +12/09/2021,0:00,BROOKLYN,11226,40.652287,-73.95634,"(40.652287, -73.95634)",,,70 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486457,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,2:30,QUEENS,11419,40.69383,-73.82887,"(40.69383, -73.82887)",118 STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4485477,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,17:45,QUEENS,11368,40.750183,-73.86799,"(40.750183, -73.86799)",98 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,12:50,STATEN ISLAND,10306,40.56469,-74.13474,"(40.56469, -74.13474)",,,14 MONTREAL AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4485828,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/07/2021,19:39,,,,,,WEST 20 STREET,BAY 54 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4486375,Sedan,E-Scooter,,, +11/29/2021,12:10,,,40.68327,-73.95016,"(40.68327, -73.95016)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486433,Sedan,Sedan,,, +12/12/2021,1:00,,,40.582466,-74.15596,"(40.582466, -74.15596)",,,411 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/05/2021,0:00,QUEENS,11004,40.75166,-73.71894,"(40.75166, -73.71894)",,,71-53 260 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486469,Sedan,,,, +12/12/2021,18:00,BROOKLYN,11234,40.614433,-73.92725,"(40.614433, -73.92725)",,,4901 FILLMORE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4485796,Sedan,Sedan,Bus,, +12/12/2021,13:30,BRONX,10458,0,0,"(0.0, 0.0)",,,404 EAST FORDHAM ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4485946,Sedan,Sedan,,, +07/08/2022,13:50,,,40.79275,-73.97132,"(40.79275, -73.97132)",WEST 94 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545159,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,0:53,,,40.8363051,-73.8736832,"(40.8363051, -73.8736832)",CROSS BRONX EXPY,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4470422,Sedan,,,, +07/07/2022,13:32,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544988,Pick-up Truck,,,, +07/08/2022,8:04,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544813,Sedan,,,, +07/07/2022,15:54,STATEN ISLAND,10301,40.63962,-74.08808,"(40.63962, -74.08808)",,,231 YORK AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4545056,Sedan,,,, +07/05/2022,1:30,BROOKLYN,11225,40.660526,-73.94383,"(40.660526, -73.94383)",,,510 MIDWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544670,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,0:06,,,40.71658,-73.80124,"(40.71658, -73.80124)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544534,Sedan,,,, +07/07/2022,4:30,BRONX,10457,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544495,Sedan,Sedan,,, +07/06/2022,19:30,BROOKLYN,11206,40.70739,-73.95054,"(40.70739, -73.95054)",UNION AVENUE,MESEROLE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544430,Sedan,Bike,,, +07/07/2022,13:45,BROOKLYN,11215,40.66154,-73.98274,"(40.66154, -73.98274)",8 AVENUE,16 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544757,Sedan,,,, +10/22/2021,7:20,,,40.6871499,-73.8079983,"(40.6871499, -73.8079983)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2012,17:18,,,40.6666992,-73.8117267,"(40.6666992, -73.8117267)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4470433,Sedan,Sedan,Sedan,, +07/08/2022,15:06,QUEENS,11378,40.727608,-73.91211,"(40.727608, -73.91211)",55 AVENUE,58 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4545139,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,23:55,BROOKLYN,11223,40.59145,-73.97652,"(40.59145, -73.97652)",WEST 6 STREET,86 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544856,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,15:05,MANHATTAN,10019,40.764168,-73.98474,"(40.764168, -73.98474)",WEST 53 STREET,8 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4545025,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/06/2022,15:06,,,,,,89 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544527,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2022,13:10,QUEENS,11102,40.77085,-73.918396,"(40.77085, -73.918396)",,,29-10 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544946,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,23:00,QUEENS,11423,40.716873,-73.767105,"(40.716873, -73.767105)",,,88-06 195 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544277,Sedan,,,, +06/09/2022,0:07,MANHATTAN,10033,40.846138,-73.93424,"(40.846138, -73.93424)",WEST 177 STREET,AUDUBON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4544906,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,11:00,QUEENS,11378,,,,,,73-19 52 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,10:13,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544613,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,8:40,QUEENS,11101,40.73687,-73.928505,"(40.73687, -73.928505)",HUNTERS POINT AVENUE,38 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4543861,Sedan,Bike,,, +07/06/2022,15:34,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4544369,Carry All,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,14:37,BRONX,10460,40.836216,-73.88845,"(40.836216, -73.88845)",,,1700 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4544598,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,19:18,MANHATTAN,10033,40.846176,-73.93628,"(40.846176, -73.93628)",,,600 WEST 176 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544023,Station Wagon/Sport Utility Vehicle,Motorbike,,, +07/03/2022,15:55,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BAYCHESTER AVENUE,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,11:20,BROOKLYN,11203,40.659042,-73.92923,"(40.659042, -73.92923)",,,80 EAST 52 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4544319,Sedan,Box Truck,,, +07/05/2022,20:00,BROOKLYN,11233,40.68567,-73.9162,"(40.68567, -73.9162)",,,930 HALSEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544873,Sedan,,,, +08/04/2021,9:09,,,40.829136,-73.9114,"(40.829136, -73.9114)",EAST 166 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4445565,Sedan,,,, +07/06/2022,18:20,QUEENS,11354,40.76295,-73.83196,"(40.76295, -73.83196)",NORTHERN BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,9:33,BROOKLYN,11216,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,8:55,BROOKLYN,11237,40.7065,-73.91701,"(40.7065, -73.91701)",DE KALB AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545218,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,20:10,,,40.7641807,-73.8396628,"(40.7641807, -73.8396628)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470454,Sedan,,,, +07/07/2022,16:46,,,40.83489,-73.8663,"(40.83489, -73.8663)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544630,Sedan,Tractor Truck Diesel,,, +07/08/2022,12:35,QUEENS,11374,40.730625,-73.869705,"(40.730625, -73.869705)",,,87-06 ELIOT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4544727,Taxi,,,, +07/06/2022,11:05,MANHATTAN,10031,40.81898,-73.95451,"(40.81898, -73.95451)",,,515 WEST 134 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4544171,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,13:46,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4544538,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,15:48,MANHATTAN,10029,40.795437,-73.943954,"(40.795437, -73.943954)",EAST 111 STREET,LEXINGTON AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4544691,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,4:15,BRONX,10457,40.846657,-73.90081,"(40.846657, -73.90081)",,,416 EAST 176 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544466,Sedan,Sedan,,, +07/02/2022,19:10,BRONX,10452,40.840176,-73.92528,"(40.840176, -73.92528)",OGDEN AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544710,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,8:04,,,40.68804,-73.947754,"(40.68804, -73.947754)",LEXINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,20:00,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544431,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2022,5:30,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4544549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,16:56,MANHATTAN,10012,40.727047,-74.00014,"(40.727047, -74.00014)",,,92 WEST HOUSTON STREET,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4544072,Box Truck,,,, +07/04/2022,22:48,MANHATTAN,10016,40.747578,-73.98097,"(40.747578, -73.98097)",,,17 PARK AVENUE,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544817,Sedan,Bike,,, +07/03/2022,16:40,QUEENS,11103,40.760567,-73.9155,"(40.760567, -73.9155)",42 STREET,31 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545155,Sedan,Bike,,, +07/06/2022,13:00,MANHATTAN,10002,40.719337,-73.985916,"(40.719337, -73.985916)",RIVINGTON STREET,SUFFOLK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544375,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,15:30,BRONX,10469,40.878613,-73.849464,"(40.878613, -73.849464)",FENTON AVENUE,HICKS STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unsafe Speed,Unspecified,,,4544787,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2022,17:55,,,40.688995,-73.78581,"(40.688995, -73.78581)",LINDEN BOULEVARD,,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4544972,Sedan,Bike,,, +07/08/2022,18:00,,,40.669434,-73.9255,"(40.669434, -73.9255)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544993,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,14:38,MANHATTAN,10029,40.789074,-73.95448,"(40.789074, -73.95448)",,,5 EAST 98 STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4544697,,,,, +06/30/2022,18:30,QUEENS,11373,40.744373,-73.869804,"(40.744373, -73.869804)",,,94-61 44 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544938,Sedan,,,, +07/07/2022,18:00,BROOKLYN,11208,40.68403,-73.88183,"(40.68403, -73.88183)",,,57 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544766,Sedan,Box Truck,,, +07/07/2022,9:10,BROOKLYN,11215,40.675156,-73.99125,"(40.675156, -73.99125)",,,15 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544933,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,3:32,BRONX,10456,40.834515,-73.91771,"(40.834515, -73.91771)",EAST 167 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing or Lane Usage Improper,,,,4544711,Bus,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,15:30,BROOKLYN,11212,40.664097,-73.90932,"(40.664097, -73.90932)",ROCKAWAY AVENUE,DUMONT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4544869,,,,, +10/24/2021,10:30,,,40.7461426,-73.8360431,"(40.7461426, -73.8360431)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470481,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,11:45,,,40.74925,-73.739685,"(40.74925, -73.739685)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4544984,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,22:30,QUEENS,11355,40.76122,-73.81549,"(40.76122, -73.81549)",149 STREET,BARCLAY AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4544803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,10:50,QUEENS,11375,40.72688,-73.83907,"(40.72688, -73.83907)",GRAND CENTRAL PARKWAY,69 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544404,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,1:09,STATEN ISLAND,10310,40.62782,-74.12126,"(40.62782, -74.12126)",CLOVE ROAD,FOREST AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4545052,Sedan,Sedan,,, +07/06/2022,17:45,BROOKLYN,11226,40.643772,-73.958755,"(40.643772, -73.958755)",CORTELYOU ROAD,EAST 21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544119,Garbage or Refuse,Sedan,,, +07/07/2022,19:23,,,,,,L.I.E / G.C.P CDR,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,19:45,MANHATTAN,10035,40.80549,-73.937965,"(40.80549, -73.937965)",,,107 EAST 126 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4544603,Sedan,,,, +07/02/2022,9:30,,,40.755505,-73.92291,"(40.755505, -73.92291)",38 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544943,Sedan,Sedan,,, +07/01/2022,13:38,BROOKLYN,11226,40.639984,-73.94842,"(40.639984, -73.94842)",NOSTRAND AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4545036,Sedan,Bus,,, +07/05/2022,18:00,BROOKLYN,11203,40.646255,-73.93081,"(40.646255, -73.93081)",BEVERLEY ROAD,EAST 49 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544750,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2022,19:05,MANHATTAN,10019,40.766483,-73.98022,"(40.766483, -73.98022)",,,211 WEST 58 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4545126,Bike,Sedan,,, +07/07/2022,9:00,BROOKLYN,11215,40.67158,-73.97906,"(40.67158, -73.97906)",,,480 2 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544950,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2022,19:00,,,40.65525,-73.952965,"(40.65525, -73.952965)",CLARKSON AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4544671,Sedan,,,, +07/07/2022,15:40,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544331,Sedan,Sedan,,, +07/07/2022,19:40,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545083,Sedan,Sedan,,, +07/06/2022,9:45,BRONX,10457,40.840744,-73.89933,"(40.840744, -73.89933)",,,3970 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543886,Bus,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,11:00,BRONX,10456,40.826214,-73.90787,"(40.826214, -73.90787)",,,3321 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4544215,,,,, +06/26/2022,0:00,BROOKLYN,11233,40.670685,-73.917015,"(40.670685, -73.917015)",,,1540 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544842,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,23:45,,,40.7127369,-73.728982,"(40.7127369, -73.728982)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470503,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,12:44,,,40.670994,-73.95496,"(40.670994, -73.95496)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543995,Taxi,Taxi,,, +07/07/2022,13:19,,,40.579826,-73.97622,"(40.579826, -73.97622)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545206,Sedan,Sedan,,, +10/24/2021,21:00,,,40.6944629,-73.9988763,"(40.6944629, -73.9988763)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470506,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,15:00,,,40.6916907,-73.9993379,"(40.6916907, -73.9993379)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470507,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,12:45,QUEENS,11365,40.7492,-73.78962,"(40.7492, -73.78962)",48 AVENUE,189 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4544581,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,16:35,BROOKLYN,11207,40.662533,-73.8983,"(40.662533, -73.8983)",RIVERDALE AVENUE,HINSDALE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544736,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,11:44,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CONEY ISLAND AVENUE,CATON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4544892,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,20:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445690,Sedan,Sedan,,, +07/07/2022,5:47,BRONX,10456,40.834515,-73.897705,"(40.834515, -73.897705)",,,664 CROTONA PARK SOUTH,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4544227,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,12:33,BROOKLYN,11235,40.587616,-73.93656,"(40.587616, -73.93656)",VOORHIES AVENUE,BATCHELDER STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544065,Sedan,Sedan,,, +10/25/2021,0:07,,,40.7642747,-73.7229386,"(40.7642747, -73.7229386)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470516,Sedan,,,, +10/21/2021,20:47,,,40.8792716,-73.8696165,"(40.8792716, -73.8696165)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470517,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,9:40,,,40.86955,-73.88175,"(40.86955, -73.88175)",DECATUR AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544214,Bike,Sedan,,, +07/07/2022,17:30,,,40.717278,-73.99544,"(40.717278, -73.99544)",HESTER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544553,Sedan,,,, +07/07/2022,19:40,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544447,Bus,,,, +07/06/2022,7:05,QUEENS,11101,,,,50 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544158,Station Wagon/Sport Utility Vehicle,Bus,,, +06/24/2022,20:57,,,40.838757,-73.882904,"(40.838757, -73.882904)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544454,Box Truck,Sedan,,, +07/06/2022,1:35,,,40.81108,-73.9273,"(40.81108, -73.9273)",EAST 138 STREET,3 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4543727,Sedan,Sedan,,, +06/03/2022,7:50,,,40.76301,-73.87533,"(40.76301, -73.87533)",ASTORIA BOULEVARD,,,1,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4544476,Sedan,E-Scooter,,, +07/08/2022,16:00,STATEN ISLAND,10305,40.59034,-74.06663,"(40.59034, -74.06663)",SAND LANE,CAPODANNO BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4544927,Sedan,,,, +06/24/2022,4:10,BROOKLYN,11204,40.61652,-73.98586,"(40.61652, -73.98586)",65 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544570,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/08/2022,2:10,QUEENS,11420,40.67266,-73.81133,"(40.67266, -73.81133)",,,127-07 SUTTER AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4544389,Sedan,Sedan,,, +09/24/2021,21:25,,,40.6765561,-73.7780826,"(40.6765561, -73.7780826)",130 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470532,Sedan,Sedan,,, +07/08/2022,6:29,BROOKLYN,11203,40.642815,-73.94005,"(40.642815, -73.94005)",,,585 EAST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4544742,Convertible,Sedan,Sedan,Sedan, +07/02/2022,14:25,,,40.807545,-73.95681,"(40.807545, -73.95681)",WEST 119 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544521,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,19:44,,,40.75747,-73.81622,"(40.75747, -73.81622)",CHERRY AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,11:00,QUEENS,11101,40.751972,-73.93197,"(40.751972, -73.93197)",HONEYWELL STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4544953,Pick-up Truck,Motorcycle,,, +07/08/2022,6:14,BRONX,10460,40.83285,-73.886246,"(40.83285, -73.886246)",EAST 172 STREET,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545184,Sedan,,,, +07/07/2022,9:00,QUEENS,11354,40.760994,-73.82443,"(40.760994, -73.82443)",BOWNE STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544608,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,18:54,BROOKLYN,11203,40.658592,-73.9387,"(40.658592, -73.9387)",,,645 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4544821,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/08/2022,11:14,QUEENS,11375,40.729153,-73.84946,"(40.729153, -73.84946)",66 ROAD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544979,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,20:55,QUEENS,11364,40.73578,-73.746544,"(40.73578, -73.746544)",UNION TURNPIKE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544774,Sedan,,,, +06/24/2022,0:15,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4545196,Sedan,Sedan,,, +06/27/2022,16:29,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4544865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/10/2022,16:00,,,40.660072,-73.93974,"(40.660072, -73.93974)",ALBANY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4544964,Sedan,Sedan,,, +08/06/2021,18:47,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,7,0,0,0,0,0,7,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4445865,Sedan,Sedan,Sedan,Sedan,Bus +06/27/2022,0:00,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4545070,Station Wagon/Sport Utility Vehicle,Convertible,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/07/2022,14:35,,,40.740185,-73.986374,"(40.740185, -73.986374)",EAST 23 STREET,,,1,0,1,0,0,0,0,0,Oversized Vehicle,,,,,4544508,Bus,,,, +07/08/2022,14:30,QUEENS,11355,40.749825,-73.818275,"(40.749825, -73.818275)",KISSENA BOULEVARD,KALMIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544622,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,23:30,QUEENS,11414,40.660847,-73.8403,"(40.660847, -73.8403)",CROSS BAY BOULEVARD,158 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4545150,Sedan,Sedan,,, +07/08/2022,20:06,MANHATTAN,10032,40.844685,-73.9408,"(40.844685, -73.9408)",WEST 172 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4544909,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/08/2022,18:26,BROOKLYN,11212,40.665207,-73.91252,"(40.665207, -73.91252)",BOYLAND STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4544635,Sedan,,,, +07/07/2022,22:00,BROOKLYN,11203,40.643173,-73.92946,"(40.643173, -73.92946)",,,1209 UTICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4544748,Tractor Truck Diesel,,,, +07/29/2021,13:12,BROOKLYN,11221,40.68609,-73.93867,"(40.68609, -73.93867)",MARCUS GARVEY BOULEVARD,MADISON STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4441729,Sedan,,,, +07/31/2021,10:30,,,40.704746,-73.91404,"(40.704746, -73.91404)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4443249,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,3:38,QUEENS,11101,40.7563,-73.92007,"(40.7563, -73.92007)",41 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4445882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/14/2021,19:05,MANHATTAN,10029,40.786358,-73.940254,"(40.786358, -73.940254)",,,427 EAST 102 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4445844,Ambulance,Sedan,,, +08/04/2021,16:25,BRONX,10475,40.86945,-73.82409,"(40.86945, -73.82409)",,,2090 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445869,Sedan,,,, +08/02/2021,8:55,QUEENS,11370,40.769844,-73.89177,"(40.769844, -73.89177)",,,21-36 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445879,Sedan,,,, +08/08/2021,15:00,MANHATTAN,10013,40.721813,-73.998695,"(40.721813, -73.998695)",,,39 CROSBY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445884,Sedan,,,, +08/08/2021,20:40,,,40.738117,-73.7973,"(40.738117, -73.7973)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445849,Chassis Cab,Sedan,,, +07/26/2021,13:35,,,40.72545,-73.837776,"(40.72545, -73.837776)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4440811,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,11:45,,,40.6072565,-73.9672737,"(40.6072565, -73.9672737)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470558,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,20:19,MANHATTAN,10012,40.72382,-73.99372,"(40.72382, -73.99372)",,,265 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445878,Box Truck,,,, +08/08/2021,6:00,,,40.7044,-73.92384,"(40.7044, -73.92384)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445856,Sedan,,,, +07/07/2022,8:20,BROOKLYN,11234,40.61651,-73.93393,"(40.61651, -73.93393)",QUENTIN ROAD,KIMBALL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4544640,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2022,9:55,BRONX,10457,40.84248,-73.90064,"(40.84248, -73.90064)",,,1715 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544306,Road sweep,Sedan,,, +10/23/2021,22:35,,,40.5842876,-73.9252864,"(40.5842876, -73.9252864)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4470560,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/24/2021,3:50,,,40.5843766,-73.9270936,"(40.5843766, -73.9270936)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470561,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,13:37,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4543958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2022,13:30,BRONX,10459,40.823143,-73.89043,"(40.823143, -73.89043)",ALDUS STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4543970,Sedan,,,, +07/06/2022,11:10,MANHATTAN,10035,40.803387,-73.94024,"(40.803387, -73.94024)",,,1767 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544268,Sedan,Sedan,,, +08/08/2021,13:10,MANHATTAN,10032,40.84168,-73.93934,"(40.84168, -73.93934)",WEST 169 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444990,Station Wagon/Sport Utility Vehicle,Bike,,, +08/08/2021,15:55,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",HOWARD AVENUE,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445170,Sedan,,,, +08/08/2021,1:00,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445085,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/04/2021,17:52,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4445601,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,1:08,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",CROSS ISLAND PARKWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444638,Sedan,Sedan,,, +08/08/2021,17:20,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445043,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,21:00,BROOKLYN,11249,40.70656,-73.96386,"(40.70656, -73.96386)",,,500 BEDFORD AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445288,Sedan,Bike,,, +08/08/2021,18:55,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4445116,Sedan,Sedan,,, +08/05/2021,14:21,BRONX,10457,40.843643,-73.90676,"(40.843643, -73.90676)",MONROE AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445529,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,16:09,BROOKLYN,11216,40.687107,-73.95583,"(40.687107, -73.95583)",,,146 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445646,Sedan,Van,,, +08/06/2021,18:30,,,40.795403,-73.94188,"(40.795403, -73.94188)",EAST 112 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,,,,4445712,Sedan,Bus,,, +08/08/2021,6:15,,,40.60487,-74.02955,"(40.60487, -74.02955)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4444718,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,14:16,QUEENS,11419,40.68954,-73.82749,"(40.68954, -73.82749)",,,117-15 101 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4445140,Sedan,,,, +08/06/2021,8:43,MANHATTAN,10036,40.762184,-73.993614,"(40.762184, -73.993614)",10 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,19:30,BRONX,10459,40.82056,-73.899864,"(40.82056, -73.899864)",WESTCHESTER AVENUE,HEWITT PLACE,,1,0,0,0,1,0,0,0,Pavement Slippery,,,,,4445629,Bike,,,, +08/08/2021,16:30,BRONX,10455,40.816288,-73.918564,"(40.816288, -73.918564)",,,380 EAST 149 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445481,Sedan,Van,,, +08/08/2021,4:25,BROOKLYN,11221,40.69203,-73.94565,"(40.69203, -73.94565)",DE KALB AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4444746,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/08/2021,10:15,BROOKLYN,11236,40.643684,-73.909805,"(40.643684, -73.909805)",,,1029 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444957,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,19:40,QUEENS,11436,40.68409,-73.80169,"(40.68409, -73.80169)",LINDEN BOULEVARD,142 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4445177,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/08/2021,6:10,QUEENS,11435,40.704643,-73.81186,"(40.704643, -73.81186)",,,87-90 144 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4445222,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +08/08/2021,0:01,BROOKLYN,11224,40.575302,-73.9766,"(40.575302, -73.9766)",SURF AVENUE,WEST 8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445294,Sedan,Sedan,,, +08/08/2021,22:35,STATEN ISLAND,10304,40.59702,-74.09339,"(40.59702, -74.09339)",RICHMOND ROAD,DELLWOOD ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445337,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,17:00,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4444917,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/08/2021,11:00,QUEENS,11420,40.682285,-73.80805,"(40.682285, -73.80805)",134 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444794,Sedan,E-Bike,,, +08/07/2021,17:05,STATEN ISLAND,10309,,,,,,173 Sharrott ave,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4445679,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/06/2021,4:12,BROOKLYN,11233,40.678886,-73.921974,"(40.678886, -73.921974)",,,1865 FULTON STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445703,Sedan,Sedan,,, +08/07/2021,16:54,QUEENS,11435,40.69114,-73.80488,"(40.69114, -73.80488)",INWOOD STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4445754,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/08/2021,15:10,BRONX,10452,40.838333,-73.91692,"(40.838333, -73.91692)",WALTON AVENUE,MARCY PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444879,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,13:20,QUEENS,11411,40.695957,-73.742744,"(40.695957, -73.742744)",LINDEN BOULEVARD,217 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4444805,Station Wagon/Sport Utility Vehicle,Bike,,, +07/31/2021,18:00,,,40.64927,-74.009674,"(40.64927, -74.009674)",45 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445611,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +08/08/2021,14:30,MANHATTAN,10025,40.8007,-73.96427,"(40.8007, -73.96427)",,,172 WEST 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4444940,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,5:25,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Obstruction/Debris,,,,4444769,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,22:20,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445331,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,19:15,,,40.811592,-73.83534,"(40.811592, -73.83534)",,,492 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445103,Sedan,Sedan,,, +08/08/2021,12:00,BRONX,10466,40.896694,-73.853516,"(40.896694, -73.853516)",EAST 237 STREET,BYRON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4445149,Sedan,Sedan,,, +08/08/2021,21:05,BROOKLYN,11212,40.657856,-73.9165,"(40.657856, -73.9165)",WILLMOHR STREET,ROCKAWAY PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445417,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,17:25,BROOKLYN,11211,40.71543,-73.95387,"(40.71543, -73.95387)",HAVEMEYER STREET,NORTH 7 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4445238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,4:44,BROOKLYN,11210,40.632156,-73.93966,"(40.632156, -73.93966)",,,3811 AVENUE H,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4445398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,6:05,BRONX,10469,40.86779,-73.841125,"(40.86779, -73.841125)",,,1532 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Fell Asleep,Fell Asleep,Fell Asleep,Fell Asleep,,4444787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/08/2021,17:00,,,40.75228,-73.9897,"(40.75228, -73.9897)",7 AVENUE,,,1,0,0,0,1,0,0,0,Outside Car Distraction,Traffic Control Disregarded,,,,4444926,Sedan,Bike,,, +08/08/2021,18:34,BRONX,10458,40.85347,-73.88771,"(40.85347, -73.88771)",,,2310 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445065,Station Wagon/Sport Utility Vehicle,Ems truck,,, +08/06/2021,14:00,QUEENS,11432,40.71792,-73.80297,"(40.71792, -73.80297)",,,164-13 82 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,0:35,QUEENS,11413,40.666447,-73.757286,"(40.666447, -73.757286)",,,219-03 NORTH CONDUIT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445767,,,,, +08/08/2021,19:55,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4445219,Motorcycle,Sedan,,, +08/08/2021,5:43,BRONX,10472,40.834824,-73.867,"(40.834824, -73.867)",,,1802 EAST 174 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4445552,E-Bike,,,, +08/07/2021,14:30,,,40.704185,-73.781715,"(40.704185, -73.781715)",177 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4445680,4 dr sedan,Sedan,,, +08/08/2021,1:20,QUEENS,11004,40.752777,-73.70743,"(40.752777, -73.70743)",,,269-01 76 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4444959,Sedan,,,, +08/08/2021,11:23,BROOKLYN,11222,40.725887,-73.95199,"(40.725887, -73.95199)",,,712 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,6:05,BROOKLYN,11232,40.65476,-74.00724,"(40.65476, -74.00724)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4445010,Chassis Cab,,,, +07/29/2021,10:23,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445618,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,4:30,QUEENS,11372,40.755554,-73.885376,"(40.755554, -73.885376)",82 STREET,NORTHERN BOULEVARD,,2,0,2,0,0,0,0,0,Unspecified,,,,,4444851,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,15:59,,,40.71583,-73.81375,"(40.71583, -73.81375)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4445527,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/08/2021,23:00,BRONX,10472,40.836708,-73.87527,"(40.836708, -73.87527)",EAST 177 STREET,BRONX RIVER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445263,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,0:59,BROOKLYN,11220,40.649918,-74.01226,"(40.649918, -74.01226)",46 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445302,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,15:12,,,,,,7 AVENUE,67 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445755,Sedan,Tractor Truck Diesel,,, +08/06/2021,21:52,,,40.851696,-73.932,"(40.851696, -73.932)",WEST 185 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445519,Sedan,Convertible,Box Truck,, +08/04/2021,16:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445605,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,17:00,QUEENS,11105,40.777954,-73.9038,"(40.777954, -73.9038)",20 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445099,Sedan,Sedan,,, +08/06/2021,0:56,BROOKLYN,11216,40.679832,-73.95322,"(40.679832, -73.95322)",BEDFORD AVENUE,HERKIMER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4445576,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/08/2021,23:35,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445141,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,13:20,BROOKLYN,11217,40.680485,-73.9806,"(40.680485, -73.9806)",,,595 BALTIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445026,Sedan,,,, +08/08/2021,5:55,BRONX,10468,40.864452,-73.90894,"(40.864452, -73.90894)",,,2425 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445187,Sedan,Sedan,,, +08/07/2021,14:32,BROOKLYN,11225,40.659405,-73.9505,"(40.659405, -73.9505)",NOSTRAND AVENUE,RUTLAND ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4445651,Moped,Sedan,,, +08/08/2021,20:10,,,,,,EAST DRIVE,CENTRAL PARK NORTH,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4444969,Bike,,,, +05/14/2021,6:28,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4445539,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,12:15,,,40.59953,-73.97099,"(40.59953, -73.97099)",AVENUE T,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,4:25,BRONX,10456,40.82965,-73.90784,"(40.82965, -73.90784)",,,1155 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4445046,Pick-up Truck,Sedan,Sedan,, +08/08/2021,3:09,BRONX,10466,40.896496,-73.85905,"(40.896496, -73.85905)",CARPENTER AVENUE,EAST 236 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Brakes Defective,,,,4445160,Sedan,Bike,,, +08/08/2021,0:37,BRONX,10457,40.847366,-73.899506,"(40.847366, -73.899506)",EAST TREMONT AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445119,Sedan,,,, +08/08/2021,2:55,MANHATTAN,10007,40.712532,-74.007675,"(40.712532, -74.007675)",PARK PLACE,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4445584,Sedan,Sedan,,, +08/08/2021,3:54,,,40.81782,-73.89264,"(40.81782, -73.89264)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4444640,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,10:28,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445623,Sedan,Sedan,,, +08/08/2021,17:40,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445726,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,19:45,BROOKLYN,11203,40.66223,-73.93997,"(40.66223, -73.93997)",ALBANY AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445000,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,12:50,MANHATTAN,10026,40.80123,-73.9577,"(40.80123, -73.9577)",WEST 111 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445514,Convertible,,,, +08/02/2021,15:15,,,40.67942,-73.96823,"(40.67942, -73.96823)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445711,E-Scooter,Pick-up Truck,,, +08/07/2021,15:18,QUEENS,11433,40.705803,-73.78766,"(40.705803, -73.78766)",,,170-33 93 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445689,Station Wagon/Sport Utility Vehicle,Bulk Agriculture,,, +08/05/2021,7:44,,,40.82684,-73.916245,"(40.82684, -73.916245)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445564,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,7:00,BROOKLYN,11234,40.599163,-73.91084,"(40.599163, -73.91084)",,,2900 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4444728,Sedan,,,, +08/06/2021,18:32,MANHATTAN,10022,40.763588,-73.97142,"(40.763588, -73.97142)",MADISON AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445597,Taxi,Sedan,,, +08/08/2021,20:13,BROOKLYN,11228,40.617886,-74.01712,"(40.617886, -74.01712)",11 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444968,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,1:18,QUEENS,11419,40.692875,-73.83219,"(40.692875, -73.83219)",114 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445134,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,17:13,MANHATTAN,10016,40.741272,-73.97535,"(40.741272, -73.97535)",1 AVENUE,EAST 30 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445632,Sedan,,,, +08/08/2021,18:50,BROOKLYN,11217,40.681797,-73.97681,"(40.681797, -73.97681)",,,37 5 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4445029,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,13:50,,,40.744747,-73.86489,"(40.744747, -73.86489)",98 STREET,CORONA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445479,Taxi,,,, +06/23/2021,13:24,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,13:00,BRONX,10455,40.81467,-73.9142,"(40.81467, -73.9142)",,,520 EAST 149 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4445087,E-Bike,Sedan,,, +08/06/2021,0:00,BRONX,10472,40.8265,-73.88352,"(40.8265, -73.88352)",,,1140 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445705,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,14:43,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445617,Sedan,,,, +08/08/2021,12:20,MANHATTAN,10011,40.741386,-73.994995,"(40.741386, -73.994995)",,,121 WEST 20 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,15:43,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",JEROME AVENUE,EAST 167 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4444908,Station Wagon/Sport Utility Vehicle,Moped,,, +08/08/2021,11:50,MANHATTAN,10017,40.75791,-73.97766,"(40.75791, -73.97766)",5 AVENUE,WEST 49 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445251,Bus,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,17:00,,,,,,NEW ENGLAND THRUWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445698,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,15:38,BROOKLYN,11207,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444993,Sedan,Sedan,,, +08/08/2021,12:00,BROOKLYN,11226,40.648823,-73.951775,"(40.648823, -73.951775)",,,2711 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445411,Station Wagon/Sport Utility Vehicle,,,, +07/28/2021,15:27,,,40.704876,-73.81279,"(40.704876, -73.81279)",HILLSIDE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445645,Station Wagon/Sport Utility Vehicle,Bike,,, +08/08/2021,3:15,,,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS PLAZA SOUTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444788,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,7:30,,,40.7968,-73.929375,"(40.7968, -73.929375)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4445169,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/08/2021,15:40,BRONX,10468,40.86278,-73.90672,"(40.86278, -73.90672)",,,130 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445267,Sedan,,,, +08/08/2021,12:47,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Prescription Medication,,,,4444861,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,21:50,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4445063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,13:00,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445554,Sedan,Sedan,,, +08/01/2021,19:48,,,,,,TRIBOROUGH BRIDGE,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4445604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi, +08/08/2021,16:15,QUEENS,11377,40.74197,-73.90356,"(40.74197, -73.90356)",61 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445427,Sedan,,,, +08/08/2021,16:45,,,40.76349,-73.86079,"(40.76349, -73.86079)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444978,Sedan,Sedan,Sedan,, +08/08/2021,14:00,BROOKLYN,11218,40.63509,-73.97256,"(40.63509, -73.97256)",,,540 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445076,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,10:31,BROOKLYN,11206,40.70253,-73.94879,"(40.70253, -73.94879)",,,88 WALTON STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4445815,Sedan,,,, +07/12/2021,7:30,BROOKLYN,11226,40.656155,-73.95173,"(40.656155, -73.95173)",,,650 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4445760,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,13:00,MANHATTAN,10016,40.743263,-73.98202,"(40.743263, -73.98202)",LEXINGTON AVENUE,EAST 29 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4445660,Bike,,,, +07/11/2021,5:07,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",KINGS HIGHWAY,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445543,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,8:33,BRONX,10459,40.820988,-73.89491,"(40.820988, -73.89491)",TIFFANY STREET,EAST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445745,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,1:45,MANHATTAN,10036,40.76121,-73.991264,"(40.76121, -73.991264)",,,405 WEST 46 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4445225,Sedan,Sedan,Sedan,Sedan,Sedan +08/08/2021,5:00,,,40.695004,-73.9525,"(40.695004, -73.9525)",MYRTLE AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4444744,E-Bike,Sedan,,, +08/08/2021,3:00,BROOKLYN,11203,40.652504,-73.9244,"(40.652504, -73.9244)",,,5614 CHURCH AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4445397,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/08/2021,10:00,BRONX,10453,40.851044,-73.91488,"(40.851044, -73.91488)",MORTON PLACE,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Turning Improperly,,,,4444942,Sedan,,,, +08/08/2021,20:55,MANHATTAN,10065,40.768543,-73.9657,"(40.768543, -73.9657)",PARK AVENUE,EAST 68 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4445280,Sedan,Taxi,Sedan,, +08/08/2021,15:20,,,40.695156,-73.761765,"(40.695156, -73.761765)",FARMERS BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4445176,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/08/2021,22:55,,,,,,ASTORIA BOULEVARD,49 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4445102,Sedan,Sedan,,, +08/05/2021,23:40,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",MONTROSE AVENUE,LORIMER STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4445807,Sedan,Motorcycle,,, +08/03/2021,18:19,BROOKLYN,11218,40.642494,-73.98014,"(40.642494, -73.98014)",,,82 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445609,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/08/2021,21:40,QUEENS,11373,40.746414,-73.88341,"(40.746414, -73.88341)",BAXTER AVENUE,ITHACA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445147,Taxi,,,, +06/15/2021,11:50,BROOKLYN,11234,40.635006,-73.93153,"(40.635006, -73.93153)",GLENWOOD ROAD,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445548,Sedan,,,, +08/08/2021,4:34,BROOKLYN,11220,40.638153,-74.01397,"(40.638153, -74.01397)",6 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445009,Sedan,Sedan,,, +08/08/2021,11:27,,,40.64495,-73.9249,"(40.64495, -73.9249)",CLARENDON ROAD,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445412,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,4:20,BRONX,10460,40.841682,-73.88832,"(40.841682, -73.88832)",CROSS BRONX EXPRESSWAY,MARMION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445520,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,12:40,BROOKLYN,11230,40.615093,-73.96436,"(40.615093, -73.96436)",AVENUE N,EAST 10 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445075,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,15:33,BRONX,10461,40.83984,-73.828445,"(40.83984, -73.828445)",HOBART AVENUE,LASALLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,7:00,QUEENS,11356,40.79271,-73.84654,"(40.79271, -73.84654)",121 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4444766,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/08/2021,1:37,BRONX,10469,40.878777,-73.85294,"(40.878777, -73.85294)",EAST 217 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4445156,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,8:03,QUEENS,11375,40.71729,-73.83208,"(40.71729, -73.83208)",GRAND CENTRAL PARKWAY,77 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4444916,Sedan,,,, +08/08/2021,16:20,BRONX,10466,40.900208,-73.841705,"(40.900208, -73.841705)",NEREID AVENUE,MONTICELLO AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445164,Sedan,,,, +08/08/2021,0:42,BRONX,10453,40.855785,-73.90558,"(40.855785, -73.90558)",JEROME AVENUE,EAST 181 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444996,Sedan,Sedan,,, +08/08/2021,18:07,BROOKLYN,11223,40.593323,-73.964645,"(40.593323, -73.964645)",OCEAN PARKWAY,AVENUE W,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4445154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/28/2021,16:01,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,,,5,0,0,0,0,0,5,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4445575,Sedan,Sedan,Sedan,Sedan,Sedan +08/08/2021,15:00,QUEENS,11106,40.75694,-73.93464,"(40.75694, -73.93464)",CRESCENT STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445098,Sedan,E-Scooter,,, +08/07/2021,18:30,MANHATTAN,10280,40.70644,-74.01782,"(40.70644, -74.01782)",,,55 BATTERY PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4445585,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,0:00,,,40.747112,-73.96894,"(40.747112, -73.96894)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444642,Sedan,Sedan,Sedan,, +07/10/2021,22:00,BRONX,10455,40.817158,-73.90154,"(40.817158, -73.90154)",EAST 156 STREET,HEWITT PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445624,Taxi,,,, +07/31/2021,15:20,MANHATTAN,10027,40.80797,-73.94598,"(40.80797, -73.94598)",,,100 WEST 125 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445513,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/20/2021,12:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4445721,Sedan,Sedan,Sedan,, +08/05/2021,17:10,,,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445699,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,16:31,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",GRAND CONCOURSE,EAST FORDHAM ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4445273,Bike,,,, +08/08/2021,12:44,BROOKLYN,11205,40.689983,-73.971245,"(40.689983, -73.971245)",,,266 ADELPHI STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4444858,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,4:00,QUEENS,11368,40.74618,-73.86617,"(40.74618, -73.86617)",,,97-33 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444875,Pick-up Truck,Pick-up Truck,Sedan,, +06/02/2022,4:15,QUEENS,11368,40.75648,-73.872154,"(40.75648, -73.872154)",,,33-14 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544474,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,2:59,BRONX,10474,40.81358,-73.89385,"(40.81358, -73.89385)",,,770 BARRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445622,Sedan,Tractor Truck Gasoline,,, +08/08/2021,15:00,QUEENS,11372,40.754143,-73.87222,"(40.754143, -73.87222)",,,34-33 JUNCTION BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444925,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/08/2021,12:26,,,40.82722,-73.84965,"(40.82722, -73.84965)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445253,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,10:41,BROOKLYN,11203,40.6577,-73.94058,"(40.6577, -73.94058)",,,560 WINTHROP STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Keep Right,,,,4445650,Sedan,E-Bike,,, +08/08/2021,21:09,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444975,Sedan,Sedan,,, +08/08/2021,15:00,BROOKLYN,11215,40.65901,-73.98509,"(40.65901, -73.98509)",18 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4445309,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,6:39,BROOKLYN,11233,40.681213,-73.931725,"(40.681213, -73.931725)",,,392 STUYVESANT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4445694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/08/2021,11:55,BROOKLYN,11212,40.667095,-73.92276,"(40.667095, -73.92276)",RALPH AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4444779,Station Wagon/Sport Utility Vehicle,Bike,,, +08/08/2021,21:19,MANHATTAN,10003,40.730278,-73.98936,"(40.730278, -73.98936)",,,35 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445198,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,4:59,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",HENDRIX STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445297,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,22:45,QUEENS,11434,40.664017,-73.7686,"(40.664017, -73.7686)",FARMERS BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,2:40,QUEENS,11361,40.76652,-73.78339,"(40.76652, -73.78339)",,,204-17 35 AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Other Vehicular,Other Vehicular,Other Vehicular,,4444790,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/08/2021,17:50,,,40.599854,-73.98878,"(40.599854, -73.98878)",85 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4444919,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/24/2021,21:23,BRONX,10455,40.817673,-73.91704,"(40.817673, -73.91704)",,,616 MELROSE AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445665,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/07/2021,19:00,,,40.6953,-73.812096,"(40.6953, -73.812096)",VANWYCK EXPRESSWAY,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445687,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,19:19,,,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4444967,Sedan,,,, +08/08/2021,16:07,QUEENS,11373,40.744358,-73.88597,"(40.744358, -73.88597)",,,79-01 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445135,Ambulance,Ambulance,,, +08/06/2021,15:30,,,,,,MAIN STREET,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445652,Bus,,,, +07/28/2021,9:30,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445512,Sedan,PK,,, +07/16/2021,13:45,BRONX,10459,40.823143,-73.89043,"(40.823143, -73.89043)",HOE AVENUE,ALDUS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445616,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,12:30,MANHATTAN,10023,40.777905,-73.98209,"(40.777905, -73.98209)",WEST 71 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4444816,Sedan,,,, +08/08/2021,18:00,MANHATTAN,10033,40.848667,-73.939186,"(40.848667, -73.939186)",WEST 178 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444994,Sedan,Ambulance,,, +08/08/2021,7:00,,,40.765224,-73.9317,"(40.765224, -73.9317)",21 STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4444754,Sedan,Sedan,,, +08/08/2021,13:35,,,40.684734,-73.950455,"(40.684734, -73.950455)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4444946,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/06/2021,20:15,,,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4445728,Bus,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,0:00,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445179,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,2:07,BROOKLYN,11233,40.6771,-73.92479,"(40.6771, -73.92479)",BUFFALO AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444933,Sedan,Sedan,,, +07/31/2021,16:22,MANHATTAN,10036,40.761078,-73.9968,"(40.761078, -73.9968)",,,555 WEST 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445574,Sedan,Bike,,, +08/08/2021,16:34,BROOKLYN,11228,40.620533,-74.003624,"(40.620533, -74.003624)",,,7220 14 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445315,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,6:00,BRONX,10458,40.863228,-73.883026,"(40.863228, -73.883026)",,,2691 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445036,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,4:50,,,,,,ROSEDALE AVENUE,EAST 177 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445250,Sedan,,,, +08/08/2021,12:17,BROOKLYN,11203,40.64166,-73.93705,"(40.64166, -73.93705)",AVENUE D,EAST 42 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445389,,,,, +08/08/2021,19:00,MANHATTAN,10035,40.802998,-73.932106,"(40.802998, -73.932106)",,,336 EAST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445292,Sedan,,,, +08/08/2021,22:45,BRONX,10458,40.858303,-73.892784,"(40.858303, -73.892784)",EAST 187 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445112,Sedan,,,, +05/14/2021,6:28,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4445537,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/27/2021,6:00,,,40.740555,-73.78051,"(40.740555, -73.78051)",64 AVENUE,64 CIRCLE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445644,Sedan,,,, +08/08/2021,21:40,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445021,Sedan,Sedan,,, +08/07/2021,17:52,STATEN ISLAND,10312,40.541737,-74.183464,"(40.541737, -74.183464)",,,310 IONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445557,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,14:18,,,40.644405,-73.964096,"(40.644405, -73.964096)",EAST 16 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445006,Sedan,Ambulance,,, +08/08/2021,9:00,BROOKLYN,11228,40.620575,-74.00358,"(40.620575, -74.00358)",,,7210 14 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,17:32,,,40.695114,-73.911865,"(40.695114, -73.911865)",KNICKERBOCKER AVENUE,,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,,,,4445586,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,20:35,BROOKLYN,11233,40.679073,-73.92527,"(40.679073, -73.92527)",FULTON STREET,PATCHEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445746,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,13:00,,,40.74111,-73.89842,"(40.74111, -73.89842)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4444911,Sedan,Sedan,Sedan,, +08/08/2021,16:35,MANHATTAN,10012,40.72971,-73.99966,"(40.72971, -73.99966)",,,235 SULLIVAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445077,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,11:36,BRONX,10473,40.811413,-73.85614,"(40.811413, -73.85614)",SOUND VIEW AVENUE,OBRIEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445706,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,7:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445637,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,22:32,MANHATTAN,10033,40.850414,-73.93455,"(40.850414, -73.93455)",WADSWORTH AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445516,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,10:30,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445880,Sedan,Lunch Wagon,,, +08/08/2021,22:25,BRONX,10454,40.807552,-73.91922,"(40.807552, -73.91922)",EAST 138 STREET,BROOK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445088,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,3:40,BROOKLYN,11213,40.674885,-73.927765,"(40.674885, -73.927765)",BERGEN STREET,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445759,Sedan,,,, +08/08/2021,3:30,QUEENS,11434,40.68372,-73.78468,"(40.68372, -73.78468)",LONG STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4445173,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/06/2021,11:19,,,40.807095,-73.945984,"(40.807095, -73.945984)",WEST 124 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445521,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/08/2021,11:17,,,40.842945,-73.89061,"(40.842945, -73.89061)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445059,Pick-up Truck,Sedan,,, +08/08/2021,0:50,MANHATTAN,10033,40.84681,-73.93581,"(40.84681, -73.93581)",,,601 WEST 177 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4444986,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,14:30,MANHATTAN,10013,40.71832,-74.007034,"(40.71832, -74.007034)",,,180 WEST BROADWAY,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445581,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,17:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445603,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,0:30,BROOKLYN,11211,40.714268,-73.94723,"(40.714268, -73.94723)",,,649 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445224,Sedan,Sedan,,, +08/08/2021,2:09,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,1,0,0,0,0,0,1,Driver Inattention/Distraction,,,,,4445442,Motorcycle,,,, +08/08/2021,18:30,QUEENS,11103,40.754555,-73.91151,"(40.754555, -73.91151)",50 STREET,NEWTOWN ROAD,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4445101,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,1:08,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,STEWART AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445816,Sedan,,,, +08/08/2021,0:41,BROOKLYN,11235,40.584652,-73.95297,"(40.584652, -73.95297)",,,3324 SHORE PARKWAY,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4445157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,20:51,BROOKLYN,11235,0,0,"(0.0, 0.0)",,,3100 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445648,Sedan,Sedan,,, +08/05/2021,21:57,BROOKLYN,11234,40.605072,-73.92988,"(40.605072, -73.92988)",EAST 33 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445541,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/26/2021,17:30,,,40.671185,-73.94204,"(40.671185, -73.94204)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445710,Sedan,Bike,,, +08/08/2021,11:00,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445165,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/03/2021,17:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445700,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,6:30,,,40.786545,-73.95256,"(40.786545, -73.95256)",EAST 96 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4445549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,4:05,MANHATTAN,10009,40.72326,-73.988434,"(40.72326, -73.988434)",1 AVENUE,EAST 1 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444682,Sedan,Sedan,,, +08/07/2021,3:11,,,40.81328,-73.89749,"(40.81328, -73.89749)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445627,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,0:00,MANHATTAN,10013,40.71879,-74.00824,"(40.71879, -74.00824)",,,10 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445582,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,14:15,QUEENS,11429,40.709316,-73.73441,"(40.709316, -73.73441)",221 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445019,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,0:10,BROOKLYN,11231,40.675243,-74.012695,"(40.675243, -74.012695)",RICHARDS STREET,COFFEY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4445278,Station Wagon/Sport Utility Vehicle,Bike,,, +08/08/2021,3:30,QUEENS,11368,40.750565,-73.85868,"(40.750565, -73.85868)",,,40-11 108 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4444876,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,17:58,BRONX,10460,40.84059,-73.86637,"(40.84059, -73.86637)",EAST TREMONT AVENUE,THIERIOT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445254,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,18:58,BROOKLYN,11218,40.63586,-73.979935,"(40.63586, -73.979935)",,,1622 40 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445608,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/02/2021,11:13,MANHATTAN,10027,40.810764,-73.9526,"(40.810764, -73.9526)",WEST 125 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4445517,Sedan,E-Scooter,,, +07/06/2022,9:58,BROOKLYN,11201,,,,,,121 DE KALB AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544002,Ambulance,Ambulance,,, +08/08/2021,20:40,QUEENS,11377,40.76219,-73.90195,"(40.76219, -73.90195)",,,26-45 BROOKLYN QUEENS EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4445110,Sedan,Sedan,Sedan,, +07/27/2021,23:36,QUEENS,11101,40.756485,-73.94005,"(40.756485, -73.94005)",21 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4445876,Sedan,Station Wagon/Sport Utility Vehicle,MOPED,, +08/08/2021,23:43,QUEENS,11373,40.74264,-73.86987,"(40.74264, -73.86987)",,,94-36 ALSTYNE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445145,Sedan,,,, +08/08/2021,15:00,BROOKLYN,11203,40.653126,-73.92951,"(40.653126, -73.92951)",,,351 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445413,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,14:00,QUEENS,11420,40.679546,-73.82471,"(40.679546, -73.82471)",115 STREET,111 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4445181,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,7:25,BROOKLYN,11233,40.679073,-73.92527,"(40.679073, -73.92527)",FULTON STREET,PATCHEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444932,Sedan,,,, +08/08/2021,18:00,BROOKLYN,11201,,,,METROTECH ROADWAY,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444974,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,23:03,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4445692,Sedan,Sedan,,, +08/08/2021,10:35,,,40.658234,-73.9321,"(40.658234, -73.9321)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444785,Sedan,Sedan,,, +08/08/2021,23:00,,,40.709023,-73.798195,"(40.709023, -73.798195)",HILLSIDE AVENUE,164 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445653,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,8:20,QUEENS,11435,40.699516,-73.810936,"(40.699516, -73.810936)",,,139-09 ARCHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445202,Sedan,,,, +08/08/2021,11:00,BRONX,10469,40.87492,-73.83836,"(40.87492, -73.83836)",BURKE AVENUE,ELY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,0:05,BRONX,10456,40.83501,-73.90353,"(40.83501, -73.90353)",3 AVENUE,EAST 170 STREET,,3,0,0,0,1,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445803,Moped,E-Bike,,, +07/21/2021,8:30,BRONX,10474,40.820335,-73.88423,"(40.820335, -73.88423)",,,900 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445620,Van,Van,,, +06/27/2021,8:40,BROOKLYN,11213,40.675793,-73.94438,"(40.675793, -73.94438)",BROOKLYN AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445717,Sedan,,,, +08/08/2021,0:00,QUEENS,11355,40.758415,-73.80991,"(40.758415, -73.80991)",DELAWARE AVENUE,156 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4444934,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,1:00,,,40.843655,-73.93065,"(40.843655, -73.93065)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444987,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,8:30,QUEENS,11432,40.712452,-73.80845,"(40.712452, -73.80845)",,,151-11 84 DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445448,Sedan,Sedan,,, +08/08/2021,0:00,BRONX,10452,40.843365,-73.91545,"(40.843365, -73.91545)",GOBLE PLACE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4445299,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,15:25,BROOKLYN,11207,40.67959,-73.88928,"(40.67959, -73.88928)",,,142 BARBEY STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4445321,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,20:35,BROOKLYN,11214,40.60386,-74.00979,"(40.60386, -74.00979)",CROPSEY AVENUE,17 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445827,E-Bike,,,, +08/08/2021,12:00,,,40.765625,-73.7244,"(40.765625, -73.7244)",LITTLE NECK PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4444771,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/08/2021,11:58,BROOKLYN,11223,40.593742,-73.96085,"(40.593742, -73.96085)",CONEY ISLAND AVENUE,AVENUE W,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4445153,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,12:08,,,40.68836,-73.91615,"(40.68836, -73.91615)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4445860,PK,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,3:25,QUEENS,11369,40.765022,-73.876686,"(40.765022, -73.876686)",,,24-50 93 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4444854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/07/2021,21:45,BROOKLYN,11221,40.693863,-73.92971,"(40.693863, -73.92971)",DE KALB AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4445858,Sedan,Sedan,,, +08/08/2021,14:40,QUEENS,11435,40.694435,-73.80198,"(40.694435, -73.80198)",,,106-38 SUTPHIN BOULEVARD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4445223,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,1:55,QUEENS,11377,40.754158,-73.898636,"(40.754158, -73.898636)",NORTHERN BOULEVARD,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4444753,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,21:43,BROOKLYN,11237,40.694687,-73.91112,"(40.694687, -73.91112)",KNICKERBOCKER AVENUE,CORNELIA STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4444995,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/08/2021,14:25,BROOKLYN,11235,40.58667,-73.966156,"(40.58667, -73.966156)",AVENUE Z,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445296,Sedan,Sedan,,, +06/13/2021,8:00,BROOKLYN,11233,40.669273,-73.922554,"(40.669273, -73.922554)",RALPH AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445729,Sedan,,,, +08/08/2021,21:30,QUEENS,11434,40.676548,-73.76838,"(40.676548, -73.76838)",133 AVENUE,BEDELL STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4445178,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +08/08/2021,14:58,,,40.59124,-73.99402,"(40.59124, -73.99402)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4444918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/09/2021,10:50,,,40.803085,-73.91646,"(40.803085, -73.91646)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4445602,Sedan,,,, +08/03/2021,8:00,,,40.73661,-74.005325,"(40.73661, -74.005325)",BANK STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445562,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,21:45,,,40.72693,-73.996666,"(40.72693, -73.996666)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445078,Sedan,Sedan,,, +08/08/2021,11:31,BROOKLYN,11232,40.65463,-74.00042,"(40.65463, -74.00042)",5 AVENUE,33 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4445042,E-Scooter,,,, +08/08/2021,0:40,,,40.73949,-73.8369,"(40.73949, -73.8369)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4445488,Sedan,Sedan,,, +08/05/2021,17:00,BRONX,10452,40.841396,-73.92277,"(40.841396, -73.92277)",,,1375 NELSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445530,Sedan,Sedan,,, +08/08/2021,15:15,QUEENS,11102,40.776466,-73.92738,"(40.776466, -73.92738)",14 STREET,ASTORIA PARK SOUTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,15:30,,,,,,,,53-15 58 S58 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4445750,Flat Bed,Tow Truck / Wrecker,,, +08/08/2021,4:07,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4444915,Sedan,Taxi,,, +06/28/2021,17:30,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445708,Sedan,,,, +08/08/2021,13:40,QUEENS,11422,40.670223,-73.72855,"(40.670223, -73.72855)",135 AVENUE,HOOK CREEK BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4444806,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,18:45,MANHATTAN,10022,40.76067,-73.97259,"(40.76067, -73.97259)",,,60 EAST 55 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445612,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,2:57,,,40.832897,-73.862274,"(40.832897, -73.862274)",WESTCHESTER AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445246,Sedan,,,, +08/08/2021,18:05,,,40.719177,-73.79223,"(40.719177, -73.79223)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4445355,Sedan,Sedan,,, +08/08/2021,9:45,,,40.85223,-73.87141,"(40.85223, -73.87141)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,,,,4444948,Sedan,,,, +08/08/2021,4:39,,,40.821068,-73.934525,"(40.821068, -73.934525)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445114,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,23:45,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4445289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,12:35,,,,,,EAST 125 STREET,FDR DRIVE N/B,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445172,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,10:00,QUEENS,11420,40.68259,-73.80614,"(40.68259, -73.80614)",,,114-02 VANWYCK EXPRESSWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,7:10,,,40.584522,-73.949,"(40.584522, -73.949)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4444743,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,20:00,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445004,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,13:30,QUEENS,11412,40.70535,-73.773155,"(40.70535, -73.773155)",,,183-30 104 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445683,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,9:06,QUEENS,11419,40.68963,-73.82583,"(40.68963, -73.82583)",,,101-23 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445139,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,10:30,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444960,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/07/2021,0:56,QUEENS,11434,40.67986,-73.7883,"(40.67986, -73.7883)",154 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4445568,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/06/2021,15:52,MANHATTAN,10013,40.7247,-74.00932,"(40.7247, -74.00932)",CANAL STREET,GREENWICH STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445589,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,18:43,MANHATTAN,10009,40.726665,-73.98309,"(40.726665, -73.98309)",SAINT MARKS PLACE,AVENUE A,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445515,Motorcycle,Sedan,,, +08/08/2021,10:09,BRONX,10458,40.85858,-73.89349,"(40.85858, -73.89349)",,,412 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445638,Sedan,,,, +08/08/2021,20:12,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445881,Sedan,,,, +08/08/2021,21:24,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,PITT STREET,,0,0,0,0,0,0,0,0,,,,,,4445022,,,,, +08/03/2021,21:58,,,40.85372,-73.928696,"(40.85372, -73.928696)",WEST 189 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445523,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,12:30,,,40.748302,-73.97835,"(40.748302, -73.97835)",EAST 37 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445666,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,6:58,,,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445203,Sedan,Sedan,,, +08/08/2021,13:50,BROOKLYN,11212,40.67034,-73.90637,"(40.67034, -73.90637)",,,1805 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445702,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,12:07,BROOKLYN,11222,40.725292,-73.954666,"(40.725292, -73.954666)",,,100 DOBBIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445731,Sedan,,,, +08/08/2021,8:15,,,40.74738,-73.83509,"(40.74738, -73.83509)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,4:20,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445279,Sedan,Sedan,,, +08/01/2021,20:13,BRONX,10474,40.81843,-73.887535,"(40.81843, -73.887535)",,,861 FAILE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445619,Sedan,,,, +08/08/2021,21:00,,,40.665268,-73.827705,"(40.665268, -73.827705)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4445182,Sedan,Sedan,Sedan,, +08/08/2021,5:50,QUEENS,11369,40.759624,-73.85817,"(40.759624, -73.85817)",ASTORIA BOULEVARD,112 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444852,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,14:13,,,40.81796,-73.960365,"(40.81796, -73.960365)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4444936,Sedan,,,, +08/08/2021,13:32,BROOKLYN,11212,40.658394,-73.91557,"(40.658394, -73.91557)",EAST 98 STREET,WILLMOHR STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445399,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,13:50,STATEN ISLAND,10306,40.58042,-74.09865,"(40.58042, -74.09865)",,,268 HULL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445329,Sedan,,,, +08/08/2021,0:00,BRONX,10467,40.870823,-73.86708,"(40.870823, -73.86708)",,,2975 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4444786,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,4:15,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445640,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,1:57,BROOKLYN,11238,40.678516,-73.963905,"(40.678516, -73.963905)",WASHINGTON AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4445709,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +08/07/2021,0:23,MANHATTAN,10040,40.8531,-73.92915,"(40.8531, -73.92915)",AUDUBON AVENUE,WEST 188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445518,Sedan,Pick-up Truck,,, +07/06/2022,9:30,QUEENS,11432,40.704594,-73.80211,"(40.704594, -73.80211)",,,155-01 90 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544293,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,18:30,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,3:01,MANHATTAN,10013,40.72584,-74.00757,"(40.72584, -74.00757)",SPRING STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445579,Taxi,Taxi,,, +08/08/2021,13:00,MANHATTAN,10019,40.762188,-73.976135,"(40.762188, -73.976135)",,,33 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445583,Trailer,Taxi,,, +08/08/2021,4:05,,,40.743504,-73.83567,"(40.743504, -73.83567)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4444688,Sedan,Sedan,,, +08/01/2021,7:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445691,Sedan,,,, +08/08/2021,3:50,BRONX,10469,40.873497,-73.85429,"(40.873497, -73.85429)",,,1128 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4445151,Sedan,,,, +08/08/2021,21:40,MANHATTAN,10013,40.71697,-73.998245,"(40.71697, -73.998245)",,,196 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,9:20,QUEENS,11691,40.6028,-73.74879,"(40.6028, -73.74879)",NAMEOKE STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445870,Sedan,,,, +08/07/2021,0:00,BRONX,10455,40.8154,-73.902245,"(40.8154, -73.902245)",,,671 KELLY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445628,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,8:30,,,40.744038,-73.81804,"(40.744038, -73.81804)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4445018,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/08/2021,21:27,BROOKLYN,11226,40.648865,-73.95048,"(40.648865, -73.95048)",,,2900 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445414,Sedan,FIRE TRUCK,,, +08/08/2021,0:33,,,40.742374,-74.0088,"(40.742374, -74.0088)",WEST STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445072,Sedan,Sedan,,, +08/06/2021,20:15,QUEENS,11432,40.718662,-73.80748,"(40.718662, -73.80748)",,,159-10 GOETHALS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445654,Ambulance,Ambulance,,, +08/06/2021,17:21,,,40.6715,-73.91505,"(40.6715, -73.91505)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445842,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/08/2021,3:25,BROOKLYN,11229,40.598534,-73.95901,"(40.598534, -73.95901)",,,1234 AVENUE U,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4445158,Sedan,Sedan,,, +08/08/2021,17:15,BROOKLYN,11201,40.692123,-73.98904,"(40.692123, -73.98904)",BOERUM PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4444928,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/08/2021,2:50,MANHATTAN,10010,40.741623,-73.993744,"(40.741623, -73.993744)",AVENUE OF THE AMERICAS,WEST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4444770,Box Truck,Sedan,,, +08/08/2021,16:10,STATEN ISLAND,10306,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,MIDLAND AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4445258,Sedan,Sedan,,, +08/08/2021,12:00,QUEENS,11366,40.728127,-73.8022,"(40.728127, -73.8022)",167 STREET,73 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445449,Sedan,Sedan,,, +08/08/2021,6:09,,,40.843246,-73.94505,"(40.843246, -73.94505)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4444989,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,10:15,,,40.82653,-73.94667,"(40.82653, -73.94667)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4444971,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/08/2021,0:35,BROOKLYN,11207,40.654793,-73.88999,"(40.654793, -73.88999)",WORTMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445301,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/30/2021,12:30,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4445647,Motorcycle,,,, +08/08/2021,3:20,BROOKLYN,11220,40.649822,-74.009094,"(40.649822, -74.009094)",4 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4445052,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/08/2021,16:39,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445104,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,19:00,BRONX,10463,40.86805,-73.90805,"(40.86805, -73.90805)",,,2554 BAILEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445606,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,22:00,,,40.72963,-73.85558,"(40.72963, -73.85558)",,,99 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445551,Sedan,,,, +08/06/2021,11:15,,,40.663906,-73.95098,"(40.663906, -73.95098)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4445758,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,14:00,BROOKLYN,11237,40.699936,-73.91181,"(40.699936, -73.91181)",GATES AVENUE,WYCKOFF AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4445859,Moped,,,, +08/08/2021,21:40,QUEENS,11368,40.738846,-73.86376,"(40.738846, -73.86376)",55 AVENUE,97 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445144,Sedan,Sedan,,, +08/08/2021,21:47,,,40.717392,-73.97515,"(40.717392, -73.97515)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,4445023,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/06/2021,19:12,,,40.67357,-73.95294,"(40.67357, -73.95294)",PARK PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445716,Sedan,moped,,, +08/06/2021,6:20,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445525,Sedan,Van,,, +03/12/2021,16:20,BROOKLYN,11210,40.625774,-73.936325,"(40.625774, -73.936325)",AVENUE K,ALBANY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445540,Sedan,,,, +08/08/2021,12:00,,,40.738132,-74.00418,"(40.738132, -74.00418)",JANE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445563,Sedan,,,, +08/08/2021,20:20,BROOKLYN,11218,40.638897,-73.96982,"(40.638897, -73.96982)",EAST 9 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445079,Sedan,Sedan,,, +07/04/2022,18:02,BROOKLYN,11236,40.637962,-73.91347,"(40.637962, -73.91347)",GLENWOOD ROAD,EAST 82 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4545144,Sedan,Sedan,,, +05/27/2022,21:00,STATEN ISLAND,10310,40.6354,-74.106674,"(40.6354, -74.106674)",,,355 BARD AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4544489,Sedan,,,, +07/06/2022,15:10,,,40.678436,-73.80057,"(40.678436, -73.80057)",FOCH BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544052,Sedan,Open Body,,, +07/07/2022,12:42,BROOKLYN,11223,40.597168,-73.97149,"(40.597168, -73.97149)",WEST STREET,AVENUE U,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544850,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,16:13,QUEENS,11364,40.73578,-73.746544,"(40.73578, -73.746544)",UNION TURNPIKE,SPRINGFIELD BOULEVARD,,4,0,0,0,0,0,4,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4544342,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +07/07/2022,16:23,,,40.856403,-73.9073,"(40.856403, -73.9073)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544506,Sedan,Box Truck,,, +07/06/2022,9:57,,,40.69363,-73.91332,"(40.69363, -73.91332)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4543894,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,9:50,MANHATTAN,10027,40.810814,-73.95875,"(40.810814, -73.95875)",,,502 WEST 122 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544654,Sedan,,,, +07/06/2022,12:35,,,40.60855,-74.14289,"(40.60855, -74.14289)",,,112 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544269,Sedan,Box Truck,,, +07/05/2022,14:00,MANHATTAN,10031,40.82664,-73.94306,"(40.82664, -73.94306)",WEST 149 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544585,Bike,,,, +06/21/2022,15:00,BROOKLYN,11234,40.62673,-73.91155,"(40.62673, -73.91155)",,,1278 BERGEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545104,Sedan,,,, +07/08/2022,8:17,BROOKLYN,11237,40.70324,-73.91439,"(40.70324, -73.91439)",SAINT NICHOLAS AVENUE,GREENE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544887,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/05/2022,14:53,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",PITT STREET,EAST HOUSTON STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4544863,Sedan,Bike,,, +07/08/2022,11:30,MANHATTAN,10009,40.73007,-73.974625,"(40.73007, -73.974625)",,,271 AVENUE C,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544831,Sedan,,,, +07/07/2022,10:33,,,,,,LONG ISLAND EXPRESSWAY (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4544338,Sedan,,,, +07/07/2022,14:30,,,40.8681,-73.90836,"(40.8681, -73.90836)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4544633,Sedan,,,, +07/08/2022,16:00,MANHATTAN,10022,40.76338,-73.97156,"(40.76338, -73.97156)",,,625 MADISON AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4545022,Taxi,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,9:20,MANHATTAN,10027,40.81308,-73.95213,"(40.81308, -73.95213)",,,408 WEST 128 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544373,Sedan,,,, +07/07/2022,11:10,BRONX,10451,40.827244,-73.92406,"(40.827244, -73.92406)",EAST 161 STREET,WALTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544612,E-Bike,Box Truck,,, +07/05/2022,19:00,BROOKLYN,11234,40.60529,-73.91436,"(40.60529, -73.91436)",,,2286 NATIONAL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545103,Sedan,,,, +07/06/2022,12:00,,,40.880688,-73.885704,"(40.880688, -73.885704)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4543901,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,3:47,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Obstruction/Debris,Obstruction/Debris,Unspecified,,4544001,Carry All,Sedan,Sedan,Sedan, +06/30/2022,6:58,MANHATTAN,10039,40.82119,-73.938,"(40.82119, -73.938)",,,167 WEST 145 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Passing Too Closely,,,,4545195,Sedan,Bike,,, +07/03/2022,2:15,STATEN ISLAND,10304,40.62047,-74.08441,"(40.62047, -74.08441)",,,269 TARGEE STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4544496,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +07/08/2022,14:35,,,40.750965,-73.94027,"(40.750965, -73.94027)",QUEENS PLAZA NORTH,,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545141,Bike,Bike,,, +07/08/2022,6:44,BROOKLYN,11229,40.60175,-73.950806,"(40.60175, -73.950806)",AVENUE T,EAST 21 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544855,Station Wagon/Sport Utility Vehicle,Bike,,, +07/08/2022,8:50,STATEN ISLAND,10304,40.629734,-74.08457,"(40.629734, -74.08457)",OCCIDENT AVENUE,SUNRISE TERRACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545057,Sedan,,,, +07/07/2022,3:29,BROOKLYN,11212,40.657738,-73.90917,"(40.657738, -73.90917)",,,123 LOTT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4544857,Sedan,,,, +07/08/2022,0:05,,,,,,30 AVE,68 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544501,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/06/2022,17:10,QUEENS,11417,40.680164,-73.84095,"(40.680164, -73.84095)",ROCKAWAY BOULEVARD,98 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544034,Sedan,Sedan,,, +07/06/2022,8:00,BRONX,10457,40.85407,-73.89932,"(40.85407, -73.89932)",EAST 181 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544188,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,9:07,BROOKLYN,11204,40.6306728,-73.9818892,"(40.6306728, -73.9818892)",46 STREET,17 AVENUE,,1,0,1,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4470606,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/05/2022,13:42,QUEENS,11106,40.762653,-73.922646,"(40.762653, -73.922646)",,,31-34 33 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544491,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,14:30,BROOKLYN,11211,40.710587,-73.95511,"(40.710587, -73.95511)",BORINQUEN PLACE,RODNEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4544388,Sedan,Motorcycle,,, +06/24/2022,7:10,QUEENS,11369,40.759,-73.8705,"(40.759, -73.8705)",,,98-18 32 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544799,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,0:00,MANHATTAN,10039,40.823822,-73.9443,"(40.823822, -73.9443)",,,356 WEST 145 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544469,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,1:45,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4543936,Chassis Cab,Sedan,,, +07/08/2022,17:16,QUEENS,11357,40.790657,-73.80467,"(40.790657, -73.80467)",157 STREET,12 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544623,Sedan,Sedan,,, +07/06/2022,18:40,MANHATTAN,10019,40.765457,-73.981995,"(40.765457, -73.981995)",WEST 56 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544061,Sedan,Concrete Mixer,,, +07/07/2022,18:12,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,0:40,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543882,Sedan,Sedan,,, +07/08/2022,18:05,BRONX,10472,40.83076,-73.86421,"(40.83076, -73.86421)",,,1217 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544655,Sedan,Sedan,,, +07/04/2022,15:15,BRONX,10474,40.818604,-73.88917,"(40.818604, -73.88917)",HUNTS POINT AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544592,Station Wagon/Sport Utility Vehicle,Van,,, +07/06/2022,22:21,,,40.759644,-73.734505,"(40.759644, -73.734505)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544028,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,14:44,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544848,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,17:30,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",EAST 168 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544523,,,,, +10/24/2021,12:26,,,40.6089348,-73.9719152,"(40.6089348, -73.9719152)",EAST 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4470605,Sedan,Taxi,Sedan,, +08/09/2021,2:03,,,,,,THROGS NECK EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445105,Sedan,Tractor Truck Diesel,,, +10/23/2021,11:35,,,40.8053511,-73.9209457,"(40.8053511, -73.9209457)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470628,Tractor Truck Diesel,,,, +10/24/2021,11:26,,,40.8404706,-73.8859559,"(40.8404706, -73.8859559)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4470632,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,18:15,,,40.856634,-73.8318955,"(40.856634, -73.8318955)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470638,Sedan,Sedan,,, +10/23/2021,20:00,,,40.8266254,-73.9391482,"(40.8266254, -73.9391482)",WEST 151 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470648,Station Wagon/Sport Utility Vehicle,,,, +12/05/2021,7:00,,,40.669403,-73.94221,"(40.669403, -73.94221)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4486504,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,0:01,,,40.776546,-73.92377,"(40.776546, -73.92377)",HOYT AVENUE NORTH,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4485852,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,13:38,BRONX,10458,,,,BEDFORD PARK BOULEVARD,Webster Avenue,,1,0,0,0,0,0,1,0,Illnes,,,,,4486362,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,0:00,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486399,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,19:15,BRONX,10455,,,,THIRD AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485898,Sedan,,,, +12/09/2021,14:14,,,40.84784,-73.93953,"(40.84784, -73.93953)",WEST 177 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486488,Sedan,Bike,,, +12/12/2021,8:18,QUEENS,11385,40.702854,-73.86973,"(40.702854, -73.86973)",,,79-27 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485721,Sedan,,,, +12/12/2021,0:00,QUEENS,11355,40.742973,-73.814316,"(40.742973, -73.814316)",BOOTH MEMORIAL AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4485739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,20:28,BROOKLYN,11204,40.627132,-73.983604,"(40.627132, -73.983604)",,,1760 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486111,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,17:30,MANHATTAN,10016,40.748436,-73.984566,"(40.748436, -73.984566)",WEST 34 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485823,Sedan,Bike,,, +12/10/2021,5:20,,,40.75228,-73.9897,"(40.75228, -73.9897)",WEST 36 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486342,Sedan,Sedan,,, +12/12/2021,17:24,,,40.72692,-73.86177,"(40.72692, -73.86177)",AUSTIN STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486524,Sedan,,,, +12/12/2021,6:10,BROOKLYN,11212,40.663315,-73.923935,"(40.663315, -73.923935)",,,109 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485682,Sedan,Sedan,,, +12/12/2021,21:37,BROOKLYN,11207,40.66649,-73.89645,"(40.66649, -73.89645)",,,390 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4486026,FDNY AMBUL,Sedan,,, +12/12/2021,14:30,QUEENS,11373,40.738598,-73.87744,"(40.738598, -73.87744)",BROADWAY,51 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485728,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/12/2021,0:02,QUEENS,11417,40.677357,-73.843925,"(40.677357, -73.843925)",CROSS BAY BOULEVARD,109 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4485872,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,19:42,BROOKLYN,11213,40.679035,-73.938515,"(40.679035, -73.938515)",ALBANY AVENUE,HERKIMER STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4486424,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/28/2021,22:31,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",COOPER AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486477,Sedan,,,, +12/09/2021,13:00,STATEN ISLAND,10312,40.546955,-74.18129,"(40.546955, -74.18129)",DRUMGOOLE ROAD WEST,ARDEN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486353,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,16:00,BROOKLYN,11232,40.65476,-74.00724,"(40.65476, -74.00724)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4485811,Sedan,,,, +12/12/2021,4:04,,,40.80891,-73.93021,"(40.80891, -73.93021)",3 AVENUE BRIDGE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4485885,Sedan,,,, +12/12/2021,23:00,,,,,,,,40 DONGAN HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486405,Sedan,,,, +12/12/2021,6:00,,,40.66322,-73.893654,"(40.66322, -73.893654)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486097,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,4:30,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",BOYLAND STREET,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,,,,,,4485580,Sedan,,,, +12/12/2021,12:23,BROOKLYN,11215,40.673275,-73.98429,"(40.673275, -73.98429)",,,338 3 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486296,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,22:00,MANHATTAN,10029,40.78459,-73.94198,"(40.78459, -73.94198)",EAST 99 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544901,Ambulance,Sedan,,, +10/24/2021,20:19,,,40.8421726,-73.8890142,"(40.8421726, -73.8890142)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470653,Sedan,,,, +07/07/2022,12:38,,,40.781025,-73.981316,"(40.781025, -73.981316)",WEST 75 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544257,Sedan,Sedan,,, +07/08/2022,10:35,STATEN ISLAND,10314,40.620968,-74.12374,"(40.620968, -74.12374)",MARTLING AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4545059,Sedan,Bike,,, +07/07/2022,20:25,MANHATTAN,10278,40.715233,-74.005424,"(40.715233, -74.005424)",BROADWAY,DUANE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544724,Taxi,Sedan,,, +07/06/2022,20:10,,,40.701588,-73.98863,"(40.701588, -73.98863)",YORK STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544018,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,17:00,QUEENS,11413,40.68019,-73.74027,"(40.68019, -73.74027)",228 STREET,131 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544683,Sedan,Motorcycle,,, +07/06/2022,19:46,QUEENS,11365,40.73369,-73.788315,"(40.73369, -73.788315)",,,69-001 183 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4544545,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2022,14:30,QUEENS,11368,40.76093,-73.84064,"(40.76093, -73.84064)",,,127-76 WILLETS POINT BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,17:47,BROOKLYN,11203,40.641182,-73.944664,"(40.641182, -73.944664)",AVENUE D,EAST 34 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544343,Sedan,E-Bike,,, +07/08/2022,10:10,,,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4545041,Sedan,Bike,,, +10/25/2021,2:30,,,40.8929664,-73.8638207,"(40.8929664, -73.8638207)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470663,Sedan,,,, +07/08/2022,9:45,MANHATTAN,10002,40.711708,-73.9929,"(40.711708, -73.9929)",,,40 MONROE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544560,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,4:44,,,40.6731168,-73.9995833,"(40.6731168, -73.9995833)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4470666,Sedan,,,, +07/02/2022,20:04,,,40.89675,-73.85988,"(40.89675, -73.85988)",EAST 236 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544790,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/07/2022,0:55,BROOKLYN,11206,40.711216,-73.94043,"(40.711216, -73.94043)",BUSHWICK AVENUE,MAUJER STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544099,E-Scooter,,,, +07/07/2022,14:30,BROOKLYN,11222,40.727146,-73.93998,"(40.727146, -73.93998)",,,666 MORGAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544290,Sedan,,,, +07/05/2022,12:00,MANHATTAN,10018,40.750828,-73.98777,"(40.750828, -73.98777)",,,1333 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544976,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,11:15,,,40.6204463,-74.1671955,"(40.6204463, -74.1671955)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470671,4 dr sedan,Dump,,, +10/20/2021,15:35,,,40.5348208,-74.1941104,"(40.5348208, -74.1941104)",KOREAN WAR VETS PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4470672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,8:48,BRONX,10456,40.834133,-73.91665,"(40.834133, -73.91665)",EAST 167 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4545177,Taxi,Sedan,,, +06/13/2022,9:16,BROOKLYN,11207,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,COOPER STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4544891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,16:42,,,,,,VETERANS ROAD WEST,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544367,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,7:05,BROOKLYN,11236,40.647324,-73.91158,"(40.647324, -73.91158)",,,9202 AVENUE D,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544616,Sedan,Box Truck,,, +07/07/2022,18:25,,,40.691895,-74.0002,"(40.691895, -74.0002)",ATLANTIC AVENUE,FURMAN STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4544330,Station Wagon/Sport Utility Vehicle,Bus,,, +07/06/2022,15:17,MANHATTAN,10016,40.74197,-73.980865,"(40.74197, -73.980865)",3 AVENUE,EAST 28 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4544178,E-Scooter,,,, +10/22/2021,18:38,,,40.6285205,-74.1457551,"(40.6285205, -74.1457551)",MARTIN LUTHER KING JR,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4470680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +08/09/2021,11:00,QUEENS,11413,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4445406,Station Wagon/Sport Utility Vehicle,,,, +05/30/2022,8:05,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4544986,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/06/2022,19:33,,,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544424,Pick-up Truck,,,, +07/06/2022,12:00,,,40.75352,-73.93448,"(40.75352, -73.93448)",29 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544484,Sedan,,,, +07/08/2022,18:00,,,40.59355,-73.98465,"(40.59355, -73.98465)",AVENUE V,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545222,Sedan,Sedan,,, +07/08/2022,2:58,BRONX,10473,40.8211,-73.854225,"(40.8211, -73.854225)",,,2006 HOMER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544629,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,16:35,BROOKLYN,11219,40.636673,-73.99182,"(40.636673, -73.99182)",,,1265 47 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4544082,Sedan,,,, +10/21/2021,22:05,,,40.8011987,-73.9300274,"(40.8011987, -73.9300274)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4470687,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/06/2022,19:26,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",WESTCHESTER AVENUE,EAST 163 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545115,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/07/2022,15:50,QUEENS,11375,40.719643,-73.83507,"(40.719643, -73.83507)",GRAND CENTRAL PARKWAY,75 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,21:23,BROOKLYN,11206,40.700966,-73.94093,"(40.700966, -73.94093)",,,793 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544436,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2022,15:06,,,40.596745,-73.985275,"(40.596745, -73.985275)",STILLWELL AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544572,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2022,14:15,BROOKLYN,11215,40.66917,-73.98631,"(40.66917, -73.98631)",9 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544661,Bus,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,16:32,,,40.585228,-73.94155,"(40.585228, -73.94155)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4544071,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/20/2021,0:00,,,40.8451973,-73.9111939,"(40.8451973, -73.9111939)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4470696,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/06/2022,9:15,MANHATTAN,10003,40.732697,-73.98366,"(40.732697, -73.98366)",EAST 15 STREET,PERLMAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544839,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,4:57,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4543829,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,9:30,BRONX,10460,40.84006,-73.879005,"(40.84006, -73.879005)",,,1065 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544455,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2022,17:15,BRONX,10465,40.823658,-73.836426,"(40.823658, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545123,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,4:39,QUEENS,11102,40.77225,-73.92719,"(40.77225, -73.92719)",,,18-22 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4544528,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/05/2022,2:11,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544743,Sedan,,,, +07/06/2022,15:45,,,40.74504,-73.7345,"(40.74504, -73.7345)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543989,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,11:19,QUEENS,11105,40.773766,-73.894264,"(40.773766, -73.894264)",,,19-15 49 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544945,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,1:15,,,40.8265465,-73.8727008,"(40.8265465, -73.8727008)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Speed,,,,4470706,Sedan,,,, +07/07/2022,19:29,BROOKLYN,11210,40.629913,-73.937744,"(40.629913, -73.937744)",AVENUE I,EAST 40 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4544644,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,19:10,QUEENS,11691,40.60691,-73.759544,"(40.60691, -73.759544)",,,13-95 EGGERT PLACE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4544122,Sedan,,,, +10/23/2021,12:30,,,40.8183447,-73.9342581,"(40.8183447, -73.9342581)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470709,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,21:55,MANHATTAN,10032,,,,BROADWAY,WEST 157 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4544907,Sedan,,,, +07/07/2022,7:21,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544513,Sedan,Sedan,,, +07/07/2022,17:50,QUEENS,11370,40.757484,-73.88762,"(40.757484, -73.88762)",80 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4544481,Sedan,E-Bike,,, +07/07/2022,17:27,,,40.706512,-73.9309,"(40.706512, -73.9309)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4544393,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/07/2022,21:31,,,40.699818,-73.920135,"(40.699818, -73.920135)",HIMROD STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4544884,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,11:41,,,40.790314,-73.94769,"(40.790314, -73.94769)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4544698,Sedan,Tractor Truck Gasoline,,, +07/08/2022,5:53,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544597,Van,Box Truck,,, +07/08/2022,18:36,BRONX,10455,40.811775,-73.90961,"(40.811775, -73.90961)",JACKSON AVENUE,EAST 147 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544718,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,2:12,,,40.7982365,-73.9290951,"(40.7982365, -73.9290951)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Other Vehicular,Unsafe Speed,,4470721,Sedan,Sedan,Sedan,, +06/28/2022,14:00,,,,,,HUSSON STREET,DONGAN HILL AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4544924,Sedan,Pick-up Truck,,, +07/08/2022,20:49,QUEENS,11423,40.716415,-73.76039,"(40.716415, -73.76039)",,,90-02 201 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545164,Sedan,,,, +07/02/2022,17:43,,,40.62435,-74.13927,"(40.62435, -74.13927)",,,1520 FOREST AVENUE,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4544555,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,11:40,STATEN ISLAND,10305,40.603626,-74.06931,"(40.603626, -74.06931)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,5:00,BROOKLYN,11201,40.70143,-73.98442,"(40.70143, -73.98442)",,,157 YORK STREET,1,0,1,0,0,0,0,0,Physical Disability,,,,,4544814,Sedan,,,, +10/20/2021,23:20,,,40.738852,-73.814038,"(40.738852, -73.814038)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470727,Sedan,,,, +10/21/2021,4:50,,,40.738852,-73.814038,"(40.738852, -73.814038)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470728,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,21:00,,,0,0,"(0.0, 0.0)",NEREID AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4544784,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,10:10,STATEN ISLAND,10301,40.63732,-74.08056,"(40.63732, -74.08056)",VICTORY BOULEVARD,BROOK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544149,Sedan,Sedan,,, +07/02/2022,0:45,BROOKLYN,11237,40.69798,-73.91257,"(40.69798, -73.91257)",PALMETTO STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4544898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/06/2022,17:24,BROOKLYN,11233,40.680492,-73.915565,"(40.680492, -73.915565)",,,224 SUMPTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544876,Sedan,,,, +10/06/2021,22:00,QUEENS,11101,40.7564741,-73.9472651,"(40.7564741, -73.9472651)",VERNON BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4470733,Sedan,Taxi,Sedan,, +07/06/2022,17:30,,,40.69579,-73.967804,"(40.69579, -73.967804)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4544241,Station Wagon/Sport Utility Vehicle,Van,,, +07/07/2022,15:35,QUEENS,11434,0,0,"(0.0, 0.0)",118 ROAD,MARSDEN STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,20:20,QUEENS,11432,40.711193,-73.79172,"(40.711193, -73.79172)",,,170-25 HILLSIDE AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4545093,Sedan,Bike,,, +10/21/2021,10:00,,,40.7878221,-73.8234023,"(40.7878221, -73.8234023)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470737,Sedan,,,, +07/05/2022,0:12,QUEENS,11375,40.735664,-73.8457,"(40.735664, -73.8457)",GRAND CENTRAL PARKWAY,63 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544913,Sedan,,,, +07/06/2022,12:45,,,40.738735,-74.00961,"(40.738735, -74.00961)",WEST STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544111,Sedan,Box Truck,,, +10/09/2021,19:50,QUEENS,11106,40.7669107,-73.9383616,"(40.7669107, -73.9383616)",9 STREET,VERNON BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470740,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/10/2021,13:31,QUEENS,11102,40.7767731,-73.9345252,"(40.7767731, -73.9345252)",2 STREET,26 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470744,School Bus,,,, +10/09/2021,6:40,QUEENS,11355,40.7555143,-73.8202994,"(40.7555143, -73.8202994)",BOWNE STREET,CHERRY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470754,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,0:00,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498361,Sedan,,,, +02/21/2022,3:00,BROOKLYN,11207,40.656036,-73.89309,"(40.656036, -73.89309)",,,202 MALTA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504559,Sedan,,,, +02/21/2022,15:00,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504603,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,23:34,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4504785,Sedan,Sedan,,, +02/07/2022,16:00,QUEENS,11372,40.75004,-73.88152,"(40.75004, -73.88152)",85 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4505075,Sedan,,,, +02/21/2022,14:55,MANHATTAN,10075,40.772163,-73.95229,"(40.772163, -73.95229)",,,404 EAST 79 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4504530,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,23:54,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504622,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,3:40,QUEENS,11691,40.608143,-73.764,"(40.608143, -73.764)",MOTT AVENUE,SUNNYSIDE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504481,Sedan,,,, +02/21/2022,19:00,BROOKLYN,11207,40.668514,-73.89031,"(40.668514, -73.89031)",,,767 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4504592,Sedan,,,, +02/18/2022,20:35,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4504949,Sedan,Sedan,,, +02/21/2022,11:30,,,40.676003,-73.865395,"(40.676003, -73.865395)",CONDUIT BOULEVARD,GRANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504584,Station Wagon/Sport Utility Vehicle,,,, +02/14/2022,18:21,,,0,0,"(0.0, 0.0)",7 AVENUE,6 STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4505179,E-Bike,Sedan,,, +02/21/2022,20:25,BROOKLYN,11217,40.684437,-73.97773,"(40.684437, -73.97773)",,,139 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,,,,4504658,Sedan,Sedan,,, +02/05/2022,14:20,QUEENS,11694,40.57981,-73.837204,"(40.57981, -73.837204)",BEACH 116 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504986,Sedan,Sedan,,, +02/21/2022,9:50,,,40.6972,-73.952934,"(40.6972, -73.952934)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4505038,Taxi,Bus,,, +01/23/2022,20:20,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4505014,Sedan,,,, +02/18/2022,15:40,BRONX,10451,40.81488,-73.92886,"(40.81488, -73.92886)",GRAND CONCOURSE,EAST 140 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4505151,Sedan,Bus,,, +02/21/2022,12:35,QUEENS,11368,40.737335,-73.86345,"(40.737335, -73.86345)",,,97-20 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,14:25,BROOKLYN,11206,40.70335,-73.94755,"(40.70335, -73.94755)",THROOP AVENUE,WALTON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4505166,Sedan,Sedan,,, +02/21/2022,5:40,QUEENS,11368,40.762196,-73.842865,"(40.762196, -73.842865)",127 PLACE,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4504637,Sedan,,,, +02/21/2022,8:42,BROOKLYN,11249,40.698994,-73.96161,"(40.698994, -73.96161)",WALLABOUT STREET,CLASSON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4504470,Sedan,Pick-up Truck,,, +02/21/2022,23:24,MANHATTAN,10032,40.835308,-73.94398,"(40.835308, -73.94398)",FORT WASHINGTON AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4504690,Sedan,Sedan,Pick-up Truck,, +02/16/2022,8:08,BROOKLYN,11234,40.63742,-73.92401,"(40.63742, -73.92401)",FOSTER AVENUE,EAST 55 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4505083,Van,Sedan,,, +02/21/2022,19:15,,,40.86952,-73.84443,"(40.86952, -73.84443)",EAST GUN HILL ROAD,FENTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504709,,,,, +01/11/2022,14:00,,,,,,WEST 155 STREET,HARLEM RIVER DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504943,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,16:10,MANHATTAN,10027,40.811264,-73.95782,"(40.811264, -73.95782)",AMSTERDAM AVENUE,WEST 123 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,Unspecified,,,4505131,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/08/2021,15:20,,,40.7619707,-73.9253817,"(40.7619707, -73.9253817)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470774,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/08/2022,17:27,MANHATTAN,10013,40.722324,-74.01176,"(40.722324, -74.01176)",WEST STREET,LAIGHT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544704,Motorized,Bike,,, +07/08/2022,13:50,BROOKLYN,11210,40.633396,-73.94482,"(40.633396, -73.94482)",,,1606 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545034,Sedan,,,, +07/08/2022,19:49,BROOKLYN,11220,40.6488,-74.01343,"(40.6488, -74.01343)",3 AVENUE,48 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4544758,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,12:35,MANHATTAN,10179,40.756073,-73.97688,"(40.756073, -73.97688)",,,383 MADISON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4544056,MOPED,,,, +07/07/2022,0:00,,,40.786804,-73.98338,"(40.786804, -73.98338)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544450,Sedan,,,, +07/03/2022,22:30,QUEENS,11378,40.72137,-73.8895,"(40.72137, -73.8895)",,,60-61 69 LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2022,23:00,BROOKLYN,11218,40.64305,-73.9764,"(40.64305, -73.9764)",EAST 4 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544918,Sedan,E-Bike,,, +07/07/2022,12:30,QUEENS,11412,40.697052,-73.75734,"(40.697052, -73.75734)",115 AVENUE,196 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545191,Sedan,Sedan,,, +07/04/2022,4:30,QUEENS,11434,40.680218,-73.775505,"(40.680218, -73.775505)",168 STREET,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544971,Sedan,,,, +10/08/2021,11:45,MANHATTAN,10026,40.7999524,-73.9544023,"(40.7999524, -73.9544023)",,,157 WEST 111 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470784,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,15:43,QUEENS,11423,40.71328,-73.76606,"(40.71328, -73.76606)",JAMAICA AVENUE,195 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544276,Sedan,Bus,,, +07/07/2022,16:15,,,40.68536,-73.88221,"(40.68536, -73.88221)",HIGHLAND BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544382,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,9:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544169,Box Truck,Tractor Truck Diesel,,, +07/01/2022,17:55,QUEENS,11435,40.70647,-73.81681,"(40.70647, -73.81681)",,,138-98 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544540,Pick-up Truck,Sedan,,, +07/08/2022,17:55,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544677,Pick-up Truck,Sedan,,, +07/07/2022,14:47,,,40.676094,-73.94992,"(40.676094, -73.94992)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544992,Sedan,,,, +07/08/2022,22:33,BROOKLYN,11220,40.645348,-74.01375,"(40.645348, -74.01375)",4 AVENUE,52 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4544759,Station Wagon/Sport Utility Vehicle,Bike,,, +07/07/2022,9:40,BRONX,10466,40.88571,-73.8483,"(40.88571, -73.8483)",,,4020 LACONIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544216,Sedan,,,, +07/08/2022,12:30,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544609,Tow Truck / Wrecker,Dump,,, +10/24/2021,13:30,,,40.7914994,-73.9357653,"(40.7914994, -73.9357653)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470794,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/08/2022,18:00,,,40.66996,-73.78979,"(40.66996, -73.78979)",149 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545190,Sedan,,,, +07/07/2022,2:00,BROOKLYN,11215,40.669846,-73.98244,"(40.669846, -73.98244)",6 AVENUE,6 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544932,Sedan,Bike,,, +07/08/2022,17:00,MANHATTAN,10019,,,,W 49 street,7th avenue,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545023,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/23/2021,12:30,,,40.7282398,-73.8331214,"(40.7282398, -73.8331214)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470798,Pick-up Truck,Sedan,,, +07/06/2022,17:45,STATEN ISLAND,10310,40.64161,-74.110245,"(40.64161, -74.110245)",DAVIS AVENUE,DAVIS COURT,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4544488,Sedan,,,, +03/23/2022,17:37,QUEENS,11374,40.730118,-73.86232,"(40.730118, -73.86232)",QUEENS BOULEVARD,63 ROAD,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,,,,4513306,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,15:03,BROOKLYN,11233,40.671898,-73.92231,"(40.671898, -73.92231)",RALPH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519886,Sedan,,,, +10/25/2021,7:50,,,40.78421,-73.9422072,"(40.78421, -73.9422072)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470802,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,12:30,,,40.5843766,-73.9270936,"(40.5843766, -73.9270936)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,0:00,,,40.6617287,-74.0000988,"(40.6617287, -74.0000988)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4470806,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/22/2022,12:40,MANHATTAN,10038,40.710175,-74.001144,"(40.710175, -74.001144)",PEARL STREET,FINEST AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4514204,Sedan,Sedan,,, +10/08/2021,20:30,BROOKLYN,11222,40.72533,-73.9457591,"(40.72533, -73.9457591)",,,186 NASSAU AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4470808,Motorcycle,,,, +03/28/2022,16:30,,,40.59332,-73.77272,"(40.59332, -73.77272)",ROCKAWAY FREEWAY,,,7,0,0,0,0,0,7,0,Traffic Control Disregarded,Unspecified,,,,4515005,Sedan,Sedan,,, +04/01/2022,17:42,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4515377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,9:50,QUEENS,11103,40.769127,-73.91061,"(40.769127, -73.91061)",STEINWAY STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4517200,Sedan,Taxi,,, +04/09/2022,6:24,QUEENS,11419,40.686527,-73.83005,"(40.686527, -73.83005)",103 AVENUE,113 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4517443,Sedan,Sedan,Sedan,Sedan, +07/08/2022,1:13,BROOKLYN,11224,40.577003,-74.00217,"(40.577003, -74.00217)",NEPTUNE AVENUE,WEST 36 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545208,Sedan,,,, +07/08/2022,18:00,,,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4544667,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/06/2022,9:00,BROOKLYN,11206,40.703,-73.94425,"(40.703, -73.94425)",,,21 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544429,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,19:40,BROOKLYN,11237,40.69811,-73.91713,"(40.69811, -73.91713)",MENAHAN STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544897,Sedan,,,, +07/07/2022,16:13,,,,,,Fdr drive,East 115 street,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4544604,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/05/2022,6:30,QUEENS,11355,40.754658,-73.833115,"(40.754658, -73.833115)",COLLEGE POINT BOULEVARD,SANFORD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544516,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,14:29,BRONX,10468,40.87724,-73.88658,"(40.87724, -73.88658)",VILLA AVENUE,VANCORTLANDT AVENUE EAST,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544231,Sedan,,,, +07/07/2022,12:50,MANHATTAN,10009,40.729156,-73.97528,"(40.729156, -73.97528)",EAST 15 STREET,AVENUE C,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4544833,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,17:10,,,40.757523,-73.82914,"(40.757523, -73.82914)",41 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544509,Sedan,Motorcycle,,, +07/07/2022,10:00,BRONX,10463,40.87614,-73.902954,"(40.87614, -73.902954)",,,3011 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544432,Sedan,,,, +07/06/2022,0:05,BROOKLYN,11208,40.66933,-73.8738,"(40.66933, -73.8738)",FOUNTAIN AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4543786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +05/17/2022,10:35,BRONX,10457,40.854866,-73.893456,"(40.854866, -73.893456)",,,2260 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544477,Sedan,,,, +07/04/2022,21:50,BROOKLYN,11203,40.651604,-73.933304,"(40.651604, -73.933304)",SCHENECTADY AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544739,Sedan,,,, +07/07/2022,18:46,,,40.818012,-73.92519,"(40.818012, -73.92519)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Oversized Vehicle,,,,4544648,Sedan,Ambulance,,, +07/08/2022,6:18,BROOKLYN,11234,40.62023,-73.93982,"(40.62023, -73.93982)",EAST 36 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4544641,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/04/2022,18:00,BRONX,10458,40.858154,-73.89435,"(40.858154, -73.89435)",,,2380 WEBSTER AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544451,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2022,10:00,BROOKLYN,11204,40.616943,-73.97731,"(40.616943, -73.97731)",,,2214 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,10:00,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544949,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,17:28,BROOKLYN,11203,40.64644,-73.927864,"(40.64644, -73.927864)",BEVERLEY ROAD,EAST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,19:00,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519601,Sedan,,,, +04/13/2022,23:35,MANHATTAN,10002,40.715324,-73.99167,"(40.715324, -73.99167)",,,18 ORCHARD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4518794,Taxi,Sedan,,, +10/24/2021,14:56,,,40.7407,-73.8441724,"(40.7407, -73.8441724)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4470837,Sedan,Sedan,Sedan,, +10/24/2021,20:22,,,40.7428688,-73.8465275,"(40.7428688, -73.8465275)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4470838,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,23:50,,,40.755157,-73.93755,"(40.755157, -73.93755)",24 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519572,Sedan,Sedan,,, +10/25/2021,5:48,,,40.6916907,-73.9993379,"(40.6916907, -73.9993379)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4470840,Sedan,Sedan,,, +04/03/2022,12:00,QUEENS,11368,40.74628,-73.85984,"(40.74628, -73.85984)",,,46-03 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519210,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,13:00,,,40.6082313,-74.1293996,"(40.6082313, -74.1293996)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470843,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,8:00,QUEENS,11412,40.69714,-73.759895,"(40.69714, -73.759895)",194 STREET,114 DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518906,Sedan,,,, +04/06/2022,8:40,BRONX,10465,40.823658,-73.836426,"(40.823658, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4519843,Sedan,,,, +04/13/2022,16:55,BROOKLYN,11210,40.614063,-73.94909,"(40.614063, -73.94909)",,,2513 AVENUE O,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518842,Station Wagon/Sport Utility Vehicle,AMBU,,, +04/15/2022,23:30,,,40.68286,-73.78116,"(40.68286, -73.78116)",164 STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4519332,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,9:00,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519192,Sedan,E-Bike,,, +04/12/2022,20:10,BRONX,10454,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,BROWN PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519178,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,16:00,QUEENS,11101,40.757435,-73.94039,"(40.757435, -73.94039)",,,38-38 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519571,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,12:15,QUEENS,11415,40.708004,-73.82972,"(40.708004, -73.82972)",,,84-23 CUTHBERT ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4519085,Sedan,,,, +10/24/2021,15:32,,,40.8780099,-73.9040806,"(40.8780099, -73.9040806)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,9:00,,,40.671566,-73.79031,"(40.671566, -73.79031)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519374,Sedan,,,, +10/25/2021,6:23,,,40.8654845,-73.9332317,"(40.8654845, -73.9332317)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470854,Sedan,,,, +04/07/2022,14:00,BROOKLYN,11223,40.60233,-73.97251,"(40.60233, -73.97251)",,,2062 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519314,Carry All,,,, +04/14/2022,16:02,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4519066,Bike,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,1:30,,,,,,,,255-31 147 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4518485,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/06/2022,7:45,,,40.639694,-74.13891,"(40.639694, -74.13891)",,,2294 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519876,Station Wagon/Sport Utility Vehicle,Bus,,, +04/13/2022,10:00,QUEENS,11367,40.717457,-73.82338,"(40.717457, -73.82338)",,,138-37 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519435,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,2:55,,,40.788805,-73.9375447,"(40.788805, -73.9375447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unsafe Lane Changing,,,,4470860,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,15:19,BROOKLYN,11234,40.61448,-73.92641,"(40.61448, -73.92641)",UTICA AVENUE,FILLMORE AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4543984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/15/2022,23:00,MANHATTAN,10005,40.707638,-74.00816,"(40.707638, -74.00816)",,,10 LIBERTY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519335,Taxi,Pick-up Truck,,, +10/25/2021,0:39,,,40.7914994,-73.9357653,"(40.7914994, -73.9357653)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470864,Sedan,Sedan,,, +10/25/2021,12:46,BROOKLYN,11226,40.6522375,-73.9527953,"(40.6522375, -73.9527953)",,,764 ROGERS AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4470865,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2022,17:58,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519253,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,15:40,BRONX,10454,40.80684,-73.9175,"(40.80684, -73.9175)",,,217 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4518972,Sedan,Pick-up Truck,,, +04/14/2022,11:25,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519382,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:22,,,40.70778,-73.93854,"(40.70778, -73.93854)",MONTROSE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519488,Sedan,Pick-up Truck,,, +04/15/2022,0:30,QUEENS,11691,40.592857,-73.77531,"(40.592857, -73.77531)",EDGEMERE AVENUE,BEACH 44 STREET,,5,0,0,0,0,0,5,0,Unsafe Speed,,,,,4519845,Sedan,,,, +04/13/2022,18:40,,,40.680504,-73.90629,"(40.680504, -73.90629)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518869,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,0:20,QUEENS,11385,40.70584,-73.894104,"(40.70584, -73.894104)",,,64-11 68 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519676,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,22:40,,,40.68846,-73.80878,"(40.68846, -73.80878)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4519770,Sedan,Sedan,,, +07/08/2022,13:30,QUEENS,11102,40.772644,-73.9269,"(40.772644, -73.9269)",,,18-29 27 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544954,Bus,Motorcycle,,, +04/14/2022,16:40,,,40.72568,-73.89105,"(40.72568, -73.89105)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519115,Pick-up Truck,Sedan,,, +10/25/2021,15:55,,,40.7941774,-73.944866,"(40.7941774, -73.944866)",EAST 109 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470876,Sedan,Sedan,,, +10/25/2021,5:40,,,40.7901632,-73.9367489,"(40.7901632, -73.9367489)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4470877,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/14/2022,4:45,QUEENS,11385,40.70747,-73.91007,"(40.70747, -73.91007)",GREENE AVENUE,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519153,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,5:30,,,40.795536,-73.977234,"(40.795536, -73.977234)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4519806,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,1:30,BRONX,10452,40.836624,-73.92612,"(40.836624, -73.92612)",NELSON AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518559,Sedan,Taxi,,, +04/15/2022,18:18,QUEENS,11413,40.665485,-73.75137,"(40.665485, -73.75137)",226 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519294,Sedan,,,, +04/13/2022,23:00,STATEN ISLAND,10306,40.559486,-74.12246,"(40.559486, -74.12246)",BROOK AVENUE,HYLAN BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inexperience,,,,,4518879,Sedan,,,, +04/13/2022,15:30,BROOKLYN,11219,40.62577,-73.99957,"(40.62577, -73.99957)",,,1364 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519083,Sedan,,,, +10/25/2021,15:40,BROOKLYN,11209,40.6321706,-74.0230666,"(40.6321706, -74.0230666)",,,442 72 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470884,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/11/2022,12:27,BROOKLYN,11203,0,0,"(0.0, 0.0)",BEVERLEY ROAD,EAST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519224,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,16:14,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519285,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,12:45,MANHATTAN,10023,40.7748523,-73.9806585,"(40.7748523, -73.9806585)",WEST 68 STREET,COLUMBUS AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4470888,Bike,Box Truck,,, +04/14/2022,3:29,,,40.676632,-73.95944,"(40.676632, -73.95944)",,,SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4519617,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/25/2021,17:16,,,40.7544821,-73.7720985,"(40.7544821, -73.7720985)",48 AVENUE,OCEANIA STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4470890,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,23:15,QUEENS,11432,40.7089197,-73.8046855,"(40.7089197, -73.8046855)",,,150-75 87 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470893,Sedan,,,, +10/25/2021,20:28,,,40.7915585,-73.9386493,"(40.7915585, -73.9386493)",1 AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4470894,Sedan,Moped,,, +10/25/2021,13:10,BROOKLYN,11236,40.647602,-73.89456,"(40.647602, -73.89456)",,,10504 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,12:29,BROOKLYN,11208,40.66041,-73.87693,"(40.66041, -73.87693)",WORTMAN AVENUE,ELTON STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4472760,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,18:40,QUEENS,11429,40.710747,-73.75066,"(40.710747, -73.75066)",104 AVENUE,208 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473180,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,18:38,BROOKLYN,11207,40.652363,-73.89137,"(40.652363, -73.89137)",LOUISIANA AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4485785,Sedan,Sedan,,, +12/12/2021,14:58,BROOKLYN,11207,40.674534,-73.89656,"(40.674534, -73.89656)",,,138 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,20:20,MANHATTAN,10014,40.73359,-74.00735,"(40.73359, -74.00735)",GREENWICH STREET,WEST 10 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485916,Station Wagon/Sport Utility Vehicle,Bike,,, +12/07/2021,18:09,,,40.729305,-73.910385,"(40.729305, -73.910385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486484,Sedan,Bus,,, +12/12/2021,19:25,QUEENS,11368,40.750374,-73.85462,"(40.750374, -73.85462)",,,111-36 42 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4485976,Sedan,Sedan,Sedan,Taxi, +12/10/2021,16:00,QUEENS,11412,40.69612,-73.746185,"(40.69612, -73.746185)",FRANCIS LEWIS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486412,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,23:20,,,40.707436,-73.727554,"(40.707436, -73.727554)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485836,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,23:14,,,40.7528,-73.979294,"(40.7528, -73.979294)",EAST 42 STREET,,,3,1,0,0,3,1,0,0,Traffic Control Disregarded,Unspecified,,,,4442674,Pick-up Truck,Pedicab,,, +08/06/2021,14:00,,,40.67291,-73.94077,"(40.67291, -73.94077)",PARK PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4446085,Sedan,,,, +08/07/2021,18:04,,,40.815845,-73.95287,"(40.815845, -73.95287)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4446131,Sedan,,,, +08/09/2021,13:51,,,40.575714,-73.96301,"(40.575714, -73.96301)",BRIGHTON 4 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446158,Sedan,,,, +12/29/2020,12:10,BRONX,10459,40.826786,-73.892944,"(40.826786, -73.892944)",EAST 167 STREET,SIMPSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446116,Sedan,,,, +08/08/2021,19:00,MANHATTAN,10036,40.76334,-73.99446,"(40.76334, -73.99446)",,,534 WEST 47 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446151,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,0:45,,,40.58588,-73.912704,"(40.58588, -73.912704)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446097,Sedan,Sedan,,, +08/06/2021,16:11,BROOKLYN,11216,40.672527,-73.95026,"(40.672527, -73.95026)",NOSTRAND AVENUE,STERLING PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446084,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,15:30,BROOKLYN,11224,40.57223,-73.99697,"(40.57223, -73.99697)",,,2960 WEST 31 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446157,Sedan,,,, +08/09/2021,18:15,,,,,,,,373 Borinquen place,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446121,Sedan,Bike,,, +08/09/2021,22:12,BROOKLYN,11234,40.624,-73.93107,"(40.624, -73.93107)",,,4616 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446095,Sedan,,,, +07/07/2021,17:35,BROOKLYN,11203,40.641212,-73.9351,"(40.641212, -73.9351)",,,1274 TROY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4446104,Sedan,Sedan,,, +12/12/2021,14:15,QUEENS,11421,40.69283,-73.85468,"(40.69283, -73.85468)",JAMAICA AVENUE,90 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4486346,Station Wagon/Sport Utility Vehicle,,,, +12/09/2021,9:00,,,40.575375,-74.18999,"(40.575375, -74.18999)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4486387,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/12/2021,23:06,BRONX,10455,40.81231,-73.91648,"(40.81231, -73.91648)",EAST 145 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4485881,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,1:54,QUEENS,11432,40.711468,-73.80919,"(40.711468, -73.80919)",85 AVENUE,150 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4485612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,22:50,BRONX,10470,40.89976,-73.85681,"(40.89976, -73.85681)",,,4401 CARPENTER AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485993,Sedan,Sedan,,, +12/12/2021,7:00,,,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4485749,Sedan,Sedan,,, +12/12/2021,0:14,BROOKLYN,11207,40.6635,-73.895676,"(40.6635, -73.895676)",,,529 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4486022,Sedan,Sedan,,, +08/09/2021,17:32,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445416,Sedan,,,, +08/09/2021,16:57,BROOKLYN,11229,40.608063,-73.9383,"(40.608063, -73.9383)",FILLMORE AVENUE,MADISON PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445542,Sedan,Moped,,, +08/09/2021,12:10,QUEENS,11354,40.76242,-73.82752,"(40.76242, -73.82752)",37 AVENUE,UNION STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445460,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,23:15,QUEENS,11368,40.75654,-73.867294,"(40.75654, -73.867294)",,,33-49 101 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445945,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,19:30,BRONX,10452,40.845886,-73.915085,"(40.845886, -73.915085)",FEATHERBED LANE,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445909,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/09/2021,0:00,BROOKLYN,11230,40.626762,-73.95661,"(40.626762, -73.95661)",,,1454 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445007,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,17:35,QUEENS,11362,40.75851,-73.72247,"(40.75851, -73.72247)",LITTLE NECK PARKWAY,61 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,17:18,MANHATTAN,10027,40.80919,-73.94093,"(40.80919, -73.94093)",,,3 WEST 129 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445663,Taxi,,,, +08/09/2021,19:11,QUEENS,11419,40.69011,-73.81206,"(40.69011, -73.81206)",134 STREET,105 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4445476,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,11:48,BRONX,10453,40.850098,-73.9067,"(40.850098, -73.9067)",EAST TREMONT AVENUE,ECHO PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445864,Sedan,Sedan,,, +08/06/2021,14:00,,,40.83381,-73.918396,"(40.83381, -73.918396)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446009,Box Truck,E-Scooter,,, +08/09/2021,17:45,,,40.718647,-73.83771,"(40.718647, -73.83771)",QUEENS BOULEVARD,75 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445487,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,13:04,QUEENS,11372,40.754593,-73.887085,"(40.754593, -73.887085)",,,33-39 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445940,Sedan,,,, +08/08/2021,3:50,,,40.865795,-73.920006,"(40.865795, -73.920006)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,19:30,QUEENS,11694,40.575325,-73.84258,"(40.575325, -73.84258)",BEACH 124 STREET,OCEAN PROMENADE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445787,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,8:43,MANHATTAN,10009,40.723236,-73.98558,"(40.723236, -73.98558)",,,26 AVENUE A,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4445199,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,9:00,BROOKLYN,11237,40.706306,-73.919586,"(40.706306, -73.919586)",SAINT NICHOLAS AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445369,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,18:54,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",DAVIDSON AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445556,Sedan,,,, +08/09/2021,8:30,MANHATTAN,10021,40.77328,-73.961,"(40.77328, -73.961)",,,122 EAST 76 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445588,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,14:00,BRONX,10469,40.867977,-73.85001,"(40.867977, -73.85001)",,,2911 BOUCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445675,Sedan,Sedan,,, +08/09/2021,16:00,QUEENS,11416,40.68721,-73.85212,"(40.68721, -73.85212)",,,90-10 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445713,Sedan,,,, +08/09/2021,12:29,,,40.87091,-73.881,"(40.87091, -73.881)",MOSHOLU PARKWAY,MARION AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445341,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,9:30,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445305,Bus,Sedan,,, +08/06/2021,3:15,QUEENS,11385,40.702374,-73.87544,"(40.702374, -73.87544)",MYRTLE AVENUE,73 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,16:00,BROOKLYN,11222,40.727486,-73.94482,"(40.727486, -73.94482)",NORMAN AVENUE,RUSSELL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446065,Sedan,,,, +08/09/2021,12:38,STATEN ISLAND,10306,40.57592,-74.130035,"(40.57592, -74.130035)",MCCULLY AVENUE,SAINT ANDREWS ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445333,Sedan,Sedan,,, +08/09/2021,10:05,BRONX,10454,40.80487,-73.915,"(40.80487, -73.915)",CYPRESS AVENUE,EAST 137 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445308,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,6:40,BRONX,10459,40.825287,-73.88646,"(40.825287, -73.88646)",WHITLOCK AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445963,Sedan,,,, +08/09/2021,17:42,BRONX,10462,40.849884,-73.8629,"(40.849884, -73.8629)",,,1972 MATTHEWS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445364,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/09/2021,8:15,,,40.7118,-73.77135,"(40.7118, -73.77135)",188 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4445229,Sedan,Bus,,, +08/09/2021,20:56,,,40.679565,-73.93436,"(40.679565, -73.93436)",LEWIS AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4445704,Sedan,E-Bike,,, +08/09/2021,13:35,BRONX,10456,40.835724,-73.90579,"(40.835724, -73.90579)",EAST 170 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445470,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,17:26,,,40.58406,-73.96901,"(40.58406, -73.96901)",WEST STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4445502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,20:00,BROOKLYN,11226,40.653915,-73.95396,"(40.653915, -73.95396)",,,173 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445757,Sedan,,,, +08/09/2021,15:20,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4445598,Station Wagon/Sport Utility Vehicle,Bike,,, +08/09/2021,23:59,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4445727,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/09/2021,11:05,QUEENS,11412,40.701588,-73.7544,"(40.701588, -73.7544)",113 AVENUE,201 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4445282,Sedan,Sedan,Sedan,, +08/09/2021,16:10,,,40.713184,-73.82393,"(40.713184, -73.82393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445356,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/09/2021,18:09,MANHATTAN,10016,40.74036,-73.97318,"(40.74036, -73.97318)",FDR DRIVE,EAST 30 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,Unspecified,,,4445450,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +08/09/2021,17:29,QUEENS,11378,40.719856,-73.91049,"(40.719856, -73.91049)",GRAND AVENUE,58 PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,22:57,,,40.797867,-73.96759,"(40.797867, -73.96759)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4445587,Sedan,Sedan,Sedan,, +07/31/2021,2:00,MANHATTAN,10019,40.77122,-73.9915,"(40.77122, -73.9915)",,,606 WEST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/03/2021,15:53,QUEENS,11378,40.723755,-73.89945,"(40.723755, -73.89945)",,,65-40 GRAND AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446049,Moped,Sedan,,, +08/09/2021,16:35,BROOKLYN,11225,40.664265,-73.957375,"(40.664265, -73.957375)",,,1715 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445370,Taxi,Sedan,,, +08/09/2021,20:12,BROOKLYN,11220,40.636078,-74.019714,"(40.636078, -74.019714)",5 AVENUE,66 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445428,Sedan,,,, +07/30/2021,18:30,MANHATTAN,10013,40.720432,-73.99987,"(40.720432, -73.99987)",GRAND STREET,CROSBY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445967,Sedan,,,, +08/09/2021,1:50,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",EAST TREMONT AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4445313,Sedan,Sedan,Sedan,, +08/09/2021,19:44,BROOKLYN,11221,40.68907,-73.92131,"(40.68907, -73.92131)",BROADWAY,PALMETTO STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445862,Station Wagon/Sport Utility Vehicle,Bike,,, +08/09/2021,23:17,BRONX,10466,40.897625,-73.85625,"(40.897625, -73.85625)",EAST 237 STREET,RICHARDSON AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,,,,4445626,Sedan,Sedan,,, +08/09/2021,17:30,,,40.710335,-73.760345,"(40.710335, -73.760345)",100 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4445686,Sedan,Sedan,,, +08/09/2021,22:00,QUEENS,11373,40.7452,-73.88426,"(40.7452, -73.88426)",BAXTER AVENUE,KETCHAM STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445848,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:50,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",WEST FORDHAM ROAD,LORING PLACE NORTH,,1,0,0,0,0,0,0,0,Unspecified,,,,,4445957,E-Scooter,,,, +08/09/2021,7:18,,,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445465,Bike,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,1:01,,,40.632835,-74.02724,"(40.632835, -74.02724)",73 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445915,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,11:05,,,40.6168,-73.94885,"(40.6168, -73.94885)",EAST 26 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445489,Pick-up Truck,,,, +08/09/2021,18:15,BROOKLYN,11236,40.647224,-73.911766,"(40.647224, -73.911766)",AVENUE D,EAST 92 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445435,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,21:18,,,40.680115,-73.75324,"(40.680115, -73.75324)",,,SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4445567,Sedan,,,, +08/08/2021,3:06,,,40.704796,-74.01669,"(40.704796, -74.01669)",WEST STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446026,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,9:35,QUEENS,11429,40.7135,-73.73899,"(40.7135, -73.73899)",217 LANE,103 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445402,Sedan,Sedan,,, +08/09/2021,0:20,,,40.75253,-73.94384,"(40.75253, -73.94384)",21 STREET,QUEENS PLAZA NORTH,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445887,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,6:35,QUEENS,11379,40.712452,-73.882065,"(40.712452, -73.882065)",METROPOLITAN AVENUE,PLEASANTVIEW STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446054,Sedan,Sedan,,, +08/09/2021,15:43,,,40.82967,-73.931076,"(40.82967, -73.931076)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445526,Tractor Truck Diesel,Sedan,,, +08/09/2021,19:45,BROOKLYN,11231,40.678654,-74.01629,"(40.678654, -74.01629)",FERRIS STREET,DIKEMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445441,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/09/2021,17:19,BRONX,10451,40.825115,-73.92541,"(40.825115, -73.92541)",WALTON AVENUE,EAST 157 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445528,Station Wagon/Sport Utility Vehicle,Motorbike,,, +08/09/2021,23:30,,,40.676132,-73.81924,"(40.676132, -73.81924)",LEFFERTS BOULEVARD,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4445478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,16:24,,,40.63841,-74.1316,"(40.63841, -74.1316)",PARK AVENUE,ANN STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4445925,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/09/2021,3:08,,,40.74432,-73.89494,"(40.74432, -73.89494)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4445017,Sedan,,,, +08/08/2021,19:50,QUEENS,11691,40.592194,-73.78414,"(40.592194, -73.78414)",BEACH 54 STREET,ROCKAWAY FWY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4445973,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,10:00,QUEENS,11412,40.692566,-73.763954,"(40.692566, -73.763954)",MEXICO STREET,DUNKIRK DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,21:15,BRONX,10459,40.826675,-73.90023,"(40.826675, -73.90023)",EAST 167 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445812,Sedan,,,, +07/30/2021,21:20,,,40.710316,-73.77173,"(40.710316, -73.77173)",JAMAICA AVENUE,187 PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446053,Sedan,,,, +08/02/2021,18:05,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ATLANTIC AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445907,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,3:30,BROOKLYN,11236,40.635117,-73.89115,"(40.635117, -73.89115)",,,1939 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4445111,Sedan,Sedan,,, +08/09/2021,5:15,QUEENS,11368,40.752056,-73.868935,"(40.752056, -73.868935)",,,98-02 37 AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4445942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,18:10,BROOKLYN,11233,40.679317,-73.92603,"(40.679317, -73.92603)",,,31 SUMPTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445373,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,19:28,BRONX,10455,40.810345,-73.9101,"(40.810345, -73.9101)",,,442 JACKSON AVENUE,2,0,2,0,0,0,0,0,Unspecified,,,,,4445480,Sedan,,,, +08/09/2021,21:40,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,SHERMAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445985,,,,, +08/09/2021,16:16,BROOKLYN,11236,40.638226,-73.895996,"(40.638226, -73.895996)",AVENUE L,EAST 96 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445436,Sedan,Sedan,,, +08/09/2021,21:30,,,40.850792,-73.87124,"(40.850792, -73.87124)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445780,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,18:50,QUEENS,11105,40.773537,-73.91052,"(40.773537, -73.91052)",,,22-63 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445886,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,18:00,QUEENS,11355,40.75815,-73.8109,"(40.75815, -73.8109)",MURRAY STREET,DELAWARE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4445461,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,21:18,BROOKLYN,11216,40.67088,-73.9504,"(40.67088, -73.9504)",,,775 NOSTRAND AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446070,E-Bike,,,, +08/01/2021,21:39,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4445966,Sedan,,,, +08/09/2021,13:15,,,40.735413,-73.91835,"(40.735413, -73.91835)",48 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445312,Pick-up Truck,Chassis Cab,,, +08/09/2021,14:20,STATEN ISLAND,10305,40.591904,-74.07445,"(40.591904, -74.07445)",,,266 KENSINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445334,Sedan,,,, +08/09/2021,16:50,,,40.633137,-73.9905,"(40.633137, -73.9905)",50 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445607,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/08/2021,12:00,QUEENS,11385,40.69774,-73.89289,"(40.69774, -73.89289)",62 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446059,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,15:00,QUEENS,11412,40.687286,-73.758865,"(40.687286, -73.758865)",120 AVENUE,190 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445418,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,16:40,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445734,Sedan,Sedan,,, +08/09/2021,16:40,BROOKLYN,11239,40.654343,-73.864204,"(40.654343, -73.864204)",,,11629 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446006,,,,, +08/09/2021,2:50,,,40.707077,-73.954025,"(40.707077, -73.954025)",BROADWAY,HOOPER STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4445290,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,14:30,BRONX,10456,40.821026,-73.908905,"(40.821026, -73.908905)",EAST 159 STREET,EAGLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4445535,Bus,,,, +08/09/2021,8:30,QUEENS,11362,40.755478,-73.729744,"(40.755478, -73.729744)",62 AVENUE,63 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445631,Sedan,,,, +08/09/2021,8:15,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445327,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/09/2021,5:06,,,40.846165,-73.929146,"(40.846165, -73.929146)",HARLEM RIVER DRIVE,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4445446,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,11:15,,,,,,ROCKAWAY FREEWAY,BEACH 39 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4445900,Sedan,,,, +08/09/2021,10:00,STATEN ISLAND,10304,40.624195,-74.07816,"(40.624195, -74.07816)",TOMPKINS STREET,QUINN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445955,Sedan,Sedan,,, +08/09/2021,10:18,QUEENS,11429,40.70947,-73.74581,"(40.70947, -73.74581)",212 STREET,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,12:40,QUEENS,11411,40.696617,-73.73227,"(40.696617, -73.73227)",115 ROAD,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445408,Sedan,Sedan,,, +08/09/2021,23:10,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445455,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,5:23,QUEENS,11379,40.7265,-73.8741,"(40.7265, -73.8741)",,,82-88 61 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4446042,Sedan,Sedan,Sedan,, +08/09/2021,13:00,QUEENS,11101,40.75203,-73.92915,"(40.75203, -73.92915)",NORTHERN BOULEVARD,35 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445891,E-Scooter,,,, +08/09/2021,14:00,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,8:00,BROOKLYN,11229,40.59594,-73.93813,"(40.59594, -73.93813)",,,2258 BATCHELDER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445190,Sedan,,,, +08/09/2021,8:10,,,40.619728,-74.08358,"(40.619728, -74.08358)",LAUREL AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445723,Sedan,,,, +08/09/2021,19:20,STATEN ISLAND,10305,40.574135,-74.08581,"(40.574135, -74.08581)",CAPODANNO BOULEVARD,JEFFERSON AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4445365,Sedan,Bike,,, +08/09/2021,21:10,,,40.820965,-73.939575,"(40.820965, -73.939575)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445662,Taxi,Bike,,, +08/09/2021,16:20,STATEN ISLAND,10314,40.610085,-74.11668,"(40.610085, -74.11668)",SLOSSON AVENUE,LORTEL AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4445555,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,13:20,BRONX,10456,,,,EAST 169 STREET,THIRD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445469,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,3:45,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4445961,Bike,,,, +08/09/2021,9:35,BROOKLYN,11224,40.57605,-73.97304,"(40.57605, -73.97304)",SEA BREEZE AVENUE,WEST 5 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445500,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,16:40,QUEENS,11102,40.771347,-73.92285,"(40.771347, -73.92285)",ASTORIA BOULEVARD,CRESCENT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445892,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,0:00,BROOKLYN,11219,40.62104,-73.9995,"(40.62104, -73.9995)",15 AVENUE,BAY RIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445426,Sedan,,,, +08/09/2021,18:06,BROOKLYN,11212,40.659485,-73.918304,"(40.659485, -73.918304)",LENOX ROAD,ROCKAWAY PARKWAY,,1,0,0,0,0,0,0,0,Unspecified,,,,,4445736,E-Scooter,,,, +08/09/2021,23:27,,,40.610844,-73.991776,"(40.610844, -73.991776)",BAY RIDGE PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,5:46,QUEENS,11101,40.740704,-73.931526,"(40.740704, -73.931526)",48 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Tow Hitch Defective,Unspecified,,,,4445454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,22:11,,,40.846424,-73.86034,"(40.846424, -73.86034)",MORRIS PARK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445674,Sedan,E-Bike,,, +08/09/2021,7:30,QUEENS,11432,40.713173,-73.78573,"(40.713173, -73.78573)",WEXFORD TERRACE,EDGERTON BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445220,Sedan,,,, +08/09/2021,17:11,BRONX,10458,40.854294,-73.89008,"(40.854294, -73.89008)",,,569 EAST 184 STREET,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4445510,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,16:15,BROOKLYN,11205,40.69386,-73.96222,"(40.69386, -73.96222)",MYRTLE AVENUE,EMERSON PLACE,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4445340,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/09/2021,18:00,,,40.83533,-73.927,"(40.83533, -73.927)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445531,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,9:35,QUEENS,11436,40.67481,-73.79511,"(40.67481, -73.79511)",123 AVENUE,144 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445422,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,19:58,BROOKLYN,11224,40.576885,-74.00323,"(40.576885, -74.00323)",NEPTUNE AVENUE,WEST 37 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4445507,Motorbike,,,, +08/08/2021,22:55,,,40.846954,-73.91863,"(40.846954, -73.91863)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445913,Sedan,,,, +08/09/2021,7:00,BRONX,10460,40.83573,-73.886604,"(40.83573, -73.886604)",,,1693 VYSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445464,Bus,Sedan,,, +08/06/2021,17:45,,,40.637028,-74.16822,"(40.637028, -74.16822)",,,137 NORTHFIELD AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4445928,Sedan,Moped,,, +08/09/2021,0:30,QUEENS,11434,40.666397,-73.785,"(40.666397, -73.785)",153 LANE,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4445020,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/05/2021,15:50,BROOKLYN,11231,40.675198,-74.015434,"(40.675198, -74.015434)",VAN BRUNT STREET,BEARD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445975,Ambulance,Sedan,,, +08/09/2021,12:30,BROOKLYN,11211,40.70992,-73.9623,"(40.70992, -73.9623)",BROADWAY,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445809,Sedan,Flat Bed,,, +08/01/2021,2:00,,,40.72935,-73.910194,"(40.72935, -73.910194)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446060,Sedan,Sedan,,, +08/09/2021,12:14,MANHATTAN,10035,40.800507,-73.938156,"(40.800507, -73.938156)",3 AVENUE,EAST 120 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445635,Station Wagon/Sport Utility Vehicle,Bike,,, +08/09/2021,8:15,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445326,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/09/2021,15:31,BROOKLYN,11211,40.714077,-73.953804,"(40.714077, -73.953804)",,,445 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445328,Sedan,Armored Truck,,, +08/09/2021,7:45,,,40.684277,-73.78302,"(40.684277, -73.78302)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445570,Bus,Pick-up Truck,,, +08/03/2021,14:00,BROOKLYN,11204,40.621887,-73.98741,"(40.621887, -73.98741)",,,6012 18 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445971,Sedan,E-Scooter,,, +08/09/2021,3:00,,,40.700672,-73.92164,"(40.700672, -73.92164)",STOCKHOLM STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4445344,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/09/2021,12:30,,,40.66494,-73.99664,"(40.66494, -73.99664)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445610,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,16:58,,,40.81693,-73.88617,"(40.81693, -73.88617)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446024,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,19:45,QUEENS,11004,40.743362,-73.70862,"(40.743362, -73.70862)",81 AVENUE,262 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445407,Sedan,,,, +08/09/2021,10:00,,,40.700768,-73.81019,"(40.700768, -73.81019)",91 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:00,,,40.676134,-73.8192263,"(40.676134, -73.8192263)",ROCKAWAY BOULEVARD,LEFFERTS BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468215,Sedan,Bike,,, +08/09/2021,8:00,,,40.61244,-74.13231,"(40.61244, -74.13231)",VICTORY BOULEVARD,BRADLEY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445260,Sedan,Bus,,, +08/09/2021,13:30,MANHATTAN,10018,40.753376,-73.99259,"(40.753376, -73.99259)",,,516 8 AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4445571,Box Truck,,,, +08/09/2021,9:45,,,40.710396,-74.00561,"(40.710396, -74.00561)",,,WILLIAM STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445681,Sedan,,,, +08/09/2021,11:30,BROOKLYN,11211,40.714825,-73.95588,"(40.714825, -73.95588)",,,228 NORTH 5 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445733,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,11:30,QUEENS,11377,40.746483,-73.894936,"(40.746483, -73.894936)",BROOKLYN QUEENS EXPRESSWAY,ROOSEVELT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445295,Sedan,PK,,, +08/09/2021,17:02,BRONX,10458,40.8675,-73.89174,"(40.8675, -73.89174)",,,2706 VALENTINE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445343,E-Bike,,,, +08/08/2021,3:10,QUEENS,11433,40.701,-73.786125,"(40.701, -73.786125)",,,105-16 171 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/08/2021,20:50,QUEENS,11378,40.731136,-73.8936,"(40.731136, -73.8936)",,,70-22 53 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446051,Sedan,,,, +08/09/2021,11:42,BROOKLYN,11220,40.637756,-74.00721,"(40.637756, -74.00721)",56 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445372,E-Bike,Van,,, +08/09/2021,17:30,QUEENS,11358,40.7555,-73.792725,"(40.7555, -73.792725)",UTOPIA PARKWAY,45 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4445482,Sedan,Sedan,,, +08/09/2021,15:03,BROOKLYN,11218,40.646416,-73.97608,"(40.646416, -73.97608)",,,255 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446027,Bus,Sedan,,, +08/09/2021,9:15,BRONX,10454,40.806263,-73.92018,"(40.806263, -73.92018)",EAST 136 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445800,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/24/2021,5:30,MANHATTAN,10038,40.710197,-73.9965,"(40.710197, -73.9965)",CATHERINE STREET,CATHERINE SLIP,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4445965,Station Wagon/Sport Utility Vehicle,spc,,, +08/09/2021,8:30,QUEENS,11101,40.74942,-73.940544,"(40.74942, -73.940544)",27 STREET,42 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445311,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,15:40,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",MERRICK BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445419,Sedan,Sedan,,, +08/09/2021,1:45,QUEENS,11435,40.689125,-73.79801,"(40.689125, -73.79801)",,,147-27 110 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4445214,Sedan,Sedan,Sedan,, +08/09/2021,12:20,,,0,0,"(0.0, 0.0)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445366,Sedan,,,, +08/09/2021,2:30,QUEENS,11375,40.717308,-73.84927,"(40.717308, -73.84927)",70 AVENUE,FLEET STREET,,1,0,1,0,0,0,0,0,,,,,,4445560,,,,, +08/09/2021,15:45,BRONX,10459,40.81632,-73.89622,"(40.81632, -73.89622)",SOUTHERN BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445361,Sedan,Sedan,,, +08/09/2021,13:53,MANHATTAN,10012,40.72083,-73.99561,"(40.72083, -73.99561)",,,52 KENMARE STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4445912,Sedan,Bike,,, +08/09/2021,15:46,BRONX,10461,40.844387,-73.83463,"(40.844387, -73.83463)",,,1630 MAYFLOWER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445696,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,18:30,,,40.758205,-73.777405,"(40.758205, -73.777405)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445438,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/09/2021,19:00,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",WHITE PLAINS ROAD,EAST 241 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,11:01,QUEENS,11415,40.707172,-73.83212,"(40.707172, -73.83212)",,,83-55 ABINGDON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445722,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,8:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445667,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,20:45,,,40.67536,-73.8126,"(40.67536, -73.8126)",ROCKAWAY BOULEVARD,125 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445473,Sedan,Bike,,, +08/09/2021,5:44,,,40.77039,-73.91771,"(40.77039, -73.91771)",HOYT AVENUE SOUTH,31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445885,Sedan,Sedan,,, +08/09/2021,6:53,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4445998,Sedan,Sedan,Sedan,Sedan, +08/09/2021,19:00,QUEENS,11422,40.665348,-73.72986,"(40.665348, -73.72986)",SOUTH CONDUIT AVENUE,HOOK CREEK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/31/2021,1:45,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4445901,Box Truck,Sedan,,, +08/09/2021,19:20,BROOKLYN,11223,40.59607,-73.98413,"(40.59607, -73.98413)",WEST 13 STREET,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445425,Sedan,Sedan,Sedan,, +08/09/2021,2:37,BROOKLYN,11236,40.63868,-73.91682,"(40.63868, -73.91682)",FARRAGUT ROAD,EAST 80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445117,Pick-up Truck,Sedan,,, +08/08/2021,22:24,,,40.63795,-74.14479,"(40.63795, -74.14479)",RICHMOND TERRACE,MORNINGSTAR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445930,Sedan,Sedan,,, +08/05/2021,18:19,BROOKLYN,11209,40.62537,-74.039116,"(40.62537, -74.039116)",NARROWS AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446125,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,0:00,STATEN ISLAND,10314,40.590336,-74.12685,"(40.590336, -74.12685)",,,1499 MANOR ROAD,0,0,0,0,0,0,0,0,Animals Action,,,,,4445338,Sedan,,,, +08/09/2021,16:15,BROOKLYN,11220,40.636635,-74.008385,"(40.636635, -74.008385)",8 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,9:06,QUEENS,11693,40.59028,-73.8108,"(40.59028, -73.8108)",,,318 BEACH 85 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,Unspecified,,,4446071,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/04/2021,17:12,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4445995,Sedan,Sedan,,, +08/09/2021,16:15,BROOKLYN,11226,40.662407,-73.96516,"(40.662407, -73.96516)",EAST DRIVE,CENTER DRIVE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4445821,Bike,E-Bike,,, +08/09/2021,13:42,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4445462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/07/2021,22:48,,,40.575428,-73.977875,"(40.575428, -73.977875)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446155,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,6:25,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466941,Sedan,Sedan,,, +08/09/2021,8:35,MANHATTAN,10033,40.848938,-73.93708,"(40.848938, -73.93708)",BROADWAY,WEST 179 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4445855,Tractor Truck Gasoline,Box Truck,,, +08/09/2021,17:41,BROOKLYN,11210,40.625656,-73.94011,"(40.625656, -73.94011)",,,1816 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445445,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,20:30,STATEN ISLAND,10306,40.574894,-74.108444,"(40.574894, -74.108444)",BRYANT AVENUE,CLAWSON STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4445409,Ambulance,Sedan,,, +08/09/2021,9:00,BROOKLYN,11204,40.61034,-73.98278,"(40.61034, -73.98278)",,,62 AVENUE O,0,0,0,0,0,0,0,0,Unspecified,,,,,4445919,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,19:00,,,40.865345,-73.90849,"(40.865345, -73.90849)",BAILEY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445950,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,15:48,BRONX,10469,40.876083,-73.854126,"(40.876083, -73.854126)",,,1103 EAST 213 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445594,Sedan,,,, +08/09/2021,15:00,,,40.71793,-73.73696,"(40.71793, -73.73696)",JAMAICA AVENUE,218 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,15:30,BRONX,10456,40.8308,-73.90861,"(40.8308, -73.90861)",,,3468 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445467,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,0:00,,,40.843884,-73.89613,"(40.843884, -73.89613)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4445511,Sedan,Box Truck,,, +08/08/2021,13:10,MANHATTAN,10014,40.730225,-74.00686,"(40.730225, -74.00686)",SAINT LUKES PLACE,LEROY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446018,Sedan,,,, +10/17/2021,13:10,BROOKLYN,11203,40.6396158,-73.932015,"(40.6396158, -73.932015)",FOSTER AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468251,Sedan,,,, +08/09/2021,14:50,,,40.771904,-73.895226,"(40.771904, -73.895226)",HAZEN STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/30/2021,11:15,,,40.67356,-73.93627,"(40.67356, -73.93627)",TROY AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4446082,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,18:40,,,40.83533,-73.927,"(40.83533, -73.927)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4445532,Sedan,Sedan,AMBULANCE,, +08/09/2021,1:30,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4446061,Station Wagon/Sport Utility Vehicle,Carry All,,, +08/07/2021,9:20,QUEENS,11691,40.6028,-73.74879,"(40.6028, -73.74879)",NAMEOKE STREET,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445894,Sedan,,,, +08/09/2021,2:04,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4445044,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,22:30,QUEENS,11691,40.595253,-73.78214,"(40.595253, -73.78214)",,,51-32 BEACH CHANNEL DRIVE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4445977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,12:34,BRONX,10468,40.86135,-73.89774,"(40.86135, -73.89774)",EAST 188 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4445922,Pick-up Truck,Sedan,,, +08/09/2021,17:30,QUEENS,11413,40.666397,-73.7532,"(40.666397, -73.7532)",NORTH CONDUIT AVENUE,224 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445430,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,8:30,QUEENS,11368,40.75639,-73.859726,"(40.75639, -73.859726)",34 AVENUE,109 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4445659,Sedan,Sedan,,, +08/09/2021,3:40,STATEN ISLAND,10306,40.57477,-74.097626,"(40.57477, -74.097626)",MIDLAND AVENUE,MASON AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4445330,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,9:27,,,40.76104,-73.97538,"(40.76104, -73.97538)",5 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445613,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/05/2021,0:30,BRONX,10459,40.820988,-73.89491,"(40.820988, -73.89491)",EAST 163 STREET,TIFFANY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445960,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,18:58,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445822,Sedan,Sedan,,, +08/09/2021,21:40,QUEENS,11417,40.671288,-73.838066,"(40.671288, -73.838066)",BRISTOL AVENUE,CENTREVILLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445472,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,20:51,,,40.825954,-73.94337,"(40.825954, -73.94337)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445494,Sedan,Dump,,, +08/09/2021,8:35,BRONX,10474,40.81558,-73.88694,"(40.81558, -73.88694)",,,741 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445741,Sedan,,,, +08/09/2021,8:50,,,40.564056,-74.18728,"(40.564056, -74.18728)",ARTHUR KILL ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445561,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/09/2021,10:27,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4445360,Sedan,Sedan,,, +08/07/2021,21:03,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",ELIOT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446056,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,5:20,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inexperience,,,,4445264,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,2:05,,,40.691048,-73.88703,"(40.691048, -73.88703)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4446037,Taxi,Sedan,,, +08/09/2021,21:50,,,40.846466,-73.87123,"(40.846466, -73.87123)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445578,Sedan,,,, +08/09/2021,6:00,QUEENS,11378,40.731655,-73.92179,"(40.731655, -73.92179)",46 STREET,54 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445453,Sedan,,,, +08/09/2021,17:41,MANHATTAN,10031,40.828346,-73.94906,"(40.828346, -73.94906)",BROADWAY,WEST 148 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445969,E-Bike,,,, +08/06/2021,22:35,,,40.59281,-73.97877,"(40.59281, -73.97877)",86 STREET,WEST 8 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4446087,Sedan,Pick-up Truck,,, +08/09/2021,15:45,,,40.676193,-74.001335,"(40.676193, -74.001335)",HAMILTON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445362,Sedan,Pick-up Truck,,, +08/09/2021,15:50,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,17:10,,,40.843655,-73.93065,"(40.843655, -73.93065)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4445778,Motorcycle,,,, +08/09/2021,10:40,QUEENS,11435,40.696644,-73.80741,"(40.696644, -73.80741)",97 AVENUE,LIVERPOOL STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4445684,Sedan,Garbage or Refuse,,, +08/09/2021,17:11,,,40.68445,-73.92031,"(40.68445, -73.92031)",HOWARD AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445697,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,1:48,BRONX,10472,40.835857,-73.87213,"(40.835857, -73.87213)",CROSS BRONX EXPRESSWAY,CROES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445259,Sedan,,,, +08/09/2021,19:05,,,40.59228,-74.189705,"(40.59228, -74.189705)",,,4073 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445506,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,12:20,BRONX,10465,40.82796,-73.82367,"(40.82796, -73.82367)",,,3659 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,11:40,MANHATTAN,10013,40.720318,-74.01218,"(40.720318, -74.01218)",WEST STREET,NORTH MOORE STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4445591,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,8:00,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445212,Sedan,School Bus,,, +08/09/2021,21:47,BROOKLYN,11203,40.64614,-73.93271,"(40.64614, -73.93271)",SCHENECTADY AVENUE,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445421,Sedan,Bike,,, +08/09/2021,11:06,BRONX,10469,40.869614,-73.84463,"(40.869614, -73.84463)",,,1418 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4445677,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,17:07,BROOKLYN,11206,40.70739,-73.95054,"(40.70739, -73.95054)",SOUTH 4 STREET,UNION AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4446110,Taxi,Bike,,, +08/09/2021,13:04,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445558,Sedan,,,, +08/09/2021,12:30,BRONX,10467,40.872444,-73.87687,"(40.872444, -73.87687)",,,3142 DECATUR AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4445342,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,13:00,BROOKLYN,11213,40.668037,-73.93497,"(40.668037, -73.93497)",,,1671 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445948,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,23:45,QUEENS,11691,40.59574,-73.77909,"(40.59574, -73.77909)",,,407 BEACH 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445902,Sedan,,,, +08/09/2021,14:24,BROOKLYN,11220,40.64703,-74.012,"(40.64703, -74.012)",49 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445458,Sedan,E-Bike,,, +08/09/2021,18:15,,,40.75369,-73.74445,"(40.75369, -73.74445)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4445439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,14:00,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4445789,Sedan,,,, +08/09/2021,7:04,BRONX,10461,40.8407,-73.84544,"(40.8407, -73.84544)",OVERING STREET,FRISBY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,12:07,QUEENS,11357,40.791733,-73.81017,"(40.791733, -73.81017)",152 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445463,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,9:48,,,40.68804,-73.947754,"(40.68804, -73.947754)",LEXINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446127,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,1:00,STATEN ISLAND,10306,40.556076,-74.116196,"(40.556076, -74.116196)",,,549 MILL ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445339,Sedan,Sedan,,, +08/07/2021,11:05,BROOKLYN,11201,40.691082,-73.98345,"(40.691082, -73.98345)",,,445 ALBEE SQUARE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446076,Sedan,Bike,,, +08/09/2021,11:20,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445310,Sedan,Sedan,,, +08/08/2021,23:50,MANHATTAN,10002,40.71852,-73.99158,"(40.71852, -73.99158)",,,283 BROOME STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4445964,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,16:25,BRONX,10466,40.901836,-73.84548,"(40.901836, -73.84548)",WILDER AVENUE,EAST 241 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4445599,Sedan,E-Bike,Station Wagon/Sport Utility Vehicle,, +08/09/2021,17:15,QUEENS,11421,40.69242,-73.85151,"(40.69242, -73.85151)",WOODHAVEN BOULEVARD,88 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445720,Sedan,Sedan,,, +08/09/2021,15:50,,,40.58524,-74.093414,"(40.58524, -74.093414)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445367,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,21:15,QUEENS,11420,40.68379,-73.80978,"(40.68379, -73.80978)",111 AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4445475,Sedan,Sedan,,, +08/09/2021,0:45,,,40.815403,-73.93992,"(40.815403, -73.93992)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445664,Sedan,,,, +08/09/2021,7:48,BROOKLYN,11234,40.623623,-73.92637,"(40.623623, -73.92637)",EAST 51 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445544,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,7:09,QUEENS,11364,40.74992,-73.74493,"(40.74992, -73.74493)",,,64-58 233 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445304,Sedan,Sedan,,, +08/09/2021,0:33,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445162,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,18:20,,,40.599255,-73.9894,"(40.599255, -73.9894)",86 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445424,Bike,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,2:00,,,40.72935,-73.910194,"(40.72935, -73.910194)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446050,Sedan,,,, +08/09/2021,15:06,QUEENS,11357,40.786892,-73.80798,"(40.786892, -73.80798)",CROSS ISLAND PARKWAY,154 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445483,Sedan,Sedan,,, +08/09/2021,14:10,BROOKLYN,11232,40.66874,-73.99668,"(40.66874, -73.99668)",HAMILTON AVENUE,2 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445371,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,7:39,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",CANAL STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unsafe Lane Changing,Unspecified,,,4445911,Van,Sedan,Sedan,, +07/31/2021,0:15,MANHATTAN,10036,40.760036,-73.991455,"(40.760036, -73.991455)",,,630 9 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445937,,,,, +08/09/2021,15:25,MANHATTAN,10029,40.791588,-73.9527,"(40.791588, -73.9527)",,,4 EAST 102 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4445820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/09/2021,7:30,QUEENS,11691,40.602192,-73.75523,"(40.602192, -73.75523)",CORNAGA AVENUE,BEACH 22 STREET,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Turning Improperly,,,,4445996,Pick-up Truck,Sedan,,, +08/09/2021,18:18,BROOKLYN,11220,40.63627,-74.02584,"(40.63627, -74.02584)",,,6822 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445432,Sedan,Sedan,,, +08/09/2021,0:30,,,40.700672,-73.92164,"(40.700672, -73.92164)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445857,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,22:51,,,40.709415,-73.87022,"(40.709415, -73.87022)",COOPER AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446047,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,8:57,MANHATTAN,10013,40.722878,-74.00206,"(40.722878, -74.00206)",,,482 BROOME STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445580,Sedan,,,, +08/07/2021,4:20,,,40.703083,-73.85766,"(40.703083, -73.85766)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446062,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,10:00,BROOKLYN,11206,40.711693,-73.935814,"(40.711693, -73.935814)",BOGART STREET,TEN EYCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446111,Sedan,,,, +08/09/2021,11:40,,,40.59922,-74.09173,"(40.59922, -74.09173)",RICHMOND ROAD,,,3,0,0,0,0,0,3,0,Accelerator Defective,Unspecified,,,,4445332,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,12:17,MANHATTAN,10001,40.7448,-73.991425,"(40.7448, -73.991425)",WEST 26 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445661,Pick-up Truck,,,, +08/03/2021,0:00,,,40.83037,-73.94015,"(40.83037, -73.94015)",SAINT NICHOLAS PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445968,Sedan,,,, +08/09/2021,18:28,,,40.789734,-73.9661,"(40.789734, -73.9661)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445566,Sedan,Bike,,, +08/09/2021,7:50,BROOKLYN,11209,40.627506,-74.03237,"(40.627506, -74.03237)",,,8124 RIDGE BOULEVARD,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,,,4445316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,13:30,,,40.843655,-73.93065,"(40.843655, -73.93065)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445363,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,20:42,,,40.671627,-73.93364,"(40.671627, -73.93364)",STERLING PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445730,,,,, +08/09/2021,6:31,QUEENS,11372,40.74923,-73.88613,"(40.74923, -73.88613)",,,37-06 80 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4445701,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,10:15,QUEENS,11697,40.702133,-73.82862,"(40.702133, -73.82862)",,,122-17 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4445275,Sedan,Sedan,,, +08/09/2021,11:43,,,40.599064,-73.74481,"(40.599064, -73.74481)",LANETT AVENUE,BEACH 9 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4445997,Sedan,Pick-up Truck,,, +07/22/2021,23:27,,,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446078,Moped,,,, +08/09/2021,17:20,,,40.665905,-73.91854,"(40.665905, -73.91854)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445841,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,23:19,BROOKLYN,11218,40.646828,-73.98224,"(40.646828, -73.98224)",,,1 MICIELI PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446170,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,5:28,,,40.828278,-73.907036,"(40.828278, -73.907036)",3 AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,8:51,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",SUTTER AVENUE,HOWARD AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445917,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,22:34,,,40.852673,-73.919106,"(40.852673, -73.919106)",UNDERCLIFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445924,Sedan,,,, +08/09/2021,4:14,,,40.637444,-73.90155,"(40.637444, -73.90155)",AVENUE K,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4445093,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,16:10,QUEENS,11385,40.703686,-73.90918,"(40.703686, -73.90918)",SENECA AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4446055,Sedan,Sedan,Sedan,, +08/09/2021,14:47,,,40.632164,-74.166336,"(40.632164, -74.166336)",SOUTH AVENUE,BRABANT STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4445504,Sedan,Bus,,, +08/09/2021,17:51,BRONX,10456,40.83226,-73.91369,"(40.83226, -73.91369)",EAST 167 STREET,COLLEGE AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445533,Sedan,E-Scooter,,, +08/09/2021,23:20,BROOKLYN,11236,40.642033,-73.89609,"(40.642033, -73.89609)",,,1066 EAST 99 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4445980,Taxi,,,, +08/09/2021,19:30,,,40.7024,-73.7431,"(40.7024, -73.7431)",212 STREET,COLFAX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445429,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,18:20,BROOKLYN,11210,40.636448,-73.94513,"(40.636448, -73.94513)",FARRAGUT ROAD,NEW YORK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445742,Sedan,Bike,,, +08/09/2021,6:05,QUEENS,11101,40.747837,-73.947464,"(40.747837, -73.947464)",,,44-62 21 STREET,0,0,0,0,0,0,0,0,,,,,,4445452,,,,, +08/09/2021,16:34,QUEENS,11385,40.70485,-73.90562,"(40.70485, -73.90562)",PALMETTO STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446040,Sedan,4 dr sedan,,, +08/09/2021,21:39,BRONX,10468,40.864456,-73.900986,"(40.864456, -73.900986)",,,2501 DAVIDSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445522,Sedan,,,, +08/09/2021,8:36,BRONX,10469,40.85922,-73.83626,"(40.85922, -73.83626)",,,2301 GUNTHER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445359,Sedan,Ambulance,,, +08/09/2021,11:00,QUEENS,11418,40.702087,-73.81862,"(40.702087, -73.81862)",,,87-48 134 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4445247,Sedan,,,, +08/09/2021,2:33,BRONX,10474,40.81313,-73.89428,"(40.81313, -73.89428)",EAST 156 STREET,BARRY STREET,,3,0,0,0,0,0,3,0,Unspecified,,,,,4445621,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,10:00,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445779,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,10:00,BROOKLYN,11203,40.639496,-73.93392,"(40.639496, -73.93392)",EAST 45 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445415,Sedan,,,, +08/09/2021,3:30,QUEENS,11434,40.665333,-73.77272,"(40.665333, -73.77272)",,,144-78 176 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4445403,Sedan,,,, +08/09/2021,18:11,QUEENS,11423,40.70731,-73.764626,"(40.70731, -73.764626)",104 AVENUE,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445685,Sedan,Sedan,,, +08/07/2021,1:54,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4446017,Sedan,Sedan,,, +08/09/2021,2:48,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,1,1,1,1,0,0,0,0,Unsafe Speed,,,,,4445443,Sedan,,,, +08/09/2021,20:26,,,40.688774,-73.817635,"(40.688774, -73.817635)",LIBERTY AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445471,Sedan,,,, +08/08/2021,5:36,BRONX,10468,40.86923,-73.89604,"(40.86923, -73.89604)",JEROME AVENUE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4445958,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,21:05,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",MOTT STREET,KENMARE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445896,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,0:32,,,40.687687,-73.792564,"(40.687687, -73.792564)",113 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4446154,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/09/2021,8:45,MANHATTAN,10031,40.828396,-73.945305,"(40.828396, -73.945305)",WEST 150 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445493,Sedan,,,, +08/09/2021,9:20,BROOKLYN,11236,40.637325,-73.89741,"(40.637325, -73.89741)",,,9417 AVENUE L,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4445434,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,13:04,,,40.675053,-73.947235,"(40.675053, -73.947235)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446086,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,23:11,,,40.695114,-73.911865,"(40.695114, -73.911865)",PUTNAM AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,Unspecified,,,4445861,Station Wagon/Sport Utility Vehicle,Sedan,MOPED,, +08/09/2021,8:55,,,40.772964,-73.89233,"(40.772964, -73.89233)",19 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445888,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,23:30,,,40.858162,-73.91699,"(40.858162, -73.91699)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4445903,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,23:28,BROOKLYN,11203,40.6547,-73.94116,"(40.6547, -73.94116)",,,511 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445459,Sedan,Sedan,,, +10/20/2021,8:45,QUEENS,11423,40.7138774,-73.7540462,"(40.7138774, -73.7540462)",JAMAICA AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4469081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,17:17,QUEENS,11354,40.7627585,-73.822601,"(40.7627585, -73.822601)",38 AVENUE,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4467372,E-Scooter,,,, +10/15/2021,17:41,,,40.8044551,-73.9118464,"(40.8044551, -73.9118464)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4467716,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,10:51,BROOKLYN,11226,40.6514467,-73.9508294,"(40.6514467, -73.9508294)",,,250 MARTENSE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467085,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,17:13,BROOKLYN,11218,40.6550377,-73.9784696,"(40.6550377, -73.9784696)",11 AVENUE,18 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468879,Pick-up Truck,,,, +10/18/2021,11:49,,,40.6082163,-73.998084,"(40.6082163, -73.998084)",82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468686,Sedan,,,, +10/30/2021,20:52,BROOKLYN,11225,40.663673,-73.954865,"(40.663673, -73.954865)",,,229 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4473931,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/22/2021,20:20,BROOKLYN,11207,40.6513528,-73.892743,"(40.6513528, -73.892743)",GLENWOOD ROAD,WILLIAMS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469950,Sedan,Taxi,,, +10/15/2021,0:20,QUEENS,11415,40.7133313,-73.8292724,"(40.7133313, -73.8292724)",,,120-36 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,,,4467637,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/08/2021,13:19,MANHATTAN,10036,40.7625386,-73.9908266,"(40.7625386, -73.9908266)",,,414 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467552,Moped,,,, +10/22/2021,12:00,QUEENS,11366,40.7282925,-73.7839754,"(40.7282925, -73.7839754)",UNION TURNPIKE,185 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469963,Sedan,,,, +10/17/2021,17:20,,,40.8833828,-73.9023336,"(40.8833828, -73.9023336)",Mosholu Parkway,East Gunhill Road,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468506,Sedan,Sedan,,, +10/21/2021,17:00,MANHATTAN,10030,40.8212629,-73.9460792,"(40.8212629, -73.9460792)",WEST 141 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470327,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,19:00,BROOKLYN,11212,40.6664676,-73.9147863,"(40.6664676, -73.9147863)",SUTTER AVENUE,HERZL STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4470213,Sedan,Bike,,, +11/02/2021,20:35,,,40.72106,-73.75945,"(40.72106, -73.75945)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474119,Station Wagon/Sport Utility Vehicle,Bus,,, +10/15/2021,1:23,,,40.7132541,-73.9775851,"(40.7132541, -73.9775851)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Alcohol Involvement,,,,4467387,Sedan,Sedan,,, +10/13/2021,1:15,BROOKLYN,11218,40.6422048,-73.9919285,"(40.6422048, -73.9919285)",FORT HAMILTON PARKWAY,41 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467769,Sedan,Bike,,, +10/17/2021,22:15,MANHATTAN,10011,40.7386864,-73.9958754,"(40.7386864, -73.9958754)",WEST 16 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468146,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,14:20,BROOKLYN,11203,40.647114,-73.94338,"(40.647114, -73.94338)",BROOKLYN AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474086,Sedan,Box Truck,,, +10/30/2021,3:00,,,40.829098,-73.836494,"(40.829098, -73.836494)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4473956,Sedan,Sedan,,, +10/18/2021,9:02,BROOKLYN,11230,40.6250815,-73.9758799,"(40.6250815, -73.9758799)",,,1151 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468668,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,19:30,BROOKLYN,11212,40.65828,-73.9042964,"(40.65828, -73.9042964)",,,250 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469856,Sedan,,,, +10/15/2021,15:13,QUEENS,11427,40.726007,-73.7517212,"(40.726007, -73.7517212)",HILLSIDE AVENUE,214 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467519,Sedan,Sedan,,, +10/23/2021,20:20,MANHATTAN,10029,40.7894445,-73.9375318,"(40.7894445, -73.9375318)",FDR DRIVE,EAST 107 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,22:45,,,40.8172199,-73.9522712,"(40.8172199, -73.9522712)",CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,11:45,BRONX,10468,40.8617318,-73.9118139,"(40.8617318, -73.9118139)",WEST FORDHAM ROAD,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467419,Sedan,Sedan,,, +10/19/2021,14:55,BRONX,10465,40.8234781,-73.8189683,"(40.8234781, -73.8189683)",,,533 EDISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468949,Sedan,Bus,,, +10/17/2021,3:29,,,40.7165076,-73.9839205,"(40.7165076, -73.9839205)",WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467874,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,22:25,,,40.8567445,-73.895264,"(40.8567445, -73.895264)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4467240,Moped,Sedan,,, +10/14/2021,20:00,QUEENS,11420,40.6767361,-73.807076,"(40.6767361, -73.807076)",,,132-03 FOCH BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467218,Sedan,,,, +10/17/2021,18:50,BROOKLYN,11233,40.6689973,-73.9209458,"(40.6689973, -73.9209458)",,,1450 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4468359,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,8:00,BRONX,10457,40.8424482,-73.8937007,"(40.8424482, -73.8937007)",,,1798 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469113,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,12:30,MANHATTAN,10019,40.7633066,-73.9856019,"(40.7633066, -73.9856019)",,,851 8 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469863,Bike,,,, +10/22/2021,18:25,BRONX,10460,40.8426172,-73.8781767,"(40.8426172, -73.8781767)",EAST 180 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470216,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +10/20/2021,11:55,BROOKLYN,11214,40.6110682,-74.0013038,"(40.6110682, -74.0013038)",NEW UTRECHT AVENUE,81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469406,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/06/2021,13:48,,,40.8193167,-73.930314,"(40.8193167, -73.930314)",EXTERIOR STREET,EAST 149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466808,Sedan,Sedan,,, +10/21/2021,21:30,QUEENS,11375,40.7288072,-73.8403274,"(40.7288072, -73.8403274)",GRAND CENTRAL PARKWAY,68 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469766,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/15/2021,19:46,BROOKLYN,11237,40.7056704,-73.9214087,"(40.7056704, -73.9214087)",WILLOUGHBY AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470230,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,5:45,MANHATTAN,10011,40.7326221,-73.9963085,"(40.7326221, -73.9963085)",,,14 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468394,Sedan,,,, +10/16/2021,23:55,MANHATTAN,10014,40.7381347,-74.0041751,"(40.7381347, -74.0041751)",8 AVENUE,JANE STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4468389,Sedan,Sedan,,, +10/16/2021,18:44,MANHATTAN,10017,40.750766,-73.9744433,"(40.750766, -73.9744433)",3 AVENUE,EAST 42 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469068,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,20:00,BROOKLYN,11207,40.6757357,-73.8968533,"(40.6757357, -73.8968533)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468161,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,17:01,,,40.8316328,-73.9225175,"(40.8316328, -73.9225175)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4470594,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/15/2021,2:18,,,40.6509486,-73.9466746,"(40.6509486, -73.9466746)",NEW YORK AVENUE,,,0,1,0,0,0,0,0,1,Driver Inexperience,,,,,4467504,Motorscooter,,,, +10/15/2021,16:30,BROOKLYN,11211,40.708426,-73.9579038,"(40.708426, -73.9579038)",BROADWAY,MARCY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4468083,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,17:28,BROOKLYN,11209,40.6305649,-74.0340419,"(40.6305649, -74.0340419)",78 STREET,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4468124,Sedan,,,, +10/21/2021,22:41,BRONX,10468,40.8620897,-73.9132993,"(40.8620897, -73.9132993)",WEST FORDHAM ROAD,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470025,Sedan,,,, +10/20/2021,11:40,,,40.9063395,-73.8964918,"(40.9063395, -73.8964918)",WEST 259 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469725,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/21/2021,17:00,,,40.601683,-74.1632938,"(40.601683, -74.1632938)",RICHMOND AVENUE,SIGNS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469824,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,3:40,,,40.6547415,-73.940397,"(40.6547415, -73.940397)",LENOX ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467818,Sedan,Sedan,,, +10/17/2021,17:28,,,40.6924922,-73.8170543,"(40.6924922, -73.8170543)",101 AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4468047,Sedan,Sedan,,, +10/12/2021,12:53,,,40.7085381,-73.9994821,"(40.7085381, -73.9994821)",FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,23:25,QUEENS,11411,40.6906841,-73.7272889,"(40.6906841, -73.7272889)",235 STREET,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469931,Sedan,Sedan,,, +10/18/2021,11:23,QUEENS,11103,40.7592103,-73.9186142,"(40.7592103, -73.9186142)",,,31-83 STEINWAY STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4470670,Pick-up Truck,,,, +11/02/2021,14:00,,,40.671597,-73.88018,"(40.671597, -73.88018)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473574,Sedan,Sedan,,, +10/15/2021,23:15,MANHATTAN,10003,40.7310723,-73.9918827,"(40.7310723, -73.9918827)",,,74 WANAMAKER PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467610,Sedan,,,, +10/14/2021,19:30,BROOKLYN,11232,40.6576664,-74.0009227,"(40.6576664, -74.0009227)",30 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467155,Sedan,E-Bike,,, +10/20/2021,10:40,BRONX,10452,40.8347039,-73.9182569,"(40.8347039, -73.9182569)",EAST 167 STREET,GRAND VIEW PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469730,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/21/2021,16:36,BROOKLYN,11233,40.6819344,-73.9225436,"(40.6819344, -73.9225436)",RALPH AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470497,Sedan,,,, +10/22/2021,11:00,QUEENS,11375,40.7220122,-73.8534755,"(40.7220122, -73.8534755)",YELLOWSTONE BOULEVARD,BURNS STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469784,Sedan,,,, +10/14/2021,11:00,,,40.5763924,-73.9868932,"(40.5763924, -73.9868932)",WEST 20 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467780,Taxi,Bike,,, +10/18/2021,20:04,QUEENS,11432,40.7178368,-73.7749041,"(40.7178368, -73.7749041)",188 STREET,HENLEY ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,19:00,BROOKLYN,11218,40.6437471,-73.9746853,"(40.6437471, -73.9746853)",,,240 OCEAN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4468465,Bike,,,, +10/14/2021,12:16,,,40.7576313,-73.8279785,"(40.7576313, -73.8279785)",BARCLAY AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Backing Unsafely,,,,4468936,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/13/2021,22:57,BROOKLYN,11222,40.7304639,-73.9514819,"(40.7304639, -73.9514819)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4466895,Pick-up Truck,Bike,,, +10/22/2021,19:45,,,40.7674176,-73.7905994,"(40.7674176, -73.7905994)",33 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4469945,Sedan,Sedan,,, +10/18/2021,19:45,BRONX,10458,40.861831,-73.8928519,"(40.861831, -73.8928519)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468981,Sedan,Sedan,,, +10/20/2021,6:45,,,40.6581931,-74.0010322,"(40.6581931, -74.0010322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470053,Sedan,Sedan,,, +10/16/2021,0:20,,,40.5358343,-74.1937701,"(40.5358343, -74.1937701)",HUGUENOT AVENUE,,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inattention/Distraction,,,,4469539,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,9:25,,,,,,GRAND CENTRAL PARKWAY,UNION 105 TURNPIKE,,2,0,0,0,0,0,2,0,Eating or Drinking,Unspecified,,,,4473382,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,5:23,QUEENS,11423,40.7246786,-73.7648153,"(40.7246786, -73.7648153)",FRANCIS LEWIS BOULEVARD,EPSOM COURSE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466676,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/27/2021,7:30,,,40.71082,-73.96853,"(40.71082, -73.96853)",KENT AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4474220,,,,, +10/13/2021,21:40,BRONX,10461,40.8506802,-73.8530498,"(40.8506802, -73.8530498)",,,1831 TOMLINSON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/14/2021,10:14,,,40.7844638,-73.9773661,"(40.7844638, -73.9773661)",,,AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468517,USPS,Sedan,,, +10/21/2021,10:00,QUEENS,11373,40.7348534,-73.8663487,"(40.7348534, -73.8663487)",,,94-10 59 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4469459,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,15:00,,,40.6753333,-73.9360776,"(40.6753333, -73.9360776)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4467950,Sedan,Sedan,,, +10/13/2021,4:30,,,40.7566718,-73.8287931,"(40.7566718, -73.8287931)",MAIN STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4466942,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,16:48,QUEENS,11105,40.7728532,-73.9060611,"(40.7728532, -73.9060611)",STEINWAY STREET,DITMARS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4467891,Motorcycle,Sedan,,, +10/20/2021,18:15,MANHATTAN,10065,40.7605354,-73.9583509,"(40.7605354, -73.9583509)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4469644,Sedan,Sedan,Sedan,, +10/24/2021,2:57,BRONX,10454,40.8061229,-73.9179524,"(40.8061229, -73.9179524)",EAST 137 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4470622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/02/2021,9:00,QUEENS,11411,40.697468,-73.7442,"(40.697468, -73.7442)",,,116-17 NASHVILLE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473839,Sedan,,,, +11/02/2021,17:00,QUEENS,11412,40.69612,-73.746185,"(40.69612, -73.746185)",FRANCIS LEWIS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473674,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,7:43,BRONX,10467,40.8653624,-73.8704197,"(40.8653624, -73.8704197)",BRONX PARK EAST,ALLERTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4468844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,20:15,,,40.6249491,-73.9771104,"(40.6249491, -73.9771104)",DAHILL ROAD,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468651,Sedan,Sedan,,, +10/16/2021,19:20,QUEENS,11103,40.7654813,-73.9136994,"(40.7654813, -73.9136994)",28 AVENUE,STEINWAY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467901,Bike,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,8:26,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4468554,Motorcycle,,,, +10/13/2021,5:07,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4468534,Sedan,,,, +11/02/2021,7:50,BROOKLYN,11201,,,,ATLANTIC AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474143,Sedan,Sedan,,, +10/18/2021,14:05,,,40.8302701,-73.9439219,"(40.8302701, -73.9439219)",WEST 153 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468615,E-Bike,Sedan,,, +10/22/2021,9:10,BRONX,10472,40.8308198,-73.8700064,"(40.8308198, -73.8700064)",WESTCHESTER AVENUE,NOBLE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4469777,Sedan,,,, +10/11/2021,19:00,,,40.6233275,-74.0198538,"(40.6233275, -74.0198538)",BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,22:30,QUEENS,11434,40.6679154,-73.775224,"(40.6679154, -73.775224)",160 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468600,Sedan,Sedan,,, +10/13/2021,15:00,,,40.7553632,-73.8872263,"(40.7553632, -73.8872263)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4466990,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,13:53,BRONX,10473,40.80934,-73.855316,"(40.80934, -73.855316)",GILDERSLEEVE AVENUE,SOUND VIEW AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4474014,,,,, +10/14/2021,15:43,BROOKLYN,11206,40.702159,-73.9493782,"(40.702159, -73.9493782)",HARRISON AVENUE,WALTON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4467229,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:15,QUEENS,11368,40.7515446,-73.8708432,"(40.7515446, -73.8708432)",JUNCTION BOULEVARD,37 AVENUE,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4468384,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,16:25,QUEENS,11373,40.7361537,-73.8675461,"(40.7361537, -73.8675461)",94 STREET,57 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4470450,Sedan,Sedan,,, +10/13/2021,19:00,QUEENS,11367,40.7182414,-73.8143592,"(40.7182414, -73.8143592)",,,147-22 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466826,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,15:10,,,40.6842575,-73.8151371,"(40.6842575, -73.8151371)",127 STREET,109 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469629,Sedan,,,, +10/21/2021,9:33,MANHATTAN,10065,40.7618573,-73.9634255,"(40.7618573, -73.9634255)",2 AVENUE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470801,Sedan,Bus,,, +10/24/2021,3:25,BROOKLYN,11234,40.6327553,-73.9298351,"(40.6327553, -73.9298351)",KINGS HIGHWAY,AVENUE H,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470496,Sedan,Bike,,, +10/12/2021,5:00,STATEN ISLAND,10305,40.6127258,-74.0714116,"(40.6127258, -74.0714116)",TOMPKINS AVENUE,CLIFTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467869,Sedan,,,, +10/15/2021,1:00,QUEENS,11436,40.6833421,-73.804323,"(40.6833421, -73.804323)",LINDEN BOULEVARD,139 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4467345,Sedan,Sedan,,, +10/15/2021,17:00,QUEENS,11419,40.6872266,-73.8216157,"(40.6872266, -73.8216157)",LIBERTY AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468007,Sedan,,,, +10/17/2021,12:00,QUEENS,11379,40.7129248,-73.886432,"(40.7129248, -73.886432)",,,66-61 69 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4468001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/20/2021,0:13,QUEENS,11102,40.7681128,-73.9203314,"(40.7681128, -73.9203314)",31 STREET,28 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470765,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/10/2021,1:13,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4467600,Sedan,Sedan,Sedan,, +10/16/2021,10:45,,,40.6293701,-74.0087544,"(40.6293701, -74.0087544)",66 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467605,Sedan,Sedan,,, +10/24/2021,8:51,QUEENS,11377,40.7555312,-73.9061902,"(40.7555312, -73.9061902)",55 STREET,32 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470675,Sedan,E-Scooter,,, +10/14/2021,18:01,,,40.6365488,-73.9258318,"(40.6365488, -73.9258318)",KINGS HIGHWAY,EAST 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467160,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,18:30,BROOKLYN,11207,40.6656095,-73.899075,"(40.6656095, -73.899075)",DUMONT AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469233,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,18:33,,,40.5991666,-74.123194,"(40.5991666, -74.123194)",MANOR ROAD,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467737,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,12:00,BROOKLYN,11201,40.6960346,-73.9845292,"(40.6960346, -73.9845292)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469928,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/16/2021,18:00,,,40.7079805,-73.8018557,"(40.7079805, -73.8018557)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468302,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,18:20,BRONX,10467,40.880467,-73.8838318,"(40.880467, -73.8838318)",JEROME AVENUE,WEST MOSHOLU PARKWAY NORTH,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4468416,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,8:50,,,40.7392269,-73.8150929,"(40.7392269, -73.8150929)",HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467906,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,0:47,BROOKLYN,11228,40.627136,-74.01448,"(40.627136, -74.01448)",,,7214 FORT HAMILTON PARKWAY,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4473199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,13:02,BROOKLYN,11207,40.6770121,-73.8875507,"(40.6770121, -73.8875507)",,,2890 ATLANTIC AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4467250,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,14:43,,,40.6868244,-73.9388034,"(40.6868244, -73.9388034)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing Too Closely,,,,4468129,Moped,Sedan,,, +10/25/2021,4:56,QUEENS,11415,40.7051271,-73.8281825,"(40.7051271, -73.8281825)",METROPOLITAN AVENUE,124 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4470704,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/17/2021,0:06,QUEENS,11429,40.7123213,-73.7320087,"(40.7123213, -73.7320087)",HEMPSTEAD AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467801,Sedan,,,, +10/20/2021,13:20,QUEENS,11433,40.7059858,-73.7863818,"(40.7059858, -73.7863818)",,,172-24 93 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469246,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,13:41,MANHATTAN,10128,40.7808011,-73.9546299,"(40.7808011, -73.9546299)",EAST 88 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467026,Sedan,Sedan,,, +11/02/2021,2:00,,,40.747158,-73.735435,"(40.747158, -73.735435)",DOUGLASTON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4473229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/13/2021,15:00,BROOKLYN,11208,40.6679546,-73.8700642,"(40.6679546, -73.8700642)",LINDEN BOULEVARD,EUCLID AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467261,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,16:15,STATEN ISLAND,10308,40.5597167,-74.1456539,"(40.5597167, -74.1456539)",CORBIN AVENUE,NAHANT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469751,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,20:35,,,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4519367,Bus,,,, +10/22/2021,10:25,BROOKLYN,11237,40.7035438,-73.9223309,"(40.7035438, -73.9223309)",IRVING AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469799,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +10/13/2021,21:00,QUEENS,11433,40.6929712,-73.7802385,"(40.6929712, -73.7802385)",SAYRES AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4467208,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,19:00,QUEENS,11434,40.6596509,-73.7738282,"(40.6596509, -73.7738282)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468568,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/12/2021,15:00,BRONX,10451,40.8255779,-73.9184596,"(40.8255779, -73.9184596)",MORRIS AVENUE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4466810,Station Wagon/Sport Utility Vehicle,Van,,, +10/19/2021,3:09,,,40.7700627,-73.9180799,"(40.7700627, -73.9180799)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470142,Sedan,Sedan,,, +10/19/2021,18:14,BROOKLYN,11226,40.6387754,-73.9600916,"(40.6387754, -73.9600916)",DITMAS AVENUE,EAST 19 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4469132,Sedan,Bike,,, +10/16/2021,7:06,QUEENS,11435,40.690874,-73.799456,"(40.690874, -73.799456)",,,147-22 109 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467975,Sedan,,,, +10/17/2021,16:40,BRONX,10453,40.8574841,-73.9096686,"(40.8574841, -73.9096686)",UNIVERSITY AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468262,Sedan,Motorbike,,, +10/11/2021,20:40,BROOKLYN,11239,40.650783,-73.8733915,"(40.650783, -73.8733915)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468169,Sedan,Sedan,,, +10/17/2021,12:30,MANHATTAN,10030,40.8162004,-73.9420661,"(40.8162004, -73.9420661)",,,176 WEST 137 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469000,Sedan,,,, +10/16/2021,11:49,QUEENS,11354,40.7604644,-73.8265417,"(40.7604644, -73.8265417)",ROOSEVELT AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467647,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:31,QUEENS,11368,40.758306,-73.8556084,"(40.758306, -73.8556084)",NORTHERN BOULEVARD,114 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469378,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,20:00,BROOKLYN,11226,40.6515468,-73.9525627,"(40.6515468, -73.9525627)",MARTENSE STREET,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470266,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,19:50,BROOKLYN,11232,40.6485332,-74.0175102,"(40.6485332, -74.0175102)",51 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470103,Sedan,,,, +10/13/2021,7:30,BROOKLYN,11204,40.625185,-73.9911249,"(40.625185, -73.9911249)",,,1608 59 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466731,Sedan,,,, +10/22/2021,8:06,,,40.6207672,-74.1638808,"(40.6207672, -74.1638808)",,,271 REGIS DRIVE,1,0,1,0,0,0,0,0,Glare,,,,,4469837,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,12:00,QUEENS,11413,40.6815783,-73.7365642,"(40.6815783, -73.7365642)",,,230-23 130 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467933,Sedan,,,, +10/18/2021,15:00,QUEENS,11385,40.7126973,-73.9005944,"(40.7126973, -73.9005944)",FRESH POND ROAD,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4468678,Station Wagon/Sport Utility Vehicle,Bike,,, +10/14/2021,13:50,QUEENS,11101,40.751386,-73.9370014,"(40.751386, -73.9370014)",,,28-01 41 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467118,Box Truck,Sedan,,, +11/02/2021,13:33,STATEN ISLAND,10306,40.572422,-74.14111,"(40.572422, -74.14111)",RICHMOND ROAD,LIGHTHOUSE AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4473817,Sedan,Bike,,, +10/22/2021,9:00,MANHATTAN,10032,40.8360046,-73.9465624,"(40.8360046, -73.9465624)",,,835 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470075,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,15:40,,,40.60729,-74.14086,"(40.60729, -74.14086)",WOOLLEY AVENUE,SOUTH GANNON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4473986,Station Wagon/Sport Utility Vehicle,engine,,, +10/15/2021,14:47,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467573,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,7:00,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473509,Tractor Truck Gasoline,Box Truck,,, +10/23/2021,8:55,BROOKLYN,11203,40.6516832,-73.9298648,"(40.6516832, -73.9298648)",,,5012 CHURCH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470281,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,23:15,,,40.828068,-73.87298,"(40.828068, -73.87298)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4473602,Sedan,,,, +10/15/2021,12:18,STATEN ISLAND,10310,40.6286167,-74.1116191,"(40.6286167, -74.1116191)",,,164 MORRISON AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4468434,Pick-up Truck,Sedan,,, +10/16/2021,12:15,BRONX,10466,40.8926575,-73.8603296,"(40.8926575, -73.8603296)",,,636 EAST 231 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468448,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,11:08,BROOKLYN,11206,40.7010703,-73.9427423,"(40.7010703, -73.9427423)",,,724 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468968,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,17:40,BROOKLYN,11238,40.6808814,-73.9632932,"(40.6808814, -73.9632932)",SAINT JAMES PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468114,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,18:29,MANHATTAN,10023,40.7723005,-73.9862373,"(40.7723005, -73.9862373)",WEST 62 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469611,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/14/2021,21:23,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467493,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,1:45,QUEENS,11354,40.7643501,-73.8259432,"(40.7643501, -73.8259432)",NORTHERN BOULEVARD,BOWNE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,10:45,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468833,Sedan,Sedan,,, +10/19/2021,2:10,,,40.8231016,-73.8696902,"(40.8231016, -73.8696902)",WESTCHESTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468715,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/21/2021,10:20,,,40.6060307,-73.9870242,"(40.6060307, -73.9870242)",STILLWELL AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469479,Sedan,,,, +10/20/2021,17:45,QUEENS,11693,40.5880792,-73.8063447,"(40.5880792, -73.8063447)",ROCKAWAY BEACH BOULEVARD,BEACH 80 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469571,Sedan,Sedan,,, +10/16/2021,7:35,QUEENS,11426,40.7344418,-73.7217767,"(40.7344418, -73.7217767)",HILLSIDE AVENUE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467669,Sedan,Sedan,,, +10/20/2021,22:35,,,40.7096466,-73.9919745,"(40.7096466, -73.9919745)",MANHATTAN BRIDGE,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469346,Sedan,Sedan,,, +10/20/2021,12:30,BROOKLYN,11219,40.6384836,-73.9899681,"(40.6384836, -73.9899681)",,,1249 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469439,Sedan,,,, +10/13/2021,9:51,BROOKLYN,11219,40.6380328,-73.9925704,"(40.6380328, -73.9925704)",12 AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467043,Box Truck,Sedan,,, +10/18/2021,23:10,BROOKLYN,11249,40.704257,-73.967208,"(40.704257, -73.967208)",KENT AVENUE,CLYMER STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4468583,Tow Truck / Wrecker,Sedan,,, +10/17/2021,9:50,,,40.590441,-74.1329066,"(40.590441, -74.1329066)",Coryllos Lane,Bucky Drive,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469100,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,0:00,QUEENS,11361,40.7657379,-73.7623707,"(40.7657379, -73.7623707)",221 STREET,40 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4469214,Sedan,,,, +10/19/2021,8:52,MANHATTAN,10018,40.7528955,-73.9892442,"(40.7528955, -73.9892442)",WEST 37 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469013,Tractor Truck Diesel,Sedan,,, +10/18/2021,21:31,MANHATTAN,10036,40.7573878,-73.9822554,"(40.7573878, -73.9822554)",WEST 46 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4468646,Station Wagon/Sport Utility Vehicle,Bike,,, +04/11/2022,15:26,,,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4519546,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/15/2021,23:50,BROOKLYN,11230,40.6094168,-73.9676868,"(40.6094168, -73.9676868)",OCEAN PARKWAY,AVENUE P,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467620,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,14:38,,,40.7261868,-73.7352341,"(40.7261868, -73.7352341)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4467990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,8:00,BROOKLYN,11208,40.6728582,-73.871302,"(40.6728582, -73.871302)",SUTTER AVENUE,EUCLID AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470465,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/02/2021,6:00,QUEENS,11433,40.69719,-73.7872,"(40.69719, -73.7872)",,,108-35 167 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474116,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/25/2021,0:00,QUEENS,11412,40.6978719,-73.8021857,"(40.6978719, -73.8021857)",,,180-66 LIBERTY AVENUE,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4470577,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,4:34,BROOKLYN,11213,40.66523,-73.931465,"(40.66523, -73.931465)",UTICA AVENUE,CROWN STREET,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4473999,Sedan,,,, +10/20/2021,7:00,BRONX,10456,40.8189018,-73.9031021,"(40.8189018, -73.9031021)",WESTCHESTER AVENUE,EAST 158 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469158,Sedan,,,, +10/13/2021,18:30,MANHATTAN,10019,40.7651117,-73.9852857,"(40.7651117, -73.9852857)",,,314 WEST 54 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466789,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +10/12/2021,17:10,BRONX,10468,40.8625769,-73.9001138,"(40.8625769, -73.9001138)",,,17 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467123,VMS,,,, +10/14/2021,0:00,QUEENS,11378,40.7203981,-73.9053267,"(40.7203981, -73.9053267)",,,60-71 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468727,Sedan,,,, +10/13/2021,21:00,,,40.6317495,-74.1512261,"(40.6317495, -74.1512261)",WALKER STREET,LAKE AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Traffic Control Disregarded,Unspecified,,,4467595,Sedan,Sedan,Sedan,, +10/18/2021,17:15,MANHATTAN,10035,40.8012354,-73.9418153,"(40.8012354, -73.9418153)",EAST 119 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468732,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,12:57,,,40.719566,-73.94561,"(40.719566, -73.94561)",MEEKER AVENUE,GRAHAM AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4473996,Motorcycle,Van,,, +07/08/2022,7:48,MANHATTAN,10029,40.786377,-73.95058,"(40.786377, -73.95058)",,,1500 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4544693,Sedan,Bus,,, +10/23/2021,9:45,BROOKLYN,11208,40.6772295,-73.8823584,"(40.6772295, -73.8823584)",,,281 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470479,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,5:54,BROOKLYN,11216,40.6802409,-73.9467485,"(40.6802409, -73.9467485)",FULTON STREET,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470371,Bus,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,19:00,BROOKLYN,11208,40.6615359,-73.8788354,"(40.6615359, -73.8788354)",CLEVELAND STREET,STANLEY AVENUE,,1,0,1,0,0,0,0,0,,,,,,4467255,,,,, +10/18/2021,1:40,QUEENS,11001,40.7276351,-73.7085711,"(40.7276351, -73.7085711)",JAMAICA AVENUE,256 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468151,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,12:45,BROOKLYN,11249,40.7159289,-73.9619104,"(40.7159289, -73.9619104)",METROPOLITAN AVENUE,BERRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468335,Box Truck,Sedan,,, +10/13/2021,9:00,BROOKLYN,11219,40.6259834,-74.0015202,"(40.6259834, -74.0015202)",13 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,17:30,BROOKLYN,11208,40.686325,-73.8764305,"(40.686325, -73.8764305)",,,72 CHESTNUT STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468166,Bike,,,, +10/19/2021,16:20,QUEENS,11422,40.6662382,-73.7295725,"(40.6662382, -73.7295725)",,,137-51 HOOK CREEK BOULEVARD,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4468894,Sedan,,,, +10/13/2021,9:00,QUEENS,11104,40.7414788,-73.9218825,"(40.7414788, -73.9218825)",47 AVENUE,43 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467192,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:47,BROOKLYN,11211,40.7142092,-73.9490105,"(40.7142092, -73.9490105)",,,595 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467319,PK,Sedan,,, +10/04/2021,18:30,MANHATTAN,10001,40.7520589,-74.0009817,"(40.7520589, -74.0009817)",10 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466485,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/20/2021,22:58,BRONX,10466,40.8902422,-73.8602985,"(40.8902422, -73.8602985)",EAST 228 STREET,LOWERRE PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469560,Sedan,Sedan,,, +10/12/2021,8:15,BRONX,10465,40.8428463,-73.8256764,"(40.8428463, -73.8256764)",BRUCKNER EXPRESSWAY,COUNTRY CLUB ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466557,Sedan,Sedan,,, +10/22/2021,20:04,BROOKLYN,11235,40.576883,-73.952875,"(40.576883, -73.952875)",ORIENTAL BOULEVARD,WEST END AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469977,Sedan,Sedan,,, +10/16/2021,21:00,QUEENS,11373,40.7433116,-73.8745041,"(40.7433116, -73.8745041)",91 PLACE,43 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468023,Pick-up Truck,,,, +10/16/2021,14:57,MANHATTAN,10120,40.7499908,-73.9886538,"(40.7499908, -73.9886538)",,,112 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467844,Van,Bus,,, +10/24/2021,15:45,STATEN ISLAND,10306,40.5578534,-74.1266987,"(40.5578534, -74.1266987)",HYLAN BOULEVARD,CHESTERTON AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4470382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,16:45,BROOKLYN,11234,40.6092577,-73.9368,"(40.6092577, -73.9368)",,,3101 FILLMORE AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4469464,Sedan,,,, +10/15/2021,15:15,BRONX,10467,40.8701571,-73.8643661,"(40.8701571, -73.8643661)",,,3055 WALLACE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4468912,,,,, +10/16/2021,6:05,,,40.7396319,-73.8248133,"(40.7396319, -73.8248133)",REEVES AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4467584,Sedan,,,, +10/16/2021,17:04,QUEENS,11413,40.6656356,-73.7581603,"(40.6656356, -73.7581603)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467743,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,5:37,BROOKLYN,11212,40.6601785,-73.9034192,"(40.6601785, -73.9034192)",NEWPORT STREET,CHRISTOPHER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470174,Sedan,Sedan,,, +10/20/2021,14:45,BRONX,10456,40.8307631,-73.8994421,"(40.8307631, -73.8994421)",,,775 EAST 169 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470746,Sedan,,,, +10/13/2021,6:30,QUEENS,11378,40.7286128,-73.8871994,"(40.7286128, -73.8871994)",57 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466725,Sedan,3-Door,,, +10/15/2021,18:50,QUEENS,11427,40.7292666,-73.7443359,"(40.7292666, -73.7443359)",,,88-14 SPRINGFIELD BOULEVARD,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4467487,Station Wagon/Sport Utility Vehicle,Bike,,, +10/19/2021,19:25,,,40.6735603,-73.9362632,"(40.6735603, -73.9362632)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470360,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/17/2021,22:41,,,40.6308212,-73.886356,"(40.6308212, -73.886356)",SHORE PARKWAY,ROCKAWAY PARKWAY,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4469444,Bus,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,18:30,BROOKLYN,11211,40.7112138,-73.9633775,"(40.7112138, -73.9633775)",SOUTH 5 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467223,Sedan,Tractor Truck Diesel,,, +10/15/2021,15:30,,,40.7130137,-73.9080103,"(40.7130137, -73.9080103)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467536,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,8:00,BRONX,10473,40.8205869,-73.8798213,"(40.8205869, -73.8798213)",,,880 COLGATE AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4470298,Sedan,Sedan,Sedan,Sedan, +10/22/2021,13:07,MANHATTAN,10007,40.7143839,-74.0101291,"(40.7143839, -74.0101291)",MURRAY STREET,WEST BROADWAY,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469867,Sedan,E-Scooter,,, +11/02/2021,20:57,,,40.77286,-73.98955,"(40.77286, -73.98955)",WEST 61 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473773,Station Wagon/Sport Utility Vehicle,Bike,,, +10/15/2021,21:37,QUEENS,11377,40.750416,-73.8977266,"(40.750416, -73.8977266)",35 AVENUE,65 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467548,Bike,,,, +04/22/2021,8:01,MANHATTAN,10035,40.8036981,-73.9379121,"(40.8036981, -73.9379121)",EAST 124 STREET,LEXINGTON AVENUE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4410387,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,4:00,MANHATTAN,10075,40.7749592,-73.9588943,"(40.7749592, -73.9588943)",EAST 79 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468247,Sedan,,,, +10/17/2021,0:10,,,40.6264564,-73.9179932,"(40.6264564, -73.9179932)",RALPH AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467756,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,17:00,BROOKLYN,11234,40.6194453,-73.9164856,"(40.6194453, -73.9164856)",,,6302 AVENUE N,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4469077,Sedan,Sedan,,, +10/20/2021,6:44,BROOKLYN,11210,40.6358167,-73.9534242,"(40.6358167, -73.9534242)",BEDFORD AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,10:57,,,40.7066776,-73.7914647,"(40.7066776, -73.7914647)",168 PLACE,,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4467128,Sedan,Sedan,,, +10/17/2021,2:35,MANHATTAN,10001,40.7468745,-73.9903213,"(40.7468745, -73.9903213)",,,105 WEST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467839,Sedan,,,, +10/13/2021,14:23,BRONX,10472,40.832562,-73.8694212,"(40.832562, -73.8694212)",EAST 172 STREET,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467476,Sedan,,,, +10/20/2021,15:45,BROOKLYN,11218,40.6540031,-73.9799259,"(40.6540031, -73.9799259)",20 STREET,TERRACE PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,16:07,BROOKLYN,11238,40.68202,-73.9593227,"(40.68202, -73.9593227)",,,1061 FULTON STREET,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4469592,Sedan,Bike,,, +10/22/2021,15:53,MANHATTAN,10013,40.7236259,-74.0047875,"(40.7236259, -74.0047875)",WATTS STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4469997,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,14:15,BRONX,10455,40.8160668,-73.9176439,"(40.8160668, -73.9176439)",EAST 149 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467722,Sedan,Ambulance,,, +10/22/2021,21:00,,,40.8451195,-73.9066204,"(40.8451195, -73.9066204)",MONROE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4470810,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,8:25,BRONX,10469,40.865128,-73.838875,"(40.865128, -73.838875)",ALLERTON AVENUE,KINGSLAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473564,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,19:48,QUEENS,11421,40.686443,-73.8626004,"(40.686443, -73.8626004)",78 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467659,Sedan,Sedan,,, +10/23/2021,19:59,BRONX,10462,40.8367372,-73.8482268,"(40.8367372, -73.8482268)",,,1429 PARKER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,8:41,QUEENS,11366,40.7271708,-73.7873849,"(40.7271708, -73.7873849)",181 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4469501,Bus,Station Wagon/Sport Utility Vehicle,,, +09/18/2021,14:31,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4458533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:28,,,40.838621,-73.9270738,"(40.838621, -73.9270738)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4469852,Box Truck,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +10/16/2021,9:30,BRONX,10472,40.8258582,-73.8774526,"(40.8258582, -73.8774526)",,,1056 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467706,Sedan,,,, +10/20/2021,8:01,QUEENS,11429,40.7140289,-73.7357173,"(40.7140289, -73.7357173)",SPRINGFIELD BOULEVARD,102 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469180,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,13:30,QUEENS,11432,40.7122849,-73.7853511,"(40.7122849, -73.7853511)",HILLSIDE AVENUE,178 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469491,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,9:00,QUEENS,11420,40.66611,-73.82712,"(40.66611, -73.82712)",114 PLACE,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473479,Sedan,Sedan,,, +10/20/2021,21:29,MANHATTAN,10014,40.7284348,-74.0027818,"(40.7284348, -74.0027818)",AVENUE OF THE AMERICAS,BEDFORD STREET,,0,0,0,0,0,0,0,0,,,,,,4470184,,,,, +10/12/2021,8:14,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467187,Sedan,Box Truck,,, +07/05/2022,22:11,,,40.60912,-73.99356,"(40.60912, -73.99356)",20 AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4545086,E-Bike,,,, +10/18/2021,13:36,MANHATTAN,10010,40.7418553,-73.9901193,"(40.7418553, -73.9901193)",,,17 WEST 23 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468742,Sedan,MO PED,,, +10/13/2021,8:02,,,40.678379,-73.965501,"(40.678379, -73.965501)",,,UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,Failure to Keep Right,,,,4470343,Bus,Bus,,, +10/15/2021,9:04,BROOKLYN,11234,40.6279869,-73.9237248,"(40.6279869, -73.9237248)",,,1221 EAST 54 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467360,Sedan,Suburban,,, +10/18/2021,16:43,BROOKLYN,11230,40.6170038,-73.9691095,"(40.6170038, -73.9691095)",OCEAN PARKWAY,AVENUE M,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469064,Sedan,Sedan,,, +10/15/2021,17:29,BROOKLYN,11206,40.7102847,-73.9351784,"(40.7102847, -73.9351784)",BOGART STREET,STAGG STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468087,Sedan,Sedan,,, +10/24/2021,10:36,MANHATTAN,10012,40.7243643,-73.9942102,"(40.7243643, -73.9942102)",,,284 MOTT STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470609,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:40,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469393,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,21:25,,,40.8105319,-73.9620549,"(40.8105319, -73.9620549)",BROADWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Traffic Control Disregarded,,,,4469428,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,5:41,QUEENS,11372,40.7492579,-73.8889763,"(40.7492579, -73.8889763)",77 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,15:45,BROOKLYN,11234,40.6082027,-73.9207095,"(40.6082027, -73.9207095)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469196,Sedan,Sedan,,, +10/21/2021,13:40,BROOKLYN,11212,40.6680794,-73.9063887,"(40.6680794, -73.9063887)",,,447 STONE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4469859,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,14:40,BROOKLYN,11236,40.651157,-73.918144,"(40.651157, -73.918144)",REMSEN AVENUE,AVENUE A,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474084,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,3:15,,,40.5575146,-74.177419,"(40.5575146, -74.177419)",MCARTHUR AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469773,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +07/05/2022,11:13,BROOKLYN,11204,40.615578,-73.981155,"(40.615578, -73.981155)",,,2161 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544713,Sedan,,,, +07/28/2021,16:30,MANHATTAN,10012,,,,,,240 MULBERRY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4446298,Sedan,,,, +10/02/2021,17:15,QUEENS,11429,40.7030203,-73.7277686,"(40.7030203, -73.7277686)",MURDOCK AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466597,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,16:30,,,40.839908,-73.9360834,"(40.839908, -73.9360834)",RIVERSIDE DRIVE,WEST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469713,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,0:25,,,40.7110083,-74.0036143,"(40.7110083, -74.0036143)",GOLD STREET,FRANKFORT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470655,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,21:32,,,40.8414961,-73.9248479,"(40.8414961, -73.9248479)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4469426,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/24/2021,20:20,BRONX,10468,40.8574211,-73.8999552,"(40.8574211, -73.8999552)",GRAND CONCOURSE,EAST 183 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4470641,Sedan,Taxi,Sedan,Sedan, +10/18/2021,19:30,,,40.6850764,-73.9778938,"(40.6850764, -73.9778938)",ASHLAND PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4468797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,18:22,,,40.6689987,-73.8047976,"(40.6689987, -73.8047976)",133 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,13:38,STATEN ISLAND,10312,40.5588868,-74.1976949,"(40.5588868, -74.1976949)",ARDEN AVENUE,ARTHUR KILL ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4469788,Sedan,Sedan,,, +10/18/2021,18:40,STATEN ISLAND,10305,40.5755806,-74.0833411,"(40.5755806, -74.0833411)",CAPODANNO BOULEVARD,IONA STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4469104,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/15/2021,7:30,,,40.7401716,-73.976147,"(40.7401716, -73.976147)",EAST 28 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467786,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,9:45,,,40.7036356,-73.7523203,"(40.7036356, -73.7523203)",112 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469872,Sedan,,,, +10/22/2021,15:30,QUEENS,11433,40.6912346,-73.7940011,"(40.6912346, -73.7940011)",156 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469983,Sedan,Sedan,,, +10/23/2021,7:36,,,40.8322542,-73.8845195,"(40.8322542, -73.8845195)",SHERIDAN EXPRESSWAY,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470294,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/17/2021,0:20,BROOKLYN,11223,40.6078422,-73.9619648,"(40.6078422, -73.9619648)",QUENTIN ROAD,CONEY ISLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468236,Sedan,Sedan,,, +10/15/2021,4:15,QUEENS,11432,40.7106529,-73.7894266,"(40.7106529, -73.7894266)",,,88-11 172 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467214,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,17:15,MANHATTAN,10075,40.7727316,-73.9586563,"(40.7727316, -73.9586563)",,,1336 3 AVENUE,1,0,0,0,1,0,0,0,Driver Inexperience,Following Too Closely,,,,4468051,Station Wagon/Sport Utility Vehicle,Bike,,, +10/13/2021,20:00,BROOKLYN,11211,40.7150907,-73.9605034,"(40.7150907, -73.9605034)",,,261 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4466846,Bus,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,14:50,,,40.6255678,-74.1765696,"(40.6255678, -74.1765696)",GOETHALS ROAD NORTH,FOREST AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468369,Sedan,Sedan,,, +10/21/2021,12:25,BRONX,10462,40.8441437,-73.8637999,"(40.8441437, -73.8637999)",VANNEST AVENUE,HOLLAND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4469508,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/09/2021,23:17,QUEENS,11372,40.7550297,-73.8726917,"(40.7550297, -73.8726917)",JUNCTION BOULEVARD,34 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466763,Sedan,Bike,,, +10/20/2021,21:30,,,40.6360161,-74.1590276,"(40.6360161, -74.1590276)",,,33 BUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,14:00,STATEN ISLAND,10312,40.5308713,-74.193986,"(40.5308713, -74.193986)",LUTEN AVENUE,AMBOY ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467325,Sedan,Sedan,,, +10/16/2021,15:40,QUEENS,11434,40.6730095,-73.7880875,"(40.6730095, -73.7880875)",ROCKAWAY BOULEVARD,150 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468193,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,19:30,,,40.868813,-73.8382232,"(40.868813, -73.8382232)",GUNTHER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4470406,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/18/2021,6:45,QUEENS,11415,40.7120013,-73.8254559,"(40.7120013, -73.8254559)",QUEENS BOULEVARD,HOOVER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468488,Sedan,Sedan,,, +10/15/2021,8:25,,,40.6448126,-73.9746424,"(40.6448126, -73.9746424)",CHURCH AVENUE,OCEAN PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467923,Sedan,Bike,,, +10/19/2021,15:15,BRONX,10458,40.8571285,-73.8807926,"(40.8571285, -73.8807926)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:25,BRONX,10458,40.8571285,-73.8807926,"(40.8571285, -73.8807926)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,16:50,QUEENS,11368,40.7577576,-73.8628071,"(40.7577576, -73.8628071)",NORTHERN BOULEVARD,106 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470042,Sedan,,,, +11/02/2021,13:54,BROOKLYN,11219,40.63885,-73.99695,"(40.63885, -73.99695)",FORT HAMILTON PARKWAY,48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473543,Sedan,Sedan,,, +10/22/2021,14:42,BRONX,10456,40.8216161,-73.9084537,"(40.8216161, -73.9084537)",,,850 EAGLE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470626,Sedan,Bus,,, +10/23/2021,18:55,QUEENS,11372,40.7568499,-73.8731105,"(40.7568499, -73.8731105)",NORTHERN BOULEVARD,95 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4470206,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,14:10,QUEENS,11419,40.6853847,-73.8197276,"(40.6853847, -73.8197276)",107 AVENUE,123 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466863,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,14:50,QUEENS,11354,40.7604644,-73.8265417,"(40.7604644, -73.8265417)",ROOSEVELT AVENUE,UNION STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4467377,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/02/2021,7:50,QUEENS,11372,40.74916,-73.88991,"(40.74916, -73.88991)",76 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473363,Taxi,,,, +10/03/2021,15:48,MANHATTAN,10027,40.816286,-73.9568076,"(40.816286, -73.9568076)",,,545 WEST 126 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470331,Taxi,Sedan,,, +10/24/2021,14:55,MANHATTAN,10017,40.7536248,-73.9694324,"(40.7536248, -73.9694324)",EAST 48 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4470418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,14:20,,,40.5889959,-73.8162865,"(40.5889959, -73.8162865)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468530,Sedan,Sedan,,, +10/18/2021,17:25,BRONX,10451,40.8137456,-73.9313928,"(40.8137456, -73.9313928)",EAST 138 STREET,EXTERIOR STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4468683,Bike,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,11:35,BROOKLYN,11234,40.6098096,-73.9224976,"(40.6098096, -73.9224976)",FLATBUSH AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467310,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,21:30,STATEN ISLAND,10307,40.5183148,-74.2399348,"(40.5183148, -74.2399348)",,,5066 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4469820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,12:39,BRONX,10466,40.8878802,-73.8502708,"(40.8878802, -73.8502708)",PAULDING AVENUE,EAST 229 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467970,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,1:30,BROOKLYN,11212,40.6653475,-73.9223213,"(40.6653475, -73.9223213)",SUTTER AVENUE,RALPH AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4469314,Pick-up Truck,Sedan,,, +11/02/2021,18:25,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473648,Sedan,Bike,,, +10/20/2021,5:00,QUEENS,11436,40.6863048,-73.7939082,"(40.6863048, -73.7939082)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469476,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,14:45,BROOKLYN,11226,40.653777,-73.9561651,"(40.653777, -73.9561651)",BEDFORD AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,17:25,,,40.5931559,-74.1626105,"(40.5931559, -74.1626105)",RICHMOND AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467392,Bus,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,17:30,STATEN ISLAND,10312,40.5465306,-74.1804303,"(40.5465306, -74.1804303)",ARDEN AVENUE,DRUMGOOLE ROAD EAST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469181,Station Wagon/Sport Utility Vehicle,PK,,, +10/23/2021,13:45,BROOKLYN,11249,40.7206384,-73.962451,"(40.7206384, -73.962451)",,,34 NORTH 7 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470057,Sedan,,,, +10/12/2021,19:00,BRONX,10474,40.8129133,-73.8852376,"(40.8129133, -73.8852376)",,,617 BRYANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,22:17,,,40.762288,-73.9723632,"(40.762288, -73.9723632)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470010,Bus,Taxi,,, +08/10/2021,22:27,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446412,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,16:20,,,40.6041,-74.06908,"(40.6041, -74.06908)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,7:25,BRONX,10467,40.8728912,-73.8806921,"(40.8728912, -73.8806921)",BAINBRIDGE AVENUE,EAST MOSHOLU PARKWAY NORTH,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470778,Sedan,E-Bike,,, +10/21/2021,7:50,BROOKLYN,11207,40.6828007,-73.9063754,"(40.6828007, -73.9063754)",BUSHWICK AVENUE,FURMAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469625,Lift Boom,Sedan,,, +10/15/2021,16:29,BRONX,10465,40.8358453,-73.8244154,"(40.8358453, -73.8244154)",THROGS NECK EXPRESSWAY,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467691,Van,Van,,, +10/18/2021,19:17,BROOKLYN,11208,40.6681458,-73.8819667,"(40.6681458, -73.8819667)",ELTON STREET,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468636,Taxi,Sedan,,, +10/19/2021,20:19,BROOKLYN,11206,40.7030338,-73.946998,"(40.7030338, -73.946998)",,,45 THROOP AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468961,Sedan,Sedan,,, +10/13/2021,9:10,STATEN ISLAND,10305,40.598935,-74.0637592,"(40.598935, -74.0637592)",MCCLEAN AVENUE,LILY POND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466994,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,18:30,STATEN ISLAND,10312,40.5585792,-74.1691975,"(40.5585792, -74.1691975)",,,3295 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4469374,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/14/2021,1:35,,,40.5985172,-73.979849,"(40.5985172, -73.979849)",WEST 8 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467113,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,6:30,QUEENS,11419,40.6864517,-73.8158161,"(40.6864517, -73.8158161)",128 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468005,Sedan,Sedan,,, +10/19/2021,14:45,,,40.7262166,-73.83871,"(40.7262166, -73.83871)",GRAND CENTRAL PARKWAY,69 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468901,Sedan,Sedan,,, +10/22/2021,16:30,BRONX,10452,40.8376744,-73.9192145,"(40.8376744, -73.9192145)",EAST 169 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470201,Sedan,Sedan,,, +10/20/2021,16:25,MANHATTAN,10075,40.7750017,-73.9630861,"(40.7750017, -73.9630861)",EAST 77 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469640,Taxi,,,, +10/15/2021,10:35,BRONX,10467,40.8654692,-73.8654013,"(40.8654692, -73.8654013)",ALLERTON AVENUE,HOLLAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468094,Sedan,,,, +10/14/2021,15:18,BRONX,10458,40.8706521,-73.8821823,"(40.8706521, -73.8821823)",,,340 EAST MOSHOLU PARKWAY SOUTH,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4467404,Sedan,Sedan,,, +10/16/2021,21:27,BROOKLYN,11236,40.6407135,-73.8921404,"(40.6407135, -73.8921404)",AVENUE L,EAST 101 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4468198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,14:28,QUEENS,11356,40.7816842,-73.8459383,"(40.7816842, -73.8459383)",COLLEGE POINT BOULEVARD,20 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470753,Pick-up Truck,Tractor Truck Diesel,,, +10/15/2021,8:00,,,40.6992649,-73.9148129,"(40.6992649, -73.9148129)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467558,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,9:15,BROOKLYN,11206,40.701026,-73.9426716,"(40.701026, -73.9426716)",,,726 BROADWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4466979,Sedan,E-Scooter,,, +11/01/2021,15:40,,,,,,THROGS NECK EXPRESSWAY,VETERANS MEMORIAL PARK,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473968,Sedan,Bus,,, +11/02/2021,20:25,BROOKLYN,11209,40.633892,-74.02428,"(40.633892, -74.02428)",,,342 OVINGTON AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4473434,Sedan,,,, +10/14/2021,7:53,BRONX,10468,40.8750588,-73.8872925,"(40.8750588, -73.8872925)",,,17 EAST 204 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468413,Bus,Sedan,,, +10/23/2021,21:49,BROOKLYN,11215,40.6699742,-73.9756962,"(40.6699742, -73.9756962)",8 AVENUE,2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470531,Ambulance,Sedan,,, +10/12/2021,21:26,,,40.7999853,-73.9448468,"(40.7999853, -73.9448468)",MADISON AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4466718,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,22:47,BROOKLYN,11226,40.6432398,-73.9626644,"(40.6432398, -73.9626644)",,,309 EAST 17 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4469337,Sedan,,,, +10/18/2021,15:30,BROOKLYN,11208,40.6685886,-73.8775501,"(40.6685886, -73.8775501)",ATKINS AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468631,Sedan,,,, +10/22/2021,4:52,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470714,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,20:20,BRONX,10451,40.8136659,-73.9312375,"(40.8136659, -73.9312375)",MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469431,Sedan,Box Truck,,, +08/10/2021,10:40,QUEENS,11004,40.744194,-73.7173,"(40.744194, -73.7173)",,,253-24 UNION TURNPIKE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445765,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/10/2021,12:20,MANHATTAN,10019,40.765007,-73.98866,"(40.765007, -73.98866)",,,411 WEST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445898,Box Truck,Taxi,,, +08/10/2021,17:45,BRONX,10456,40.836555,-73.903946,"(40.836555, -73.903946)",,,1385 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445814,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,0:03,BRONX,10454,40.80936,-73.928345,"(40.80936, -73.928345)",,,171 LINCOLN AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4446506,Motorcycle,,,, +08/09/2021,21:30,BRONX,10465,40.83554,-73.818054,"(40.83554, -73.818054)",LAYTON AVENUE,DEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446246,Station Wagon/Sport Utility Vehicle,Bus,,, +08/01/2021,9:00,MANHATTAN,10026,40.803833,-73.953964,"(40.803833, -73.953964)",,,243 WEST 116 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4446224,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,2:00,QUEENS,11373,40.746624,-73.886604,"(40.746624, -73.886604)",,,40-40 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445456,Sedan,Sedan,,, +08/10/2021,20:15,BROOKLYN,11212,40.658966,-73.9191,"(40.658966, -73.9191)",EAST 96 STREET,LENOX ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,20:34,BROOKLYN,11231,40.67675,-74.00296,"(40.67675, -74.00296)",,,709 HENRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445976,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,9:07,,,40.769325,-73.83635,"(40.769325, -73.83635)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445837,Station Wagon/Sport Utility Vehicle,Van,,, +08/10/2021,17:43,MANHATTAN,10065,40.767967,-73.96822,"(40.767967, -73.96822)",MADISON AVENUE,EAST 66 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446165,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,9:30,,,,,,NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4446307,Sedan,Box Truck,,, +08/05/2021,15:00,MANHATTAN,10036,40.759453,-73.99302,"(40.759453, -73.99302)",,,400 WEST 43 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446379,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,6:59,,,40.803585,-73.91552,"(40.803585, -73.91552)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445536,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/10/2021,17:00,,,40.60958,-74.0065,"(40.60958, -74.0065)",86 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4445847,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,7:30,STATEN ISLAND,10305,40.58657,-74.09206,"(40.58657, -74.09206)",HYLAN BOULEVARD,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446243,Sedan,,,, +08/10/2021,15:30,,,40.8382,-73.92371,"(40.8382, -73.92371)",WEST 168 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446288,Station Wagon/Sport Utility Vehicle,Bike,,, +08/10/2021,22:47,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4446073,Sedan,Motorcycle,,, +08/10/2021,6:50,STATEN ISLAND,10309,,,,,,818 Sheldon ave,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,16:15,BROOKLYN,11226,40.650757,-73.95071,"(40.650757, -73.95071)",,,2819 CHURCH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4445743,,,,, +08/10/2021,20:30,MANHATTAN,10019,40.762966,-73.9819,"(40.762966, -73.9819)",7 AVENUE,WEST 53 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445906,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,15:15,,,40.753387,-73.99631,"(40.753387, -73.99631)",WEST 34 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4445932,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,10:00,MANHATTAN,10033,40.852154,-73.93472,"(40.852154, -73.93472)",,,4320 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4445982,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,0:00,MANHATTAN,10002,40.715473,-73.98512,"(40.715473, -73.98512)",,,440 GRAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446010,Sedan,Taxi,,, +08/10/2021,13:27,QUEENS,11412,40.701706,-73.77067,"(40.701706, -73.77067)",,,183-69 BRINKERHOFF AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445688,Sedan,Sedan,,, +08/10/2021,11:00,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445636,Taxi,Sedan,,, +08/08/2021,3:31,BROOKLYN,11236,40.636284,-73.89782,"(40.636284, -73.89782)",,,1434 EAST 93 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4446335,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/04/2021,10:24,,,40.74595,-73.99802,"(40.74595, -73.99802)",8 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4446360,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,18:12,QUEENS,11373,40.738598,-73.87744,"(40.738598, -73.87744)",51 AVENUE,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4446404,Bike,,,, +08/10/2021,0:00,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445672,Sedan,Sedan,,, +08/10/2021,11:00,,,40.599907,-73.94664,"(40.599907, -73.94664)",AVENUE U,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4445639,Sedan,Sedan,,, +08/10/2021,20:30,,,40.89575,-73.86492,"(40.89575, -73.86492)",EAST 233 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446266,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,7:00,BROOKLYN,11222,40.725838,-73.942215,"(40.725838, -73.942215)",,,245 NASSAU AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445737,Sedan,,,, +08/10/2021,9:13,MANHATTAN,10019,40.768032,-73.99586,"(40.768032, -73.99586)",WEST 52 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4445577,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,12:07,MANHATTAN,10002,40.718536,-73.985344,"(40.718536, -73.985344)",,,86 CLINTON STREET,1,0,0,0,1,0,0,0,Pavement Slippery,,,,,4446008,Bike,,,, +08/10/2021,10:15,BROOKLYN,11226,40.64269,-73.95764,"(40.64269, -73.95764)",FLATBUSH AVENUE,CLARENDON ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445830,Sedan,Motorcycle,,, +08/10/2021,0:55,,,40.69426,-73.91036,"(40.69426, -73.91036)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445863,Sedan,Sedan,,, +08/10/2021,5:20,,,40.728516,-73.88428,"(40.728516, -73.88428)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4446034,Box Truck,Sedan,,, +08/10/2021,15:00,BRONX,10462,40.847996,-73.85838,"(40.847996, -73.85838)",,,1824 BOGART AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4445941,Sedan,,,, +08/10/2021,12:07,MANHATTAN,10002,40.718536,-73.985344,"(40.718536, -73.985344)",,,86 CLINTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446015,Bike,,,, +08/10/2021,0:00,BRONX,10474,40.81636,-73.891815,"(40.81636, -73.891815)",LAFAYETTE AVENUE,TIFFANY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445625,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,13:50,QUEENS,11356,40.784653,-73.84214,"(40.784653, -73.84214)",,,15-17 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445715,PICKUP,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,21:05,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",BROOKVILLE BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445798,Sedan,Sedan,,, +08/07/2021,16:57,BROOKLYN,11207,40.678017,-73.8978,"(40.678017, -73.8978)",,,66 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446328,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,19:05,BROOKLYN,11203,40.63944,-73.93489,"(40.63944, -73.93489)",TROY AVENUE,FOSTER AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4446443,Bike,,,, +08/10/2021,16:48,MANHATTAN,10001,40.752563,-73.99434,"(40.752563, -73.99434)",,,323 WEST 34 STREET,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4445931,Ambulance,,,, +07/19/2021,22:00,,,40.62633,-74.17498,"(40.62633, -74.17498)",,,2501 FOREST AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4446215,Sedan,,,, +08/10/2021,22:55,BROOKLYN,11234,40.62124,-73.929085,"(40.62124, -73.929085)",AVENUE M,EAST 48 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4446336,Sedan,Taxi,,, +08/10/2021,18:25,,,40.698246,-73.98055,"(40.698246, -73.98055)",NAVY STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4445744,Sedan,Bike,,, +08/10/2021,9:51,MANHATTAN,10018,40.754055,-73.99583,"(40.754055, -73.99583)",9 AVENUE,WEST 35 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446392,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,13:28,BRONX,10467,40.885693,-73.86165,"(40.885693, -73.86165)",WHITE PLAINS ROAD,EAST 222 STREET,,2,1,0,0,0,0,2,1,Unsafe Speed,Unspecified,,,,4445781,Minibike,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,18:54,BRONX,10467,40.885124,-73.859886,"(40.885124, -73.859886)",,,744 EAST 222 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446272,Taxi,Garbage or Refuse,,, +08/10/2021,7:15,BROOKLYN,11235,40.590397,-73.9519,"(40.590397, -73.9519)",AVENUE Y,EAST 18 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4445649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,20:44,,,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4446163,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,20:40,STATEN ISLAND,10304,40.61364,-74.08482,"(40.61364, -74.08482)",,,545 TARGEE STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445954,Sedan,Sedan,,, +08/10/2021,16:45,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445993,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,12:35,BROOKLYN,11225,40.661995,-73.94386,"(40.661995, -73.94386)",,,571 EAST NEW YORK AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446139,Sedan,Bike,,, +08/09/2021,16:36,,,,,,VERRAZANO BRIDGE UPPER,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4446258,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,0:00,BROOKLYN,11217,40.683178,-73.98346,"(40.683178, -73.98346)",,,272 WYCKOFF STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4445825,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/06/2021,21:00,MANHATTAN,10027,40.81119,-73.95044,"(40.81119, -73.95044)",,,2359 8 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446230,E-Bike,Sedan,,, +08/10/2021,0:00,,,,,,HOME LAWN STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445850,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,19:41,BROOKLYN,11231,40.681637,-73.99392,"(40.681637, -73.99392)",UNION STREET,SMITH STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4445788,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/10/2021,15:45,,,40.84023,-73.880104,"(40.84023, -73.880104)",EAST TREMONT AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445921,Sedan,,,, +07/24/2021,2:21,BROOKLYN,11207,40.688553,-73.91245,"(40.688553, -73.91245)",HALSEY STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446317,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,11:10,,,40.638695,-73.87859,"(40.638695, -73.87859)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445751,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,21:05,,,40.82326,-73.95277,"(40.82326, -73.95277)",BROADWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446182,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,5:00,BROOKLYN,11207,40.66879,-73.88839,"(40.66879, -73.88839)",BLAKE AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446344,Sedan,Sedan,,, +08/10/2021,21:39,,,40.70324,-73.91439,"(40.70324, -73.91439)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445874,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,21:00,BROOKLYN,11203,40.653305,-73.9385,"(40.653305, -73.9385)",,,552 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4445794,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,22:13,,,40.700245,-73.92089,"(40.700245, -73.92089)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445875,Sedan,Ambulance,,, +08/10/2021,13:00,,,40.769096,-73.833664,"(40.769096, -73.833664)",FARRINGTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445838,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/10/2021,17:00,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446235,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,2:30,QUEENS,11420,40.666138,-73.82422,"(40.666138, -73.82422)",NORTH CONDUIT AVENUE,117 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4445477,Sedan,Taxi,,, +08/10/2021,23:20,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,,4446280,Sedan,Sedan,Sedan,Sedan, +08/06/2021,14:10,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",12 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4446388,Station Wagon/Sport Utility Vehicle,Bus,,, +08/10/2021,20:30,QUEENS,11101,40.750645,-73.94566,"(40.750645, -73.94566)",21 STREET,43 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,15:01,BRONX,10474,40.80801,-73.88961,"(40.80801, -73.88961)",TIFFANY STREET,EAST BAY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446100,Sedan,Sedan,,, +08/05/2021,11:05,MANHATTAN,10011,40.74175,-74.003136,"(40.74175, -74.003136)",,,357 WEST 16 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446378,Van,,,, +08/10/2021,12:00,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4446343,Sedan,,,, +08/02/2021,22:50,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446223,Taxi,Garbage or Refuse,,, +08/10/2021,0:35,,,40.831932,-73.884605,"(40.831932, -73.884605)",SHERIDAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4445545,,,,, +07/23/2021,16:45,MANHATTAN,10026,40.80499,-73.95495,"(40.80499, -73.95495)",,,2168 8 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4446245,Bus,,,, +08/10/2021,18:00,,,40.572754,-73.99809,"(40.572754, -73.99809)",WEST 32 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445749,Sedan,,,, +08/10/2021,14:00,,,40.781677,-73.83871,"(40.781677, -73.83871)",20 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4445839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,21:25,MANHATTAN,10018,40.758266,-73.998184,"(40.758266, -73.998184)",,,528 WEST 39 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446290,Sedan,,,, +08/10/2021,13:30,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",77 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,22:00,,,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,VANDERVORT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4446067,Sedan,Box Truck,,, +08/10/2021,10:05,BRONX,10458,40.858418,-73.88514,"(40.858418, -73.88514)",EAST FORDHAM ROAD,ARTHUR AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4446181,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,14:44,BROOKLYN,11219,40.634544,-73.9883,"(40.634544, -73.9883)",,,1409 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445817,Sedan,,,, +08/04/2021,11:35,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4446509,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/04/2021,14:10,MANHATTAN,10018,40.75834,-73.996414,"(40.75834, -73.996414)",WEST 40 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446365,Sedan,Sedan,,, +07/28/2021,14:45,MANHATTAN,10018,40.75606,-73.994865,"(40.75606, -73.994865)",,,408 WEST 38 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4446270,Tractor Truck Diesel,Bus,,, +08/10/2021,10:20,,,,,,,,100 WEST DRIVE,2,0,0,0,2,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4445643,Bike,Bike,,, +08/10/2021,12:55,,,40.69577,-73.74746,"(40.69577, -73.74746)",205 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4445673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,15:40,,,40.62442,-74.082634,"(40.62442, -74.082634)",,,GORDON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,23:30,MANHATTAN,10001,40.75159,-74.00176,"(40.75159, -74.00176)",,,507 WEST 29 STREET,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4446355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:20,BRONX,10475,40.8774757,-73.8366002,"(40.8774757, -73.8366002)",GIVAN AVENUE,BAYCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4467145,Sedan,Sedan,,, +08/10/2021,12:20,QUEENS,11433,40.70509,-73.7907,"(40.70509, -73.7907)",93 AVENUE,168 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446025,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/10/2021,18:30,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446303,Station Wagon/Sport Utility Vehicle,Bike,,, +08/10/2021,9:15,,,40.79398,-73.97229,"(40.79398, -73.97229)",WEST 95 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445630,Pick-up Truck,Sedan,,, +08/10/2021,9:11,,,40.768616,-73.92508,"(40.768616, -73.92508)",CRESCENT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445895,Sedan,Sedan,,, +08/10/2021,12:30,BRONX,10458,40.873947,-73.88341,"(40.873947, -73.88341)",EAST 204 STREET,EAST MOSHOLU PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4445956,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/10/2021,7:40,MANHATTAN,10022,40.757366,-73.96858,"(40.757366, -73.96858)",,,231 EAST 53 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4445668,Bike,,,, +08/02/2021,15:57,,,40.635338,-74.16302,"(40.635338, -74.16302)",,,14 DAVIDSON COURT,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446216,Sedan,E-Bike,,, +07/27/2021,14:40,MANHATTAN,10011,40.74196,-73.99722,"(40.74196, -73.99722)",,,160 7 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing or Lane Usage Improper,,,,4446257,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,0:00,,,40.70524,-73.77508,"(40.70524, -73.77508)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446038,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,21:45,,,40.664227,-73.94547,"(40.664227, -73.94547)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445761,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,22:25,,,40.679863,-73.83884,"(40.679863, -73.83884)",101 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4445806,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,14:15,,,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4446461,Box Truck,Sedan,,, +08/06/2021,19:00,QUEENS,11385,40.701942,-73.88091,"(40.701942, -73.88091)",,,70-05 MYRTLE AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4446439,Bike,,,, +07/31/2021,16:30,MANHATTAN,10001,40.75635,-74.00541,"(40.75635, -74.00541)",12 AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446330,Sedan,Sedan,,, +08/05/2021,13:50,,,40.63966,-74.17993,"(40.63966, -74.17993)",,,1 WESTERN AVENUE,1,0,0,0,0,0,1,0,Steering Failure,,,,,4446200,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,3:15,BROOKLYN,11208,40.681297,-73.87636,"(40.681297, -73.87636)",RICHMOND STREET,DINSMORE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446393,Dump,Sedan,,, +08/10/2021,18:35,QUEENS,11370,40.75671,-73.89506,"(40.75671, -73.89506)",72 STREET,32 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445939,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,7:40,,,40.824913,-73.8689,"(40.824913, -73.8689)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445550,Sedan,Box Truck,,, +08/10/2021,22:36,MANHATTAN,10002,40.720707,-73.981316,"(40.720707, -73.981316)",EAST HOUSTON STREET,PITT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446014,Sedan,,,, +08/10/2021,9:41,,,40.720726,-73.94336,"(40.720726, -73.94336)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445738,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/10/2021,13:35,,,40.82465,-73.94623,"(40.82465, -73.94623)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445974,Bus,Sedan,,, +08/10/2021,16:32,,,40.850822,-73.90147,"(40.850822, -73.90147)",EAST BURNSIDE AVENUE,RYER AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4445905,Sedan,E-Bike,,, +08/10/2021,15:46,BROOKLYN,11210,40.624313,-73.947136,"(40.624313, -73.947136)",,,2921 AVENUE K,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445829,Sedan,Sedan,,, +08/10/2021,23:33,,,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446460,Sedan,Sedan,,, +08/07/2021,22:30,,,40.844234,-73.92363,"(40.844234, -73.92363)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446263,Sedan,Sedan,,, +08/10/2021,21:27,BROOKLYN,11229,40.610947,-73.953606,"(40.610947, -73.953606)",OCEAN AVENUE,AVENUE P,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445854,Sedan,,,, +08/10/2021,13:15,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446201,Sedan,Box Truck,,, +08/10/2021,18:10,,,,,,LAUREL HILL BOULEVARD,61 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445776,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,19:15,MANHATTAN,10013,40.722324,-74.01176,"(40.722324, -74.01176)",WEST STREET,LAIGHT STREET,,1,0,1,0,0,0,0,0,,,,,,4446028,Sedan,,,, +08/10/2021,21:30,,,40.656483,-73.96008,"(40.656483, -73.96008)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446140,Sedan,,,, +08/10/2021,15:20,QUEENS,11420,40.677708,-73.816956,"(40.677708, -73.816956)",115 AVENUE,122 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445805,Bike,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,19:27,,,40.85238,-73.9315,"(40.85238, -73.9315)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445981,Sedan,Sedan,,, +08/10/2021,9:20,MANHATTAN,10001,40.74913,-73.98824,"(40.74913, -73.98824)",WEST 33 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4445573,Bike,,,, +08/10/2021,19:25,,,40.694923,-73.915565,"(40.694923, -73.915565)",PALMETTO STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445871,Station Wagon/Sport Utility Vehicle,Van,,, +08/10/2021,11:40,MANHATTAN,10038,40.707386,-74.00549,"(40.707386, -74.00549)",JOHN STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4445682,Flat Bed,Sedan,Sedan,, +08/10/2021,15:07,BROOKLYN,11214,40.598553,-73.997345,"(40.598553, -73.997345)",BATH AVENUE,BAY PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445877,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/10/2021,21:15,QUEENS,11413,40.68019,-73.74027,"(40.68019, -73.74027)",228 STREET,131 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445772,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,13:10,BRONX,10453,40.8518,-73.909225,"(40.8518, -73.909225)",JEROME AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4445868,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/01/2021,21:02,MANHATTAN,10027,40.807568,-73.94935,"(40.807568, -73.94935)",,,2059 7 AVENUE,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,,,,4446229,Sedan,Sedan,,, +08/10/2021,19:30,MANHATTAN,10035,40.79989,-73.93859,"(40.79989, -73.93859)",3 AVENUE,EAST 119 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4445824,Bike,Sedan,,, +07/13/2021,12:20,MANHATTAN,10011,40.750305,-74.00837,"(40.750305, -74.00837)",12 AVENUE,WEST 24 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,6:09,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445490,Sedan,Pick-up Truck,Pick-up Truck,, +08/10/2021,9:05,,,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4446281,Taxi,Sedan,,, +08/10/2021,20:49,QUEENS,11413,40.665478,-73.748795,"(40.665478, -73.748795)",SOUTH CONDUIT AVENUE,EDGEWOOD AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446094,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,9:12,MANHATTAN,10011,40.74534,-73.99652,"(40.74534, -73.99652)",,,247 WEST 24 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446387,Sedan,,,, +07/29/2021,7:24,BROOKLYN,11219,40.629646,-74.010704,"(40.629646, -74.010704)",67 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446357,E-Scooter,Sedan,,, +08/10/2021,13:53,,,40.870888,-73.872215,"(40.870888, -73.872215)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445959,Sedan,Sedan,,, +08/10/2021,9:15,MANHATTAN,10033,40.85221,-73.933235,"(40.85221, -73.933235)",WEST 185 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445658,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,9:15,,,40.81404,-73.9367,"(40.81404, -73.9367)",5 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445669,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,18:25,BRONX,10453,40.854176,-73.91543,"(40.854176, -73.91543)",WEST BURNSIDE AVENUE,HENNESSEY PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445923,Sedan,Sedan,,, +07/29/2021,14:30,MANHATTAN,10011,40.74047,-73.99829,"(40.74047, -73.99829)",WEST 17 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446277,Taxi,Sedan,,, +08/10/2021,9:45,,,40.790253,-73.94564,"(40.790253, -73.94564)",3 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4445714,Station Wagon/Sport Utility Vehicle,Bus,,, +08/10/2021,18:10,STATEN ISLAND,10301,40.610954,-74.10342,"(40.610954, -74.10342)",LITTLE CLOVE ROAD,TIOGA STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445947,Sedan,Sedan,,, +07/31/2021,23:15,MANHATTAN,10036,40.75734,-73.98602,"(40.75734, -73.98602)",WEST 44 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446314,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +08/10/2021,20:01,QUEENS,11385,40.708744,-73.87124,"(40.708744, -73.87124)",,,79-57 COOPER AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445756,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,19:51,QUEENS,11691,40.594917,-73.763695,"(40.594917, -73.763695)",,,205 BEACH 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445999,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,16:22,,,40.734768,-73.87459,"(40.734768, -73.87459)",56 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4446351,Moped,Sedan,,, +08/10/2021,8:55,,,40.7132,-73.97723,"(40.7132, -73.97723)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445593,Sedan,Sedan,,, +08/10/2021,23:30,,,40.84698,-73.91065,"(40.84698, -73.91065)",WALTON AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445926,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,17:25,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",FARMERS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445987,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,22:12,BROOKLYN,11220,40.638435,-74.0101,"(40.638435, -74.0101)",,,5702 7 AVENUE,2,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4446019,E-Bike,E-Bike,,, +08/10/2021,8:30,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445633,Tractor Truck Diesel,Sedan,,, +08/10/2021,7:00,QUEENS,11421,40.69222,-73.847496,"(40.69222, -73.847496)",89 AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445707,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,19:15,MANHATTAN,10011,40.742496,-74.001305,"(40.742496, -74.001305)",,,308 WEST 18 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446333,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/31/2021,23:13,MANHATTAN,10011,40.74449,-73.99909,"(40.74449, -73.99909)",,,233 8 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,18:00,BROOKLYN,11224,40.572754,-73.99809,"(40.572754, -73.99809)",WEST 32 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445748,Van,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,12:30,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,Unspecified,,4445840,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/10/2021,12:30,MANHATTAN,10036,40.75484,-73.98412,"(40.75484, -73.98412)",WEST 42 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4446318,Station Wagon/Sport Utility Vehicle,Bike,,, +08/10/2021,15:30,QUEENS,11422,40.67416,-73.72756,"(40.67416, -73.72756)",HOOK CREEK BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4446092,E-Bike,,,, +08/10/2021,18:24,BRONX,10470,40.89999,-73.85301,"(40.89999, -73.85301)",WHITE PLAINS ROAD,EAST 239 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446268,Van,Bike,,, +08/10/2021,11:44,,,40.764267,-73.722946,"(40.764267, -73.722946)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445642,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,13:32,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445769,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,6:57,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445572,Tractor Truck Diesel,Sedan,,, +08/10/2021,8:27,BROOKLYN,11203,40.655758,-73.93081,"(40.655758, -73.93081)",,,723 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445739,COMMERCIAL,Sedan,,, +08/07/2021,1:00,MANHATTAN,10011,40.741055,-73.99786,"(40.741055, -73.99786)",WEST 18 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446389,Sedan,Sedan,,, +08/10/2021,4:15,,,40.86221,-73.89965,"(40.86221, -73.89965)",EAST 188 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4445914,Sedan,,,, +08/10/2021,13:00,BROOKLYN,11233,40.679638,-73.91655,"(40.679638, -73.91655)",SARATOGA AVENUE,MACDOUGAL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445724,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,12:30,,,40.61118,-74.15261,"(40.61118, -74.15261)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4446511,Box Truck,Box Truck,,, +07/25/2021,21:00,MANHATTAN,10027,40.80587,-73.94503,"(40.80587, -73.94503)",,,1 WEST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446226,Sedan,,,, +08/10/2021,13:30,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446004,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,20:00,BROOKLYN,11238,40.687485,-73.972176,"(40.687485, -73.972176)",,,141 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4445791,Sedan,Bike,,, +08/10/2021,23:40,,,40.75092,-73.86224,"(40.75092, -73.86224)",104 STREET,39 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4445944,Bike,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,4:35,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446012,Sedan,,,, +08/10/2021,15:50,QUEENS,11691,40.595253,-73.782135,"(40.595253, -73.782135)",,,51-24 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445979,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,10:30,QUEENS,11377,40.7452,-73.89111,"(40.7452, -73.89111)",74 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4445834,Station Wagon/Sport Utility Vehicle,FD TRUCK,,, +08/07/2021,19:13,MANHATTAN,10012,40.72221,-73.996185,"(40.72221, -73.996185)",,,215 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446180,Sedan,Box Truck,,, +08/08/2021,0:00,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446299,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,0:01,MANHATTAN,10025,40.804935,-73.96062,"(40.804935, -73.96062)",,,419 WEST 114 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445784,Sedan,Taxi,,, +07/19/2021,18:00,,,40.61992,-74.14568,"(40.61992, -74.14568)",,,11 JAFFE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446217,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,17:33,,,40.734543,-73.93744,"(40.734543, -73.93744)",VANDAM STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445775,Sedan,,,, +08/10/2021,5:42,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445546,Sedan,Sedan,Sedan,, +07/16/2021,14:35,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",WEST 42 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446238,Sedan,Box Truck,,, +08/10/2021,14:47,MANHATTAN,10011,40.742565,-73.9996,"(40.742565, -73.9996)",,,259 WEST 19 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4446394,Sedan,,,, +08/10/2021,8:57,BRONX,10461,40.843212,-73.83894,"(40.843212, -73.83894)",WATERS PLACE,FINK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445676,Station Wagon/Sport Utility Vehicle,Bike,,, +08/10/2021,12:00,BROOKLYN,11211,40.70654,-73.95041,"(40.70654, -73.95041)",,,211 UNION AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445808,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,18:24,MANHATTAN,10011,40.74044,-74.00203,"(40.74044, -74.00203)",WEST 15 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446369,Taxi,E-Scooter,,, +07/30/2021,8:32,MANHATTAN,10018,40.75834,-73.996414,"(40.75834, -73.996414)",WEST 40 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446292,Sedan,Bus,,, +08/10/2021,16:20,BROOKLYN,11211,40.71489,-73.960884,"(40.71489, -73.960884)",NORTH 1 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446120,Sedan,Box Truck,,, +08/10/2021,17:39,MANHATTAN,10029,40.790165,-73.95411,"(40.790165, -73.95411)",,,1184 5 AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4445818,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/10/2021,13:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446429,Sedan,,,, +08/10/2021,11:07,BRONX,10458,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445904,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,0:12,,,40.723698,-74.00792,"(40.723698, -74.00792)",CANAL STREET,HUDSON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4446150,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,15:33,BROOKLYN,11217,40.684227,-73.97404,"(40.684227, -73.97404)",,,170 SOUTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445762,Bus,Box Truck,,, +07/03/2021,6:15,,,,,,WEST 41 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446232,Sedan,Sedan,,, +07/22/2021,20:00,MANHATTAN,10036,40.761852,-74.000755,"(40.761852, -74.000755)",,,647 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446256,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,11:45,,,40.749725,-73.98363,"(40.749725, -73.98363)",EAST 36 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445936,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,12:12,QUEENS,11433,40.70179,-73.786476,"(40.70179, -73.786476)",171 STREET,105 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4446043,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +08/10/2021,12:32,BROOKLYN,11218,40.63329,-73.97644,"(40.63329, -73.97644)",AVENUE F,EAST 2 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445828,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,22:00,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4446479,Sedan,,,, +08/10/2021,19:20,,,40.827454,-73.83661,"(40.827454, -73.83661)",HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4445872,Taxi,Sedan,,, +08/10/2021,17:15,,,40.752934,-73.9855,"(40.752934, -73.9855)",WEST 39 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446310,Sedan,Box Truck,,, +08/08/2021,8:00,BRONX,10458,40.860195,-73.89772,"(40.860195, -73.89772)",RYER AVENUE,EAST 187 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446193,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,11:07,MANHATTAN,10011,,,,west 21 street,9 avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446377,Taxi,,,, +08/10/2021,21:57,,,40.77086,-73.92992,"(40.77086, -73.92992)",14 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445890,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,8:54,MANHATTAN,10011,40.750305,-74.00837,"(40.750305, -74.00837)",WEST 24 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446358,Sedan,Sedan,,, +08/07/2021,15:15,,,40.5843,-74.16492,"(40.5843, -74.16492)",,,112 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446208,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,6:36,,,40.860664,-73.92171,"(40.860664, -73.92171)",10 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445524,Box Truck,Sedan,,, +07/29/2021,20:01,MANHATTAN,10001,40.751926,-73.99872,"(40.751926, -73.99872)",,,435 WEST 31 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446286,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/24/2021,12:35,,,40.752056,-74.00099,"(40.752056, -74.00099)",WEST 30 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4446233,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,23:25,QUEENS,11377,40.738895,-73.91862,"(40.738895, -73.91862)",,,48-26 47 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4445783,Sedan,,,, +08/10/2021,0:10,BROOKLYN,11230,40.6187,-73.96943,"(40.6187, -73.96943)",,,1221 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445970,Sedan,Sedan,,, +08/10/2021,13:25,,,40.611008,-73.976746,"(40.611008, -73.976746)",AVENUE O,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4445670,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,12:22,BROOKLYN,11225,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4445949,Station Wagon/Sport Utility Vehicle,,,, +07/27/2021,15:25,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446260,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,16:15,BROOKLYN,11206,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446126,Sedan,Sedan,,, +08/10/2021,19:00,QUEENS,11420,40.670475,-73.804276,"(40.670475, -73.804276)",,,134-12 131 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445833,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,21:16,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4445853,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,21:12,BRONX,10460,40.842354,-73.86824,"(40.842354, -73.86824)",,,593 VANNEST AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4446031,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,16:15,,,40.8446,-73.90107,"(40.8446, -73.90107)",PARK AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445916,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,14:03,,,40.586258,-73.94893,"(40.586258, -73.94893)",,,VOORHIES AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445719,Sedan,Sedan,,, +08/10/2021,18:30,QUEENS,11385,40.702885,-73.89195,"(40.702885, -73.89195)",OTTO ROAD,64 PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4445753,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,14:25,MANHATTAN,10018,40.758976,-73.99394,"(40.758976, -73.99394)",WEST 42 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446346,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,9:40,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,2,0,0,0,0,0,2,0,Other Vehicular,View Obstructed/Limited,,,,4445614,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,11:00,BROOKLYN,11206,40.711216,-73.94043,"(40.711216, -73.94043)",BUSHWICK AVENUE,MAUJER STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4446323,Motorcycle,Sedan,,, +08/10/2021,15:37,BRONX,10458,40.85579,-73.881,"(40.85579, -73.881)",,,2475 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445927,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,13:57,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4445804,Sedan,Sedan,,, +08/06/2021,19:27,QUEENS,11385,40.7048,-73.86852,"(40.7048, -73.86852)",,,78-22 80 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446456,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,10:00,BRONX,10452,40.843807,-73.91512,"(40.843807, -73.91512)",,,1560 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446276,Sedan,Sedan,,, +08/06/2021,3:53,MANHATTAN,10036,40.758427,-73.99264,"(40.758427, -73.99264)",9 AVENUE,WEST 42 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4446383,Sedan,Sedan,,, +08/10/2021,12:00,QUEENS,11418,40.703728,-73.82155,"(40.703728, -73.82155)",HILLSIDE AVENUE,131 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4445725,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,18:34,,,40.74266,-73.72108,"(40.74266, -73.72108)",UNION TURNPIKE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445763,Sedan,,,, +08/10/2021,17:00,BROOKLYN,11222,40.736214,-73.95864,"(40.736214, -73.95864)",FRANKLIN STREET,COMMERCIAL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446064,Station Wagon/Sport Utility Vehicle,Van,,, +08/10/2021,10:50,,,40.736,-74.01004,"(40.736, -74.01004)",WEST STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445989,Sedan,,,, +08/10/2021,0:00,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,Brakes Defective,,,,4446005,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,13:20,BRONX,10451,40.822304,-73.91485,"(40.822304, -73.91485)",MELROSE AVENUE,EAST 158 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446497,Motorcycle,Sedan,,, +08/10/2021,10:45,MANHATTAN,10004,40.705,-74.012634,"(40.705, -74.012634)",NEW STREET,BEAVER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445592,Box Truck,PK,,, +08/10/2021,14:24,,,40.69644,-73.92228,"(40.69644, -73.92228)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4445867,Sedan,Bike,,, +08/10/2021,7:19,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4445657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,11:15,STATEN ISLAND,10305,40.589336,-74.09468,"(40.589336, -74.09468)",,,28 HANCOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446512,Sedan,,,, +08/10/2021,17:20,BRONX,10462,40.83757,-73.85446,"(40.83757, -73.85446)",ODELL STREET,SAINT RAYMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445933,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,6:00,,,40.69041,-73.75557,"(40.69041, -73.75557)",119 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,18:40,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4445770,Sedan,Sedan,Sedan,, +08/10/2021,17:54,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Unspecified,,,4445986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +08/07/2021,14:09,MANHATTAN,10001,40.75326,-74.00383,"(40.75326, -74.00383)",11 AVENUE,WEST 30 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4446390,Sedan,Bike,,, +08/10/2021,9:55,BROOKLYN,11214,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,86 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4445910,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,12:30,BROOKLYN,11233,,,,Atlantic Avenue,Thomas Boyland street,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445693,Station Wagon/Sport Utility Vehicle,,,, +07/22/2021,16:15,MANHATTAN,10001,40.75271,-74.00255,"(40.75271, -74.00255)",,,526 WEST 30 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446254,Bike,,,, +07/22/2021,19:20,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446219,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,13:57,BROOKLYN,11219,40.631245,-73.988884,"(40.631245, -73.988884)",15 AVENUE,51 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445810,Sedan,Sedan,,, +08/10/2021,20:10,BROOKLYN,11238,40.684544,-73.96509,"(40.684544, -73.96509)",WASHINGTON AVENUE,GATES AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4445792,Bike,,,, +08/10/2021,7:46,,,40.729355,-73.86023,"(40.729355, -73.86023)",QUEENS BOULEVARD,64 ROAD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446088,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/10/2021,23:41,BRONX,10453,40.856106,-73.90646,"(40.856106, -73.90646)",DAVIDSON AVENUE,WEST 181 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4446174,E-Bike,,,, +08/10/2021,20:48,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,21:09,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4446401,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,10:50,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4445678,Sedan,,,, +07/04/2022,22:00,QUEENS,11375,40.7079,-73.851105,"(40.7079, -73.851105)",71 AVENUE,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Failure to Yield Right-of-Way,,,,4544980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,9:25,,,40.625683,-73.93344,"(40.625683, -73.93344)",KINGS HIGHWAY,AVENUE K,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4445641,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/27/2021,22:47,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",9 AVENUE,WEST 39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446267,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,21:30,,,40.764847,-73.87457,"(40.764847, -73.87457)",JACKSON MILL ROAD,95 STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,View Obstructed/Limited,,,,4445943,Sedan,Sedan,,, +08/10/2021,15:15,MANHATTAN,10002,40.71738,-73.99131,"(40.71738, -73.99131)",ALLEN STREET,GRAND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446011,Bike,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,15:00,BROOKLYN,11211,40.716682,-73.957344,"(40.716682, -73.957344)",,,179 NORTH 6 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4445740,Motorcycle,,,, +08/10/2021,6:05,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4445836,Sedan,,,, +08/10/2021,18:29,MANHATTAN,10027,40.82,-73.95887,"(40.82, -73.95887)",12 AVENUE,WEST 133 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4445978,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,10:54,MANHATTAN,10019,40.762173,-73.97878,"(40.762173, -73.97878)",,,1333 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445899,Pick-up Truck,Sedan,,, +08/10/2021,10:00,QUEENS,11358,40.76314,-73.793236,"(40.76314, -73.793236)",CROCHERON AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445634,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,6:30,QUEENS,11354,40.768497,-73.840904,"(40.768497, -73.840904)",,,31-22 COLLEGE POINT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445547,Tow Truck / Wrecker,Sedan,,, +08/10/2021,20:14,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445774,Sedan,,,, +08/07/2021,18:38,BROOKLYN,11236,40.63849,-73.894936,"(40.63849, -73.894936)",,,1764 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446337,Box Truck,Sedan,,, +08/10/2021,14:00,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4445843,Van,Sedan,Sedan,, +08/10/2021,18:47,,,40.6167,-74.03085,"(40.6167, -74.03085)",94 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445747,Sedan,,,, +08/04/2021,13:00,QUEENS,11102,40.776546,-73.92377,"(40.776546, -73.92377)",19 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446225,Sedan,,,, +07/29/2021,8:06,MANHATTAN,10026,40.804836,-73.95429,"(40.804836, -73.95429)",,,282 WEST 117 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446239,Sedan,,,, +08/10/2021,19:30,BROOKLYN,11249,40.707,-73.9673,"(40.707, -73.9673)",WYTHE AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446109,Ambulance,,,, +08/10/2021,3:24,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,DELANCEY STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446294,Bike,,,, +08/10/2021,11:10,MANHATTAN,10025,40.80506,-73.96606,"(40.80506, -73.96606)",,,2859 BROADWAY,1,0,1,0,0,0,0,0,Failure to Keep Right,,,,,4445785,E-Scooter,,,, +08/10/2021,20:14,BROOKLYN,11214,,,,belt parkway,bay 48 street,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,11:50,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",SEAVIEW AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446334,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,14:40,,,40.58604,-74.16859,"(40.58604, -74.16859)",,,2500 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445929,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,19:00,MANHATTAN,10001,40.74813,-73.99933,"(40.74813, -73.99933)",,,346 WEST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446359,Sedan,,,, +08/09/2021,14:00,MANHATTAN,10018,40.755207,-73.99666,"(40.755207, -73.99666)",DYER AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446391,Sedan,Motorscooter,,, +08/10/2021,9:20,,,40.750443,-73.96599,"(40.750443, -73.96599)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445671,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,11:00,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4445972,Sedan,,,, +08/10/2021,12:05,,,40.835384,-73.93096,"(40.835384, -73.93096)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4446274,Sedan,Convertible,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/10/2021,0:00,MANHATTAN,10009,40.724884,-73.978264,"(40.724884, -73.978264)",,,130 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445918,Sedan,,,, +08/10/2021,9:25,,,40.72752,-73.75879,"(40.72752, -73.75879)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4445656,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,8:28,BROOKLYN,11211,40.716923,-73.94184,"(40.716923, -73.94184)",WOODPOINT ROAD,JACKSON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4445735,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/10/2021,18:17,MANHATTAN,10002,40.717537,-73.979996,"(40.717537, -73.979996)",RIVINGTON STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446016,Bike,,,, +08/10/2021,15:24,STATEN ISLAND,10312,40.535835,-74.19378,"(40.535835, -74.19378)",DRUMGOOLE ROAD WEST,HUGUENOT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446007,Sedan,,,, +08/10/2021,4:40,,,40.80297,-73.96387,"(40.80297, -73.96387)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445615,Station Wagon/Sport Utility Vehicle,Revel Scoo,,, +08/10/2021,15:00,BROOKLYN,11221,40.686996,-73.935844,"(40.686996, -73.935844)",,,257 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446374,Sedan,,,, +08/10/2021,21:25,BROOKLYN,11234,40.62601,-73.92471,"(40.62601, -73.92471)",EAST 53 STREET,AVENUE K,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446132,Sedan,,,, +07/30/2021,18:25,QUEENS,11385,40.704742,-73.86016,"(40.704742, -73.86016)",88 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446454,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +08/10/2021,13:15,BROOKLYN,11217,40.679733,-73.97432,"(40.679733, -73.97432)",FLATBUSH AVENUE,SAINT MARKS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4445826,Bike,,,, +07/31/2021,22:00,MANHATTAN,10027,40.807877,-73.95172,"(40.807877, -73.95172)",,,273 WEST 122 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4446231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,9:30,BRONX,10466,40.88971,-73.85603,"(40.88971, -73.85603)",EAST 229 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446234,Sedan,,,, +08/10/2021,0:20,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",FLATBUSH AVENUE,AVENUE U,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4445534,Sedan,Sedan,,, +08/01/2021,3:00,MANHATTAN,10036,40.76219,-73.999504,"(40.76219, -73.999504)",,,670 WEST 43 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446345,Sedan,,,, +08/10/2021,9:38,,,40.698772,-73.92233,"(40.698772, -73.92233)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4445866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,18:04,QUEENS,11106,40.76076,-73.93098,"(40.76076, -73.93098)",,,34-23 CRESCENT STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445893,Sedan,E-Bike,,, +08/10/2021,14:00,,,40.826813,-73.918884,"(40.826813, -73.918884)",EAST 162 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446287,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,16:20,BRONX,10459,40.81614,-73.894875,"(40.81614, -73.894875)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4445782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,15:55,,,40.832626,-73.925385,"(40.832626, -73.925385)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4446032,Sedan,Sedan,,, +08/10/2021,9:48,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4445802,Sedan,Sedan,,, +07/30/2021,15:15,MANHATTAN,10018,40.757107,-73.99731,"(40.757107, -73.99731)",WEST 38 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446326,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,22:40,BRONX,10454,40.808144,-73.91469,"(40.808144, -73.91469)",,,600 EAST 141 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4446498,,,,, +08/10/2021,20:32,BROOKLYN,11221,40.691353,-73.92142,"(40.691353, -73.92142)",BUSHWICK AVENUE,LINDEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445873,Sedan,,,, +08/10/2021,12:07,,,40.61111,-73.9526,"(40.61111, -73.9526)",KINGS HIGHWAY,EAST 21 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445718,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,7:15,,,40.781933,-73.94428,"(40.781933, -73.94428)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4445590,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,18:55,STATEN ISLAND,10301,40.635933,-74.07585,"(40.635933, -74.07585)",BAY STREET,HANNAH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445952,Bike,,,, +08/10/2021,20:10,,,40.715443,-73.95185,"(40.715443, -73.95185)",MEEKER AVENUE,UNION AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446066,Taxi,,,, +08/10/2021,5:20,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,4445764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/10/2021,10:55,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4445752,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,22:37,,,40.653656,-73.86239,"(40.653656, -73.86239)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4445992,Sedan,Sedan,Sedan,, +08/10/2021,15:50,,,,,,,,89 WEST DRIVE,1,0,0,0,1,0,0,0,Unspecified,,,,,4445795,Bike,,,, +08/10/2021,15:25,QUEENS,11368,40.7598,-73.84522,"(40.7598, -73.84522)",,,126-02 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445831,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,18:41,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446259,Sedan,Sedan,,, +08/10/2021,9:48,BROOKLYN,11231,40.678104,-73.99091,"(40.678104, -73.99091)",BOND STREET,1 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446212,Sedan,Bike,,, +08/10/2021,16:50,,,40.730434,-73.86061,"(40.730434, -73.86061)",63 DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446421,Sedan,,,, +08/07/2021,16:40,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446513,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,19:40,,,40.592102,-73.956085,"(40.592102, -73.956085)",AVENUE X,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4445852,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,11:00,BROOKLYN,11231,40.68372,-74.00334,"(40.68372, -74.00334)",PRESIDENT STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445786,Sedan,Sedan,,, +08/08/2021,17:11,BROOKLYN,11236,40.639256,-73.88549,"(40.639256, -73.88549)",,,1400 EAST 105 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446382,Sedan,,,, +08/10/2021,17:05,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4446162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,20:00,BRONX,10460,,,,SOUTHERN BOULEVARD,GARDEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446191,Sedan,,,, +07/29/2021,16:15,,,40.609497,-74.15019,"(40.609497, -74.15019)",STATEN ISLAND EXPRESSWAY,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4446221,Sedan,,,, +08/10/2021,0:01,,,40.839447,-73.88384,"(40.839447, -73.88384)",CROSS BRONX EXPRESSWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445813,Station Wagon/Sport Utility Vehicle,,,, +07/16/2021,8:00,QUEENS,11365,40.741623,-73.79109,"(40.741623, -73.79109)",58 AVENUE,184 STREET,,0,1,0,1,0,0,0,0,Backing Unsafely,,,,,4446308,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,15:08,,,40.6238935,-74.167408,"(40.6238935, -74.167408)",AMADOR STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469396,Sedan,,,, +10/20/2021,16:30,BROOKLYN,11236,40.6320017,-73.8913486,"(40.6320017, -73.8913486)",,,1677 CANARSIE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469809,Sedan,Sedan,,, +10/16/2021,20:20,BROOKLYN,11233,40.6761899,-73.9080899,"(40.6761899, -73.9080899)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,,,,,,4467797,,,,, +10/16/2021,14:35,MANHATTAN,10027,40.8070139,-73.9440827,"(40.8070139, -73.9440827)",,,48 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469163,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,8:15,,,40.6061224,-73.9656464,"(40.6061224, -73.9656464)",KINGS HIGHWAY,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4470562,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/02/2021,12:14,BROOKLYN,11233,40.68046,-73.90927,"(40.68046, -73.90927)",,,282 MACDOUGAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473699,Sedan,,,, +10/16/2021,3:22,QUEENS,11375,40.7189849,-73.8372809,"(40.7189849, -73.8372809)",75 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468268,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,12:00,BROOKLYN,11218,40.6553118,-73.9765702,"(40.6553118, -73.9765702)",PROSPECT AVENUE,TERRACE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470107,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/20/2021,21:40,MANHATTAN,10016,40.7441715,-73.9748278,"(40.7441715, -73.9748278)",,,322 EAST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469297,Sedan,,,, +10/21/2021,4:59,BROOKLYN,11207,40.6695192,-73.8942314,"(40.6695192, -73.8942314)",NEW JERSEY AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469693,Sedan,Sedan,,, +10/17/2021,15:19,BROOKLYN,11225,40.6573224,-73.9563563,"(40.6573224, -73.9563563)",,,116 HAWTHORNE STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4468401,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/17/2021,19:30,,,40.6611218,-73.9201276,"(40.6611218, -73.9201276)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4469411,Sedan,Motorscooter,,, +10/12/2021,18:09,BROOKLYN,11230,40.6125498,-73.962859,"(40.6125498, -73.962859)",CONEY ISLAND AVENUE,AVENUE O,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4467050,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,11:10,,,40.8240317,-73.9447582,"(40.8240317, -73.9447582)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,View Obstructed/Limited,,,,4469607,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +10/17/2021,4:51,,,40.7279031,-73.8562263,"(40.7279031, -73.8562263)",QUEENS BOULEVARD,66 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4468780,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,17:00,BROOKLYN,11221,40.6953519,-73.9163145,"(40.6953519, -73.9163145)",GATES AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4469032,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/22/2021,8:32,BROOKLYN,11222,40.7265611,-73.9309207,"(40.7265611, -73.9309207)",,,75 THOMAS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4469904,Dump,Box Truck,,, +10/16/2021,10:45,BROOKLYN,11249,40.7170223,-73.965261,"(40.7170223, -73.965261)",NORTH 1 STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468098,Station Wagon/Sport Utility Vehicle,TRAILER,,, +11/02/2021,17:00,,,40.72931,-73.997894,"(40.72931, -73.997894)",LAGUARDIA PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473514,Sedan,Sedan,,, +10/17/2021,23:15,QUEENS,11421,40.6884117,-73.8479278,"(40.6884117, -73.8479278)",ATLANTIC AVENUE,95 STREET,,4,0,0,0,0,0,4,0,View Obstructed/Limited,Unspecified,,,,4468486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:50,,,40.7440715,-73.7750212,"(40.7440715, -73.7750212)",201 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468545,4 dr sedan,,,, +10/14/2021,0:00,,,40.6073926,-73.9432087,"(40.6073926, -73.9432087)",AVENUE R,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,21:30,BROOKLYN,11237,40.6966193,-73.9182407,"(40.6966193, -73.9182407)",,,319 WILSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,16:22,QUEENS,11423,40.716656,-73.76915,"(40.716656, -73.76915)",HILLSIDE AVENUE,193 STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,,,,,4474002,Bike,,,, +10/18/2021,15:30,BROOKLYN,11233,40.6784284,-73.9135597,"(40.6784284, -73.9135597)",BOYLAND STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468604,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,11:28,,,40.6401638,-73.9455229,"(40.6401638, -73.9455229)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4467833,Sedan,Sedan,,, +10/19/2021,21:30,,,40.842993,-73.9109821,"(40.842993, -73.9109821)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469564,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,14:29,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454310,Sedan,,,, +10/19/2021,17:00,QUEENS,11103,40.7679637,-73.9116817,"(40.7679637, -73.9116817)",STEINWAY STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469045,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/21/2021,9:00,BROOKLYN,11203,40.6569208,-73.9260902,"(40.6569208, -73.9260902)",CLARKSON AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470262,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,16:30,MANHATTAN,10002,40.7121374,-73.9934225,"(40.7121374, -73.9934225)",,,132 MADISON STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468279,Bus,Dump,,, +10/13/2021,19:05,MANHATTAN,10036,40.7615008,-73.9978197,"(40.7615008, -73.9978197)",WEST 43 STREET,11TH AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4467441,Sedan,Garbage or Refuse,,, +10/15/2021,12:51,BRONX,10459,40.8187987,-73.8921191,"(40.8187987, -73.8921191)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467627,Tow Truck / Wrecker,Box Truck,,, +10/23/2021,19:27,QUEENS,11101,40.7440288,-73.9261524,"(40.7440288, -73.9261524)",QUEENS BOULEVARD,39 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470136,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/22/2021,10:30,,,40.6119959,-74.0013182,"(40.6119959, -74.0013182)",80 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469841,E-Bike,Sedan,,, +10/13/2021,18:38,QUEENS,11423,40.723283,-73.7780389,"(40.723283, -73.7780389)",188 STREET,AVON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466831,Sedan,Sedan,,, +10/15/2021,16:38,BROOKLYN,11209,40.6258171,-74.0357064,"(40.6258171, -74.0357064)",,,8415 COLONIAL ROAD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467491,Sedan,E-Scooter,,, +10/23/2021,12:40,,,40.5818483,-74.1293866,"(40.5818483, -74.1293866)",ROCKLAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470029,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,8:12,QUEENS,11429,40.7073058,-73.7512138,"(40.7073058, -73.7512138)",HOLLIS AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4466757,Sedan,Sedan,,, +10/21/2021,8:20,,,40.7207095,-73.9813092,"(40.7207095, -73.9813092)",PITT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469575,Sedan,Sedan,,, +10/22/2021,9:40,MANHATTAN,10018,40.7511242,-73.9878961,"(40.7511242, -73.9878961)",,,1333 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470447,Sedan,,,, +10/14/2021,10:05,,,40.6355203,-74.0166962,"(40.6355203, -74.0166962)",65 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467022,Sedan,Box Truck,,, +10/22/2021,12:00,BRONX,10466,40.8946624,-73.8613598,"(40.8946624, -73.8613598)",EAST 233 STREET,BRONX BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470386,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,19:50,BRONX,10474,40.813942,-73.890175,"(40.813942, -73.890175)",CASANOVA STREET,SPOFFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544636,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +11/02/2021,22:30,BRONX,10469,40.85971,-73.85736,"(40.85971, -73.85736)",WILLIAMSBRIDGE ROAD,ASTOR AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4473534,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,14:18,BROOKLYN,11229,40.5887783,-73.9212122,"(40.5887783, -73.9212122)",,,58 ABBEY COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4467095,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,19:17,,,40.7368761,-73.9356361,"(40.7368761, -73.9356361)",VANDAM STREET,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467664,Sedan,Taxi,,, +10/17/2021,15:57,,,40.6547986,-73.9394238,"(40.6547986, -73.9394238)",LENOX ROAD,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4468062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/17/2021,12:31,QUEENS,11001,40.7340795,-73.704148,"(40.7340795, -73.704148)",86 AVENUE,263 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4467986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,10:30,BROOKLYN,11226,40.64422,-73.95392,"(40.64422, -73.95392)",,,2424 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4474094,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,19:40,QUEENS,11423,40.7135434,-73.7789026,"(40.7135434, -73.7789026)",,,88-08 183 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4470573,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/17/2021,0:00,BROOKLYN,11236,40.640237,-73.9059739,"(40.640237, -73.9059739)",REMSEN AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469886,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/16/2021,14:58,BROOKLYN,11210,40.6295078,-73.9441554,"(40.6295078, -73.9441554)",FLATBUSH AVENUE,AVENUE I,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467701,Sedan,Sedan,,, +11/02/2021,20:30,BROOKLYN,11237,40.709316,-73.93301,"(40.709316, -73.93301)",MORGAN AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473459,Sedan,,,, +10/16/2021,15:00,,,40.6279777,-73.9416474,"(40.6279777, -73.9416474)",,,1 KINGS PLAZA,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467696,Sedan,Bus,,, +01/29/2022,3:38,,,,,,FORT GEORGE HILL,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4498480,Sedan,,,, +10/17/2021,10:05,BRONX,10470,40.9011694,-73.851864,"(40.9011694, -73.851864)",,,4550 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4467972,Sedan,,,, +10/25/2021,9:31,,,40.8444095,-73.9011639,"(40.8444095, -73.9011639)",CROSS BRONX EXPRESSWAY,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470829,Tractor Truck Diesel,Sedan,,, +10/19/2021,22:10,BROOKLYN,11225,40.6593288,-73.9495585,"(40.6593288, -73.9495585)",,,336 RUTLAND ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468946,Sedan,,,, +10/15/2021,3:48,BRONX,10468,40.8596097,-73.907775,"(40.8596097, -73.907775)",UNIVERSITY AVENUE,WEST 183 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467409,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,23:25,BRONX,10464,40.8634282,-73.8077668,"(40.8634282, -73.8077668)",,,1 CITY ISLAND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467652,Sedan,Sedan,,, +10/14/2021,9:24,,,40.6995062,-73.8888355,"(40.6995062, -73.8888355)",CYPRESS HILLS STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,6:09,QUEENS,11101,40.7489156,-73.9373965,"(40.7489156, -73.9373965)",QUEENS BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469960,Sedan,Box Truck,,, +11/02/2021,18:35,BRONX,10461,40.843052,-73.844894,"(40.843052, -73.844894)",,,1436 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473972,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,20:30,QUEENS,11004,40.7422255,-73.7152123,"(40.7422255, -73.7152123)",,,80-58 255 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4468134,Sedan,PK,Station Wagon/Sport Utility Vehicle,, +10/16/2021,10:00,BROOKLYN,11201,40.694561,-73.991177,"(40.694561, -73.991177)",,,156 PIERREPONT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469201,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,10:58,QUEENS,11357,40.78884,-73.81381,"(40.78884, -73.81381)",14 AVENUE,150 STREET,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4519106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/16/2021,17:25,BROOKLYN,11219,40.6250446,-73.9953313,"(40.6250446, -73.9953313)",62 STREET,15 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4467775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle,Sedan +10/14/2021,15:26,,,40.8680396,-73.8790955,"(40.8680396, -73.8790955)",MOSHOLU PARKWAY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,15:10,,,40.58196,-73.959946,"(40.58196, -73.959946)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473598,Sedan,Sedan,,, +10/18/2021,1:01,,,40.6731168,-73.9995833,"(40.6731168, -73.9995833)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4468225,Taxi,Sedan,,, +10/21/2021,14:40,BROOKLYN,11216,40.6813715,-73.9406183,"(40.6813715, -73.9406183)",THROOP AVENUE,MACDONOUGH STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470375,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/17/2021,22:38,,,40.6069678,-74.164434,"(40.6069678, -74.164434)",VICTORY BOULEVARD,JONES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468453,Sedan,Sedan,,, +10/22/2021,8:57,BROOKLYN,11217,40.678639,-73.9735083,"(40.678639, -73.9735083)",PROSPECT PLACE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4470529,Flat Bed,Sedan,,, +10/19/2021,8:50,,,40.755392,-73.8282803,"(40.755392, -73.8282803)",MAIN STREET,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4470736,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,20:00,BROOKLYN,11211,40.7030333,-73.9598908,"(40.7030333, -73.9598908)",BEDFORD AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470086,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,19:44,BROOKLYN,11203,40.6470773,-73.9443425,"(40.6470773, -73.9443425)",TILDEN AVENUE,EAST 35 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468876,Taxi,Sedan,,, +10/16/2021,14:47,,,40.6862043,-73.9507352,"(40.6862043, -73.9507352)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467854,Bike,,,, +10/26/2021,8:00,,,40.85459,-73.853546,"(40.85459, -73.853546)",YATES AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4473951,Sedan,,,, +10/21/2021,23:40,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473944,Sedan,Sedan,,, +10/16/2021,21:15,QUEENS,11435,40.68511,-73.7981052,"(40.68511, -73.7981052)",LINDEN BOULEVARD,INWOOD STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4468188,Sedan,Bike,,, +10/14/2021,18:15,BRONX,10469,40.8712675,-73.857547,"(40.8712675, -73.857547)",BURKE AVENUE,HONE AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4467955,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/21/2021,0:09,BRONX,10474,,,,,,1170 OAK POINT AVENUE,1,0,0,0,0,0,1,0,Illnes,,,,,4469792,Sedan,,,, +10/14/2021,6:00,MANHATTAN,10029,40.7885325,-73.9532091,"(40.7885325, -73.9532091)",MADISON AVENUE,EAST 98 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467569,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,5:53,BROOKLYN,11231,40.6819356,-74.0057183,"(40.6819356, -74.0057183)",WOODHULL STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467315,Sedan,Tow Truck / Wrecker,,, +10/16/2021,23:29,MANHATTAN,10002,40.7222418,-73.9862873,"(40.7222418, -73.9862873)",EAST HOUSTON STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467754,Taxi,Sedan,,, +10/20/2021,15:00,BROOKLYN,11221,40.6873579,-73.9182933,"(40.6873579, -73.9182933)",BROADWAY,CORNELIA STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4470233,Ambulance,E-Bike,,, +10/15/2021,13:27,,,40.7578472,-73.7894275,"(40.7578472, -73.7894275)",192 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468458,Sedan,,,, +10/15/2021,14:46,BROOKLYN,11206,40.7040685,-73.9428234,"(40.7040685, -73.9428234)",,,73 GRAHAM AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467674,Sedan,Bus,,, +10/15/2021,17:00,STATEN ISLAND,10306,40.5765659,-74.1066689,"(40.5765659, -74.1066689)",CLAWSON STREET,GREELEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4467532,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,18:30,BROOKLYN,11206,40.7041126,-73.9478547,"(40.7041126, -73.9478547)",LORIMER STREET,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469660,Station Wagon/Sport Utility Vehicle,Bike,,, +10/13/2021,16:46,BRONX,10463,40.8766745,-73.9055087,"(40.8766745, -73.9055087)",,,188 WEST 230 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4467304,Sedan,Sedan,Sedan,, +11/02/2021,1:35,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4473320,Sedan,Bike,,, +10/23/2021,20:15,QUEENS,11417,40.6819877,-73.8369746,"(40.6819877, -73.8369746)",LIBERTY AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470544,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,10:38,BRONX,10468,40.868542,-73.9065396,"(40.868542, -73.9065396)",,,2587 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4470797,Sedan,,,, +10/12/2021,15:15,,,40.7722611,-73.9259009,"(40.7722611, -73.9259009)",ASTORIA BOULEVARD,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4470012,Sedan,,,, +10/17/2021,12:29,,,40.7020093,-73.821201,"(40.7020093, -73.821201)",131 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467938,Sedan,Sedan,,, +10/20/2021,0:10,BRONX,10461,40.8437273,-73.8275318,"(40.8437273, -73.8275318)",JARVIS AVENUE,ZULETTE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/13/2021,3:11,QUEENS,11413,40.6645252,-73.7600963,"(40.6645252, -73.7600963)",145 AVENUE,ARTHUR STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4466699,Sedan,,,, +10/19/2021,7:30,,,40.7158298,-74.0153816,"(40.7158298, -74.0153816)",MURRAY STREET,NORTH END AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469017,Motorcycle,,,, +11/02/2021,16:53,QUEENS,11418,40.702515,-73.82707,"(40.702515, -73.82707)",124 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473612,Sedan,Sedan,,, +11/02/2021,13:03,MANHATTAN,10010,40.74211,-73.9892,"(40.74211, -73.9892)",,,200 5 AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4473964,Sedan,,,, +10/23/2021,11:56,QUEENS,11373,40.7372527,-73.8660933,"(40.7372527, -73.8660933)",JUNCTION BOULEVARD,56 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4470405,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/19/2021,0:20,MANHATTAN,10001,40.7494225,-73.9867164,"(40.7494225, -73.9867164)",,,51 WEST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468710,Sedan,,,, +10/10/2021,23:50,,,40.8566201,-73.8676134,"(40.8566201, -73.8676134)",PELHAM PARKWAY,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4466433,Sedan,,,, +10/15/2021,8:40,BROOKLYN,11210,40.6239716,-73.9502012,"(40.6239716, -73.9502012)",AVENUE K,EAST 26 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467679,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,21:35,BROOKLYN,11211,40.7107873,-73.9599439,"(40.7107873, -73.9599439)",SOUTH 4 STREET,ROEBLING STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469309,Bike,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,8:45,MANHATTAN,10027,40.8124773,-73.9562746,"(40.8124773, -73.9562746)",,,1315 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467104,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,9:30,QUEENS,11412,40.7020553,-73.7526039,"(40.7020553, -73.7526039)",113 AVENUE,203 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470001,Sedan,Sedan,,, +12/12/2021,9:20,QUEENS,11354,40.772346,-73.826584,"(40.772346, -73.826584)",UNION STREET,29 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4485827,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/12/2021,12:15,QUEENS,11435,40.698147,-73.8072,"(40.698147, -73.8072)",,,145-07 95 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485991,Sedan,,,, +10/18/2021,9:30,STATEN ISLAND,10314,40.6202792,-74.1235608,"(40.6202792, -74.1235608)",MANOR ROAD,MERRIMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,7:30,BROOKLYN,11226,40.6428878,-73.9545255,"(40.6428878, -73.9545255)",BEDFORD AVENUE,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470306,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/20/2021,16:28,BROOKLYN,11209,40.6305536,-74.0276851,"(40.6305536, -74.0276851)",,,312 76 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4469282,E-Bike,,,, +10/23/2021,11:27,,,40.8374635,-73.8737713,"(40.8374635, -73.8737713)",BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,Unspecified,,4470313,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/15/2021,7:37,BROOKLYN,11225,40.6662883,-73.9508365,"(40.6662883, -73.9508365)",NOSTRAND AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,Unspecified,,4467760,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/29/2021,18:50,QUEENS,11372,40.75687,-73.872986,"(40.75687, -73.872986)",,,95-001 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4474166,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,17:09,BRONX,10453,40.8589932,-73.9057225,"(40.8589932, -73.9057225)",WEST 183 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468381,Station Wagon/Sport Utility Vehicle,Bus,,, +10/19/2021,15:30,BROOKLYN,11235,40.5864292,-73.9513,"(40.5864292, -73.9513)",,,2676 EAST 18 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468976,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/24/2021,10:17,BROOKLYN,11203,40.6506433,-73.9215997,"(40.6506433, -73.9215997)",SNYDER AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470290,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,14:35,STATEN ISLAND,10310,40.634567,-74.1172,"(40.634567, -74.1172)",BROADWAY,CASTLETON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474063,Sedan,Bike,,, +10/16/2021,9:45,QUEENS,11375,40.7336185,-73.8525227,"(40.7336185, -73.8525227)",63 ROAD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,Unspecified,,4469089,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/22/2021,11:52,BROOKLYN,11234,40.6154331,-73.9138754,"(40.6154331, -73.9138754)",MILL AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4470112,Bus,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,19:00,MANHATTAN,10002,40.7177239,-73.9857652,"(40.7177239, -73.9857652)",DELANCEY STREET,CLINTON STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4470511,Motorbike,,,, +10/14/2021,14:50,BRONX,10457,40.8449733,-73.9024678,"(40.8449733, -73.9024678)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4469487,Sedan,Carry All,,, +10/23/2021,16:12,,,40.8739951,-73.8180136,"(40.8739951, -73.8180136)",HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470637,Sedan,Sedan,,, +10/25/2021,0:25,QUEENS,11361,40.7667257,-73.7635477,"(40.7667257, -73.7635477)",39 AVENUE,220 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4470667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,15:30,MANHATTAN,10016,40.745977,-73.9818424,"(40.745977, -73.9818424)",,,1 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467843,Bus,Sedan,,, +10/15/2021,16:30,MANHATTAN,10002,40.7122089,-73.9807128,"(40.7122089, -73.9807128)",CHERRY STREET,JACKSON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467480,E-Bike,,,, +10/20/2021,18:00,QUEENS,11432,40.7116676,-73.79116,"(40.7116676, -73.79116)",,,170-25 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,20:30,BRONX,10457,40.8388747,-73.9026466,"(40.8388747, -73.9026466)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4468871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,15:30,MANHATTAN,10001,40.7570213,-74.004927,"(40.7570213, -74.004927)",12 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,18:25,BROOKLYN,11230,40.6120774,-73.9561539,"(40.6120774, -73.9561539)",,,1564 EAST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470188,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,15:32,QUEENS,11364,40.7495375,-73.7477573,"(40.7495375, -73.7477573)",64 AVENUE,230 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468091,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,10:22,,,,,,HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486445,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,16:30,QUEENS,11368,,,,114 STREET,39 AVENUE,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4470205,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,13:00,BROOKLYN,11228,40.615685,-74.01225,"(40.615685, -74.01225)",,,8306 13 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485904,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,17:55,BROOKLYN,11230,40.62279,-73.9609405,"(40.62279, -73.9609405)",EAST 15 STREET,AVENUE K,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469336,E-Scooter,Sedan,,, +10/14/2021,17:30,,,40.6468847,-73.9491535,"(40.6468847, -73.9491535)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467811,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,12:00,MANHATTAN,10036,40.7558074,-73.9864031,"(40.7558074, -73.9864031)",WEST 42 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469192,Sedan,,,, +10/23/2021,14:35,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4470729,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,22:06,BROOKLYN,11217,40.6878706,-73.9783472,"(40.6878706, -73.9783472)",ASHLAND PLACE,FULTON STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467711,Sedan,,,, +10/14/2021,18:29,MANHATTAN,10022,40.7583292,-73.9689357,"(40.7583292, -73.9689357)",EAST 54 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467348,Sedan,Concrete Mixer,,, +10/20/2021,6:50,BROOKLYN,11236,40.6469532,-73.908215,"(40.6469532, -73.908215)",,,923 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469176,Sedan,,,, +10/18/2021,14:30,MANHATTAN,10029,40.7899496,-73.9429266,"(40.7899496, -73.9429266)",EAST 105 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468723,Sedan,Sedan,,, +10/13/2021,5:47,MANHATTAN,10025,40.7916628,-73.9646839,"(40.7916628, -73.9646839)",CENTRAL PARK WEST,WEST 96 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466767,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/22/2021,13:55,,,40.7536472,-73.7443922,"(40.7536472, -73.7443922)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4469913,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/15/2021,13:40,MANHATTAN,10027,40.8062653,-73.9426014,"(40.8062653, -73.9426014)",,,2 WEST 125 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4468392,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,21:31,,,40.823264,-73.9527619,"(40.823264, -73.9527619)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470460,Sedan,Sedan,,, +10/08/2021,15:00,,,40.6514132,-73.9721352,"(40.6514132, -73.9721352)",PROSPECT PARK SOUTHWEST,PARK CIRCLE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4466834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,19:35,BROOKLYN,11217,40.6755696,-73.9746323,"(40.6755696, -73.9746323)",,,61A 7 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469106,Sedan,E-Bike,,, +11/02/2021,7:00,BROOKLYN,11234,40.624706,-73.92556,"(40.624706, -73.92556)",,,1432 EAST 52 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4473321,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,10:39,MANHATTAN,10038,40.7087563,-74.0071161,"(40.7087563, -74.0071161)",,,110 WILLIAM STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470181,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,0:54,BROOKLYN,11221,40.6987734,-73.9223293,"(40.6987734, -73.9223293)",STANHOPE STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4468322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/15/2021,20:00,MANHATTAN,10013,40.7204364,-74.0066956,"(40.7204364, -74.0066956)",ERICSSON PLACE,VARICK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,6:05,,,40.7489156,-73.9373965,"(40.7489156, -73.9373965)",QUEENS PLAZA SOUTH,JACKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469987,Motorcycle,,,, +10/13/2021,12:00,MANHATTAN,10025,40.8046947,-73.9656535,"(40.8046947, -73.9656535)",,,545 WEST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467922,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,7:35,MANHATTAN,10065,40.7627855,-73.9575691,"(40.7627855, -73.9575691)",,,435 EAST 65 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4469637,Sedan,Sedan,,, +10/23/2021,22:40,,,40.6828046,-73.8062211,"(40.6828046, -73.8062211)",VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4470530,Taxi,,,, +10/20/2021,0:00,,,40.8492884,-73.9389359,"(40.8492884, -73.9389359)",WEST 179 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469121,Dump,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,0:42,BRONX,10459,40.81938,-73.9010384,"(40.81938, -73.9010384)",,,853 LONGWOOD AVENUE,2,0,0,0,0,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4468765,Sedan,Moped scoo,Moped scoo,, +11/02/2021,18:15,MANHATTAN,10033,40.848045,-73.93782,"(40.848045, -73.93782)",,,4188 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4473613,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,17:00,BRONX,10466,40.8915505,-73.8617895,"(40.8915505, -73.8617895)",CARPENTER AVENUE,EAST 229 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4467958,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,1:50,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4446291,Sedan,,,, +10/18/2021,1:00,,,40.7433555,-73.8372322,"(40.7433555, -73.8372322)",Horace Harding Expressway,College Point Boulevard,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468556,Sedan,Sedan,,, +10/21/2021,15:20,BRONX,10463,40.8795157,-73.9096784,"(40.8795157, -73.9096784)",WEST 230 STREET,TIBBETT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4469680,Bike,,,, +10/13/2021,8:30,QUEENS,11354,40.7688455,-73.8333504,"(40.7688455, -73.8333504)",,,31-07 FARRINGTON STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467380,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,7:35,QUEENS,11373,40.7393958,-73.8779179,"(40.7393958, -73.8779179)",CORONA AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467911,Sedan,,,, +10/15/2021,2:35,BRONX,10457,40.8435327,-73.9114658,"(40.8435327, -73.9114658)",,,1650 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468269,Ambulance,Sedan,,, +10/12/2021,16:00,,,40.5845996,-73.9486069,"(40.5845996, -73.9486069)",SHORE PARKWAY,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466634,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,20:35,MANHATTAN,10039,40.8266837,-73.9353903,"(40.8266837, -73.9353903)",WEST 153 STREET,POWELL BOULEVARD,,4,0,4,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467373,Sedan,,,, +10/21/2021,14:20,BRONX,10458,40.8622592,-73.8958844,"(40.8622592, -73.8958844)",EAST FORDHAM ROAD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469675,Sedan,Sedan,,, +10/19/2021,8:15,QUEENS,11361,40.7645134,-73.774472,"(40.7645134, -73.774472)",39 AVENUE,211 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469209,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,15:20,BROOKLYN,11210,40.6384265,-73.9521361,"(40.6384265, -73.9521361)",FOSTER AVENUE,EAST 26 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466887,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,1:25,BROOKLYN,11207,40.6870802,-73.913891,"(40.6870802, -73.913891)",HALSEY STREET,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467562,Sedan,Bike,,, +10/16/2021,20:00,,,40.6990725,-73.9354706,"(40.6990725, -73.9354706)",BEAVER STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468327,Sedan,,,, +10/13/2021,16:07,MANHATTAN,10035,40.8034323,-73.9375801,"(40.8034323, -73.9375801)",,,156 EAST 124 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4466966,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +10/11/2021,21:32,BRONX,10461,40.8434637,-73.8368247,"(40.8434637, -73.8368247)",WESTCHESTER AVENUE,MIDDLETOWN ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466799,Sedan,,,, +10/19/2021,21:45,,,40.7568746,-73.9705439,"(40.7568746, -73.9705439)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4469547,PK,Station Wagon/Sport Utility Vehicle,Sedan,, +10/22/2021,14:15,BROOKLYN,11215,40.6685491,-73.9902239,"(40.6685491, -73.9902239)",12 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4470547,E-Bike,Sedan,,, +10/13/2021,16:20,BROOKLYN,11229,40.6105568,-73.9555126,"(40.6105568, -73.9555126)",,,1804 AVENUE P,0,0,0,0,0,0,0,0,Unspecified,,,,,4466851,Sedan,,,, +10/07/2021,12:57,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466388,Sedan,Sedan,,, +11/02/2021,20:33,BRONX,10458,40.865925,-73.88594,"(40.865925, -73.88594)",WEBSTER AVENUE,EAST 198 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4473532,Pick-up Truck,Sedan,,, +10/18/2021,8:00,,,40.8017538,-73.9312029,"(40.8017538, -73.9312029)",EAST 125 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468738,Sedan,,,, +10/20/2021,5:01,,,40.8215413,-73.9428634,"(40.8215413, -73.9428634)",WEST 143 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4469186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/14/2021,14:40,STATEN ISLAND,10301,40.6151863,-74.1025669,"(40.6151863, -74.1025669)",CLOVE ROAD,DUDLEY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4467877,Sedan,Sedan,,, +10/21/2021,17:25,QUEENS,11367,40.7266052,-73.8142403,"(40.7266052, -73.8142403)",153 STREET,73 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4469604,Sedan,Sedan,,, +10/12/2021,9:00,,,40.839908,-73.9360834,"(40.839908, -73.9360834)",ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467363,Tractor Truck Gasoline,,,, +10/22/2021,8:00,QUEENS,11432,40.7138684,-73.7896322,"(40.7138684, -73.7896322)",,,86-15 AVA PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470038,Sedan,,,, +10/23/2021,1:16,STATEN ISLAND,10305,40.5985929,-74.0838495,"(40.5985929, -74.0838495)",,,53 WINFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470113,Motorcycle,,,, +10/12/2021,12:35,BRONX,10474,40.8194093,-73.8859842,"(40.8194093, -73.8859842)",,,875 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469472,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/17/2021,2:47,BROOKLYN,11223,40.6056521,-73.9723956,"(40.6056521, -73.9723956)",MC DONALD AVENUE,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468237,Sedan,,,, +10/16/2021,13:04,BRONX,10463,40.88459,-73.9006641,"(40.88459, -73.9006641)",,,193 WEST 237 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467628,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,8:15,BRONX,10468,40.8758932,-73.8882441,"(40.8758932, -73.8882441)",JEROME AVENUE,EAST 205 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4469341,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,18:15,MANHATTAN,10128,40.779205,-73.94698,"(40.779205, -73.94698)",,,412 EAST 90 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473484,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,9:30,BROOKLYN,11217,40.684856,-73.97805,"(40.684856, -73.97805)",FLATBUSH AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4473742,Sedan,Dump,,, +10/16/2021,21:50,,,40.8297797,-73.8337918,"(40.8297797, -73.8337918)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468618,Tractor Truck Diesel,,,, +10/21/2021,11:20,,,40.696184,-73.933829,"(40.696184, -73.933829)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469785,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:00,,,40.689022,-73.93925,"(40.689022, -73.93925)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519668,Sedan,,,, +10/18/2021,17:10,QUEENS,11361,40.7604922,-73.7675188,"(40.7604922, -73.7675188)",215 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468542,Sedan,Sedan,,, +10/15/2021,14:30,QUEENS,11103,40.7646435,-73.9165884,"(40.7646435, -73.9165884)",37 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467883,Motorcycle,Sedan,,, +10/14/2021,18:51,BROOKLYN,11215,40.6683971,-73.9790929,"(40.6683971, -73.9790929)",,,501 6 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467241,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,7:40,BROOKLYN,11210,40.6242295,-73.9385762,"(40.6242295, -73.9385762)",EAST 38 STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469414,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/21/2021,8:42,QUEENS,11354,40.764651,-73.823484,"(40.764651, -73.823484)",northern boulevard,Parsons Boulevard,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470757,Station Wagon/Sport Utility Vehicle,Bike,,, +11/02/2021,13:00,,,40.66999,-73.85912,"(40.66999, -73.85912)",EMERALD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473581,Sedan,Sedan,,, +10/14/2021,17:53,,,40.8690581,-73.8796321,"(40.8690581, -73.8796321)",SOUTHERN BOULEVARD,BRONX BOTANICAL GARDENS,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468520,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:45,MANHATTAN,10029,40.7889226,-73.943454,"(40.7889226, -73.943454)",,,2006 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470882,Sedan,,,, +10/17/2021,19:35,BROOKLYN,11208,40.6741347,-73.8697463,"(40.6741347, -73.8697463)",,,560 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468178,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/09/2021,23:40,,,40.6730095,-73.7880875,"(40.6730095, -73.7880875)",ROCKAWAY BOULEVARD,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4465943,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,19:22,,,40.6664524,-73.757631,"(40.6664524, -73.757631)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4470535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,9:00,,,40.7079202,-73.8168172,"(40.7079202, -73.8168172)",139 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467512,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:00,BRONX,10456,40.8323232,-73.9167529,"(40.8323232, -73.9167529)",SHERMAN AVENUE,MCCLELLAN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470194,Sedan,,,, +10/13/2021,9:03,MANHATTAN,10016,40.7457274,-73.9781227,"(40.7457274, -73.9781227)",3 AVENUE,EAST 34 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467108,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,9:40,BROOKLYN,11217,40.6836718,-73.9755725,"(40.6836718, -73.9755725)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,,,4469103,Flat Bed,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,17:50,STATEN ISLAND,10306,40.585407,-74.10589,"(40.585407, -74.10589)",RICHMOND ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:40,BRONX,10456,40.8309273,-73.9151934,"(40.8309273, -73.9151934)",,,1114 MORRIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468627,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,1:00,MANHATTAN,10011,40.744003,-73.99942,"(40.744003, -73.99942)",WEST 21 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4473428,Pick-up Truck,,,, +10/18/2021,6:17,QUEENS,11418,40.69433,-73.826959,"(40.69433, -73.826959)",ATLANTIC AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468409,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/11/2021,16:55,,,,,,12 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446397,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,10:05,,,40.767418,-73.9020254,"(40.767418, -73.9020254)",ASTORIA BOULEVARD,49 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4470006,Sedan,,,, +10/18/2021,15:22,MANHATTAN,10014,40.7310038,-74.0046256,"(40.7310038, -74.0046256)",BEDFORD STREET,MORTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468759,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,17:35,,,40.6027306,-74.1295423,"(40.6027306, -74.1295423)",QUEEN STREET,GRAVES STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467596,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,13:15,BRONX,10473,40.8262799,-73.8434105,"(40.8262799, -73.8434105)",ZEREGA AVENUE,STORY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468474,Garbage or Refuse,Motorcycle,,, +10/17/2021,10:49,QUEENS,11435,40.6900183,-73.8032324,"(40.6900183, -73.8032324)",LAKEWOOD AVENUE,INWOOD STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467973,Taxi,Bike,,, +10/13/2021,13:20,,,40.7040285,-73.8170984,"(40.7040285, -73.8170984)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4466866,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,12:02,QUEENS,11385,40.7036651,-73.9015132,"(40.7036651, -73.9015132)",FOREST AVENUE,68 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468747,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,23:30,BROOKLYN,11221,40.6966665,-73.9282316,"(40.6966665, -73.9282316)",EVERGREEN AVENUE,CEDAR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4469159,BOX TRUCK,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/15/2021,9:30,,,40.696785,-73.9565804,"(40.696785, -73.9565804)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4467851,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,10:44,QUEENS,11432,40.7103146,-73.7935823,"(40.7103146, -73.7935823)",,,168-32 HILLSIDE AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4468770,Bus,Sedan,,, +10/14/2021,17:00,BROOKLYN,11222,40.7255316,-73.9510362,"(40.7255316, -73.9510362)",,,100 NORMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,14:35,,,40.7342811,-73.8646235,"(40.7342811, -73.8646235)",JUNCTION BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469579,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,7:35,STATEN ISLAND,10305,40.5939817,-74.0719318,"(40.5939817, -74.0719318)",,,76 FOCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469759,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,3:35,,,40.8249919,-73.916614,"(40.8249919, -73.916614)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,8:05,QUEENS,11375,40.72614,-73.851776,"(40.72614, -73.851776)",QUEENS BOULEVARD,102 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473716,Sedan,,,, +10/17/2021,10:35,QUEENS,11416,40.6844549,-73.8596479,"(40.6844549, -73.8596479)",ROCKAWAY BOULEVARD,81 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4467943,Sedan,Sedan,,, +10/15/2021,15:29,QUEENS,11377,40.7461395,-73.9143019,"(40.7461395, -73.9143019)",SKILLMAN AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467429,Sedan,Bus,,, +10/21/2021,9:30,QUEENS,11415,40.7095892,-73.8314999,"(40.7095892, -73.8314999)",,,82-37 GRENFELL STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469447,Sedan,,,, +10/19/2021,18:09,BRONX,10467,40.8779474,-73.8661535,"(40.8779474, -73.8661535)",WHITE PLAINS ROAD,EAST 211 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468915,Sedan,Box Truck,,, +10/23/2021,13:35,MANHATTAN,10029,40.7863073,-73.9504367,"(40.7863073, -73.9504367)",,,1501 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4470117,Sedan,Dump,Sedan,, +10/18/2021,8:55,QUEENS,11419,40.6839023,-73.8249525,"(40.6839023, -73.8249525)",117 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4468456,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/22/2021,4:50,BRONX,10458,40.8642556,-73.8881227,"(40.8642556, -73.8881227)",EAST 195 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469702,Sedan,Sedan,,, +10/15/2021,15:52,,,40.8221092,-73.9480838,"(40.8221092, -73.9480838)",WEST 141 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467565,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/09/2021,9:25,,,40.7568608,-73.8756563,"(40.7568608, -73.8756563)",NORTHERN BLVD,32 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4465737,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/13/2022,11:03,,,40.615562,-73.979645,"(40.615562, -73.979645)",BAY PARKWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519019,Station Wagon/Sport Utility Vehicle,Bike,,, +10/07/2021,13:10,BROOKLYN,11217,40.6866823,-73.9793644,"(40.6866823, -73.9793644)",FLATBUSH AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467197,Sedan,Box Truck,,, +07/05/2022,7:45,MANHATTAN,10002,40.716164,-73.977715,"(40.716164, -73.977715)",,,64 BARUCH DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544868,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,5:20,QUEENS,11377,40.7432581,-73.898131,"(40.7432581, -73.898131)",WOODSIDE AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469956,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/22/2021,14:00,,,40.6646429,-73.9370755,"(40.6646429, -73.9370755)",MONTGOMERY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470122,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,12:57,QUEENS,11354,40.76498,-73.8111421,"(40.76498, -73.8111421)",,,35-36 154 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468101,Sedan,,,, +10/09/2021,21:40,,,40.5998273,-74.1782229,"(40.5998273, -74.1782229)",TRAVIS AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4467369,Sedan,,,, +10/16/2021,20:05,BROOKLYN,11231,40.6820272,-74.004294,"(40.6820272, -74.004294)",,,296 COLUMBIA STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4467755,Taxi,,,, +10/07/2021,14:00,MANHATTAN,10020,40.7592705,-73.9808868,"(40.7592705, -73.9808868)",AVENUE OF THE AMERICAS,WEST 49 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466466,Sedan,Bike,,, +10/17/2021,13:27,BROOKLYN,11219,40.6233236,-73.9971218,"(40.6233236, -73.9971218)",15 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467941,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,13:07,BROOKLYN,11207,40.6700592,-73.8905572,"(40.6700592, -73.8905572)",SUTTER AVENUE,MILLER AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4468824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/15/2021,16:10,BROOKLYN,11218,40.6573185,-73.9754347,"(40.6573185, -73.9754347)",,,271 WINDSOR PLACE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467529,Sedan,Bike,,, +09/12/2021,16:20,,,40.840661,-73.8385027,"(40.840661, -73.8385027)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456352,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,17:40,BROOKLYN,11208,40.6712208,-73.8827543,"(40.6712208, -73.8827543)",ELTON STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4467660,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,0:00,BROOKLYN,11203,40.6547986,-73.9394238,"(40.6547986, -73.9394238)",LENOX ROAD,ALBANY AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470258,Sedan,Bike,,, +10/14/2021,8:46,BROOKLYN,11228,40.6160581,-74.0257501,"(40.6160581, -74.0257501)",DAHLGREN PLACE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467018,Sedan,Sedan,,, +10/15/2021,23:30,QUEENS,11366,40.7213433,-73.8058456,"(40.7213433, -73.8058456)",79 AVENUE,162 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468426,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,16:35,,,40.8211748,-73.9257344,"(40.8211748, -73.9257344)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466653,Sedan,Sedan,,, +10/22/2021,15:30,BRONX,10467,40.8783502,-73.8703365,"(40.8783502, -73.8703365)",EAST GUN HILL ROAD,NEWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470390,Bus,Sedan,,, +10/22/2021,19:55,MANHATTAN,10035,40.8064405,-73.936808,"(40.8064405, -73.936808)",,,112 EAST 128 STREET,2,0,1,0,0,0,0,0,Unspecified,,,,,4470701,E-Scooter,,,, +10/15/2021,11:12,BRONX,10474,40.8115506,-73.8913267,"(40.8115506, -73.8913267)",,,1181 RANDALL AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467623,Sedan,Sedan,,, +09/22/2021,15:15,,,,,,EMPIRE BOULEVARD,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4474006,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,18:00,BROOKLYN,11203,40.6628985,-73.9392409,"(40.6628985, -73.9392409)",,,660 LEFFERTS AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4469277,Station Wagon/Sport Utility Vehicle,Bike,,, +10/05/2021,8:00,BRONX,10461,40.8419241,-73.8519848,"(40.8419241, -73.8519848)",,,2432 LYVERE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466328,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,12:19,MANHATTAN,10002,40.719732,-73.9869524,"(40.719732, -73.9869524)",,,128 RIVINGTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470033,Sedan,Box Truck,,, +10/16/2021,22:30,BROOKLYN,11235,40.5869192,-73.9638597,"(40.5869192, -73.9638597)",EAST 6 STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467792,Ambulance,,,, +10/21/2021,13:35,BROOKLYN,11219,40.637338,-74.0037303,"(40.637338, -74.0037303)",,,904 54 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,19:55,BROOKLYN,11211,40.7127391,-73.9466011,"(40.7127391, -73.9466011)",,,194 AINSLIE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4470081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/20/2021,10:20,BROOKLYN,11249,40.6991771,-73.960499,"(40.6991771, -73.960499)",KENT AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469144,Station Wagon/Sport Utility Vehicle,Bus,,, +10/04/2021,14:05,MANHATTAN,10033,40.8468032,-73.9318503,"(40.8468032, -73.9318503)",WEST 179 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466461,Sedan,Sedan,,, +10/14/2021,14:30,QUEENS,11362,40.7626736,-73.7365819,"(40.7626736, -73.7365819)",248 STREET,VANZANDT AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4467165,Sedan,Sedan,Sedan,, +10/15/2021,18:25,BROOKLYN,11217,40.6802669,-73.9746902,"(40.6802669, -73.9746902)",FLATBUSH AVENUE,6 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4468691,Sedan,Sedan,,, +10/25/2021,9:35,MANHATTAN,10002,40.7209677,-73.9821677,"(40.7209677, -73.9821677)",EAST HOUSTON STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,14:20,BROOKLYN,11211,40.7140668,-73.9516237,"(40.7140668, -73.9516237)",METROPOLITAN AVENUE,UNION AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468989,Sedan,,,, +10/11/2021,17:00,BROOKLYN,11233,40.6821057,-73.9090552,"(40.6821057, -73.9090552)",MARION STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466369,Sedan,,,, +10/21/2021,14:05,QUEENS,11694,40.5806012,-73.837862,"(40.5806012, -73.837862)",,,245 BEACH 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470443,Sedan,,,, +10/20/2021,12:25,BROOKLYN,11210,40.6339973,-73.9477726,"(40.6339973, -73.9477726)",GLENWOOD ROAD,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4469532,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,12:25,,,40.6871814,-73.7991338,"(40.6871814, -73.7991338)",111 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469373,Sedan,,,, +10/24/2021,0:00,QUEENS,11416,40.6851838,-73.8542199,"(40.6851838, -73.8542199)",95 AVENUE,87 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470318,Sedan,Motorscooter,,, +10/28/2021,20:00,,,40.607685,-74.13892,"(40.607685, -74.13892)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4473983,Sedan,,,, +10/17/2021,4:40,QUEENS,11385,40.7097444,-73.9077407,"(40.7097444, -73.9077407)",GRANDVIEW AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467982,Sedan,Sedan,,, +10/16/2021,5:20,BROOKLYN,11235,40.5873051,-73.9603492,"(40.5873051, -73.9603492)",AVENUE Z,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,15:00,BROOKLYN,11225,40.66811,-73.951546,"(40.66811, -73.951546)",,,1180 PRESIDENT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473464,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,20:27,,,40.7899496,-73.9429266,"(40.7899496, -73.9429266)",EAST 105 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470133,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,6:54,MANHATTAN,10035,40.8032687,-73.9332741,"(40.8032687, -73.9332741)",,,2455 2 AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4469074,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,14:30,MANHATTAN,10017,40.7482147,-73.9685398,"(40.7482147, -73.9685398)",EAST 42 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468576,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:45,,,40.7921853,-73.968017,"(40.7921853, -73.968017)",WEST 95 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469903,Sedan,,,, +10/13/2021,20:00,,,40.8353892,-73.8878207,"(40.8353892, -73.8878207)",EAST 173 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470725,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,9:28,BROOKLYN,11201,40.6948846,-73.9851426,"(40.6948846, -73.9851426)",JOHNSON STREET,BRIDGE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4468787,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/28/2021,2:15,BRONX,10456,40.82929,-73.91642,"(40.82929, -73.91642)",MORRIS AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Other Vehicular,,,,4474101,Taxi,Taxi,,, +10/23/2021,5:12,BRONX,10466,40.8922526,-73.8613974,"(40.8922526, -73.8613974)",CARPENTER AVENUE,EAST 230 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,18:03,BROOKLYN,11228,40.6145792,-74.022796,"(40.6145792, -74.022796)",7 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467692,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,18:35,BROOKLYN,11212,40.654392,-73.90926,"(40.654392, -73.90926)",,,1371 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473698,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,13:30,BROOKLYN,11229,40.607002,-73.95986,"(40.607002, -73.95986)",,,1738 EAST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473410,Sedan,Sedan,,, +10/21/2021,16:08,,,40.7536767,-73.9144654,"(40.7536767, -73.9144654)",NORTHERN BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470028,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,18:30,,,40.654313,-73.9175769,"(40.654313, -73.9175769)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467824,Sedan,Sedan,,, +10/22/2021,23:30,MANHATTAN,10011,40.7363365,-73.9962994,"(40.7363365, -73.9962994)",,,47 WEST 13 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470149,Sedan,Sedan,,, +10/02/2022,14:30,BROOKLYN,11208,40.673244,-73.87139,"(40.673244, -73.87139)",,,567 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4569580,Sedan,,,, +10/14/2021,23:33,MANHATTAN,10035,40.7969748,-73.934918,"(40.7969748, -73.934918)",,,2281 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468354,Sedan,Sedan,,, +10/08/2021,20:00,QUEENS,11372,40.749062,-73.8908172,"(40.749062, -73.8908172)",75 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467866,Sedan,,,, +10/15/2021,23:55,BROOKLYN,11201,40.6946356,-73.9989847,"(40.6946356, -73.9989847)",,,330 FURMAN STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4467545,Enclosed Body - Removable Enclosure,,,, +10/19/2021,13:49,BRONX,10453,40.8511013,-73.9046746,"(40.8511013, -73.9046746)",EAST 179 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4469049,Box Truck,Sedan,,, +10/24/2021,21:50,QUEENS,11692,40.5918209,-73.7968646,"(40.5918209, -73.7968646)",,,320 BEACH 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470850,Sedan,,,, +10/18/2021,1:29,BROOKLYN,11207,40.6566932,-73.8946302,"(40.6566932, -73.8946302)",LOUISIANA AVENUE,DE WITT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469241,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,20:57,,,40.7441866,-73.9918693,"(40.7441866, -73.9918693)",WEST 25 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470156,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,23:19,MANHATTAN,10012,40.7203211,-73.9940403,"(40.7203211, -73.9940403)",DELANCEY STREET,BOWERY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,16:20,QUEENS,11435,40.6984436,-73.8025548,"(40.6984436, -73.8025548)",150 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470563,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,22:04,BROOKLYN,11203,40.6566109,-73.9309021,"(40.6566109, -73.9309021)",UTICA AVENUE,CLARKSON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470273,Sedan,,,, +01/13/2021,19:50,BRONX,10466,40.8868982,-73.8451801,"(40.8868982, -73.8451801)",,,1141 EAST 229 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470793,Sedan,,,, +10/21/2021,13:35,,,40.5941242,-73.9377793,"(40.5941242, -73.9377793)",AVENUE X,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469665,AMBULANCE,Sedan,,, +10/24/2021,4:28,MANHATTAN,10010,40.7401843,-73.986363,"(40.7401843, -73.986363)",EAST 23 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470166,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/17/2021,0:30,QUEENS,11421,40.6943535,-73.8559668,"(40.6943535, -73.8559668)",89 STREET,86 ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467926,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,9:00,BROOKLYN,11203,40.6536233,-73.9410706,"(40.6536233, -73.9410706)",,,159 EAST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467829,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,21:00,BRONX,10466,40.8914557,-73.8312831,"(40.8914557, -73.8312831)",,,4025 DYRE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468910,Motorcycle,Sedan,,, +10/23/2021,21:20,QUEENS,11420,40.6670811,-73.810322,"(40.6670811, -73.810322)",NORTH CONDUIT AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4470540,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,0:00,QUEENS,11422,40.6784167,-73.7292138,"(40.6784167, -73.7292138)",130 AVENUE,BROOKVILLE BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4469292,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,14:40,,,40.8827015,-73.8927242,"(40.8827015, -73.8927242)",SEDGWICK AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4470851,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/23/2021,4:05,,,40.6541504,-73.94993,"(40.6541504, -73.94993)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4470280,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,23:45,,,,,,JEROME AVENUE,EAST 168 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4473862,Sedan,Moped,,, +04/15/2022,21:25,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",OCEAN PARKWAY,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519516,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,19:30,MANHATTAN,10013,40.7233076,-74.00298,"(40.7233076, -74.00298)",WEST BROADWAY,WATTS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469329,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/20/2021,1:35,,,40.6828756,-73.9144661,"(40.6828756, -73.9144661)",BAINBRIDGE STREET,,,2,0,0,0,2,0,0,0,Traffic Control Disregarded,Unspecified,,,,4469319,E-Bike,Sedan,,, +10/23/2021,2:28,MANHATTAN,10001,40.7478946,-73.9891656,"(40.7478946, -73.9891656)",AVENUE OF THE AMERICAS,WEST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470437,Station Wagon/Sport Utility Vehicle,Pedicab,,, +04/13/2022,8:10,,,40.577995,-73.95964,"(40.577995, -73.95964)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518605,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,12:50,STATEN ISLAND,10310,,,,RICHMOND TERRACE,BODINE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467150,Bike,Sedan,,, +08/13/2021,0:17,,,,,,GROTE STREET,EAST 182 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4446555,Ambulance,,,, +10/24/2021,16:26,MANHATTAN,10017,40.7551925,-73.9712183,"(40.7551925, -73.9712183)",3 AVENUE,EAST 49 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4470525,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,2:47,QUEENS,11419,40.6888383,-73.8218926,"(40.6888383, -73.8218926)",123 STREET,103 AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4451603,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/19/2021,8:52,QUEENS,11428,40.718412,-73.741663,"(40.718412, -73.741663)",215 STREET,94 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468886,Sedan,Sedan,,, +11/02/2021,12:20,BRONX,10456,40.829823,-73.90773,"(40.829823, -73.90773)",WASHINGTON AVENUE,EAST 167 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473554,Station Wagon/Sport Utility Vehicle,WHEELCHAIR,,, +10/24/2021,5:00,BRONX,10473,40.8203657,-73.8705001,"(40.8203657, -73.8705001)",LAFAYETTE AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470363,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,8:45,BRONX,10469,40.86759,-73.85095,"(40.86759, -73.85095)",THROOP AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4519230,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,13:15,BROOKLYN,11226,40.6469634,-73.9472399,"(40.6469634, -73.9472399)",TILDEN AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4468059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/15/2021,20:21,MANHATTAN,10033,40.8510962,-73.9324351,"(40.8510962, -73.9324351)",WEST 184 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468230,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,7:00,BROOKLYN,11215,40.6750916,-73.9854416,"(40.6750916, -73.9854416)",,,222 1 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468274,Motorcycle,,,, +10/22/2021,6:38,,,40.6127578,-73.9609211,"(40.6127578, -73.9609211)",AVENUE O,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470177,Sedan,E-Scooter,,, +10/15/2021,17:55,,,40.6936492,-73.9833217,"(40.6936492, -73.9833217)",FLATBUSH AVENUE EXTENSION,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467539,Sedan,E-Scooter,,, +10/11/2021,18:30,QUEENS,11429,40.7073058,-73.7512138,"(40.7073058, -73.7512138)",HOLLIS AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469010,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,12:32,,,40.6721759,-73.8939568,"(40.6721759, -73.8939568)",PITKIN AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470464,Sedan,E-Scooter,,, +10/15/2021,16:10,BROOKLYN,11230,40.6259177,-73.9755617,"(40.6259177, -73.9755617)",,,118 AVENUE I,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468289,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/21/2021,7:00,QUEENS,11355,40.7529387,-73.812734,"(40.7529387, -73.812734)",PARSONS BOULEVARD,KALMIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470761,Sedan,,,, +10/13/2021,19:00,QUEENS,11102,40.7716411,-73.926407,"(40.7716411, -73.926407)",21 STREET,27 ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466973,Bike,Sedan,,, +10/20/2021,6:45,,,40.7716364,-73.8760984,"(40.7716364, -73.8760984)",G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469383,Sedan,Sedan,,, +10/14/2021,12:00,BRONX,10460,40.8370542,-73.8823087,"(40.8370542, -73.8823087)",,,1819 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468672,Sedan,Sedan,,, +10/07/2021,18:30,,,40.7002206,-73.9863892,"(40.7002206, -73.9863892)",JAY STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4465076,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/14/2021,13:00,QUEENS,11432,40.7107009,-73.8071117,"(40.7107009, -73.8071117)",,,85-44 152 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467515,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,14:00,QUEENS,11004,40.7361595,-73.7137011,"(40.7361595, -73.7137011)",HILLSIDE AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469493,Sedan,,,, +10/14/2021,16:03,BRONX,10459,40.8177952,-73.8931829,"(40.8177952, -73.8931829)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4467352,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/13/2021,17:37,,,40.8165528,-73.8122768,"(40.8165528, -73.8122768)",HARDING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466804,Sedan,Sedan,,, +10/16/2021,16:54,,,40.8566201,-73.8676134,"(40.8566201, -73.8676134)",PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4468851,Sedan,Sedan,,, +10/18/2021,6:35,,,40.7568746,-73.9705439,"(40.7568746, -73.9705439)",QUEENS MIDTOWN TUNNEL,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4470093,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,11:10,BROOKLYN,11236,0,0,"(0.0, 0.0)",EAST 108 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,17:55,,,40.8560148,-73.9121287,"(40.8560148, -73.9121287)",ANDREWS AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4468377,Sedan,Sedan,,, +10/23/2021,5:20,,,40.6704292,-73.9281805,"(40.6704292, -73.9281805)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470351,Sedan,,,, +10/14/2021,7:30,BROOKLYN,11218,40.6471122,-73.9725262,"(40.6471122, -73.9725262)",EAST 8 STREET,FRIEL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4467765,Flat Bed,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,20:32,BROOKLYN,11232,40.665887,-73.996399,"(40.665887, -73.996399)",HAMILTON AVENUE,18 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4468079,Sedan,Sedan,,, +10/18/2021,14:49,STATEN ISLAND,10301,40.6461812,-74.0880718,"(40.6461812, -74.0880718)",,,61 JERSEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469260,Sedan,,,, +04/12/2022,23:02,BROOKLYN,11203,40.648182,-73.93001,"(40.648182, -73.93001)",UTICA AVENUE,TILDEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4519229,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,18:17,,,40.670658,-73.9579745,"(40.670658, -73.9579745)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469935,Sedan,,,, +10/23/2021,0:00,QUEENS,11432,,,,,,175-41 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474028,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,21:30,QUEENS,11105,40.7778385,-73.9115087,"(40.7778385, -73.9115087)",,,21-61 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470674,Sedan,,,, +10/24/2021,0:35,BROOKLYN,11237,40.707428,-73.9319095,"(40.707428, -73.9319095)",,,2 KNICKERBOCKER AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4470209,Sedan,Sedan,,, +10/23/2021,16:35,,,40.8481201,-73.9308839,"(40.8481201, -73.9308839)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470858,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/24/2021,13:47,MANHATTAN,10025,40.794651,-73.9717827,"(40.794651, -73.9717827)",BROADWAY,WEST 96 STREET,,1,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4470346,Sedan,E-Scooter,,, +10/17/2021,10:54,BROOKLYN,11208,40.6708632,-73.874233,"(40.6708632, -73.874233)",FOUNTAIN AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468157,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/20/2021,10:10,,,40.8029708,-73.9638616,"(40.8029708, -73.9638616)",CATHEDRAL PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469135,Sedan,,,, +10/20/2021,18:32,,,40.5882816,-74.1668123,"(40.5882816, -74.1668123)",,,26 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4469834,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,12:15,STATEN ISLAND,10304,40.6214595,-74.0717416,"(40.6214595, -74.0717416)",BAY STREET,TOWNSEND AVENUE,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4467862,Sedan,Bike,,, +10/08/2021,23:30,,,40.7162994,-73.7558878,"(40.7162994, -73.7558878)",,,FRANCIS LEWIS BOULEVARD,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4465415,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,19:30,,,40.6671424,-73.9592455,"(40.6671424, -73.9592455)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467500,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,18:49,,,40.7020459,-73.9155992,"(40.7020459, -73.9155992)",WYCKOFF AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469780,Sedan,Sedan,,, +10/25/2021,5:00,,,40.7376829,-73.8520482,"(40.7376829, -73.8520482)",108 STREET,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4470800,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,21:50,BROOKLYN,11234,40.6215393,-73.9242311,"(40.6215393, -73.9242311)",AVENUE M,EAST 53 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4469455,Sedan,Sedan,,, +10/23/2021,17:30,BRONX,10457,40.8376538,-73.8999668,"(40.8376538, -73.8999668)",CLAREMONT PARKWAY,FULTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470786,Sedan,Sedan,,, +10/22/2021,9:19,BRONX,10455,40.820822,-73.9156111,"(40.820822, -73.9156111)",EAST 156 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4470627,Sedan,,,, +10/15/2021,15:45,QUEENS,11101,40.7458654,-73.9266953,"(40.7458654, -73.9266953)",43 AVENUE,38 STREET,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4467423,E-Scooter,,,, +10/19/2021,21:40,,,40.7967208,-73.9628863,"(40.7967208, -73.9628863)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing Too Closely,Unspecified,,,4469056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/02/2021,14:40,,,40.729736,-73.833725,"(40.729736, -73.833725)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4473445,Sedan,Pick-up Truck,Sedan,, +10/22/2021,8:30,BRONX,10457,40.848755,-73.8986959,"(40.848755, -73.8986959)",PARK AVENUE,EAST 178 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4470220,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,9:16,BRONX,10475,40.8845482,-73.832337,"(40.8845482, -73.832337)",BOSTON ROAD,SECOR AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4470368,Sedan,Carry All,,, +08/12/2021,12:30,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446599,Bus,,,, +10/20/2021,15:15,,,40.7392269,-73.8150929,"(40.7392269, -73.8150929)",HORACE HARDING EXPRESSWAY,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4469356,Pick-up Truck,,,, +10/19/2021,8:20,MANHATTAN,10032,40.8368223,-73.9442322,"(40.8368223, -73.9442322)",,,52 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468839,Sedan,,,, +10/14/2021,14:15,BROOKLYN,11234,40.6224117,-73.9361485,"(40.6224117, -73.9361485)",,,3860 KINGS HIGHWAY,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4467159,Sedan,Sedan,,, +10/19/2021,10:57,BROOKLYN,11231,40.6774397,-73.9964741,"(40.6774397, -73.9964741)",SMITH STREET,5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468953,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/11/2021,6:42,,,40.6291662,-73.947326,"(40.6291662, -73.947326)",AVENUE I,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,8:30,BRONX,10463,40.8838706,-73.89295,"(40.8838706, -73.89295)",,,103 VANCORTLANDT AVENUE WEST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470060,Sedan,Sedan,,, +10/18/2021,17:30,,,40.7906152,-73.9798631,"(40.7906152, -73.9798631)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468523,Sedan,Bike,,, +10/22/2021,7:50,BRONX,10463,40.8788411,-73.8999899,"(40.8788411, -73.8999899)",,,3137 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469734,Sedan,,,, +10/22/2021,10:45,BROOKLYN,11212,40.6614321,-73.9164327,"(40.6614321, -73.9164327)",LEGION STREET,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4470501,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,10:00,BROOKLYN,11212,40.6656265,-73.9096977,"(40.6656265, -73.9096977)",ROCKAWAY AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469762,Sedan,,,, +10/23/2021,23:34,,,40.8262278,-73.856055,"(40.8262278, -73.856055)",BRUCKNER EXPRESSWAY RAMP,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4470590,Sedan,,,, +10/20/2021,9:10,QUEENS,11368,40.7515281,-73.8591782,"(40.7515281, -73.8591782)",39 AVENUE,108 STREET,,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4469224,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,10:55,BRONX,10460,40.8382334,-73.8884378,"(40.8382334, -73.8884378)",,,1738 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468706,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,9:05,MANHATTAN,10016,40.7476292,-73.9767362,"(40.7476292, -73.9767362)",EAST 37 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469515,Bus,Bike,,, +10/17/2021,21:09,,,40.8856107,-73.9017934,"(40.8856107, -73.9017934)",WEST 238 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4468505,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,11:50,BROOKLYN,11218,40.6465543,-73.9802105,"(40.6465543, -73.9802105)",,,310 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468288,Carry All,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,11:15,QUEENS,11354,40.7693526,-73.8325765,"(40.7693526, -73.8325765)",LINDEN PLACE,31 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467384,Pick-up Truck,Box Truck,,, +10/21/2021,19:22,BROOKLYN,11209,40.6191728,-74.0282043,"(40.6191728, -74.0282043)",90 STREET,5 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4469589,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/16/2021,12:00,BRONX,10452,40.8383616,-73.9249165,"(40.8383616, -73.9249165)",WEST 168 STREET,NELSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469535,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,12:01,MANHATTAN,10035,40.79634,-73.93516,"(40.79634, -73.93516)",,,2266 1 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473391,Sedan,Sedan,,, +10/16/2021,13:00,,,40.6920346,-73.9456428,"(40.6920346, -73.9456428)",TOMPKINS AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469744,Sedan,E-Bike,,, +10/16/2021,5:03,,,40.57385,-74.105496,"(40.57385, -74.105496)",CROMWELL CIRCLE,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4467733,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,22:00,BROOKLYN,11219,40.6291394,-74.009297,"(40.6291394, -74.009297)",,,6616 10 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467186,Sedan,Sedan,,, +10/25/2021,0:43,BROOKLYN,11203,40.6524639,-73.9228481,"(40.6524639, -73.9228481)",KINGS HIGHWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4470617,Sedan,Tractor Truck Diesel,Taxi,, +10/13/2021,18:33,BROOKLYN,11230,40.6293978,-73.9745149,"(40.6293978, -73.9745149)",PARKVILLE AVENUE,SETON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466883,Sedan,Box Truck,,, +10/16/2021,21:53,BROOKLYN,11232,40.6531978,-74.0055789,"(40.6531978, -74.0055789)",38 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4467909,Sedan,Sedan,,, +10/22/2021,14:23,QUEENS,11694,40.5839322,-73.830928,"(40.5839322, -73.830928)",BEACH CHANNEL DRIVE,BEACH 108 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469909,Van,Sedan,,, +10/21/2021,17:00,BRONX,10467,40.8796268,-73.8647847,"(40.8796268, -73.8647847)",,,3618 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469587,Sedan,,,, +10/13/2021,14:45,,,40.5520008,-74.1678936,"(40.5520008, -74.1678936)",AUGUSTA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469812,Sedan,,,, +10/17/2021,10:24,BROOKLYN,11208,40.668833,-73.8691164,"(40.668833, -73.8691164)",,,2583 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,14:30,MANHATTAN,10128,40.7807536,-73.9525754,"(40.7807536, -73.9525754)",3 AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470585,Sedan,Sedan,,, +10/24/2021,1:58,QUEENS,11368,40.7490228,-73.8562375,"(40.7490228, -73.8562375)",,,108-40 43 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470492,Taxi,Sedan,,, +10/21/2021,0:01,BROOKLYN,11239,40.6546865,-73.8777126,"(40.6546865, -73.8777126)",VANDALIA AVENUE,GATEWAY DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469684,Sedan,,,, +10/19/2021,16:50,QUEENS,11419,40.6859243,-73.8271117,"(40.6859243, -73.8271117)",,,115-17 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4468985,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,20:31,MANHATTAN,10024,40.786484,-73.97218,"(40.786484, -73.97218)",WEST 86 STREET,COLUMBUS AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4474158,Sedan,,,, +10/11/2021,6:25,,,40.608317,-74.1313086,"(40.608317, -74.1313086)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4468030,Sedan,,,, +09/26/2021,15:37,,,40.8058726,-73.9251663,"(40.8058726, -73.9251663)",Bruckner Blvd,Willis avenue bridge,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,7:00,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4466560,Sedan,Sedan,,, +10/15/2021,1:35,QUEENS,11413,40.6741774,-73.7405221,"(40.6741774, -73.7405221)",135 AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467201,Sedan,Convertible,,, +04/13/2022,6:30,,,40.604694,-74.02583,"(40.604694, -74.02583)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Steering Failure,Unspecified,,,,4518766,Sedan,Sedan,,, +10/21/2021,8:18,,,40.6730095,-73.7880875,"(40.6730095, -73.7880875)",SUTPHIN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469418,Sedan,Bus,,, +10/15/2021,18:52,MANHATTAN,10013,40.7215689,-73.9996567,"(40.7215689, -73.9996567)",,,437 BROOME STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468306,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,21:30,QUEENS,11432,40.7074685,-73.7886921,"(40.7074685, -73.7886921)",JAMAICA AVENUE,171 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467728,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,0:52,,,40.7685442,-73.9656926,"(40.7685442, -73.9656926)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4468596,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/16/2021,14:30,BROOKLYN,11206,40.6997006,-73.9516931,"(40.6997006, -73.9516931)",,,577 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468086,Sedan,Sedan,,, +10/24/2021,15:45,BRONX,10465,40.8263134,-73.8403126,"(40.8263134, -73.8403126)",,,905 BRUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470642,Sedan,Sedan,,, +10/16/2021,19:05,BRONX,10462,,,,EAST TREMONT AVENUE,UNIONPORT ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474010,Station Wagon/Sport Utility Vehicle,Motorbike,,, +10/15/2021,23:05,MANHATTAN,10031,40.8248428,-73.9504463,"(40.8248428, -73.9504463)",,,527 WEST 143 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468611,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,19:28,QUEENS,11101,40.752301,-73.9163134,"(40.752301, -73.9163134)",,,34-60 48 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469351,Station Wagon/Sport Utility Vehicle,,,, +09/26/2021,20:00,,,40.840661,-73.8385027,"(40.840661, -73.8385027)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4461443,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,11:00,QUEENS,11433,40.7049936,-73.794385,"(40.7049936, -73.794385)",,,92-23 165 STREET,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4470568,Sedan,,,, +10/20/2021,7:30,,,40.7727005,-73.8339545,"(40.7727005, -73.8339545)",LINDEN PLACE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4469361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,18:25,BROOKLYN,11233,40.6683725,-73.9226314,"(40.6683725, -73.9226314)",RALPH AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469153,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/18/2021,2:18,,,40.7568746,-73.9705439,"(40.7568746, -73.9705439)",QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4469877,Sedan,,,, +04/15/2022,16:00,,,,,,HORACE HARDING EXPRESSWAY,UTOPIA PARKWAY,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4519397,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,15:55,BROOKLYN,11222,,,,,,273 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4468344,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,17:46,BRONX,10459,40.8209989,-73.8968919,"(40.8209989, -73.8968919)",EAST 163 STREET,INTERVALE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467632,Sedan,Moped,,, +10/13/2021,23:30,,,40.6908472,-73.7266153,"(40.6908472, -73.7266153)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467015,Sedan,Sedan,,, +10/19/2021,14:30,,,40.621041,-74.0320486,"(40.621041, -74.0320486)",3 AVENUE,90 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468834,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,23:30,BROOKLYN,11223,40.6064983,-73.9723562,"(40.6064983, -73.9723562)",,,1889 MC DONALD AVENUE,4,0,0,0,0,0,4,0,Unspecified,,,,,4470552,Sedan,,,, +10/17/2021,10:45,QUEENS,11365,40.7422483,-73.7962417,"(40.7422483, -73.7962417)",,,56-27 FRESH MEADOW LANE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4469213,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,12:30,MANHATTAN,10027,40.8122242,-73.952296,"(40.8122242, -73.952296)",,,362 WEST 127 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470323,Sedan,,,, +10/13/2021,20:40,,,40.8284105,-73.9312476,"(40.8284105, -73.9312476)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467233,Sedan,,,, +10/15/2021,7:30,,,40.8523089,-73.8981049,"(40.8523089, -73.8981049)",EAST 180 STREET,WEBSTER AVENUE,,7,0,0,0,0,0,7,0,Turning Improperly,Unspecified,,,,4467333,Bus,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,16:20,BROOKLYN,11206,40.6963525,-73.940706,"(40.6963525, -73.940706)",MYRTLE AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4468125,Sedan,,,, +10/13/2021,12:40,,,40.6464402,-73.9128804,"(40.6464402, -73.9128804)",AVENUE D,REMSEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467100,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,11:41,MANHATTAN,10019,40.764626,-73.99555,"(40.764626, -73.99555)",11 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473526,Sedan,Taxi,,, +10/23/2021,7:37,QUEENS,11435,40.6986227,-73.8027508,"(40.6986227, -73.8027508)",,,95-36 150 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470580,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,8:40,QUEENS,11385,40.6941097,-73.8973622,"(40.6941097, -73.8973622)",COOPER AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469924,Sedan,Sedan,,, +11/02/2021,14:00,STATEN ISLAND,10301,40.63277,-74.09004,"(40.63277, -74.09004)",WOODSTOCK AVENUE,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473793,Sedan,Sedan,,, +10/10/2021,12:34,,,40.6206715,-74.1671421,"(40.6206715, -74.1671421)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,23:30,QUEENS,11101,40.7458182,-73.9456495,"(40.7458182, -73.9456495)",JACKSON AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466954,Box Truck,Bus,,, +10/13/2021,17:30,BROOKLYN,11211,40.7161723,-73.9595114,"(40.7161723, -73.9595114)",NORTH 4 STREET,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4470818,Station Wagon/Sport Utility Vehicle,Bike,,, +10/14/2021,18:30,,,40.659337,-73.9272553,"(40.659337, -73.9272553)",REMSEN AVENUE,WINTHROP STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469451,Sedan,Bike,,, +10/13/2021,22:00,,,40.8493727,-73.8957527,"(40.8493727, -73.8957527)",EAST 179 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467030,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,20:45,BRONX,10467,40.8689757,-73.8632103,"(40.8689757, -73.8632103)",,,2964 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4469024,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,13:30,MANHATTAN,10001,40.7485768,-74.0014828,"(40.7485768, -74.0014828)",,,425 WEST 25 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470832,Sedan,,,, +10/15/2021,2:25,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",,,33-12 19 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467894,Sedan,,,, +10/12/2021,15:33,BRONX,10451,40.8181699,-73.9294262,"(40.8181699, -73.9294262)",,,478 GERARD AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4469747,Bike,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,1:00,,,40.6871604,-73.9358788,"(40.6871604, -73.9358788)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4468110,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/21/2021,23:38,BROOKLYN,11207,40.6778685,-73.9033142,"(40.6778685, -73.9033142)",VAN SIDERIN AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4470486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,16:50,MANHATTAN,10003,40.7285961,-73.9876715,"(40.7285961, -73.9876715)",2 AVENUE,SAINT MARKS PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470520,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +10/23/2021,11:30,,,40.7524109,-73.9783479,"(40.7524109, -73.9783479)",EAST 42 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470428,Sedan,Bike,,, +10/18/2021,17:00,BROOKLYN,11213,40.6643433,-73.9315393,"(40.6643433, -73.9315393)",MONTGOMERY STREET,UTICA AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4468491,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,16:15,,,40.6918538,-73.8109872,"(40.6918538, -73.8109872)",VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467979,Sedan,Motorcycle,,, +10/22/2021,9:06,BRONX,10453,40.8469538,-73.918625,"(40.8469538, -73.918625)",WEST 174 STREET,NELSON AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Other Vehicular,,,,4469817,Box Truck,Sedan,,, +10/20/2021,2:36,,,40.8631649,-73.9198741,"(40.8631649, -73.9198741)",10 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469128,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,19:50,QUEENS,11379,40.7247012,-73.8702083,"(40.7247012, -73.8702083)",,,84-48 62 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,2:45,MANHATTAN,10029,40.7999853,-73.9448468,"(40.7999853, -73.9448468)",EAST 116 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470708,Sedan,,,, +10/22/2021,11:06,,,40.7954563,-73.9656282,"(40.7954563, -73.9656282)",WEST 100 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469795,Sedan,Box Truck,,, +10/18/2021,19:33,,,40.7041129,-73.9158671,"(40.7041129, -73.9158671)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,17:00,QUEENS,11365,40.7457503,-73.7890038,"(40.7457503, -73.7890038)",188 STREET,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469250,Sedan,Sedan,,, +11/02/2021,21:18,,,40.7266,-73.789116,"(40.7266, -73.789116)",UNION TURNPIKE,SURREY PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473469,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,21:30,BRONX,10454,40.8035936,-73.9197796,"(40.8035936, -73.9197796)",SAINT ANNS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470612,Chassis Cab,Sedan,,, +10/08/2021,15:40,QUEENS,11355,40.7581922,-73.8231763,"(40.7581922, -73.8231763)",SANFORD AVENUE,BOWNE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4468921,Sedan,Box Truck,,, +10/14/2021,10:30,BROOKLYN,11207,40.6747765,-73.8863304,"(40.6747765, -73.8863304)",,,370 WARWICK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467265,Dump,Bus,,, +09/19/2021,22:00,,,40.6236888,-74.1506578,"(40.6236888, -74.1506578)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4458854,Sedan,,,, +10/17/2021,8:31,MANHATTAN,10032,40.8404858,-73.9383657,"(40.8404858, -73.9383657)",WEST 168 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467947,Sedan,,,, +10/20/2021,13:25,BRONX,10451,40.8135894,-73.927289,"(40.8135894, -73.927289)",CANAL PLACE,EAST 140 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470870,,,,, +10/16/2021,11:44,QUEENS,11101,40.7598408,-73.943635,"(40.7598408, -73.943635)",,,37-25 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468242,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,11:01,BROOKLYN,11224,40.575575,-73.994316,"(40.575575, -73.994316)",MERMAID AVENUE,WEST 28 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469483,Sedan,,,, +11/02/2021,16:20,QUEENS,11417,40.674587,-73.85931,"(40.674587, -73.85931)",77 STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4473416,Sedan,Sedan,Taxi,Sedan, +10/18/2021,18:50,QUEENS,11434,40.6666971,-73.7671284,"(40.6666971, -73.7671284)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468537,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,17:30,BROOKLYN,11226,40.6548824,-73.9618804,"(40.6548824, -73.9618804)",OCEAN AVENUE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,13:35,BRONX,10466,40.8948734,-73.8565596,"(40.8948734, -73.8565596)",WHITE PLAINS ROAD,EAST 235 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469567,Sedan,Sedan,,, +11/02/2021,6:50,BRONX,10454,40.807766,-73.91023,"(40.807766, -73.91023)",CONCORD AVENUE,EAST 142 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473311,Sedan,Bike,,, +10/16/2021,19:00,MANHATTAN,10029,40.7955837,-73.9426035,"(40.7955837, -73.9426035)",,,172 EAST 112 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4467937,,,,, +10/22/2021,9:15,BROOKLYN,11226,40.6536344,-73.9547709,"(40.6536344, -73.9547709)",,,142 LENOX ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470270,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/02/2021,6:18,QUEENS,11354,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,UNION STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473591,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,17:00,BROOKLYN,11206,40.704688,-73.9352082,"(40.704688, -73.9352082)",,,229 MOORE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4468579,Tractor Truck Diesel,,,, +10/13/2021,10:28,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467122,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/10/2021,22:20,BROOKLYN,11210,40.617104,-73.946075,"(40.617104, -73.946075)",AVENUE N,EAST 29 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4486458,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,22:05,STATEN ISLAND,10306,40.5797344,-74.1142267,"(40.5797344, -74.1142267)",RICHMOND ROAD,PRESCOTT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4469096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,12:59,,,40.6918538,-73.8109872,"(40.6918538, -73.8109872)",VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468586,Sedan,,,, +10/23/2021,20:30,QUEENS,11422,40.6543568,-73.7319712,"(40.6543568, -73.7319712)",257 STREET,148 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4470129,Sedan,Sedan,Sedan,, +10/14/2021,18:14,,,40.7443035,-73.7332803,"(40.7443035, -73.7332803)",CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4467169,Sedan,Sedan,Sedan,, +10/16/2021,12:40,MANHATTAN,10000,40.7747084,-73.9746832,"(40.7747084, -73.9746832)",WEST DRIVE,OLMSTED WAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467673,Bike,Bike,,, +10/22/2021,7:50,MANHATTAN,10065,40.7633655,-73.9592408,"(40.7633655, -73.9592408)",1 AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4469849,Bus,Bus,,, +10/17/2021,9:42,QUEENS,11378,40.7210835,-73.9083419,"(40.7210835, -73.9083419)",59 STREET,58 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4468478,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/13/2021,19:50,BRONX,10452,40.8369385,-73.9271154,"(40.8369385, -73.9271154)",OGDEN AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4466823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +10/16/2021,15:08,MANHATTAN,10004,40.7051728,-74.0092614,"(40.7051728, -74.0092614)",,,64 BEAVER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468424,Sedan,,,, +10/14/2021,15:45,QUEENS,11101,40.7524705,-73.9125397,"(40.7524705, -73.9125397)",,,50-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469039,Sedan,E-Bike,,, +10/14/2021,18:27,MANHATTAN,10036,40.758981,-73.9959428,"(40.758981, -73.9959428)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,2:54,BRONX,10467,40.8660476,-73.8720598,"(40.8660476, -73.8720598)",SOUTHERN BOULEVARD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470769,Sedan,,,, +10/20/2021,8:00,,,40.7559493,-73.7714546,"(40.7559493, -73.7714546)",47 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469218,Sedan,,,, +10/08/2021,22:00,BROOKLYN,11233,40.6739862,-73.9085499,"(40.6739862, -73.9085499)",,,222 Mother Gaston blvd,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466440,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,14:35,BRONX,10468,40.8682829,-73.9010669,"(40.8682829, -73.9010669)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467577,Sedan,,,, +10/21/2021,15:24,BRONX,10455,40.8130953,-73.8982589,"(40.8130953, -73.8982589)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4470071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,7:50,BRONX,10472,40.8266494,-73.8779157,"(40.8266494, -73.8779157)",,,1107 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469740,Dump,Sedan,Sedan,, +10/14/2021,15:15,BROOKLYN,11215,40.6757782,-73.9839201,"(40.6757782, -73.9839201)",,,261 4 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,,4468189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/24/2021,18:00,,,40.511804,-74.2500345,"(40.511804, -74.2500345)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4462010,Flat Bed,Sedan,,, +10/14/2021,8:20,,,40.8771397,-73.8752676,"(40.8771397, -73.8752676)",PERRY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467401,Sedan,Sedan,,, +10/21/2021,19:00,QUEENS,11368,40.7525775,-73.8642074,"(40.7525775, -73.8642074)",,,37-24 103 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469802,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,23:35,MANHATTAN,10025,40.7915596,-73.968476,"(40.7915596, -73.968476)",WEST 94 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4469422,Sedan,Sedan,,, +10/13/2021,6:50,BROOKLYN,11232,40.6527254,-74.0093449,"(40.6527254, -74.0093449)",3 AVENUE,41 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467047,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/02/2021,14:50,,,40.635452,-73.96713,"(40.635452, -73.96713)",DITMAS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473500,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,8:30,MANHATTAN,10009,40.7236497,-73.9852841,"(40.7236497, -73.9852841)",EAST 3 STREET,AVENUE A,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470302,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +11/01/2021,14:17,,,40.689445,-73.808716,"(40.689445, -73.808716)",106 AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4474110,Sedan,Box Truck,,, +10/17/2021,21:00,QUEENS,11372,40.7501388,-73.8805943,"(40.7501388, -73.8805943)",86 STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468866,Sedan,E-Bike,,, +10/16/2021,11:20,MANHATTAN,10013,40.715785,-73.9986742,"(40.715785, -73.9986742)",,,80 BAYARD STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,10:43,,,40.8561638,-73.8443975,"(40.8561638, -73.8443975)",,,BRONX RIVER PARKWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466456,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,9:45,,,40.6406452,-73.7433838,"(40.6406452, -73.7433838)",ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4467395,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +10/13/2021,12:10,MANHATTAN,10040,40.8599521,-73.9308799,"(40.8599521, -73.9308799)",,,4580 BROADWAY,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4467037,Motorscooter,,,, +10/17/2021,17:35,MANHATTAN,10034,40.8678142,-73.9236287,"(40.8678142, -73.9236287)",WEST 204 STREET,COOPER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468856,Sedan,Sedan,,, +10/17/2021,15:00,BROOKLYN,11222,40.732009,-73.957943,"(40.732009, -73.957943)",FRANKLIN STREET,INDIA STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468339,Sedan,E-Bike,,, +10/17/2021,21:14,STATEN ISLAND,10309,40.5408314,-74.2167519,"(40.5408314, -74.2167519)",,,15 LYNBROOK COURT,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4469800,Sedan,,,, +10/18/2021,15:32,BRONX,10460,40.8357057,-73.8887453,"(40.8357057, -73.8887453)",SOUTHERN BOULEVARD,EAST 173 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4468695,Sedan,,,, +10/20/2021,11:25,BRONX,10462,40.8355193,-73.8611145,"(40.8355193, -73.8611145)",WOOD AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469388,Sedan,Sedan,,, +09/26/2021,16:45,BRONX,10462,40.8336142,-73.860851,"(40.8336142, -73.860851)",HUGH GRANT CIRCLE,METROPOLITAN AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467483,Sedan,E-Bike,,, +10/20/2021,16:30,QUEENS,11427,40.7230886,-73.7565448,"(40.7230886, -73.7565448)",HILLSIDE AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469287,Sedan,,,, +10/24/2021,3:18,QUEENS,11378,40.726407,-73.9066959,"(40.726407, -73.9066959)",,,59-60 55 ROAD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4470411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,16:00,BRONX,10469,40.8714567,-73.8589092,"(40.8714567, -73.8589092)",,,983 BURKE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467994,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/05/2021,15:08,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Following Too Closely,Unspecified,Unspecified,,4466473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/13/2021,19:20,BROOKLYN,11208,40.6767636,-73.8815883,"(40.6767636, -73.8815883)",,,332 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467251,Sedan,,,, +10/14/2021,14:30,MANHATTAN,10033,40.8507741,-73.9354247,"(40.8507741, -73.9354247)",WEST 182 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468861,Station Wagon/Sport Utility Vehicle,Bus,,, +10/17/2021,4:30,BRONX,10469,40.86516,-73.8508131,"(40.86516, -73.8508131)",,,1250 ALLERTON AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4469025,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/24/2021,8:10,BROOKLYN,11203,40.6582963,-73.9310841,"(40.6582963, -73.9310841)",UTICA AVENUE,WINTHROP STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470285,Sedan,Sedan,,, +10/16/2021,17:10,,,40.7606264,-73.817683,"(40.7606264, -73.817683)",BARCLAY AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467651,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/23/2021,21:10,BROOKLYN,11239,40.6420577,-73.8797429,"(40.6420577, -73.8797429)",,,856 LOUISIANA AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4470475,Sedan,Sedan,,, +11/02/2021,2:25,QUEENS,11103,40.757095,-73.915016,"(40.757095, -73.915016)",45 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4473891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,19:30,BROOKLYN,11249,40.716486,-73.9631785,"(40.716486, -73.9631785)",,,104 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469651,Station Wagon/Sport Utility Vehicle,FORKLIFT,,, +10/14/2021,12:07,BROOKLYN,11220,40.6408367,-74.0184306,"(40.6408367, -74.0184306)",4 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,13:30,QUEENS,11101,40.7546033,-73.9335616,"(40.7546033, -73.9335616)",29 ST,38AVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470145,Sedan,,,, +10/08/2021,0:00,BROOKLYN,11229,40.6106126,-73.9567049,"(40.6106126, -73.9567049)",EAST 17 STREET,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467292,Sedan,,,, +10/22/2021,18:00,QUEENS,11413,40.6592489,-73.7583817,"(40.6592489, -73.7583817)",147 AVENUE,223 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470048,Sedan,,,, +10/21/2021,23:15,BRONX,10458,40.8587638,-73.8973575,"(40.8587638, -73.8973575)",VALENTINE AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469669,Sedan,,,, +09/30/2021,16:47,MANHATTAN,10023,40.771155,-73.9796523,"(40.771155, -73.9796523)",CENTRAL PARK WEST,WEST 64 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4469272,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,22:50,,,40.53465,-74.19386,"(40.53465, -74.19386)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4473987,Sedan,,,, +10/14/2021,14:10,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467572,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,23:25,BROOKLYN,11249,40.7036882,-73.9650588,"(40.7036882, -73.9650588)",WYTHE AVENUE,WILSON STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4470356,Sedan,Bike,,, +10/23/2021,6:10,QUEENS,11374,40.7271398,-73.8712254,"(40.7271398, -73.8712254)",,,61-60 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4470396,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,22:00,,,40.8213817,-73.9541326,"(40.8213817, -73.9541326)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469973,Sedan,Sedan,,, +10/12/2021,0:30,,,40.6908472,-73.7266153,"(40.6908472, -73.7266153)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4466573,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,8:12,QUEENS,11355,40.7564994,-73.8201379,"(40.7564994, -73.8201379)",SYRINGA PLACE,BEECH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468775,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,5:39,BROOKLYN,11228,40.6145792,-74.022796,"(40.6145792, -74.022796)",7 AVENUE,92 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4469468,Sedan,Sedan,,, +10/17/2021,21:40,BROOKLYN,11203,40.6397355,-73.9301124,"(40.6397355, -73.9301124)",EAST 49 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468257,Sedan,,,, +10/20/2021,12:45,QUEENS,11423,40.7104697,-73.7721318,"(40.7104697, -73.7721318)",,,187-11 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469245,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,16:00,BROOKLYN,11213,40.6676505,-73.9297718,"(40.6676505, -73.9297718)",,,1760 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470241,Sedan,Sedan,,, +10/14/2021,6:30,QUEENS,11368,40.7493752,-73.8675126,"(40.7493752, -73.8675126)",98 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468642,Sedan,E-Bike,,, +10/19/2021,11:00,QUEENS,11106,40.7613564,-73.9353886,"(40.7613564, -73.9353886)",35 AVENUE,21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4469042,Sedan,Sedan,Sedan,, +04/15/2022,13:15,,,40.830257,-73.914856,"(40.830257, -73.914856)",COLLEGE AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4519423,,,,, +10/17/2021,15:30,QUEENS,11373,40.7352066,-73.8665993,"(40.7352066, -73.8665993)",,,94-11 59 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468027,Sedan,,,, +10/09/2021,16:49,BRONX,10459,40.8304005,-73.8850391,"(40.8304005, -73.8850391)",,,1480 SHERIDAN EXPRESSWAY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inexperience,,,,4470249,Chassis Cab,MOPED,,, +10/17/2021,0:00,,,40.578921,-73.8416795,"(40.578921, -73.8416795)",JAMAICA BAY,CROSS BAY PARKWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4469572,Sedan,Sedan,,, +10/21/2021,12:40,,,40.6265706,-74.1667699,"(40.6265706, -74.1667699)",SOUTH AVENUE,WEMPLE STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4469827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,13:00,BROOKLYN,11234,40.6293277,-73.9258849,"(40.6293277, -73.9258849)",,,1255 EAST 52 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467615,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,9:00,BRONX,10452,40.8443787,-73.9217761,"(40.8443787, -73.9217761)",WEST 172 STREET,PLIMPTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468819,Bus,Sedan,,, +10/14/2021,17:55,QUEENS,11368,40.7392896,-73.8528746,"(40.7392896, -73.8528746)",108 STREET,WALDRON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467914,,,,, +10/20/2021,0:00,,,40.7190619,-73.8121185,"(40.7190619, -73.8121185)",UNION TURNPIKE,150 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4469497,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,8:30,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518911,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +10/17/2021,19:10,BROOKLYN,11219,,,,12 AVENUE,51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469440,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,18:15,,,,,,HAMILTON AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446844,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,10:30,QUEENS,11691,,,,,,233 BEACH 20 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468445,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,16:45,BROOKLYN,11208,40.6669268,-73.857403,"(40.6669268, -73.857403)",STANLEY AVENUE,AMBER STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4470468,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/08/2021,17:10,QUEENS,11363,40.76226,-73.7569828,"(40.76226, -73.7569828)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467702,Station Wagon/Sport Utility Vehicle,Bike,,, +10/13/2021,21:42,,,40.7024202,-73.8070801,"(40.7024202, -73.8070801)",LOWE COURT,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4467124,Sedan,Sedan,,, +11/02/2021,20:10,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473973,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,19:30,BROOKLYN,11228,40.6184717,-74.0212161,"(40.6184717, -74.0212161)",86 STREET,7 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4468982,E-Scooter,,,, +10/13/2021,8:50,QUEENS,11361,40.7666905,-73.7877642,"(40.7666905, -73.7877642)",34 AVENUE,200 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469212,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,6:16,MANHATTAN,10022,40.7628522,-73.9677279,"(40.7628522, -73.9677279)",LEXINGTON AVENUE,EAST 60 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4468063,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,18:00,BRONX,10451,40.8157206,-73.9250541,"(40.8157206, -73.9250541)",EAST 144 STREET,RIDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469157,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,16:10,BRONX,10451,40.8117171,-73.9267059,"(40.8117171, -73.9267059)",MORRIS AVENUE,EAST 139 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,21:32,BROOKLYN,11219,40.6271451,-74.0067986,"(40.6271451, -74.0067986)",,,1116 67 STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4469645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/08/2021,17:45,MANHATTAN,10013,40.7189626,-74.0012734,"(40.7189626, -74.0012734)",CANAL STREET,CORTLANDT ALLEY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466336,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,0:40,QUEENS,11429,40.7094706,-73.7458024,"(40.7094706, -73.7458024)",212 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469290,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,7:30,MANHATTAN,10001,40.754195,-73.997817,"(40.754195, -73.997817)",,,433 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469071,Sedan,Sedan,,, +12/24/2020,7:45,,,40.619132,-73.9901807,"(40.619132, -73.9901807)",65 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4378723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,12:35,,,40.6959501,-73.9376302,"(40.6959501, -73.9376302)",VERNON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470372,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,21:07,,,40.7697928,-73.9168275,"(40.7697928, -73.9168275)",ASTORIA BOULEVARD,33 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466969,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +11/02/2021,19:08,STATEN ISLAND,10306,40.574394,-74.10581,"(40.574394, -74.10581)",HYLAN BOULEVARD,BANCROFT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4473813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/19/2021,15:58,BRONX,10451,40.8238711,-73.9133671,"(40.8238711, -73.9133671)",,,406 EAST 161 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470785,Sedan,,,, +10/20/2021,15:20,QUEENS,11364,40.7362694,-73.7728608,"(40.7362694, -73.7728608)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469512,Station Wagon/Sport Utility Vehicle,Bus,,, +10/20/2021,9:00,BRONX,10466,40.8812664,-73.8387425,"(40.8812664, -73.8387425)",BAYCHESTER AVENUE,BOSTON ROAD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4469565,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,3:00,QUEENS,11432,40.7133033,-73.7889036,"(40.7133033, -73.7889036)",,,172-70 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469961,Sedan,,,, +10/21/2021,11:02,MANHATTAN,10033,40.8549174,-73.9367852,"(40.8549174, -73.9367852)",,,592 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469521,Sedan,Box Truck,,, +10/23/2021,0:40,MANHATTAN,10031,40.8246527,-73.946221,"(40.8246527, -73.946221)",WEST 145 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469978,Pick-up Truck,,,, +10/21/2021,10:03,BROOKLYN,11238,40.6817692,-73.9675328,"(40.6817692, -73.9675328)",ATLANTIC AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469654,Sedan,,,, +10/19/2021,8:25,BROOKLYN,11211,40.7081396,-73.9606979,"(40.7081396, -73.9606979)",,,325 ROEBLING STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468970,Sedan,,,, +10/20/2021,8:05,,,40.7816842,-73.8459383,"(40.7816842, -73.8459383)",20 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469362,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,14:30,BROOKLYN,11226,40.6505828,-73.9517226,"(40.6505828, -73.9517226)",,,2720 CHURCH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4468256,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,16:55,QUEENS,11356,40.7832196,-73.8467761,"(40.7832196, -73.8467761)",18 AVENUE,121 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469364,Sedan,Sedan,,, +10/22/2021,8:00,,,40.7404189,-73.805523,"(40.7404189, -73.805523)",59 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470735,Sedan,Sedan,,, +10/18/2021,17:47,MANHATTAN,10009,40.7270908,-73.982962,"(40.7270908, -73.982962)",,,137 AVENUE A,0,0,0,0,0,0,0,0,,,,,,4470522,,,,, +10/22/2021,12:15,,,40.6988194,-73.9579603,"(40.6988194, -73.9579603)",SKILLMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470357,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,10:18,BROOKLYN,11212,40.6698462,-73.9104436,"(40.6698462, -73.9104436)",,,1701 PITKIN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4470173,Sedan,,,, +10/23/2021,13:45,QUEENS,11385,40.7008911,-73.8933485,"(40.7008911, -73.8933485)",MYRTLE AVENUE,62 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470397,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/18/2021,19:15,QUEENS,11101,40.7400682,-73.935449,"(40.7400682, -73.935449)",HUNTERS POINT AVENUE,31 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468527,Sedan,Sedan,,, +10/16/2021,22:20,QUEENS,11411,40.6874523,-73.7372652,"(40.6874523, -73.7372652)",,,120-34 227 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4467742,Sedan,,,, +04/15/2022,12:30,BROOKLYN,11233,40.67599,-73.921486,"(40.67599, -73.921486)",,,708 KINGSBOROUGH 7 WALK,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519356,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/23/2021,19:47,BRONX,10462,40.8506663,-73.8637059,"(40.8506663, -73.8637059)",,,801 NEILL AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4470659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/02/2021,17:40,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473439,Station Wagon/Sport Utility Vehicle,TRUCK,,, +10/10/2021,14:48,,,40.8068389,-73.9343164,"(40.8068389, -73.9343164)",THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466709,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,22:10,QUEENS,11356,40.7816666,-73.827707,"(40.7816666, -73.827707)",20 avenue,petracca place,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4466592,Sedan,Sedan,Sedan,, +10/13/2021,9:52,BROOKLYN,11206,40.7019617,-73.9440046,"(40.7019617, -73.9440046)",BROADWAY,MANHATTAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466842,Sedan,,,, +10/03/2021,23:35,BROOKLYN,11221,40.68837,-73.9449102,"(40.68837, -73.9449102)",TOMPKINS AVENUE,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4469745,Motorcycle,,,, +10/20/2021,22:24,MANHATTAN,10012,40.721964,-73.9965022,"(40.721964, -73.9965022)",,,50 SPRING STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +10/15/2021,12:30,MANHATTAN,10019,40.7646844,-73.9917874,"(40.7646844, -73.9917874)",WEST 50 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469326,Taxi,,,, +10/16/2021,11:00,MANHATTAN,10026,40.8041416,-73.9551251,"(40.8041416, -73.9551251)",,,256 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468702,Sedan,,,, +10/13/2021,7:57,QUEENS,11101,40.7505041,-73.9373871,"(40.7505041, -73.9373871)",,,41-20 29 STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4466974,Pick-up Truck,,,, +11/02/2021,19:00,STATEN ISLAND,10301,40.61118,-74.105606,"(40.61118, -74.105606)",RENWICK AVENUE,LITTLE CLOVE ROAD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473794,Sedan,Bike,,, +10/13/2021,10:54,,,40.7769102,-73.9574705,"(40.7769102, -73.9574705)",EAST 82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467356,Sedan,Box Truck,,, +10/23/2021,19:30,BRONX,10460,40.8359688,-73.8699927,"(40.8359688, -73.8699927)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4470297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,3:00,BRONX,10460,40.8343764,-73.8906483,"(40.8343764, -73.8906483)",EAST 172 STREET,MINFORD PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470790,Sedan,Sedan,,, +10/19/2021,16:45,,,40.674396,-73.8965093,"(40.674396, -73.8965093)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469699,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,4:21,BRONX,10453,40.8618642,-73.9127392,"(40.8618642, -73.9127392)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,3,0,0,0,0,0,3,0,Unsafe Speed,Unsafe Speed,,,,4468417,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,13:04,QUEENS,11414,40.6626683,-73.8397144,"(40.6626683, -73.8397144)",94 STREET,157 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468216,Sedan,Bike,,, +10/14/2021,11:55,,,40.6775577,-73.8036477,"(40.6775577, -73.8036477)",VANWYCK EXPRESSWAY,FOCH BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4467203,Dump,Sedan,,, +10/13/2021,3:10,,,40.8234685,-73.92446,"(40.8234685, -73.92446)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4466809,Sedan,Sedan,,, +10/19/2021,20:00,BROOKLYN,11207,40.6541418,-73.8873109,"(40.6541418, -73.8873109)",PENNSYLVANIA AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469247,Sedan,Sedan,,, +10/15/2021,0:30,BROOKLYN,11208,40.681433,-73.8676334,"(40.681433, -73.8676334)",,,53 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,11:25,MANHATTAN,10021,40.7658742,-73.9552199,"(40.7658742, -73.9552199)",,,435 EAST 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466859,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +10/16/2021,11:44,,,40.6344375,-74.1457005,"(40.6344375, -74.1457005)",,,145 MORNINGSTAR ROAD,0,0,0,0,0,0,0,0,Steering Failure,,,,,4470844,Sedan,,,, +10/14/2021,8:20,BRONX,10461,40.8420773,-73.8347138,"(40.8420773, -73.8347138)",MAYFLOWER AVENUE,ZULETTE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467388,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,10:40,MANHATTAN,10027,40.8133899,-73.9562587,"(40.8133899, -73.9562587)",WEST 125 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4470324,Sedan,Tow Truck / Wrecker,,, +10/24/2021,19:36,QUEENS,11374,40.7302857,-73.8585123,"(40.7302857, -73.8585123)",98 STREET,64 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470807,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,15:45,STATEN ISLAND,10306,40.5727546,-74.1140276,"(40.5727546, -74.1140276)",NEW DORP LANE,10 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469756,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,19:33,,,40.6859937,-73.8399215,"(40.6859937, -73.8399215)",101 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468099,Sedan,,,, +10/25/2021,11:43,QUEENS,11365,40.727816,-73.8111197,"(40.727816, -73.8111197)",72 AVENUE,PARSONS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470891,Sedan,,,, +10/21/2021,6:50,QUEENS,11370,40.7571916,-73.8904032,"(40.7571916, -73.8904032)",77 STREET,32 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4469379,3-Door,E-Bike,,, +10/16/2021,3:10,BRONX,10469,40.8803019,-73.8580946,"(40.8803019, -73.8580946)",,,3723 BRONXWOOD AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4467966,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,19:20,BROOKLYN,11219,40.6291613,-74.0114275,"(40.6291613, -74.0114275)",68 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4467759,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,20:15,MANHATTAN,10010,40.7378416,-73.9826107,"(40.7378416, -73.9826107)",,,217 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468145,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,17:40,,,40.6800886,-73.9439725,"(40.6800886, -73.9439725)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Turning Improperly,,,,4467834,Station Wagon/Sport Utility Vehicle,Bus,,, +10/21/2021,20:30,QUEENS,11435,40.6933986,-73.8033456,"(40.6933986, -73.8033456)",,,146-18 SOUTH ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469838,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,9:00,QUEENS,11377,40.7446237,-73.9004732,"(40.7446237, -73.9004732)",,,39-67 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470135,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,21:22,BRONX,10466,40.8850885,-73.8354624,"(40.8850885, -73.8354624)",,,3622 PRATT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468794,Sedan,,,, +10/12/2021,15:00,,,40.8704618,-73.8337877,"(40.8704618, -73.8337877)",NEW ENGLAND THRUWAY RAMP,,,3,0,0,0,0,0,3,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,Unspecified,,4466580,Sedan,Sedan,Tractor Truck Diesel,Sedan, +11/02/2021,9:14,,,40.877815,-73.868126,"(40.877815, -73.868126)",EAST GUN HILL ROAD,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473519,Sedan,Sedan,,, +10/15/2021,15:55,BRONX,10458,40.8549744,-73.8925014,"(40.8549744, -73.8925014)",EAST 183 STREET,BASSFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468349,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,18:00,BROOKLYN,11213,40.6719259,-73.9391775,"(40.6719259, -73.9391775)",ALBANY AVENUE,STERLING PLACE,,1,0,0,0,1,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4470344,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,16:38,BROOKLYN,11212,40.6616943,-73.9104909,"(40.6616943, -73.9104909)",,,383 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468360,Sedan,,,, +10/20/2021,9:00,,,40.6389656,-73.9425045,"(40.6389656, -73.9425045)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,5:30,QUEENS,11368,40.7540832,-73.8640138,"(40.7540832, -73.8640138)",,,35-30 104 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468697,Sedan,,,, +10/22/2021,17:20,,,40.6086285,-74.1482327,"(40.6086285, -74.1482327)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470681,Sedan,Pick-up Truck,,, +10/17/2021,22:19,BRONX,10470,40.903481,-73.8503406,"(40.903481, -73.8503406)",WHITE PLAINS ROAD,EAST 241 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468135,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,9:15,BROOKLYN,11223,40.6057313,-73.9850075,"(40.6057313, -73.9850075)",KINGS HIGHWAY,WEST 12 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467117,Sedan,,,, +10/19/2021,12:00,QUEENS,11366,40.7234894,-73.7983647,"(40.7234894, -73.7983647)",,,170-02 UNION TURNPIKE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4469793,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,16:20,MANHATTAN,10003,40.7357501,-73.9914871,"(40.7357501, -73.9914871)",,,15 UNION SQUARE WEST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467787,Bike,,,, +10/22/2021,11:40,,,40.6818033,-73.9085148,"(40.6818033, -73.9085148)",GRANITE STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469862,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,8:00,,,40.7752618,-73.819654,"(40.7752618, -73.819654)",25 DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468551,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,23:30,BROOKLYN,11222,40.724202,-73.937647,"(40.724202, -73.937647)",APOLLO STREET,MEEKER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468677,Sedan,Sedan,,, +10/18/2021,9:00,BRONX,10461,40.8475301,-73.8480267,"(40.8475301, -73.8480267)",PIERCE AVENUE,YATES AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468847,Dump,Sedan,,, +10/11/2021,16:30,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4468716,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,8:00,,,40.6179628,-73.9913696,"(40.6179628, -73.9913696)",18 AVENUE,67 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4469821,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,11:30,BROOKLYN,11210,40.6346508,-73.9372659,"(40.6346508, -73.9372659)",GLENWOOD ROAD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467819,Bus,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,6:54,,,40.6130524,-73.949118,"(40.6130524, -73.949118)",KINGS HIGHWAY,,,0,1,0,1,0,0,0,0,Unspecified,,,,,4468965,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,9:00,QUEENS,11377,40.7483572,-73.9071314,"(40.7483572, -73.9071314)",56 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467919,Sedan,Van,,, +10/16/2021,9:00,STATEN ISLAND,10301,40.6142558,-74.1008469,"(40.6142558, -74.1008469)",,,79 SUNNYSIDE TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468435,Sedan,Sedan,Sedan,, +10/13/2021,13:16,,,40.7274025,-73.8872412,"(40.7274025, -73.8872412)",74 STREET,QUEENS MIDTOWN EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468113,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/21/2021,9:15,MANHATTAN,10024,40.7855354,-73.9839993,"(40.7855354, -73.9839993)",WEST 79 STREET,HENRY HUDSON PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469612,Sedan,,,, +10/19/2021,10:33,BROOKLYN,11201,40.696197,-73.9887629,"(40.696197, -73.9887629)",ADAMS STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4469934,Sedan,Box Truck,,, +10/13/2021,14:50,STATEN ISLAND,10312,40.5319181,-74.1917442,"(40.5319181, -74.1917442)",AMBOY ROAD,HUGUENOT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468830,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/21/2021,5:35,,,40.851392,-73.9412075,"(40.851392, -73.9412075)",HAVEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,14:42,MANHATTAN,10065,40.7643467,-73.9545079,"(40.7643467, -73.9545079)",,,525 EAST 68 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468052,Ambulance,,,, +10/13/2021,13:55,BROOKLYN,11226,40.6491687,-73.9634612,"(40.6491687, -73.9634612)",,,1714 CHURCH AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4467687,Sedan,Bike,,, +10/21/2021,13:00,BRONX,10463,40.8855298,-73.9032984,"(40.8855298, -73.9032984)",,,3633 TIBBETT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469480,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,5:17,,,40.8373235,-73.9198306,"(40.8373235, -73.9198306)",MACOMBS DAM BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470698,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,14:23,MANHATTAN,10035,40.79989,-73.93859,"(40.79989, -73.93859)",EAST 119 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,7:55,,,40.8204372,-73.9362273,"(40.8204372, -73.9362273)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4467096,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,19:30,,,,,,,,28-01 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447067,Sedan,,,, +10/15/2021,9:00,BROOKLYN,11214,40.5982911,-74.000036,"(40.5982911, -74.000036)",BAY 28 STREET,CROPSEY AVENUE,,1,0,1,0,0,0,0,0,,,,,,4467781,,,,, +10/13/2021,22:30,BROOKLYN,11249,40.7087803,-73.9685992,"(40.7087803, -73.9685992)",,,450 KENT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466847,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,20:40,STATEN ISLAND,10305,40.6061456,-74.0771452,"(40.6061456, -74.0771452)",STATEN ISLAND EXPRESSWAY,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469097,Sedan,,,, +10/15/2021,6:19,,,40.8650779,-73.9281077,"(40.8650779, -73.9281077)",THAYER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,8:39,BRONX,10461,40.8538084,-73.8552781,"(40.8538084, -73.8552781)",NEILL AVENUE,TOMLINSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467324,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,17:30,QUEENS,11385,40.7063609,-73.9052567,"(40.7063609, -73.9052567)",GATES AVENUE,FAIRVIEW AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4468729,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,7:00,QUEENS,11433,40.6943798,-73.7897251,"(40.6943798, -73.7897251)",,,109-34 BREWER BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470822,Sedan,Bike,,, +10/17/2021,18:23,,,40.7591997,-73.9846193,"(40.7591997, -73.9846193)",7 AVENUE,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4468645,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,12:35,BROOKLYN,11225,40.661297,-73.95697,"(40.661297, -73.95697)",,,1821 BEDFORD AVENUE,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4473465,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/19/2021,9:10,MANHATTAN,10027,40.8187356,-73.961082,"(40.8187356, -73.961082)",MARGINAL STREET,WEST 125 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468762,Station Wagon/Sport Utility Vehicle,Bus,,, +10/21/2021,22:28,MANHATTAN,10029,40.7993183,-73.943663,"(40.7993183, -73.943663)",,,80 EAST 116 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4470686,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,23:15,,,40.8359128,-73.8816488,"(40.8359128, -73.8816488)",SHERIDAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4468317,Tractor Truck Diesel,Tractor Truck Diesel,,, +10/17/2021,14:21,BROOKLYN,11219,40.6316677,-73.995619,"(40.6316677, -73.995619)",55 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,8:45,,,40.7042674,-73.8935542,"(40.7042674, -73.8935542)",METROPOLITAN AVENUE,RENTAR PLAZA,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4467437,Sedan,Box Truck,,, +10/15/2021,14:00,BRONX,10467,40.8782108,-73.8620676,"(40.8782108, -73.8620676)",,,776 EAST 213 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467951,Sedan,,,, +10/15/2021,8:25,BROOKLYN,11218,40.6377945,-73.9843141,"(40.6377945, -73.9843141)",,,1431 41 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467774,Sedan,Bike,,, +10/13/2021,18:15,QUEENS,11378,40.7169304,-73.8982037,"(40.7169304, -73.8982037)",MOUNT OLIVET CRESCENT,60 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466959,PK,Sedan,,, +10/20/2021,13:00,QUEENS,11373,40.7390921,-73.8880632,"(40.7390921, -73.8880632)",,,76-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4469322,Sedan,,,, +10/14/2021,5:45,BROOKLYN,11207,40.6547758,-73.8897039,"(40.6547758, -73.8897039)",,,72 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467273,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,5:20,BROOKLYN,11207,40.6541719,-73.895946,"(40.6541719, -73.895946)",STANLEY AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4470480,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/13/2021,14:30,QUEENS,11357,40.7753498,-73.8095515,"(40.7753498, -73.8095515)",154 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4466943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,23:23,,,40.705679,-73.9260903,"(40.705679, -73.9260903)",MELROSE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470232,Sedan,,,, +10/13/2021,11:27,,,40.7939517,-73.974163,"(40.7939517, -73.974163)",WEST 94 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,,,,4467141,Taxi,Sedan,,, +10/17/2021,15:02,,,40.6206715,-74.1671421,"(40.6206715, -74.1671421)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4468657,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/02/2021,5:55,QUEENS,11691,40.60098,-73.75555,"(40.60098, -73.75555)",BEACH 22 STREET,NEW HAVEN AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4473649,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/02/2021,15:00,MANHATTAN,10119,40.760525,-73.97998,"(40.760525, -73.97998)",AVENUE OF THE AMERICAS,WEST 51 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473415,Sedan,,,, +10/18/2021,16:57,BRONX,10466,40.8874591,-73.8304205,"(40.8874591, -73.8304205)",,,3735 ROMBOUTS AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468790,Sedan,Sedan,,, +10/13/2021,14:52,MANHATTAN,10007,40.7171751,-74.0128675,"(40.7171751, -74.0128675)",WEST STREET,CHAMBERS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,12:45,BROOKLYN,11209,40.6222745,-74.0290155,"(40.6222745, -74.0290155)",,,375 87 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469778,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,11:00,BRONX,10452,40.8321436,-73.9272832,"(40.8321436, -73.9272832)",ANDERSON AVENUE,WEST 164 STREET,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4468616,Sedan,Van,,, +10/19/2021,14:45,MANHATTAN,10035,40.7989351,-73.9363599,"(40.7989351, -73.9363599)",2 AVENUE,EAST 119 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468862,Sedan,Sedan,,, +10/21/2021,19:17,MANHATTAN,10024,,,,WEST 80 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474157,Taxi,,,, +10/18/2021,1:44,BROOKLYN,11214,40.6033194,-74.0083943,"(40.6033194, -74.0083943)",,,1745 CROPSEY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468301,Sedan,Sedan,,, +10/21/2021,17:59,,,40.7963783,-73.9671276,"(40.7963783, -73.9671276)",West 106 street,West 106 Street,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4469666,Box Truck,Sedan,,, +10/14/2021,8:49,QUEENS,11372,40.7528605,-73.8744536,"(40.7528605, -73.8744536)",35 AVENUE,93 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4467091,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,2:53,,,40.5017998,-74.243473,"(40.5017998, -74.243473)",CHELSEA STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467001,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,17:50,,,40.5854046,-73.9390439,"(40.5854046, -73.9390439)",NOSTRAND AVENUE,SHORE PARKWAY,,0,1,0,0,0,1,0,0,Unsafe Speed,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4468597,Station Wagon/Sport Utility Vehicle,Bike,,, +10/14/2021,13:57,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467570,Sedan,,,, +10/18/2021,10:00,BROOKLYN,11222,40.7203396,-73.9366995,"(40.7203396, -73.9366995)",,,368 RICHARDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468652,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,13:35,MANHATTAN,10115,40.810753,-73.96443,"(40.810753, -73.96443)",RIVERSIDE DRIVE,WEST 119 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473864,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,12:30,,,40.8560369,-73.8328355,"(40.8560369, -73.8328355)",PELHAM PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470163,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/20/2021,11:40,,,40.8843484,-73.8870509,"(40.8843484, -73.8870509)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,16:40,MANHATTAN,10035,40.8049758,-73.9370563,"(40.8049758, -73.9370563)",,,2088 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470692,Station Wagon/Sport Utility Vehicle,Bus,,, +10/14/2021,11:13,BRONX,10458,40.87213,-73.8824688,"(40.87213, -73.8824688)",EAST MOSHOLU PARKWAY SOUTH,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467405,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,16:15,BRONX,10463,40.880967,-73.905449,"(40.880967, -73.905449)",WEST 232 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467631,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,13:05,,,40.7003584,-73.9125683,"(40.7003584, -73.9125683)",WYCKOFF AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4468330,Station Wagon/Sport Utility Vehicle,Van,,, +10/14/2021,12:25,BRONX,10471,40.9126383,-73.9028181,"(40.9126383, -73.9028181)",,,6301 RIVERDALE AVENUE,1,0,1,0,0,0,0,0,,,,,,4467305,,,,, +10/24/2021,2:03,QUEENS,11377,40.746013,-73.9005514,"(40.746013, -73.9005514)",,,63-15 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4470141,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,10:55,MANHATTAN,10003,40.7276181,-73.9912351,"(40.7276181, -73.9912351)",,,21 COOPER SQUARE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470200,Station Wagon/Sport Utility Vehicle,Bike,,, +10/09/2021,17:35,BRONX,10456,40.8387216,-73.9137706,"(40.8387216, -73.9137706)",GRAND CONCOURSE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4466346,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,19:58,BRONX,10453,40.855139,-73.9083596,"(40.855139, -73.9083596)",GRAND AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4466911,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,5:58,MANHATTAN,10037,40.8108569,-73.9390181,"(40.8108569, -73.9390181)",5 AVENUE,WEST 132 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470649,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,16:40,BROOKLYN,11232,40.6638448,-73.9945067,"(40.6638448, -73.9945067)",4 AVENUE,19 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470377,Station Wagon/Sport Utility Vehicle,Bike,,, +08/11/2021,12:15,,,40.712727,-73.72899,"(40.712727, -73.72899)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447178,Sedan,Sedan,,, +10/16/2021,10:15,BROOKLYN,11229,40.5942595,-73.9558268,"(40.5942595, -73.9558268)",,,2300 EAST 15 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467621,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,7:35,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4470762,Sedan,Sedan,Sedan,, +10/21/2021,12:25,MANHATTAN,10036,40.7584292,-73.9926328,"(40.7584292, -73.9926328)",9 AVENUE,WEST 42 STREET,,1,0,1,0,0,0,0,0,Tire Failure/Inadequate,,,,,4470817,Tractor Truck Diesel,,,, +08/18/2021,12:10,,,40.7106275,-73.9667757,"(40.7106275, -73.9667757)",WYTHE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450904,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,14:50,BRONX,10451,40.8176431,-73.923125,"(40.8176431, -73.923125)",,,253 EAST 149 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467727,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,19:00,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453794,Sedan,Sedan,,, +10/14/2021,15:20,BROOKLYN,11207,40.6592308,-73.8932782,"(40.6592308, -73.8932782)",HEGEMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467267,Sedan,Sedan,,, +10/17/2021,5:20,QUEENS,11420,40.6721813,-73.8039956,"(40.6721813, -73.8039956)",,,134-12 SUTTER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4468199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,20:03,QUEENS,11385,40.7074709,-73.910063,"(40.7074709, -73.910063)",WOODWARD AVENUE,GREENE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470015,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,5:00,QUEENS,11040,40.7513969,-73.7031996,"(40.7513969, -73.7031996)",,,270-12 UNION TURNPIKE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467802,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,19:15,BRONX,10454,40.8085251,-73.9219192,"(40.8085251, -73.9219192)",,,426 EAST 138 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466869,Sedan,Bike,,, +10/14/2021,10:00,,,40.8193167,-73.930314,"(40.8193167, -73.930314)",EAST 149 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467717,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,16:28,BROOKLYN,11217,40.6840532,-73.981561,"(40.6840532, -73.981561)",3 AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,13:50,,,40.692844,-73.99311,"(40.692844, -73.99311)",JORALEMON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473472,Ambulance,Sedan,,, +10/19/2021,19:28,BRONX,10456,40.8306257,-73.9045052,"(40.8306257, -73.9045052)",EAST 168 STREET,FULTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4469029,Sedan,Bike,,, +10/22/2021,17:40,BROOKLYN,11211,40.7095126,-73.961498,"(40.7095126, -73.961498)",,,204 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470108,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,11:38,,,40.511804,-74.2500345,"(40.511804, -74.2500345)",ARDEN AVENUE,DOVER GREEN,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469853,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,12:55,BRONX,10451,40.818047,-73.92246,"(40.818047, -73.92246)",EAST 150 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473488,Sedan,Box Truck,,, +10/24/2021,8:05,BROOKLYN,11212,40.6555246,-73.9181968,"(40.6555246, -73.9181968)",,,470 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4470287,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/17/2021,20:20,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4469750,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/14/2022,15:50,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Obstruction/Debris,,,,4519909,Chassis Cab,Sedan,,, +10/20/2021,4:40,,,40.6581931,-74.0010322,"(40.6581931, -74.0010322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469300,Pick-up Truck,Sedan,,, +10/10/2021,6:50,MANHATTAN,10001,40.7487054,-73.9957838,"(40.7487054, -73.9957838)",,,370 8 AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4469129,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/13/2021,6:49,QUEENS,11375,40.723884,-73.8491457,"(40.723884, -73.8491457)",69 AVENUE,QUEENS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466741,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,15:15,QUEENS,11040,40.7532508,-73.7027346,"(40.7532508, -73.7027346)",77 ROAD,HEWLETT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4469432,Station Wagon/Sport Utility Vehicle,Bike,,, +10/15/2021,0:15,QUEENS,11372,40.7556538,-73.8830439,"(40.7556538, -73.8830439)",,,84-14 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469966,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,2:40,,,,,,CROSS BRONX EXPRESSWAY EXTENSION,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473957,Sedan,Sedan,,, +10/16/2021,3:30,,,40.8278765,-73.9382364,"(40.8278765, -73.9382364)",WEST 153 STREET,,,0,0,0,0,0,0,0,0,,,,,,4468997,,,,, +10/24/2021,16:17,BROOKLYN,11223,40.6005903,-73.961364,"(40.6005903, -73.961364)",AVENUE T,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4470555,Sedan,Sedan,,, +10/21/2021,14:30,BROOKLYN,11203,40.6449096,-73.9219163,"(40.6449096, -73.9219163)",CLARENDON ROAD,EAST 58 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4470265,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/17/2021,8:36,BROOKLYN,11218,40.6459449,-73.9826094,"(40.6459449, -73.9826094)",MINNA STREET,BILLS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468662,Ambulance,Sedan,,, +10/19/2021,13:15,QUEENS,11364,40.7343009,-73.7551976,"(40.7343009, -73.7551976)",UNION TURNPIKE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469215,Sedan,Bus,,, +10/20/2021,17:50,BRONX,10460,40.8418326,-73.8838776,"(40.8418326, -73.8838776)",EAST TREMONT AVENUE,DALY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470215,Sedan,Sedan,,, +10/17/2021,21:20,BROOKLYN,11234,40.6330895,-73.9244881,"(40.6330895, -73.9244881)",AVENUE H,EAST 54 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469195,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,8:56,,,40.6522703,-73.9207436,"(40.6522703, -73.9207436)",RALPH AVENUE,CHURCH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470259,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,23:36,MANHATTAN,10029,40.7893076,-73.9433966,"(40.7893076, -73.9433966)",EAST 104 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4470859,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/17/2021,11:30,BROOKLYN,11225,40.6668182,-73.9614782,"(40.6668182, -73.9614782)",,,921 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467875,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,8:04,,,40.7263607,-73.7273053,"(40.7263607, -73.7273053)",241 STREET,BRADDOCK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470047,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,9:00,BRONX,10462,40.84897,-73.86838,"(40.84897, -73.86838)",BIRCHALL AVENUE,SAGAMORE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473607,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,6:25,QUEENS,11428,40.7205877,-73.7328121,"(40.7205877, -73.7328121)",,,94-44 222 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/16/2021,0:01,BROOKLYN,11237,40.7109383,-73.9267013,"(40.7109383, -73.9267013)",STEWART AVENUE,MESEROLE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468202,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,16:47,,,40.7119619,-73.9406885,"(40.7119619, -73.9406885)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468084,Bus,,,, +10/16/2021,21:30,,,40.8434776,-73.9246614,"(40.8434776, -73.9246614)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4470591,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/02/2021,19:30,BROOKLYN,11235,40.58667,-73.966156,"(40.58667, -73.966156)",AVENUE Z,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473605,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,6:54,QUEENS,11103,40.7645047,-73.9159783,"(40.7645047, -73.9159783)",,,37-13 30 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4469046,Sedan,,,, +10/13/2021,19:00,QUEENS,11420,40.6661438,-73.8232509,"(40.6661438, -73.8232509)",NORTH CONDUIT AVENUE,118 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4466864,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,12:51,,,40.6896895,-73.9923627,"(40.6896895, -73.9923627)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468950,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/16/2021,15:40,MANHATTAN,10019,40.7683816,-73.992805,"(40.7683816, -73.992805)",11 AVENUE,WEST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468467,Van,Box Truck,,, +10/20/2021,22:10,QUEENS,11420,40.6729617,-73.8332328,"(40.6729617, -73.8332328)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4469311,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,6:40,QUEENS,11378,40.716795,-73.9215399,"(40.716795, -73.9215399)",GRAND AVENUE,47 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469922,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,11:40,BROOKLYN,11249,40.7174048,-73.9616797,"(40.7174048, -73.9616797)",,,76 NORTH 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470429,Motorcycle,,,, +10/18/2021,5:40,BROOKLYN,11206,40.7060112,-73.9354784,"(40.7060112, -73.9354784)",WHITE STREET,MC KIBBIN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468584,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,22:35,QUEENS,11102,,,,,,23-18 30 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447377,Sedan,,,, +08/08/2021,21:26,BROOKLYN,11234,40.619545,-73.91727,"(40.619545, -73.91727)",AVENUE N,RALPH AVENUE,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4445191,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,13:05,QUEENS,11434,,,,ROCKAWAY BOULEVARD,BREWER BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4445768,Sedan,Sedan,,, +08/10/2021,23:07,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4445797,Convertible,Ambulance,,, +08/06/2021,16:00,,,40.66835,-73.738106,"(40.66835, -73.738106)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inexperience,,,,4444351,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,0:16,QUEENS,11422,40.6537,-73.734314,"(40.6537, -73.734314)",WELLER LANE,148 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444579,Sedan,Bike,,, +10/17/2021,10:45,BROOKLYN,11220,40.6426576,-74.0092822,"(40.6426576, -74.0092822)",6 AVENUE,52 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469728,Sedan,,,, +10/17/2021,22:42,,,40.6095192,-73.7459057,"(40.6095192, -73.7459057)",CENTRAL AVENUE,SAGE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468449,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,13:07,MANHATTAN,10002,40.7132541,-73.9775851,"(40.7132541, -73.9775851)",FDR DRIVE,GRAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469576,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,4:25,QUEENS,11372,40.747734,-73.883,"(40.747734, -73.883)",ROOSEVELT AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473249,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,8:00,BROOKLYN,11221,40.6944972,-73.9148082,"(40.6944972, -73.9148082)",WILSON AVENUE,WOODBINE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469783,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,8:06,MANHATTAN,10022,40.7606005,-73.9643142,"(40.7606005, -73.9643142)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4469400,Sedan,,,, +11/02/2021,14:49,BRONX,10459,40.82954,-73.88726,"(40.82954, -73.88726)",,,1310 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4473536,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/13/2021,0:00,BROOKLYN,11229,40.592749,-73.9568563,"(40.592749, -73.9568563)",,,2359 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467288,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,2:40,,,40.846504,-73.82629,"(40.846504, -73.82629)",BRUCKNER EXPRESSWAY,,,5,0,0,0,0,0,5,0,Fell Asleep,,,,,4473962,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,21:30,,,40.842993,-73.9109821,"(40.842993, -73.9109821)",SHERIDAN AVENUE,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4469533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,7:40,BROOKLYN,11236,40.633857,-73.9114377,"(40.633857, -73.9114377)",EAST 80 STREET,AVENUE J,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4469806,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,13:07,BRONX,10468,40.8746866,-73.8864996,"(40.8746866, -73.8864996)",EAST 204 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4469347,Pick-up Truck,,,, +10/16/2021,15:10,BROOKLYN,11213,40.6686479,-73.9283482,"(40.6686479, -73.9283482)",ROCHESTER AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467934,Sedan,Sedan,,, +10/15/2021,16:00,MANHATTAN,10003,40.7305484,-73.9833786,"(40.7305484, -73.9833786)",,,211 1 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467611,Pick-up Truck,Bike,,, +10/20/2021,19:50,BRONX,10468,40.8596097,-73.907775,"(40.8596097, -73.907775)",WEST 183 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469343,Sedan,,,, +10/19/2021,8:45,,,40.6838792,-74.0003257,"(40.6838792, -74.0003257)",BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469018,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,13:00,BROOKLYN,11203,40.637337,-73.9308,"(40.637337, -73.9308)",FARRAGUT ROAD,EAST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474095,Sedan,,,, +10/20/2021,17:03,QUEENS,11421,40.6965799,-73.8586158,"(40.6965799, -73.8586158)",,,86-20 PARK LANE SOUTH,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4469368,Sedan,Motorcycle,,, +10/12/2021,2:50,,,40.6750519,-73.8743513,"(40.6750519, -73.8743513)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4466512,Sedan,Sedan,,, +11/01/2021,0:00,QUEENS,11435,40.70253,-73.8143,"(40.70253, -73.8143)",QUEENS BOULEVARD,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4474115,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,22:08,,,40.8056269,-73.9706814,"(40.8056269, -73.9706814)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468499,Sedan,Sedan,,, +10/20/2021,15:30,,,40.7568746,-73.9705439,"(40.7568746, -73.9705439)",QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470058,Sedan,Sedan,,, +10/16/2021,22:00,QUEENS,11369,40.762658,-73.8732511,"(40.762658, -73.8732511)",96 STREET,ASTORIA BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,20:25,QUEENS,11419,,,,107 AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446864,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,19:33,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446117,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,17:39,,,40.806156,-73.9226,"(40.806156, -73.9226)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4446840,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,17:00,QUEENS,11372,40.753952,-73.89268,"(40.753952, -73.89268)",,,33-42 74 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4446554,Station Wagon/Sport Utility Vehicle,E-Bike,Sedan,, +08/11/2021,11:20,MANHATTAN,10033,40.851795,-73.93011,"(40.851795, -73.93011)",AUDUBON AVENUE,WEST 186 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446220,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,21:30,MANHATTAN,10029,40.789288,-73.948425,"(40.789288, -73.948425)",,,1595 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447075,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,6:35,BROOKLYN,11237,40.702686,-73.92084,"(40.702686, -73.92084)",DE KALB AVENUE,IRVING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446168,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,21:30,,,40.59281,-73.97877,"(40.59281, -73.97877)",86 STREET,WEST 8 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446668,Sedan,,,, +08/12/2021,22:35,STATEN ISLAND,10305,40.58657,-74.09206,"(40.58657, -74.09206)",HYLAN BOULEVARD,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4446536,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,8:23,BROOKLYN,11214,40.609386,-74.00003,"(40.609386, -74.00003)",82 STREET,18 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4447287,Sedan,Pick-up Truck,,, +08/08/2021,22:10,MANHATTAN,10033,40.850925,-73.94155,"(40.850925, -73.94155)",,,340 HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4446522,Sedan,,,, +08/13/2021,9:45,BRONX,10455,40.815975,-73.91102,"(40.815975, -73.91102)",EAGLE AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:47,QUEENS,11375,40.71536,-73.85696,"(40.71536, -73.85696)",SELFRIDGE STREET,LOUBET STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4446422,Sedan,Sedan,,, +08/12/2021,20:00,,,40.60457,-73.75355,"(40.60457, -73.75355)",BEACH 21 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4446709,Sedan,Van,,, +08/13/2021,11:10,QUEENS,11101,40.74631,-73.93312,"(40.74631, -73.93312)",,,32-00 SKILLMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446657,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,7:07,QUEENS,11373,40.741512,-73.88292,"(40.741512, -73.88292)",,,45-11 82 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4446405,Sedan,Tractor Truck Diesel,,, +08/11/2021,4:12,QUEENS,11421,40.69244,-73.855484,"(40.69244, -73.855484)",,,87-08 89 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4445799,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,11:25,,,,,,SHORE PARKWAY,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447105,Bike,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:13,BRONX,10474,40.81693,-73.88617,"(40.81693, -73.88617)",BRYANT AVENUE,LAFAYETTE AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4446751,Sedan,Sedan,,, +08/13/2021,18:30,BROOKLYN,11218,40.647984,-73.97471,"(40.647984, -73.97471)",OCEAN PARKWAY,KERMIT PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4446915,Sedan,,,, +08/11/2021,22:22,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4446145,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/13/2021,17:28,,,40.770226,-73.78757,"(40.770226, -73.78757)",202 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446670,Pick-up Truck,Motorcycle,,, +08/12/2021,12:19,BROOKLYN,11205,40.693172,-73.97086,"(40.693172, -73.97086)",MYRTLE AVENUE,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446541,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,12:54,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446597,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,9:10,QUEENS,11691,40.595802,-73.764656,"(40.595802, -73.764656)",SEAGIRT BOULEVARD,BEACH 32 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446714,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,10:00,BROOKLYN,11207,40.663113,-73.89069,"(40.663113, -73.89069)",,,626 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446780,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,21:30,MANHATTAN,10009,40.7267,-73.97691,"(40.7267, -73.97691)",,,184 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447078,Sedan,,,, +08/11/2021,21:55,,,40.67711,-73.903366,"(40.67711, -73.903366)",HERKIMER STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4446187,Sedan,Sedan,,, +08/10/2021,14:31,QUEENS,11106,40.758327,-73.934586,"(40.758327, -73.934586)",,,36-19 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446949,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,11:40,,,40.58061,-73.98565,"(40.58061, -73.98565)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4447024,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/11/2021,16:30,BROOKLYN,11221,40.685005,-73.93501,"(40.685005, -73.93501)",,,570 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446371,Sedan,Sedan,,, +08/12/2021,17:24,BROOKLYN,11236,40.641758,-73.89051,"(40.641758, -73.89051)",,,10312 AVENUE L,0,0,0,0,0,0,0,0,Passing Too Closely,Backing Unsafely,Unspecified,,,4446452,Sedan,Sedan,Sedan,, +08/11/2021,5:34,,,40.679718,-73.773476,"(40.679718, -73.773476)",127 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446489,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,10:05,,,40.636803,-73.939415,"(40.636803, -73.939415)",EAST 39 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447037,Sedan,Sedan,,, +08/11/2021,6:11,QUEENS,11368,40.740723,-73.85012,"(40.740723, -73.85012)",111 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445835,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,12:17,QUEENS,11101,40.75107,-73.93788,"(40.75107, -73.93788)",,,41-21 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447371,Sedan,,,, +08/12/2021,16:40,QUEENS,11435,,,,144 PLACE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446638,Sedan,,,, +08/11/2021,15:40,QUEENS,11372,40.75296,-73.873535,"(40.75296, -73.873535)",35 AVENUE,94 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446194,E-Bike,Sedan,,, +08/12/2021,12:30,,,40.764454,-73.83178,"(40.764454, -73.83178)",35 AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4446419,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,17:40,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446568,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/09/2021,20:30,BROOKLYN,11207,40.660736,-73.89966,"(40.660736, -73.89966)",VAN SIDERIN AVENUE,NEWPORT STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4446629,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,23:45,,,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446880,Sedan,Sedan,,, +08/13/2021,15:50,,,40.694557,-73.906555,"(40.694557, -73.906555)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446700,Sedan,,,, +08/11/2021,21:00,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446816,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,18:00,,,40.75112,-73.763084,"(40.75112, -73.763084)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446445,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,3:40,QUEENS,11103,40.758602,-73.9193,"(40.758602, -73.9193)",,,32-17 STEINWAY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4446942,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,11:22,,,,,,BRONX RIVER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446348,Sedan,Sedan,,, +08/13/2021,23:00,,,40.81963,-73.946075,"(40.81963, -73.946075)",WEST 139 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446797,Sedan,Sedan,,, +08/10/2021,14:48,BRONX,10461,40.845684,-73.83138,"(40.845684, -73.83138)",,,1710 CROSBY AVENUE,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4447335,Sedan,Sedan,Sedan,, +08/11/2021,0:05,BRONX,10473,40.82101,-73.86575,"(40.82101, -73.86575)",SOUND VIEW AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445934,Sedan,,,, +08/05/2021,15:23,BRONX,10466,40.889877,-73.86269,"(40.889877, -73.86269)",,,4014 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4446574,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/11/2021,12:37,MANHATTAN,10032,40.83664,-73.9468,"(40.83664, -73.9468)",,,839 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446573,Sedan,Sedan,,, +08/11/2021,18:00,QUEENS,11423,40.70911,-73.776054,"(40.70911, -73.776054)",JAMAICA AVENUE,184 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Driver Inattention/Distraction,,,,4446098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,16:30,,,40.61821,-73.89728,"(40.61821, -73.89728)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446724,Sedan,Sedan,,, +10/14/2021,9:00,,,40.7840597,-73.97502,"(40.7840597, -73.97502)",HENRY HUDSON PARKWAY,WEST 65 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4468518,Sedan,Sedan,Taxi,, +08/12/2021,9:30,BROOKLYN,11223,40.608223,-73.967476,"(40.608223, -73.967476)",,,1648 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4446236,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:24,QUEENS,11377,,,,BROADWAY,65 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4446689,Sedan,Motorcycle,,, +08/13/2021,8:15,BROOKLYN,11206,40.69677,-73.93701,"(40.69677, -73.93701)",,,1090 MYRTLE AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4447154,E-Bike,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +08/11/2021,22:43,MANHATTAN,10002,40.718815,-73.97474,"(40.718815, -73.97474)",,,500 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447005,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,0:00,BRONX,10466,40.8902158,-73.8555181,"(40.8902158, -73.8555181)",,,4118 BARNES AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467989,Sedan,,,, +08/06/2021,13:07,BRONX,10469,40.874737,-73.855255,"(40.874737, -73.855255)",LACONIA AVENUE,EAST 211 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,Unspecified,,4447188,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +08/13/2021,14:00,BROOKLYN,11232,40.651512,-74.00734,"(40.651512, -74.00734)",4 AVENUE,41 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446975,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/13/2021,20:16,BROOKLYN,11212,40.664635,-73.92338,"(40.664635, -73.92338)",,,1101 RUTLAND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447044,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/11/2021,2:44,BROOKLYN,11228,40.617252,-74.00703,"(40.617252, -74.00703)",78 STREET,14 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4446529,,,,, +08/13/2021,17:56,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",FLATLANDS AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446731,Sedan,Sedan,,, +08/12/2021,8:05,BRONX,10475,40.87577,-73.83257,"(40.87577, -73.83257)",,,100 DONIZETTI PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446253,Station Wagon/Sport Utility Vehicle,Bus,,, +08/08/2021,16:35,MANHATTAN,10010,40.741028,-73.99417,"(40.741028, -73.99417)",AVENUE OF THE AMERICAS,WEST 20 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4446925,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,21:18,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4447225,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,6:20,BROOKLYN,11225,40.666267,-73.95668,"(40.666267, -73.95668)",,,1650 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446297,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,7:00,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4446593,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/12/2021,7:31,,,40.730118,-73.86232,"(40.730118, -73.86232)",QUEENS BOULEVARD,63 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4446315,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,13:24,MANHATTAN,10040,40.86258,-73.925385,"(40.86258, -73.925385)",POST AVENUE,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446069,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +08/13/2021,18:03,,,40.72803,-74.00216,"(40.72803, -74.00216)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447120,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,8:00,BROOKLYN,11222,40.73115,-73.95179,"(40.73115, -73.95179)",KENT STREET,MC GUINNESS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446993,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,22:30,,,40.76301,-73.87533,"(40.76301, -73.87533)",94 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,19:00,BRONX,10460,40.84938,-73.88296,"(40.84938, -73.88296)",,,1028 OLD KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446606,Sedan,Sedan,,, +08/11/2021,12:24,,,40.6034,-74.13154,"(40.6034, -74.13154)",,,318 BRADLEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446003,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/11/2021,7:45,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",CARPENTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,18:38,,,40.79525,-73.97321,"(40.79525, -73.97321)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446468,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,17:54,QUEENS,11413,40.670845,-73.7617,"(40.670845, -73.7617)",182 STREET,141 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446482,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +08/12/2021,14:40,MANHATTAN,10019,40.76726,-73.98002,"(40.76726, -73.98002)",,,160 CENTRAL PARK SOUTH,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446503,Taxi,E-Scooter,,, +08/05/2021,19:15,BROOKLYN,11207,40.653454,-73.88466,"(40.653454, -73.88466)",FLATLANDS AVENUE,VERMONT STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4446762,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/13/2021,11:50,BROOKLYN,11229,40.595184,-73.95378,"(40.595184, -73.95378)",,,2269 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446625,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,11:00,,,40.768734,-73.730194,"(40.768734, -73.730194)",LITTLE NECK PARKWAY,BATES ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446046,Sedan,Sedan,,, +08/11/2021,12:38,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",EAST 180 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446013,Sedan,Sedan,,, +08/13/2021,15:21,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,0:00,BROOKLYN,11220,40.636787,-74.02458,"(40.636787, -74.02458)",,,329 SENATOR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446431,Sedan,,,, +08/13/2021,0:03,MANHATTAN,10002,,,,DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446578,Sedan,Sedan,,, +08/11/2021,7:45,,,40.634117,-73.94588,"(40.634117, -73.94588)",GLENWOOD ROAD,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4446090,Station Wagon/Sport Utility Vehicle,Bike,,, +08/09/2021,2:35,,,40.844063,-73.921,"(40.844063, -73.921)",WEST 172 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4447017,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/11/2021,9:05,BROOKLYN,11235,40.587414,-73.938416,"(40.587414, -73.938416)",VOORHIES AVENUE,HARING STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4445953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,18:00,BROOKLYN,11239,40.64426,-73.877785,"(40.64426, -73.877785)",,,1530 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446767,Pick-up Truck,Sedan,,, +08/11/2021,16:00,QUEENS,11366,40.72721,-73.810585,"(40.72721, -73.810585)",,,158-03 73 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446313,Sedan,,,, +08/09/2021,15:17,MANHATTAN,10012,40.727093,-73.99156,"(40.727093, -73.99156)",BOWERY,EAST 4 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4447011,Station Wagon/Sport Utility Vehicle,Bike,,, +08/13/2021,6:00,QUEENS,11385,40.70041,-73.90368,"(40.70041, -73.90368)",HANCOCK STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447130,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,20:07,MANHATTAN,10032,40.835358,-73.94022,"(40.835358, -73.94022)",WEST 161 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4446561,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,15:55,MANHATTAN,10033,40.852646,-73.93558,"(40.852646, -73.93558)",,,44 BENNETT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446693,Sedan,Sedan,,, +08/11/2021,10:56,BROOKLYN,11204,40.615826,-73.97574,"(40.615826, -73.97574)",,,5907 23 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446179,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,18:23,MANHATTAN,10029,40.789623,-73.94007,"(40.789623, -73.94007)",EAST 106 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446785,Sedan,Bike,,, +08/13/2021,6:50,BROOKLYN,11207,40.67091,-73.89364,"(40.67091, -73.89364)",BELMONT AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4446821,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,2:02,BROOKLYN,11216,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,MACON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447234,Sedan,,,, +08/12/2021,19:00,QUEENS,11101,40.753036,-73.94062,"(40.753036, -73.94062)",41 AVENUE,23 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446980,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,9:01,BROOKLYN,11226,40.647007,-73.96262,"(40.647007, -73.96262)",ALBEMARLE ROAD,EAST 18 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4447055,Bus,,,, +08/11/2021,0:40,,,40.848118,-73.93089,"(40.848118, -73.93089)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447163,Tractor Truck Diesel,,,, +08/11/2021,6:20,,,40.690308,-73.99881,"(40.690308, -73.99881)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446199,Sedan,Sedan,,, +08/10/2021,15:00,STATEN ISLAND,10306,40.56084,-74.11603,"(40.56084, -74.11603)",FALCON AVENUE,OAK AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4446533,Sedan,Sedan,,, +08/10/2021,15:03,BRONX,10473,40.82071,-73.851585,"(40.82071, -73.851585)",SEWARD AVENUE,OLMSTEAD AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4446546,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,18:30,MANHATTAN,10002,,,,SOUTH STREET,PIKE SLIP,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446332,Bike,,,, +08/13/2021,5:53,BROOKLYN,11236,40.63574,-73.90853,"(40.63574, -73.90853)",EAST 84 STREET,AVENUE J,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,Unspecified,,,4446735,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/30/2021,17:00,QUEENS,11433,40.703835,-73.778496,"(40.703835, -73.778496)",180 STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4446649,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,12:00,BRONX,10467,40.874756,-73.87387,"(40.874756, -73.87387)",PARKSIDE PLACE,EAST 207 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446264,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,11:00,BRONX,10466,40.892944,-73.85599,"(40.892944, -73.85599)",,,740 EAST 233 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Moped,, +08/07/2021,21:23,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,BLAKE AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4446756,Sedan,,,, +08/13/2021,13:00,BRONX,10454,40.806038,-73.927666,"(40.806038, -73.927666)",,,329 EAST 132 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446851,Sedan,,,, +08/10/2021,11:08,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447309,Sedan,Sedan,,, +08/12/2021,9:20,,,40.7014,-73.91858,"(40.7014, -73.91858)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446321,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,8:04,QUEENS,11101,40.74431,-73.956055,"(40.74431, -73.956055)",,,48-21 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445994,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,20:51,BRONX,10468,40.868282,-73.90108,"(40.868282, -73.90108)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4446610,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,17:54,MANHATTAN,10028,40.777504,-73.954956,"(40.777504, -73.954956)",3 AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4447367,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/11/2021,13:35,,,,,,JAY STREET,SANDS STREET,,1,0,0,0,0,0,1,0,Oversized Vehicle,Passing or Lane Usage Improper,Unspecified,,,4446077,Tanker,Station Wagon/Sport Utility Vehicle,Sedan,, +08/11/2021,22:12,MANHATTAN,10019,40.763165,-73.98546,"(40.763165, -73.98546)",,,854 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446152,Sedan,Sedan,,, +08/10/2021,16:00,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446807,Sedan,,,, +08/11/2021,16:10,,,40.69221,-73.92293,"(40.69221, -73.92293)",MENAHAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446464,Sedan,,,, +07/28/2021,10:40,,,40.668373,-73.92264,"(40.668373, -73.92264)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447089,Van,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,19:33,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447383,Sedan,,,, +08/13/2021,10:15,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446605,Sedan,,,, +08/12/2021,7:15,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446510,Box Truck,Pick-up Truck,,, +08/12/2021,6:33,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4446252,Taxi,,,, +08/11/2021,12:06,,,40.66733,-73.95353,"(40.66733, -73.95353)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446469,Sedan,Taxi,,, +08/12/2021,18:39,,,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4446637,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,14:30,QUEENS,11377,40.740414,-73.89658,"(40.740414, -73.89658)",,,68-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446099,Sedan,Sedan,,, +08/11/2021,15:30,BRONX,10455,40.814644,-73.910576,"(40.814644, -73.910576)",,,550 CAULDWELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446499,Sedan,Pick-up Truck,,, +08/11/2021,17:45,BROOKLYN,11236,40.629494,-73.91834,"(40.629494, -73.91834)",,,1966 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446133,Pick-up Truck,Sedan,,, +08/12/2021,12:50,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4446435,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/11/2021,12:20,BRONX,10462,40.833385,-73.85944,"(40.833385, -73.85944)",,,1939 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446023,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +08/11/2021,19:15,QUEENS,11372,40.749157,-73.86943,"(40.749157, -73.86943)",ROOSEVELT AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446370,Sedan,,,, +08/01/2021,16:27,,,40.710316,-73.77173,"(40.710316, -73.77173)",JAMAICA AVENUE,187 PLACE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4446664,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:40,MANHATTAN,10000,40.77994,-73.97103,"(40.77994, -73.97103)",WEST DRIVE,TRANSVERSE ROAD NUMBER TWO,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446681,Sedan,Van,,, +08/11/2021,4:15,BRONX,10452,40.83057,-73.93072,"(40.83057, -73.93072)",WEST 161 STREET,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4446279,Dump,Sedan,,, +10/16/2021,21:41,,,40.8411332,-73.9239954,"(40.8411332, -73.9239954)",WEST 170 STREET,,,4,0,0,0,0,0,4,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4468815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/13/2021,19:25,BROOKLYN,11226,40.643,-73.957695,"(40.643, -73.957695)",,,1127 FLATBUSH AVENUE,6,0,0,0,0,0,6,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4447065,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/07/2021,18:45,,,40.708637,-73.90412,"(40.708637, -73.90412)",LINDEN STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447138,Sedan,,,, +08/12/2021,11:37,MANHATTAN,10016,40.744644,-73.97767,"(40.744644, -73.97767)",,,238 EAST 33 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446305,Sedan,Sedan,,, +08/09/2021,17:38,BRONX,10474,40.818604,-73.88917,"(40.818604, -73.88917)",HUNTS POINT AVENUE,SENECA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446791,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,10:54,BROOKLYN,11208,40.657787,-73.874596,"(40.657787, -73.874596)",,,12435 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446632,Sedan,,,, +08/12/2021,14:50,BRONX,10455,40.80993,-73.90725,"(40.80993, -73.90725)",EAST 145 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446504,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,17:35,MANHATTAN,10013,,,,MERCER STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446565,Sedan,Sedan,,, +08/13/2021,21:30,BROOKLYN,11229,40.595154,-73.95281,"(40.595154, -73.95281)",,,2280 EAST 18 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446825,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,21:20,BROOKLYN,11228,40.607464,-74.01486,"(40.607464, -74.01486)",,,236 BAY 8 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446363,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,11:23,,,40.765354,-73.81733,"(40.765354, -73.81733)",149 STREET,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4446867,Sedan,Sedan,,, +08/11/2021,10:46,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446426,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,19:04,QUEENS,11385,40.70543,-73.87769,"(40.70543, -73.87769)",CENTRAL AVENUE,73 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,9:05,,,40.678455,-73.949684,"(40.678455, -73.949684)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Glare,,,,,4447230,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,3:10,MANHATTAN,10029,40.788387,-73.93925,"(40.788387, -73.93925)",,,420 EAST 105 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4446175,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/12/2021,6:34,,,,,,QUEENS PLAZA SOUTH,QUEENS PLAZA,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446409,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,16:45,QUEENS,11368,40.753895,-73.862114,"(40.753895, -73.862114)",106 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446195,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,7:00,QUEENS,11691,40.601723,-73.74904,"(40.601723, -73.74904)",,,14-41 GATEWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4446703,Sedan,,,, +08/09/2021,16:08,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,101 AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4446537,Sedan,Sedan,,, +08/08/2021,19:23,BROOKLYN,11208,40.659744,-73.87428,"(40.659744, -73.87428)",ESSEX STREET,COZINE AVENUE,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,,,,4446771,Sedan,Sedan,,, +08/12/2021,21:00,,,40.849995,-73.93866,"(40.849995, -73.93866)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447170,Sedan,,,, +08/11/2021,21:17,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4446141,Sedan,Sedan,,, +07/30/2021,8:49,BRONX,10473,40.82062,-73.86858,"(40.82062, -73.86858)",LAFAYETTE AVENUE,CROES AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446542,Sedan,Sedan,,, +07/27/2021,13:45,BRONX,10470,40.89785,-73.864716,"(40.89785, -73.864716)",,,368 EAST 235 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447205,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,11:20,BROOKLYN,11214,40.586445,-73.98838,"(40.586445, -73.98838)",28 AVENUE,CROPSEY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4446669,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,22:30,BROOKLYN,11207,40.667118,-73.88889,"(40.667118, -73.88889)",DUMONT AVENUE,VAN SICLEN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446802,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,14:00,,,,,,TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447083,Sedan,Sedan,,, +08/11/2021,17:25,MANHATTAN,10039,40.822517,-73.93911,"(40.822517, -73.93911)",,,200 WEST 146 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4446247,Sedan,,,, +08/13/2021,10:05,QUEENS,11354,40.75814,-73.83517,"(40.75814, -73.83517)",ROOSEVELT AVENUE,JANET PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446586,Sedan,Box Truck,,, +08/13/2021,15:30,,,,,,36 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446956,Sedan,Sedan,,, +08/12/2021,21:45,QUEENS,11385,40.70397,-73.90413,"(40.70397, -73.90413)",MADISON STREET,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4446458,Box Truck,,,, +08/11/2021,10:41,QUEENS,11358,40.76285,-73.798935,"(40.76285, -73.798935)",167 STREET,CROCHERON AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4446105,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,14:50,BRONX,10454,40.808163,-73.92653,"(40.808163, -73.92653)",EAST 135 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446846,E-Bike,,,, +08/13/2021,19:40,BROOKLYN,11204,,,,,,5805 18 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447376,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,8:43,QUEENS,11370,40.772144,-73.89218,"(40.772144, -73.89218)",,,19-40 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446969,Sedan,,,, +08/11/2021,21:30,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4447029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +08/12/2021,13:58,BROOKLYN,11234,40.629353,-73.884766,"(40.629353, -73.884766)",,,2200 ROCKAWAY PARKWAY,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4446380,Sedan,Bike,,, +08/13/2021,0:21,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4446473,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,13:35,QUEENS,11433,,,,109 AVENUE,173 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,,,4447355,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/12/2021,20:15,QUEENS,11421,40.692238,-73.86672,"(40.692238, -73.86672)",75 STREET,86 ROAD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446642,Sedan,Bike,,, +08/11/2021,21:40,BRONX,10472,,,,WESTCHESTER AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4446209,Sedan,Sedan,,, +08/11/2021,16:41,QUEENS,11373,40.73398,-73.86913,"(40.73398, -73.86913)",,,59-10 92 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447096,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,21:56,,,40.786827,-73.84571,"(40.786827, -73.84571)",COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4446585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/11/2021,16:00,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446146,Station Wagon/Sport Utility Vehicle,Bus,,, +08/12/2021,4:45,BRONX,10472,40.83055,-73.87488,"(40.83055, -73.87488)",,,1245 MORRISON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4446210,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +08/11/2021,20:15,,,40.811367,-73.95402,"(40.811367, -73.95402)",WEST 125 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4446893,Sedan,Box Truck,,, +08/05/2021,13:24,BRONX,10468,40.868282,-73.90108,"(40.868282, -73.90108)",UNIVERSITY AVENUE,WEST KINGSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446600,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,1:46,,,40.65835,-73.90497,"(40.65835, -73.90497)",LOTT AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4446188,Sedan,Sedan,,, +08/12/2021,16:30,,,,,,20 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4446415,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/12/2021,17:45,BRONX,10468,40.868282,-73.90108,"(40.868282, -73.90108)",WEST KINGSBRIDGE ROAD,UNIVERSITY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446617,Sedan,Bike,,, +08/11/2021,2:35,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4445801,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,16:30,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",80 STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446440,Sedan,,,, +08/08/2021,9:00,,,40.607433,-74.12105,"(40.607433, -74.12105)",,,764 MANOR ROAD,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4447295,Sedan,,,, +08/13/2021,12:16,,,40.703472,-73.9306,"(40.703472, -73.9306)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Failure to Yield Right-of-Way,,,,4446696,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,16:30,,,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4446718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,11:11,,,,,,131 STREET,107 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4446493,Sedan,Sedan,,, +08/11/2021,3:07,BROOKLYN,11205,40.694576,-73.95615,"(40.694576, -73.95615)",MYRTLE AVENUE,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446124,Sedan,Bike,,, +08/11/2021,6:30,QUEENS,11368,40.74691,-73.86842,"(40.74691, -73.86842)",,,41-22 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446353,Bike,Van,,, +08/12/2021,23:22,,,40.792244,-73.94629,"(40.792244, -73.94629)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Traffic Control Disregarded,,,,4446488,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,14:00,QUEENS,11101,,,,,,27-03 42 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446472,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,16:14,,,,,,PROSPECT STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446403,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,14:00,MANHATTAN,10031,40.82425,-73.9453,"(40.82425, -73.9453)",,,394 WEST 145 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446641,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,2:38,,,40.675205,-73.904396,"(40.675205, -73.904396)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4445845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/12/2021,11:20,,,40.77045,-73.83421,"(40.77045, -73.83421)",FARRINGTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446420,Sedan,,,, +08/11/2021,20:00,BROOKLYN,11203,40.662395,-73.93735,"(40.662395, -73.93735)",TROY AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446103,Sedan,Sedan,,, +08/12/2021,0:00,MANHATTAN,10032,,,,WEST 171 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446569,Sedan,Sedan,,, +08/11/2021,23:15,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4446189,Van,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,5:32,MANHATTAN,10002,,,,BIALYSTOKER PL,DELANCEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446701,Sedan,Taxi,,, +08/07/2021,11:32,BROOKLYN,11207,40.66741,-73.88988,"(40.66741, -73.88988)",,,543 MILLER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4446628,Ambulance,Sedan,,, +08/04/2021,23:30,,,40.775383,-73.923035,"(40.775383, -73.923035)",HOYT AVENUE NORTH,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446943,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,19:10,QUEENS,11422,40.672405,-73.730515,"(40.672405, -73.730515)",244 STREET,134 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4446446,Sedan,Sedan,Sedan,, +08/13/2021,19:35,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",AVENUE OF THE AMERICAS,WATTS STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446720,Sedan,,,, +08/13/2021,21:12,MANHATTAN,10016,40.747684,-73.97879,"(40.747684, -73.97879)",EAST 36 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446894,Sedan,,,, +07/31/2021,4:30,QUEENS,11369,40.7619,-73.8799,"(40.7619, -73.8799)",89 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446739,Sedan,Sedan,,, +08/11/2021,18:53,BRONX,10468,40.86165,-73.91076,"(40.86165, -73.91076)",HAMPDEN PLACE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447147,Sedan,Sedan,,, +08/11/2021,16:40,QUEENS,11378,,,,55 DRIVE,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4446142,Box Truck,Box Truck,Sedan,, +08/12/2021,11:00,BRONX,10472,40.830486,-73.87484,"(40.830486, -73.87484)",,,1240 MORRISON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446347,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/12/2021,19:39,MANHATTAN,10029,0,0,"(0.0, 0.0)",3 AVENUE,EAST 104 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4447076,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,15:53,,,40.870415,-73.91515,"(40.870415, -73.91515)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4447182,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/12/2021,0:00,MANHATTAN,10032,,,,WEST 172 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4446570,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,20:38,,,40.631844,-74.15222,"(40.631844, -74.15222)",SIMONSON AVENUE,WALKER STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446376,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,21:45,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446726,Pick-up Truck,Sedan,,, +08/11/2021,15:00,,,40.69874,-73.926315,"(40.69874, -73.926315)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446169,Pick-up Truck,,,, +08/09/2021,14:00,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",EAST 174 STREET,BRONX RIVER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4447000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/08/2021,4:55,BROOKLYN,11233,40.68412,-73.9363,"(40.68412, -73.9363)",,,479 HANCOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447155,Taxi,Sedan,,, +08/12/2021,17:20,BRONX,10458,40.85814,-73.884026,"(40.85814, -73.884026)",,,625 EAST FORDHAM ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,10:50,BROOKLYN,11230,40.61904,-73.95848,"(40.61904, -73.95848)",,,1624 CHESTNUT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447043,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:00,BRONX,10469,40.880947,-73.85456,"(40.880947, -73.85456)",EAST 219 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447212,Sedan,Sedan,,, +08/13/2021,4:23,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447106,Sedan,Sedan,Sedan,, +08/11/2021,14:14,QUEENS,11412,,,,196 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446483,Sedan,Pick-up Truck,,, +08/11/2021,16:12,QUEENS,11432,40.689735,-73.89033,"(40.689735, -73.89033)",VERMONT PLACE,ROBINSON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4446434,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,22:22,BRONX,10465,40.81533,-73.81924,"(40.81533, -73.81924)",SWINTON AVENUE,HARDING AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447340,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,18:22,QUEENS,11418,40.704777,-73.81991,"(40.704777, -73.81991)",,,87-11 135 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446538,Sedan,,,, +08/11/2021,10:27,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446022,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,12:45,QUEENS,11432,40.70832,-73.79775,"(40.70832, -73.79775)",,,88-40 164 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446052,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,13:00,BROOKLYN,11207,40.65516,-73.888084,"(40.65516, -73.888084)",,,940 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446798,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,15:05,BRONX,10467,40.879864,-73.87596,"(40.879864, -73.87596)",EAST GUN HILL ROAD,KINGS COLLEGE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446271,Sedan,Pick-up Truck,,, +08/11/2021,17:51,BRONX,10466,40.880924,-73.83966,"(40.880924, -73.83966)",BOSTON ROAD,EDSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447202,Sedan,Sedan,,, +08/12/2021,17:40,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,SCHENCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4446758,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,12:00,BRONX,10466,40.894394,-73.857704,"(40.894394, -73.857704)",,,686 EAST 234 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446581,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,2:45,,,40.75332,-73.9636,"(40.75332, -73.9636)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446477,Sedan,Sedan,,, +08/11/2021,9:00,BROOKLYN,11211,40.710087,-73.95129,"(40.710087, -73.95129)",,,396 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446118,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,23:22,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446613,Sedan,,,, +08/11/2021,23:00,MANHATTAN,10034,40.864014,-73.91927,"(40.864014, -73.91927)",,,3856 10 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4446325,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,21:00,BRONX,10461,40.85417,-73.84798,"(40.85417, -73.84798)",,,1840 SEMINOLE AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4446596,Sedan,,,, +08/12/2021,9:30,,,40.77052,-73.91978,"(40.77052, -73.91978)",29 STREET,ASTORIA BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446970,,,,, +08/12/2021,16:59,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",WILLIS AVENUE,EAST 135 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4446841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/11/2021,16:40,BRONX,10458,40.86609,-73.88268,"(40.86609, -73.88268)",SOUTHERN BOULEVARD,BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4446618,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,14:30,,,40.72653,-73.72852,"(40.72653, -73.72852)",BRADDOCK AVENUE,240 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4446451,Pick-up Truck,Sedan,,, +10/19/2021,17:53,QUEENS,11358,40.7602718,-73.8039995,"(40.7602718, -73.8039995)",SANFORD AVENUE,162 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468933,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,9:45,,,40.834354,-73.82623,"(40.834354, -73.82623)",BRUCKNER BOULEVARD,LOGAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446000,Sedan,,,, +08/12/2021,7:50,MANHATTAN,10036,40.761707,-73.99442,"(40.761707, -73.99442)",,,503 WEST 45 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446218,Sedan,,,, +08/11/2021,22:22,BRONX,10452,40.838333,-73.91692,"(40.838333, -73.91692)",MARCY PLACE,WALTON AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4446282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,16:03,,,40.87398,-73.855774,"(40.87398, -73.855774)",EAST GUN HILL ROAD,LACONIA AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447190,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/12/2021,16:30,BROOKLYN,11226,40.650856,-73.9486,"(40.650856, -73.9486)",CHURCH AVENUE,FAIRVIEW PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4447023,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,1:05,QUEENS,11385,40.704178,-73.88953,"(40.704178, -73.88953)",70 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4446035,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/11/2021,12:03,BRONX,10460,40.83762,-73.88546,"(40.83762, -73.88546)",,,1796 VYSE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446149,Sedan,Convertible,,, +04/11/2022,15:05,QUEENS,11422,40.657406,-73.74507,"(40.657406, -73.74507)",BROOKVILLE BOULEVARD,147 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4519727,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:20,BRONX,10462,40.83664,-73.85429,"(40.83664, -73.85429)",,,1526 ODELL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,20:45,,,40.598312,-74.164,"(40.598312, -74.164)",,,74 FREEDOM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447289,PK,,,, +08/11/2021,13:40,BRONX,10459,,,,,,920 KELLY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446763,Van,Sedan,,, +08/13/2021,0:00,QUEENS,11101,40.744335,-73.951004,"(40.744335, -73.951004)",11 STREET,47 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446673,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,16:30,QUEENS,11435,40.697643,-73.81128,"(40.697643, -73.81128)",,,138-32 94 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446425,Pick-up Truck,Sedan,,, +08/11/2021,23:35,BROOKLYN,11219,40.633083,-74.00558,"(40.633083, -74.00558)",FORT HAMILTON PARKWAY,60 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446339,Taxi,,,, +08/12/2021,21:55,QUEENS,11418,40.69637,-73.831985,"(40.69637, -73.831985)",,,89-31 116 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4446550,Van,Sedan,Sedan,, +08/11/2021,12:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446112,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,14:00,BROOKLYN,11208,40.678707,-73.864136,"(40.678707, -73.864136)",,,175 FORBELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446828,Sedan,Sedan,,, +08/13/2021,9:40,MANHATTAN,10065,40.765358,-73.965904,"(40.765358, -73.965904)",EAST 64 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447381,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,21:14,,,40.68511,-73.78654,"(40.68511, -73.78654)",116 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447306,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,0:00,,,40.739666,-73.79215,"(40.739666, -73.79215)",182 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4446624,Sedan,,,, +08/12/2021,4:40,MANHATTAN,10021,,,,3 AVENUE,EAST 73 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,,,,4446161,Taxi,Taxi,,, +08/12/2021,9:20,BRONX,10458,40.857525,-73.8818,"(40.857525, -73.8818)",EAST FORDHAM ROAD,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446518,Sedan,Sedan,,, +08/13/2021,18:35,BROOKLYN,11235,,,,CASS PLACE,NEPTUNE AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446913,Sedan,E-Bike,,, +08/08/2021,1:40,,,40.788906,-73.93765,"(40.788906, -73.93765)",FDR DRIVE,,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446781,Sedan,,,, +08/13/2021,1:41,,,40.858707,-73.9037,"(40.858707, -73.9037)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446713,Sedan,Sedan,,, +08/13/2021,6:32,,,40.671486,-73.94757,"(40.671486, -73.94757)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447226,Sedan,Bus,,, +08/12/2021,17:00,BRONX,10456,40.831383,-73.906845,"(40.831383, -73.906845)",EAST 168 STREET,WASHINGTON AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446650,Pick-up Truck,E-Scooter,,, +08/13/2021,21:10,,,40.693226,-73.96785,"(40.693226, -73.96785)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4446682,Sedan,Bike,,, +08/11/2021,16:05,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446948,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/12/2021,10:30,MANHATTAN,10010,40.737537,-73.98011,"(40.737537, -73.98011)",,,324 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446746,Bus,Bike,,, +08/11/2021,21:02,,,40.72766,-73.92938,"(40.72766, -73.92938)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Following Too Closely,,,4446995,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/12/2021,16:00,QUEENS,11433,40.70743,-73.786545,"(40.70743, -73.786545)",,,92-15 173 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446645,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,23:50,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4447249,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,2:07,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4446508,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,19:59,BROOKLYN,11206,0,0,"(0.0, 0.0)",BUSHWICK AVENUE,JEFFERSON STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4446465,Moped,,,, +08/12/2021,0:10,BROOKLYN,11212,40.66633,-73.91571,"(40.66633, -73.91571)",SUTTER AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446385,Taxi,,,, +08/11/2021,10:44,,,40.852818,-73.90476,"(40.852818, -73.90476)",EAST BURNSIDE AVENUE,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4446710,Sedan,Flat Rack,,, +08/13/2021,12:35,,,40.64495,-73.9249,"(40.64495, -73.9249)",CLARENDON ROAD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4447038,Sedan,Sedan,,, +08/06/2021,18:00,BROOKLYN,11207,40.664944,-73.89512,"(40.664944, -73.89512)",,,494 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446775,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:50,BROOKLYN,11211,40.715614,-73.94796,"(40.715614, -73.94796)",SKILLMAN AVENUE,LEONARD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446974,Sedan,Bike,,, +08/12/2021,16:10,MANHATTAN,10065,40.763405,-73.96127,"(40.763405, -73.96127)",,,327 EAST 64 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447373,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,16:55,MANHATTAN,10019,40.761337,-73.98189,"(40.761337, -73.98189)",,,145 WEST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446500,Box Truck,Bike,,, +08/13/2021,22:53,QUEENS,11355,40.744175,-73.83585,"(40.744175, -73.83585)",COLLEGE POINT BOULEVARD,60 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446871,Sedan,Sedan,,, +08/12/2021,9:10,,,0,0,"(0.0, 0.0)",MAJOR DEEGAN EXPRESSWAY,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446262,Sedan,Sedan,,, +08/12/2021,1:54,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,Other Vehicular,,,4446817,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/10/2021,23:00,BROOKLYN,11226,40.64606,-73.951996,"(40.64606, -73.951996)",,,986 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447018,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,8:30,QUEENS,11367,40.717678,-73.81713,"(40.717678, -73.81713)",MAIN STREET,UNION TURNPIKE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446592,Sedan,,,, +08/11/2021,1:05,,,40.702255,-73.92008,"(40.702255, -73.92008)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4445920,Sedan,Sedan,Sedan,Sedan, +08/11/2021,9:05,QUEENS,11435,40.694546,-73.80212,"(40.694546, -73.80212)",SUTPHIN BOULEVARD,SOUTH ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446320,Sedan,Sedan,,, +08/12/2021,13:00,QUEENS,11101,,,,41 AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446577,sprinter v,Box Truck,,, +08/11/2021,12:00,QUEENS,11411,40.6838,-73.72786,"(40.6838, -73.72786)",121 AVENUE,238 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4446091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/10/2021,18:45,BRONX,10472,40.826023,-73.8618,"(40.826023, -73.8618)",,,1845 BRUCKNER BOULEVARD,1,0,0,0,0,0,0,0,Following Too Closely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4446545,E-Bike,Sedan,,, +08/11/2021,22:57,BROOKLYN,11219,40.63671,-73.983215,"(40.63671, -73.983215)",,,4114 15 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4446289,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,0:05,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4446793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/11/2021,21:25,BROOKLYN,11220,40.611366,-74.03488,"(40.611366, -74.03488)",4 AVENUE,SHORE ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4446228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/07/2021,4:00,BRONX,10452,40.84376,-73.9175,"(40.84376, -73.9175)",,,1505 MACOMBS ROAD,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4447364,Moped,,,, +08/10/2021,20:20,BROOKLYN,11207,40.655117,-73.88806,"(40.655117, -73.88806)",,,946 PENNSYLVANIA AVENUE,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4446812,Sedan,Sedan,,, +07/28/2021,18:45,,,40.853115,-73.927246,"(40.853115, -73.927246)",AMSTERDAM AVENUE,,,2,0,0,0,1,0,1,0,Unspecified,Unspecified,,,,4447121,Motorcycle,Bike,,, +08/08/2021,18:55,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,2,0,2,0,0,0,0,0,Unsafe Speed,,,,,4446609,Sedan,,,, +08/13/2021,20:39,,,40.74463,-73.90263,"(40.74463, -73.90263)",WOODSIDE AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446688,Sedan,,,, +08/13/2021,23:40,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447324,Sedan,,,, +08/11/2021,20:28,BRONX,10453,40.848637,-73.91169,"(40.848637, -73.91169)",JEROME AVENUE,EAST 176 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4446178,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,16:00,MANHATTAN,10027,40.810276,-73.94738,"(40.810276, -73.94738)",WEST 127 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446517,trailer,Sedan,,, +08/13/2021,11:00,,,40.74218,-73.95887,"(40.74218, -73.95887)",BORDEN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446660,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,17:00,BROOKLYN,11209,40.626564,-74.02734,"(40.626564, -74.02734)",,,344 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446430,Sedan,,,, +08/10/2021,18:30,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447388,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,17:45,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4446677,Sedan,,,, +08/12/2021,0:30,QUEENS,11368,40.757034,-73.87133,"(40.757034, -73.87133)",97 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446198,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,19:00,BROOKLYN,11212,40.65931,-73.91295,"(40.65931, -73.91295)",,,431 HERZL STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4446386,Sedan,,,, +08/12/2021,21:21,QUEENS,11373,40.743973,-73.8851,"(40.743973, -73.8851)",BROADWAY,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446528,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,0:24,,,,,,JAY STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446130,Tractor Truck Diesel,,,, +08/13/2021,14:32,BRONX,10459,40.817196,-73.895325,"(40.817196, -73.895325)",SOUTHERN BOULEVARD,INTERVALE AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446750,Sedan,E-Scooter,,, +08/12/2021,15:20,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447057,Bus,,,, +08/11/2021,9:50,BROOKLYN,11231,40.682716,-73.99462,"(40.682716, -73.99462)",,,323 SACKETT STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4446327,Sedan,,,, +08/13/2021,21:30,BRONX,10467,40.86898,-73.86622,"(40.86898, -73.86622)",,,2934 CRUGER AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4446730,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/09/2021,6:00,MANHATTAN,10010,40.73811,-73.973495,"(40.73811, -73.973495)",,,25 WATERSIDE PLAZA,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4446923,Sedan,Motorcycle,,, +08/11/2021,18:21,QUEENS,11105,,,,,,21-35 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446955,Sedan,Carry All,,, +08/13/2021,16:30,QUEENS,11423,40.707893,-73.7687,"(40.707893, -73.7687)",,,102-24 189 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446665,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:55,QUEENS,11420,40.67236,-73.82032,"(40.67236, -73.82032)",LEFFERTS BOULEVARD,133 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4446860,Taxi,Sedan,,, +08/13/2021,14:00,,,,,,BAY 32 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446717,Sedan,,,, +08/13/2021,17:00,,,40.801052,-73.910255,"(40.801052, -73.910255)",EAST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446849,Sedan,Motorcycle,,, +08/12/2021,16:14,QUEENS,11427,40.725307,-73.75231,"(40.725307, -73.75231)",,,88-10 213 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446678,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/29/2021,18:45,MANHATTAN,10007,40.71474,-74.00757,"(40.71474, -74.00757)",,,100 CHAMBERS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446789,Sedan,,,, +08/08/2021,4:00,,,40.768013,-73.90423,"(40.768013, -73.90423)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446944,Sedan,Sedan,,, +07/18/2021,22:00,QUEENS,11368,40.74919,-73.869194,"(40.74919, -73.869194)",,,96-15 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446740,Sedan,,,, +08/12/2021,13:24,BROOKLYN,11217,40.685226,-73.978294,"(40.685226, -73.978294)",,,123 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446364,Sedan,Box Truck,,, +08/13/2021,13:50,QUEENS,11106,40.766182,-73.93683,"(40.766182, -73.93683)",11 STREET,33 ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4446986,Sedan,Sedan,,, +08/11/2021,18:40,,,40.673386,-73.77568,"(40.673386, -73.77568)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446160,Sedan,Sedan,,, +08/13/2021,19:45,BROOKLYN,11208,40.670334,-73.866844,"(40.670334, -73.866844)",AUTUMN AVENUE,DUMONT AVENUE,,3,0,0,0,1,0,2,0,Other Vehicular,Other Vehicular,,,,4446824,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/09/2021,2:50,,,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447233,Sedan,,,, +08/12/2021,19:50,QUEENS,11358,,,,43 AVENUE,158 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446582,E-Scooter,Sedan,,, +11/01/2021,9:00,,,,,,WILLIAMSBURG BRIDGE,SOUTH 5 PLACE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4474228,Garbage or Refuse,,,, +08/13/2021,14:00,QUEENS,11354,40.77279,-73.837135,"(40.77279, -73.837135)",ULMER STREET,28 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4446868,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,0:00,,,40.835846,-73.868164,"(40.835846, -73.868164)",CROSS BRONX EXPRESSWAY,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446979,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,8:15,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,22:20,BROOKLYN,11203,40.65642,-73.933815,"(40.65642, -73.933815)",SCHENECTADY AVENUE,CLARKSON AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4447034,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,22:59,BROOKLYN,11236,40.631092,-73.89835,"(40.631092, -73.89835)",EAST 88 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4446877,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +08/13/2021,0:00,QUEENS,11432,40.705826,-73.79397,"(40.705826, -73.79397)",JAMAICA AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4446646,Taxi,,,, +08/11/2021,18:40,BROOKLYN,11225,40.660275,-73.96277,"(40.660275, -73.96277)",,,75 OCEAN AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446296,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,18:36,BROOKLYN,11219,40.63277,-74.00351,"(40.63277, -74.00351)",,,1046 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,0:16,,,40.662575,-73.93448,"(40.662575, -73.93448)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4445951,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,13:50,,,40.570835,-74.16983,"(40.570835, -74.16983)",RICHMOND AVENUE,FOREST HILL ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446205,Station Wagon/Sport Utility Vehicle,Bike,,, +08/07/2021,17:30,,,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446766,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,14:30,QUEENS,11423,40.711227,-73.77208,"(40.711227, -73.77208)",,,91-10 187 PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446068,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,17:30,QUEENS,11418,40.69843,-73.83893,"(40.69843, -73.83893)",110 STREET,86 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447111,Sedan,Sedan,,, +08/11/2021,19:00,BRONX,10466,40.88744,-73.85053,"(40.88744, -73.85053)",,,4065 PAULDING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446560,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,18:45,BROOKLYN,11231,40.684177,-73.992195,"(40.684177, -73.992195)",BUTLER STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446692,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,14:45,,,,,,Pennsylvania Avenue,Jackie Robinson parkway,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446806,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/11/2021,7:30,BRONX,10462,40.838024,-73.859055,"(40.838024, -73.859055)",,,16 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Unspecified,,,,,4446211,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,18:54,,,40.68005,-73.94327,"(40.68005, -73.94327)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4446123,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/11/2021,13:14,,,40.626015,-74.15655,"(40.626015, -74.15655)",,,2040 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446204,Sedan,,,, +08/11/2021,15:25,QUEENS,11421,,,,ELDERTS LANE,93 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4446532,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,16:15,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446408,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,1:27,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446173,Sedan,,,, +08/12/2021,17:20,,,40.68804,-73.947754,"(40.68804, -73.947754)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4446416,Sedan,FIRETRUCK,,, +08/12/2021,23:16,QUEENS,11379,40.71326,-73.87303,"(40.71326, -73.87303)",METROPOLITAN AVENUE,79 PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Alcohol Involvement,Unspecified,Unspecified,,4447145,Sedan,Sedan,sprinter,Sedan, +08/11/2021,4:50,QUEENS,11429,40.70768,-73.74512,"(40.70768, -73.74512)",110 AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4445811,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,16:39,QUEENS,11385,40.704586,-73.869415,"(40.704586, -73.869415)",,,78-20 79 LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446441,Sedan,,,, +08/13/2021,14:34,,,40.809563,-73.92923,"(40.809563, -73.92923)",3 AVENUE,EAST 135 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446845,Sedan,Sedan,,, +08/12/2021,18:22,BRONX,10461,40.85626,-73.838165,"(40.85626, -73.838165)",,,1680 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4446549,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,15:45,MANHATTAN,10029,40.797264,-73.937515,"(40.797264, -73.937515)",,,2232 2 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447169,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,13:39,QUEENS,11373,40.746063,-73.87537,"(40.746063, -73.87537)",WHITNEY AVENUE,ELBERTSON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4446352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,16:30,MANHATTAN,10017,40.7488,-73.96986,"(40.7488, -73.96986)",1 AVENUE,EAST 42 STREET,,1,0,0,0,1,0,0,0,Obstruction/Debris,,,,,4446697,Bike,,,, +08/12/2021,19:00,QUEENS,11419,40.68439,-73.83094,"(40.68439, -73.83094)",,,104-23 111 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4446492,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/06/2021,0:48,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",FLATLANDS AVENUE,RALPH AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4446734,Sedan,Sedan,,, +08/13/2021,13:38,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4446884,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/12/2021,13:27,STATEN ISLAND,10304,40.61852,-74.0861,"(40.61852, -74.0861)",WAVERLY PLACE,VANDUZER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447082,Sedan,,,, +08/11/2021,6:29,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,,,,4446587,Sedan,Sedan,,, +08/07/2021,20:50,BROOKLYN,11207,40.675495,-73.88916,"(40.675495, -73.88916)",LIBERTY AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4446755,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/13/2021,18:58,,,40.57576,-73.96209,"(40.57576, -73.96209)",BRIGHTWATER COURT,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4446937,Sedan,Sedan,,, +08/13/2021,17:35,MANHATTAN,10013,40.724274,-74.01136,"(40.724274, -74.01136)",WEST STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446721,Sedan,,,, +08/13/2021,18:30,QUEENS,11373,40.738644,-73.887314,"(40.738644, -73.887314)",QUEENS BOULEVARD,JACOBUS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447095,Sedan,,,, +08/13/2021,14:15,BRONX,10467,40.87028,-73.878395,"(40.87028, -73.878395)",WEBSTER AVENUE,EAST 202 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447148,Bus,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,9:30,BROOKLYN,11208,40.67777,-73.863914,"(40.67777, -73.863914)",GLENMORE AVENUE,FORBELL STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4446784,Sedan,Sedan,,, +08/01/2021,20:00,QUEENS,11427,40.720894,-73.75283,"(40.720894, -73.75283)",,,89-66 211 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446899,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,11:44,MANHATTAN,10003,40.727524,-73.988785,"(40.727524, -73.988785)",,,225 EAST 6 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4447010,Taxi,Box Truck,,, +08/15/2020,12:20,BRONX,10454,40.812263,-73.92059,"(40.812263, -73.92059)",WILLIS AVENUE,EAST 143 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447413,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,8:30,QUEENS,11436,40.678436,-73.80057,"(40.678436, -73.80057)",141 STREET,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446478,Sedan,Sedan,,, +08/12/2021,18:20,MANHATTAN,10031,40.82653,-73.94667,"(40.82653, -73.94667)",AMSTERDAM AVENUE,WEST 147 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446601,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,21:05,,,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4447049,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/12/2021,19:00,BROOKLYN,11207,40.672043,-73.89487,"(40.672043, -73.89487)",NEW JERSEY AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446820,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,11:28,BRONX,10468,40.869007,-73.8975,"(40.869007, -73.8975)",,,25 WEST 195 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4446614,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:20,MANHATTAN,10002,40.720478,-73.98972,"(40.720478, -73.98972)",ALLEN STREET,RIVINGTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4446702,Sedan,Bike,,, +08/09/2021,7:25,MANHATTAN,10032,40.84241,-73.93536,"(40.84241, -73.93536)",,,501 WEST 172 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446619,Sedan,Ambulance,,, +08/11/2021,20:35,BRONX,10466,40.885624,-73.843796,"(40.885624, -73.843796)",,,1165 EAST 229 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4447209,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,21:00,BROOKLYN,11232,40.645042,-73.99965,"(40.645042, -73.99965)",8 AVENUE,43 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446283,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,11:11,MANHATTAN,10025,40.79166,-73.96469,"(40.79166, -73.96469)",CENTRAL PARK WEST,WEST 96 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446033,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,10:10,QUEENS,11385,40.713917,-73.92265,"(40.713917, -73.92265)",,,46-40 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446036,Convertible,,,, +08/11/2021,20:24,,,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4446248,4 dr sedan,Bike,,, +08/12/2021,12:00,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,MENAHAN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446438,Taxi,Pick-up Truck,,, +08/11/2021,9:45,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446075,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,15:50,,,40.825912,-73.83647,"(40.825912, -73.83647)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447320,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/11/2021,13:18,,,40.864132,-73.89132,"(40.864132, -73.89132)",EAST 194 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446273,Tractor Truck Diesel,,,, +08/12/2021,8:27,BROOKLYN,11226,40.649876,-73.961815,"(40.649876, -73.961815)",,,1924 CHURCH AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447042,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/12/2021,21:00,,,40.702858,-73.863625,"(40.702858, -73.863625)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4446457,Sedan,,,, +08/11/2021,18:36,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4446108,Pick-up Truck,Pick-up Truck,,, +08/06/2021,8:18,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ATLANTIC AVENUE,ELTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446770,Sedan,Sedan,,, +08/11/2021,13:30,,,40.71886,-73.97492,"(40.71886, -73.97492)",FDR DRIVE,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446306,Pick-up Truck,Sedan,,, +07/27/2021,21:30,MANHATTAN,10011,40.733364,-73.99718,"(40.733364, -73.99718)",,,34 WEST 9 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446965,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,18:50,,,,,,EAST 53 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446476,Pick-up Truck,Sedan,,, +08/11/2021,7:48,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4445988,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,9:20,,,40.704735,-73.743996,"(40.704735, -73.743996)",212 STREET,113 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4446633,Sedan,Sedan,,, +08/11/2021,13:00,BRONX,10461,40.85214,-73.82886,"(40.85214, -73.82886)",,,3239 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446249,Station Wagon/Sport Utility Vehicle,Motorbike,,, +08/12/2021,10:49,,,,,,HUDSON STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446564,Sedan,Box Truck,,, +08/10/2021,21:34,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,EXTERIOR STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4447027,Sedan,,,, +08/09/2021,22:30,BROOKLYN,11208,40.682186,-73.86982,"(40.682186, -73.86982)",ATLANTIC AVENUE,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446801,Sedan,Dump,,, +08/13/2021,23:00,BROOKLYN,11238,40.685436,-73.96729,"(40.685436, -73.96729)",,,430 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,23:25,BRONX,10466,40.894207,-73.848946,"(40.894207, -73.848946)",BUSSING AVENUE,WICKHAM AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447200,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,10:08,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446759,Sedan,Box Truck,,, +08/11/2021,8:32,MANHATTAN,10003,40.726494,-73.98829,"(40.726494, -73.98829)",,,321 EAST 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446301,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:15,BRONX,10468,,,,,,2251 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4446612,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/12/2021,9:59,QUEENS,11101,40.755013,-73.93434,"(40.755013, -73.93434)",28 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4446971,Sedan,Sedan,,, +08/11/2021,18:52,MANHATTAN,10002,40.713253,-73.97759,"(40.713253, -73.97759)",FDR DRIVE,GRAND STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4446324,Sedan,Sedan,,, +08/13/2021,5:55,QUEENS,11367,40.730465,-73.815025,"(40.730465, -73.815025)",70 ROAD,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446591,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,19:15,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447026,Sedan,,,, +08/11/2021,8:21,,,40.595127,-73.75933,"(40.595127, -73.75933)",BEACH 26 STREET,SEAGIRT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446001,Sedan,Sedan,,, +08/11/2021,12:30,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446074,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,20:41,BROOKLYN,11208,40.67243,-73.87438,"(40.67243, -73.87438)",,,1179 SUTTER AVENUE,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4447266,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,14:30,QUEENS,11368,40.74922,-73.86745,"(40.74922, -73.86745)",,,40-04 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447094,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,21:20,,,40.698414,-73.984,"(40.698414, -73.984)",NASSAU STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446466,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,13:20,BROOKLYN,11212,40.65621,-73.914665,"(40.65621, -73.914665)",ROCKAWAY PARKWAY,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447039,Bike,,,, +08/12/2021,0:00,MANHATTAN,10021,40.76687,-73.959785,"(40.76687, -73.959785)",EAST 69 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447374,Sedan,Bike,,, +08/12/2021,11:39,,,40.67312,-73.94463,"(40.67312, -73.94463)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447220,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,20:40,,,40.67624,-73.866104,"(40.67624, -73.866104)",CONDUIT BOULEVARD,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4446774,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:15,,,40.66767,-73.92845,"(40.66767, -73.92845)",ROCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446996,Sedan,Van,Station Wagon/Sport Utility Vehicle,, +08/13/2021,13:30,QUEENS,11364,40.73734,-73.74555,"(40.73734, -73.74555)",,,224-41 KINGSBURY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446777,Sedan,Sedan,Sedan,, +08/12/2021,20:15,,,40.630543,-74.017,"(40.630543, -74.017)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4446471,Sedan,,,, +08/11/2021,16:58,,,40.727097,-73.95269,"(40.727097, -73.95269)",MANHATTAN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4446102,Motorcycle,,,, +08/11/2021,1:19,BRONX,10457,40.855362,-73.89878,"(40.855362, -73.89878)",EAST 182 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446190,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,0:30,,,40.69695,-73.962776,"(40.69695, -73.962776)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4519320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,16:30,BROOKLYN,11233,40.67909,-73.90829,"(40.67909, -73.90829)",SOMERS STREET,STONE AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446350,E-Bike,,,, +08/13/2021,21:00,QUEENS,11369,40.76025,-73.860374,"(40.76025, -73.860374)",110 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446738,Sedan,Sedan,,, +08/12/2021,8:30,QUEENS,11434,40.662636,-73.77406,"(40.662636, -73.77406)",167 STREET,145 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4446433,Sedan,Sedan,Sedan,Sedan, +08/11/2021,11:14,BRONX,10472,40.82935,-73.875145,"(40.82935, -73.875145)",,,1609 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446021,Sedan,Box Truck,,, +08/10/2021,9:00,BROOKLYN,11234,40.60741,-73.926254,"(40.60741, -73.926254)",AVENUE U,EAST 38 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446602,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,11:20,BROOKLYN,11231,40.673203,-74.01056,"(40.673203, -74.01056)",SIGOURNEY STREET,OTSEGO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446859,Sedan,Sedan,,, +08/11/2021,18:11,QUEENS,11366,40.727283,-73.79747,"(40.727283, -73.79747)",,,75-11 172 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446119,Sedan,,,, +08/01/2021,6:42,BRONX,10466,40.897625,-73.85625,"(40.897625, -73.85625)",RICHARDSON AVENUE,EAST 237 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446580,Sedan,Sedan,,, +08/11/2021,7:40,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4445938,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/13/2021,10:40,,,40.739655,-73.81784,"(40.739655, -73.81784)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446634,Sedan,Sedan,,, +08/12/2021,6:45,,,40.83835,-73.94784,"(40.83835, -73.94784)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4446571,Sedan,Taxi,,, +08/11/2021,12:05,,,40.653976,-73.952835,"(40.653976, -73.952835)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446093,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,10:49,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519701,Sedan,Sedan,,, +08/07/2021,21:30,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446769,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,1:50,BROOKLYN,11234,40.61743,-73.932495,"(40.61743, -73.932495)",QUENTIN ROAD,HENDRICKSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446494,Sedan,Convertible,,, +08/11/2021,6:10,BROOKLYN,11207,40.654793,-73.88999,"(40.654793, -73.88999)",GEORGIA AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446813,Sedan,Sedan,,, +08/13/2021,17:35,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4447134,Sedan,,,, +08/11/2021,21:58,,,,,,WEST 128 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4446241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/30/2021,18:15,,,40.609642,-73.89738,"(40.609642, -73.89738)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446998,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,12:27,QUEENS,11423,,,,HILLSIDE AVENUE,197 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Oversized Vehicle,,,,4446687,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +08/11/2021,7:50,BROOKLYN,11211,40.71663,-73.93921,"(40.71663, -73.93921)",,,300 SKILLMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446081,Sedan,,,, +08/12/2021,10:00,,,40.584137,-73.96386,"(40.584137, -73.96386)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4446655,Sedan,Sedan,Sedan,, +08/12/2021,22:50,MANHATTAN,10033,40.848625,-73.93425,"(40.848625, -73.93425)",WEST 180 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446524,Sedan,Bike,,, +08/12/2021,12:47,QUEENS,11368,40.759727,-73.8455,"(40.759727, -73.8455)",126 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446407,Sedan,Tractor Truck Diesel,,, +08/08/2021,16:30,MANHATTAN,10009,40.72579,-73.98294,"(40.72579, -73.98294)",,,140 EAST 7 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4447168,Box truck,Sedan,Pick-up Truck,Pick-up Truck, +08/12/2021,8:46,MANHATTAN,10016,40.74544,-73.9754,"(40.74544, -73.9754)",2 AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446309,Sedan,Tractor Truck Diesel,,, +08/12/2021,11:05,,,40.790894,-73.945175,"(40.790894, -73.945175)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446984,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,18:00,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",TODT HILL ROAD,OCEAN TERRACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446539,Pick-up Truck,Sedan,,, +08/13/2021,23:31,BROOKLYN,11236,40.64308,-73.894775,"(40.64308, -73.894775)",,,1031 EAST 101 STREET,2,0,0,0,0,0,2,0,Unspecified,,,,,4446733,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,16:00,QUEENS,11426,40.724495,-73.72775,"(40.724495, -73.72775)",240 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446143,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,16:42,MANHATTAN,10025,,,,W 99th Street,Broadway,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446269,Sedan,Pick-up Truck,,, +08/12/2021,14:40,BROOKLYN,11214,40.58724,-73.98901,"(40.58724, -73.98901)",CROPSEY AVENUE,BAY 47 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4446935,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,19:00,,,40.616917,-74.07852,"(40.616917, -74.07852)",PARK HILL CIRCLE,PARK HILL LANE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4447081,Sedan,,,, +08/10/2021,6:00,BROOKLYN,11207,40.656116,-73.89666,"(40.656116, -73.89666)",DE WITT AVENUE,HINSDALE STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4446805,Sedan,Sedan,,, +08/11/2021,13:00,MANHATTAN,10036,40.75484,-73.98412,"(40.75484, -73.98412)",WEST 42 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446319,Sedan,Bike,,, +08/08/2021,0:46,BRONX,10452,40.84084,-73.91505,"(40.84084, -73.91505)",,,1455 WALTON AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4446595,Ambulance,Sedan,,, +08/11/2021,21:50,STATEN ISLAND,10304,40.624603,-74.079605,"(40.624603, -74.079605)",BROAD STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446295,Sedan,,,, +08/12/2021,11:23,,,40.674904,-73.94447,"(40.674904, -73.94447)",BROOKLYN AVENUE,,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4447227,Sedan,E-Scooter,,, +08/11/2021,18:35,BRONX,10460,40.841118,-73.8792,"(40.841118, -73.8792)",,,2044 BOSTON ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446185,,,,, +08/05/2021,21:00,QUEENS,11105,40.76904,-73.907776,"(40.76904, -73.907776)",,,42-09 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446947,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,12:00,,,40.57776,-74.169685,"(40.57776, -74.169685)",,,2825 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446375,Sedan,Sedan,,, +08/12/2021,13:00,QUEENS,11434,40.666397,-73.785,"(40.666397, -73.785)",SOUTH CONDUIT AVENUE,153 LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446450,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,22:50,,,40.687103,-73.89251,"(40.687103, -73.89251)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4447127,Moped,,,, +08/05/2021,16:47,BRONX,10468,40.862732,-73.90333,"(40.862732, -73.90333)",GRAND AVENUE,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4446608,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,17:00,,,,,,454,48 street,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446136,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,11:30,,,40.79157,-73.94469,"(40.79157, -73.94469)",3 AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4447032,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck +08/09/2021,0:30,MANHATTAN,10013,40.725674,-74.00578,"(40.725674, -74.00578)",VARICK STREET,SPRING STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4446566,Sedan,Sedan,,, +08/12/2021,14:15,QUEENS,11367,40.738857,-73.816086,"(40.738857, -73.816086)",HORACE HARDING EXPRESSWAY,REEVES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446399,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/07/2021,22:59,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",EAST GUN HILL ROAD,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446551,Tractor Truck Diesel,Sedan,,, +08/09/2021,20:49,QUEENS,11433,,,,guy r brewer blvd,108 avenue,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4446640,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,10:33,QUEENS,11358,40.76926,-73.801834,"(40.76926, -73.801834)",163 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4446129,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/06/2021,22:20,BROOKLYN,11207,40.657814,-73.89613,"(40.657814, -73.89613)",WILLIAMS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446764,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,6:35,,,,,,CLEARVIEW EXPRESSWAY,26 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Other Vehicular,,,,4445846,Sedan,,,, +08/12/2021,7:20,QUEENS,11354,40.764782,-73.83042,"(40.764782, -73.83042)",,,136-33 35 AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4446417,Sedan,Sedan,Sedan,, +08/12/2021,17:30,BROOKLYN,11226,40.651695,-73.94968,"(40.651695, -73.94968)",NOSTRAND AVENUE,MARTENSE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447033,Sedan,Sedan,,, +08/11/2021,4:00,BRONX,10451,40.812035,-73.92855,"(40.812035, -73.92855)",EAST 138 STREET,CANAL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446501,Taxi,Taxi,,, +08/13/2021,15:44,,,40.69578,-73.917076,"(40.69578, -73.917076)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4446698,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,22:34,MANHATTAN,10065,40.75991,-73.95882,"(40.75991, -73.95882)",EAST 61 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447382,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,12:50,BROOKLYN,11233,40.679935,-73.91389,"(40.679935, -73.91389)",BOYLAND STREET,MACDOUGAL STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4446058,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/13/2021,19:30,QUEENS,11355,40.756023,-73.82088,"(40.756023, -73.82088)",BEECH AVENUE,BOWNE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446870,Sedan,Sedan,,, +08/13/2021,9:30,,,40.789684,-73.94815,"(40.789684, -73.94815)",LEXINGTON AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4446623,Box Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/11/2021,9:30,,,40.577003,-74.00217,"(40.577003, -74.00217)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446164,Sedan,Sedan,,, +08/12/2021,11:32,BROOKLYN,11208,40.6647,-73.87149,"(40.6647, -73.87149)",LOGAN STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446818,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,5:00,,,40.666737,-73.78628,"(40.666737, -73.78628)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Fell Asleep,,,,4446484,Sedan,Sedan,,, +08/12/2021,15:10,QUEENS,11413,40.681866,-73.74545,"(40.681866, -73.74545)",131 AVENUE,222 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4446447,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/12/2021,13:40,,,40.76099,-73.99077,"(40.76099, -73.99077)",9 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446356,Bike,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,4:00,,,40.67739,-73.86957,"(40.67739, -73.86957)",HEMLOCK STREET,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446799,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,12:20,BRONX,10475,40.86938,-73.825455,"(40.86938, -73.825455)",,,2136 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447342,Sedan,Sedan,,, +08/12/2021,19:00,,,40.750965,-73.94027,"(40.750965, -73.94027)",QUEENS PLAZA NORTH,CRESCENT STREET,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446666,Bike,E-Bike,,, +08/13/2021,12:00,,,40.88415,-73.82607,"(40.88415, -73.82607)",CONNER STREET,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447183,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,2:49,MANHATTAN,10002,,,,ESSEX STREET,STANTON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446576,Motorcycle,,,, +08/13/2021,23:05,BROOKLYN,11201,40.689816,-73.97833,"(40.689816, -73.97833)",,,110 DE KALB AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446683,Sedan,Sedan,,, +08/13/2021,20:40,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",WILLIS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446842,Taxi,,,, +08/13/2021,9:25,,,40.728767,-73.984436,"(40.728767, -73.984436)",1 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Turning Improperly,,,,4447069,Bus,Taxi,,, +08/10/2021,13:00,STATEN ISLAND,10306,40.575375,-74.104836,"(40.575375, -74.104836)",,,2271 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446534,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,11:37,QUEENS,11420,40.68025,-73.82223,"(40.68025, -73.82223)",118 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447328,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,18:29,,,40.843994,-73.89752,"(40.843994, -73.89752)",3 AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,15:50,MANHATTAN,10003,40.735214,-73.99172,"(40.735214, -73.99172)",EAST 14 STREET,UNION SQUARE WEST,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446747,Sedan,,,, +08/13/2021,23:21,,,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446728,Sedan,Sedan,,, +07/26/2021,8:35,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,1,0,0,0,0,0,,,,,,4447192,,,,, +08/11/2021,14:46,BROOKLYN,11230,40.61203,-73.96753,"(40.61203, -73.96753)",,,617 AVENUE O,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446171,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,18:01,MANHATTAN,10025,40.79213,-73.97383,"(40.79213, -73.97383)",,,175 WEST 92 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446811,Sedan,,,, +08/12/2021,19:06,MANHATTAN,10022,,,,EAST 50 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4446507,Bus,Bike,,, +08/09/2021,2:01,BROOKLYN,11207,40.662563,-73.89146,"(40.662563, -73.89146)",VERMONT STREET,NEW LOTS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446794,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/11/2021,13:25,,,40.766994,-73.904144,"(40.766994, -73.904144)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,Unspecified,,,4446227,Sedan,Dump,Station Wagon/Sport Utility Vehicle,, +08/12/2021,16:58,,,40.696674,-73.957535,"(40.696674, -73.957535)",PARK AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4447158,Sedan,Sedan,,, +08/11/2021,18:47,BROOKLYN,11214,40.606636,-74.00163,"(40.606636, -74.00163)",NEW UTRECHT AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446366,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,11:00,BRONX,10452,40.8439,-73.9117,"(40.8439, -73.9117)",EAST 173 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447019,Box Truck,Sedan,,, +08/13/2021,17:30,BROOKLYN,11208,40.666725,-73.86977,"(40.666725, -73.86977)",LORING AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446823,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,15:26,BRONX,10469,40.86097,-73.84733,"(40.86097, -73.84733)",WARING AVENUE,FISH AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4446148,Sedan,Sedan,Sedan,, +08/13/2021,15:45,,,40.730118,-73.86232,"(40.730118, -73.86232)",QUEENS BOULEVARD,63 DRIVE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446672,Ambulance,Bike,,, +08/13/2021,13:13,,,40.63025,-74.13492,"(40.63025, -74.13492)",,,88 DECKER AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4447292,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,17:10,BROOKLYN,11222,40.722218,-73.94124,"(40.722218, -73.94124)",,,635 MEEKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4446978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:40,,,40.856743,-73.89527,"(40.856743, -73.89527)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446711,Sedan,Sedan,,, +08/11/2021,11:50,,,40.704067,-73.93861,"(40.704067, -73.93861)",MOORE STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446113,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,22:40,,,40.74242,-73.826546,"(40.74242, -73.826546)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446411,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,5:11,QUEENS,11433,40.707603,-73.780235,"(40.707603, -73.780235)",180 STREET,93 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446424,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,18:54,BROOKLYN,11229,40.610653,-73.95355,"(40.610653, -73.95355)",OCEAN AVENUE,KINGS HIGHWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446833,Sedan,E-Bike,,, +08/13/2021,14:00,STATEN ISLAND,10301,40.644756,-74.099724,"(40.644756, -74.099724)",RICHMOND TERRACE,TYSEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447086,Sedan,Sedan,,, +08/13/2021,4:10,MANHATTAN,10001,40.747276,-73.989624,"(40.747276, -73.989624)",WEST 30 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4446918,,,,, +08/11/2021,14:20,STATEN ISLAND,10305,40.598446,-74.06525,"(40.598446, -74.06525)",OCEAN AVENUE,MCCLEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446261,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,22:35,BROOKLYN,11219,40.63803,-73.99258,"(40.63803, -73.99258)",12 AVENUE,46 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446340,Sedan,,,, +08/11/2021,12:24,BRONX,10453,,,,WEST TREMONT AVENUE,HARRISON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446177,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,16:07,BROOKLYN,11229,40.599903,-73.95045,"(40.599903, -73.95045)",,,2171 EAST 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,8:50,,,,,,BOSTON ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4446651,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,17:30,QUEENS,11103,40.760185,-73.9147,"(40.760185, -73.9147)",31 AVENUE,43 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446953,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,21:00,,,40.846863,-73.90142,"(40.846863, -73.90142)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446712,Sedan,,,, +08/12/2021,8:30,,,40.622433,-74.15001,"(40.622433, -74.15001)",VEDDER AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446206,Sedan,Dump,,, +08/12/2021,10:15,,,40.858376,-73.89637,"(40.858376, -73.89637)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4446588,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/13/2021,16:15,,,40.614597,-74.102104,"(40.614597, -74.102104)",CLOVE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447085,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,0:28,,,40.68723,-73.941795,"(40.68723, -73.941795)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4447223,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/30/2021,15:30,BRONX,10451,,,,east 149 street,anthony j griffin place,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Other Vehicular,,,,4446848,Motorscooter,Sedan,,, +08/12/2021,11:30,QUEENS,11106,40.75546,-73.92736,"(40.75546, -73.92736)",36 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446972,Sedan,,,, +08/11/2021,12:35,,,40.71406,-73.95292,"(40.71406, -73.95292)",METROPOLITAN AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446455,Box Truck,Sedan,,, +08/13/2021,19:19,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447362,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,18:00,,,,,,JACKIE ROBINSON PKWY,,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,Unspecified,,,4447112,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/06/2021,16:48,,,40.70179,-73.786476,"(40.70179, -73.786476)",105 AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446644,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/13/2021,9:40,,,40.76285,-73.967735,"(40.76285, -73.967735)",EAST 60 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4447385,Sedan,Box Truck,,, +08/12/2021,0:13,,,40.66367,-73.91213,"(40.66367, -73.91213)",BOYLAND STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4446384,Sedan,,,, +08/10/2021,12:15,BROOKLYN,11208,40.677334,-73.86763,"(40.677334, -73.86763)",GLENMORE AVENUE,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4446810,,,,, +08/12/2021,7:17,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446583,Sedan,Sedan,,, +08/12/2021,1:45,QUEENS,11413,40.67243,-73.75637,"(40.67243, -73.75637)",SPRINGFIELD BOULEVARD,140 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446487,Sedan,,,, +08/12/2021,8:45,BRONX,10460,40.83797,-73.87054,"(40.83797, -73.87054)",,,1731 MANSION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446213,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,21:44,BROOKLYN,11207,40.664288,-73.89196,"(40.664288, -73.89196)",,,612 VERMONT STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446760,Sedan,Bike,,, +08/12/2021,16:59,QUEENS,11412,40.69733,-73.76202,"(40.69733, -73.76202)",FARMERS BOULEVARD,114 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446480,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,17:30,,,40.74347,-74.00724,"(40.74347, -74.00724)",10 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446395,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,2:05,QUEENS,11377,40.74486,-73.894196,"(40.74486, -73.894196)",41 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4445819,Sedan,Sedan,,, +08/12/2021,17:00,,,,,,FOREST PARK DRIVE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446442,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,11:40,QUEENS,11413,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,181 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,Unspecified,,,4447303,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,7:15,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,,,,4446694,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/23/2021,16:00,,,,,,WEST 181 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4446627,Sedan,,,, +08/12/2021,14:00,MANHATTAN,10032,40.843502,-73.93799,"(40.843502, -73.93799)",SAINT NICHOLAS AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446620,Sedan,Ambulance,,, +08/12/2021,10:06,QUEENS,11355,40.756355,-73.82578,"(40.756355, -73.82578)",MAPLE AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446413,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,16:02,BROOKLYN,11215,40.66533,-73.9895,"(40.66533, -73.9895)",,,563 5 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446135,Station Wagon/Sport Utility Vehicle,Bike,,, +08/05/2021,11:40,QUEENS,11429,40.712925,-73.741295,"(40.712925, -73.741295)",103 AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446876,Station Wagon/Sport Utility Vehicle,Bus,,, +08/11/2021,15:00,BRONX,10452,,,,GRANT HIGHWAY,SHAKESPEARE AVENUE,,1,0,0,0,0,0,1,0,Oversized Vehicle,Turning Improperly,,,,4446284,Bus,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,12:35,QUEENS,11378,40.717762,-73.91806,"(40.717762, -73.91806)",GRAND AVENUE,PAGE PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446039,Box Truck,Sedan,,, +08/13/2021,20:04,,,40.679203,-73.9553,"(40.679203, -73.9553)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4446885,Sedan,Flat Bed,,, +08/13/2021,14:40,QUEENS,11104,40.74369,-73.9232,"(40.74369, -73.9232)",,,41-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,7:35,BROOKLYN,11218,40.635586,-73.9778,"(40.635586, -73.9778)",,,109 DITMAS AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4447014,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,14:10,QUEENS,11422,40.66685,-73.73672,"(40.66685, -73.73672)",FRANCIS LEWIS BOULEVARD,241 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446679,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,16:29,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4446939,Station Wagon/Sport Utility Vehicle,2DCP,,, +08/06/2021,14:00,BRONX,10468,40.85968,-73.90427,"(40.85968, -73.90427)",,,2324 DAVIDSON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446615,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,16:41,,,40.790314,-73.94769,"(40.790314, -73.94769)",LEXINGTON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446788,Sedan,,,, +08/12/2021,1:25,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",LORING PLACE NORTH,WEST FORDHAM ROAD,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4446275,Sedan,Sedan,,, +08/09/2021,23:28,MANHATTAN,10025,40.800224,-73.96119,"(40.800224, -73.96119)",,,64 WEST 108 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446722,Sedan,Sedan,,, +08/12/2021,6:32,,,40.64503,-73.91998,"(40.64503, -73.91998)",CLARENDON ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447150,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,16:30,QUEENS,11106,40.763416,-73.92844,"(40.763416, -73.92844)",CRESCENT STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446945,Sedan,,,, +08/13/2021,0:01,,,40.638733,-74.01337,"(40.638733, -74.01337)",59 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446910,Pick-up Truck,,,, +07/18/2021,0:00,QUEENS,11372,40.75663,-73.875145,"(40.75663, -73.875145)",NORTHERN BOULEVARD,93 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446741,Bike,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,8:00,BRONX,10470,40.897305,-73.86343,"(40.897305, -73.86343)",PETERS PLACE,EAST 234 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446563,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,16:00,QUEENS,11354,,,,32 AVENUE,FARRINGTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446428,Sedan,,,, +08/13/2021,17:38,QUEENS,11354,,,,ROOSEVELT AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446869,Sedan,Sedan,,, +08/11/2021,4:56,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446361,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/12/2021,12:10,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446676,Sedan,Sedan,,, +08/11/2021,14:45,BRONX,10458,40.856434,-73.886826,"(40.856434, -73.886826)",ARTHUR AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Aggressive Driving/Road Rage,,,,4446184,AMBU,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,17:00,,,,,,EAST 222 STREET,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447184,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,8:41,BROOKLYN,11230,40.622894,-73.96002,"(40.622894, -73.96002)",AVENUE K,EAST 16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447048,Box Truck,,,, +07/31/2021,18:55,BROOKLYN,11207,40.671318,-73.890884,"(40.671318, -73.890884)",MILLER AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446819,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,16:44,BROOKLYN,11201,40.687145,-73.99721,"(40.687145, -73.99721)",,,179 BALTIC STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446705,Sedan,,,, +08/12/2021,15:00,,,,,,MIDLAND AVENUE,MIDLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446531,F550,Sedan,,, +08/12/2021,1:20,QUEENS,11368,40.75561,-73.86714,"(40.75561, -73.86714)",101 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,16:28,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446544,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,9:00,BROOKLYN,11230,40.63121,-73.964424,"(40.63121, -73.964424)",,,731 ARGYLE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4447058,Sedan,,,, +08/11/2021,22:30,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4446749,Sedan,Taxi,Sedan,, +08/13/2021,1:00,QUEENS,11433,40.695858,-73.80054,"(40.695858, -73.80054)",153 STREET,SOUTH ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4446647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,17:40,BRONX,10467,40.88255,-73.862206,"(40.88255, -73.862206)",,,728 EAST 218 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447208,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,10:20,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447232,Box Truck,Sedan,,, +08/12/2021,6:10,MANHATTAN,10034,40.869556,-73.91521,"(40.869556, -73.91521)",10 AVENUE,WEST 215 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4446329,Sedan,,,, +08/11/2021,18:15,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,19:15,QUEENS,11372,40.747044,-73.889435,"(40.747044, -73.889435)",,,76-02 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4447098,Bike,Sedan,,, +08/11/2021,15:15,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4446080,Tanker,Sedan,,, +08/13/2021,23:20,,,,,,,,MAJOR DEEGAN EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446716,Sedan,Sedan,,, +08/13/2021,21:12,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4446997,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,11:30,BROOKLYN,11207,40.6531,-73.88656,"(40.6531, -73.88656)",,,1130 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446754,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,6:20,,,,,,GRAND CENTRAL PARKWAY,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446778,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,23:38,BRONX,10461,40.842636,-73.84561,"(40.842636, -73.84561)",,,2703 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447312,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,16:42,QUEENS,11101,40.753277,-73.914764,"(40.753277, -73.914764)",,,34-31 48 STREET,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4446967,Sedan,E-Bike,,, +08/11/2021,17:53,,,40.783928,-73.77645,"(40.783928, -73.77645)",18 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4446107,Sedan,,,, +08/13/2021,14:00,,,40.680695,-74.002975,"(40.680695, -74.002975)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446854,Sedan,,,, +08/12/2021,7:00,,,40.645172,-74.02101,"(40.645172, -74.02101)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446475,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,9:32,BROOKLYN,11232,40.645775,-73.99782,"(40.645775, -73.99782)",,,821 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445990,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,16:10,QUEENS,11377,40.756996,-73.90784,"(40.756996, -73.90784)",51 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447370,Sedan,,,, +08/12/2021,20:50,BROOKLYN,11222,40.72303,-73.944824,"(40.72303, -73.944824)",,,160 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4446985,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,14:16,BROOKLYN,11206,,,,CENTRAL AVENUE,GEORGE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446462,Station Wagon/Sport Utility Vehicle,MOPED,,, +08/11/2021,17:02,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446250,Sedan,Sedan,,, +08/13/2021,20:46,QUEENS,11102,40.77396,-73.91777,"(40.77396, -73.91777)",27 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446987,Sedan,Moped,,, +08/12/2021,11:49,QUEENS,11368,,,,NORTHERN BOULEVARD,SEAVER WAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447401,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,17:19,,,40.73566,-73.91521,"(40.73566, -73.91521)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4446603,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/11/2021,20:25,QUEENS,11413,40.682987,-73.75459,"(40.682987, -73.75459)",LUCAS STREET,WILLIAMSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4446156,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/11/2021,18:50,BRONX,10452,40.843933,-73.913734,"(40.843933, -73.913734)",,,49 EAST MOUNT EDEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,6:45,,,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447035,Station Wagon/Sport Utility Vehicle,Bike,,, +08/12/2021,11:28,QUEENS,11421,40.68651,-73.85994,"(40.68651, -73.85994)",,,91-34 81 STREET,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4446598,Sedan,Sedan,,, +08/12/2021,8:00,QUEENS,11379,40.71217,-73.885,"(40.71217, -73.885)",,,68-01 METROPOLITAN AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4446437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/12/2021,16:05,QUEENS,11374,40.73195,-73.863434,"(40.73195, -73.863434)",JUNCTION BOULEVARD,62 DRIVE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4446491,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,0:15,,,40.669403,-73.94221,"(40.669403, -73.94221)",KINGSTON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446083,Sedan,,,, +08/11/2021,16:40,QUEENS,11101,40.74306,-73.94277,"(40.74306, -73.94277)",DAVIS COURT,PEARSON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446114,Sedan,,,, +08/11/2021,17:29,BRONX,10474,40.815308,-73.88766,"(40.815308, -73.88766)",,,741 COSTER STREET,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,,4446341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/12/2021,17:48,,,,,,MERMAID AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4446936,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,7:45,MANHATTAN,10009,40.724247,-73.9755,"(40.724247, -73.9755)",,,739 EAST 9 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446302,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,0:05,QUEENS,11379,40.718906,-73.88532,"(40.718906, -73.88532)",71 STREET,LUTHERAN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4447144,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,13:30,QUEENS,11435,,,,,,9744 SUTPHIN BLVD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4446311,Sedan,,,, +08/13/2021,2:13,BROOKLYN,11229,40.599174,-73.95335,"(40.599174, -73.95335)",,,1811 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446520,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,20:17,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",ATKINS AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446630,Box Truck,Sedan,,, +08/11/2021,7:00,,,40.706966,-73.75283,"(40.706966, -73.75283)",HOLLIS AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4445983,Sedan,,,, +08/08/2021,13:51,BROOKLYN,11207,40.67273,-73.8961,"(40.67273, -73.8961)",,,202 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446783,Sedan,,,, +08/12/2021,20:22,BRONX,10467,,,,DUNCOMB AVENUE,BRONX BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446559,Sedan,Sedan,,, +08/13/2021,20:52,MANHATTAN,10003,40.725582,-73.989876,"(40.725582, -73.989876)",EAST 3 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4447007,Box Truck,Taxi,,, +08/12/2021,10:00,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446691,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/28/2021,17:00,BROOKLYN,11238,40.672222,-73.96497,"(40.672222, -73.96497)",,,115 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447236,Sedan,Motorscooter,,, +08/13/2021,13:45,QUEENS,11418,40.695698,-73.845024,"(40.695698, -73.845024)",,,102-25 86 ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446652,Sedan,Sedan,,, +08/11/2021,23:00,,,40.60235,-74.189644,"(40.60235, -74.189644)",CHELSEA ROAD,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4446203,Sedan,,,, +08/12/2021,18:20,QUEENS,11368,,,,108 STREET,41 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446527,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/04/2021,20:32,BRONX,10468,40.871002,-73.893845,"(40.871002, -73.893845)",MORRIS AVENUE,JEROME AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446659,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,21:00,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446773,Sedan,Sedan,,, +08/13/2021,16:25,,,40.856625,-73.93936,"(40.856625, -73.93936)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,20:28,BROOKLYN,11208,40.66349,-73.87921,"(40.66349, -73.87921)",ELTON STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446548,Sedan,Sedan,,, +08/13/2021,2:48,QUEENS,11419,40.686905,-73.82146,"(40.686905, -73.82146)",,,104-15 122 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4446861,Sedan,Sedan,Sedan,, +08/13/2021,16:50,QUEENS,11370,40.759525,-73.883255,"(40.759525, -73.883255)",85 STREET,31 AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4446737,Sedan,,,, +08/11/2021,13:00,BROOKLYN,11204,40.61546,-73.99627,"(40.61546, -73.99627)",,,1733 73 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446030,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/04/2021,14:57,BROOKLYN,11230,40.632626,-73.97207,"(40.632626, -73.97207)",,,645 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,20:43,,,40.849144,-73.93548,"(40.849144, -73.93548)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446525,Box Truck,Sedan,,, +08/13/2021,11:00,,,40.770054,-73.914406,"(40.770054, -73.914406)",ASTORIA BOULEVARD,35 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446981,Sedan,Sedan,,, +08/08/2021,22:20,,,40.665718,-73.95687,"(40.665718, -73.95687)",MONTGOMERY STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446882,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,0:00,BROOKLYN,11207,40.66841,-73.90167,"(40.66841, -73.90167)",SUTTER AVENUE,VAN SIDERIN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4446815,,,,, +08/12/2021,8:41,,,40.82391,-73.94244,"(40.82391, -73.94244)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446255,Sedan,,,, +08/09/2021,4:27,BROOKLYN,11207,40.656693,-73.89464,"(40.656693, -73.89464)",LOUISIANA AVENUE,DE WITT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,9:45,,,,,,JAMAICA AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447346,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,1:02,BRONX,10462,40.836845,-73.86338,"(40.836845, -73.86338)",,,1458 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4445935,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/11/2021,4:46,BROOKLYN,11226,40.65495,-73.95001,"(40.65495, -73.95001)",,,1307 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447020,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/11/2021,18:30,BROOKLYN,11225,40.66848,-73.95343,"(40.66848, -73.95343)",,,220 ROGERS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446122,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,7:15,MANHATTAN,10022,0,0,"(0.0, 0.0)",3 AVENUE,EAST 54 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446300,Sedan,Bike,,, +08/13/2021,8:48,BROOKLYN,11218,40.654747,-73.97805,"(40.654747, -73.97805)",18 STREET,TERRACE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446575,Bus,Sedan,,, +08/12/2021,22:18,,,40.649128,-73.976616,"(40.649128, -73.976616)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4446495,Sedan,Sedan,Sedan,, +08/08/2021,1:20,BROOKLYN,11208,40.67994,-73.88468,"(40.67994, -73.88468)",FULTON STREET,ELTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,4:35,BROOKLYN,11207,40.655983,-73.897575,"(40.655983, -73.897575)",DE WITT AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4446768,Sedan,Sedan,Sedan,, +08/09/2021,14:25,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",LINDEN BOULEVARD,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446795,Sedan,,,, +08/11/2021,13:35,BROOKLYN,11207,40.65993,-73.891655,"(40.65993, -73.891655)",PENNSYLVANIA AVENUE,HEGEMAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4446814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,20:50,,,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446240,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,0:37,BROOKLYN,11236,40.639057,-73.919334,"(40.639057, -73.919334)",,,1563 RALPH AVENUE,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4485496,Sedan,Sedan,,, +08/13/2021,18:41,BROOKLYN,11234,40.615257,-73.91851,"(40.615257, -73.91851)",,,5805 AVENUE T,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,14:30,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446072,Taxi,Pick-up Truck,,, +08/13/2021,16:12,MANHATTAN,10028,,,,,,214 EAST 84 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447375,FDNY,Sedan,Station Wagon/Sport Utility Vehicle,, +08/11/2021,13:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447332,Sedan,Sedan,,, +08/13/2021,18:40,BROOKLYN,11207,40.664967,-73.882454,"(40.664967, -73.882454)",,,695 ASHFORD STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4447275,Sedan,Sedan,,, +08/12/2021,7:15,QUEENS,11423,40.71604,-73.76119,"(40.71604, -73.76119)",,,90-20 199 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446423,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,23:01,,,40.79856,-73.96336,"(40.79856, -73.96336)",WEST 105 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446654,Sedan,Sedan,Sedan,, +08/11/2021,11:40,,,40.83829,-73.930016,"(40.83829, -73.930016)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446400,Box Truck,Sedan,,, +08/13/2021,15:37,BROOKLYN,11223,40.59616,-73.96104,"(40.59616, -73.96104)",CONEY ISLAND AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446835,Box Truck,Sedan,,, +08/12/2021,21:30,QUEENS,11423,40.7174,-73.762215,"(40.7174, -73.762215)",,,89-16 199 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446639,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,20:00,BROOKLYN,11229,40.59654,-73.93538,"(40.59654, -73.93538)",AVENUE W,BRAGG STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,,,4446166,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/11/2021,15:40,QUEENS,11421,40.686237,-73.86423,"(40.686237, -73.86423)",,,76-09 91 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446552,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,5:23,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446753,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:35,BROOKLYN,11236,40.641018,-73.894936,"(40.641018, -73.894936)",,,1115 EAST 99 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446732,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,22:48,,,40.70395,-73.745316,"(40.70395, -73.745316)",113 AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4446144,Sedan,Sedan,,, +08/13/2021,17:30,,,40.7462,-73.73563,"(40.7462, -73.73563)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446671,Sedan,Sedan,,, +08/11/2021,17:40,BRONX,10472,,,,,,1115 NOBLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446349,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:54,BRONX,10457,40.837643,-73.90334,"(40.837643, -73.90334)",EAST 171 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4446932,Sedan,Sedan,,, +08/11/2021,20:56,,,40.73875,-74.00387,"(40.73875, -74.00387)",HORATIO STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446962,Sedan,,,, +08/11/2021,20:53,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",EAST BURNSIDE AVENUE,JEROME AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446715,E-Scooter,,,, +08/09/2021,19:20,BROOKLYN,11208,40.67386,-73.88259,"(40.67386, -73.88259)",PITKIN AVENUE,LINWOOD STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446779,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/13/2021,16:11,BROOKLYN,11234,40.626457,-73.918,"(40.626457, -73.918)",RALPH AVENUE,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446684,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,13:20,BROOKLYN,11213,40.664547,-73.935486,"(40.664547, -73.935486)",,,888 MONTGOMERY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447070,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/12/2021,12:46,BROOKLYN,11221,40.692383,-73.93614,"(40.692383, -73.93614)",,,469 KOSCIUSZKO STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4446372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,0:37,,,40.693874,-73.91777,"(40.693874, -73.91777)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4446172,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/28/2021,16:00,BRONX,10458,40.85236,-73.88443,"(40.85236, -73.88443)",,,2311 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446557,Pick-up Truck,,,, +08/13/2021,15:45,,,40.67601,-73.88567,"(40.67601, -73.88567)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,8:50,QUEENS,11368,40.745506,-73.852585,"(40.745506, -73.852585)",111 STREET,50 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447093,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,13:20,MANHATTAN,10029,40.78919,-73.93902,"(40.78919, -73.93902)",,,421 EAST 106 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446787,Bus,,,, +08/12/2021,19:50,QUEENS,11102,40.77566,-73.92158,"(40.77566, -73.92158)",,,21-11 24 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,17:00,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,Traffic Control Disregarded,Other Vehicular,,4447185,Sedan,Sedan,Sedan,Sedan, +08/12/2021,15:15,QUEENS,11691,40.610046,-73.7536,"(40.610046, -73.7536)",,,14-79 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446706,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,21:10,BRONX,10451,40.81655,-73.91955,"(40.81655, -73.91955)",EAST 149 STREET,COURTLANDT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4446502,Sedan,Bike,,, +08/10/2021,20:00,BROOKLYN,11230,40.61643,-73.958786,"(40.61643, -73.958786)",,,1373 EAST 16 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447047,Sedan,,,, +08/11/2021,9:10,BROOKLYN,11212,40.673164,-73.90485,"(40.673164, -73.90485)",POWELL STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4446063,Sedan,Tractor Truck Diesel,,, +08/12/2021,8:50,,,40.68683,-73.79996,"(40.68683, -73.79996)",145 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446485,Sedan,,,, +08/11/2021,10:09,BRONX,10462,40.834984,-73.86306,"(40.834984, -73.86306)",,,1360 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446020,Sedan,,,, +08/12/2021,17:11,MANHATTAN,10035,40.801235,-73.941826,"(40.801235, -73.941826)",PARK AVENUE,EAST 119 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446432,Sedan,Sedan,,, +08/12/2021,8:00,BRONX,10468,40.865997,-73.89981,"(40.865997, -73.89981)",DAVIDSON AVENUE,WEST 192 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4446265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,13:20,,,40.752316,-73.8324,"(40.752316, -73.8324)",COLLEGE POINT BOULEVARD,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4446874,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan,, +08/06/2021,11:25,BRONX,10469,40.87303,-73.85656,"(40.87303, -73.85656)",LURTING AVENUE,DUNCAN STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unsafe Speed,Unspecified,Unspecified,Unspecified,4446540,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +08/13/2021,3:05,QUEENS,11372,40.7568,-73.873665,"(40.7568, -73.873665)",NORTHERN BOULEVARD,JUNCTION BOULEVARD,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446579,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/12/2021,10:12,BRONX,10459,,,,BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446316,Tow Truck / Wrecker,Sedan,,, +08/11/2021,12:00,BROOKLYN,11234,40.63512,-73.929634,"(40.63512, -73.929634)",EAST 49 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446096,Sedan,,,, +08/11/2021,16:32,BROOKLYN,11212,40.65431,-73.90975,"(40.65431, -73.90975)",LINDEN BOULEVARD,BOYLAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,23:27,,,40.71585,-73.81183,"(40.71585, -73.81183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446590,Sedan,,,, +08/12/2021,9:45,MANHATTAN,10031,40.829647,-73.94439,"(40.829647, -73.94439)",AMSTERDAM AVENUE,WEST 152 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446293,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,16:29,,,40.69373,-73.963135,"(40.69373, -73.963135)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4446222,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/12/2021,19:15,BROOKLYN,11226,40.645863,-73.95097,"(40.645863, -73.95097)",,,154 EAST 28 STREET,1,0,0,0,0,0,1,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4447025,Sedan,Motorcycle,,, +08/13/2021,10:37,,,40.611305,-74.14121,"(40.611305, -74.14121)",WOOLLEY AVENUE,VICTORY BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4446607,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/14/2021,15:00,QUEENS,11378,40.72576,-73.90421,"(40.72576, -73.90421)",61 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447131,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,15:13,QUEENS,11418,40.705666,-73.818474,"(40.705666, -73.818474)",VANWYCK EXPRESSWAY,87 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447114,Ambulance,Sedan,,, +08/11/2021,0:00,,,40.60927,-74.1513,"(40.60927, -74.1513)",SOUTH GANNON AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446002,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,5:18,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",HOWARD AVENUE,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4445908,Sedan,Sedan,,, +08/11/2021,19:10,QUEENS,11104,40.74925,-73.916534,"(40.74925, -73.916534)",39 AVENUE,47 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446128,Sedan,Sedan,,, +08/07/2021,17:00,BROOKLYN,11208,40.679737,-73.878395,"(40.679737, -73.878395)",ATLANTIC AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446765,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,16:19,MANHATTAN,10000,,,,,,20 TRANSVERSE ROAD NUMBER FOUR,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446470,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/11/2021,14:35,,,40.856987,-73.90897,"(40.856987, -73.90897)",WEST 181 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446192,Sedan,Ambulance,,, +08/11/2021,19:39,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,17:55,BRONX,10466,,,,,,1700 NEREID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446567,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,13:40,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446406,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/11/2021,21:25,QUEENS,11354,40.76834,-73.84576,"(40.76834, -73.84576)",,,31-85 123 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4446418,Sedan,,,, +08/12/2021,17:00,MANHATTAN,10037,40.81914,-73.93719,"(40.81914, -73.93719)",WEST 143 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446622,Sedan,Sedan,,, +08/13/2021,15:43,,,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446699,Taxi,,,, +08/11/2021,21:40,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Lost Consciousness,,,,4446354,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,14:15,MANHATTAN,10018,40.75591,-73.99448,"(40.75591, -73.99448)",WEST 38 STREET,9 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446916,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,15:47,,,40.58406,-73.96901,"(40.58406, -73.96901)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446667,Sedan,Sedan,,, +08/11/2021,19:05,BROOKLYN,11211,40.70863,-73.95401,"(40.70863, -73.95401)",,,350 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447079,Sedan,Motorbike,,, +08/12/2021,13:34,QUEENS,11427,40.726593,-73.752396,"(40.726593, -73.752396)",WHITEHALL TERRACE,214 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446448,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,18:10,,,,,,Broadway,BROADWAY,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4446572,Bike,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,17:00,BROOKLYN,11216,40.67994,-73.941216,"(40.67994, -73.941216)",FULTON STREET,KINGSTON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4447228,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/08/2021,18:00,QUEENS,11102,40.77347,-73.91708,"(40.77347, -73.91708)",24 AVENUE,28 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446950,Taxi,,,, +08/12/2021,14:41,STATEN ISLAND,10304,,,,RICHMOND ROAD,GARRETSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446535,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,16:45,QUEENS,11428,40.720303,-73.732346,"(40.720303, -73.732346)",JAMAICA AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,7:00,BROOKLYN,11207,40.668682,-73.89987,"(40.668682, -73.89987)",SUTTER AVENUE,HINSDALE STREET,,2,0,0,0,0,0,2,0,Traffic Control Device Improper/Non-Working,Unspecified,Unspecified,,,4446729,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/11/2021,8:15,,,40.66169,-73.96143,"(40.66169, -73.96143)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4446137,Sedan,Box Truck,,, +08/12/2021,22:03,BROOKLYN,11230,40.610428,-73.97219,"(40.610428, -73.97219)",,,1605 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447006,Sedan,Bus,,, +08/11/2021,13:00,,,,,,HORACE HARDING EXPRESSWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446367,Sedan,Sedan,,, +08/11/2021,10:22,BROOKLYN,11206,40.695377,-73.94921,"(40.695377, -73.94921)",MYRTLE AVENUE,MARCY AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4447160,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,17:04,BROOKLYN,11221,40.6981,-73.92517,"(40.6981, -73.92517)",CENTRAL AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446467,Sedan,Sedan,,, +08/11/2021,22:20,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446251,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,12:13,,,40.67151,-73.76455,"(40.67151, -73.76455)",FARMERS BOULEVARD,140 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4446481,Sedan,Sedan,,, +08/13/2021,12:00,BROOKLYN,11239,40.65289,-73.866745,"(40.65289, -73.866745)",ERSKINE STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446822,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,8:15,MANHATTAN,10037,40.817993,-73.93804,"(40.817993, -73.93804)",,,621 LENOX AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4486496,Sedan,,,, +08/12/2021,17:05,BROOKLYN,11230,40.629597,-73.97578,"(40.629597, -73.97578)",,,84 LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,8:50,BROOKLYN,11208,40.667953,-73.87007,"(40.667953, -73.87007)",EUCLID AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446636,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/12/2021,18:10,,,40.638344,-74.13555,"(40.638344, -74.13555)",FABER STREET,GROVE AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4446496,Sedan,Sedan,,, +08/13/2021,11:30,,,,,,madison ave,east 100 street,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/23/2021,16:40,BROOKLYN,11216,40.681446,-73.94644,"(40.681446, -73.94644)",MARCY AVENUE,MACON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447229,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,13:00,,,40.72861,-73.88721,"(40.72861, -73.88721)",57 AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4446044,Sedan,Sedan,Box Truck,Sedan, +08/11/2021,10:30,BROOKLYN,11204,,,,47 STREET,18 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446285,Sedan,E-Scooter,,, +08/12/2021,13:00,,,40.677574,-73.95548,"(40.677574, -73.95548)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4447231,Sedan,,,, +08/12/2021,15:30,BROOKLYN,11211,,,,,,211 UNION AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4446436,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,8:30,STATEN ISLAND,10314,40.608955,-74.11327,"(40.608955, -74.11327)",,,289 LIGHTNER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446244,Dump,Pick-up Truck,,, +08/11/2021,14:14,MANHATTAN,10007,40.715984,-74.010254,"(40.715984, -74.010254)",,,157 CHAMBERS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,7:56,QUEENS,11429,40.71082,-73.73179,"(40.71082, -73.73179)",223 STREET,104 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446089,Sedan,Sedan,,, +08/12/2021,20:58,BROOKLYN,11221,40.688732,-73.928795,"(40.688732, -73.928795)",,,925 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447195,Pick-up Truck,Pick-up Truck,,, +08/13/2021,7:20,BRONX,10452,40.83923,-73.92579,"(40.83923, -73.92579)",OGDEN AVENUE,MERRIAM AVENUE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4446594,Sedan,Sedan,,, +08/12/2021,0:00,,,40.820095,-73.81086,"(40.820095, -73.81086)",THROGS NECK EXPRESSWAY,PENNYFIELD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,9:35,BROOKLYN,11237,,,,WYCKOFF AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446322,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,20:00,MANHATTAN,10018,40.7537,-73.99309,"(40.7537, -73.99309)",,,306 WEST 36 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446312,Sedan,Bike,,, +08/11/2021,5:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4445991,Pick-up Truck,,,, +08/13/2021,7:30,BRONX,10468,40.87733,-73.88532,"(40.87733, -73.88532)",VANCORTLANDT AVENUE EAST,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446611,Sedan,,,, +08/07/2021,15:02,QUEENS,11385,40.71289,-73.90598,"(40.71289, -73.90598)",,,58-02 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447139,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,22:30,QUEENS,11412,40.697796,-73.7487,"(40.697796, -73.7487)",205 STREET,115 DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447359,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,17:00,QUEENS,11413,,,,,,230-59 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4446449,Sedan,,,, +07/30/2021,12:00,,,40.84373,-73.90858,"(40.84373, -73.90858)",EASTBURN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447354,Sedan,Sedan,,, +08/13/2021,5:50,MANHATTAN,10032,40.839767,-73.94073,"(40.839767, -73.94073)",,,3959 BROADWAY,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4446562,E-Bike,Sedan,,, +08/10/2021,0:00,BROOKLYN,11207,40.65802,-73.88248,"(40.65802, -73.88248)",,,300 WORTMAN AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4446803,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,14:19,,,40.844975,-73.91877,"(40.844975, -73.91877)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447031,Sedan,Sedan,,, +08/07/2021,19:10,BROOKLYN,11208,40.684956,-73.86761,"(40.684956, -73.86761)",FULTON STREET,GRANT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446761,Sedan,Sedan,,, +08/12/2021,1:29,,,40.673786,-73.76381,"(40.673786, -73.76381)",FARMERS BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446486,Sedan,,,, +08/12/2021,12:15,MANHATTAN,10025,40.79799,-73.96199,"(40.79799, -73.96199)",MANHATTAN AVENUE,WEST 105 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446362,Pick-up Truck,,,, +08/11/2021,18:15,,,40.638218,-74.14379,"(40.638218, -74.14379)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446515,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,13:28,BRONX,10453,40.852703,-73.921844,"(40.852703, -73.921844)",HARLEM RIVER PARK BRIDGE,RICHMAN PLAZA,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446176,AMBULANCE,Sedan,,, +08/12/2021,9:00,QUEENS,11101,40.74898,-73.93969,"(40.74898, -73.93969)",HUNTER STREET,42 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446410,Sedan,,,, +08/11/2021,0:07,QUEENS,11435,40.697857,-73.80417,"(40.697857, -73.80417)",148 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446414,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,0:50,BROOKLYN,11230,40.615932,-73.95673,"(40.615932, -73.95673)",AVENUE N,EAST 18 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4445832,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/12/2021,14:05,BROOKLYN,11218,,,,PARK CIRCLE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446474,Sedan,,,, +08/11/2021,16:00,,,40.833065,-73.85974,"(40.833065, -73.85974)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4446202,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/14/2021,19:55,MANHATTAN,10034,40.872314,-73.91274,"(40.872314, -73.91274)",BROADWAY,WEST 220 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447161,E-Bike,,,, +08/12/2021,8:12,,,40.8283,-73.88296,"(40.8283, -73.88296)",BRONX RIVER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446214,Sedan,Sedan,,, +08/10/2021,12:00,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Other Vehicular,Unspecified,,,4446530,Sedan,Taxi,Sedan,, +10/15/2021,16:25,STATEN ISLAND,10310,40.6289252,-74.124365,"(40.6289252, -74.124365)",,,771 DELAFIELD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467888,Sedan,Sedan,,, +08/12/2021,17:43,MANHATTAN,10038,40.70623,-74.00317,"(40.70623, -74.00317)",SOUTH STREET,FULTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4446444,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,15:55,BRONX,10466,40.896526,-73.855644,"(40.896526, -73.855644)",,,4332 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4446547,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,15:25,BROOKLYN,11226,40.64491,-73.95256,"(40.64491, -73.95256)",BEVERLEY ROAD,VERONICA PLACE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4446134,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,9:23,BROOKLYN,11221,40.685463,-73.93257,"(40.685463, -73.93257)",,,280 STUYVESANT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4447171,Sedan,Sedan,Sedan,Sedan, +08/12/2021,8:00,BROOKLYN,11220,40.635494,-74.00957,"(40.635494, -74.00957)",8 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4446331,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,9:00,QUEENS,11004,40.73973,-73.70625,"(40.73973, -73.70625)",83 AVENUE,263 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446626,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,13:00,QUEENS,11377,40.737164,-73.905624,"(40.737164, -73.905624)",50 AVENUE,59 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446663,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,9:30,STATEN ISLAND,10304,40.6184,-74.08574,"(40.6184, -74.08574)",,,10 WAVERLY PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447084,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,10:44,BROOKLYN,11232,40.658546,-73.99634,"(40.658546, -73.99634)",5 AVENUE,26 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4446912,Sedan,Box Truck,Box Truck,, +08/12/2021,17:00,,,40.71734,-73.79736,"(40.71734, -73.79736)",168 STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446589,Sedan,Sedan,,, +08/13/2021,15:40,,,40.68187,-73.955826,"(40.68187, -73.955826)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4447224,Sedan,Sedan,,, +08/13/2021,14:30,BRONX,10455,40.818718,-73.915855,"(40.818718, -73.915855)",,,429 EAST 153 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Brakes Defective,,,,4446847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:00,,,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446723,Sedan,,,, +08/13/2021,19:21,BRONX,10473,,,,,,313 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446973,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,10:00,BROOKLYN,11219,40.638134,-73.98672,"(40.638134, -73.98672)",,,1364 42 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447012,Sedan,E-Bike,,, +08/11/2021,23:28,MANHATTAN,10036,40.7603,-73.99499,"(40.7603, -73.99499)",WEST 43 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4446153,Taxi,Sedan,,, +08/13/2021,13:30,MANHATTAN,10032,,,,WEST 155 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447153,Sedan,,,, +08/12/2021,17:04,,,40.695282,-73.92576,"(40.695282, -73.92576)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Following Too Closely,Unspecified,,,4446463,Box Truck,Sedan,Sedan,, +08/11/2021,9:00,BROOKLYN,11231,40.68372,-74.00334,"(40.68372, -74.00334)",PRESIDENT STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447399,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,9:30,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4446604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,10:30,QUEENS,11355,40.75706,-73.83014,"(40.75706, -73.83014)",,,133-57 41 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446584,FORD,,,, +08/13/2021,19:30,BROOKLYN,11207,40.67776,-73.89349,"(40.67776, -73.89349)",FULTON STREET,BRADFORD STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446826,Bike,,,, +08/13/2021,17:25,,,40.693172,-73.94878,"(40.693172, -73.94878)",HART STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447235,Sedan,Box Truck,,, +08/12/2021,12:37,BROOKLYN,11203,40.6491,-73.94649,"(40.6491, -73.94649)",NEW YORK AVENUE,SNYDER AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4447022,Sedan,,,, +08/13/2021,1:22,BROOKLYN,11203,40.651005,-73.94571,"(40.651005, -73.94571)",CHURCH AVENUE,EAST 34 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447036,Sedan,Bike,,, +08/12/2021,21:20,QUEENS,11377,40.746048,-73.89903,"(40.746048, -73.89903)",65 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4446653,E-Bike,,,, +08/03/2021,22:40,,,40.663303,-73.948006,"(40.663303, -73.948006)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4446521,Taxi,,,, +08/07/2021,17:30,,,40.654686,-73.87772,"(40.654686, -73.87772)",GATEWAY DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,10:50,BRONX,10475,40.885784,-73.828384,"(40.885784, -73.828384)",,,4090 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446616,Station Wagon/Sport Utility Vehicle,PK,,, +08/13/2021,9:30,QUEENS,11109,40.74724,-73.95638,"(40.74724, -73.95638)",,,46-15 CENTER BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4447333,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/09/2021,18:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,22:30,QUEENS,11691,40.602165,-73.75606,"(40.602165, -73.75606)",,,22-22 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446719,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,16:45,QUEENS,11420,40.681202,-73.80852,"(40.681202, -73.80852)",,,114-48 133 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Outside Car Distraction,,,,4446862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:00,MANHATTAN,10006,40.708496,-74.01535,"(40.708496, -74.01535)",RECTOR STREET,WEST STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446648,Sedan,Sedan,,, +08/13/2021,11:26,BROOKLYN,11218,40.640198,-73.96906,"(40.640198, -73.96906)",,,710 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447015,Pick-up Truck,,,, +08/11/2021,17:24,BRONX,10470,40.89845,-73.85431,"(40.89845, -73.85431)",NEREID AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447207,Sedan,TL,,, +08/11/2021,17:25,,,,,,ZEREGA AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,17:00,,,40.74478,-73.93262,"(40.74478, -73.93262)",QUEENS BOULEVARD,32 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446079,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,0:03,,,40.88271,-73.881256,"(40.88271, -73.881256)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4445962,Sedan,Bus,,, +08/12/2021,7:00,MANHATTAN,10024,40.78994,-73.98036,"(40.78994, -73.98036)",RIVERSIDE DRIVE,WEST 86 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446278,Sedan,Moped,,, +08/11/2021,13:40,BROOKLYN,11229,40.594437,-73.957466,"(40.594437, -73.957466)",GRAVESEND NECK ROAD,EAST 13 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4446342,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,23:30,,,40.68742,-73.999725,"(40.68742, -73.999725)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447298,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,14:10,BROOKLYN,11211,40.71232,-73.95951,"(40.71232, -73.95951)",,,212 SOUTH 2 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446115,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,14:10,QUEENS,11355,40.75463,-73.827995,"(40.75463, -73.827995)",,,42-28 MAIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,14:09,MANHATTAN,10017,40.75425,-73.96899,"(40.75425, -73.96899)",EAST 49 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446304,Sedan,Sedan,,, +08/12/2021,15:00,,,,,,CLEARVIEW EXPRESSWAY,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446453,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,21:30,QUEENS,11105,40.777954,-73.9038,"(40.777954, -73.9038)",20 AVENUE,36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446968,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,19:29,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446631,Box Truck,Sedan,,, +08/09/2021,22:42,BROOKLYN,11218,40.642036,-73.98037,"(40.642036, -73.98037)",,,210 DAHILL ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4447369,Sedan,,,, +08/12/2021,12:00,QUEENS,11377,40.735615,-73.899994,"(40.735615, -73.899994)",65 PLACE,51 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4446690,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,21:30,BRONX,10457,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,Unspecified,,,4446558,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/10/2021,21:10,BROOKLYN,11234,40.592167,-73.90815,"(40.592167, -73.90815)",,,6000 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4446808,Sedan,,,, +08/11/2021,7:30,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446147,Sedan,,,, +08/11/2021,16:20,BRONX,10458,40.854206,-73.89084,"(40.854206, -73.89084)",,,4531 3 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4446183,Sedan,,,, +08/12/2021,17:40,MANHATTAN,10027,40.82,-73.95887,"(40.82, -73.95887)",WEST 133 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4446427,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,15:45,MANHATTAN,10036,40.760113,-73.99662,"(40.760113, -73.99662)",,,521 WEST 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446396,Station Wagon/Sport Utility Vehicle,Bus,,, +08/13/2021,2:01,,,40.8133,-73.930405,"(40.8133, -73.930405)",MAJOR DEEGAN EXPRESSWAY,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446505,Sedan,,,, +08/13/2021,17:20,,,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4446675,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,10:21,,,40.86241,-73.9225,"(40.86241, -73.9225)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447165,Tractor Truck Diesel,,,, +08/12/2021,20:30,QUEENS,11373,40.7412,-73.88641,"(40.7412, -73.88641)",,,78-18 45 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446526,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,20:54,QUEENS,11369,40.761265,-73.88168,"(40.761265, -73.88168)",,,30-10 87 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4446196,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/12/2021,16:01,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4446658,Sedan,Sedan,,, +07/31/2021,18:00,BRONX,10466,40.897453,-73.85739,"(40.897453, -73.85739)",,,4343 MATILDA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446543,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,8:35,BROOKLYN,11226,40.655937,-73.95552,"(40.655937, -73.95552)",,,525 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4446138,Van,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,20:05,,,40.685078,-73.75592,"(40.685078, -73.75592)",122 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,,,,4446490,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,10:41,BROOKLYN,11231,40.6795,-73.99729,"(40.6795, -73.99729)",COURT STREET,2 PLACE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4446890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,14:00,QUEENS,11369,40.76413,-73.87651,"(40.76413, -73.87651)",93 STREET,25 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4446736,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,20:17,MANHATTAN,10024,40.785294,-73.969345,"(40.785294, -73.969345)",WEST 86 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519815,E-Bike,,,, +08/13/2021,20:51,QUEENS,11375,40.738724,-73.8488,"(40.738724, -73.8488)",HORACE HARDING EXPRESSWAY,VANDOREN STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447097,Van,Sedan,,, +07/24/2021,21:00,,,,,,DEXTER COURT,CYPRESS CEMENTARY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446757,Sedan,Sedan,,, +08/12/2021,12:20,BRONX,10454,40.814186,-73.92125,"(40.814186, -73.92125)",3 AVENUE,EAST 145 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4446852,Sedan,Sedan,,, +08/13/2021,17:50,BROOKLYN,11210,40.63129,-73.94606,"(40.63129, -73.94606)",,,1610 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4447059,E-Bike,Sedan,,, +07/31/2021,12:00,,,40.765884,-73.93601,"(40.765884, -73.93601)",33 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446940,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,16:00,BROOKLYN,11217,40.68378,-73.982956,"(40.68378, -73.982956)",,,280 BERGEN STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4446680,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,11:45,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,21:50,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446792,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,12:00,BROOKLYN,11234,40.61887,-73.929794,"(40.61887, -73.929794)",,,2169 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446685,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,21:12,,,,,,101 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446643,Sedan,Bike,,, +07/15/2021,15:35,QUEENS,11372,40.751423,-73.8882,"(40.751423, -73.8882)",,,78-11 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446553,Sedan,,,, +08/11/2021,1:11,MANHATTAN,10029,40.794247,-73.939804,"(40.794247, -73.939804)",,,2175 2 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446990,Sedan,,,, +08/12/2021,16:28,,,,,,FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446402,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,0:24,QUEENS,11103,40.759724,-73.92061,"(40.759724, -73.92061)",37 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4447384,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,13:30,QUEENS,11691,40.60255,-73.76827,"(40.60255, -73.76827)",,,1057 BAY 32 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4446167,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/19/2021,9:50,MANHATTAN,10019,40.7673964,-73.9963285,"(40.7673964, -73.9963285)",WEST 51 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,13:37,BRONX,10461,40.8420773,-73.8347138,"(40.8420773, -73.8347138)",ZULETTE AVENUE,MAYFLOWER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,16:40,BROOKLYN,11207,40.6576551,-73.8791668,"(40.6576551, -73.8791668)",COZINE AVENUE,JEROME STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4469681,Van,Sedan,,, +10/19/2021,4:40,,,40.6804771,-73.792091,"(40.6804771, -73.792091)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4469902,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/23/2021,20:37,BRONX,10451,40.8137456,-73.9313928,"(40.8137456, -73.9313928)",EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470619,Sedan,Sedan,,, +10/13/2021,23:09,BRONX,10468,40.8669548,-73.9023777,"(40.8669548, -73.9023777)",,,2545 UNIVERSITY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4467415,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Sedan,Sedan +10/18/2021,15:50,BRONX,10454,40.8107277,-73.9246479,"(40.8107277, -73.9246479)",EAST 139 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468684,Sedan,,,, +09/20/2021,4:10,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459406,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,12:25,QUEENS,11378,40.7211672,-73.9217644,"(40.7211672, -73.9217644)",,,58-29 48 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4468726,Sedan,Sedan,,, +11/02/2021,15:30,,,40.576508,-73.98584,"(40.576508, -73.98584)",WEST 19 STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4473599,Sedan,Sedan,,, +10/21/2021,15:04,,,40.6794861,-73.9468176,"(40.6794861, -73.9468176)",NEW YORK AVENUE,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470376,Sedan,E-Scooter,,, +10/22/2021,11:30,QUEENS,11004,40.7538134,-73.7074753,"(40.7538134, -73.7074753)",,,270-05 76 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469815,Box Truck,Sedan,,, +10/04/2021,19:10,BRONX,10457,40.8426295,-73.9059589,"(40.8426295, -73.9059589)",TOPPING AVENUE,EAST MOUNT EDEN AVENUE,,0,0,0,0,0,0,0,0,Other Lighting Defects,,,,,4466673,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,12:23,,,40.6769384,-73.9218247,"(40.6769384, -73.9218247)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4470353,Sedan,Dump,,, +10/18/2021,6:00,QUEENS,11419,40.6892889,-73.8246965,"(40.6892889, -73.8246965)",,,101-32 120 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,16:00,QUEENS,11423,40.7178498,-73.7727532,"(40.7178498, -73.7727532)",,,87-51 SANTIAGO STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469465,Sedan,,,, +10/21/2021,18:36,,,40.6975608,-73.8527467,"(40.6975608, -73.8527467)",PARK LANE SOUTH,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4470493,Sedan,Bike,,, +10/16/2021,6:55,QUEENS,11373,40.7412764,-73.8843935,"(40.7412764, -73.8843935)",,,80-08 45 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468020,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,6:30,BRONX,10457,40.8464867,-73.8943368,"(40.8464867, -73.8943368)",EAST TREMONT AVENUE,LAFONTAINE AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Driver Inattention/Distraction,,,,4469150,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,11:52,BRONX,10465,40.8155417,-73.8007849,"(40.8155417, -73.8007849)",,,3258 GIEGERICH PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468621,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,13:30,QUEENS,11362,40.764576,-73.72614,"(40.764576, -73.72614)",,,254-29 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469259,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,13:00,QUEENS,11413,40.6766954,-73.7422032,"(40.6766954, -73.7422032)",MERRICK BOULEVARD,228 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466901,Station Wagon/Sport Utility Vehicle,Van,,, +10/18/2021,13:30,BRONX,10460,40.8444509,-73.8684973,"(40.8444509, -73.8684973)",,,630 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468719,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,2:11,,,40.68865,-73.84711,"(40.68865, -73.84711)",96 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519185,Sedan,,,, +10/17/2021,16:00,QUEENS,11372,40.7524433,-73.8958723,"(40.7524433, -73.8958723)",,,70-02 34 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468385,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,10:07,BROOKLYN,11222,40.7216017,-73.9409901,"(40.7216017, -73.9409901)",KINGSLAND AVENUE,LOMBARDY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469917,Sedan,,,, +10/20/2021,12:00,QUEENS,11369,40.7586806,-73.8755111,"(40.7586806, -73.8755111)",32 AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469375,Sedan,,,, +10/17/2021,14:50,,,40.6529481,-74.0021659,"(40.6529481, -74.0021659)",36 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4468877,Bike,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:08,BRONX,10457,40.8388747,-73.9026466,"(40.8388747, -73.9026466)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470767,E-Bike,,,, +10/20/2021,15:30,QUEENS,11357,40.7876776,-73.8187537,"(40.7876776, -73.8187537)",14 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469358,Sedan,,,, +10/25/2021,1:30,QUEENS,11368,40.7421539,-73.8540624,"(40.7421539, -73.8540624)",,,54-01 108 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470526,Sedan,Sedan,,, +10/23/2021,17:05,QUEENS,11355,40.7432104,-73.8226098,"(40.7432104, -73.8226098)",146 STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,0:00,BRONX,10469,40.8702274,-73.860205,"(40.8702274, -73.860205)",,,3020 RADCLIFF AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469198,Sedan,,,, +10/21/2021,9:48,BRONX,10469,40.8733019,-73.8536375,"(40.8733019, -73.8536375)",BOSTON ROAD,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469561,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,13:00,BROOKLYN,11219,40.633084,-74.0055664,"(40.633084, -74.0055664)",FORT HAMILTON PARKWAY,60 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469125,,,,, +11/02/2021,16:27,,,40.767185,-73.96248,"(40.767185, -73.96248)",EAST 68 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4473485,Motorcycle,Sedan,,, +10/17/2021,22:10,BROOKLYN,11226,40.653976,-73.9528277,"(40.653976, -73.9528277)",ROGERS AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469410,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,7:00,,,40.6659178,-73.9254639,"(40.6659178, -73.9254639)",ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469619,Sedan,Sedan,,, +10/21/2021,20:03,BROOKLYN,11209,40.6291254,-74.0238622,"(40.6291254, -74.0238622)",,,462 76 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4469641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/15/2021,1:00,BROOKLYN,11206,40.7007421,-73.9563239,"(40.7007421, -73.9563239)",,,47 LYNCH STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467228,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/18/2021,17:50,,,40.6872462,-73.9546828,"(40.6872462, -73.9546828)",LEXINGTON AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4468932,Sedan,Bike,,, +10/24/2021,0:30,,,40.7322637,-74.0035757,"(40.7322637, -74.0035757)",7 AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470151,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,0:00,,,40.6685813,-73.8422271,"(40.6685813, -73.8422271)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4468002,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,21:38,,,40.839908,-73.9360834,"(40.839908, -73.9360834)",WASHINGTON BRIDGE 181 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467939,Sedan,Bus,,, +10/15/2021,0:02,QUEENS,11436,40.6835931,-73.8034461,"(40.6835931, -73.8034461)",LINDEN BOULEVARD,140 STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,,4467346,Sedan,Sedan,Sedan,Sedan, +11/02/2021,8:59,QUEENS,11362,40.7565,-73.73343,"(40.7565, -73.73343)",245 PLACE,61 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473436,Sedan,,,, +11/01/2021,19:00,QUEENS,11372,40.74734,-73.88673,"(40.74734, -73.88673)",79 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473943,,,,, +10/24/2021,0:00,QUEENS,11419,40.6914314,-73.8305256,"(40.6914314, -73.8305256)",115 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4470320,Sedan,Sedan,,, +10/24/2021,9:29,MANHATTAN,10016,40.750218,-73.979056,"(40.750218, -73.979056)",EAST 39 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4470545,Sedan,Taxi,,, +10/16/2021,21:30,MANHATTAN,10017,40.7560314,-73.9790253,"(40.7560314, -73.9790253)",5 AVENUE,EAST 46 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467738,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/13/2021,12:00,QUEENS,11435,40.7098408,-73.8142356,"(40.7098408, -73.8142356)",,,141-55 85 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467507,Bus,Motorcycle,,, +11/02/2021,4:04,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4473967,Tractor Truck Diesel,,,, +10/15/2021,0:00,BROOKLYN,11221,40.6893537,-73.9363202,"(40.6893537, -73.9363202)",LEWIS AVENUE,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468120,Sedan,Sedan,,, +10/16/2021,23:10,QUEENS,11369,40.7587675,-73.8767075,"(40.7587675, -73.8767075)",,,91-17 32 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467870,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,20:00,,,40.7458182,-73.9456495,"(40.7458182, -73.9456495)",JACKSON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467675,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,6:20,,,40.6787024,-74.0027451,"(40.6787024, -74.0027451)",BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466630,Sedan,Box Truck,,, +10/12/2021,15:00,BROOKLYN,11236,40.6523553,-73.9090475,"(40.6523553, -73.9090475)",,,720 EAST 98 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4468252,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,7:51,BRONX,10459,40.8306913,-73.8920639,"(40.8306913, -73.8920639)",,,1301 WILKENS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468665,Sedan,,,, +10/13/2021,19:48,,,40.7221796,-73.9498645,"(40.7221796, -73.9498645)",MANHATTAN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466879,Sedan,,,, +10/22/2021,11:00,,,40.7280401,-73.8317062,"(40.7280401, -73.8317062)",PARK DRIVE EAST,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469949,Sedan,,,, +10/13/2021,17:07,MANHATTAN,10025,40.8007501,-73.9652434,"(40.8007501, -73.9652434)",,,949 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466938,Sedan,Box Truck,,, +10/14/2021,13:50,BROOKLYN,11223,40.5970664,-73.9610362,"(40.5970664, -73.9610362)",,,2453 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4468231,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,8:52,MANHATTAN,10031,40.8270596,-73.9520112,"(40.8270596, -73.9520112)",RIVERSIDE DRIVE,WEST 145 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4469608,Bus,Bike,,, +10/15/2021,17:20,MANHATTAN,10036,40.7599739,-73.9966992,"(40.7599739, -73.9966992)",,,524 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470811,Bus,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,11:06,BROOKLYN,11210,40.6196053,-73.9455181,"(40.6196053, -73.9455181)",NOSTRAND AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469205,Bus,Taxi,,, +10/13/2021,14:55,BROOKLYN,11231,40.6762705,-74.0031942,"(40.6762705, -74.0031942)",HENRY STREET,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467209,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/24/2021,23:10,,,40.5739728,-74.1699179,"(40.5739728, -74.1699179)",RICHMOND AVENUE,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470515,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,22:30,BROOKLYN,11210,40.6173203,-73.9452535,"(40.6173203, -73.9452535)",,,2750 NOSTRAND AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470168,Sedan,Bike,,, +10/14/2021,14:02,QUEENS,11377,40.7626041,-73.9037177,"(40.7626041, -73.9037177)",,,25-60 BOROUGH PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467887,Sedan,,,, +10/17/2021,2:20,,,40.7579117,-73.8585619,"(40.7579117, -73.8585619)",111 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467838,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,19:00,BROOKLYN,11228,40.6200697,-74.0067054,"(40.6200697, -74.0067054)",,,1323 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,18:56,BROOKLYN,11229,40.5972205,-73.9414687,"(40.5972205, -73.9414687)",,,3554 NOSTRAND AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4468233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,11:24,BRONX,10459,40.8338009,-73.8832231,"(40.8338009, -73.8832231)",SHERIDAN EXPRESSWAY,EAST 173 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470715,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,8:48,QUEENS,11356,40.7878834,-73.8410199,"(40.7878834, -73.8410199)",127 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470752,Pick-up Truck,,,, +10/13/2021,18:00,BROOKLYN,11208,40.6802223,-73.8712013,"(40.6802223, -73.8712013)",CRESCENT STREET,WELDON STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467260,E-Bike,Sedan,,, +10/15/2021,0:40,BRONX,10462,40.8338892,-73.8546529,"(40.8338892, -73.8546529)",OLMSTEAD AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467707,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,13:50,BROOKLYN,11219,40.6260629,-73.9970172,"(40.6260629, -73.9970172)",NEW UTRECHT AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467129,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +10/14/2021,8:00,,,40.693041,-73.9244383,"(40.693041, -73.9244383)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,18:33,BRONX,10451,40.8133148,-73.9228748,"(40.8133148, -73.9228748)",3 AVENUE,EAST 143 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468265,Sedan,Motorscooter,,, +10/23/2021,0:55,,,40.736669,-73.9973406,"(40.736669, -73.9973406)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470183,Taxi,Taxi,,, +10/24/2021,11:00,,,40.6980995,-73.992708,"(40.6980995, -73.992708)",PINEAPPLE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4470508,Box Truck,,,, +10/13/2021,16:30,BROOKLYN,11232,40.6559547,-74.0085525,"(40.6559547, -74.0085525)",,,233 37 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466805,Sedan,Tractor Truck Diesel,,, +10/20/2021,8:20,MANHATTAN,10065,40.7640562,-73.9647563,"(40.7640562, -73.9647563)",3 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4469110,Sedan,Bus,,, +10/16/2021,20:25,BRONX,10467,40.8802593,-73.8767805,"(40.8802593, -73.8767805)",EAST GUN HILL ROAD,TRYON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468398,Sedan,,,, +10/28/2021,15:22,BRONX,10472,40.833965,-73.8629,"(40.833965, -73.8629)",CROSS BRONX EXPRESSWAY,WHITE PLAINS ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474013,Sedan,E-Bike,,, +10/11/2021,22:20,QUEENS,11435,40.68511,-73.7981052,"(40.68511, -73.7981052)",INWOOD STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466730,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,11:20,BROOKLYN,11215,40.6685186,-73.9737928,"(40.6685186, -73.9737928)",,,70 PROSPECT PARK WEST,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,20:57,BRONX,10451,40.8137456,-73.9313928,"(40.8137456, -73.9313928)",EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468263,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,18:30,BRONX,10468,40.8653123,-73.9033237,"(40.8653123, -73.9033237)",WEST 190 STREET,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468397,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,0:00,,,40.8027515,-73.933575,"(40.8027515, -73.933575)",EAST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468366,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/14/2021,22:10,QUEENS,11377,40.7352707,-73.8965486,"(40.7352707, -73.8965486)",,,68-09 MAURICE AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4467178,Sedan,Sedan,,, +10/18/2021,18:10,,,40.7376829,-73.8520482,"(40.7376829, -73.8520482)",108 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468546,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,12:42,,,40.7110321,-74.0145328,"(40.7110321, -74.0145328)",LIBERTY STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4469866,Ram,,,, +11/02/2021,7:34,BRONX,10463,40.872917,-73.90312,"(40.872917, -73.90312)",,,2739 KINGSBRIDGE TERRACE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473449,Station Wagon/Sport Utility Vehicle,Bike,,, +10/14/2021,14:44,BRONX,10453,40.8535233,-73.9027227,"(40.8535233, -73.9027227)",GRAND CONCOURSE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467331,Sedan,Sedan,,, +10/18/2021,15:20,BRONX,10466,40.8988558,-73.8478551,"(40.8988558, -73.8478551)",NEREID AVENUE,GRACE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468798,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,21:43,MANHATTAN,10031,40.8221092,-73.9480838,"(40.8221092, -73.9480838)",CONVENT AVENUE,WEST 141 STREET,,2,0,0,0,2,0,0,0,Driver Inexperience,,,,,4467685,E-Bike,,,, +10/14/2021,9:30,MANHATTAN,10001,40.7509033,-73.9981196,"(40.7509033, -73.9981196)",WEST 30 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4467442,Box Truck,Sedan,,, +04/14/2022,15:30,QUEENS,11417,40.678787,-73.84426,"(40.678787, -73.84426)",CROSS BAY BOULEVARD,107 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519403,Motorcycle,Bus,,, +10/24/2021,8:00,BROOKLYN,11221,40.690888,-73.9280066,"(40.690888, -73.9280066)",,,992 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470500,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,5:30,,,40.6907801,-73.7272705,"(40.6907801, -73.7272705)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468280,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,13:00,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4518936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,11:45,BROOKLYN,11207,40.664334,-73.896334,"(40.664334, -73.896334)",,,566 LIVONIA AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468164,,,,, +10/15/2021,9:11,,,40.6727943,-73.9692026,"(40.6727943, -73.9692026)",FLATBUSH AVENUE,PLAZA STREET EAST,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467341,Sedan,Flat Bed,,, +10/22/2021,11:07,BRONX,10457,40.8556698,-73.8996722,"(40.8556698, -73.8996722)",RYER AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469842,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/13/2021,8:40,QUEENS,11420,40.6730693,-73.8052202,"(40.6730693, -73.8052202)",,,121-55 133 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4466758,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,22:16,BROOKLYN,11218,40.638794,-73.97075,"(40.638794, -73.97075)",CORTELYOU ROAD,EAST 8 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,23:30,STATEN ISLAND,10312,40.5440178,-74.1594619,"(40.5440178, -74.1594619)",,,458 BEACH ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4469093,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,12:45,BRONX,10468,40.872773,-73.8999747,"(40.872773, -73.8999747)",,,2825 CLAFLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469470,Sedan,,,, +10/15/2021,20:02,MANHATTAN,10010,40.7414135,-73.9833603,"(40.7414135, -73.9833603)",EAST 26 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467791,Sedan,,,, +10/17/2021,1:05,,,40.6702792,-73.9254121,"(40.6702792, -73.9254121)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Unspecified,,,4467961,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/24/2021,18:35,,,40.8011103,-73.9652135,"(40.8011103, -73.9652135)",WEST 107 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4470448,Bike,,,, +10/12/2021,13:30,BRONX,10474,40.8186038,-73.8891604,"(40.8186038, -73.8891604)",HUNTS POINT AVENUE,SENECA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467624,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,19:30,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,9:55,BROOKLYN,11215,40.6712275,-73.9716028,"(40.6712275, -73.9716028)",,,18 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467023,Pick-up Truck,Sedan,,, +10/17/2021,12:44,MANHATTAN,10034,40.8669236,-73.9238245,"(40.8669236, -73.9238245)",,,4869 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468826,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,14:08,,,40.8088622,-73.9521255,"(40.8088622, -73.9521255)",8 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4469507,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/14/2021,10:32,QUEENS,11415,40.711762,-73.8254815,"(40.711762, -73.8254815)",,,126-06 QUEENS BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467061,Sedan,,,, +10/15/2021,7:07,STATEN ISLAND,10309,40.5377609,-74.2329865,"(40.5377609, -74.2329865)",,,435 SHARROTTS ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469789,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/22/2021,18:25,BROOKLYN,11206,40.7032089,-73.9462505,"(40.7032089, -73.9462505)",BROADWAY,WALLABOUT STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470080,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/18/2021,16:30,,,40.7528008,-73.9792862,"(40.7528008, -73.9792862)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,2:50,BRONX,10458,40.8672566,-73.8836235,"(40.8672566, -73.8836235)",WEBSTER AVENUE,BEDFORD PARK BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4466329,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,16:55,BROOKLYN,11229,40.6088079,-73.953191,"(40.6088079, -73.953191)",QUENTIN ROAD,OCEAN AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4467156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/07/2021,8:35,,,40.8278228,-73.8857955,"(40.8278228, -73.8857955)",WESTCHESTER AVENUE,SHERIDAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,5:35,BROOKLYN,11206,40.70961,-73.94994,"(40.70961, -73.94994)",,,19 TEN EYCK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473461,Sedan,,,, +10/22/2021,7:43,MANHATTAN,10034,,,,RIVERSIDE DRIVE,HENSHAW STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474139,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,13:37,MANHATTAN,10065,40.7618573,-73.9634255,"(40.7618573, -73.9634255)",2 AVENUE,EAST 61 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470578,Sedan,E-Scooter,,, +10/22/2021,16:40,QUEENS,11428,40.7224663,-73.7369176,"(40.7224663, -73.7369176)",SPRINGFIELD BOULEVARD,93 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469885,Sedan,Bike,,, +10/15/2021,13:30,BRONX,10467,40.8660476,-73.8720598,"(40.8660476, -73.8720598)",BRONX RIVER PARKWAY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,18:58,,,40.6165212,-73.9858588,"(40.6165212, -73.9858588)",65 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468297,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,15:00,BRONX,10468,40.8656677,-73.9088923,"(40.8656677, -73.9088923)",,,2455 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467400,Sedan,,,, +10/17/2021,13:20,QUEENS,11422,40.6528843,-73.7383577,"(40.6528843, -73.7383577)",,,245-12 149 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4467987,Sedan,Pick-up Truck,,, +10/13/2021,7:20,,,40.6736347,-73.7638308,"(40.6736347, -73.7638308)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469165,Sedan,,,, +11/02/2021,12:25,QUEENS,11422,40.665348,-73.73066,"(40.665348, -73.73066)",,,247-22 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4473383,Sedan,,,, +10/13/2021,14:40,QUEENS,11413,40.6791409,-73.7501664,"(40.6791409, -73.7501664)",,,219-14 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,0:00,,,40.674515,-73.88706,"(40.674515, -73.88706)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519651,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,13:00,,,40.696117,-73.905014,"(40.696117, -73.905014)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473549,Sedan,Sedan,,, +10/14/2021,14:30,QUEENS,11375,40.7223073,-73.8441346,"(40.7223073, -73.8441346)",70 ROAD,108 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467139,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,20:30,QUEENS,11355,40.755392,-73.8282803,"(40.755392, -73.8282803)",MAIN STREET,MAPLE AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468553,Sedan,Bike,,, +10/28/2021,12:30,MANHATTAN,10036,40.757385,-73.98226,"(40.757385, -73.98226)",WEST 46 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4473992,Station Wagon/Sport Utility Vehicle,Bus,,, +11/02/2021,23:05,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",EAST MOUNT EDEN AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473544,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,10:00,BROOKLYN,11205,40.6969487,-73.9771225,"(40.6969487, -73.9771225)",,,45 NORTH ELLIOTT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469678,Sedan,,,, +10/14/2021,14:40,MANHATTAN,10029,40.7872227,-73.952058,"(40.7872227, -73.952058)",EAST 97 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467284,Box Truck,Sedan,,, +10/16/2021,0:40,BRONX,10458,40.8722704,-73.8856143,"(40.8722704, -73.8856143)",EAST 201 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467592,Sedan,Sedan,,, +10/14/2021,1:56,QUEENS,11693,40.5875861,-73.8117978,"(40.5875861, -73.8117978)",,,86-12 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468035,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,14:50,MANHATTAN,10029,40.7950523,-73.9331565,"(40.7950523, -73.9331565)",EAST 116 STREET,PLEASANT AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4470730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,3:39,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4473683,Sedan,Sedan,,, +10/12/2021,20:19,BROOKLYN,11221,40.6981605,-73.9252728,"(40.6981605, -73.9252728)",DE KALB AVENUE,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466923,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,21:10,,,40.6641724,-73.8246452,"(40.6641724, -73.8246452)",NASSAU EXPRESSWAY,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468209,Sedan,E-Bike,,, +10/16/2021,19:11,BROOKLYN,11208,40.669992,-73.8591124,"(40.669992, -73.8591124)",LINDEN BOULEVARD,EMERALD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468167,Sedan,,,, +10/20/2021,11:00,MANHATTAN,10012,40.7245509,-74.0019338,"(40.7245509, -74.0019338)",WEST BROADWAY,SPRING STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469544,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,3:45,MANHATTAN,10001,40.7530023,-74.0034993,"(40.7530023, -74.0034993)",,,554 WEST 30 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470826,Sedan,Sedan,,, +08/14/2021,19:55,,,,,,1 avenue,1 avenue,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447280,Sedan,Sedan,,, +10/12/2021,14:30,BROOKLYN,11236,40.6450318,-73.9199775,"(40.6450318, -73.9199775)",RALPH AVENUE,CLARENDON ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467813,Sedan,,,, +10/18/2021,17:28,BROOKLYN,11238,40.6860316,-73.9652173,"(40.6860316, -73.9652173)",,,415 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4468571,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,19:40,,,40.6037285,-73.9967985,"(40.6037285, -73.9967985)",86 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469315,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,16:00,QUEENS,11378,40.7287817,-73.926144,"(40.7287817, -73.926144)",56 ROAD,43 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4468152,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/21/2021,8:30,QUEENS,11419,40.6906643,-73.8103234,"(40.6906643, -73.8103234)",VANWYCK EXPRESSWAY,105 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469475,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,9:42,,,40.7368103,-73.9526392,"(40.7368103, -73.9526392)",MC GUINNESS BOULEVARD,CLAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467320,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,23:17,MANHATTAN,10003,40.7333088,-73.9876251,"(40.7333088, -73.9876251)",,,150 EAST 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467823,Station Wagon/Sport Utility Vehicle,Bike,,, +10/24/2021,18:00,MANHATTAN,10033,40.8486271,-73.9342412,"(40.8486271, -73.9342412)",WEST 180 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470872,Sedan,,,, +10/17/2021,11:30,,,40.665256,-73.7353338,"(40.665256, -73.7353338)",SOUTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469182,Sedan,,,, +10/17/2021,15:22,MANHATTAN,10013,40.7253637,-74.0060408,"(40.7253637, -74.0060408)",,,131 VARICK STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4468430,Tractor Truck Diesel,Sedan,,, +10/13/2021,11:20,BRONX,10455,40.8204526,-73.9165482,"(40.8204526, -73.9165482)",,,385 EAST 155 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466997,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,18:10,QUEENS,11420,40.6723583,-73.8096761,"(40.6723583, -73.8096761)",129 STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4470436,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,6:00,,,40.6311847,-73.9563637,"(40.6311847, -73.9563637)",CAMPUS ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468858,Sedan,,,, +10/13/2021,14:32,BRONX,10463,40.8731207,-73.903169,"(40.8731207, -73.903169)",,,2775 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467585,Bus,Sedan,,, +10/01/2021,16:00,,,40.6821814,-73.9465811,"(40.6821814, -73.9465811)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4467845,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,13:25,QUEENS,11101,40.754011,-73.9239485,"(40.754011, -73.9239485)",,,35-57 38 STREET,0,0,0,0,0,0,0,0,Steering Failure,,,,,4467066,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,17:19,QUEENS,11420,40.6656161,-73.8175642,"(40.6656161, -73.8175642)",NORTH CONDUIT AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468004,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,16:10,BRONX,10458,40.8542299,-73.8862172,"(40.8542299, -73.8862172)",,,657 CRESCENT AVENUE,6,0,3,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4470278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +10/17/2021,13:00,,,40.6883257,-73.9648108,"(40.6883257, -73.9648108)",SAINT JAMES PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468741,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,1:18,QUEENS,11355,40.7563194,-73.8336777,"(40.7563194, -73.8336777)",COLLEGE POINT BOULEVARD,41 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470779,Lunch Wagon,E-Scooter,,, +10/22/2021,11:33,,,40.7407858,-73.8149947,"(40.7407858, -73.8149947)",KISSENA BOULEVARD,59 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4470747,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,5:10,,,40.7127835,-73.9372465,"(40.7127835, -73.9372465)",GRAND STREET,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4464892,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,18:40,QUEENS,11427,40.724613,-73.75274,"(40.724613, -73.75274)",,,88-40 212 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4473834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/18/2021,5:09,QUEENS,11377,40.734425,-73.9098218,"(40.734425, -73.9098218)",,,52-35 58 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468955,Sedan,wheel load,,, +10/23/2021,2:56,MANHATTAN,10019,40.7632619,-73.9893298,"(40.7632619, -73.9893298)",,,731 9 AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4470011,Sedan,Dump,,, +10/11/2021,19:30,,,40.8874515,-73.8476073,"(40.8874515, -73.8476073)",NEW ENGLAND THRUWAY,,,3,0,0,0,0,0,3,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4468898,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,10:24,BROOKLYN,11236,40.6313217,-73.9023297,"(40.6313217, -73.9023297)",EAST 85 STREET,AVENUE M,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4467378,Sedan,Sedan,,, +10/22/2021,12:35,,,40.8571365,-73.8437933,"(40.8571365, -73.8437933)",PELHAM PARKWAY,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469870,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +10/16/2021,12:00,,,40.876976,-73.8896598,"(40.876976, -73.8896598)",PAUL AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468412,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,12:50,,,40.8412743,-73.9176091,"(40.8412743, -73.9176091)",MACOMBS ROAD,PLAZA DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4469033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:00,BROOKLYN,11207,40.6718921,-73.8958679,"(40.6718921, -73.8958679)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468633,Sedan,Sedan,,, +10/15/2021,20:35,,,40.6433425,-73.9144411,"(40.6433425, -73.9144411)",EAST 86 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469443,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,20:17,BROOKLYN,11234,40.6263638,-73.9189984,"(40.6263638, -73.9189984)",AVENUE K,EAST 59 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467161,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,8:08,BRONX,10459,40.8237075,-73.897075,"(40.8237075, -73.897075)",,,1015 INTERVALE AVENUE,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4468766,Bike,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,19:35,QUEENS,11368,40.7365415,-73.8572732,"(40.7365415, -73.8572732)",,,99-49 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4468022,Pick-up Truck,,,, +10/14/2021,16:15,,,40.8043758,-73.9374202,"(40.8043758, -73.9374202)",EAST 125 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4467277,Sedan,,,, +10/20/2021,19:15,,,40.6241279,-74.1527902,"(40.6241279, -74.1527902)",WILCOX STREET,EUNICE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469279,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,15:39,BROOKLYN,11235,40.5909175,-73.9528121,"(40.5909175, -73.9528121)",,,2461 EAST 17 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4470559,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,1:17,BROOKLYN,11236,40.6432041,-73.9092812,"(40.6432041, -73.9092812)",FARRAGUT ROAD,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4469810,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/23/2021,23:50,MANHATTAN,10036,40.7628098,-73.9931665,"(40.7628098, -73.9931665)",WEST 47 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470311,Sedan,Sedan,,, +10/15/2021,23:26,BROOKLYN,11220,40.6419869,-74.0172347,"(40.6419869, -74.0172347)",4 AVENUE,58 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467907,Sedan,E-Bike,,, +10/22/2021,20:30,BROOKLYN,11212,40.6635552,-73.9162423,"(40.6635552, -73.9162423)",,,704 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470195,Sedan,Sedan,,, +10/14/2021,8:00,BROOKLYN,11236,40.6356447,-73.91944,"(40.6356447, -73.91944)",,,1690 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467029,Sedan,,,, +10/11/2021,19:11,,,40.8157322,-73.94542,"(40.8157322, -73.94542)",west 143 street,WEST 143 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4466447,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,8:50,QUEENS,11368,40.7388474,-73.8637517,"(40.7388474, -73.8637517)",55 AVENUE,97 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470404,Sedan,,,, +10/17/2021,13:35,QUEENS,11385,40.7004848,-73.9024916,"(40.7004848, -73.9024916)",MYRTLE AVENUE,WEIRFIELD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468748,Sedan,,,, +10/15/2021,6:18,BROOKLYN,11234,40.6341142,-73.9191681,"(40.6341142, -73.9191681)",,,5918 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,1:00,QUEENS,11421,40.6920328,-73.8659333,"(40.6920328, -73.8659333)",,,86-38 76 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467638,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,20:25,QUEENS,11377,40.7497878,-73.900141,"(40.7497878, -73.900141)",,,35-17 62 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468750,Sedan,Sedan,,, +10/23/2021,0:28,,,40.8244203,-73.873567,"(40.8244203, -73.873567)",MORRISON AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4470291,Sedan,,,, +10/14/2021,3:30,,,40.8364261,-73.8714605,"(40.8364261, -73.8714605)",CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4467475,Sedan,,,, +10/24/2021,5:30,MANHATTAN,10031,40.8190074,-73.9555421,"(40.8190074, -73.9555421)",,,3300 BROADWAY,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4470461,Sedan,,,, +10/24/2021,10:08,MANHATTAN,10002,40.7138823,-73.9936587,"(40.7138823, -73.9936587)",,,92 EAST BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4470615,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,16:43,,,40.7916628,-73.9646839,"(40.7916628, -73.9646839)",WEST 96 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467146,Sedan,,,, +10/09/2021,19:43,QUEENS,11427,40.732864,-73.73219,"(40.732864, -73.73219)",235 COURT,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4465712,Sedan,,,, +10/17/2021,21:00,BROOKLYN,11231,40.6815652,-74.0022978,"(40.6815652, -74.0022978)",,,629 HICKS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468565,Sedan,,,, +10/18/2021,10:38,MANHATTAN,10026,40.8037191,-73.9541275,"(40.8037191, -73.9541275)",,,232 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469162,Sedan,,,, +10/11/2021,9:50,,,40.8178952,-73.9305879,"(40.8178952, -73.9305879)",MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467723,Sedan,,,, +11/02/2021,12:05,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,21:00,BRONX,10468,40.8762718,-73.8880808,"(40.8762718, -73.8880808)",JEROME AVENUE,WEST 205 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4467591,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,13:00,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",,,22-44 crane street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467055,Sedan,,,, +10/20/2021,14:10,,,40.7216645,-73.8437285,"(40.7216645, -73.8437285)",71 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469580,Sedan,,,, +11/02/2021,11:20,QUEENS,11433,40.701122,-73.78332,"(40.701122, -73.78332)",,,106-19 173 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474124,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,2:50,,,40.7040285,-73.8170984,"(40.7040285, -73.8170984)",HILLSIDE AVENUE,VANWYCK EXPRESSWAY,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4467929,Ambulance,Station Wagon/Sport Utility Vehicle,Sedan,, +10/20/2021,17:30,,,40.5793999,-74.1694817,"(40.5793999, -74.1694817)",RICHMOND AVENUE,PLATINUM AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4469448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/19/2021,8:50,,,40.617789,-74.0811029,"(40.617789, -74.0811029)",OSGOOD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468783,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,7:42,BROOKLYN,11217,40.6821817,-73.9738984,"(40.6821817, -73.9738984)",,,662 PACIFIC STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4468687,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,20:45,QUEENS,11101,40.7400682,-73.935449,"(40.7400682, -73.935449)",31 PLACE,HUNTERS POINT AVENUE,,2,0,0,0,0,0,2,0,Oversized Vehicle,Unspecified,,,,4467188,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/19/2021,7:50,BROOKLYN,11232,40.6692356,-73.9969648,"(40.6692356, -73.9969648)",HAMILTON AVENUE,15 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4468781,Sedan,,,, +10/25/2021,8:00,,,40.6917544,-73.9665651,"(40.6917544, -73.9665651)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,2:05,,,40.6645136,-73.9537863,"(40.6645136, -73.9537863)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4467770,Sedan,Sedan,,, +10/22/2021,21:46,,,40.8571365,-73.8437933,"(40.8571365, -73.8437933)",EASTCHESTER ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,4:30,QUEENS,11377,40.7382193,-73.9214254,"(40.7382193, -73.9214254)",,,48-45 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468917,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,17:10,MANHATTAN,10028,40.7808922,-73.9584917,"(40.7808922, -73.9584917)",,,49 EAST 86 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468593,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/21/2021,18:05,,,40.6931192,-73.968811,"(40.6931192, -73.968811)",CLINTON AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469696,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/16/2021,14:55,BROOKLYN,11212,40.6637804,-73.9025085,"(40.6637804, -73.9025085)",,,430 POWELL STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4469857,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,12:47,,,40.7865477,-73.9525532,"(40.7865477, -73.9525532)",EAST 96 STREET,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4469179,Bus,,,, +11/02/2021,16:00,QUEENS,11416,40.682415,-73.84451,"(40.682415, -73.84451)",103 AVENUE,95 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,16:00,BROOKLYN,11230,40.6217937,-73.9700187,"(40.6217937, -73.9700187)",OCEAN PARKWAY,AVENUE K,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470610,Taxi,Dump,,, +10/16/2021,22:20,,,40.7452931,-73.9984879,"(40.7452931, -73.9984879)",WEST 23 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469138,Taxi,Bike,,, +10/24/2021,7:00,,,40.8404302,-73.8867279,"(40.8404302, -73.8867279)",EAST 176 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470654,Sedan,,,, +10/23/2021,13:24,MANHATTAN,10033,40.8499209,-73.9314712,"(40.8499209, -73.9314712)",WEST 183 STREET,AUDUBON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,12:30,MANHATTAN,10032,40.8396218,-73.9388161,"(40.8396218, -73.9388161)",,,27 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469714,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,1:20,MANHATTAN,10012,40.7211707,-73.9939358,"(40.7211707, -73.9939358)",,,190 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466918,Sedan,Sedan,,, +11/02/2021,15:35,BROOKLYN,11226,40.655754,-73.95824,"(40.655754, -73.95824)",,,363 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474003,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,19:45,QUEENS,11423,40.7254761,-73.7655773,"(40.7254761, -73.7655773)",MCLAUGHLIN AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4469298,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,21:02,MANHATTAN,10016,40.7440994,-73.9763621,"(40.7440994, -73.9763621)",2 AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Turning Improperly,,,,4467806,Station Wagon/Sport Utility Vehicle,Bike,,, +10/29/2021,21:53,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",WEST BURNSIDE AVENUE,JEROME AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4474079,Sedan,Sedan,,, +10/14/2021,0:01,QUEENS,11432,40.7150251,-73.8076388,"(40.7150251, -73.8076388)",PARSONS BOULEVARD,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466832,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,18:30,QUEENS,11372,40.7546805,-73.8937353,"(40.7546805, -73.8937353)",NORTHERN BOULEVARD,73 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,9:00,BROOKLYN,11222,40.7254356,-73.9517381,"(40.7254356, -73.9517381)",MANHATTAN AVENUE,NORMAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469871,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,16:07,QUEENS,11363,40.76226,-73.7569828,"(40.76226, -73.7569828)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4467168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,21:18,,,40.693041,-73.9244383,"(40.693041, -73.9244383)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4468321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/20/2021,17:00,QUEENS,11367,40.7200215,-73.818328,"(40.7200215, -73.818328)",MAIN STREET,78 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469502,Sedan,Sedan,,, +10/18/2021,22:00,STATEN ISLAND,10304,40.6201606,-74.0769561,"(40.6201606, -74.0769561)",TOMPKINS AVENUE,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469266,Sedan,,,, +10/22/2021,20:00,,,40.6945985,-73.7517011,"(40.6945985, -73.7517011)",LINDEN BOULEVARD,201 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469982,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,8:55,BROOKLYN,11220,40.6390144,-74.0056883,"(40.6390144, -74.0056883)",,,5315 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469061,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,11:24,,,40.8653664,-73.9243835,"(40.8653664, -73.9243835)",ACADEMY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467038,van,,,, +10/18/2021,11:28,BROOKLYN,11207,40.6787376,-73.8988676,"(40.6787376, -73.8988676)",BUSHWICK AVENUE,FANCHON PLACE,,2,0,0,0,0,0,2,0,Obstruction/Debris,Unspecified,,,,4469237,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,7:50,BRONX,10458,40.8571285,-73.8807926,"(40.8571285, -73.8807926)",Fordham road,Southern Blvd,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469147,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,0:45,QUEENS,11379,40.7211618,-73.8668713,"(40.7211618, -73.8668713)",,,84-56 64 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469078,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,12:50,BROOKLYN,11215,40.6774056,-73.9830482,"(40.6774056, -73.9830482)",UNION STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470587,Van,Bike,,, +07/02/2022,15:15,BRONX,10466,40.886395,-73.86125,"(40.886395, -73.86125)",EAST 223 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544779,E-Bike,,,, +10/13/2021,16:46,,,40.7890514,-73.9703009,"(40.7890514, -73.9703009)",WEST 90 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466906,Sedan,,,, +10/16/2021,1:20,BROOKLYN,11235,40.5890415,-73.9445709,"(40.5890415, -73.9445709)",BEDFORD AVENUE,AVENUE Z,,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4467618,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,15:30,,,40.700469,-73.934528,"(40.700469, -73.934528)",NOLL STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470444,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,18:30,,,40.8200253,-73.9266245,"(40.8200253, -73.9266245)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466300,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,7:20,,,40.6962067,-73.9178172,"(40.6962067, -73.9178172)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4470054,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/13/2021,7:06,MANHATTAN,10023,40.7710889,-73.9816965,"(40.7710889, -73.9816965)",,,30 WEST 63 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4468514,Sedan,,,, +10/13/2021,19:00,MANHATTAN,10016,40.7489858,-73.979955,"(40.7489858, -73.979955)",PARK AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467544,Sedan,Taxi,,, +10/22/2021,12:00,,,40.700498,-73.9625503,"(40.700498, -73.9625503)",WILLIAMSBURG STREET WEST,KENT AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4470084,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +10/16/2021,15:40,MANHATTAN,10033,40.8509074,-73.9382837,"(40.8509074, -73.9382837)",WEST 181 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468855,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/17/2021,0:50,STATEN ISLAND,10314,40.6087174,-74.1163184,"(40.6087174, -74.1163184)",SLOSSON AVENUE,LIGHTNER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,20:28,BROOKLYN,11204,40.6173919,-73.9919351,"(40.6173919, -73.9919351)",68 STREET,18 AVENUE,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470097,E-Bike,,,, +11/01/2021,7:40,QUEENS,11435,40.698406,-73.80647,"(40.698406, -73.80647)",95 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4474109,Sedan,,,, +10/21/2021,10:40,BROOKLYN,11236,40.6361588,-73.9074222,"(40.6361588, -73.9074222)",,,1005 EAST 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469811,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,20:37,MANHATTAN,10012,40.7203211,-73.9940403,"(40.7203211, -73.9940403)",BOWERY,DELANCEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466933,Sedan,Bike,,, +10/16/2021,17:58,BROOKLYN,11221,40.6848893,-73.9351687,"(40.6848893, -73.9351687)",,,570 JEFFERSON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4470421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/15/2021,9:40,,,40.7387742,-73.8084471,"(40.7387742, -73.8084471)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467379,Station Wagon/Sport Utility Vehicle,PK,,, +11/02/2021,16:53,BRONX,10458,40.870182,-73.88552,"(40.870182, -73.88552)",EAST BEDFORD PARK BOULEVARD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473531,Sedan,,,, +10/20/2021,14:35,MANHATTAN,10038,40.7095234,-74.0016664,"(40.7095234, -74.0016664)",FRANKFORT STREET,PEARL STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4469202,Sedan,E-Bike,,, +10/30/2021,5:30,,,40.766605,-73.91611,"(40.766605, -73.91611)",36 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4474105,Sedan,Sedan,Sedan,Sedan, +09/13/2021,10:30,,,40.7516709,-73.941873,"(40.7516709, -73.941873)",QUEENS PLAZA NORTH,23 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470724,Bike,Sedan,,, +10/20/2021,10:00,STATEN ISLAND,10308,40.5621307,-74.1551318,"(40.5621307, -74.1551318)",GIFFORDS LANE,FAIRFIELD STREET,,1,0,0,0,0,0,1,0,Failure to Keep Right,Failure to Keep Right,,,,4469372,Bus,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,22:19,QUEENS,11354,40.7639417,-73.8281463,"(40.7639417, -73.8281463)",NORTHERN BOULEVARD,UNION STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468937,Sedan,Sedan,,, +10/14/2021,11:00,,,40.694001,-73.9234996,"(40.694001, -73.9234996)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467077,Sedan,Taxi,,, +10/24/2021,4:40,BROOKLYN,11226,40.6496692,-73.9523623,"(40.6496692, -73.9523623)",ERASMUS STREET,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470284,Sedan,,,, +10/23/2021,12:40,BROOKLYN,11231,40.6841453,-73.9994015,"(40.6841453, -73.9994015)",HENRY STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470065,Sedan,,,, +10/17/2021,0:20,,,40.775292,-73.9536264,"(40.775292, -73.9536264)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:41,MANHATTAN,10019,40.7642781,-73.9730158,"(40.7642781, -73.9730158)",EAST 59 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,14:50,,,40.6205224,-73.9407517,"(40.6205224, -73.9407517)",KINGS HIGHWAY,EAST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469204,Station Wagon/Sport Utility Vehicle,Tanker,,, +10/20/2021,8:15,,,40.5811716,-73.8390603,"(40.5811716, -73.8390603)",NEWPORT AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4470849,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/24/2021,7:00,BRONX,10451,40.816554,-73.9195436,"(40.816554, -73.9195436)",EAST 149 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470630,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,23:30,BRONX,10463,40.880369,-73.8974915,"(40.880369, -73.8974915)",,,3416 GILES PLACE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4468015,Van,,,, +10/22/2021,22:00,BRONX,10463,40.8871352,-73.9087652,"(40.8871352, -73.9087652)",,,3625 OXFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470039,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,7:05,BRONX,10473,,,,CASTLE HILL AVENUE,QUIMBY AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474009,Sedan,,,, +10/18/2021,9:29,BROOKLYN,11230,40.6193973,-73.9695659,"(40.6193973, -73.9695659)",AVENUE L,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469060,Sedan,Sedan,,, +10/17/2021,22:55,,,40.6778446,-73.9528108,"(40.6778446, -73.9528108)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470350,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,19:47,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468376,Sedan,,,, +10/20/2021,5:18,BROOKLYN,11207,40.6527684,-73.8862898,"(40.6527684, -73.8862898)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469240,Sedan,,,, +10/12/2021,7:45,,,40.717339,-73.8195221,"(40.717339, -73.8195221)",UNION TURNPIKE,141 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466383,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,8:34,QUEENS,11102,40.7716209,-73.9203779,"(40.7716209, -73.9203779)",,,25-13 27 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4470756,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,6:30,,,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473756,Sedan,,,, +10/11/2021,15:10,,,40.8563804,-73.8389005,"(40.8563804, -73.8389005)",PELHAM PARKWAY SOUTH,STILLWELL AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4467342,Sedan,,,, +10/13/2021,17:00,STATEN ISLAND,10306,40.577945,-74.1023153,"(40.577945, -74.1023153)",MIDLAND AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466982,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/25/2021,13:21,BROOKLYN,11225,40.6556338,-73.9598617,"(40.6556338, -73.9598617)",FLATBUSH AVENUE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4460769,Sedan,Sedan,,, +10/21/2021,10:50,BROOKLYN,11207,40.665473,-73.899998,"(40.665473, -73.899998)",DUMONT AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4469685,TLR,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,16:20,QUEENS,11429,40.711437,-73.74779,"(40.711437, -73.74779)",104 AVENUE,211 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518981,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,9:04,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468617,Sedan,,,, +10/22/2021,14:00,QUEENS,11420,40.6747902,-73.8026013,"(40.6747902, -73.8026013)",,,135-15 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470541,Sedan,,,, +10/20/2021,14:00,QUEENS,11434,40.6576456,-73.7676094,"(40.6576456, -73.7676094)",,,149-24 BREWER BOULEVARD,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4469271,Sedan,,,, +10/21/2021,13:45,MANHATTAN,10029,40.7861742,-73.945696,"(40.7861742, -73.945696)",2 AVENUE,EAST 99 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4470881,Sedan,Moped,,, +10/18/2021,15:15,QUEENS,11422,40.6668465,-73.7419348,"(40.6668465, -73.7419348)",MENTONE AVENUE,233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468887,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/14/2021,18:55,BROOKLYN,11220,40.6420413,-74.0203948,"(40.6420413, -74.0203948)",3 AVENUE,60 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,23:10,MANHATTAN,10011,40.7434485,-74.0035402,"(40.7434485, -74.0035402)",WEST 18 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469154,Sedan,Sedan,,, +10/24/2021,12:41,BROOKLYN,11207,40.6615269,-73.8940868,"(40.6615269, -73.8940868)",,,349 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470489,Sedan,Sedan,,, +10/22/2021,17:45,MANHATTAN,10002,40.7161833,-73.9807441,"(40.7161833, -73.9807441)",COLUMBIA STREET,DELANCEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469929,Bike,,,, +10/14/2021,21:04,MANHATTAN,10010,40.7372858,-73.9811165,"(40.7372858, -73.9811165)",,,384 2 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467790,PK,Bus,,, +10/23/2021,3:38,BROOKLYN,11210,40.6379752,-73.9533704,"(40.6379752, -73.9533704)",,,1318 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4470191,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/02/2021,6:52,BROOKLYN,11220,40.643734,-74.009575,"(40.643734, -74.009575)",,,564 51 STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4473430,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/02/2021,19:15,QUEENS,11355,40.752937,-73.812744,"(40.752937, -73.812744)",PARSONS BOULEVARD,KALMIA AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4473456,Station Wagon/Sport Utility Vehicle,Bike,,, +10/19/2021,19:40,QUEENS,11354,40.7639417,-73.8281463,"(40.7639417, -73.8281463)",NORTHERN BOULEVARD,UNION STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468928,Station Wagon/Sport Utility Vehicle,MOPED,,, +10/22/2021,16:05,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470155,Sedan,Sedan,,, +05/24/2021,9:35,,,40.687008,-73.82219,"(40.687008, -73.82219)",LIBERTY AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4420170,Sedan,,,, +07/23/2021,17:49,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",GRAND STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4440560,E-Bike,,,, +07/19/2021,21:35,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",ROCKAWAY AVENUE,FULTON STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4445317,Sedan,Bike,,, +08/14/2021,1:53,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447779,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,18:30,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447765,E-Bike,Sedan,,, +08/14/2021,0:04,,,40.828297,-73.95087,"(40.828297, -73.95087)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447762,Sedan,Sedan,,, +07/22/2021,21:58,STATEN ISLAND,10312,40.534622,-74.19812,"(40.534622, -74.19812)",,,1628 DRUMGOOLE ROAD WEST,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4447770,Sedan,,,, +08/12/2021,14:50,,,,,,NEPTUNE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4447758,Bike,,,, +08/14/2021,22:20,QUEENS,11356,40.78598,-73.84654,"(40.78598, -73.84654)",,,121-05 14 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447778,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,12:55,BROOKLYN,11211,40.7103368,-73.951969,"(40.7103368, -73.951969)",HOOPER STREET,SOUTH 1 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469659,Sedan,,,, +10/13/2021,8:55,MANHATTAN,10002,40.7183023,-73.9846174,"(40.7183023, -73.9846174)",,,95 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,11:39,,,40.8365577,-73.8713467,"(40.8365577, -73.8713467)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:45,,,40.6303667,-73.9737131,"(40.6303667, -73.9737131)",CHURCH AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,View Obstructed/Limited,,,,4470187,E-Bike,Convertible,,, +10/23/2021,17:50,BROOKLYN,11217,40.687535,-73.9731402,"(40.687535, -73.9731402)",,,123 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470079,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,10:57,MANHATTAN,10037,40.8101754,-73.9374076,"(40.8101754, -73.9374076)",MADISON AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4468365,Sedan,Sedan,,, +10/19/2021,7:30,MANHATTAN,10016,40.7440994,-73.9763621,"(40.7440994, -73.9763621)",EAST 33 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469070,Taxi,Bike,,, +10/15/2021,0:00,,,40.6406452,-73.7433838,"(40.6406452, -73.7433838)",ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468509,SCHOOL BUS,Sedan,,, +10/24/2021,20:00,BROOKLYN,11220,40.6383418,-74.0173526,"(40.6383418, -74.0173526)",5 AVENUE,62 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4470519,Sedan,,,, +04/15/2022,13:00,QUEENS,11428,40.725506,-73.73766,"(40.725506, -73.73766)",221 STREET,92 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519249,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:30,QUEENS,11411,40.6919827,-73.7356857,"(40.6919827, -73.7356857)",118 AVENUE,226 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,7:01,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",27 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470711,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,17:16,QUEENS,11101,40.7391115,-73.9429918,"(40.7391115, -73.9429918)",BORDEN AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467464,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,13:00,QUEENS,11355,40.7523185,-73.8323919,"(40.7523185, -73.8323919)",COLLEGE POINT BOULEVARD,AVERY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4468105,Station Wagon/Sport Utility Vehicle,Bike,,, +10/15/2021,13:30,,,40.759625,-73.9700794,"(40.759625, -73.9700794)",EAST 55 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468292,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,7:46,,,40.7536767,-73.9144654,"(40.7536767, -73.9144654)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4467893,Bus,Motorcycle,,, +10/22/2021,3:38,BROOKLYN,11230,40.6226888,-73.9618663,"(40.6226888, -73.9618663)",AVENUE K,EAST 14 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470172,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/20/2021,21:50,QUEENS,11377,40.7458297,-73.9010972,"(40.7458297, -73.9010972)",ROOSEVELT AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469953,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/15/2021,23:40,,,40.8253798,-73.9400526,"(40.8253798, -73.9400526)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467635,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,14:14,BROOKLYN,11208,40.663643,-73.86421,"(40.663643, -73.86421)",,,987 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446957,Sedan,,,, +08/14/2021,22:44,BROOKLYN,11203,40.637012,-73.935875,"(40.637012, -73.935875)",,,4210 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447241,Station Wagon/Sport Utility Vehicle,Multi-Wheeled Vehicle,,, +08/14/2021,7:25,BROOKLYN,11226,40.653576,-73.95946,"(40.653576, -73.95946)",FLATBUSH AVENUE,LENOX ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4447064,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/14/2021,10:00,QUEENS,11692,40.595074,-73.78455,"(40.595074, -73.78455)",BEACH 54 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447728,Sedan,,,, +08/13/2021,13:15,BROOKLYN,11215,40.675144,-73.98133,"(40.675144, -73.98133)",5 AVENUE,CARROLL STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4447531,Sedan,E-Bike,,, +08/14/2021,21:20,,,,,,WEST 155 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447510,Bike,Sedan,,, +08/14/2021,0:20,BROOKLYN,11205,40.695747,-73.963875,"(40.695747, -73.963875)",,,336 PARK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Alcohol Involvement,Alcohol Involvement,,,4446707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/14/2021,20:35,MANHATTAN,10009,40.725876,-73.97754,"(40.725876, -73.97754)",AVENUE C,EAST 10 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4447009,Bus,Sedan,,, +08/14/2021,18:20,BRONX,10452,40.83233,-73.9277,"(40.83233, -73.9277)",,,65 WEST 164 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4447363,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/14/2021,15:45,MANHATTAN,10005,40.709152,-74.01055,"(40.709152, -74.01055)",LIBERTY STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447124,Motorcycle,Bike,,, +08/13/2021,23:43,QUEENS,11436,40.67247,-73.79987,"(40.67247, -73.79987)",140 STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4447482,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,18:25,BROOKLYN,11233,40.671608,-73.91695,"(40.671608, -73.91695)",PARK PLACE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447573,Bus,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,17:45,,,40.686264,-73.9567,"(40.686264, -73.9567)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447632,Sedan,Sedan,,, +08/14/2021,11:30,QUEENS,11413,40.679024,-73.73673,"(40.679024, -73.73673)",131 AVENUE,231 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446743,Sedan,,,, +08/14/2021,12:00,QUEENS,11378,40.715187,-73.91106,"(40.715187, -73.91106)",55 STREET,NURGE AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4447133,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,12:20,BROOKLYN,11215,40.665863,-73.98906,"(40.665863, -73.98906)",,,545 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447529,Station Wagon/Sport Utility Vehicle,Dump,,, +08/14/2021,19:40,,,40.85315,-73.90561,"(40.85315, -73.90561)",EAST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447564,Sedan,Sedan,,, +08/14/2021,16:54,,,40.709923,-73.99047,"(40.709923, -73.99047)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447462,Sedan,Sedan,,, +08/14/2021,9:13,BROOKLYN,11236,40.636227,-73.88595,"(40.636227, -73.88595)",EAST 102 STREET,SEAVIEW AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4446790,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/14/2021,13:45,QUEENS,11354,40.76275,-73.83434,"(40.76275, -73.83434)",KING ROAD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446920,Sedan,Sedan,,, +08/14/2021,7:05,,,40.69687,-73.923035,"(40.69687, -73.923035)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4447252,Sedan,Sedan,Sedan,, +08/10/2021,17:00,,,40.822052,-73.94406,"(40.822052, -73.94406)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driverless/Runaway Vehicle,,,,4447749,Sedan,,,, +08/14/2021,16:50,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447293,Sedan,,,, +08/14/2021,22:30,QUEENS,11361,40.7636,-73.77098,"(40.7636, -73.77098)",BELL BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447392,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,10:00,STATEN ISLAND,10306,40.582108,-74.11049,"(40.582108, -74.11049)",,,2052 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4447436,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,20:55,MANHATTAN,10002,40.71103,-73.9806,"(40.71103, -73.9806)",FDR DRIVE,JACKSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446891,Sedan,,,, +08/14/2021,16:55,BROOKLYN,11209,40.62149,-74.02622,"(40.62149, -74.02622)",86 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446853,Sedan,,,, +08/13/2021,10:00,BROOKLYN,11212,40.670353,-73.90618,"(40.670353, -73.90618)",,,1812 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447593,Sedan,,,, +08/13/2021,23:30,BROOKLYN,11214,40.606674,-73.99252,"(40.606674, -73.99252)",80 STREET,21 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4447618,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,7:50,BROOKLYN,11220,,,,52 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447687,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,10:41,QUEENS,11367,40.726048,-73.816154,"(40.726048, -73.816154)",,,150-19 73 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446883,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,15:15,QUEENS,11422,40.658882,-73.72963,"(40.658882, -73.72963)",144 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4446855,Sedan,Bike,,, +08/14/2021,7:48,,,40.847107,-73.90843,"(40.847107, -73.90843)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447545,Sedan,Sedan,,, +08/14/2021,16:00,,,40.60739,-73.943214,"(40.60739, -73.943214)",AVENUE R,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4446908,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,1:56,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446829,Sedan,Sedan,,, +08/12/2021,3:28,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",EAST 126 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4447434,Sedan,Sedan,,, +08/14/2021,12:30,QUEENS,11427,40.732113,-73.73247,"(40.732113, -73.73247)",,,86-35 235 COURT,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4447101,Sedan,,,, +08/14/2021,11:30,,,40.678318,-73.94693,"(40.678318, -73.94693)",NEW YORK AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447157,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/13/2021,10:00,MANHATTAN,10035,40.80307,-73.93838,"(40.80307, -73.93838)",EAST 123 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,15:00,QUEENS,11434,40.670868,-73.781425,"(40.670868, -73.781425)",134 AVENUE,155 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4447313,Sedan,Taxi,,, +08/13/2021,0:00,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4447445,Sedan,,,, +08/14/2021,12:30,QUEENS,11104,40.743374,-73.92056,"(40.743374, -73.92056)",44 STREET,QUEENS BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446837,Bike,Sedan,,, +08/14/2021,16:35,QUEENS,11412,40.70564,-73.75048,"(40.70564, -73.75048)",FRANCIS LEWIS BOULEVARD,111 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446901,Station Wagon/Sport Utility Vehicle,MOPED,,, +08/14/2021,20:58,BROOKLYN,11226,40.65525,-73.96091,"(40.65525, -73.96091)",,,210A PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447046,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,15:00,BROOKLYN,11233,40.672104,-73.91689,"(40.672104, -73.91689)",,,401 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447589,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,9:45,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,21:28,,,40.5794,-74.16949,"(40.5794, -74.16949)",RICHMOND AVENUE,PLATINUM AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4447290,Sedan,Van,,, +06/18/2021,17:15,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447498,Taxi,Sedan,,, +07/24/2021,0:30,,,40.81569,-73.958305,"(40.81569, -73.958305)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447594,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,20:53,,,,,,KISSENA BOULEVARD,HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446921,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,15:05,BROOKLYN,11216,40.686905,-73.94463,"(40.686905, -73.94463)",GATES AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447660,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,17:37,BRONX,10473,40.821804,-73.87664,"(40.821804, -73.87664)",STORY AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446983,Sedan,Sedan,,, +08/12/2021,18:15,BROOKLYN,11212,40.661983,-73.90198,"(40.661983, -73.90198)",RIVERDALE AVENUE,POWELL STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447549,Sedan,Sedan,,, +08/14/2021,2:40,QUEENS,11419,40.684772,-73.83401,"(40.684772, -73.83401)",,,103-30 108 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4446863,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,15:15,QUEENS,11411,40.697933,-73.7417,"(40.697933, -73.7417)",,,115-101 217 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447480,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,12:45,QUEENS,11423,40.7133,-73.7646,"(40.7133, -73.7646)",,,195-41 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447347,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,0:30,,,40.52858,-74.22184,"(40.52858, -74.22184)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4447427,Sedan,,,, +08/11/2021,16:15,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,22:48,MANHATTAN,10035,40.796,-73.92897,"(40.796, -73.92897)",,,70 PALADINO AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447474,Sedan,Box Truck,,, +08/12/2021,22:40,BROOKLYN,11215,40.67146,-73.99103,"(40.67146, -73.99103)",3 AVENUE,9 STREET,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4447538,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,4:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447087,Sedan,Station Wagon/Sport Utility Vehicle,C1,, +08/11/2021,9:30,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447518,Station Wagon/Sport Utility Vehicle,Bike,,, +08/14/2021,22:15,,,40.79599,-73.96896,"(40.79599, -73.96896)",WEST 99 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447136,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,21:00,BROOKLYN,11203,40.657154,-73.94736,"(40.657154, -73.94736)",,,690 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446999,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,1:40,BROOKLYN,11208,40.67994,-73.88468,"(40.67994, -73.88468)",FULTON STREET,ELTON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447276,Sedan,Sedan,,, +07/24/2021,6:00,,,40.84366,-73.92005,"(40.84366, -73.92005)",WEST 172 STREET,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,Unspecified,4447582,Sedan,Sedan,Sedan,Sedan,Sedan +08/14/2021,17:13,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",TINTON AVENUE,EAST 163 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4446928,Sedan,,,, +10/22/2021,23:35,,,40.8402313,-73.8801001,"(40.8402313, -73.8801001)",EAST TREMONT AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470279,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,5:40,,,40.813797,-73.94987,"(40.813797, -73.94987)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4447602,Sedan,Sedan,,, +08/14/2021,21:23,BROOKLYN,11206,40.696754,-73.93715,"(40.696754, -73.93715)",,,1086 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447198,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,15:45,,,40.842422,-73.928185,"(40.842422, -73.928185)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447016,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,6:40,BRONX,10466,40.896694,-73.853516,"(40.896694, -73.853516)",EAST 237 STREET,BYRON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447199,Sedan,Sedan,,, +08/14/2021,13:55,QUEENS,11419,40.692966,-73.82511,"(40.692966, -73.82511)",95 AVENUE,121 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Driver Inattention/Distraction,,,,4447126,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/14/2021,23:20,,,40.815693,-73.948685,"(40.815693, -73.948685)",WEST 133 STREET,,,2,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4447523,Pick-up Truck,E-Bike,,, +08/14/2021,3:45,,,40.774452,-73.76615,"(40.774452, -73.76615)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4446708,Sedan,Sedan,,, +08/09/2021,23:30,MANHATTAN,10027,40.81218,-73.955246,"(40.81218, -73.955246)",,,430 WEST 125 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447557,E-Bike,Sedan,,, +08/06/2021,10:12,BROOKLYN,11221,40.68606,-73.925934,"(40.68606, -73.925934)",,,799 JEFFERSON AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,10:10,,,40.726166,-73.99837,"(40.726166, -73.99837)",WEST HOUSTON STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4446964,Bike,,,, +08/14/2021,0:00,MANHATTAN,10035,40.80106,-73.93173,"(40.80106, -73.93173)",,,2385 1 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447466,Sedan,Sedan,,, +08/06/2021,12:15,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447630,Sedan,Sedan,,, +08/07/2021,6:12,,,40.8157,-73.96369,"(40.8157, -73.96369)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4447597,Sedan,,,, +08/13/2021,19:40,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4447509,Taxi,Sedan,,, +08/14/2021,10:31,MANHATTAN,10016,40.7441,-73.97637,"(40.7441, -73.97637)",2 AVENUE,EAST 33 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4446748,Bike,Ambulance,,, +08/02/2021,10:40,BROOKLYN,11215,40.671402,-73.99439,"(40.671402, -73.99439)",11 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447530,Tractor Truck Gasoline,Sedan,,, +08/14/2021,18:11,BRONX,10460,40.835884,-73.88341,"(40.835884, -73.88341)",BOONE AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446927,Sedan,,,, +10/24/2021,23:24,BROOKLYN,11206,40.6984345,-73.9441646,"(40.6984345, -73.9441646)",,,192 THROOP AVENUE,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4470513,Sedan,Sedan,,, +08/14/2021,21:30,QUEENS,11421,40.694782,-73.85258,"(40.694782, -73.85258)",WOODHAVEN BOULEVARD,86 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447128,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/14/2021,18:30,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,22:45,,,40.81739,-73.84389,"(40.81739, -73.84389)",ZEREGA AVENUE,LACOMBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447003,Sedan,,,, +08/13/2021,8:00,MANHATTAN,10002,40.715916,-73.99311,"(40.715916, -73.99311)",,,46 ELDRIDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447461,Station Wagon/Sport Utility Vehicle,Van,,, +08/03/2021,15:30,MANHATTAN,10002,40.71286,-73.99649,"(40.71286, -73.99649)",,,19 HENRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447488,Taxi,Box Truck,,, +08/14/2021,13:00,,,40.665535,-73.93699,"(40.665535, -73.93699)",CROWN STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4447072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/23/2021,16:30,,,,,,QUEENS MIDTOWN TUNNEL,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4447729,Sedan,,,, +08/12/2021,7:40,BROOKLYN,11212,40.666885,-73.911964,"(40.666885, -73.911964)",SUTTER AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447621,Bus,Sedan,,, +08/14/2021,18:45,BROOKLYN,11212,,,,Pitkin avenue,Mother Gaston boulevard,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447548,Station Wagon/Sport Utility Vehicle,Bike,,, +08/14/2021,12:38,QUEENS,11413,40.68277,-73.74821,"(40.68277, -73.74821)",,,219-11 131 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446858,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,19:30,BRONX,10454,40.81302,-73.92296,"(40.81302, -73.92296)",,,340 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446886,Sedan,,,, +08/14/2021,1:58,QUEENS,11417,40.675983,-73.84975,"(40.675983, -73.84975)",SUTTER AVENUE,87 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447327,Sedan,Sedan,,, +08/06/2021,10:43,,,,,,WEST 145 STREET,HARLEM RIV PARK BRIDGE,,1,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4447609,E-Scooter,Taxi,,, +08/14/2021,19:30,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446958,Sedan,,,, +08/13/2021,7:10,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447451,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/12/2021,0:30,BROOKLYN,11233,40.67608,-73.906136,"(40.67608, -73.906136)",SACKMAN STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447571,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,14:06,QUEENS,11377,40.74807,-73.904305,"(40.74807, -73.904305)",,,38-02 59 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446838,Sedan,Box Truck,,, +08/14/2021,20:30,BROOKLYN,11207,40.68789,-73.90724,"(40.68789, -73.90724)",COOPER STREET,CENTRAL AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447215,Taxi,Bike,,, +08/14/2021,6:50,BROOKLYN,11235,40.583687,-73.94487,"(40.583687, -73.94487)",EMMONS AVENUE,DOOLEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447349,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,11:35,,,,,,HORACE HARDING EXPRESSWAY,MAIN STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4446875,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,21:55,BROOKLYN,11226,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,PARADE PLACE,,1,0,0,0,1,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4447045,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/14/2021,18:45,BRONX,10459,40.81614,-73.894875,"(40.81614, -73.894875)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447499,Motorcycle,,,, +08/14/2021,22:06,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,14:40,MANHATTAN,10013,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,MULBERRY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447457,Sedan,,,, +08/14/2021,2:30,BRONX,10462,40.8467,-73.85933,"(40.8467, -73.85933)",,,900 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446933,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,10:48,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,CLARENDON ROAD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4447053,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,12:20,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447709,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,14:24,MANHATTAN,10002,40.71715,-73.99438,"(40.71715, -73.99438)",,,73 CHRYSTIE STREET,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4447694,Sedan,,,, +07/26/2021,8:20,,,40.817924,-73.94974,"(40.817924, -73.94974)",SAINT NICHOLAS TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447590,Sedan,,,, +07/23/2021,4:45,MANHATTAN,10006,40.70971,-74.01285,"(40.70971, -74.01285)",GREENWICH STREET,CEDAR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447493,Box Truck,,,, +07/23/2021,18:20,BROOKLYN,11216,40.679276,-73.953094,"(40.679276, -73.953094)",,,1285 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,22:26,QUEENS,11434,40.67769,-73.78873,"(40.67769, -73.78873)",121 AVENUE,153 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4447304,Sedan,Motorcycle,,, +08/14/2021,0:00,BROOKLYN,11205,40.695698,-73.96405,"(40.695698, -73.96405)",,,332 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446786,Sedan,,,, +08/12/2021,21:32,,,,,,East 122 street,1 ave,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4447444,Sedan,,,, +08/14/2021,19:02,BROOKLYN,11235,40.589108,-73.96049,"(40.589108, -73.96049)",,,2765 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4446909,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +08/14/2021,23:25,,,40.693855,-73.76094,"(40.693855, -73.76094)",191 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,19:00,,,40.69426,-73.91036,"(40.69426, -73.91036)",JEFFERSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447251,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,10:00,QUEENS,11373,40.741653,-73.880745,"(40.741653, -73.880745)",,,82-75 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447099,Sedan,Beverage Truck,,, +08/13/2021,11:19,BROOKLYN,11238,40.672832,-73.96908,"(40.672832, -73.96908)",,,10 GRAND ARMY PLAZA,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447704,Ambulance,,,, +08/13/2021,22:30,BRONX,10457,40.847393,-73.90463,"(40.847393, -73.90463)",EAST 176 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447541,Sedan,,,, +08/14/2021,15:06,BROOKLYN,11205,40.690693,-73.95728,"(40.690693, -73.95728)",DE KALB AVENUE,FRANKLIN AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447156,E-Bike,Taxi,,, +08/13/2021,15:08,BROOKLYN,11236,40.642673,-73.91972,"(40.642673, -73.91972)",,,1397 RALPH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4447494,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,0:00,QUEENS,11385,40.7110194,-73.8600706,"(40.7110194, -73.8600706)",,,7212 Woodhaven Boulevard,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466535,Sedan,Carry All,,, +08/14/2021,9:00,,,40.75201,-73.93016,"(40.75201, -73.93016)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4446982,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,9:10,STATEN ISLAND,10306,40.578377,-74.09404,"(40.578377, -74.09404)",MASON AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447452,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,21:10,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4447476,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,16:00,BROOKLYN,11218,40.63595,-73.96607,"(40.63595, -73.96607)",,,1208 DITMAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447052,Sedan,,,, +08/14/2021,20:28,,,,,,OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447379,Station Wagon/Sport Utility Vehicle,Van,,, +08/14/2021,9:00,BROOKLYN,11207,40.66682,-73.886955,"(40.66682, -73.886955)",,,558 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446827,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,3:10,,,40.864525,-73.92663,"(40.864525, -73.92663)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447176,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,15:00,BROOKLYN,11231,40.68182,-73.99235,"(40.68182, -73.99235)",,,396 SACKETT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446889,Sedan,Sedan,,, +08/14/2021,3:30,BRONX,10469,40.869385,-73.85762,"(40.869385, -73.85762)",BOSTON ROAD,HONE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4447201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/14/2021,1:00,MANHATTAN,10011,40.739136,-74.00109,"(40.739136, -74.00109)",,,248 WEST 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446963,Motorcycle,,,, +08/14/2021,3:55,MANHATTAN,10034,40.860527,-73.91939,"(40.860527, -73.91939)",WEST 202 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447175,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,12:37,BROOKLYN,11217,40.67722,-73.97991,"(40.67722, -73.97991)",,,181 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447517,Bike,Sedan,,, +08/14/2021,14:00,QUEENS,11361,40.760544,-73.76727,"(40.760544, -73.76727)",,,215-05 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447077,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,18:40,BROOKLYN,11220,40.642548,-74.016655,"(40.642548, -74.016655)",4 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447524,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,1:15,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4446725,Sedan,Sedan,,, +08/14/2021,9:45,BROOKLYN,11212,40.66251,-73.91083,"(40.66251, -73.91083)",,,363 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447558,Box Truck,Sedan,Sedan,, +07/03/2021,19:06,MANHATTAN,10013,0,0,"(0.0, 0.0)",,,106 MOTT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447465,TRAILER,,,, +08/08/2021,16:30,MANHATTAN,10029,40.794132,-73.94282,"(40.794132, -73.94282)",EAST 110 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447644,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,17:00,QUEENS,11004,40.736553,-73.71194,"(40.736553, -73.71194)",256 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447612,Sedan,Sedan,,, +08/14/2021,1:10,,,40.70793,-73.78432,"(40.70793, -73.78432)",176 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447352,Sedan,Sedan,,, +08/14/2021,0:00,,,40.780952,-73.819084,"(40.780952, -73.819084)",20 ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4446873,Sedan,,,, +08/14/2021,18:00,BROOKLYN,11204,40.609512,-73.98957,"(40.609512, -73.98957)",BAY RIDGE PARKWAY,21 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446878,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,19:30,MANHATTAN,10027,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447555,Motorcycle,Sedan,,, +08/14/2021,21:45,,,40.7024,-73.7431,"(40.7024, -73.7431)",COLFAX STREET,212 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446897,Sedan,Sedan,,, +08/14/2021,21:00,QUEENS,11420,40.677258,-73.81873,"(40.677258, -73.81873)",120 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4447331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,21:10,MANHATTAN,10027,40.810062,-73.95497,"(40.810062, -73.95497)",WEST 123 STREET,MORNINGSIDE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447578,Sedan,Sedan,,, +08/14/2021,3:35,BRONX,10459,40.8338,-73.88323,"(40.8338, -73.88323)",SHERIDAN EXPRESSWAY,EAST 173 STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Unsafe Speed,,,,4446931,Sedan,Taxi,,, +08/02/2021,8:35,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447428,Station Wagon/Sport Utility Vehicle,,,, +07/30/2021,18:00,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4447608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,16:50,BROOKLYN,11208,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,DREW STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446832,Station Wagon/Sport Utility Vehicle,Bus,,, +08/14/2021,16:00,BRONX,10469,40.86179,-73.85765,"(40.86179, -73.85765)",,,2415 WILLIAMSBRIDGE ROAD,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4447281,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/14/2021,2:00,BRONX,10451,40.821484,-73.91218,"(40.821484, -73.91218)",3 AVENUE,EAST 158 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447408,Sedan,,,, +08/09/2021,18:25,BRONX,10473,40.818382,-73.86885,"(40.818382, -73.86885)",,,1680 SEWARD AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4447450,Sedan,,,, +08/14/2021,1:45,BRONX,10455,40.81313,-73.90863,"(40.81313, -73.90863)",,,730 EAST 149 STREET,1,0,1,0,0,0,0,0,,,,,,4446843,,,,, +08/14/2021,1:40,QUEENS,11427,40.72558,-73.75262,"(40.72558, -73.75262)",213 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4446896,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,15:00,,,40.686497,-73.9168,"(40.686497, -73.9168)",BROADWAY,HANCOCK STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447591,Bike,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,3:30,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,5:30,BRONX,10456,40.830982,-73.90082,"(40.830982, -73.90082)",,,638 EAST 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446926,Sedan,,,, +08/14/2021,11:05,QUEENS,11379,40.71638,-73.89751,"(40.71638, -73.89751)",ELIOT AVENUE,MOUNT OLIVET CRESCENT,,1,0,1,0,0,0,0,0,,,,,,4447129,,,,, +08/12/2021,16:30,BROOKLYN,11212,40.674553,-73.90566,"(40.674553, -73.90566)",,,1691 EAST NEW YORK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447583,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,19:29,MANHATTAN,10038,40.711777,-73.99971,"(40.711777, -73.99971)",SAINT JAMES PLACE,MADISON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447464,Bike,,,, +12/03/2021,9:15,QUEENS,11373,40.738018,-73.87068,"(40.738018, -73.87068)",92 STREET,54 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486369,,,,, +08/13/2021,23:03,BROOKLYN,11233,40.678905,-73.9164,"(40.678905, -73.9164)",SARATOGA AVENUE,HULL STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Traffic Control Disregarded,,,,4447547,Sedan,Sedan,,, +08/14/2021,15:00,,,40.665737,-73.75194,"(40.665737, -73.75194)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/14/2021,19:00,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446959,Sedan,,,, +08/14/2021,12:38,,,40.624912,-74.146706,"(40.624912, -74.146706)",FOREST AVENUE,WILLOW ROAD WEST,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446809,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,13:00,BROOKLYN,11235,40.583733,-73.94698,"(40.583733, -73.94698)",,,2027 EMMONS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446914,Sedan,,,, +08/14/2021,7:53,,,40.697063,-73.76971,"(40.697063, -73.76971)",DUNKIRK STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4447649,Pick-up Truck,Van,Sedan,Sedan, +08/14/2021,4:32,BROOKLYN,11205,40.698677,-73.95886,"(40.698677, -73.95886)",FLUSHING AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447259,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,1:42,BROOKLYN,11234,40.62621,-73.927666,"(40.62621, -73.927666)",UTICA AVENUE,FLATLANDS AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4446905,Station Wagon/Sport Utility Vehicle,Bike,,, +08/08/2021,9:00,QUEENS,11691,40.596085,-73.769966,"(40.596085, -73.769966)",,,37-10 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447733,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:45,,,,,,PROSPECT PARK WEST,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447515,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,19:25,MANHATTAN,10035,40.798874,-73.93819,"(40.798874, -73.93819)",,,234 EAST 118 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,22:45,,,40.667465,-73.77176,"(40.667465, -73.77176)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4447004,Motorcycle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/14/2021,20:25,QUEENS,11412,40.691994,-73.76111,"(40.691994, -73.76111)",190 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447321,Sedan,Sedan,,, +08/14/2021,23:35,STATEN ISLAND,10308,40.550533,-74.15606,"(40.550533, -74.15606)",LAMOKA AVENUE,ABINGDON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447441,Sedan,Sedan,,, +08/14/2021,15:16,QUEENS,11106,40.755398,-73.93182,"(40.755398, -73.93182)",37 AVENUE,30 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4447378,Moped,Sedan,,, +08/14/2021,17:40,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,CANAL STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4447122,Bike,,,, +08/13/2021,13:27,,,40.710175,-74.001144,"(40.710175, -74.001144)",PEARL STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,17:54,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4447569,Sedan,Bike,,, +08/14/2021,11:03,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4446991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/06/2021,15:30,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447500,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,17:48,MANHATTAN,10029,40.787064,-73.94194,"(40.787064, -73.94194)",EAST 102 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4446976,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +08/14/2021,0:15,,,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446752,Sedan,Sedan,,, +08/12/2021,20:24,BROOKLYN,11217,,,,PROSPECT PLACE,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447526,Bike,,,, +08/01/2021,22:30,,,40.732384,-74.01036,"(40.732384, -74.01036)",WEST STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4447670,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,16:50,BRONX,10456,40.82161,-73.90599,"(40.82161, -73.90599)",,,698 EAST 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446887,Sedan,Van,,, +08/14/2021,2:00,BROOKLYN,11236,40.65093,-73.920425,"(40.65093, -73.920425)",,,7 EAST 88 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447054,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,16:34,,,40.66895,-73.9339,"(40.66895, -73.9339)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4447623,Sedan,,,, +08/14/2021,20:37,BRONX,10453,40.85592,-73.9172,"(40.85592, -73.9172)",CEDAR AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447566,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,15:22,MANHATTAN,10002,40.71958,-73.991585,"(40.71958, -73.991585)",,,48 DELANCEY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,17:00,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",AVENUE J,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447073,Sedan,,,, +08/09/2020,15:20,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,9:40,,,40.69428,-73.92674,"(40.69428, -73.92674)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447250,Sedan,,,, +08/14/2021,15:42,MANHATTAN,10002,40.714268,-73.99415,"(40.714268, -73.99415)",DIVISION STREET,FORSYTH STREET,,1,0,0,0,1,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4447477,Station Wagon/Sport Utility Vehicle,Bike,,, +08/14/2021,13:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4447030,Sedan,Sedan,Sedan,Sedan, +08/14/2021,14:54,BRONX,10462,40.855278,-73.86767,"(40.855278, -73.86767)",,,2158 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4446934,Sedan,Sedan,,, +08/12/2021,11:05,BROOKLYN,11238,,,,,,147 PROSPECT PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447520,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,8:30,BROOKLYN,11204,40.620106,-73.98411,"(40.620106, -73.98411)",,,1942 60 STREET,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447536,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/14/2021,17:35,,,40.63515,-74.14068,"(40.63515, -74.14068)",NICHOLAS AVENUE,CHARLES AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4447297,Pick-up Truck,Sedan,,, +08/13/2021,17:55,MANHATTAN,10035,40.80031,-73.93229,"(40.80031, -73.93229)",,,2369 1 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4447458,E-Bike,Bike,,, +08/14/2021,16:00,STATEN ISLAND,10307,40.509056,-74.24339,"(40.509056, -74.24339)",,,301 YETMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447090,Station Wagon/Sport Utility Vehicle,,,, +07/25/2021,15:40,,,40.733612,-73.999565,"(40.733612, -73.999565)",AVENUE OF THE AMERICAS,,,2,0,1,0,1,0,0,0,Unspecified,,,,,4447723,Bike,,,, +08/14/2021,4:23,BRONX,10469,40.87622,-73.84891,"(40.87622, -73.84891)",,,3443 BOSTON ROAD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4447194,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,19:06,BROOKLYN,11233,40.675247,-73.90555,"(40.675247, -73.90555)",,,2404 PACIFIC STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4447575,Sedan,Sedan,Sedan,, +08/12/2021,22:30,BROOKLYN,11236,40.65187,-73.90456,"(40.65187, -73.90456)",EAST 101 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447492,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,13:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447627,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,20:00,BROOKLYN,11210,40.617973,-73.9472,"(40.617973, -73.9472)",,,1362 EAST 28 STREET,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,Unspecified,,,4447204,Station Wagon/Sport Utility Vehicle,Sedan,Convertible,, +08/14/2021,12:54,BROOKLYN,11204,40.61021,-73.976265,"(40.61021, -73.976265)",,,1514 WEST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447616,Sedan,Sedan,,, +07/20/2021,11:37,MANHATTAN,10002,40.715622,-73.99428,"(40.715622, -73.99428)",CANAL STREET,FORSYTH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447495,Station Wagon/Sport Utility Vehicle,Bike,,, +08/14/2021,2:30,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,13:10,,,40.844578,-73.902695,"(40.844578, -73.902695)",CROSS BRONX EXPRESSWAY,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4447560,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,21:50,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447521,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,20:30,BROOKLYN,11222,40.735546,-73.9598,"(40.735546, -73.9598)",,,2 COMMERCIAL STREET,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4446989,Motorscooter,,,, +08/14/2021,6:30,,,40.70537,-73.775826,"(40.70537, -73.775826)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447353,Sedan,Sedan,,, +08/14/2021,20:20,BROOKLYN,11210,40.623875,-73.93547,"(40.623875, -73.93547)",KINGS HIGHWAY,EAST 40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446879,Sedan,,,, +08/14/2021,16:25,QUEENS,11436,40.681873,-73.798515,"(40.681873, -73.798515)",,,115-59 144 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4447343,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,17:10,BRONX,10453,40.849964,-73.91416,"(40.849964, -73.91416)",WEST TREMONT AVENUE,HARRISON AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4447540,Sedan,Moped,,, +08/14/2021,8:30,MANHATTAN,10035,40.798836,-73.93936,"(40.798836, -73.93936)",,,2149 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447471,PK,,,, +08/14/2021,15:00,,,40.612507,-74.03139,"(40.612507, -74.03139)",99 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447107,Sedan,,,, +08/14/2021,9:37,BROOKLYN,11212,40.663773,-73.92307,"(40.663773, -73.92307)",,,107 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,7:19,MANHATTAN,10035,,,,,,64 Sunken Garden Loop,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447453,Flat Bed,Sedan,,, +08/14/2021,9:40,QUEENS,11365,40.734623,-73.78568,"(40.734623, -73.78568)",,,69-02A 186 LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447268,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,23:00,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4446903,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,19:30,,,40.7342811,-73.8646235,"(40.7342811, -73.8646235)",JUNCTION BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,Turning Improperly,Unspecified,Unspecified,,4468669,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/16/2021,20:10,MANHATTAN,10030,40.815975,-73.94322,"(40.815975, -73.94322)",WEST 136 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447604,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,9:00,,,40.594025,-73.93872,"(40.594025, -73.93872)",AVENUE X,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4446834,Sedan,Sedan,,, +08/12/2021,23:37,,,40.662556,-73.91963,"(40.662556, -73.91963)",DUMONT AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4447584,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,17:12,,,40.60309,-73.99262,"(40.60309, -73.99262)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447286,Pick-up Truck,Sedan,,, +08/14/2021,12:00,BROOKLYN,11203,40.642735,-73.92941,"(40.642735, -73.92941)",,,1233 UTICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447051,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,7:55,BROOKLYN,11217,40.67645,-73.976425,"(40.67645, -73.976425)",,,99 LINCOLN PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447703,Dump,,,, +08/13/2021,20:15,BROOKLYN,11212,40.668995,-73.91058,"(40.668995, -73.91058)",,,452 ROCKAWAY AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447552,Sedan,Bike,,, +08/11/2021,18:06,,,40.67994,-73.941216,"(40.67994, -73.941216)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4447640,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/14/2021,18:49,BROOKLYN,11210,40.623875,-73.93547,"(40.623875, -73.93547)",KINGS HIGHWAY,EAST 40 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4446906,Taxi,,,, +08/14/2021,15:50,BROOKLYN,11239,40.64816,-73.88212,"(40.64816, -73.88212)",,,1346 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446951,Sedan,,,, +08/13/2021,22:11,MANHATTAN,10037,40.81467,-73.93622,"(40.81467, -73.93622)",EAST 138 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447459,Taxi,Taxi,,, +08/04/2021,17:44,,,40.776955,-73.95956,"(40.776955, -73.95956)",EAST 81 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4447425,Bike,,,, +08/10/2021,13:25,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4447432,Sedan,,,, +08/10/2021,11:30,MANHATTAN,10031,40.83022,-73.94769,"(40.83022, -73.94769)",BROADWAY,WEST 151 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447724,Sedan,Sedan,,, +08/14/2021,15:51,BROOKLYN,11223,40.60591,-73.967,"(40.60591, -73.967)",,,1755 OCEAN PARKWAY,1,0,0,0,1,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4446831,Sedan,E-Bike,,, +08/14/2021,18:15,BROOKLYN,11217,40.68962,-73.97313,"(40.68962, -73.97313)",DE KALB AVENUE,WASHINGTON PARK,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4447164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,12:30,QUEENS,11691,40.599728,-73.76388,"(40.599728, -73.76388)",BEACH CHANNEL DRIVE,HARTMAN LANE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4447746,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,15:07,QUEENS,11374,40.73011,-73.86509,"(40.73011, -73.86509)",SAUNDERS STREET,63 AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4446866,Sedan,Sedan,Sedan,, +08/07/2021,23:40,QUEENS,11372,,,,ROOSEVELT AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447737,Sedan,,,, +08/14/2021,10:15,,,40.63954,-74.13218,"(40.63954, -74.13218)",PORT RICHMOND AVENUE,CHURCH STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447296,Sedan,Sedan,,, +08/14/2021,12:07,BROOKLYN,11207,40.661236,-73.89266,"(40.661236, -73.89266)",,,652 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446804,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,8:30,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446961,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,22:40,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447400,Sedan,Sedan,,, +08/13/2021,6:00,BROOKLYN,11236,40.63999,-73.89014,"(40.63999, -73.89014)",,,1280 EAST 102 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447652,Sedan,,,, +08/14/2021,18:16,BROOKLYN,11207,40.69003,-73.911,"(40.69003, -73.911)",CENTRAL AVENUE,HALSEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447253,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,0:20,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4446892,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,22:30,MANHATTAN,10030,40.814445,-73.94434,"(40.814445, -73.94434)",,,2274 7 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4447532,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/14/2021,12:10,BROOKLYN,11220,40.65104,-74.0111,"(40.65104, -74.0111)",3 AVENUE,44 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4447504,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,14:30,BROOKLYN,11210,40.636684,-73.94129,"(40.636684, -73.94129)",FARRAGUT ROAD,EAST 37 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4447060,Box Truck,Sedan,,, +08/14/2021,4:24,BROOKLYN,11218,40.638523,-73.97319,"(40.638523, -73.97319)",CORTELYOU ROAD,OCEAN PARKWAY,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4447008,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,13:00,MANHATTAN,10013,40.718536,-73.999054,"(40.718536, -73.999054)",,,202A HESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447463,Sedan,Sedan,,, +08/10/2021,12:42,BROOKLYN,11225,40.66623,-73.9499,"(40.66623, -73.9499)",,,300 CROWN STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447484,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,16:46,MANHATTAN,10009,40.73092,-73.981445,"(40.73092, -73.981445)",,,409 EAST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447074,Motorscooter,,,, +08/09/2021,20:40,BROOKLYN,11205,40.693172,-73.9711,"(40.693172, -73.9711)",,,378 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447679,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,23:55,QUEENS,11368,40.755703,-73.86624,"(40.755703, -73.86624)",102 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446888,Sedan,E-Bike,,, +08/14/2021,2:20,BROOKLYN,11201,40.69056,-73.98511,"(40.69056, -73.98511)",FULTON STREET,HOYT STREET,,0,1,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447625,Sedan,E-Scooter,,, +08/14/2021,14:50,QUEENS,11422,40.658768,-73.73768,"(40.658768, -73.73768)",249 STREET,145 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4446856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,23:00,MANHATTAN,10013,40.71755,-73.99932,"(40.71755, -73.99932)",CANAL STREET,BAXTER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447546,Sedan,Sedan,,, +08/14/2021,18:24,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4447314,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,11:30,,,,,,GREENPOINT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447438,Sedan,Box Truck,,, +08/14/2021,14:04,MANHATTAN,10016,40.7491,-73.984085,"(40.7491, -73.984085)",5 AVENUE,WEST 35 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446919,Sedan,Pedicab,,, +08/14/2021,21:20,MANHATTAN,10013,40.72034,-74.00223,"(40.72034, -74.00223)",HOWARD STREET,MERCER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447123,Sedan,Sedan,,, +08/14/2021,16:37,QUEENS,11412,40.69345,-73.76506,"(40.69345, -73.76506)",NEWBURG STREET,TURIN DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447368,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/14/2021,16:57,,,40.697433,-73.93123,"(40.697433, -73.93123)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447247,Sedan,LIMO,,, +08/14/2021,1:54,BRONX,10454,40.807507,-73.92701,"(40.807507, -73.92701)",EAST 134 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4446850,Sedan,E-Scooter,,, +08/14/2021,7:40,,,40.7568,-73.77698,"(40.7568, -73.77698)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Steering Failure,,,,,4446776,Sedan,,,, +08/14/2021,10:52,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4446966,Sedan,Sedan,,, +07/06/2021,21:47,QUEENS,11101,40.741768,-73.952835,"(40.741768, -73.952835)",,,10-55 51 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447595,Sedan,,,, +08/14/2021,2:30,QUEENS,11385,,,,,,56-06 COOPER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447132,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,18:59,QUEENS,11357,40.78058,-73.81431,"(40.78058, -73.81431)",20 ROAD,150 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4446922,Sedan,Sedan,,, +08/12/2021,12:30,BRONX,10474,40.812916,-73.88122,"(40.812916, -73.88122)",RANDALL AVENUE,HALLECK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447513,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,6:54,MANHATTAN,10027,40.809628,-73.94584,"(40.809628, -73.94584)",,,141 WEST 127 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4447527,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +08/11/2021,16:39,MANHATTAN,10013,40.717834,-74.00079,"(40.717834, -74.00079)",,,99 WALKER STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447469,Sedan,Bike,,, +08/14/2021,21:25,,,40.86028,-73.89405,"(40.86028, -73.89405)",MARION AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447567,Sedan,,,, +08/14/2021,15:36,BROOKLYN,11222,40.730587,-73.95772,"(40.730587, -73.95772)",FRANKLIN STREET,KENT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4446992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,22:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447478,Sedan,,,, +06/14/2021,16:20,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447592,Sedan,TOW TRUCK,,, +08/14/2021,19:00,,,40.612495,-74.159966,"(40.612495, -74.159966)",,,453 HILLMAN AVENUE,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4447288,Sedan,,,, +08/08/2021,3:54,BROOKLYN,11228,40.61198,-74.01249,"(40.61198, -74.01249)",,,8635 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447617,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/14/2021,17:50,BROOKLYN,11213,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447655,Sedan,,,, +08/14/2021,17:42,BRONX,10459,40.822235,-73.88746,"(40.822235, -73.88746)",BRUCKNER EXPRESSWAY,SHERIDAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4446881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/14/2021,19:00,,,40.69113,-73.81008,"(40.69113, -73.81008)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4447356,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/08/2021,11:30,,,40.815933,-73.96372,"(40.815933, -73.96372)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4447550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,13:00,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447271,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,17:10,MANHATTAN,10035,40.80087,-73.94098,"(40.80087, -73.94098)",,,120 EAST 119 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,10:24,BROOKLYN,11234,40.632595,-73.932495,"(40.632595, -73.932495)",,,4521 AVENUE H,0,0,0,0,0,0,0,0,Unspecified,,,,,4446907,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,13:50,,,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4447446,Sedan,,,, +08/12/2021,19:00,MANHATTAN,10037,40.813446,-73.93503,"(40.813446, -73.93503)",,,2155 MADISON AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4447433,MOVING TRU,Sedan,,, +08/14/2021,7:00,BROOKLYN,11228,40.623604,-74.012886,"(40.623604, -74.012886)",,,1053 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4446836,Pick-up Truck,Sedan,Sedan,Sedan,Sedan +08/14/2021,21:54,BRONX,10468,40.857418,-73.89996,"(40.857418, -73.89996)",GRAND CONCOURSE,EAST 183 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447568,Sedan,Sedan,,, +08/13/2021,10:14,,,,,,SOUTH AVENUE,LOIS LANE,,0,1,0,0,0,0,0,1,Aggressive Driving/Road Rage,,,,,4447626,Motorcycle,,,, +08/13/2021,16:35,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4447472,Bus,Flat Bed,,, +08/14/2021,13:00,BROOKLYN,11215,40.66511,-73.981415,"(40.66511, -73.981415)",,,530 11 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447701,Sedan,,,, +08/14/2021,18:25,STATEN ISLAND,10301,40.63781,-74.08729,"(40.63781, -74.08729)",JERSEY STREET,BRIGHTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447088,Sedan,Sedan,,, +08/05/2021,3:35,BROOKLYN,11215,40.672905,-73.98981,"(40.672905, -73.98981)",,,383 3 AVENUE,2,0,1,0,1,0,0,0,Alcohol Involvement,,,,,4447519,E-Bike,,,, +08/14/2021,18:25,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447522,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,5:08,QUEENS,11428,40.72144,-73.74433,"(40.72144, -73.74433)",215 STREET,92 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446742,Sedan,Sedan,Sedan,, +08/11/2021,17:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447603,Sedan,Box Truck,,, +08/14/2021,0:45,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447162,Sedan,Sedan,,, +08/14/2021,16:00,BROOKLYN,11230,40.62202,-73.962685,"(40.62202, -73.962685)",,,1113 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447211,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,4:40,MANHATTAN,10039,40.8226,-73.939316,"(40.8226, -73.939316)",,,210 WEST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447752,Sedan,,,, +08/14/2021,7:20,,,40.847107,-73.90843,"(40.847107, -73.90843)",GRAND CONCOURSE,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4447563,Garbage or Refuse,Sedan,,, +08/14/2021,5:40,QUEENS,11103,40.765404,-73.91352,"(40.765404, -73.91352)",,,40-11 28 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4446988,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,9:40,QUEENS,11368,40.75251,-73.86727,"(40.75251, -73.86727)",37 AVENUE,100 STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4447454,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,3:15,BROOKLYN,11218,40.63202,-73.974495,"(40.63202, -73.974495)",,,4106 18 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4447050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,22:00,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,,,,,4447585,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,14:10,,,40.821262,-73.94608,"(40.821262, -73.94608)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447725,Sedan,Sedan,,, +08/14/2021,8:00,BROOKLYN,11221,40.69454,-73.93036,"(40.69454, -73.93036)",,,463 PULASKI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447196,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,4:07,QUEENS,11413,40.666306,-73.785934,"(40.666306, -73.785934)",SOUTH CONDUIT AVENUE,153 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446902,Sedan,,,, +08/14/2021,14:03,BROOKLYN,11207,40.656116,-73.89666,"(40.656116, -73.89666)",DE WITT AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4446830,Station Wagon/Sport Utility Vehicle,Van,,, +08/14/2021,0:02,QUEENS,11432,40.70576,-73.80167,"(40.70576, -73.80167)",89 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447345,Sedan,Sedan,,, +08/14/2021,3:20,MANHATTAN,10035,40.80031,-73.93229,"(40.80031, -73.93229)",,,2369 1 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447460,Sedan,Sedan,,, +08/14/2021,23:40,BROOKLYN,11239,40.65393,-73.86744,"(40.65393, -73.86744)",,,911 ERSKINE STREET,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4446952,Sedan,,,, +08/14/2021,12:20,BRONX,10459,40.828545,-73.8919,"(40.828545, -73.8919)",HOME STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,,,,,4446929,Tractor Truck Diesel,,,, +08/12/2021,0:00,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4447426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van,, +08/13/2021,21:38,,,40.6599,-73.916046,"(40.6599, -73.916046)",LEGION STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447574,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,5:00,,,40.823536,-73.93108,"(40.823536, -73.93108)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447028,Sedan,,,, +08/14/2021,20:46,QUEENS,11355,,,,Shea Road,Meridian Road,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4447103,Taxi,Bike,,, +08/13/2021,21:40,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",SOUTH PORTLAND AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4447539,Pick-up Truck,,,, +08/13/2021,8:00,MANHATTAN,10128,40.78169,-73.94897,"(40.78169, -73.94897)",2 AVENUE,EAST 92 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447497,Bike,,,, +08/14/2021,15:50,MANHATTAN,10012,,,,,,4 PRINCE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447690,Sedan,Sedan,,, +08/14/2021,6:30,QUEENS,11374,40.728832,-73.86811,"(40.728832, -73.86811)",,,62-82 AUSTIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447741,Sedan,,,, +08/14/2021,20:00,BRONX,10458,40.863647,-73.8918,"(40.863647, -73.8918)",EAST 193 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447143,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,11:00,,,,,,MEEKER AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4446994,Sedan,,,, +08/14/2021,10:00,,,40.618244,-74.0024,"(40.618244, -74.0024)",74 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447637,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,22:21,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4447479,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,16:28,BROOKLYN,11236,40.646297,-73.91274,"(40.646297, -73.91274)",,,900 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447491,Sedan,,,, +04/13/2022,15:49,MANHATTAN,10011,40.739265,-73.99545,"(40.739265, -73.99545)",WEST 17 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518993,VERZION VA,,,, +08/14/2021,20:30,BROOKLYN,11226,,,,,,50 parkside avenue,1,0,0,0,0,0,1,0,Unspecified,,,,,4447063,Sedan,,,, +10/17/2021,14:00,STATEN ISLAND,10306,40.571041,-74.1091833,"(40.571041, -74.1091833)",JACQUES AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469092,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,11:50,,,40.6840001,-73.9503006,"(40.6840001, -73.9503006)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4467861,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/24/2021,11:46,BRONX,10454,40.8072695,-73.9238287,"(40.8072695, -73.9238287)",,,164 WILLIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470631,Sedan,,,, +10/17/2021,22:55,,,40.6831838,-73.7892919,"(40.6831838, -73.7892919)",116 ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468224,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,17:39,BROOKLYN,11233,40.6790641,-73.9285883,"(40.6790641, -73.9285883)",,,1772 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470416,Ambulance,Sedan,,, +10/15/2021,8:20,,,40.5411244,-74.2177906,"(40.5411244, -74.2177906)",BLOOMINGDALE ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469816,Sedan,Box Truck,,, +10/21/2021,7:30,,,40.8402313,-73.8801001,"(40.8402313, -73.8801001)",BOSTON ROAD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4469490,Sedan,Bus,,, +10/14/2021,8:00,BROOKLYN,11207,40.6749187,-73.8868822,"(40.6749187, -73.8868822)",,,285 JEROME STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467264,Bus,Sedan,,, +10/14/2021,18:25,BROOKLYN,11205,40.6978407,-73.9707743,"(40.6978407, -73.9707743)",FLUSHING AVENUE,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469255,E-Bike,,,, +10/18/2021,9:50,BROOKLYN,11249,40.6981895,-73.9618989,"(40.6981895, -73.9618989)",CLASSON AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468402,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,16:48,BROOKLYN,11207,40.6781106,-73.8976176,"(40.6781106, -73.8976176)",JAMAICA AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468160,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,11:40,QUEENS,11363,40.7653588,-73.7442823,"(40.7653588, -73.7442823)",NORTHERN BOULEVARD,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468090,Sedan,Sedan,,, +10/18/2021,20:18,,,40.6211154,-73.9310181,"(40.6211154, -73.9310181)",EAST 46 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468607,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,15:00,,,40.7598833,-73.9367906,"(40.7598833, -73.9367906)",21 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467065,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,8:25,BROOKLYN,11207,40.6724486,-73.8921251,"(40.6724486, -73.8921251)",BRADFORD STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467257,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,3:54,,,40.6556338,-73.9598617,"(40.6556338, -73.9598617)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469735,Sedan,E-Scooter,,, +10/17/2021,9:00,BROOKLYN,11230,40.6175896,-73.9638107,"(40.6175896, -73.9638107)",CONEY ISLAND AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468137,Sedan,Sedan,,, +11/02/2021,7:25,QUEENS,11366,40.73351,-73.77243,"(40.73351, -73.77243)",,,75-28 199 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4473444,Sedan,,,, +10/21/2021,14:19,QUEENS,11432,40.7249753,-73.7816916,"(40.7249753, -73.7816916)",CHEVY CHASE STREET,ABERDEEN ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4469707,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/20/2021,17:30,BROOKLYN,11237,40.7142083,-73.9281658,"(40.7142083, -73.9281658)",METROPOLITAN AVENUE,STEWART AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4470210,Motorcycle,,,, +10/16/2021,23:30,MANHATTAN,10029,40.789169,-73.9527428,"(40.789169, -73.9527428)",MADISON AVENUE,EAST 99 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4468722,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,16:55,MANHATTAN,10032,40.8410894,-73.9379314,"(40.8410894, -73.9379314)",WEST 169 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467940,Sedan,,,, +10/21/2021,17:38,BROOKLYN,11212,40.6541334,-73.9123297,"(40.6541334, -73.9123297)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469618,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,14:40,BROOKLYN,11234,40.5965113,-73.9078755,"(40.5965113, -73.9078755)",Belt Parkway,Flatbush Ave,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467695,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,21:10,,,40.7009717,-73.8142216,"(40.7009717, -73.8142216)",138 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470584,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,18:40,QUEENS,11377,40.7442518,-73.9014099,"(40.7442518, -73.9014099)",63 STREET,WOODSIDE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467663,Sedan,,,, +10/15/2021,16:00,QUEENS,11101,40.7471509,-73.9393407,"(40.7471509, -73.9393407)",,,43-22 QUEENS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468526,Sedan,,,, +10/15/2021,12:55,BRONX,10475,40.8859908,-73.827914,"(40.8859908, -73.827914)",BOSTON ROAD,CONNER STREET,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4470389,Sedan,,,, +10/18/2021,9:00,BRONX,10460,40.8339076,-73.8959986,"(40.8339076, -73.8959986)",,,1441 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468705,Sedan,Bus,,, +10/12/2021,7:00,,,40.8160255,-73.9394577,"(40.8160255, -73.9394577)",WEST 138 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466727,Sedan,,,, +10/22/2021,17:25,QUEENS,11375,40.7150452,-73.8513332,"(40.7150452, -73.8513332)",,,69-47 JUNO STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469942,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,19:53,BROOKLYN,11212,40.6541334,-73.9123297,"(40.6541334, -73.9123297)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,14:19,QUEENS,11357,40.7893142,-73.805763,"(40.7893142, -73.805763)",14 AVENUE,156 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,16:35,QUEENS,11413,40.675885,-73.7557617,"(40.675885, -73.7557617)",SPRINGFIELD BOULEVARD,EAST GATE PLAZA,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467205,Sedan,,,, +10/23/2021,17:00,BROOKLYN,11201,40.6950238,-73.9910266,"(40.6950238, -73.9910266)",,,300 CADMAN PLAZA WEST,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:45,,,40.66549,-73.9106243,"(40.66549, -73.9106243)",CHESTER STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467795,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,23:09,QUEENS,11429,40.7132852,-73.7357924,"(40.7132852, -73.7357924)",HEMPSTEAD AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469636,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,2:51,BROOKLYN,11249,40.7220528,-73.9575486,"(40.7220528, -73.9575486)",,,61 WYTHE AVENUE,1,0,1,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4470296,Station Wagon/Sport Utility Vehicle,Carry All,,, +11/01/2021,13:05,,,,,,EAST 90 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4474051,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,2:50,QUEENS,11423,40.7135434,-73.7789026,"(40.7135434, -73.7789026)",,,88-08 183 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470574,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,18:05,BROOKLYN,11226,40.6466293,-73.9556509,"(40.6466293, -73.9556509)",BEDFORD AVENUE,TILDEN AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466670,E-Scooter,Sedan,,, +10/13/2021,21:10,,,40.6426886,-73.9576354,"(40.6426886, -73.9576354)",CLARENDON ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466886,Sedan,,,, +10/20/2021,20:00,BROOKLYN,11205,40.6993968,-73.9543611,"(40.6993968, -73.9543611)",,,517 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469303,Station Wagon/Sport Utility Vehicle,Bike,,, +11/02/2021,12:52,,,40.76996,-73.82658,"(40.76996, -73.82658)",31 DRIVE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4473394,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/15/2021,16:30,STATEN ISLAND,10304,40.617969,-74.0744315,"(40.617969, -74.0744315)",,,131 GREENFIELD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467876,Sedan,Sedan,,, +10/19/2021,21:28,BRONX,10457,40.8376538,-73.8999668,"(40.8376538, -73.8999668)",CLAREMONT PARKWAY,FULTON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4469028,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,1:50,MANHATTAN,10039,40.8283439,-73.9378194,"(40.8283439, -73.9378194)",,,2906 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467374,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,16:05,BRONX,10457,40.845966,-73.8922377,"(40.845966, -73.8922377)",EAST TREMONT AVENUE,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4468338,Sedan,Moped,,, +10/18/2021,6:18,QUEENS,11357,40.7902434,-73.8282811,"(40.7902434, -73.8282811)",,,33 Center Drive,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4468559,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,14:05,STATEN ISLAND,10306,40.5557928,-74.1294728,"(40.5557928, -74.1294728)",,,3311 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467164,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,22:35,MANHATTAN,10013,40.7189626,-74.0012734,"(40.7189626, -74.0012734)",CANAL STREET,CORTLANDT ALLEY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466695,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,19:00,BROOKLYN,11226,40.653976,-73.9528277,"(40.653976, -73.9528277)",ROGERS AVENUE,LENOX ROAD,,1,0,1,0,0,0,0,0,,,,,,4467827,,,,, +10/24/2021,16:42,BROOKLYN,11226,40.6507168,-73.9491276,"(40.6507168, -73.9491276)",,,3008 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4470616,Bus,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,5:18,,,,,,LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447100,Sedan,Sedan,,, +10/21/2021,12:28,MANHATTAN,10019,40.7652597,-73.9909525,"(40.7652597, -73.9909525)",,,465 WEST 51 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469674,Sedan,Sedan,,, +10/19/2021,14:10,MANHATTAN,10032,40.837194,-73.9366919,"(40.837194, -73.9366919)",EDGECOMBE AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469720,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,20:24,,,40.7840597,-73.97502,"(40.7840597, -73.97502)",CENTRAL PARK WEST,WEST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468504,Sedan,,,, +10/19/2021,7:30,BRONX,10455,40.8128559,-73.9072437,"(40.8128559, -73.9072437)",EAST 149 STREET,WALES AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4468992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,11:10,MANHATTAN,10004,40.7051728,-74.0092614,"(40.7051728, -74.0092614)",,,64 BEAVER STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469548,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,12:30,,,40.7220122,-73.8534755,"(40.7220122, -73.8534755)",YELLOWSTONE BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469718,Sedan,Bus,,, +10/15/2021,11:50,QUEENS,11421,40.6915655,-73.8656225,"(40.6915655, -73.8656225)",JAMAICA AVENUE,76 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467639,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/13/2021,3:15,STATEN ISLAND,10301,40.6360216,-74.0772,"(40.6360216, -74.0772)",,,78 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467149,Sedan,Sedan,Sedan,, +10/14/2021,8:25,MANHATTAN,10039,40.8251719,-73.9415017,"(40.8251719, -73.9415017)",WEST 148 STREET,BRADHURST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467034,Sedan,,,, +10/12/2021,11:43,QUEENS,11421,40.69802,-73.8523178,"(40.69802, -73.8523178)",,,83-91 WOODHAVEN BOULEVARD,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4466561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,18:15,QUEENS,11427,40.7212282,-73.7583224,"(40.7212282, -73.7583224)",,,88-25 207 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467200,Sedan,,,, +10/13/2021,4:12,,,40.6581931,-74.0010322,"(40.6581931, -74.0010322)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4467528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/11/2021,7:00,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4467299,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,14:22,MANHATTAN,10002,40.7187947,-73.9890116,"(40.7187947, -73.9890116)",DELANCEY STREET,LUDLOW STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468575,Concrete Mixer,Sedan,,, +10/23/2021,23:09,MANHATTAN,10011,40.7376736,-74.0017682,"(40.7376736, -74.0017682)",GREENWICH AVENUE,WEST 12 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470150,Sedan,Taxi,,, +10/18/2021,21:25,QUEENS,11361,40.7707436,-73.7858161,"(40.7707436, -73.7858161)",32 AVENUE,204 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4468592,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,15:54,MANHATTAN,10022,40.7606005,-73.9643142,"(40.7606005, -73.9643142)",2 AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467347,Station Wagon/Sport Utility Vehicle,Lift Boom,,, +10/20/2021,0:35,MANHATTAN,10030,40.818472,-73.941392,"(40.818472, -73.941392)",WEST 140 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469187,Sedan,Motorcycle,,, +10/15/2021,15:00,,,40.6688989,-73.95861,"(40.6688989, -73.95861)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467501,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,12:35,QUEENS,11364,40.7391685,-73.763613,"(40.7391685, -73.763613)",210 STREET,73 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466786,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,22:25,,,40.8018,-73.96108,"(40.8018, -73.96108)",CATHEDRAL PARKWAY,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4473553,Taxi,E-Bike,,, +10/15/2021,3:05,,,40.8571285,-73.8807926,"(40.8571285, -73.8807926)",EAST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4467590,Sedan,,,, +10/19/2021,16:45,QUEENS,11413,40.6653762,-73.7539412,"(40.6653762, -73.7539412)",,,223-24 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468893,Sedan,,,, +10/15/2021,15:35,,,40.7371024,-73.8133306,"(40.7371024, -73.8133306)",65 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467506,Sedan,Sedan,Pick-up Truck,, +10/23/2021,0:45,BROOKLYN,11203,40.6547986,-73.9394238,"(40.6547986, -73.9394238)",LENOX ROAD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470274,Pick-up Truck,Sedan,,, +10/18/2021,13:45,BROOKLYN,11217,40.6862925,-73.9790905,"(40.6862925, -73.9790905)",FLATBUSH AVENUE,SCHERMERHORN STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4468541,Bike,,,, +10/19/2021,13:45,BROOKLYN,11236,40.6392866,-73.8986824,"(40.6392866, -73.8986824)",AVENUE K,EAST 95 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4468902,Sedan,Sedan,,, +10/18/2021,12:31,,,40.6962053,-73.9724807,"(40.6962053, -73.9724807)",PARK AVENUE,ADELPHI STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4468654,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/17/2021,13:25,MANHATTAN,10034,40.8672401,-73.9220264,"(40.8672401, -73.9220264)",,,4910 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469119,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,9:50,BROOKLYN,11231,40.6841663,-74.0043043,"(40.6841663, -74.0043043)",,,51 PRESIDENT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467316,Sedan,Sedan,,, +10/20/2021,16:19,BROOKLYN,11234,40.6167335,-73.924694,"(40.6167335, -73.924694)",AVENUE O,EAST 52 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469415,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,9:37,,,40.8618642,-73.9127392,"(40.8618642, -73.9127392)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4469830,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/16/2021,20:55,QUEENS,11412,40.7017418,-73.7654408,"(40.7017418, -73.7654408)",FARMERS BOULEVARD,111 AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4468205,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,12:10,,,40.706222,-73.9509746,"(40.706222, -73.9509746)",WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,Unspecified,,,4468960,Sedan,Sedan,Box Truck,, +10/14/2021,17:30,STATEN ISLAND,10310,40.6282885,-74.1248956,"(40.6282885, -74.1248956)",,,796 DELAFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467882,Sedan,,,, +10/14/2021,14:49,,,40.6952037,-73.9284315,"(40.6952037, -73.9284315)",BUSHWICK AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467281,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/25/2021,3:00,STATEN ISLAND,10308,40.5452723,-74.1487204,"(40.5452723, -74.1487204)",NELSON AVENUE,EDGEWOOD ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4470743,Sedan,Sedan,,, +10/14/2021,13:55,STATEN ISLAND,10312,40.5551481,-74.1667176,"(40.5551481, -74.1667176)",ELTINGVILLE BOULEVARD,LEVERETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467181,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,18:00,QUEENS,11414,40.667892,-73.84204,"(40.667892, -73.84204)",CROSS BAY BOULEVARD,153 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473477,Sedan,Sedan,,, +11/02/2021,6:16,,,40.72766,-73.92938,"(40.72766, -73.92938)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473522,Tractor Truck Gasoline,Sedan,,, +10/16/2021,17:15,BRONX,10455,40.8115862,-73.9086796,"(40.8115862, -73.9086796)",CONCORD AVENUE,EAST 147 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467719,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,7:50,QUEENS,11368,40.7383204,-73.8555345,"(40.7383204, -73.8555345)",,,104-11 OTIS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,9:11,MANHATTAN,10029,40.7880564,-73.9443222,"(40.7880564, -73.9443222)",2 AVENUE,EAST 102 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467603,Box Truck,,,, +10/19/2021,15:30,,,40.780065,-73.9470478,"(40.780065, -73.9470478)",1 AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4468908,Sedan,,,, +10/16/2021,21:00,BRONX,10452,40.8392713,-73.9225592,"(40.8392713, -73.9225592)",WEST 169 STREET,SHAKESPEARE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468408,Sedan,,,, +10/22/2021,18:45,,,40.7207656,-73.9906275,"(40.7207656, -73.9906275)",ELDRIDGE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470248,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,6:00,BRONX,10456,40.8268806,-73.908546,"(40.8268806, -73.908546)",,,501 EAST 165 STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4467242,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,11:44,QUEENS,11379,40.7121603,-73.8907107,"(40.7121603, -73.8907107)",,,66-26 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,13:15,,,40.7679131,-73.9254183,"(40.7679131, -73.9254183)",30 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470007,Sedan,,,, +10/18/2021,23:45,BROOKLYN,11208,40.672874,-73.8818783,"(40.672874, -73.8818783)",,,753 BELMONT AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4468637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,9:00,,,40.7793641,-73.9773678,"(40.7793641, -73.9773678)",WEST 75 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468519,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,18:06,BROOKLYN,11236,40.633857,-73.9114377,"(40.633857, -73.9114377)",EAST 80 STREET,AVENUE J,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4467099,Sedan,Sedan,,, +10/17/2021,10:58,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4468560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,14:40,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473611,Sedan,,,, +10/23/2021,0:25,BROOKLYN,11230,40.6265698,-73.9709207,"(40.6265698, -73.9709207)",OCEAN PARKWAY,AVENUE I,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470000,Sedan,Sedan,,, +10/20/2021,15:00,BROOKLYN,11238,40.684473,-73.9696676,"(40.684473, -73.9696676)",,,857 FULTON STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4469452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,13:16,BROOKLYN,11234,40.6255646,-73.9182442,"(40.6255646, -73.9182442)",,,2132 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470599,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,17:30,,,40.716646,-73.9958083,"(40.716646, -73.9958083)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469283,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,13:25,BRONX,10460,40.8357057,-73.8887453,"(40.8357057, -73.8887453)",EAST 173 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470707,E-Bike,Sedan,,, +10/24/2021,10:00,BROOKLYN,11230,40.6297381,-73.96415,"(40.6297381, -73.96415)",ARGYLE ROAD,AVENUE H,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470307,Sedan,Sedan,,, +10/20/2021,9:00,QUEENS,11365,40.7319307,-73.8079545,"(40.7319307, -73.8079545)",161 STREET,JEWEL AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469602,Sedan,Bike,,, +10/16/2021,15:57,,,40.7717829,-73.9654346,"(40.7717829, -73.9654346)",MADISON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468058,Bike,Sedan,,, +10/18/2021,5:25,QUEENS,11354,40.7658262,-73.8237264,"(40.7658262, -73.8237264)",PARSONS BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468552,Sedan,,,, +04/13/2022,11:09,BROOKLYN,11230,40.63529,-73.958206,"(40.63529, -73.958206)",OCEAN AVENUE,FARRAGUT ROAD,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4518741,Station Wagon/Sport Utility Vehicle,,,, +09/30/2021,0:00,,,40.8278228,-73.8857955,"(40.8278228, -73.8857955)",WESTCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,2:40,,,40.739902,-73.791275,"(40.739902, -73.791275)",LONG ISLAND EXPRESSWAY,183 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474062,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,3:50,,,40.6572743,-73.8998913,"(40.6572743, -73.8998913)",LINDEN BLVD,VAN SINDEREN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470485,Sedan,,,, +10/16/2021,22:43,,,40.8726198,-73.9046763,"(40.8726198, -73.9046763)",WEST KINGSBRIDGE ROAD,,,5,0,0,0,0,0,5,0,Aggressive Driving/Road Rage,Unspecified,,,,4467998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,14:20,BROOKLYN,11222,40.7330316,-73.9547274,"(40.7330316, -73.9547274)",MANHATTAN AVENUE,HURON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469882,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,10:05,QUEENS,11694,40.5833047,-73.8329251,"(40.5833047, -73.8329251)",,,110-17 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468036,Sedan,,,, +10/19/2021,6:00,QUEENS,11385,40.7107218,-73.8602832,"(40.7107218, -73.8602832)",,,89-39 RUTLEDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469994,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,23:20,,,40.6785156,-73.9639002,"(40.6785156, -73.9639002)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467051,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,5:50,QUEENS,11103,40.7570971,-73.9150061,"(40.7570971, -73.9150061)",45 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467903,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,10:15,MANHATTAN,10010,40.7424675,-73.9921864,"(40.7424675, -73.9921864)",,,60 WEST 23 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4468870,Bike,Motorcycle,,, +10/23/2021,19:50,BROOKLYN,11206,40.702132,-73.9443146,"(40.702132, -73.9443146)",BROADWAY,COOK STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470111,Station Wagon/Sport Utility Vehicle,Bike,,, +10/21/2021,18:20,BROOKLYN,11208,40.6821283,-73.8649925,"(40.6821283, -73.8649925)",95 AVENUE,FORBELL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469691,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,8:12,BROOKLYN,11219,40.6360046,-73.9982634,"(40.6360046, -73.9982634)",11 AVENUE,52 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467925,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/20/2021,9:21,BROOKLYN,11232,40.6470687,-73.9939279,"(40.6470687, -73.9939279)",37 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4469175,Sedan,Bike,,, +11/02/2021,18:35,BROOKLYN,11228,40.607655,-74.01703,"(40.607655, -74.01703)",14 AVENUE,CROPSEY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4473505,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:30,,,40.6932413,-73.9286428,"(40.6932413, -73.9286428)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467479,Sedan,,,, +08/15/2021,18:25,,,,,,BRUCKNER BOULEVARD,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4447322,Sedan,,,, +11/02/2021,11:30,MANHATTAN,10026,40.803894,-73.95821,"(40.803894, -73.95821)",MORNINGSIDE AVENUE,WEST 114 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4474137,Sedan,skateboard,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +10/20/2021,14:19,BROOKLYN,11211,40.7121326,-73.9617626,"(40.7121326, -73.9617626)",,,154 SOUTH 3 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469308,Sedan,Box Truck,,, +10/21/2021,13:29,BROOKLYN,11234,40.6256238,-73.9182506,"(40.6256238, -73.9182506)",,,2130 RALPH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,5:48,QUEENS,11369,40.7575412,-73.8820836,"(40.7575412, -73.8820836)",,,32-16 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469897,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,20:00,QUEENS,11432,40.7143926,-73.792038,"(40.7143926, -73.792038)",,,171-09 MAYFIELD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4468823,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/02/2021,10:00,MANHATTAN,10128,40.779434,-73.94752,"(40.779434, -73.94752)",1 AVENUE,EAST 90 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473359,Dump,Sedan,,, +10/15/2021,17:15,,,40.7640838,-73.8333515,"(40.7640838, -73.8333515)",35 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4468104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,14:15,QUEENS,11355,40.7566718,-73.8287931,"(40.7566718, -73.8287931)",MAIN STREET,SANFORD AVENUE,,1,0,1,0,0,0,0,0,,,,,,4467650,E-Bike,,,, +10/17/2021,9:35,,,40.6212563,-74.1688798,"(40.6212563, -74.1688798)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,Unspecified,,,4470673,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/18/2021,14:30,BROOKLYN,11219,40.637055,-73.9864201,"(40.637055, -73.9864201)",14 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468753,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,6:55,,,40.7834771,-73.9647574,"(40.7834771, -73.9647574)",,,103 WEST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4467296,Bike,,,, +10/13/2021,18:30,BROOKLYN,11219,40.6280806,-73.9987151,"(40.6280806, -73.9987151)",,,1317 61 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,7:19,MANHATTAN,10029,40.7986223,-73.9416189,"(40.7986223, -73.9416189)",EAST 116 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469394,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,14:36,QUEENS,11357,40.7857662,-73.8163647,"(40.7857662, -73.8163647)",149 STREET,15 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470726,Bus,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:00,BROOKLYN,11230,40.6241708,-73.9704715,"(40.6241708, -73.9704715)",OCEAN PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469124,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:03,QUEENS,11364,40.7439298,-73.7755414,"(40.7439298, -73.7755414)",HORACE HARDING EXPRESSWAY,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469914,Sedan,Sedan,,, +10/14/2021,13:10,MANHATTAN,10001,40.7494617,-73.9950441,"(40.7494617, -73.9950441)",,,260 WEST 30 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467771,Sedan,Box Truck,,, +10/20/2021,8:45,QUEENS,11412,40.6909209,-73.7622912,"(40.6909209, -73.7622912)",FARMERS BOULEVARD,BAISLEY BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4469169,Box Truck,Sedan,,, +10/13/2021,17:40,QUEENS,11435,40.7129526,-73.8230734,"(40.7129526, -73.8230734)",,,82-39 134 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466828,Sedan,,,, +10/20/2021,12:05,,,40.6358998,-73.9591252,"(40.6358998, -73.9591252)",,,1930. FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4469134,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/23/2021,8:30,QUEENS,11373,40.7426813,-73.8803771,"(40.7426813, -73.8803771)",,,84-25 ELMHURST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470457,Sedan,,,, +10/24/2021,13:10,,,40.7233778,-73.8482918,"(40.7233778, -73.8482918)",QUEENS BOULEVARD,69 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470799,Station Wagon/Sport Utility Vehicle,Carry All,,, +10/20/2021,8:18,,,40.530148,-74.1915413,"(40.530148, -74.1915413)",BILLIOU STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4469831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/20/2021,3:15,QUEENS,11418,40.7011602,-73.8403337,"(40.7011602, -73.8403337)",,,110-01 84 AVENUE,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4469065,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +10/08/2021,15:28,BRONX,10472,40.82874,-73.877304,"(40.82874, -73.877304)",WESTCHESTER AVENUE,WARD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474007,Moped,,,, +08/15/2021,15:50,BRONX,10467,,,,,,3021 HOLLAND AVENUE,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4447397,Sedan,Ambulance,,, +10/14/2021,18:00,BROOKLYN,11237,40.6975554,-73.9118074,"(40.6975554, -73.9118074)",IRVING AVENUE,WOODBINE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468325,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,12:50,MANHATTAN,10014,40.7303232,-74.0024679,"(40.7303232, -74.0024679)",BLEECKER STREET,CARMINE STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470182,E-Bike,Taxi,,, +10/21/2021,19:30,,,40.8373235,-73.9198306,"(40.8373235, -73.9198306)",MACOMBS DAM BRIDGE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469848,Chassis Cab,Sedan,,, +10/18/2021,22:36,,,40.6770266,-73.952678,"(40.6770266, -73.952678)",DEAN STREET,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4468813,Sedan,PK,,, +10/18/2021,14:30,BROOKLYN,11249,40.7006209,-73.9590503,"(40.7006209, -73.9590503)",,,76 RUTLEDGE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469143,Sedan,,,, +10/19/2021,7:49,QUEENS,11372,40.7540243,-73.8822477,"(40.7540243, -73.8822477)",34 AVENUE,85 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469223,Sedan,Sedan,,, +10/18/2021,15:28,STATEN ISLAND,10305,40.606886,-74.0780932,"(40.606886, -74.0780932)",NARROWS ROAD NORTH,CLIFTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469262,Sedan,Sedan,,, +10/22/2021,17:15,,,40.6973167,-73.9322699,"(40.6973167, -73.9322699)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469986,Sedan,PK,,, +10/17/2021,6:10,BROOKLYN,11231,40.6807909,-73.9917292,"(40.6807909, -73.9917292)",HOYT STREET,UNION STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467810,Sedan,E-Bike,,, +10/14/2021,18:00,MANHATTAN,10001,40.754584,-73.9991446,"(40.754584, -73.9991446)",WEST 34 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467443,Tow Truck / Wrecker,Box Truck,,, +10/13/2021,8:15,BROOKLYN,11230,40.6192225,-73.9574974,"(40.6192225, -73.9574974)",,,1280 EAST 18 STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4467678,E-Scooter,,,, +10/15/2021,8:35,,,40.5990645,-73.744804,"(40.5990645, -73.744804)",LANETT AVENUE,BEACH 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468423,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,9:15,BROOKLYN,11220,40.6407638,-74.0076605,"(40.6407638, -74.0076605)",7 AVENUE,53 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4469276,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,19:25,,,40.6781679,-73.746495,"(40.6781679, -73.746495)",MERRICK BOULEVARD,223 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470125,Sedan,,,, +10/22/2021,16:10,,,40.7890514,-73.9703009,"(40.7890514, -73.9703009)",WEST 90 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4469925,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,22:45,,,40.6387858,-73.9453727,"(40.6387858, -73.9453727)",FOSTER AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,,,4469208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/21/2021,0:00,MANHATTAN,10016,40.7457274,-73.9781227,"(40.7457274, -73.9781227)",EAST 34 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469516,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,14:00,STATEN ISLAND,10312,40.5319181,-74.1917442,"(40.5319181, -74.1917442)",HUGUENOT AVENUE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469538,Constructi,Sedan,,, +11/02/2021,0:05,MANHATTAN,10002,40.71975,-73.992165,"(40.71975, -73.992165)",DELANCEY STREET,FORSYTH STREET,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Unspecified,,,4473497,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +10/24/2021,8:50,,,40.6406452,-73.7433838,"(40.6406452, -73.7433838)",BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4470301,Sedan,,,, +11/02/2021,7:00,BRONX,10467,40.884346,-73.88706,"(40.884346, -73.88706)",WEST GUN HILL ROAD,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4473628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,14:05,QUEENS,11692,40.5901644,-73.7978594,"(40.5901644, -73.7978594)",ROCKAWAY BEACH BOULEVARD,BEACH 69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4469910,Sedan,Sedan,Sedan,, +10/17/2021,18:15,BROOKLYN,11217,40.6814394,-73.9722546,"(40.6814394, -73.9722546)",,,535 DEAN STREET,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468690,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,0:00,BROOKLYN,11222,40.7243366,-73.9490836,"(40.7243366, -73.9490836)",ECKFORD STREET,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468806,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +11/01/2021,19:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473984,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,8:40,,,40.6543763,-73.9791365,"(40.6543763, -73.9791365)",19 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,3:55,QUEENS,11428,40.7153474,-73.7484422,"(40.7153474, -73.7484422)",JAMAICA AVENUE,HOLLIS COURT BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469946,Sedan,Sedan,,, +10/07/2021,9:27,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466387,Sedan,Sedan,,, +10/18/2021,15:58,BRONX,10461,40.8503039,-73.8513675,"(40.8503039, -73.8513675)",MORRIS PARK AVENUE,WILLIAMSBRIDGE ROAD,,2,0,0,0,1,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468845,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/02/2021,14:32,BROOKLYN,11212,40.66241,-73.90987,"(40.66241, -73.90987)",CHESTER STREET,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473697,Sedan,Sedan,,, +10/15/2021,11:00,,,40.5793999,-74.1694817,"(40.5793999, -74.1694817)",RICHMOND AVENUE,PLATINUM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4467368,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,8:50,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473580,Sedan,Sedan,,, +10/02/2021,4:50,QUEENS,11429,40.70947,-73.74581,"(40.70947, -73.74581)",212 STREET,HOLLIS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4463066,Sedan,Sedan,Sedan,, +10/19/2021,21:19,,,40.6718577,-73.8175435,"(40.6718577, -73.8175435)",133 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,18:00,BROOKLYN,11208,40.6668995,-73.8652569,"(40.6668995, -73.8652569)",,,1258 LORING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467252,Sedan,,,, +10/23/2021,21:30,BRONX,10459,40.8246558,-73.8919289,"(40.8246558, -73.8919289)",SOUTHERN BOULEVARD,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,,,,,,4470116,,,,, +10/13/2021,9:49,BROOKLYN,11206,40.7023306,-73.9357257,"(40.7023306, -73.9357257)",,,925 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466841,AMBU,Van,,, +10/17/2021,6:30,,,40.8371265,-73.9096348,"(40.8371265, -73.9096348)",FINDLAY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,9:00,STATEN ISLAND,10304,40.6189153,-74.0836761,"(40.6189153, -74.0836761)",OSGOOD AVENUE,GORDON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467865,Sedan,Sedan,,, +10/24/2021,4:00,,,40.6974347,-73.8986013,"(40.6974347, -73.8986013)",SENECA AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4470412,Sedan,,,, +10/20/2021,20:10,,,40.7374934,-73.9350798,"(40.7374934, -73.9350798)",BORDEN AVENUE,VANDAM STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4469286,Sedan,Sedan,,, +10/23/2021,5:46,MANHATTAN,10016,40.7450675,-73.972576,"(40.7450675, -73.972576)",EAST 36 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470051,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,20:03,BROOKLYN,11235,40.5894516,-73.9605171,"(40.5894516, -73.9605171)",CONEY ISLAND AVENUE,AVENUE Y,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4467291,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,18:36,QUEENS,11434,40.6679154,-73.775224,"(40.6679154, -73.775224)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468602,Sedan,Sedan,,, +10/21/2021,17:50,BROOKLYN,11236,40.6338025,-73.8896944,"(40.6338025, -73.8896944)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4469626,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,12:55,BRONX,10468,40.860577,-73.9025461,"(40.860577, -73.9025461)",JEROME AVENUE,WEST 184 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Other Vehicular,,,,4468818,Sedan,Ambulance,,, +10/22/2021,8:49,QUEENS,11367,40.7266052,-73.8142403,"(40.7266052, -73.8142403)",73 AVENUE,153 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4469957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,3:15,,,40.654313,-73.9175769,"(40.654313, -73.9175769)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,9:45,BROOKLYN,11207,40.6757357,-73.8968533,"(40.6757357, -73.8968533)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469687,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:45,,,40.7082656,-73.8955766,"(40.7082656, -73.8955766)",64 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470393,Sedan,,,, +10/24/2021,14:11,,,40.6371409,-74.0254736,"(40.6371409, -74.0254736)",SENATOR STREET,,,2,0,2,0,0,0,0,0,Unspecified,,,,,4470334,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,23:30,BROOKLYN,11229,40.6073926,-73.9432087,"(40.6073926, -73.9432087)",NOSTRAND AVENUE,AVENUE R,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470551,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,15:30,BROOKLYN,11238,40.6817692,-73.9675328,"(40.6817692, -73.9675328)",ATLANTIC AVENUE,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4469843,Station Wagon/Sport Utility Vehicle,Bike,,, +10/05/2021,17:52,MANHATTAN,10003,40.7379177,-73.9922237,"(40.7379177, -73.9922237)",5 AVENUE,EAST 17 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4466554,Taxi,,,, +10/20/2021,15:25,BROOKLYN,11211,40.7133723,-73.9348039,"(40.7133723, -73.9348039)",MORGAN AVENUE,GRAND STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Unsafe Speed,,,,4469340,Sedan,Bike,,, +10/22/2021,16:23,BROOKLYN,11223,40.5989236,-73.968818,"(40.5989236, -73.968818)",,,2099 EAST 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469974,4 dr sedan,,,, +10/24/2021,21:45,BRONX,10466,40.8972514,-73.8552487,"(40.8972514, -73.8552487)",EAST 237 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470660,E-Bike,Sedan,,, +10/21/2021,15:35,BROOKLYN,11217,40.6825097,-73.9763154,"(40.6825097, -73.9763154)",FLATBUSH AVENUE,5 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4469650,Moped,E-Bike,,, +10/19/2021,18:00,BROOKLYN,11208,40.6650265,-73.8705674,"(40.6650265, -73.8705674)",STANLEY AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469244,Bus,,,, +10/03/2021,18:53,,,40.7193963,-74.0018831,"(40.7193963, -74.0018831)",CANAL STREET,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4466355,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,14:16,BRONX,10474,40.8192693,-73.8848563,"(40.8192693, -73.8848563)",WHITTIER STREET,SENECA AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4470739,Sedan,TRAILER,,, +10/17/2021,1:20,,,40.8434776,-73.9246614,"(40.8434776, -73.9246614)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467746,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,18:21,,,40.6700221,-73.7831115,"(40.6700221, -73.7831115)",134 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4470534,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,0:54,QUEENS,11357,40.7770306,-73.8035963,"(40.7770306, -73.8035963)",160 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468943,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,22:53,BROOKLYN,11208,40.6713261,-73.8709265,"(40.6713261, -73.8709265)",BLAKE AVENUE,EUCLID AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4469234,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,23:10,BROOKLYN,11225,40.6664404,-73.9536083,"(40.6664404, -73.9536083)",ROGERS AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470242,Taxi,Taxi,Sedan,, +10/14/2021,1:40,MANHATTAN,10035,40.8034264,-73.933083,"(40.8034264, -73.933083)",2 AVENUE,EAST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466970,Station Wagon/Sport Utility Vehicle,Dump,,, +11/02/2021,10:25,STATEN ISLAND,10305,40.589603,-74.089386,"(40.589603, -74.089386)",HYLAN BOULEVARD,RARITAN AVENUE,,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,Unspecified,,,4473812,Sedan,Station Wagon/Sport Utility Vehicle,vehicle tr,, +10/16/2021,1:00,BROOKLYN,11234,40.5965113,-73.9078755,"(40.5965113, -73.9078755)",FLATBUSH AVENUE,SHORE PARKWAY,,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4467614,Sedan,Sedan,,, +10/16/2021,0:00,,,40.6816356,-73.9317919,"(40.6816356, -73.9317919)",STUYVESANT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468109,,,,, +10/08/2021,11:27,,,40.8526741,-73.9190951,"(40.8526741, -73.9190951)",SEDGWICK AVENUE,UNDERCLIFF AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4466813,Sedan,,,, +10/15/2021,14:45,,,40.7509597,-73.9827227,"(40.7509597, -73.9827227)",WEST 38 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467763,Sedan,Sedan,,, +10/20/2021,14:25,BROOKLYN,11206,40.7058889,-73.9429661,"(40.7058889, -73.9429661)",GRAHAM AVENUE,BOERUM STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4469367,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,13:30,BRONX,10454,40.8060668,-73.9090412,"(40.8060668, -73.9090412)",EAST 141 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469655,Sedan,Sedan,,, +10/15/2021,21:30,QUEENS,11106,40.7554614,-73.9273525,"(40.7554614, -73.9273525)",36 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467897,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,11:30,BROOKLYN,11222,40.7330316,-73.9547274,"(40.7330316, -73.9547274)",MANHATTAN AVENUE,HURON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468805,Sedan,Bike,,, +10/22/2021,8:33,STATEN ISLAND,10305,40.5754978,-74.0836208,"(40.5754978, -74.0836208)",,,841 CAPODANNO BOULEVARD,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4469760,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/19/2021,18:06,MANHATTAN,10002,40.7230044,-73.9903425,"(40.7230044, -73.9903425)",,,212 FORSYTH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469023,Sedan,,,, +10/21/2021,1:20,QUEENS,11412,40.6864528,-73.7611749,"(40.6864528, -73.7611749)",FARMERS BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469382,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +10/13/2021,16:20,,,40.6529729,-73.9440024,"(40.6529729, -73.9440024)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467084,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,21:15,,,,,,ARTHUR KILL ROAD,DRUMGOOLE ROAD EAST,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447823,Motorcycle,Sedan,,, +10/18/2021,8:30,MANHATTAN,10032,40.8376548,-73.9382991,"(40.8376548, -73.9382991)",,,2113 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468421,Sedan,Sedan,,, +10/14/2021,22:45,,,40.8055956,-73.9581819,"(40.8055956, -73.9581819)",MORNINGSIDE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467516,Sedan,Bike,,, +10/16/2021,19:50,MANHATTAN,10036,40.7627496,-73.9969136,"(40.7627496, -73.9969136)",11 AVENUE,WEST 45 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468455,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,5:30,QUEENS,11106,40.7591264,-73.9274297,"(40.7591264, -73.9274297)",,,34-15 31 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4470677,Pick-up Truck,,,, +10/21/2021,12:42,,,40.8089583,-73.9404033,"(40.8089583, -73.9404033)",WEST 129 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4469703,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,5:38,BRONX,10468,40.8613524,-73.8977368,"(40.8613524, -73.8977368)",GRAND CONCOURSE,EAST 188 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466722,Taxi,Sedan,,, +10/19/2021,15:00,BROOKLYN,11223,40.591921,-73.9772225,"(40.591921, -73.9772225)",AVENUE W,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468975,School bus,,,, +10/14/2021,3:35,,,40.7717807,-73.9791936,"(40.7717807, -73.9791936)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468494,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,21:35,BROOKLYN,11224,40.5769818,-73.9815654,"(40.5769818, -73.9815654)",STILLWELL AVENUE,MERMAID AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4470214,Bus,E-SCOOTER,,, +10/17/2021,8:45,BROOKLYN,11218,40.6379657,-73.9818872,"(40.6379657, -73.9818872)",15 AVENUE,39 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,1:28,BRONX,10475,40.870247,-73.83097,"(40.870247, -73.83097)",ASCH LOOP,ALDRICH STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4519883,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/15/2021,10:40,,,40.809564,-73.9292188,"(40.809564, -73.9292188)",EAST 135 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467714,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,20:02,BROOKLYN,11249,40.7016614,-73.9614533,"(40.7016614, -73.9614533)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468141,Sedan,,,, +10/18/2021,1:56,MANHATTAN,10017,40.7558709,-73.9728206,"(40.7558709, -73.9728206)",EAST 49 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468273,Sedan,Sedan,,, +10/14/2021,11:25,BROOKLYN,11221,40.6886896,-73.9179266,"(40.6886896, -73.9179266)",,,1124 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467075,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/20/2021,15:12,BRONX,10466,40.8954288,-73.8446221,"(40.8954288, -73.8446221)",BUSSING AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469570,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,1:17,MANHATTAN,10032,40.8422498,-73.935389,"(40.8422498, -73.935389)",,,2244 AMSTERDAM AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4467946,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/17/2021,8:30,BRONX,10459,40.8288537,-73.8993188,"(40.8288537, -73.8993188)",UNION AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468701,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,20:10,,,40.7697928,-73.9168275,"(40.7697928, -73.9168275)",33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468241,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,5:50,QUEENS,11411,40.6970864,-73.7332208,"(40.6970864, -73.7332208)",,,115-58 226 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4467667,Sedan,,,, +10/21/2021,11:53,MANHATTAN,10009,40.7329525,-73.979967,"(40.7329525, -73.979967)",,,276 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469484,Sedan,Sedan,,, +10/19/2021,17:55,,,40.7991471,-73.9725285,"(40.7991471, -73.9725285)",WEST 101 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469055,Sedan,Sedan,,, +11/02/2021,17:25,,,40.672363,-73.9308,"(40.672363, -73.9308)",PARK PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473719,Sedan,,,, +10/15/2021,22:42,BRONX,10456,40.8240665,-73.9087095,"(40.8240665, -73.9087095)",EAST 163 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468673,Motorcycle,moped,,, +10/12/2021,22:40,BROOKLYN,11207,40.6762804,-73.8921621,"(40.6762804, -73.8921621)",ATLANTIC AVENUE,MILLER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467002,Van,Sedan,,, +10/19/2021,8:18,QUEENS,11101,40.7536447,-73.913137,"(40.7536447, -73.913137)",,,49-01 NORTHERN BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468718,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/13/2021,8:35,BROOKLYN,11206,40.7093827,-73.9370982,"(40.7093827, -73.9370982)",WATERBURY STREET,SCHOLES STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,0:00,BROOKLYN,11233,40.6707181,-73.9170231,"(40.6707181, -73.9170231)",SARATOGA AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469765,Sedan,Concrete Mixer,,, +10/09/2021,18:13,MANHATTAN,10029,40.7878871,-73.938645,"(40.7878871, -73.938645)",,,450 EAST 105 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466633,Sedan,Sedan,,, +10/16/2021,10:00,BRONX,10467,40.877528,-73.8754773,"(40.877528, -73.8754773)",,,3340 RESERVOIR OVAL EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4468391,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,0:00,BRONX,10472,40.8266576,-73.8738952,"(40.8266576, -73.8738952)",MORRISON AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469739,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,4:17,QUEENS,11385,40.7081322,-73.9068526,"(40.7081322, -73.9068526)",,,2020 MENAHAN STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4468477,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +10/18/2021,19:25,QUEENS,11417,40.6753129,-73.8433035,"(40.6753129, -73.8433035)",133 AVENUE,CROSS BAY BOULEVARD,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4468585,Sedan,Sedan,,, +10/14/2021,6:20,BROOKLYN,11238,40.6713414,-73.9636813,"(40.6713414, -73.9636813)",,,200 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,15:30,BRONX,10457,40.8409687,-73.899174,"(40.8409687, -73.899174)",EAST 173 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470768,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,22:00,MANHATTAN,10010,40.7416232,-73.9937353,"(40.7416232, -73.9937353)",WEST 21 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Other Vehicular,,,,,4467783,Bike,,,, +10/22/2021,15:53,BROOKLYN,11216,40.6784553,-73.9496774,"(40.6784553, -73.9496774)",NOSTRAND AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470339,Pick-up Truck,,,, +10/13/2021,18:50,,,40.7536767,-73.9144654,"(40.7536767, -73.9144654)",NORTHERN BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466975,Sedan,Bike,,, +11/02/2021,15:32,,,40.58832,-73.98523,"(40.58832, -73.98523)",HARWAY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473588,Sedan,Sedan,,, +10/17/2021,0:41,BROOKLYN,11208,40.6694586,-73.8628301,"(40.6694586, -73.8628301)",ELDERTS LANE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4468173,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,12:00,,,40.8134591,-73.9393264,"(40.8134591, -73.9393264)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468287,Sedan,,,, +10/16/2021,16:28,QUEENS,11434,40.6916518,-73.7791971,"(40.6916518, -73.7791971)",MERRICK BOULEVARD,LINDEN BOULEVARD,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4468196,School Bus,Sedan,,, +10/21/2021,17:41,BRONX,10458,40.856813,-73.8981703,"(40.856813, -73.8981703)",EAST 183 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470693,Sedan,Sedan,Sedan,, +10/15/2021,9:32,QUEENS,11691,40.6069558,-73.7435241,"(40.6069558, -73.7435241)",EMPIRE AVENUE,VIRGINIA STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467328,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,12:00,BRONX,10470,40.9020444,-73.8515521,"(40.9020444, -73.8515521)",WHITE PLAINS ROAD,EAST 240 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467957,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/14/2021,10:00,BROOKLYN,11219,40.6280663,-74.0113882,"(40.6280663, -74.0113882)",,,956 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467185,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,9:10,QUEENS,11423,40.7177844,-73.7624803,"(40.7177844, -73.7624803)",199 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468786,Sedan,,,, +10/16/2021,0:10,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,11:55,BRONX,10467,40.8696211,-73.8624461,"(40.8696211, -73.8624461)",ADEE AVENUE,MATTHEWS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469724,Sedan,Sedan,,, +10/16/2021,20:25,QUEENS,11435,40.7035212,-73.8146937,"(40.7035212, -73.8146937)",,,140-23 QUEENS BOULEVARD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468053,Sedan,E-Bike,,, +10/13/2021,17:28,BRONX,10462,40.8543571,-73.8653181,"(40.8543571, -73.8653181)",,,758 LYDIG AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4466798,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,14:30,QUEENS,11356,40.781662,-73.83366,"(40.781662, -73.83366)",,,135-05 20 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,23:03,,,40.5791996,-73.9819392,"(40.5791996, -73.9819392)",NEPTUNE AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467778,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,11:40,,,40.8200975,-73.9550764,"(40.8200975, -73.9550764)",BROADWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467561,Sedan,Bus,,, +10/15/2021,3:00,BROOKLYN,11236,40.6441868,-73.9083974,"(40.6441868, -73.9083974)",,,1014 EAST 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467301,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,10:40,,,40.7452528,-73.8700626,"(40.7452528, -73.8700626)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466666,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/14/2021,22:55,,,40.6347677,-73.9353599,"(40.6347677, -73.9353599)",GLENWOOD ROAD,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4467815,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,15:19,MANHATTAN,10029,40.7974442,-73.9401664,"(40.7974442, -73.9401664)",,,2111 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470691,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,13:46,BROOKLYN,11218,40.6447408,-73.9818825,"(40.6447408, -73.9818825)",,,30 TEHAMA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468466,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/16/2021,15:11,BROOKLYN,11224,40.5791996,-73.9819392,"(40.5791996, -73.9819392)",STILLWELL AVENUE,NEPTUNE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469191,Motorcycle,Motorcycle,Sedan,, +10/20/2021,13:30,QUEENS,11385,40.7006089,-73.9099388,"(40.7006089, -73.9099388)",PALMETTO STREET,SAINT NICHOLAS,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469893,Sedan,,,, +10/15/2021,18:20,QUEENS,11378,40.7159592,-73.9054492,"(40.7159592, -73.9054492)",,,60-15 60 ROAD,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4468733,E-Scooter,Sedan,,, +10/17/2021,12:15,,,40.7497247,-73.9836217,"(40.7497247, -73.9836217)",5 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4468228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/23/2021,21:19,BROOKLYN,11207,40.6731495,-73.8961904,"(40.6731495, -73.8961904)",PENNSYLVANIA AVENUE,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4470476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,22:30,,,40.6875062,-73.9146441,"(40.6875062, -73.9146441)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470236,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,15:40,QUEENS,11373,40.7334973,-73.8703694,"(40.7334973, -73.8703694)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4470453,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/17/2021,1:25,MANHATTAN,10016,40.750218,-73.979056,"(40.750218, -73.979056)",EAST 39 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467805,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,15:00,BROOKLYN,11222,40.7221142,-73.9495725,"(40.7221142, -73.9495725)",,,297 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468345,Box Truck,,,, +10/21/2021,14:45,,,40.8153058,-73.9436997,"(40.8153058, -73.9436997)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4470643,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,14:20,MANHATTAN,10028,40.7771936,-73.9522385,"(40.7771936, -73.9522385)",EAST 85 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468444,Motorcycle,,,, +10/19/2021,19:45,,,40.7354132,-73.9183462,"(40.7354132, -73.9183462)",48 STREET,LAUREL HILL BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468964,,,,, +10/16/2021,11:30,STATEN ISLAND,10312,40.5363506,-74.1515858,"(40.5363506, -74.1515858)",LITTLEFIELD AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4467731,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,11:14,QUEENS,11417,40.6721508,-73.8431812,"(40.6721508, -73.8431812)",CROSS BAY BOULEVARD,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4468010,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/17/2021,21:50,QUEENS,11373,40.7449302,-73.8845113,"(40.7449302, -73.8845113)",,,80-63 BAXTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468612,AMBULANCE,Sedan,,, +10/23/2021,3:30,MANHATTAN,10002,40.7184247,-73.9890869,"(40.7184247, -73.9890869)",,,92 LUDLOW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470118,Taxi,Sedan,,, +10/20/2021,13:55,QUEENS,11379,40.7220211,-73.8856413,"(40.7220211, -73.8856413)",74 STREET,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469419,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,13:28,BRONX,10473,40.8213688,-73.8784106,"(40.8213688, -73.8784106)",,,1530 STORY AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470381,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,3:37,BROOKLYN,11210,40.6366949,-73.9515048,"(40.6366949, -73.9515048)",,,1401 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468305,Sedan,Sedan,Sedan,, +11/02/2021,20:30,BRONX,10467,40.878887,-73.86058,"(40.878887, -73.86058)",,,833 EAST 214 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4473915,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,0:00,,,40.6937253,-73.9257141,"(40.6937253, -73.9257141)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468328,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,15:55,,,,,,EAST TREMONT AVENUE,WESTCHESTER SQUARE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447979,Sedan,,,, +10/16/2021,20:30,BROOKLYN,11206,40.7035565,-73.9502247,"(40.7035565, -73.9502247)",UNION AVENUE,MIDDLETON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,19:55,BROOKLYN,11205,40.6980388,-73.9628402,"(40.6980388, -73.9628402)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,2,0,0,0,1,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468201,Motorscooter,Bike,,, +10/18/2021,18:37,MANHATTAN,10014,40.7291015,-74.0050336,"(40.7291015, -74.0050336)",,,224 VARICK STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,3:11,,,40.6919494,-73.9398228,"(40.6919494, -73.9398228)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470362,Sedan,,,, +10/20/2021,7:00,,,40.6785759,-73.9162995,"(40.6785759, -73.9162995)",SARATOGA AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4469318,Sedan,E-Bike,,, +10/19/2021,4:04,,,40.6918538,-73.8109872,"(40.6918538, -73.8109872)",LIBERTY AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4468774,Sedan,Van,,, +10/14/2021,0:00,BROOKLYN,11208,40.6865037,-73.8699992,"(40.6865037, -73.8699992)",O BRIEN PLACE,LINCOLN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467269,Motorcycle,,,, +10/13/2021,17:00,BROOKLYN,11222,40.7334764,-73.9508369,"(40.7334764, -73.9508369)",,,251 HURON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466873,Box Truck,,,, +10/18/2021,9:00,BROOKLYN,11223,40.6081513,-73.9699209,"(40.6081513, -73.9699209)",,,1732 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469670,Firetruck,Dump,,, +11/02/2021,10:35,MANHATTAN,10003,40.73235,-73.984955,"(40.73235, -73.984955)",2 AVENUE,EAST 14 STREET,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4473963,Taxi,Bike,,, +10/22/2021,12:27,BRONX,10453,40.8538162,-73.9084987,"(40.8538162, -73.9084987)",WEST BURNSIDE AVENUE,DAVIDSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470645,Bus,Garbage or Refuse,,, +10/21/2021,0:00,BROOKLYN,11222,40.7342808,-73.9433708,"(40.7342808, -73.9433708)",,,520 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4469553,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +10/07/2021,14:15,STATEN ISLAND,10306,40.5732959,-74.1337868,"(40.5732959, -74.1337868)",RICHMOND ROAD,SANTO COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467533,Station Wagon/Sport Utility Vehicle,Van,,, +09/01/2021,14:30,,,40.8690921,-73.8209195,"(40.8690921, -73.8209195)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4452888,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,9:06,MANHATTAN,10028,40.777295,-73.9547074,"(40.777295, -73.9547074)",,,200 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467323,Convertible,Station Wagon/Sport Utility Vehicle,,, +09/30/2021,8:47,,,40.7594002,-73.9014972,"(40.7594002, -73.9014972)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4464651,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,10:45,QUEENS,11422,40.6668431,-73.7366239,"(40.6668431, -73.7366239)",,,139-07 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469139,Sedan,Sedan,,, +10/22/2021,7:30,BROOKLYN,11210,40.6362615,-73.9562213,"(40.6362615, -73.9562213)",,,659 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470178,Sedan,,,, +10/13/2021,20:25,QUEENS,11105,40.7698167,-73.9017619,"(40.7698167, -73.9017619)",DITMARS BOULEVARD,47 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468626,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/23/2021,1:10,BRONX,10458,40.8562453,-73.8955793,"(40.8562453, -73.8955793)",WEBSTER AVENUE,EAST 183 STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4470019,Taxi,,,, +10/22/2021,19:45,MANHATTAN,10002,40.7229337,-73.9886394,"(40.7229337, -73.9886394)",EAST HOUSTON STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4470204,Sedan,,,, +10/18/2021,19:10,,,40.8163756,-73.9483556,"(40.8163756, -73.9483556)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4469001,Sedan,Sedan,,, +10/16/2021,17:40,QUEENS,11433,40.703204,-73.7891925,"(40.703204, -73.7891925)",LIBERTY AVENUE,169 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4467978,Sedan,Sedan,,, +10/22/2021,7:05,BRONX,10455,40.8155323,-73.918602,"(40.8155323, -73.918602)",3 AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4469746,Van,,,, +08/07/2021,21:30,MANHATTAN,10033,40.84992,-73.93148,"(40.84992, -73.93148)",AUDUBON AVENUE,WEST 183 STREET,,3,1,3,1,0,0,0,0,Unspecified,,,,,4444798,Sedan,,,, +08/15/2021,20:15,BROOKLYN,11211,40.7145,-73.957565,"(40.7145, -73.957565)",METROPOLITAN AVENUE,ROEBLING STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4448031,Station Wagon/Sport Utility Vehicle,Sedan,Bike,, +08/14/2021,6:18,,,40.614223,-73.94743,"(40.614223, -73.94743)",KINGS HIGHWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4448068,Sedan,,,, +08/15/2021,8:12,BRONX,10467,40.869675,-73.86564,"(40.869675, -73.86564)",,,740 ADEE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4447237,Sedan,Sedan,,, +08/15/2021,21:30,,,40.58401,-73.98587,"(40.58401, -73.98587)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4447391,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,5:37,,,40.57397,-74.16992,"(40.57397, -74.16992)",INDEPENDENCE AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447291,Sedan,Sedan,,, +05/30/2021,15:00,QUEENS,11378,40.719856,-73.91049,"(40.719856, -73.91049)",58 PLACE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447986,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,15:30,BROOKLYN,11218,40.632824,-73.97633,"(40.632824, -73.97633)",,,699 EAST 2 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447868,Bus,Bike,,, +07/16/2021,12:40,MANHATTAN,10027,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447836,Sedan,Moped,,, +08/15/2021,1:48,BROOKLYN,11209,40.63032,-74.0223,"(40.63032, -74.0223)",5 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4446895,Sedan,Motorcycle,,, +08/15/2021,20:37,QUEENS,11432,40.71405,-73.77801,"(40.71405, -73.77801)",HILLSIDE AVENUE,DALNY ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4447265,Sedan,Sedan,,, +08/10/2021,16:00,,,40.76459,-73.75873,"(40.76459, -73.75873)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4448041,Pick-up Truck,Sedan,,, +08/15/2021,15:50,MANHATTAN,10004,40.705143,-74.01559,"(40.705143, -74.01559)",,,2 WASHINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447475,Sedan,,,, +08/13/2021,16:05,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",EAST 180 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4447800,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/13/2021,10:30,BROOKLYN,11214,40.59993,-73.99832,"(40.59993, -73.99832)",,,151 BAY 28 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447905,Taxi,,,, +07/30/2021,16:30,QUEENS,11106,40.76691,-73.93837,"(40.76691, -73.93837)",VERNON BOULEVARD,9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447947,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/15/2021,5:15,,,40.749725,-73.98363,"(40.749725, -73.98363)",WEST 36 STREET,,,2,0,0,0,2,0,0,0,Driver Inexperience,Unspecified,,,,4446917,Taxi,Pedicab,,, +08/15/2021,12:11,,,,,,BRUCKNER EXPRESSWAY,WATERBURY AVENUE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4447330,Sedan,Sedan,,, +08/13/2021,6:00,BROOKLYN,11218,40.643646,-73.989784,"(40.643646, -73.989784)",FORT HAMILTON PARKWAY,38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447865,Sedan,,,, +08/12/2021,19:44,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4447898,Bike,Taxi,,, +08/15/2021,7:50,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447653,Taxi,,,, +08/15/2021,6:05,BROOKLYN,11208,40.66316,-73.86694,"(40.66316, -73.86694)",,,987 CRESCENT STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4446954,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,9:00,BRONX,10466,40.882477,-73.845055,"(40.882477, -73.845055)",,,1218 EAST 225 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447191,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/13/2021,16:35,BROOKLYN,11226,40.646923,-73.94818,"(40.646923, -73.94818)",EAST 31 STREET,TILDEN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4448000,Station Wagon/Sport Utility Vehicle,Bike,,, +08/15/2021,14:52,BROOKLYN,11208,40.67953,-73.879105,"(40.67953, -73.879105)",,,3144 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447416,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,22:00,BROOKLYN,11203,40.66223,-73.93997,"(40.66223, -73.93997)",ALBANY AVENUE,EAST NEW YORK AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4447486,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,18:15,MANHATTAN,10030,,,,,,156-158 WEST 141 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447533,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,11:10,,,,,,MOSHOLU PARKWAY,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447149,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,14:00,QUEENS,11385,40.71046,-73.86646,"(40.71046, -73.86646)",,,82-13 COOPER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447922,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,14:30,BRONX,10467,40.8678,-73.86251,"(40.8678, -73.86251)",ARNOW AVENUE,MATTHEWS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447936,Sedan,,,, +06/02/2021,0:30,QUEENS,11378,40.72299,-73.90417,"(40.72299, -73.90417)",,,61-07 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,12:30,,,40.795525,-73.97594,"(40.795525, -73.97594)",WEST 95 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447135,Sedan,,,, +08/15/2021,11:45,QUEENS,11373,40.735325,-73.865166,"(40.735325, -73.865166)",JUNCTION BOULEVARD,59 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447102,Station Wagon/Sport Utility Vehicle,Bike,,, +08/10/2021,10:00,QUEENS,11421,40.693264,-73.85324,"(40.693264, -73.85324)",JAMAICA AVENUE,92 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4447882,Sedan,Bike,,, +08/15/2021,6:15,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4447181,Sedan,Sedan,,, +08/15/2021,0:20,BRONX,10456,40.831635,-73.91894,"(40.831635, -73.91894)",CARROLL PLACE,EAST 166 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,Passing Too Closely,,,4447021,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/15/2021,20:38,MANHATTAN,10030,40.821644,-73.94314,"(40.821644, -73.94314)",,,310 WEST 143 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4447525,Sedan,,,, +08/15/2021,16:41,,,40.744915,-73.903694,"(40.744915, -73.903694)",WOODSIDE AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447315,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,3:00,,,,,,HUTCHINSON RIVER PARKWAY EAST,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447341,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,14:00,BROOKLYN,11210,40.633934,-73.9391,"(40.633934, -73.9391)",,,933 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448005,Sedan,,,, +08/13/2021,16:06,,,40.77786,-73.945724,"(40.77786, -73.945724)",EAST 89 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448071,Sedan,Sedan,,, +08/15/2021,3:59,,,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4447613,Sedan,,,, +08/15/2021,6:00,MANHATTAN,10025,40.800087,-73.962814,"(40.800087, -73.962814)",,,100 WEST 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4447422,Sedan,Sedan,Sedan,, +08/15/2021,7:29,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447559,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,6:05,MANHATTAN,10001,40.749207,-73.99419,"(40.749207, -73.99419)",,,265 WEST 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447071,Sedan,Sedan,,, +08/15/2021,16:00,BROOKLYN,11219,40.629425,-74.01037,"(40.629425, -74.01037)",,,942 67 STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4447167,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,18:10,BROOKLYN,11208,40.668785,-73.87758,"(40.668785, -73.87758)",DUMONT AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447274,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,16:00,QUEENS,11385,40.697933,-73.892006,"(40.697933, -73.892006)",64 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447916,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,16:00,BRONX,10462,40.838116,-73.85254,"(40.838116, -73.85254)",,,1610 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447976,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,21:04,BROOKLYN,11208,40.679638,-73.864395,"(40.679638, -73.864395)",,,154 FORBELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447415,Sedan,,,, +08/11/2021,16:08,STATEN ISLAND,10304,40.591022,-74.100914,"(40.591022, -74.100914)",RICHMOND ROAD,FOUR CORNERS ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4447829,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/02/2021,19:30,QUEENS,11377,40.75054,-73.896545,"(40.75054, -73.896545)",35 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447923,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,17:30,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",3 AVENUE,EAST 42 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,22:45,QUEENS,11385,40.705772,-73.89997,"(40.705772, -73.89997)",60 PLACE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4447961,Sedan,Sedan,,, +08/15/2021,0:30,BROOKLYN,11226,40.646847,-73.950134,"(40.646847, -73.950134)",TILDEN AVENUE,EAST 29 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4447254,Sedan,Sedan,,, +07/10/2021,17:00,QUEENS,11385,40.703575,-73.85716,"(40.703575, -73.85716)",,,88-55 82 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447887,Sedan,,,, +08/15/2021,12:25,,,40.666637,-73.7646,"(40.666637, -73.7646)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447110,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,11:00,BROOKLYN,11207,40.686417,-73.9087,"(40.686417, -73.9087)",COOPER STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447792,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,21:35,BRONX,10473,40.82112,-73.848526,"(40.82112, -73.848526)",CASTLE HILL AVENUE,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447442,Sedan,Sedan,,, +08/15/2021,18:44,,,40.814774,-73.94038,"(40.814774, -73.94038)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447507,Station Wagon/Sport Utility Vehicle,Bike,,, +07/01/2021,11:00,QUEENS,11385,40.700665,-73.8961,"(40.700665, -73.8961)",MYRTLE AVENUE,DECATUR STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447968,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/15/2021,21:05,,,40.57666,-73.965836,"(40.57666, -73.965836)",BRIGHTON BEACH AVENUE,BRIGHTON 1 PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4447766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,18:30,,,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4447874,Sedan,Bike,,, +08/15/2021,19:35,QUEENS,11412,,,,115 AVENUE,198 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447305,Sedan,,,, +08/13/2021,15:30,BROOKLYN,11222,40.73211,-73.951935,"(40.73211, -73.951935)",,,290 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447842,Pick-up Truck,Sedan,,, +08/15/2021,15:44,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",BROADWAY,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447334,Sedan,Sedan,,, +08/12/2021,7:45,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",CROSS ISLAND PARKWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,18:00,QUEENS,11422,40.651737,-73.730255,"(40.651737, -73.730255)",,,149-51 259 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447261,Sedan,,,, +08/15/2021,20:29,BROOKLYN,11238,40.683598,-73.96744,"(40.683598, -73.96744)",,,848 FULTON STREET,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448051,Station Wagon/Sport Utility Vehicle,Bike,,, +08/15/2021,10:32,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447409,Sedan,Sedan,,, +05/26/2021,18:35,QUEENS,11379,40.706978,-73.87464,"(40.706978, -73.87464)",COOPER AVENUE,71 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4447911,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,14:26,BRONX,10468,40.868065,-73.89438,"(40.868065, -73.89438)",,,2714 CRESTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447213,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,0:00,,,40.606415,-74.131874,"(40.606415, -74.131874)",,,191 BRADLEY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447814,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/03/2021,15:00,QUEENS,11385,40.711014,-73.86451,"(40.711014, -73.86451)",,,88-36 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447928,Sedan,,,, +08/15/2021,16:20,BRONX,10452,40.83862,-73.92708,"(40.83862, -73.92708)",WEST 168 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447366,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,9:55,BROOKLYN,11207,40.655197,-73.8806,"(40.655197, -73.8806)",FLATLANDS AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447267,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,18:30,BROOKLYN,11232,40.645138,-73.998276,"(40.645138, -73.998276)",,,829 42 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4447380,,,,, +08/15/2021,18:40,,,40.67335,-73.82582,"(40.67335, -73.82582)",114 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4447323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +07/29/2021,16:20,MANHATTAN,10026,40.803413,-73.958015,"(40.803413, -73.958015)",,,320 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4447854,Sedan,Sedan,,, +08/15/2021,0:35,,,40.666157,-73.79904,"(40.666157, -73.79904)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4446898,Sedan,Sedan,,, +08/15/2021,18:15,QUEENS,11378,40.71736,-73.9064,"(40.71736, -73.9064)",59 DRIVE,60 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447894,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,8:29,QUEENS,11385,40.709988,-73.90475,"(40.709988, -73.90475)",FOREST AVENUE,MENAHAN STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4447957,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,1:10,QUEENS,11368,40.757053,-73.871086,"(40.757053, -73.871086)",,,97-16 NORTHERN BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447243,Station Wagon/Sport Utility Vehicle,Bike,,, +08/15/2021,3:24,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,6 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4447700,Sedan,Sedan,,, +08/02/2021,15:29,BRONX,10472,40.830128,-73.85087,"(40.830128, -73.85087)",,,2170 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4447945,E-Scooter,,,, +08/14/2021,20:00,,,40.578556,-74.1696,"(40.578556, -74.1696)",,,2795 RICHMOND AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447927,Sedan,,,, +08/12/2021,18:25,BRONX,10457,40.84857,-73.88542,"(40.84857, -73.88542)",,,2172 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4447835,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/15/2021,3:51,MANHATTAN,10016,40.743874,-73.97163,"(40.743874, -73.97163)",FDR DRIVE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446924,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,13:42,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",9 AVENUE,WEST 44 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447867,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,15:35,BROOKLYN,11210,40.631565,-73.94635,"(40.631565, -73.94635)",,,1598 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447210,Sedan,,,, +08/15/2021,15:00,QUEENS,11430,,,,NASSAU EXPRESSWAY,NORTH HANGAR ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447325,Sedan,Sedan,,, +08/13/2021,22:10,,,40.619576,-74.00461,"(40.619576, -74.00461)",74 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447899,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,18:38,,,40.669735,-73.75111,"(40.669735, -73.75111)",224 STREET,141 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447262,Sedan,Sedan,,, +08/15/2021,19:12,BROOKLYN,11209,40.632538,-74.032295,"(40.632538, -74.032295)",,,125 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447643,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,8:16,,,40.626312,-74.15858,"(40.626312, -74.15858)",HEANEY AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447813,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,8:00,,,40.63608,-74.136505,"(40.63608, -74.136505)",,,1597 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447294,Pick-up Truck,,,, +07/30/2021,15:30,QUEENS,11378,40.721897,-73.913185,"(40.721897, -73.913185)",,,57-45 RUST STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447987,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,14:20,,,,,,DEBEVOISE AVENUE,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4447938,Sedan,Bus,,, +07/10/2021,23:05,QUEENS,11385,40.697163,-73.90685,"(40.697163, -73.90685)",WYCKOFF AVENUE,HANCOCK STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4447886,Pick-up Truck,,,, +08/15/2021,17:33,BROOKLYN,11211,40.70835,-73.95323,"(40.70835, -73.95323)",SOUTH 4 STREET,HOOPER STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448035,Station Wagon/Sport Utility Vehicle,Motorbike,,, +08/15/2021,5:26,QUEENS,11413,40.6755,-73.73864,"(40.6755, -73.73864)",MERRICK BOULEVARD,231 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4447109,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,1:59,BRONX,10468,40.86196,-73.910324,"(40.86196, -73.910324)",,,236 WEST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447140,Sedan,Sedan,,, +08/15/2021,16:15,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4447429,Motorcycle,,,, +08/09/2021,10:00,QUEENS,11379,40.7155,-73.88325,"(40.7155, -73.88325)",,,64-13 72 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447932,Sedan,,,, +08/15/2021,5:15,BRONX,10461,40.8536,-73.84338,"(40.8536, -73.84338)",,,2008 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/22/2021,0:00,MANHATTAN,10018,40.7538182,-73.9925039,"(40.7538182, -73.9925039)",,,525 8 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470425,Sedan,Van,,, +08/14/2021,6:00,,,40.614563,-73.994804,"(40.614563, -73.994804)",73 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447904,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,4:43,BROOKLYN,11222,40.725582,-73.94873,"(40.725582, -73.94873)",,,91 MC GUINNESS BOULEVARD,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,Unspecified,Unspecified,,4447080,Sedan,Sedan,Motorcycle,Sedan, +08/15/2021,14:40,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,6:20,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447443,Tractor Truck Diesel,Sedan,,, +08/15/2021,13:00,QUEENS,11421,40.696564,-73.856476,"(40.696564, -73.856476)",,,84-30 89 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447117,Sedan,,,, +08/15/2021,17:28,QUEENS,11367,40.72594,-73.8139,"(40.72594, -73.8139)",75 AVENUE,153 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4447273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,0:52,STATEN ISLAND,10304,40.59922,-74.09173,"(40.59922, -74.09173)",RICHMOND ROAD,SPARKHILL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447831,Convertible,Sedan,,, +08/14/2021,2:50,MANHATTAN,10036,40.76226,-73.9919,"(40.76226, -73.9919)",,,456 WEST 47 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4447873,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,20:58,BROOKLYN,11223,40.600895,-73.98031,"(40.600895, -73.98031)",WEST 8 STREET,AVENUE S,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447614,Sedan,Bike,,, +08/15/2021,2:01,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4448087,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,15:00,,,40.787018,-73.811584,"(40.787018, -73.811584)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447218,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,21:01,BRONX,10469,40.8608,-73.85754,"(40.8608, -73.85754)",,,2355 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4447282,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/25/2021,18:00,QUEENS,11385,40.705257,-73.90936,"(40.705257, -73.90936)",,,587 ONDERDONK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447981,Motorcycle,,,, +08/15/2021,22:50,BRONX,10461,40.845634,-73.83026,"(40.845634, -73.83026)",ROBERTS AVENUE,HOBART AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447975,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2021,5:45,QUEENS,11385,40.713436,-73.91467,"(40.713436, -73.91467)",STARR STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447919,Sedan,Sedan,,, +08/15/2021,0:00,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4447822,,,,, +08/14/2021,15:20,QUEENS,11354,40.76003,-73.82832,"(40.76003, -73.82832)",,,136-55 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447962,Tow Truck / Wrecker,Bus,,, +08/15/2021,5:00,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",ATKINS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447420,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/15/2021,3:13,BROOKLYN,11208,40.661022,-73.87845,"(40.661022, -73.87845)",,,941 CLEVELAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446946,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,9:10,,,40.812138,-73.96636,"(40.812138, -73.96636)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4447551,Sedan,Sedan,,, +08/15/2021,16:45,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447186,Sedan,Motorcycle,,, +08/15/2021,3:50,MANHATTAN,10038,40.710648,-73.99662,"(40.710648, -73.99662)",,,80 CATHERINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,15:07,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447396,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,10:23,QUEENS,11412,,,,MURDOCK AVENUE,205 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447311,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,21:33,MANHATTAN,10026,40.797676,-73.94929,"(40.797676, -73.94929)",,,2 WEST 111 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447880,Sedan,Sedan,,, +08/15/2021,2:00,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447339,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,11:05,QUEENS,11379,40.71374,-73.90091,"(40.71374, -73.90091)",,,62-01 FRESH POND ROAD,1,0,0,0,0,0,1,0,Driver Inexperience,Other Vehicular,Unspecified,,,4447993,Sedan,Sedan,Sedan,, +08/15/2021,17:00,,,40.700054,-73.92459,"(40.700054, -73.92459)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447248,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,16:18,BROOKLYN,11233,40.679516,-73.91109,"(40.679516, -73.91109)",ROCKAWAY AVENUE,HULL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447576,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/15/2021,12:30,,,40.579197,-73.98195,"(40.579197, -73.98195)",STILLWELL AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447771,Sedan,Motorcycle,,, +08/15/2021,19:30,BROOKLYN,11207,40.67035,-73.89743,"(40.67035, -73.89743)",GEORGIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447279,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,18:52,BROOKLYN,11225,40.662674,-73.94562,"(40.662674, -73.94562)",BROOKLYN AVENUE,LEFFERTS AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4447485,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,5:00,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447002,Sedan,,,, +08/15/2021,0:00,,,40.585037,-73.95645,"(40.585037, -73.95645)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447357,Sedan,,,, +08/15/2021,12:26,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447146,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,11:30,,,40.58353,-73.971214,"(40.58353, -73.971214)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4447386,Sedan,,,, +08/15/2021,2:00,QUEENS,11372,40.747177,-73.891495,"(40.747177, -73.891495)",,,37-67 74 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447242,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,18:11,QUEENS,11412,40.70537,-73.775826,"(40.70537, -73.775826)",LIBERTY AVENUE,183 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447350,Sedan,Pick-up Truck,,, +08/15/2021,19:00,BROOKLYN,11203,40.64144,-73.927345,"(40.64144, -73.927345)",,,766 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448004,Sedan,,,, +08/15/2021,6:30,BRONX,10457,40.844902,-73.89011,"(40.844902, -73.89011)",EAST TREMONT AVENUE,CLINTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447841,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/15/2021,22:55,,,40.622845,-74.14153,"(40.622845, -74.14153)",GALLOWAY AVENUE,CRYSTAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/13/2021,11:11,QUEENS,11422,40.636044,-73.740265,"(40.636044, -73.740265)",,,253-01 ROCKAWAY BOULEVARD,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4447859,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/15/2021,3:27,,,40.685463,-73.727,"(40.685463, -73.727)",,,238 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446900,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,8:57,QUEENS,11379,40.713963,-73.8851,"(40.713963, -73.8851)",66 ROAD,70 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4447895,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/12/2021,15:55,,,40.578316,-73.960785,"(40.578316, -73.960785)",BRIGHTON 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448083,Sedan,,,, +08/15/2021,5:16,BROOKLYN,11216,40.672527,-73.95026,"(40.672527, -73.95026)",NOSTRAND AVENUE,STERLING PLACE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4447684,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +08/12/2021,4:45,,,40.69897,-73.95702,"(40.69897, -73.95702)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4447955,Sedan,,,, +08/09/2021,12:15,QUEENS,11378,40.722042,-73.908394,"(40.722042, -73.908394)",,,57-41 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447933,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,14:18,,,0,0,"(0.0, 0.0)",NARROWS ROAD SOUTH,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447447,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,7:45,QUEENS,11419,40.69425,-73.81505,"(40.69425, -73.81505)",,,97-18 133 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4447116,Sedan,Sedan,,, +08/15/2021,12:35,QUEENS,11416,40.680763,-73.85302,"(40.680763, -73.85302)",86 STREET,102 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,19:01,BRONX,10455,40.81793,-73.9053,"(40.81793, -73.9053)",EAST 156 STREET,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4447410,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,21:40,,,40.71699,-73.82402,"(40.71699, -73.82402)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4447893,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,1:07,,,40.682907,-73.95979,"(40.682907, -73.95979)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447166,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,21:00,,,40.61456,-74.156555,"(40.61456, -74.156555)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447430,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,15:30,QUEENS,11378,40.715538,-73.90725,"(40.715538, -73.90725)",59 PLACE,60 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447910,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,0:00,QUEENS,11357,40.787266,-73.81139,"(40.787266, -73.81139)",,,150-55 CROSS ISLAND PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447217,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,0:10,MANHATTAN,10039,40.824757,-73.94052,"(40.824757, -73.94052)",8 AVENUE,WEST 148 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4447511,Moped,,,, +08/14/2021,8:00,QUEENS,11385,40.70775,-73.906204,"(40.70775, -73.906204)",,,2040 GROVE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447931,Sedan,,,, +08/15/2021,5:59,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447062,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,8:00,BRONX,10456,40.82137,-73.90491,"(40.82137, -73.90491)",EAST 161 STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447411,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,1:29,,,40.825054,-73.89117,"(40.825054, -73.89117)",WESTCHESTER AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447501,Sedan,Sedan,,, +08/15/2021,23:02,BRONX,10457,40.846687,-73.905594,"(40.846687, -73.905594)",TOPPING AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447570,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,6:00,STATEN ISLAND,10312,40.548096,-74.189735,"(40.548096, -74.189735)",,,707 WOODROW ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4447091,Pick-up Truck,,,, +08/15/2021,11:45,,,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447159,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/13/2021,14:30,QUEENS,11379,40.71235,-73.89128,"(40.71235, -73.89128)",,,66-26 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447920,Sedan,,,, +04/28/2021,11:59,QUEENS,11385,40.701767,-73.90346,"(40.701767, -73.90346)",,,861 ONDERDONK AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447926,Moped,,,, +08/15/2021,17:35,,,40.895447,-73.88002,"(40.895447, -73.88002)",EAST 233 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447206,Sedan,,,, +08/15/2021,22:30,,,40.655743,-73.85908,"(40.655743, -73.85908)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,4447326,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/19/2021,13:15,QUEENS,11378,40.716114,-73.912796,"(40.716114, -73.912796)",,,59-49 55 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447912,Sedan,,,, +08/15/2021,23:50,,,40.686577,-73.947464,"(40.686577, -73.947464)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447663,Sedan,Sedan,,, +08/15/2021,22:00,QUEENS,11432,40.711468,-73.80919,"(40.711468, -73.80919)",150 STREET,85 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447885,Sedan,Sedan,,, +08/15/2021,13:20,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",FRANCIS LEWIS BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4447108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,14:50,,,40.850807,-73.86781,"(40.850807, -73.86781)",BRONX PARK EAST,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447239,PK,Sedan,,, +08/15/2021,0:17,BRONX,10462,40.833073,-73.8535,"(40.833073, -73.8535)",,,2122 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447001,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,15:26,BRONX,10475,40.880535,-73.83212,"(40.880535, -73.83212)",NEW ENGLAND THRUWAY,REEDS MILL LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447187,Station Wagon/Sport Utility Vehicle,Sedan,,, +05/08/2021,9:00,QUEENS,11378,40.726875,-73.89836,"(40.726875, -73.89836)",,,66-09 HULL AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4447958,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/15/2021,15:20,QUEENS,11373,40.74026,-73.867325,"(40.74026, -73.867325)",52 AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447404,Sedan,Sedan,,, +08/15/2021,17:59,QUEENS,11375,40.718094,-73.851425,"(40.718094, -73.851425)",FLEET STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4447177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,14:41,QUEENS,11385,40.70559,-73.85824,"(40.70559, -73.85824)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447988,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,14:00,BRONX,10457,40.85192,-73.89694,"(40.85192, -73.89694)",PARK AVENUE,EAST 180 STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4447839,Sedan,E-Scooter,Sedan,, +08/15/2021,2:25,BRONX,10459,40.822105,-73.90062,"(40.822105, -73.90062)",PROSPECT AVENUE,EAST 163 STREET,,2,0,0,0,1,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4447512,Sedan,Taxi,Bike,, +08/13/2021,18:40,BROOKLYN,11237,40.707577,-73.92884,"(40.707577, -73.92884)",INGRAHAM STREET,PORTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4448037,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,14:30,,,40.73663,-73.801025,"(40.73663, -73.801025)",65 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447263,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,19:00,MANHATTAN,10028,40.774933,-73.94477,"(40.774933, -73.94477)",EAST 86 STREET,EAST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447424,Sedan,,,, +08/15/2021,16:26,BROOKLYN,11230,40.616596,-73.97294,"(40.616596, -73.97294)",,,211 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447535,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,23:25,BROOKLYN,11213,40.663704,-73.936424,"(40.663704, -73.936424)",,,770 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447483,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,22:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4447318,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/15/2021,18:29,BRONX,10458,40.867577,-73.88806,"(40.867577, -73.88806)",,,2802 POND PLACE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4447809,Sedan,Sedan,,, +10/25/2021,10:00,QUEENS,11432,40.7069947,-73.7897878,"(40.7069947, -73.7897878)",,,169-26 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470821,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,12:17,QUEENS,11385,40.705513,-73.895386,"(40.705513, -73.895386)",68 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4447903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,20:37,BROOKLYN,11226,40.64156,-73.949554,"(40.64156, -73.949554)",,,379 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447257,Sedan,,,, +08/15/2021,16:39,BRONX,10458,40.852585,-73.884315,"(40.852585, -73.884315)",,,2327 CROTONA AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4447832,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,9:55,BROOKLYN,11215,40.668564,-73.98508,"(40.668564, -73.98508)",,,346 9 STREET,1,0,1,0,0,0,0,0,,,,,,4448097,,,,, +08/15/2021,13:04,BROOKLYN,11236,40.641945,-73.916626,"(40.641945, -73.916626)",EAST 83 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447246,Sedan,Sedan,,, +08/15/2021,0:31,,,40.584923,-73.982,"(40.584923, -73.982)",AVENUE Z,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4446938,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +07/25/2021,16:26,BROOKLYN,11230,40.609417,-73.9677,"(40.609417, -73.9677)",AVENUE P,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447860,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,17:30,,,40.58077,-73.96556,"(40.58077, -73.96556)",NEPTUNE AVENUE,BRIGHTON 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519714,Sedan,,,, +08/15/2021,4:30,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447141,Sedan,Sedan,,, +08/15/2021,19:40,,,40.841084,-73.93184,"(40.841084, -73.93184)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4447283,Sedan,Sedan,,, +07/31/2021,12:30,BROOKLYN,11206,40.711216,-73.94043,"(40.711216, -73.94043)",BUSHWICK AVENUE,MAUJER STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,,,,4447939,Sedan,Sedan,,, +08/15/2021,21:03,,,40.62349,-74.000534,"(40.62349, -74.000534)",67 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447900,,,,, +08/15/2021,17:00,MANHATTAN,10022,40.76285,-73.967735,"(40.76285, -73.967735)",EAST 60 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447710,,,,, +08/14/2021,13:45,QUEENS,11101,40.749054,-73.95222,"(40.749054, -73.95222)",VERNON BOULEVARD,44 DRIVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448025,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,3:30,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4447299,Motorcycle,,,, +08/15/2021,23:20,BRONX,10465,40.843014,-73.82372,"(40.843014, -73.82372)",,,1422 ROBERTSON PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Failure to Yield Right-of-Way,,,4447972,Sedan,Sedan,Sedan,, +08/15/2021,20:50,,,40.70281,-73.9254,"(40.70281, -73.9254)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447395,Sedan,,,, +08/13/2021,11:57,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447781,Tractor Truck Diesel,Sedan,,, +08/15/2021,10:30,BROOKLYN,11207,40.66077,-73.89231,"(40.66077, -73.89231)",,,682 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447272,Sedan,,,, +08/15/2021,9:21,BRONX,10472,40.829548,-73.87942,"(40.829548, -73.87942)",,,1233 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447219,Sedan,,,, +08/14/2021,0:50,,,40.72514,-73.93381,"(40.72514, -73.93381)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Turning Improperly,,,,4447844,Sedan,Taxi,,, +08/13/2021,18:00,MANHATTAN,10026,40.807545,-73.95681,"(40.807545, -73.95681)",WEST 119 STREET,MORNINGSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447872,Sedan,E-Scooter,,, +08/15/2021,20:10,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447418,Sedan,,,, +08/15/2021,22:00,BROOKLYN,11214,40.604248,-74.00679,"(40.604248, -74.00679)",,,1752 BATH AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447615,Sedan,Sedan,,, +08/15/2021,13:00,QUEENS,11412,40.694588,-73.761986,"(40.694588, -73.761986)",115 DRIVE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447308,Sedan,,,, +05/13/2021,9:57,QUEENS,11385,40.710506,-73.90241,"(40.710506, -73.90241)",,,60-40 MENAHAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447982,Sedan,,,, +08/15/2021,10:00,BRONX,10456,40.832607,-73.91762,"(40.832607, -73.91762)",MCCLELLAN STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447358,Sedan,,,, +08/15/2021,5:50,MANHATTAN,10036,40.760372,-73.9852,"(40.760372, -73.9852)",,,1601 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447909,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,5:52,QUEENS,11416,40.685665,-73.84679,"(40.685665, -73.84679)",,,97-21 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4447820,Sedan,Sedan,Sedan,Sedan,Sedan +08/12/2021,1:00,BRONX,10461,40.848045,-73.84972,"(40.848045, -73.84972)",,,1650 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447944,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,18:15,MANHATTAN,10009,40.72731,-73.98281,"(40.72731, -73.98281)",,,432 EAST 9 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4447387,Sedan,,,, +08/03/2021,16:09,,,40.750294,-73.99485,"(40.750294, -73.99485)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447934,Sedan,Sedan,,, +08/11/2021,21:00,,,40.55798,-74.15053,"(40.55798, -74.15053)",LEVERETT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447825,Sedan,Bike,,, +08/15/2021,2:06,,,40.666035,-73.7592,"(40.666035, -73.7592)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4446904,Station Wagon/Sport Utility Vehicle,,,, +08/03/2021,10:00,QUEENS,11432,,,,,,83-23 EDGERTON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4447896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/13/2021,22:30,,,40.547832,-74.220375,"(40.547832, -74.220375)",BLOOMINGDALE ROAD,VETERANS ROAD EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447847,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,7:36,BROOKLYN,11238,40.675755,-73.95977,"(40.675755, -73.95977)",PROSPECT PLACE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447256,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,7:30,QUEENS,11368,40.757824,-73.86101,"(40.757824, -73.86101)",108 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447455,Sedan,,,, +08/15/2021,11:35,QUEENS,11101,40.754475,-73.944336,"(40.754475, -73.944336)",,,41-15 12 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4447119,FIRE TRUCK,Sedan,,, +08/15/2021,15:55,STATEN ISLAND,10308,40.55733,-74.153015,"(40.55733, -74.153015)",GIFFORDS LANE,LEVERETT AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,20:57,MANHATTAN,10026,40.804996,-73.95496,"(40.804996, -73.95496)",,,2169 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447879,Sedan,,,, +08/15/2021,18:00,BRONX,10459,40.82705,-73.89856,"(40.82705, -73.89856)",,,1135 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447751,Sedan,,,, +08/15/2021,17:25,QUEENS,11434,40.675842,-73.78305,"(40.675842, -73.78305)",BAISLEY BOULEVARD,157 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447317,Station Wagon/Sport Utility Vehicle,Bus,,, +08/15/2021,10:50,BROOKLYN,11210,,,,,,1544 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448003,Sedan,,,, +08/15/2021,14:00,QUEENS,11420,40.67725,-73.826096,"(40.67725, -73.826096)",,,112-20 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,18:43,BROOKLYN,11211,40.71473,-73.94208,"(40.71473, -73.94208)",METROPOLITAN AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4448058,Dump,,,, +08/15/2021,23:30,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447586,Sedan,Sedan,,, +08/15/2021,22:50,QUEENS,11368,40.74956,-73.8548,"(40.74956, -73.8548)",111 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,,,4447405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,4:00,QUEENS,11358,40.759445,-73.78964,"(40.759445, -73.78964)",42 AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,0:45,,,40.77306,-73.824684,"(40.77306, -73.824684)",28 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447216,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,16:00,QUEENS,11378,40.71738,-73.90769,"(40.71738, -73.90769)",59 PLACE,59 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447930,Station Wagon/Sport Utility Vehicle,TRAILER,,, +08/15/2021,1:15,BROOKLYN,11226,40.642372,-73.957466,"(40.642372, -73.957466)",FLATBUSH AVENUE,DORCHESTER ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447066,Moped,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,9:00,QUEENS,11385,40.698013,-73.90039,"(40.698013, -73.90039)",,,1670 NORMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447913,Sedan,,,, +08/15/2021,5:16,BRONX,10454,40.809185,-73.920975,"(40.809185, -73.920975)",,,439 EAST 139 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447412,Sedan,,,, +08/15/2021,12:00,,,40.719177,-73.79223,"(40.719177, -73.79223)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447278,Taxi,,,, +08/13/2021,11:20,,,,,,HUTCHINSON RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4447978,Sedan,Sedan,,, +08/15/2021,22:12,QUEENS,11367,40.72157,-73.8197,"(40.72157, -73.8197)",,,141-26 77 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447890,Sedan,,,, +07/04/2021,10:30,BRONX,10467,40.876087,-73.86233,"(40.876087, -73.86233)",,,799 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4447949,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,16:25,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447179,Sedan,Sedan,,, +08/15/2021,8:40,BRONX,10472,40.82909,-73.85564,"(40.82909, -73.85564)",,,2027 WATSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447221,Sedan,,,, +08/15/2021,17:26,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4447633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,11:50,,,,,,WEST 155 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447505,Sedan,Sedan,,, +08/15/2021,12:30,BROOKLYN,11217,40.67271,-73.97089,"(40.67271, -73.97089)",UNION STREET,PLAZA STREET WEST,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447514,Van,Sedan,,, +08/06/2021,18:00,QUEENS,11385,40.70051,-73.89421,"(40.70051, -73.89421)",61 STREET,60 LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447983,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,0:56,BROOKLYN,11236,40.652035,-73.91914,"(40.652035, -73.91914)",,,600 REMSEN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447061,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/15/2021,3:10,QUEENS,11434,40.68704,-73.780525,"(40.68704, -73.780525)",116 AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4447348,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/07/2021,20:58,QUEENS,11385,40.706,-73.91512,"(40.706, -73.91512)",,,1726 STANHOPE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,0:00,MANHATTAN,10031,40.827774,-73.945755,"(40.827774, -73.945755)",AMSTERDAM AVENUE,WEST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448079,Sedan,,,, +08/15/2021,5:30,QUEENS,11422,40.67471,-73.73045,"(40.67471, -73.73045)",,,242-11 133 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447115,Station Wagon/Sport Utility Vehicle,,,, +06/16/2021,0:00,,,40.702858,-73.863625,"(40.702858, -73.863625)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4447990,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,23:30,BROOKLYN,11208,40.67059,-73.876114,"(40.67059, -73.876114)",BLAKE AVENUE,MILFORD STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4447417,Sedan,,,, +08/15/2021,4:58,BROOKLYN,11208,40.673214,-73.87218,"(40.673214, -73.87218)",,,154 DOSCHER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4446960,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,12:24,BROOKLYN,11236,40.64715,-73.916214,"(40.64715, -73.916214)",DITMAS AVENUE,EAST 88 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447240,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/15/2021,3:04,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447496,Sedan,Ambulance,,, +05/21/2021,13:47,QUEENS,11385,40.709164,-73.9143,"(40.709164, -73.9143)",,,1879 DE KALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447959,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,19:26,,,40.74759,-73.86854,"(40.74759, -73.86854)",JUNCTION BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447403,Sedan,Sedan,,, +08/15/2021,12:51,,,40.786594,-73.96839,"(40.786594, -73.96839)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4447151,Sedan,Box Truck,Pick-up Truck,, +08/14/2021,2:41,MANHATTAN,10014,40.736877,-74.00554,"(40.736877, -74.00554)",8 AVENUE,HUDSON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4447871,Convertible,,,, +08/13/2021,9:41,BRONX,10460,40.839962,-73.87681,"(40.839962, -73.87681)",,,1112 EAST TREMONT AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447833,Motorcycle,Sedan,,, +08/15/2021,20:25,,,,,,WEST 158 STREET,HENRY HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447284,Bike,,,, +08/15/2021,19:00,QUEENS,11367,40.724594,-73.81842,"(40.724594, -73.81842)",147 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447264,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,13:09,BROOKLYN,11205,40.693935,-73.95601,"(40.693935, -73.95601)",,,873 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4447661,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/04/2021,8:15,,,40.806355,-73.953964,"(40.806355, -73.953964)",WEST 119 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4447801,Moped,Taxi,,, +08/15/2021,22:20,QUEENS,11413,40.65943,-73.7613,"(40.65943, -73.7613)",147 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447300,Sedan,,,, +07/05/2021,12:30,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447966,Sedan,,,, +09/10/2021,20:42,,,40.840661,-73.8385027,"(40.840661, -73.8385027)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456018,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/15/2021,9:45,QUEENS,11379,40.71253,-73.89662,"(40.71253, -73.89662)",,,64-14 METROPOLITAN AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4447142,Station Wagon/Sport Utility Vehicle,Bike,,, +08/02/2021,19:35,,,40.714455,-73.935295,"(40.714455, -73.935295)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447940,Sedan,Box Truck,,, +08/15/2021,12:19,MANHATTAN,10022,40.758633,-73.96579,"(40.758633, -73.96579)",2 AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,10:15,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4447883,Sedan,Sedan,,, +08/15/2021,13:00,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447423,Motorcycle,Sedan,,, +08/11/2021,20:45,BROOKLYN,11211,,,,,,39 AINSLIE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448039,Sedan,,,, +08/15/2021,21:07,BROOKLYN,11219,40.641254,-73.9964,"(40.641254, -73.9964)",45 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447534,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,11:30,BRONX,10466,40.888138,-73.82661,"(40.888138, -73.82661)",,,1635 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447189,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,18:00,QUEENS,11412,40.705917,-73.752365,"(40.705917, -73.752365)",110 AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447319,Sedan,,,, +08/15/2021,14:45,MANHATTAN,10012,40.72212,-73.99671,"(40.72212, -73.99671)",,,54 SPRING STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447481,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,21:34,BROOKLYN,11230,40.632988,-73.97214,"(40.632988, -73.97214)",,,629 OCEAN PARKWAY,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4447393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,9:54,MANHATTAN,10010,40.74203,-73.99071,"(40.74203, -73.99071)",,,29 WEST 23 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4447092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,0:41,,,40.588036,-73.96041,"(40.588036, -73.96041)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4446941,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,5:22,BROOKLYN,11236,40.63622,-73.90779,"(40.63622, -73.90779)",AVENUE J,EAST 85 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4447245,Yamaha,,,, +08/13/2021,2:37,BRONX,10469,40.86953,-73.85746,"(40.86953, -73.85746)",BOSTON ROAD,ADEE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4447924,Sedan,,,, +08/15/2021,0:00,BRONX,10461,40.84064,-73.83704,"(40.84064, -73.83704)",ERICSON PLACE,MAITLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447329,Sedan,Sedan,,, +08/15/2021,6:00,QUEENS,11694,40.58376,-73.82554,"(40.58376, -73.82554)",ROCKAWAY FREEWAY,BEACH 104 STREET,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4447203,Sedan,,,, +08/13/2021,2:20,MANHATTAN,10036,40.756664,-73.984406,"(40.756664, -73.984406)",,,145 WEST 44 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447838,Sedan,Sedan,,, +08/13/2021,18:22,BROOKLYN,11230,40.617393,-73.9692,"(40.617393, -73.9692)",,,1296 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,19:00,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,EAST 60 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4447708,Sedan,,,, +08/15/2021,6:40,QUEENS,11385,40.70604,-73.90765,"(40.70604, -73.90765)",,,608 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,11:05,MANHATTAN,10025,40.80297,-73.96387,"(40.80297, -73.96387)",AMSTERDAM AVENUE,WEST 110 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448030,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,10:50,BROOKLYN,11236,40.6349,-73.91892,"(40.6349, -73.91892)",,,1690 RALPH AVENUE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4447258,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,12:53,BROOKLYN,11207,40.66907,-73.89731,"(40.66907, -73.89731)",,,587 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447789,Sedan,,,, +08/12/2021,9:30,QUEENS,11372,40.74795,-73.88097,"(40.74795, -73.88097)",,,85-07 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447921,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,14:57,BRONX,10454,40.81099,-73.914856,"(40.81099, -73.914856)",SAINT ANNS AVENUE,EAST 144 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447414,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,19:00,STATEN ISLAND,10304,40.615627,-74.08406,"(40.615627, -74.08406)",VANDERBILT AVENUE,METCALFE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447935,Station Wagon/Sport Utility Vehicle,,,, +07/20/2021,17:17,QUEENS,11379,40.72591,-73.87726,"(40.72591, -73.87726)",,,82-15 ELIOT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,2:48,MANHATTAN,10013,40.723625,-74.00479,"(40.723625, -74.00479)",WATTS STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447125,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,10:49,MANHATTAN,10037,40.813446,-73.93503,"(40.813446, -73.93503)",,,2155 MADISON AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4447467,E-Bike,,,, +07/02/2021,17:15,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4447888,Sedan,,,, +08/15/2021,22:20,BRONX,10469,40.87965,-73.84236,"(40.87965, -73.84236)",,,3636 BOSTON ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447407,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,5:17,QUEENS,11419,40.692425,-73.82143,"(40.692425, -73.82143)",,,97-33 125 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4447113,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,16:08,,,40.680313,-73.72879,"(40.680313, -73.72879)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,0:00,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447562,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,19:05,,,,,,LONGWOOD AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447516,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,9:00,,,40.763138,-73.91341,"(40.763138, -73.91341)",42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447068,Sedan,,,, +07/15/2021,8:00,QUEENS,11385,40.70419,-73.901726,"(40.70419, -73.901726)",,,67-11 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447902,Sedan,,,, +08/15/2021,11:30,BROOKLYN,11206,40.704113,-73.94786,"(40.704113, -73.94786)",BROADWAY,LORIMER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447941,Taxi,Sedan,,, +08/15/2021,3:11,,,40.601643,-73.76009,"(40.601643, -73.76009)",BEACH CHANNEL DRIVE,OCEAN CREST BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4447760,Sedan,Sedan,Sedan,Sedan, +08/12/2021,17:25,BRONX,10465,40.82388,-73.81998,"(40.82388, -73.81998)",,,3845 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4447977,,,,, +08/15/2021,0:00,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447307,Sedan,Sedan,,, +08/14/2021,1:30,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4447843,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/15/2021,3:00,,,40.75355,-73.98505,"(40.75355, -73.98505)",WEST 40 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447850,3-Door,Sedan,,, +08/15/2021,4:26,QUEENS,11378,40.729084,-73.93104,"(40.729084, -73.93104)",REVIEW AVENUE,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4446911,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,21:00,QUEENS,11379,40.71116,-73.879074,"(40.71116, -73.879074)",67 DRIVE,73 PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447929,Sedan,,,, +08/15/2021,18:00,BROOKLYN,11235,40.592663,-73.95106,"(40.592663, -73.95106)",,,1915 AVENUE X,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447344,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,7:08,MANHATTAN,10075,40.774323,-73.96149,"(40.774323, -73.96149)",EAST 77 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447389,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,22:08,BROOKLYN,11203,40.6568,-73.928,"(40.6568, -73.928)",EAST 53 STREET,CLARKSON AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4448001,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/02/2021,21:00,,,40.701355,-73.88794,"(40.701355, -73.88794)",MYRTLE AVENUE,66 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4447897,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,21:48,BROOKLYN,11204,40.616707,-73.97846,"(40.616707, -73.97846)",BAY PARKWAY,60 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4448078,Bike,,,, +08/15/2021,16:15,BROOKLYN,11238,40.68416,-73.96907,"(40.68416, -73.96907)",FULTON STREET,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447255,Sedan,,,, +08/15/2021,0:25,BRONX,10452,40.832314,-73.93161,"(40.832314, -73.93161)",UNIVERSITY AVENUE,SEDGWICK AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447587,Sedan,Bike,,, +08/15/2021,1:50,BROOKLYN,11234,40.592167,-73.90815,"(40.592167, -73.90815)",,,6000 SHORE PARKWAY,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4447277,Sedan,Sedan,Sedan,, +08/03/2021,7:07,QUEENS,11385,40.704266,-73.89185,"(40.704266, -73.89185)",65 STREET,SHALER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447914,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,12:00,BROOKLYN,11234,40.624454,-73.91507,"(40.624454, -73.91507)",,,1252 EAST 69 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447985,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,6:28,,,40.82054,-73.930786,"(40.82054, -73.930786)",EXTERIOR STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447365,Sedan,Sedan,,, +08/15/2021,0:00,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,8:25,,,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447040,Station Wagon/Sport Utility Vehicle,Bike,,, +08/15/2021,13:30,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4447440,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/15/2021,22:25,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447639,Sedan,,,, +08/15/2021,13:40,,,40.834423,-73.879265,"(40.834423, -73.879265)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4447222,Sedan,Sedan,Sedan,, +08/15/2021,14:30,BRONX,10468,40.868065,-73.89438,"(40.868065, -73.89438)",,,2714 CRESTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447214,Sedan,,,, +08/15/2021,16:40,BRONX,10459,40.822235,-73.88746,"(40.822235, -73.88746)",BRUCKNER EXPRESSWAY,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447506,PK,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,16:10,QUEENS,11366,40.72846,-73.78345,"(40.72846, -73.78345)",,,185-12 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447269,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,5:45,,,40.730137,-73.92693,"(40.730137, -73.92693)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447316,Sedan,Sedan,,, +08/06/2021,12:25,MANHATTAN,10027,40.807915,-73.94986,"(40.807915, -73.94986)",,,205 WEST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447876,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,16:46,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4447826,Sedan,Sedan,Sedan,, +08/12/2021,10:55,,,40.686497,-73.94164,"(40.686497, -73.94164)",THROOP AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4447969,Sedan,E-Scooter,,, +08/02/2021,13:09,QUEENS,11379,40.72028,-73.86548,"(40.72028, -73.86548)",WOODHAVEN BOULEVARD,FURMANVILLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447991,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,9:28,QUEENS,11434,40.669014,-73.77083,"(40.669014, -73.77083)",144 AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4447336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/12/2021,14:00,BROOKLYN,11206,,,,SCHOLES STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448055,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,17:03,BROOKLYN,11234,40.627018,-73.91593,"(40.627018, -73.91593)",,,1123 EAST 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447260,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,14:20,BRONX,10469,40.875458,-73.85485,"(40.875458, -73.85485)",EAST 212 STREET,LACONIA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447948,Sedan,Sedan,,, +08/13/2021,12:55,,,40.676964,-73.89895,"(40.676964, -73.89895)",GEORGIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447790,Sedan,,,, +08/13/2021,19:40,,,40.620697,-74.14566,"(40.620697, -74.14566)",,,135 VEDDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447815,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,9:30,BRONX,10457,40.85076,-73.89179,"(40.85076, -73.89179)",EAST 181 STREET,LAFONTAINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447834,Sedan,,,, +08/15/2021,21:16,BROOKLYN,11206,40.693497,-73.94594,"(40.693497, -73.94594)",HART STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447285,Sedan,Convertible,,, +10/14/2021,1:33,MANHATTAN,10031,40.8257582,-73.950939,"(40.8257582, -73.950939)",WEST 144 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466905,Sedan,,,, +10/24/2021,4:15,QUEENS,11416,40.685513,-73.8416137,"(40.685513, -73.8416137)",101 AVENUE,101 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470329,Sedan,,,, +10/17/2021,23:50,QUEENS,11372,40.7486613,-73.8729534,"(40.7486613, -73.8729534)",,,93-16 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469323,Sedan,Sedan,,, +08/07/2021,11:55,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",HILLSIDE AVENUE,PARSONS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4447908,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,8:48,MANHATTAN,10028,40.777542,-73.957016,"(40.777542, -73.957016)",LEXINGTON AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485727,Taxi,,,, +10/21/2021,8:01,BROOKLYN,11210,40.6212663,-73.9526059,"(40.6212663, -73.9526059)",AVENUE L,EAST 23 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4470159,Station Wagon/Sport Utility Vehicle,Bike,,, +09/19/2021,4:34,,,40.511804,-74.2500345,"(40.511804, -74.2500345)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4459136,Sedan,Sedan,,, +10/15/2021,14:20,,,40.7063611,-73.7925261,"(40.7063611, -73.7925261)",JAMAICA AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4470567,Sedan,Box Truck,,, +04/15/2022,15:05,,,40.827682,-73.922165,"(40.827682, -73.922165)",EAST 162 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519262,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,21:50,BROOKLYN,11211,40.7089041,-73.9592525,"(40.7089041, -73.9592525)",BROADWAY,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468080,Sedan,Sedan,,, +10/21/2021,15:20,BROOKLYN,11232,40.6633971,-73.9946817,"(40.6633971, -73.9946817)",,,647 4 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4470104,Bus,Sedan,,, +10/20/2021,9:30,,,40.6857966,-73.9116355,"(40.6857966, -73.9116355)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469436,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,12:30,QUEENS,11385,40.7005934,-73.8545649,"(40.7005934, -73.8545649)",WOODHAVEN BOULEVARD,FOREST PARK DRIVE,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4467646,Sedan,Sedan,,, +10/31/2021,2:40,BRONX,10465,40.81553,-73.80225,"(40.81553, -73.80225)",,,3235 GLENNON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473961,Sedan,Sedan,,, +11/02/2021,3:00,BROOKLYN,11205,40.6972,-73.952934,"(40.6972, -73.952934)",NOSTRAND AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,8:00,BRONX,10466,40.8922672,-73.8470768,"(40.8922672, -73.8470768)",,,1825 EDENWALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468791,Sedan,,,, +10/25/2021,7:50,BROOKLYN,11217,40.681486,-73.9770225,"(40.681486, -73.9770225)",5 AVENUE,BERGEN STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470789,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,7:00,BROOKLYN,11212,40.6541334,-73.9123297,"(40.6541334, -73.9123297)",LINDEN BOULEVARD,ROCKAWAY PARKWAY,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470269,Sedan,E-Scooter,,, +10/22/2021,15:00,BROOKLYN,11216,40.6753551,-73.9527693,"(40.6753551, -73.9527693)",SAINT MARKS AVENUE,ROGERS AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4470345,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,12:47,MANHATTAN,10128,40.780125,-73.95304,"(40.780125, -73.95304)",EAST 88 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473562,PK,Box Truck,,, +10/25/2021,7:20,BRONX,10454,40.8089229,-73.918433,"(40.8089229, -73.918433)",BROOK AVENUE,EAST 140 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4470869,Sedan,Bike,,, +10/23/2021,5:00,BROOKLYN,11225,40.6668182,-73.9614782,"(40.6668182, -73.9614782)",,,921 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470123,Sedan,Motorcycle,,, +10/19/2021,21:57,QUEENS,11434,40.6783578,-73.788907,"(40.6783578, -73.788907)",120 AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4469171,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,15:59,,,40.7424952,-73.873358,"(40.7424952, -73.873358)",CORONA AVENUE,91 PLACE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4469335,Sedan,Sedan,,, +10/19/2021,0:02,MANHATTAN,10016,40.7484373,-73.9780701,"(40.7484373, -73.9780701)",,,303 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470032,Ambulance,Station Wagon/Sport Utility Vehicle,,, +07/25/2021,17:05,,,40.6805793,-73.974316,"(40.6805793, -73.974316)",WEST DRIVE,WEST LAKE DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4440339,Sedan,Bike,,, +11/02/2021,1:30,BRONX,10461,40.851765,-73.85696,"(40.851765, -73.85696)",,,1950 HONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473314,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,9:30,,,40.7082577,-73.9199593,"(40.7082577, -73.9199593)",STARR STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469779,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,11:15,MANHATTAN,10035,40.79634,-73.93516,"(40.79634, -73.93516)",,,2266 1 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473378,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,12:20,BRONX,10462,40.8412733,-73.8622415,"(40.8412733, -73.8622415)",,,1936 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470255,Sedan,Sedan,,, +10/19/2021,9:35,,,40.7523789,-73.9703425,"(40.7523789, -73.9703425)",2 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468954,E-Scooter,,,, +04/13/2022,7:00,BROOKLYN,11208,40.673363,-73.871414,"(40.673363, -73.871414)",,,561 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518676,Sedan,Pick-up Truck,,, +10/21/2021,17:50,,,,,,,,89-58 VANERVEER STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469585,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,13:50,QUEENS,11435,40.6867431,-73.8070459,"(40.6867431, -73.8070459)",,,109-19 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467424,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,2:00,BROOKLYN,11204,40.6180939,-73.9856023,"(40.6180939, -73.9856023)",,,1950 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4470367,Sedan,Sedan,Sedan,Sedan,Sedan +10/23/2021,13:00,QUEENS,11428,40.7238865,-73.7338418,"(40.7238865, -73.7338418)",222 STREET,FAIRBURY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,11:00,,,40.676134,-73.8192263,"(40.676134, -73.8192263)",LEFFERTS BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468580,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,8:45,QUEENS,11434,40.6801897,-73.7694609,"(40.6801897, -73.7694609)",174 PLACE,128 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469458,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,21:44,MANHATTAN,10013,40.7193963,-74.0018831,"(40.7193963, -74.0018831)",CANAL STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468429,Sedan,Tractor Truck Diesel,,, +10/21/2021,15:11,BRONX,10458,40.855298,-73.8827032,"(40.855298, -73.8827032)",,,2474 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470219,SCHOOL BU,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,11:55,BROOKLYN,11226,40.6417783,-73.9571081,"(40.6417783, -73.9571081)",,,1162 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467682,Sedan,,,, +10/25/2021,6:30,QUEENS,11411,40.6976811,-73.7357604,"(40.6976811, -73.7357604)",115 ROAD,223 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470816,Sedan,Bike,,, +10/20/2021,15:24,BRONX,10455,40.8128977,-73.9014419,"(40.8128977, -73.9014419)",SOUTHERN BOULEVARD,SAINT JOHN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469404,Sedan,,,, +10/20/2021,12:55,MANHATTAN,10023,40.7762963,-73.9821384,"(40.7762963, -73.9821384)",WEST 69 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469219,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2022,19:00,MANHATTAN,10019,40.762005,-73.98262,"(40.762005, -73.98262)",,,790 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519129,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,2:16,,,40.6838792,-74.0003257,"(40.6838792, -74.0003257)",BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466631,,,,, +10/09/2021,0:01,,,40.6406452,-73.7433838,"(40.6406452, -73.7433838)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469598,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,8:00,BROOKLYN,11217,40.6812161,-73.9887006,"(40.6812161, -73.9887006)",DE GRAW STREET,BOND STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467204,Sedan,Bike,,, +10/22/2021,11:14,MANHATTAN,10128,40.7794367,-73.9475068,"(40.7794367, -73.9475068)",EAST 90 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470556,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/24/2021,3:40,BRONX,10456,40.8367498,-73.9020814,"(40.8367498, -73.9020814)",,,3780 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470716,Sedan,Sedan,,, +10/22/2021,1:45,QUEENS,11372,40.7477047,-73.8844499,"(40.7477047, -73.8844499)",,,81-09 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469803,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,9:45,BROOKLYN,11229,40.5952245,-73.9324131,"(40.5952245, -73.9324131)",ALLEN AVENUE,GARLAND COURT,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4469906,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +10/21/2021,8:26,BRONX,10455,40.8174423,-73.9105923,"(40.8174423, -73.9105923)",,,667 EAGLE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4469433,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,19:30,,,40.6773646,-73.9079765,"(40.6773646, -73.9079765)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469761,Sedan,Sedan,,, +10/21/2021,6:30,BROOKLYN,11236,40.6542267,-73.907051,"(40.6542267, -73.907051)",,,1022 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4469449,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,8:30,,,40.8225697,-73.9113076,"(40.8225697, -73.9113076)",CROSS BRONX EXPRESSWAY,BOONE AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4470771,Sedan,Beverage Truck,,, +10/20/2021,1:00,MANHATTAN,10027,40.8153238,-73.9569035,"(40.8153238, -73.9569035)",,,540 WEST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469248,Sedan,Sedan,,, +11/02/2021,0:00,BROOKLYN,11201,40.6877,-73.9898,"(40.6877, -73.9898)",,,121 SMITH STREET,2,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473471,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,13:30,BROOKLYN,11211,40.7168257,-73.9586553,"(40.7168257, -73.9586553)",,,209 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470430,Sedan,Sedan,,, +04/15/2022,0:05,,,40.868805,-73.89055,"(40.868805, -73.89055)",VALENTINE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519145,Sedan,,,, +08/16/2021,9:42,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447659,Box Truck,,,, +10/19/2021,7:30,BROOKLYN,11220,40.6394811,-74.0161675,"(40.6394811, -74.0161675)",5 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468784,Sedan,Pick-up Truck,,, +10/21/2021,8:30,,,40.5760082,-74.107262,"(40.5760082, -74.107262)",CLAWSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469380,Sedan,,,, +11/02/2021,11:50,BROOKLYN,11211,40.71894,-73.95654,"(40.71894, -73.95654)",BEDFORD AVENUE,NORTH 9 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473520,Sedan,Box Truck,,, +10/16/2021,17:50,MANHATTAN,10002,40.7190824,-73.9850722,"(40.7190824, -73.9850722)",CLINTON STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4467967,Sedan,Sedan,,, +09/20/2021,10:13,BROOKLYN,11208,40.677297,-73.8768167,"(40.677297, -73.8768167)",LIBERTY AVENUE,LOGAN STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4469700,Moped,,,, +10/19/2021,15:49,MANHATTAN,10022,40.7589805,-73.9624344,"(40.7589805, -73.9624344)",EAST 58 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469295,Bike,,,, +10/16/2021,22:30,QUEENS,11355,40.7617451,-73.8135251,"(40.7617451, -73.8135251)",BARCLAY AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468100,Sedan,,,, +10/28/2021,8:17,BRONX,10459,40.830284,-73.88512,"(40.830284, -73.88512)",,,1480 SHERIDAN EXPRESSWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4474012,Sedan,,,, +10/19/2021,18:14,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468918,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:10,MANHATTAN,10039,40.8275997,-73.93623,"(40.8275997, -73.93623)",,,99 MACOMBS PLACE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4468998,Sedan,,,, +10/14/2021,7:00,BRONX,10475,40.8687708,-73.8317333,"(40.8687708, -73.8317333)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,12:00,BRONX,10466,40.8809273,-73.8396511,"(40.8809273, -73.8396511)",BOSTON ROAD,EDSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4469566,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,18:48,,,40.6898418,-73.8500701,"(40.6898418, -73.8500701)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4467935,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,8:45,,,40.6406452,-73.7433838,"(40.6406452, -73.7433838)",ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4470046,Sedan,,,, +10/16/2021,15:40,BRONX,10459,40.8177952,-73.8931829,"(40.8177952, -73.8931829)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467666,Sedan,Motorscooter,,, +10/21/2021,11:45,BROOKLYN,11204,40.6127077,-73.9795457,"(40.6127077, -73.9795457)",65 STREET,WEST 5 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469839,Sedan,Box Truck,,, +10/20/2021,15:15,,,40.8044551,-73.9118464,"(40.8044551, -73.9118464)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469316,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/10/2021,6:50,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456015,Sedan,,,, +11/02/2021,7:30,BRONX,10462,40.83404,-73.85328,"(40.83404, -73.85328)",,,2135 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473600,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:00,BRONX,10461,40.8468063,-73.8493673,"(40.8468063, -73.8493673)",,,1126 PIERCE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4468848,Sedan,Sedan,Sedan,, +10/20/2021,16:40,BROOKLYN,11211,40.7125169,-73.9538756,"(40.7125169, -73.9538756)",HOPE STREET,RODNEY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469301,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/19/2021,11:30,,,40.6808069,-73.7638884,"(40.6808069, -73.7638884)",129 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468846,Sedan,,,, +10/21/2021,16:10,QUEENS,11374,40.7324716,-73.8616432,"(40.7324716, -73.8616432)",62 DRIVE,97 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469581,Sedan,,,, +10/11/2021,11:00,BROOKLYN,11249,40.7041853,-73.9660253,"(40.7041853, -73.9660253)",,,37 TAYLOR STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4468581,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,2:30,,,40.7038302,-73.9887112,"(40.7038302, -73.9887112)",MANHATTAN BRIDGE,PLYMOUTH STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470839,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,18:00,BRONX,10453,40.8483123,-73.9184353,"(40.8483123, -73.9184353)",UNIVERSITY AVENUE,BRANDT PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469672,Sedan,,,, +10/11/2021,15:10,,,40.6690679,-73.7387,"(40.6690679, -73.7387)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4468713,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/22/2021,17:55,QUEENS,11693,40.586461,-73.815433,"(40.586461, -73.815433)",ROCKAWAY BEACH BOULEVARD,BEACH 92 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469921,Sedan,E-Scooter,,, +10/17/2021,14:14,BROOKLYN,11217,40.6826096,-73.9792571,"(40.6826096, -73.9792571)",,,57 4 AVENUE,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4468906,Station Wagon/Sport Utility Vehicle,Bike,,, +10/13/2021,14:30,MANHATTAN,10002,40.7192038,-73.9903644,"(40.7192038, -73.9903644)",DELANCEY STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466821,Sedan,,,, +10/17/2021,20:20,MANHATTAN,10031,40.824563,-73.9480999,"(40.824563, -73.9480999)",WEST 144 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469041,Sedan,,,, +10/25/2021,5:20,,,40.6969096,-73.9807042,"(40.6969096, -73.9807042)",BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4470841,Dump,,,, +10/14/2021,16:25,,,40.7112201,-73.7282618,"(40.7112201, -73.7282618)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4467671,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,16:07,,,40.7949092,-73.9485565,"(40.7949092, -73.9485565)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470895,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/18/2021,0:00,BROOKLYN,11201,40.6960346,-73.9845292,"(40.6960346, -73.9845292)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,16:45,,,40.5908703,-73.8012778,"(40.5908703, -73.8012778)",BEACH 73 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468446,Sedan,Bike,,, +10/18/2021,13:45,MANHATTAN,10018,40.7561453,-73.9947757,"(40.7561453, -73.9947757)",,,403 WEST 38 STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4469146,Van,,,, +10/10/2021,0:30,,,40.8281345,-73.8388185,"(40.8281345, -73.8388185)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466330,Motorcycle,,,, +10/16/2021,14:00,QUEENS,11434,40.6596509,-73.7738282,"(40.6596509, -73.7738282)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4467803,Sedan,Sedan,,, +10/16/2021,11:30,,,40.8248396,-73.8705203,"(40.8248396, -73.8705203)",FTELEY AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467703,Sedan,,,, +11/02/2021,15:12,BROOKLYN,11203,40.65739,-73.945595,"(40.65739, -73.945595)",,,444 WINTHROP STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4473466,Sedan,Sedan,Sedan,, +10/14/2021,15:17,BROOKLYN,11218,40.6453166,-73.970545,"(40.6453166, -73.970545)",CONEY ISLAND AVENUE,TURNER PLACE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4469141,Sedan,E-Bike,,, +11/02/2021,3:10,MANHATTAN,10013,40.72106,-73.99821,"(40.72106, -73.99821)",LAFAYETTE STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473503,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,12:24,QUEENS,11433,40.7018524,-73.8024077,"(40.7018524, -73.8024077)",158 street,Archer avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Listening/Using Headphones,,,,4467980,Sedan,Bike,,, +10/25/2021,1:10,QUEENS,11368,40.744901,-73.8559969,"(40.744901, -73.8559969)",,,49-10 108 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470699,Sedan,,,, +10/20/2021,19:04,,,40.8140423,-73.9366886,"(40.8140423, -73.9366886)",WEST 137 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4469344,Convertible,Ambulance,,, +10/13/2021,8:15,QUEENS,11368,40.7492141,-73.8677042,"(40.7492141, -73.8677042)",,,97-22 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470445,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,14:50,QUEENS,11385,40.6987389,-73.8930418,"(40.6987389, -73.8930418)",62 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468730,Sedan,,,, +10/10/2021,19:10,,,40.6079265,-74.1389141,"(40.6079265, -74.1389141)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468068,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,6:00,BROOKLYN,11205,40.6888813,-73.9600039,"(40.6888813, -73.9600039)",CLASSON AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468570,Sedan,,,, +10/18/2021,13:10,QUEENS,11373,40.7343762,-73.8734167,"(40.7343762, -73.8734167)",57 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468624,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,14:40,MANHATTAN,10013,40.7213532,-74.0046358,"(40.7213532, -74.0046358)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467438,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,17:26,BROOKLYN,11236,40.632206,-73.9095988,"(40.632206, -73.9095988)",AVENUE K,EAST 80 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469333,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,14:24,,,40.7101018,-73.7533567,"(40.7101018, -73.7533567)",205 PLACE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4470571,Sedan,Sedan,,, +10/18/2021,19:00,QUEENS,11105,40.7750748,-73.9142343,"(40.7750748, -73.9142343)",,,28-16 23 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469884,Sedan,,,, +10/13/2021,16:10,QUEENS,11413,40.6680541,-73.7420035,"(40.6680541, -73.7420035)",,,139-11 232 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466791,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,21:09,,,40.7261868,-73.7352341,"(40.7261868, -73.7352341)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466875,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,23:20,,,40.6993611,-73.9315538,"(40.6993611, -73.9315538)",EVERGREEN AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469794,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,18:54,BROOKLYN,11207,40.6622951,-73.8971432,"(40.6622951, -73.8971432)",,,547 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4470477,,,,, +10/20/2021,18:20,MANHATTAN,10013,40.7214219,-73.9990332,"(40.7214219, -73.9990332)",CROSBY STREET,BROOME STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4470231,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,11:26,BRONX,10457,40.85403,-73.89334,"(40.85403, -73.89334)",FLETCHER PLACE,BASSFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473975,Sedan,Sedan,,, +04/13/2022,15:45,BROOKLYN,11235,40.589245,-73.94269,"(40.589245, -73.94269)",AVENUE Z,EAST 27 STREET,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519165,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,14:48,MANHATTAN,10001,40.749638,-73.99904,"(40.749638, -73.99904)",WEST 28 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470823,Sedan,Bike,,, +10/25/2021,8:30,,,40.6385864,-73.9537502,"(40.6385864, -73.9537502)",FLATBUSH AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470873,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,15:55,QUEENS,11365,40.7323251,-73.8107713,"(40.7323251, -73.8107713)",PARSONS BOULEVARD,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4467586,Sedan,Sedan,Sedan,Sedan,Pick-up Truck +10/18/2021,15:50,,,40.8833828,-73.9023336,"(40.8833828, -73.9023336)",PUTNAM AVENUE WEST,PUTNAM AV W,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468863,Dump,Sedan,,, +10/08/2021,7:46,,,40.8231016,-73.8696902,"(40.8231016, -73.8696902)",BRUCKNER EXPRESSWAY,STRATFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,13:01,BRONX,10454,40.8097663,-73.9256857,"(40.8097663, -73.9256857)",,,215 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470871,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,14:00,QUEENS,11421,40.6909539,-73.8678218,"(40.6909539, -73.8678218)",,,74-08 JAMAICA AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4469520,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,15:20,,,40.6931724,-73.9487684,"(40.6931724, -73.9487684)",HART STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4467846,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/18/2021,11:40,QUEENS,11433,40.6966251,-73.7848894,"(40.6966251, -73.7848894)",109 AVENUE,169 PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4468773,Sedan,Sedan,,, +10/14/2021,15:05,BROOKLYN,11229,40.5995975,-73.9494488,"(40.5995975, -73.9494488)",AVENUE U,EAST 22 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469667,Bike,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,18:05,QUEENS,11103,40.7563466,-73.9134116,"(40.7563466, -73.9134116)",47 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470147,Station Wagon/Sport Utility Vehicle,Bus,,, +10/17/2021,14:50,,,40.7876856,-73.9750141,"(40.7876856, -73.9750141)",WEST 86 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468016,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:10,QUEENS,11357,40.7802961,-73.8253202,"(40.7802961, -73.8253202)",WHITESTONE EXPRESSWAY,21 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470748,Pick-up Truck,Sedan,,, +10/15/2021,15:35,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467571,Box Truck,Sedan,,, +10/21/2021,9:45,BROOKLYN,11220,40.6321752,-74.0123291,"(40.6321752, -74.0123291)",,,802 65 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469466,Sedan,Bike,,, +11/02/2021,17:30,BROOKLYN,11207,40.679085,-73.89007,"(40.679085, -73.89007)",,,93 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473868,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,17:00,BRONX,10472,40.8290495,-73.8725284,"(40.8290495, -73.8725284)",METCALF AVENUE,GLEASON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470380,Sedan,,,, +10/18/2021,19:22,BROOKLYN,11210,40.6347106,-73.9362967,"(40.6347106, -73.9362967)",GLENWOOD ROAD,EAST 42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468874,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/23/2021,22:20,QUEENS,11412,40.6942955,-73.7486695,"(40.6942955, -73.7486695)",203 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470538,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,17:50,,,40.8452886,-73.8365903,"(40.8452886, -73.8365903)",HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467174,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,6:29,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4470719,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/19/2021,1:20,,,40.750999,-73.9487997,"(40.750999, -73.9487997)",11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468751,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,19:30,QUEENS,11368,40.7540403,-73.858348,"(40.7540403, -73.858348)",,,109-01 37 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4467306,Sedan,,,, +02/21/2022,21:00,BROOKLYN,11230,40.631615,-73.958755,"(40.631615, -73.958755)",,,780 EAST 19 STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4504670,Taxi,Sedan,,, +10/21/2021,6:27,,,40.727846,-73.9822272,"(40.727846, -73.9822272)",EAST 10 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470795,Sedan,Sedan,,, +10/15/2021,20:11,,,40.6954688,-73.9828246,"(40.6954688, -73.9828246)",BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4467538,Sedan,Sedan,Sedan,Sedan, +09/27/2021,20:45,,,40.7784761,-73.9854489,"(40.7784761, -73.9854489)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4468884,Sedan,,,, +10/15/2021,16:19,QUEENS,11434,40.6825669,-73.7926578,"(40.6825669, -73.7926578)",116 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468186,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,13:08,BROOKLYN,11226,40.6500895,-73.9477478,"(40.6500895, -73.9477478)",,,30 EAST 32 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470271,Sedan,Bus,,, +10/22/2021,3:30,BRONX,10454,40.806584,-73.9164956,"(40.806584, -73.9164956)",,,589 EAST 138 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469662,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,8:15,QUEENS,11379,40.7089472,-73.8745074,"(40.7089472, -73.8745074)",69 ROAD,78 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4469274,Sedan,Box Truck,,, +10/20/2021,14:40,BROOKLYN,11205,40.6922007,-73.9689025,"(40.6922007, -73.9689025)",,,196 CLINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469284,Box Truck,Sedan,,, +10/17/2021,0:00,QUEENS,11417,40.6687852,-73.8349738,"(40.6687852, -73.8349738)",HAWTREE STREET,99 PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468213,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,10:14,,,40.7028945,-73.8691558,"(40.7028945, -73.8691558)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470014,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,10:51,QUEENS,11370,40.756955,-73.8826257,"(40.756955, -73.8826257)",,,32-35 85 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470292,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,19:45,BROOKLYN,11214,40.6064705,-74.0024684,"(40.6064705, -74.0024684)",,,18 BAY 19 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470303,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/14/2021,17:58,BROOKLYN,11228,40.6246874,-74.0100434,"(40.6246874, -74.0100434)",72 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467189,Sedan,,,, +11/02/2021,23:00,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WHITLOCK AVENUE,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4473568,Sedan,Sedan,,, +10/14/2021,11:30,MANHATTAN,10031,40.8275094,-73.9467892,"(40.8275094, -73.9467892)",,,505 WEST 148 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4467554,Sedan,Fire truck,,, +10/21/2021,22:15,,,40.716646,-73.9958083,"(40.716646, -73.9958083)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,23:25,MANHATTAN,10022,40.7621793,-73.9661291,"(40.7621793, -73.9661291)",3 AVENUE,EAST 60 STREET,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unsafe Speed,,,,4468245,Sedan,,,, +10/20/2021,14:25,MANHATTAN,10001,40.7464492,-73.9955766,"(40.7464492, -73.9955766)",,,226 WEST 26 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470812,Bike,,,, +10/23/2021,22:10,MANHATTAN,10027,40.8138847,-73.9564789,"(40.8138847, -73.9564789)",,,511 WEST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470325,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,15:20,,,40.8044551,-73.9118464,"(40.8044551, -73.9118464)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467720,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,8:23,BRONX,10457,40.8381983,-73.9011767,"(40.8381983, -73.9011767)",3 AVENUE,CLAREMONT PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470751,Bus,,,, +11/02/2021,14:00,MANHATTAN,10036,40.757492,-73.98057,"(40.757492, -73.98057)",,,66 WEST 47 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4473528,E-Bike,,,, +10/20/2021,6:45,QUEENS,11422,40.6722124,-73.7346248,"(40.6722124, -73.7346248)",BROOKVILLE BOULEVARD,135 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4469178,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/02/2021,18:22,,,40.768795,-73.958374,"(40.768795, -73.958374)",2 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473486,Bike,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,22:30,QUEENS,11385,40.7019319,-73.8795489,"(40.7019319, -73.8795489)",,,71-14 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469889,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,15:20,BRONX,10457,40.8479083,-73.9035659,"(40.8479083, -73.9035659)",ANTHONY AVENUE,MOUNT HOPE PLACE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4468272,Ambulance,Sedan,,, +11/02/2021,16:30,QUEENS,11435,40.692707,-73.799065,"(40.692707, -73.799065)",,,108-11 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474125,,,,, +10/16/2021,22:35,BROOKLYN,11211,40.713834,-73.9333365,"(40.713834, -73.9333365)",,,1047 GRAND STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4468081,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,10:45,BRONX,10472,40.8306006,-73.8529517,"(40.8306006, -73.8529517)",,,2108 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469858,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,23:50,QUEENS,11101,40.7482557,-73.952234,"(40.7482557, -73.952234)",45 AVENUE,10 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4468379,Sedan,Sedan,,, +10/16/2021,4:05,,,40.744559,-73.9831755,"(40.744559, -73.9831755)",EAST 30 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467758,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +10/17/2021,23:20,BROOKLYN,11249,40.7211597,-73.9607227,"(40.7211597, -73.9607227)",,,89 KENT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468346,Sedan,Sedan,,, +10/14/2021,14:10,,,40.6604367,-73.9454127,"(40.6604367, -73.9454127)",BROOKLYN AVENUE,,,3,0,1,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4469111,Sedan,Sedan,,, +10/22/2021,21:55,QUEENS,11412,40.7088222,-73.7518429,"(40.7088222, -73.7518429)",FRANCIS LEWIS BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470566,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,13:08,,,40.6761937,-74.0013303,"(40.6761937, -74.0013303)",HAMILTON AVENUE,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468951,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,14:50,,,40.713184,-73.82393,"(40.713184, -73.82393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473447,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,17:40,QUEENS,11375,40.707901,-73.8511007,"(40.707901, -73.8511007)",71 AVENUE,UNION TURNPIKE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4467321,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,11:10,BRONX,10458,40.8672893,-73.8866392,"(40.8672893, -73.8866392)",,,2820 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467421,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:53,BROOKLYN,11220,40.6341626,-74.0073571,"(40.6341626, -74.0073571)",60 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,9:23,BROOKLYN,11211,40.7180854,-73.9522881,"(40.7180854, -73.9522881)",RICHARDSON STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469137,Beverage Truck,Sedan,,, +10/24/2021,4:00,QUEENS,11416,40.6816989,-73.8574641,"(40.6816989, -73.8574641)",,,97-38 82 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470413,Sedan,,,, +10/05/2021,23:45,,,40.839908,-73.9360834,"(40.839908, -73.9360834)",ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467362,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,18:30,BRONX,10467,40.8805548,-73.8833705,"(40.8805548, -73.8833705)",,,10 EAST 208 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469710,Station Wagon/Sport Utility Vehicle,Bike,,, +10/21/2021,15:30,BRONX,10463,40.8845762,-73.8988836,"(40.8845762, -73.8988836)",WEST 238 STREET,PUTNAM AVENUE WEST,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4469715,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,9:29,,,,,,EAST 37 STREET,TUNNEL EXIT STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4473376,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,13:45,,,40.7013345,-73.926838,"(40.7013345, -73.926838)",STARR STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469861,Pick-up Truck,,,, +10/20/2021,23:40,BRONX,10472,40.8317291,-73.8763367,"(40.8317291, -73.8763367)",,,1591 EAST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469391,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,6:52,BRONX,10466,40.8980597,-73.8505959,"(40.8980597, -73.8505959)",,,4385 WICKHAM AVENUE,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4468795,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/22/2021,19:25,BROOKLYN,11209,40.6204363,-74.0244658,"(40.6204363, -74.0244658)",FORT HAMILTON PARKWAY,86 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469911,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,11:15,BROOKLYN,11225,40.6616893,-73.9614295,"(40.6616893, -73.9614295)",LEFFERTS AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469933,Pick-up Truck,,,, +10/20/2021,0:00,,,40.8264277,-73.9504508,"(40.8264277, -73.9504508)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469269,Sedan,Sedan,,, +10/13/2021,13:00,QUEENS,11364,40.7511643,-73.7584676,"(40.7511643, -73.7584676)",,,56-46 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466761,Sedan,Tow Truck / Wrecker,,, +10/21/2021,18:39,BRONX,10463,40.8782876,-73.9080239,"(40.8782876, -73.9080239)",WEST 230 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469727,Sedan,Bus,,, +10/14/2021,16:55,QUEENS,11368,40.7489395,-73.8544701,"(40.7489395, -73.8544701)",111 STREET,44 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467916,Sedan,Bike,,, +10/22/2021,17:30,BROOKLYN,11235,40.5863445,-73.9314464,"(40.5863445, -73.9314464)",KNAPP STREET,HARKNESS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469980,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/10/2021,6:30,,,40.6997906,-73.9500905,"(40.6997906, -73.9500905)",MARCY AVENUE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4466544,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,16:10,MANHATTAN,10110,40.7538015,-73.9808886,"(40.7538015, -73.9808886)",,,500 5 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4470440,NonMotordS,,,, +10/19/2021,0:00,BROOKLYN,11205,40.6931192,-73.968811,"(40.6931192, -73.968811)",CLINTON AVENUE,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468995,Sedan,,,, +10/19/2021,14:06,MANHATTAN,10029,40.798382,-73.9416235,"(40.798382, -73.9416235)",,,1869 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469062,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/16/2021,5:15,,,40.7391678,-73.9799688,"(40.7391678, -73.9799688)",2 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467784,Pick-up Truck,Sedan,,, +10/22/2021,16:13,BROOKLYN,11230,40.6299872,-73.9715677,"(40.6299872, -73.9715677)",OCEAN PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470179,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,12:13,BRONX,10466,40.8821673,-73.8395466,"(40.8821673, -73.8395466)",,,3525 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467107,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/14/2021,0:00,,,40.7425672,-73.7707788,"(40.7425672, -73.7707788)",LONG ISLAND EXPRESSWAY,CLEARVIEW EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4467157,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,0:30,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519455,Sedan,Sedan,,, +10/16/2021,10:00,MANHATTAN,10010,40.737428,-73.9816241,"(40.737428, -73.9816241)",,,235 EAST 22 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470340,Sedan,,,, +10/14/2021,13:26,BROOKLYN,11235,40.5888616,-73.9496149,"(40.5888616, -73.9496149)",,,2970 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467289,Sedan,Sedan,,, +10/17/2021,18:30,QUEENS,11101,40.7460347,-73.9344002,"(40.7460347, -73.9344002)",QUEENS BOULEVARD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468049,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,9:45,,,40.7639417,-73.8281463,"(40.7639417, -73.8281463)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467382,Station Wagon/Sport Utility Vehicle,Convertible,,, +10/24/2021,21:30,MANHATTAN,10022,40.7583082,-73.9629257,"(40.7583082, -73.9629257)",EAST 57 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4470533,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,8:30,,,40.7261868,-73.7352341,"(40.7261868, -73.7352341)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4469184,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/14/2021,22:55,MANHATTAN,10027,40.8163616,-73.9540891,"(40.8163616, -73.9540891)",WEST 131 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4457425,Sedan,E-Bike,,, +10/16/2021,16:55,,,40.7774128,-73.9787983,"(40.7774128, -73.9787983)",WEST 72 STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4468496,Sedan,E-Bike,,, +10/13/2021,8:03,,,40.8670274,-73.9170421,"(40.8670274, -73.9170421)",WEST 211 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468816,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,14:00,QUEENS,11367,40.7303712,-73.8216296,"(40.7303712, -73.8216296)",,,144-52 JEWEL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469498,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,10:00,BROOKLYN,11219,40.626183,-73.994156,"(40.626183, -73.994156)",60 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473546,Bus,Van,,, +10/14/2021,16:52,BROOKLYN,11222,40.7308851,-73.9478951,"(40.7308851, -73.9478951)",GREENPOINT AVENUE,MOULTRIE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469549,Sedan,Sedan,,, +10/17/2021,16:00,QUEENS,11432,40.714562,-73.7800787,"(40.714562, -73.7800787)",,,182-30 WEXFORD TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468107,Sedan,Sedan,,, +08/16/2021,16:35,BRONX,10473,,,,Stickball blvd,Seward ave,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448145,Sedan,Moped,,, +10/13/2021,16:20,,,40.7884202,-73.9707634,"(40.7884202, -73.9707634)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467142,Sedan,Bus,,, +11/02/2021,11:15,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4473384,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Pick-up Truck,Sedan +10/22/2021,12:32,BRONX,10466,40.8932173,-73.856253,"(40.8932173, -73.856253)",,,725 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469822,Sedan,,,, +10/17/2021,0:50,BRONX,10459,40.824138,-73.8929487,"(40.824138, -73.8929487)",WESTCHESTER AVENUE,SIMPSON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468763,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,9:10,QUEENS,11378,40.72347,-73.90005,"(40.72347, -73.90005)",,,65-21 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473684,Sedan,Sedan,,, +10/15/2021,15:58,QUEENS,11420,40.6726449,-73.8037723,"(40.6726449, -73.8037723)",,,123-64 135 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468218,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,17:20,BROOKLYN,11226,40.6507366,-73.9527594,"(40.6507366, -73.9527594)",,,2609 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467816,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,14:13,MANHATTAN,10016,40.74478,-73.9758819,"(40.74478, -73.9758819)",EAST 34 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467140,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,17:10,BROOKLYN,11207,40.6592308,-73.8932782,"(40.6592308, -73.8932782)",HEGEMAN AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469682,Sedan,Sedan,,, +10/18/2021,16:29,QUEENS,11004,40.7435109,-73.7174046,"(40.7435109, -73.7174046)",LITTLE NECK PARKWAY,80 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4468511,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,13:13,BRONX,10460,40.8436205,-73.8698562,"(40.8436205, -73.8698562)",,,582 MORRIS PARK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470624,Sedan,Sedan,Sedan,, +10/15/2021,20:20,BRONX,10472,40.832132,-73.8654615,"(40.832132, -73.8654615)",TAYLOR AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,18:28,MANHATTAN,10029,40.7957534,-73.948341,"(40.7957534, -73.948341)",,,23 EAST 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466968,Bus,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,17:17,,,40.8363929,-73.9158697,"(40.8363929, -73.9158697)",GRAND CONCOURSE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468613,E-Bike,Sedan,,, +10/22/2021,16:00,QUEENS,11373,40.7341354,-73.8691738,"(40.7341354, -73.8691738)",59 AVENUE,92 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470408,,,,, +10/20/2021,15:49,QUEENS,11367,40.7300177,-73.8234675,"(40.7300177, -73.8234675)",MAIN STREET,JEWEL AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469705,Sedan,E-Bike,,, +10/14/2021,0:20,BROOKLYN,11229,40.600334,-73.9465481,"(40.600334, -73.9465481)",,,4169 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466853,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,12:45,,,40.7656758,-73.9762353,"(40.7656758, -73.9762353)",,,59 CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4465486,E-Scooter,,,, +10/17/2021,9:00,,,40.8690581,-73.8796321,"(40.8690581, -73.8796321)",RESERVOIR OVAL WEST,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468479,Sedan,,,, +04/27/2021,16:00,,,40.7214219,-73.9990332,"(40.7214219, -73.9990332)",CROSBY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469478,Sedan,Sedan,,, +10/21/2021,9:55,,,40.6257884,-74.1548979,"(40.6257884, -74.1548979)",FOREST AVENUE,VANNAME AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470036,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,23:11,QUEENS,11372,40.7484627,-73.8851616,"(40.7484627, -73.8851616)",,,37-40 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467308,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/20/2021,20:19,BRONX,10475,40.8633692,-73.8233133,"(40.8633692, -73.8233133)",,,100 ERDMAN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469365,Sedan,Sedan,,, +10/19/2021,8:30,BRONX,10457,40.8541166,-73.8909014,"(40.8541166, -73.8909014)",EAST 183 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469151,,,,, +10/14/2021,17:40,,,40.7190147,-73.7941786,"(40.7190147, -73.7941786)",GRAND CENTRAL PARKWAY,172 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4467514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,16:05,QUEENS,11693,40.5853893,-73.8146547,"(40.5853893, -73.8146547)",HOLLAND AVENUE,BEACH 92 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4468528,Sedan,Sedan,,, +10/20/2021,16:05,QUEENS,11358,40.7586002,-73.8023368,"(40.7586002, -73.8023368)",164 STREET,43 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4469363,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,20:00,BROOKLYN,11226,40.6348247,-73.963368,"(40.6348247, -73.963368)",,,612 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4467689,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/20/2021,1:20,BROOKLYN,11208,40.6801616,-73.8778656,"(40.6801616, -73.8778656)",,,3183 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470658,Sedan,Sedan,,, +10/20/2021,16:10,BROOKLYN,11236,40.6475284,-73.8946807,"(40.6475284, -73.8946807)",FLATLANDS AVENUE,EAST 105 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469416,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,1:40,BROOKLYN,11207,40.6555642,-73.8797328,"(40.6555642, -73.8797328)",FLATLANDS AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467274,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,15:20,,,40.6912102,-73.8135384,"(40.6912102, -73.8135384)",133 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468200,Sedan,E-Bike,,, +11/02/2021,12:00,QUEENS,11361,40.75493,-73.7752,"(40.75493, -73.7752)",,,206-10 47 AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4473438,Sedan,Sedan,,, +10/15/2021,9:00,QUEENS,11691,40.6080238,-73.7462724,"(40.6080238, -73.7462724)",,,1212 BEACH 9 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468411,Station Wagon/Sport Utility Vehicle,TRAILER,,, +10/17/2021,18:25,,,40.6205299,-74.1349369,"(40.6205299, -74.1349369)",MAINE AVENUE,NEAL DOW AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4468372,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +10/21/2021,10:15,BROOKLYN,11211,40.7162234,-73.9243825,"(40.7162234, -73.9243825)",,,1313 GRAND STREET,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4470199,Carry All,Bike,,, +10/15/2021,11:30,BROOKLYN,11208,40.6736212,-73.8842138,"(40.6736212, -73.8842138)",PITKIN AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467406,Taxi,,,, +10/20/2021,7:40,BROOKLYN,11203,40.6459025,-73.9243894,"(40.6459025, -73.9243894)",,,5545 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4469231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,19:22,,,40.8146387,-73.9203299,"(40.8146387, -73.9203299)",3 AVENUE,EAST 146 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467726,Sedan,,,, +09/24/2021,22:20,,,40.8308918,-73.9413666,"(40.8308918, -73.9413666)",WEST 155 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4461807,Sedan,Sedan,,, +10/21/2021,19:30,,,40.7299397,-73.810433,"(40.7299397, -73.810433)",CUNNINGHAM PARK,193 STREET,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,,,4469594,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/10/2021,15:40,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,18:45,BROOKLYN,11231,40.6747617,-74.0085793,"(40.6747617, -74.0085793)",,,34 LORRAINE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468566,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,18:30,,,40.6029516,-73.7499767,"(40.6029516, -73.7499767)",SEAGIRT BOULEVARD,BEACH 10 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467028,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,12:00,BROOKLYN,11203,40.661948,-73.9354152,"(40.661948, -73.9354152)",,,755 MAPLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468399,Sedan,Sedan,,, +10/23/2021,12:23,QUEENS,11368,40.7433326,-73.8549515,"(40.7433326, -73.8549515)",108 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470484,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,22:35,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4519281,Sedan,Sedan,,, +10/17/2021,20:50,QUEENS,11385,40.7025579,-73.9103257,"(40.7025579, -73.9103257)",CYPRESS AVENUE,LINDEN STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468131,Bike,,,, +10/15/2021,20:46,BRONX,10468,40.8658329,-73.8959981,"(40.8658329, -73.8959981)",EAST 193 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468414,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,8:00,BROOKLYN,11212,40.6733017,-73.9039121,"(40.6733017, -73.9039121)",JUNIUS STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468364,Bus,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,10:00,MANHATTAN,10036,40.7624095,-73.9964059,"(40.7624095, -73.9964059)",,,550 WEST 45 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469161,Motorscooter,,,, +10/13/2021,19:28,BROOKLYN,11208,40.6650265,-73.8705674,"(40.6650265, -73.8705674)",STANLEY AVENUE,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467259,Station Wagon/Sport Utility Vehicle,Van,,, +10/19/2021,9:01,,,40.6971174,-73.9340084,"(40.6971174, -73.9340084)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468778,Sedan,,,, +08/13/2021,13:45,,,,,,WEST 42 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448264,Van,,,, +10/17/2021,0:00,BROOKLYN,11207,40.6781627,-73.8974769,"(40.6781627, -73.8974769)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4468171,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/24/2021,9:00,,,40.6274769,-74.1440005,"(40.6274769, -74.1440005)",DIXON AVENUE,VILLA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470845,Sedan,,,, +10/20/2021,21:00,,,40.6279777,-73.9416474,"(40.6279777, -73.9416474)",,,1 KINGS PLAZA,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469413,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,6:14,BROOKLYN,11224,40.5759262,-73.9911338,"(40.5759262, -73.9911338)",MERMAID AVENUE,WEST 24 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4470101,Bus,Sedan,,, +10/17/2021,22:00,BROOKLYN,11207,40.6628102,-73.8964516,"(40.6628102, -73.8964516)",ALABAMA AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470472,Sedan,,,, +10/24/2021,0:00,MANHATTAN,10026,40.7974839,-73.9487856,"(40.7974839, -73.9487856)",,,2 WEST 111,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4470702,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,16:37,,,40.8622592,-73.8958844,"(40.8622592, -73.8958844)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4465257,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/19/2021,22:30,,,40.7088619,-74.0006182,"(40.7088619, -74.0006182)",FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,8:05,,,40.6046459,-74.1623684,"(40.6046459, -74.1623684)",RICHMOND AVENUE,ETON PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466729,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,5:38,BROOKLYN,11207,40.6724702,-73.900831,"(40.6724702, -73.900831)",GLENMORE AVENUE,HINSDALE STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4469695,Sedan,Sedan,,, +10/18/2021,17:45,BROOKLYN,11229,40.5983037,-73.9414808,"(40.5983037, -73.9414808)",AVENUE V,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468594,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,11:31,QUEENS,11367,40.7273284,-73.8125592,"(40.7273284, -73.8125592)",,,72-69 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467904,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,19:22,BROOKLYN,11203,40.6554568,-73.9288273,"(40.6554568, -73.9288273)",LENOX ROAD,EAST 52 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470264,Bike,Sedan,,, +10/14/2021,15:30,BRONX,10458,40.8571285,-73.8807926,"(40.8571285, -73.8807926)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4467332,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,1:20,,,40.696197,-73.9887629,"(40.696197, -73.9887629)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4470134,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,0:47,QUEENS,11420,40.6729617,-73.8332328,"(40.6729617, -73.8332328)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468203,Sedan,Sedan,,, +10/16/2021,23:28,,,40.8548229,-73.911194,"(40.8548229, -73.911194)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4468698,Sedan,Sedan,,, +10/19/2021,15:29,,,40.757873,-73.7884961,"(40.757873, -73.7884961)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4469216,Sedan,Sedan,Sedan,, +10/13/2021,12:16,MANHATTAN,10013,40.7160714,-74.0011684,"(40.7160714, -74.0011684)",,,100 CENTRE STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4468281,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,23:07,BROOKLYN,11219,40.63497,-73.984474,"(40.63497, -73.984474)",,,1501 44 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473606,Sedan,E-Bike,,, +10/16/2021,8:45,BROOKLYN,11211,40.7075935,-73.9555418,"(40.7075935, -73.9555418)",KEAP STREET,BROADWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468136,Sedan,Sedan,,, +10/20/2021,10:50,MANHATTAN,10002,40.721473,-73.9838235,"(40.721473, -73.9838235)",EAST HOUSTON STREET,AVENUE B,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469299,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,16:20,BRONX,10452,40.8417618,-73.9152917,"(40.8417618, -73.9152917)",,,1476 TOWNSEND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468266,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,20:30,QUEENS,11691,40.6037769,-73.751854,"(40.6037769, -73.751854)",,,19-10 MOTT AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468436,Sedan,,,, +10/18/2021,11:21,BRONX,10451,40.8169326,-73.925822,"(40.8169326, -73.925822)",,,2824 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468680,Ambulance,Ambulance,,, +11/02/2021,13:50,,,40.684006,-74.001656,"(40.684006, -74.001656)",HICKS STREET,UNION STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4473512,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/16/2021,19:00,MANHATTAN,10036,40.7597902,-73.9879256,"(40.7597902, -73.9879256)",WEST 46 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,15:55,QUEENS,11435,40.701458,-73.812515,"(40.701458, -73.812515)",139 STREET,90 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4444083,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/12/2021,16:45,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4446661,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,14:00,QUEENS,11691,40.609882,-73.74849,"(40.609882, -73.74849)",,,12-24 BRUNSWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4447747,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/24/2021,16:00,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4448474,Pick-up Truck,Sedan,,, +08/14/2021,23:40,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448420,Sedan,,,, +08/07/2021,20:09,QUEENS,11413,40.66645,-73.75764,"(40.66645, -73.75764)",SPRINGFIELD BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4448451,Sedan,Motorcycle,,, +04/13/2022,14:30,BROOKLYN,11234,40.628166,-73.92787,"(40.628166, -73.92787)",UTICA AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518726,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,2:20,,,40.788895,-73.81869,"(40.788895, -73.81869)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4448487,Sedan,Sedan,,, +08/15/2021,5:45,QUEENS,11422,40.651737,-73.730255,"(40.651737, -73.730255)",,,149-51 259 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448419,Sedan,Sedan,,, +08/15/2021,15:15,MANHATTAN,10036,40.76242,-73.99422,"(40.76242, -73.99422)",,,510 WEST 46 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4448442,Bike,,,, +08/12/2021,17:43,BROOKLYN,11206,40.697315,-73.932274,"(40.697315, -73.932274)",MYRTLE AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4448492,Sedan,PK,,, +07/23/2021,22:49,MANHATTAN,10029,40.791557,-73.93866,"(40.791557, -73.93866)",EAST 109 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4448467,Sedan,Sedan,,, +08/15/2021,4:23,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",VARICK STREET,WATTS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448440,Sedan,Sedan,,, +08/16/2021,12:55,BROOKLYN,11220,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,60 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4448411,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,17:30,BRONX,10452,40.835396,-73.92031,"(40.835396, -73.92031)",EAST 167 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448471,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/16/2021,16:30,BROOKLYN,11218,40.641285,-73.970276,"(40.641285, -73.970276)",EAST 9 STREET,AVENUE C,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448430,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/22/2021,20:30,QUEENS,11368,40.7481368,-73.8647397,"(40.7481368, -73.8647397)",100 STREET,41 AVENUE,,1,0,0,0,0,0,0,0,Fell Asleep,Failure to Yield Right-of-Way,,,,4448477,Sedan,E-Bike,,, +10/17/2021,13:35,BROOKLYN,11214,40.6022901,-74.006781,"(40.6022901, -74.006781)",CROPSEY AVENUE,BAY 19 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +10/17/2021,23:07,,,40.7056297,-73.8378473,"(40.7056297, -73.8378473)",PARK LANE SOUTH,,,3,1,0,0,0,0,3,1,Alcohol Involvement,Unspecified,Unspecified,,,4468548,Sedan,Sedan,Sedan,, +10/14/2021,0:25,QUEENS,11432,40.7149341,-73.7931487,"(40.7149341, -73.7931487)",HOME LAWN STREET,KINGSTON PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466833,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +10/18/2021,11:28,STATEN ISLAND,10304,40.5938726,-74.0997976,"(40.5938726, -74.0997976)",RICHMOND ROAD,DELAWARE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469098,Sedan,Pick-up Truck,,, +10/15/2021,18:26,BRONX,10457,40.8371724,-73.901966,"(40.8371724, -73.901966)",3 AVENUE,EAST 171 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468693,Sedan,Sedan,,, +10/18/2021,10:20,BROOKLYN,11236,40.6336576,-73.8890192,"(40.6336576, -73.8890192)",,,9708 SEAVIEW AVENUE,2,0,2,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468476,Sedan,Sedan,Sedan,, +10/22/2021,16:28,QUEENS,11367,40.719279,-73.8156785,"(40.719279, -73.8156785)",147 STREET,79 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470069,Sedan,Sedan,,, +10/23/2021,3:04,BRONX,10470,40.8965207,-73.8717427,"(40.8965207, -73.8717427)",,,119 EAST 233 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4470388,Sedan,Sedan,Sedan,, +10/12/2021,14:30,BRONX,10459,40.8177952,-73.8931829,"(40.8177952, -73.8931829)",BRUCKNER BOULEVARD,TIFFANY STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467625,Sedan,Tanker,,, +10/15/2021,6:15,,,40.6781564,-73.9441507,"(40.6781564, -73.9441507)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467857,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,16:45,QUEENS,11361,,,,NORTHERN BOULEVARD,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447671,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,17:30,BROOKLYN,11208,40.670555,-73.874176,"(40.670555, -73.874176)",,,370 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447783,Sedan,Sedan,,, +08/16/2021,22:00,,,40.804905,-73.91883,"(40.804905, -73.91883)",EAST 135 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447720,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,11:35,BROOKLYN,11231,40.673645,-74.004234,"(40.673645, -74.004234)",,,123 LORRAINE STREET,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4448388,Sedan,Sedan,,, +08/16/2021,13:17,BROOKLYN,11207,40.67866,-73.89465,"(40.67866, -73.89465)",,,25 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448174,Sedan,,,, +08/14/2021,20:02,,,40.587147,-74.15391,"(40.587147, -74.15391)",KELLY BOULEVARD,KLONDIKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448141,Sedan,Motorbike,,, +08/16/2021,0:40,QUEENS,11427,40.723217,-73.75635,"(40.723217, -73.75635)",,,210-14 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4447301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,21:00,BROOKLYN,11215,40.674374,-73.97555,"(40.674374, -73.97555)",,,96 7 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4447702,Sedan,E-Bike,,, +08/16/2021,14:20,BRONX,10462,40.85061,-73.863045,"(40.85061, -73.863045)",NEILL AVENUE,MATTHEWS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447851,Sedan,Sedan,,, +08/16/2021,13:45,MANHATTAN,10035,40.80467,-73.93219,"(40.80467, -73.93219)",2 AVENUE,EAST 128 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447743,Sedan,Sedan,,, +08/09/2021,15:00,BROOKLYN,11231,40.673378,-74.000244,"(40.673378, -74.000244)",,,588 COURT STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448100,COM,Bike,,, +08/16/2021,16:54,BROOKLYN,11233,40.668377,-73.92012,"(40.668377, -73.92012)",PITKIN AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448227,Sedan,Sedan,,, +08/14/2021,0:08,BRONX,10455,,,,SOUTHERN BLVD,AVENUE ST JOHN,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448317,Sedan,Pick-up Truck,,, +08/16/2021,4:05,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",FLATBUSH AVENUE,CATON AVENUE,,2,0,2,0,0,0,0,0,,,,,,4447394,,,,, +08/16/2021,8:20,,,40.830658,-73.93517,"(40.830658, -73.93517)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447755,Sedan,Sedan,,, +08/07/2021,4:11,BRONX,10463,40.883705,-73.90527,"(40.883705, -73.90527)",,,3435 TIBBETT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448161,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,6:00,QUEENS,11103,40.767864,-73.90847,"(40.767864, -73.90847)",,,24-26 43 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4448216,Sedan,Sedan,Sedan,, +08/16/2021,13:00,,,,,,CONVENT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448016,Lift Boom,Sedan,Station Wagon/Sport Utility Vehicle,, +08/16/2021,1:30,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4447435,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,15:31,QUEENS,11434,40.675312,-73.777145,"(40.675312, -73.777145)",BREWER BOULEVARD,132 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4447650,Sedan,Station Wagon/Sport Utility Vehicle,Bus,Station Wagon/Sport Utility Vehicle, +08/16/2021,18:00,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447793,Sedan,Sedan,,, +08/16/2021,22:44,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4447807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,16:40,BROOKLYN,11226,40.648834,-73.964645,"(40.648834, -73.964645)",,,1621 CHURCH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447856,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,21:07,MANHATTAN,10004,,,,,,4 SOUTH STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4447937,Sedan,Sedan,,, +08/16/2021,13:30,,,40.679455,-73.8578,"(40.679455, -73.8578)",80 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447622,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,10:15,QUEENS,11369,40.76301,-73.87533,"(40.76301, -73.87533)",ASTORIA BOULEVARD,94 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447556,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/11/2021,18:34,,,40.685295,-73.93253,"(40.685295, -73.93253)",JEFFERSON AVENUE,,,4,0,0,0,0,0,4,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4448263,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck +08/08/2021,16:45,BRONX,10467,40.90012,-73.86004,"(40.90012, -73.86004)",,,3990 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448295,Sedan,,,, +08/16/2021,10:25,,,40.616547,-74.02607,"(40.616547, -74.02607)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448365,Van,Sedan,,, +08/16/2021,14:30,QUEENS,11413,40.665257,-73.76305,"(40.665257, -73.76305)",145 AVENUE,182 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447607,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,10:40,QUEENS,11426,40.726833,-73.71358,"(40.726833, -73.71358)",,,251-05 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,16:25,,,40.88082,-73.90344,"(40.88082, -73.90344)",BROADWAY,WEST 233 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,0:00,,,40.76394,-73.828156,"(40.76394, -73.828156)",UNION STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447642,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/16/2021,0:10,MANHATTAN,10013,40.72631,-74.0075,"(40.72631, -74.0075)",,,315 HUDSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447468,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,13:42,QUEENS,11365,40.73699,-73.81049,"(40.73699, -73.81049)",65 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447892,Sedan,Pick-up Truck,,, +08/16/2021,17:25,QUEENS,11372,40.75314,-73.87262,"(40.75314, -73.87262)",95 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447735,Sedan,,,, +08/16/2021,0:00,,,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447763,Pick-up Truck,Sedan,,, +08/16/2021,15:16,QUEENS,11355,40.746536,-73.83119,"(40.746536, -73.83119)",134 STREET,57 ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447996,Taxi,Sedan,,, +08/16/2021,11:00,,,40.60559,-74.13178,"(40.60559, -74.13178)",BRADLEY AVENUE,WESTWOOD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447816,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,15:50,BRONX,10469,40.88268,-73.85483,"(40.88268, -73.85483)",,,958 EAST 221 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4447952,Sedan,Sedan,,, +08/16/2021,4:05,BRONX,10455,40.82073,-73.91567,"(40.82073, -73.91567)",,,737 MELROSE AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,,4447543,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/16/2021,11:30,,,40.792126,-73.97178,"(40.792126, -73.97178)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4447631,Van,Sedan,,, +08/16/2021,9:54,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",111 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447712,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,17:20,MANHATTAN,10031,40.82269,-73.94947,"(40.82269, -73.94947)",WEST 141 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4448245,Station Wagon/Sport Utility Vehicle,Dump,,, +08/15/2021,13:00,STATEN ISLAND,10301,40.64137,-74.09388,"(40.64137, -74.09388)",,,45 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448374,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,19:10,BRONX,10467,40.88181,-73.88092,"(40.88181, -73.88092)",,,3475 DEKALB AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447806,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,22:40,BROOKLYN,11211,40.71135,-73.95118,"(40.71135, -73.95118)",,,366 UNION AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448134,Sedan,Sedan,,, +08/16/2021,17:05,,,40.681847,-73.792496,"(40.681847, -73.792496)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,21:06,BROOKLYN,11207,40.666294,-73.89445,"(40.666294, -73.89445)",PENNSYLVANIA AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4448349,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +08/16/2021,22:45,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447681,Sedan,,,, +08/15/2021,3:05,,,40.88271,-73.881256,"(40.88271, -73.881256)",JEROME AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4448196,Sedan,Sedan,,, +08/16/2021,7:05,MANHATTAN,10027,40.814793,-73.95629,"(40.814793, -73.95629)",,,520 WEST 126 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4447581,Sedan,Sedan,Sedan,Sedan, +08/16/2021,21:50,BROOKLYN,11215,40.67012,-73.99695,"(40.67012, -73.99695)",,,25 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448096,Sedan,Sedan,,, +08/16/2021,13:30,MANHATTAN,10017,40.75487,-73.979866,"(40.75487, -73.979866)",,,531 5 AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4447837,Bike,,,, +08/16/2021,21:58,BROOKLYN,11219,40.635937,-73.987595,"(40.635937, -73.987595)",14 AVENUE,45 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447869,Bike,,,, +08/15/2021,21:55,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448366,Sedan,Sedan,,, +08/16/2021,10:05,BROOKLYN,11213,40.67276,-73.93077,"(40.67276, -73.93077)",,,178 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448053,Sedan,,,, +07/27/2021,8:44,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448188,Sedan,Sedan,,, +08/16/2021,15:28,MANHATTAN,10029,40.790367,-73.949776,"(40.790367, -73.949776)",PARK AVENUE,EAST 102 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447730,Sedan,FIRE TRUCK,,, +08/16/2021,15:40,MANHATTAN,10013,40.72036,-74.00853,"(40.72036, -74.00853)",,,129 HUDSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447756,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,19:00,QUEENS,11377,40.740852,-73.91632,"(40.740852, -73.91632)",49 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4447695,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,8:35,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,15:20,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448234,Sedan,Tow Truck / Wrecker,,, +08/16/2021,15:30,QUEENS,11422,40.66652,-73.73645,"(40.66652, -73.73645)",FRANCIS LEWIS BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447658,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,22:19,MANHATTAN,10026,40.801754,-73.94698,"(40.801754, -73.94698)",,,24 WEST 117 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448118,Sedan,E-Scooter,,, +08/16/2021,21:23,,,40.590485,-73.810104,"(40.590485, -73.810104)",ROCKAWAY FREEWAY,BEACH 84 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448276,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,6:47,BROOKLYN,11229,40.599907,-73.94664,"(40.599907, -73.94664)",BEDFORD AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447774,Dump,Sedan,,, +08/16/2021,0:12,BROOKLYN,11217,,,,ATLANTIC AVENUE,6 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4447705,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,6:30,QUEENS,11355,40.744576,-73.82581,"(40.744576, -73.82581)",MAIN STREET,58 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447775,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,8:00,QUEENS,11377,40.75428,-73.89751,"(40.75428, -73.89751)",NORTHERN BOULEVARD,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448151,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,1:30,BROOKLYN,11236,40.639366,-73.9113,"(40.639366, -73.9113)",GLENWOOD ROAD,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447337,Sedan,Sedan,,, +08/06/2021,9:00,BRONX,10474,40.811657,-73.88958,"(40.811657, -73.88958)",CASANOVA STREET,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448204,Sedan,,,, +08/13/2021,7:45,BROOKLYN,11226,40.64157,-73.95149,"(40.64157, -73.95149)",,,1167 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448323,Sedan,,,, +08/16/2021,16:30,,,40.596745,-73.99799,"(40.596745, -73.99799)",BAY 31 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:26,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,,,,4448027,Bike,Taxi,,, +08/06/2021,19:20,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,Unspecified,,,4448316,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +08/08/2021,14:07,,,40.69629,-73.934715,"(40.69629, -73.934715)",STUYVESANT AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448275,Sedan,,,, +07/29/2021,13:10,MANHATTAN,10026,40.800293,-73.95356,"(40.800293, -73.95356)",,,140 WEST 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448140,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,4:16,QUEENS,11368,40.738453,-73.85984,"(40.738453, -73.85984)",,,99-11 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447402,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,11:45,,,,,,liberty ave,north conduit avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448162,Station Wagon/Sport Utility Vehicle,FORKLIFT,,, +08/16/2021,9:00,,,40.80809,-73.96882,"(40.80809, -73.96882)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447657,Sedan,Sedan,,, +08/16/2021,4:08,,,40.86221,-73.89965,"(40.86221, -73.89965)",EAST 188 STREET,EAST FORDHAM ROAD,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4447745,Tractor Truck Diesel,Sedan,Sedan,Sedan, +12/12/2021,0:06,,,40.763897,-73.95323,"(40.763897, -73.95323)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4485732,Sedan,Sedan,,, +12/12/2021,22:30,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",ATLANTIC AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486068,Sedan,Stake or Rack,,, +08/15/2021,16:58,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",ROCKAWAY BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448217,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,20:05,BROOKLYN,11225,40.6638,-73.95285,"(40.6638, -73.95285)",,,277 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447696,Sedan,Sedan,,, +08/16/2021,22:12,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",ROGERS AVENUE,CLARENDON ROAD,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4448012,Sedan,,,, +08/12/2021,15:07,MANHATTAN,10026,40.80527,-73.95738,"(40.80527, -73.95738)",,,369 WEST 116 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4448116,Bus,Taxi,,, +08/16/2021,23:19,,,,,,BROOKLYN QUEENS EXPY (CDR),,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4447721,Flat Bed,Sedan,,, +08/13/2021,18:00,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",BRISTOL STREET,LIVONIA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4448397,Sedan,Sedan,Sedan,, +08/14/2021,23:44,BRONX,10467,40.88288,-73.8632,"(40.88288, -73.8632)",WHITE PLAINS ROAD,EAST 218 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,9:37,BRONX,10471,40.89833,-73.89848,"(40.89833, -73.89848)",,,5235 POST ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448195,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/16/2021,6:30,BROOKLYN,11219,40.624577,-74.00235,"(40.624577, -74.00235)",,,1304 67 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447580,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,10:58,,,40.828022,-73.84604,"(40.828022, -73.84604)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447610,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:40,MANHATTAN,10031,40.828613,-73.943855,"(40.828613, -73.943855)",,,451 WEST 151 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447819,Sedan,Sedan,,, +08/14/2021,23:45,QUEENS,11693,40.605114,-73.81973,"(40.605114, -73.81973)",CROSS BAY BOULEVARD,WEST 11 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448283,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,21:10,,,40.773327,-73.76503,"(40.773327, -73.76503)",CROSS ISLAND PARKWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4447672,Sedan,Sedan,Sedan,, +08/16/2021,11:00,,,40.680088,-73.94398,"(40.680088, -73.94398)",FULTON STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4447973,Sedan,Bike,,, +08/16/2021,14:32,BROOKLYN,11212,40.657207,-73.9003,"(40.657207, -73.9003)",LINDEN BOULEVARD,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448226,Pick-up Truck,,,, +08/16/2021,6:00,BRONX,10455,40.812855,-73.90725,"(40.812855, -73.90725)",EAST 149 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447544,Sedan,,,, +08/16/2021,19:00,BROOKLYN,11208,40.688667,-73.87053,"(40.688667, -73.87053)",,,76 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447782,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,8:00,,,40.752853,-73.99299,"(40.752853, -73.99299)",8 AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4447840,Sedan,,,, +08/16/2021,7:47,,,,,,hangar road,nassau expwy,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4447600,Sedan,Sedan,,, +08/16/2021,10:15,QUEENS,11417,40.679226,-73.86119,"(40.679226, -73.86119)",,,76-20 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,,4447711,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/16/2021,14:36,MANHATTAN,10075,40.774967,-73.9568,"(40.774967, -73.9568)",EAST 80 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448136,Sedan,Tractor Truck Diesel,,, +08/14/2021,15:40,BRONX,10463,40.882515,-73.89039,"(40.882515, -73.89039)",SEDGWICK AVENUE,SAXON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448186,Station Wagon/Sport Utility Vehicle,Van,,, +08/16/2021,10:00,MANHATTAN,10027,40.810062,-73.95497,"(40.810062, -73.95497)",MORNINGSIDE AVENUE,WEST 123 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448006,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,18:30,BROOKLYN,11209,40.6335,-74.023994,"(40.6335, -74.023994)",,,7032 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447666,Station Wagon/Sport Utility Vehicle,Dump,,, +08/16/2021,17:00,BRONX,10456,40.819885,-73.90726,"(40.819885, -73.90726)",EAST 158 STREET,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447716,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,20:41,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4448380,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,15:33,STATEN ISLAND,10304,40.62507,-74.08474,"(40.62507, -74.08474)",,,609 VANDUZER STREET,4,0,0,0,0,0,4,0,Unspecified,,,,,4448373,Sedan,,,, +10/13/2021,9:10,QUEENS,11691,40.6069695,-73.7582775,"(40.6069695, -73.7582775)",,,1334 GIPSON STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467060,Sedan,Sedan,,, +08/13/2021,0:30,MANHATTAN,10018,40.75632,-73.999275,"(40.75632, -73.999275)",,,515 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448254,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,11:45,QUEENS,11691,40.59999,-73.75394,"(40.59999, -73.75394)",,,536 BEACH 20 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4448121,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,10:26,BROOKLYN,11208,40.66777,-73.86049,"(40.66777, -73.86049)",,,902 DREW STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4448352,Sedan,,,, +08/16/2021,19:30,,,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,,,,,,4447811,,,,, +08/16/2021,6:30,BROOKLYN,11239,,,,,,526 SCHROEDERS AVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447421,Sedan,,,, +08/16/2021,20:00,BRONX,10469,40.87965,-73.84236,"(40.87965, -73.84236)",,,3636 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447950,Sedan,,,, +08/16/2021,13:10,MANHATTAN,10029,40.786377,-73.95058,"(40.786377, -73.95058)",,,1500 LEXINGTON AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4447646,Motorcycle,,,, +08/16/2021,21:10,MANHATTAN,10036,40.75614,-73.981255,"(40.75614, -73.981255)",,,56 WEST 45 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4447849,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,11:45,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4447791,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/16/2021,11:30,MANHATTAN,10035,40.799976,-73.94274,"(40.799976, -73.94274)",PARK AVENUE,EAST 117 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447734,Station Wagon/Sport Utility Vehicle,Bike,,, +08/16/2021,17:05,STATEN ISLAND,10305,40.61171,-74.07079,"(40.61171, -74.07079)",,,260 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448379,Sedan,Sedan,,, +08/13/2021,11:54,BRONX,10463,40.88145,-73.91685,"(40.88145, -73.91685)",,,2700 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448191,Sedan,Sedan,Sedan,, +08/16/2021,7:21,BRONX,10460,40.834915,-73.894135,"(40.834915, -73.894135)",BOSTON ROAD,WILKENS AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4447761,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,13:00,MANHATTAN,10002,40.72293,-73.98865,"(40.72293, -73.98865)",EAST HOUSTON STREET,ALLEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448125,Sedan,,,, +08/16/2021,0:00,BROOKLYN,11205,40.69685,-73.9647,"(40.69685, -73.9647)",,,31 GRAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Traffic Control Disregarded,,,,4447680,Dump,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,3:50,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4447974,Sedan,,,, +08/16/2021,7:45,,,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448054,Sedan,E-Bike,,, +08/16/2021,14:53,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",EAST 135 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447715,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,8:38,BROOKLYN,11230,40.61487,-73.95849,"(40.61487, -73.95849)",,,1425 EAST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447855,Sedan,,,, +08/16/2021,7:30,QUEENS,11370,40.765377,-73.88906,"(40.765377, -73.88906)",ASTORIA BOULEVARD,80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447449,Sedan,Sedan,,, +08/16/2021,4:00,BROOKLYN,11235,40.592327,-73.94519,"(40.592327, -73.94519)",,,4481 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447769,Sedan,Sedan,,, +08/16/2021,12:48,QUEENS,11377,40.734863,-73.90662,"(40.734863, -73.90662)",59 STREET,52 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447620,Sedan,Van,,, +08/16/2021,21:39,,,,,,WHITESTONE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4447776,Sedan,Sedan,,, +08/16/2021,21:37,,,40.641525,-74.03331,"(40.641525, -74.03331)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447675,Sedan,Sedan,,, +08/16/2021,19:30,BROOKLYN,11235,40.591675,-73.94994,"(40.591675, -73.94994)",,,2855 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4447768,Sedan,Sedan,,, +08/13/2021,12:20,BRONX,10463,40.876583,-73.90266,"(40.876583, -73.90266)",ALBANY CRESCENT,HEATH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4448144,Sedan,,,, +08/16/2021,16:47,,,40.737682,-73.85206,"(40.737682, -73.85206)",LONG ISLAND EXPRESSWAY,108 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4447727,Sedan,Flat Bed,,, +08/09/2021,14:40,BRONX,10471,40.906475,-73.904175,"(40.906475, -73.904175)",,,5661 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448154,Sedan,,,, +08/16/2021,2:35,,,40.700436,-73.81534,"(40.700436, -73.81534)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447351,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,11:58,MANHATTAN,10065,40.76415,-73.95526,"(40.76415, -73.95526)",,,525 EAST 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448210,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,19:34,,,40.818733,-73.96109,"(40.818733, -73.96109)",WEST 125 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448023,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,12:49,BRONX,10459,40.81614,-73.894875,"(40.81614, -73.894875)",BRUCKNER BOULEVARD,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4448322,Station Wagon/Sport Utility Vehicle,PK,,, +08/16/2021,16:00,QUEENS,11694,40.581367,-73.829956,"(40.581367, -73.829956)",,,108-19 ROCKAWAY BEACH DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448288,Van,Tractor Truck Diesel,,, +08/16/2021,8:45,BROOKLYN,11222,40.72978,-73.94613,"(40.72978, -73.94613)",,,824 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447845,Box Truck,Sedan,,, +08/16/2021,12:40,QUEENS,11422,40.67221,-73.734634,"(40.67221, -73.734634)",135 AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447599,Sedan,,,, +08/16/2021,6:16,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4447601,Sedan,Tractor Truck Diesel,Sedan,, +08/16/2021,17:15,BROOKLYN,11207,40.681946,-73.904884,"(40.681946, -73.904884)",BUSHWICK AVENUE,DE SALES PLACE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4447802,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,8:15,BRONX,10474,40.81579,-73.893326,"(40.81579, -73.893326)",,,825 GARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448202,Sedan,,,, +08/16/2021,7:55,,,,,,BRUCKNER BOULEVARD,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447629,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,9:52,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447824,Sedan,Sedan,,, +08/16/2021,18:30,QUEENS,11102,40.773052,-73.91886,"(40.773052, -73.91886)",,,24-45 27 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448233,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,10:00,,,40.74712,-73.94239,"(40.74712, -73.94239)",JACKSON AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4447665,E-Bike,,,, +08/16/2021,16:34,BROOKLYN,11219,40.637264,-73.9898,"(40.637264, -73.9898)",13 AVENUE,45 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4447870,Station Wagon/Sport Utility Vehicle,,,, +07/24/2021,21:49,BRONX,10452,40.835396,-73.92031,"(40.835396, -73.92031)",EAST 167 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448282,Taxi,Sedan,,, +08/16/2021,5:58,,,40.65207,-74.00676,"(40.65207, -74.00676)",40 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447503,Sedan,,,, +08/16/2021,18:15,BROOKLYN,11221,40.698772,-73.92233,"(40.698772, -73.92233)",WILSON AVENUE,STANHOPE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4447803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/16/2021,14:07,BROOKLYN,11204,40.631596,-73.98494,"(40.631596, -73.98494)",16 AVENUE,48 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4447862,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,9:15,BRONX,10469,40.877296,-73.85212,"(40.877296, -73.85212)",HICKS STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447553,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,13:35,,,40.559383,-74.15393,"(40.559383, -74.15393)",BARLOW AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:18,MANHATTAN,10010,40.737877,-73.97689,"(40.737877, -73.97689)",,,425 EAST 25 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4448256,Sedan,,,, +08/15/2021,16:33,,,40.5905,-73.81246,"(40.5905, -73.81246)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,7:54,BROOKLYN,11238,40.682816,-73.96578,"(40.682816, -73.96578)",,,505 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447656,Sedan,,,, +08/16/2021,13:20,MANHATTAN,10030,40.817226,-73.94231,"(40.817226, -73.94231)",7 AVENUE,WEST 138 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4447748,Sedan,E-Bike,,, +08/16/2021,19:01,QUEENS,11106,40.76553,-73.94028,"(40.76553, -73.94028)",34 AVENUE,VERNON BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448236,Sedan,Bike,,, +08/16/2021,20:53,BROOKLYN,11236,40.64188,-73.894684,"(40.64188, -73.894684)",AVENUE K,EAST 100 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448021,Sedan,Bike,,, +08/10/2021,23:11,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448194,,,,, +08/16/2021,9:19,,,0,0,"(0.0, 0.0)",SHERIDAN AVENUE,,,1,0,0,0,0,0,1,0,Pavement Defective,Unspecified,,,,4447579,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,18:20,QUEENS,11435,40.70462,-73.80916,"(40.70462, -73.80916)",,,88-11 SUTPHIN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4447673,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,0:40,BRONX,10472,40.831936,-73.86228,"(40.831936, -73.86228)",,,1263 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447448,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,14:50,,,40.794052,-73.970375,"(40.794052, -73.970375)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447647,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2021,6:24,BRONX,10474,40.814594,-73.88588,"(40.814594, -73.88588)",HUNTS POINT AVENUE,SPOFFORD AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4448329,Bus,,,, +08/16/2021,15:30,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447795,Box Truck,Sedan,,, +08/16/2021,11:19,QUEENS,11355,40.756046,-73.81307,"(40.756046, -73.81307)",149 STREET,45 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4447636,Bus,Sedan,,, +08/15/2021,19:34,QUEENS,11374,40.733433,-73.86418,"(40.733433, -73.86418)",,,61-35 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448400,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,9:30,,,40.889503,-73.88764,"(40.889503, -73.88764)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,18:58,MANHATTAN,10026,40.80123,-73.9577,"(40.80123, -73.9577)",WEST 111 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447881,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/16/2021,23:16,QUEENS,11429,40.71587,-73.73774,"(40.71587, -73.73774)",,,98-24 218 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447697,Sedan,,,, +08/16/2021,21:12,QUEENS,11421,40.688698,-73.85409,"(40.688698, -73.85409)",89 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,,4447818,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/16/2021,12:28,BROOKLYN,11234,40.615383,-73.92891,"(40.615383, -73.92891)",,,2240 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,17:13,,,40.856037,-73.83284,"(40.856037, -73.83284)",PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4447853,Sedan,Ambulance,,, +08/16/2021,2:30,QUEENS,11434,40.665855,-73.784065,"(40.665855, -73.784065)",,,144-26 153 COURT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447740,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,5:25,,,40.739655,-73.81784,"(40.739655, -73.81784)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448111,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,19:21,,,40.75202,-74.00473,"(40.75202, -74.00473)",11 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448225,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/16/2021,21:22,BROOKLYN,11226,40.641636,-73.95677,"(40.641636, -73.95677)",,,1170 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4447686,Sedan,Sedan,,, +08/13/2021,6:30,BRONX,10463,40.87802,-73.90241,"(40.87802, -73.90241)",WEST 231 STREET,BAILEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448137,Sedan,Sedan,,, +08/16/2021,21:05,QUEENS,11368,40.749905,-73.862465,"(40.749905, -73.862465)",,,103-19 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4447678,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,6:25,QUEENS,11368,40.744705,-73.85725,"(40.744705, -73.85725)",,,49-07 106 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447406,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,9:00,BRONX,10463,40.885303,-73.89826,"(40.885303, -73.89826)",PUTNAM AVENUE WEST,WEST 239 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448159,Sedan,,,, +08/16/2021,23:55,BROOKLYN,11232,40.66778,-73.996185,"(40.66778, -73.996185)",,,550 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448353,Sedan,,,, +08/16/2021,11:30,BRONX,10462,40.840363,-73.85606,"(40.840363, -73.85606)",,,1650 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447611,Sedan,,,, +08/16/2021,21:16,BRONX,10454,40.804256,-73.9193,"(40.804256, -73.9193)",EAST 134 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447717,Sedan,Motorcycle,,, +08/10/2021,15:00,,,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4448300,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,, +07/28/2021,7:30,MANHATTAN,10001,40.748558,-74.002205,"(40.748558, -74.002205)",,,425 WEST 25 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4448218,PK,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/16/2021,20:45,BROOKLYN,11206,40.70082,-73.957466,"(40.70082, -73.957466)",BEDFORD AVENUE,HEYWARD STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4448040,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:44,BRONX,10451,40.814423,-73.92471,"(40.814423, -73.92471)",,,340 MORRIS AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447722,Sedan,E-Bike,,, +08/11/2021,14:00,STATEN ISLAND,10301,40.615967,-74.10457,"(40.615967, -74.10457)",VICTORY BOULEVARD,SENECA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448372,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,16:15,BROOKLYN,11207,40.6646,-73.89502,"(40.6646, -73.89502)",LIVONIA AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447785,Box Truck,Sedan,,, +08/16/2021,20:09,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448059,Sedan,Sedan,,, +08/16/2021,17:15,QUEENS,11414,40.659927,-73.84005,"(40.659927, -73.84005)",,,158-57 CROSS BAY BOULEVARD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4447707,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,15:33,BROOKLYN,11223,40.603542,-73.985535,"(40.603542, -73.985535)",,,1775 WEST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447667,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,19:00,BRONX,10463,40.883717,-73.90526,"(40.883717, -73.90526)",,,3437 TIBBETT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448147,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,11:00,BRONX,10463,40.885715,-73.90895,"(40.885715, -73.90895)",,,3512 OXFORD AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4448185,Sedan,Fed ex van,,, +08/16/2021,19:04,BRONX,10468,40.863785,-73.90028,"(40.863785, -73.90028)",JEROME AVENUE,EAST 190 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447810,Sedan,Sedan,,, +08/16/2021,7:15,,,40.711422,-73.77622,"(40.711422, -73.77622)",184 PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4448009,Sedan,Sedan,Sedan,, +08/16/2021,18:50,QUEENS,11373,,,,,,88-01 St. James avenue,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4447732,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,0:45,,,40.707333,-73.94321,"(40.707333, -73.94321)",MONTROSE AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4448384,Box Truck,E-Bike,,, +08/16/2021,13:30,BROOKLYN,11223,40.60937,-73.96226,"(40.60937, -73.96226)",,,1957 CONEY ISLAND AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447772,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/16/2021,15:40,QUEENS,11106,40.76238,-73.92944,"(40.76238, -73.92944)",CRESCENT STREET,33 ROAD,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4448230,Sedan,,,, +08/09/2021,23:19,MANHATTAN,10027,40.806953,-73.94353,"(40.806953, -73.94353)",,,35 WEST 125 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448120,Sedan,Sedan,,, +08/09/2021,14:47,,,40.632164,-74.166336,"(40.632164, -74.166336)",SOUTH AVENUE,BRABANT STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4448305,Sedan,Bus,,, +08/16/2021,17:00,QUEENS,11355,40.75675,-73.828545,"(40.75675, -73.828545)",,,136-05 SANFORD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,11:05,QUEENS,11385,40.707016,-73.9078,"(40.707016, -73.9078)",,,6 SAINT JOHNS ROAD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448291,E-Scooter,,,, +08/13/2021,23:00,BROOKLYN,11211,40.708263,-73.955124,"(40.708263, -73.955124)",KEAP STREET,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4448130,Sedan,Sedan,,, +08/16/2021,3:40,BRONX,10460,40.836575,-73.89282,"(40.836575, -73.89282)",,,1550 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447361,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,11:38,MANHATTAN,10027,40.811005,-73.950584,"(40.811005, -73.950584)",,,2353 8 AVENUE,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448212,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,16:43,,,,,,KINGSBRIDGE AVENUE,WEST 228 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448148,Sedan,,,, +08/16/2021,16:30,BROOKLYN,11213,40.674004,-73.94455,"(40.674004, -73.94455)",BROOKLYN AVENUE,PROSPECT PLACE,,2,0,0,0,0,0,2,0,Illnes,,,,,4447685,PICK UP,,,, +08/16/2021,14:08,BROOKLYN,11211,40.714943,-73.942764,"(40.714943, -73.942764)",,,371 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447846,Sedan,,,, +10/12/2021,8:30,,,40.7379929,-73.9036781,"(40.7379929, -73.9036781)",61 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4466464,Sedan,Taxi,,, +08/16/2021,9:30,BRONX,10473,40.82201,-73.85827,"(40.82201, -73.85827)",LAFAYETTE AVENUE,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4447827,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/14/2021,7:05,,,40.899616,-73.89357,"(40.899616, -73.89357)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,,,,4448190,Sedan,Sedan,,, +08/16/2021,11:40,QUEENS,11428,40.719746,-73.75031,"(40.719746, -73.75031)",,,211-38 91 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,16:25,BROOKLYN,11231,40.67347,-73.9984,"(40.67347, -73.9984)",SMITH STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,22:46,BRONX,10459,40.826458,-73.8993,"(40.826458, -73.8993)",,,822 EAST 167 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4447759,Station Wagon/Sport Utility Vehicle,FDNY Ambul,,, +08/16/2021,12:29,BROOKLYN,11234,40.60143,-73.91334,"(40.60143, -73.91334)",,,2777 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4447984,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,15:40,BROOKLYN,11207,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447796,Sedan,Sedan,,, +08/16/2021,9:17,QUEENS,11357,40.778885,-73.81454,"(40.778885, -73.81454)",150 STREET,22 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447635,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,14:30,BROOKLYN,11220,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447664,Sedan,Sedan,,, +08/13/2021,21:40,MANHATTAN,10029,40.791557,-73.93866,"(40.791557, -73.93866)",EAST 109 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448281,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,8:32,MANHATTAN,10037,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 ST BRIDGE,LENOX AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447528,Taxi,Van,,, +08/14/2021,19:00,BROOKLYN,11249,40.699482,-73.96104,"(40.699482, -73.96104)",KENT AVENUE,RUTLEDGE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448240,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:05,BROOKLYN,11207,40.688553,-73.91245,"(40.688553, -73.91245)",HALSEY STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4447804,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/16/2021,9:55,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",EAST 140 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4447714,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,21:00,STATEN ISLAND,10301,40.645775,-74.09168,"(40.645775, -74.09168)",,,576 RICHMOND TERRACE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448378,Sedan,Sedan,Sedan,, +08/13/2021,15:35,BRONX,10469,40.871212,-73.854385,"(40.871212, -73.854385)",,,1127 BURKE AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4448200,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,1:50,,,40.815662,-73.88702,"(40.815662, -73.88702)",FAILE STREET,HUNTS POINT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448321,Sedan,Sedan,,, +08/16/2021,14:28,,,40.603886,-74.00618,"(40.603886, -74.00618)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447638,Sedan,Bus,,, +08/16/2021,15:45,BROOKLYN,11228,40.613182,-74.01245,"(40.613182, -74.01245)",,,1373 86 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447668,Sedan,Sedan,,, +08/16/2021,9:50,BROOKLYN,11203,40.65559,-73.92676,"(40.65559, -73.92676)",,,879 LENOX ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4448010,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/16/2021,12:30,BROOKLYN,11219,40.644756,-73.9916,"(40.644756, -73.9916)",,,1019 38 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447863,Box Truck,Sedan,,, +08/16/2021,7:35,QUEENS,11435,40.708836,-73.81578,"(40.708836, -73.81578)",,,139-80 85 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447889,Sedan,Sedan,,, +08/15/2021,18:58,BROOKLYN,11203,40.644493,-73.928604,"(40.644493, -73.928604)",EAST 51 STREET,CLARENDON ROAD,,4,0,0,0,0,0,4,0,Brakes Defective,Driver Inattention/Distraction,,,,4448386,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,4:47,BROOKLYN,11232,40.651264,-74.003914,"(40.651264, -74.003914)",39 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447502,Sedan,Sedan,,, +08/16/2021,16:45,,,40.585133,-73.954544,"(40.585133, -73.954544)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4447767,Sedan,Sedan,,, +08/16/2021,5:21,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447598,Sedan,,,, +08/13/2021,18:20,,,40.584366,-73.9271,"(40.584366, -73.9271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448406,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,5:40,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4447808,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/16/2021,5:30,QUEENS,11101,40.740067,-73.935455,"(40.740067, -73.935455)",31 PLACE,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447439,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,11:50,BROOKLYN,11220,40.638824,-74.02273,"(40.638824, -74.02273)",,,333 65 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447674,Carry All,Sedan,,, +08/16/2021,18:24,BROOKLYN,11210,40.63406,-73.946815,"(40.63406, -73.946815)",GLENWOOD ROAD,EAST 31 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4447857,Sedan,,,, +08/09/2021,11:00,BROOKLYN,11249,40.7133,-73.96742,"(40.7133, -73.96742)",SOUTH 4 STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448330,Box Truck,Sedan,,, +08/16/2021,9:15,,,40.69953,-73.91104,"(40.69953, -73.91104)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447794,Sedan,Sedan,,, +08/16/2021,15:30,QUEENS,11693,40.6078,-73.81932,"(40.6078, -73.81932)",CROSS BAY BOULEVARD,NOEL ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,14:40,BROOKLYN,11207,40.654266,-73.88281,"(40.654266, -73.88281)",,,12205 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,20:30,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448138,Sedan,E-Scooter,,, +08/16/2021,15:20,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",WESTCHESTER AVENUE,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447718,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,13:45,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",SUTTER AVENUE,78 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4447699,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,14:00,MANHATTAN,10027,40.81286,-73.96341,"(40.81286, -73.96341)",RIVERSIDE DRIVE,WEST 122 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4448017,Sedan,Taxi,,, +08/16/2021,14:18,MANHATTAN,10032,40.842495,-73.93745,"(40.842495, -73.93745)",,,555 WEST 171 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448104,Sedan,,,, +08/16/2021,3:00,QUEENS,11368,40.746166,-73.866165,"(40.746166, -73.866165)",,,97-28 43 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4447726,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +07/20/2021,16:30,BROOKLYN,11217,40.68066,-73.974525,"(40.68066, -73.974525)",,,67 6 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448361,Sedan,,,, +08/16/2021,11:45,MANHATTAN,10016,0,0,"(0.0, 0.0)",FDR DRIVE,EAST 30 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,,,,4447619,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,11:37,BROOKLYN,11214,40.61055,-74.00145,"(40.61055, -74.00145)",,,8121 NEW UTRECHT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4448302,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,1:20,,,40.66118,-73.95696,"(40.66118, -73.95696)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4447577,Sedan,,,, +08/03/2021,22:00,,,40.88643,-73.895805,"(40.88643, -73.895805)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4448193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,20:19,,,40.629246,-74.14312,"(40.629246, -74.14312)",,,462 VILLA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447817,Sedan,Sedan,,, +08/16/2021,14:00,BROOKLYN,11206,0,0,"(0.0, 0.0)",INGRAHAM STREET,BOGART STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447942,Station Wagon/Sport Utility Vehicle,Bus,,, +08/16/2021,8:23,,,40.668636,-73.79189,"(40.668636, -73.79189)",147 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447648,Sedan,,,, +08/16/2021,11:35,MANHATTAN,10035,40.801765,-73.93723,"(40.801765, -73.93723)",EAST 122 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4447742,Sedan,Motorcycle,,, +08/16/2021,13:45,,,40.84504,-73.87148,"(40.84504, -73.87148)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4447852,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Motorcycle +08/16/2021,1:30,BROOKLYN,11208,40.683613,-73.86639,"(40.683613, -73.86639)",,,304 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447784,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,1:40,MANHATTAN,10025,40.807762,-73.96544,"(40.807762, -73.96544)",,,606 WEST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447554,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,0:00,,,40.669228,-73.8962,"(40.669228, -73.8962)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4447419,Taxi,Sedan,,, +08/16/2021,21:16,BROOKLYN,11236,40.644196,-73.91295,"(40.644196, -73.91295)",EAST 88 STREET,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4447677,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/04/2021,13:30,MANHATTAN,10025,40.801296,-73.96564,"(40.801296, -73.96564)",,,203 WEST 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448272,Sedan,,,, +08/16/2021,22:23,,,40.826675,-73.90023,"(40.826675, -73.90023)",UNION AVENUE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4447753,Pick-up Truck,Sedan,,, +08/16/2021,12:00,BROOKLYN,11236,40.6407,-73.91874,"(40.6407, -73.91874)",,,8014 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4447654,Sedan,Bike,,, +07/30/2021,12:07,BRONX,10471,40.894867,-73.88217,"(40.894867, -73.88217)",,,70 MAJOR DEEGAN EXPRESSWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4448142,Sedan,,,, +07/22/2021,17:04,,,40.88271,-73.9158,"(40.88271, -73.9158)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4448160,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,17:35,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448038,Sedan,,,, +08/13/2021,6:30,QUEENS,11105,40.772606,-73.909004,"(40.772606, -73.909004)",,,22-57 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448219,Sedan,,,, +08/16/2021,12:45,MANHATTAN,10013,40.71789,-74.000885,"(40.71789, -74.000885)",,,96 WALKER STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4447691,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,6:00,BROOKLYN,11235,40.581745,-73.95382,"(40.581745, -73.95382)",CASS PLACE,WEST END AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448066,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,23:00,,,,,,AVENUE O,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448259,Sedan,Sedan,,, +08/16/2021,23:05,BROOKLYN,11207,40.688553,-73.91245,"(40.688553, -73.91245)",EVERGREEN AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4447805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,14:32,QUEENS,11385,40.70059,-73.89696,"(40.70059, -73.89696)",,,60-36 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448293,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,15:34,BROOKLYN,11205,40.693172,-73.97086,"(40.693172, -73.97086)",CLERMONT AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448336,Bus,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,10:30,,,40.69141,-73.72668,"(40.69141, -73.72668)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447606,Pick-up Truck,Sedan,,, +08/16/2021,21:17,STATEN ISLAND,10305,40.58034,-74.092545,"(40.58034, -74.092545)",FILBERT AVENUE,MASON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447848,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:15,BRONX,10469,40.869583,-73.86043,"(40.869583, -73.86043)",ADEE AVENUE,RADCLIFF AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4448198,Sedan,Sedan,,, +08/16/2021,16:43,,,40.69958,-73.9278,"(40.69958, -73.9278)",WILLOUGHBY AVENUE,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447797,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,11:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447588,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,13:55,,,40.791466,-73.97411,"(40.791466, -73.97411)",BROADWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447641,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,16:15,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4447970,Sedan,Sedan,,, +08/16/2021,9:30,,,,,,,,141-43 TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4447891,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,7:00,,,40.820606,-73.9116,"(40.820606, -73.9116)",EAST 157 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447542,Sedan,,,, +08/14/2021,11:28,QUEENS,11103,40.759365,-73.914276,"(40.759365, -73.914276)",44 STREET,NEWTOWN ROAD,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4448222,Sedan,Taxi,Sedan,Sedan,Sedan +08/08/2021,8:00,BRONX,10460,40.842377,-73.871635,"(40.842377, -73.871635)",,,526 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4448304,Sedan,Sedan,Sedan,Sedan, +08/16/2021,15:15,QUEENS,11378,,,,LAUREL HILL BOULEVARD,54 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448050,Van,Bike,,, +08/16/2021,16:50,STATEN ISLAND,10301,40.64001,-74.0863,"(40.64001, -74.0863)",,,146 HENDRICKS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448375,Sedan,,,, +08/16/2021,18:10,QUEENS,11373,40.739395,-73.87792,"(40.739395, -73.87792)",CORONA AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447731,Station Wagon/Sport Utility Vehicle,Bus,,, +08/05/2021,21:40,BRONX,10463,40.877705,-73.90566,"(40.877705, -73.90566)",BROADWAY,KIMBERLY PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448146,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,20:55,BRONX,10463,40.87262,-73.904686,"(40.87262, -73.904686)",HEATH AVENUE,WEST KINGSBRIDGE ROAD,,1,0,1,0,0,0,0,0,,,,,,4448149,,,,, +08/16/2021,0:05,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",OCEAN PARKWAY,AVENUE J,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4447372,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,18:35,,,40.841618,-73.912476,"(40.841618, -73.912476)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4448280,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,11:15,BRONX,10452,40.84362,-73.923706,"(40.84362, -73.923706)",,,1422 OGDEN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4447764,Sedan,,,, +08/16/2021,18:20,BRONX,10457,40.847862,-73.89923,"(40.847862, -73.89923)",,,4215 PARK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447780,Sedan,,,, +08/10/2021,20:28,QUEENS,11433,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4448215,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/16/2021,15:27,,,40.670887,-73.93649,"(40.670887, -73.93649)",SAINT JOHNS PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447683,Sedan,Sedan,,, +08/16/2021,11:50,BROOKLYN,11220,40.638824,-74.02273,"(40.638824, -74.02273)",,,333 65 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447995,Pick-up Truck,Sedan,,, +08/16/2021,22:51,QUEENS,11419,40.68514,-73.8301,"(40.68514, -73.8301)",,,112-10 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4447713,Sedan,Sedan,Sedan,, +08/16/2021,21:22,,,,,,31 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Aggressive Driving/Road Rage,,,,4448241,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,16:22,BROOKLYN,11226,40.648037,-73.95164,"(40.648037, -73.95164)",,,2714 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4448387,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,19:00,,,40.825947,-73.94528,"(40.825947, -73.94528)",CONVENT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447773,Motorscooter,Sedan,,, +08/16/2021,9:48,,,40.766434,-73.83767,"(40.766434, -73.83767)",COLLEGE POINT BOULEVARD,32 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4447634,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,7:45,BRONX,10460,40.84029,-73.867386,"(40.84029, -73.867386)",,,1800 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447490,Sedan,Sedan,,, +08/16/2021,4:50,,,40.79672,-73.97618,"(40.79672, -73.97618)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4447828,Sedan,Sedan,,, +08/16/2021,16:20,BROOKLYN,11210,40.636,-73.93741,"(40.636, -73.93741)",,,1525 ALBANY AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448011,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,16:15,BROOKLYN,11231,40.673847,-74.01025,"(40.673847, -74.01025)",BAY STREET,OTSEGO STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4447669,Sedan,Sedan,,, +08/16/2021,13:03,,,40.76018,-73.8012,"(40.76018, -73.8012)",NORTHERN BOULEVARD,165 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4447864,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,10:59,MANHATTAN,10011,40.742756,-74.00035,"(40.742756, -74.00035)",,,175 8 AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4448229,E-Scooter,,,, +08/16/2021,13:00,QUEENS,11417,,,,NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4447706,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/16/2021,18:30,QUEENS,11369,40.759922,-73.859276,"(40.759922, -73.859276)",111 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447736,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,13:30,,,40.88757,-73.90627,"(40.88757, -73.90627)",WEST 238 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448189,Sedan,,,, +08/14/2021,16:58,,,40.70725,-73.958466,"(40.70725, -73.958466)",DIVISION AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448131,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,15:10,STATEN ISLAND,10301,40.61242,-74.09936,"(40.61242, -74.09936)",CLOVE ROAD,TIOGA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448371,MINI BUS,Sedan,,, +08/13/2021,21:00,BROOKLYN,11220,40.647903,-74.007416,"(40.647903, -74.007416)",45 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448410,Pick-up Truck,PK,,, +08/16/2021,17:38,BRONX,10456,,,,EAST 163 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447757,Sedan,Sedan,,, +08/16/2021,23:50,,,40.66336,-73.95975,"(40.66336, -73.95975)",EMPIRE BOULEVARD,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4447693,Sedan,Sedan,,, +08/16/2021,12:30,,,40.708637,-73.90412,"(40.708637, -73.90412)",FOREST AVENUE,LINDEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448320,Sedan,Box Truck,,, +08/16/2021,9:54,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448094,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,22:30,MANHATTAN,10027,40.809086,-73.94859,"(40.809086, -73.94859)",,,163 WEST 125 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448119,Bike,Sedan,,, +08/16/2021,2:00,BRONX,10457,40.844955,-73.89706,"(40.844955, -73.89706)",,,4143 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448139,Sedan,,,, +08/16/2021,16:46,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447719,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/02/2021,22:30,QUEENS,11433,40.70293,-73.78518,"(40.70293, -73.78518)",172 STREET,104 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474112,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,9:35,,,40.7002206,-73.9863892,"(40.7002206, -73.9863892)",JAY STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468831,Bus,,,, +11/02/2021,6:02,,,40.833965,-73.8629,"(40.833965, -73.8629)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473265,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,0:00,,,40.7816933,-73.8405039,"(40.7816933, -73.8405039)",20 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467575,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,8:10,BROOKLYN,11234,40.587609,-73.8989061,"(40.587609, -73.8989061)",,,3260 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4470598,Pick-up Truck,,,, +10/19/2021,8:40,,,40.7165076,-73.9839205,"(40.7165076, -73.9839205)",WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469577,Sedan,Dump,,, +11/02/2021,16:30,,,40.800507,-73.96798,"(40.800507, -73.96798)",BROADWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473537,Station Wagon/Sport Utility Vehicle,PK,,, +10/19/2021,18:16,QUEENS,11004,40.7415864,-73.7161116,"(40.7415864, -73.7161116)",,,253-08 81 AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4468966,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/21/2021,8:30,,,40.5777434,-73.9560638,"(40.5777434, -73.9560638)",BRIGHTON 14 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469481,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,22:28,BROOKLYN,11236,40.6375042,-73.9141748,"(40.6375042, -73.9141748)",EAST 81 STREET,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467097,Sedan,Sedan,,, +10/11/2021,0:02,BROOKLYN,11216,40.6770266,-73.952678,"(40.6770266, -73.952678)",DEAN STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466784,Sedan,,,, +10/24/2021,20:00,,,40.7779566,-73.921995,"(40.7779566, -73.921995)",19 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470685,Sedan,,,, +10/22/2021,9:20,,,40.7379605,-73.9358768,"(40.7379605, -73.9358768)",31 PLACE,BORDEN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4470467,Motorcycle,Sedan,,, +10/12/2021,14:31,BRONX,10453,40.8574841,-73.9096686,"(40.8574841, -73.9096686)",UNIVERSITY AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4467399,Sedan,Van,,, +10/16/2021,22:50,QUEENS,11691,40.6048471,-73.7576755,"(40.6048471, -73.7576755)",,,11-22 MCBRIDE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469331,Motorcycle,Motorcycle,,, +10/13/2021,10:25,MANHATTAN,10013,40.7166421,-74.0004734,"(40.7166421, -74.0004734)",,,125 WHITE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,16:40,BROOKLYN,11211,40.71212,-73.94401,"(40.71212, -73.94401)",,,281 GRAHAM AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4473462,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/11/2021,16:25,BROOKLYN,11230,40.6265698,-73.9709207,"(40.6265698, -73.9709207)",AVENUE I,OCEAN PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467045,Sedan,Bike,,, +10/18/2021,1:21,BROOKLYN,11249,40.7194398,-73.9633851,"(40.7194398, -73.9633851)",,,12 NORTH 5 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468337,Sedan,Sedan,,, +10/13/2021,6:15,,,40.692317,-73.8826776,"(40.692317, -73.8826776)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4467984,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,13:22,MANHATTAN,10018,40.7534749,-73.9925287,"(40.7534749, -73.9925287)",w 36th street,8th ave,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469015,Station Wagon/Sport Utility Vehicle,Bike,,, +10/16/2021,15:35,BRONX,10459,40.8215981,-73.8978629,"(40.8215981, -73.8978629)",ROGERS PLACE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468298,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,16:00,BROOKLYN,11201,40.696197,-73.9887629,"(40.696197, -73.9887629)",ADAMS STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467543,Sedan,Sedan,Sedan,, +10/18/2021,0:50,,,40.8559197,-73.9171897,"(40.8559197, -73.9171897)",CEDAR AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468352,Sedan,,,, +10/21/2021,0:15,,,40.6879623,-73.9419322,"(40.6879623, -73.9419322)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470369,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,7:40,QUEENS,11433,40.6925273,-73.7909536,"(40.6925273, -73.7909536)",160 STREET,110 AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4469166,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck +10/20/2021,15:04,,,40.8361093,-73.9223713,"(40.8361093, -73.9223713)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4469530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,17:30,,,40.6289877,-74.13666,"(40.6289877, -74.13666)",,,158 DECKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467593,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,13:48,MANHATTAN,10035,40.80087,-73.94098,"(40.80087, -73.94098)",,,120 EAST 119 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518685,Sedan,Pick-up Truck,,, +10/14/2021,8:15,BROOKLYN,11219,40.6436048,-73.9942418,"(40.6436048, -73.9942418)",NEW UTRECHT AVENUE,41 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467773,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,18:35,MANHATTAN,10011,40.7416425,-73.9974342,"(40.7416425, -73.9974342)",WEST 19 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4470827,Refrigerated Van,Sedan,,, +10/24/2021,3:30,QUEENS,11423,40.7154563,-73.7617303,"(40.7154563, -73.7617303)",,,90-23 198 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470575,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/14/2021,14:40,MANHATTAN,10035,40.799255,-73.9390504,"(40.799255, -73.9390504)",EAST 118 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468725,Sedan,Sedan,Pick-up Truck,, +10/18/2021,22:21,,,40.6701245,-73.9552712,"(40.6701245, -73.9552712)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4470354,Sedan,Sedan,Sedan,, +10/16/2021,16:00,,,40.6660187,-73.8963168,"(40.6660187, -73.8963168)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468168,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,19:45,QUEENS,11370,40.7628577,-73.888589,"(40.7628577, -73.888589)",25 AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468896,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,16:00,BROOKLYN,11226,40.655593,-73.9471574,"(40.655593, -73.9471574)",NEW YORK AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467822,Sedan,Ambulance,,, +11/02/2021,13:35,MANHATTAN,10024,40.79273,-73.9771,"(40.79273, -73.9771)",RIVERSIDE DRIVE,WEST 91 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4473412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/12/2021,21:45,MANHATTAN,10036,40.755207,-73.9853842,"(40.755207, -73.9853842)",,,130 WEST 42 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466785,Sedan,Sedan,,, +10/24/2021,15:18,MANHATTAN,10035,40.8079622,-73.9377838,"(40.8079622, -73.9377838)",,,61 EAST 129 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,15:09,QUEENS,11373,40.7370168,-73.8724269,"(40.7370168, -73.8724269)",,,90-19 55 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469005,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,21:21,BROOKLYN,11229,40.6082728,-73.9436294,"(40.6082728, -73.9436294)",,,3118 NOSTRAND AVENUE,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469975,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/20/2021,10:57,,,40.6781158,-73.9217116,"(40.6781158, -73.9217116)",HERKIMER STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470384,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,21:24,QUEENS,11434,40.6561603,-73.7673526,"(40.6561603, -73.7673526)",BREWER BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4469258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/04/2021,22:35,,,40.8157322,-73.94542,"(40.8157322, -73.94542)",MACOMBS DAM BRIDGE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4454158,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,23:29,,,40.8278228,-73.8857955,"(40.8278228, -73.8857955)",SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466697,Tractor Truck Diesel,Sedan,,, +10/21/2021,23:30,QUEENS,11435,40.7037702,-73.8052116,"(40.7037702, -73.8052116)",150 STREET,90 AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4469835,Sedan,,,, +10/14/2021,8:30,,,40.6040288,-73.952294,"(40.6040288, -73.952294)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467092,Sedan,,,, +10/17/2021,2:15,,,40.700105,-73.9472483,"(40.700105, -73.9472483)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467852,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,21:12,,,40.7553303,-73.9911785,"(40.7553303, -73.9911785)",WEST 39 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4470867,Sedan,,,, +10/19/2021,19:00,MANHATTAN,10075,40.7728636,-73.9577091,"(40.7728636, -73.9577091)",,,205 EAST 77 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468914,Sedan,,,, +10/22/2021,15:00,QUEENS,11414,40.6596829,-73.8402985,"(40.6596829, -73.8402985)",,,158-40 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470435,Sedan,Sedan,,, +08/17/2021,3:40,,,,,,LINDEN BOULEVARD,VAN SIDERIN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4447788,Sedan,Sedan,Sedan,, +10/18/2021,15:00,BROOKLYN,11230,40.6306325,-73.975686,"(40.6306325, -73.975686)",,,117 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468859,Sedan,Sedan,,, +10/20/2021,19:30,STATEN ISLAND,10312,40.5419939,-74.1616908,"(40.5419939, -74.1616908)",RIDGECREST AVENUE,OAKDALE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469938,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,3:06,,,40.670277,-73.92542,"(40.670277, -73.92542)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519608,Sedan,Sedan,,, +10/20/2021,10:38,BRONX,10475,40.8869777,-73.8252966,"(40.8869777, -73.8252966)",BOSTON ROAD,HEATHCOTE AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4469199,Concrete Mixer,Sedan,,, +09/29/2021,11:00,,,40.7215866,-73.9745136,"(40.7215866, -73.9745136)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4462490,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,9:57,,,40.5994981,-74.1657062,"(40.5994981, -74.1657062)",,,50 GARY PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470064,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,22:55,,,40.7202548,-74.0070898,"(40.7202548, -74.0070898)",BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4468431,Sedan,Sedan,,, +10/13/2021,22:30,,,40.7673257,-73.9298558,"(40.7673257, -73.9298558)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470140,Sedan,Sedan,,, +10/16/2021,19:13,,,40.7680332,-73.9958483,"(40.7680332, -73.9958483)",12 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467741,Station Wagon/Sport Utility Vehicle,Bike,,, +10/19/2021,8:00,BROOKLYN,11208,40.6630685,-73.8692135,"(40.6630685, -73.8692135)",,,700 FOUNTAIN AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469243,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/20/2021,8:00,MANHATTAN,10035,40.8038293,-73.942102,"(40.8038293, -73.942102)",EAST 122 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469126,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,0:14,QUEENS,11377,40.7426091,-73.8937653,"(40.7426091, -73.8937653)",WOODSIDE AVENUE,71 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468956,Bike,,,, +10/21/2021,14:00,BROOKLYN,11211,40.7105932,-73.9547354,"(40.7105932, -73.9547354)",SOUTH 2 STREET,BORINQUEN PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469649,Sedan,Box Truck,,, +10/13/2021,9:30,BROOKLYN,11236,40.6383544,-73.9066621,"(40.6383544, -73.9066621)",,,942 EAST 88 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469446,Sedan,,,, +10/22/2021,14:58,QUEENS,11414,40.6517812,-73.8274658,"(40.6517812, -73.8274658)",164 ROAD,104 STREET,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4470542,Bike,Sedan,,, +10/13/2021,10:00,BROOKLYN,11206,40.6982205,-73.94395,"(40.6982205, -73.94395)",THROOP AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,Unspecified,Unspecified,Unspecified,4468931,Sedan,Sedan,Bus,Bus,Sedan +10/22/2021,21:50,,,40.6349473,-73.932499,"(40.6349473, -73.932499)",GLENWOOD ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470275,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,18:08,BRONX,10473,40.821441,-73.8517499,"(40.821441, -73.8517499)",OLMSTEAD AVENUE,HOMER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467489,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,8:30,BRONX,10452,40.840292,-73.9143504,"(40.840292, -73.9143504)",EAST 171 STREET,WYTHE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468249,Sedan,,,, +10/22/2021,11:49,MANHATTAN,10013,40.7175995,-73.9983936,"(40.7175995, -73.9983936)",,,113 MULBERRY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470243,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,8:38,,,40.8510903,-73.8482138,"(40.8510903, -73.8482138)",MORRIS PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469869,Ambulance,Sedan,,, +10/16/2021,17:50,QUEENS,11373,40.7343762,-73.8734167,"(40.7343762, -73.8734167)",QUEENS BOULEVARD,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468021,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,19:00,QUEENS,11372,40.750379,-73.8729059,"(40.750379, -73.8729059)",,,37-11 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,11:15,BRONX,10457,40.847028,-73.8980624,"(40.847028, -73.8980624)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467357,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,20:00,BRONX,10473,40.8254564,-73.8495297,"(40.8254564, -73.8495297)",CASTLE HILL AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468117,Sedan,,,, +10/22/2021,16:00,MANHATTAN,10003,40.7370616,-73.9926284,"(40.7370616, -73.9926284)",,,79 5 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470154,Box Truck,Sedan,,, +10/14/2021,15:05,BRONX,10475,40.8827003,-73.8244349,"(40.8827003, -73.8244349)",,,3327 CONNER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467225,Station Wagon/Sport Utility Vehicle,TRACTOR,,, +10/21/2021,8:00,BROOKLYN,11234,40.6208652,-73.9349879,"(40.6208652, -73.9349879)",FLATBUSH AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469518,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,12:00,BRONX,10455,40.8164085,-73.9157251,"(40.8164085, -73.9157251)",BERGEN AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467718,E-Bike,,,, +10/15/2021,15:50,QUEENS,11102,40.7695247,-73.9352255,"(40.7695247, -73.9352255)",VERNON BOULEVARD,31 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468232,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,16:30,,,40.7799246,-73.9806751,"(40.7799246, -73.9806751)",WEST 74 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468881,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,12:00,QUEENS,11415,40.7059842,-73.8274891,"(40.7059842, -73.8274891)",,,85-47 ABINGDON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470462,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,14:00,QUEENS,11372,40.7491627,-73.889904,"(40.7491627, -73.889904)",37 AVENUE,76 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469965,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/23/2021,20:28,QUEENS,11373,40.7463477,-73.8723835,"(40.7463477, -73.8723835)",CASE STREET,LAMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470403,,,,, +10/13/2021,16:00,BRONX,10460,40.8353741,-73.8845965,"(40.8353741, -73.8845965)",,,1690 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466860,Sedan,,,, +10/21/2021,16:27,BROOKLYN,11230,40.6252821,-73.9604671,"(40.6252821, -73.9604671)",AVENUE J,EAST 16 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470167,Station Wagon/Sport Utility Vehicle,Bike,,, +10/23/2021,10:00,BROOKLYN,11233,40.6807671,-73.9067208,"(40.6807671, -73.9067208)",BROADWAY,MACDOUGAL STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470196,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,12:55,,,40.7360047,-73.9936167,"(40.7360047, -73.9936167)",WEST 14 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467928,E-Bike,E-Scooter,,, +10/15/2021,20:30,,,40.8757563,-73.8357185,"(40.8757563, -73.8357185)",NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,19:57,BROOKLYN,11229,40.60739,-73.943214,"(40.60739, -73.943214)",NOSTRAND AVENUE,AVENUE R,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4473481,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +10/17/2021,15:45,QUEENS,11434,40.6640184,-73.7685904,"(40.6640184, -73.7685904)",BREWER BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468077,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,11:30,STATEN ISLAND,10307,40.5167629,-74.2425751,"(40.5167629, -74.2425751)",,,75 ELLIS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467130,Lift Boom,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,7:15,BROOKLYN,11215,40.6657507,-73.9792267,"(40.6657507, -73.9792267)",8 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4468688,Sedan,Beverage Truck,,, +10/22/2021,23:10,,,40.7414135,-73.9833603,"(40.7414135, -73.9833603)",LEXINGTON AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470308,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/13/2021,5:30,,,40.5824479,-73.9559203,"(40.5824479, -73.9559203)",BRIGHTON 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466679,Sedan,Sedan,,, +10/18/2021,20:25,,,40.8823937,-73.8362192,"(40.8823937, -73.8362192)",BOSTON ROAD,BOLLER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468799,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,12:05,,,40.6048025,-73.9667959,"(40.6048025, -73.9667959)",AVENUE R,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4467389,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/22/2021,16:53,BROOKLYN,11212,40.6586744,-73.9001884,"(40.6586744, -73.9001884)",JUNIUS STREET,NEW LOTS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470186,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,5:15,,,40.7250834,-73.9953279,"(40.7250834, -73.9953279)",EAST HOUSTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470211,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,6:14,BRONX,10456,40.8345335,-73.9042077,"(40.8345335, -73.9042077)",,,3663 3 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4468666,Sedan,Taxi,Sedan,Sedan, +10/19/2021,11:00,,,40.5828488,-73.9745687,"(40.5828488, -73.9745687)",SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4469194,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/12/2021,23:35,,,40.716646,-73.9958083,"(40.716646, -73.9958083)",BOWERY,CANAL STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466907,Sedan,Sedan,,, +10/20/2021,8:14,,,40.7583179,-73.9106838,"(40.7583179, -73.9106838)",48 STREET,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4469115,Sedan,Taxi,,, +10/21/2021,17:30,,,40.862832,-73.8980382,"(40.862832, -73.8980382)",EAST 190 STREET,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469865,Sedan,Sedan,,, +10/13/2021,17:52,MANHATTAN,10002,40.7193016,-73.9754606,"(40.7193016, -73.9754606)",,,500 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467608,Sedan,Sedan,,, +10/22/2021,7:31,BRONX,10467,40.8798233,-73.8672671,"(40.8798233, -73.8672671)",OLINVILLE AVENUE,EAST 213 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469771,Bus,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,16:30,,,40.878545,-73.8338037,"(40.878545, -73.8338037)",NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4466599,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/15/2021,17:55,,,40.6967411,-73.7629123,"(40.6967411, -73.7629123)",114 DRIVE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468181,Sedan,Pick-up Truck,,, +10/16/2021,14:12,BRONX,10468,40.8805075,-73.8859509,"(40.8805075, -73.8859509)",PAUL AVENUE,WEST MOSHOLU PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4468396,Motorcycle,Sedan,Sedan,, +10/19/2021,14:51,,,40.8833828,-73.9023336,"(40.8833828, -73.9023336)",Van courtlandt park south,Putnam avenue west,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469732,Sedan,,,, +10/15/2021,19:18,BRONX,10451,40.8129629,-73.9242618,"(40.8129629, -73.9242618)",,,2635 3 AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4468681,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,3:22,,,40.8606413,-73.9307696,"(40.8606413, -73.9307696)",BROADWAY,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4470856,Sedan,Sedan,,, +10/01/2021,10:47,BROOKLYN,11204,40.619132,-73.9901807,"(40.619132, -73.9901807)",65 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4462914,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +10/20/2021,22:56,MANHATTAN,10010,40.7389026,-73.9873015,"(40.7389026, -73.9873015)",EAST 21 STREET,PARK AVENUE SOUTH,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4470336,Sedan,Sedan,,, +08/30/2021,17:49,,,40.7010761,-73.9404204,"(40.7010761, -73.9404204)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470228,Sedan,TRACTOR TR,,, +10/24/2021,16:18,QUEENS,11102,40.7696111,-73.9224489,"(40.7696111, -73.9224489)",,,27-15 NEWTOWN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470682,Sedan,,,, +10/12/2021,9:10,,,40.7452528,-73.8700626,"(40.7452528, -73.8700626)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4466656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,5:40,BROOKLYN,11208,40.6802447,-73.8766021,"(40.6802447, -73.8766021)",ATLANTIC AVENUE,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468163,Sedan,Tractor Truck Gasoline,,, +10/16/2021,0:59,MANHATTAN,10036,40.7603926,-73.999086,"(40.7603926, -73.999086)",,,601 WEST 41 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469133,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,14:00,BROOKLYN,11226,40.6399379,-73.9546997,"(40.6399379, -73.9546997)",,,1247 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467681,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,10:53,,,40.6956168,-73.9405551,"(40.6956168, -73.9405551)",VERNON AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468045,Sedan,Sedan,,, +10/24/2021,15:15,BROOKLYN,11217,40.6852929,-73.9761991,"(40.6852929, -73.9761991)",HANSON PLACE,FORT GREENE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470588,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,12:15,,,40.6082069,-74.1628381,"(40.6082069, -74.1628381)",,,1650 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,12:00,,,40.6974341,-73.931224,"(40.6974341, -73.931224)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468320,Sedan,,,, +10/23/2021,14:15,,,40.6994563,-73.9396898,"(40.6994563, -73.9396898)",BROADWAY,,,1,0,0,0,1,0,0,0,Outside Car Distraction,Unspecified,,,,4470499,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,17:08,STATEN ISLAND,10312,40.5469574,-74.1812842,"(40.5469574, -74.1812842)",ARDEN AVENUE,DRUMGOOLE ROAD WEST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469790,Sedan,,,, +10/15/2021,21:32,MANHATTAN,10002,40.7161116,-73.9953651,"(40.7161116, -73.9953651)",,,133 CANAL STREET,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4468313,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/17/2021,8:56,BROOKLYN,11234,40.6082027,-73.9207095,"(40.6082027, -73.9207095)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Driver Inattention/Distraction,,,4467872,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/12/2021,13:47,,,40.5793697,-73.9597455,"(40.5793697, -73.9597455)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467782,Sedan,Sedan,,, +11/02/2021,5:30,,,40.67798,-73.872116,"(40.67798, -73.872116)",CONDUIT BOULEVARD,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473578,Sedan,Sedan,,, +08/17/2021,23:30,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448106,Sedan,Sedan,,, +10/21/2021,11:40,QUEENS,11102,40.7712169,-73.9192157,"(40.7712169, -73.9192157)",,,27-40 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4470027,Sedan,,,, +10/13/2021,8:00,BROOKLYN,11206,40.7074419,-73.9352622,"(40.7074419, -73.9352622)",,,333 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466848,Refrigerated Van,,,, +10/21/2021,17:30,MANHATTAN,10128,40.7872263,-73.9541633,"(40.7872263, -73.9541633)",EAST 96 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4469635,Station Wagon/Sport Utility Vehicle,Bus,,, +10/29/2021,18:30,QUEENS,11435,40.71057,-73.815735,"(40.71057, -73.815735)",,,141-40 84 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474026,Sedan,,,, +10/16/2021,20:40,BROOKLYN,11216,40.6768082,-73.9557498,"(40.6768082, -73.9557498)",FRANKLIN AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467960,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,19:35,MANHATTAN,10035,40.8027515,-73.933575,"(40.8027515, -73.933575)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4470668,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,18:30,QUEENS,11432,40.7094505,-73.7876467,"(40.7094505, -73.7876467)",,,172-20 90 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467212,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,11:54,,,40.6811178,-73.9644216,"(40.6811178, -73.9644216)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4466774,Sedan,,,, +10/24/2021,21:50,,,40.7655065,-73.804226,"(40.7655065, -73.804226)",161 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470758,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,23:00,BRONX,10457,40.8451887,-73.9007254,"(40.8451887, -73.9007254)",EAST 175 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470218,Sedan,Sedan,,, +10/18/2021,6:30,,,40.6514132,-73.9721352,"(40.6514132, -73.9721352)",PARK CIRCLE,PROSPECT PARK SOUTHWEST,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468500,Sedan,Sedan,,, +10/22/2021,19:00,QUEENS,11367,40.7285596,-73.8285226,"(40.7285596, -73.8285226)",137 STREET,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470040,Sedan,,,, +10/10/2021,15:15,BRONX,10458,40.8653906,-73.8868337,"(40.8653906, -73.8868337)",WEBSTER AVENUE,EAST 197 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4468814,Sedan,,,, +10/15/2021,18:09,BROOKLYN,11207,40.681091,-73.9033745,"(40.681091, -73.9033745)",BUSHWICK AVENUE,STEWART STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4469226,Sedan,Sedan,,, +10/23/2021,1:50,MANHATTAN,10017,40.7545457,-73.973377,"(40.7545457, -73.973377)",,,135 EAST 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469943,Sedan,Sedan,,, +10/14/2021,6:35,BROOKLYN,11226,40.6433316,-73.9597285,"(40.6433316, -73.9597285)",CORTELYOU ROAD,OCEAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466897,,,,, +10/03/2021,13:38,BROOKLYN,11224,40.5792123,-73.9762585,"(40.5792123, -73.9762585)",WEST 8 STREET,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470096,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,22:20,BROOKLYN,11213,40.6707344,-73.9337245,"(40.6707344, -73.9337245)",SCHENECTADY AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469253,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/20/2021,20:30,,,40.7088619,-74.0006182,"(40.7088619, -74.0006182)",FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4459695,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,11:50,,,40.6094623,-73.974184,"(40.6094623, -73.974184)",65 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469094,Sedan,Tractor Truck Gasoline,,, +10/25/2021,16:55,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474202,Sedan,,,, +10/16/2021,21:20,BROOKLYN,11219,40.6322931,-73.98932,"(40.6322931, -73.98932)",,,1448 50 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468463,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/18/2021,8:28,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468983,Sedan,Sedan,,, +10/16/2021,15:00,STATEN ISLAND,10301,40.6392555,-74.0817883,"(40.6392555, -74.0817883)",WINTER AVENUE,WESTERVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467889,Sedan,,,, +10/15/2021,9:30,,,40.8127513,-73.9455695,"(40.8127513, -73.9455695)",WEST 131 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4467375,Sedan,Bike,,, +10/19/2021,7:14,QUEENS,11434,40.6881809,-73.7886775,"(40.6881809, -73.7886775)",LINDEN BOULEVARD,159 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4468842,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +10/16/2021,1:53,,,40.7291123,-74.0106725,"(40.7291123, -74.0106725)",WEST STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4468649,Sedan,,,, +08/17/2021,13:10,BROOKLYN,11214,,,,BAY 17 STREET,BATH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448253,Sedan,,,, +10/21/2021,12:10,BRONX,10460,40.8491265,-73.8834139,"(40.8491265, -73.8834139)",,,2241 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470620,Sedan,,,, +10/12/2021,7:24,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466944,Sedan,Sedan,,, +10/19/2021,16:00,QUEENS,11416,40.6808791,-73.8579068,"(40.6808791, -73.8579068)",81 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469066,Sedan,,,, +10/21/2021,11:56,QUEENS,11433,40.6915844,-73.7931815,"(40.6915844, -73.7931815)",110 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469513,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,19:00,BROOKLYN,11233,40.6734648,-73.9160504,"(40.6734648, -73.9160504)",,,1545 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467199,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,1:05,BRONX,10457,40.8415989,-73.9011174,"(40.8415989, -73.9011174)",EAST 173 STREET,WASHINGTON AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4467013,Motorscoot,Sedan,,, +10/20/2021,21:50,QUEENS,11354,40.7730953,-73.8455249,"(40.7730953, -73.8455249)",28 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4469359,Station Wagon/Sport Utility Vehicle,Tanker,,, +10/14/2021,23:00,BROOKLYN,11216,40.6810463,-73.9434489,"(40.6810463, -73.9434489)",MACDONOUGH STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468934,Sedan,,,, +10/23/2021,14:45,MANHATTAN,10022,40.7599867,-73.9752132,"(40.7599867, -73.9752132)",,,10 EAST 53 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470059,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,12:26,MANHATTAN,10012,40.7242353,-73.9977848,"(40.7242353, -73.9977848)",BROADWAY,PRINCE STREET,,3,0,2,0,0,0,1,0,Unspecified,,,,,4469545,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,7:19,MANHATTAN,10024,40.783844,-73.979996,"(40.783844, -73.979996)",WEST 79 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4474156,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,1:58,MANHATTAN,10065,40.762106,-73.9601368,"(40.762106, -73.9601368)",EAST 63 STREET,1 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4469646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/15/2021,8:09,BRONX,10475,40.8700151,-73.8324279,"(40.8700151, -73.8324279)",BAYCHESTER AVENUE,ALDRICH STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4467394,Bus,Sedan,,, +10/14/2021,10:48,,,40.7425672,-73.7707788,"(40.7425672, -73.7707788)",CLEARVIEW EXPRESSWAY,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467607,Sedan,Tractor Truck Diesel,,, +10/13/2021,15:00,QUEENS,11377,40.7521581,-73.89994,"(40.7521581, -73.89994)",62 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466817,Sedan,Sedan,,, +10/12/2021,0:25,,,40.6775577,-73.8036477,"(40.6775577, -73.8036477)",VANWYCK EXPRESSWAY,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4468598,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,20:00,BROOKLYN,11222,40.7205754,-73.9362074,"(40.7205754, -73.9362074)",VANDERVORT AVENUE,RICHARDSON STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4468342,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/24/2021,4:29,,,40.7452528,-73.8700626,"(40.7452528, -73.8700626)",Meridian Road,College Point Boulevard,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4470494,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,4:37,BRONX,10469,40.883535,-73.8553774,"(40.883535, -73.8553774)",,,910 EAST 222 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4468304,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/19/2021,9:20,,,40.6387858,-73.9453727,"(40.6387858, -73.9453727)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4468720,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,13:50,MANHATTAN,10002,40.71612,-73.98365,"(40.71612, -73.98365)",BROOME STREET,PITT STREET,,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4473826,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,20:09,,,40.7939517,-73.974163,"(40.7939517, -73.974163)",WEST END AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467343,Sedan,,,, +10/20/2021,18:00,QUEENS,11102,40.7744491,-73.9184536,"(40.7744491, -73.9184536)",26 STREET,24 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470766,Sedan,Bike,,, +10/16/2021,12:06,BROOKLYN,11221,40.6979187,-73.9208228,"(40.6979187, -73.9208228)",HARMAN STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468331,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,18:00,,,40.5752608,-73.9688912,"(40.5752608, -73.9688912)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468609,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/23/2021,15:58,QUEENS,11106,40.7676535,-73.9388653,"(40.7676535, -73.9388653)",,,32-50 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470780,Van,,,, +08/17/2021,14:13,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448432,Box Truck,Taxi,,, +10/12/2021,19:50,,,40.8557939,-73.917701,"(40.8557939, -73.917701)",MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,8:00,BRONX,10451,40.8187955,-73.9221241,"(40.8187955, -73.9221241)",EAST 151 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468988,Sedan,Sedan,,, +10/08/2021,22:38,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4467227,Sedan,Carry All,,, +10/14/2021,13:35,,,40.7724202,-73.9787241,"(40.7724202, -73.9787241)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468515,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,8:00,,,40.6833708,-73.8552767,"(40.6833708, -73.8552767)",85 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469211,Sedan,,,, +10/20/2021,10:35,QUEENS,11693,40.5906129,-73.8109341,"(40.5906129, -73.8109341)",,,84-18 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470452,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,8:19,,,40.8170086,-73.9594934,"(40.8170086, -73.9594934)",WEST 125 STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4468003,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/02/2021,6:30,BRONX,10475,40.878654,-73.824066,"(40.878654, -73.824066)",,,120 CASALS PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4473966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/18/2021,13:49,BRONX,10459,40.8216405,-73.8930203,"(40.8216405, -73.8930203)",,,975 SIMPSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468767,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,0:05,,,40.6918538,-73.8109872,"(40.6918538, -73.8109872)",VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468971,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,14:11,,,40.7575232,-73.8291338,"(40.7575232, -73.8291338)",MAIN STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4470763,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/15/2021,18:00,BROOKLYN,11208,40.6813546,-73.8802127,"(40.6813546, -73.8802127)",HALE AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468634,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,20:00,QUEENS,11372,40.7496522,-73.8852401,"(40.7496522, -73.8852401)",81 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467739,Sedan,,,, +10/14/2021,4:00,QUEENS,11379,40.7071992,-73.8774287,"(40.7071992, -73.8774287)",73 PLACE,70 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4466961,Sedan,,,, +10/12/2021,15:50,BRONX,10467,40.8736784,-73.8795143,"(40.8736784, -73.8795143)",,,3083 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466733,Sedan,,,, +10/21/2021,13:10,,,40.8373235,-73.9198306,"(40.8373235, -73.9198306)",WASHINGTON BRIDGE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4469542,Sedan,Sedan,,, +10/14/2021,19:00,BROOKLYN,11237,40.7064452,-73.9268252,"(40.7064452, -73.9268252)",GRATTAN STREET,VARICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467221,Sedan,Sedan,,, +10/21/2021,18:35,,,40.5654047,-74.1834038,"(40.5654047, -74.1834038)",ARTHUR KILL ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4469601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,15:20,,,40.6732722,-73.9473957,"(40.6732722, -73.9473957)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468827,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,7:45,BROOKLYN,11212,40.6713108,-73.9130858,"(40.6713108, -73.9130858)",EAST NEW YORK AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Traffic Control Disregarded,,,,4467032,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,19:00,BROOKLYN,11209,40.6215052,-74.0279983,"(40.6215052, -74.0279983)",,,436 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468127,Station Wagon/Sport Utility Vehicle,Bus,,, +10/15/2021,17:25,BRONX,10457,40.8531409,-73.9016967,"(40.8531409, -73.9016967)",EAST 180 STREET,ANTHONY AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4468472,Sedan,,,, +10/22/2021,22:30,BROOKLYN,11219,40.6294253,-73.9979393,"(40.6294253, -73.9979393)",59 STREET,13 AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4470614,Sedan,Moped,Sedan,, +10/22/2021,12:01,BROOKLYN,11218,40.6330437,-73.9786496,"(40.6330437, -73.9786496)",DAHILL ROAD,AVENUE F,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470602,Sedan,E-Bike,,, +10/15/2021,6:30,QUEENS,11433,40.7054541,-73.7814778,"(40.7054541, -73.7814778)",178 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4467248,Sedan,,,, +10/22/2021,21:50,MANHATTAN,10001,40.7538318,-74.0071393,"(40.7538318, -74.0071393)",WEST 29 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470830,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/17/2021,22:00,BROOKLYN,11210,40.619186,-73.9493,"(40.619186, -73.9493)",AVENUE M,EAST 26 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4448454,Sedan,Sedan,,, +10/24/2021,0:30,,,40.6685054,-73.8692449,"(40.6685054, -73.8692449)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470488,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,19:00,QUEENS,11106,40.7624648,-73.9327632,"(40.7624648, -73.9327632)",,,21-25 34 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467892,Sedan,Sedan,,, +10/15/2021,2:30,MANHATTAN,10001,40.7557807,-74.0019852,"(40.7557807, -74.0019852)",WEST 34 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467446,Box Truck,Pick-up Truck,,, +10/13/2021,22:10,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",VERNON BOULEVARD,QUEENS BRIDGE PARK,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469022,Motorcycle,Sedan,,, +10/15/2021,15:55,,,40.5930286,-73.7735821,"(40.5930286, -73.7735821)",EDGEMERE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468418,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,18:40,BRONX,10451,40.826909,-73.9310215,"(40.826909, -73.9310215)",EAST 157 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467524,Sedan,Sedan,,, +10/22/2021,22:15,QUEENS,11379,40.7163954,-73.886661,"(40.7163954, -73.886661)",JUNIPER BOULEVARD SOUTH,69 PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469995,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,15:45,QUEENS,11694,40.5800646,-73.842357,"(40.5800646, -73.842357)",NEWPORT AVENUE,BEACH 121 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468403,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,7:00,STATEN ISLAND,10301,40.629976,-74.1033282,"(40.629976, -74.1033282)",,,557 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468782,Sedan,,,, +10/16/2021,4:52,BROOKLYN,11201,40.6995995,-73.9876978,"(40.6995995, -73.9876978)",,,175 PEARL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4468454,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,12:05,QUEENS,11419,40.6921293,-73.8348331,"(40.6921293, -73.8348331)",ATLANTIC AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467645,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,21:54,BRONX,10455,40.8148822,-73.9094325,"(40.8148822, -73.9094325)",,,603 PONTIAC PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468264,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,16:11,BROOKLYN,11207,40.6632221,-73.8936503,"(40.6632221, -73.8936503)",RIVERDALE AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469690,Pick-up Truck,Sedan,,, +10/17/2021,13:46,,,40.6828046,-73.8062211,"(40.6828046, -73.8062211)",VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468223,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,9:10,BROOKLYN,11207,40.6527684,-73.8862898,"(40.6527684, -73.8862898)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4467263,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,14:55,,,40.827152,-73.946205,"(40.827152, -73.946205)",WEST 148 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473504,Sedan,,,, +11/02/2021,14:50,BROOKLYN,11221,40.691555,-73.93677,"(40.691555, -73.93677)",LEWIS AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473710,Motorcycle,,,, +10/13/2021,15:25,QUEENS,11419,40.6863379,-73.8269171,"(40.6863379, -73.8269171)",,,103-35 116 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466876,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,17:30,,,40.7801485,-73.8469456,"(40.7801485, -73.8469456)",121 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4468103,Sedan,,,, +10/23/2021,16:35,MANHATTAN,10036,40.7572323,-73.9897922,"(40.7572323, -73.9897922)",WEST 42 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470868,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,1:00,QUEENS,11432,40.714561,-73.7919188,"(40.714561, -73.7919188)",,,171-13 MAYFIELD ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4468822,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,15:05,,,40.6917675,-73.9999135,"(40.6917675, -73.9999135)",ATLANTIC AVENUE,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469485,Sedan,,,, +10/14/2021,8:30,,,40.6040288,-73.952294,"(40.6040288, -73.952294)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467093,Sedan,,,, +10/16/2021,20:43,,,40.5833519,-73.9669182,"(40.5833519, -73.9669182)",OCEAN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4468606,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,1:29,BROOKLYN,11229,40.606045,-73.9505074,"(40.606045, -73.9505074)",,,1859 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467295,Sedan,,,, +10/14/2021,8:17,,,40.6067007,-74.0108222,"(40.6067007, -74.0108222)",BATH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467116,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,18:05,,,40.8954491,-73.8800114,"(40.8954491, -73.8800114)",JEROME AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467579,Tractor Truck Diesel,Pick-up Truck,,, +04/14/2022,23:58,QUEENS,11362,40.75576,-73.73939,"(40.75576, -73.73939)",61 AVENUE,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4519093,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/13/2021,16:15,QUEENS,11432,40.7128385,-73.7924882,"(40.7128385, -73.7924882)",,,170-15 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466829,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,9:00,BROOKLYN,11203,40.6495723,-73.9388628,"(40.6495723, -73.9388628)",SNYDER AVENUE,ALBANY AVENUE,,1,0,0,0,1,0,0,0,Glare,Unspecified,,,,4470268,Station Wagon/Sport Utility Vehicle,Bike,,, +10/23/2021,16:45,QUEENS,11101,40.7474493,-73.9414545,"(40.7474493, -73.9414545)",PURVES STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,20:55,QUEENS,11418,40.6999165,-73.8328041,"(40.6999165, -73.8328041)",,,86-06 117 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467694,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,15:20,QUEENS,11374,40.733433,-73.86418,"(40.733433, -73.86418)",,,61-35 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474004,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,12:20,BROOKLYN,11205,40.696674,-73.957535,"(40.696674, -73.957535)",SKILLMAN STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544985,Motorscooter,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,8:55,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAPLE AVENUE,MAIN STREET,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4473318,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,19:20,BROOKLYN,11207,40.6646,-73.89502,"(40.6646, -73.89502)",LIVONIA AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473584,Pick-up Truck,Sedan,,, +10/21/2021,21:20,QUEENS,11691,40.5988242,-73.7606817,"(40.5988242, -73.7606817)",GRASSMERE TERRACE,BEACH 25 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4469847,Sedan,,,, +10/17/2021,14:20,BROOKLYN,11205,40.689582,-73.9721373,"(40.689582, -73.9721373)",DE KALB AVENUE,CARLTON AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468116,Sedan,Bike,,, +10/16/2021,1:24,BROOKLYN,11225,40.6568514,-73.9568739,"(40.6568514, -73.9568739)",,,105 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468422,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,0:36,QUEENS,11413,40.6654783,-73.7487889,"(40.6654783, -73.7487889)",SOUTH CONDUIT AVENUE,EDGEWOOD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4470126,Sedan,,,, +10/14/2021,9:20,MANHATTAN,10009,40.7296115,-73.9731331,"(40.7296115, -73.9731331)",,,729 EAST 16 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,15:08,,,40.6625545,-73.9089197,"(40.6625545, -73.9089197)",LIVONIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469738,Firetruck,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,21:30,,,40.65505,-73.95631,"(40.65505, -73.95631)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519234,Sedan,,,, +10/19/2021,8:24,BRONX,10451,40.8180125,-73.9251851,"(40.8180125, -73.9251851)",EAST 149 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4468991,Sedan,E-Bike,,, +10/21/2021,11:00,MANHATTAN,10001,40.754584,-73.9991446,"(40.754584, -73.9991446)",WEST 34 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470815,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,9:30,BROOKLYN,11211,40.7181465,-73.9482455,"(40.7181465, -73.9482455)",,,388 LEONARD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468341,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,5:33,,,40.75327,-73.92803,"(40.75327, -73.92803)",35 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4474107,Sedan,Pick-up Truck,,, +10/20/2021,15:40,QUEENS,11420,40.679546,-73.8246972,"(40.679546, -73.8246972)",111 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469302,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,1:36,MANHATTAN,10033,40.8534802,-73.9351329,"(40.8534802, -73.9351329)",BENNETT AVENUE,WEST 186 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4468854,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +10/18/2021,22:35,BROOKLYN,11230,40.6117039,-73.9704518,"(40.6117039, -73.9704518)",AVENUE O,EAST 4 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469076,Sedan,,,, +10/16/2021,3:50,BROOKLYN,11210,40.6366269,-73.9422507,"(40.6366269, -73.9422507)",FARRAGUT ROAD,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4467826,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,4:00,QUEENS,11103,40.7648096,-73.9107647,"(40.7648096, -73.9107647)",,,25-79 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468648,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,19:00,BRONX,10456,40.8363929,-73.9158697,"(40.8363929, -73.9158697)",EAST 169 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468296,Sedan,,,, +10/12/2021,17:05,BROOKLYN,11220,40.6388782,-74.0060425,"(40.6388782, -74.0060425)",8 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467049,Box Truck,Convertible,,, +10/15/2021,14:10,BROOKLYN,11212,40.6708443,-73.9137374,"(40.6708443, -73.9137374)",,,1470 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467485,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,14:08,,,40.8463121,-73.9194607,"(40.8463121, -73.9194607)",NELSON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470690,Sedan,,,, +10/18/2021,11:39,BROOKLYN,11215,40.6680495,-73.9923609,"(40.6680495, -73.9923609)",,,155 14 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4468689,Ambulance,Sedan,,, +10/20/2021,8:12,MANHATTAN,10009,40.7235457,-73.9829103,"(40.7235457, -73.9829103)",,,233 EAST 4 STREET,2,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469371,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/15/2021,16:15,BROOKLYN,11232,40.6582291,-74.0003424,"(40.6582291, -74.0003424)",4 AVENUE,29 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467527,Station Wagon/Sport Utility Vehicle,Bike,,, +11/02/2021,15:00,QUEENS,11422,40.664745,-73.74003,"(40.664745, -73.74003)",BROOKVILLE BOULEVARD,141 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473402,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,20:45,BRONX,10460,40.8405923,-73.8663623,"(40.8405923, -73.8663623)",EAST TREMONT AVENUE,THIERIOT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4469386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/19/2021,13:00,MANHATTAN,10032,40.8366949,-73.9417402,"(40.8366949, -73.9417402)",,,550 WEST 162 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469203,Sedan,,,, +10/23/2021,1:30,BROOKLYN,11207,40.6569792,-73.8894182,"(40.6569792, -73.8894182)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470471,Sedan,Tractor Truck Diesel,,, +10/18/2021,17:25,MANHATTAN,10021,40.7697615,-73.9523628,"(40.7697615, -73.9523628)",,,435 EAST 76 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468591,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/15/2021,15:45,,,40.6718921,-73.8958679,"(40.6718921, -73.8958679)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468153,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:36,BRONX,10474,40.8187931,-73.8901279,"(40.8187931, -73.8901279)",,,1002 GARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470068,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,16:45,BRONX,10468,40.8672066,-73.895082,"(40.8672066, -73.895082)",,,2677 CRESTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467414,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +10/16/2021,0:05,BROOKLYN,11207,40.6864174,-73.9086888,"(40.6864174, -73.9086888)",COOPER STREET,EVERGREEN AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4469027,Bike,,,, +10/18/2021,7:00,BROOKLYN,11249,40.7053911,-73.9629207,"(40.7053911, -73.9629207)",,,121 WILSON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468443,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,13:00,BROOKLYN,11218,40.6318052,-73.9775533,"(40.6318052, -73.9775533)",,,910 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4467300,Sedan,Sedan,Sedan,, +10/14/2021,15:00,,,40.7401332,-73.8997488,"(40.7401332, -73.8997488)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467547,Sedan,Sedan,,, +10/22/2021,10:00,,,40.7501627,-73.9446859,"(40.7501627, -73.9446859)",43 AVENUE,22 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469958,Sedan,,,, +10/15/2021,6:44,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468356,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,16:55,BROOKLYN,11207,40.6781627,-73.8974769,"(40.6781627, -73.8974769)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4469239,Sedan,Sedan,,, +10/14/2021,18:00,QUEENS,11419,40.693593,-73.8297052,"(40.693593, -73.8297052)",117 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4467152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,17:08,,,40.832626,-73.925385,"(40.832626, -73.925385)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518760,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,17:00,QUEENS,11004,40.73782,-73.7070741,"(40.73782, -73.7070741)",,,261-09 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470045,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,11:30,QUEENS,11385,40.7025918,-73.8952032,"(40.7025918, -73.8952032)",FRESH POND ROAD,70 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4470394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:15,BROOKLYN,11204,40.6255728,-73.9812033,"(40.6255728, -73.9812033)",,,1864 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4469059,Sedan,Carry All,Station Wagon/Sport Utility Vehicle,, +10/15/2021,17:30,,,40.6837904,-73.8097661,"(40.6837904, -73.8097661)",111 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4468208,Sedan,Sedan,,, +10/25/2021,9:45,BROOKLYN,11226,40.6439614,-73.9489983,"(40.6439614, -73.9489983)",,,1720 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470863,Bus,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,8:30,,,40.6071903,-74.1624214,"(40.6071903, -74.1624214)",VICTORY BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4469829,Box Truck,,,, +08/16/2021,1:02,MANHATTAN,10040,40.864525,-73.92663,"(40.864525, -73.92663)",DYCKMAN STREET,VERMILYEA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448759,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,7:06,BRONX,10465,40.825626,-73.82651,"(40.825626, -73.82651)",CROSS BRONX EXPRESSWAY,SWINTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448761,Sedan,,,, +10/08/2021,17:35,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,1:00,BRONX,10467,40.8693283,-73.8702759,"(40.8693283, -73.8702759)",,,2972 BRONX PARK EAST,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,12:10,BRONX,10458,40.85819,-73.88435,"(40.85819, -73.88435)",EAST FORDHAM ROAD,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473989,Station Wagon/Sport Utility Vehicle,Convertible,,, +10/21/2021,6:50,,,40.78739,-73.938225,"(40.78739, -73.938225)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4473942,Sedan,Sedan,,, +10/16/2021,16:40,QUEENS,11101,40.7499891,-73.9491794,"(40.7499891, -73.9491794)",11 STREET,44 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4467745,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/07/2021,20:15,QUEENS,11413,40.665478,-73.748795,"(40.665478, -73.748795)",SOUTH CONDUIT AVENUE,EDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4465100,Sedan,Sedan,Sedan,, +10/18/2021,21:10,MANHATTAN,10034,40.8611306,-73.9239949,"(40.8611306, -73.9239949)",,,177 NAGLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468749,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,5:22,MANHATTAN,10035,40.7976786,-73.9372821,"(40.7976786, -73.9372821)",2 AVENUE,EAST 117 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4470738,Box Truck,Sedan,,, +10/23/2021,1:40,QUEENS,11372,40.7514934,-73.8874711,"(40.7514934, -73.8874711)",79 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4469971,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:55,QUEENS,11101,40.7516035,-73.9338317,"(40.7516035, -73.9338317)",NORTHERN BOULEVARD,31 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4469044,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/17/2021,5:15,QUEENS,11373,40.7327402,-73.8683575,"(40.7327402, -73.8683575)",LONG ISLAND EXPRESSWAY,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468025,Sedan,Sedan,,, +10/20/2021,15:00,MANHATTAN,10002,40.7181445,-73.9938277,"(40.7181445, -73.9938277)",CHRYSTIE STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470247,Pick-up Truck,Bike,,, +10/22/2021,16:30,QUEENS,11692,40.5926753,-73.7990796,"(40.5926753, -73.7990796)",BEACH CHANNEL DRIVE,BEACH 70 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469920,Sedan,Sedan,,, +10/05/2021,12:25,,,40.678723,-73.9529869,"(40.678723, -73.9529869)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467856,Sedan,Sedan,,, +10/11/2021,20:18,BROOKLYN,11233,40.6809775,-73.9365134,"(40.6809775, -73.9365134)",,,170 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468121,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,10:30,QUEENS,11354,40.7644985,-73.8335352,"(40.7644985, -73.8335352)",,,33-70 PRINCE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468927,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,8:00,BROOKLYN,11232,40.6541333,-74.0116841,"(40.6541333, -74.0116841)",2 AVENUE,41 STREET,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4468562,Sedan,,,, +10/20/2021,17:43,,,40.7163297,-73.9480688,"(40.7163297, -73.9480688)",JACKSON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Keep Right,,,,4469552,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/22/2021,2:00,,,40.7194758,-73.7926259,"(40.7194758, -73.7926259)",GRAND CENTRAL PARKWAY,173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470239,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,0:45,BROOKLYN,11219,40.6355816,-73.9915402,"(40.6355816, -73.9915402)",13 AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469442,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,7:45,,,40.6781065,-73.9431882,"(40.6781065, -73.9431882)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469846,Tractor Truck Diesel,Sedan,,, +10/15/2021,16:30,BROOKLYN,11212,40.6605852,-73.9006613,"(40.6605852, -73.9006613)",JUNIUS STREET,NEWPORT STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4468057,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,11:32,,,40.8103962,-73.9253107,"(40.8103962, -73.9253107)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4466518,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +10/21/2021,10:30,BRONX,10475,40.86967,-73.83223,"(40.86967, -73.83223)",,,500 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473952,,,,, +04/11/2022,10:40,,,,,,,,67 EAST DRIVE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519749,E-Scooter,,,, +08/17/2021,10:30,,,,,,EAST 12 STREET,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Alcohol Involvement,Alcohol Involvement,,,,4448067,Moped,Moped,,, +08/17/2021,13:53,STATEN ISLAND,10304,,,,ROOSEVELT STREET,BALTIC AVE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4448248,Station Wagon/Sport Utility Vehicle,Bike,,, +08/17/2021,17:25,,,40.691536,-73.85419,"(40.691536, -73.85419)",90 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448117,Sedan,,,, +08/08/2021,5:24,STATEN ISLAND,10301,40.641376,-74.09174,"(40.641376, -74.09174)",,,64 PARK PLACE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448624,Sedan,Sedan,,, +08/16/2021,0:00,MANHATTAN,10032,40.839176,-73.94114,"(40.839176, -73.94114)",BROADWAY,WEST 165 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4448596,Sedan,,,, +08/17/2021,1:15,QUEENS,11004,40.74532,-73.715195,"(40.74532, -73.715195)",256 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447682,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,10:50,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",ATLANTIC AVENUE,HICKS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4448099,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/17/2021,17:20,,,40.67181,-73.998795,"(40.67181, -73.998795)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4448409,Sedan,Sedan,,, +08/17/2021,16:00,QUEENS,11691,40.60485,-73.74822,"(40.60485, -73.74822)",NEILSON STREET,DINSMORE AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4448165,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,11:00,,,40.708374,-73.84271,"(40.708374, -73.84271)",JACKIE ROBINSON PKWY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,,,4448556,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,19:30,STATEN ISLAND,10301,40.633522,-74.08867,"(40.633522, -74.08867)",,,144 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448681,Sedan,,,, +08/17/2021,1:04,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4447786,Sedan,Sedan,,, +08/17/2021,0:00,BROOKLYN,11208,40.68493,-73.882065,"(40.68493, -73.882065)",HIGHLAND PLACE,ETNA STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448175,Sedan,Sedan,,, +08/17/2021,20:32,,,40.86315,-73.90907,"(40.86315, -73.90907)",SEDGWICK AVENUE,WEST FORDHAM ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4448617,,,,, +10/16/2021,20:44,QUEENS,11377,40.7418634,-73.9075049,"(40.7418634, -73.9075049)",QUEENS BOULEVARD,58 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467677,Sedan,Bike,,, +08/13/2021,1:30,MANHATTAN,10035,40.808277,-73.9388,"(40.808277, -73.9388)",EAST 129 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4448510,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/17/2021,5:57,QUEENS,11418,40.695023,-73.84645,"(40.695023, -73.84645)",JAMAICA AVENUE,101 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4447821,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,17:45,,,40.665974,-73.74061,"(40.665974, -73.74061)",LAURELTON PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4448044,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/17/2021,19:40,MANHATTAN,10001,40.755116,-74.00248,"(40.755116, -74.00248)",WEST 33 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4448286,Sedan,,,, +08/17/2021,12:40,BROOKLYN,11210,40.636684,-73.94129,"(40.636684, -73.94129)",EAST 37 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4448015,Sedan,Sedan,,, +08/17/2021,10:50,BRONX,10458,40.869938,-73.890594,"(40.869938, -73.890594)",,,203 EAST 198 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447946,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,15:00,BROOKLYN,11206,40.70701,-73.946526,"(40.70701, -73.946526)",MONTROSE AVENUE,LEONARD STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,,,,,4448702,Bike,,,, +08/16/2021,23:20,,,40.872314,-73.91274,"(40.872314, -73.91274)",WEST 220 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448756,Ambulance,Ambulance,,, +08/17/2021,16:29,,,40.644592,-73.944084,"(40.644592, -73.944084)",CORTELYOU ROAD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448002,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,6:36,BRONX,10469,40.880157,-73.848076,"(40.880157, -73.848076)",EASTCHESTER ROAD,NEEDHAM AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inattention/Distraction,,,,4447951,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,23:30,BRONX,10475,40.86106,-73.82562,"(40.86106, -73.82562)",,,2059 STILLWELL AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4448639,Taxi,Sedan,,, +08/17/2021,11:20,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4448034,Convertible,Sedan,Sedan,Sedan, +08/17/2021,9:25,,,40.745842,-73.73009,"(40.745842, -73.73009)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4447875,Sedan,Sedan,,, +08/17/2021,18:00,BRONX,10454,40.80808,-73.92838,"(40.80808, -73.92838)",,,280 EAST 134 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4448453,Sedan,,,, +08/17/2021,15:53,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4448155,Sedan,Sedan,,, +08/17/2021,22:27,,,40.889606,-73.90871,"(40.889606, -73.90871)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448182,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,14:00,BROOKLYN,11215,40.667515,-73.98984,"(40.667515, -73.98984)",,,225 13 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448500,Sedan,,,, +08/17/2021,12:10,BROOKLYN,11235,40.592213,-73.932556,"(40.592213, -73.932556)",,,2501 KNAPP STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448325,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/17/2021,1:07,,,40.641846,-74.17907,"(40.641846, -74.17907)",,,3551 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448472,Flat Rack,Sedan,,, +08/17/2021,13:00,BRONX,10473,40.81317,-73.859146,"(40.81317, -73.859146)",PATTERSON AVENUE,LELAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4447915,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,8:00,,,40.615433,-73.99775,"(40.615433, -73.99775)",74 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448022,Sedan,,,, +08/12/2021,14:40,BROOKLYN,11211,40.705833,-73.952705,"(40.705833, -73.952705)",,,306 PENN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448697,Sedan,,,, +08/17/2021,15:31,MANHATTAN,10029,40.790894,-73.945175,"(40.790894, -73.945175)",EAST 105 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448285,Sedan,Bike,,, +08/17/2021,19:10,BROOKLYN,11211,40.717743,-73.93854,"(40.717743, -73.93854)",,,30 DEBEVOISE AVENUE,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4448586,Sedan,Sedan,Sedan,, +08/15/2021,3:55,BROOKLYN,11211,40.70955,-73.95886,"(40.70955, -73.95886)",HAVEMEYER STREET,SOUTH 5 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448710,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,13:00,QUEENS,11422,40.67452,-73.736084,"(40.67452, -73.736084)",234 STREET,MERRICK BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4448046,Sedan,Sedan,Sedan,, +08/17/2021,21:42,QUEENS,11373,40.736153,-73.86755,"(40.736153, -73.86755)",57 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448081,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/15/2021,13:53,MANHATTAN,10024,40.78566,-73.98021,"(40.78566, -73.98021)",WEST END AVENUE,WEST 81 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4448643,Bike,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,8:15,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",ELIOT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447964,Sedan,Carry All,,, +08/17/2021,23:00,MANHATTAN,10012,40.7295,-74.00093,"(40.7295, -74.00093)",,,99 MAC DOUGAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448555,Box Truck,,,, +08/17/2021,0:00,STATEN ISLAND,10301,40.63266,-74.09223,"(40.63266, -74.09223)",,,23 HAVEN ESPLANADE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448376,Sedan,,,, +08/17/2021,12:30,BROOKLYN,11226,40.647095,-73.958145,"(40.647095, -73.958145)",,,994 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448444,Sedan,Moped,,, +08/17/2021,3:25,STATEN ISLAND,10312,40.553284,-74.18027,"(40.553284, -74.18027)",WOEHRLE AVENUE,LORING AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4448543,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/14/2021,20:46,BRONX,10459,40.82611,-73.897484,"(40.82611, -73.897484)",,,856 EAST 167 STREET,1,0,1,0,0,0,0,0,,,,,,4448629,E-Bike,,,, +08/17/2021,19:05,,,,,,,,79 WEST DRIVE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448132,Sedan,Bike,,, +08/16/2021,9:55,QUEENS,11423,40.711124,-73.77602,"(40.711124, -73.77602)",,,90-01 184 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448601,Taxi,,,, +08/17/2021,10:32,BROOKLYN,11208,40.6726,-73.86837,"(40.6726, -73.86837)",,,664 HEMLOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448176,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,17:17,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4448091,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/17/2021,21:10,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4448271,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,13:45,BROOKLYN,11211,40.713085,-73.94415,"(40.713085, -73.94415)",AINSLIE STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448690,Sedan,Sedan,,, +08/17/2021,22:14,,,40.68956,-73.967125,"(40.68956, -73.967125)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448052,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/17/2021,8:40,,,40.812073,-73.93604,"(40.812073, -73.93604)",MADISON AVENUE,EAST 135 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448562,Work Van,Bike,,, +08/17/2021,22:00,,,40.682194,-74.00239,"(40.682194, -74.00239)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4448735,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/17/2021,11:30,,,40.75089,-73.75113,"(40.75089, -73.75113)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448220,Sedan,,,, +08/17/2021,14:05,,,40.69862,-73.920135,"(40.69862, -73.920135)",HARMAN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448101,Sedan,,,, +08/17/2021,15:30,QUEENS,11412,40.69406,-73.74953,"(40.69406, -73.74953)",202 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448221,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/17/2021,19:45,BROOKLYN,11207,40.662533,-73.8983,"(40.662533, -73.8983)",RIVERDALE AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,21:10,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448613,Sedan,Sedan,,, +08/17/2021,0:20,BROOKLYN,11213,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,BROOKLYN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4447689,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,23:56,BROOKLYN,11238,40.672638,-73.965866,"(40.672638, -73.965866)",,,125 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448647,Taxi,,,, +08/17/2021,6:57,QUEENS,11368,40.737034,-73.85519,"(40.737034, -73.85519)",HORACE HARDING EXPRESSWAY,CALLOWAY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448075,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,16:55,STATEN ISLAND,10309,40.51621,-74.196846,"(40.51621, -74.196846)",SEGUINE AVENUE,MEMO STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4448517,Pick-up Truck,,,, +07/23/2021,21:55,BROOKLYN,11238,40.68415,-73.97206,"(40.68415, -73.97206)",,,362 CUMBERLAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448724,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,15:20,MANHATTAN,10032,40.83937,-73.941536,"(40.83937, -73.941536)",,,600 WEST 165 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448595,Ambulance,Sedan,,, +08/17/2021,0:35,BROOKLYN,11207,40.65945,-73.89847,"(40.65945, -73.89847)",NEW LOTS AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4447787,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,7:35,,,40.69366,-73.983795,"(40.69366, -73.983795)",DUFFIELD STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4448622,Sedan,,,, +08/17/2021,17:19,QUEENS,11104,40.74565,-73.92485,"(40.74565, -73.92485)",39 PLACE,43 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448049,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,20:12,BROOKLYN,11239,40.65289,-73.866745,"(40.65289, -73.866745)",ERSKINE STREET,GATEWAY DRIVE,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4448168,Sedan,Sedan,,, +08/10/2021,11:00,MANHATTAN,10024,40.779995,-73.976906,"(40.779995, -73.976906)",WEST 76 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4448652,Van,,,, +08/17/2021,15:48,,,40.753944,-73.972145,"(40.753944, -73.972145)",EAST 47 STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448092,LIMO,Bike,,, +08/14/2021,21:30,BRONX,10466,40.897934,-73.857056,"(40.897934, -73.857056)",MATILDA AVENUE,EAST 237 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448508,Sedan,Sedan,,, +08/17/2021,17:42,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4448560,Sedan,Taxi,,, +08/17/2021,8:56,MANHATTAN,10002,40.715355,-73.99341,"(40.715355, -73.99341)",ELDRIDGE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448123,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,9:55,,,40.867813,-73.92364,"(40.867813, -73.92364)",COOPER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448757,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,23:39,MANHATTAN,10024,40.784462,-73.97737,"(40.784462, -73.97737)",AMSTERDAM AVENUE,WEST 81 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448642,Bus,Ambulance,,, +08/17/2021,15:50,QUEENS,11421,,,,86 AVENUE,94 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4447956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,15:00,,,40.76684,-73.838264,"(40.76684, -73.838264)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448007,Sedan,Sedan,Sedan,, +08/17/2021,11:15,BROOKLYN,11203,40.644634,-73.943115,"(40.644634, -73.943115)",BROOKLYN AVENUE,CORTELYOU ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4448354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,21:11,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4448745,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,14:40,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448069,Sedan,Sedan,Sedan,, +08/17/2021,17:00,,,,,,STATEN ISLAND EXPRESSWAY,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448481,Box Truck,Sedan,,, +08/13/2021,19:53,STATEN ISLAND,10304,40.627773,-74.079475,"(40.627773, -74.079475)",,,99 WRIGHT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448678,Sedan,,,, +08/17/2021,10:45,STATEN ISLAND,10306,40.563416,-74.115555,"(40.563416, -74.115555)",,,574 TYSENS LANE,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4447917,Sedan,Bike,,, +08/17/2021,15:00,,,40.768684,-73.90562,"(40.768684, -73.90562)",45 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448244,Sedan,Sedan,,, +08/17/2021,16:40,STATEN ISLAND,10314,40.62229,-74.12078,"(40.62229, -74.12078)",COLLEGE AVENUE,BROOKSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448382,Sedan,,,, +08/17/2021,16:35,,,,,,BROOKLYN QUEENS EXPY (CDR),,,2,0,0,0,0,0,2,0,Driver Inexperience,Following Too Closely,Driver Inattention/Distraction,,,4447994,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/17/2021,13:27,MANHATTAN,10032,40.83089,-73.941376,"(40.83089, -73.941376)",WEST 155 STREET,SAINT NICHOLAS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448105,Taxi,Sedan,,, +08/17/2021,14:30,BROOKLYN,11234,40.633026,-73.92546,"(40.633026, -73.92546)",AVENUE H,EAST 53 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4448587,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,10:52,BRONX,10459,40.82523,-73.88751,"(40.82523, -73.88751)",,,1142 EAST 165 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448628,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,13:18,,,40.798832,-73.95203,"(40.798832, -73.95203)",LENOX AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Oversized Vehicle,,,,4448501,Sedan,Ambulance,,, +08/17/2021,23:06,BROOKLYN,11234,40.617382,-73.943474,"(40.617382, -73.943474)",KINGS HIGHWAY,AVENUE N,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4448061,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,17:55,,,,,,GRAND CENTRAL PARKWAY,188 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448110,Sedan,Sedan,,, +08/17/2021,16:14,BROOKLYN,11236,40.6352,-73.896355,"(40.6352, -73.896355)",,,9307 AVENUE M,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4448698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/07/2021,20:55,MANHATTAN,10013,40.720104,-74.00677,"(40.720104, -74.00677)",,,19 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,23:26,BRONX,10466,40.89193,-73.848076,"(40.89193, -73.848076)",WICKHAM AVENUE,EDENWALD AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4448296,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/17/2021,4:15,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4447812,Sedan,Sedan,,, +08/17/2021,15:09,,,40.82577,-73.91542,"(40.82577, -73.91542)",PARK AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448469,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/17/2021,22:12,BROOKLYN,11220,40.630283,-74.01635,"(40.630283, -74.01635)",70 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448036,Station Wagon/Sport Utility Vehicle,Bike,,, +08/17/2021,17:55,QUEENS,11101,40.74044,-73.949936,"(40.74044, -73.949936)",21 STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/17/2021,6:28,,,40.61384,-73.981445,"(40.61384, -73.981445)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4448252,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,17:05,BRONX,10462,40.833614,-73.857285,"(40.833614, -73.857285)",,,2001 WESTCHESTER AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448150,Bus,Sedan,,, +08/17/2021,17:38,BRONX,10469,40.8688,-73.85831,"(40.8688, -73.85831)",,,2955 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448636,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/17/2021,19:00,QUEENS,11691,40.597954,-73.73919,"(40.597954, -73.73919)",,,554 SEAGIRT BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4448181,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/15/2021,17:35,,,40.816936,-73.9574,"(40.816936, -73.9574)",WEST 130 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448579,Sedan,Sedan,,, +08/17/2021,17:04,,,40.57275,-73.997055,"(40.57275, -73.997055)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448080,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,21:30,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448485,Sedan,Sedan,,, +08/13/2021,18:00,STATEN ISLAND,10307,40.502804,-74.25186,"(40.502804, -74.25186)",SATTERLEE STREET,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448544,Sedan,Pick-up Truck,,, +08/17/2021,2:19,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448109,Sedan,Sedan,,, +08/17/2021,11:17,BROOKLYN,11232,40.644825,-73.99628,"(40.644825, -73.99628)",41 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4448428,Van,Sedan,,, +08/17/2021,9:00,QUEENS,11354,40.760464,-73.826546,"(40.760464, -73.826546)",UNION STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4447866,Station Wagon/Sport Utility Vehicle,Bike,,, +08/17/2021,23:00,BROOKLYN,11220,40.630913,-74.01433,"(40.630913, -74.01433)",8 AVENUE,68 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448207,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,6:51,BROOKLYN,11226,40.651546,-73.95257,"(40.651546, -73.95257)",ROGERS AVENUE,MARTENSE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448014,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,20:41,BROOKLYN,11212,40.65931,-73.91295,"(40.65931, -73.91295)",,,431 HERZL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448228,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,6:42,,,40.59011,-73.97422,"(40.59011, -73.97422)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448074,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,9:01,,,40.73321,-73.981064,"(40.73321, -73.981064)",1 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448206,Van,Sedan,,, +08/05/2021,8:20,BRONX,10474,40.81558,-73.88694,"(40.81558, -73.88694)",,,741 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448600,Pick-up Truck,,,, +08/17/2021,11:20,MANHATTAN,10021,40.766193,-73.95817,"(40.766193, -73.95817)",,,321 EAST 69 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448128,Sedan,Box Truck,,, +08/15/2021,21:19,MANHATTAN,10023,40.77377,-73.98395,"(40.77377, -73.98395)",,,165 WEST 65 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448614,Sedan,Motorscooter,,, +08/17/2021,0:58,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",EAST HOUSTON STREET,BROADWAY,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,,,,,4447738,Sedan,,,, +08/13/2021,16:00,,,40.77242,-73.97873,"(40.77242, -73.97873)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4448648,Sedan,Sedan,,, +08/16/2021,11:00,STATEN ISLAND,10312,40.54232,-74.177444,"(40.54232, -74.177444)",,,820 ANNADALE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448516,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,19:50,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448746,Sedan,Tow Truck / Wrecker,,, +08/17/2021,20:00,BRONX,10475,40.88385,-73.83435,"(40.88385, -73.83435)",MAROLLA PLACE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448383,PAS,,,, +08/17/2021,9:02,QUEENS,11385,40.695114,-73.90322,"(40.695114, -73.90322)",WYCKOFF AVENUE,NORMAN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447989,Bus,Sedan,,, +08/17/2021,13:53,QUEENS,11377,40.735638,-73.91744,"(40.735638, -73.91744)",,,50-54 49 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4447997,Sedan,,,, +08/17/2021,19:00,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448273,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,17:30,MANHATTAN,10019,40.77259,-73.99275,"(40.77259, -73.99275)",,,675 WEST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448646,Box Truck,,,, +08/17/2021,15:00,BROOKLYN,11215,40.66845,-73.99354,"(40.66845, -73.99354)",14 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448020,Station Wagon/Sport Utility Vehicle,PK,,, +08/17/2021,16:15,BROOKLYN,11236,40.632465,-73.897316,"(40.632465, -73.897316)",,,1611 REMSEN AVENUE,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4448359,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,15:06,BROOKLYN,11233,40.67921,-73.91375,"(40.67921, -73.91375)",BOYLAND STREET,HULL STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4448687,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,23:45,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448060,Sedan,Bike,,, +08/17/2021,16:30,BRONX,10455,40.820522,-73.91451,"(40.820522, -73.91451)",,,436 EAST 156 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4448445,Sedan,,,, +08/14/2021,14:09,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",2 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4448742,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/17/2021,8:30,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4447884,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/17/2021,13:29,BRONX,10452,40.84413,-73.914215,"(40.84413, -73.914215)",,,19 EAST MOUNT EDEN AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4448278,Sedan,,,, +08/17/2021,10:00,BROOKLYN,11230,40.616066,-73.95546,"(40.616066, -73.95546)",,,1918 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4448438,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,20:05,,,40.626015,-74.15655,"(40.626015, -74.15655)",,,2040 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448478,Sedan,,,, +08/17/2021,11:19,QUEENS,11422,40.663467,-73.73466,"(40.663467, -73.73466)",,,140-32 247 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447918,Sedan,,,, +08/17/2021,12:27,BROOKLYN,11236,40.640488,-73.9056,"(40.640488, -73.9056)",,,9013 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4448019,Sedan,Sedan,,, +08/07/2021,15:00,BROOKLYN,11236,40.648808,-73.90542,"(40.648808, -73.90542)",,,1250 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448699,Sedan,,,, +08/11/2021,5:40,MANHATTAN,10027,40.813797,-73.94987,"(40.813797, -73.94987)",SAINT NICHOLAS AVENUE,WEST 130 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4448716,Sedan,Sedan,,, +08/17/2021,16:30,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448048,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/17/2021,22:10,,,40.66585,-73.88392,"(40.66585, -73.88392)",WARWICK STREET,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing or Lane Usage Improper,,,,4448169,Bus,Sedan,,, +08/13/2021,17:15,BROOKLYN,11211,40.709755,-73.95707,"(40.709755, -73.95707)",SOUTH 4 STREET,MARCY AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,Unspecified,4448692,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Bike +08/15/2021,11:00,,,,,,VANDAM STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448514,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,8:07,MANHATTAN,10023,40.774143,-73.98682,"(40.774143, -73.98682)",,,216 WEST 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448641,Sedan,,,, +08/17/2021,9:05,BROOKLYN,11225,40.66343,-73.95874,"(40.66343, -73.95874)",,,99 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447954,Sedan,,,, +08/17/2021,15:35,MANHATTAN,10075,40.777004,-73.96374,"(40.777004, -73.96374)",5 AVENUE,EAST 79 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448070,SCOOTER,Sedan,,, +08/17/2021,6:35,QUEENS,11429,40.709316,-73.73441,"(40.709316, -73.73441)",107 AVENUE,221 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4447858,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,16:01,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448042,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +08/17/2021,17:50,QUEENS,11432,40.70715,-73.79299,"(40.70715, -73.79299)",168 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448260,Sedan,Sedan,,, +08/17/2021,15:10,,,40.814487,-73.95547,"(40.814487, -73.95547)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4448028,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/15/2021,22:20,MANHATTAN,10032,40.844746,-73.94243,"(40.844746, -73.94243)",,,104 HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448598,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,19:13,BRONX,10451,40.81722,-73.91924,"(40.81722, -73.91924)",EAST 150 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448446,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,12:44,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",EAST 178 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448093,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,12:04,BROOKLYN,11234,40.614162,-73.937546,"(40.614162, -73.937546)",QUENTIN ROAD,EAST 35 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4448342,Sedan,Sedan,,, +08/17/2021,18:54,,,40.789646,-73.94608,"(40.789646, -73.94608)",3 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448465,Moped,Bike,,, +08/17/2021,4:45,QUEENS,11413,40.675423,-73.738434,"(40.675423, -73.738434)",,,231-36 MERRICK BOULEVARD,3,0,1,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4448422,Sedan,Sedan,,, +08/17/2021,16:10,QUEENS,11691,40.598354,-73.74833,"(40.598354, -73.74833)",,,14-10 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4448158,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/10/2021,21:30,STATEN ISLAND,10308,40.551826,-74.15793,"(40.551826, -74.15793)",KATAN AVENUE,NOTRE DAME AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4448558,,,,, +08/17/2021,21:38,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",HEMPSTEAD AVENUE,225 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448676,Sedan,Bus,,, +10/21/2021,16:59,QUEENS,11427,40.7328663,-73.7321859,"(40.7328663, -73.7321859)",235 COURT,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469584,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,0:15,BRONX,10453,40.851044,-73.91488,"(40.851044, -73.91488)",UNIVERSITY AVENUE,MORTON PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4448088,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/17/2021,15:36,BROOKLYN,11210,,,,AVENUE L,EAST 38 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448588,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,12:00,BROOKLYN,11219,40.641216,-73.99934,"(40.641216, -73.99934)",,,907 47 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448077,Sedan,Sedan,,, +08/16/2021,10:07,BROOKLYN,11217,40.68459,-73.989136,"(40.68459, -73.989136)",HOYT STREET,WARREN STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Following Too Closely,,,,4448615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,14:30,QUEENS,11433,40.69423,-73.78953,"(40.69423, -73.78953)",,,109-47 BREWER BOULEVARD,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448008,Bike,Bike,,, +08/17/2021,14:50,,,40.6051,-74.16112,"(40.6051, -74.16112)",,,38 CROFT PLACE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4448112,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/17/2021,16:35,,,40.851093,-73.93244,"(40.851093, -73.93244)",WEST 184 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448758,Sedan,Motorcycle,,, +08/17/2021,17:00,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4448664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,21:47,BRONX,10464,40.83899,-73.78343,"(40.83899, -73.78343)",,,41 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448523,Sedan,,,, +08/17/2021,15:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448126,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,16:10,BROOKLYN,11238,40.68148,-73.95736,"(40.68148, -73.95736)",FULTON STREET,CLAVER PLACE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4448250,Sedan,E-Bike,,, +08/17/2021,11:22,,,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448545,Sedan,4 dr sedan,,, +08/17/2021,17:05,,,40.68238,-73.90565,"(40.68238, -73.90565)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4448103,Station Wagon/Sport Utility Vehicle,Bike,,, +08/17/2021,21:10,BROOKLYN,11234,40.61877,-73.929794,"(40.61877, -73.929794)",SCHENECTADY AVENUE,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448062,Sedan,,,, +08/17/2021,13:55,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4448608,Sedan,Sedan,,, +08/15/2021,14:40,STATEN ISLAND,10304,40.624603,-74.079605,"(40.624603, -74.079605)",BROAD STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448626,Pick-up Truck,,,, +08/17/2021,18:56,BRONX,10462,40.83404,-73.85328,"(40.83404, -73.85328)",,,2135 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4448290,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,17:02,,,,,,WEBSTER AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448503,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,21:30,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448135,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,9:09,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4448208,Sedan,Sedan,,, +06/08/2021,14:56,MANHATTAN,10017,40.750763,-73.97446,"(40.750763, -73.97446)",EAST 42 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Passenger Distraction,Driver Inattention/Distraction,,,,4448686,Sedan,Pick-up Truck,,, +08/17/2021,8:16,BROOKLYN,11208,40.672527,-73.86833,"(40.672527, -73.86833)",,,667 HEMLOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448571,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,9:00,BROOKLYN,11237,40.712856,-73.92224,"(40.712856, -73.92224)",SCHOLES STREET,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448237,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,9:25,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,19:45,MANHATTAN,10026,40.80151,-73.95007,"(40.80151, -73.95007)",,,95 LENOX AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4448580,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/17/2021,1:10,MANHATTAN,10035,40.805668,-73.93648,"(40.805668, -73.93648)",EAST 127 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4447750,Sedan,,,, +08/09/2021,14:40,MANHATTAN,10069,40.774113,-73.98863,"(40.774113, -73.98863)",WEST 63 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448649,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,23:17,BRONX,10468,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448610,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,16:35,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448085,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,19:30,BROOKLYN,11210,40.62965,-73.944305,"(40.62965, -73.944305)",,,1671 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448385,Sedan,,,, +08/17/2021,8:01,QUEENS,11377,40.742783,-73.899216,"(40.742783, -73.899216)",,,42-25 65 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4447998,Dump,Sedan,,, +08/17/2021,11:05,BRONX,10468,40.860935,-73.90656,"(40.860935, -73.90656)",,,2308 UNIVERSITY AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4448362,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,15:00,,,40.781715,-73.98682,"(40.781715, -73.98682)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448634,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,10:55,QUEENS,11372,40.75363,-73.88597,"(40.75363, -73.88597)",81 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448537,Sedan,Bike,,, +08/17/2021,19:11,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4448157,Sedan,,,, +08/17/2021,7:28,BRONX,10471,40.898907,-73.90318,"(40.898907, -73.90318)",,,5041 GROSVENOR AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448180,Sedan,Box Truck,,, +08/17/2021,8:45,,,,,,East Fordham road,Major deagan expressway,,0,0,0,0,0,0,0,0,Driver Inexperience,Other Vehicular,,,,4448494,PK,Sedan,,, +08/17/2021,15:30,MANHATTAN,10018,40.760777,-74.00219,"(40.760777, -74.00219)",WEST 40 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4448265,Sedan,Sedan,School Bus,, +08/17/2021,18:13,QUEENS,11377,40.742275,-73.91105,"(40.742275, -73.91105)",QUEENS BOULEVARD,54 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448026,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/17/2021,21:50,BROOKLYN,11233,40.669273,-73.922554,"(40.669273, -73.922554)",RALPH AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448057,Ambulance,Sedan,,, +08/12/2021,13:11,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,Unspecified,,4448741,Taxi,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +08/17/2021,0:54,QUEENS,11432,40.71512,-73.77358,"(40.71512, -73.77358)",HILLSIDE AVENUE,188 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447906,Bike,,,, +08/13/2021,8:16,BROOKLYN,11211,40.712536,-73.95139,"(40.712536, -73.95139)",,,405 UNION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,14:02,BRONX,10452,0,0,"(0.0, 0.0)",EAST 170 STREET,TOWNSEND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448279,Taxi,Sedan,,, +08/17/2021,21:00,,,40.716114,-73.824905,"(40.716114, -73.824905)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448108,Station Wagon/Sport Utility Vehicle,,,, +08/11/2021,0:49,,,40.78517,-73.973145,"(40.78517, -73.973145)",WEST 84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448645,Sedan,Box Truck,,, +08/17/2021,18:51,QUEENS,11377,40.736065,-73.89598,"(40.736065, -73.89598)",,,50-39 69 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448029,Sedan,,,, +08/17/2021,12:04,BROOKLYN,11235,40.580868,-73.95077,"(40.580868, -73.95077)",,,45 COLERIDGE STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4448063,Sedan,Sedan,,, +08/14/2021,9:22,BRONX,10453,40.858196,-73.907906,"(40.858196, -73.907906)",AQUEDUCT AVENUE,WEST 182 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448504,Sedan,,,, +08/17/2021,23:55,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448439,Sedan,Sedan,,, +08/17/2021,22:31,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",EAST 134 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448447,Carry All,Sedan,,, +08/17/2021,10:30,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",WEST BROADWAY,CANAL STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4447878,Motorcycle,Sedan,,, +08/17/2021,16:33,BRONX,10469,40.857475,-73.836296,"(40.857475, -73.836296)",STILLWELL AVENUE,GUNTHER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448197,Sedan,Sedan,,, +08/17/2021,16:00,QUEENS,11414,,,,,,155-47 KILLARNEY STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4447980,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,22:46,BRONX,10455,40.815865,-73.899216,"(40.815865, -73.899216)",BECK STREET,EAST 156 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4448287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/17/2021,4:54,MANHATTAN,10016,40.74639,-73.977646,"(40.74639, -73.977646)",EAST 35 STREET,3 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4447830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,17:45,,,40.727844,-73.98223,"(40.727844, -73.98223)",AVENUE A,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448072,Station Wagon/Sport Utility Vehicle,Bike,,, +08/17/2021,16:36,BROOKLYN,11204,40.62454,-73.9838,"(40.62454, -73.9838)",,,1817 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448434,Station Wagon/Sport Utility Vehicle,Bus,,, +08/17/2021,22:15,MANHATTAN,10001,40.745037,-73.98705,"(40.745037, -73.98705)",,,260 5 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448257,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,14:20,BROOKLYN,11203,40.65315,-73.94117,"(40.65315, -73.94117)",LINDEN BOULEVARD,EAST 39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448018,Sedan,Motorcycle,,, +08/16/2021,0:35,STATEN ISLAND,10301,40.63877,-74.07574,"(40.63877, -74.07574)",,,139 BAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448625,Sedan,Sedan,,, +08/11/2021,13:00,QUEENS,11411,40.691578,-73.73088,"(40.691578, -73.73088)",,,117-20 231 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448590,Sedan,,,, +08/17/2021,22:10,QUEENS,11418,40.69453,-73.82588,"(40.69453, -73.82588)",ATLANTIC AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448113,Sedan,Sedan,,, +08/17/2021,23:06,BROOKLYN,11217,40.68251,-73.976326,"(40.68251, -73.976326)",FLATBUSH AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448098,Sedan,,,, +08/09/2021,16:11,,,40.789623,-73.94007,"(40.789623, -73.94007)",1 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Failure to Yield Right-of-Way,,,,4448512,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/17/2021,19:42,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448557,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,13:43,MANHATTAN,10128,40.78268,-73.95327,"(40.78268, -73.95327)",EAST 91 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448127,Bus,Box Truck,,, +08/17/2021,3:20,BROOKLYN,11226,40.647934,-73.95444,"(40.647934, -73.95444)",,,2417 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4448013,Sedan,Sedan,Sedan,Sedan,Sedan +08/17/2021,12:00,QUEENS,11101,40.75043,-73.93533,"(40.75043, -73.93533)",,,29-76 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4447953,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,15:33,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",CENTRAL PARK WEST,WEST 65 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448640,Sedan,E-Scooter,,, +08/17/2021,13:53,BROOKLYN,11212,40.658836,-73.92365,"(40.658836, -73.92365)",,,1035 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448328,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,23:37,BROOKLYN,11210,40.62334,-73.95595,"(40.62334, -73.95595)",OCEAN AVENUE,AVENUE K,,3,0,0,0,0,0,3,0,Unspecified,,,,,4448455,Sedan,,,, +08/17/2021,16:45,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4448043,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,19:00,QUEENS,11372,40.752487,-73.87438,"(40.752487, -73.87438)",,,35-53 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448164,Sedan,Sedan,,, +08/17/2021,17:15,MANHATTAN,10027,40.814465,-73.95305,"(40.814465, -73.95305)",,,41 CONVENT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4448413,Sedan,Sedan,Sedan,, +08/17/2021,17:53,STATEN ISLAND,10312,,,,HYLAN BOULEVARD,RICHMOND AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448249,Sedan,Sedan,,, +08/17/2021,13:21,,,40.7672,-73.887825,"(40.7672, -73.887825)",GRAND CENTRAL PARKWAY,82 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447925,Sedan,,,, +08/17/2021,1:00,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Windshield Inadequate,Unspecified,,,,4447798,Sedan,,,, +08/17/2021,9:02,BRONX,10457,40.842068,-73.8975,"(40.842068, -73.8975)",FULTON AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448076,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,15:05,BROOKLYN,11211,40.7145,-73.961296,"(40.7145, -73.961296)",GRAND STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448711,Sedan,,,, +08/17/2021,23:25,BROOKLYN,11208,40.670124,-73.8582,"(40.670124, -73.8582)",LINDEN BOULEVARD,AMBER STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448170,Sedan,Sedan,,, +08/17/2021,13:00,QUEENS,11413,40.6764,-73.741325,"(40.6764, -73.741325)",229 STREET,MERRICK BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,20:19,MANHATTAN,10032,40.835358,-73.94022,"(40.835358, -73.94022)",AMSTERDAM AVENUE,WEST 161 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448597,Sedan,Sedan,,, +08/17/2021,23:15,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4448616,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/17/2021,23:00,BRONX,10461,40.839355,-73.845825,"(40.839355, -73.845825)",,,1461 SAINT PETERS AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448522,E-Scooter,Sedan,,, +08/10/2021,16:40,BROOKLYN,11206,40.707653,-73.93984,"(40.707653, -73.93984)",MONTROSE AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448665,Pick-up Truck,,,, +08/17/2021,20:54,,,40.852383,-73.92048,"(40.852383, -73.92048)",SEDGWICK AVENUE,CEDAR AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4448089,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/14/2021,20:05,MANHATTAN,10033,40.84784,-73.93953,"(40.84784, -73.93953)",FORT WASHINGTON AVENUE,WEST 177 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448547,Bike,,,, +08/02/2021,17:50,,,40.714382,-73.93345,"(40.714382, -73.93345)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448701,Sedan,Sedan,,, +08/17/2021,16:25,BRONX,10462,40.84166,-73.86039,"(40.84166, -73.86039)",,,1970 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448284,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,22:20,,,40.846214,-73.82024,"(40.846214, -73.82024)",STADIUM AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4448755,Sedan,Sedan,,, +08/17/2021,19:30,BROOKLYN,11234,40.63556,-73.922844,"(40.63556, -73.922844)",EAST 56 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4447999,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,20:40,BROOKLYN,11212,40.66258,-73.92652,"(40.66258, -73.92652)",,,998 RUTLAND ROAD,1,0,0,0,1,0,0,0,Unspecified,,,,,4448390,Bike,,,, +08/08/2021,20:28,MANHATTAN,10024,40.784534,-73.9736,"(40.784534, -73.9736)",COLUMBUS AVENUE,WEST 83 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448644,Sedan,Sedan,,, +08/17/2021,16:45,QUEENS,11434,,,,ROCKAWAY BOULEVARD,150 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448270,Sedan,,,, +08/17/2021,10:55,QUEENS,11379,40.712917,-73.87736,"(40.712917, -73.87736)",,,75-26 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4447965,Box Truck,Flat Bed,,, +08/17/2021,11:15,,,40.726448,-73.75632,"(40.726448, -73.75632)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,14:25,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448476,Sedan,,,, +08/17/2021,13:58,MANHATTAN,10009,40.73135,-73.98256,"(40.73135, -73.98256)",EAST 14 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4448449,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,6:25,,,40.726326,-73.7662,"(40.726326, -73.7662)",GRAND CENTRAL PARKWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4447907,Sedan,Sedan,,, +08/17/2021,18:00,,,40.713436,-73.76119,"(40.713436, -73.76119)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448669,Sedan,,,, +08/15/2021,12:00,STATEN ISLAND,10312,40.539318,-74.197655,"(40.539318, -74.197655)",,,667 RATHBUN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448542,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,20:17,,,40.71636,-73.96667,"(40.71636, -73.96667)",GRAND STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4448133,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,23:55,BRONX,10462,40.839275,-73.85275,"(40.839275, -73.85275)",,,1666 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448606,Sedan,,,, +08/08/2021,11:00,BROOKLYN,11201,40.70381,-73.988304,"(40.70381, -73.988304)",PLYMOUTH STREET,ANCHORAGE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448612,Sedan,Sedan,,, +08/17/2021,5:36,MANHATTAN,10035,40.80765,-73.939255,"(40.80765, -73.939255)",MADISON AVENUE,EAST 128 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4447754,E-Bike,,,, +08/12/2021,16:18,,,,,,PROSPECT EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,,,,,4448737,Sedan,,,, +08/17/2021,0:00,,,40.808716,-73.88497,"(40.808716, -73.88497)",EAST BAY AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448184,Van,Van,,, +08/17/2021,11:00,QUEENS,11102,40.77215,-73.929,"(40.77215, -73.929)",28 AVENUE,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448242,Sedan,,,, +08/14/2021,20:34,,,40.671787,-73.95311,"(40.671787, -73.95311)",ROGERS AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448650,E-Bike,,,, +08/17/2021,9:45,BRONX,10459,0,0,"(0.0, 0.0)",,,896 UNION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448082,PK,,,, +08/17/2021,21:00,BRONX,10460,40.842953,-73.886185,"(40.842953, -73.886185)",,,868 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448498,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,18:00,QUEENS,11366,40.72185,-73.807785,"(40.72185, -73.807785)",160 STREET,78 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4448107,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/02/2021,17:20,BROOKLYN,11237,40.706367,-73.925354,"(40.706367, -73.925354)",,,1177 FLUSHING AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4448695,Fork lift,,,, +08/17/2021,13:30,BROOKLYN,11235,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448214,Sedan,Sedan,,, +08/17/2021,19:34,BROOKLYN,11219,40.6277,-73.99974,"(40.6277, -73.99974)",62 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448024,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,8:35,MANHATTAN,10009,40.72408,-73.97576,"(40.72408, -73.97576)",,,119 AVENUE D,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4447877,commerical,,,, +08/17/2021,15:28,BROOKLYN,11211,40.710747,-73.9532,"(40.710747, -73.9532)",,,188 BORINQUEN PLACE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448370,Sedan,Bike,,, +08/15/2021,17:06,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448505,Pick-up Truck,,,, +08/17/2021,18:25,,,,,,VANWICKLEN ROAD,REDDING STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448064,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,19:10,BROOKLYN,11238,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448056,Station Wagon/Sport Utility Vehicle,Ambulance,,, +08/17/2021,15:20,BROOKLYN,11230,40.63043,-73.96632,"(40.63043, -73.96632)",,,1122 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448443,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,15:05,BROOKLYN,11233,,,,thomas s boyland street,park place,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4448683,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +08/17/2021,11:45,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448102,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,18:26,BRONX,10472,40.82981,-73.866844,"(40.82981, -73.866844)",GLEASON AVENUE,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,14:27,MANHATTAN,10022,40.757698,-73.9694,"(40.757698, -73.9694)",EAST 53 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448632,Taxi,,,, +08/04/2021,9:30,,,40.788532,-73.95322,"(40.788532, -73.95322)",MADISON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448585,Sedan,,,, +08/17/2021,11:00,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448179,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,21:10,BRONX,10457,40.845642,-73.90211,"(40.845642, -73.90211)",WEBSTER AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448090,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,0:00,BROOKLYN,11210,40.62731,-73.941826,"(40.62731, -73.941826)",FLATBUSH AVENUE,AVENUE J,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448549,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/15/2021,17:05,,,40.752434,-73.89748,"(40.752434, -73.89748)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448569,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,17:15,BROOKLYN,11201,40.70376,-73.98662,"(40.70376, -73.98662)",JAY STREET,PLYMOUTH STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448592,Station Wagon/Sport Utility Vehicle,Van,,, +08/17/2021,14:51,MANHATTAN,10013,,,,,,202 HESTER STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448114,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,18:25,QUEENS,11378,40.7242148,-73.9148893,"(40.7242148, -73.9148893)",56 STREET,RUST STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470095,Sedan,Sedan,,, +10/19/2021,13:00,MANHATTAN,10035,40.8027515,-73.933575,"(40.8027515, -73.933575)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,14:00,QUEENS,11359,40.7964797,-73.7774499,"(40.7964797, -73.7774499)",,,1 TOTTEN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468106,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,23:43,,,40.6745837,-73.9302218,"(40.6745837, -73.9302218)",SAINT MARKS AVENUE,TROY AVENUE,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4466770,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,2:17,BRONX,10457,40.8401335,-73.911878,"(40.8401335, -73.911878)",,,1475 SHERIDAN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470192,E-Bike,,,, +10/23/2021,3:15,QUEENS,11372,40.7538823,-73.8952934,"(40.7538823, -73.8952934)",,,33-17 71 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4469969,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/17/2021,4:45,QUEENS,11378,40.7232627,-73.9001374,"(40.7232627, -73.9001374)",,,65-10 GRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4467999,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,15:16,,,40.8051537,-73.9511132,"(40.8051537, -73.9511132)",WEST 119 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4469506,Sedan,Sedan,,, +10/24/2021,21:00,BROOKLYN,11201,40.690993,-73.9893083,"(40.690993, -73.9893083)",BOERUM PLACE,LIVINGSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470509,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,11:40,QUEENS,11433,40.6929712,-73.7802385,"(40.6929712, -73.7802385)",MERRICK BOULEVARD,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4467083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,23:37,MANHATTAN,10039,40.8276336,-73.9357579,"(40.8276336, -73.9357579)",MACOMBS DAM BRIDGE,WEST 154 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4468291,Sedan,Sedan,Sedan,, +10/12/2021,21:20,QUEENS,11385,40.6952733,-73.9035054,"(40.6952733, -73.9035054)",WYCKOFF AVENUE,COVERT STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4466723,Sedan,Motorcycle,,, +10/23/2021,22:45,BRONX,10461,40.8376742,-73.8347893,"(40.8376742, -73.8347893)",,,3146 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4470171,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,18:18,MANHATTAN,10029,40.7979463,-73.9400231,"(40.7979463, -73.9400231)",3 AVENUE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4470678,E-Scooter,,,, +10/18/2021,14:49,BROOKLYN,11229,40.6090478,-73.9523588,"(40.6090478, -73.9523588)",,,2023 QUENTIN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468974,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,20:55,,,40.7753854,-73.923027,"(40.7753854, -73.923027)",HOYT AVENUE NORTH,21 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4469091,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,18:50,BROOKLYN,11226,40.6515468,-73.9525627,"(40.6515468, -73.9525627)",ROGERS AVENUE,MARTENSE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468873,Bus,,,, +10/15/2021,20:50,MANHATTAN,10027,40.8115084,-73.9464773,"(40.8115084, -73.9464773)",WEST 129 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467634,Sedan,Sedan,,, +10/23/2021,2:30,QUEENS,11368,40.7461818,-73.8529243,"(40.7461818, -73.8529243)",111 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,15:30,,,40.7899401,-73.980358,"(40.7899401, -73.980358)",WEST 86 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4467860,Sedan,Motorcycle,,, +10/14/2021,11:45,BRONX,10455,40.8084375,-73.9047176,"(40.8084375, -73.9047176)",EAST 144 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4467713,Mack,,,, +10/21/2021,8:31,BROOKLYN,11210,40.6286468,-73.9520675,"(40.6286468, -73.9520675)",AVENUE I,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4470160,Box Truck,,,, +10/24/2021,2:11,QUEENS,11372,40.7553632,-73.8872263,"(40.7553632, -73.8872263)",80 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4470207,Sedan,Bike,,, +10/18/2021,8:58,QUEENS,11369,40.7583479,-73.8808298,"(40.7583479, -73.8808298)",,,87-05 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469898,Sedan,,,, +10/15/2021,6:40,BRONX,10456,40.8306836,-73.9007,"(40.8306836, -73.9007)",,,1264 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468670,Sedan,Ambulance,,, +10/15/2021,5:40,BRONX,10474,40.8149991,-73.8940147,"(40.8149991, -73.8940147)",LONGWOOD AVENUE,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4467354,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/14/2021,19:57,BROOKLYN,11230,40.6247649,-73.9651721,"(40.6247649, -73.9651721)",AVENUE J,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467924,Bus,Station Wagon/Sport Utility Vehicle,,, +10/04/2021,13:10,QUEENS,11372,40.7489432,-73.8726683,"(40.7489432, -73.8726683)",,,94-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469254,Sedan,,,, +10/20/2021,20:51,,,40.6944818,-73.8100529,"(40.6944818, -73.8100529)",101 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469489,Sedan,Bike,,, +10/21/2021,19:14,QUEENS,11361,40.7583215,-73.778034,"(40.7583215, -73.778034)",,,205-11 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469775,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,11:00,BROOKLYN,11220,40.6373612,-74.0083069,"(40.6373612, -74.0083069)",,,772 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,4:45,,,40.67069,-73.80124,"(40.67069, -73.80124)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474061,Sedan,,,, +10/16/2021,22:14,,,40.6706551,-73.9133909,"(40.6706551, -73.9133909)",Linden Blvd,Avenue D,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,11:27,QUEENS,11419,40.6907326,-73.8152273,"(40.6907326, -73.8152273)",131 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467216,Sedan,,,, +10/17/2021,18:57,BROOKLYN,11207,40.6773595,-73.8868607,"(40.6773595, -73.8868607)",ATLANTIC AVENUE,WARWICK STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4468159,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,0:00,,,,,,QUEENS BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448122,Sedan,Sedan,,, +10/24/2021,3:00,QUEENS,11434,40.6596509,-73.7738282,"(40.6596509, -73.7738282)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4470224,Sedan,,,, +10/21/2021,14:05,,,40.7723324,-73.9587154,"(40.7723324, -73.9587154)",EAST 76 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4469639,Sedan,E-Bike,,, +10/12/2021,15:30,STATEN ISLAND,10312,40.5444315,-74.1653991,"(40.5444315, -74.1653991)",RICHMOND AVENUE,ELTINGVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466993,Station Wagon/Sport Utility Vehicle,Bus,,, +10/24/2021,0:00,BRONX,10454,40.8034803,-73.9077986,"(40.8034803, -73.9077986)",EAST 139 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470639,Sedan,,,, +10/13/2021,6:24,,,40.8120074,-73.9515055,"(40.8120074, -73.9515055)",WEST 127 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4467517,Van,Sedan,,, +10/25/2021,2:03,BRONX,10469,40.8757563,-73.8357185,"(40.8757563, -73.8357185)",BAYCHESTER AVENUE,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470657,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,15:55,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",21 STREET,ASTORIA PARK SOUTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470023,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/23/2021,16:15,QUEENS,11433,40.7050399,-73.7840523,"(40.7050399, -73.7840523)",,,175-09 LIBERTY AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4470583,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,11:40,BROOKLYN,11206,40.6979035,-73.9467957,"(40.6979035, -73.9467957)",TOMPKINS AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4470348,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,17:25,,,40.8504784,-73.9154253,"(40.8504784, -73.9154253)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469054,Station Wagon/Sport Utility Vehicle,Bus,,, +10/13/2021,14:45,BROOKLYN,11220,40.6369873,-74.010258,"(40.6369873, -74.010258)",,,731 59 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4466844,PK,,,, +10/21/2021,9:45,MANHATTAN,10035,40.8027515,-73.933575,"(40.8027515, -73.933575)",EAST 125 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469457,Bus,Motorcycle,,, +10/19/2021,7:54,MANHATTAN,10032,40.8377231,-73.939752,"(40.8377231, -73.939752)",,,517 WEST 164 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468841,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,23:20,,,40.6926038,-73.9275075,"(40.6926038, -73.9275075)",BROADWAY,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468324,BOX TRUCK,Sedan,,, +10/20/2021,3:49,BROOKLYN,11229,40.6153655,-73.9444733,"(40.6153655, -73.9444733)",,,2825 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4470222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/15/2021,21:20,STATEN ISLAND,10310,40.629342,-74.1117712,"(40.629342, -74.1117712)",,,682 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469267,Sedan,Sedan,,, +10/20/2021,15:57,BROOKLYN,11214,40.5829661,-73.9863303,"(40.5829661, -73.9863303)",CROPSEY AVENUE,BAY 53 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469354,Sedan,Sedan,,, +10/18/2021,12:55,BROOKLYN,11234,40.6152167,-73.9371713,"(40.6152167, -73.9371713)",,,1661 EAST 36 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Speed,,,,4468525,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,13:51,BROOKLYN,11223,40.60635,-73.9755105,"(40.60635, -73.9755105)",WEST 2 STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,5:25,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4466594,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/20/2021,7:45,QUEENS,11369,40.7704007,-73.8755722,"(40.7704007, -73.8755722)",95 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4469222,Bus,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,17:00,BROOKLYN,11225,40.6656853,-73.9584741,"(40.6656853, -73.9584741)",,,11 MC KEEVER PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469736,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,12:15,BRONX,10466,40.882393,-73.84537,"(40.882393, -73.84537)",,,1224 EAST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467956,Sedan,,,, +10/12/2021,13:20,,,40.8262762,-73.8597029,"(40.8262762, -73.8597029)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467470,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,9:00,MANHATTAN,10029,40.7963012,-73.9382838,"(40.7963012, -73.9382838)",EAST 115 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4466976,Sedan,E-Bike,,, +11/02/2021,23:00,BROOKLYN,11211,40.716667,-73.95206,"(40.716667, -73.95206)",UNION AVENUE,WITHERS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474245,Sedan,E-Bike,,, +10/19/2021,17:12,QUEENS,11357,40.7786367,-73.8050689,"(40.7786367, -73.8050689)",,,157-30 WILLETS POINT BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4468938,Sedan,,,, +10/18/2021,11:20,QUEENS,11355,40.7576718,-73.8277387,"(40.7576718, -73.8277387)",,,41-61 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468558,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,9:35,STATEN ISLAND,10306,40.5648831,-74.1135852,"(40.5648831, -74.1135852)",,,2736 HYLAN BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467735,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,2:30,,,40.5966862,-73.7442081,"(40.5966862, -73.7442081)",seagirt blvd,beach 9,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4467327,Sedan,,,, +10/21/2021,12:55,QUEENS,11691,40.5956794,-73.7709183,"(40.5956794, -73.7709183)",,,38-01 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4469814,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,20:14,BROOKLYN,11208,40.6822994,-73.8773378,"(40.6822994, -73.8773378)",,,3187 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468176,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:54,,,40.8289858,-73.9389617,"(40.8289858, -73.9389617)",WEST 154 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4468286,Sedan,Moped,,, +10/22/2021,13:10,BROOKLYN,11236,40.6348794,-73.9185384,"(40.6348794, -73.9185384)",,,6013 GLENWOOD ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470083,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/14/2021,16:00,QUEENS,11101,40.7405978,-73.9305948,"(40.7405978, -73.9305948)",35 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467184,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,19:29,BROOKLYN,11234,40.6234286,-73.9102267,"(40.6234286, -73.9102267)",AVENUE N,EAST 72 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469207,Sedan,Bus,,, +10/22/2021,14:32,MANHATTAN,10030,40.8197204,-73.9404768,"(40.8197204, -73.9404768)",WEST 142 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470650,Ambulance,,,, +10/19/2021,19:43,,,40.6921483,-73.9194594,"(40.6921483, -73.9194594)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4470055,Ambulance,Sedan,,, +10/17/2021,17:20,BRONX,10463,40.8774631,-73.9001448,"(40.8774631, -73.9001448)",,,3110 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468503,Sedan,,,, +10/13/2021,22:30,QUEENS,11418,40.6928779,-73.8342915,"(40.6928779, -73.8342915)",,,93-08 112 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466861,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,21:05,,,40.6972536,-73.9156161,"(40.6972536, -73.9156161)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467560,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,19:01,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4466797,Sedan,Sedan,,, +10/22/2021,17:30,,,40.6087758,-74.0911294,"(40.6087758, -74.0911294)",CLOVE ROAD,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469939,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,12:03,QUEENS,11414,40.6516652,-73.8383143,"(40.6516652, -73.8383143)",,,163-30 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468987,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,10:39,,,40.770527,-73.98012,"(40.770527, -73.98012)",WEST 63 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4474163,,,,, +10/18/2021,18:56,BROOKLYN,11215,40.6761486,-73.9838993,"(40.6761486, -73.9838993)",CARROLL STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468685,Sedan,E-Bike,,, +10/14/2021,16:15,,,40.6804767,-73.9222785,"(40.6804767, -73.9222785)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468042,Sedan,,,, +10/19/2021,15:15,MANHATTAN,10036,40.7571614,-73.9872793,"(40.7571614, -73.9872793)",,,229 WEST 43 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4469108,Sedan,,,, +10/12/2021,15:35,MANHATTAN,10012,40.722355,-73.9932609,"(40.722355, -73.9932609)",BOWERY,PRINCE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466665,Sedan,Sedan,,, +10/24/2021,10:30,QUEENS,11434,40.6596509,-73.7738282,"(40.6596509, -73.7738282)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470333,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,14:00,BRONX,10451,40.8237208,-73.9176916,"(40.8237208, -73.9176916)",,,3120 PARK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4470629,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,14:30,BROOKLYN,11217,40.6812485,-73.9832067,"(40.6812485, -73.9832067)",,,169 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468740,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,15:41,,,40.8205439,-73.9307752,"(40.8205439, -73.9307752)",EXTERIOR STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468254,Bus,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,4:45,QUEENS,11369,40.7619894,-73.8693285,"(40.7619894, -73.8693285)",ASTORIA BOULEVARD,100 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4466988,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,17:23,QUEENS,,,,,,,238-10 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448335,Sedan,,,, +10/11/2021,10:50,BRONX,10472,40.833775,-73.86668,"(40.833775, -73.86668)",,,1352 BEACH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4474008,Sedan,,,, +10/15/2021,1:30,BROOKLYN,11229,40.5952718,-73.9304418,"(40.5952718, -73.9304418)",,,102 DICTUM COURT,0,0,0,0,0,0,0,0,Animals Action,Driver Inattention/Distraction,,,,4467390,Sedan,,,, +10/22/2021,16:40,QUEENS,11368,40.7449346,-73.8679112,"(40.7449346, -73.8679112)",JUNCTION BOULEVARD,44 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4470456,Moped,,,, +10/18/2021,6:55,QUEENS,11369,40.7600123,-73.8785949,"(40.7600123, -73.8785949)",31 AVENUE,90 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4468386,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,16:58,BROOKLYN,11238,40.6763934,-73.9718868,"(40.6763934, -73.9718868)",FLATBUSH AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Other Electronic Device,Unspecified,,,,4468903,Station Wagon/Sport Utility Vehicle,Bus,,, +10/10/2021,15:00,MANHATTAN,10013,40.7175491,-73.999311,"(40.7175491, -73.999311)",CANAL STREET,BAXTER STREET,,1,0,0,0,1,0,0,0,Brakes Defective,,,,,4468308,Bike,,,, +10/20/2021,14:30,BROOKLYN,11201,40.7025238,-73.9896238,"(40.7025238, -73.9896238)",FRONT STREET,WASHINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469875,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,7:50,BRONX,10462,40.835618,-73.8483562,"(40.835618, -73.8483562)",,,2287 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468620,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,18:00,MANHATTAN,10013,40.7161211,-73.9993143,"(40.7161211, -73.9993143)",,,71 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469339,Sedan,,,, +10/22/2021,12:21,,,40.6713212,-73.9280966,"(40.6713212, -73.9280966)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4470349,Sedan,Box Truck,,, +10/12/2021,15:35,,,40.6279777,-73.9416474,"(40.6279777, -73.9416474)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4466802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,3:10,MANHATTAN,10002,40.7163952,-73.9845353,"(40.7163952, -73.9845353)",BROOME STREET,RIDGE STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4470119,Bike,,,, +10/20/2021,19:30,,,40.5788242,-73.9862735,"(40.5788242, -73.9862735)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4469353,Sedan,Sedan,Garbage or Refuse,, +10/19/2021,12:40,,,40.7002122,-73.9538878,"(40.7002122, -73.9538878)",LEE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468959,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,9:30,QUEENS,11040,40.7261868,-73.7352341,"(40.7261868, -73.7352341)",LANGDALE STREET,81 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4467017,Sedan,,,, +10/24/2021,20:42,BRONX,10472,40.8294839,-73.8751981,"(40.8294839, -73.8751981)",,,1605 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470490,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,21:00,BROOKLYN,11217,40.6836718,-73.9755725,"(40.6836718, -73.9755725)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470582,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/13/2021,8:16,QUEENS,11413,40.6716843,-73.7564656,"(40.6716843, -73.7564656)",SPRINGFIELD BOULEVARD,141 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4466885,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,4:30,,,40.7582911,-73.8343081,"(40.7582911, -73.8343081)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4470776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/25/2021,8:10,QUEENS,11356,40.7786094,-73.8433854,"(40.7786094, -73.8433854)",125 STREET,23 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4470759,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,15:40,MANHATTAN,10002,40.717348,-73.9895945,"(40.717348, -73.9895945)",,,350 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469930,Sedan,Ambulance,,, +10/18/2021,12:03,BRONX,10452,40.8361093,-73.9223713,"(40.8361093, -73.9223713)",JEROME AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468638,E-Bike,Sedan,,, +10/05/2021,10:37,MANHATTAN,10007,40.7152372,-74.0133794,"(40.7152372, -74.0133794)",WEST STREET,MURRAY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4464557,Sedan,,,, +11/02/2021,3:15,STATEN ISLAND,10310,40.62582,-74.11917,"(40.62582, -74.11917)",PURCELL STREET,CLOVE ROAD,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4473791,Sedan,Sedan,Sedan,, +10/13/2021,21:45,BROOKLYN,11236,40.6377261,-73.9122774,"(40.6377261, -73.9122774)",,,730 EAST 83 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467098,Sedan,,,, +10/18/2021,11:30,STATEN ISLAND,10312,40.5529198,-74.1930668,"(40.5529198, -74.1930668)",,,262 ARDEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469807,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,12:25,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448364,Sedan,Sedan,,, +10/24/2021,19:11,,,40.7432811,-73.7447748,"(40.7432811, -73.7447748)",73 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470426,Sedan,Sedan,Pick-up Truck,, +10/21/2021,8:15,QUEENS,11361,40.7556474,-73.7719444,"(40.7556474, -73.7719444)",,,47-04 210 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469749,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,0:00,,,40.6932106,-73.9718725,"(40.6932106, -73.9718725)",ADELPHI STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4468569,Sedan,Sedan,,, +10/15/2021,15:42,QUEENS,11106,40.7581225,-73.9308631,"(40.7581225, -73.9308631)",,,35-32 29 STREET,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4467896,Sedan,E-Bike,,, +10/22/2021,20:18,BROOKLYN,11215,40.6627876,-73.988318,"(40.6627876, -73.988318)",6 AVENUE,PROSPECT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4470518,Sedan,Sedan,,, +10/22/2021,20:27,BRONX,10457,40.8477003,-73.9009602,"(40.8477003, -73.9009602)",WEBSTER AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470018,Sedan,E-Bike,,, +04/13/2022,0:40,,,40.67342,-73.95017,"(40.67342, -73.95017)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518637,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,23:55,,,40.867276,-73.9192147,"(40.867276, -73.9192147)",ISHAM STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466825,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,18:50,MANHATTAN,10018,40.755207,-73.996654,"(40.755207, -73.996654)",WEST 36 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4470820,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,21:30,BROOKLYN,11233,40.6792108,-73.9137389,"(40.6792108, -73.9137389)",BOYLAND STREET,HULL STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,13:43,BROOKLYN,11230,40.6165068,-73.9724558,"(40.6165068, -73.9724558)",,,228 AVENUE M,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,12:08,BRONX,10453,40.8468783,-73.9206057,"(40.8468783, -73.9206057)",UNIVERSITY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4468351,Sedan,,,, +09/14/2021,17:18,QUEENS,11434,40.6561603,-73.7673526,"(40.6561603, -73.7673526)",ROCKAWAY BOULEVARD,150 ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4457254,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,9:50,QUEENS,11377,40.7564052,-73.8979087,"(40.7564052, -73.8979087)",32 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4469453,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,9:30,BROOKLYN,11215,40.6702649,-73.9976172,"(40.6702649, -73.9976172)",HAMILTON AVENUE,14 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4467052,Van,Sedan,,, +11/02/2021,21:20,QUEENS,11411,40.697945,-73.73564,"(40.697945, -73.73564)",,,115-60 223 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473467,Sedan,,,, +10/17/2021,0:39,MANHATTAN,10003,40.7289783,-73.9901084,"(40.7289783, -73.9901084)",,,59 COOPER SQUARE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467821,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,7:13,,,40.7039752,-73.9230842,"(40.7039752, -73.9230842)",WILLOUGHBY AVENUE,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4469437,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,22:45,MANHATTAN,10031,40.8251381,-73.9513948,"(40.8251381, -73.9513948)",BROADWAY,WEST 143 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466904,Sedan,Sedan,,, +10/16/2021,13:30,QUEENS,11412,40.7103167,-73.7524614,"(40.7103167, -73.7524614)",FRANCIS LEWIS BOULEVARD,104 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4468772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,23:28,MANHATTAN,10039,40.8223104,-73.9385848,"(40.8223104, -73.9385848)",7 AVENUE,WEST 146 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4469704,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/12/2021,22:30,,,40.7472447,-73.8876479,"(40.7472447, -73.8876479)",ROOSEVELT AVENUE,78 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4466738,Station Wagon/Sport Utility Vehicle,Bike,,, +10/12/2021,2:45,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",17 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467567,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,0:00,QUEENS,11354,40.7745734,-73.8384845,"(40.7745734, -73.8384845)",,,25-70 ULMER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468923,Sedan,,,, +10/16/2021,10:35,QUEENS,11354,40.7650882,-73.8370347,"(40.7650882, -73.8370347)",COLLEGE POINT BOULEVARD,34 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,Unspecified,Unspecified,,4467649,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/15/2021,10:40,QUEENS,11419,40.6829686,-73.8282324,"(40.6829686, -73.8282324)",107 AVENUE,113 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4468012,Sedan,Sedan,,, +10/19/2021,18:35,,,40.6965487,-73.9057647,"(40.6965487, -73.9057647)",WYCKOFF AVENUE,,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469797,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,0:00,BROOKLYN,11203,40.657977,-73.938154,"(40.657977, -73.938154)",,,675 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470124,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,7:59,BRONX,10474,40.8181307,-73.8910002,"(40.8181307, -73.8910002)",GARRISON AVENUE,BARRETTO STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4468450,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,6:13,,,40.6303095,-74.166401,"(40.6303095, -74.166401)",SOUTH AVENUE,CONTINENTAL PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467074,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,11:28,BRONX,10466,40.8928522,-73.8556633,"(40.8928522, -73.8556633)",BYRON AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4469569,Sedan,,,, +10/21/2021,16:07,BRONX,10451,40.8173878,-73.922758,"(40.8173878, -73.922758)",EAST 149 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470635,Bus,Ambulance,,, +10/30/2021,7:07,,,40.670124,-73.95528,"(40.670124, -73.95528)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474000,Taxi,Sedan,,, +11/02/2021,13:40,BROOKLYN,11205,40.697998,-73.974525,"(40.697998, -73.974525)",,,63 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473730,Carry All,Van,,, +10/15/2021,23:20,BROOKLYN,11236,40.6501801,-73.9149225,"(40.6501801, -73.9149225)",,,9118 AVENUE B,0,0,0,0,0,0,0,0,Unspecified,,,,,4470256,Sedan,Sedan,,, +10/16/2021,12:01,BROOKLYN,11225,40.6662815,-73.9527249,"(40.6662815, -73.9527249)",,,240 CROWN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469172,Sedan,,,, +10/15/2021,16:52,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,16:25,QUEENS,11355,40.7542523,-73.8278248,"(40.7542523, -73.8278248)",MAIN STREET,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470710,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,11:30,QUEENS,11103,40.7620377,-73.9152504,"(40.7620377, -73.9152504)",,,30-59 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469037,Box Truck,Sedan,,, +10/15/2021,13:30,,,40.7371506,-73.9308149,"(40.7371506, -73.9308149)",BORDEN AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467662,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,17:03,MANHATTAN,10013,40.7256299,-74.0064175,"(40.7256299, -74.0064175)",,,260 SPRING STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468428,Moped,Sedan,,, +10/23/2021,3:18,BROOKLYN,11236,40.6370705,-73.8895981,"(40.6370705, -73.8895981)",,,1378 EAST 100 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470885,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/05/2021,7:28,,,40.7161961,-73.9974902,"(40.7161961, -73.9974902)",MANHATTAN BR LOWER,,,2,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4464678,Bike,Bike,,, +10/17/2021,15:00,QUEENS,11237,40.7043114,-73.9132917,"(40.7043114, -73.9132917)",CYPRESS AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,12:15,MANHATTAN,10002,40.7167783,-73.9896947,"(40.7167783, -73.9896947)",,,345 GRAND STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Backing Unsafely,,,,4470035,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/13/2021,13:30,BROOKLYN,11212,40.6594798,-73.912844,"(40.6594798, -73.912844)",,,423 HERZL STREET,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4467794,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/21/2021,13:30,BRONX,10460,40.8339076,-73.8959986,"(40.8339076, -73.8959986)",,,1441 BOSTON ROAD,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4470712,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,13:00,BROOKLYN,11236,40.6415167,-73.9174017,"(40.6415167, -73.9174017)",FOSTER AVENUE,EAST 82 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466755,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,4:25,MANHATTAN,10029,40.7870644,-73.941936,"(40.7870644, -73.941936)",EAST 102 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,9:25,,,40.6921205,-73.9843426,"(40.6921205, -73.9843426)",WILLOUGHBY STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469142,Sedan,Sedan,,, +10/12/2021,23:40,MANHATTAN,10021,40.7674712,-73.9564643,"(40.7674712, -73.9564643)",,,1331 1 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4468244,E-Bike,,,, +01/29/2022,8:41,BRONX,10459,40.822445,-73.885666,"(40.822445, -73.885666)",,,1360 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498525,Sedan,,,, +08/19/2021,6:40,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4448526,Sedan,Box Truck,,, +10/20/2021,7:20,QUEENS,11693,40.5888039,-73.8050769,"(40.5888039, -73.8050769)",,,216 BEACH 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470441,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,2:25,,,40.698081,-73.9253522,"(40.698081, -73.9253522)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466936,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,15:15,QUEENS,11378,40.7214324,-73.8927385,"(40.7214324, -73.8927385)",69 STREET,60 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469275,Bike,Bus,,, +10/14/2021,9:26,BROOKLYN,11228,40.6115503,-74.0130415,"(40.6115503, -74.0130415)",,,8662 14 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4467020,Station Wagon/Sport Utility Vehicle,Bike,,, +10/15/2021,15:55,,,40.6022303,-73.9342642,"(40.6022303, -73.9342642)",AVENUE U,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467617,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/17/2021,16:15,BROOKLYN,11236,40.638843,-73.9033859,"(40.638843, -73.9033859)",,,1252 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468195,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,18:31,MANHATTAN,10028,40.775461,-73.9472417,"(40.775461, -73.9472417)",,,1616 YORK AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468064,Station Wagon/Sport Utility Vehicle,Bike,,, +11/02/2021,18:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473985,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,8:30,,,40.6611381,-73.990052,"(40.6611381, -73.990052)",6 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467656,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,13:53,QUEENS,11373,40.73197,-73.8847763,"(40.73197, -73.8847763)",GRAND AVENUE,80 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4469321,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/13/2021,19:20,,,40.7729545,-73.9202715,"(40.7729545, -73.9202715)",HOYT AVENUE NORTH,26 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468644,Taxi,Sedan,,, +11/02/2021,18:21,MANHATTAN,10022,40.758614,-73.96767,"(40.758614, -73.96767)",,,231 EAST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473492,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,23:00,QUEENS,11106,40.7587284,-73.9227232,"(40.7587284, -73.9227232)",,,32-56 36 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470723,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/24/2021,12:00,MANHATTAN,10007,40.7152372,-74.0133794,"(40.7152372, -74.0133794)",WEST STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470694,Sedan,Taxi,,, +10/15/2021,0:00,,,40.6873414,-73.8610409,"(40.6873414, -73.8610409)",90 ROAD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4467698,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,10:41,QUEENS,11378,40.71736,-73.9064,"(40.71736, -73.9064)",59 DRIVE,60 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473691,Sedan,Tractor Truck Diesel,,, +10/21/2021,20:30,MANHATTAN,10025,40.8033054,-73.9662487,"(40.8033054, -73.9662487)",,,247 WEST 109 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4469723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Motorcycle,, +10/17/2021,19:50,,,40.8683414,-73.8327373,"(40.8683414, -73.8327373)",NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468789,Station Wagon/Sport Utility Vehicle,PK,,, +10/14/2021,20:10,BRONX,10469,40.8805957,-73.8507512,"(40.8805957, -73.8507512)",,,1455 STICKNEY PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4467992,Sedan,Sedan,Sedan,, +10/13/2021,10:45,,,40.840755,-73.8769079,"(40.840755, -73.8769079)",DEVOE AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,Unspecified,Unspecified,,4467003,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +10/13/2021,18:54,BRONX,10463,40.8875714,-73.9062642,"(40.8875714, -73.9062642)",WEST 238 STREET,FIELDSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467302,Ambulance,,,, +10/22/2021,22:50,QUEENS,11377,40.7463333,-73.8963254,"(40.7463333, -73.8963254)",ROOSEVELT AVENUE,69 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4469962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/23/2021,12:55,MANHATTAN,10012,40.7257724,-74.0008984,"(40.7257724, -74.0008984)",WEST BROADWAY,PRINCE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470848,Sedan,Sedan,,, +10/19/2021,7:45,,,40.8200975,-73.9550764,"(40.8200975, -73.9550764)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469190,Station Wagon/Sport Utility Vehicle,MTA BUS,,, +10/30/2021,8:03,BROOKLYN,11212,40.655945,-73.915565,"(40.655945, -73.915565)",,,9601 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474096,Sedan,,,, +10/13/2021,18:48,QUEENS,11365,40.7425993,-73.7875161,"(40.7425993, -73.7875161)",188 STREET,58 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466787,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,19:20,QUEENS,11385,40.7010081,-73.906142,"(40.7010081, -73.906142)",,,1717 PUTNAM AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Other Vehicular,,,,4468734,Motorcycle,,,, +10/16/2021,4:46,MANHATTAN,10002,40.7189463,-73.9754511,"(40.7189463, -73.9754511)",MANGIN STREET,EAST HOUSTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468574,Sedan,Bike,,, +10/24/2021,0:15,,,40.6418947,-73.9332342,"(40.6418947, -73.9332342)",AVENUE D,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4470283,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/20/2021,6:30,QUEENS,11428,40.7245706,-73.7340989,"(40.7245706, -73.7340989)",222 STREET,EDMORE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469289,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:16,MANHATTAN,10002,40.7092049,-73.9960612,"(40.7092049, -73.9960612)",SOUTH STREET,CATHERINE SLIP,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470235,Sedan,E-Bike,,, +10/16/2021,17:51,BROOKLYN,11226,40.655593,-73.9471574,"(40.655593, -73.9471574)",CLARKSON AVENUE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,16:00,,,40.6983855,-73.7868997,"(40.6983855, -73.7868997)",MERRICK BOULEVARD,108 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468878,Pick-up Truck,,,, +10/20/2021,16:41,BROOKLYN,11216,40.6888623,-73.9448706,"(40.6888623, -73.9448706)",,,263 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469270,Sedan,E-Scooter,,, +10/16/2021,3:45,BROOKLYN,11216,40.678723,-73.9529869,"(40.678723, -73.9529869)",BEDFORD AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470523,Ambulance,Taxi,,, +10/14/2021,15:40,BROOKLYN,11219,40.6374254,-73.9917828,"(40.6374254, -73.9917828)",,,1232 46 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4468460,E-Bike,,,, +11/02/2021,8:15,,,40.701572,-73.9313,"(40.701572, -73.9313)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473551,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,14:20,BROOKLYN,11201,40.6867007,-73.9981899,"(40.6867007, -73.9981899)",HENRY STREET,KANE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470665,Sedan,,,, +10/21/2021,8:55,BRONX,10472,40.8276556,-73.8860957,"(40.8276556, -73.8860957)",WHITLOCK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470734,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/15/2021,7:20,MANHATTAN,10040,40.8571297,-73.9246285,"(40.8571297, -73.9246285)",,,17 FORT GEORGE AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4469118,Sedan,Bike,,, +10/16/2021,18:40,MANHATTAN,10019,40.7645691,-73.9736365,"(40.7645691, -73.9736365)",GRAND ARMY PLAZA,CENTRAL PARK SOUTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468439,Taxi,Taxi,,, +10/13/2021,13:48,BROOKLYN,11206,40.7019114,-73.936979,"(40.7019114, -73.936979)",FLUSHING AVENUE,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468777,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/02/2021,23:47,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473926,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,7:15,QUEENS,11370,40.7703176,-73.8961572,"(40.7703176, -73.8961572)",,,73-07 21 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4470143,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,15:48,MANHATTAN,10035,40.8043758,-73.9374202,"(40.8043758, -73.9374202)",EAST 125 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470853,Sedan,,,, +10/16/2021,6:50,BROOKLYN,11228,40.6076551,-74.0170205,"(40.6076551, -74.0170205)",14 AVENUE,CROPSEY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4467582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,12:58,QUEENS,11378,40.724781,-73.8877809,"(40.724781, -73.8877809)",,,73-21 CALDWELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470398,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,1:02,,,40.7543484,-73.9769721,"(40.7543484, -73.9769721)",EAST 45 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469671,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/29/2021,8:00,BROOKLYN,11207,40.6818033,-73.9085148,"(40.6818033, -73.9085148)",BROADWAY,GRANITE STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4467280,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/19/2021,16:20,MANHATTAN,10128,40.7822139,-73.9599226,"(40.7822139, -73.9599226)",5 AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468907,Bus,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,8:48,STATEN ISLAND,10304,40.5985042,-74.0919292,"(40.5985042, -74.0919292)",RICHMOND ROAD,HUNTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4467534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,9:38,QUEENS,11420,40.6654902,-73.8195255,"(40.6654902, -73.8195255)",122 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468212,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/19/2021,9:36,QUEENS,11421,,,,,,87-14 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448609,Sedan,,,, +10/15/2021,16:10,,,40.692251,-73.950262,"(40.692251, -73.950262)",,,PULASKI STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470361,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,15:30,,,40.6891598,-73.8019729,"(40.6891598, -73.8019729)",INWOOD STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467148,Sedan,Sedan,,, +10/13/2021,11:40,BROOKLYN,11203,40.655881,-73.9437214,"(40.655881, -73.9437214)",,,477 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,21:30,,,40.7832211,-73.8458553,"(40.7832211, -73.8458553)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,9:36,BRONX,10456,40.8310577,-73.9058416,"(40.8310577, -73.9058416)",EAST 168 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470791,,,,, +10/19/2021,14:10,,,40.6637248,-73.7592558,"(40.6637248, -73.7592558)",145 ROAD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468888,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,9:10,QUEENS,11237,40.7047483,-73.9140305,"(40.7047483, -73.9140305)",CYPRESS AVENUE,HARMAN STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4468745,Sedan,,,, +10/17/2021,0:30,,,40.6101723,-74.1214496,"(40.6101723, -74.1214496)",MANOR ROAD,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468712,Sedan,,,, +10/16/2021,5:00,BROOKLYN,11223,40.6063696,-73.9824112,"(40.6063696, -73.9824112)",,,1648 WEST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467762,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,0:00,,,40.6466434,-73.9245917,"(40.6466434, -73.9245917)",BEVERLEY ROAD,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4469079,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,10:00,QUEENS,11378,40.730874,-73.8923408,"(40.730874, -73.8923408)",53 ROAD,72 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469140,Sedan,,,, +10/19/2021,4:54,MANHATTAN,10009,40.7281758,-73.9848573,"(40.7281758, -73.9848573)",EAST 9 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4468804,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,4:55,QUEENS,11101,40.7452378,-73.9376959,"(40.7452378, -73.9376959)",THOMSON AVENUE,SKILLMAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467550,Station Wagon/Sport Utility Vehicle,Taxi,,, +10/24/2021,4:05,MANHATTAN,10014,40.7387549,-74.0054958,"(40.7387549, -74.0054958)",HUDSON STREET,HORATIO STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4470175,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,12:35,QUEENS,11105,40.779567,-73.909385,"(40.779567, -73.909385)",,,20-73 28 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468625,Motorcycle,,,, +10/20/2021,15:09,BROOKLYN,11229,40.6027297,-73.9517828,"(40.6027297, -73.9517828)",,,2417 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469307,Sedan,Sedan,,, +10/21/2021,18:00,MANHATTAN,10009,40.7216783,-73.9806054,"(40.7216783, -73.9806054)",EAST 3 STREET,AVENUE C,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470203,Sedan,Motorcycle,,, +10/20/2021,8:35,,,40.8566878,-73.8692726,"(40.8566878, -73.8692726)",PELHAM PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469510,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:03,,,40.8328995,-73.8622655,"(40.8328995, -73.8622655)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,,,,4470288,Sedan,,,, +10/23/2021,4:11,QUEENS,11374,40.723939,-73.8559717,"(40.723939, -73.8559717)",,,98-01 67 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470078,Sedan,,,, +10/21/2021,16:09,BRONX,10468,40.8682829,-73.9010669,"(40.8682829, -73.9010669)",UNIVERSITY AVENUE,WEST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4469706,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,8:30,BROOKLYN,11249,40.7151057,-73.9627766,"(40.7151057, -73.9627766)",BERRY STREET,GRAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470328,Sedan,,,, +10/23/2021,14:38,BRONX,10475,40.8683245,-73.8303286,"(40.8683245, -73.8303286)",,,350 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470164,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,19:50,BROOKLYN,11209,40.6227293,-74.0313614,"(40.6227293, -74.0313614)",87 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470003,Sedan,Sedan,,, +10/20/2021,19:51,STATEN ISLAND,10312,40.5507894,-74.2009707,"(40.5507894, -74.2009707)",SUSSEX GREEN,HUGUENOT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469854,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,19:00,QUEENS,11105,40.7706682,-73.9085056,"(40.7706682, -73.9085056)",,,23-11 STEINWAY STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4470676,E-Bike,,,, +10/13/2021,18:00,BROOKLYN,11213,40.6787295,-73.9329702,"(40.6787295, -73.9329702)",HERKIMER STREET,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468039,Sedan,,,, +10/14/2021,21:30,BROOKLYN,11219,40.6303364,-73.9934143,"(40.6303364, -73.9934143)",55 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467767,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,7:15,MANHATTAN,10027,40.808445,-73.945,"(40.808445, -73.945)",LENOX AVENUE,WEST 126 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474071,Van,Motorscooter,,, +10/17/2021,6:25,QUEENS,11374,40.7277524,-73.8586078,"(40.7277524, -73.8586078)",SAUNDERS STREET,65 ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4468276,Sedan,Sedan,,, +10/17/2021,11:45,QUEENS,11422,40.6643565,-73.7345263,"(40.6643565, -73.7345263)",246 STREET,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468508,Sedan,,,, +10/20/2021,0:00,BRONX,10475,40.8687475,-73.826155,"(40.8687475, -73.826155)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469366,Box Truck,Sedan,,, +10/23/2021,0:49,,,40.7288469,-73.9097939,"(40.7288469, -73.9097939)",LONG ISLAND EXPRESSWAY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/17/2021,12:53,,,40.6828046,-73.8062211,"(40.6828046, -73.8062211)",VANWYCK EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468217,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,15:25,STATEN ISLAND,10312,40.52671,-74.17841,"(40.52671, -74.17841)",HYLAN BOULEVARD,WENDY DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473609,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,1:35,BRONX,10461,40.834473,-73.8293,"(40.834473, -73.8293)",,,3361 EAST TREMONT AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,12:23,BRONX,10462,40.8467897,-73.8655441,"(40.8467897, -73.8655441)",,,1846 HUNT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467864,Ambulance,Sedan,,, +10/14/2021,14:25,BRONX,10459,40.8210693,-73.8989332,"(40.8210693, -73.8989332)",EAST 163 STREET,WESTCHESTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467350,Sedan,Bike,,, +10/15/2021,14:04,QUEENS,11358,40.7636457,-73.7902647,"(40.7636457, -73.7902647)",192 STREET,CROCHERON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467502,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,6:30,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",134 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,View Obstructed/Limited,,,4473349,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,14:23,BROOKLYN,11226,40.6547394,-73.9564276,"(40.6547394, -73.9564276)",,,2036 BEDFORD AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467688,Sedan,,,, +10/20/2021,0:00,BROOKLYN,11205,40.6981167,-73.9775324,"(40.6981167, -73.9775324)",NORTH ELLIOTT PLACE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469174,Bus,Garbage or Refuse,,, +10/17/2021,7:50,QUEENS,11385,40.7117777,-73.9104143,"(40.7117777, -73.9104143)",GRANDVIEW AVENUE,AMORY COURT,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468744,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,15:50,BRONX,10461,40.847897,-73.844894,"(40.847897, -73.844894)",BASSETT AVENUE,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473559,Sedan,Sedan,,, +10/19/2021,12:40,BROOKLYN,11204,40.6288775,-73.980427,"(40.6288775, -73.980427)",48 STREET,18 AVENUE,,2,0,1,0,0,0,1,0,Unspecified,Unspecified,,,,4469123,Sedan,Sedan,,, +10/19/2021,16:20,QUEENS,11420,40.678749,-73.8204991,"(40.678749, -73.8204991)",LINDEN BOULEVARD,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4468980,Sedan,,,, +10/13/2021,6:20,BROOKLYN,11206,40.7090151,-73.9485398,"(40.7090151, -73.9485398)",LORIMER STREET,STAGG STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4466840,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,10:00,,,40.6103846,-74.1508442,"(40.6103846, -74.1508442)",SI EXPY WEST EX RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468756,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,8:30,BRONX,10451,40.827245,-73.9240474,"(40.827245, -73.9240474)",WALTON AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,15:55,BRONX,10456,40.8252295,-73.9075521,"(40.8252295, -73.9075521)",,,581 EAST 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470788,Bus,Bus,,, +11/02/2021,14:41,MANHATTAN,10017,40.75363,-73.97143,"(40.75363, -73.97143)",,,224 EAST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473442,Sedan,Sedan,,, +10/21/2021,18:51,,,40.7013345,-73.926838,"(40.7013345, -73.926838)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469782,Motorcycle,,,, +10/21/2021,13:40,BROOKLYN,11212,40.6550087,-73.9050701,"(40.6550087, -73.9050701)",LINDEN BOULEVARD,OSBORN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469764,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,11:17,BROOKLYN,11226,40.6457415,-73.9507706,"(40.6457415, -73.9507706)",,,143 EAST 28 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4467087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/19/2021,13:20,,,,,,QUEENSBORO BRIDGE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4448739,Sedan,,,, +10/21/2021,21:15,,,40.7342811,-73.8646235,"(40.7342811, -73.8646235)",HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469616,Sedan,Sedan,,, +10/16/2021,5:30,BRONX,10474,40.8091984,-73.8928932,"(40.8091984, -73.8928932)",OAK POINT AVENUE,TRUXTON STREET,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4469405,Moped,,,, +10/22/2021,20:29,,,40.6853486,-73.8586977,"(40.6853486, -73.8586977)",ATLANTIC AVENUE,82 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4470316,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,7:00,STATEN ISLAND,10301,40.6415504,-74.0814813,"(40.6415504, -74.0814813)",FORT PLACE,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469263,Sedan,,,, +10/23/2021,2:53,BROOKLYN,11221,40.699628,-73.9238321,"(40.699628, -73.9238321)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469985,Ambulance,Sedan,,, +10/15/2021,19:14,QUEENS,11373,40.7396983,-73.880212,"(40.7396983, -73.880212)",,,83-16 DONGAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467920,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/14/2021,2:51,BROOKLYN,11211,40.7149976,-73.9594724,"(40.7149976, -73.9594724)",NORTH 3 STREET,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4466889,Sedan,Sedan,,, +10/15/2021,19:30,QUEENS,11369,40.764828,-73.8698464,"(40.764828, -73.8698464)",100 STREET,25 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467836,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,15:00,QUEENS,11435,40.6961687,-73.8044909,"(40.6961687, -73.8044909)",SUTPHIN BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469537,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,0:00,BRONX,10473,40.8145783,-73.8499159,"(40.8145783, -73.8499159)",,,400 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469086,Sedan,Bus,,, +10/18/2021,14:10,BROOKLYN,11207,40.6605893,-73.885207,"(40.6605893, -73.885207)",,,2090 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468483,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,10:41,QUEENS,11413,40.6801176,-73.7532369,"(40.6801176, -73.7532369)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470537,Sedan,,,, +10/16/2021,17:58,QUEENS,11374,40.7276971,-73.8517781,"(40.7276971, -73.8517781)",67 AVENUE,102 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469719,Sedan,,,, +10/15/2021,5:30,,,40.6512655,-74.0039065,"(40.6512655, -74.0039065)",39 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467312,Bus,Sedan,,, +10/14/2021,16:05,MANHATTAN,10029,40.7944657,-73.939629,"(40.7944657, -73.939629)",EAST 112 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467285,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,17:42,BRONX,10469,40.86759,-73.85095,"(40.86759, -73.85095)",ARNOW AVENUE,THROOP AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519463,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,8:30,MANHATTAN,10001,40.746235,-73.98905,"(40.746235, -73.98905)",,,45 WEST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473625,Box Truck,Van,,, +10/15/2021,0:00,MANHATTAN,10014,40.7286048,-74.0053146,"(40.7286048, -74.0053146)",WEST HOUSTON STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468390,Sedan,,,, +10/17/2021,9:00,,,40.6873579,-73.9182933,"(40.6873579, -73.9182933)",CORNELIA STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468329,Sedan,,,, +10/25/2021,9:53,MANHATTAN,10065,40.7651908,-73.9574964,"(40.7651908, -73.9574964)",,,401 EAST 68 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4470803,Sedan,Sedan,,, +10/03/2021,14:15,BROOKLYN,11218,40.6431521,-73.9754682,"(40.6431521, -73.9754682)",BEVERLEY ROAD,EAST 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4464197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,15:20,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4473579,Pick-up Truck,Motorcycle,,, +10/16/2021,8:30,MANHATTAN,10025,40.8061148,-73.9593663,"(40.8061148, -73.9593663)",WEST 116 STREET,MORNINGSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468032,Van,Garbage or Refuse,,, +10/13/2021,20:48,QUEENS,11413,40.6670937,-73.7637567,"(40.6670937, -73.7637567)",NORTH CONDUIT AVENUE,181 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Other Vehicular,,,,4468180,Sedan,Sedan,,, +11/02/2021,23:30,MANHATTAN,10019,40.76329,-73.980705,"(40.76329, -73.980705)",,,159 WEST 54 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473530,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,18:40,,,40.8384262,-73.9416888,"(40.8384262, -73.9416888)",BROADWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467367,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,17:57,BROOKLYN,11226,40.6487403,-73.9491962,"(40.6487403, -73.9491962)",,,1531 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4467814,Sedan,Sedan,,, +10/20/2021,11:26,,,40.7229781,-74.005058,"(40.7229781, -74.005058)",GRAND STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469188,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,8:00,BRONX,10474,40.8147963,-73.8863593,"(40.8147963, -73.8863593)",,,703 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470115,Sedan,,,, +10/12/2021,2:14,BRONX,10458,40.8622592,-73.8958844,"(40.8622592, -73.8958844)",EAST FORDHAM ROAD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466382,Armored Truck,Sedan,,, +10/16/2021,9:54,,,40.6723802,-73.9474794,"(40.6723802, -73.9474794)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467952,Sedan,Sedan,,, +10/20/2021,15:07,QUEENS,11366,40.7360731,-73.7735507,"(40.7360731, -73.7735507)",199 STREET,73 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469606,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,19:00,QUEENS,11691,40.60322,-73.74893,"(40.60322, -73.74893)",,,10-12 NAMEOKE STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4473653,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,14:55,QUEENS,11101,40.7429324,-73.9546991,"(40.7429324, -73.9546991)",,,5-47 50 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467135,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,13:15,QUEENS,11385,40.7017306,-73.8820332,"(40.7017306, -73.8820332)",,,69-20 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469894,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,22:45,BROOKLYN,11205,40.6931332,-73.9698315,"(40.6931332, -73.9698315)",VANDERBILT AVENUE,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,20:00,QUEENS,11101,40.740493,-73.9296675,"(40.740493, -73.9296675)",36 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468375,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,10:53,BRONX,10458,40.8660891,-73.8826747,"(40.8660891, -73.8826747)",BEDFORD PARK BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467589,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/16/2021,20:34,MANHATTAN,10014,40.7335892,-74.0073428,"(40.7335892, -74.0073428)",WEST 10 STREET,GREENWICH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468757,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,18:00,BROOKLYN,11225,40.6564087,-73.9592668,"(40.6564087, -73.9592668)",,,22 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468540,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,10:49,MANHATTAN,10006,40.7110321,-74.0145328,"(40.7110321, -74.0145328)",WEST STREET,LIBERTY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467000,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,0:46,,,40.679729,-73.7616136,"(40.679729, -73.7616136)",FARMERS BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468601,Sedan,Trl,,, +11/02/2021,18:05,,,40.676075,-73.74577,"(40.676075, -73.74577)",225 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473763,,,,, +10/19/2021,14:40,BROOKLYN,11211,40.7113227,-73.9597757,"(40.7113227, -73.9597757)",,,244 ROEBLING STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468963,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/13/2021,6:06,MANHATTAN,10065,40.7602762,-73.9581437,"(40.7602762, -73.9581437)",,,500 EAST 62 STREET,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4466857,Pick-up Truck,,,, +10/23/2021,7:00,QUEENS,11435,40.7021197,-73.8139389,"(40.7021197, -73.8139389)",,,89-14 138 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470570,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/24/2021,19:35,,,40.7571667,-73.8221106,"(40.7571667, -73.8221106)",BOWNE STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470755,Station Wagon/Sport Utility Vehicle,Bus,,, +10/21/2021,11:10,BROOKLYN,11207,40.6607352,-73.8996518,"(40.6607352, -73.8996518)",VAN SIDERIN AVENUE,NEWPORT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469686,Van,,,, +10/14/2021,17:25,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467730,Bus,Sedan,,, +10/21/2021,9:20,BRONX,10459,40.8246558,-73.8919289,"(40.8246558, -73.8919289)",SOUTHERN BOULEVARD,WESTCHESTER AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4469474,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,22:25,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4519739,Sedan,Sedan,,, +10/24/2021,1:00,BROOKLYN,11217,40.6797343,-73.9743118,"(40.6797343, -73.9743118)",FLATBUSH AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4470550,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,16:26,BROOKLYN,11236,40.6329536,-73.9041503,"(40.6329536, -73.9041503)",EAST 85 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,17:47,MANHATTAN,10035,40.8064149,-73.9422623,"(40.8064149, -73.9422623)",EAST 125 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/01/2022,8:15,,,40.598713,-74.124,"(40.598713, -74.124)",MELBA STREET,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519217,Sedan,,,, +10/20/2021,7:32,BROOKLYN,11207,40.6706265,-73.8955418,"(40.6706265, -73.8955418)",BELMONT AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4469235,E-Bike,,,, +10/24/2021,7:30,,,40.7161941,-73.8264333,"(40.7161941, -73.8264333)",VANWYCK EXPRESSWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4470505,Sedan,,,, +10/14/2021,7:44,STATEN ISLAND,10314,40.6106231,-74.0977697,"(40.6106231, -74.0977697)",STATEN ISLAND EXPRESSWAY,CLOVE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467180,Sedan,,,, +10/22/2021,11:39,,,40.6896895,-73.9923627,"(40.6896895, -73.9923627)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469879,Box Truck,Flat Bed,,, +10/15/2021,18:15,BRONX,10459,40.8163185,-73.8962127,"(40.8163185, -73.8962127)",SOUTHERN BOULEVARD,LONGWOOD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467630,Sedan,Motorbike,,, +10/14/2021,16:30,BROOKLYN,11207,40.6756249,-73.8987786,"(40.6756249, -73.8987786)",ATLANTIC AVENUE,GEORGIA AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467268,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +10/19/2021,18:15,,,40.6554579,-73.9797539,"(40.6554579, -73.9797539)",PROSPECT EXPRESSWAY RAMP,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469101,Sedan,Sedan,Box Truck,, +10/18/2021,17:30,BROOKLYN,11212,40.659477,-73.908131,"(40.659477, -73.908131)",ROCKAWAY AVENUE,NEWPORT STREET,,1,0,1,0,0,0,0,0,,,,,,4469155,,,,, +11/02/2021,12:49,MANHATTAN,10017,40.752693,-73.97305,"(40.752693, -73.97305)",3 AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473799,Flat Bed,Sedan,,, +10/23/2021,20:40,QUEENS,11374,40.7185724,-73.8588044,"(40.7185724, -73.8588044)",,,66-33 ALDERTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470880,Sedan,,,, +10/14/2021,10:38,MANHATTAN,10007,40.7103272,-74.0095442,"(40.7103272, -74.0095442)",BROADWAY,JOHN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467386,Sedan,Sedan,,, +10/13/2021,6:10,,,40.8120666,-73.8957823,"(40.8120666, -73.8957823)",BARRY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466691,Sedan,Carry All,,, +11/02/2021,14:00,,,40.72165,-73.94196,"(40.72165, -73.94196)",MEEKER AVENUE,MONITOR STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473521,Sedan,Sedan,,, +10/23/2021,15:15,,,40.8530276,-73.918256,"(40.8530276, -73.918256)",SEDGWICK AVENUE,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4470646,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:50,,,40.7194758,-73.7926259,"(40.7194758, -73.7926259)",GRAND CENTRAL PARKWAY,173 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468522,Sedan,,,, +10/14/2021,19:15,BROOKLYN,11208,40.680015,-73.8774282,"(40.680015, -73.8774282)",ATLANTIC AVENUE,LOGAN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467270,Sedan,Motorbike,,, +10/18/2021,10:45,MANHATTAN,10001,40.74745,-74.000853,"(40.74745, -74.000853)",,,233 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470836,Sedan,Pick-up Truck,,, +10/22/2021,20:50,BROOKLYN,11235,40.5946375,-73.9330114,"(40.5946375, -73.9330114)",KNAPP STREET,AVENUE X,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4469926,Sedan,Sedan,,, +11/02/2021,15:20,,,40.655895,-74.00591,"(40.655895, -74.00591)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473431,Sedan,Sedan,,, +10/18/2021,10:12,,,40.6960153,-73.9841326,"(40.6960153, -73.9841326)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468407,Box Truck,Sedan,,, +10/02/2021,19:50,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",QUEENS MIDTOWN TUNNEL,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4466956,Sedan,Sedan,,, +10/18/2021,10:26,QUEENS,11385,40.7130236,-73.9063808,"(40.7130236, -73.9063808)",,,56-17 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4468731,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/30/2021,13:30,,,40.6771023,-73.9247844,"(40.6771023, -73.9247844)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468108,E-Bike,,,, +10/14/2021,13:00,MANHATTAN,10012,40.7230731,-73.9966451,"(40.7230731, -73.9966451)",,,253 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468299,Sedan,Sedan,,, +10/16/2021,13:10,BRONX,10466,40.8924774,-73.8544923,"(40.8924774, -73.8544923)",EAST 233 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4467985,Sedan,Sedan,,, +10/20/2021,0:58,BROOKLYN,11226,40.6447735,-73.9547296,"(40.6447735, -73.9547296)",BEVERLEY ROAD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469008,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,11:00,,,40.588562,-74.14584,"(40.588562, -74.14584)",FOREST HILL ROAD,ROCKLAND AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4473381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,15:50,BROOKLYN,11219,40.6315744,-73.9954605,"(40.6315744, -73.9954605)",NEW UTRECHT AVENUE,55 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468464,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,15:35,MANHATTAN,10007,40.7164669,-74.0130802,"(40.7164669, -74.0130802)",WARREN STREET,WEST STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469550,Sedan,,,, +10/15/2021,14:00,,,40.6259011,-74.1347738,"(40.6259011, -74.1347738)",,,1383 FOREST AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467594,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,17:02,,,40.703556,-73.7880409,"(40.703556, -73.7880409)",LIBERTY AVENUE,170 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470572,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,0:45,,,40.6486499,-73.9503351,"(40.6486499, -73.9503351)",AVENUE D,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467817,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,0:36,MANHATTAN,10010,40.7429104,-73.9928041,"(40.7429104, -73.9928041)",AVENUE OF THE AMERICAS,WEST 23 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469167,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,14:05,QUEENS,11364,40.7391685,-73.763613,"(40.7391685, -73.763613)",73 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469819,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,13:55,BROOKLYN,11204,40.6277386,-73.9815658,"(40.6277386, -73.9815658)",50 STREET,18 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,22:00,,,40.8264277,-73.9504508,"(40.8264277, -73.9504508)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467900,Bike,Sedan,,, +10/22/2021,6:20,MANHATTAN,10036,40.760716,-73.9947568,"(40.760716, -73.9947568)",,,603 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469716,Sedan,Flat Bed,,, +10/15/2021,2:05,QUEENS,11372,40.7470012,-73.8910513,"(40.7470012, -73.8910513)",,,74-01 ROOSEVELT AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467307,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +10/24/2021,15:58,STATEN ISLAND,10301,40.600571,-74.1133837,"(40.600571, -74.1133837)",TODT HILL ROAD,MERRICK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470732,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,17:25,,,40.6584172,-73.7676691,"(40.6584172, -73.7676691)",BREWER BOULEVARD,149 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468895,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,5:16,QUEENS,11377,40.734467,-73.89415,"(40.734467, -73.89415)",,,51-36 70 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474151,Sedan,Sedan,,, +10/21/2021,12:52,BROOKLYN,11228,40.619526,-73.9982669,"(40.619526, -73.9982669)",,,1567 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469477,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/12/2021,12:00,,,40.6706551,-73.9133909,"(40.6706551, -73.9133909)",EASTERN PARKWAY,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466751,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,11:00,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",GRAND CONCOURSE,MOUNT EDEN PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473656,Sedan,,,, +10/14/2021,15:57,QUEENS,11101,40.7427803,-73.9588593,"(40.7427803, -73.9588593)",,,1-50 51 Ave,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467191,Bike,Sedan,,, +10/20/2021,10:45,QUEENS,11426,40.7266697,-73.729144,"(40.7266697, -73.729144)",BRADDOCK AVENUE,239 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469185,Sedan,,,, +10/17/2021,20:00,QUEENS,11385,40.6971366,-73.8937188,"(40.6971366, -73.8937188)",61 STREET,SAINT FELIX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468480,Sedan,,,, +10/21/2021,19:47,,,40.7972169,-73.9699144,"(40.7972169, -73.9699144)",WEST 100 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469895,Bike,,,, +10/19/2021,0:00,,,40.847379,-73.9223112,"(40.847379, -73.9223112)",WEST 174 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4469052,Sedan,,,, +10/17/2021,13:50,,,40.7002206,-73.9863892,"(40.7002206, -73.9863892)",SANDS STREET,JAY STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4468033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,3:50,,,40.7842453,-73.9470878,"(40.7842453, -73.9470878)",EAST 96 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466704,Sedan,,,, +10/20/2021,16:10,BRONX,10472,40.8300564,-73.8649851,"(40.8300564, -73.8649851)",GLEASON AVENUE,TAYLOR AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469555,Sedan,Sedan,,, +10/14/2021,13:46,MANHATTAN,10112,40.7592391,-73.9790467,"(40.7592391, -73.9790467)",,,50 WEST 50 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467072,Taxi,Bike,,, +10/17/2021,2:08,,,40.6661388,-73.9480682,"(40.6661388, -73.9480682)",NEW YORK AVENUE,,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,Unspecified,,,4467753,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/16/2021,14:16,STATEN ISLAND,10314,40.6190078,-74.1314686,"(40.6190078, -74.1314686)",JEWETT AVENUE,CONSTANT AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4468432,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/24/2021,16:14,BROOKLYN,11205,40.6930414,-73.9704306,"(40.6930414, -73.9704306)",,,388 MYRTLE AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4470392,Sedan,Bike,,, +10/15/2021,15:15,BROOKLYN,11220,40.6465774,-74.0052035,"(40.6465774, -74.0052035)",45 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470379,,,,, +10/24/2021,20:36,QUEENS,11419,40.6913591,-73.8375359,"(40.6913591, -73.8375359)",108 STREET,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470749,Sedan,,,, +10/22/2021,19:56,BRONX,10451,40.8185601,-73.9273161,"(40.8185601, -73.9273161)",EAST 149 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4470202,Sedan,Moped,,, +10/21/2021,18:22,,,40.7617706,-73.979056,"(40.7617706, -73.979056)",WEST 53 STREET,,,1,0,0,0,1,0,0,0,Illnes,Passing or Lane Usage Improper,,,,4470009,Station Wagon/Sport Utility Vehicle,Bike,,, +10/21/2021,8:00,QUEENS,11420,40.6750028,-73.8243414,"(40.6750028, -73.8243414)",SUTTER AVENUE,114 PLACE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4469417,Sedan,Sedan,,, +10/14/2021,19:00,BROOKLYN,11207,40.6647513,-73.8940407,"(40.6647513, -73.8940407)",LIVONIA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4467271,Sedan,,,, +10/24/2021,5:10,QUEENS,11365,40.7367232,-73.807072,"(40.7367232, -73.807072)",,,161-14 65 AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,Unspecified,,4470254,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +10/15/2021,18:57,STATEN ISLAND,10312,40.5461369,-74.1740677,"(40.5461369, -74.1740677)",MOFFETT STREET,PETRUS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469035,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,3:00,BROOKLYN,11221,40.6944341,-73.9209249,"(40.6944341, -73.9209249)",,,81 MENAHAN STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468332,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,14:30,BROOKLYN,11203,40.6397952,-73.9291071,"(40.6397952, -73.9291071)",UTICA AVENUE,FOSTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470276,Station Wagon/Sport Utility Vehicle,Bike,,, +10/12/2021,10:30,BRONX,10474,40.8193144,-73.8853966,"(40.8193144, -73.8853966)",,,1345 SENECA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468410,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,15:15,QUEENS,11420,40.6790056,-73.8195862,"(40.6790056, -73.8195862)",LINDEN BOULEVARD,120 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468006,Sedan,Bus,,, +10/19/2021,16:30,,,40.6792815,-74.0036017,"(40.6792815, -74.0036017)",HAMILTON AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468900,Dump,Box Truck,,, +10/16/2021,20:48,QUEENS,11412,40.6953722,-73.763249,"(40.6953722, -73.763249)",QUENCER ROAD,MEXICO STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4468197,Sedan,Sedan,,, +10/15/2021,19:50,QUEENS,11385,40.7129023,-73.906077,"(40.7129023, -73.906077)",METROPOLITAN AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467535,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,15:15,QUEENS,11373,40.7454622,-73.8758281,"(40.7454622, -73.8758281)",FORLEY STREET,WHITNEY AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468024,Sedan,E-Scooter,,, +10/03/2021,19:05,QUEENS,11421,40.6847527,-73.860765,"(40.6847527, -73.860765)",ATLANTIC AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,13:10,QUEENS,11433,40.6960029,-73.7974808,"(40.6960029, -73.7974808)",107 AVENUE,156 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Backing Unsafely,,,,4468768,Sedan,Sedan,,, +10/19/2021,9:35,BROOKLYN,11211,40.7161106,-73.9555232,"(40.7161106, -73.9555232)",,,94 ROEBLING STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469868,Taxi,Box Truck,,, +10/25/2021,6:15,QUEENS,11356,40.7830159,-73.8439844,"(40.7830159, -73.8439844)",,,18-23 124 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470764,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,16:27,BROOKLYN,11221,40.6979187,-73.9208228,"(40.6979187, -73.9208228)",HARMAN STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467557,Station Wagon/Sport Utility Vehicle,Moped,,, +10/18/2021,16:56,BROOKLYN,11208,40.6741348,-73.8715988,"(40.6741348, -73.8715988)",EUCLID AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4468635,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,12:32,BROOKLYN,11233,40.6794127,-73.9108972,"(40.6794127, -73.9108972)",,,126 HULL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467800,Flat Bed,,,, +10/22/2021,18:27,BROOKLYN,11222,40.7295015,-73.9539577,"(40.7295015, -73.9539577)",MILTON STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4469905,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,22:53,,,40.511804,-74.2500345,"(40.511804, -74.2500345)",ASPEN KNOLL WAY,BIANCA COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469808,Sedan,,,, +10/20/2021,18:04,BRONX,10460,40.836539,-73.8933768,"(40.836539, -73.8933768)",CHARLOTTE STREET,CROTONA PARK EAST,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470705,Sedan,Sedan,,, +10/18/2021,12:00,BROOKLYN,11238,40.6857553,-73.9702042,"(40.6857553, -73.9702042)",,,387 ADELPHI STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469285,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,11:00,QUEENS,11413,40.6586056,-73.7561657,"(40.6586056, -73.7561657)",,,225-14 147 AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4470304,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,4:01,BRONX,10472,40.8302944,-73.8758834,"(40.8302944, -73.8758834)",,,1235 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467477,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,6:00,BROOKLYN,11212,40.6666704,-73.9218137,"(40.6666704, -73.9218137)",,,2032 UNION STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4469450,Sedan,,,, +10/13/2021,15:00,BROOKLYN,11234,40.6074131,-73.9262495,"(40.6074131, -73.9262495)",AVENUE U,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466775,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,19:30,BROOKLYN,11212,40.6661335,-73.9051858,"(40.6661335, -73.9051858)",,,376 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470197,Station Wagon/Sport Utility Vehicle,,,, +09/15/2021,14:05,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",THROGS NECK BRIDGE,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4460385,Carry All,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,0:22,MANHATTAN,10013,40.7223244,-74.0117465,"(40.7223244, -74.0117465)",WEST STREET,LAIGHT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469998,Sedan,Ambulance,,, +10/23/2021,2:05,QUEENS,11419,40.6859878,-73.8178296,"(40.6859878, -73.8178296)",,,125-09 107 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4469964,Sedan,,,, +10/16/2021,0:30,MANHATTAN,10030,40.8165011,-73.9465455,"(40.8165011, -73.9465455)",8 AVENUE,WEST 135 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467636,Sedan,Sedan,,, +10/14/2021,17:55,,,40.5992491,-74.0014332,"(40.5992491, -74.0014332)",CROPSEY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467144,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,12:31,,,40.696081,-73.9693938,"(40.696081, -73.9693938)",PARK AVENUE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467190,Sedan,Bus,,, +10/18/2021,2:00,QUEENS,11426,40.7440247,-73.7189004,"(40.7440247, -73.7189004)",,,77-52 252 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468567,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,16:37,BRONX,10475,40.8896795,-73.8205914,"(40.8896795, -73.8205914)",BOSTON ROAD,MCOWEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470402,Motorcycle,Bus,,, +10/24/2021,19:15,QUEENS,11418,40.7003604,-73.8298012,"(40.7003604, -73.8298012)",,,120-05 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470463,Tractor Truck Diesel,,,, +10/16/2021,5:53,BRONX,10455,40.8163066,-73.9080481,"(40.8163066, -73.9080481)",WESTCHESTER AVENUE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467721,Sedan,Sedan,,, +10/09/2021,7:18,BROOKLYN,11230,40.6140296,-73.973995,"(40.6140296, -73.973995)",MC DONALD AVENUE,60 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4467848,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/12/2022,7:25,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519360,Dump,Sedan,,, +10/20/2021,11:10,BROOKLYN,11225,40.6647903,-73.9570124,"(40.6647903, -73.9570124)",,,1715 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469177,Sedan,,,, +10/19/2021,19:02,,,40.7399638,-73.8175844,"(40.7399638, -73.8175844)",153 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,23:30,QUEENS,11373,40.7445859,-73.8861731,"(40.7445859, -73.8861731)",,,79-01 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469009,Sedan,Sedan,,, +10/17/2021,4:15,QUEENS,11374,40.7309325,-73.8645761,"(40.7309325, -73.8645761)",62 DRIVE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,Unspecified,4468779,Sedan,Sedan,Sedan,Sedan,Taxi +10/12/2021,16:00,QUEENS,11433,40.701033,-73.7885259,"(40.701033, -73.7885259)",,,168-30 105 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467057,Sedan,,,, +10/18/2021,13:30,,,40.7073058,-73.7512138,"(40.7073058, -73.7512138)",HOLLIS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468785,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,1:45,,,40.64431,-73.93155,"(40.64431, -73.93155)",CLARENDON ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474085,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,8:41,QUEENS,11103,40.7668271,-73.914652,"(40.7668271, -73.914652)",,,25-75 37 STREET,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,,,,4470030,Sedan,Sedan,,, +10/14/2021,18:00,BROOKLYN,11214,40.5967458,-73.9979871,"(40.5967458, -73.9979871)",CROPSEY AVENUE,BAY 31 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4467768,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,17:10,MANHATTAN,10065,40.7633655,-73.9592408,"(40.7633655, -73.9592408)",1 AVENUE,EAST 65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468082,Sedan,Van,,, +10/23/2021,4:22,QUEENS,11377,40.7525875,-73.9031006,"(40.7525875, -73.9031006)",,,33-39 58 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4469988,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/23/2021,15:15,BROOKLYN,11220,40.6418837,-74.0064968,"(40.6418837, -74.0064968)",51 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470106,E-Bike,Sedan,,, +10/17/2021,6:09,MANHATTAN,10027,40.8129961,-73.9501429,"(40.8129961, -73.9501429)",,,380 WEST 129 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468999,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,18:45,QUEENS,11433,40.70139,-73.79009,"(40.70139, -73.79009)",,,104-13 MERRICK BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4474118,Sedan,Pick-up Truck,,, +10/19/2021,15:18,BROOKLYN,11210,40.6330046,-73.95673,"(40.6330046, -73.95673)",GLENWOOD ROAD,EAST 21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469131,FDNY FIRE,Sedan,,, +10/07/2021,15:45,,,40.7430802,-73.9547366,"(40.7430802, -73.9547366)",QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4467422,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,10:12,MANHATTAN,10002,40.7092049,-73.9960612,"(40.7092049, -73.9960612)",SOUTH STREET,CATHERINE SLIP,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4470608,Sedan,Bike,,, +10/20/2021,16:20,BROOKLYN,11212,40.6659076,-73.9185358,"(40.6659076, -73.9185358)",SUTTER AVENUE,GRAFTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469317,Station Wagon/Sport Utility Vehicle,LIMO,,, +10/22/2021,12:25,,,40.8593269,-73.9313133,"(40.8593269, -73.9313133)",BROADWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470857,Sedan,Bike,,, +10/19/2021,12:30,BROOKLYN,11231,40.6792938,-74.0005041,"(40.6792938, -74.0005041)",,,32 3 PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468952,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,11:20,BROOKLYN,11238,40.6875928,-73.9646273,"(40.6875928, -73.9646273)",SAINT JAMES PLACE,CLIFTON PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467932,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,17:43,BROOKLYN,11205,40.6933432,-73.9736239,"(40.6933432, -73.9736239)",,,331A MYRTLE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468864,Station Wagon/Sport Utility Vehicle,Bike,,, +10/15/2021,7:45,MANHATTAN,10021,40.7681729,-73.9615242,"(40.7681729, -73.9615242)",,,1201 3 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4467322,Station Wagon/Sport Utility Vehicle,Bike,,, +11/01/2021,13:55,BROOKLYN,11225,40.66336,-73.95975,"(40.66336, -73.95975)",EMPIRE BOULEVARD,MC KEEVER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474001,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,14:45,BROOKLYN,11226,40.6489032,-73.9646386,"(40.6489032, -73.9646386)",,,1629 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470874,Sedan,PICK-UP TR,,, +10/24/2021,18:03,BROOKLYN,11229,40.6005377,-73.9408919,"(40.6005377, -73.9408919)",AVENUE U,HARING STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4470565,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,7:15,BROOKLYN,11220,40.6448634,-74.0174696,"(40.6448634, -74.0174696)",55 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4469582,Sedan,Sedan,,, +10/16/2021,8:20,,,40.7678602,-73.9640756,"(40.7678602, -73.9640756)",EAST 68 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468905,Van,Sedan,,, +10/20/2021,0:00,BRONX,10468,40.8624717,-73.9002838,"(40.8624717, -73.9002838)",EAST FORDHAM ROAD,WALTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469427,Sedan,Sedan,,, +10/18/2021,15:20,BRONX,10453,40.8501811,-73.9105821,"(40.8501811, -73.9105821)",JEROME AVENUE,EAST 177 STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4469067,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,14:30,BRONX,10458,40.85422,-73.8900301,"(40.85422, -73.8900301)",EAST 184 STREET,HOFFMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468319,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,18:40,,,40.653267,-73.9392594,"(40.653267, -73.9392594)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470282,Sedan,Sedan,,, +10/22/2021,13:55,QUEENS,11361,40.7600833,-73.7702745,"(40.7600833, -73.7702745)",213 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469912,Sedan,,,, +10/13/2021,8:15,MANHATTAN,10002,40.7122076,-73.9967072,"(40.7122076, -73.9967072)",,,69 MADISON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466925,ambulance,Bus,,, +10/24/2021,16:00,,,40.6735603,-73.9362632,"(40.6735603, -73.9362632)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470439,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,19:55,QUEENS,11412,40.7025561,-73.7623182,"(40.7025561, -73.7623182)",194 STREET,111 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4469873,Bike,,,, +10/23/2021,1:45,BROOKLYN,11212,40.6572284,-73.9007564,"(40.6572284, -73.9007564)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470180,Sedan,,,, +11/02/2021,6:50,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",FARMERS BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4473285,Sedan,,,, +10/23/2021,7:30,BRONX,10465,40.8215671,-73.8257545,"(40.8215671, -73.8257545)",,,560 BALCOM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470158,Sedan,,,, +10/19/2021,19:15,,,40.5777999,-73.9605636,"(40.5777999, -73.9605636)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469349,Sedan,Sedan,,, +10/13/2021,14:21,BROOKLYN,11229,40.6116845,-73.9469328,"(40.6116845, -73.9469328)",AVENUE P,EAST 27 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,21:20,,,40.59779,-73.9462309,"(40.59779, -73.9462309)",BEDFORD AVENUE,,,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Unspecified,,,,4469979,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,14:50,BRONX,10466,40.8852032,-73.845034,"(40.8852032, -73.845034)",,,1170 EAST 229 DRIVE SOUTH,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,12:05,QUEENS,11411,40.7018198,-73.7404929,"(40.7018198, -73.7404929)",,,216-14 114 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4467668,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,10:05,QUEENS,11358,40.7497658,-73.8028755,"(40.7497658, -73.8028755)",OAK AVENUE,164 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468925,Sedan,,,, +10/17/2021,19:30,,,40.6906946,-73.9572731,"(40.6906946, -73.9572731)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468935,Motorcycle,Sedan,,, +10/20/2021,8:05,BROOKLYN,11203,40.6485398,-73.9242472,"(40.6485398, -73.9242472)",KINGS HIGHWAY,TILDEN AVENUE,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469229,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,15:00,,,40.6245928,-74.1412853,"(40.6245928, -74.1412853)",FOREST AVENUE,DECKER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468489,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,20:00,QUEENS,11368,40.7405818,-73.8587497,"(40.7405818, -73.8587497)",,,54-04 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470407,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,18:23,MANHATTAN,10027,40.8115084,-73.9464773,"(40.8115084, -73.9464773)",WEST 129 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Traffic Control Disregarded,,,,4469345,Sedan,MOPED,,, +10/13/2021,10:20,BRONX,10473,40.8220118,-73.858263,"(40.8220118, -73.858263)",LAFAYETTE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,20:30,MANHATTAN,10075,40.7769214,-73.9618657,"(40.7769214, -73.9618657)",,,1046 MADISON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468065,Sedan,Sedan,,, +10/17/2021,0:38,,,40.8477003,-73.9009602,"(40.8477003, -73.9009602)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,,,,4469462,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,11:30,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468984,Sedan,Sedan,,, +10/14/2021,19:45,QUEENS,11372,40.7487047,-73.8852045,"(40.7487047, -73.8852045)",,,37-30 81 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4469540,Sedan,Sedan,,, +10/30/2021,21:15,,,40.650703,-73.920586,"(40.650703, -73.920586)",SNYDER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474093,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,3:40,,,40.6803817,-73.8596637,"(40.6803817, -73.8596637)",78 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470315,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,17:00,,,40.6969748,-73.906525,"(40.6969748, -73.906525)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470052,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,10:52,QUEENS,11370,40.625818,-73.9769219,"(40.625818, -73.9769219)",30 AVENUE,70 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470041,Sedan,Sedan,,, +10/15/2021,18:04,STATEN ISLAND,10304,40.6090573,-74.0892245,"(40.6090573, -74.0892245)",NARROWS ROAD NORTH,RHINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467890,Sedan,Sedan,,, +10/21/2021,8:25,BROOKLYN,11217,40.6836718,-73.9755725,"(40.6836718, -73.9755725)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469647,Tractor Truck Diesel,,,, +10/19/2021,22:45,BRONX,10470,40.8985689,-73.854801,"(40.8985689, -73.854801)",,,686C NEREID AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469200,Sedan,Sedan,,, +10/21/2021,20:09,,,40.7601858,-73.7678427,"(40.7601858, -73.7678427)",41 STREET,BELL BLVD,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4470419,Station Wagon/Sport Utility Vehicle,Bus,,, +10/20/2021,20:20,BROOKLYN,11207,40.6627814,-73.8808552,"(40.6627814, -73.8808552)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469683,Sedan,,,, +10/18/2021,17:43,QUEENS,11427,40.7299198,-73.742423,"(40.7299198, -73.742423)",89 AVENUE,BRADDOCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468512,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,2:47,BROOKLYN,11224,40.5769818,-73.9815654,"(40.5769818, -73.9815654)",STILLWELL AVENUE,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466675,Sedan,Garbage or Refuse,,, +10/18/2021,17:00,,,40.8044551,-73.9118464,"(40.8044551, -73.9118464)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468682,Bus,Flat Bed,,, +10/16/2021,3:32,QUEENS,11378,40.7281388,-73.8876287,"(40.7281388, -73.8876287)",,,73-41 queens midtown expy,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467969,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,11:00,,,40.8263977,-73.9211541,"(40.8263977, -73.9211541)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470190,Sedan,,,, +10/22/2021,12:30,BROOKLYN,11215,40.6601384,-73.9839176,"(40.6601384, -73.9839176)",PROSPECT AVENUE,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469900,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,9:30,BROOKLYN,11232,40.6559131,-74.0082785,"(40.6559131, -74.0082785)",,,241 37 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469519,Sedan,,,, +10/13/2021,19:41,MANHATTAN,10033,40.8472479,-73.9368558,"(40.8472479, -73.9368558)",WEST 177 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467366,Van,,,, +10/24/2021,5:02,,,40.6756691,-73.8643459,"(40.6756691, -73.8643459)",CONDUIT BOULEVARD,ELDERTS LANE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470466,Sedan,Sedan,,, +10/13/2021,8:58,QUEENS,11433,40.698339,-73.7960564,"(40.698339, -73.7960564)",,,106-15 159 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467134,Dump,Sedan,,, +11/02/2021,21:13,BRONX,10466,40.902233,-73.843666,"(40.902233, -73.843666)",EAST 241 STREET,HILL AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4473502,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +10/17/2021,16:00,QUEENS,11377,40.7619571,-73.8970519,"(40.7619571, -73.8970519)",BOODY STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4468533,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,14:55,BRONX,10451,40.8214482,-73.9116901,"(40.8214482, -73.9116901)",,,495 EAST 158 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,20:15,,,40.6810463,-73.9434489,"(40.6810463, -73.9434489)",MACDONOUGH STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470374,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,15:15,,,40.6908472,-73.7266153,"(40.6908472, -73.7266153)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,11:11,,,40.7346598,-74.0047486,"(40.7346598, -74.0047486)",CHARLES STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469463,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,8:44,QUEENS,11373,40.7469565,-73.874908,"(40.7469565, -73.874908)",,,91-07 WHITNEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,16:50,BROOKLYN,11211,40.7075334,-73.9568846,"(40.7075334, -73.9568846)",,,282 RODNEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468140,Sedan,,,, +10/21/2021,16:55,MANHATTAN,10128,40.7847137,-73.9581047,"(40.7847137, -73.9581047)",EAST 91 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469652,Sedan,Taxi,,, +10/15/2021,13:30,,,40.7391647,-73.7855496,"(40.7391647, -73.7855496)",188 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,8:15,,,40.7032877,-73.9506397,"(40.7032877, -73.9506397)",MIDDLETON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470089,Sedan,Bus,,, +10/17/2021,16:05,QUEENS,11377,40.7497011,-73.9025603,"(40.7497011, -73.9025603)",60 STREET,37 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468097,Station Wagon/Sport Utility Vehicle,Bike,,, +04/13/2022,7:55,BROOKLYN,11249,40.70801,-73.96433,"(40.70801, -73.96433)",SOUTH 10 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518855,Bus,Sedan,,, +09/30/2021,14:39,,,40.6094168,-73.9676868,"(40.6094168, -73.9676868)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4462760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,6:15,,,40.679049,-73.9585677,"(40.679049, -73.9585677)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470355,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,23:59,BRONX,10460,40.8355842,-73.8906604,"(40.8355842, -73.8906604)",,,1600 BOSTON ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4470718,Sedan,Sedan,,, +10/18/2021,22:07,BROOKLYN,11203,40.6481479,-73.9317719,"(40.6481479, -73.9317719)",,,4813 TILDEN AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468875,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,22:35,,,,,,WEST 64 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449019,Taxi,Sedan,,, +10/20/2021,2:45,QUEENS,11385,40.7034882,-73.905637,"(40.7034882, -73.905637)",,,1858 WOODBINE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4469127,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/14/2021,13:25,BROOKLYN,11232,40.661037,-73.9974301,"(40.661037, -73.9974301)",4 AVENUE,24 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467230,E-Bike,Sedan,,, +10/24/2021,2:05,QUEENS,11420,40.678749,-73.8204991,"(40.678749, -73.8204991)",LINDEN BOULEVARD,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4470539,Sedan,,,, +04/14/2022,20:43,,,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519499,Taxi,E-Bike,,, +10/16/2021,1:30,STATEN ISLAND,10308,40.5544107,-74.1546087,"(40.5544107, -74.1546087)",,,74 WOODLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467736,Sedan,,,, +10/19/2021,16:25,QUEENS,11367,40.735855,-73.8157507,"(40.735855, -73.8157507)",,,65-30 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468945,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,18:00,BROOKLYN,11218,40.6443933,-73.9737844,"(40.6443933, -73.9737844)",,,227 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468752,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,10:30,MANHATTAN,10029,40.789792,-73.9478923,"(40.789792, -73.9478923)",,,1621 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,8:46,BRONX,10469,40.8810412,-73.8574465,"(40.8810412, -73.8574465)",EAST 218 STREET,BRONXWOOD AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468000,Bike,Sedan,,, +10/12/2021,0:00,QUEENS,11368,40.7498691,-73.8627259,"(40.7498691, -73.8627259)",ROOSEVELT AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4466527,Sedan,Bike,,, +10/02/2021,12:00,,,40.6637286,-73.9538481,"(40.6637286, -73.9538481)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4466201,Sedan,Sedan,,, +10/19/2021,8:20,,,40.6891029,-73.9450575,"(40.6891029, -73.9450575)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4468930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/06/2021,7:00,MANHATTAN,10023,40.7721666,-73.9917575,"(40.7721666, -73.9917575)",west 59 street,freedom place south,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4468885,Bus,,,, +10/10/2021,14:40,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466719,Sedan,Sedan,,, +10/16/2021,19:30,QUEENS,11370,40.7656468,-73.8889351,"(40.7656468, -73.8889351)",,,23-39 80 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4467868,Station Wagon/Sport Utility Vehicle,Motorcycle,Motorcycle,, +10/19/2021,15:27,BROOKLYN,11207,40.6674882,-73.8958827,"(40.6674882, -73.8958827)",,,398 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469232,Sedan,,,, +10/19/2021,13:30,MANHATTAN,10002,40.7148977,-73.9963664,"(40.7148977, -73.9963664)",,,33 BOWERY,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4469020,Bike,,,, +10/21/2021,13:00,QUEENS,11357,40.790724,-73.8100817,"(40.790724, -73.8100817)",152 STREET,12 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470717,Sedan,,,, +10/18/2021,18:15,MANHATTAN,10037,40.8141049,-73.9408539,"(40.8141049, -73.9408539)",WEST 135 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470644,Station Wagon/Sport Utility Vehicle,Convertible,,, +10/17/2021,1:00,MANHATTAN,10028,40.7771942,-73.9598482,"(40.7771942, -73.9598482)",,,940 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468130,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,10:40,BRONX,10452,40.8323165,-73.9316013,"(40.8323165, -73.9316013)",UNIVERSITY AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4470185,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck, +10/15/2021,10:15,,,40.6064803,-74.166032,"(40.6064803, -74.166032)",,,456 ARLENE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467371,Sedan,,,, +10/12/2021,15:00,QUEENS,11103,40.7666057,-73.9161022,"(40.7666057, -73.9161022)",36 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467885,Sedan,,,, +10/21/2021,11:35,,,40.8374635,-73.8737713,"(40.8374635, -73.8737713)",BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4470424,Sedan,Sedan,Sedan,Sedan, +10/17/2021,20:30,QUEENS,11434,40.6656022,-73.7846221,"(40.6656022, -73.7846221)",,,144-25 153 LANE,1,0,1,0,0,0,0,0,,,,,,4469595,,,,, +10/20/2021,15:35,BRONX,10466,40.8908418,-73.862459,"(40.8908418, -73.862459)",,,614 EAST 228 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469509,Sedan,,,, +10/18/2021,7:40,,,40.7342811,-73.8646235,"(40.7342811, -73.8646235)",JUNCTION BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468363,Station Wagon/Sport Utility Vehicle,Bus,,, +10/12/2021,8:45,,,40.6805793,-73.974316,"(40.6805793, -73.974316)",FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467025,Moped,,,, +10/15/2021,11:05,QUEENS,11103,40.7580065,-73.9166461,"(40.7580065, -73.9166461)",,,42-21 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4467895,,,,, +11/01/2021,1:50,MANHATTAN,10019,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473932,Sedan,,,, +10/21/2021,7:00,QUEENS,11370,40.766952,-73.8945297,"(40.766952, -73.8945297)",,,74-09 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:34,,,40.7601858,-73.7678427,"(40.7601858, -73.7678427)",NORTHERN BOULEVARD,233 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469249,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,0:00,MANHATTAN,10023,40.7754866,-73.9821639,"(40.7754866, -73.9821639)",WEST 68 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4469610,Sedan,Bike,,, +10/13/2021,6:50,MANHATTAN,10033,40.8513338,-73.9402172,"(40.8513338, -73.9402172)",CABRINI BOULEVARD,WEST 181 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4468246,Bike,Sedan,,, +10/18/2021,8:27,BRONX,10472,40.8296651,-73.856823,"(40.8296651, -73.856823)",HAVILAND AVENUE,PUGSLEY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4468400,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,9:20,BRONX,10472,40.8300667,-73.8793653,"(40.8300667, -73.8793653)",,,1240 ELDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4467705,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/14/2021,12:00,,,40.8300027,-73.9317229,"(40.8300027, -73.9317229)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468267,Flat Bed,Sedan,,, +10/24/2021,13:27,BROOKLYN,11211,40.710472,-73.960936,"(40.710472, -73.960936)",SOUTH 5 STREET,SOUTH 5 PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470326,Bike,E-Bike,,, +10/15/2021,9:30,QUEENS,11357,40.7885008,-73.8092639,"(40.7885008, -73.8092639)",,,153-55 CROSS ISLAND PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4467568,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,8:45,MANHATTAN,10023,40.7742808,-73.9773695,"(40.7742808, -73.9773695)",WEST 69 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470889,Taxi,Sedan,,, +10/24/2021,16:40,QUEENS,11436,40.6779424,-73.802291,"(40.6779424, -73.802291)",FOCH BOULEVARD,139 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4470549,Sedan,Sedan,,, +10/13/2021,22:25,BROOKLYN,11218,40.6442177,-73.9704405,"(40.6442177, -73.9704405)",,,534 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468667,Carry All,Pick-up Truck,,, +10/31/2021,5:55,BRONX,10462,,,,,,29 Hugh Grant Circle,1,0,1,0,0,0,0,0,,,,,,4474017,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,20:20,,,40.6607852,-73.9398113,"(40.6607852, -73.9398113)",MIDWOOD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,8:25,,,40.8255779,-73.9184596,"(40.8255779, -73.9184596)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4466807,Sedan,Moped,,, +10/17/2021,8:45,BROOKLYN,11203,40.6553345,-73.9307664,"(40.6553345, -73.9307664)",UTICA AVENUE,LENOX ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467832,Sedan,,,, +10/13/2021,14:55,BROOKLYN,11208,40.6758675,-73.8747278,"(40.6758675, -73.8747278)",,,120 CRYSTAL STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467266,Sedan,Bus,,, +10/13/2021,9:20,QUEENS,11355,40.7483564,-73.8205244,"(40.7483564, -73.8205244)",KALMIA AVENUE,COLDEN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466940,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,10:00,,,40.8339166,-73.9270066,"(40.8339166, -73.9270066)",WOODYCREST AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468261,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,17:35,BRONX,10468,40.8696589,-73.8989172,"(40.8696589, -73.8989172)",RESERVOIR AVENUE,WEST 195 STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4469688,Moped,,,, +10/22/2021,6:15,,,40.6104469,-73.9849633,"(40.6104469, -73.9849633)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469840,Sedan,Sedan,,, +11/02/2021,19:45,,,,,,188 STREET,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4473446,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:19,BRONX,10470,40.8953759,-73.8635575,"(40.8953759, -73.8635575)",WEBSTER AVENUE,EAST 233 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4468800,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,6:10,,,40.6650046,-73.8440537,"(40.6650046, -73.8440537)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Obstruction/Debris,,,,4469057,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,19:35,,,40.5437783,-74.1634582,"(40.5437783, -74.1634582)",AMBOY ROAD,SAINT ALBANS PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4463047,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,0:00,MANHATTAN,10022,40.7591654,-73.976743,"(40.7591654, -73.976743)",WEST 51 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469864,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:05,QUEENS,11101,40.7522294,-73.9391006,"(40.7522294, -73.9391006)",CRESCENT STREET,41 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4468239,Station Wagon/Sport Utility Vehicle,Bike,,, +10/14/2021,23:30,,,40.6683599,-73.9559068,"(40.6683599, -73.9559068)",PRESIDENT STREET,,,1,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4467239,Sedan,E-Scooter,,, +10/19/2021,10:30,,,40.6105165,-73.9988835,"(40.6105165, -73.9988835)",80 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469407,Sedan,,,, +10/22/2021,0:25,BROOKLYN,11208,40.6686555,-73.8784908,"(40.6686555, -73.8784908)",BERRIMAN STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4469767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,7:10,STATEN ISLAND,10306,40.5682139,-74.112033,"(40.5682139, -74.112033)",HYLAN BOULEVARD,STERLING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469381,Station Wagon/Sport Utility Vehicle,,,, +10/05/2021,16:33,BRONX,10468,40.8733829,-73.8893729,"(40.8733829, -73.8893729)",Jerome ave,Bedford Park Blvd,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467059,E-Bike,,,, +10/17/2021,16:18,BRONX,10472,40.8311405,-73.8797696,"(40.8311405, -73.8797696)",ELDER AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4468358,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/19/2021,19:50,QUEENS,11208,40.6791635,-73.862345,"(40.6791635, -73.862345)",75 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468979,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,15:00,BROOKLYN,11201,40.6948378,-73.9839237,"(40.6948378, -73.9839237)",FLATBUSH AVENUE EXTENSION,JOHNSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469932,Sedan,,,, +10/15/2021,16:09,BRONX,10453,40.8618642,-73.9127392,"(40.8618642, -73.9127392)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,4:58,BROOKLYN,11236,40.6437591,-73.903497,"(40.6437591, -73.903497)",,,1103 EAST 95 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4467626,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/15/2021,11:40,,,40.7384715,-73.9319755,"(40.7384715, -73.9319755)",HUNTERS POINT AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467339,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,7:40,,,40.8439015,-73.9005043,"(40.8439015, -73.9005043)",SOUTHERN BOULEVARD,BRONX BOTANICAL GARDENS,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469116,Sedan,Bike,,, +10/17/2021,17:19,BRONX,10453,40.8534742,-73.9064496,"(40.8534742, -73.9064496)",EAST BURNSIDE AVENUE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468278,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,14:53,,,40.8444164,-73.902783,"(40.8444164, -73.902783)",WEBSTER AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4468699,Bike,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:25,QUEENS,11373,40.7428324,-73.8794596,"(40.7428324, -73.8794596)",,,44-10 KETCHAM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/23/2021,17:11,BROOKLYN,11221,40.693693,-73.9312026,"(40.693693, -73.9312026)",malcolm x,dekalb ave,,1,0,1,0,0,0,0,0,,,,,,4468123,,,,, +10/14/2021,15:17,,,40.6102564,-74.1323122,"(40.6102564, -74.1323122)",PURDY AVENUE,BRADLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,2:46,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,,,,,,4474018,Sedan,,,, +10/18/2021,11:30,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468832,Sedan,Pick-up Truck,,, +10/23/2021,0:00,,,40.6357932,-74.1324487,"(40.6357932, -74.1324487)",,,192 HEBERTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4470842,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/18/2021,23:30,MANHATTAN,10032,40.8365359,-73.9443466,"(40.8365359, -73.9443466)",,,44 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/19/2021,14:10,QUEENS,11434,40.6796533,-73.7772287,"(40.6796533, -73.7772287)",BAISLEY BOULEVARD,166 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4468849,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,19:50,,,40.678723,-73.9529869,"(40.678723, -73.9529869)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467858,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,14:15,,,40.7384039,-73.9386261,"(40.7384039, -73.9386261)",BORDEN AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4469823,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/20/2021,1:22,QUEENS,11411,40.7018277,-73.7476817,"(40.7018277, -73.7476817)",207 STREET,MURDOCK AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4468967,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +10/13/2021,14:40,BROOKLYN,11234,40.6314722,-73.9195434,"(40.6314722, -73.9195434)",FLATLANDS AVENUE,EAST 59 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467158,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,23:53,BROOKLYN,11232,40.6503302,-74.0046793,"(40.6503302, -74.0046793)",,,4013 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469729,Sedan,Sedan,,, +10/18/2021,6:45,BROOKLYN,11233,40.6766938,-73.9173942,"(40.6766938, -73.9173942)",ATLANTIC AVENUE,LOUIS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470498,Sedan,,,, +10/20/2021,15:10,QUEENS,11368,40.7611934,-73.8578651,"(40.7611934, -73.8578651)",,,125-00 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470446,Sedan,Sedan,,, +10/17/2021,12:39,BROOKLYN,11234,40.5965113,-73.9078755,"(40.5965113, -73.9078755)",Flatbush Avenue,Belt parkway,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4468050,Motorcycle,,,, +10/21/2021,8:50,,,40.6685062,-73.9256052,"(40.6685062, -73.9256052)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4470342,Sedan,,,, +11/02/2021,6:10,,,40.67398,-73.899315,"(40.67398, -73.899315)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473570,Sedan,Sedan,,, +10/17/2021,20:00,BRONX,10454,40.8009872,-73.9134098,"(40.8009872, -73.9134098)",,,781 EAST 133 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469656,Sedan,,,, +10/14/2021,9:15,MANHATTAN,10033,40.8527553,-73.9399166,"(40.8527553, -73.9399166)",,,140 CABRINI BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4469527,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/18/2021,12:00,QUEENS,11102,40.7746805,-73.9255538,"(40.7746805, -73.9255538)",,,18-23 25 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,15:45,QUEENS,11415,40.7109458,-73.828099,"(40.7109458, -73.828099)",KEW GARDEN ROAD,83 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4467641,Sedan,Moped,,, +10/23/2021,22:00,MANHATTAN,10001,40.7453835,-73.9947093,"(40.7453835, -73.9947093)",WEST 25 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4470828,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,19:45,QUEENS,11421,40.685723,-73.8573737,"(40.685723, -73.8573737)",ATLANTIC AVENUE,84 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467697,Station Wagon/Sport Utility Vehicle,Bike,,, +10/11/2021,14:00,MANHATTAN,10023,40.7749093,-73.9769108,"(40.7749093, -73.9769108)",CENTRAL PARK WEST,WEST 70 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468497,Sedan,,,, +11/02/2021,0:00,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,11:40,BROOKLYN,11222,40.7304639,-73.9514819,"(40.7304639, -73.9514819)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469883,Sedan,Sedan,,, +11/01/2021,18:30,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",WEST 44 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473997,Bike,,,, +10/21/2021,19:00,,,40.8564099,-73.9050863,"(40.8564099, -73.9050863)",CLINTON PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469676,Sedan,,,, +10/17/2021,6:00,BRONX,10459,40.8227534,-73.892748,"(40.8227534, -73.892748)",,,1000 SIMPSON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4468764,Sedan,Sedan,Sedan,, +10/24/2021,10:35,,,40.6077242,-74.1427169,"(40.6077242, -74.1427169)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,10:15,,,40.769483,-73.9578652,"(40.769483, -73.9578652)",EAST 73 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467010,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/23/2021,17:00,QUEENS,11368,40.7386344,-73.8646507,"(40.7386344, -73.8646507)",97 STREET,55 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4470478,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/13/2021,4:05,QUEENS,11419,40.6891512,-73.8273646,"(40.6891512, -73.8273646)",,,101-09 117 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4466862,Box Truck,Sedan,Sedan,, +10/20/2021,4:55,QUEENS,11106,40.7547111,-73.9257543,"(40.7547111, -73.9257543)",36 STREET,36 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4469048,Station Wagon/Sport Utility Vehicle,Bike,,, +11/02/2021,7:30,MANHATTAN,10027,40.818172,-73.95649,"(40.818172, -73.95649)",BROADWAY,WEST 132 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473856,Sedan,Box Truck,,, +10/17/2021,19:40,BROOKLYN,11204,40.6292054,-73.9831702,"(40.6292054, -73.9831702)",,,4911 17 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468650,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:35,BROOKLYN,11219,40.6342978,-73.9952555,"(40.6342978, -73.9952555)",,,1215 52 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,1:50,BRONX,10472,40.8276556,-73.8860957,"(40.8276556, -73.8860957)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467012,Tractor Truck Gasoline,,,, +10/17/2021,0:42,,,40.6669163,-73.8390603,"(40.6669163, -73.8390603)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468219,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,7:30,,,40.6984873,-73.9214352,"(40.6984873, -73.9214352)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468326,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,3:30,QUEENS,11101,40.7410282,-73.9343077,"(40.7410282, -73.9343077)",VANDAM STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4468226,Sedan,,,, +10/16/2021,15:00,QUEENS,11692,40.5919969,-73.7882496,"(40.5919969, -73.7882496)",,,58-03 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468442,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,0:14,BROOKLYN,11221,40.694305,-73.918512,"(40.694305, -73.918512)",LINDEN STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,21:05,QUEENS,11355,,,,Meadow drive,Meadow lake park path,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519553,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,21:32,,,40.7255629,-73.8383617,"(40.7255629, -73.8383617)",JEWEL AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467526,Sedan,,,, +10/15/2021,14:00,BROOKLYN,11235,40.5869928,-73.9422576,"(40.5869928, -73.9422576)",EAST 27 STREET,VOORHIES AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467391,Sedan,Sedan,,, +10/13/2021,10:30,,,40.776906,-73.8462237,"(40.776906, -73.8462237)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466945,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,2:15,QUEENS,11413,40.6705699,-73.7513292,"(40.6705699, -73.7513292)",CARSON STREET,223 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468150,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/10/2021,13:35,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4466796,Sedan,Sedan,Sedan,Sedan, +10/16/2021,19:27,MANHATTAN,10005,40.7040857,-74.0089878,"(40.7040857, -74.0089878)",WATER STREET,HANOVER SQUARE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469546,Box Truck,,,, +10/15/2021,15:15,BRONX,10455,40.8192462,-73.9113705,"(40.8192462, -73.9113705)",,,510 EAST 156 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467725,Sedan,Ambulance,,, +11/02/2021,23:14,BRONX,10456,40.83047,-73.90972,"(40.83047, -73.90972)",BROOK AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473555,Sedan,,,, +10/19/2021,16:20,BRONX,10469,40.8787289,-73.8454667,"(40.8787289, -73.8454667)",,,3471 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4468913,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,16:20,BROOKLYN,11223,40.600082,-73.96591,"(40.600082, -73.96591)",OCEAN PARKWAY,AVENUE T,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473411,E-Bike,,,, +10/15/2021,22:00,BROOKLYN,11226,40.6509791,-73.9611907,"(40.6509791, -73.9611907)",OCEAN AVENUE,SAINT PAULS COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467690,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,14:25,BRONX,10469,40.8669728,-73.8373202,"(40.8669728, -73.8373202)",BARTOW AVENUE,GUNTHER AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4468911,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,21:26,MANHATTAN,10027,40.8093716,-73.9490865,"(40.8093716, -73.9490865)",,,255 WEST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468343,Sedan,,,, +10/18/2021,10:30,,,40.6878322,-73.9300332,"(40.6878322, -73.9300332)",REID AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470383,Sedan,Bike,,, +10/18/2021,0:05,BRONX,10470,40.9024848,-73.8525061,"(40.9024848, -73.8525061)",RICHARDSON AVENUE,EAST 240 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468303,Sedan,Sedan,,, +11/02/2021,19:15,QUEENS,11101,40.753384,-73.92358,"(40.753384, -73.92358)",,,36-04 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473642,Taxi,,,, +10/17/2021,14:00,STATEN ISLAND,10304,40.6068651,-74.0880403,"(40.6068651, -74.0880403)",CLOVE ROAD,BRITTON AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,,,,4467954,police rep,Sedan,,, +10/24/2021,15:39,QUEENS,11420,40.6693852,-73.8144574,"(40.6693852, -73.8144574)",135 AVENUE,125 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4470434,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:35,QUEENS,11412,40.69041,-73.7555643,"(40.69041, -73.7555643)",119 AVENUE,195 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468187,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/23/2021,2:15,BRONX,10459,40.8282374,-73.8860116,"(40.8282374, -73.8860116)",FREEMAN STREET,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470781,Sedan,Sedan,,, +04/08/2022,23:10,MANHATTAN,10033,40.84772,-73.933075,"(40.84772, -73.933075)",,,287 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519705,Sedan,Sedan,,, +10/18/2021,7:09,QUEENS,11358,40.7694507,-73.7901851,"(40.7694507, -73.7901851)",32 AVENUE,JORDAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468459,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,9:59,BRONX,10457,40.8432041,-73.9057659,"(40.8432041, -73.9057659)",,,1660 TOPPING AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469851,Bus,Sedan,,, +10/19/2021,17:17,,,40.6971266,-73.9110471,"(40.6971266, -73.9110471)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470234,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,20:00,,,40.7954563,-73.9656282,"(40.7954563, -73.9656282)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470449,Sedan,,,, +10/15/2021,15:44,,,40.6984546,-73.9217562,"(40.6984546, -73.9217562)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467559,Station Wagon/Sport Utility Vehicle,Bus,,, +10/15/2021,8:42,STATEN ISLAND,10308,40.5563864,-74.1567091,"(40.5563864, -74.1567091)",LEVERETT AVENUE,COLON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4467531,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,3:32,,,40.5907861,-73.8066213,"(40.5907861, -73.8066213)",ROCKAWAY FREEWAY,,,2,0,0,0,0,0,2,0,Fell Asleep,,,,,4470451,Sedan,,,, +10/15/2021,20:50,BROOKLYN,11236,40.647573,-73.8985545,"(40.647573, -73.8985545)",EAST 102 STREET,GLENWOOD ROAD,,8,0,0,0,0,0,8,0,Failure to Yield Right-of-Way,Unspecified,,,,4469445,Bus,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,10:00,,,40.7598833,-73.9367906,"(40.7598833, -73.9367906)",21 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4470013,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,8:20,STATEN ISLAND,10306,40.5720116,-74.0949019,"(40.5720116, -74.0949019)",LINCOLN AVENUE,FREEBORN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,13:20,STATEN ISLAND,10301,40.6377822,-74.0769404,"(40.6377822, -74.0769404)",SAINT MARKS PLACE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4467151,Sedan,,,, +09/27/2021,10:55,,,40.5973961,-74.1914152,"(40.5973961, -74.1914152)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4464951,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,7:00,QUEENS,11412,40.7103167,-73.7524614,"(40.7103167, -73.7524614)",FRANCIS LEWIS BOULEVARD,104 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4466700,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,6:40,BRONX,10474,40.8115127,-73.8905269,"(40.8115127, -73.8905269)",TIFFANY STREET,RANDALL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469397,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/20/2021,14:35,BRONX,10459,40.8208035,-73.9026694,"(40.8208035, -73.9026694)",UNION AVENUE,EAST 161 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4469430,Pick-up Truck,Sedan,,, +10/21/2021,10:10,,,40.5556663,-74.2135016,"(40.5556663, -74.2135016)",ROSSVILLE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469888,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,16:10,BROOKLYN,11220,40.6447898,-74.0143238,"(40.6447898, -74.0143238)",4 AVENUE,53 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468880,Sedan,,,, +10/20/2021,7:52,BROOKLYN,11236,40.6376753,-73.8924948,"(40.6376753, -73.8924948)",AVENUE M,EAST 98 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469281,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,2:05,QUEENS,11370,40.7581576,-73.8962637,"(40.7581576, -73.8962637)",71 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469804,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,8:45,QUEENS,11368,40.7515446,-73.8708432,"(40.7515446, -73.8708432)",JUNCTION BOULEVARD,37 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4470309,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,13:10,,,40.7568608,-73.8756563,"(40.7568608, -73.8756563)",111 STREET,GRAND CENTRAL PARKWAY,,4,0,0,0,0,0,4,0,Following Too Closely,Following Too Closely,Unspecified,,,4468868,Sedan,Sedan,Sedan,, +10/24/2021,12:40,,,40.6627445,-73.8851157,"(40.6627445, -73.8851157)",HEGEMAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470483,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,14:30,,,40.6396507,-73.9679172,"(40.6396507, -73.9679172)",CORTELYOU ROAD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467680,Station Wagon/Sport Utility Vehicle,Fire truck,,, +10/17/2021,9:26,MANHATTAN,10027,40.8093438,-73.9477221,"(40.8093438, -73.9477221)",,,163 WEST 125 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469164,Sedan,,,, +10/17/2021,13:39,BROOKLYN,11212,40.6682299,-73.9064266,"(40.6682299, -73.9064266)",,,441 STONE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468056,Sedan,,,, +10/22/2021,5:43,,,40.6586744,-73.9001884,"(40.6586744, -73.9001884)",NEW LOTS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4469752,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,9:20,QUEENS,11416,40.68572,-73.84762,"(40.68572, -73.84762)",94 STREET,97 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4498534,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,19:00,,,40.799957,-73.96053,"(40.799957, -73.96053)",WEST 108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519819,Sedan,,,, +10/14/2021,19:27,BROOKLYN,11212,40.6603181,-73.9132119,"(40.6603181, -73.9132119)",HERZL STREET,RIVERDALE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467796,Multi-Wheeled Vehicle,Sedan,,, +11/02/2021,16:00,MANHATTAN,10022,40.762226,-73.96819,"(40.762226, -73.96819)",EAST 59 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,21:25,BROOKLYN,11211,40.7058999,-73.9630991,"(40.7058999, -73.9630991)",BEDFORD AVENUE,TAYLOR STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4468078,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/21/2021,3:39,BROOKLYN,11207,40.6756249,-73.8987786,"(40.6756249, -73.8987786)",ATLANTIC AVENUE,GEORGIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469694,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/19/2021,16:15,,,40.8369385,-73.9271154,"(40.8369385, -73.9271154)",OGDEN AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4469031,E-Bike,,,, +10/17/2021,10:45,QUEENS,11356,40.7832211,-73.8458553,"(40.7832211, -73.8458553)",18 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467905,Tow Truck / Wrecker,Sedan,,, +10/22/2021,9:15,,,40.5774108,-73.9623637,"(40.5774108, -73.9623637)",BRIGHTON 5 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470102,Sedan,,,, +10/20/2021,23:09,,,40.682681,-73.9226689,"(40.682681, -73.9226689)",DECATUR STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469624,Sedan,Sedan,,, +10/20/2021,20:30,MANHATTAN,10016,40.7454034,-73.9773613,"(40.7454034, -73.9773613)",TUNNEL EXIT STREET,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469296,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,7:50,BROOKLYN,11207,40.6730836,-73.8940446,"(40.6730836, -73.8940446)",,,271 VERMONT STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468485,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,18:30,,,40.8388864,-73.9216417,"(40.8388864, -73.9216417)",GRANT HIGHWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469563,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,22:26,,,40.7865943,-73.9683844,"(40.7865943, -73.9683844)",WEST 88 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469063,Sedan,Bike,,, +10/14/2021,0:00,BROOKLYN,11229,40.6099434,-73.9610861,"(40.6099434, -73.9610861)",,,1202 AVENUE P,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467294,Station Wagon/Sport Utility Vehicle,FORD TRANS,,, +10/06/2021,6:00,MANHATTAN,10026,40.797644,-73.9508548,"(40.797644, -73.9508548)",,,43 WEST 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470783,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,7:54,QUEENS,11432,40.7122429,-73.7966734,"(40.7122429, -73.7966734)",,,85-35 167 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468821,Sedan,SANITATION,,, +10/15/2021,5:00,STATEN ISLAND,10301,40.644579,-74.0975231,"(40.644579, -74.0975231)",,,762 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467873,Sedan,,,, +10/22/2021,7:49,BRONX,10466,40.8998154,-73.8578041,"(40.8998154, -73.8578041)",NEREID AVENUE,BRONX BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4469772,Pick-up Truck,Sedan,,, +10/24/2021,5:33,BRONX,10456,40.819676,-73.9057965,"(40.819676, -73.9057965)",,,801 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470604,EC3,,,, +10/20/2021,15:00,,,40.7223638,-73.8514741,"(40.7223638, -73.8514741)",67 Ave,grand central parkway,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469578,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,0:30,BROOKLYN,11212,40.6594846,-73.918295,"(40.6594846, -73.918295)",ROCKAWAY PARKWAY,LENOX ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470261,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,9:50,,,40.6578584,-73.9164877,"(40.6578584, -73.9164877)",ROCKAWAY PARKWAY,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4470861,Sedan,Sedan,,, +10/15/2021,16:07,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4467574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/23/2021,14:40,BROOKLYN,11207,40.6689105,-73.8895304,"(40.6689105, -73.8895304)",,,430 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470473,Station Wagon/Sport Utility Vehicle,,,, +10/12/2021,19:44,QUEENS,11435,40.687523,-73.7982854,"(40.687523, -73.7982854)",111 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468182,Sedan,Sedan,,, +11/02/2021,9:00,STATEN ISLAND,10305,40.587513,-74.09122,"(40.587513, -74.09122)",,,1690 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4473821,Sedan,,,, +10/09/2021,13:33,,,40.6732722,-73.9473957,"(40.6732722, -73.9473957)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4466779,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,14:29,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4469392,Sedan,Sedan,,, +10/24/2021,7:50,MANHATTAN,10039,40.8289196,-73.9368721,"(40.8289196, -73.9368721)",,,280 WEST 155 STREET,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4470652,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/13/2021,17:38,BROOKLYN,11232,40.6509497,-74.0079175,"(40.6509497, -74.0079175)",42 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4466835,Sedan,Bike,,, +10/25/2021,9:59,,,40.7899496,-73.9429266,"(40.7899496, -73.9429266)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470878,Pick-up Truck,Garbage or Refuse,,, +10/20/2021,1:20,,,40.8137781,-73.9596868,"(40.8137781, -73.9596868)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469429,Taxi,Bike,,, +10/20/2021,17:00,BROOKLYN,11212,40.6663862,-73.9064136,"(40.6663862, -73.9064136)",,,512 MOTHER GASTON BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4469313,Box Truck,Sedan,,, +10/22/2021,18:18,,,40.8381602,-73.9232326,"(40.8381602, -73.9232326)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470593,Sedan,Sedan,,, +10/13/2021,7:23,QUEENS,11435,40.7160306,-73.8235839,"(40.7160306, -73.8235839)",135 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466830,Bus,Sedan,,, +10/15/2021,21:07,STATEN ISLAND,10314,40.6039836,-74.1153774,"(40.6039836, -74.1153774)",TODT HILL ROAD,LINCOLN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470742,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,18:25,MANHATTAN,10022,40.7615508,-73.9665842,"(40.7615508, -73.9665842)",3 AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4468582,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +10/23/2021,1:10,BRONX,10472,40.8333563,-73.8798736,"(40.8333563, -73.8798736)",,,1370 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4470293,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,7:35,QUEENS,11377,40.7429437,-73.9168429,"(40.7429437, -73.9168429)",QUEENS BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468470,Sedan,Sedan,,, +11/02/2021,12:38,BROOKLYN,11219,40.635845,-73.99484,"(40.635845, -73.99484)",12 AVENUE,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473541,Van,Van,,, +10/12/2021,16:15,BROOKLYN,11220,40.6341626,-74.0073571,"(40.6341626, -74.0073571)",9 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467044,Taxi,Box Truck,,, +10/14/2021,19:20,MANHATTAN,10009,40.7313511,-73.9825546,"(40.7313511, -73.9825546)",EAST 14 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4467609,Motorcycle,,,, +10/19/2021,14:54,,,40.6860658,-73.9714321,"(40.6860658, -73.9714321)",GREENE AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468994,Sedan,,,, +10/18/2021,0:00,BROOKLYN,11206,40.7070105,-73.9465215,"(40.7070105, -73.9465215)",MONTROSE AVENUE,LEONARD STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468204,Sedan,E-Bike,,, +10/15/2021,16:04,BRONX,10460,40.842389,-73.8851593,"(40.842389, -73.8851593)",,,884 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468314,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,10:15,QUEENS,11377,40.7460318,-73.9133709,"(40.7460318, -73.9133709)",SKILLMAN AVENUE,51 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4470217,Moped,Sedan,,, +10/23/2021,10:00,,,40.8088424,-73.9658127,"(40.8088424, -73.9658127)",RIVERSIDE DRIVE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470024,Sedan,Sedan,,, +10/16/2021,20:00,QUEENS,11691,40.5932045,-73.7641441,"(40.5932045, -73.7641441)",SURF ROAD,BEACH 32 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4468447,Sedan,Sedan,,, +10/20/2021,9:20,,,40.7211442,-73.942816,"(40.7211442, -73.942816)",NORTH HENRY STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469145,PK,,,, +10/18/2021,11:25,BROOKLYN,11230,40.6203971,-73.9619144,"(40.6203971, -73.9619144)",,,1311 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470514,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,13:00,MANHATTAN,10024,40.7852936,-73.9693348,"(40.7852936, -73.9693348)",CENTRAL PARK WEST,WEST 86 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4468501,Sedan,Sedan,,, +10/19/2021,8:22,QUEENS,11373,40.7343835,-73.8647412,"(40.7343835, -73.8647412)",,,60-08 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4469004,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,2:33,QUEENS,11363,40.76226,-73.7569828,"(40.76226, -73.7569828)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4469944,Sedan,,,, +10/14/2021,14:00,QUEENS,11368,40.748539,-73.8629398,"(40.748539, -73.8629398)",,,41-02 103 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4467912,Sedan,Sedan,,, +10/14/2021,9:00,,,40.7560353,-73.9869481,"(40.7560353, -73.9869481)",WEST 42 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4467079,Box Truck,,,, +10/15/2021,22:00,BROOKLYN,11201,40.7007672,-73.9909333,"(40.7007672, -73.9909333)",CADMAN PLAZA WEST,PROSPECT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467542,Pick-up Truck,,,, +10/13/2021,15:30,QUEENS,11370,40.7650136,-73.8870909,"(40.7650136, -73.8870909)",ASTORIA BOULEVARD,82 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467740,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,12:35,BROOKLYN,11206,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,LEE AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474219,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,13:04,BROOKLYN,11208,40.6769386,-73.8703892,"(40.6769386, -73.8703892)",CRESCENT STREET,GLENMORE AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4469242,Station Wagon/Sport Utility Vehicle,Bike,,, +10/18/2021,17:40,QUEENS,11694,40.5825808,-73.8286622,"(40.5825808, -73.8286622)",,,106-40 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468529,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,6:25,,,40.8090449,-73.9285547,"(40.8090449, -73.9285547)",EAST 135 STREET,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470625,Sedan,,,, +11/02/2021,4:50,QUEENS,11375,40.7238,-73.854774,"(40.7238, -73.854774)",,,67-22 AUSTIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473374,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,12:09,BRONX,10469,40.8585763,-73.8512297,"(40.8585763, -73.8512297)",PELHAM PARKWAY,THROOP AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468843,Sedan,Sedan,,, +10/22/2021,11:25,,,40.6817416,-73.958584,"(40.6817416, -73.958584)",FULTON STREET,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4470370,Sedan,Bike,,, +10/20/2021,12:31,QUEENS,11378,40.7285016,-73.9179686,"(40.7285016, -73.9179686)",55 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469959,Sedan,Box Truck,,, +10/23/2021,12:41,BROOKLYN,11233,40.6807878,-73.919574,"(40.6807878, -73.919574)",HOWARD AVENUE,MARION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470417,Pick-up Truck,Sedan,,, +10/15/2021,3:28,,,40.8648086,-73.9193623,"(40.8648086, -73.9193623)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468853,Sedan,,,, +09/30/2021,16:45,,,40.7713465,-73.833391,"(40.7713465, -73.833391)",LINDEN PLACE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4463638,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/13/2021,7:51,MANHATTAN,10035,40.7999787,-73.9427338,"(40.7999787, -73.9427338)",EAST 117 STREET,PARK AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,4466963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +10/23/2021,14:45,,,40.6114904,-74.1402455,"(40.6114904, -74.1402455)",VICTORY BOULEVARD,LIVERMORE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,13:30,BROOKLYN,11223,40.594406,-73.9616721,"(40.594406, -73.9616721)",,,815 GRAVESEND NECK ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4468972,Sedan,,,, +10/22/2021,18:40,BROOKLYN,11211,40.7105878,-73.9550998,"(40.7105878, -73.9550998)",RODNEY STREET,BORINQUEN PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470085,Motorcycle,Sedan,,, +10/18/2021,13:37,BROOKLYN,11209,40.6185936,-74.0287012,"(40.6185936, -74.0287012)",5 AVENUE,91 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4468452,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,10:50,BROOKLYN,11237,40.7093173,-73.9329972,"(40.7093173, -73.9329972)",MORGAN AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4468093,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/13/2022,23:37,MANHATTAN,10036,40.760403,-73.98748,"(40.760403, -73.98748)",WEST 47 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4518886,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/21/2021,8:32,BRONX,10466,40.8872398,-73.8635864,"(40.8872398, -73.8635864)",,,633 EAST 223 STREET,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4469559,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,15:00,QUEENS,11426,40.734792,-73.7201515,"(40.734792, -73.7201515)",HILLSIDE AVENUE,247 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,18:48,BROOKLYN,11212,40.65531,-73.90318,"(40.65531, -73.90318)",STONE AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,0:15,,,40.692425,-73.96075,"(40.692425, -73.96075)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473740,Sedan,Motorcycle,,, +10/16/2021,19:36,,,40.8230758,-73.9125407,"(40.8230758, -73.9125407)",ELTON AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4468704,Sedan,,,, +10/20/2021,8:20,BROOKLYN,11211,40.7083558,-73.9609841,"(40.7083558, -73.9609841)",ROEBLING STREET,SOUTH 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469648,Sedan,Sedan,,, +10/19/2021,15:00,,,40.6690679,-73.7387,"(40.6690679, -73.7387)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4469492,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,21:40,,,40.6517331,-73.930381,"(40.6517331, -73.930381)",UTICA AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4467828,Sedan,,,, +10/24/2021,13:10,QUEENS,11426,40.7340319,-73.7236511,"(40.7340319, -73.7236511)",HILLSIDE AVENUE,243 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470359,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,0:12,BROOKLYN,11233,40.6740701,-73.9153366,"(40.6740701, -73.9153366)",,,1978 BERGEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470528,Sedan,Sedan,,, +10/22/2021,21:25,QUEENS,11420,40.6755733,-73.8037077,"(40.6755733, -73.8037077)",120 AVENUE,135 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470543,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/22/2021,15:00,,,40.5843,-74.1649063,"(40.5843, -74.1649063)",,,112 RICHMOND HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470062,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,19:20,,,40.8044551,-73.9118464,"(40.8044551, -73.9118464)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469661,Sedan,Chassis Cab,,, +10/24/2021,19:40,BROOKLYN,11231,40.6877519,-74.0013882,"(40.6877519, -74.0013882)",KANE STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470883,Sedan,Box Truck,,, +10/25/2021,0:00,,,40.6690679,-73.7387,"(40.6690679, -73.7387)",FRANCIS LEWIS BOULEVARD,LAURELTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470813,Sedan,Sedan,,, +10/08/2021,16:30,BROOKLYN,11228,40.6076551,-74.0170205,"(40.6076551, -74.0170205)",POLY PLACE,14 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467490,Sedan,Bike,,, +10/23/2021,14:22,,,40.7186479,-73.8376966,"(40.7186479, -73.8376966)",QUEENS BOULEVARD,75 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470796,,,,, +10/13/2021,17:14,,,40.8006946,-73.9411094,"(40.8006946, -73.9411094)",TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466978,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,16:35,,,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519189,Sedan,Pick-up Truck,,, +10/15/2021,11:55,MANHATTAN,10024,40.7920718,-73.9755397,"(40.7920718, -73.9755397)",WEST 91 STREET,WEST END AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4467358,,,,, +11/02/2021,15:44,,,40.85206,-73.82664,"(40.85206, -73.82664)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473969,Sedan,Sedan,,, +10/17/2021,13:00,,,40.7564521,-73.9703154,"(40.7564521, -73.9703154)",3 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4468250,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +10/23/2021,21:25,MANHATTAN,10010,40.7416358,-73.9902079,"(40.7416358, -73.9902079)",,,12 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470153,Taxi,,,, +10/17/2021,13:30,BROOKLYN,11208,40.6772545,-73.8757004,"(40.6772545, -73.8757004)",,,119 FOUNTAIN AVENUE,1,0,1,0,0,0,0,0,,,,,,4468632,,,,, +10/23/2021,11:15,,,40.7161961,-73.9974902,"(40.7161961, -73.9974902)",Manhattan Bridge,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4470244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/15/2021,19:19,,,40.839908,-73.9360834,"(40.839908, -73.9360834)",HARLEM RIVER DRIVEWAY,WEST 157 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4468118,Sedan,Sedan,Sedan,, +10/21/2021,19:10,QUEENS,11369,40.7642305,-73.8755368,"(40.7642305, -73.8755368)",94 STREET,25 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4469591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,23:33,BROOKLYN,11231,40.6810601,-73.996528,"(40.6810601, -73.996528)",COURT STREET,CARROLL STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467757,Sedan,E-Bike,,, +10/20/2021,10:00,BROOKLYN,11212,40.6575644,-73.9047314,"(40.6575644, -73.9047314)",,,230 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469741,Sedan,,,, +10/16/2021,15:04,,,40.8680396,-73.8790955,"(40.8680396, -73.8790955)",MOSHOLU PARKWAY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4468415,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,20:57,QUEENS,11420,40.6749968,-73.8085366,"(40.6749968, -73.8085366)",130 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468214,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,13:45,BRONX,10461,40.8549,-73.849495,"(40.8549, -73.849495)",,,1232 PAWNEE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473563,Sedan,,,, +10/19/2021,8:30,BROOKLYN,11217,40.6771912,-73.9780665,"(40.6771912, -73.9780665)",,,51 LINCOLN PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468736,Sedan,Bus,,, +10/14/2021,6:20,BROOKLYN,11207,40.6520399,-73.8879488,"(40.6520399, -73.8879488)",FLATLANDS AVENUE,GEORGIA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4467262,Bus,Bus,,, +04/11/2022,10:05,QUEENS,11368,40.73619,-73.85806,"(40.73619, -73.85806)",,,99-25 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,10:29,BRONX,10462,40.8540771,-73.8675183,"(40.8540771, -73.8675183)",,,2126 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/11/2021,0:00,,,40.8373235,-73.9198306,"(40.8373235, -73.9198306)",JEROME AVENUE,PLAZA DRIVE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4466811,ELECTRIC S,Sedan,,, +10/23/2021,20:00,,,40.8851277,-73.8215996,"(40.8851277, -73.8215996)",NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470170,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,7:30,,,40.5890646,-74.1386214,"(40.5890646, -74.1386214)",ROCKLAND AVENUE,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4470846,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,11:40,MANHATTAN,10034,40.8657971,-73.9199975,"(40.8657971, -73.9199975)",WEST 207 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469412,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,16:14,,,40.6802409,-73.9467485,"(40.6802409, -73.9467485)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469754,Bus,Sedan,,, +04/14/2022,15:00,MANHATTAN,10030,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519011,Sedan,,,, +10/13/2021,19:40,MANHATTAN,10027,40.8120807,-73.9498938,"(40.8120807, -73.9498938)",,,304 WEST 128 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4466948,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,14:50,BRONX,10451,40.8168185,-73.9211662,"(40.8168185, -73.9211662)",,,310 EAST 149 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467712,Sedan,Multi-Wheeled Vehicle,,, +10/19/2021,15:57,BRONX,10452,40.8377444,-73.9173822,"(40.8377444, -73.9173822)",EAST CLARKE PLACE,WALTON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inexperience,,,,4468962,Sedan,Motorscooter,,, +10/17/2021,4:55,BROOKLYN,11208,40.6731187,-73.8786449,"(40.6731187, -73.8786449)",ATKINS AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4468172,Sedan,Sedan,Box Truck,, +10/14/2021,12:45,MANHATTAN,10010,40.7416232,-73.9937353,"(40.7416232, -73.9937353)",AVENUE OF THE AMERICAS,WEST 21 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4468147,Sedan,,,, +10/20/2021,15:00,QUEENS,11433,40.7027386,-73.7788985,"(40.7027386, -73.7788985)",,,177-42 106 ROAD,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4469836,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,18:32,,,40.6531723,-73.9615966,"(40.6531723, -73.9615966)",VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4466732,Sedan,Sedan,,, +10/14/2021,21:20,MANHATTAN,10012,40.7241363,-73.9926041,"(40.7241363, -73.9926041)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468282,Sedan,,,, +10/11/2021,16:30,,,40.5864653,-73.8165219,"(40.5864653, -73.8165219)",,,113 ROCKAWAY FREEWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4466390,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,16:27,QUEENS,11419,40.6882933,-73.8318534,"(40.6882933, -73.8318534)",101 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,,4467944,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +10/17/2021,9:15,BRONX,10457,40.8468268,-73.8970434,"(40.8468268, -73.8970434)",BATHGATE AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468347,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,20:05,BROOKLYN,11237,40.708805,-73.9257658,"(40.708805, -73.9257658)",STEWART AVENUE,JOHNSON AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468088,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,9:00,,,40.839908,-73.9360834,"(40.839908, -73.9360834)",RIVERSIDE DRIVE WEST,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4467359,Sedan,,,, +04/15/2022,22:07,,,40.664158,-73.99106,"(40.664158, -73.99106)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519412,Motorcycle,,,, +07/30/2021,0:12,,,,,,SHERIDAN EXPRESSWAY,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4443379,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,18:00,QUEENS,11378,40.732876,-73.89592,"(40.732876, -73.89592)",69 STREET,52 ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4447137,Sedan,Sedan,,, +08/16/2021,13:05,,,40.69768,-73.98703,"(40.69768, -73.98703)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4447605,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,16:01,MANHATTAN,10002,40.71364,-73.9953,"(40.71364, -73.9953)",,,66 EAST BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449164,SEDONA,Bike,,, +08/20/2021,13:30,BROOKLYN,11226,40.649624,-73.96311,"(40.649624, -73.96311)",,,67 EAST 18 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449677,,,,, +08/18/2021,15:00,BROOKLYN,11201,40.695343,-73.98324,"(40.695343, -73.98324)",,,301 GOLD STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448332,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,20:30,BROOKLYN,11226,40.65371,-73.95714,"(40.65371, -73.95714)",,,80 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449684,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,13:30,MANHATTAN,10018,40.75289,-73.98732,"(40.75289, -73.98732)",WEST 38 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4449489,Moped,E-Bike,,, +08/18/2021,14:00,BRONX,10452,40.84065,-73.91902,"(40.84065, -73.91902)",WEST 170 STREET,INWOOD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449118,Taxi,Pick-up Truck,,, +08/12/2021,22:30,BRONX,10459,40.820988,-73.89491,"(40.820988, -73.89491)",EAST 163 STREET,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4448811,Sedan,,,, +08/18/2021,17:30,QUEENS,11373,40.741608,-73.88295,"(40.741608, -73.88295)",45 AVENUE,82 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4448459,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/23/2021,9:30,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449380,Sedan,,,, +08/18/2021,23:20,BROOKLYN,11237,40.714024,-73.92556,"(40.714024, -73.92556)",,,1301 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448393,Sedan,,,, +08/20/2021,21:15,,,40.69325,-73.97287,"(40.69325, -73.97287)",CARLTON AVENUE,MYRTLE AVENUE,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4448926,Bike,Bike,,, +08/18/2021,11:30,STATEN ISLAND,10305,40.60391,-74.07313,"(40.60391, -74.07313)",,,227 GRASMERE DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448793,Sedan,Sedan,,, +08/18/2021,8:31,,,,,,33 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449558,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,14:36,BRONX,10469,40.879055,-73.851875,"(40.879055, -73.851875)",OAKLEY STREET,EAST 218 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4449730,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,18:20,,,40.81094,-73.94318,"(40.81094, -73.94318)",WEST 130 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448779,Sedan,,,, +08/19/2021,18:47,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449116,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,18:00,BROOKLYN,11220,40.6374,-74.01116,"(40.6374, -74.01116)",59 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448660,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,0:00,BROOKLYN,11230,40.618557,-73.95504,"(40.618557, -73.95504)",OCEAN AVENUE,AVENUE M,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449678,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,20:30,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4448966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,17:30,,,40.69056,-73.98511,"(40.69056, -73.98511)",HOYT STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448915,E-Scooter,,,, +08/18/2021,13:55,BRONX,10459,40.822693,-73.89176,"(40.822693, -73.89176)",,,966 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4448623,Sedan,,,, +08/18/2021,3:00,QUEENS,11420,40.666714,-73.82207,"(40.666714, -73.82207)",,,150-15 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448065,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,15:08,,,40.66323,-73.93161,"(40.66323, -73.93161)",UTICA AVENUE,EAST NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4449409,Sedan,,,, +08/20/2021,22:00,MANHATTAN,10002,40.720272,-73.981544,"(40.720272, -73.981544)",,,133 PITT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449011,Sedan,,,, +06/30/2021,0:00,BRONX,10469,40.87276,-73.84516,"(40.87276, -73.84516)",BURKE AVENUE,CORSA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449201,Sedan,,,, +08/18/2021,15:39,BROOKLYN,11215,40.669525,-73.98525,"(40.669525, -73.98525)",,,291 8 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448357,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,22:20,BROOKLYN,11211,40.70914,-73.950836,"(40.70914, -73.950836)",UNION AVENUE,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448928,Sedan,Sedan,,, +08/20/2021,2:50,,,,,,SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4448798,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/20/2021,4:25,QUEENS,11432,40.71214,-73.80952,"(40.71214, -73.80952)",150 STREET,84 DRIVE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4448854,Sedan,Sedan,,, +08/18/2021,15:51,BRONX,10462,40.856323,-73.86958,"(40.856323, -73.86958)",,,2180 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4448515,Bus,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,23:40,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448973,Sedan,Sedan,,, +08/19/2021,9:00,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,PRINCE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449048,Sedan,Bike,,, +08/20/2021,17:45,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,CENTRAL PARK WEST,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449382,Bike,Sedan,,, +08/19/2021,0:30,QUEENS,11377,40.752155,-73.89995,"(40.752155, -73.89995)",62 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448415,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/16/2021,19:50,,,40.687637,-73.94478,"(40.687637, -73.94478)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449225,Sedan,Sedan,,, +08/15/2021,12:30,QUEENS,11375,40.726315,-73.85215,"(40.726315, -73.85215)",,,101-24 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449320,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,0:40,BROOKLYN,11218,40.642796,-73.97945,"(40.642796, -73.97945)",MC DONALD AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448584,Taxi,Box Truck,,, +08/19/2021,11:15,QUEENS,11101,40.739426,-73.93464,"(40.739426, -73.93464)",VANDAM STREET,GALE AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448705,Sedan,Pick-up Truck,,, +08/18/2021,21:00,,,0,0,"(0.0, 0.0)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4448748,Pick-up Truck,Sedan,Sedan,Sedan, +08/11/2021,17:30,BRONX,10463,,,,,,98 VANCORTLANDT PARK SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4449353,Pick-up Truck,Box Truck,,, +08/18/2021,5:03,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4448115,Sedan,,,, +08/20/2021,8:34,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449631,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,20:35,QUEENS,11691,40.610046,-73.7536,"(40.610046, -73.7536)",,,14-79 BEACH CHANNEL DRIVE,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4448423,Motorcycle,,,, +08/19/2021,12:17,,,40.69941,-73.93622,"(40.69941, -73.93622)",BEAVER STREET,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4448658,Station Wagon/Sport Utility Vehicle,SCOOTER,,, +08/20/2021,5:35,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448825,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,13:10,STATEN ISLAND,10306,40.560795,-74.11269,"(40.560795, -74.11269)",MILL ROAD,PENN AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449649,Sedan,E-Scooter,,, +08/20/2021,14:26,,,40.690784,-73.76257,"(40.690784, -73.76257)",EVERITT PLACE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4448887,Sedan,Bike,,, +08/19/2021,20:45,BROOKLYN,11219,40.6294,-73.99949,"(40.6294, -73.99949)",,,1260 60 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449188,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,22:15,QUEENS,11435,40.71603,-73.82359,"(40.71603, -73.82359)",UNION TURNPIKE,135 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448959,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:50,,,40.70066,-73.98775,"(40.70066, -73.98775)",PEARL STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,17:48,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448689,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/17/2021,16:40,,,40.627037,-74.16483,"(40.627037, -74.16483)",,,2239 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449215,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,17:30,STATEN ISLAND,10306,40.57468,-74.12929,"(40.57468, -74.12929)",RICHMOND ROAD,RIEDEL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448564,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,22:15,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449070,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,8:00,BROOKLYN,11222,40.735275,-73.95391,"(40.735275, -73.95391)",,,171 EAGLE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449606,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,9:00,QUEENS,11101,40.74667,-73.947845,"(40.74667, -73.947845)",21 STREET,45 ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4448153,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,14:48,BRONX,10451,40.818794,-73.922134,"(40.818794, -73.922134)",EAST 151 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448831,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,7:20,BROOKLYN,11232,40.655518,-74.00645,"(40.655518, -74.00645)",36 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448830,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,16:02,MANHATTAN,10035,40.80098,-73.93178,"(40.80098, -73.93178)",EAST 124 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448309,Sedan,,,, +08/11/2021,19:10,,,40.71585,-73.81183,"(40.71585, -73.81183)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448985,Sedan,Sedan,,, +08/20/2021,14:40,MANHATTAN,10065,40.765614,-73.9607,"(40.765614, -73.9607)",EAST 67 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449004,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,3:26,,,40.795322,-73.929825,"(40.795322, -73.929825)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Other Vehicular,,,,4448463,Sedan,Sedan,,, +08/20/2021,13:35,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448947,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/20/2021,10:25,BRONX,10472,40.828094,-73.85203,"(40.828094, -73.85203)",,,2137 CHATTERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449464,Sedan,,,, +08/20/2021,19:00,QUEENS,11422,40.678417,-73.729225,"(40.678417, -73.729225)",BROOKVILLE BOULEVARD,130 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4449291,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,19:20,BROOKLYN,11214,40.612213,-73.99718,"(40.612213, -73.99718)",18 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4448919,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/28/2021,0:22,,,40.821445,-73.950386,"(40.821445, -73.950386)",AMSTERDAM AVENUE,,,3,0,0,0,0,0,3,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4449495,Station Wagon/Sport Utility Vehicle,Bus,,, +08/20/2021,14:00,STATEN ISLAND,10301,40.644466,-74.07686,"(40.644466, -74.07686)",RICHMOND TERRACE,WALL STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449249,Sedan,Bike,,, +08/14/2021,15:26,,,40.893425,-73.88347,"(40.893425, -73.88347)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449361,Tractor Truck Diesel,,,, +08/20/2021,7:38,BROOKLYN,11209,40.6228,-74.02836,"(40.6228, -74.02836)",4 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448786,Bus,Sedan,,, +08/19/2021,8:45,,,40.717033,-73.8221,"(40.717033, -73.8221)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/18/2021,22:19,QUEENS,11368,40.745728,-73.86213,"(40.745728, -73.86213)",46 AVENUE,102 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Following Too Closely,,,,4448484,Taxi,,,, +08/15/2021,12:45,,,40.554085,-74.19276,"(40.554085, -74.19276)",ARDEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449207,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/18/2021,11:18,BROOKLYN,11214,40.607933,-74.00688,"(40.607933, -74.00688)",,,63 BAY 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449531,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,12:00,,,40.848793,-73.94358,"(40.848793, -73.94358)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448521,Sedan,ENTERPRISE,,, +08/20/2021,12:00,BROOKLYN,11234,40.60648,-73.9277,"(40.60648, -73.9277)",AVENUE U,EAST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448850,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,2:40,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4448534,Sedan,,,, +08/18/2021,12:40,QUEENS,11429,40.71256,-73.732994,"(40.71256, -73.732994)",HEMPSTEAD AVENUE,221 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448267,Sedan,Motorcycle,,, +08/19/2021,12:20,BROOKLYN,11203,40.653233,-73.93054,"(40.653233, -73.93054)",,,809 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449415,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,15:40,QUEENS,11419,40.690044,-73.81481,"(40.690044, -73.81481)",131 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4449271,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/16/2021,17:47,,,40.751602,-73.93384,"(40.751602, -73.93384)",31 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4449553,Sedan,Bike,,, +03/22/2021,18:10,QUEENS,11385,40.706585,-73.897,"(40.706585, -73.897)",,,66-66 FRESH POND ROAD,1,0,0,0,1,0,0,0,Unspecified,,,,,4448863,Bike,,,, +08/18/2021,0:42,QUEENS,11385,40.71036,-73.91067,"(40.71036, -73.91067)",,,2038 STANHOPE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448211,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:10,,,40.73166,-73.98545,"(40.73166, -73.98545)",2 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449661,Bike,Bike,,, +08/18/2021,9:43,QUEENS,11692,40.597614,-73.79666,"(40.597614, -73.79666)",,,623 BEACH 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448720,Sedan,,,, +08/18/2021,12:52,,,40.675507,-74.00075,"(40.675507, -74.00075)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448734,Sedan,,,, +08/18/2021,18:06,MANHATTAN,10035,40.803123,-73.940445,"(40.803123, -73.940445)",EAST 122 STREET,PARK AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4448766,Sedan,Taxi,,, +07/12/2021,6:57,QUEENS,11379,40.720154,-73.87531,"(40.720154, -73.87531)",JUNIPER BOULEVARD SOUTH,80 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449024,Sedan,Sedan,,, +08/20/2021,8:24,QUEENS,11427,40.722153,-73.752495,"(40.722153, -73.752495)",,,89-23 HOLLIS COURT BOULEVARD,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4448883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,12:00,,,40.740643,-73.97581,"(40.740643, -73.97581)",1 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448255,Bus,,,, +08/18/2021,8:56,,,40.688213,-73.919815,"(40.688213, -73.919815)",MADISON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448213,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,0:00,BRONX,10452,40.841133,-73.924,"(40.841133, -73.924)",WEST 170 STREET,PLIMPTON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4449183,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,17:00,QUEENS,11375,40.731613,-73.84892,"(40.731613, -73.84892)",65 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448671,Sedan,,,, +08/20/2021,3:55,QUEENS,11378,40.725994,-73.89843,"(40.725994, -73.89843)",BORDEN AVENUE,CLINTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448835,Sedan,,,, +08/18/2021,13:00,BRONX,10467,40.871376,-73.86334,"(40.871376, -73.86334)",BARNES AVENUE,BURKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448303,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,15:00,,,40.754864,-73.85255,"(40.754864, -73.85255)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449310,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,1:25,BROOKLYN,11208,40.675053,-73.87436,"(40.675053, -73.87436)",CRYSTAL STREET,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4448172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,16:40,MANHATTAN,10035,40.797676,-73.93729,"(40.797676, -73.93729)",2 AVENUE,EAST 117 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449029,Sedan,,,, +08/19/2021,8:48,MANHATTAN,10038,40.713715,-73.998024,"(40.713715, -73.998024)",EAST BROADWAY,CHATHAM SQUARE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448533,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,12:35,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,JEROME AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449303,Minibike,,,, +08/20/2021,11:10,BROOKLYN,11203,40.660175,-73.9282,"(40.660175, -73.9282)",REMSEN AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449418,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,8:00,,,40.607002,-74.147415,"(40.607002, -74.147415)",WILLOWBROOK ROAD,DREYER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448818,Sedan,,,, +08/19/2021,15:20,BROOKLYN,11207,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448951,E-Bike,,,, +08/18/2021,9:00,,,40.72293,-73.98865,"(40.72293, -73.98865)",ALLEN STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448405,Sedan,Bike,,, +08/20/2021,11:46,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449053,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,19:01,,,40.752487,-73.8269,"(40.752487, -73.8269)",CHERRY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449104,Sedan,,,, +08/10/2021,11:31,,,40.59931,-73.972916,"(40.59931, -73.972916)",AVENUE T,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449550,Sedan,scooter,,, +08/19/2021,17:23,BRONX,10460,40.840103,-73.88619,"(40.840103, -73.88619)",EAST 176 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449255,Sedan,,,, +08/13/2021,14:26,BRONX,10463,40.875057,-73.91234,"(40.875057, -73.91234)",,,150 WEST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449366,Sedan,,,, +08/17/2021,17:54,MANHATTAN,10019,40.769226,-73.98477,"(40.769226, -73.98477)",WEST 59 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4449472,Sedan,Ambulance,,, +08/18/2021,14:15,QUEENS,11691,40.60426,-73.75286,"(40.60426, -73.75286)",BEACH 20 STREET,MOTT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448429,Bus,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,13:15,,,40.605427,-74.0762,"(40.605427, -74.0762)",HYLAN BOULEVARD,NARROWS ROAD SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448790,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,17:05,MANHATTAN,10036,,,,,,1180 AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448803,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,8:00,,,40.573265,-74.146965,"(40.573265, -74.146965)",RICHMOND HILL ROAD,OLD MILL ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4448552,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,22:47,QUEENS,11423,40.71619,-73.77412,"(40.71619, -73.77412)",,,87-66 188 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448994,Sedan,,,, +08/20/2021,15:32,,,40.67441,-73.991875,"(40.67441, -73.991875)",2 AVENUE,6 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448907,Bus,,,, +08/18/2021,12:30,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448490,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,17:41,BROOKLYN,11216,40.678955,-73.95413,"(40.678955, -73.95413)",BEDFORD PLACE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4449501,Sedan,Box Truck,,, +08/15/2021,2:30,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449693,Sedan,Sedan,,, +08/20/2021,18:15,BROOKLYN,11249,40.707306,-73.965645,"(40.707306, -73.965645)",,,77 DIVISION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449016,Sedan,Sedan,,, +08/20/2021,16:10,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449141,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/20/2021,19:10,QUEENS,11101,40.753223,-73.91215,"(40.753223, -73.91215)",,,50-10 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449568,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,12:58,MANHATTAN,10012,40.722492,-73.99607,"(40.722492, -73.99607)",,,227 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448539,Sedan,Box Truck,,, +08/18/2021,3:00,QUEENS,11691,,,,,,1041 ROSE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4448201,Convertible,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/19/2021,14:22,BRONX,10469,40.87122,-73.85558,"(40.87122, -73.85558)",LACONIA AVENUE,BURKE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4448867,Box Truck,Moped,,, +08/20/2021,23:15,BROOKLYN,11217,40.683765,-73.97877,"(40.683765, -73.97877)",4 AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449620,Sedan,,,, +08/18/2021,12:25,,,40.831684,-73.85562,"(40.831684, -73.85562)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448289,Sedan,Sedan,,, +08/18/2021,18:11,,,40.606674,-73.99252,"(40.606674, -73.99252)",21 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448367,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,20:25,BROOKLYN,11205,40.697433,-73.97667,"(40.697433, -73.97667)",,,20 NORTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449085,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,13:18,BROOKLYN,11233,40.679935,-73.91389,"(40.679935, -73.91389)",MACDOUGAL STREET,BOYLAND STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4448715,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,2:09,,,40.7736,-73.98158,"(40.7736, -73.98158)",WEST 66 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,Unspecified,,,4449396,Sedan,Box Truck,Van,, +08/20/2021,21:26,STATEN ISLAND,10305,40.599648,-74.06627,"(40.599648, -74.06627)",,,101 MAJOR AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449652,Sedan,suv,,, +08/16/2021,10:30,,,40.701584,-73.88515,"(40.701584, -73.88515)",MYRTLE AVENUE,67 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448862,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,19:04,MANHATTAN,10034,40.85891,-73.922966,"(40.85891, -73.922966)",10 AVENUE,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4448771,Sedan,Sedan,,, +08/18/2021,20:47,QUEENS,11368,40.750893,-73.855484,"(40.750893, -73.855484)",111 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4448483,E-Bike,Sedan,,, +08/18/2021,17:00,QUEENS,11434,40.67877,-73.764,"(40.67877, -73.764)",131 AVENUE,178 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448721,Sedan,,,, +08/18/2021,7:00,BROOKLYN,11213,40.667885,-73.93249,"(40.667885, -73.93249)",,,1690 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448895,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,11:40,,,40.703106,-73.859985,"(40.703106, -73.859985)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448310,Sedan,Sedan,,, +08/19/2021,20:57,BROOKLYN,11207,40.680946,-73.90703,"(40.680946, -73.90703)",BROADWAY,ABERDEEN STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448762,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,11:00,QUEENS,11356,40.78593,-73.84777,"(40.78593, -73.84777)",120 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448343,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,16:21,QUEENS,11427,40.73246,-73.73576,"(40.73246, -73.73576)",,,86-30 WINCHESTER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448675,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,12:30,MANHATTAN,10025,40.794926,-73.97032,"(40.794926, -73.97032)",,,209 WEST 97 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448232,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,19:55,BROOKLYN,11204,40.630966,-73.97931,"(40.630966, -73.97931)",,,1757 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448583,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/20/2021,18:00,QUEENS,11428,40.715424,-73.74812,"(40.715424, -73.74812)",,,211-37 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448922,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,21:00,BROOKLYN,11207,40.665016,-73.898026,"(40.665016, -73.898026)",,,400 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448939,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,18:50,,,40.808445,-73.945,"(40.808445, -73.945)",WEST 126 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448502,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/18/2021,20:45,,,,,,Cross Bay Pkwy,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449373,Sedan,Sedan,,, +08/20/2021,23:15,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449423,Sedan,,,, +08/18/2021,16:22,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448528,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,17:00,,,40.757763,-73.852516,"(40.757763, -73.852516)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449062,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,15:40,,,,,,MERRICK BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4448890,Sedan,Sedan,Sedan,, +08/19/2021,4:15,MANHATTAN,10037,40.813972,-73.93467,"(40.813972, -73.93467)",,,10 EAST 138 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4448767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +08/19/2021,7:08,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,Unspecified,,,4448822,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/19/2021,0:15,,,40.789085,-73.780464,"(40.789085, -73.780464)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4449108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,6:15,BROOKLYN,11208,40.679108,-73.88062,"(40.679108, -73.88062)",ATLANTIC AVENUE,HIGHLAND PLACE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4448575,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,14:13,MANHATTAN,10009,40.72697,-73.98575,"(40.72697, -73.98575)",1 AVENUE,EAST 7 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449166,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/19/2021,13:40,BROOKLYN,11234,40.612785,-73.93101,"(40.612785, -73.93101)",RYDER STREET,FILLMORE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,6:43,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4448932,Sedan,Sedan,,, +08/11/2021,15:30,QUEENS,11102,0,0,"(0.0, 0.0)",,,14-31 27 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449546,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,17:29,BROOKLYN,11207,40.6563,-73.894356,"(40.6563, -73.894356)",,,124 LOUISIANA AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4448399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,14:25,BROOKLYN,11217,40.677715,-73.97738,"(40.677715, -73.97738)",,,68 SAINT JOHNS PLACE,2,0,0,0,0,0,2,0,Accelerator Defective,,,,,4448633,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,16:15,BRONX,10459,40.824062,-73.89982,"(40.824062, -73.89982)",,,985 PROSPECT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448424,Sedan,Sedan,,, +08/15/2021,3:00,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",150 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4448962,Motorcycle,Sedan,,, +08/19/2021,23:10,STATEN ISLAND,10304,40.597706,-74.092545,"(40.597706, -74.092545)",,,1190 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4448794,Pick-up Truck,,,, +08/19/2021,21:40,QUEENS,11413,40.66542,-73.745995,"(40.66542, -73.745995)",230 PLACE,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449035,4 dr sedan,,,, +08/15/2021,20:45,BROOKLYN,11221,40.687798,-73.93692,"(40.687798, -73.93692)",,,745 GATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449481,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,14:00,BROOKLYN,11207,40.66679,-73.8833,"(40.66679, -73.8833)",,,625 ASHFORD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/18/2021,10:30,,,40.766285,-73.98186,"(40.766285, -73.98186)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4448799,Pick-up Truck,Bike,,, +08/19/2021,9:54,QUEENS,11357,40.79031,-73.811905,"(40.79031, -73.811905)",12 ROAD,CLINTONVILLE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449512,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,2:00,BRONX,10467,40.880035,-73.86245,"(40.880035, -73.86245)",,,760 EAST 215 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449718,Sedan,,,, +08/20/2021,19:05,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",BROADWAY,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448927,Beverage Truck,Bike,,, +08/20/2021,22:26,BROOKLYN,11234,40.60143,-73.91334,"(40.60143, -73.91334)",,,2777 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449075,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,2:11,,,40.679276,-73.92906,"(40.679276, -73.92906)",FULTON STREET,UTICA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449390,Sedan,,,, +08/18/2021,7:40,QUEENS,11373,40.741676,-73.86756,"(40.741676, -73.86756)",50 AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448473,Garbage or Refuse,PK,,, +08/19/2021,21:18,BRONX,10468,40.862297,-73.89842,"(40.862297, -73.89842)",EAST FORDHAM ROAD,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,14:55,MANHATTAN,10038,40.711777,-73.99971,"(40.711777, -73.99971)",SAINT JAMES PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449229,Sedan,Sedan,,, +08/19/2021,16:40,,,40.73566,-73.91521,"(40.73566, -73.91521)",LIE LOWER LEVEL (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448709,Bus,Sedan,,, +08/18/2021,15:30,,,40.605568,-74.00443,"(40.605568, -74.00443)",18 AVENUE,,,0,0,0,0,0,0,0,0,,,,,,4448314,,,,, +08/20/2021,3:00,QUEENS,11357,40.781693,-73.82225,"(40.781693, -73.82225)",20 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4449131,Bus,Sedan,,, +08/19/2021,23:30,STATEN ISLAND,10304,40.598503,-74.091934,"(40.598503, -74.091934)",RICHMOND ROAD,HUNTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449645,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,2:00,BRONX,10466,40.90031,-73.84372,"(40.90031, -73.84372)",,,4411 MURDOCK AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4449241,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,21:15,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449331,Sedan,Sedan,,, +08/18/2021,12:12,MANHATTAN,10032,40.843502,-73.93799,"(40.843502, -73.93799)",WEST 172 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448594,,,,, +08/19/2021,0:45,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4448726,Sedan,,,, +08/18/2021,15:25,BROOKLYN,11222,40.725998,-73.950035,"(40.725998, -73.950035)",ECKFORD STREET,NORMAN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449615,Sedan,Bike,,, +08/20/2021,17:30,QUEENS,11101,40.745026,-73.950775,"(40.745026, -73.950775)",11 STREET,47 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448900,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,10:20,BRONX,10451,40.810947,-73.92993,"(40.810947, -73.92993)",,,180 CANAL PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448448,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/17/2021,23:40,BROOKLYN,11216,40.677025,-73.95268,"(40.677025, -73.95268)",BEDFORD AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449403,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,10:19,BRONX,10458,40.869583,-73.88827,"(40.869583, -73.88827)",,,2873 BRIGGS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448842,Dump,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,18:55,BROOKLYN,11217,40.681736,-73.97531,"(40.681736, -73.97531)",,,461 DEAN STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4448358,Sedan,E-Bike,,, +08/18/2021,15:57,BRONX,10454,40.808453,-73.9154,"(40.808453, -73.9154)",CRIMMINS AVENUE,EAST 141 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448450,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,14:33,MANHATTAN,10011,0,0,"(0.0, 0.0)",,,378 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449193,Bus,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,9:00,BROOKLYN,11206,40.7012,-73.93992,"(40.7012, -73.93992)",,,811 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448857,Sedan,Sedan,,, +08/18/2021,12:28,QUEENS,11420,40.66712,-73.81228,"(40.66712, -73.81228)",NORTH CONDUIT AVENUE,128 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4448416,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,15:55,BROOKLYN,11206,40.698185,-73.9374,"(40.698185, -73.9374)",BELVIDERE STREET,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448654,Bike,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,0:00,QUEENS,11435,40.694675,-73.80198,"(40.694675, -73.80198)",,,147-29 SOUTH ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448874,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,3:15,QUEENS,11361,40.757027,-73.76774,"(40.757027, -73.76774)",,,46-46 BELL BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448073,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,14:59,BRONX,10472,40.8344,-73.87276,"(40.8344, -73.87276)",EAST 174 STREET,FTELEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448682,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,14:40,QUEENS,11103,40.771435,-73.91421,"(40.771435, -73.91421)",,,33-16 24 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449561,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,16:00,BROOKLYN,11207,40.675755,-73.88738,"(40.675755, -73.88738)",LIBERTY AVENUE,JEROME STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4448954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,8:30,QUEENS,11432,0,0,"(0.0, 0.0)",,,87-30 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448979,Sedan,Sedan,,, +08/18/2021,5:27,,,40.857784,-73.83081,"(40.857784, -73.83081)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448752,Sedan,,,, +08/18/2021,7:19,,,40.71886,-73.97492,"(40.71886, -73.97492)",FDR DRIVE,EAST HOUSTON STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4448338,Sedan,Sedan,Sedan,Sedan, +08/18/2021,19:45,STATEN ISLAND,10308,40.549114,-74.150635,"(40.549114, -74.150635)",NELSON AVENUE,LOCUST PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4448568,Sedan,Sedan,,, +08/19/2021,22:08,,,40.804054,-73.91369,"(40.804054, -73.91369)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448744,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,1:38,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4448725,Sedan,Sedan,Sedan,, +08/18/2021,0:00,BROOKLYN,11201,40.688404,-73.99267,"(40.688404, -73.99267)",,,4 DEAN STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4448621,Sedan,,,, +08/20/2021,15:00,QUEENS,11413,40.663395,-73.750626,"(40.663395, -73.750626)",,,144-04 228 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448899,Sedan,Tractor Truck Diesel,,, +08/19/2021,12:40,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,15:00,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448313,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,11:14,BRONX,10462,0,0,"(0.0, 0.0)",,,2218 STARLING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448826,Sedan,Sedan,,, +08/18/2021,10:20,,,40.68444,-73.83192,"(40.68444, -73.83192)",LIBERTY AVENUE,110 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4448417,Sedan,,,, +08/18/2021,11:15,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448960,Sedan,Sedan,,, +08/16/2021,9:30,,,40.670586,-73.76509,"(40.670586, -73.76509)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4448886,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,18:44,,,40.624844,-74.14308,"(40.624844, -74.14308)",FOREST AVENUE,ARNPRIOR STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449218,Sedan,Motorcycle,Sedan,, +08/18/2021,17:58,BROOKLYN,11249,40.712627,-73.965,"(40.712627, -73.965)",,,79 SOUTH 4 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448691,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,17:44,,,40.72752,-73.75879,"(40.72752, -73.75879)",CLEARVIEW EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4448981,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/20/2021,18:20,BRONX,10466,40.89016,-73.84261,"(40.89016, -73.84261)",BAYCHESTER AVENUE,STRANG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449194,Sedan,Sedan,,, +08/18/2021,21:00,,,40.59143,-73.775986,"(40.59143, -73.775986)",BEACH 45 STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4449000,Bike,,,, +08/16/2021,2:05,BROOKLYN,11221,40.69294,-73.9377,"(40.69294, -73.9377)",,,927 DE KALB AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4449451,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,17:30,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448351,Sedan,,,, +08/19/2021,9:00,MANHATTAN,10035,40.801235,-73.941826,"(40.801235, -73.941826)",PARK AVENUE,EAST 119 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4448563,Moped,Sedan,,, +08/19/2021,13:00,QUEENS,11385,40.70944,-73.86395,"(40.70944, -73.86395)",,,72-12 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449490,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,5:15,QUEENS,11434,40.6818,-73.760956,"(40.6818, -73.760956)",FARMERS BOULEVARD,MARS PLACE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4448827,Sedan,Sedan,,, +08/19/2021,8:05,BROOKLYN,11203,40.65433,-73.9326,"(40.65433, -73.9326)",,,315 EAST 48 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448593,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,17:00,MANHATTAN,10023,40.773872,-73.98223,"(40.773872, -73.98223)",WEST 66 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449381,Truck,,,, +08/20/2021,5:40,BRONX,10474,40.81623,-73.887596,"(40.81623, -73.887596)",,,788 HUNTS POINT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448812,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/18/2021,17:00,QUEENS,11435,40.704403,-73.814445,"(40.704403, -73.814445)",139 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448986,Sedan,,,, +08/18/2021,17:28,BROOKLYN,11207,40.682076,-73.89521,"(40.682076, -73.89521)",,,27 CROSBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448394,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,16:46,BRONX,10457,40.852486,-73.88724,"(40.852486, -73.88724)",BELMONT AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449287,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,18:50,MANHATTAN,10036,40.758507,-73.99075,"(40.758507, -73.99075)",,,350 WEST 43 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449465,Pick-up Truck,Motorcycle,,, +08/19/2021,13:44,,,40.76285,-73.967735,"(40.76285, -73.967735)",LEXINGTON AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4448780,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:12,MANHATTAN,10028,40.775658,-73.953354,"(40.775658, -73.953354)",,,1592 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449731,Bike,Sedan,,, +08/20/2021,18:50,,,40.63524,-73.967636,"(40.63524, -73.967636)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,2:10,BRONX,10471,40.910633,-73.903076,"(40.910633, -73.903076)",,,6114 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449360,Sedan,Taxi,,, +08/20/2021,9:00,BROOKLYN,11203,40.649693,-73.936966,"(40.649693, -73.936966)",SNYDER AVENUE,EAST 43 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449520,Sedan,Sedan,,, +08/17/2021,8:30,BROOKLYN,11210,40.634174,-73.944885,"(40.634174, -73.944885)",NEW YORK AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449410,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,14:10,BROOKLYN,11232,40.665073,-73.996574,"(40.665073, -73.996574)",3 AVENUE,19 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4448736,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,16:50,,,40.662533,-73.94792,"(40.662533, -73.94792)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448674,Carry All,,,, +08/20/2021,13:18,BROOKLYN,11222,40.73169,-73.959564,"(40.73169, -73.959564)",,,140 WEST STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449607,Box Truck,Box Truck,,, +08/20/2021,4:30,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WHITLOCK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,9:45,,,40.706703,-73.935715,"(40.706703, -73.935715)",WHITE STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448231,Tractor Truck Diesel,Pick-up Truck,,, +08/18/2021,13:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448258,Sedan,,,, +08/20/2021,11:11,,,40.84106,-73.92851,"(40.84106, -73.92851)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449071,Tractor Truck Diesel,Sedan,,, +08/18/2021,18:36,MANHATTAN,10012,40.727905,-73.994675,"(40.727905, -73.994675)",,,684 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448495,Sedan,,,, +08/18/2021,18:17,BROOKLYN,11205,40.69657,-73.95844,"(40.69657, -73.95844)",PARK AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449506,Sedan,Sedan,,, +08/20/2021,11:06,MANHATTAN,10024,40.783844,-73.979996,"(40.783844, -73.979996)",BROADWAY,WEST 79 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449018,Sedan,,,, +08/20/2021,2:16,,,40.841087,-73.937935,"(40.841087, -73.937935)",AUDUBON AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4448838,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,20:40,QUEENS,11420,40.679253,-73.81871,"(40.679253, -73.81871)",LINDEN BOULEVARD,121 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4448730,Sedan,Moped,,, +08/18/2021,17:20,QUEENS,11004,40.7379,-73.714775,"(40.7379, -73.714775)",LITTLE NECK PARKWAY,83 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448333,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,20:45,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4448870,Sedan,Sedan,,, +08/19/2021,7:00,BROOKLYN,11229,40.597813,-73.95907,"(40.597813, -73.95907)",,,2126 HOMECREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448546,Sedan,,,, +08/20/2021,9:46,MANHATTAN,10028,40.774628,-73.95012,"(40.774628, -73.95012)",,,422 EAST 83 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448853,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,9:13,BRONX,10466,40.8831,-73.83766,"(40.8831, -73.83766)",PALMER AVENUE,NEEDHAM AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4449242,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/19/2021,21:00,,,40.829697,-73.91313,"(40.829697, -73.91313)",TELLER AVENUE,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4449119,Taxi,,,, +08/19/2021,22:38,,,,,,BOSTON ROAD,PELHAM PARKWAY NORTH,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4448875,Taxi,,,, +08/19/2021,8:00,QUEENS,11377,40.73555,-73.894226,"(40.73555, -73.894226)",70 STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4448704,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/20/2021,20:25,BROOKLYN,11212,40.661606,-73.92066,"(40.661606, -73.92066)",,,241 ROCKAWAY PARKWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449421,Sedan,E-Scooter,,, +08/18/2021,7:40,QUEENS,11691,40.59957,-73.76422,"(40.59957, -73.76422)",,,29-32 BEACH CHANNEL DRIVE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4448203,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/18/2021,16:00,MANHATTAN,10025,40.793556,-73.967026,"(40.793556, -73.967026)",WEST 97 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448458,Sedan,Sedan,,, +08/18/2021,15:06,,,40.84512,-73.90663,"(40.84512, -73.90663)",MONROE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448506,Sedan,,,, +08/18/2021,6:55,BROOKLYN,11221,40.68603,-73.93268,"(40.68603, -73.93268)",STUYVESANT AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4449496,Sedan,Sedan,Sedan,, +08/19/2021,8:23,BRONX,10458,40.872494,-73.88147,"(40.872494, -73.88147)",MOSHOLU PARKWAY,BAINBRIDGE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4449318,Sedan,Bike,,, +08/18/2021,7:20,,,40.769646,-73.91425,"(40.769646, -73.91425)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448243,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,6:45,MANHATTAN,10037,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 ST BRIDGE,LENOX AVENUE,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4447572,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,14:00,,,40.699703,-73.99627,"(40.699703, -73.99627)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448914,Sedan,,,, +08/18/2021,15:54,BRONX,10467,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,PARKSIDE PLACE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4448611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,9:10,QUEENS,11102,40.769432,-73.917114,"(40.769432, -73.917114)",,,25-69 33 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4449559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/20/2021,17:03,MANHATTAN,10035,40.797306,-73.93446,"(40.797306, -73.93446)",EAST 118 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449025,Sedan,E-Bike,,, +08/13/2021,7:40,BROOKLYN,11207,40.67707,-73.88814,"(40.67707, -73.88814)",,,2875 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4448931,,,,, +08/19/2021,15:35,BROOKLYN,11211,40.71594,-73.92488,"(40.71594, -73.92488)",,,1313 GRAND STREET,1,0,0,0,1,0,0,0,Unspecified,,,,,4448663,Bike,,,, +08/18/2021,16:50,,,40.574177,-74.16385,"(40.574177, -74.16385)",FOREST HILL ROAD,YUKON AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4448553,Pick-up Truck,Sedan,,, +08/04/2021,0:33,,,,,,WEST 53 STREET,WEST STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4448807,Sedan,Sedan,Tractor Truck Diesel,Sedan,Sedan +08/18/2021,12:07,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448324,TLC,Sedan,,, +08/18/2021,17:39,BROOKLYN,11212,40.658672,-73.90019,"(40.658672, -73.90019)",NEW LOTS AVENUE,JUNIUS STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4449111,Bike,,,, +08/20/2021,12:00,BRONX,10453,40.857327,-73.904526,"(40.857327, -73.904526)",JEROME AVENUE,EAST 182 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4449650,Moped,,,, +08/20/2021,11:00,,,40.75123,-73.9366,"(40.75123, -73.9366)",41 AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Keep Right,,,,4449565,Sedan,Box Truck,,, +08/13/2021,13:05,,,40.691765,-73.99992,"(40.691765, -73.99992)",COLUMBIA STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,17:25,BRONX,10466,40.894436,-73.84807,"(40.894436, -73.84807)",BUSSING AVENUE,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448381,Sedan,,,, +08/16/2021,9:15,MANHATTAN,10021,40.771694,-73.95919,"(40.771694, -73.95919)",3 AVENUE,EAST 75 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448775,Bike,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,1:00,BRONX,10466,40.899246,-73.84609,"(40.899246, -73.84609)",BAYCHESTER AVENUE,NEREID AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4449200,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,11:40,QUEENS,11354,40.76471,-73.830696,"(40.76471, -73.830696)",35 AVENUE,LINDEN PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,13:49,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448972,Sedan,Tanker,,, +08/20/2021,11:48,MANHATTAN,10001,40.74947,-73.98704,"(40.74947, -73.98704)",,,22 WEST 34 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4449542,Sedan,Bike,,, +08/20/2021,15:50,,,40.64663,-73.95566,"(40.64663, -73.95566)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449670,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,14:00,QUEENS,11366,40.7278033,-73.8051521,"(40.7278033, -73.8051521)",164 STREET,73 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4469709,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,5:57,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4448940,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,17:50,,,,,,ROCKAWAY FREEWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4449374,Sedan,Sedan,,, +08/20/2021,6:34,MANHATTAN,10012,40.722298,-73.99713,"(40.722298, -73.99713)",CLEVELAND PLACE,SPRING STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4449224,Sedan,E-Scooter,,, +08/18/2021,6:00,BROOKLYN,11236,40.63145,-73.887085,"(40.63145, -73.887085)",ROCKAWAY PARKWAY,SCHENCK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449005,Sedan,,,, +08/18/2021,15:31,BRONX,10457,40.85145,-73.89867,"(40.85145, -73.89867)",,,2050 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449272,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,10:15,,,40.70715,-73.79299,"(40.70715, -73.79299)",168 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448903,Sedan,Sedan,,, +08/17/2021,12:00,QUEENS,11106,40.768818,-73.93346,"(40.768818, -73.93346)",31 AVENUE,12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449554,Sedan,Sedan,,, +08/19/2021,2:15,,,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448770,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,21:55,BROOKLYN,11234,40.619488,-73.918106,"(40.619488, -73.918106)",,,5910 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448717,Sedan,,,, +08/19/2021,13:30,MANHATTAN,10027,40.81261,-73.95683,"(40.81261, -73.95683)",AMSTERDAM AVENUE,LASALLE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448603,Sedan,Sedan,,, +08/20/2021,23:49,,,40.719547,-73.9749,"(40.719547, -73.9749)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448967,Sedan,,,, +08/11/2021,17:17,BRONX,10463,40.8827,-73.89273,"(40.8827, -73.89273)",SEDGWICK AVENUE,VANCORTLANDT AVENUE WEST,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449354,Sedan,Sedan,,, +08/19/2021,13:00,,,40.789116,-73.82259,"(40.789116, -73.82259)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449044,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/19/2021,16:40,STATEN ISLAND,10301,40.61991,-74.099396,"(40.61991, -74.099396)",,,961 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4449248,Sedan,Sedan,Sedan,, +08/20/2021,13:50,,,40.761787,-73.95745,"(40.761787, -73.95745)",EAST 64 STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4449634,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,4:00,,,40.683228,-73.907135,"(40.683228, -73.907135)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448763,Sedan,Sedan,,, +08/15/2021,23:50,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449181,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,3:30,,,40.74803,-73.83315,"(40.74803, -73.83315)",COLLEGE POINT BOULEVARD,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4448489,Sedan,,,, +08/18/2021,11:45,BROOKLYN,11201,40.690163,-73.98711,"(40.690163, -73.98711)",LIVINGSTON STREET,GALLATIN PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449100,Station Wagon/Sport Utility Vehicle,delivery w,,, +08/19/2021,9:00,QUEENS,11373,40.7338,-73.871414,"(40.7338, -73.871414)",,,90-15 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449313,Box Truck,,,, +08/19/2021,13:00,,,,,,MOSHOLU PARKWAY,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448849,Sedan,Sedan,,, +08/18/2021,6:47,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",VANDAM STREET,THOMSON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448152,Box Truck,,,, +08/19/2021,1:07,QUEENS,11385,0,0,"(0.0, 0.0)",CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4448538,Sedan,,,, +08/05/2021,11:52,,,40.703815,-73.89106,"(40.703815, -73.89106)",OTTO ROAD,65 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448834,Sedan,,,, +08/18/2021,16:30,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448306,Sedan,Pick-up Truck,,, +08/19/2021,18:39,MANHATTAN,10036,40.762127,-73.99739,"(40.762127, -73.99739)",WEST 44 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448802,Dump,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,15:12,BRONX,10457,40.84541,-73.891136,"(40.84541, -73.891136)",EAST TREMONT AVENUE,CROTONA AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448513,Sedan,E-Bike,,, +08/20/2021,12:40,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449064,Sedan,Taxi,,, +08/18/2021,18:23,BROOKLYN,11230,40.63323,-73.964806,"(40.63323, -73.964806)",FOSTER AVENUE,ARGYLE ROAD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4448462,Ambulance,Sedan,,, +08/20/2021,4:46,BROOKLYN,11211,40.71618,-73.942085,"(40.71618, -73.942085)",WOODPOINT ROAD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449618,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,17:30,,,40.735424,-73.974754,"(40.735424, -73.974754)",EAST 23 STREET,FDR DRIVE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449091,Sedan,Sedan,,, +08/19/2021,17:30,BROOKLYN,11226,40.654274,-73.948135,"(40.654274, -73.948135)",,,345 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449416,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,21:00,BRONX,10460,40.842514,-73.871544,"(40.842514, -73.871544)",MORRIS PARK AVENUE,VANBUREN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4448866,Sedan,Bike,,, +08/20/2021,11:50,,,40.67239,-73.87463,"(40.67239, -73.87463)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448946,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/19/2021,11:24,QUEENS,11435,40.68928,-73.79611,"(40.68928, -73.79611)",110 ROAD,SUTPHIN BOULEVARD,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4449588,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/18/2021,19:09,,,,,,,,102 WEST DRIVE,2,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448404,E-Scooter,E-Scooter,,, +08/19/2021,16:27,,,40.79799,-73.96199,"(40.79799, -73.96199)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4448774,Sedan,Sedan,,, +08/20/2021,20:10,,,40.611404,-74.00952,"(40.611404, -74.00952)",86 STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4448918,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,18:40,BROOKLYN,11207,40.685226,-73.91454,"(40.685226, -73.91454)",ELDERT STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448670,Sedan,Sedan,,, +08/17/2021,18:05,MANHATTAN,10003,40.73274,-73.99121,"(40.73274, -73.99121)",,,812 BROADWAY,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,Failure to Yield Right-of-Way,,,4449659,Sedan,Bike,Sedan,, +08/19/2021,18:20,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448935,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,20:49,BRONX,10456,40.836304,-73.90264,"(40.836304, -73.90264)",,,3718 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448427,Sedan,Sedan,,, +08/19/2021,13:29,,,40.745106,-73.97078,"(40.745106, -73.97078)",FDR DRIVE,EAST 37 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,23:05,BROOKLYN,11235,40.586903,-73.942986,"(40.586903, -73.942986)",,,2610 VOORHIES AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4448785,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/18/2021,13:33,,,40.640015,-73.92575,"(40.640015, -73.92575)",KINGS HIGHWAY,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4448341,Sedan,,,, +08/20/2021,20:50,,,40.676495,-73.913704,"(40.676495, -73.913704)",BOYLAND STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449010,Sedan,,,, +08/20/2021,22:00,,,,,,,,5721 west 259 street,0,0,0,0,0,0,0,0,Unspecified,,,,,4449368,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,6:42,BROOKLYN,11210,40.629406,-73.945206,"(40.629406, -73.945206)",,,3211 AVENUE I,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,14:06,QUEENS,11367,40.72721,-73.82756,"(40.72721, -73.82756)",,,137-03 70 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,13:00,BROOKLYN,11216,40.68899,-73.94503,"(40.68899, -73.94503)",,,263 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,0:01,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4449692,Sedan,,,, +08/20/2021,11:10,MANHATTAN,10002,40.71724,-73.995285,"(40.71724, -73.995285)",,,149 HESTER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449228,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,23:45,,,40.62305,-74.02114,"(40.62305, -74.02114)",81 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448923,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,15:05,BROOKLYN,11215,40.66725,-73.99455,"(40.66725, -73.99455)",3 AVENUE,16 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449160,Sedan,,,, +08/20/2021,16:35,,,40.726326,-73.7662,"(40.726326, -73.7662)",GRAND CENTRAL PARKWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448978,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,20:00,BROOKLYN,11231,40.6779,-74.00955,"(40.6779, -74.00955)",RICHARDS STREET,PIONEER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449140,Sedan,Sedan,,, +08/20/2021,23:30,,,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4448936,Sedan,Sedan,,, +08/20/2021,21:00,STATEN ISLAND,10308,40.5377,-74.15002,"(40.5377, -74.15002)",HYLAN BOULEVARD,ARMSTRONG AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449061,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,21:00,BROOKLYN,11238,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,CLASSON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4449221,Sedan,Sedan,,, +08/17/2021,18:29,MANHATTAN,10028,40.779133,-73.96076,"(40.779133, -73.96076)",,,25 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449001,Motorcycle,Sedan,,, +08/18/2021,9:10,BROOKLYN,11207,,,,Atlantic avenue,Hendrix street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448576,Sedan,Sedan,,, +08/20/2021,4:55,,,40.68846,-73.80878,"(40.68846, -73.80878)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4449261,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,9:11,,,,,,,,28 STAGE LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448377,Sedan,Sedan,,, +08/19/2021,15:15,,,40.787685,-73.81528,"(40.787685, -73.81528)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449107,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,14:45,QUEENS,11101,40.75608,-73.94042,"(40.75608, -73.94042)",,,39-25 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449549,Sedan,Oil Tanker,,, +08/19/2021,17:00,,,40.83473,-73.940674,"(40.83473, -73.940674)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448839,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,12:36,BROOKLYN,11226,40.65489,-73.95905,"(40.65489, -73.95905)",,,7 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449172,Sedan,Sedan,,, +08/20/2021,10:45,QUEENS,11377,,,,,,5066 44 street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449253,Station Wagon/Sport Utility Vehicle,,,, +07/14/2021,17:15,MANHATTAN,10031,40.818233,-73.95273,"(40.818233, -73.95273)",AMSTERDAM AVENUE,WEST 134 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448963,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/08/2021,18:00,BROOKLYN,11236,40.62964,-73.91836,"(40.62964, -73.91836)",,,1958 RALPH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449347,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,15:45,BROOKLYN,11211,40.712162,-73.95907,"(40.712162, -73.95907)",ROEBLING STREET,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448904,Sedan,,,, +08/18/2021,22:00,BRONX,10462,0,0,"(0.0, 0.0)",,,1540 BRONXDALE AVENUE,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4448520,Sedan,,,, +08/14/2021,2:11,BROOKLYN,11212,40.66116,-73.918304,"(40.66116, -73.918304)",HOWARD AVENUE,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4449732,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/14/2021,0:01,QUEENS,11373,40.746624,-73.886604,"(40.746624, -73.886604)",,,40-40 79 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449305,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,0:18,,,40.65886,-73.866,"(40.65886, -73.866)",FOUNTAIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448171,Sedan,,,, +08/18/2021,14:19,BROOKLYN,11219,40.633083,-74.00558,"(40.633083, -74.00558)",60 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448436,Sedan,Motorcycle,,, +08/20/2021,15:48,MANHATTAN,10035,40.797924,-73.9296,"(40.797924, -73.9296)",,,90 PALADINO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449028,Sedan,Sedan,,, +08/18/2021,11:15,QUEENS,11429,40.714455,-73.74291,"(40.714455, -73.74291)",,,99-16 216 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448266,Sedan,Sedan,,, +08/17/2021,8:36,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",KINGS HIGHWAY,EAST 95 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4449411,,,,, +08/19/2021,15:05,BROOKLYN,11218,40.633152,-73.97762,"(40.633152, -73.97762)",MC DONALD AVENUE,AVENUE F,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4449187,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,3:00,BRONX,10466,40.8974924,-73.8582917,"(40.8974924, -73.8582917)",,,4332 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468796,Sedan,,,, +08/19/2021,15:00,,,40.585533,-74.15551,"(40.585533, -74.15551)",,,190 KELLY BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,17:45,BROOKLYN,11207,40.675224,-73.89097,"(40.675224, -73.89097)",LIBERTY AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448950,Sedan,E-Bike,,, +08/20/2021,19:40,,,40.59793,-73.9855,"(40.59793, -73.9855)",AVENUE T,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4449084,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,12:30,,,40.58516,-73.9874,"(40.58516, -73.9874)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4448452,Sedan,PK,,, +08/18/2021,13:45,BROOKLYN,11205,40.697998,-73.974525,"(40.697998, -73.974525)",,,63 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448337,Tow Truck / Wrecker,Sedan,,, +08/18/2021,10:50,BROOKLYN,11230,40.62234,-73.964935,"(40.62234, -73.964935)",,,1090 AVENUE K,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448435,Sedan,,,, +08/19/2021,22:19,STATEN ISLAND,10314,40.610085,-74.11668,"(40.610085, -74.11668)",SLOSSON AVENUE,LORTEL AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4448789,Sedan,,,, +08/19/2021,7:45,,,,,,HORACE HARDING EXPRESSWAY,EAST HAMPTON BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448631,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,23:45,,,40.66077,-73.89551,"(40.66077, -73.89551)",NEW LOTS AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448398,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,20:40,MANHATTAN,10024,40.787212,-73.971825,"(40.787212, -73.971825)",,,50 WEST 87 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448655,Sedan,Sedan,,, +08/15/2021,11:05,BROOKLYN,11221,40.691494,-73.93077,"(40.691494, -73.93077)",VAN BUREN STREET,REID AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449450,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,3:45,QUEENS,11368,40.749264,-73.86847,"(40.749264, -73.86847)",ROOSEVELT AVENUE,97 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4448084,Sedan,Bike,,, +08/18/2021,18:00,BROOKLYN,11212,40.667854,-73.905396,"(40.667854, -73.905396)",SUTTER AVENUE,CHRISTOPHER AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,2:19,BRONX,10461,40.839172,-73.845535,"(40.839172, -73.845535)",SAINT PETERS AVENUE,TRATMAN AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4449125,Sedan,Sedan,Sedan,Sedan, +08/20/2021,1:10,,,40.75979,-73.98793,"(40.75979, -73.98793)",8 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4448806,PK,Sedan,,, +08/17/2021,16:10,MANHATTAN,10120,40.750114,-73.98859,"(40.750114, -73.98859)",,,112 WEST 34 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449480,Ambulance,Bus,,, +08/19/2021,10:50,STATEN ISLAND,10305,40.595966,-74.08715,"(40.595966, -74.08715)",OLD TOWN ROAD,OREGON ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448567,Sedan,Box Truck,,, +08/20/2021,16:25,QUEENS,11361,40.767494,-73.77505,"(40.767494, -73.77505)",212 STREET,36 AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,Unspecified,,4448955,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/19/2021,7:21,,,40.86135,-73.89774,"(40.86135, -73.89774)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448751,Sedan,Sedan,,, +08/19/2021,20:35,QUEENS,11435,40.707363,-73.80695,"(40.707363, -73.80695)",87 ROAD,150 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4448993,Sedan,,,, +08/19/2021,6:30,BROOKLYN,11204,40.617287,-73.97786,"(40.617287, -73.97786)",BAY PARKWAY,59 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4449190,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +08/13/2021,12:10,BROOKLYN,11206,40.697468,-73.93614,"(40.697468, -73.93614)",,,922 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449386,Motorcycle,Sedan,,, +08/19/2021,22:54,,,40.86173,-73.91182,"(40.86173, -73.91182)",CEDAR AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448844,Sedan,,,, +08/09/2021,12:30,BROOKLYN,11211,40.70992,-73.9623,"(40.70992, -73.9623)",BROADWAY,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4449015,Sedan,Flat Bed,,, +08/20/2021,16:55,STATEN ISLAND,10312,40.559128,-74.16948,"(40.559128, -74.16948)",DRUMGOOLE ROAD EAST,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4449212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,10:00,QUEENS,11435,40.71206,-73.81602,"(40.71206, -73.81602)",,,141-25 PERSHING CRESCENT,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,7:43,,,40.677845,-73.95282,"(40.677845, -73.95282)",PACIFIC STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4449402,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/17/2021,13:32,,,40.8307,-73.88519,"(40.8307, -73.88519)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449454,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,15:30,QUEENS,11358,40.7597,-73.80031,"(40.7597, -73.80031)",NORTHERN BOULEVARD,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,9:00,BRONX,10470,40.898632,-73.8548,"(40.898632, -73.8548)",,,686A NEREID AVENUE,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4449195,Bus,Sedan,,, +08/19/2021,15:56,BRONX,10460,40.839584,-73.88647,"(40.839584, -73.88647)",,,1829 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449300,Sedan,Sedan,,, +08/19/2021,20:10,BROOKLYN,11230,40.619595,-73.96317,"(40.619595, -73.96317)",,,1215 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449669,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,4:15,MANHATTAN,10010,40.741623,-73.993744,"(40.741623, -73.993744)",WEST 21 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4449722,Sedan,Sedan,,, +08/19/2021,6:47,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",78 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4448731,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,21:46,BRONX,10462,40.846336,-73.85711,"(40.846336, -73.85711)",,,1711 BOGART AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448858,Sedan,,,, +08/03/2021,13:10,BRONX,10463,40.883648,-73.8952,"(40.883648, -73.8952)",,,3853 CANNON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449365,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,0:12,QUEENS,11354,40.763668,-73.82303,"(40.763668, -73.82303)",PARSONS BOULEVARD,37 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4449103,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,1:45,BRONX,10469,40.868546,-73.85859,"(40.868546, -73.85859)",BOSTON ROAD,PAULDING AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4448871,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,3:45,,,40.72804,-73.83171,"(40.72804, -73.83171)",JEWEL AVENUE,PARK DRIVE EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448961,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,9:39,QUEENS,11385,40.694275,-73.901855,"(40.694275, -73.901855)",DECATUR STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448876,Sedan,Sedan,,, +08/19/2021,23:00,QUEENS,11435,40.692886,-73.801605,"(40.692886, -73.801605)",WALTHAM STREET,SHORE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4449518,Sedan,Sedan,,, +08/18/2021,10:10,BRONX,10457,40.846863,-73.90142,"(40.846863, -73.90142)",WEBSTER AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4448507,Station Wagon/Sport Utility Vehicle,Bus,,, +08/18/2021,7:20,QUEENS,11106,40.763798,-73.925026,"(40.763798, -73.925026)",,,31-34 30 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448239,Dump,,,, +08/18/2021,9:15,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448246,Box Truck,Sedan,,, +08/18/2021,23:12,BRONX,10457,40.85517,-73.89711,"(40.85517, -73.89711)",FOLIN STREET,EAST 182 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,,,,,4448475,Sedan,Sedan,,, +08/18/2021,18:00,BROOKLYN,11228,40.615227,-74.01272,"(40.615227, -74.01272)",84 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448680,Sedan,,,, +08/18/2021,9:30,BRONX,10451,,,,EAST 157 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448277,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,7:27,MANHATTAN,10032,40.83037,-73.94015,"(40.83037, -73.94015)",WEST 155 STREET,SAINT NICHOLAS PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449585,Sedan,Sedan,,, +08/18/2021,0:00,MANHATTAN,10003,40.73329,-73.98719,"(40.73329, -73.98719)",EAST 14 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448496,Taxi,Motorbike,,, +08/18/2021,14:14,,,40.880527,-73.901794,"(40.880527, -73.901794)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449358,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +08/19/2021,12:12,BROOKLYN,11206,40.70205,-73.95256,"(40.70205, -73.95256)",MARCY AVENUE,MIDDLETON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448708,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,10:30,BRONX,10459,40.825287,-73.88646,"(40.825287, -73.88646)",EAST 165 STREET,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448319,Sedan,,,, +08/20/2021,17:30,MANHATTAN,10035,40.804134,-73.93684,"(40.804134, -73.93684)",,,159 EAST 125 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449033,Sedan,E-Scooter,,, +08/18/2021,11:00,MANHATTAN,10038,40.709522,-74.00167,"(40.709522, -74.00167)",PEARL STREET,FRANKFORT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448529,Sedan,Sedan,,, +08/15/2021,5:30,,,40.8829,-73.84607,"(40.8829, -73.84607)",EAST 225 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4449238,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,23:50,QUEENS,11420,40.685303,-73.8115,"(40.685303, -73.8115)",,,109-24 132 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448729,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,1:30,BRONX,10459,40.825275,-73.891945,"(40.825275, -73.891945)",,,1065 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4448183,Sedan,,,, +08/19/2021,17:54,QUEENS,11377,40.742073,-73.89837,"(40.742073, -73.89837)",66 STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448891,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,3:30,,,40.676132,-73.921906,"(40.676132, -73.921906)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448479,Sedan,Sedan,Sedan,, +08/17/2021,14:41,,,,,,NORTH CHANNEL BRIDGE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448821,Sedan,Sedan,,, +08/20/2021,15:35,QUEENS,11419,40.69405,-73.82802,"(40.69405, -73.82802)",LEFFERTS BOULEVARD,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449330,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,19:59,BROOKLYN,11234,,,,Ralph avenue,Bergen avenue,,1,0,0,0,1,0,0,0,Unspecified,,,,,4449074,Bike,,,, +08/19/2021,13:20,,,40.789116,-73.82259,"(40.789116, -73.82259)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449050,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,22:14,BROOKLYN,11230,40.61269,-73.95395,"(40.61269, -73.95395)",,,2010 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449504,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,18:58,,,40.844864,-73.92256,"(40.844864, -73.92256)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449717,Station Wagon/Sport Utility Vehicle,Van,,, +08/18/2021,8:00,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448525,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,12:55,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4448869,Sedan,,,, +07/29/2021,21:00,BRONX,10470,0,0,"(0.0, 0.0)",,,4790 BARNES AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449243,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,23:50,QUEENS,11413,40.666714,-73.75156,"(40.666714, -73.75156)",225 STREET,143 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448541,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,17:10,,,40.86157,-73.913185,"(40.86157, -73.913185)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448848,Station Wagon/Sport Utility Vehicle,Van,,, +08/13/2021,21:29,QUEENS,11416,40.68215,-73.85041,"(40.68215, -73.85041)",,,89-19 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Brakes Defective,,,,,4449326,Chassis Cab,,,, +08/18/2021,7:45,QUEENS,11691,40.602676,-73.74936,"(40.602676, -73.74936)",,,1424 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4448205,Bus,Sedan,,, +08/18/2021,14:00,QUEENS,11429,40.716145,-73.73118,"(40.716145, -73.73118)",222 STREET,99 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,16:40,QUEENS,11103,40.757473,-73.91582,"(40.757473, -73.91582)",44 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4449555,Motorcycle,,,, +08/20/2021,0:00,,,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4449400,Sedan,Sedan,,, +08/20/2021,0:00,,,40.60485,-74.02559,"(40.60485, -74.02559)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4448718,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +08/06/2021,14:30,,,40.880547,-73.902016,"(40.880547, -73.902016)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4449355,Sedan,,,, +08/19/2021,22:20,BROOKLYN,11218,40.643894,-73.97421,"(40.643894, -73.97421)",,,241 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449638,Taxi,Sedan,,, +08/14/2021,20:19,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4449523,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,18:44,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449042,Tractor Truck Gasoline,Van,,, +08/19/2021,11:35,BRONX,10457,40.8439,-73.89242,"(40.8439, -73.89242)",,,1870 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4449276,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/19/2021,21:58,QUEENS,11354,40.773777,-73.81966,"(40.773777, -73.81966)",27 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449045,Sedan,Sedan,,, +08/19/2021,14:30,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",LINDEN BOULEVARD,NEWBURG STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448723,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,7:30,BROOKLYN,11236,40.643215,-73.90306,"(40.643215, -73.90306)",EAST 95 STREET,CONKLIN AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4448312,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,8:45,QUEENS,11419,40.685654,-73.828636,"(40.685654, -73.828636)",114 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448418,Sedan,,,, +08/19/2021,17:00,,,,,,WILLIAMSBURG BRIDGE,SOUTH 5 PLACE,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4448712,E-Bike,E-Bike,,, +08/19/2021,5:45,STATEN ISLAND,10306,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,MIDLAND AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448566,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,12:32,QUEENS,11691,40.595497,-73.77823,"(40.595497, -73.77823)",BEACH CHANNEL DRIVE,BEACH 47 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4448999,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/19/2021,14:30,QUEENS,11375,40.716637,-73.83422,"(40.716637, -73.83422)",QUEENS BOULEVARD,76 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448673,Sedan,Sedan,,, +08/18/2021,8:42,,,40.794464,-73.93964,"(40.794464, -73.93964)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448224,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/19/2021,23:27,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4448859,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,9:30,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4449146,Sedan,Sedan,,, +08/18/2021,17:40,MANHATTAN,10025,40.798874,-73.96604,"(40.798874, -73.96604)",,,133 WEST 104 STREET,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4448334,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,8:05,QUEENS,11385,40.71196,-73.917725,"(40.71196, -73.917725)",,,172 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4448837,Sedan,Dump,,, +08/18/2021,8:55,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448166,Sedan,,,, +08/20/2021,7:00,,,40.75287,-73.9459,"(40.75287, -73.9459)",QUEENS PLAZA SOUTH,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448892,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/18/2021,0:25,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BAYCHESTER AVENUE,BARTOW AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4448828,Sedan,Sedan,,, +08/18/2021,14:45,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",EAST 120 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448307,Sedan,,,, +08/20/2021,23:39,,,40.812073,-73.93604,"(40.812073, -73.93604)",MADISON AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4449032,Sedan,Sedan,Dump,, +08/19/2021,5:50,,,40.830402,-73.837654,"(40.830402, -73.837654)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4448753,Sedan,,,, +08/06/2021,10:32,,,,,,QUEENSBORO BRIDGE OUTER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449094,Bike,E-Scooter,,, +08/20/2021,20:00,BROOKLYN,11210,40.638454,-73.95185,"(40.638454, -73.95185)",,,2623 FOSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449420,E-Bike,Sedan,,, +08/18/2021,22:23,BROOKLYN,11229,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,BEDFORD AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4448466,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,17:10,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449283,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,19:00,BROOKLYN,11239,40.652878,-73.87706,"(40.652878, -73.87706)",,,410 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4448945,Sedan,,,, +08/18/2021,15:30,BROOKLYN,11209,40.630985,-74.02203,"(40.630985, -74.02203)",73 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4448298,Sedan,Sedan,Sedan,, +08/18/2021,11:41,,,40.630383,-73.895004,"(40.630383, -73.895004)",SEAVIEW AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448913,Sedan,Bike,,, +08/20/2021,5:47,BROOKLYN,11212,40.65711,-73.91335,"(40.65711, -73.91335)",LOTT AVENUE,STRAUSS STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448781,Sedan,Sedan,,, +08/19/2021,14:36,BROOKLYN,11212,40.667706,-73.90636,"(40.667706, -73.90636)",STONE AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4448630,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,19:50,QUEENS,11378,40.715397,-73.903336,"(40.715397, -73.903336)",60 LANE,60 DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449479,Station Wagon/Sport Utility Vehicle,Scooter,,, +08/19/2021,0:10,,,,,,CROSS BRONX EXPRESSWAY,HENRY HUDSON PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448530,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,10:00,BRONX,10457,40.85044,-73.89514,"(40.85044, -73.89514)",,,2072 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449258,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,10:55,,,40.76234,-73.98236,"(40.76234, -73.98236)",WEST 52 STREET,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448796,Sedan,,,, +08/19/2021,18:50,,,40.7042,-73.815254,"(40.7042, -73.815254)",QUEENS BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448992,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,8:35,,,40.651268,-73.97181,"(40.651268, -73.97181)",PARKSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448355,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,22:27,BROOKLYN,11237,40.7065,-73.91701,"(40.7065, -73.91701)",DE KALB AVENUE,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448493,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,11:30,,,,,,VETERANS ROAD WEST,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449210,Flat Rack,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,4:09,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4449385,Sedan,Dump,,, +08/19/2021,0:00,,,40.762756,-73.82261,"(40.762756, -73.82261)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4449083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,16:00,QUEENS,11372,40.749214,-73.8861,"(40.749214, -73.8861)",,,37-33 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448536,Motorcycle,,,, +08/20/2021,14:05,BRONX,10465,40.827583,-73.84085,"(40.827583, -73.84085)",,,905 BRUSH AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4449689,Sedan,Sedan,,, +08/20/2021,13:40,STATEN ISLAND,10306,40.55532,-74.13824,"(40.55532, -74.13824)",SOUTH RAILROAD AVENUE,TAUNTON STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4448852,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,21:30,,,40.533665,-74.171585,"(40.533665, -74.171585)",BARCLAY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/15/2021,9:20,QUEENS,11103,40.768883,-73.91424,"(40.768883, -73.91424)",,,25-29 36 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449543,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,15:40,BROOKLYN,11232,40.645805,-74.00242,"(40.645805, -74.00242)",44 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4448412,Sedan,,,, +08/18/2021,19:02,,,40.71787,-73.997116,"(40.71787, -73.997116)",HESTER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449223,Sedan,Sedan,,, +08/19/2021,11:15,QUEENS,11001,40.73557,-73.70864,"(40.73557, -73.70864)",,,84-33 259 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448591,Sedan,Sedan,,, +08/19/2021,22:38,BROOKLYN,11236,40.64188,-73.894684,"(40.64188, -73.894684)",EAST 100 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448703,Sedan,Sedan,,, +08/19/2021,18:25,BROOKLYN,11203,40.644257,-73.93228,"(40.644257, -73.93228)",,,4712 CLARENDON ROAD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4449417,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/07/2021,17:30,QUEENS,11385,40.707222,-73.9127,"(40.707222, -73.9127)",ONDERDONK AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4448865,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/18/2021,12:40,,,40.663685,-73.88893,"(40.663685, -73.88893)",NEW LOTS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448346,Sedan,Sedan,,, +08/16/2021,13:00,,,40.744556,-73.870834,"(40.744556, -73.870834)",94 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449342,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/20/2021,9:40,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,14:00,,,40.701416,-73.99334,"(40.701416, -73.99334)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,23:03,MANHATTAN,10005,40.706142,-74.00603,"(40.706142, -74.00603)",MAIDEN LANE,WATER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448808,Sedan,Motorcycle,,, +08/20/2021,16:16,QUEENS,11004,40.752007,-73.71514,"(40.752007, -73.71514)",,,263-01 73 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448898,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/18/2021,8:38,,,40.625683,-73.93344,"(40.625683, -73.93344)",KINGS HIGHWAY,AVENUE K,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4448340,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,16:27,,,,,,HARLEM RIVER DRIVE RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449026,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,8:40,,,40.744286,-73.75993,"(40.744286, -73.75993)",BELL BOULEVARD,67 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4448124,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,11:36,,,40.70281,-73.9254,"(40.70281, -73.9254)",STARR STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448656,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/20/2021,14:30,QUEENS,11368,40.743893,-73.85282,"(40.743893, -73.85282)",,,108-70 52 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449343,Sedan,,,, +08/19/2021,23:55,,,40.8481,-73.90145,"(40.8481, -73.90145)",CARTER AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4448764,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/20/2021,21:10,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4448956,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,20:35,STATEN ISLAND,10306,40.565254,-74.1301,"(40.565254, -74.1301)",AMBOY ROAD,GUYON AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4449651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,8:00,MANHATTAN,10017,40.752815,-73.98138,"(40.752815, -73.98138)",5 AVENUE,EAST 41 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4448261,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,13:00,BRONX,10457,40.838997,-73.91073,"(40.838997, -73.91073)",EAST 171 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449180,Sedan,,,, +08/15/2021,4:15,QUEENS,11434,40.666492,-73.76536,"(40.666492, -73.76536)",SOUTH CONDUIT AVENUE,179 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4448881,Motorcycle,Convertible,,, +08/18/2021,9:44,BROOKLYN,11226,40.639984,-73.94842,"(40.639984, -73.94842)",NOSTRAND AVENUE,NEWKIRK AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4448389,E-Scooter,,,, +08/20/2021,23:00,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449101,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,9:30,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448738,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,15:15,,,40.67594,-73.94715,"(40.67594, -73.94715)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448694,Sedan,Sedan,,, +08/18/2021,23:05,MANHATTAN,10027,40.809994,-73.95872,"(40.809994, -73.95872)",,,424 WEST 121 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4448572,Sedan,Sedan,Taxi,, +08/20/2021,22:55,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4449072,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +08/20/2021,0:30,BROOKLYN,11222,40.732388,-73.943726,"(40.732388, -73.943726)",MONITOR STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449609,Sedan,,,, +08/20/2021,14:30,BROOKLYN,11210,40.61772,-73.94518,"(40.61772, -73.94518)",,,2746 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449671,Sedan,,,, +08/20/2021,15:46,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448924,Sedan,Pick-up Truck,,, +08/20/2021,18:24,,,40.82531,-73.95369,"(40.82531, -73.95369)",WEST 142 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449491,Sedan,Sedan,,, +08/18/2021,9:55,,,40.784996,-73.824234,"(40.784996, -73.824234)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448833,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/20/2021,10:20,BROOKLYN,11207,40.655983,-73.897575,"(40.655983, -73.897575)",SNEDIKER AVENUE,DE WITT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448941,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,19:00,,,40.844715,-73.91228,"(40.844715, -73.91228)",EAST 174 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4449120,Sedan,,,, +08/18/2021,22:10,QUEENS,11367,,,,149 STREET,UNION TURNPIKE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449375,E-Scooter,,,, +08/18/2021,20:15,STATEN ISLAND,10305,40.602917,-74.08294,"(40.602917, -74.08294)",CLOVE ROAD,CRIST STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448791,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,16:00,,,40.714687,-73.94271,"(40.714687, -73.94271)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449599,,,,, +08/19/2021,12:32,,,40.700874,-73.93317,"(40.700874, -73.93317)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448813,Sedan,,,, +08/10/2021,6:00,MANHATTAN,10023,40.774853,-73.98067,"(40.774853, -73.98067)",COLUMBUS AVENUE,WEST 68 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4449006,,,,, +08/18/2021,20:00,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448987,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:40,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449500,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,21:30,BROOKLYN,11208,40.67777,-73.863914,"(40.67777, -73.863914)",FORBELL STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448395,Sedan,,,, +08/20/2021,9:10,MANHATTAN,10001,40.745163,-73.9923,"(40.745163, -73.9923)",,,122 WEST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449090,Sedan,Pick-up Truck,,, +08/09/2021,4:24,,,40.862312,-73.929436,"(40.862312, -73.929436)",BROADWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4448769,Sedan,,,, +08/09/2021,1:55,,,40.701763,-73.81618,"(40.701763, -73.81618)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449065,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,17:20,BROOKLYN,11226,40.644966,-73.958984,"(40.644966, -73.958984)",EAST 21 STREET,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448461,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,12:35,BRONX,10462,40.838955,-73.86377,"(40.838955, -73.86377)",,,1537 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/18/2021,14:30,BROOKLYN,11207,40.6779,-73.892586,"(40.6779, -73.892586)",FULTON STREET,MILLER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448577,Sedan,,,, +08/20/2021,14:10,BRONX,10458,40.855057,-73.88401,"(40.855057, -73.88401)",EAST 188 STREET,BEAUMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449314,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,15:00,,,40.756325,-73.803604,"(40.756325, -73.803604)",163 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449106,Sedan,,,, +08/18/2021,18:19,BROOKLYN,11219,40.627693,-74.010506,"(40.627693, -74.010506)",BAY RIDGE AVENUE,10 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,9:46,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",2 AVENUE,EAST 58 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448930,Bike,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,21:41,,,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449560,Sedan,,,, +08/20/2021,5:45,,,40.842945,-73.89061,"(40.842945, -73.89061)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4449252,Sedan,,,, +08/15/2021,17:00,,,40.593163,-73.9086,"(40.593163, -73.9086)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4448970,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,5:30,BROOKLYN,11236,40.64688,-73.91837,"(40.64688, -73.91837)",,,237 EAST 86 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448326,Sedan,Sedan,,, +08/19/2021,14:00,BRONX,10461,40.842896,-73.83893,"(40.842896, -73.83893)",,,1250 WATERS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448637,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,16:08,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448662,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,19:15,BROOKLYN,11226,40.650116,-73.960785,"(40.650116, -73.960785)",,,2011 CHURCH AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4449680,Sedan,,,, +08/19/2021,11:20,BRONX,10452,40.836304,-73.92518,"(40.836304, -73.92518)",WOODYCREST AVENUE,WEST 167 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4449114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/11/2021,3:01,MANHATTAN,10024,40.78383,-73.97783,"(40.78383, -73.97783)",WEST 80 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449394,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,17:30,BRONX,10469,40.87349,-73.83664,"(40.87349, -73.83664)",GRACE AVENUE,HAMMERSLEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449204,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,12:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448488,Sedan,Tractor Truck Gasoline,,, +08/19/2021,8:10,BROOKLYN,11236,40.642708,-73.91006,"(40.642708, -73.91006)",FARRAGUT ROAD,EAST 89 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/18/2021,21:55,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448403,Sedan,Sedan,,, +08/18/2021,10:30,MANHATTAN,10028,40.778812,-73.95609,"(40.778812, -73.95609)",EAST 85 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448776,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,12:30,BROOKLYN,11213,40.66775,-73.930046,"(40.66775, -73.930046)",,,1746 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448909,Sedan,,,, +08/18/2021,10:00,BROOKLYN,11236,40.652096,-73.90857,"(40.652096, -73.90857)",DITMAS AVENUE,EAST 98 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4449735,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,22:00,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4449227,Sedan,Sedan,,, +08/19/2021,9:15,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448971,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/19/2021,3:35,MANHATTAN,10028,40.780857,-73.958824,"(40.780857, -73.958824)",EAST 86 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4448437,Sedan,,,, +08/19/2021,5:12,,,40.840473,-73.9353,"(40.840473, -73.9353)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4448845,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/16/2021,23:30,,,40.753925,-73.77365,"(40.753925, -73.77365)",48 AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449392,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,13:51,MANHATTAN,10032,40.84105,-73.94469,"(40.84105, -73.94469)",WEST 165 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449528,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,18:15,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449139,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,13:00,,,40.700104,-73.94726,"(40.700104, -73.94726)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4449245,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +08/18/2021,12:45,QUEENS,11377,40.75078,-73.90675,"(40.75078, -73.90675)",,,55-20 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448707,Tractor Truck Gasoline,Sedan,,, +08/19/2021,8:22,BROOKLYN,11222,40.722652,-73.94817,"(40.722652, -73.94817)",ECKFORD STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449617,Sedan,Pick-up Truck,,, +08/17/2021,2:40,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",NEW YORK AVENUE,FOSTER AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4449412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,10:05,,,40.798717,-73.95954,"(40.798717, -73.95954)",WEST 107 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448902,Sedan,Box Truck,,, +08/20/2021,3:55,BRONX,10453,40.850857,-73.90765,"(40.850857, -73.90765)",EAST TREMONT AVENUE,MORRIS AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449658,Sedan,E-Bike,,, +08/19/2021,8:00,QUEENS,11423,40.712875,-73.76597,"(40.712875, -73.76597)",,,91-56 195 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,11:58,MANHATTAN,10010,40.74147,-73.985435,"(40.74147, -73.985435)",EAST 25 STREET,PARK AVENUE SOUTH,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4449089,Sedan,Bike,,, +08/19/2021,6:54,QUEENS,11693,40.588573,-73.81228,"(40.588573, -73.81228)",ROCKAWAY FREEWAY,BEACH 87 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448840,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,15:00,BRONX,10454,40.80565,-73.92062,"(40.80565, -73.92062)",BROOK AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448743,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,8:00,BROOKLYN,11230,40.626293,-73.96068,"(40.626293, -73.96068)",,,960 EAST 16 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448456,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,8:45,MANHATTAN,10069,40.775013,-73.990776,"(40.775013, -73.990776)",WEST 63 STREET,RIVERSIDE BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4449020,Sedan,Sedan,,, +08/19/2021,23:42,QUEENS,11420,40.678795,-73.80632,"(40.678795, -73.80632)",116 AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4448732,Sedan,,,, +08/19/2021,9:02,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448605,Dump,Box Truck,,, +08/18/2021,1:00,,,40.74197,-73.84116,"(40.74197, -73.84116)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448086,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,1:00,BROOKLYN,11212,40.66155,-73.91058,"(40.66155, -73.91058)",,,391 BRISTOL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448685,Sedan,Sedan,,, +08/20/2021,12:05,QUEENS,11103,40.760868,-73.916115,"(40.760868, -73.916115)",,,41-11 31 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449564,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/20/2021,12:00,,,40.674232,-73.86177,"(40.674232, -73.86177)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448952,Sedan,Sedan,,, +08/14/2020,18:00,QUEENS,11385,40.709866,-73.91119,"(40.709866, -73.91119)",STANHOPE STREET,FAIRVIEW AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448885,Sedan,Bike,,, +08/19/2021,21:25,BROOKLYN,11218,40.6341,-73.97096,"(40.6341, -73.97096)",,,734 EAST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448877,Sedan,,,, +08/19/2021,14:51,BRONX,10469,40.8595,-73.84301,"(40.8595, -73.84301)",EASTCHESTER ROAD,ASTOR AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4448638,Sedan,,,, +08/18/2021,10:40,,,40.761623,-73.82208,"(40.761623, -73.82208)",ROOSEVELT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448345,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,13:00,BROOKLYN,11221,40.6944972,-73.9148082,"(40.6944972, -73.9148082)",WILSON AVENUE,WOODBINE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469860,Sedan,Bus,,, +08/20/2021,14:12,BROOKLYN,11218,40.64545,-73.97311,"(40.64545, -73.97311)",CHURCH AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/18/2021,18:15,BRONX,10467,40.871376,-73.86334,"(40.871376, -73.86334)",BURKE AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448509,Sedan,,,, +08/18/2021,11:00,MANHATTAN,10031,40.82316,-73.94623,"(40.82316, -73.94623)",,,63 HAMILTON TERRACE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448247,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,10:00,BRONX,10466,40.89155,-73.86179,"(40.89155, -73.86179)",CARPENTER AVENUE,EAST 229 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4449191,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +08/20/2021,22:08,,,,,,THOMSON AVENUE,31 PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448920,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,23:30,QUEENS,11373,40.73599,-73.86551,"(40.73599, -73.86551)",JUNCTION BOULEVARD,58 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449306,Sedan,E-Scooter,,, +08/19/2021,14:17,BROOKLYN,11207,40.65753,-73.89797,"(40.65753, -73.89797)",SNEDIKER AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448937,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,9:30,,,40.69024,-73.9482,"(40.69024, -73.9482)",LAFAYETTE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:20,BROOKLYN,11204,40.634953,-73.98144,"(40.634953, -73.98144)",16 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,16:28,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",PRINCE STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449056,Sedan,Sedan,,, +08/18/2021,16:10,BROOKLYN,11229,40.5956,-73.94098,"(40.5956, -73.94098)",,,3612 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448497,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,16:25,,,40.719135,-73.78949,"(40.719135, -73.78949)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4448983,Sedan,Sedan,,, +08/20/2021,0:00,,,40.83328,-73.86097,"(40.83328, -73.86097)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4449455,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:30,BROOKLYN,11205,40.69023,-73.95154,"(40.69023, -73.95154)",,,251 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4449222,Moped,,,, +08/09/2021,19:00,BRONX,10466,40.88643,-73.84784,"(40.88643, -73.84784)",,,4039 LACONIA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449197,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,12:00,MANHATTAN,10028,40.777264,-73.9544,"(40.777264, -73.9544)",,,214 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449002,Sedan,Flat Bed,,, +08/19/2021,7:45,QUEENS,11694,40.578682,-73.8465,"(40.578682, -73.8465)",BEACH 126 STREET,NEWPORT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448820,Sedan,Bike,,, +08/18/2021,17:57,BROOKLYN,11234,40.61222,-73.918846,"(40.61222, -73.918846)",,,5602 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,,,,,4448668,Sedan,,,, +08/13/2021,15:54,,,40.83163,-73.92252,"(40.83163, -73.92252)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449179,Taxi,,,, +08/18/2021,23:36,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4448573,Sedan,,,, +08/20/2021,17:50,MANHATTAN,10002,40.716682,-73.98244,"(40.716682, -73.98244)",DELANCEY STREET,WILLETT STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4448934,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,9:58,MANHATTAN,10016,40.750217,-73.979065,"(40.750217, -73.979065)",EAST 39 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448408,Taxi,,,, +08/18/2021,18:41,,,40.679592,-73.93488,"(40.679592, -73.93488)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449492,Bike,Sedan,,, +06/12/2021,11:41,,,40.8827,-73.892845,"(40.8827, -73.892845)",SEDGWICK AVENUE,STEVENSON PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449364,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,16:00,,,40.692547,-73.990974,"(40.692547, -73.990974)",COURT STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449102,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,8:20,MANHATTAN,10027,40.81092,-73.95899,"(40.81092, -73.95899)",,,514 WEST 122 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4448964,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/18/2021,13:54,,,40.816025,-73.93947,"(40.816025, -73.93947)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4448788,Van,,,, +08/18/2021,18:06,,,40.626713,-73.891655,"(40.626713, -73.891655)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448426,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/14/2021,0:30,,,40.768032,-73.99586,"(40.768032, -73.99586)",WEST 52 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4448801,Motorcycle,,,, +08/19/2021,9:00,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",COURT STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449371,Sedan,,,, +08/08/2021,21:24,,,40.785492,-73.984116,"(40.785492, -73.984116)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4449007,Sedan,Sedan,,, +08/20/2021,13:18,,,0,0,"(0.0, 0.0)",COLUMBUS AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448905,Sedan,,,, +08/19/2021,19:30,,,40.693428,-73.81105,"(40.693428, -73.81105)",102 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449517,Sedan,,,, +08/13/2021,10:50,QUEENS,11103,0,0,"(0.0, 0.0)",43 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449548,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,8:41,,,,,,GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448550,Sedan,Box Truck,,, +08/18/2021,14:14,QUEENS,11373,40.735226,-73.865105,"(40.735226, -73.865105)",,,58-17 JUNCTION BOULEVARD,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4448468,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,22:54,BROOKLYN,11233,40.681183,-73.93471,"(40.681183, -73.93471)",,,416 LEWIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449407,Sedan,Motorbike,,, +08/18/2021,13:20,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",DYRE AVENUE,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448294,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,18:21,MANHATTAN,10013,40.720375,-74.003265,"(40.720375, -74.003265)",GREENE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4448975,Sedan,Sedan,,, +08/20/2021,17:24,BRONX,10468,40.868748,-73.89497,"(40.868748, -73.89497)",MORRIS AVENUE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449278,Taxi,,,, +08/16/2021,13:36,,,40.858635,-73.846466,"(40.858635, -73.846466)",PELHAM PARKWAY NORTH,SEYMOUR AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Traffic Control Disregarded,,,,4449013,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,13:32,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,10:20,BROOKLYN,11231,40.6783,-74.01294,"(40.6783, -74.01294)",,,110 SULLIVAN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449572,School Bus,,,, +08/19/2021,17:50,,,40.881508,-73.85111,"(40.881508, -73.85111)",LACONIA AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449239,Sedan,E-Bike,,, +08/18/2021,14:40,,,40.703472,-73.9306,"(40.703472, -73.9306)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448318,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,6:50,QUEENS,11101,40.734314,-73.93803,"(40.734314, -73.93803)",VANDAM STREET,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449143,Sedan,,,, +08/19/2021,20:10,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448728,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,9:06,BRONX,10473,40.82066,-73.86843,"(40.82066, -73.86843)",,,1691 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448187,E-Bike,,,, +08/20/2021,5:00,BROOKLYN,11223,40.59364,-73.978,"(40.59364, -73.978)",,,2220 WEST 7 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449623,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,10:35,,,40.843422,-73.89239,"(40.843422, -73.89239)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449259,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,12:10,BROOKLYN,11213,40.667946,-73.933266,"(40.667946, -73.933266)",,,1703 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448713,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,14:05,,,40.589935,-74.145676,"(40.589935, -74.145676)",FOREST HILL ROAD,ASHWORTH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4448480,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/20/2021,10:50,,,40.66535,-73.81695,"(40.66535, -73.81695)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449262,Sedan,Sedan,,, +06/03/2021,21:00,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",FOSTER AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449668,Station Wagon/Sport Utility Vehicle,Bike,,, +08/20/2021,8:00,QUEENS,11385,40.7021,-73.87897,"(40.7021, -73.87897)",,,71-35 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448860,Sedan,,,, +08/18/2021,18:00,BROOKLYN,11206,40.701797,-73.94055,"(40.701797, -73.94055)",HUMBOLDT STREET,DEBEVOISE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448369,Sedan,,,, +08/11/2021,10:34,BRONX,10472,40.82851,-73.85024,"(40.82851, -73.85024)",,,1034 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448773,Sedan,Sedan,,, +08/18/2021,12:08,BROOKLYN,11210,40.628807,-73.94726,"(40.628807, -73.94726)",,,2281 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4449348,Tractor Truck Diesel,,,, +08/19/2021,17:29,QUEENS,11385,40.69319,-73.89575,"(40.69319, -73.89575)",CYPRESS AVENUE,CLOVER PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448855,Sedan,,,, +08/19/2021,8:00,STATEN ISLAND,10301,40.626556,-74.0916,"(40.626556, -74.0916)",VICTORY BOULEVARD,EDDY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448679,Sedan,,,, +08/19/2021,16:20,MANHATTAN,10014,40.727875,-74.00543,"(40.727875, -74.00543)",VARICK STREET,KING STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448750,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/18/2021,16:29,BROOKLYN,11220,40.63574,-74.02605,"(40.63574, -74.02605)",BAY RIDGE AVENUE,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448299,Sedan,E-Bike,,, +08/18/2021,7:59,BROOKLYN,11212,40.662315,-73.92145,"(40.662315, -73.92145)",,,181 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448327,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,16:42,STATEN ISLAND,10306,40.569218,-74.111015,"(40.569218, -74.111015)",,,2562 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448559,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,10:30,STATEN ISLAND,10309,40.532482,-74.2031,"(40.532482, -74.2031)",FOSTER ROAD,DRUMGOOLE ROAD WEST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449211,Sedan,Sedan,,, +08/20/2021,18:40,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4449448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/19/2021,1:13,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",CHRYSTIE STREET,GRAND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448531,Sedan,Bike,,, +08/16/2021,16:45,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4448777,Van,,,, +08/20/2021,14:20,BRONX,10455,40.81393,-73.908844,"(40.81393, -73.908844)",,,575 JACKSON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4448888,Pick-up Truck,Tow Truck / Wrecker,,, +08/18/2021,0:25,,,40.67885,-73.88153,"(40.67885, -73.88153)",ATLANTIC AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448178,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,20:00,,,40.788303,-73.81699,"(40.788303, -73.81699)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Steering Failure,,,,,4449051,Sedan,,,, +08/20/2021,6:10,,,0,0,"(0.0, 0.0)",FOREST AVENUE,DECKER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4448816,Sedan,Sedan,Bus,, +08/20/2021,20:00,,,40.709827,-73.83983,"(40.709827, -73.83983)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4449298,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,21:19,BROOKLYN,11207,40.662563,-73.89146,"(40.662563, -73.89146)",NEW LOTS AVENUE,VERMONT STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4448949,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,17:00,,,40.775383,-73.923035,"(40.775383, -73.923035)",21 STREET,HOYT AVENUE NORTH,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449552,Sedan,Sedan,,, +08/20/2021,18:55,,,40.745636,-73.75351,"(40.745636, -73.75351)",223 PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448910,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,4:30,BROOKLYN,11218,40.640625,-73.9863,"(40.640625, -73.9863)",13 AVENUE,39 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448433,Sedan,Bike,,, +08/19/2021,20:55,,,40.829163,-73.93727,"(40.829163, -73.93727)",8 AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4448784,Sedan,Sedan,,, +08/20/2021,16:48,BROOKLYN,11236,40.635006,-73.89515,"(40.635006, -73.89515)",EAST 94 STREET,ROST PLACE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4448917,Pick-up Truck,,,, +08/18/2021,0:58,BROOKLYN,11212,40.666885,-73.911964,"(40.666885, -73.911964)",SUTTER AVENUE,BRISTOL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449039,FDNY LADDE,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,15:50,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,21:54,MANHATTAN,10019,40.763344,-73.986694,"(40.763344, -73.986694)",,,330 WEST 51 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4448805,E-Bike,,,, +08/18/2021,12:15,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4449162,Sedan,Box Truck,Pick-up Truck,, +08/20/2021,12:00,,,40.72662,-73.757324,"(40.72662, -73.757324)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448996,Sedan,Sedan,,, +08/20/2021,17:40,BRONX,10469,40.873642,-73.85318,"(40.873642, -73.85318)",,,3312 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449728,Sedan,,,, +08/18/2021,0:45,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4448238,Tractor Truck Diesel,Sedan,,, +08/20/2021,19:10,BRONX,10463,40.87892,-73.90479,"(40.87892, -73.90479)",WEST 231 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449356,Box Truck,Van,,, +08/17/2021,21:40,MANHATTAN,10037,40.814777,-73.938416,"(40.814777, -73.938416)",,,55 WEST 137 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4448782,Sedan,Ambulance,,, +08/20/2021,12:55,BRONX,10460,40.8452,-73.8829,"(40.8452, -73.8829)",,,880 EAST 180 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unsafe Lane Changing,,,,4449256,Sedan,Sedan,,, +08/19/2021,19:54,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,11:10,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",WEST 180 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449096,Van,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,18:00,,,40.60891,-74.17833,"(40.60891, -74.17833)",SOUTH AVENUE,CURRY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448486,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,22:00,BROOKLYN,11234,40.628036,-73.92012,"(40.628036, -73.92012)",,,1085 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449073,Sedan,,,, +08/19/2021,5:07,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4449611,Sedan,,,, +08/18/2021,6:50,,,40.824913,-73.8689,"(40.824913, -73.8689)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4448163,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/20/2021,21:17,QUEENS,11368,40.744514,-73.86779,"(40.744514, -73.86779)",,,45-09 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4449315,Sedan,E-Bike,,, +08/19/2021,8:30,QUEENS,11421,40.691563,-73.86563,"(40.691563, -73.86563)",76 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448524,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,18:40,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448832,Sedan,Sedan,,, +08/20/2021,3:30,,,,,,,,1420 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4448754,Sedan,Sedan,Sedan,Sedan,Sedan +08/19/2021,10:30,BROOKLYN,11225,40.664223,-73.95932,"(40.664223, -73.95932)",,,47 MC KEEVER PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448893,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,22:24,MANHATTAN,10035,40.80194,-73.93414,"(40.80194, -73.93414)",,,2409 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449031,Bus,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,15:17,BROOKLYN,11217,40.68671,-73.979065,"(40.68671, -73.979065)",ROCKWELL PLACE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449066,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,9:30,MANHATTAN,10040,40.85715,-73.92741,"(40.85715, -73.92741)",AUDUBON AVENUE,FORT GEORGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449095,Sedan,,,, +08/18/2021,12:00,,,40.634506,-73.949455,"(40.634506, -73.949455)",GLENWOOD ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448464,Box Truck,,,, +08/20/2021,14:45,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4448944,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,14:15,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4448268,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,16:15,,,40.59319,-74.082405,"(40.59319, -74.082405)",REID AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449643,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/18/2021,5:20,BROOKLYN,11222,40.724506,-73.93768,"(40.724506, -73.93768)",,,2 APOLLO STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4449601,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,18:45,BROOKLYN,11228,40.60723,-74.01624,"(40.60723, -74.01624)",CROPSEY AVENUE,BAY 7 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4449557,Sedan,Sedan,,, +08/19/2021,7:15,,,40.783333,-73.94368,"(40.783333, -73.94368)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4448661,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,Bus, +08/20/2021,13:10,BROOKLYN,11209,40.619022,-74.029915,"(40.619022, -74.029915)",,,9102 4 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4448912,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,3:00,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448619,Sedan,Sedan,,, +08/20/2021,16:50,BRONX,10457,40.844177,-73.90292,"(40.844177, -73.90292)",WEBSTER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:10,,,40.617672,-73.99542,"(40.617672, -73.99542)",17 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448897,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/18/2021,20:00,,,40.652363,-73.89137,"(40.652363, -73.89137)",COZINE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448391,Sedan,Sedan,,, +08/14/2021,16:30,MANHATTAN,10019,40.765648,-73.99108,"(40.765648, -73.99108)",,,758 10 AVENUE,2,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448809,Sedan,E-Scooter,,, +08/20/2021,17:30,BRONX,10469,40.87152,-73.84832,"(40.87152, -73.84832)",,,1308 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449012,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,15:00,QUEENS,11367,40.71991,-73.809044,"(40.71991, -73.809044)",PARSONS BOULEVARD,UNION TURNPIKE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4448991,Sedan,Sedan,,, +08/18/2021,15:06,BROOKLYN,11218,40.647724,-73.97634,"(40.647724, -73.97634)",CATON AVENUE,EAST 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448356,Station Wagon/Sport Utility Vehicle,Bike,,, +08/20/2021,18:20,BROOKLYN,11211,40.71372,-73.93497,"(40.71372, -73.93497)",MORGAN AVENUE,DEVOE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4448929,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,19:50,STATEN ISLAND,10305,40.574135,-74.08581,"(40.574135, -74.08581)",CAPODANNO BOULEVARD,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448565,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/18/2021,13:16,STATEN ISLAND,10312,40.526077,-74.18759,"(40.526077, -74.18759)",HUGUENOT AVENUE,PRALL AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4449209,Sedan,,,, +08/15/2021,17:00,BROOKLYN,11205,40.69045,-73.959435,"(40.69045, -73.959435)",DE KALB AVENUE,TAAFFE PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4449234,Sedan,E-Scooter,,, +08/08/2021,4:30,,,,,,VANWYCK EXPRESSWAY,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4449713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,14:57,MANHATTAN,10014,40.726173,-74.01097,"(40.726173, -74.01097)",WEST STREET,SPRING STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,6:20,QUEENS,11355,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,BOOTH MEMORIAL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449047,Sedan,Sedan,,, +08/15/2021,15:25,BROOKLYN,11207,40.67189,-73.895874,"(40.67189, -73.895874)",PENNSYLVANIA AVENUE,PITKIN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4448942,Sedan,Sedan,Sedan,Sedan, +08/04/2021,9:17,BROOKLYN,11238,40.67297,-73.96745,"(40.67297, -73.96745)",EASTERN PARKWAY,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4449379,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,14:00,BROOKLYN,11230,40.61172,-73.955925,"(40.61172, -73.955925)",,,1581 EAST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449673,Sedan,,,, +08/18/2021,20:05,QUEENS,11434,40.680485,-73.774704,"(40.680485, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4448589,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,21:33,,,40.669548,-73.911674,"(40.669548, -73.911674)",CHESTER STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4448396,Sedan,Bike,,, +08/15/2021,6:47,,,40.588573,-73.81228,"(40.588573, -73.81228)",ROCKAWAY FREEWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4448814,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,4:40,QUEENS,11106,40.75694,-73.93464,"(40.75694, -73.93464)",37 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,,,,4449556,Sedan,Taxi,,, +08/17/2021,22:50,BROOKLYN,11233,40.676693,-73.917404,"(40.676693, -73.917404)",ATLANTIC AVENUE,LOUIS PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449399,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,8:40,QUEENS,11354,40.77132,-73.84655,"(40.77132, -73.84655)",30 AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449055,Station Wagon/Sport Utility Vehicle,PK,,, +08/20/2021,21:00,,,40.8197,-73.93449,"(40.8197, -73.93449)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449250,Sedan,Sedan,Sedan,, +08/18/2021,21:05,MANHATTAN,10018,40.751568,-73.98799,"(40.751568, -73.98799)",,,121 WEST 36 STREET,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4449493,Sedan,,,, +08/20/2021,21:20,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4448965,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,17:39,,,40.852383,-73.92048,"(40.852383, -73.92048)",SEDGWICK AVENUE,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4448765,Sedan,,,, +08/20/2021,22:14,BROOKLYN,11210,40.61382,-73.9512,"(40.61382, -73.9512)",AVENUE O,EAST 23 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449681,Station Wagon/Sport Utility Vehicle,,,, +08/07/2021,6:47,BRONX,10463,40.877537,-73.91039,"(40.877537, -73.91039)",,,73 ADRIAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449363,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,11:15,MANHATTAN,10001,40.746445,-73.98603,"(40.746445, -73.98603)",,,298 5 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4448262,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,0:00,BROOKLYN,11212,40.657524,-73.91055,"(40.657524, -73.91055)",BOYLAND STREET,LOTT AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4448223,Station Wagon/Sport Utility Vehicle,Convertible,,, +08/19/2021,17:15,,,40.71851,-73.842804,"(40.71851, -73.842804)",BURNS STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,5:00,,,40.7693326,-73.8417321,"(40.7693326, -73.8417321)",COLLEGE POINT BOULEVARD,31 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4468549,Stake or Rack,Sedan,,, +08/20/2021,15:40,BROOKLYN,11204,40.61611,-73.97545,"(40.61611, -73.97545)",23 AVENUE,DAHILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449185,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,20:15,STATEN ISLAND,10304,40.598434,-74.09198,"(40.598434, -74.09198)",,,1160 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4448797,Station Wagon/Sport Utility Vehicle,,,, +08/04/2021,6:00,QUEENS,11385,40.704056,-73.87905,"(40.704056, -73.87905)",,,71-48 72 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448836,Sedan,,,, +08/18/2021,10:29,QUEENS,11372,40.748222,-73.87835,"(40.748222, -73.87835)",88 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4448535,E-Bike,,,, +08/18/2021,8:25,MANHATTAN,10029,,,,EAST 116 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4448308,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,5:40,MANHATTAN,10027,40.81205,-73.95355,"(40.81205, -73.95355)",MORNINGSIDE AVENUE,WEST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,22:00,BRONX,10464,40.85217,-73.78918,"(40.85217, -73.78918)",,,500 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449124,Sedan,Sedan,,, +08/20/2021,12:15,BROOKLYN,11235,40.593807,-73.94062,"(40.593807, -73.94062)",NOSTRAND AVENUE,AVENUE X,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,,,,4448847,Sedan,Bus,,, +08/18/2021,19:56,BRONX,10460,40.84054,-73.87058,"(40.84054, -73.87058)",ADAMS STREET,VANNEST AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4448518,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,20:20,BROOKLYN,11230,40.63448,-73.962204,"(40.63448, -73.962204)",FOSTER AVENUE,EAST 16 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448460,E-Bike,,,, +08/18/2021,20:05,BRONX,10467,40.882217,-73.88046,"(40.882217, -73.88046)",EAST GUN HILL ROAD,DEKALB AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4449324,Sedan,Station Wagon/Sport Utility Vehicle,,, +05/07/2021,15:30,QUEENS,11385,40.692966,-73.90191,"(40.692966, -73.90191)",,,56-06 COOPER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448864,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/20/2021,15:40,,,40.639927,-73.94939,"(40.639927, -73.94939)",EAST 29 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4449419,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/19/2021,18:30,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",KINGS HIGHWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449414,Sedan,Sedan,,, +08/18/2021,1:32,,,40.62707,-74.01865,"(40.62707, -74.01865)",BAY RIDGE PARKWAY,7 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4448209,Bike,,,, +08/18/2021,8:27,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448129,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,15:00,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448339,Pick-up Truck,,,, +08/20/2021,22:20,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449027,Sedan,,,, +08/19/2021,8:00,,,40.670868,-73.781425,"(40.670868, -73.781425)",155 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448722,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,22:05,QUEENS,11422,40.679638,-73.731415,"(40.679638, -73.731415)",236 STREET,130 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4448421,Sedan,Sedan,,, +08/18/2021,0:15,QUEENS,11433,40.70325,-73.79195,"(40.70325, -73.79195)",MERRICK BOULEVARD,DOUGLAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448311,Sedan,DUMP,,, +08/20/2021,9:05,BROOKLYN,11213,40.664795,-73.93985,"(40.664795, -73.93985)",MONTGOMERY STREET,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,19:50,,,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448627,Sedan,,,, +08/19/2021,8:00,,,40.69911,-73.93402,"(40.69911, -73.93402)",MELROSE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448657,Station Wagon/Sport Utility Vehicle,Bus,,, +08/20/2021,9:35,,,40.67216,-73.98721,"(40.67216, -73.98721)",4 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4448880,Sedan,Sedan,Sedan,, +08/20/2021,17:00,QUEENS,11434,40.68612,-73.785286,"(40.68612, -73.785286)",116 AVENUE,159 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448958,Sedan,,,, +08/18/2021,18:10,BROOKLYN,11208,40.67831,-73.869804,"(40.67831, -73.869804)",HEMLOCK STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448570,Sedan,,,, +08/18/2021,22:42,BRONX,10466,40.88974,-73.84591,"(40.88974, -73.84591)",EAST 233 STREET,LACONIA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449203,,,,, +08/20/2021,11:00,QUEENS,11377,40.740517,-73.89236,"(40.740517, -73.89236)",45 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448925,Sedan,,,, +08/11/2021,14:04,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4449383,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,20:50,BROOKLYN,11205,40.698677,-73.95886,"(40.698677, -73.95886)",FLUSHING AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448696,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,0:45,,,40.638264,-74.021095,"(40.638264, -74.021095)",65 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448829,Sedan,,,, +08/20/2021,12:55,,,40.840645,-73.84205,"(40.840645, -73.84205)",WESTCHESTER AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4449688,Sedan,,,, +08/05/2021,14:40,QUEENS,11103,40.757946,-73.9099,"(40.757946, -73.9099)",49 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449544,Sedan,,,, +08/16/2021,21:47,MANHATTAN,10013,40.715633,-73.9985,"(40.715633, -73.9985)",BAYARD STREET,MOTT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449226,Bus,Sedan,,, +08/19/2021,23:45,,,40.803143,-73.97256,"(40.803143, -73.97256)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4448792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/20/2021,18:01,MANHATTAN,10128,40.782787,-73.95741,"(40.782787, -73.95741)",MADISON AVENUE,EAST 89 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449003,Sedan,Bike,,, +08/18/2021,20:40,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448988,Sedan,Sedan,,, +08/18/2021,13:15,QUEENS,11355,40.753544,-73.83381,"(40.753544, -73.83381)",MAPLE AVENUE,HAIGHT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4448347,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,2:10,BRONX,10457,40.84541,-73.891136,"(40.84541, -73.891136)",CROTONA AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449293,Ambulance,,,, +08/18/2021,16:35,BROOKLYN,11218,40.639725,-73.97201,"(40.639725, -73.97201)",,,495 EAST 7 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448581,Van,Van,,, +08/19/2021,8:00,,,40.82466,-73.870804,"(40.82466, -73.870804)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449468,Tractor Truck Diesel,Sedan,,, +08/19/2021,22:20,BROOKLYN,11215,40.667847,-73.99404,"(40.667847, -73.99404)",15 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448719,Sedan,Sedan,,, +08/18/2021,22:30,QUEENS,11373,40.745304,-73.89019,"(40.745304, -73.89019)",75 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448482,Chassis Cab,Sedan,,, +08/18/2021,1:02,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448733,Sedan,,,, +08/18/2021,13:00,QUEENS,11355,40.759773,-73.8173,"(40.759773, -73.8173)",SANFORD AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449105,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,17:50,BROOKLYN,11201,40.688,-73.99757,"(40.688, -73.99757)",WARREN STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449367,Pick-up Truck,,,, +08/13/2021,14:50,,,40.662674,-73.94562,"(40.662674, -73.94562)",BROOKLYN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448894,Station Wagon/Sport Utility Vehicle,Bike,,, +08/19/2021,7:35,,,40.857166,-73.92824,"(40.857166, -73.92824)",FORT GEORGE HILL,FAIRVIEW AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,Unspecified,,4448760,Sedan,Sedan,Sedan,Sedan, +07/29/2021,9:41,QUEENS,11385,40.698597,-73.88905,"(40.698597, -73.88905)",,,65-02 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448879,Sedan,Sedan,,, +08/05/2021,10:00,QUEENS,11102,40.77421,-73.93182,"(40.77421, -73.93182)",8 STREET,27 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449545,Sedan,,,, +08/20/2021,2:20,BROOKLYN,11211,40.70654,-73.95041,"(40.70654, -73.95041)",,,211 UNION AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448856,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,7:40,STATEN ISLAND,10308,40.553837,-74.14578,"(40.553837, -74.14578)",GREAVES AVENUE,GREAVES LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448251,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/18/2021,21:00,MANHATTAN,10037,40.816765,-73.93472,"(40.816765, -73.93472)",,,2333 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448511,Sedan,UNK,,, +08/06/2021,7:30,QUEENS,11106,40.755398,-73.93182,"(40.755398, -73.93182)",30 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449547,Box Truck,,,, +08/19/2021,17:56,,,40.784145,-73.91257,"(40.784145, -73.91257)",21 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4448677,Motorcycle,,,, +08/18/2021,22:45,BRONX,10451,40.829144,-73.9287,"(40.829144, -73.9287)",,,20 EAST 161 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448470,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,9:23,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448235,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/18/2021,1:27,,,,,,BAY PARKWAY,SHORE PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,,,,,4448301,Sedan,,,, +08/19/2021,9:30,,,40.647766,-73.95816,"(40.647766, -73.95816)",,,FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449503,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,14:04,,,40.850807,-73.86781,"(40.850807, -73.86781)",WHITE PLAINS ROAD,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448851,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,20:00,QUEENS,11106,40.762825,-73.93398,"(40.762825, -73.93398)",34 AVENUE,21 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4449569,Bike,Bike,,, +08/18/2021,10:20,MANHATTAN,10002,40.72163,-73.99354,"(40.72163, -73.99354)",BOWERY,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448540,Pick-up Truck,Sedan,,, +08/18/2021,21:00,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448532,Ambulance,AMBULANCE,,, +08/18/2021,10:00,BRONX,10469,40.87059,-73.84651,"(40.87059, -73.84651)",,,1348 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448199,Dump,Station Wagon/Sport Utility Vehicle,,, +04/12/2021,9:00,QUEENS,11385,40.71029,-73.91789,"(40.71029, -73.91789)",ONDERDONK AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4448868,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/16/2021,15:27,BROOKLYN,11238,40.674862,-73.96008,"(40.674862, -73.96008)",CLASSON AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449434,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,19:00,BROOKLYN,11222,40.727047,-73.95062,"(40.727047, -73.95062)",,,230 ECKFORD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449616,Convertible,Sedan,,, +08/19/2021,18:24,BROOKLYN,11236,40.64091,-73.90892,"(40.64091, -73.90892)",,,8821 GLENWOOD ROAD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4448700,Bike,,,, +08/20/2021,8:45,,,40.715443,-73.95185,"(40.715443, -73.95185)",UNION AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449612,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,21:16,,,40.584225,-73.813866,"(40.584225, -73.813866)",SHORE FRONT PARKWAY,,,2,0,0,0,0,0,0,0,Unspecified,,,,,4448819,E-Scooter,,,, +08/20/2021,19:50,BROOKLYN,11234,40.610683,-73.93858,"(40.610683, -73.93858)",AVENUE R,EAST 31 STREET,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4449077,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,13:30,QUEENS,11368,,,,,,1 Worlds fair marina,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449340,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,9:30,,,40.734276,-73.8477,"(40.734276, -73.8477)",110 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4449023,Sedan,Sedan,,, +08/19/2021,12:04,MANHATTAN,10021,40.769753,-73.95458,"(40.769753, -73.95458)",EAST 75 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4448740,Pick-up Truck,,,, +08/19/2021,4:10,,,40.667953,-73.87007,"(40.667953, -73.87007)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4448574,Sedan,Sedan,,, +08/18/2021,21:55,,,40.856808,-73.92827,"(40.856808, -73.92827)",WEST 193 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448772,Sedan,Sedan,,, +08/18/2021,11:10,QUEENS,11101,40.750847,-73.94859,"(40.750847, -73.94859)",,,11-20 43 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448402,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,11:15,MANHATTAN,10029,40.79292,-73.94579,"(40.79292, -73.94579)",EAST 107 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4448635,Taxi,E-Bike,,, +08/19/2021,17:35,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4448653,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,1:30,QUEENS,11355,40.756718,-73.830826,"(40.756718, -73.830826)",,,133-12 41 ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448095,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,0:30,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4448727,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,7:45,BROOKLYN,11219,40.638947,-73.988045,"(40.638947, -73.988045)",13 AVENUE,42 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448431,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,8:39,,,40.770412,-73.987625,"(40.770412, -73.987625)",WEST 59 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449471,Sedan,Sedan,,, +08/18/2021,16:54,BRONX,10456,40.818058,-73.90501,"(40.818058, -73.90501)",TINTON AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448457,Sedan,Bike,,, +08/18/2021,10:15,MANHATTAN,10039,40.823574,-73.94158,"(40.823574, -73.94158)",,,301 WEST 146 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448787,Armored Truck,Sedan,,, +08/20/2021,11:45,BROOKLYN,11207,40.66685,-73.8907,"(40.66685, -73.8907)",BRADFORD STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448953,Sedan,,,, +08/19/2021,18:35,,,40.81824,-73.87001,"(40.81824, -73.87001)",METCALF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4448688,Sedan,,,, +08/18/2021,17:38,MANHATTAN,10036,40.760925,-73.99454,"(40.760925, -73.99454)",WEST 44 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4448804,Sedan,Sedan,,, +08/18/2021,14:54,,,40.772346,-73.826584,"(40.772346, -73.826584)",UNION STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448344,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,12:58,,,40.676647,-73.91647,"(40.676647, -73.91647)",SARATOGA AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449483,Sedan,Sedan,,, +08/19/2021,6:00,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448551,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,2:42,,,40.69286,-73.87801,"(40.69286, -73.87801)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4448884,Sedan,,,, +08/20/2021,22:14,BROOKLYN,11210,40.61382,-73.9512,"(40.61382, -73.9512)",EAST 23 STREET,AVENUE O,,3,0,0,0,0,0,3,0,Unspecified,,,,,4449682,Sedan,Sedan,,, +08/20/2021,15:52,,,40.634964,-74.0204,"(40.634964, -74.0204)",SENATOR STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4448921,Bike,,,, +08/17/2021,12:30,BROOKLYN,11233,40.684547,-73.91939,"(40.684547, -73.91939)",,,780 MACON STREET,1,0,0,0,0,0,1,0,,,,,,4449391,,,,, +08/19/2021,18:00,BRONX,10466,40.890602,-73.83518,"(40.890602, -73.83518)",,,3955 DURYEA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449198,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,13:00,BROOKLYN,11223,40.606216,-73.96535,"(40.606216, -73.96535)",,,720 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4448846,Sedan,Motorcycle,,, +08/20/2021,18:15,MANHATTAN,10033,40.846317,-73.93275,"(40.846317, -73.93275)",,,508 WEST 178 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449529,Sedan,,,, +08/17/2021,14:50,BROOKLYN,11231,40.674625,-74.00772,"(40.674625, -74.00772)",LORRAINE STREET,COLUMBIA STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449138,Pick-up Truck,,,, +08/18/2021,19:55,QUEENS,11367,40.730465,-73.815025,"(40.730465, -73.815025)",KISSENA BOULEVARD,70 ROAD,,1,0,1,0,0,0,0,0,,,,,,4448984,,,,, +08/19/2021,19:16,STATEN ISLAND,10301,40.63328,-74.09509,"(40.63328, -74.09509)",,,375 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4449247,Sedan,,,, +08/20/2021,13:17,BROOKLYN,11220,40.640625,-74.014984,"(40.640625, -74.014984)",58 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4449304,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,17:36,,,40.701008,-73.9424,"(40.701008, -73.9424)",BROADWAY,GRAHAM AVENUE,,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4448368,Sedan,Sedan,,, +08/20/2021,16:22,BRONX,10473,40.819016,-73.84804,"(40.819016, -73.84804)",CASTLE HILL AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449462,Sedan,Sedan,,, +08/19/2021,23:07,STATEN ISLAND,10301,40.645473,-74.09287,"(40.645473, -74.09287)",RICHMOND TERRACE,FRANKLIN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4448714,Sedan,Sedan,,, +08/14/2021,18:07,QUEENS,11354,40.76374,-73.8289,"(40.76374, -73.8289)",,,137-58 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,4:17,,,40.879215,-73.885284,"(40.879215, -73.885284)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448861,Sedan,,,, +08/19/2021,19:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4448841,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,21:17,BROOKLYN,11212,40.659477,-73.908134,"(40.659477, -73.908134)",ROCKAWAY AVENUE,NEWPORT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449110,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +08/15/2021,16:00,QUEENS,11102,40.772892,-73.92543,"(40.772892, -73.92543)",,,26-38 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449551,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,22:30,,,40.871395,-73.89308,"(40.871395, -73.89308)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4449316,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,13:43,BROOKLYN,11234,40.617893,-73.92575,"(40.617893, -73.92575)",,,1739 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449350,Sedan,,,, +08/20/2021,12:37,BROOKLYN,11220,40.636078,-74.019714,"(40.636078, -74.019714)",66 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448911,Sedan,E-Bike,,, +08/17/2021,22:00,MANHATTAN,10027,40.812813,-73.94955,"(40.812813, -73.94955)",,,310 WEST 129 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4448778,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,8:00,QUEENS,11413,40.65943,-73.7613,"(40.65943, -73.7613)",SPRINGFIELD BOULEVARD,147 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449038,Sedan,Sedan,Sedan,, +08/20/2021,6:10,,,40.707664,-73.78772,"(40.707664, -73.78772)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448873,Sedan,Pick-up Truck,,, +08/12/2021,15:14,BROOKLYN,11222,40.73476,-73.95927,"(40.73476, -73.95927)",,,33 EAGLE STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4449605,Pick-up Truck,Tractor Truck Diesel,,, +08/19/2021,21:30,QUEENS,11379,0,0,"(0.0, 0.0)",PENELOPE AVENUE,77 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449067,Sedan,Sedan,,, +08/17/2021,14:00,QUEENS,11435,40.704403,-73.814445,"(40.704403, -73.814445)",HILLSIDE AVENUE,139 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4448980,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/18/2021,6:00,MANHATTAN,10002,40.72261,-73.99242,"(40.72261, -73.99242)",,,9 STANTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449163,Sedan,,,, +08/20/2021,0:10,,,40.818974,-73.89145,"(40.818974, -73.89145)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4448906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/19/2021,11:00,BRONX,10466,40.88392,-73.84633,"(40.88392, -73.84633)",,,1141 EAST 226 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449729,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,16:04,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449309,Sedan,Sedan,,, +08/20/2021,21:25,BROOKLYN,11203,40.660656,-73.93033,"(40.660656, -73.93033)",RUTLAND ROAD,EAST 51 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449516,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,6:49,MANHATTAN,10029,40.789433,-73.94759,"(40.789433, -73.94759)",,,164 EAST 102 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448441,Sedan,,,, +08/18/2021,11:24,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",55 DRIVE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448292,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,7:58,BROOKLYN,11208,40.68045,-73.88482,"(40.68045, -73.88482)",,,132 ELTON STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4448173,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/18/2021,21:17,BROOKLYN,11215,40.669426,-73.972824,"(40.669426, -73.972824)",PROSPECT PARK WEST,1 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4448499,Bike,,,, +08/19/2021,10:40,QUEENS,11421,40.69259,-73.858025,"(40.69259, -73.858025)",,,86-09 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448561,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,18:45,,,40.753857,-73.91764,"(40.753857, -73.91764)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pavement Defective,,,,4449563,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/18/2021,12:00,,,40.714455,-73.935295,"(40.714455, -73.935295)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448331,Sedan,,,, +08/18/2021,15:40,QUEENS,11374,40.722775,-73.85775,"(40.722775, -73.85775)",THORNTON PLACE,CLYDE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4448315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,15:34,BRONX,10462,40.833366,-73.85139,"(40.833366, -73.85139)",CASTLE HILL AVENUE,NEWBOLD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448527,Sedan,,,, +08/19/2021,18:30,BROOKLYN,11211,40.708904,-73.95926,"(40.708904, -73.95926)",BROADWAY,HAVEMEYER STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,4448706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +08/20/2021,0:35,,,40.900486,-73.85411,"(40.900486, -73.85411)",RICHARDSON AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4449240,Sedan,Sedan,,, +08/13/2021,13:00,BROOKLYN,11220,,,,,,425 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448889,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/20/2021,10:00,BROOKLYN,11249,40.719826,-73.95775,"(40.719826, -73.95775)",,,80 BERRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449621,Sedan,,,, +08/20/2021,19:30,BROOKLYN,11208,40.670235,-73.87604,"(40.670235, -73.87604)",,,328 MILFORD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4448948,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,17:10,,,40.827168,-73.896225,"(40.827168, -73.896225)",INTERVALE AVENUE,KELLY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448815,Sedan,,,, +08/20/2021,9:55,MANHATTAN,10003,40.73378,-73.982414,"(40.73378, -73.982414)",,,327 EAST 17 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449087,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/18/2021,8:50,BROOKLYN,11236,40.63853,-73.90785,"(40.63853, -73.90785)",,,765 EAST 87 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4448360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,18:07,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448407,Sedan,,,, +08/18/2021,1:00,BROOKLYN,11234,,,,,,1456 EAST 51 STREET,0,0,0,0,0,0,0,0,Shoulders Defective/Improper,,,,,4448667,Sedan,Unk,,, +08/19/2021,13:32,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4448607,Sedan,Sedan,,, +08/12/2021,15:30,QUEENS,11369,40.76267,-73.87528,"(40.76267, -73.87528)",,,26-38 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448768,Sedan,Bike,,, +08/18/2021,21:00,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4448933,Sedan,,,, +08/19/2021,9:49,,,40.77929,-73.98114,"(40.77929, -73.98114)",WEST 73 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449475,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,7:00,BROOKLYN,11233,40.676857,-73.92038,"(40.676857, -73.92038)",,,2034 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4448783,Sedan,,,, +08/18/2021,11:55,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448425,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,18:10,,,40.695965,-73.96642,"(40.695965, -73.96642)",PARK AVENUE,HALL STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4448916,Sedan,Sedan,,, +08/18/2021,6:00,MANHATTAN,10065,40.76624,-73.960236,"(40.76624, -73.960236)",2 AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448800,Sedan,Bike,,, +08/18/2021,13:32,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448348,Sedan,Concrete Mixer,,, +08/19/2021,9:20,,,40.705246,-73.95908,"(40.705246, -73.95908)",BROOKLYN QUEENS EXPRESSWAY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4448749,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +06/29/2021,18:00,BRONX,10470,40.905605,-73.85317,"(40.905605, -73.85317)",,,4734 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449192,Sedan,,,, +08/19/2021,19:00,,,,,,MAIN STREET,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448995,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,13:21,BROOKLYN,11219,40.64029,-73.994804,"(40.64029, -73.994804)",45 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4448582,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,20:01,BROOKLYN,11221,40.68942,-73.939316,"(40.68942, -73.939316)",,,245 MARCUS GARVEY BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449406,E-Bike,,,, +07/29/2021,7:40,MANHATTAN,10023,40.781025,-73.981316,"(40.781025, -73.981316)",BROADWAY,WEST 75 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4449017,Box Truck,Van,,, +08/12/2021,7:50,QUEENS,11377,40.748146,-73.90426,"(40.748146, -73.90426)",59 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449142,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,12:30,BRONX,10463,40.881,-73.917366,"(40.881, -73.917366)",,,2600 HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449372,Sedan,,,, +08/20/2021,18:25,,,40.581104,-74.16246,"(40.581104, -74.16246)",,,12 ELMWOOD PARK DRIVE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4449214,Bus,Sedan,,, +08/19/2021,20:20,BROOKLYN,11239,40.64604,-73.8819,"(40.64604, -73.8819)",,,1420 FREEPORT LOOP,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448938,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/19/2021,12:22,BROOKLYN,11203,40.647114,-73.94338,"(40.647114, -73.94338)",BROOKLYN AVENUE,TILDEN AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4448599,Bike,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,23:30,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449063,Sedan,Sedan,,, +08/20/2021,14:18,BROOKLYN,11208,40.67821,-73.883804,"(40.67821, -73.883804)",,,2999 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448943,Station Wagon/Sport Utility Vehicle,Bike,,, +08/19/2021,17:05,,,40.752098,-73.94425,"(40.752098, -73.94425)",21 STREET,QUEENS PLAZA SOUTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448901,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/05/2021,14:47,,,40.709415,-73.87022,"(40.709415, -73.87022)",80 STREET,COOPER AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4448810,Sedan,E-Bike,,, +06/21/2021,5:45,QUEENS,11420,0,0,"(0.0, 0.0)",SUTTER AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449265,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,15:42,,,40.702538,-73.99071,"(40.702538, -73.99071)",MAIN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448620,Sedan,,,, +08/20/2021,5:00,QUEENS,11691,40.60583,-73.75776,"(40.60583, -73.75776)",,,22-70 MOTT AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4449657,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,23:10,,,40.670715,-73.91703,"(40.670715, -73.91703)",SARATOGA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4448392,,,,, +10/19/2021,11:44,,,40.6686479,-73.9283482,"(40.6686479, -73.9283482)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4470337,Sedan,,,, +10/15/2021,15:55,BROOKLYN,11205,40.6913292,-73.9517592,"(40.6913292, -73.9517592)",DE KALB AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,20:05,,,40.8269923,-73.8200377,"(40.8269923, -73.8200377)",RANDALL AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470640,Motorcycle,Taxi,,, +10/19/2021,19:12,BROOKLYN,11223,40.5963635,-73.977696,"(40.5963635, -73.977696)",,,178 AVENUE U,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468977,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,17:41,,,40.7006627,-73.9877415,"(40.7006627, -73.9877415)",PEARL STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,8:00,QUEENS,11385,40.7038495,-73.9020411,"(40.7038495, -73.9020411)",,,1925 CORNELIA STREET,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4468679,Sedan,Sedan,,, +11/02/2021,19:30,BRONX,10469,40.87823,-73.84438,"(40.87823, -73.84438)",,,3563 BOSTON ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Turning Improperly,Unspecified,,,4473507,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/05/2021,15:54,BROOKLYN,11233,40.6796955,-73.9302767,"(40.6796955, -73.9302767)",,,1711 FULTON STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4468046,Sedan,Sedan,,, +10/20/2021,19:10,,,40.7292952,-73.8522364,"(40.7292952, -73.8522364)",102 STREET,66 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4469614,Sedan,Box Truck,,, +10/25/2021,5:50,,,40.8087502,-73.9525853,"(40.8087502, -73.9525853)",WEST 110 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470700,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,10:10,,,40.7901865,-73.9769055,"(40.7901865, -73.9769055)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469787,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,14:40,BROOKLYN,11203,40.6532071,-73.9402289,"(40.6532071, -73.9402289)",LINDEN BOULEVARD,EAST 40 STREET,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4468836,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,16:30,,,40.8768341,-73.8647165,"(40.8768341, -73.8647165)",HOLLAND AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470387,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,11:15,MANHATTAN,10019,40.76379,-73.975182,"(40.76379, -73.975182)",,,9 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466764,Sedan,Bus,,, +10/14/2021,17:30,QUEENS,11417,40.68424,-73.838076,"(40.68424, -73.838076)",104 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467211,Sedan,Sedan,,, +10/21/2021,11:04,MANHATTAN,10003,40.7376173,-73.9863641,"(40.7376173, -73.9863641)",,,18 GRAMERCY PARK SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469482,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,4:35,,,40.6890403,-73.8587368,"(40.6890403, -73.8587368)",89 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467665,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,11:20,BROOKLYN,11236,40.6471498,-73.8949618,"(40.6471498, -73.8949618)",,,10410 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468475,Sedan,Sedan,,, +10/13/2021,19:46,,,40.7051271,-73.8281825,"(40.7051271, -73.8281825)",METROPOLITAN AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4466849,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:00,QUEENS,11361,40.7674502,-73.7801083,"(40.7674502, -73.7801083)",35 AVENUE,208 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467166,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,22:30,,,40.6804635,-73.9613466,"(40.6804635, -73.9613466)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467959,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/07/2021,15:20,BROOKLYN,11233,40.6750601,-73.9166176,"(40.6750601, -73.9166176)",SARATOGA AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468055,Pick-up Truck,Pick-up Truck,,, +10/16/2021,21:18,BROOKLYN,11217,40.6807335,-73.9745025,"(40.6807335, -73.9745025)",BERGEN STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468194,Station Wagon/Sport Utility Vehicle,Bike,,, +10/20/2021,13:30,BROOKLYN,11218,40.6347902,-73.9749902,"(40.6347902, -73.9749902)",,,706 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469441,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,23:15,BRONX,10466,40.8894449,-73.8349101,"(40.8894449, -73.8349101)",,,3901 DURYEA AVENUE,3,0,0,0,0,0,3,0,Accelerator Defective,Unspecified,,,,4469722,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,14:48,BRONX,10451,40.8158653,-73.9198588,"(40.8158653, -73.9198588)",COURTLANDT AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468990,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,10:37,BROOKLYN,11207,40.6793378,-73.8948252,"(40.6793378, -73.8948252)",JAMAICA AVENUE,WYONA STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4468175,Sedan,Sedan,Sedan,, +10/22/2021,15:45,QUEENS,11418,40.6972045,-73.8133341,"(40.6972045, -73.8133341)",94 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4469887,Sedan,Tractor Truck Diesel,,, +10/13/2021,16:10,MANHATTAN,10002,40.7199725,-73.9928968,"(40.7199725, -73.9928968)",DELANCEY STREET,CHRYSTIE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4468310,Station Wagon/Sport Utility Vehicle,Bike,,, +10/08/2021,0:00,QUEENS,11101,40.7459115,-73.9528779,"(40.7459115, -73.9528779)",,,46-33 VERNON BOULEVARD,1,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4467183,Sedan,E-Scooter,,, +10/24/2021,12:27,MANHATTAN,10014,40.7423751,-74.0087909,"(40.7423751, -74.0087909)",11 AVENUE,WEST 14 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470824,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,23:47,MANHATTAN,10006,40.7098353,-74.0148752,"(40.7098353, -74.0148752)",WEST STREET,ALBANY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468427,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,14:08,,,40.8519037,-73.9164465,"(40.8519037, -73.9164465)",WEST TREMONT AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4470651,Sedan,Sedan,,, +10/11/2021,15:41,BRONX,10465,40.8782895,-73.8700582,"(40.8782895, -73.8700582)",BRONX RIVER PARKWAY,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466344,Sedan,,,, +10/21/2021,21:15,QUEENS,11368,40.751715,-73.8706364,"(40.751715, -73.8706364)",,,96-03 37 AVENUE,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4469801,E-Bike,,,, +10/15/2021,12:05,,,40.8041684,-73.9667001,"(40.8041684, -73.9667001)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467398,,,,, +10/12/2021,14:50,BROOKLYN,11230,40.6239626,-73.9724457,"(40.6239626, -73.9724457)",BAY PARKWAY,AVENUE J,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4467048,Station Wagon/Sport Utility Vehicle,Van,,, +10/15/2021,13:00,BROOKLYN,11222,40.7300309,-73.9522104,"(40.7300309, -73.9522104)",,,320 ECKFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468340,Sedan,,,, +10/16/2021,20:38,BROOKLYN,11220,40.6374668,-74.0282805,"(40.6374668, -74.0282805)",RIDGE BOULEVARD,68 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4467693,Sedan,Bike,,, +10/13/2021,14:28,BROOKLYN,11207,40.6793737,-73.8864391,"(40.6793737, -73.8864391)",ASHFORD STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468154,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:30,,,40.6901702,-73.7959083,"(40.6901702, -73.7959083)",110 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4470586,Sedan,Sedan,,, +10/22/2021,8:50,MANHATTAN,10035,40.8011849,-73.9397457,"(40.8011849, -73.9397457)",EAST 120 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470689,Sedan,Flat Bed,,, +10/17/2021,9:30,MANHATTAN,10003,40.7264997,-73.9889582,"(40.7264997, -73.9889582)",,,82 2 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467825,Sedan,,,, +10/23/2021,3:38,MANHATTAN,10026,40.8033301,-73.9487269,"(40.8033301, -73.9487269)",LENOX AVENUE,WEST 118 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4470782,Sedan,Sedan,,, +10/23/2021,5:25,QUEENS,11423,40.7138514,-73.7705203,"(40.7138514, -73.7705203)",,,89-25 190 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470564,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/02/2021,10:50,,,40.681656,-73.72783,"(40.681656, -73.72783)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473401,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:40,BRONX,10459,40.8193388,-73.8989644,"(40.8193388, -73.8989644)",,,857 STEBBINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467629,Sedan,,,, +10/17/2021,14:30,,,40.6986419,-73.9469574,"(40.6986419, -73.9469574)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4468008,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,15:48,BROOKLYN,11201,40.6936492,-73.9833217,"(40.6936492, -73.9833217)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4469876,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/24/2021,3:29,QUEENS,11416,40.6881494,-73.8488335,"(40.6881494, -73.8488335)",WOODHAVEN BOULEVARD,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4470238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,6:30,QUEENS,11368,40.7605853,-73.8459113,"(40.7605853, -73.8459113)",126 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470455,Sedan,Tractor Truck Diesel,,, +10/16/2021,3:40,QUEENS,11692,40.5913594,-73.7870974,"(40.5913594, -73.7870974)",,,57-07 SHORE FRONT PARKWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468438,Sedan,Sedan,,, +10/23/2021,17:09,BROOKLYN,11207,40.6604139,-73.8963111,"(40.6604139, -73.8963111)",NEW LOTS AVENUE,MALTA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470474,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,10:34,,,40.71493,-73.983345,"(40.71493, -73.983345)",WILLETT STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473825,Sedan,Pick-up Truck,,, +10/24/2021,18:35,BROOKLYN,11213,40.676121,-73.9359976,"(40.676121, -73.9359976)",DEAN STREET,TROY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470438,E-Scooter,Sedan,,, +10/16/2021,20:50,,,40.8561638,-73.8443975,"(40.8561638, -73.8443975)",EAST FORDHAM ROAD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4467729,Sedan,Sedan,,, +11/02/2021,18:39,,,40.687004,-73.91769,"(40.687004, -73.91769)",JEFFERSON AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473550,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,23:20,STATEN ISLAND,10307,40.5119121,-74.2498707,"(40.5119121, -74.2498707)",,,116 MAIN STREET,0,0,0,0,0,0,0,0,Following Too Closely,View Obstructed/Limited,,,,4469573,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,10:48,QUEENS,11417,40.6749899,-73.856535,"(40.6749899, -73.856535)",80 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4468207,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/23/2021,13:40,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",QUEENS PLAZA NORTH,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4470144,Sedan,,,, +10/18/2021,18:58,BROOKLYN,11229,40.6103007,-73.9595215,"(40.6103007, -73.9595215)",AVENUE P,EAST 14 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4468590,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,18:29,,,40.7161961,-73.9974902,"(40.7161961, -73.9974902)",MANHATTAN BR LOWER,,,2,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468307,E-Scooter,Bike,,, +10/20/2021,23:35,QUEENS,11428,40.7225113,-73.7440078,"(40.7225113, -73.7440078)",,,91-15 215 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4469293,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +10/20/2021,14:20,BROOKLYN,11214,40.5944448,-73.9860183,"(40.5944448, -73.9860183)",BENSON AVENUE,BAY 43 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469352,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,17:12,,,40.7834771,-73.9647574,"(40.7834771, -73.9647574)",,,106 WEST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4470120,Bike,,,, +10/21/2021,18:20,,,40.6797006,-73.7760474,"(40.6797006, -73.7760474)",PHROANE AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469758,Sedan,,,, +10/28/2021,8:36,,,40.55554,-74.17562,"(40.55554, -74.17562)",KOREAN WAR VETS PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4473988,Sedan,Sedan,,, +10/23/2021,3:08,QUEENS,11423,40.7121976,-73.7688823,"(40.7121976, -73.7688823)",,,190-26 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4470579,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,9:45,,,40.608543,-74.08886,"(40.608543, -74.08886)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,14:30,QUEENS,11101,40.7491978,-73.9364503,"(40.7491978, -73.9364503)",,,29-22 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469043,Pick-up Truck,Sedan,,, +11/02/2021,20:26,MANHATTAN,10027,40.810986,-73.95911,"(40.810986, -73.95911)",,,521 WEST 122 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473859,Sedan,,,, +10/18/2021,11:50,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",VERRAZANO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4468776,Sedan,Sedan,Sedan,, +10/20/2021,11:00,QUEENS,11385,40.705064,-73.891268,"(40.705064, -73.891268)",65 PLACE,CATALPA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470017,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,11:05,,,40.8035674,-73.9671411,"(40.8035674, -73.9671411)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467147,Sedan,Box Truck,,, +04/13/2022,13:48,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4518943,Taxi,,,, +10/23/2021,20:00,BRONX,10458,40.8688059,-73.8905447,"(40.8688059, -73.8905447)",VALENTINE AVENUE,EAST 197 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4470777,Van,Sedan,Sedan,, +11/02/2021,22:20,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",QUEENS BOULEVARD,39 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473463,Station Wagon/Sport Utility Vehicle,Bike,,, +10/13/2021,17:57,BROOKLYN,11230,40.6289305,-73.9713664,"(40.6289305, -73.9713664)",OCEAN PARKWAY,AVENUE H,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4466884,Sedan,Sedan,Sedan,Sedan, +10/11/2021,19:40,QUEENS,11434,40.6561603,-73.7673526,"(40.6561603, -73.7673526)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4466306,Box Truck,Sedan,,, +10/23/2021,16:52,QUEENS,11435,40.6940665,-73.8014174,"(40.6940665, -73.8014174)",SUTPHIN BOULEVARD,107 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470581,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/18/2021,11:00,QUEENS,11106,40.7558352,-73.9281534,"(40.7558352, -73.9281534)",36 AVENUE,33 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468643,Pick-up Truck,Taxi,,, +10/13/2021,15:00,,,40.6993917,-73.9193749,"(40.6993917, -73.9193749)",HARMAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467279,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/22/2021,4:11,BROOKLYN,11235,40.5863751,-73.947889,"(40.5863751, -73.947889)",VOORHIES AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4469664,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/12/2022,18:40,QUEENS,11355,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519448,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:40,BRONX,10466,40.8934115,-73.8573621,"(40.8934115, -73.8573621)",EAST 233 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470364,Sedan,,,, +11/01/2021,15:20,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473965,Bus,Sedan,,, +10/15/2021,14:11,MANHATTAN,10013,40.7169255,-74.0108329,"(40.7169255, -74.0108329)",GREENWICH STREET,READE STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4467597,Sedan,Sedan,,, +10/29/2021,22:44,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473954,Sedan,,,, +10/14/2021,20:33,MANHATTAN,10001,40.7517512,-74.0079259,"(40.7517512, -74.0079259)",WEST 26 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4467445,Sedan,Sedan,,, +10/16/2021,13:50,QUEENS,11362,40.7641484,-73.7262948,"(40.7641484, -73.7262948)",,,254-09 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467676,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,18:28,MANHATTAN,10029,40.7962162,-73.9496859,"(40.7962162, -73.9496859)",EAST 109 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466867,Bus,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,19:00,QUEENS,11373,40.7369995,-73.8752485,"(40.7369995, -73.8752485)",JUSTICE AVENUE,54 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469325,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,2:49,BROOKLYN,11208,40.6841902,-73.8702958,"(40.6841902, -73.8702958)",FULTON STREET,AUTUMN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470487,Sedan,,,, +10/18/2021,11:45,MANHATTAN,10016,40.7430998,-73.9740095,"(40.7430998, -73.9740095)",EAST 33 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468578,Bike,Sedan,,, +10/12/2021,19:48,,,40.8456427,-73.9020981,"(40.8456427, -73.9020981)",WEBSTER AVENUE,,,0,1,0,0,0,0,0,0,Obstruction/Debris,,,,,4469160,E-Bike,,,, +10/20/2021,19:00,BRONX,10454,40.8096976,-73.9156325,"(40.8096976, -73.9156325)",SAINT ANNS AVENUE,EAST 142 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4469434,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,8:49,QUEENS,11419,40.688224,-73.8361789,"(40.688224, -73.8361789)",,,97-26 108 STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4467644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,13:00,BROOKLYN,11236,40.637436,-73.90286,"(40.637436, -73.90286)",,,1345 REMSEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473709,Sedan,,,, +10/16/2021,6:30,STATEN ISLAND,10312,40.5364235,-74.1805817,"(40.5364235, -74.1805817)",,,1048 ANNADALE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469526,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,20:15,,,40.5919203,-73.994005,"(40.5919203, -73.994005)",SHORE PARKWAY,25 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469011,Garbage or Refuse,E-Scooter,,, +10/22/2021,22:17,BRONX,10472,40.8323542,-73.8621362,"(40.8323542, -73.8621362)",,,1264 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,4:17,BRONX,10454,40.809621,-73.9281351,"(40.809621, -73.9281351)",EAST 136 STREET,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4470613,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,11:30,,,,,,DELANCEY STREET,,,2,0,1,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4449182,Bike,,,, +10/21/2021,16:26,,,40.7112201,-73.7282618,"(40.7112201, -73.7282618)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469583,Pick-up Truck,Sedan,,, +10/17/2021,3:55,QUEENS,11418,40.6986342,-73.8332229,"(40.6986342, -73.8332229)",,,87-12 116 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467927,Sedan,,,, +10/19/2021,15:23,,,40.7959573,-73.9708287,"(40.7959573, -73.9708287)",BROADWAY,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4468872,Taxi,Sedan,,, +10/19/2021,7:40,BRONX,10466,40.8948215,-73.8541355,"(40.8948215, -73.8541355)",,,760 EAST 236 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4468793,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,0:00,BROOKLYN,11235,40.587447,-73.952127,"(40.587447, -73.952127)",,,2623 EAST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4470557,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,2:00,MANHATTAN,10031,40.8282811,-73.9486042,"(40.8282811, -73.9486042)",,,565 WEST 148 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466903,Sedan,,,, +09/25/2021,19:45,,,40.5692091,-74.1917808,"(40.5692091, -74.1917808)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4465743,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,18:01,BROOKLYN,11226,40.6444172,-73.9524111,"(40.6444172, -73.9524111)",,,229 VERONICA PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468060,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/14/2021,16:05,BRONX,10459,40.8209989,-73.8968919,"(40.8209989, -73.8968919)",INTERVALE AVENUE,EAST 163 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467353,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,18:40,BROOKLYN,11219,40.6376871,-73.9965194,"(40.6376871, -73.9965194)",49 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470611,Sedan,Sedan,,, +11/02/2021,4:20,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4473558,Box Truck,Tractor Truck Diesel,,, +10/14/2021,15:15,MANHATTAN,10029,40.7917574,-73.9482388,"(40.7917574, -73.9482388)",,,1405 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467578,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,17:40,BROOKLYN,11220,40.65104,-74.0110961,"(40.65104, -74.0110961)",3 AVENUE,44 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469398,E-Bike,Sedan,,, +10/14/2021,21:05,MANHATTAN,10002,40.7149447,-73.9766502,"(40.7149447, -73.9766502)",FDR DRIVE,DELANCEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4467198,E-Bike,,,, +10/07/2021,21:50,,,40.6390218,-74.022464,"(40.6390218, -74.022464)",BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4466467,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,22:45,MANHATTAN,10016,40.7464777,-73.9838968,"(40.7464777, -73.9838968)",MADISON AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469193,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,17:45,STATEN ISLAND,10307,40.5135884,-74.2475619,"(40.5135884, -74.2475619)",ARTHUR KILL ROAD,GIRARD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467298,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,12:35,,,40.727594,-73.985294,"(40.727594, -73.985294)",SAINT MARKS PLACE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466839,E-Scooter,,,, +10/12/2021,0:15,QUEENS,11355,40.7609587,-73.8076794,"(40.7609587, -73.8076794)",158 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468102,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,15:45,BROOKLYN,11226,40.6512859,-73.9550566,"(40.6512859, -73.9550566)",,,110 MARTENSE STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470257,Sedan,Bike,,, +10/15/2021,7:10,BROOKLYN,11212,40.6646204,-73.907767,"(40.6646204, -73.907767)",,,312 OSBORN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467808,Sedan,Flat Bed,,, +10/23/2021,14:35,BROOKLYN,11222,40.7232769,-73.9374098,"(40.7232769, -73.9374098)",ANTHONY STREET,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470431,Sedan,3-Door,,, +10/22/2021,15:20,BROOKLYN,11225,40.6662815,-73.9527249,"(40.6662815, -73.9527249)",,,240 CROWN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470121,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,18:45,BRONX,10469,40.8776194,-73.8548065,"(40.8776194, -73.8548065)",,,1036 EAST 215 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Speed,,,,4469558,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,7:55,,,40.6739993,-73.9603914,"(40.6739993, -73.9603914)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470347,Sedan,Bus,,, +10/23/2021,18:59,BRONX,10453,40.8540264,-73.9207729,"(40.8540264, -73.9207729)",,,301 WEST TREMONT AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470656,Sedan,,,, +10/22/2021,8:20,BRONX,10459,40.8339028,-73.8835048,"(40.8339028, -73.8835048)",EAST 173 STREET,WEST FARMS ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470787,Pick-up Truck,Sedan,,, +10/15/2021,14:07,MANHATTAN,10033,40.8501677,-73.9357542,"(40.8501677, -73.9357542)",BROADWAY,WEST 181 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4468825,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,3:15,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4473337,Sedan,Sedan,,, +10/15/2021,16:17,BROOKLYN,11220,40.6465545,-74.0157368,"(40.6465545, -74.0157368)",52 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467530,Sedan,Bike,,, +10/23/2021,22:00,MANHATTAN,10002,40.7180039,-73.986584,"(40.7180039, -73.986584)",DELANCEY STREET,SUFFOLK STREET,,3,0,2,0,0,0,1,0,Alcohol Involvement,,,,,4470365,Motorcycle,,,, +10/23/2021,18:55,MANHATTAN,10029,40.796797,-73.9471753,"(40.796797, -73.9471753)",MADISON AVENUE,EAST 111 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4470132,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,18:20,STATEN ISLAND,10304,40.625724,-74.0752109,"(40.625724, -74.0752109)",,,668 BAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469264,Sedan,,,, +10/19/2021,20:13,BROOKLYN,11226,40.6531902,-73.9662132,"(40.6531902, -73.9662132)",PARKSIDE AVENUE,PARADE PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469122,Sedan,Sedan,,, +10/21/2021,12:22,BRONX,10457,40.8438242,-73.9103666,"(40.8438242, -73.9103666)",SELWYN AVENUE,EAST 173 STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4469531,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,0:00,MANHATTAN,10036,40.7600741,-73.9961212,"(40.7600741, -73.9961212)",,,515 WEST 42 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4470814,Station Wagon/Sport Utility Vehicle,Bike,,, +10/18/2021,9:29,BROOKLYN,11217,40.6863108,-73.9744391,"(40.6863108, -73.9744391)",FULTON STREET,SOUTH PORTLAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469370,Bus,Sedan,,, +11/01/2021,10:26,,,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474258,Sedan,,,, +11/02/2021,16:00,QUEENS,11366,40.720604,-73.80697,"(40.720604, -73.80697)",,,160-20 UNION TURNPIKE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473624,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,9:47,BROOKLYN,11213,40.6781617,-73.9350461,"(40.6781617, -73.9350461)",,,38 HATTIE JONES PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469206,Sedan,,,, +10/18/2021,13:42,BROOKLYN,11217,40.6752035,-73.9729522,"(40.6752035, -73.9729522)",,,225 LINCOLN PLACE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4468692,Ambulance,Sedan,,, +10/19/2021,8:56,BROOKLYN,11218,40.6362865,-73.9713597,"(40.6362865, -73.9713597)",DITMAS AVENUE,EAST 7 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469075,Pick-up Truck,,,, +10/10/2021,14:16,,,40.8680396,-73.8790955,"(40.8680396, -73.8790955)",SOUTHERN BOULEVARD,MOSHOLU PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4466349,Pick-up Truck,Sedan,,, +10/15/2021,11:30,QUEENS,11004,40.737019,-73.7080393,"(40.737019, -73.7080393)",,,260-04 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467486,Sedan,Sedan,,, +10/12/2021,5:03,QUEENS,11368,40.7498691,-73.8627259,"(40.7498691, -73.8627259)",ROOSEVELT AVENUE,NATIONAL STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4467910,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/11/2021,15:36,,,40.665837,-73.9425282,"(40.665837, -73.9425282)",KINGSTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4466253,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/22/2021,13:50,,,40.6332231,-74.0151464,"(40.6332231, -74.0151464)",7 AVENUE,66 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469908,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,1:13,BROOKLYN,11236,40.6409422,-73.8961288,"(40.6409422, -73.8961288)",AVENUE K,EAST 98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468808,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,7:18,,,40.8507741,-73.9354247,"(40.8507741, -73.9354247)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,4:10,QUEENS,11423,40.714855,-73.76289,"(40.714855, -73.76289)",,,90-29 197 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474111,Sedan,Pick-up Truck,,, +10/19/2021,13:00,STATEN ISLAND,10312,40.5529198,-74.1930668,"(40.5529198, -74.1930668)",,,262 ARDEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469791,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,13:22,,,40.5722228,-74.1213878,"(40.5722228, -74.1213878)",AMBOY ROAD,BEACH AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4469940,Pick-up Truck,,,, +10/20/2021,17:30,,,40.5793999,-74.1694817,"(40.5793999, -74.1694817)",RICHMOND AVENUE,PLATINUM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469389,Sedan,,,, +10/10/2021,23:10,BROOKLYN,11229,40.605073,-73.9427678,"(40.605073, -73.9427678)",AVENUE S,NOSTRAND AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4466283,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,11:03,BRONX,10455,40.8134236,-73.8984246,"(40.8134236, -73.8984246)",,,705 BRUCKNER BOULEVARD,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4470067,Sedan,,,, +09/02/2021,20:00,BRONX,10457,40.851658,-73.8971,"(40.851658, -73.8971)",,,4381 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473971,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,23:22,BROOKLYN,11220,40.6474513,-74.0064495,"(40.6474513, -74.0064495)",,,535 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,20:43,QUEENS,11418,40.7076955,-73.8370428,"(40.7076955, -73.8370428)",,,116-40 PARK LANE SOUTH,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4466850,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,11:00,QUEENS,11413,40.6686054,-73.7504353,"(40.6686054, -73.7504353)",225 STREET,141 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4470332,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,14:00,QUEENS,11420,40.6660852,-73.8280776,"(40.6660852, -73.8280776)",NORTH CONDUIT AVENUE,114 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4470546,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,15:30,BROOKLYN,11225,40.6640852,-73.9493357,"(40.6640852, -73.9493357)",,,387 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4468041,Sedan,,,, +10/19/2021,3:50,STATEN ISLAND,10312,40.5409975,-74.1730253,"(40.5409975, -74.1730253)",SEGUINE PLACE,SNEDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469813,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/25/2021,14:40,,,40.8411547,-73.9319189,"(40.8411547, -73.9319189)",HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467364,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,0:01,,,40.57385,-74.105496,"(40.57385, -74.105496)",VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4470114,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,4:00,QUEENS,11368,40.7569342,-73.866598,"(40.7569342, -73.866598)",,,33-18 102 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4467867,Station Wagon/Sport Utility Vehicle,Convertible,Station Wagon/Sport Utility Vehicle,, +10/16/2021,1:30,QUEENS,11422,40.6652573,-73.7395512,"(40.6652573, -73.7395512)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4467546,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,1:41,BROOKLYN,11216,40.678723,-73.9529869,"(40.678723, -73.9529869)",ATLANTIC AVENUE,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4470524,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2022,15:25,MANHATTAN,10025,40.806133,-73.961555,"(40.806133, -73.961555)",WEST 115 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519591,Sedan,,,, +10/22/2021,18:22,,,40.8499963,-73.9386533,"(40.8499963, -73.9386533)",FORT WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470866,Sedan,Sedan,,, +10/18/2021,4:00,QUEENS,11369,40.7608275,-73.8747004,"(40.7608275, -73.8747004)",,,30-15 94 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,22:34,,,40.7262166,-73.83871,"(40.7262166, -73.83871)",69 ROAD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469623,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,13:53,,,40.6072833,-73.9442064,"(40.6072833, -73.9442064)",AVENUE R,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468238,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,2:19,,,40.6741611,-73.7275548,"(40.6741611, -73.7275548)",HOOK CREEK BOULEVARD,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470044,Sedan,,,, +10/21/2021,9:10,BROOKLYN,11214,40.6025308,-73.9929254,"(40.6025308, -73.9929254)",,,2201 85 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4469408,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,18:52,QUEENS,11434,40.6861824,-73.7914819,"(40.6861824, -73.7914819)",155 STREET,114 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470049,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,6:10,,,40.6328856,-73.9476978,"(40.6328856, -73.9476978)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4469338,Sedan,Moped,,, +10/21/2021,22:30,MANHATTAN,10036,40.7567104,-73.9864571,"(40.7567104, -73.9864571)",WEST 43 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4469621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,22:20,BROOKLYN,11234,40.6204631,-73.9281921,"(40.6204631, -73.9281921)",,,1650 EAST 49 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4469972,Station Wagon/Sport Utility Vehicle,,,, +10/09/2021,23:41,MANHATTAN,10036,40.7586947,-73.9853377,"(40.7586947, -73.9853377)",WEST 46 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4466312,Sedan,Pedicab,,, +10/22/2021,22:40,BRONX,10466,40.8838609,-73.8558854,"(40.8838609, -73.8558854)",EAST 222 STREET,BRONXWOOD AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470399,E-Scooter,,,, +09/17/2021,10:30,,,40.8294755,-73.9312624,"(40.8294755, -73.9312624)",MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4460970,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,13:20,BRONX,10457,40.8406623,-73.9042584,"(40.8406623, -73.9042584)",,,1600 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466856,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,21:20,,,,,,EAST 222 STREET,NEEDHAM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519003,Station Wagon/Sport Utility Vehicle,Ambulance,,, +10/19/2021,15:00,BROOKLYN,11208,40.6846859,-73.8773221,"(40.6846859, -73.8773221)",,,116 RICHMOND STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469238,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,15:50,BROOKLYN,11207,40.657864,-73.89227,"(40.657864, -73.89227)",LINDEN BOULEVARD,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4473582,Sedan,,,, +11/01/2021,9:55,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4473936,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,8:25,BRONX,10456,40.8328296,-73.9112848,"(40.8328296, -73.9112848)",EAST 168 STREET,TELLER AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4470193,Sedan,,,, +10/22/2021,13:50,MANHATTAN,10013,40.715743,-74.0016846,"(40.715743, -74.0016846)",HOGAN PLACE,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470240,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,10:50,,,40.8279035,-73.9121694,"(40.8279035, -73.9121694)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,23:10,BROOKLYN,11212,40.659204,-73.9099875,"(40.659204, -73.9099875)",NEWPORT STREET,BRISTOL STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4469768,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,17:50,QUEENS,11370,40.7628577,-73.888589,"(40.7628577, -73.888589)",25 AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470879,Sedan,,,, +10/13/2021,11:15,BRONX,10462,40.8542644,-73.8693786,"(40.8542644, -73.8693786)",BRONX PARK EAST,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4468803,Pick-up Truck,Bus,,, +10/22/2021,16:00,QUEENS,11692,40.5950018,-73.7953602,"(40.5950018, -73.7953602)",BEACH 66 STREET,THURSBY AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4469919,Sedan,Sedan,,, +10/15/2021,10:40,QUEENS,11355,40.7440404,-73.8180315,"(40.7440404, -73.8180315)",150 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467385,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,0:00,QUEENS,11377,40.7351608,-73.897833,"(40.7351608, -73.897833)",67 STREET,MAURICE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467744,Bike,,,, +10/21/2021,9:34,BRONX,10456,40.8332351,-73.9050394,"(40.8332351, -73.9050394)",,,3603 3 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470792,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,9:55,BROOKLYN,11238,40.6877861,-73.9704916,"(40.6877861, -73.9704916)",,,173 LAFAYETTE AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4469845,Taxi,Station Wagon/Sport Utility Vehicle,Van,, +10/18/2021,19:12,QUEENS,11375,40.7322776,-73.8492638,"(40.7322776, -73.8492638)",64 ROAD,108 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4469786,Sedan,Sedan,,, +10/14/2021,15:00,BROOKLYN,11233,40.6848799,-73.9231026,"(40.6848799, -73.9231026)",HALSEY STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Keep Right,,,,4468122,Bus,Bus,,, +11/02/2021,17:25,MANHATTAN,10011,40.7426,-73.997925,"(40.7426, -73.997925)",,,214 WEST 20 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473433,Pick-up Truck,Sedan,,, +11/02/2021,13:30,STATEN ISLAND,10301,40.644073,-74.077774,"(40.644073, -74.077774)",WALL STREET,STUYVESANT PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473792,Sedan,,,, +10/15/2021,20:20,MANHATTAN,10003,40.7290846,-73.9854122,"(40.7290846, -73.9854122)",,,228 EAST 10 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4467612,Sedan,Bike,,, +10/13/2021,16:20,MANHATTAN,10010,40.7395229,-73.9868503,"(40.7395229, -73.9868503)",PARK AVENUE SOUTH,EAST 22 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4468760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,19:34,BROOKLYN,11218,40.6344751,-73.9793734,"(40.6344751, -73.9793734)",,,1664 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466946,Station Wagon/Sport Utility Vehicle,,,, +10/20/2021,23:02,BRONX,10456,40.8325737,-73.9105155,"(40.8325737, -73.9105155)",EAST 168 STREET,CLAY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4469541,Station Wagon/Sport Utility Vehicle,,,, +10/10/2021,18:10,BRONX,10462,40.8327073,-73.8426489,"(40.8327073, -73.8426489)",,,1157 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,19:32,QUEENS,11377,40.7503922,-73.9052229,"(40.7503922, -73.9052229)",37 AVENUE,57 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466815,,,,, +10/18/2021,11:45,,,40.7446316,-73.9026255,"(40.7446316, -73.9026255)",WOODSIDE AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468471,Sedan,Sedan,,, +10/14/2021,7:18,,,40.6236805,-73.9977125,"(40.6236805, -73.9977125)",NEW UTRECHT AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467105,Bike,Pick-up Truck,,, +10/16/2021,12:00,,,40.5972673,-73.9986569,"(40.5972673, -73.9986569)",BAY PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467840,Sedan,,,, +08/21/2021,22:49,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449665,Sedan,,,, +10/18/2021,8:12,BROOKLYN,11201,40.6968391,-73.9870607,"(40.6968391, -73.9870607)",JAY STREET,CATHEDRAL PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468419,Sedan,Bike,,, +10/19/2021,12:40,BRONX,10474,40.8075087,-73.8835523,"(40.8075087, -73.8835523)",,,318 BRYANT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469021,Dump,Van,,, +10/15/2021,10:53,MANHATTAN,10035,40.8055312,-73.9397483,"(40.8055312, -73.9397483)",,,69 EAST 125 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4467338,Sedan,,,, +10/15/2021,12:50,BROOKLYN,11210,40.6194456,-73.9458096,"(40.6194456, -73.9458096)",,,2922 AVENUE M,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467761,Sedan,Sedan,,, +04/13/2022,10:20,MANHATTAN,10035,40.802876,-73.93598,"(40.802876, -73.93598)",,,200 EAST 124 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4518665,Sedan,Sedan,,, +10/14/2021,23:00,MANHATTAN,10037,40.8101754,-73.9374076,"(40.8101754, -73.9374076)",EAST 132 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4469384,Sedan,Sedan,,, +10/18/2021,10:30,QUEENS,11418,40.6972045,-73.8133341,"(40.6972045, -73.8133341)",VANWYCK EXPRESSWAY,94 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468771,Sedan,Van,,, +10/20/2021,16:00,,,40.7112201,-73.7282618,"(40.7112201, -73.7282618)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469257,Sedan,Sedan,,, +10/20/2021,13:02,BRONX,10457,40.8467636,-73.8901847,"(40.8467636, -73.8901847)",,,1993 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469488,Sedan,,,, +10/13/2021,10:30,MANHATTAN,10018,40.7587736,-73.9971887,"(40.7587736, -73.9971887)",,,507 WEST 40 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470809,Sedan,,,, +10/22/2021,17:10,,,40.8044551,-73.9118464,"(40.8044551, -73.9118464)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470636,Sedan,Sedan,,, +10/15/2021,12:50,MANHATTAN,10028,40.7795404,-73.9597725,"(40.7795404, -73.9597725)",EAST 84 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469090,Ambulance,Sedan,,, +10/13/2021,14:20,BROOKLYN,11249,40.7225346,-73.9593451,"(40.7225346, -73.9593451)",KENT AVENUE,NORTH 11 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4466877,Sedan,Bike,,, +10/23/2021,0:00,,,40.7539366,-73.8602884,"(40.7539366, -73.8602884)",108 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470208,Sedan,Sedan,,, +10/19/2021,18:20,BROOKLYN,11237,40.694886,-73.908381,"(40.694886, -73.908381)",,,1368 HANCOCK STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469796,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,10:15,BROOKLYN,11231,40.683914,-73.997406,"(40.683914, -73.997406)",,,373 CLINTON STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473513,Sedan,,,, +10/12/2021,22:45,BRONX,10452,40.8378751,-73.9196986,"(40.8378751, -73.9196986)",JEROME AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468275,Sedan,Pick-up Truck,,, +10/13/2021,14:09,MANHATTAN,10021,40.765868,-73.9574126,"(40.765868, -73.9574126)",EAST 69 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4467009,Sedan,Box Truck,,, +10/14/2021,21:28,,,40.615516,-74.1329664,"(40.615516, -74.1329664)",,,52 MARKHAM PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4468852,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,20:00,BROOKLYN,11236,40.6405699,-73.9139042,"(40.6405699, -73.9139042)",FARRAGUT ROAD,EAST 84 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4467523,Sedan,,,, +10/21/2021,18:29,MANHATTAN,10025,40.7958661,-73.9742575,"(40.7958661, -73.9742575)",,,323 WEST 96 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4469697,Sedan,Taxi,,, +10/22/2021,17:30,QUEENS,11109,40.7461632,-73.9566493,"(40.7461632, -73.9566493)",CENTER BOULEVARD,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469955,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,22:27,BROOKLYN,11207,40.6870802,-73.913891,"(40.6870802, -73.913891)",BUSHWICK AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4468675,Ambulance,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,0:00,,,40.8434552,-73.892867,"(40.8434552, -73.892867)",CROSS BRONX EXPRESSWAY,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469486,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/24/2021,12:00,QUEENS,11103,40.7637669,-73.9119451,"(40.7637669, -73.9119451)",,,28-24 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470683,Sedan,Sedan,,, +10/14/2021,8:19,MANHATTAN,10120,40.7499908,-73.9886538,"(40.7499908, -73.9886538)",,,112 WEST 34 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4467115,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,17:50,QUEENS,11361,40.7605342,-73.7734423,"(40.7605342, -73.7734423)",43 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468092,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,23:55,,,40.84989,-73.93332,"(40.84989, -73.93332)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449777,Sedan,Motorcycle,,, +10/09/2021,11:30,BROOKLYN,11213,40.6720783,-73.941946,"(40.6720783, -73.941946)",KINGSTON AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4466768,Sedan,Pick-up Truck,,, +10/19/2021,8:00,BROOKLYN,11211,40.71392,-73.9376718,"(40.71392, -73.9376718)",,,293 DEVOE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468724,Motorcycle,,,, +10/14/2021,16:30,QUEENS,11419,40.6856536,-73.8286257,"(40.6856536, -73.8286257)",114 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467215,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,17:55,BROOKLYN,11215,40.6715968,-73.9905275,"(40.6715968, -73.9905275)",,,453 3 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4469105,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,18:15,QUEENS,11370,40.7633472,-73.8839423,"(40.7633472, -73.8839423)",85 STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4469568,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,14:38,BROOKLYN,11226,40.638447,-73.95309,"(40.638447, -73.95309)",FOSTER AVENUE,EAST 25 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4473736,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +10/15/2021,21:25,STATEN ISLAND,10309,40.5117356,-74.2104339,"(40.5117356, -74.2104339)",HYLAN BOULEVARD,SHARROTT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Other Vehicular,,,,4469737,Motorcycle,Sedan,,, +10/15/2021,13:00,MANHATTAN,10128,40.7794367,-73.9475068,"(40.7794367, -73.9475068)",EAST 90 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468073,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,6:00,BRONX,10475,40.8661815,-73.8226314,"(40.8661815, -73.8226314)",,,4160 HUTCHINSON RIVER PARKWAY,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4467396,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,20:03,MANHATTAN,10032,40.8349361,-73.9402988,"(40.8349361, -73.9402988)",,,2027 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468115,Sedan,Bike,,, +10/16/2021,15:21,QUEENS,11101,40.7445614,-73.9307531,"(40.7445614, -73.9307531)",QUEENS BOULEVARD,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467661,Sedan,Sedan,,, +11/02/2021,18:20,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473583,Bike,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,14:53,MANHATTAN,10033,40.8473568,-73.9351714,"(40.8473568, -73.9351714)",WEST 178 STREET,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4468840,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,23:00,BROOKLYN,11249,40.7091925,-73.9684789,"(40.7091925, -73.9684789)",KENT AVENUE,SOUTH 9 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466845,Station Wagon/Sport Utility Vehicle,,,, +10/11/2021,23:32,,,40.8137456,-73.9313928,"(40.8137456, -73.9313928)",EAST 138 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,,,,4466327,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,11:00,BROOKLYN,11236,40.6280275,-73.8986563,"(40.6280275, -73.8986563)",SEAVIEW AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/13/2021,20:13,,,40.7015443,-73.9383643,"(40.7015443, -73.9383643)",GARDEN STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4466935,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +10/16/2021,8:15,,,40.5763924,-73.9868932,"(40.5763924, -73.9868932)",MERMAID AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467793,Sedan,GAS MO-PED,,, +10/18/2021,21:46,BROOKLYN,11207,40.6778685,-73.9033142,"(40.6778685, -73.9033142)",VAN SIDERIN AVENUE,FULTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468605,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,8:15,QUEENS,11105,40.7726568,-73.9009562,"(40.7726568, -73.9009562)",45 STREET,21 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4466977,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,9:06,,,40.798471,-73.9690036,"(40.798471, -73.9690036)",,,WEST 102 STREET,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4467143,Sedan,Sedan,,, +10/16/2021,13:20,QUEENS,11378,40.7231438,-73.8942654,"(40.7231438, -73.8942654)",CALDWELL AVENUE,BROWN PLACE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4467981,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,19:00,BRONX,10452,40.842098,-73.9262315,"(40.842098, -73.9262315)",WEST 170 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468406,Sedan,,,, +10/13/2021,23:02,BROOKLYN,11210,40.6313535,-73.9463597,"(40.6313535, -73.9463597)",,,1598 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4466888,Sedan,,,, +10/13/2021,11:44,BROOKLYN,11234,40.6237893,-73.9082017,"(40.6237893, -73.9082017)",ROYCE STREET,BERGEN COVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466776,Box Truck,Sedan,,, +10/20/2021,23:20,,,40.6796023,-73.8034831,"(40.6796023, -73.8034831)",116 AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470695,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,5:55,BROOKLYN,11235,40.5862603,-73.9489224,"(40.5862603, -73.9489224)",VOORHIES AVENUE,OCEAN AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4469305,Pick-up Truck,,,, +10/18/2021,8:00,QUEENS,11354,40.7737736,-73.8246766,"(40.7737736, -73.8246766)",PARSONS BOULEVARD,27 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468557,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,0:40,MANHATTAN,10037,40.8128153,-73.9418016,"(40.8128153, -73.9418016)",LENOX AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4468293,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/17/2021,22:10,,,40.6759124,-73.8949099,"(40.6759124, -73.8949099)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468179,Sedan,,,, +10/24/2021,22:15,BROOKLYN,11212,40.6613694,-73.9193349,"(40.6613694, -73.9193349)",,,9720 KINGS HIGHWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4470618,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,8:51,MANHATTAN,10025,40.8002297,-73.9594853,"(40.8002297, -73.9594853)",,,12 WEST 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469423,Sedan,Box Truck,,, +10/19/2021,12:49,BRONX,10467,40.8612759,-73.8636528,"(40.8612759, -73.8636528)",WARING AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468867,Sedan,,,, +10/15/2021,8:05,BRONX,10467,40.8786453,-73.871598,"(40.8786453, -73.871598)",WEBSTER AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4467402,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,12:35,STATEN ISLAND,10314,40.6118085,-74.121222,"(40.6118085, -74.121222)",WINDSOR ROAD,WINTHROP PLACE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4468788,,,,, +10/20/2021,13:40,BROOKLYN,11220,40.6358672,-74.0055846,"(40.6358672, -74.0055846)",9 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4469189,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/14/2021,13:40,STATEN ISLAND,10305,40.5830447,-74.0961705,"(40.5830447, -74.0961705)",HYLAN BOULEVARD,SEAVER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467179,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,18:15,MANHATTAN,10023,40.771053,-73.98715,"(40.771053, -73.98715)",WEST 60 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474159,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,8:00,BRONX,10473,40.8229458,-73.8681791,"(40.8229458, -73.8681791)",STORY AVENUE,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,22:00,,,40.7604221,-73.9288487,"(40.7604221, -73.9288487)",34 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467878,Sedan,,,, +10/15/2021,8:05,BROOKLYN,11234,40.633209,-73.9225857,"(40.633209, -73.9225857)",EAST 56 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467311,Sedan,Tow Truck / Wrecker,,, +10/15/2021,15:24,,,40.7038568,-73.9185039,"(40.7038568, -73.9185039)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469026,Bus,Sedan,,, +10/18/2021,4:45,BROOKLYN,11239,40.6486415,-73.8830711,"(40.6486415, -73.8830711)",,,1310 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468484,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,9:45,QUEENS,11367,40.7381361,-73.8125094,"(40.7381361, -73.8125094)",,,61-18 156 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469605,Sedan,,,, +10/14/2021,18:52,MANHATTAN,10065,40.7624884,-73.9629739,"(40.7624884, -73.9629739)",2 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467318,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,12:03,,,,,,JEWEL AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473390,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/14/2021,16:36,BROOKLYN,11236,40.6283543,-73.9023447,"(40.6283543, -73.9023447)",,,46 PAERDEGAT 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4467202,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,18:35,MANHATTAN,10034,40.8693189,-73.91711,"(40.8693189, -73.91711)",,,5009 BROADWAY,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469117,Bike,Sedan,,, +10/18/2021,11:30,QUEENS,11368,40.7495815,-73.8698426,"(40.7495815, -73.8698426)",,,37-76 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468860,Sedan,,,, +10/15/2021,17:25,,,40.7959573,-73.9708287,"(40.7959573, -73.9708287)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4467583,Sedan,E-Bike,Sedan,, +10/23/2021,11:15,BROOKLYN,11217,40.6830499,-73.9737625,"(40.6830499, -73.9737625)",ATLANTIC AVENUE,SOUTH PORTLAND AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4470569,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,15:00,STATEN ISLAND,10304,40.6066661,-74.0825443,"(40.6066661, -74.0825443)",NARROWS ROAD NORTH,MOSEL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4468656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,8:13,BROOKLYN,11206,40.7041489,-73.9463747,"(40.7041489, -73.9463747)",,,31 LEONARD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468958,Station Wagon/Sport Utility Vehicle,,,, +10/23/2021,20:00,BROOKLYN,11236,40.6386809,-73.9168107,"(40.6386809, -73.9168107)",FARRAGUT ROAD,EAST 80 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4470148,Sedan,Bike,,, +08/14/2021,16:54,BRONX,10456,40.827076,-73.90749,"(40.827076, -73.90749)",,,3368 3 AVENUE,4,0,0,0,0,0,4,0,Passing or Lane Usage Improper,Other Vehicular,Unspecified,Unspecified,,4446930,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/19/2021,4:50,MANHATTAN,10024,40.78702,-73.968094,"(40.78702, -73.968094)",,,285 CENTRAL PARK WEST,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4448491,Sedan,Sedan,,, +10/21/2021,19:20,QUEENS,11414,40.6651292,-73.8448522,"(40.6651292, -73.8448522)",SHORE PARKWAY,89 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469633,Sedan,,,, +10/14/2021,20:30,QUEENS,11385,40.7062217,-73.9158997,"(40.7062217, -73.9158997)",,,438 STOCKHOLM STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4467434,Sedan,,,, +10/13/2021,17:50,QUEENS,11373,40.7468287,-73.883652,"(40.7468287, -73.883652)",,,40-25 82 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4469668,Bike,,,, +10/21/2021,9:53,BRONX,10474,40.8172447,-73.8831342,"(40.8172447, -73.8831342)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469473,Box Truck,Box Truck,,, +10/18/2021,15:45,BROOKLYN,11201,40.6926785,-73.9861168,"(40.6926785, -73.9861168)",,,111 LAWRENCE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4468539,Station Wagon/Sport Utility Vehicle,,,, +10/17/2021,3:00,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",23 street,23 street and newtown avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470745,Sedan,,,, +10/13/2021,14:20,QUEENS,11385,40.7035375,-73.9091362,"(40.7035375, -73.9091362)",,,652 SENECA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469421,Sedan,Tractor Truck Diesel,,, +10/16/2021,11:50,BRONX,10459,40.8231352,-73.8948833,"(40.8231352, -73.8948833)",WESTCHESTER AVENUE,TIFFANY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4467633,Sedan,Bike,,, +10/18/2021,6:42,BRONX,10457,40.8449733,-73.9024678,"(40.8449733, -73.9024678)",ITTNER PLACE,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468318,Sedan,,,, +10/22/2021,9:25,MANHATTAN,10017,40.7526925,-73.9730457,"(40.7526925, -73.9730457)",3 AVENUE,EAST 45 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4469880,Sedan,,,, +11/02/2021,13:35,MANHATTAN,10115,40.810753,-73.96443,"(40.810753, -73.96443)",RIVERSIDE DRIVE,WEST 119 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473884,Sedan,Sedan,,, +10/13/2021,22:00,QUEENS,11691,40.6030815,-73.7488228,"(40.6030815, -73.7488228)",,,10-12 NAMEOKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467068,Sedan,,,, +10/18/2021,15:50,BRONX,10458,40.8742704,-73.8847756,"(40.8742704, -73.8847756)",EAST 204 STREET,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468521,Sedan,,,, +11/02/2021,12:30,MANHATTAN,10019,40.76814,-73.98622,"(40.76814, -73.98622)",,,405 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473527,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,6:35,MANHATTAN,10011,40.7436399,-73.9968689,"(40.7436399, -73.9968689)",,,218 WEST 22 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4470835,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/23/2021,11:00,BRONX,10462,40.8544106,-73.862933,"(40.8544106, -73.862933)",LYDIG AVENUE,MATTHEWS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4470647,Taxi,Sedan,Taxi,, +10/16/2021,6:50,QUEENS,11692,40.5926584,-73.7966137,"(40.5926584, -73.7966137)",,,67-11 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,14:30,QUEENS,11357,40.7804168,-73.803135,"(40.7804168, -73.803135)",160 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4470760,Sedan,Pick-up Truck,,, +10/15/2021,11:16,,,40.6711066,-73.8814331,"(40.6711066, -73.8814331)",jackie robinson pkwy,jamaica avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467407,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,17:53,,,40.7060869,-73.8084942,"(40.7060869, -73.8084942)",HILLSIDE AVENUE,148 STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4470272,Sedan,,,, +10/18/2021,15:02,BRONX,10465,40.8256025,-73.8176567,"(40.8256025, -73.8176567)",SCHLEY AVENUE,HOLLYWOOD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4468639,Sedan,,,, +10/21/2021,22:26,,,40.6327099,-74.1351702,"(40.6327099, -74.1351702)",,,131 PALMER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469828,Sedan,Sedan,Sedan,, +10/23/2021,8:30,,,40.6745992,-73.9388939,"(40.6745992, -73.9388939)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4470250,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,16:30,BROOKLYN,11222,40.7281455,-73.9491599,"(40.7281455, -73.9491599)",,,176 NEWEL STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4469551,Sedan,Box Truck,,, +11/02/2021,10:45,,,40.5177,-74.24055,"(40.5177, -74.24055)",ELLIS STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4473608,Tractor Truck Diesel,,,, +10/16/2021,4:50,,,40.7510224,-73.9403938,"(40.7510224, -73.9403938)",QUEENS PLAZA,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,23:20,BROOKLYN,11225,40.659374,-73.951126,"(40.659374, -73.951126)",,,299 RUTLAND ROAD,1,0,0,0,0,0,1,0,View Obstructed/Limited,Backing Unsafely,,,,4449174,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:50,BROOKLYN,11226,40.648983,-73.94841,"(40.648983, -73.94841)",SNYDER AVENUE,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449429,Sedan,Sedan,,, +08/21/2021,3:03,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449301,Sedan,,,, +08/21/2021,23:15,MANHATTAN,10128,40.78389,-73.95662,"(40.78389, -73.95662)",,,1270 MADISON AVENUE,0,0,0,0,0,0,0,0,,,,,,4449811,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,1:56,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",EAST 42 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4448957,Armored Truck,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,2:30,QUEENS,11420,40.67422,-73.82171,"(40.67422, -73.82171)",,,130-24 117 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449264,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,4:00,,,40.73135,-73.98256,"(40.73135, -73.98256)",1 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449581,Station Wagon/Sport Utility Vehicle,Bike,,, +08/21/2021,6:00,QUEENS,11368,40.74099,-73.86563,"(40.74099, -73.86563)",,,51-18 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449344,Sedan,Sedan,,, +08/21/2021,20:00,BRONX,10454,40.806774,-73.919815,"(40.806774, -73.919815)",,,205 BROOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449749,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,15:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449864,Sedan,Carry All,,, +08/21/2021,16:35,,,40.77146,-73.994354,"(40.77146, -73.994354)",WEST 57 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4449957,Sedan,Sedan,,, +08/21/2021,4:48,BROOKLYN,11233,40.67922,-73.90405,"(40.67922, -73.90405)",BROADWAY,CONWAY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Speed,Unspecified,,,4448997,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,11:20,MANHATTAN,10029,40.7905,-73.94755,"(40.7905, -73.94755)",,,1635 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449359,Box Truck,Sedan,,, +08/21/2021,8:30,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449805,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,11:19,,,,,,CYPRESS HILLS STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,16:46,BRONX,10461,40.83751,-73.83446,"(40.83751, -73.83446)",,,3144 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Fell Asleep,Unspecified,,,,4449703,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,9:25,QUEENS,11362,40.763878,-73.72672,"(40.763878, -73.72672)",,,254-41 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449021,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,20:33,QUEENS,11377,40.73698,-73.89417,"(40.73698, -73.89417)",70 STREET,GARFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449144,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:30,BROOKLYN,11208,40.67386,-73.88259,"(40.67386, -73.88259)",PITKIN AVENUE,LINWOOD STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4449437,Sedan,E-Bike,,, +08/21/2021,21:08,,,40.828068,-73.87298,"(40.828068, -73.87298)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449461,Sedan,,,, +08/21/2021,20:30,QUEENS,11434,40.684277,-73.78302,"(40.684277, -73.78302)",BREWER BOULEVARD,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4449593,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/21/2021,19:35,STATEN ISLAND,10308,40.54615,-74.15449,"(40.54615, -74.15449)",OAKDALE STREET,ACACIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449644,Sedan,Sedan,,, +08/21/2021,20:16,BROOKLYN,11214,40.59419,-73.99771,"(40.59419, -73.99771)",,,1684 SHORE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449121,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,12:04,QUEENS,11385,40.705906,-73.91048,"(40.705906, -73.91048)",ONDERDONK AVENUE,BLEECKER STREET,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4449068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,21:15,BROOKLYN,11211,40.709984,-73.95856,"(40.709984, -73.95856)",,,201 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4449907,Sedan,Sedan,,, +08/21/2021,16:30,BRONX,10459,40.829422,-73.897575,"(40.829422, -73.897575)",PROSPECT AVENUE,EAST 169 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449946,Bike,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,0:00,QUEENS,11429,40.708603,-73.73952,"(40.708603, -73.73952)",110 AVENUE,MONTEREY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449099,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/21/2021,11:15,QUEENS,11379,40.717827,-73.88669,"(40.717827, -73.88669)",,,62-38 69 LANE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4449069,Box Truck,,,, +08/14/2021,11:00,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449822,Van,Flat Rack,,, +08/21/2021,15:37,,,40.729294,-73.85224,"(40.729294, -73.85224)",102 STREET,66 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449134,Sedan,Sedan,,, +08/21/2021,8:30,QUEENS,11040,40.741905,-73.700966,"(40.741905, -73.700966)",,,82-54 LANGDALE STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4449036,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,22:00,BROOKLYN,11219,40.632435,-73.998405,"(40.632435, -73.998405)",12 AVENUE,56 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449640,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,20:35,QUEENS,11418,40.696415,-73.84088,"(40.696415, -73.84088)",,,86-56 107 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4449332,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/21/2021,20:26,BROOKLYN,11221,40.69126,-73.93925,"(40.69126, -73.93925)",,,830 LAFAYETTE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4449387,Sedan,,,, +08/21/2021,14:44,,,40.63669,-73.96452,"(40.63669, -73.96452)",DITMAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449687,Sedan,,,, +08/21/2021,0:10,,,40.8681,-73.90836,"(40.8681, -73.90836)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unsafe Speed,,,,4449487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:05,,,40.81967,-73.94424,"(40.81967, -73.94424)",8 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4449660,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,11:35,MANHATTAN,10023,40.774906,-73.97692,"(40.774906, -73.97692)",CENTRAL PARK WEST,WEST 70 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449057,Sedan,Tow Truck / Wrecker,,, +08/21/2021,9:30,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",MONTROSE AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449127,Sedan,,,, +08/21/2021,18:40,QUEENS,11417,40.6723,-73.84211,"(40.6723, -73.84211)",PITKIN AVENUE,94 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4449273,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/21/2021,17:40,,,40.68963,-73.98575,"(40.68963, -73.98575)",HOYT STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449893,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,9:00,BRONX,10472,40.83411,-73.86336,"(40.83411, -73.86336)",,,1271 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449458,Sedan,,,, +07/22/2021,12:00,QUEENS,11435,40.70254,-73.813995,"(40.70254, -73.813995)",JAMAICA AVENUE,138 PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449760,Sedan,Bike,,, +08/21/2021,22:43,BROOKLYN,11206,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,FLUSHING AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449908,,,,, +08/21/2021,23:50,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,13:50,STATEN ISLAND,10309,40.52865,-74.216835,"(40.52865, -74.216835)",DRUMGOOLE ROAD WEST,BLOOMINGDALE ROAD,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4449208,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,13:00,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449826,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,13:28,BROOKLYN,11234,40.61258,-73.9183,"(40.61258, -73.9183)",AVENUE U,PEARSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449080,Sedan,E-Bike,,, +08/21/2021,11:45,BRONX,10454,40.812386,-73.92469,"(40.812386, -73.92469)",3 AVENUE,EAST 141 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449748,Sedan,E-Scooter,,, +08/21/2021,12:45,MANHATTAN,10032,40.832237,-73.942505,"(40.832237, -73.942505)",AMSTERDAM AVENUE,WEST 156 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449538,Station Wagon/Sport Utility Vehicle,Moped,,, +08/21/2021,16:30,MANHATTAN,10022,40.759617,-73.961975,"(40.759617, -73.961975)",1 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449626,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,19:00,,,40.855137,-73.90836,"(40.855137, -73.90836)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449739,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,10:20,MANHATTAN,10029,40.786808,-73.94524,"(40.786808, -73.94524)",2 AVENUE,EAST 100 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4449818,Sedan,Tractor Truck Diesel,,, +08/21/2021,20:00,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449322,Sedan,,,, +08/07/2021,23:00,,,40.860527,-73.91939,"(40.860527, -73.91939)",WEST 202 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449784,Sedan,Bus,,, +08/21/2021,23:40,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449362,Sedan,,,, +08/21/2021,1:23,,,40.85223,-73.87141,"(40.85223, -73.87141)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4449233,Sedan,,,, +08/21/2021,15:15,BROOKLYN,11208,40.67567,-73.87008,"(40.67567, -73.87008)",PITKIN AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449445,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,0:40,BROOKLYN,11232,40.654953,-74.00703,"(40.654953, -74.00703)",3 AVENUE,37 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449875,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,23:45,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449150,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/08/2021,3:00,BROOKLYN,11212,40.661003,-73.904655,"(40.661003, -73.904655)",,,720 STONE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449753,Sedan,,,, +08/21/2021,14:55,,,40.608253,-74.08879,"(40.608253, -74.08879)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449923,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/21/2021,20:52,BROOKLYN,11221,40.68949,-73.92207,"(40.68949, -73.92207)",BROADWAY,GATES AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449405,Bike,,,, +08/21/2021,1:11,QUEENS,11420,0,0,"(0.0, 0.0)",,,119-02 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449266,Sedan,Sedan,,, +08/21/2021,6:17,QUEENS,11432,40.72003,-73.78607,"(40.72003, -73.78607)",GRAND CENTRAL PARKWAY,ABERDEEN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449408,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,21:50,BROOKLYN,11210,40.62731,-73.941826,"(40.62731, -73.941826)",FLATBUSH AVENUE,AVENUE J,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Pavement Slippery,,,,4449349,Sedan,Sedan,,, +08/07/2021,11:53,MANHATTAN,10018,40.75892,-73.999695,"(40.75892, -73.999695)",WEST 39 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449797,Sedan,Pick-up Truck,,, +08/21/2021,4:00,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4448968,Sedan,Sedan,Sedan,Sedan, +08/19/2021,19:48,QUEENS,11694,40.57896,-73.83976,"(40.57896, -73.83976)",ROCKAWAY BEACH BOULEVARD,BEACH 119 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449832,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,14:25,BRONX,10475,40.884945,-73.83039,"(40.884945, -73.83039)",,,4038 BOSTON ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449196,Dump,Sedan,,, +08/21/2021,23:00,BRONX,10453,40.851902,-73.91645,"(40.851902, -73.91645)",WEST TREMONT AVENUE,MONTGOMERY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449711,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,15:29,MANHATTAN,10019,40.765858,-73.98874,"(40.765858, -73.98874)",,,437 WEST 53 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4449956,Sedan,,,, +07/31/2021,23:51,,,40.700577,-73.98483,"(40.700577, -73.98483)",BRIDGE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449922,Sedan,,,, +08/15/2021,4:35,BRONX,10465,40.823658,-73.836426,"(40.823658, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4449768,Sedan,,,, +08/21/2021,0:50,,,40.70153,-73.92314,"(40.70153, -73.92314)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4448998,Sedan,,,, +08/12/2021,23:40,,,40.6884,-73.95118,"(40.6884, -73.95118)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449807,Sedan,,,, +08/21/2021,20:51,,,40.763645,-73.790276,"(40.763645, -73.790276)",192 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4449149,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,13:00,BROOKLYN,11234,40.610813,-73.92756,"(40.610813, -73.92756)",,,2049 KIMBALL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449351,Sedan,,,, +08/21/2021,19:11,QUEENS,11385,40.701714,-73.87901,"(40.701714, -73.87901)",,,73-17 71 PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449853,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/21/2021,18:20,BRONX,10469,40.87176,-73.848366,"(40.87176, -73.848366)",,,1311 BURKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449244,Sedan,,,, +08/21/2021,17:59,BRONX,10461,40.837177,-73.83203,"(40.837177, -73.83203)",WATERBURY AVENUE,MAYFLOWER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4449702,Bike,,,, +08/21/2021,0:27,BRONX,10457,40.8477,-73.90097,"(40.8477, -73.90097)",EAST TREMONT AVENUE,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449752,Sedan,,,, +08/21/2021,11:30,BROOKLYN,11220,40.64647,-74.01258,"(40.64647, -74.01258)",50 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449302,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/17/2021,22:15,,,40.76531,-73.99134,"(40.76531, -73.99134)",10 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449947,Sedan,Sedan,,, +08/21/2021,11:00,BRONX,10459,40.820988,-73.89491,"(40.820988, -73.89491)",EAST 163 STREET,TIFFANY STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449825,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/21/2021,17:08,BROOKLYN,11234,40.635216,-73.924736,"(40.635216, -73.924736)",,,908 EAST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449079,Station Wagon/Sport Utility Vehicle,Van,,, +08/21/2021,15:15,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",RALPH AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449109,Sedan,Sedan,,, +08/21/2021,17:00,QUEENS,11358,40.761345,-73.80009,"(40.761345, -73.80009)",166 STREET,STATION ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449511,Sedan,,,, +08/10/2021,13:40,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449927,Sedan,,,, +08/21/2021,22:00,BROOKLYN,11203,40.65864,-73.93407,"(40.65864, -73.93407)",,,624 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449175,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/21/2021,23:30,,,40.694115,-73.85237,"(40.694115, -73.85237)",86 DRIVE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4449675,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,18:30,,,,,,62 AVENUE,HIRACE HARDING EXPRESSWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4449862,Sedan,Bike,,, +08/21/2021,12:11,,,40.847908,-73.87121,"(40.847908, -73.87121)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449058,Pick-up Truck,,,, +08/21/2021,17:48,BROOKLYN,11210,40.635654,-73.94605,"(40.635654, -73.94605)",,,624 EAST 32 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4449426,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,20:00,MANHATTAN,10032,40.845367,-73.94053,"(40.845367, -73.94053)",FORT WASHINGTON AVENUE,WEST 173 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4449540,Station Wagon/Sport Utility Vehicle,Bike,,, +08/21/2021,17:40,QUEENS,11362,40.749245,-73.73831,"(40.749245, -73.73831)",DOUGLASTON PARKWAY,70 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449088,Sedan,Sedan,,, +08/21/2021,20:10,QUEENS,11420,40.679043,-73.805435,"(40.679043, -73.805435)",135 STREET,116 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4449269,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,20:00,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449761,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/09/2021,16:46,BROOKLYN,11212,40.65474,-73.910835,"(40.65474, -73.910835)",,,621 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449817,Sedan,,,, +08/21/2021,19:25,BROOKLYN,11226,40.649082,-73.96399,"(40.649082, -73.96399)",CHURCH AVENUE,EAST 17 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449690,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,19:58,,,40.714485,-74.013596,"(40.714485, -74.013596)",WEST STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449159,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/21/2021,20:33,BRONX,10458,40.85365,-73.882744,"(40.85365, -73.882744)",EAST 187 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449280,Sedan,,,, +08/08/2021,7:30,BROOKLYN,11201,,,,DUFFIELD STREET,METROTECH ROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449894,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,9:20,BROOKLYN,11212,40.666046,-73.91762,"(40.666046, -73.91762)",LEGION STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449756,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,7:00,,,,,,CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449484,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/21/2021,5:36,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449014,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,18:42,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449656,Sedan,Sedan,,, +08/21/2021,18:45,QUEENS,11374,40.730957,-73.85626,"(40.730957, -73.85626)",64 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449135,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,22:30,,,,,,,,576 MAIN STREET,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4449573,Sedan,,,, +08/21/2021,12:53,,,40.6468,-73.88496,"(40.6468, -73.88496)",TWIN PINES DRIVE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449435,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,21:25,QUEENS,11421,40.685642,-73.8652,"(40.685642, -73.8652)",,,91-28 75 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4449328,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/14/2021,14:40,BRONX,10459,40.82145,-73.898186,"(40.82145, -73.898186)",,,917 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449821,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,19:08,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",CENTRAL PARK WEST,WEST 65 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4449384,SCOOTER,Taxi,,, +07/30/2021,11:30,,,40.668396,-73.919426,"(40.668396, -73.919426)",,,EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Tow Hitch Defective,Unspecified,,,,4449757,Pick-up Truck,,,, +08/21/2021,3:20,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4449205,Ambulance,,,, +08/21/2021,8:47,BROOKLYN,11230,40.631374,-73.95965,"(40.631374, -73.95965)",,,795 EAST 18 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449683,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,16:55,,,,,,,,Glenwood and 78 street,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4449740,Sedan,Sedan,Pick-up Truck,Sedan,Bike +08/21/2021,3:11,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4449279,Sedan,Sedan,,, +08/21/2021,22:00,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",116 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449592,Sedan,,,, +08/21/2021,4:27,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449034,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,20:30,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449395,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,14:25,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449117,Sedan,Sedan,,, +08/21/2021,5:50,BROOKLYN,11203,40.644966,-73.93258,"(40.644966, -73.93258)",,,1143 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449422,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,0:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,2,0,0,0,0,0,2,0,Following Too Closely,Alcohol Involvement,Unspecified,,,4449184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/21/2021,10:30,MANHATTAN,10024,40.782806,-73.97962,"(40.782806, -73.97962)",,,219 WEST 78 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449393,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/20/2021,15:45,,,40.850773,-73.93543,"(40.850773, -73.93543)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,22:20,,,40.863785,-73.90028,"(40.863785, -73.90028)",JEROME AVENUE,,,2,0,0,0,0,0,2,0,Glare,,,,,4449319,Sedan,,,, +08/21/2021,15:10,BROOKLYN,11233,40.676395,-73.91187,"(40.676395, -73.91187)",ATLANTIC AVENUE,GUNTHER PLACE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449798,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,2:55,MANHATTAN,10017,40.753624,-73.96944,"(40.753624, -73.96944)",2 AVENUE,EAST 48 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448969,Sedan,Sedan,,, +08/14/2021,13:51,BRONX,10460,40.840866,-73.87281,"(40.840866, -73.87281)",EAST 180 STREET,MORRIS PARK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449834,Ambulance,Sedan,,, +08/21/2021,18:08,BRONX,10457,40.83876,-73.90157,"(40.83876, -73.90157)",,,1570 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4449709,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/18/2021,23:10,,,40.700104,-73.94726,"(40.700104, -73.94726)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4449936,Sedan,Bike,,, +08/21/2021,1:00,MANHATTAN,10036,40.756714,-73.984566,"(40.756714, -73.984566)",,,152 WEST 44 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449541,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,9:50,QUEENS,11377,40.736965,-73.897766,"(40.736965, -73.897766)",67 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449086,Sedan,Dump,,, +08/21/2021,15:40,QUEENS,11413,40.661697,-73.75381,"(40.661697, -73.75381)",145 ROAD,226 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4449092,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,20:40,,,40.65729,-73.880005,"(40.65729, -73.880005)",COZINE AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4449452,Sedan,,,, +08/20/2021,13:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449831,Sedan,,,, +08/21/2021,12:20,BRONX,10464,40.85362,-73.79021,"(40.85362, -73.79021)",,,550 CITY ISLAND AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4449126,Bike,,,, +08/21/2021,0:00,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449515,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,20:02,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",39 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449873,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,19:30,,,40.714054,-73.9902,"(40.714054, -73.9902)",RUTGERS STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4449158,Station Wagon/Sport Utility Vehicle,Bus,,, +08/21/2021,3:30,MANHATTAN,10065,40.763363,-73.95925,"(40.763363, -73.95925)",EAST 65 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449629,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,9:00,BROOKLYN,11219,40.632107,-74.00703,"(40.632107, -74.00703)",FORT HAMILTON PARKWAY,62 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4449926,Sedan,Bike,,, +08/21/2021,12:45,QUEENS,11364,40.749256,-73.75595,"(40.749256, -73.75595)",,,221-18 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,1:46,MANHATTAN,10017,40.75348,-73.980896,"(40.75348, -73.980896)",5 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4449453,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/21/2021,13:45,,,,,,MEEKER AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449597,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,7:58,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",REMSEN AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:16,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4449123,Sedan,Sedan,,, +08/13/2021,18:46,BROOKLYN,11212,40.667423,-73.90824,"(40.667423, -73.90824)",SUTTER AVENUE,OSBORN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449900,Sedan,Sedan,,, +08/15/2021,21:00,,,40.61427,-74.156654,"(40.61427, -74.156654)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449921,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,0:00,BROOKLYN,11233,40.67055,-73.91738,"(40.67055, -73.91738)",,,1521 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449148,Sedan,,,, +08/21/2021,21:09,BROOKLYN,11234,40.620934,-73.920296,"(40.620934, -73.920296)",,,1329 EAST 57 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4449352,Sedan,,,, +08/21/2021,21:15,QUEENS,11422,40.680164,-73.733154,"(40.680164, -73.733154)",130 AVENUE,234 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449878,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,17:30,,,40.82439,-73.8363,"(40.82439, -73.8363)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449705,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/21/2021,7:40,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4449824,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,10:45,BROOKLYN,11234,40.61247,-73.92941,"(40.61247, -73.92941)",,,1947 KIMBALL STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449078,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,12:15,BRONX,10458,40.854176,-73.88588,"(40.854176, -73.88588)",,,660 CRESCENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449178,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +08/21/2021,10:40,MANHATTAN,10035,40.799576,-73.935905,"(40.799576, -73.935905)",2 AVENUE,EAST 120 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449030,Sedan,Bike,,, +08/21/2021,18:20,QUEENS,11374,40.730957,-73.85626,"(40.730957, -73.85626)",64 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4449136,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/21/2021,17:40,BROOKLYN,11207,40.675888,-73.88649,"(40.675888, -73.88649)",LIBERTY AVENUE,WARWICK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449441,Sedan,Pick-up Truck,,, +08/21/2021,14:24,BROOKLYN,11208,40.670933,-73.867004,"(40.670933, -73.867004)",,,726 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449130,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,0:59,,,40.850906,-73.93829,"(40.850906, -73.93829)",WEST 181 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449779,Sedan,,,, +08/21/2021,10:20,MANHATTAN,10128,40.77936,-73.953156,"(40.77936, -73.953156)",,,201 EAST 87 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449632,Sedan,Sedan,,, +08/21/2021,20:46,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",LEFFERTS BOULEVARD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449260,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,23:00,QUEENS,11355,40.743565,-73.82966,"(40.743565, -73.82966)",60 AVENUE,136 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449508,Sedan,,,, +08/21/2021,23:00,MANHATTAN,10014,40.735306,-74.01011,"(40.735306, -74.01011)",WEST STREET,WEST 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,12:10,,,40.679363,-73.7973,"(40.679363, -73.7973)",FOCH BOULEVARD,,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4449591,Sedan,Sedan,,, +08/21/2021,14:10,,,40.696213,-73.97528,"(40.696213, -73.97528)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,12:47,,,40.855286,-73.89809,"(40.855286, -73.89809)",TIEBOUT AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449751,Station Wagon/Sport Utility Vehicle,van truck,,, +08/19/2021,19:00,QUEENS,11385,40.699883,-73.90831,"(40.699883, -73.90831)",MADISON STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449861,Sedan,Sedan,,, +08/21/2021,17:48,BRONX,10467,40.869473,-73.86622,"(40.869473, -73.86622)",WILLIAMSBRIDGE ROAD,CRUGER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4449230,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,15:40,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4449763,Sedan,Sedan,Pick-up Truck,, +08/21/2021,21:29,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,CONNER STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449202,Sedan,Sedan,,, +08/21/2021,0:05,,,40.667015,-73.9313,"(40.667015, -73.9313)",PRESIDENT STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449008,Motorcycle,Sedan,,, +08/20/2021,15:25,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4449799,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/21/2021,0:00,BROOKLYN,11233,40.673553,-73.91062,"(40.673553, -73.91062)",,,1747 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449112,Sedan,Sedan,,, +08/21/2021,7:40,,,40.839615,-73.88443,"(40.839615, -73.88443)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4449288,Sedan,Sedan,Sedan,, +08/08/2021,16:04,MANHATTAN,10040,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,NAGLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449948,Motorcycle,,,, +08/21/2021,1:35,QUEENS,11379,40.71352,-73.89727,"(40.71352, -73.89727)",,,62-37 62 ROAD,0,0,0,0,0,0,0,0,Eating or Drinking,Unspecified,,,,4449854,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,4:05,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449714,Sedan,Sedan,,, +08/21/2021,19:23,BRONX,10468,40.879547,-73.885796,"(40.879547, -73.885796)",,,40 WEST MOSHOLU PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4449311,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,13:16,MANHATTAN,10001,40.749706,-73.99157,"(40.749706, -73.99157)",7 AVENUE,WEST 32 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449433,Sedan,Taxi,,, +08/20/2021,13:05,,,,,,BOSTON ROAD,EAST 169 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449744,Sedan,,,, +08/21/2021,18:15,QUEENS,11417,40.679512,-73.83576,"(40.679512, -73.83576)",,,107-15 104 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449268,Sedan,Sedan,Box Truck,, +08/21/2021,14:36,,,40.711006,-74.003624,"(40.711006, -74.003624)",GOLD STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4449165,Box Truck,,,, +08/21/2021,23:15,STATEN ISLAND,10310,,,,ELM STREET,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449793,Sedan,Sedan,Sedan,, +08/12/2021,12:00,BROOKLYN,11212,40.661587,-73.90966,"(40.661587, -73.90966)",,,410 CHESTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449816,Sedan,,,, +08/21/2021,9:00,BRONX,10472,40.826595,-73.85986,"(40.826595, -73.85986)",,,1001 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449469,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,0:00,BRONX,10461,40.843178,-73.836815,"(40.843178, -73.836815)",,,1590 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449698,Sedan,Van,,, +08/21/2021,21:20,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449325,Sedan,,,, +08/21/2021,9:05,QUEENS,11432,40.716305,-73.79306,"(40.716305, -73.79306)",,,171-15 84 ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449397,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,20:24,BROOKLYN,11220,40.641747,-74.013824,"(40.641747, -74.013824)",5 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449872,Sedan,Sedan,,, +08/20/2021,18:51,MANHATTAN,10019,40.76713,-73.99373,"(40.76713, -73.99373)",WEST 52 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449955,Sedan,Sedan,,, +08/21/2021,15:46,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,UTICA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449424,Sedan,,,, +08/18/2021,21:50,BRONX,10457,40.853905,-73.89864,"(40.853905, -73.89864)",EAST 181 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449942,Sedan,E-SCOOTER,,, +08/19/2021,13:25,BROOKLYN,11212,40.657417,-73.90569,"(40.657417, -73.90569)",,,586 OSBORN STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4449758,Sedan,Sedan,,, +08/21/2021,1:06,BROOKLYN,11228,40.625267,-74.01727,"(40.625267, -74.01727)",76 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448976,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/14/2021,11:35,BRONX,10451,40.81655,-73.91955,"(40.81655, -73.91955)",EAST 149 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449835,Mopd,,,, +08/18/2021,10:40,MANHATTAN,10001,40.75326,-74.00383,"(40.75326, -74.00383)",WEST 30 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Oversized Vehicle,,,,4449794,Sedan,Bus,,, +08/21/2021,15:00,QUEENS,11374,40.72802,-73.86368,"(40.72802, -73.86368)",WETHEROLE STREET,63 DRIVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449219,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,14:15,QUEENS,11106,40.75694,-73.93464,"(40.75694, -73.93464)",CRESCENT STREET,37 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449570,Sedan,E-Scooter,,, +08/21/2021,18:18,,,40.73669,-73.993126,"(40.73669, -73.993126)",5 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449093,Sedan,,,, +08/21/2021,8:50,QUEENS,11433,40.698895,-73.78541,"(40.698895, -73.78541)",171 STREET,108 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449519,Sedan,,,, +11/01/2021,14:15,BROOKLYN,11214,40.595222,-73.99927,"(40.595222, -73.99927)",,,1630 SHORE PARKWAY,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474132,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/21/2021,20:44,BRONX,10456,40.832737,-73.90504,"(40.832737, -73.90504)",EAST 169 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449716,Ambulance,E-Scooter,,, +08/21/2021,17:00,STATEN ISLAND,10309,40.528,-74.23547,"(40.528, -74.23547)",,,3010 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4449335,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,21:00,QUEENS,11429,40.71524,-73.732765,"(40.71524, -73.732765)",,,220-34 100 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449377,Pick-up Truck,,,, +08/21/2021,10:53,BROOKLYN,11226,40.64462,-73.95999,"(40.64462, -73.95999)",,,734 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449685,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,21:15,BROOKLYN,11207,40.679535,-73.900475,"(40.679535, -73.900475)",BUSHWICK AVENUE,HIGHLAND BOULEVARD,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4449442,Sedan,,,, +08/21/2021,17:14,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4449129,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/21/2021,23:45,BROOKLYN,11223,40.593323,-73.964645,"(40.593323, -73.964645)",OCEAN PARKWAY,AVENUE W,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4449155,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,21:00,BROOKLYN,11219,40.62725,-74.00854,"(40.62725, -74.00854)",,,1075 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449925,Sedan,,,, +08/21/2021,9:25,,,40.77348,-73.804085,"(40.77348, -73.804085)",26 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449043,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,13:45,BROOKLYN,11226,40.651695,-73.94968,"(40.651695, -73.94968)",MARTENSE STREET,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4449890,Station Wagon/Sport Utility Vehicle,Bike,,, +08/21/2021,12:00,BRONX,10472,40.834778,-73.87776,"(40.834778, -73.87776)",,,1350 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449456,Sedan,,,, +08/21/2021,15:51,BRONX,10458,40.855812,-73.890785,"(40.855812, -73.890785)",3 AVENUE,EAST 185 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4449277,Sedan,Sedan,Sedan,, +08/20/2021,14:25,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449830,Sedan,Sedan,Sedan,, +08/21/2021,14:55,BROOKLYN,11237,40.709316,-73.93301,"(40.709316, -73.93301)",MORGAN AVENUE,MESEROLE STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449132,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/21/2021,3:00,,,40.63501,-73.914055,"(40.63501, -73.914055)",EAST 79 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449169,Pick-up Truck,,,, +08/21/2021,7:30,,,40.874992,-73.81846,"(40.874992, -73.81846)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449699,Sedan,,,, +08/21/2021,16:00,BROOKLYN,11222,40.72747,-73.95291,"(40.72747, -73.95291)",,,783 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,11:49,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449633,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,5:21,BROOKLYN,11228,40.619465,-74.02288,"(40.619465, -74.02288)",86 STREET,DAHLGREN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4449040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/21/2021,13:00,QUEENS,11435,40.705944,-73.81202,"(40.705944, -73.81202)",144 STREET,87 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449389,Sedan,,,, +08/21/2021,17:10,BROOKLYN,11208,40.670353,-73.88171,"(40.670353, -73.88171)",,,612 LINWOOD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449082,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/21/2021,2:29,,,40.827595,-73.85004,"(40.827595, -73.85004)",BRUCKNER BOULEVARD,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449463,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,9:25,QUEENS,11385,40.71123,-73.90859,"(40.71123, -73.90859)",,,2150 HIMROD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449022,Sedan,,,, +08/21/2021,2:40,QUEENS,11420,40.68204,-73.808914,"(40.68204, -73.808914)",LINDEN BOULEVARD,133 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4449595,Sedan,Sedan,Sedan,Sedan,Sedan +08/21/2021,7:30,,,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449440,E-Bike,,,, +08/21/2021,19:18,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4449122,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,12:50,,,40.851902,-73.91645,"(40.851902, -73.91645)",MONTGOMERY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449765,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,0:00,,,40.836895,-73.8736,"(40.836895, -73.8736)",BRONX RIVER PARKWAY,EAST 177 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449290,Sedan,Sedan,,, +08/21/2021,1:07,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449263,Sedan,Sedan,,, +08/21/2021,21:00,,,40.8262,-73.821686,"(40.8262, -73.821686)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449704,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,17:08,BRONX,10451,40.8175,-73.92038,"(40.8175, -73.92038)",,,330 EAST 150 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4449750,Fire truck,Sedan,,, +08/21/2021,2:30,BRONX,10468,40.871395,-73.89308,"(40.871395, -73.89308)",EAST 198 STREET,JEROME AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449317,Sedan,,,, +08/21/2021,15:42,BROOKLYN,11212,40.665707,-73.91939,"(40.665707, -73.91939)",,,623 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449113,Sedan,Sedan,,, +08/20/2021,16:28,MANHATTAN,10019,40.763454,-73.985275,"(40.763454, -73.985275)",,,869 8 AVENUE,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449949,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,15:30,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449076,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,17:50,,,40.817795,-73.89319,"(40.817795, -73.89319)",TIFFANY STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449823,Sedan,,,, +08/21/2021,20:38,MANHATTAN,10031,40.82935,-73.94834,"(40.82935, -73.94834)",,,3635 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4449499,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,22:45,QUEENS,11691,40.603325,-73.76364,"(40.603325, -73.76364)",,,25-56 BESSEMUND AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4449648,Sedan,Sedan,,, +08/21/2021,11:30,,,40.81294,-73.951775,"(40.81294, -73.951775)",SAINT NICHOLAS TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449137,Sedan,,,, +08/21/2021,12:45,,,40.759068,-73.845146,"(40.759068, -73.845146)",126 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449341,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,2:15,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4449590,Sedan,Sedan,,, +08/21/2021,21:40,BROOKLYN,11212,40.66237,-73.926865,"(40.66237, -73.926865)",RUTLAND ROAD,EAST 93 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449432,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,2:04,,,,,,MANOR ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449060,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,6:23,QUEENS,11434,40.668026,-73.78108,"(40.668026, -73.78108)",140 AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4449009,Flat Bed,Pick-up Truck,,, +08/21/2021,19:33,BRONX,10469,40.87003,-73.840744,"(40.87003, -73.840744)",KINGSLAND AVENUE,ADEE AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4449199,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,18:05,QUEENS,11420,40.67725,-73.826096,"(40.67725, -73.826096)",,,112-20 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449914,Sedan,,,, +08/21/2021,5:56,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4449357,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,23:30,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449812,Sedan,Sedan,,, +08/21/2021,22:28,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449147,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,17:15,BRONX,10461,40.84292,-73.85239,"(40.84292, -73.85239)",,,2432 LYVERE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449778,Sedan,Sedan,,, +08/18/2021,18:10,BRONX,10473,40.819584,-73.84378,"(40.819584, -73.84378)",,,2275 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449802,3-Door,,,, +08/21/2021,1:00,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",NORTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4449712,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,4:00,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449855,Sedan,Sedan,,, +08/21/2021,5:30,MANHATTAN,10002,40.710083,-73.99411,"(40.710083, -73.99411)",MARKET SLIP,WATER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449231,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/10/2021,4:00,BRONX,10454,40.80875,-73.91176,"(40.80875, -73.91176)",,,377 POWERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449746,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,13:30,QUEENS,11413,40.66137,-73.75297,"(40.66137, -73.75297)",145 ROAD,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449902,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,12:30,BRONX,10473,40.812904,-73.847694,"(40.812904, -73.847694)",HOWE AVENUE,BARRETT AVENUE,,0,0,0,0,0,0,0,0,,,,,,4449457,,,,, +08/18/2021,6:11,,,40.763657,-73.97347,"(40.763657, -73.97347)",WEST 58 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4449944,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,12:30,MANHATTAN,10040,40.854977,-73.92779,"(40.854977, -73.92779)",AUDUBON AVENUE,WEST 191 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449097,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,11:10,,,40.759365,-73.914276,"(40.759365, -73.914276)",NEWTOWN ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449571,Sedan,Bike,,, +08/16/2021,12:00,QUEENS,11375,0,0,"(0.0, 0.0)",72 DRIVE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449829,Sedan,,,, +08/21/2021,20:00,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:15,MANHATTAN,10025,40.798504,-73.96713,"(40.798504, -73.96713)",AMSTERDAM AVENUE,WEST 103 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4449081,Sedan,,,, +08/21/2021,18:20,,,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449133,Sedan,,,, +08/21/2021,15:40,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449664,Sedan,Sedan,,, +08/21/2021,2:07,,,40.771286,-73.9467,"(40.771286, -73.9467)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449635,Sedan,Sedan,,, +08/21/2021,10:15,,,40.74216,-73.804436,"(40.74216, -73.804436)",164 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449054,Sedan,,,, +08/20/2021,13:00,QUEENS,11356,40.78555,-73.85822,"(40.78555, -73.85822)",,,109-15 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449857,Sedan,,,, +08/20/2021,12:35,MANHATTAN,10019,40.762005,-73.98262,"(40.762005, -73.98262)",,,790 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449952,Sedan,,,, +08/20/2021,19:20,,,40.757732,-73.99686,"(40.757732, -73.99686)",10 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449737,Sedan,Box Truck,,, +08/21/2021,12:19,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4449323,Sedan,Carry All,Sedan,, +08/21/2021,17:04,STATEN ISLAND,10305,40.615463,-74.069466,"(40.615463, -74.069466)",ANDERSON STREET,SAINT MARYS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4449792,Sedan,Sedan,Sedan,, +08/12/2021,18:50,MANHATTAN,10001,,,,,,500 WEST 30 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449796,Sedan,Sedan,,, +08/21/2021,2:00,BROOKLYN,11220,40.639446,-74.02696,"(40.639446, -74.02696)",WAKEMAN PLACE,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4448977,Sedan,Sedan,,, +08/18/2021,2:00,BRONX,10461,40.84384,-73.84779,"(40.84384, -73.84779)",,,1510 ROSELLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449924,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,21:46,BROOKLYN,11233,40.68151,-73.93475,"(40.68151, -73.93475)",,,409 LEWIS AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4449388,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,7:28,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449425,Sedan,,,, +08/21/2021,13:42,,,,,,LAFAYETTE AVENUE,BRONX WHITESTONE BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449842,Sedan,Sedan,,, +08/21/2021,16:40,,,40.572548,-74.16997,"(40.572548, -74.16997)",,,2975 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449216,Sedan,Sedan,,, +08/21/2021,8:40,BROOKLYN,11210,40.63231,-73.94842,"(40.63231, -73.94842)",HILLEL PLACE,KENILWORTH PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449686,Sedan,Sedan,,, +08/21/2021,13:17,BRONX,10457,40.841232,-73.89247,"(40.841232, -73.89247)",,,753 CROTONA PARK NORTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449275,Sedan,Sedan,,, +08/18/2021,17:40,BROOKLYN,11201,40.69024,-73.99437,"(40.69024, -73.99437)",CLINTON STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449892,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,3:15,,,40.684147,-73.922966,"(40.684147, -73.922966)",MACON STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449404,Sedan,Sedan,,, +08/21/2021,11:45,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449128,Sedan,Sedan,,, +08/21/2021,2:00,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Accelerator Defective,,,,4449037,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,23:18,,,40.843246,-73.94505,"(40.843246, -73.94505)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4449532,Taxi,,,, +08/21/2021,6:56,BRONX,10465,40.829685,-73.8253,"(40.829685, -73.8253)",LAFAYETTE AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449700,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,9:00,,,40.73643,-74.00663,"(40.73643, -74.00663)",BANK STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:19,BROOKLYN,11229,40.59925,-73.952614,"(40.59925, -73.952614)",AVENUE U,EAST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,13:42,BROOKLYN,11222,40.721703,-73.95065,"(40.721703, -73.95065)",DRIGGS AVENUE,LORIMER STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4449613,Station Wagon/Sport Utility Vehicle,Bike,,, +08/19/2021,16:06,BROOKLYN,11220,40.6488,-74.01343,"(40.6488, -74.01343)",48 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449870,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,9:00,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4449267,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,20:00,STATEN ISLAND,10312,40.533367,-74.17045,"(40.533367, -74.17045)",,,139 SANDBORN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449334,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,18:51,BROOKLYN,11212,40.654408,-73.910774,"(40.654408, -73.910774)",,,650 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449819,Sedan,Sedan,,, +08/21/2021,10:20,BROOKLYN,11212,40.66113,-73.90782,"(40.66113, -73.90782)",,,245 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4449759,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,17:36,BRONX,10463,40.87644,-73.90276,"(40.87644, -73.90276)",,,3027 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449369,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,5:37,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449232,Sedan,,,, +08/21/2021,13:13,MANHATTAN,10019,40.76527,-73.97531,"(40.76527, -73.97531)",,,40 CENTRAL PARK SOUTH,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Turning Improperly,Unspecified,,,4449958,Moped,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/09/2021,8:50,BRONX,10451,40.814877,-73.92076,"(40.814877, -73.92076)",,,341 EAST 146 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449747,Sanitation,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,22:24,BROOKLYN,11212,40.657757,-73.91162,"(40.657757, -73.91162)",,,510 AMBOY STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4449754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +06/11/2021,10:00,,,40.765545,-73.95471,"(40.765545, -73.95471)",,,EAST 70 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4449767,Bike,,,, +08/21/2021,21:30,BROOKLYN,11228,40.628204,-74.01286,"(40.628204, -74.01286)",70 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449297,Sedan,,,, +10/15/2021,20:22,BRONX,10465,40.8782895,-73.8700582,"(40.8782895, -73.8700582)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4467974,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/19/2021,14:00,BROOKLYN,11223,40.5958855,-73.9831409,"(40.5958855, -73.9831409)",WEST 12 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469306,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,12:10,BRONX,10462,40.8461229,-73.866647,"(40.8461229, -73.866647)",,,1831 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4466771,Moped,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,17:25,MANHATTAN,10011,40.7397514,-74.0025224,"(40.7397514, -74.0025224)",8 AVENUE,WEST 14 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470833,Ambulance,,,, +10/22/2021,12:57,,,40.736562,-74.0010934,"(40.736562, -74.0010934)",7 AVENUE SOUTH,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4470176,Bike,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,8:10,,,40.6842783,-73.7830147,"(40.6842783, -73.7830147)",BREWER BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470002,Motorcycle,,,, +10/13/2021,19:45,BRONX,10474,40.8201654,-73.8852237,"(40.8201654, -73.8852237)",,,899 WHITTIER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466871,Sedan,Box Truck,,, +10/21/2021,13:37,BROOKLYN,11230,40.6265698,-73.9709207,"(40.6265698, -73.9709207)",OCEAN PARKWAY,AVENUE I,,1,0,1,0,0,0,0,0,Unspecified,,,,,4470601,Sedan,,,, +10/13/2021,14:00,BROOKLYN,11220,40.6414351,-74.0178146,"(40.6414351, -74.0178146)",59 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468563,Sedan,Sedan,,, +10/20/2021,12:17,QUEENS,11691,40.5952075,-73.758491,"(40.5952075, -73.758491)",SEAGIRT AVENUE,BEACH 25 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4469454,Sedan,Sedan,,, +10/21/2021,12:00,QUEENS,11378,40.7223029,-73.9017911,"(40.7223029, -73.9017911)",,,63-12 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469992,Sedan,,,, +10/21/2021,14:15,MANHATTAN,10001,40.7512132,-74.0029823,"(40.7512132, -74.0029823)",,,528 WEST 28 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4470819,Sedan,Bike,,, +10/21/2021,18:00,QUEENS,11368,40.7520727,-73.863997,"(40.7520727, -73.863997)",,,37-44 103 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469968,Sedan,,,, +10/22/2021,19:45,BROOKLYN,11222,40.7264527,-73.9524425,"(40.7264527, -73.9524425)",,,745 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4470427,Sedan,Sedan,,, +10/16/2021,8:25,BRONX,10466,40.8893233,-73.8492038,"(40.8893233, -73.8492038)",,,4150 PAULDING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467976,Sedan,,,, +10/30/2021,15:29,BRONX,10475,40.88261,-73.826706,"(40.88261, -73.826706)",,,2280 TILLOTSON AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4473959,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,11:40,BRONX,10465,40.8188473,-73.8184381,"(40.8188473, -73.8184381)",,,307 REVERE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470161,Sedan,,,, +10/23/2021,19:20,,,40.695157,-73.9200111,"(40.695157, -73.9200111)",MENAHAN STREET,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4470094,Bike,,,, +10/26/2021,8:50,STATEN ISLAND,10310,40.628704,-74.10979,"(40.628704, -74.10979)",OAKLAND AVENUE,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474064,Sedan,Sedan,Sedan,, +10/18/2021,14:40,BROOKLYN,11236,40.6485861,-73.9069919,"(40.6485861, -73.9069919)",,,845 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468595,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,11:40,,,40.710558,-73.9941422,"(40.710558, -73.9941422)",CHERRY STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4466899,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/21/2021,19:09,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4459890,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/15/2021,18:48,QUEENS,11367,40.7426112,-73.8305655,"(40.7426112, -73.8305655)",,,135-40 HORACE HARDING EXPRESSWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4467648,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,15:35,,,40.7623345,-73.8269171,"(40.7623345, -73.8269171)",BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,4:25,QUEENS,11691,40.6065258,-73.7441166,"(40.6065258, -73.7441166)",,,728 EMPIRE AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4467031,Sedan,,,, +11/02/2021,23:00,BROOKLYN,11215,40.671555,-73.987724,"(40.671555, -73.987724)",4 AVENUE,7 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473470,Sedan,,,, +10/17/2021,13:00,QUEENS,11421,40.6995997,-73.8531486,"(40.6995997, -73.8531486)",,,83-75 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467931,Bus,Sedan,,, +10/12/2021,14:49,BROOKLYN,11204,40.6193809,-73.9828828,"(40.6193809, -73.9828828)",60 STREET,20 AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4467053,Bus,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,9:40,BROOKLYN,11205,40.689452,-73.9680771,"(40.689452, -73.9680771)",DE KALB AVENUE,CLINTON AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4469781,Sedan,Sedan,,, +10/08/2021,22:00,,,40.66706,-73.7392,"(40.66706, -73.7392)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4465408,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,11:35,MANHATTAN,10022,40.756478,-73.9720606,"(40.756478, -73.9720606)",,,125 EAST 50 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467349,Sedan,Box Truck,,, +10/16/2021,0:59,MANHATTAN,10036,40.7603926,-73.999086,"(40.7603926, -73.999086)",,,601 WEST 41 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4469136,Sedan,,,, +10/21/2021,12:20,,,40.5829477,-74.156865,"(40.5829477, -74.156865)",RICHMOND HILL ROAD,BRIDGETOWN STREET,,1,0,1,0,0,0,0,0,,,,,,4469833,,,,, +10/19/2021,20:20,QUEENS,11412,40.6928564,-73.7470233,"(40.6928564, -73.7470233)",204 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469173,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,4:14,BRONX,10470,40.8984496,-73.8542983,"(40.8984496, -73.8542983)",WHITE PLAINS ROAD,NEREID AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4467953,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,7:02,QUEENS,11368,40.7392377,-73.8499843,"(40.7392377, -73.8499843)",,,59-09 VANDOREN STREET,1,0,1,0,0,0,0,0,,,,,,4469456,,,,, +10/18/2021,0:00,BROOKLYN,11203,40.6574671,-73.9417401,"(40.6574671, -73.9417401)",,,554 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4468538,Pick-up Truck,,,, +10/23/2021,19:28,MANHATTAN,10031,40.8273436,-73.9427825,"(40.8273436, -73.9427825)",SAINT NICHOLAS AVENUE,WEST 150 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,13:00,MANHATTAN,10019,40.7635579,-73.9757607,"(40.7635579, -73.9757607)",,,30 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468755,Sedan,Sedan,,, +11/02/2021,18:00,BRONX,10473,40.818497,-73.8681,"(40.818497, -73.8681)",CROES AVENUE,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473601,Sedan,Sedan,,, +10/21/2021,16:59,BROOKLYN,11222,40.7273825,-73.9498081,"(40.7273825, -73.9498081)",,,147A MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469556,Sedan,Dump,,, +10/23/2021,18:25,QUEENS,11365,40.730053,-73.7935239,"(40.730053, -73.7935239)",73 AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470109,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/13/2021,10:50,BROOKLYN,11204,40.6252157,-73.9913259,"(40.6252157, -73.9913259)",,,5901 16 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,21:30,,,40.6385252,-73.9260638,"(40.6385252, -73.9260638)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4470267,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,15:58,MANHATTAN,10007,40.7125314,-74.0076652,"(40.7125314, -74.0076652)",PARK PLACE,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467556,Van,,,, +10/15/2021,14:36,,,40.8566878,-73.8692726,"(40.8566878, -73.8692726)",BOSTON ROAD,PELHAM PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4467449,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,21:20,BRONX,10468,40.8717404,-73.8985527,"(40.8717404, -73.8985527)",,,88 WEST 197 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470034,Station Wagon/Sport Utility Vehicle,,,, +10/16/2021,15:08,STATEN ISLAND,10310,,,,RICHMOND TERRACE,NORTH BURGHER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474005,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,20:25,BROOKLYN,11238,40.6882937,-73.9639703,"(40.6882937, -73.9639703)",,,286 LAFAYETTE AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4468323,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,17:20,QUEENS,11413,40.6667139,-73.7515526,"(40.6667139, -73.7515526)",225 STREET,143 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4467672,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +10/22/2021,8:40,MANHATTAN,10128,40.7806906,-73.9465923,"(40.7806906, -73.9465923)",1 AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4469850,Sedan,E-Scooter,,, +10/14/2021,14:52,QUEENS,11413,40.657865,-73.7660672,"(40.657865, -73.7660672)",182 STREET,149 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4467170,Tractor Truck Diesel,Sedan,,, +10/19/2021,0:40,,,40.5885678,-74.1624473,"(40.5885678, -74.1624473)",,,370 NOME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469984,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +10/22/2021,18:00,,,40.7336953,-73.7252474,"(40.7336953, -73.7252474)",HILLSIDE AVENUE,241 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4470128,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/15/2021,16:15,BROOKLYN,11225,40.6654081,-73.9653509,"(40.6654081, -73.9653509)",,,450 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4468190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +10/19/2021,18:19,,,40.6354928,-74.1578218,"(40.6354928, -74.1578218)",,,47 UNION AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469402,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/24/2021,12:29,BROOKLYN,11237,40.6946866,-73.911108,"(40.6946866, -73.911108)",CORNELIA STREET,KNICKERBOCKER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470442,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,20:31,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Obstruction/Debris,Other Vehicular,Other Vehicular,Unspecified,4473490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +11/02/2021,10:00,,,40.608612,-74.13098,"(40.608612, -74.13098)",NORTH GANNON AVENUE,WHEELER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4473980,Motorcycle,Sedan,,, +10/21/2021,16:15,BRONX,10466,40.8934115,-73.8573621,"(40.8934115, -73.8573621)",EAST 233 STREET,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4469588,Sedan,Sedan,,, +11/02/2021,8:30,QUEENS,11433,40.704254,-73.788345,"(40.704254, -73.788345)",170 STREET,DOUGLAS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474117,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/15/2021,12:55,QUEENS,11355,40.7519423,-73.8322954,"(40.7519423, -73.8322954)",COLLEGE POINT BOULEVARD,FOWLER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,16:33,BRONX,10462,40.8567836,-73.8619196,"(40.8567836, -73.8619196)",PELHAM PARKWAY SOUTH,MULINER AVENUE,,2,0,2,0,0,0,0,0,Traffic Control Disregarded,,,,,4467657,E-Bike,,,, +10/21/2021,15:00,BROOKLYN,11210,40.6341172,-73.9458666,"(40.6341172, -73.9458666)",GLENWOOD ROAD,EAST 32 STREET,,1,0,0,0,0,0,1,0,Obstruction/Debris,Unspecified,,,,4469536,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,15:35,BROOKLYN,11219,40.6263619,-74.0083001,"(40.6263619, -74.0083001)",11 AVENUE,BAY RIDGE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469590,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,10:37,,,40.6713386,-73.9447945,"(40.6713386, -73.9447945)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468811,Station Wagon/Sport Utility Vehicle,,,, +10/21/2021,21:00,BROOKLYN,11235,40.5763037,-73.9685308,"(40.5763037, -73.9685308)",OCEAN PARKWAY,WEST BRIGHTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470099,Sedan,Sedan,,, +10/19/2021,9:35,QUEENS,11691,40.6069558,-73.7435241,"(40.6069558, -73.7435241)",EMPIRE AVENUE,VIRGINIA STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470596,,,,, +10/24/2021,1:42,QUEENS,11358,40.7518471,-73.787862,"(40.7518471, -73.787862)",47 AVENUE,193 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4470423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,16:41,MANHATTAN,10029,40.7965655,-73.9380162,"(40.7965655, -73.9380162)",,,2244 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468728,E-Bike,Sedan,,, +10/14/2021,12:01,QUEENS,11358,40.750119,-73.8072704,"(40.750119, -73.8072704)",OAK AVENUE,160 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468939,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/18/2021,20:03,QUEENS,11369,40.7589979,-73.8745828,"(40.7589979, -73.8745828)",94 STREET,JACKSON MILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,21:06,BROOKLYN,11223,40.6048025,-73.9667959,"(40.6048025, -73.9667959)",OCEAN PARKWAY,AVENUE R,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4466852,Station Wagon/Sport Utility Vehicle,Bike,,, +10/21/2021,5:25,QUEENS,11435,40.7093202,-73.8174543,"(40.7093202, -73.8174543)",,,139-12 84 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4469499,Sedan,,,, +10/25/2021,19:20,STATEN ISLAND,10304,40.626965,-74.08215,"(40.626965, -74.08215)",,,1 GORDON STREET,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4474099,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,20:31,,,40.6805793,-73.974316,"(40.6805793, -73.974316)",FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4470548,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,17:05,MANHATTAN,10022,40.7612344,-73.9638843,"(40.7612344, -73.9638843)",EAST 60 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469643,Sedan,Sedan,,, +10/14/2021,22:58,,,40.6081954,-74.1390393,"(40.6081954, -74.1390393)",NORTH GANNON AVENUE,ARDMORE AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4467370,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/25/2021,13:20,MANHATTAN,10005,40.7060125,-74.0088114,"(40.7060125, -74.0088114)",WALL STREET,HANOVER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470847,Station Wagon/Sport Utility Vehicle,Box Truck,,, +10/03/2021,15:58,QUEENS,11418,40.7016303,-73.8404963,"(40.7016303, -73.8404963)",,,109-30 PARK LANE SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4463906,Sedan,Sedan,,, +10/24/2021,5:43,,,40.6517331,-73.930381,"(40.6517331, -73.930381)",UTICA AVENUE,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4470286,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/13/2022,10:00,BROOKLYN,11249,40.717518,-73.96474,"(40.717518, -73.96474)",KENT AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4518749,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/17/2021,17:00,BRONX,10452,40.8462662,-73.9205776,"(40.8462662, -73.9205776)",FEATHERBED LANE,PLIMPTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4468374,fire truck,Sedan,,, +10/23/2021,20:04,QUEENS,11379,40.7146219,-73.9011579,"(40.7146219, -73.9011579)",ELIOT AVENUE,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470410,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,7:30,BRONX,10466,40.8870062,-73.8572608,"(40.8870062, -73.8572608)",,,3978 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4467995,Sedan,,,, +10/23/2021,1:53,BROOKLYN,11207,40.6624152,-73.883577,"(40.6624152, -73.883577)",,,821 BARBEY STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4470470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/13/2021,1:30,BRONX,10458,40.8672566,-73.8836235,"(40.8672566, -73.8836235)",Webster ave,Bedford park blvd,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4467417,Sedan,,,, +10/13/2021,15:00,QUEENS,11368,40.75278,-73.8662678,"(40.75278, -73.8662678)",101 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4466989,Pick-up Truck,,,, +10/19/2021,13:31,QUEENS,11385,40.7067016,-73.916637,"(40.7067016, -73.916637)",,,1740 DE KALB AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470395,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,18:10,,,40.6741471,-73.9306135,"(40.6741471, -73.9306135)",SAINT MARKS AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4470352,Sedan,,,, +10/15/2021,23:00,,,40.668735,-73.8422736,"(40.668735, -73.8422736)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4468013,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,22:10,BRONX,10457,40.8494102,-73.9008853,"(40.8494102, -73.9008853)",VALENTINE AVENUE,EAST 178 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4468619,Bike,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,13:50,BRONX,10473,,,,,,875 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474011,Taxi,,,, +10/14/2021,13:00,QUEENS,11357,40.7903471,-73.8198334,"(40.7903471, -73.8198334)",11 AVENUE,147 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4468941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,16:00,BROOKLYN,11207,40.6707518,-73.8909129,"(40.6707518, -73.8909129)",,,408 MILLER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4469689,Sedan,,,, +10/24/2021,20:35,BRONX,10466,40.892133,-73.8534043,"(40.892133, -73.8534043)",EAST 233 STREET,BUSSING AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470662,Sedan,,,, +10/17/2021,8:14,QUEENS,11378,40.7168112,-73.9023437,"(40.7168112, -73.9023437)",,,61-10 60 AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4467996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,17:00,MANHATTAN,10027,40.8179073,-73.9543884,"(40.8179073, -73.9543884)",,,530 WEST 133 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4470322,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,17:00,,,40.5794435,-73.9796099,"(40.5794435, -73.9796099)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4466972,Sedan,,,, +09/17/2021,9:30,,,40.749321,-73.7568423,"(40.749321, -73.7568423)",HORACE HARDING EXPRESSWAY,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4469156,Sedan,Sedan,,, +11/02/2021,16:50,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",1 AVENUE,EAST 53 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473806,Sedan,Bike,,, +10/05/2021,10:00,BRONX,10452,40.8350523,-73.9261381,"(40.8350523, -73.9261381)",WOODYCREST AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468258,Sedan,,,, +10/24/2021,18:30,BROOKLYN,11223,40.6050275,-73.9615094,"(40.6050275, -73.9615094)",,,2135 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4470554,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/16/2021,6:50,STATEN ISLAND,10305,40.6036253,-74.0693024,"(40.6036253, -74.0693024)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4467732,Sedan,Taxi,,, +10/19/2021,8:30,,,40.6643433,-73.9315393,"(40.6643433, -73.9315393)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4468947,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,2:40,BRONX,10455,40.8176847,-73.8985192,"(40.8176847, -73.8985192)",LONGWOOD AVENUE,KELLY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470722,Sedan,Taxi,,, +10/23/2021,13:03,,,40.6758728,-73.7868923,"(40.6758728, -73.7868923)",124 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4470536,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,16:55,QUEENS,11412,40.69447,-73.76204,"(40.69447, -73.76204)",FARMERS BOULEVARD,TIOGA DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518828,Sedan,,,, +10/16/2021,20:23,BROOKLYN,11220,40.6334692,-74.0210119,"(40.6334692, -74.0210119)",BAY RIDGE AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4468126,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,9:30,,,40.5794435,-73.9796099,"(40.5794435, -73.9796099)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468746,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,16:30,BROOKLYN,11204,40.616943,-73.9779419,"(40.616943, -73.9779419)",,,5901 BAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4469058,Sedan,Sedan,,, +04/11/2022,10:40,BROOKLYN,11233,40.679527,-73.91651,"(40.679527, -73.91651)",,,197 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4519528,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/16/2021,8:30,MANHATTAN,10022,40.7548762,-73.9685222,"(40.7548762, -73.9685222)",2 AVENUE,EAST 50 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4467616,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,21:07,,,40.8151131,-73.9550003,"(40.8151131, -73.9550003)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4468926,Tractor Truck Diesel,Sedan,,, +10/21/2021,16:06,QUEENS,11385,40.7042143,-73.876161,"(40.7042143, -73.876161)",73 PLACE,78 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469923,Station Wagon/Sport Utility Vehicle,Van,,, +10/17/2021,10:30,QUEENS,11429,40.714134,-73.74916,"(40.714134, -73.74916)",,,98-10 211 STREET,0,0,0,0,0,0,0,0,,,,,,4468889,,,,, +10/18/2021,11:52,,,40.6604416,-73.9568744,"(40.6604416, -73.9568744)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468490,Sedan,E-Bike,,, +10/15/2021,20:30,,,40.7678553,-73.9342271,"(40.7678553, -73.9342271)",12 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467899,Bike,,,, +10/09/2021,12:30,,,40.7567179,-73.7391791,"(40.7567179, -73.7391791)",HORACE HARDING EXPRESSWAY,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4466258,Sedan,,,, +10/15/2021,17:00,BROOKLYN,11219,40.6297765,-73.9939944,"(40.6297765, -73.9939944)",14 AVENUE,56 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,8:30,MANHATTAN,10036,40.7565443,-73.9826352,"(40.7565443, -73.9826352)",,,1156 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4467086,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,6:15,QUEENS,11411,40.6971299,-73.7432782,"(40.6971299, -73.7432782)",SPRINGFIELD BOULEVARD,116 ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4470510,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,15:26,BRONX,10458,40.8614333,-73.891343,"(40.8614333, -73.891343)",,,402 EAST FORDHAM ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468350,Pick-up Truck,Sedan,,, +10/23/2021,17:45,BROOKLYN,11209,40.6122256,-74.0339424,"(40.6122256, -74.0339424)",,,10031 4 avenue,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470077,Sedan,Sedan,,, +10/19/2021,0:01,BRONX,10466,40.8978107,-73.8526177,"(40.8978107, -73.8526177)",NEREID AVENUE,BYRON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469505,Sedan,E-Bike,,, +10/21/2021,2:30,QUEENS,11434,40.6659413,-73.7652439,"(40.6659413, -73.7652439)",,,179-07 145 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4469494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/16/2021,1:00,BRONX,10459,40.8316974,-73.8902858,"(40.8316974, -73.8902858)",,,1335 HOE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468671,Sedan,,,, +10/15/2021,14:51,BROOKLYN,11203,40.6550952,-73.9346446,"(40.6550952, -73.9346446)",EAST 46 STREET,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4467820,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/17/2021,18:12,QUEENS,11102,40.7722922,-73.9153946,"(40.7722922, -73.9153946)",24 AVENUE,31 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470750,Sedan,E-Bike,,, +10/22/2021,23:56,BROOKLYN,11233,40.6733913,-73.916771,"(40.6733913, -73.916771)",SARATOGA AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470189,Sedan,Sedan,,, +10/22/2021,10:30,,,40.608317,-74.1313086,"(40.608317, -74.1313086)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4470679,Pick-up Truck,Sedan,,, +10/15/2021,19:15,BRONX,10469,40.8733019,-73.8536375,"(40.8733019, -73.8536375)",BOSTON ROAD,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467968,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,7:30,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4466803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,0:35,,,40.7139009,-73.9088099,"(40.7139009, -73.9088099)",ANDREWS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4466724,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/18/2021,14:45,BRONX,10463,40.8896404,-73.9095304,"(40.8896404, -73.9095304)",,,541 WEST 239 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4468507,Sedan,Bus,,, +10/18/2021,6:50,STATEN ISLAND,10309,40.5077536,-74.2300632,"(40.5077536, -74.2300632)",HYLAN BOULEVARD,PAGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469818,Sedan,Bus,,, +10/16/2021,12:15,BROOKLYN,11217,40.6780837,-73.9779685,"(40.6780837, -73.9779685)",,,35 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4469112,Sedan,,,, +10/20/2021,6:46,BROOKLYN,11207,40.6547758,-73.8897039,"(40.6547758, -73.8897039)",,,72 WORTMAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4469701,Sedan,Sedan,Sedan,, +10/23/2021,15:35,,,40.8308903,-73.8272842,"(40.8308903, -73.8272842)",CROSS BRONX EXPRESSWAY EXTENSION,RANDALL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4470633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,0:24,,,40.7128614,-73.9657826,"(40.7128614, -73.9657826)",WYTHE AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4468222,Bike,,,, +10/19/2021,12:40,QUEENS,11411,40.6840616,-73.7287222,"(40.6840616, -73.7287222)",121 AVENUE,237 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468891,Sedan,FIRE TRUCK,,, +10/14/2021,0:00,MANHATTAN,10027,40.8140833,-73.9523327,"(40.8140833, -73.9523327)",,,419 WEST 129 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467138,Sedan,,,, +10/20/2021,3:30,STATEN ISLAND,10305,40.6125508,-74.0673798,"(40.6125508, -74.0673798)",,,165 MARYLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4469261,Sedan,,,, +10/12/2021,23:41,MANHATTAN,10021,40.7674712,-73.9564643,"(40.7674712, -73.9564643)",,,1331 1 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4468243,E-Bike,,,, +10/14/2021,20:00,BROOKLYN,11207,40.6562053,-73.8866876,"(40.6562053, -73.8866876)",WORTMAN AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4467254,Sedan,Sedan,,, +10/15/2021,4:35,,,40.671645,-73.9625737,"(40.671645, -73.9625737)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4467499,Taxi,Sedan,,, +10/13/2021,15:00,STATEN ISLAND,10310,40.6307552,-74.1165045,"(40.6307552, -74.1165045)",BROADWAY,DELAFIELD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467863,Sedan,Sedan,,, +10/17/2021,22:09,BROOKLYN,11230,40.6299872,-73.9715677,"(40.6299872, -73.9715677)",OCEAN PARKWAY,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4468139,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,15:06,QUEENS,11366,40.729275,-73.78095,"(40.729275, -73.78095)",,,188-13 UNION TURNPIKE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474027,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/23/2021,12:29,,,40.6664029,-73.7411796,"(40.6664029, -73.7411796)",LAURELTON PARKWAY,NORTH CONDUIT AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4470225,Sedan,Pick-up Truck,Sedan,, +10/15/2021,20:29,,,40.769306,-73.9155085,"(40.769306, -73.9155085)",31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4467518,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/20/2021,8:20,BROOKLYN,11232,40.6692356,-73.9969648,"(40.6692356, -73.9969648)",15 STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4469107,Dump,Sedan,,, +10/08/2021,6:00,,,40.6778626,-73.9386241,"(40.6778626, -73.9386241)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4466542,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/02/2021,7:18,,,,,,HORACE HARDING EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4473440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,17:50,BROOKLYN,11213,40.6643007,-73.9291675,"(40.6643007, -73.9291675)",EAST NEW YORK AVENUE,FORD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469936,Sedan,Sedan,,, +10/14/2021,15:10,,,40.6150121,-73.9910134,"(40.6150121, -73.9910134)",70 STREET,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4467119,Sedan,Bike,,, +10/07/2021,20:00,,,40.6055927,-74.1794077,"(40.6055927, -74.1794077)",,,2 TELEPORT DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4466408,Sedan,,,, +10/20/2021,12:00,QUEENS,11354,40.7653631,-73.8278647,"(40.7653631, -73.8278647)",UNION STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469357,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,22:10,BRONX,10457,40.8381983,-73.9011767,"(40.8381983, -73.9011767)",3 AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470713,Sedan,Sedan,,, +10/15/2021,7:00,BRONX,10475,40.8859908,-73.827914,"(40.8859908, -73.827914)",CONNER STREET,BOSTON ROAD,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4467963,Sedan,Sedan,,, +09/18/2021,15:57,MANHATTAN,10027,40.8092386,-73.9530067,"(40.8092386, -73.9530067)",WEST 123 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469040,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +10/18/2021,11:58,,,40.7029026,-73.8690332,"(40.7029026, -73.8690332)",FOREST PARK DRIVE,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4469095,,,,, +10/13/2021,9:18,BROOKLYN,11237,40.6968248,-73.9148665,"(40.6968248, -73.9148665)",GATES AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4466931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/21/2021,14:38,,,40.838846,-73.8781619,"(40.838846, -73.8781619)",EAST 177 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4470319,Pick-up Truck,Sedan,,, +10/14/2021,10:30,MANHATTAN,10034,40.8630205,-73.9175569,"(40.8630205, -73.9175569)",WEST 206 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4468229,Station Wagon/Sport Utility Vehicle,,,, +09/28/2021,15:24,MANHATTAN,10036,40.7621851,-73.9894923,"(40.7621851, -73.9894923)",,,375 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4462845,Sedan,,,, +10/22/2021,9:35,QUEENS,11368,40.7568696,-73.8570553,"(40.7568696, -73.8570553)",112 STREET,34 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470061,Sedan,,,, +10/18/2021,11:38,MANHATTAN,10001,40.7491025,-73.9920058,"(40.7491025, -73.9920058)",WEST 31 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4468711,Bike,Sedan,,, +10/21/2021,8:25,QUEENS,11362,40.7527074,-73.7414326,"(40.7527074, -73.7414326)",DOUGLASTON PARKWAY,65AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4469763,Pick-up Truck,School Bus,,, +10/13/2021,13:00,QUEENS,11691,40.5925438,-73.7658424,"(40.5925438, -73.7658424)",SPRAY VIEW AVENUE,BEACH 34 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4467063,Taxi,Sedan,,, +10/16/2021,0:28,BROOKLYN,11207,40.662394,-73.8859345,"(40.662394, -73.8859345)",HEGEMAN AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4467921,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +10/22/2021,15:30,BROOKLYN,11236,40.6425622,-73.9063202,"(40.6425622, -73.9063202)",EAST 92 STREET,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4470502,Sedan,,,, +10/14/2021,10:13,QUEENS,11413,40.651621,-73.7584314,"(40.651621, -73.7584314)",,,230-19 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4467021,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,22:20,BROOKLYN,11213,40.6686479,-73.9283482,"(40.6686479, -73.9283482)",ROCHESTER AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4468828,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/01/2021,16:30,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",REMSEN AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,0:22,,,40.585934,-73.9519,"(40.585934, -73.9519)",VOORHIES AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4485767,Sedan,Sedan,Sedan,, +12/12/2021,12:30,,,40.607964,-74.162346,"(40.607964, -74.162346)",,,1650 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Glare,,,,,4486119,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,4:47,,,40.809284,-73.92927,"(40.809284, -73.92927)",MAJOR DEEGAN EXPRESSWAY,,,2,1,0,0,0,0,2,1,Alcohol Involvement,Unsafe Lane Changing,Unspecified,Unspecified,,4486548,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +12/12/2021,20:15,,,40.684734,-73.950455,"(40.684734, -73.950455)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485807,Sedan,,,, +12/12/2021,11:00,BROOKLYN,11221,40.690266,-73.91546,"(40.690266, -73.91546)",CORNELIA STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486227,Station Wagon/Sport Utility Vehicle,Box Truck,,, +12/12/2021,6:56,,,40.697193,-73.72752,"(40.697193, -73.72752)",115 AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485661,Taxi,,,, +12/12/2021,22:41,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",GRAND CONCOURSE,EAST 176 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4486070,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/12/2021,15:07,,,40.639854,-74.0122,"(40.639854, -74.0122)",6 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486206,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,12:09,BRONX,10474,40.813213,-73.89098,"(40.813213, -73.89098)",LONGWOOD AVENUE,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486340,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,9:00,BROOKLYN,11226,40.64043,-73.95624,"(40.64043, -73.95624)",DITMAS AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485687,Sedan,UTIL,,, +12/12/2021,4:27,BROOKLYN,11235,40.58945,-73.960526,"(40.58945, -73.960526)",CONEY ISLAND AVENUE,AVENUE Y,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4485766,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,14:10,QUEENS,11411,40.687763,-73.74095,"(40.687763, -73.74095)",FRANCIS LEWIS BOULEVARD,223 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4485794,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,7:34,QUEENS,11372,40.74824,-73.89172,"(40.74824, -73.89172)",,,37-20 74 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4485947,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/01/2021,9:20,,,40.64785,-73.976364,"(40.64785, -73.976364)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486562,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/11/2021,11:19,,,40.715176,-73.951965,"(40.715176, -73.951965)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4486368,Sedan,Sedan,,, +12/12/2021,4:55,QUEENS,11385,40.701385,-73.898796,"(40.701385, -73.898796)",,,70-10 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4486487,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +12/12/2021,12:30,,,40.734882,-73.97484,"(40.734882, -73.97484)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485717,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,22:43,,,40.697536,-73.87106,"(40.697536, -73.87106)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4485824,Sedan,,,, +11/03/2021,6:00,,,,,,VANCORTLANDT AVENUE EAST,EAST 236 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4473515,Pick-up Truck,Sedan,,, +12/12/2021,0:00,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4485611,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,16:00,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",SKIDMORE AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4485787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,10:41,,,40.78422,-73.98499,"(40.78422, -73.98499)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4486051,Sedan,Sedan,,, +12/12/2021,0:00,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",BERGEN STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4485774,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,19:30,QUEENS,11368,40.75326,-73.864456,"(40.75326, -73.864456)",103 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486441,Motorcycle,,,, +12/12/2021,16:47,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4486242,Sedan,Sedan,Sedan,Sedan, +12/12/2021,19:38,QUEENS,11420,40.677437,-73.82181,"(40.677437, -73.82181)",,,114-44 117 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4485857,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +12/12/2021,18:54,MANHATTAN,10003,40.72762,-73.99263,"(40.72762, -73.99263)",,,27 EAST 4 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4486105,Taxi,,,, +12/12/2021,18:08,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486282,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,13:40,BROOKLYN,11225,40.66354,-73.950935,"(40.66354, -73.950935)",,,1019 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486182,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,2:50,BRONX,10470,40.900604,-73.85259,"(40.900604, -73.85259)",,,4509 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4485921,Sedan,,,, +12/11/2021,12:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486398,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,22:27,QUEENS,11375,40.711823,-73.83612,"(40.711823, -73.83612)",UNION TURNPIKE,MARKWOOD ROAD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4486523,Taxi,Sedan,,, +12/12/2021,12:00,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485843,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/06/2021,13:30,QUEENS,11413,40.659348,-73.759995,"(40.659348, -73.759995)",,,220-20 147 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486429,Sedan,,,, +12/12/2021,19:25,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",ROOSEVELT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485834,Sedan,,,, +12/12/2021,0:20,QUEENS,11369,40.76403,-73.87743,"(40.76403, -73.87743)",92 STREET,25 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4485547,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/10/2021,16:04,BROOKLYN,11210,40.62168,-73.94883,"(40.62168, -73.94883)",AVENUE L,EAST 27 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486459,,,,, +12/12/2021,16:15,,,40.7879,-73.77701,"(40.7879, -73.77701)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4485741,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,11:05,BRONX,10454,40.810387,-73.91521,"(40.810387, -73.91521)",SAINT ANNS AVENUE,EAST 143 STREET,,1,0,1,0,0,0,0,0,,,,,,4485886,Sedan,,,, +12/08/2021,9:00,,,40.672752,-73.95432,"(40.672752, -73.95432)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4486507,Sedan,Sedan,,, +12/10/2021,9:25,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486383,Sedan,Sedan,,, +12/12/2021,20:38,BROOKLYN,11229,40.600746,-73.93892,"(40.600746, -73.93892)",,,2990 AVENUE U,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4485901,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,18:14,BROOKLYN,11208,40.682674,-73.86995,"(40.682674, -73.86995)",,,312 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4486034,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/30/2021,7:57,BRONX,10460,40.839622,-73.8674,"(40.839622, -73.8674)",,,1565 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486388,Sedan,Box Truck,,, +12/12/2021,3:00,QUEENS,11412,40.69168,-73.75127,"(40.69168, -73.75127)",200 STREET,119 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4485870,Sedan,,,, +12/12/2021,15:25,BROOKLYN,11209,40.61872,-74.027306,"(40.61872, -74.027306)",90 STREET,GELSTON AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485813,Sedan,,,, +04/14/2022,11:45,MANHATTAN,10019,40.761135,-73.98339,"(40.761135, -73.98339)",,,200 WEST 50 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519123,Bus,,,, +04/14/2022,4:30,,,40.589962,-74.19117,"(40.589962, -74.19117)",,,23 ALBERTA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519862,Sedan,,,, +04/09/2022,21:05,QUEENS,11418,40.70373,-73.82135,"(40.70373, -73.82135)",,,131-10 HILLSIDE AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4519261,Sedan,Motorscooter,,, +04/14/2022,12:20,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519170,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,11:50,MANHATTAN,10003,40.736866,-73.986084,"(40.736866, -73.986084)",,,139 EAST 19 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518935,Sedan,Box Truck,,, +04/14/2022,20:35,,,40.74925,-73.739685,"(40.74925, -73.739685)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4519056,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,23:20,MANHATTAN,10036,40.757385,-73.98226,"(40.757385, -73.98226)",AVENUE OF THE AMERICAS,WEST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519130,Sedan,Sedan,,, +04/13/2022,18:25,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518768,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/11/2022,14:10,BROOKLYN,11229,40.59487,-73.95056,"(40.59487, -73.95056)",OCEAN AVENUE,AVENUE W,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519161,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,16:00,BRONX,10456,40.828865,-73.906815,"(40.828865, -73.906815)",,,3427 3 AVENUE,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4518808,Sedan,Sedan,,, +04/14/2022,12:12,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519098,Ambulance,Sedan,,, +04/13/2022,14:15,,,40.70113,-73.96087,"(40.70113, -73.96087)",WILLIAMSBURG STREET EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518697,Tow Truck / Wrecker,Sedan,,, +04/13/2022,16:30,QUEENS,11365,40.73612,-73.793144,"(40.73612, -73.793144)",,,65-08 UTOPIA PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4519041,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,23:30,QUEENS,11358,40.764194,-73.79877,"(40.764194, -73.79877)",,,35-34 167 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4519326,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/15/2022,15:19,,,40.755398,-73.93182,"(40.755398, -73.93182)",30 STREET,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519348,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +04/14/2022,12:08,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",PRINCE STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518958,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,17:30,MANHATTAN,10128,40.783566,-73.947586,"(40.783566, -73.947586)",EAST 95 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519827,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,16:38,BROOKLYN,11215,40.667023,-73.97484,"(40.667023, -73.97484)",5 STREET,PROSPECT PARK WEST,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519894,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/14/2022,12:20,,,40.692722,-73.72673,"(40.692722, -73.72673)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518986,Sedan,Sedan,,, +04/09/2022,15:30,BROOKLYN,11233,40.684418,-73.91407,"(40.684418, -73.91407)",,,806 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519506,Sedan,,,, +04/14/2022,12:45,,,40.744526,-73.77161,"(40.744526, -73.77161)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4519288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,21:50,,,40.670467,-73.86592,"(40.670467, -73.86592)",DUMONT AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519166,Sedan,,,, +04/15/2022,7:54,,,40.784245,-73.9471,"(40.784245, -73.9471)",2 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519221,Box Truck,Sedan,,, +04/02/2022,14:15,QUEENS,11373,40.741676,-73.880806,"(40.741676, -73.880806)",,,82-66 BROADWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519565,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,20:44,,,,,,I-495 E,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519032,Pick-up Truck,,,, +04/14/2022,13:15,BROOKLYN,11233,40.67413,-73.913925,"(40.67413, -73.913925)",BOYLAND STREET,BERGEN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519602,Sedan,,,, +08/22/2021,16:00,,,,,,BELT PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4450124,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,18:35,,,,,,33 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498575,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,18:15,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",QUEENS BOULEVARD,ELIOT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519089,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,7:30,QUEENS,11434,40.681286,-73.76979,"(40.681286, -73.76979)",126 AVENUE,174 PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519339,Sedan,Sedan,,, +04/13/2022,8:20,,,40.588135,-74.15719,"(40.588135, -74.15719)",,,93 COPLEY STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,14:13,,,,,,,,100 WEST DRIVE,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4519072,E-Scooter,,,, +04/13/2022,14:50,,,40.850414,-73.93455,"(40.850414, -73.93455)",WEST 182 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518881,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,16:25,QUEENS,11101,40.754192,-73.9328,"(40.754192, -73.9328)",30 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519370,Station Wagon/Sport Utility Vehicle,Moped,,, +04/13/2022,7:33,BRONX,10458,40.867058,-73.8868,"(40.867058, -73.8868)",,,354 EAST 198 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519193,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,18:41,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",CLAREMONT PARKWAY,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519470,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/14/2022,1:37,BROOKLYN,11203,40.655884,-73.942535,"(40.655884, -73.942535)",,,451 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518819,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/13/2022,20:40,QUEENS,11377,40.745,-73.892975,"(40.745, -73.892975)",,,72-10 41 AVENUE,1,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4519198,E-Bike,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,22:30,QUEENS,11412,40.696186,-73.751976,"(40.696186, -73.751976)",116 AVENUE,201 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519334,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2022,18:40,BROOKLYN,11212,40.66339,-73.914,"(40.66339, -73.914)",DUMONT AVENUE,HERZL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4519523,Sedan,Station Wagon/Sport Utility Vehicle,PK,Station Wagon/Sport Utility Vehicle, +04/06/2022,8:30,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519855,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,9:15,,,40.82309,-73.956345,"(40.82309, -73.956345)",12 AVENUE,,,0,0,0,0,0,0,0,0,Cell Phone (hands-free),Unspecified,,,,4518927,Sedan,Sedan,,, +04/15/2022,10:18,,,40.619736,-73.98958,"(40.619736, -73.98958)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519242,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +03/31/2022,15:23,BROOKLYN,11221,40.68814,-73.92375,"(40.68814, -73.92375)",,,65A RALPH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519686,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,20:45,MANHATTAN,10007,40.713684,-74.01069,"(40.713684, -74.01069)",,,35 WEST BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519119,Taxi,Sedan,,, +04/13/2022,23:51,,,40.740364,-73.89972,"(40.740364, -73.89972)",LAUREL HILL BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,18:30,QUEENS,11105,40.769894,-73.90967,"(40.769894, -73.90967)",,,23-53 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519584,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:13,,,40.75333,-73.76573,"(40.75333, -73.76573)",BELL BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519692,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,13:20,BROOKLYN,11211,40.718224,-73.95078,"(40.718224, -73.95078)",,,40 RICHARDSON STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4519786,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/14/2022,2:50,,,40.731083,-73.83442,"(40.731083, -73.83442)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4519049,Sedan,Sedan,,, +04/14/2022,17:29,BRONX,10468,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519135,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,17:20,QUEENS,11366,40.720955,-73.80935,"(40.720955, -73.80935)",PARSONS BOULEVARD,79 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519298,Sedan,,,, +04/13/2022,11:58,MANHATTAN,10013,40.719715,-74.00236,"(40.719715, -74.00236)",,,304 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518899,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,1:50,,,,,,EAST SERVICE ROAD,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4519866,Motorcycle,,,, +08/17/2021,11:55,QUEENS,11433,,,,,,157-15 BRINKERHOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450214,Sedan,Sedan,,, +08/13/2021,13:00,QUEENS,11103,,,,,,31-57 STEINWAY STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4446745,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,4:43,,,40.726524,-73.99585,"(40.726524, -73.99585)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450293,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/21/2021,21:25,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,15:47,MANHATTAN,10012,40.73006,-73.99829,"(40.73006, -73.99829)",,,243 THOMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450287,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,15:20,BROOKLYN,11203,40.653862,-73.9296,"(40.653862, -73.9296)",EAST 51 STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4519241,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/13/2022,7:23,,,40.73807,-73.93756,"(40.73807, -73.93756)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518824,Flat Bed,Sedan,Station Wagon/Sport Utility Vehicle,, +04/13/2022,14:25,MANHATTAN,10007,40.71322,-74.01172,"(40.71322, -74.01172)",,,250 GREENWICH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518900,Sedan,,,, +04/13/2022,10:30,BROOKLYN,11206,40.701077,-73.94043,"(40.701077, -73.94043)",FLUSHING AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519628,Box Truck,Pick-up Truck,,, +04/13/2022,10:09,BROOKLYN,11215,40.666126,-73.9953,"(40.666126, -73.9953)",17 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519256,Taxi,,,, +04/13/2022,20:30,,,40.69907,-73.93548,"(40.69907, -73.93548)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518873,Sedan,Sedan,,, +04/14/2022,16:25,BROOKLYN,11217,40.68787,-73.978355,"(40.68787, -73.978355)",ASHLAND PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519077,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,4:31,,,40.76565,-73.837425,"(40.76565, -73.837425)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519273,Sedan,,,, +04/13/2022,2:15,BRONX,10451,40.82138,-73.91174,"(40.82138, -73.91174)",,,495 EAST 158 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518491,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,20:19,QUEENS,11354,40.766445,-73.829094,"(40.766445, -73.829094)",LEAVITT STREET,34 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,12:00,BROOKLYN,11206,40.70152,-73.94052,"(40.70152, -73.94052)",,,13 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519363,Station Wagon/Sport Utility Vehicle,,,, +04/09/2022,12:00,QUEENS,11103,40.76854,-73.911194,"(40.76854, -73.911194)",,,24-31 STEINWAY STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519386,Sedan,E-Scooter,,, +04/14/2022,23:40,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",WILLIS AVENUE,EAST 138 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519157,Sedan,Bike,,, +04/14/2022,3:15,,,,,,,,59 CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518802,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,1:20,BRONX,10461,40.836792,-73.84669,"(40.836792, -73.84669)",ZEREGA AVENUE,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,,,,,4519025,Dump,,,, +04/14/2022,23:40,,,40.731506,-73.895805,"(40.731506, -73.895805)",69 STREET,53 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519152,Sedan,Sedan,,, +04/14/2022,16:28,BROOKLYN,11231,40.673645,-74.004234,"(40.673645, -74.004234)",,,123 LORRAINE STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519134,Sedan,,,, +04/14/2022,15:45,BROOKLYN,11211,40.711113,-73.95621,"(40.711113, -73.95621)",MARCY AVENUE,SOUTH 2 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4519065,Station Wagon/Sport Utility Vehicle,Van,,, +04/15/2022,19:00,QUEENS,11432,40.716972,-73.80009,"(40.716972, -73.80009)",166 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519297,Sedan,,,, +04/13/2022,6:30,QUEENS,11377,40.74128,-73.90257,"(40.74128, -73.90257)",QUEENS BOULEVARD,63 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518574,Station Wagon/Sport Utility Vehicle,Bike,,, +04/14/2022,21:30,,,40.700676,-73.82726,"(40.700676, -73.82726)",123 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,11:00,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518776,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,14:50,,,40.6491,-73.94649,"(40.6491, -73.94649)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519225,Sedan,Bus,,, +04/13/2022,20:24,BROOKLYN,11221,40.697918,-73.92083,"(40.697918, -73.92083)",HARMAN STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518874,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,17:00,MANHATTAN,10019,40.766617,-73.98667,"(40.766617, -73.98667)",WEST 55 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449476,Sedan,Sedan,,, +08/22/2021,9:42,BROOKLYN,11230,40.6251,-73.96207,"(40.6251, -73.96207)",,,1418 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449695,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,14:20,,,,,,,,523 MAIN STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449574,Sedan,,,, +08/22/2021,22:25,BRONX,10466,40.885597,-73.85616,"(40.885597, -73.85616)",,,868 EAST 224 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4450112,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/20/2021,8:30,,,40.688004,-73.7569,"(40.688004, -73.7569)",120 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4450082,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,2:45,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",SUNRISE HIGHWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4449151,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,19:56,,,40.68045,-73.87586,"(40.68045, -73.87586)",CONDUIT BOULEVARD,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:35,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",WEST FORDHAM ROAD,JEROME AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,10:25,QUEENS,11412,40.692352,-73.762436,"(40.692352, -73.762436)",FARMERS BOULEVARD,DUNKIRK DRIVE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4449598,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:03,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4450042,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/20/2021,13:20,,,40.674572,-73.96314,"(40.674572, -73.96314)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4450169,Sedan,,,, +07/23/2021,14:58,QUEENS,11413,40.686398,-73.7497,"(40.686398, -73.7497)",,,122-60 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450286,Sedan,,,, +08/22/2021,1:30,,,40.809574,-73.96805,"(40.809574, -73.96805)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449161,Taxi,Sedan,,, +08/22/2021,15:35,BROOKLYN,11222,40.728565,-73.951996,"(40.728565, -73.951996)",,,209 CALYER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449610,Sedan,Sedan,,, +08/20/2021,22:40,,,40.85162,-73.8265,"(40.85162, -73.8265)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450110,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,1:15,QUEENS,11372,40.74662,-73.89359,"(40.74662, -73.89359)",ROOSEVELT AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,15:44,BRONX,10460,40.841293,-73.8828,"(40.841293, -73.8828)",EAST TREMONT AVENUE,VYSE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450016,Pick-up Truck,Pick-up Truck,,, +08/22/2021,0:35,MANHATTAN,10035,40.801815,-73.93929,"(40.801815, -73.93929)",EAST 121 STREET,LEXINGTON AVENUE,,5,0,0,0,0,0,5,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4449176,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/22/2021,16:40,BROOKLYN,11208,40.6652,-73.87941,"(40.6652, -73.87941)",HEGEMAN AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449436,Sedan,Sedan,,, +08/22/2021,14:59,BROOKLYN,11239,40.65258,-73.882225,"(40.65258, -73.882225)",,,225 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449708,Sedan,,,, +08/22/2021,21:45,BROOKLYN,11236,40.63132,-73.902336,"(40.63132, -73.902336)",EAST 85 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449741,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/22/2021,13:50,BROOKLYN,11234,40.610443,-73.93341,"(40.610443, -73.93341)",,,1918 EAST 35 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4449846,Sedan,Box Truck,,, +06/26/2021,23:20,,,40.72015,-73.93783,"(40.72015, -73.93783)",MORGAN AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4449961,Sedan,Bike,,, +08/22/2021,7:03,QUEENS,11354,40.771248,-73.84374,"(40.771248, -73.84374)",COLLEGE POINT BOULEVARD,30 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4449338,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,9:20,,,40.823257,-73.94293,"(40.823257, -73.94293)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4449282,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,15:00,,,40.69366,-73.983795,"(40.69366, -73.983795)",MYRTLE AVENUE,DUFFIELD STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450202,Sedan,,,, +08/17/2021,22:29,QUEENS,11372,40.750248,-73.89542,"(40.750248, -73.89542)",,,35-20 LEVERICH STREET,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4450230,Sedan,Sedan,,, +02/22/2022,12:37,BROOKLYN,11218,40.643833,-73.97391,"(40.643833, -73.97391)",,,183 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504874,Sedan,,,, +08/22/2021,9:00,QUEENS,11415,40.712,-73.82546,"(40.712, -73.82546)",QUEENS BOULEVARD,83 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4449321,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/22/2021,1:45,BRONX,10460,40.85106,-73.88233,"(40.85106, -73.88233)",SOUTHERN BOULEVARD,EAST 183 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4449284,Sedan,Sedan,,, +08/21/2021,5:20,,,40.76991,-73.87999,"(40.76991, -73.87999)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450135,Bus,,,, +08/22/2021,0:33,BROOKLYN,11226,40.653774,-73.95617,"(40.653774, -73.95617)",LENOX ROAD,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,,,,,,4449427,,,,, +08/22/2021,0:20,BRONX,10469,40.868362,-73.850006,"(40.868362, -73.850006)",,,2941 BOUCK AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4449235,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/22/2021,18:20,,,40.76428,-73.99859,"(40.76428, -73.99859)",12 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449950,Sedan,Box Truck,,, +08/22/2021,14:30,QUEENS,11436,40.678436,-73.80057,"(40.678436, -73.80057)",FOCH BOULEVARD,141 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449586,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,22:45,MANHATTAN,10065,40.761787,-73.95745,"(40.761787, -73.95745)",EAST 64 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449630,Station Wagon/Sport Utility Vehicle,Convertible,,, +08/22/2021,2:05,,,,,,VERRAZANO BRIDGE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4450000,Sedan,Sedan,,, +08/22/2021,23:54,,,40.850067,-73.9449,"(40.850067, -73.9449)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449762,Tanker,Sedan,,, +08/19/2021,17:05,,,40.848118,-73.93089,"(40.848118, -73.93089)",WASHINGTON BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449974,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/22/2021,2:20,,,40.85017,-73.89792,"(40.85017, -73.89792)",EAST 179 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449257,Ambulance,Sedan,,, +08/22/2021,15:20,,,40.62307,-74.149315,"(40.62307, -74.149315)",,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449370,Sedan,,,, +08/22/2021,14:00,MANHATTAN,10032,40.83439,-73.94091,"(40.83439, -73.94091)",,,2007 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4449534,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +08/22/2021,5:10,QUEENS,11369,40.75996,-73.8614,"(40.75996, -73.8614)",108 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450192,Station Wagon/Sport Utility Vehicle,PK,,, +08/22/2021,3:50,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4449738,Sedan,,,, +08/13/2021,4:00,QUEENS,11358,40.76604,-73.789986,"(40.76604, -73.789986)",192 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450066,Station Wagon/Sport Utility Vehicle,,,, +07/11/2021,16:30,BRONX,10463,40.874638,-73.90252,"(40.874638, -73.90252)",,,2907 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4450203,Sedan,Pick-up Truck,,, +08/22/2021,2:37,BROOKLYN,11207,40.660633,-73.89002,"(40.660633, -73.89002)",HEGEMAN AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449438,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,16:45,BROOKLYN,11216,40.681446,-73.94644,"(40.681446, -73.94644)",MACON STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4449502,Sedan,Sedan,Sedan,, +08/22/2021,13:22,QUEENS,11370,40.766357,-73.88756,"(40.766357, -73.88756)",82 STREET,23 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450140,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,12:40,QUEENS,11422,40.658955,-73.73995,"(40.658955, -73.73995)",,,243-33 MAYDA ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449292,Sedan,,,, +08/20/2021,12:43,,,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450041,E-Scooter,,,, +08/22/2021,2:00,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4449785,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,11:00,,,40.738758,-74.00811,"(40.738758, -74.00811)",HORATIO STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449896,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,8:43,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4450031,Sedan,,,, +08/22/2021,13:29,MANHATTAN,10010,40.73978,-73.97951,"(40.73978, -73.97951)",EAST 26 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449580,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,2:13,,,40.765392,-73.9182,"(40.765392, -73.9182)",35 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4450086,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/22/2021,0:20,,,40.714066,-73.95163,"(40.714066, -73.95163)",UNION AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4449619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/22/2021,20:35,,,40.667076,-73.99508,"(40.667076, -73.99508)",HAMILTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449514,Van,Sedan,,, +08/22/2021,4:43,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449723,Sedan,Sedan,,, +08/11/2021,8:50,QUEENS,11372,40.754257,-73.890816,"(40.754257, -73.890816)",,,33-35 76 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450173,Sedan,Sedan,,, +08/22/2021,13:36,BROOKLYN,11234,40.628387,-73.92431,"(40.628387, -73.92431)",FLATLANDS AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,Unspecified,4449447,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +08/20/2021,16:00,BROOKLYN,11233,40.67105,-73.914154,"(40.67105, -73.914154)",,,412 BOYLAND STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4450051,Sedan,,,, +08/20/2021,4:50,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450209,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,12:48,STATEN ISLAND,10306,40.56898,-74.142654,"(40.56898, -74.142654)",,,344 CLARKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449653,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,22:48,BROOKLYN,11207,40.65658,-73.88586,"(40.65658, -73.88586)",,,180 WORTMAN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4449526,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,22:30,QUEENS,11691,40.59214,-73.782425,"(40.59214, -73.782425)",EDGEMERE AVENUE,BEACH 52 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4449662,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,11:24,QUEENS,11412,40.69845,-73.751976,"(40.69845, -73.751976)",202 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4449600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,9:20,BROOKLYN,11217,40.685955,-73.98028,"(40.685955, -73.98028)",3 AVENUE,STATE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450101,Sedan,,,, +08/22/2021,0:45,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4449152,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,13:50,QUEENS,11369,40.76628,-73.86584,"(40.76628, -73.86584)",,,25-36 BUTLER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450146,Sedan,,,, +08/22/2021,15:14,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449486,Sedan,,,, +08/03/2021,0:52,,,40.843304,-73.91919,"(40.843304, -73.91919)",JESUP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4450024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,12:00,BROOKLYN,11232,40.645462,-74.00036,"(40.645462, -74.00036)",,,774 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450254,Sedan,Sedan,,, +07/18/2021,18:47,BRONX,10463,40.87892,-73.90479,"(40.87892, -73.90479)",WEST 231 STREET,BROADWAY,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4450207,Sedan,,,, +08/20/2021,22:13,,,40.767735,-73.9185,"(40.767735, -73.9185)",33 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450081,Sedan,Pick-up Truck,,, +08/22/2021,6:00,QUEENS,11427,40.72285,-73.75491,"(40.72285, -73.75491)",,,88-19 211 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4449167,Sedan,Sedan,,, +08/19/2021,14:52,BRONX,10465,40.81951,-73.817505,"(40.81951, -73.817505)",,,4041 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450111,Sedan,,,, +08/22/2021,3:50,BROOKLYN,11208,40.666725,-73.86977,"(40.666725, -73.86977)",EUCLID AVENUE,LORING AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449446,E-Bike,,,, +08/22/2021,15:30,QUEENS,11434,40.67784,-73.780266,"(40.67784, -73.780266)",161 PLACE,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4449603,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,22:15,QUEENS,11372,40.7516,-73.88275,"(40.7516, -73.88275)",,,35-59 84 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:10,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449521,LIMO,Sedan,,, +08/22/2021,14:00,BRONX,10457,40.85311,-73.8928,"(40.85311, -73.8928)",,,535 EAST 182 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450015,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,12:00,BRONX,10460,40.838905,-73.874535,"(40.838905, -73.874535)",,,390 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,21:40,BROOKLYN,11210,40.637104,-73.95268,"(40.637104, -73.95268)",,,567 EAST 26 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486452,Sedan,,,, +08/22/2021,23:54,BROOKLYN,11238,40.67752,-73.972725,"(40.67752, -73.972725)",FLATBUSH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449575,Sedan,,,, +08/17/2021,3:35,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4450240,Sedan,,,, +08/21/2021,15:36,QUEENS,11369,40.7613,-73.86527,"(40.7613, -73.86527)",ASTORIA BOULEVARD,104 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450139,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,6:58,,,40.69141,-73.72668,"(40.69141, -73.72668)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449289,Sedan,Sedan,,, +08/22/2021,0:30,,,40.701763,-73.81618,"(40.701763, -73.81618)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4449327,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,22:05,QUEENS,11373,40.737118,-73.87925,"(40.737118, -73.87925)",,,84-02 QUEENS BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449774,Sedan,,,, +08/22/2021,21:05,,,40.60864,-74.13075,"(40.60864, -74.13075)",,,245 NORTH GANNON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449477,Sedan,,,, +08/22/2021,0:00,,,40.831642,-73.876076,"(40.831642, -73.876076)",EAST 172 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449989,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,9:30,BROOKLYN,11215,40.666798,-73.9866,"(40.666798, -73.9866)",,,315 12 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450167,Sedan,,,, +06/22/2022,0:00,MANHATTAN,10024,40.788315,-73.9765,"(40.788315, -73.9765)",WEST 86 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4544965,Pick-up Truck,Bike,,, +08/22/2021,4:00,BROOKLYN,11230,40.625214,-73.96099,"(40.625214, -73.96099)",,,1510 AVENUE J,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4449694,Tractor Truck Diesel,,,, +08/22/2021,2:09,BROOKLYN,11233,,,,EASTERN PARKWAY,Thomas Boyland,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449787,Sedan,Sedan,,, +08/22/2021,9:50,QUEENS,11421,40.691563,-73.86563,"(40.691563, -73.86563)",JAMAICA AVENUE,76 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449299,Sedan,,,, +08/22/2021,1:43,,,40.84805,-73.93554,"(40.84805, -73.93554)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449533,Sedan,Tow Truck / Wrecker,,, +08/06/2021,17:07,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",PENNSYLVANIA AVENUE,BLAKE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450068,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,16:21,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450123,Sedan,Pick-up Truck,,, +08/20/2021,15:40,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450004,Sedan,Sedan,,, +08/22/2021,15:54,,,40.80562,-73.97069,"(40.80562, -73.97069)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4449467,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,19:24,,,40.836468,-73.937035,"(40.836468, -73.937035)",WEST 164 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449539,Sedan,,,, +08/11/2021,15:40,,,40.58864,-73.90874,"(40.58864, -73.90874)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450194,Sedan,Sedan,,, +08/08/2021,3:54,,,40.75167,-73.94188,"(40.75167, -73.94188)",23 STREET,QUEENS PLAZA NORTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450057,Sedan,,,, +08/22/2021,0:55,BRONX,10454,40.8078,-73.92388,"(40.8078, -73.92388)",,,177 WILLIS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4449745,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,5:05,BROOKLYN,11225,40.662846,-73.94284,"(40.662846, -73.94284)",LEFFERTS AVENUE,KINGSTON AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4449173,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,13:35,BROOKLYN,11219,40.64029,-73.994804,"(40.64029, -73.994804)",45 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449971,Bus,,,, +08/22/2021,15:00,,,,,,VANWYCK EXPRESSWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449428,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,15:00,QUEENS,11691,40.604572,-73.7569,"(40.604572, -73.7569)",,,1127 GRASSMERE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449795,Van,,,, +08/22/2021,10:54,BROOKLYN,11226,40.650093,-73.96083,"(40.650093, -73.96083)",,,2004 CHURCH AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449701,Sedan,TRUCK,,, +08/22/2021,23:20,,,40.722584,-73.8509,"(40.722584, -73.8509)",AUSTIN STREET,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,20:00,QUEENS,11370,40.75845,-73.88779,"(40.75845, -73.88779)",,,31-33 80 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450134,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,1:25,,,40.58407,-73.92344,"(40.58407, -73.92344)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4449628,Sedan,,,, +08/16/2021,20:45,BROOKLYN,11218,40.64577,-73.97486,"(40.64577, -73.97486)",,,150 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450059,Sedan,,,, +08/22/2021,18:39,BROOKLYN,11233,40.684166,-73.92931,"(40.684166, -73.92931)",REID AVENUE,HALSEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449498,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/20/2021,7:30,MANHATTAN,10002,40.716076,-73.98605,"(40.716076, -73.98605)",,,386 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449990,Box Truck,,,, +08/22/2021,2:30,,,,,,MOUNT EDEN PARKWAY,Jerome Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450032,PK,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/22/2021,0:05,,,40.843246,-73.94505,"(40.843246, -73.94505)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449537,Sedan,,,, +08/22/2021,19:55,BROOKLYN,11234,40.620495,-73.93458,"(40.620495, -73.93458)",,,2021 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4449845,,,,, +08/22/2021,6:00,,,40.794052,-73.970375,"(40.794052, -73.970375)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449220,Taxi,Sedan,,, +08/22/2021,5:07,BROOKLYN,11218,40.643303,-73.974106,"(40.643303, -73.974106)",OCEAN PARKWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,10:00,BROOKLYN,11205,40.69386,-73.96222,"(40.69386, -73.96222)",EMERSON PLACE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449337,Sedan,,,, +08/22/2021,20:00,MANHATTAN,10029,40.79726,-73.94053,"(40.79726, -73.94053)",EAST 115 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449667,Bike,,,, +08/22/2021,8:15,,,40.885426,-73.897446,"(40.885426, -73.897446)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Pavement Slippery,,,,,4449485,Sedan,,,, +08/22/2021,14:00,BROOKLYN,11204,40.616123,-73.979065,"(40.616123, -73.979065)",61 STREET,BAY PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4449639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,23:37,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",31 STREET,NEWTOWN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4450085,Sedan,,,, +08/22/2021,8:55,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449579,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,23:00,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450103,Taxi,Sedan,,, +07/06/2022,19:58,BRONX,10466,40.893402,-73.8515,"(40.893402, -73.8515)",BUSSING AVENUE,DIGNEY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544805,Sedan,Sedan,,, +08/18/2021,18:00,QUEENS,11368,40.743332,-73.85496,"(40.743332, -73.85496)",108 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4450148,Pick-up Truck,Sedan,,, +08/22/2021,2:07,BROOKLYN,11218,40.652233,-73.98122,"(40.652233, -73.98122)",,,99 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450021,Sedan,,,, +08/14/2021,10:15,BRONX,10468,40.87004,-73.8997,"(40.87004, -73.8997)",WEST 195 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450215,Sedan,,,, +08/22/2021,18:05,BROOKLYN,11212,40.667706,-73.90636,"(40.667706, -73.90636)",STONE AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449788,Sedan,Sedan,,, +08/22/2021,11:48,BRONX,10468,40.867474,-73.89741,"(40.867474, -73.89741)",JEROME AVENUE,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449296,Sedan,Sedan,,, +08/22/2021,12:30,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4449307,Sedan,,,, +08/22/2021,2:04,BROOKLYN,11212,40.66049,-73.90839,"(40.66049, -73.90839)",,,785 ROCKAWAY AVENUE,8,0,0,0,0,0,8,0,Alcohol Involvement,Other Vehicular,Unspecified,,,4449724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/19/2021,16:30,QUEENS,11372,40.755554,-73.885376,"(40.755554, -73.885376)",82 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4450145,Sedan,,,, +08/22/2021,15:08,,,40.69596,-73.964096,"(40.69596, -73.964096)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449346,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,1:30,,,40.857166,-73.92824,"(40.857166, -73.92824)",FAIRVIEW AVENUE,FORT GEORGE HILL,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449781,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,0:00,QUEENS,11370,40.75567,-73.8892,"(40.75567, -73.8892)",,,32-64 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450172,Sedan,,,, +08/22/2021,14:05,,,40.836155,-73.87179,"(40.836155, -73.87179)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449460,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,12:20,BROOKLYN,11212,40.67075,-73.91439,"(40.67075, -73.91439)",,,1419 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449904,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,20:51,BRONX,10463,40.875683,-73.90839,"(40.875683, -73.90839)",BROADWAY,WEST 228 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4450213,Station Wagon/Sport Utility Vehicle,Bike,,, +08/22/2021,10:03,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4449246,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,21:30,BROOKLYN,11212,40.663513,-73.90241,"(40.663513, -73.90241)",,,395 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4449725,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/22/2021,22:52,QUEENS,11355,40.75372,-73.83283,"(40.75372, -73.83283)",COLLEGE POINT BOULEVARD,MAPLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4449867,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/22/2021,14:11,BRONX,10461,40.838837,-73.84424,"(40.838837, -73.84424)",,,2511 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4449976,Sedan,,,, +08/22/2021,8:20,BRONX,10466,40.890354,-73.84175,"(40.890354, -73.84175)",STRANG AVENUE,DEREIMER AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4449274,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +08/22/2021,6:10,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449345,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,23:45,BROOKLYN,11234,40.59651,-73.90788,"(40.59651, -73.90788)",FLATBUSH AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4450195,Sedan,,,, +08/18/2021,0:00,,,,,,W 230 st,Hudson River parkway,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450205,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,2:15,BROOKLYN,11207,40.660217,-73.89675,"(40.660217, -73.89675)",NEW LOTS AVENUE,WILLIAMS AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4449443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,17:50,QUEENS,11433,40.69182,-73.78779,"(40.69182, -73.78779)",BREWER BOULEVARD,111 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4449604,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/09/2021,11:15,QUEENS,11370,40.765743,-73.89239,"(40.765743, -73.89239)",,,75-20 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450175,Sedan,,,, +08/22/2021,0:50,BRONX,10456,40.83639,-73.91588,"(40.83639, -73.91588)",GRAND CONCOURSE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4450019,Ambulance,Taxi,,, +08/22/2021,20:10,QUEENS,11372,40.75423,-73.88019,"(40.75423, -73.88019)",,,87-10 34 AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4450138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/22/2021,12:42,,,,,,MOSHOLU PARKWAY,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449286,Sedan,,,, +08/22/2021,18:04,BROOKLYN,11229,40.60324,-73.95016,"(40.60324, -73.95016)",,,1968 EAST 22 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449478,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,0:40,,,40.63725,-74.149124,"(40.63725, -74.149124)",,,2644 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449217,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,1:36,BROOKLYN,11203,40.651005,-73.94571,"(40.651005, -73.94571)",CHURCH AVENUE,EAST 34 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449430,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,20:34,BRONX,10459,40.822105,-73.90062,"(40.822105, -73.90062)",EAST 163 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449719,,,,, +08/22/2021,4:45,QUEENS,11432,40.715572,-73.77493,"(40.715572, -73.77493)",,,187-52 WEXFORD TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449398,Convertible,,,, +08/04/2021,16:09,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450084,Sedan,Concrete Mixer,,, +08/22/2021,18:22,,,40.852383,-73.92048,"(40.852383, -73.92048)",SEDGWICK AVENUE,CEDAR AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4449931,Carry All,Sedan,,, +08/22/2021,13:15,BROOKLYN,11215,40.672375,-73.972145,"(40.672375, -73.972145)",,,931 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449522,Sedan,,,, +08/22/2021,14:01,BRONX,10468,40.859974,-73.900795,"(40.859974, -73.900795)",MORRIS AVENUE,EAST 184 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449770,Taxi,,,, +08/21/2021,15:30,,,40.70187,-73.76202,"(40.70187, -73.76202)",194 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449965,Sedan,,,, +08/22/2021,14:15,BRONX,10454,40.810726,-73.92465,"(40.810726, -73.92465)",EAST 139 STREET,ALEXANDER AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4449838,Bike,,,, +08/22/2021,19:00,QUEENS,11420,40.666855,-73.80425,"(40.666855, -73.80425)",NORTH CONDUIT AVENUE,135 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4449594,Sedan,Sedan,,, +07/07/2022,21:50,,,,,,PECK AVENUE,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544584,Sedan,,,, +08/21/2021,1:07,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,SOUTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4450046,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,22:00,,,40.67561,-73.941025,"(40.67561, -73.941025)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450166,Sedan,,,, +08/22/2021,20:37,QUEENS,11358,40.765358,-73.80237,"(40.765358, -73.80237)",163 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4449509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/13/2021,10:30,BRONX,10451,40.81706,-73.921524,"(40.81706, -73.921524)",,,282 EAST 149 STREET,1,0,1,0,0,0,0,0,,,,,,4450075,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,17:44,,,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,,,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4449497,Sedan,E-Scooter,,, +08/22/2021,4:32,,,40.608906,-74.03452,"(40.608906, -74.03452)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4449168,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,13:16,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450104,Bus,Sedan,,, +08/22/2021,11:10,QUEENS,11368,40.746906,-73.86371,"(40.746906, -73.86371)",NATIONAL STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449329,Sedan,Bike,,, +08/22/2021,9:45,MANHATTAN,10110,40.753586,-73.98083,"(40.753586, -73.98083)",,,500 5 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4449562,Bus,Bus,,, +08/17/2021,20:23,,,40.838383,-73.91902,"(40.838383, -73.91902)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4450242,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,5:00,QUEENS,11368,40.756485,-73.86731,"(40.756485, -73.86731)",,,33-52 101 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450161,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,19:21,,,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450028,Sedan,Sedan,,, +08/22/2021,10:58,QUEENS,11377,40.74614,-73.91431,"(40.74614, -73.91431)",50 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449576,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,8:16,MANHATTAN,10029,40.79766,-73.94231,"(40.79766, -73.94231)",,,1829 LEXINGTON AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4449697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +08/22/2021,3:52,,,40.829422,-73.9319,"(40.829422, -73.9319)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4450035,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/22/2021,22:12,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449530,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,13:03,BRONX,10473,40.819427,-73.84497,"(40.819427, -73.84497)",HAVEMEYER AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,19:06,QUEENS,11418,40.695053,-73.82381,"(40.695053, -73.82381)",ATLANTIC AVENUE,124 STREET,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450088,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/20/2021,12:15,BRONX,10467,40.872032,-73.86824,"(40.872032, -73.86824)",,,3224 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450115,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,20:27,BROOKLYN,11236,40.633053,-73.91053,"(40.633053, -73.91053)",,,1047 EAST 80 STREET,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4449743,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,12:45,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4450005,Sedan,Sedan,Sedan,, +08/22/2021,0:00,QUEENS,11365,40.736362,-73.79311,"(40.736362, -73.79311)",UTOPIA PARKWAY,65 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449583,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:00,BROOKLYN,11204,40.630672,-73.981895,"(40.630672, -73.981895)",17 AVENUE,47 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4449642,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,21:00,QUEENS,11368,40.753983,-73.868675,"(40.753983, -73.868675)",,,99-12 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450171,Sedan,,,, +08/22/2021,13:40,STATEN ISLAND,10309,40.53735,-74.22253,"(40.53735, -74.22253)",,,134 SHARROTTS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450053,Station Wagon/Sport Utility Vehicle,Motorcycle,Station Wagon/Sport Utility Vehicle,, +08/20/2021,15:55,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,16:44,MANHATTAN,10002,,,,,,41 MONROE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,20:07,BRONX,10468,40.882835,-73.888016,"(40.882835, -73.888016)",GOULDEN AVENUE,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4450216,Sedan,Sedan,,, +08/19/2021,7:00,,,,,,GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450061,Sedan,Sedan,,, +08/22/2021,1:20,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449156,Station Wagon/Sport Utility Vehicle,,,, +08/16/2021,17:45,QUEENS,11368,40.7513,-73.859085,"(40.7513, -73.859085)",,,39-18 108 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450150,Sedan,,,, +08/21/2021,5:58,,,40.869144,-73.92215,"(40.869144, -73.92215)",SEAMAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/22/2021,18:40,,,40.69603,-73.943535,"(40.69603, -73.943535)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449507,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,2:32,,,40.667095,-73.92276,"(40.667095, -73.92276)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:09,QUEENS,11429,40.71185,-73.745026,"(40.71185, -73.745026)",104 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449308,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,0:10,,,40.86287,-73.934784,"(40.86287, -73.934784)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4449782,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,2:40,QUEENS,11368,40.7574,-73.864586,"(40.7574, -73.864586)",,,33-02 104 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450133,Sedan,Sedan,Sedan,, +08/20/2021,20:50,,,40.84299,-73.91099,"(40.84299, -73.91099)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450029,AMBULANCE,Sedan,,, +08/22/2021,23:51,BROOKLYN,11207,40.654846,-73.88569,"(40.654846, -73.88569)",COZINE AVENUE,VERMONT STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4449589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,9:45,MANHATTAN,10065,40.765675,-73.964745,"(40.765675, -73.964745)",,,160 EAST 65 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449627,Sedan,Sedan,,, +08/22/2021,7:09,,,40.83553,-73.86317,"(40.83553, -73.86317)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4449993,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,20:20,QUEENS,,40.72013,-73.79038,"(40.72013, -73.79038)",GRAND CENTRAL PARKWAY,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449720,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,0:00,QUEENS,11429,40.704082,-73.73813,"(40.704082, -73.73813)",113 AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449378,Sedan,Sedan,,, +08/22/2021,8:25,BRONX,10472,40.830986,-73.871,"(40.830986, -73.871)",,,1248 CROES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449459,Sedan,,,, +08/20/2021,15:35,BRONX,10463,40.880337,-73.90434,"(40.880337, -73.90434)",,,214 WEST 232 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450212,Sedan,,,, +08/22/2021,5:19,,,40.81828,-73.93409,"(40.81828, -73.93409)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,,,,,4449251,Sedan,,,, +07/09/2021,14:00,QUEENS,11372,40.7549,-73.89169,"(40.7549, -73.89169)",,,75-09 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450179,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,5:00,BRONX,10470,40.901367,-73.86425,"(40.901367, -73.86425)",,,450 EAST 240 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4449726,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/22/2021,20:41,,,40.59987,-74.00839,"(40.59987, -74.00839)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449536,Sedan,Sedan,,, +08/21/2021,23:00,QUEENS,11372,40.755825,-73.876884,"(40.755825, -73.876884)",,,33-27 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450143,Sedan,,,, +08/22/2021,15:38,,,40.749184,-73.758194,"(40.749184, -73.758194)",HORACE HARDING EXPRESSWAY,220 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449401,PK,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,13:10,BRONX,10462,40.855743,-73.86195,"(40.855743, -73.86195)",,,2158 MULINER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449473,Sedan,,,, +08/16/2021,20:28,BRONX,10458,40.85611,-73.88252,"(40.85611, -73.88252)",CROTONA AVENUE,EAST 189 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450011,Sedan,,,, +08/22/2021,1:00,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4449884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/22/2021,18:30,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449940,Sedan,,,, +08/22/2021,3:49,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Other Vehicular,Alcohol Involvement,,,,4449237,Sedan,Sedan,,, +08/22/2021,11:30,BROOKLYN,11219,40.635445,-73.99431,"(40.635445, -73.99431)",,,1215 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449637,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,23:37,,,,,,PROSPECT STREET,JAY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544465,Sedan,Sedan,,, +08/22/2021,17:59,BROOKLYN,11236,40.639053,-73.881584,"(40.639053, -73.881584)",SEAVIEW AVENUE,EAST 108 STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4449742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,2:50,,,40.88893,-73.83644,"(40.88893, -73.83644)",EAST 233 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449177,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,15:58,QUEENS,11379,40.71638,-73.89751,"(40.71638, -73.89751)",ELIOT AVENUE,MOUNT OLIVET CRESCENT,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4449482,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/22/2021,15:29,,,40.702667,-73.86516,"(40.702667, -73.86516)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449851,Sedan,Sedan,,, +08/22/2021,18:25,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449710,Sedan,Sedan,,, +08/22/2021,13:45,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4449339,Sedan,,,, +08/21/2021,13:20,BRONX,10469,40.87307,-73.84424,"(40.87307, -73.84424)",EASTCHESTER ROAD,BURKE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4450113,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,12:02,BROOKLYN,11219,40.632015,-73.99167,"(40.632015, -73.99167)",52 STREET,14 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450079,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,16:00,,,40.63742,-74.13378,"(40.63742, -74.13378)",,,151 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4449566,Sedan,Pick-up Truck,,, +08/22/2021,19:24,BROOKLYN,11208,40.660755,-73.87611,"(40.660755, -73.87611)",WORTMAN AVENUE,LINWOOD STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449524,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,6:19,BRONX,10457,40.847393,-73.90463,"(40.847393, -73.90463)",EAST 176 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4450018,Sedan,Garbage or Refuse,,, +08/21/2021,2:40,BRONX,10457,40.846516,-73.89537,"(40.846516, -73.89537)",EAST TREMONT AVENUE,MONTEREY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450045,Sedan,Sedan,,, +08/22/2021,3:50,,,40.735413,-73.91835,"(40.735413, -73.91835)",48 STREET,LAUREL HILL BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449578,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,12:05,STATEN ISLAND,10307,40.51599,-74.23871,"(40.51599, -74.23871)",CRAIG AVENUE,HECKER STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4449333,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,22:35,BRONX,10469,40.8733,-73.853645,"(40.8733, -73.853645)",BOSTON ROAD,EAST GUN HILL ROAD,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4450246,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,11:55,,,40.66345,-73.94554,"(40.66345, -73.94554)",BROOKLYN AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449285,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/06/2021,16:05,QUEENS,11375,40.729607,-73.85134,"(40.729607, -73.85134)",66 AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450136,Sedan,,,, +08/22/2021,1:51,BROOKLYN,11249,40.713593,-73.96595,"(40.713593, -73.96595)",,,56 SOUTH 3 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4449766,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,17:56,,,40.852726,-73.93443,"(40.852726, -73.93443)",BROADWAY,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449964,Taxi,Bike,,, +08/22/2021,18:03,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4449431,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,9:50,,,40.663685,-73.803085,"(40.663685, -73.803085)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4449596,Sedan,,,, +08/22/2021,9:40,BROOKLYN,11236,40.62897,-73.90323,"(40.62897, -73.90323)",EAST 80 STREET,PAERDEGAT 12 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/22/2021,14:05,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",FOSTER AVENUE,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4449696,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,11:35,BRONX,10460,40.843437,-73.87965,"(40.843437, -73.87965)",,,988 EAST 180 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4449281,Sedan,Sedan,Sedan,, +08/22/2021,1:07,BROOKLYN,11215,40.67297,-73.97162,"(40.67297, -73.97162)",,,906 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449171,Sedan,Sedan,Sedan,, +08/22/2021,10:43,,,40.826836,-73.92263,"(40.826836, -73.92263)",EAST 161 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449494,AMBULANCE,Sedan,,, +08/21/2021,10:52,,,40.885517,-73.894684,"(40.885517, -73.894684)",BAILEY AVENUE,VANCORTLANDT AVENUE WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450204,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,8:00,,,40.748737,-73.758385,"(40.748737, -73.758385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449608,Sedan,Lift Boom,,, +08/22/2021,10:05,BROOKLYN,11207,40.663795,-73.89577,"(40.663795, -73.89577)",,,514 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4449439,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,17:10,,,40.706215,-73.75648,"(40.706215, -73.75648)",HOLLIS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4450083,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +08/21/2021,16:30,BROOKLYN,11213,40.665688,-73.939766,"(40.665688, -73.939766)",ALBANY AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450106,Sedan,,,, +08/22/2021,18:43,BRONX,10452,40.831974,-73.9235,"(40.831974, -73.9235)",RIVER AVENUE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450027,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/08/2021,22:10,BROOKLYN,11213,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4450164,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,15:35,BROOKLYN,11213,40.665688,-73.939766,"(40.665688, -73.939766)",ALBANY AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4449510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/21/2021,18:50,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4450039,Motorbike,Sedan,,, +08/17/2021,16:25,BROOKLYN,11234,,,,,,5602 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,,,,,4450197,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,16:20,BROOKLYN,11233,40.683743,-73.913506,"(40.683743, -73.913506)",,,737 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449733,,,,, +08/14/2021,3:00,QUEENS,11372,40.75053,-73.876884,"(40.75053, -73.876884)",37 AVENUE,90 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450224,Station Wagon/Sport Utility Vehicle,Bike,,, +07/05/2022,15:46,BROOKLYN,11215,40.676147,-73.98391,"(40.676147, -73.98391)",4 AVENUE,CARROLL STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544944,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/22/2021,0:00,STATEN ISLAND,10304,40.608673,-74.0828,"(40.608673, -74.0828)",STEUBEN STREET,WESER AVENUE,,7,0,0,0,0,0,7,0,Driver Inattention/Distraction,Unsafe Speed,,,,4449791,Sedan,Sedan,,, +08/20/2021,11:45,QUEENS,11369,40.761078,-73.875946,"(40.761078, -73.875946)",,,30-25 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450141,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,21:40,QUEENS,11432,40.7168,-73.78723,"(40.7168, -73.78723)",EDGERTON BOULEVARD,HENLEY ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4449721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:00,,,,,,CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4449294,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/22/2021,17:25,BROOKLYN,11234,40.62487,-73.93333,"(40.62487, -73.93333)",,,1927 TROY AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,Backing Unsafely,,,,4449413,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,21:30,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449975,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,0:50,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4449941,,,,, +08/22/2021,11:00,QUEENS,11377,40.739025,-73.89408,"(40.739025, -73.89408)",47 AVENUE,70 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4449254,Sedan,Sedan,,, +08/18/2021,21:38,BROOKLYN,11213,40.67058,-73.93096,"(40.67058, -73.93096)",UTICA AVENUE,SAINT JOHNS PLACE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450165,Station Wagon/Sport Utility Vehicle,MOPPED,,, +08/11/2021,23:00,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450247,Sedan,Sedan,Sedan,, +08/22/2021,13:32,BRONX,10452,40.833626,-73.92615,"(40.833626, -73.92615)",WEST 165 STREET,ANDERSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450030,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,21:42,,,40.729797,-73.97481,"(40.729797, -73.97481)",AVENUE C,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4449582,Sedan,Bike,,, +08/22/2021,1:04,QUEENS,11106,40.761166,-73.923645,"(40.761166, -73.923645)",,,33-05 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4450087,Sedan,,,, +08/18/2021,16:18,BRONX,10461,,,,,,34 MARCONI STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450100,Sedan,Sedan,,, +08/22/2021,2:51,BROOKLYN,11233,40.67657,-73.91519,"(40.67657, -73.91519)",,,2158 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449157,Sedan,Pick-up Truck,,, +08/22/2021,14:00,,,40.88305,-73.89983,"(40.88305, -73.89983)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4450211,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,10:39,,,40.85396,-73.90944,"(40.85396, -73.90944)",WEST BURNSIDE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449636,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,6:23,,,40.632294,-73.96678,"(40.632294, -73.96678)",FOSTER AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4449691,Sedan,Sedan,,, +08/03/2021,11:39,QUEENS,11368,40.75744,-73.86186,"(40.75744, -73.86186)",,,33-10 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450158,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,17:30,QUEENS,11356,40.789455,-73.84679,"(40.789455, -73.84679)",9 AVENUE,COLLEGE PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4449505,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/02/2021,21:20,,,40.86404,-73.89245,"(40.86404, -73.89245)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4449997,Sedan,Taxi,,, +08/22/2021,19:27,BROOKLYN,11214,40.606987,-74.00057,"(40.606987, -74.00057)",,,1865 85 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4449535,Sedan,Sedan,,, +08/21/2021,15:00,BROOKLYN,11249,40.70438,-73.96402,"(40.70438, -73.96402)",,,67 WILSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450185,Sedan,,,, +08/22/2021,15:55,STATEN ISLAND,10305,0,0,"(0.0, 0.0)",MASON AVENUE,LIBERTY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449646,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,11:21,QUEENS,11423,40.7157,-73.77389,"(40.7157, -73.77389)",,,87-86 188 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4449376,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,10:18,MANHATTAN,10025,,,,COLUMBUS AVENUE,WEST 106 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449236,Sedan,Sedan,,, +08/22/2021,2:05,MANHATTAN,10034,40.864086,-73.918015,"(40.864086, -73.918015)",,,401 WEST 207 STREET,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4449783,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,17:27,BRONX,10457,40.84991,-73.89452,"(40.84991, -73.89452)",,,4343 3 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450014,Sedan,Sedan,,, +08/22/2021,13:15,BRONX,10467,40.865406,-73.86883,"(40.865406, -73.86883)",,,657 ALLERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449474,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,13:45,,,40.64385,-73.87576,"(40.64385, -73.87576)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4449449,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,4:00,MANHATTAN,10002,40.71695,-73.98032,"(40.71695, -73.98032)",,,49 COLUMBIA STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449889,Sedan,,,, +08/21/2021,16:55,,,,,,GRAND ARMY PLAZA,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450170,Sedan,Sedan,,, +08/22/2021,8:00,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ELTON STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449527,Sedan,,,, +08/22/2021,3:22,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449587,Taxi,Sedan,,, +08/15/2021,17:45,QUEENS,11372,40.74845,-73.892654,"(40.74845, -73.892654)",,,37-08 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450130,Sedan,Sedan,,, +08/19/2021,8:20,,,40.73718,-73.932014,"(40.73718, -73.932014)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,19:45,BROOKLYN,11229,40.61127,-73.95048,"(40.61127, -73.95048)",,,2314 AVENUE P,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449624,Sedan,,,, +08/22/2021,21:15,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449513,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,18:42,BRONX,10457,,,,,,4422 THIRD AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4450040,Bus,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,14:00,,,40.604485,-74.070656,"(40.604485, -74.070656)",STATEN ISLAND EXPRESSWAY,,,5,0,0,0,0,0,5,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4450052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/03/2021,11:10,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450080,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,20:00,,,40.62811,-74.1421,"(40.62811, -74.1421)",,,619 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4449567,Sedan,Sedan,Sedan,Sedan, +07/07/2022,19:00,QUEENS,11419,40.683903,-73.82496,"(40.683903, -73.82496)",107 AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544394,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,0:36,QUEENS,11385,40.706753,-73.91437,"(40.706753, -73.91437)",SENECA AVENUE,STANHOPE STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544709,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,5:14,BRONX,10459,40.822235,-73.88746,"(40.822235, -73.88746)",BRUCKNER EXPRESSWAY,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519669,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2022,13:29,QUEENS,11356,40.78627,-73.8359,"(40.78627, -73.8359)",,,132-15 14 AVENUE,1,0,0,0,0,0,0,0,Failure to Keep Right,View Obstructed/Limited,,,,4519108,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/11/2022,15:53,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4519388,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +03/24/2022,15:00,,,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519631,Box Truck,Tow Truck / Wrecker,,, +04/13/2022,23:40,,,40.63698,-73.936554,"(40.63698, -73.936554)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519418,Sedan,Sedan,,, +04/15/2022,19:10,BROOKLYN,11215,40.675175,-73.98471,"(40.675175, -73.98471)",1 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519903,Sedan,Bike,,, +04/13/2022,7:38,,,40.756725,-73.96,"(40.756725, -73.96)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4518820,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2022,18:20,QUEENS,11422,40.67452,-73.736084,"(40.67452, -73.736084)",234 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519018,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,1:49,,,40.844734,-73.89935,"(40.844734, -73.89935)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,19:55,,,40.66095,-73.92906,"(40.66095, -73.92906)",RUTLAND ROAD,REMSEN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519226,Sedan,,,, +04/14/2022,8:44,BRONX,10474,40.81651,-73.88987,"(40.81651, -73.88987)",LAFAYETTE AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4519048,Sedan,Sedan,,, +04/14/2022,17:20,QUEENS,11368,40.744545,-73.86782,"(40.744545, -73.86782)",,,45-02 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4519211,Sedan,,,, +04/15/2022,17:27,QUEENS,11365,40.74216,-73.804436,"(40.74216, -73.804436)",164 STREET,BOOTH MEMORIAL AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4519399,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/13/2022,13:32,QUEENS,11237,40.70431,-73.9133,"(40.70431, -73.9133)",CYPRESS AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518843,Ambulance,Sedan,,, +03/26/2022,22:56,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Unspecified,,,,4519724,Sedan,Bike,,, +04/15/2022,8:30,BROOKLYN,11215,40.66922,-73.98462,"(40.66922, -73.98462)",,,317 8 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519910,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,0:30,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519179,Sedan,,,, +04/15/2022,23:44,,,40.77631,-73.96423,"(40.77631, -73.96423)",EAST 78 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519811,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,21:56,BRONX,10454,40.807507,-73.92701,"(40.807507, -73.92701)",EAST 134 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519877,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,1:30,BRONX,10458,40.875576,-73.88609,"(40.875576, -73.88609)",,,3154 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4519146,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/15/2022,2:33,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,197 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519097,Sedan,,,, +04/15/2022,8:38,BRONX,10468,40.871193,-73.892715,"(40.871193, -73.892715)",,,17 EAST 198 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519194,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,14:45,QUEENS,11694,40.57826,-73.849335,"(40.57826, -73.849335)",,,413 BEACH 129 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518692,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,16:00,,,40.74376,-73.90003,"(40.74376, -73.90003)",WOODSIDE AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4518732,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,16:29,BROOKLYN,11220,40.64143,-74.02098,"(40.64143, -74.02098)",61 STREET,3 AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519284,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,16:53,MANHATTAN,10039,40.82732,-73.93884,"(40.82732, -73.93884)",,,301 WEST 152 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544177,Sedan,,,, +04/14/2022,21:22,BROOKLYN,11219,40.62764,-73.99657,"(40.62764, -73.99657)",NEW UTRECHT AVENUE,60 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4519517,Taxi,,,, +04/13/2022,11:38,MANHATTAN,10002,40.71696,-73.994484,"(40.71696, -73.994484)",,,65 CHRYSTIE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4518950,Bike,,,, +04/15/2022,13:30,QUEENS,11208,40.683186,-73.86631,"(40.683186, -73.86631)",ATLANTIC AVENUE,ELDERTS LANE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519450,Pick-up Truck,Sedan,,, +04/14/2022,16:26,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4519237,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2022,11:52,BROOKLYN,11221,,,,Evergreen avenue,Hancock,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519140,Sedan,Sedan,,, +04/13/2022,20:00,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518796,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,10:20,,,40.6026,-74.01491,"(40.6026, -74.01491)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4519269,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2022,9:45,QUEENS,11372,40.75487,-73.891884,"(40.75487, -73.891884)",75 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4519006,Sedan,E-Bike,,, +04/14/2022,4:45,QUEENS,11105,40.769875,-73.90972,"(40.769875, -73.90972)",,,23-54 STEINWAY STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4519252,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2022,21:35,BROOKLYN,11236,40.642242,-73.910774,"(40.642242, -73.910774)",FARRAGUT ROAD,EAST 88 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519695,Bus,,,, +04/12/2022,15:56,QUEENS,11105,40.77579,-73.90075,"(40.77579, -73.90075)",,,41-18 20 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519573,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,6:20,,,40.746555,-73.82621,"(40.746555, -73.82621)",MAIN STREET,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519274,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/13/2022,12:50,QUEENS,11379,40.71106,-73.87904,"(40.71106, -73.87904)",,,67-53 73 PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519114,Sedan,,,, +04/14/2022,14:53,QUEENS,11375,40.7334,-73.84985,"(40.7334, -73.84985)",,,63-64 108 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519893,Sedan,,,, +04/13/2022,8:40,BRONX,10469,40.870426,-73.84619,"(40.870426, -73.84619)",,,1360 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518666,Pick-up Truck,Sedan,,, +04/13/2022,8:30,,,40.667976,-73.79814,"(40.667976, -73.79814)",135 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518905,Sedan,,,, +04/13/2022,14:00,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHAMBERS STREET,CHURCH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518960,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,23:15,QUEENS,11417,40.68467,-73.83493,"(40.68467, -73.83493)",,,103-14 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519766,Sedan,Sedan,,, +04/13/2022,13:40,BRONX,10472,0,0,"(0.0, 0.0)",WHEELER AVENUE,WESTCHESTER AVENUE,,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4518712,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/13/2022,10:45,QUEENS,11691,40.597443,-73.746346,"(40.597443, -73.746346)",,,12-04 PLAINVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518827,Sedan,Sedan,,, +04/12/2022,22:00,,,40.61269,-73.982666,"(40.61269, -73.982666)",WEST 8 STREET,,,1,0,1,0,0,0,0,0,,,,,,4519313,,,,, +04/13/2022,1:00,BROOKLYN,11234,40.62739,-73.925835,"(40.62739, -73.925835)",FLATLANDS AVENUE,EAST 52 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519059,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/15/2022,13:25,,,40.731945,-73.747444,"(40.731945, -73.747444)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4519456,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/10/2022,23:26,,,,,,BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4519338,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/14/2022,9:10,QUEENS,11375,40.733616,-73.85253,"(40.733616, -73.85253)",YELLOWSTONE BOULEVARD,63 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,14:50,BROOKLYN,11234,40.63321,-73.92259,"(40.63321, -73.92259)",EAST 56 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2022,11:40,QUEENS,11373,40.73599,-73.86551,"(40.73599, -73.86551)",JUNCTION BOULEVARD,58 AVENUE,,2,0,0,0,2,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519206,Bus,Bike,,, +04/13/2022,15:00,STATEN ISLAND,10308,40.5377,-74.15002,"(40.5377, -74.15002)",HYLAN BOULEVARD,ARMSTRONG AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4518781,Sedan,Pick-up Truck,,, +03/28/2022,11:00,,,40.6727,-73.93635,"(40.6727, -73.93635)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519567,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,8:15,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519280,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,5:00,MANHATTAN,10013,40.718456,-73.99482,"(40.718456, -73.99482)",BOWERY,GRAND STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4518832,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,18:55,,,,,,PELHAM PARKWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519174,Sedan,Sedan,,, +04/11/2022,21:00,,,40.697582,-73.94965,"(40.697582, -73.94965)",MARCY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519636,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,7:00,,,40.61785,-73.988075,"(40.61785, -73.988075)",65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519490,Sedan,Bus,,, +04/15/2022,23:14,MANHATTAN,10022,40.75545,-73.962105,"(40.75545, -73.962105)",EAST 54 STREET,SUTTON PLACE SOUTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519381,Sedan,Bike,,, +04/15/2022,14:30,,,,,,HORACE HARDING EXPRESSWAY,MARATHON PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519306,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/13/2022,19:28,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519349,Sedan,,,, +04/15/2022,20:24,,,40.76363,-73.9533,"(40.76363, -73.9533)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519828,Sedan,,,, +04/10/2022,22:00,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4519674,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/07/2022,20:40,,,,,,PROSPECT EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,4519424,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/15/2022,21:26,,,40.74835,-73.967865,"(40.74835, -73.967865)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519715,Sedan,Pick-up Truck,,, +04/15/2022,19:15,BROOKLYN,11208,40.683105,-73.874115,"(40.683105, -73.874115)",FULTON STREET,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,9:15,BROOKLYN,11208,40.665596,-73.87431,"(40.665596, -73.87431)",LINDEN BOULEVARD,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519169,Sedan,Sedan,,, +04/14/2022,11:09,MANHATTAN,10065,40.76342,-73.9613,"(40.76342, -73.9613)",,,325 EAST 64 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4519126,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2022,7:10,QUEENS,11365,40.747612,-73.792366,"(40.747612, -73.792366)",UTOPIA PARKWAY,PIDGEON MEADOW ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519052,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,10:44,QUEENS,11429,40.707306,-73.75122,"(40.707306, -73.75122)",HOLLIS AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519375,Sedan,,,, +04/14/2022,9:18,,,40.791496,-73.97224,"(40.791496, -73.97224)",WEST 92 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519807,Sedan,Box Truck,,, +04/09/2022,1:39,QUEENS,11357,40.79031,-73.811905,"(40.79031, -73.811905)",CLINTONVILLE STREET,12 ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519477,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/08/2022,16:00,MANHATTAN,10033,40.847427,-73.931404,"(40.847427, -73.931404)",AMSTERDAM AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519700,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,13:24,BROOKLYN,11229,40.59487,-73.95056,"(40.59487, -73.95056)",OCEAN AVENUE,AVENUE W,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519162,Sedan,Sedan,,, +04/13/2022,16:41,BROOKLYN,11233,40.67922,-73.90405,"(40.67922, -73.90405)",BROADWAY,CONWAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,19:13,QUEENS,11368,40.7366,-73.856674,"(40.7366, -73.856674)",,,98-15 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4519549,TRUCK,Sedan,,, +04/15/2022,23:10,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519757,Sedan,,,, +01/30/2022,16:47,,,,,,WYCKOFF AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498712,Sedan,,,, +04/15/2022,11:55,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519248,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,1:20,BRONX,10460,40.84269,-73.88737,"(40.84269, -73.88737)",ELSMERE PLACE,MARMION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518598,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,17:00,BRONX,10467,40.873787,-73.8623,"(40.873787, -73.8623)",,,831 BARTHOLDI STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519002,Sedan,,,, +04/11/2022,9:53,MANHATTAN,10023,40.778625,-73.97958,"(40.778625, -73.97958)",,,142 WEST 73 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4519233,Sedan,,,, +04/13/2022,15:31,BROOKLYN,11209,40.633232,-74.0211,"(40.633232, -74.0211)",,,6917 5 AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4518762,Station Wagon/Sport Utility Vehicle,Moped,,, +04/14/2022,4:40,,,40.736534,-73.85611,"(40.736534, -73.85611)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519201,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,8:35,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518969,Bus,Sedan,,, +04/13/2022,17:12,,,,,,KNAPP STREET,SHORE PARKWAY,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inattention/Distraction,,,,4519512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,1:15,QUEENS,11354,40.76978,-73.808365,"(40.76978, -73.808365)",32 AVENUE,156 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518910,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,7:50,BROOKLYN,11226,40.652287,-73.95634,"(40.652287, -73.95634)",,,70 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519539,Ambulance,Tractor Truck Diesel,,, +04/15/2022,16:40,,,40.568913,-74.15034,"(40.568913, -74.15034)",ARTHUR KILL ROAD,FRANKLIN LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519884,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,0:10,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519265,Tractor Truck Diesel,Sedan,,, +04/15/2022,19:30,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519355,Sedan,Sedan,,, +04/14/2022,0:00,,,40.63697,-74.15141,"(40.63697, -74.15141)",RICHMOND TERRACE,SIMONSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4518854,Sedan,Sedan,,, +04/14/2022,18:45,BROOKLYN,11208,40.669456,-73.865654,"(40.669456, -73.865654)",,,799 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519173,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,19:08,BROOKLYN,11233,40.681164,-73.93172,"(40.681164, -73.93172)",,,394 STUYVESANT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4519318,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,17:35,,,40.71312,-73.83376,"(40.71312, -73.83376)",AUSTIN STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519092,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,14:26,QUEENS,11385,40.695183,-73.90095,"(40.695183, -73.90095)",,,1645 DECATUR STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519342,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,20:35,MANHATTAN,10019,40.769115,-73.98856,"(40.769115, -73.98856)",WEST 57 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4518885,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/13/2022,17:00,QUEENS,11365,,,,,,70-28 174 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519053,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,7:45,QUEENS,11416,40.68521,-73.84838,"(40.68521, -73.84838)",,,97-22 93 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519184,Sedan,Sedan,,, +04/13/2022,17:18,,,40.61335,-73.92145,"(40.61335, -73.92145)",AVENUE T,EAST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518807,Sedan,,,, +04/15/2022,16:55,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519428,Sedan,Sedan,,, +04/14/2022,8:35,,,40.79465,-73.97179,"(40.79465, -73.97179)",BROADWAY,,,1,0,1,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,14:35,,,40.71314,-73.8241,"(40.71314, -73.8241)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519007,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,13:54,QUEENS,11419,40.68246,-73.830025,"(40.68246, -73.830025)",111 STREET,107 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4519402,Sedan,Sedan,,, +04/11/2022,4:17,BROOKLYN,11207,40.682316,-73.88814,"(40.682316, -73.88814)",RIDGEWOOD AVENUE,WARWICK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519640,Sedan,,,, +04/15/2022,17:00,,,40.697166,-73.893364,"(40.697166, -73.893364)",COOPER AVENUE,SAINT FELIX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519679,Sedan,,,, +04/15/2022,17:25,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",LINDEN BOULEVARD,SUTPHIN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519328,Sedan,Sedan,,, +04/15/2022,13:45,,,40.70183,-73.91933,"(40.70183, -73.91933)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519595,Sedan,,,, +04/07/2022,1:28,,,,,,25 AVENUE,BROOKLYN QUEENS EXPRESSWAY W/B,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4519385,Sedan,Dump,,, +04/14/2022,8:00,BROOKLYN,11216,40.673874,-73.95393,"(40.673874, -73.95393)",,,1444 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519590,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,8:20,QUEENS,11237,40.709393,-73.9219,"(40.709393, -73.9219)",CYPRESS AVENUE,FLUSHING AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519343,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2022,21:45,BROOKLYN,11201,40.691647,-73.98438,"(40.691647, -73.98438)",,,214 DUFFIELD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519502,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,8:00,BRONX,10459,40.822838,-73.9003,"(40.822838, -73.9003)",,,960 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519671,Sedan,Sedan,,, +04/14/2022,20:05,,,40.65152,-73.909454,"(40.65152, -73.909454)",ROCKAWAY PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519419,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,8:30,QUEENS,11101,,,,Jackson ave,Northern blvd,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519033,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/14/2022,10:25,,,40.852127,-73.93783,"(40.852127, -73.93783)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519711,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,21:27,,,40.671978,-73.76206,"(40.671978, -73.76206)",182 STREET,140 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518831,Sedan,Sedan,,, +04/14/2022,13:40,BROOKLYN,11219,40.636566,-73.997696,"(40.636566, -73.997696)",51 STREET,11 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4519563,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2022,7:00,BRONX,10475,40.87318,-73.827286,"(40.87318, -73.827286)",,,99 BELLAMY LOOP,0,0,0,0,0,0,0,0,Unspecified,,,,,4519238,Sedan,,,, +02/02/2022,22:05,,,40.676872,-73.94985,"(40.676872, -73.94985)",DEAN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519603,Dump,Sedan,,, +04/11/2022,23:56,,,40.85519,-73.93977,"(40.85519, -73.93977)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4519704,Sedan,,,, +04/14/2022,9:10,QUEENS,11103,40.761414,-73.91922,"(40.761414, -73.91922)",,,31-19 37 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4519371,Sedan,Sedan,,, +04/15/2022,15:46,,,40.797836,-73.96946,"(40.797836, -73.96946)",WEST 101 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519799,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/03/2022,10:27,,,40.673256,-73.9307,"(40.673256, -73.9307)",PROSPECT PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519615,Sedan,Sedan,,, +04/15/2022,19:50,,,40.6087,-73.97404,"(40.6087, -73.97404)",AVENUE P,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4519302,Sedan,Sedan,Sedan,, +04/14/2022,11:00,MANHATTAN,10013,40.71684,-74.00233,"(40.71684, -74.00233)",,,45 FRANKLIN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518978,Sedan,,,, +04/15/2022,8:30,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",LORING PLACE NORTH,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4519741,Sedan,Sedan,Sedan,, +04/13/2022,9:30,,,40.67251,-73.99905,"(40.67251, -73.99905)",HAMILTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518625,Sedan,,,, +04/14/2022,7:10,MANHATTAN,10022,40.762226,-73.96819,"(40.762226, -73.96819)",LEXINGTON AVENUE,EAST 59 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518891,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,14:00,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519462,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,16:42,,,40.67417,-73.95671,"(40.67417, -73.95671)",PARK PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518739,Sedan,,,, +04/11/2022,16:40,,,0,0,"(0.0, 0.0)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519879,Sedan,Sedan,,, +04/15/2022,3:20,QUEENS,11370,40.76053,-73.883446,"(40.76053, -73.883446)",,,30-48 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519216,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2022,20:30,QUEENS,11102,40.772755,-73.93282,"(40.772755, -73.93282)",,,4-25 ASTORIA BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519359,E-Bike,Sedan,,, +07/08/2022,21:50,QUEENS,11420,40.66386,-73.82297,"(40.66386, -73.82297)",NASSAU EXPRESSWAY,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545149,Sedan,,,, +04/15/2022,18:05,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",HOWARD AVENUE,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519527,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/13/2022,10:34,MANHATTAN,10016,40.744377,-73.974915,"(40.744377, -73.974915)",,,321 EAST 34 STREET,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4518901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/13/2022,10:15,QUEENS,11420,40.665462,-73.81858,"(40.665462, -73.81858)",NORTH CONDUIT AVENUE,122 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518801,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,8:41,MANHATTAN,10019,40.76706,-73.98372,"(40.76706, -73.98372)",,,320 WEST 57 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518889,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/14/2022,15:35,,,40.713505,-73.998634,"(40.713505, -73.998634)",MOTT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519188,Sedan,Pick-up Truck,,, +04/14/2022,21:35,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAND STREET,GRAHAM AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519069,Bike,,,, +04/14/2022,4:50,BROOKLYN,11206,40.701942,-73.95573,"(40.701942, -73.95573)",HEYWARD STREET,LEE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518847,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2022,6:24,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519080,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,15:21,BROOKLYN,11238,40.680424,-73.96913,"(40.680424, -73.96913)",,,640 DEAN STREET,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4519902,Bus,Bike,,, +04/13/2022,0:45,,,40.71406,-73.95292,"(40.71406, -73.95292)",MEEKER AVENUE,METROPOLITAN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4518506,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,17:15,,,40.762676,-73.954346,"(40.762676, -73.954346)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519103,Sedan,Sedan,,, +04/15/2022,0:15,BROOKLYN,11207,40.691074,-73.908806,"(40.691074, -73.908806)",ELDERT STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519580,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,9:00,QUEENS,11368,40.744934,-73.86792,"(40.744934, -73.86792)",44 AVENUE,JUNCTION BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519205,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,16:55,,,40.67828,-73.958855,"(40.67828, -73.958855)",DEAN STREET,,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519023,Station Wagon/Sport Utility Vehicle,Bike,,, +02/19/2022,5:00,BRONX,10452,40.841347,-73.9169,"(40.841347, -73.9169)",JEROME AVENUE,EAST 171 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4519364,Sedan,,,, +04/14/2022,19:45,,,40.772343,-73.95269,"(40.772343, -73.95269)",EAST 79 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4519156,Bike,Sedan,,, +04/08/2022,20:36,,,40.772045,-73.87623,"(40.772045, -73.87623)",94 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519408,Pick-up Truck,,,, +04/14/2022,14:55,,,40.63692,-73.93752,"(40.63692, -73.93752)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519622,Sedan,,,, +04/15/2022,11:20,QUEENS,11432,40.704845,-73.80112,"(40.704845, -73.80112)",PARSONS BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519854,Sedan,,,, +04/13/2022,12:00,QUEENS,11372,40.75687,-73.872986,"(40.75687, -73.872986)",,,95-01 NORTHERN BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519243,Sedan,,,, +04/08/2022,23:30,MANHATTAN,10039,,,,,,700 ESPLANADE GARDENS PLAZA,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4519446,Sedan,Taxi,,, +04/14/2022,19:20,BROOKLYN,11208,40.679405,-73.87206,"(40.679405, -73.87206)",,,95 MC KINLEY AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519655,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,18:00,BROOKLYN,11234,40.630688,-73.92521,"(40.630688, -73.92521)",EAST 53 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519389,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,22:25,,,40.5843,-74.16492,"(40.5843, -74.16492)",,,112 RICHMOND HILL ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519865,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,22:15,BROOKLYN,11215,40.66115,-73.98018,"(40.66115, -73.98018)",15 STREET,PROSPECT PARK WEST,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519904,Bike,,,, +04/15/2022,23:35,BROOKLYN,11211,40.712524,-73.94997,"(40.712524, -73.94997)",,,126 AINSLIE STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519498,Sedan,,,, +04/15/2022,19:27,,,40.69689,-73.95564,"(40.69689, -73.95564)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519632,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,18:08,,,40.787624,-73.80232,"(40.787624, -73.80232)",160 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,Unspecified,Unspecified,4519734,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/14/2022,17:30,,,40.709003,-73.92234,"(40.709003, -73.92234)",SCOTT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519141,Sedan,,,, +04/14/2022,21:00,MANHATTAN,10002,40.712463,-73.99241,"(40.712463, -73.99241)",PIKE STREET,MADISON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519257,Sedan,Bike,,, +04/12/2022,18:00,MANHATTAN,10025,40.794495,-73.976456,"(40.794495, -73.976456)",,,214 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519818,Sedan,Sedan,,, +04/15/2022,13:00,QUEENS,11368,40.761204,-73.84053,"(40.761204, -73.84053)",34 AVENUE,WILLETS POINT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519552,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,21:30,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519270,Sedan,,,, +04/13/2022,23:50,BRONX,10451,40.827682,-73.922165,"(40.827682, -73.922165)",GRAND CONCOURSE,EAST 162 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519369,,,,, +03/30/2022,7:30,MANHATTAN,10069,40.775063,-73.98864,"(40.775063, -73.98864)",,,101 WEST END AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519275,Sedan,Sedan,,, +04/14/2022,8:45,,,40.72293,-73.847336,"(40.72293, -73.847336)",YELLOWSTONE BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518961,Bus,Sedan,,, +04/13/2022,15:00,BRONX,10462,40.840027,-73.85739,"(40.840027, -73.85739)",,,1569 METROPOLITAN AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4518711,Sedan,,,, +04/13/2022,7:25,BROOKLYN,11220,40.641434,-74.01782,"(40.641434, -74.01782)",4 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4518716,Bus,Pick-up Truck,,, +04/13/2022,16:30,MANHATTAN,10035,40.80479,-73.93632,"(40.80479, -73.93632)",,,159 EAST 126 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518928,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/13/2022,15:00,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4519101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,18:00,BRONX,10475,40.869423,-73.825745,"(40.869423, -73.825745)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4518746,Bike,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,13:11,BROOKLYN,11217,40.67474,-73.9741,"(40.67474, -73.9741)",,,195 BERKELEY PLACE,0,0,0,0,0,0,0,0,Passenger Distraction,Following Too Closely,,,,4518951,Sedan,Bike,,, +04/15/2022,18:50,,,40.79847,-73.96901,"(40.79847, -73.96901)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519810,Sedan,Bike,,, +04/13/2022,8:00,BROOKLYN,11222,40.719208,-73.94802,"(40.719208, -73.94802)",,,98 BAYARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519118,Sedan,Box Truck,,, +04/13/2022,12:55,STATEN ISLAND,10305,40.59589,-74.085884,"(40.59589, -74.085884)",QUINTARD STREET,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518780,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,15:29,BRONX,10459,40.822758,-73.90036,"(40.822758, -73.90036)",,,973 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519469,Bus,Sedan,,, +04/14/2022,10:44,BROOKLYN,11221,40.689217,-73.917656,"(40.689217, -73.917656)",PUTNAM AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518987,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,14:35,BROOKLYN,11221,40.693233,-73.93518,"(40.693233, -73.93518)",,,953 DE KALB AVENUE,2,0,0,0,0,0,2,0,Steering Failure,Unspecified,,,,4519688,Sedan,Sedan,,, +04/14/2022,13:50,BROOKLYN,11206,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519139,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,9:00,,,40.698765,-73.82454,"(40.698765, -73.82454)",89 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518655,Sedan,Sedan,,, +04/14/2022,13:58,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",FLATBUSH AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519289,Sedan,Sedan,,, +04/13/2022,18:19,,,40.802757,-73.93026,"(40.802757, -73.93026)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4518931,Motorcycle,Sedan,,, +04/15/2022,9:28,,,40.683784,-73.769745,"(40.683784, -73.769745)",BAISLEY BOULEVARD,,,4,0,0,0,0,0,4,0,Passing Too Closely,Passing Too Closely,,,,4519220,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,15:00,BROOKLYN,11222,40.730133,-73.95503,"(40.730133, -73.95503)",,,131 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519785,Sedan,E-Scooter,,, +04/15/2022,22:32,,,40.714363,-73.99283,"(40.714363, -73.99283)",ALLEN STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519522,Pick-up Truck,,,, +04/13/2022,15:00,BROOKLYN,11211,40.708534,-73.96258,"(40.708534, -73.96258)",SOUTH 9 STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,15:28,QUEENS,11421,40.69631,-73.851555,"(40.69631, -73.851555)",94 STREET,85 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519451,Sedan,Sedan,,, +04/14/2022,0:53,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Defective,,,,,4518983,Motorcycle,,,, +03/31/2022,9:40,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519268,Sedan,Sedan,,, +04/10/2022,9:57,,,40.86769,-73.92122,"(40.86769, -73.92122)",BROADWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4519696,Sedan,Sedan,,, +04/14/2022,13:49,QUEENS,11368,40.75196,-73.85456,"(40.75196, -73.85456)",112 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4519005,,,,, +04/14/2022,14:15,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519247,Sedan,Sedan,,, +04/14/2022,18:52,QUEENS,11420,40.681503,-73.81782,"(40.681503, -73.81782)",111 AVENUE,123 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4519778,Sedan,Sedan,,, +04/13/2022,13:00,BROOKLYN,11207,40.665768,-73.89432,"(40.665768, -73.89432)",,,468 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518668,Sedan,Carry All,,, +07/07/2022,1:40,MANHATTAN,10032,40.840473,-73.9353,"(40.840473, -73.9353)",EDGECOMBE AVENUE,JUMEL PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544908,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,11:00,,,40.708447,-73.800224,"(40.708447, -73.800224)",162 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4519864,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,13:24,MANHATTAN,10019,40.76536,-73.98759,"(40.76536, -73.98759)",WEST 53 STREET,9 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519127,Sedan,Ambulance,,, +04/15/2022,13:00,,,40.792126,-73.97178,"(40.792126, -73.97178)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519808,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,22:45,QUEENS,11378,40.732018,-73.919044,"(40.732018, -73.919044)",LONG ISLAND EXPRESSWAY,48 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4519474,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Sedan,, +04/15/2022,15:00,MANHATTAN,10034,40.872314,-73.91274,"(40.872314, -73.91274)",BROADWAY,WEST 220 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519717,Bike,PK,,, +04/13/2022,17:50,,,40.6742,-73.999985,"(40.6742, -73.999985)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519479,Sedan,Pick-up Truck,,, +04/14/2022,15:05,,,40.859642,-73.899826,"(40.859642, -73.899826)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4519133,Bus,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,8:00,BROOKLYN,11205,40.694393,-73.96233,"(40.694393, -73.96233)",,,112 EMERSON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518772,Sedan,,,, +04/13/2022,6:30,BROOKLYN,11206,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,16:30,MANHATTAN,10013,40.726143,-74.0057,"(40.726143, -74.0057)",,,150 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519120,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,15:16,BROOKLYN,11204,40.618088,-73.990105,"(40.618088, -73.990105)",,,1826 66 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519022,Sedan,,,, +04/15/2022,14:30,BROOKLYN,11203,40.650463,-73.930244,"(40.650463, -73.930244)",,,931 UTICA AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4519417,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/14/2022,23:00,QUEENS,11436,40.67984,-73.80265,"(40.67984, -73.80265)",116 AVENUE,139 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4519095,Sedan,Sedan,Sedan,, +04/13/2022,5:20,BROOKLYN,11238,40.671947,-73.96351,"(40.671947, -73.96351)",,,135 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4518691,Sedan,,,, +04/14/2022,15:35,,,40.720623,-73.99498,"(40.720623, -73.99498)",KENMARE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519258,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/14/2022,18:00,BROOKLYN,11221,40.697178,-73.93342,"(40.697178, -73.93342)",,,1168 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519594,Sedan,,,, +04/13/2022,10:11,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518797,Bus,Sedan,,, +01/31/2022,8:40,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498887,Sedan,,,, +04/15/2022,11:30,BROOKLYN,11222,40.726547,-73.94838,"(40.726547, -73.94838)",NORMAN AVENUE,NEWEL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519236,Pick-up Truck,,,, +04/13/2022,1:20,,,40.69221,-73.92293,"(40.69221, -73.92293)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4518624,Sedan,Motorscooter,,, +04/14/2022,11:02,QUEENS,11374,40.724266,-73.86915,"(40.724266, -73.86915)",,,63-03 WOODHAVEN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4519290,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,17:30,BROOKLYN,11203,40.65223,-73.92818,"(40.65223, -73.92818)",,,5225 CHURCH AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4519227,Sedan,,,, +04/13/2022,20:45,BROOKLYN,11232,40.644478,-74.00022,"(40.644478, -74.00022)",8 AVENUE,44 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518764,Bike,Bike,,, +04/12/2022,11:20,BRONX,10456,40.82581,-73.907036,"(40.82581, -73.907036)",BOSTON ROAD,EAST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,18:21,BROOKLYN,11208,40.673916,-73.87312,"(40.673916, -73.87312)",BELMONT AVENUE,CHESTNUT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519158,Sedan,,,, +04/05/2022,8:00,BROOKLYN,11213,40.67132,-73.9281,"(40.67132, -73.9281)",STERLING PLACE,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4519543,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,11:00,,,40.71091,-73.85373,"(40.71091, -73.85373)",METROPOLITAN AVENUE,70 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519889,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,8:00,BRONX,10461,40.8546,-73.854706,"(40.8546, -73.854706)",,,2024 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518913,Sedan,Sedan,,, +04/14/2022,13:24,,,40.862923,-73.92777,"(40.862923, -73.92777)",ARDEN STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4519722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,4:00,BROOKLYN,11237,40.710938,-73.92671,"(40.710938, -73.92671)",MESEROLE STREET,STEWART AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519354,Lunch Wagon,Lunch Wagon,,, +04/13/2022,17:40,BROOKLYN,11221,40.68569,-73.93559,"(40.68569, -73.93559)",LEWIS AVENUE,PUTNAM AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4518754,Sedan,Sedan,,, +04/15/2022,23:42,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519311,Sedan,Pick-up Truck,,, +04/08/2022,4:25,,,40.81572,-73.925064,"(40.81572, -73.925064)",EAST 144 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4519180,Station Wagon/Sport Utility Vehicle,TRAILER,Station Wagon/Sport Utility Vehicle,, +04/13/2022,23:11,BROOKLYN,11249,40.71286,-73.96579,"(40.71286, -73.96579)",SOUTH 4 STREET,WYTHE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519068,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,9:40,,,40.6818,-73.90852,"(40.6818, -73.90852)",GRANITE STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518988,Sedan,Sedan,,, +04/12/2022,12:30,MANHATTAN,10033,40.85411,-73.938194,"(40.85411, -73.938194)",,,175 PINEHURST AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519707,Station Wagon/Sport Utility Vehicle,PK,,, +04/14/2022,15:36,,,40.86808,-73.90858,"(40.86808, -73.90858)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4519195,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/18/2022,15:40,QUEENS,11369,40.760975,-73.8634,"(40.760975, -73.8634)",106 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519407,Sedan,Sedan,,, +04/13/2022,12:25,BROOKLYN,11204,40.63394,-73.979774,"(40.63394, -73.979774)",,,1674 42 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518821,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,17:20,BRONX,10466,40.888554,-73.841064,"(40.888554, -73.841064)",EAST 233 STREET,DEREIMER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,Unspecified,,,4518949,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/01/2021,13:45,,,40.786804,-73.98338,"(40.786804, -73.98338)",HENRY HUDSON PARKWAY,,,0,1,0,0,0,0,0,1,Unsafe Lane Changing,Unspecified,,,,4444048,Sedan,Motorcycle,,, +08/20/2021,14:30,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4448896,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,10:05,,,40.66658,-73.93968,"(40.66658, -73.93968)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4450514,Sedan,Sedan,Sedan,, +08/17/2021,22:30,,,40.850395,-73.9228,"(40.850395, -73.9228)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4450655,Sedan,Sedan,,, +08/19/2021,6:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450564,,,,, +08/23/2021,17:00,BROOKLYN,11236,40.64914,-73.91691,"(40.64914, -73.91691)",,,8912 AVENUE B,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4449891,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/23/2021,22:09,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450065,Sedan,Motorcycle,,, +08/23/2021,7:00,,,,,,127 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449967,Sedan,,,, +08/19/2021,12:50,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450458,Sedan,Box Truck,,, +08/23/2021,0:32,QUEENS,11377,40.75062,-73.90612,"(40.75062, -73.90612)",37 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4449577,Sedan,Sedan,,, +08/23/2021,13:20,BROOKLYN,11231,40.686825,-74.00183,"(40.686825, -74.00183)",,,147 COLUMBIA STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4449930,Station Wagon/Sport Utility Vehicle,Moped,,, +08/23/2021,12:00,QUEENS,11373,40.736473,-73.86574,"(40.736473, -73.86574)",,,57-17 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4450304,Sedan,,,, +08/23/2021,23:50,,,40.648464,-74.00683,"(40.648464, -74.00683)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449988,E-Bike,,,, +08/23/2021,18:52,BROOKLYN,11208,40.66696,-73.87533,"(40.66696, -73.87533)",MONTAUK AVENUE,HEGEMAN AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450418,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,2:17,MANHATTAN,10014,40.73058,-74.00169,"(40.73058, -74.00169)",CARMINE STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4449655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:15,STATEN ISLAND,10306,40.577835,-74.10241,"(40.577835, -74.10241)",,,2154 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4450002,Sedan,,,, +08/23/2021,14:35,QUEENS,11385,40.700005,-73.90296,"(40.700005, -73.90296)",SENECA AVENUE,WEIRFIELD STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4450510,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,8:23,,,40.745106,-73.97078,"(40.745106, -73.97078)",FDR DRIVE,EAST 37 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450382,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,5:05,,,40.646446,-73.87392,"(40.646446, -73.87392)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4449707,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,15:30,BROOKLYN,11236,40.645164,-73.898346,"(40.645164, -73.898346)",EAST 100 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449871,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,18:45,QUEENS,11101,40.755363,-73.94595,"(40.755363, -73.94595)",,,41-08 10 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450091,Sedan,Sedan,,, +08/23/2021,7:00,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450147,Tow Truck / Wrecker,Box Truck,,, +08/22/2021,22:00,,,40.716957,-73.82655,"(40.716957, -73.82655)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450326,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,15:12,,,40.59098,-73.98963,"(40.59098, -73.98963)",BAY 43 STREET,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4450349,Sedan,,,, +08/23/2021,15:50,BROOKLYN,11228,40.608826,-74.00983,"(40.608826, -74.00983)",BENSON AVENUE,BAY 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449844,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,10:40,BROOKLYN,11226,40.64161,-73.96356,"(40.64161, -73.96356)",CORTELYOU ROAD,EAST 16 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:42,BRONX,10467,40.87816,-73.871704,"(40.87816, -73.871704)",,,3464 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449837,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/23/2021,11:35,,,,,,ROCKAWAY BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449803,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,20:12,,,40.794052,-73.970375,"(40.794052, -73.970375)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449865,Taxi,,,, +08/23/2021,1:55,BROOKLYN,11212,40.65531,-73.90318,"(40.65531, -73.90318)",LINDEN BOULEVARD,STONE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4449736,Sedan,,,, +08/11/2021,17:45,,,40.866062,-73.92251,"(40.866062, -73.92251)",WEST 204 STREET,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4450348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/23/2021,0:00,,,40.6104,-73.9586,"(40.6104, -73.9586)",AVENUE P,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449983,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +12/08/2021,16:24,BRONX,10471,40.906723,-73.90413,"(40.906723, -73.90413)",,,5700 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4486472,Bus,Sedan,,, +08/23/2021,8:00,BRONX,10457,40.851887,-73.89535,"(40.851887, -73.89535)",,,2115 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4450012,Sedan,Sedan,,, +08/21/2021,11:10,QUEENS,11377,40.743336,-73.90804,"(40.743336, -73.90804)",43 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450367,Sedan,Sedan,,, +08/23/2021,6:55,,,,,,ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Reaction to Uninvolved Vehicle,,,,4450174,Van,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,20:04,,,40.798832,-73.95203,"(40.798832, -73.95203)",WEST 111 STREET,,,2,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450355,Sedan,E-Bike,,, +08/23/2021,8:57,QUEENS,11377,40.745,-73.892975,"(40.745, -73.892975)",,,72-10 41 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449775,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,12:30,QUEENS,11378,40.71805,-73.920715,"(40.71805, -73.920715)",,,57-13 49 PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4449850,Sedan,Carry All,,, +08/23/2021,15:34,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4449937,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/23/2021,19:15,QUEENS,11372,40.754974,-73.89095,"(40.754974, -73.89095)",76 STREET,NORTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4450142,Sedan,Sedan,,, +08/13/2021,14:40,MANHATTAN,10033,40.84931,-73.93002,"(40.84931, -73.93002)",AMSTERDAM AVENUE,WEST 183 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4450447,Sedan,Sedan,,, +08/23/2021,8:55,,,40.641113,-74.003716,"(40.641113, -74.003716)",50 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449874,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,10:00,BROOKLYN,11222,40.735435,-73.960014,"(40.735435, -73.960014)",COMMERCIAL STREET,DUPONT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449912,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:15,BROOKLYN,11212,40.66932,-73.91324,"(40.66932, -73.91324)",,,1627 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450608,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,7:10,,,,,,160 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4449809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:40,BROOKLYN,11208,40.68331,-73.88358,"(40.68331, -73.88358)",,,57 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450417,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,9:00,QUEENS,11361,40.761944,-73.76699,"(40.761944, -73.76699)",215 PLACE,43 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450219,Sedan,Sedan,,, +08/22/2021,20:22,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",AVENUE N,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450333,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,12:36,BROOKLYN,11208,40.679108,-73.88062,"(40.679108, -73.88062)",ATLANTIC AVENUE,HIGHLAND PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450410,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,18:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450532,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,13:47,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Other Vehicular,Other Vehicular,Unspecified,Unspecified,4449977,Sedan,Sedan,Sedan,Sedan,Sedan +08/18/2021,14:00,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4450477,Taxi,Sedan,,, +08/23/2021,14:00,STATEN ISLAND,10305,,,,,,19 HASTINGS STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450006,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,19:45,,,40.684002,-73.81603,"(40.684002, -73.81603)",109 AVENUE,126 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449919,Sedan,,,, +08/23/2021,7:45,BRONX,10467,,,,,,3774 WILLETT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450105,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:00,,,40.7079,-73.74948,"(40.7079, -73.74948)",208 STREET,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4449880,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,17:30,MANHATTAN,10037,,,,WEST 135 STREET,LENOX AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4450433,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/23/2021,13:00,BROOKLYN,11218,0,0,"(0.0, 0.0)",AVENUE C,EAST 3 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450043,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:47,,,40.638878,-73.95405,"(40.638878, -73.95405)",FLATBUSH AVENUE,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4449932,Sedan,Sedan,,, +08/23/2021,17:20,BROOKLYN,11220,40.635868,-74.00559,"(40.635868, -74.00559)",57 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450044,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,21:21,BRONX,10465,40.831,-73.82652,"(40.831, -73.82652)",EAST TREMONT AVENUE,BARKLEY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449991,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,18:00,BROOKLYN,11204,40.611084,-73.98223,"(40.611084, -73.98223)",,,1471 WEST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450499,Sedan,,,, +08/23/2021,1:12,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4449614,Sedan,,,, +08/11/2021,11:30,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450625,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,21:00,,,40.723835,-73.97357,"(40.723835, -73.97357)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449901,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,10:30,,,40.575714,-73.96301,"(40.575714, -73.96301)",BRIGHTWATER COURT,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450402,Station Wagon/Sport Utility Vehicle,,,, +07/10/2021,16:30,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450457,Sedan,Sedan,,, +08/23/2021,6:05,BROOKLYN,11235,40.583107,-73.95415,"(40.583107, -73.95415)",EMMONS AVENUE,SHORE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449666,Bike,,,, +08/13/2021,9:00,QUEENS,11369,40.7704,-73.87558,"(40.7704, -73.87558)",95 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450512,Sedan,Pick-up Truck,,, +08/23/2021,20:50,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,14:29,BRONX,10462,40.83019,-73.84748,"(40.83019, -73.84748)",WATSON AVENUE,HAVEMEYER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449992,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,4:40,BRONX,10475,40.88594,-73.8226,"(40.88594, -73.8226)",HOLLERS AVENUE,HUTCHINSON AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4450658,Sedan,,,, +08/23/2021,8:05,MANHATTAN,10065,40.7642,-73.9557,"(40.7642, -73.9557)",,,1275 YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4449920,Sedan,Sedan,,, +08/20/2021,9:35,QUEENS,11365,40.744072,-73.78216,"(40.744072, -73.78216)",195 STREET,58 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450380,Pick-up Truck,,,, +08/23/2021,10:21,,,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450432,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,14:50,QUEENS,11412,40.69997,-73.76351,"(40.69997, -73.76351)",FARMERS BOULEVARD,112 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449968,Sedan,,,, +08/20/2021,0:30,MANHATTAN,10065,40.760857,-73.961075,"(40.760857, -73.961075)",1 AVENUE,EAST 61 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450598,Bike,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,2:00,,,40.79393,-73.825584,"(40.79393, -73.825584)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449808,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,11:49,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4449839,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,21:20,BROOKLYN,11238,40.67521,-73.961655,"(40.67521, -73.961655)",,,489 PARK PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450182,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/23/2021,5:30,BROOKLYN,11205,40.69557,-73.97896,"(40.69557, -73.97896)",,,25 MONUMENT WALK,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4449895,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,17:59,BROOKLYN,11208,40.674885,-73.879105,"(40.674885, -73.879105)",,,174 ATKINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519653,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,4:00,QUEENS,11368,40.73938,-73.8505,"(40.73938, -73.8505)",,,110-01 SAULTELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449776,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,1:05,,,40.71621,-73.82682,"(40.71621, -73.82682)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,,,,4450063,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/23/2021,17:35,BROOKLYN,11231,40.676796,-74.01356,"(40.676796, -74.01356)",VAN BRUNT STREET,DIKEMAN STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4450248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/23/2021,10:15,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",SPRINGFIELD BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449815,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,22:40,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4449935,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,21:15,,,40.85431,-73.93009,"(40.85431, -73.93009)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4450448,Motorcycle,,,, +08/23/2021,14:00,QUEENS,11379,40.71283,-73.878296,"(40.71283, -73.878296)",74 STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450528,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,7:18,,,,,,188 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450368,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,16:10,,,40.789253,-73.85182,"(40.789253, -73.85182)",9 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449885,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,10:00,MANHATTAN,10019,40.76489,-73.98423,"(40.76489, -73.98423)",,,911 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449959,Van,Sedan,,, +08/23/2021,16:20,,,,,,7 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4450437,Sedan,MOPED,,, +08/23/2021,13:30,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4450163,Sedan,Sedan,,, +08/23/2021,4:25,BROOKLYN,11208,40.673275,-73.86853,"(40.673275, -73.86853)",SUTTER AVENUE,HEMLOCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449706,Sedan,Sedan,,, +08/10/2021,11:35,MANHATTAN,10026,40.801697,-73.95103,"(40.801697, -73.95103)",,,125 WEST 115 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450353,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:30,,,40.770744,-73.78582,"(40.770744, -73.78582)",32 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449866,Convertible,Bus,,, +08/23/2021,15:30,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4450303,Pick-up Truck,Sedan,Sedan,, +08/23/2021,14:35,QUEENS,11106,40.762062,-73.934715,"(40.762062, -73.934715)",,,34-21 21 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450090,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,23:40,QUEENS,11691,40.60351,-73.76171,"(40.60351, -73.76171)",,,10-37 BAY 24 STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4449982,Sedan,Sedan,,, +05/20/2021,11:50,MANHATTAN,10016,40.74445,-73.97304,"(40.74445, -73.97304)",EAST 35 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450554,Pick-up Truck,Sedan,,, +08/23/2021,17:55,STATEN ISLAND,10304,40.596294,-74.09491,"(40.596294, -74.09491)",RICHMOND ROAD,MARK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450009,Sedan,,,, +08/21/2021,18:21,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450438,Sedan,Sedan,,, +08/23/2021,9:15,QUEENS,11417,40.681988,-73.83698,"(40.681988, -73.83698)",LIBERTY AVENUE,104 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4449909,Bus,Sedan,,, +08/17/2021,18:00,BROOKLYN,11235,40.5825,-73.96118,"(40.5825, -73.96118)",BRIGHTON 8 STREET,BRIGHTON 8 COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450361,Sedan,,,, +08/23/2021,14:10,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Following Too Closely,,,4450411,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/23/2021,15:00,MANHATTAN,10019,40.764683,-73.99179,"(40.764683, -73.99179)",WEST 50 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4449953,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Van,, +08/23/2021,12:25,,,,,,,,94A DEBBIE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450325,Sedan,,,, +08/23/2021,2:44,,,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Shoulders Defective/Improper,Other Vehicular,,,,4449734,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,20:30,QUEENS,11365,40.736595,-73.80013,"(40.736595, -73.80013)",65 AVENUE,169 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4450023,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/23/2021,13:30,BROOKLYN,11214,40.600292,-73.9943,"(40.600292, -73.9943)",,,66 BAY 31 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449843,E-Scooter,,,, +08/23/2021,0:00,,,40.53117,-74.22361,"(40.53117, -74.22361)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4450050,Pick-up Truck,,,, +08/23/2021,18:31,BROOKLYN,11212,40.66339,-73.914,"(40.66339, -73.914)",DUMONT AVENUE,HERZL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449899,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,4:15,BRONX,10452,40.84398,-73.92296,"(40.84398, -73.92296)",GRANT HIGHWAY,UNIVERSITY AVENUE,,1,0,0,0,0,0,0,0,Pavement Slippery,,,,,4450022,E-Bike,,,, +08/10/2021,1:25,QUEENS,11694,40.573345,-73.85438,"(40.573345, -73.85438)",ROCKAWAY BEACH BOULEVARD,BEACH 137 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450474,Sedan,,,, +08/23/2021,21:25,QUEENS,11415,40.707214,-73.83227,"(40.707214, -73.83227)",,,83-47 ABINGDON ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4449972,Sedan,Sedan,,, +08/22/2021,20:27,BROOKLYN,11233,40.682304,-73.92596,"(40.682304, -73.92596)",PATCHEN AVENUE,DECATUR STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4450506,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/23/2021,4:15,BROOKLYN,11203,40.65471,-73.93072,"(40.65471, -73.93072)",,,756 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449622,Tractor Truck Gasoline,,,, +08/17/2021,10:16,QUEENS,11367,40.72581,-73.81385,"(40.72581, -73.81385)",,,75-06 153 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450632,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,14:18,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,10:55,BROOKLYN,11232,40.662758,-73.9973,"(40.662758, -73.9973)",,,141 22 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450252,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/23/2021,11:40,MANHATTAN,10021,40.768486,-73.96362,"(40.768486, -73.96362)",EAST 69 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4449814,Sedan,,,, +08/23/2021,8:45,MANHATTAN,10036,40.760117,-73.98484,"(40.760117, -73.98484)",WEST 48 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449827,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:40,BRONX,10469,,,,,,1076 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450107,Sedan,Sedan,,, +08/23/2021,0:15,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4450624,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:43,BROOKLYN,11217,40.689056,-73.97853,"(40.689056, -73.97853)",,,196 ASHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4449849,Sedan,,,, +08/23/2021,18:02,QUEENS,11368,40.7558,-73.86535,"(40.7558, -73.86535)",34 AVENUE,103 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:45,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449883,Sedan,Pick-up Truck,,, +08/23/2021,15:22,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4450337,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,9:06,,,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Passing Too Closely,,,,4449771,Box Truck,Taxi,,, +08/23/2021,19:18,BRONX,10466,40.89016,-73.84726,"(40.89016, -73.84726)",,,1034 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4450114,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/22/2021,15:50,BROOKLYN,11204,40.62202,-73.98726,"(40.62202, -73.98726)",60 STREET,18 AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4450329,Sedan,,,, +08/23/2021,0:00,BRONX,10458,40.855583,-73.882805,"(40.855583, -73.882805)",,,2469 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450357,Sedan,,,, +08/23/2021,8:30,BRONX,10467,40.879055,-73.87439,"(40.879055, -73.87439)",EAST GUN HILL ROAD,PERRY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449786,Sedan,,,, +08/23/2021,18:36,BROOKLYN,11234,40.632755,-73.92984,"(40.632755, -73.92984)",KINGS HIGHWAY,AVENUE H,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449848,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,19:54,,,40.612293,-74.03412,"(40.612293, -74.03412)",4 AVENUE,101 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449877,Motorcycle,Sedan,,, +08/23/2021,16:30,BRONX,10472,40.83202,-73.87323,"(40.83202, -73.87323)",METCALF AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4449994,Sedan,Sedan,Sedan,Sedan, +08/13/2021,22:35,,,40.693726,-73.75485,"(40.693726, -73.75485)",LINDEN BOULEVARD,197 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4450397,Sedan,Sedan,Sedan,, +08/20/2021,16:52,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450597,Bike,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,10:00,BRONX,10462,,,,,,2010 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449806,Sedan,Sedan,,, +08/23/2021,21:40,,,,,,west street,west street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449897,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,1:38,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449727,Sedan,Sedan,,, +08/23/2021,18:20,QUEENS,11101,40.74729,-73.92832,"(40.74729, -73.92832)",36 STREET,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449868,Moped,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,18:41,MANHATTAN,10014,40.728493,-74.005325,"(40.728493, -74.005325)",,,204 VARICK STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450096,Sedan,,,, +08/23/2021,18:00,,,40.70559,-73.85824,"(40.70559, -73.85824)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4449859,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,9:09,BROOKLYN,11201,40.688904,-73.980934,"(40.688904, -73.980934)",FLATBUSH AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450473,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/21/2021,3:19,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:42,,,40.603783,-73.74558,"(40.603783, -73.74558)",BEACH 9 STREET,EMPIRE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449928,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,13:30,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4450181,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/17/2021,0:00,,,40.810093,-73.95309,"(40.810093, -73.95309)",WEST 124 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450352,Sedan,,,, +08/21/2021,17:09,BROOKLYN,11217,40.684437,-73.97773,"(40.684437, -73.97773)",,,139 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4450322,Sedan,Bike,,, +08/23/2021,10:25,QUEENS,11355,40.755287,-73.83331,"(40.755287, -73.83331)",,,41-45 COLLEGE POINT BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,16:00,BROOKLYN,11208,40.660095,-73.87347,"(40.660095, -73.87347)",COZINE AVENUE,SHEPHERD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450422,Sedan,Sedan,,, +08/23/2021,6:00,QUEENS,11412,40.692703,-73.75857,"(40.692703, -73.75857)",LINDEN BOULEVARD,193 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450665,Sedan,,,, +08/23/2021,6:27,QUEENS,11417,40.67471,-73.83703,"(40.67471, -73.83703)",,,98-25 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449916,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,23:55,,,40.866062,-73.92251,"(40.866062, -73.92251)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450452,Sedan,Sedan,,, +08/23/2021,11:55,BROOKLYN,11206,40.70489,-73.94617,"(40.70489, -73.94617)",,,31 LEONARD STREET,0,0,0,0,0,0,0,0,Eating or Drinking,Unspecified,Unspecified,Unspecified,,4449906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/23/2021,0:19,BRONX,10458,40.856873,-73.88771,"(40.856873, -73.88771)",EAST 188 STREET,HOFFMAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449672,Sedan,Sedan,,, +08/11/2021,11:00,QUEENS,11372,40.75208,-73.881905,"(40.75208, -73.881905)",85 STREET,35 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4450507,Sedan,Bike,,, +08/23/2021,11:00,QUEENS,11368,40.750515,-73.85158,"(40.750515, -73.85158)",114 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449840,Sedan,,,, +08/23/2021,11:17,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449960,Sedan,Box Truck,,, +08/20/2021,18:15,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4450660,Sedan,Sedan,,, +07/30/2021,17:00,MANHATTAN,10033,40.85015,-73.93022,"(40.85015, -73.93022)",,,514 WEST 184 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450404,Sedan,,,, +08/23/2021,17:42,,,40.712833,-73.82741,"(40.712833, -73.82741)",QUEENS BOULEVARD,82 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449969,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:25,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450078,Sedan,Sedan,,, +08/23/2021,8:20,,,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4450414,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,12:20,BROOKLYN,11218,,,,,,634 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449934,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,15:00,,,,,,119 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449886,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,13:00,,,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450482,Station Wagon/Sport Utility Vehicle,,,, +08/10/2021,9:00,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4450519,Sedan,,,, +08/23/2021,1:20,QUEENS,11368,40.75713,-73.87042,"(40.75713, -73.87042)",NORTHERN BOULEVARD,98 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4450156,Sedan,Sedan,,, +08/19/2021,13:30,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450373,PK,Sedan,,, +08/23/2021,23:10,BROOKLYN,11211,40.717834,-73.95773,"(40.717834, -73.95773)",BEDFORD AVENUE,NORTH 7 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449979,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,10:00,,,40.84434,-73.91475,"(40.84434, -73.91475)",WEST MOUNT EDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450033,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,13:38,,,40.667038,-73.7682,"(40.667038, -73.7682)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4449295,Sedan,Sedan,,, +08/20/2021,1:00,MANHATTAN,10039,40.823204,-73.93875,"(40.823204, -73.93875)",,,207 WEST 147 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450435,Sedan,,,, +08/23/2021,15:00,STATEN ISLAND,10309,40.5426,-74.208336,"(40.5426, -74.208336)",,,655 ROSSVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450054,Sedan,,,, +08/22/2021,0:01,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450440,Sedan,,,, +08/23/2021,3:10,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4449625,Sedan,,,, +08/15/2021,21:22,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",CONEY ISLAND AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450634,Taxi,FD TRUCK,,, +08/15/2021,4:00,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450487,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,16:50,BROOKLYN,11222,40.728992,-73.95067,"(40.728992, -73.95067)",MC GUINNESS BOULEVARD,CALYER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449915,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,23:53,QUEENS,11422,40.672966,-73.73019,"(40.672966, -73.73019)",,,133-71 244 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450260,Sedan,Van,,, +08/23/2021,14:00,MANHATTAN,10035,40.800762,-73.944305,"(40.800762, -73.944305)",,,1784 MADISON AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449828,Station Wagon/Sport Utility Vehicle,Bike,,, +08/23/2021,21:00,,,40.71196,-73.9407,"(40.71196, -73.9407)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450187,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,18:00,BRONX,10451,40.815113,-73.92978,"(40.815113, -73.92978)",EAST 140 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519851,Sedan,Sedan,,, +08/01/2021,12:10,MANHATTAN,10034,40.864113,-73.92126,"(40.864113, -73.92126)",WEST 204 STREET,POST AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4450405,Sedan,Sedan,,, +08/23/2021,16:30,MANHATTAN,10035,40.804367,-73.93533,"(40.804367, -73.93533)",3 AVENUE,EAST 126 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449985,Sedan,,,, +08/23/2021,19:51,STATEN ISLAND,10305,40.583622,-74.09544,"(40.583622, -74.09544)",HYLAN BOULEVARD,SLATER BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4450008,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,16:30,BROOKLYN,11206,40.69529,-73.94339,"(40.69529, -73.94339)",VERNON AVENUE,THROOP AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450362,E-Bike,E-Bike,,, +08/23/2021,13:00,BRONX,10467,40.869656,-73.864334,"(40.869656, -73.864334)",WALLACE AVENUE,ADEE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450098,Pick-up Truck,,,, +08/23/2021,14:00,,,40.75858,-73.82562,"(40.75858, -73.82562)",UNION STREET,BARCLAY AVENUE,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4449858,Sedan,,,, +08/23/2021,18:56,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449882,Sedan,,,, +08/23/2021,7:15,BROOKLYN,11226,40.640503,-73.95564,"(40.640503, -73.95564)",FLATBUSH AVENUE,AVENUE D,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4449772,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/23/2021,8:30,,,40.604763,-74.02746,"(40.604763, -74.02746)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450126,Sedan,,,, +08/23/2021,15:35,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449951,Box Truck,,,, +08/19/2021,5:30,BROOKLYN,11214,40.605732,-73.98987,"(40.605732, -73.98987)",,,7917 BAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4450619,Sedan,Sedan,Sedan,, +08/23/2021,8:35,QUEENS,11379,40.714443,-73.885086,"(40.714443, -73.885086)",,,66-06 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449860,Sedan,Pick-up Truck,,, +08/23/2021,13:00,QUEENS,11358,40.75934,-73.79417,"(40.75934, -73.79417)",,,40-40 172 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4449887,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,5:27,QUEENS,11434,40.678654,-73.75969,"(40.678654, -73.75969)",BELKNAP STREET,MATHEWSON COURT,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450378,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,11:25,BROOKLYN,11220,40.635414,-74.00788,"(40.635414, -74.00788)",,,848 59 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4450330,Sedan,Bike,,, +08/20/2021,19:08,,,40.859623,-73.88747,"(40.859623, -73.88747)",EAST FORDHAM ROAD,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450343,Taxi,E-Bike,,, +08/23/2021,9:00,QUEENS,11413,40.679897,-73.74757,"(40.679897, -73.74757)",133 AVENUE,221 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4449769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/23/2021,9:15,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450020,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,9:59,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4449813,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:35,QUEENS,11368,40.741104,-73.85382,"(40.741104, -73.85382)",108 STREET,OTIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450152,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,4:55,,,40.63073,-74.01734,"(40.63073, -74.01734)",7 AVENUE,OVINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4449715,Sedan,,,, +08/23/2021,19:11,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",LIVONIA AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4449898,Sedan,Sedan,,, +08/23/2021,19:00,,,40.587883,-74.19238,"(40.587883, -74.19238)",,,145 EAST SERVICE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4450328,Sedan,,,, +08/23/2021,15:00,,,40.771477,-73.91824,"(40.771477, -73.91824)",29 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450092,Sedan,Sedan,,, +08/23/2021,13:00,QUEENS,11374,40.72706,-73.870636,"(40.72706, -73.870636)",WOODHAVEN BOULEVARD,62 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449847,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,7:30,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450518,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:41,MANHATTAN,10028,,,,MADISON AVENUE,EAST 85 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450453,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,15:15,BROOKLYN,11222,40.724785,-73.93288,"(40.724785, -73.93288)",STEWART AVENUE,CHERRY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449962,Dump,Dump,,, +08/23/2021,18:20,QUEENS,11691,40.605618,-73.75666,"(40.605618, -73.75666)",GRASSMERE TERRACE,MOTT AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4449929,Sedan,,,, +08/21/2021,18:30,BRONX,10456,40.829807,-73.909294,"(40.829807, -73.909294)",,,3430 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450391,Sedan,,,, +08/23/2021,12:00,BROOKLYN,11239,40.64481,-73.87704,"(40.64481, -73.87704)",,,11325 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450420,Sedan,Pick-up Truck,,, +08/23/2021,19:10,QUEENS,11418,40.703663,-73.81741,"(40.703663, -73.81741)",,,87-68 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449970,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/23/2021,11:50,QUEENS,11373,40.735172,-73.865105,"(40.735172, -73.865105)",,,59-10 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4449841,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,9:00,QUEENS,11001,40.733486,-73.7069,"(40.733486, -73.7069)",260 STREET,86 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4449804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,10:35,,,40.731415,-73.91723,"(40.731415, -73.91723)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450573,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/23/2021,21:10,BROOKLYN,11216,40.669865,-73.95051,"(40.669865, -73.95051)",NOSTRAND AVENUE,EASTERN PARKWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,15:50,MANHATTAN,10026,40.79996,-73.94698,"(40.79996, -73.94698)",5 AVENUE,WEST 115 STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4450351,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/23/2021,6:05,BROOKLYN,11220,40.64703,-74.012,"(40.64703, -74.012)",49 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4449869,Sedan,,,, +08/23/2021,15:30,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4449987,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,2:17,QUEENS,11421,40.687984,-73.856575,"(40.687984, -73.856575)",91 AVENUE,86 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4450320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,8:47,BRONX,10451,,,,EAST 138 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450073,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/23/2021,9:38,,,,,,MEEKER AVENUE,MC GUINNESS BLVD SOUTH,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4449790,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,5:33,BRONX,10460,,,,MARMION AVENUE,EAST 178 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4449676,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/23/2021,22:45,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449903,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,13:28,STATEN ISLAND,10314,40.610085,-74.11668,"(40.610085, -74.11668)",SLOSSON AVENUE,LORTEL AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4450001,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:10,BROOKLYN,11216,40.68107,-73.94972,"(40.68107, -73.94972)",NOSTRAND AVENUE,MACON STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4449876,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/18/2021,1:30,BROOKLYN,11201,40.690758,-73.99624,"(40.690758, -73.99624)",ATLANTIC AVENUE,HENRY STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4450469,Sedan,,,, +08/21/2021,20:30,QUEENS,11379,,,,80 STREET,JUNIPER BLVD S,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4450508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,10:50,MANHATTAN,10065,40.762802,-73.965675,"(40.762802, -73.965675)",3 AVENUE,EAST 61 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450403,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,15:50,BRONX,10466,40.897636,-73.85727,"(40.897636, -73.85727)",,,4351 MATILDA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450663,Sedan,Sedan,,, +08/23/2021,3:59,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4449917,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +08/23/2021,16:10,BROOKLYN,11208,40.66778,-73.86243,"(40.66778, -73.86243)",LORING AVENUE,ELDERTS LANE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4450415,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/23/2021,9:00,QUEENS,11372,40.74916,-73.88991,"(40.74916, -73.88991)",76 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4450137,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,13:08,BRONX,10458,40.862953,-73.89066,"(40.862953, -73.89066)",EAST 193 STREET,DECATUR AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4449836,Sedan,Sedan,,, +08/23/2021,12:24,BROOKLYN,11231,40.674553,-73.99967,"(40.674553, -73.99967)",GARNET STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450294,FIRE TRUCK,Sedan,,, +08/17/2021,15:56,BRONX,10451,40.821224,-73.91719,"(40.821224, -73.91719)",,,301 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450614,PK,,,, +08/23/2021,19:40,BRONX,10467,40.86784,-73.864395,"(40.86784, -73.864395)",WALLACE AVENUE,ARNOW AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450099,E-Scooter,,,, +08/23/2021,12:05,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4449810,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:00,,,40.588478,-73.80356,"(40.588478, -73.80356)",BEACH BREEZE LANE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4449863,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,11:10,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4450356,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,16:00,BROOKLYN,11223,40.586517,-73.967575,"(40.586517, -73.967575)",AVENUE Z,EAST 2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450347,Station Wagon/Sport Utility Vehicle,Bus,,, +08/23/2021,7:23,BRONX,10457,40.850456,-73.899315,"(40.850456, -73.899315)",WEBSTER AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449773,Sedan,Sedan,,, +08/19/2021,14:40,QUEENS,11377,40.74274,-73.89283,"(40.74274, -73.89283)",WOODSIDE AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450664,Sedan,,,, +08/23/2021,16:45,BROOKLYN,11235,40.575836,-73.960396,"(40.575836, -73.960396)",BRIGHTWATER COURT,BRIGHTON 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450406,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,16:13,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449978,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,9:30,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450480,Station Wagon/Sport Utility Vehicle,Bus,,, +08/22/2021,13:40,BROOKLYN,11249,40.717022,-73.96527,"(40.717022, -73.96527)",KENT AVENUE,NORTH 1 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4450492,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,1:02,STATEN ISLAND,10305,40.60179,-74.076515,"(40.60179, -74.076515)",,,515 STEUBEN STREET,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4449647,Sedan,Sedan,,, +08/23/2021,14:16,BRONX,10457,40.847515,-73.9001,"(40.847515, -73.9001)",,,420 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450013,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,22:30,,,40.69929,-73.72702,"(40.69929, -73.72702)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4450060,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/10/2021,9:20,QUEENS,11367,40.72866,-73.82278,"(40.72866, -73.82278)",MAIN STREET,70 ROAD,,1,0,0,0,0,0,1,0,,,,,,4450636,,,,, +08/23/2021,11:30,,,40.72114,-73.942825,"(40.72114, -73.942825)",MEEKER AVENUE,NORTH HENRY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449913,Sedan,Box Truck,,, +08/19/2021,20:00,,,40.697098,-73.95386,"(40.697098, -73.95386)",SANDFORD STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450363,Sedan,,,, +08/23/2021,7:00,MANHATTAN,10019,,,,52 street,8 avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449945,Sedan,,,, +08/23/2021,9:45,BROOKLYN,11219,40.635937,-73.987595,"(40.635937, -73.987595)",14 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450038,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,14:00,QUEENS,11355,40.752052,-73.8307,"(40.752052, -73.8307)",CROMMELIN STREET,BLOSSOM AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Keep Right,,,,4449856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,6:51,,,40.732716,-73.95807,"(40.732716, -73.95807)",FRANKLIN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449764,Sedan,,,, +08/23/2021,0:54,BRONX,10463,40.882713,-73.89643,"(40.882713, -73.89643)",,,3399 SEDGWICK AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4450206,Sedan,,,, +08/17/2021,10:00,,,40.75124,-73.77502,"(40.75124, -73.77502)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450379,Tanker,,,, +08/23/2021,23:00,,,40.61304,-73.92621,"(40.61304, -73.92621)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449888,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,19:30,QUEENS,11411,40.69067,-73.73134,"(40.69067, -73.73134)",118 AVENUE,231 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449881,Motorcycle,Sedan,,, +08/20/2021,11:20,MANHATTAN,10027,40.810135,-73.95106,"(40.810135, -73.95106)",,,243 WEST 125 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4450331,Sedan,Box Truck,,, +08/22/2021,1:35,,,40.724552,-73.72452,"(40.724552, -73.72452)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4449153,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,9:43,BROOKLYN,11218,,,,,,435 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449933,Sedan,,,, +08/23/2021,18:35,,,40.60455,-73.94752,"(40.60455, -73.94752)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4449984,Sedan,Sedan,,, +08/23/2021,9:40,,,40.716316,-73.90164,"(40.716316, -73.90164)",FRESH POND ROAD,60 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450540,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,20:04,,,40.84497,-73.9092,"(40.84497, -73.9092)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450444,Sedan,,,, +08/23/2021,17:00,STATEN ISLAND,10308,,,,LINDENWOOD ROAD,AMBOY ROAD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4450007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,19:40,QUEENS,11420,40.669125,-73.80591,"(40.669125, -73.80591)",133 AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4449918,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,12:00,BROOKLYN,11207,40.66294,-73.89743,"(40.66294, -73.89743)",,,531 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450416,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,20:18,MANHATTAN,10037,40.816025,-73.93947,"(40.816025, -73.93947)",WEST 138 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450434,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,7:06,,,40.88051,-73.9007,"(40.88051, -73.9007)",WEST 234 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450456,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,8:20,BROOKLYN,11225,40.66395,-73.95036,"(40.66395, -73.95036)",,,355 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4449963,UTILITY VA,Sedan,,, +04/10/2022,15:42,BROOKLYN,11212,40.66917,-73.91425,"(40.66917, -73.91425)",,,1601 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4519525,Sedan,Sedan,Sedan,, +04/13/2022,21:07,BRONX,10466,40.88974,-73.84591,"(40.88974, -73.84591)",EAST 233 STREET,LACONIA AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4519001,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,11:58,BROOKLYN,11223,40.59392,-73.97367,"(40.59392, -73.97367)",VILLAGE ROAD SOUTH,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519251,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,14:28,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4518977,Bike,Sedan,,, +04/13/2022,14:00,,,40.612644,-74.13073,"(40.612644, -74.13073)",JEWETT AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518862,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,18:00,BROOKLYN,11216,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519673,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,0:20,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519047,Sedan,,,, +04/14/2022,7:40,QUEENS,11385,40.70444,-73.89374,"(40.70444, -73.89374)",,,64-02 CATALPA AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519113,Sedan,Dump,,, +04/13/2022,18:42,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,3,0,0,0,0,0,3,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4519885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/12/2022,18:30,,,40.582874,-73.98053,"(40.582874, -73.98053)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4519264,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,, +04/13/2022,16:28,MANHATTAN,10128,40.78221,-73.95993,"(40.78221, -73.95993)",EAST 87 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518814,Taxi,,,, +04/15/2022,21:00,BRONX,10457,40.839268,-73.903824,"(40.839268, -73.903824)",PARK AVENUE,CLAREMONT PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519789,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,8:29,MANHATTAN,10128,40.786163,-73.95162,"(40.786163, -73.95162)",,,115 EAST 96 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4519222,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,17:00,BROOKLYN,11234,40.59651,-73.90788,"(40.59651, -73.90788)",FLATBUSH AVENUE,SHORE PARKWAY,,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519061,Station Wagon/Sport Utility Vehicle,Bike,,, +04/14/2022,18:30,,,40.73361,-73.835915,"(40.73361, -73.835915)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4519207,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,15:26,QUEENS,11367,40.721054,-73.82255,"(40.721054, -73.82255)",,,138-36 77 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4519296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,9:00,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4518804,Sedan,Sedan,,, +04/12/2022,1:00,,,40.677746,-73.73096,"(40.677746, -73.73096)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519457,Box Truck,,,, +04/13/2022,6:56,QUEENS,11101,40.744656,-73.94853,"(40.744656, -73.94853)",JACKSON AVENUE,21 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4518577,Sedan,Sedan,,, +04/14/2022,5:52,,,40.616283,-74.026115,"(40.616283, -74.026115)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519081,Sedan,Tractor Truck Diesel,,, +04/15/2022,0:01,BROOKLYN,11235,40.592007,-73.94513,"(40.592007, -73.94513)",,,4499 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519797,Box Truck,Sedan,Sedan,, +04/14/2022,8:40,,,40.66503,-73.81863,"(40.66503, -73.81863)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4519163,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,14:54,,,40.842667,-73.90685,"(40.842667, -73.90685)",EAST MOUNT EDEN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519365,Sedan,,,, +04/13/2022,14:52,BROOKLYN,11236,40.64286,-73.91519,"(40.64286, -73.91519)",EAST 85 STREET,FOSTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518735,Sedan,,,, +04/01/2022,5:50,,,40.677563,-73.93309,"(40.677563, -73.93309)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519605,Sedan,Sedan,,, +04/13/2022,13:15,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Tinted Windows,Unsafe Speed,Unspecified,Unspecified,,4519279,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/13/2022,16:55,BROOKLYN,11229,40.606113,-73.95488,"(40.606113, -73.95488)",AVENUE R,EAST 18 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4518833,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,4:55,QUEENS,11368,40.74928,-73.86086,"(40.74928, -73.86086)",,,104-38 41 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4519550,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/13/2022,17:00,BRONX,10467,40.87,-73.87888,"(40.87, -73.87888)",,,3050 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519147,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/14/2022,9:50,BROOKLYN,11219,40.632782,-73.99446,"(40.632782, -73.99446)",53 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4519110,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,13:25,BRONX,10461,40.84429,-73.829025,"(40.84429, -73.829025)",,,3033 MIDDLETOWN ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519028,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,22:28,BROOKLYN,11235,40.585556,-73.94881,"(40.585556, -73.94881)",,,3100 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519519,Sedan,Sedan,,, +04/03/2022,16:00,,,40.68461,-73.79987,"(40.68461, -73.79987)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4519329,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,17:50,,,40.66095,-73.92906,"(40.66095, -73.92906)",RUTLAND ROAD,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519232,Sedan,Sedan,,, +04/15/2022,0:00,BROOKLYN,11211,40.709206,-73.95452,"(40.709206, -73.95452)",,,348 KEAP STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519350,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,14:15,,,,,,,,43 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519575,Sedan,Sedan,,, +01/25/2022,7:19,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4498937,Bus,,,, +04/13/2022,3:30,BROOKLYN,11219,40.632412,-73.999886,"(40.632412, -73.999886)",,,1162 57 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519835,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,8:51,MANHATTAN,10029,40.78764,-73.953026,"(40.78764, -73.953026)",,,53 EAST 97 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519190,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,20:58,QUEENS,11691,40.60058,-73.74631,"(40.60058, -73.74631)",,,12-12 FRISCO AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519212,Sedan,Sedan,,, +04/11/2022,19:30,BROOKLYN,11215,40.665207,-73.99378,"(40.665207, -73.99378)",,,170 17 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519425,Van,Garbage or Refuse,,, +04/11/2022,16:50,QUEENS,11358,40.75369,-73.80377,"(40.75369, -73.80377)",,,163-06 46 AVENUE,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4519400,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,18:10,MANHATTAN,10036,40.755516,-73.98363,"(40.755516, -73.98363)",AVENUE OF THE AMERICAS,WEST 43 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518844,Bus,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,19:55,BROOKLYN,11210,40.63719,-73.952286,"(40.63719, -73.952286)",,,1377 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519538,Sedan,Tractor Truck Diesel,,, +04/14/2022,7:00,,,40.6765,-73.88234,"(40.6765, -73.88234)",ESSEX STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519168,Bus,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,16:10,BROOKLYN,11229,40.608746,-73.95829,"(40.608746, -73.95829)",EAST 15 STREET,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,9:40,,,40.690594,-73.95162,"(40.690594, -73.95162)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518909,Box Truck,Sedan,,, +04/14/2022,16:25,QUEENS,11436,40.67481,-73.79511,"(40.67481, -73.79511)",123 AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519035,Sedan,Pick-up Truck,,, +04/15/2022,9:45,QUEENS,11434,40.69137,-73.77997,"(40.69137, -73.77997)",LINDEN BOULEVARD,170 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,View Obstructed/Limited,,,,4519759,E-Bike,Sedan,,, +04/15/2022,16:48,BRONX,10469,40.861355,-73.83994,"(40.861355, -73.83994)",,,2419 WESTERVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519555,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,19:30,,,40.743187,-73.97207,"(40.743187, -73.97207)",EAST 34 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518826,AMBULANCE,Sedan,,, +04/15/2022,12:05,MANHATTAN,10019,40.767475,-73.99064,"(40.767475, -73.99064)",,,513 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519337,Box Truck,,,, +04/11/2022,20:50,MANHATTAN,10034,40.865044,-73.91953,"(40.865044, -73.91953)",,,516 WEST 207 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,9:00,QUEENS,11106,40.75974,-73.93195,"(40.75974, -73.93195)",CRESCENT STREET,35 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519376,Bus,E-Scooter,,, +04/13/2022,18:10,STATEN ISLAND,10304,40.606567,-74.09057,"(40.606567, -74.09057)",,,891 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4518782,Sedan,,,, +04/14/2022,12:00,BROOKLYN,11201,,,,NAVY STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519074,Sedan,Tow Truck / Wrecker,,, +04/14/2022,21:12,QUEENS,11691,40.600025,-73.75741,"(40.600025, -73.75741)",BROOKHAVEN AVENUE,BRIAR PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4519087,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/10/2022,6:10,,,40.67801,-73.94138,"(40.67801, -73.94138)",,,ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4519568,Sedan,Sedan,,, +04/14/2022,14:35,,,40.62499,-74.14403,"(40.62499, -74.14403)",FOREST AVENUE,WILLOWBROOK ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519861,Sedan,Bike,,, +04/13/2022,12:50,BROOKLYN,11208,40.66045,-73.86719,"(40.66045, -73.86719)",FOUNTAIN AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519639,Sedan,,,, +04/13/2022,11:30,MANHATTAN,10003,40.736378,-73.98494,"(40.736378, -73.98494)",EAST 19 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4518941,Pick-up Truck,Taxi,,, +04/14/2022,13:51,BROOKLYN,11236,40.643227,-73.90136,"(40.643227, -73.90136)",,,9601 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519014,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,15:38,,,40.621563,-74.16849,"(40.621563, -74.16849)",SOUTH AVENUE,GOETHALS ROAD NORTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518853,Sedan,Sedan,,, +11/05/2021,17:26,QUEENS,11422,40.65378,-73.74706,"(40.65378, -73.74706)",,,148-41 236 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4474336,Sedan,,,, +04/13/2022,0:10,BROOKLYN,11207,40.67601,-73.88567,"(40.67601, -73.88567)",ASHFORD STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4519175,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2022,15:05,QUEENS,11365,40.747627,-73.782394,"(40.747627, -73.782394)",HOLLIS COURT BOULEVARD,53 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519307,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,21:45,QUEENS,11379,40.7147,-73.886505,"(40.7147, -73.886505)",,,69-14 JUNIPER VALLEY ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4519678,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/15/2022,19:30,BRONX,10472,40.829975,-73.88045,"(40.829975, -73.88045)",,,1260 WHEELER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519380,Lunch Wagon,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,21:44,,,40.860577,-73.90255,"(40.860577, -73.90255)",EAST 184 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4518893,Station Wagon/Sport Utility Vehicle,Moped,,, +03/16/2022,7:58,,,40.80623,-73.91206,"(40.80623, -73.91206)",EAST 140 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519858,Sedan,,,, +04/14/2022,10:30,BROOKLYN,11213,40.6705,-73.94488,"(40.6705, -73.94488)",BROOKLYN AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519588,Sedan,Bus,,, +04/15/2022,19:25,,,40.679592,-73.93488,"(40.679592, -73.93488)",FULTON STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519697,Sedan,Taxi,,, +04/13/2022,15:43,QUEENS,11385,40.711838,-73.917496,"(40.711838, -73.917496)",TROUTMAN STREET,WOODWARD AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519117,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2022,12:17,,,40.574825,-74.16987,"(40.574825, -74.16987)",,,2883 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4519881,Sedan,Sedan,Pick-up Truck,, +03/28/2022,5:15,MANHATTAN,10029,40.789707,-73.9403,"(40.789707, -73.9403)",,,346 EAST 106 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4519300,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,21:30,QUEENS,11411,40.69067,-73.73134,"(40.69067, -73.73134)",118 AVENUE,231 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519051,Sedan,Sedan,,, +04/07/2022,23:00,BROOKLYN,11226,40.650387,-73.95872,"(40.650387, -73.95872)",CHURCH AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519537,,,,, +04/12/2022,14:43,MANHATTAN,10023,40.78056,-73.98022,"(40.78056, -73.98022)",WEST 75 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519239,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,19:20,BRONX,10451,40.816906,-73.92087,"(40.816906, -73.92087)",,,305 EAST 149 STREET,1,0,0,0,1,0,0,0,Pavement Slippery,,,,,4519151,E-Bike,,,, +04/13/2022,18:47,,,40.85179,-73.90279,"(40.85179, -73.90279)",EAST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518903,Box Truck,Sedan,,, +04/15/2022,0:44,BROOKLYN,11203,40.655846,-73.94316,"(40.655846, -73.94316)",,,489 CLARKSON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519453,Sedan,Sedan,,, +04/14/2022,17:35,,,40.69891,-73.93078,"(40.69891, -73.93078)",EVERGREEN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519142,,,,, +04/13/2022,12:30,,,40.744526,-73.77161,"(40.744526, -73.77161)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519054,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,0:14,QUEENS,11420,40.670864,-73.80753,"(40.670864, -73.80753)",131 AVENUE,131 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518525,Sedan,Sedan,,, +04/14/2022,19:50,,,,,,20 AVENUE,PETERCA PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519104,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,11:15,MANHATTAN,10026,40.804813,-73.95138,"(40.804813, -73.95138)",,,1966 7 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519361,Bike,,,, +04/15/2022,15:45,,,40.68286,-73.78116,"(40.68286, -73.78116)",164 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4519283,Sedan,Sedan,,, +04/11/2022,17:17,,,40.7795,-73.981636,"(40.7795, -73.981636)",WEST 73 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519276,Sedan,,,, +04/14/2022,15:35,BROOKLYN,11238,40.682663,-73.96303,"(40.682663, -73.96303)",,,950 FULTON STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519075,Sedan,Pick-up Truck,,, +04/13/2022,7:46,,,40.765545,-73.95471,"(40.765545, -73.95471)",EAST 70 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4518813,Bike,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,14:46,,,,,,WEST 168 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519610,Sedan,Stake or Rack,,, +04/13/2022,12:30,,,,,,G.C.P / L.I.E. (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518965,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,7:30,,,,,,,,16 DIXON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499018,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,9:34,BROOKLYN,11215,40.66725,-73.99455,"(40.66725, -73.99455)",16 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518718,Pick-up Truck,Sedan,,, +04/14/2022,19:55,,,40.644672,-73.92573,"(40.644672, -73.92573)",EAST 54 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4519623,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,12:18,BROOKLYN,11201,,,,ASHLAND PLACE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519322,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,16:31,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519742,Taxi,,,, +04/09/2022,9:30,QUEENS,11379,40.70768,-73.87678,"(40.70768, -73.87678)",,,69-69 74 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519344,Sedan,Van,,, +04/15/2022,22:54,BROOKLYN,11208,40.66661,-73.876144,"(40.66661, -73.876144)",ATKINS AVENUE,HEGEMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519657,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,13:00,QUEENS,11101,40.748203,-73.94374,"(40.748203, -73.94374)",,,24-01 44 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519271,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,12:40,,,40.686646,-73.97982,"(40.686646, -73.97982)",SCHERMERHORN STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4519501,Station Wagon/Sport Utility Vehicle,Bike,,, +04/13/2022,18:20,BROOKLYN,11217,40.68025,-73.98005,"(40.68025, -73.98005)",,,632 BALTIC STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4518953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,22:00,QUEENS,11377,40.754883,-73.90871,"(40.754883, -73.90871)",,,31-66 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519391,Sedan,,,, +04/15/2022,21:00,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519905,Taxi,,,, +04/13/2022,7:00,,,40.686577,-73.947464,"(40.686577, -73.947464)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519633,Sedan,,,, +04/15/2022,9:09,,,40.830067,-73.92915,"(40.830067, -73.92915)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519420,Sedan,,,, +04/13/2022,17:45,,,40.608612,-74.13098,"(40.608612, -74.13098)",NORTH GANNON AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519219,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,8:22,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519091,Sedan,Box Truck,,, +04/13/2022,18:07,BROOKLYN,11212,40.66229,-73.91566,"(40.66229, -73.91566)",,,753 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,21:09,BROOKLYN,11236,40.64761,-73.89455,"(40.64761, -73.89455)",,,10424 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519029,,,,, +04/13/2022,15:20,QUEENS,11379,40.72219,-73.87417,"(40.72219, -73.87417)",DRY HARBOR ROAD,JUNIPER BOULEVARD NORTH,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519341,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,21:25,BROOKLYN,11204,40.62521,-73.9804,"(40.62521, -73.9804)",19 AVENUE,52 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:55,MANHATTAN,10025,40.797215,-73.969925,"(40.797215, -73.969925)",WEST 100 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4519817,Taxi,E-Bike,,, +04/15/2022,21:25,,,,,,long island expressway,horace harding expressway,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519551,Sedan,Sedan,,, +04/14/2022,22:59,QUEENS,11106,40.75694,-73.93464,"(40.75694, -73.93464)",CRESCENT STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519372,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,1:15,QUEENS,11693,40.58539,-73.81466,"(40.58539, -73.81466)",HOLLAND AVENUE,BEACH 92 STREET,,0,0,0,0,0,0,0,0,Headlights Defective,Unspecified,,,,4519187,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,5:10,,,40.74561,-73.84785,"(40.74561, -73.84785)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519200,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,14:45,MANHATTAN,10065,40.766407,-73.96066,"(40.766407, -73.96066)",,,240 EAST 68 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Oversized Vehicle,Unspecified,,,4519822,Box Truck,Station Wagon/Sport Utility Vehicle,BOOM 60FT,, +08/24/2021,7:41,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4450261,Sedan,,,, +01/27/2022,18:30,,,40.67776,-73.89349,"(40.67776, -73.89349)",BRADFORD STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499066,Sedan,Pump,,, +10/23/2021,19:54,BROOKLYN,11236,,,,AVENUE L,EAST 105 STREET,,1,0,1,0,0,0,0,0,,,,,,4474423,,,,, +04/14/2022,18:00,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519427,Chassis Cab,Sedan,,, +04/15/2022,17:10,,,40.60589,-74.07427,"(40.60589, -74.07427)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519303,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,10:00,MANHATTAN,10035,40.805275,-73.94102,"(40.805275, -73.94102)",,,1936 MADISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,9:30,,,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518917,Sedan,,,, +04/10/2022,3:30,,,40.588177,-74.1573,"(40.588177, -74.1573)",,,100 COPLEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519875,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,13:00,QUEENS,11434,40.666637,-73.78149,"(40.666637, -73.78149)",SOUTH CONDUIT AVENUE,155 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4518751,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,21:26,QUEENS,11103,40.767204,-73.910095,"(40.767204, -73.910095)",25 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519384,Taxi,Sedan,Sedan,, +04/14/2022,20:00,,,40.858788,-73.92291,"(40.858788, -73.92291)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519721,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,20:13,,,40.825428,-73.93631,"(40.825428, -73.93631)",7 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,15:12,BROOKLYN,11205,40.692505,-73.970726,"(40.692505, -73.970726)",,,171 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519483,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,17:59,BROOKLYN,11233,40.678978,-73.9237,"(40.678978, -73.9237)",,,1884 FULTON STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4519690,Bus,Sedan,,, +04/13/2022,18:00,STATEN ISLAND,10312,40.545395,-74.16575,"(40.545395, -74.16575)",RICHMOND AVENUE,WILSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518779,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,8:30,,,40.69891,-73.93078,"(40.69891, -73.93078)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,14:50,BRONX,10453,40.848846,-73.90831,"(40.848846, -73.90831)",MOUNT HOPE PLACE,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519137,Sedan,,,, +04/13/2022,9:30,,,40.66743,-73.76676,"(40.66743, -73.76676)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Lane Changing,,,,4518663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,13:19,,,40.856712,-73.93264,"(40.856712, -73.93264)",BROADWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4519708,Sedan,,,, +04/14/2022,14:31,MANHATTAN,10013,40.716965,-74.0076,"(40.716965, -74.0076)",,,71 THOMAS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,16:00,MANHATTAN,10029,40.800552,-73.94623,"(40.800552, -73.94623)",,,2 EAST 116 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4518932,Bike,,,, +04/14/2022,9:25,MANHATTAN,10040,40.854557,-73.9288,"(40.854557, -73.9288)",,,565 WEST 190 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519712,Station Wagon/Sport Utility Vehicle,Fire Truck,,, +04/14/2022,23:32,,,40.64479,-74.01433,"(40.64479, -74.01433)",53 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519259,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,7:00,QUEENS,11378,40.722897,-73.902985,"(40.722897, -73.902985)",,,61-61 MASPETH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518830,Sedan,,,, +04/14/2022,18:10,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519172,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,13:15,MANHATTAN,10025,,,,,,372 central park west,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4519804,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/15/2022,10:45,,,40.691666,-73.76239,"(40.691666, -73.76239)",FARMERS BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519254,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,16:00,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4519100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,11:00,MANHATTAN,10005,40.706142,-74.00603,"(40.706142, -74.00603)",WATER STREET,MAIDEN LANE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519155,Sedan,Box Truck,,, +08/24/2021,18:45,,,,,,,,15 WESTMINISTER ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4450284,Carry All,Sedan,,, +10/14/2021,8:53,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474453,Sedan,Sedan,,, +01/31/2022,10:20,,,40.89505,-73.88489,"(40.89505, -73.88489)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499117,Sedan,Sedan,,, +02/22/2022,0:10,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4504666,Sedan,Taxi,,, +02/05/2022,9:00,QUEENS,11369,40.759113,-73.87845,"(40.759113, -73.87845)",,,31-26 90 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4505385,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,0:00,,,,,,HORACE HARDING EXPRESSWAY,164 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4504814,Sedan,Sedan,Sedan,, +02/07/2022,0:54,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4505288,Sedan,,,, +02/22/2022,17:48,BROOKLYN,11210,40.631706,-73.94649,"(40.631706, -73.94649)",FLATBUSH AVENUE,AVENUE H,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504927,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,13:10,QUEENS,11105,40.777805,-73.91052,"(40.777805, -73.91052)",,,21-24 29 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4505033,Ambulance,Sedan,,, +02/22/2022,23:31,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4505298,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,18:15,QUEENS,11368,40.738026,-73.86118,"(40.738026, -73.86118)",,,98-30 57 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504901,Sedan,,,, +02/22/2022,16:15,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504856,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,17:18,MANHATTAN,10013,40.719456,-73.99441,"(40.719456, -73.99441)",BOWERY,BROOME STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505358,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,4:35,QUEENS,11429,40.713783,-73.74922,"(40.713783, -73.74922)",,,209-34 99 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505393,Convertible,,,, +02/22/2022,16:25,,,,,,QUEENS PLAZA SOUTH,27 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505098,Sedan,,,, +02/20/2022,21:18,BRONX,10472,40.83227,-73.85817,"(40.83227, -73.85817)",,,1964 CROSS BRONX EXPRESSWAY,2,0,0,0,0,0,2,0,Unsafe Lane Changing,,,,,4505271,Sedan,,,, +02/22/2022,4:16,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504947,Sedan,,,, +02/22/2022,21:28,QUEENS,11418,40.698505,-73.84193,"(40.698505, -73.84193)",,,85-50 107 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4504989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/18/2022,11:20,BROOKLYN,11205,40.69858,-73.95417,"(40.69858, -73.95417)",,,18 WARSOFF PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505319,Station Wagon/Sport Utility Vehicle,Bus,,, +02/22/2022,23:00,QUEENS,11377,40.756107,-73.90071,"(40.756107, -73.90071)",62 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505001,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,0:20,QUEENS,11377,40.74458,-73.91557,"(40.74458, -73.91557)",43 AVENUE,49 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504624,Sedan,Sedan,,, +02/22/2022,15:45,BRONX,10468,40.868797,-73.90232,"(40.868797, -73.90232)",,,2690 WEBB AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4505370,Taxi,,,, +02/22/2022,14:45,,,40.806614,-73.90769,"(40.806614, -73.90769)",BRUCKNER BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504883,Dump,Sedan,,, +02/22/2022,17:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4505195,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/22/2022,14:58,BROOKLYN,11232,40.649094,-74.01694,"(40.649094, -74.01694)",2 AVENUE,50 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504807,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,22:28,,,40.775963,-73.94248,"(40.775963, -73.94248)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4505135,Sedan,Station Wagon/Sport Utility Vehicle,Convertible,Sedan, +02/10/2022,18:25,QUEENS,11106,40.76197,-73.92539,"(40.76197, -73.92539)",31 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,,,,,4505408,Bike,,,, +02/23/2021,14:45,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",JEROME AVENUE,WEST 192 STREET,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4505289,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,14:15,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4504954,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/22/2022,20:37,,,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,,4504972,Sedan,Sedan,Sedan,Sedan, +02/21/2022,16:00,BRONX,10462,40.852833,-73.85891,"(40.852833, -73.85891)",,,2035 PAULDING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4505265,Sedan,,,, +04/13/2022,15:40,,,40.60756,-73.984406,"(40.60756, -73.984406)",AVENUE P,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518756,Sedan,,,, +04/13/2022,9:40,STATEN ISLAND,10305,40.600113,-74.06348,"(40.600113, -74.06348)",,,91 DUER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518784,Van,,,, +04/13/2022,8:42,BROOKLYN,11236,40.639812,-73.90662,"(40.639812, -73.90662)",,,8902 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519015,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,18:00,BROOKLYN,11208,40.676476,-73.87029,"(40.676476, -73.87029)",,,470 CRESCENT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519654,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,9:00,QUEENS,11413,40.68075,-73.742,"(40.68075, -73.742)",226 STREET,131 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518984,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,12:50,BROOKLYN,11217,40.677048,-73.98004,"(40.677048, -73.98004)",5 AVENUE,SACKETT STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519901,Station Wagon/Sport Utility Vehicle,Bike,,, +04/13/2022,19:00,BROOKLYN,11221,40.695713,-73.926506,"(40.695713, -73.926506)",STOCKHOLM STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518989,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,23:50,BROOKLYN,11208,40.675373,-73.8722,"(40.675373, -73.8722)",,,2709 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519176,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,23:55,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519286,Sedan,Tractor Truck Diesel,,, +04/13/2022,6:35,MANHATTAN,10022,40.75831,-73.96294,"(40.75831, -73.96294)",EAST 57 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518654,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,8:30,BROOKLYN,11206,40.706596,-73.94309,"(40.706596, -73.94309)",JOHNSON AVENUE,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519495,Sedan,,,, +04/14/2022,2:10,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",82 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519215,Sedan,,,, +04/15/2022,17:13,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4519732,Sedan,Sedan,Taxi,, +03/31/2022,12:40,MANHATTAN,10026,40.799816,-73.956184,"(40.799816, -73.956184)",,,225 CENTRAL PARK NORTH,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519358,Taxi,Sedan,,, +04/15/2022,16:02,,,40.754986,-73.74535,"(40.754986, -73.74535)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519308,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,0:00,BRONX,10460,40.844124,-73.88083,"(40.844124, -73.88083)",,,949 EAST 180 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518888,Bike,Sedan,,, +04/01/2022,14:02,QUEENS,11418,40.70139,-73.83153,"(40.70139, -73.83153)",LEFFERTS BOULEVARD,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519183,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,13:34,BROOKLYN,11236,40.650055,-73.90739,"(40.650055, -73.90739)",,,9701 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519316,Sedan,Sedan,,, +04/11/2022,6:35,QUEENS,11377,40.735374,-73.91917,"(40.735374, -73.91917)",,,47-01 LAUREL HILL BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4519472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,8:00,,,40.76684,-73.838264,"(40.76684, -73.838264)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519204,Carry All,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,13:30,,,40.70738,-73.91849,"(40.70738, -73.91849)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519596,Motorcycle,,,, +04/11/2022,15:12,QUEENS,11433,40.69696,-73.79273,"(40.69696, -73.79273)",,,107-51 UNION HALL STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519416,Sedan,,,, +04/13/2022,1:10,,,40.84075,-73.872536,"(40.84075, -73.872536)",BRONX RIVER PARKWAY,,,4,0,0,0,0,0,4,0,Alcohol Involvement,Following Too Closely,Unspecified,Unspecified,,4518710,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +04/15/2022,10:58,MANHATTAN,10028,40.77624,-73.94691,"(40.77624, -73.94691)",,,1641 YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519809,Box Truck,Bus,,, +03/29/2022,18:00,STATEN ISLAND,10312,40.54973,-74.18442,"(40.54973, -74.18442)",,,107 STAFFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519181,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/09/2022,4:05,,,40.871193,-73.9141,"(40.871193, -73.9141)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4519706,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/15/2022,15:00,,,40.70638,-73.79998,"(40.70638, -73.79998)",161 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519618,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,19:30,BROOKLYN,11230,40.629654,-73.96509,"(40.629654, -73.96509)",AVENUE H,EAST 12 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519545,Bike,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,5:10,,,40.6644,-73.993935,"(40.6644, -73.993935)",4 AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518939,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/15/2022,16:07,BROOKLYN,11219,40.6315,-73.99581,"(40.6315, -73.99581)",,,5522 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519520,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,7:50,QUEENS,11377,40.73688,-73.90564,"(40.73688, -73.90564)",,,50-16 59 PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518611,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,13:50,BROOKLYN,11249,40.70316,-73.96588,"(40.70316, -73.96588)",WILSON STREET,KENT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,15:40,BRONX,10461,40.851223,-73.85523,"(40.851223, -73.85523)",,,1077 RHINELANDER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4518799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,22:50,QUEENS,11429,40.71485,-73.74108,"(40.71485, -73.74108)",HEMPSTEAD AVENUE,99 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4518982,,,,, +04/09/2022,21:30,BROOKLYN,11203,40.658478,-73.92818,"(40.658478, -73.92818)",EAST 53 STREET,WINTHROP STREET,,3,0,0,0,0,0,3,0,Other Vehicular,Passing or Lane Usage Improper,,,,4519231,Sedan,Sedan,,, +04/14/2022,8:30,,,40.59219,-73.97492,"(40.59219, -73.97492)",AVENUE W,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519159,,,,, +04/15/2022,11:19,MANHATTAN,10016,40.74568,-73.97213,"(40.74568, -73.97213)",EAST 37 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519291,Sedan,Sedan,,, +04/15/2022,17:40,BRONX,10467,40.863247,-73.86984,"(40.863247, -73.86984)",,,630 MACE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519464,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,15:10,BROOKLYN,11219,40.6421,-73.99207,"(40.6421, -73.99207)",,,4109 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519514,Bus,Sedan,,, +04/13/2022,7:50,BROOKLYN,11226,40.638763,-73.956635,"(40.638763, -73.956635)",,,2215 NEWKIRK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519544,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,18:10,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518912,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,12:30,BROOKLYN,11249,40.707638,-73.96739,"(40.707638, -73.96739)",SOUTH 11 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519353,Sedan,,,, +04/13/2022,17:50,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,8:35,MANHATTAN,10002,40.719112,-73.9792,"(40.719112, -73.9792)",,,111 COLUMBIA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519086,Sedan,,,, +04/15/2022,18:04,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519310,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,14:30,BROOKLYN,11211,40.70591,-73.951096,"(40.70591, -73.951096)",BROADWAY,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4519063,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/10/2022,16:40,QUEENS,11106,40.767193,-73.93759,"(40.767193, -73.93759)",,,32-50 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4519570,Sedan,,,, +04/13/2022,14:00,QUEENS,11432,40.719288,-73.80398,"(40.719288, -73.80398)",164 STREET,GOETHALS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519295,Station Wagon/Sport Utility Vehicle,electric m,,, +04/13/2022,19:42,BROOKLYN,11223,40.59783,-73.96549,"(40.59783, -73.96549)",OCEAN PARKWAY,AVENUE U,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4518834,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,17:30,QUEENS,11368,40.740364,-73.85646,"(40.740364, -73.85646)",103 STREET,MARTENSE AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519208,Sedan,Bus,,, +04/15/2022,8:47,,,40.732838,-73.783936,"(40.732838, -73.783936)",73 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,23:05,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519404,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,16:15,BROOKLYN,11204,40.633278,-73.983185,"(40.633278, -73.983185)",45 STREET,16 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4518822,Taxi,,,, +04/15/2022,6:30,,,,,,SANDS STREET,JAY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519336,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/14/2022,15:15,BROOKLYN,11228,40.613895,-74.01051,"(40.613895, -74.01051)",84 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519021,Sedan,,,, +04/15/2022,16:00,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519652,Sedan,,,, +04/14/2022,12:46,BROOKLYN,11221,40.69003,-73.93048,"(40.69003, -73.93048)",REID AVENUE,LEXINGTON AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519687,Sedan,E-Bike,,, +03/30/2022,10:50,QUEENS,11101,40.75897,-73.94031,"(40.75897, -73.94031)",,,37-31 12 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519383,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,20:14,BROOKLYN,11238,40.686287,-73.9695,"(40.686287, -73.9695)",GREENE AVENUE,CLERMONT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519484,Bus,,,, +04/15/2022,22:18,BROOKLYN,11206,40.71036,-73.942,"(40.71036, -73.942)",HUMBOLDT STREET,TEN EYCK WALK,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519351,Sedan,,,, +04/15/2022,6:00,MANHATTAN,10011,40.739033,-74.00256,"(40.739033, -74.00256)",,,122 GREENWICH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519836,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,20:10,QUEENS,11423,40.72811,-73.78065,"(40.72811, -73.78065)",,,80-39 188 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519046,Sedan,Sedan,,, +04/13/2022,11:00,BROOKLYN,11230,40.61659,-73.96363,"(40.61659, -73.96363)",CONEY ISLAND AVENUE,ELM AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518846,Sedan,Bike,,, +04/14/2022,18:52,QUEENS,11372,40.754387,-73.89653,"(40.754387, -73.89653)",70 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519213,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,18:00,,,40.592236,-74.18978,"(40.592236, -74.18978)",,,4077 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519863,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,18:40,,,40.690292,-73.98444,"(40.690292, -73.98444)",DUFFIELD STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519500,Sedan,,,, +04/14/2022,13:33,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4519702,Sedan,Sedan,,, +04/10/2022,17:50,,,40.610996,-74.176605,"(40.610996, -74.176605)",,,1200 SOUTH AVENUE,6,0,0,0,0,0,6,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4519373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,14:00,,,40.597168,-73.97149,"(40.597168, -73.97149)",WEST STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4519164,Station Wagon/Sport Utility Vehicle,Bike,,, +04/12/2022,15:50,MANHATTAN,10025,40.79799,-73.96199,"(40.79799, -73.96199)",WEST 105 STREET,MANHATTAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519816,Bus,Sedan,,, +04/13/2022,16:20,BROOKLYN,11236,40.638577,-73.90414,"(40.638577, -73.90414)",AVENUE J,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4518737,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,11:55,,,40.808437,-73.904724,"(40.808437, -73.904724)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519149,Sedan,,,, +04/13/2022,11:20,,,,,,MANHATTAN BR UPPER,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4518686,Motorcycle,,,, +04/14/2022,19:00,QUEENS,11378,40.732018,-73.919044,"(40.732018, -73.919044)",48 STREET,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519094,Sedan,Sedan,,, +04/14/2022,10:05,BROOKLYN,11224,40.581516,-73.96734,"(40.581516, -73.96734)",OCEAN PARKWAY,WEST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4518948,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/12/2022,15:48,,,40.830154,-73.93964,"(40.830154, -73.93964)",EDGECOMBE AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4519609,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/06/2022,16:15,QUEENS,11368,40.74572,-73.86773,"(40.74572, -73.86773)",,,96-11 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,17:35,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",2 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519235,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/14/2022,12:20,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519000,Motorcycle,,,, +04/13/2022,20:30,QUEENS,11355,40.75806,-73.81402,"(40.75806, -73.81402)",CHERRY AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518765,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,9:20,,,40.701912,-73.93699,"(40.701912, -73.93699)",FLUSHING AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518868,Pick-up Truck,E-Bike,,, +04/15/2022,16:40,,,,,,ASTORIA BOULEVARD,33 STREET,,1,0,0,0,1,0,0,0,Outside Car Distraction,,,,,4519576,E-Bike,,,, +08/23/2021,11:13,,,,,,BLEECKER STREET,,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,,,,4450687,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,9:30,BRONX,10457,,,,TOPPING AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4499336,Sedan,,,, +04/14/2022,18:00,QUEENS,11411,40.689415,-73.74008,"(40.689415, -73.74008)",120 AVENUE,223 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4519246,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,7:15,,,40.75544,-73.72199,"(40.75544, -73.72199)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4518976,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,22:00,QUEENS,11435,40.69035,-73.807045,"(40.69035, -73.807045)",SOUTH ROAD,REMINGTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4518907,Sedan,Sedan,,, +04/14/2022,8:45,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",134 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4519775,Station Wagon/Sport Utility Vehicle,Lift Boom,,, +04/08/2022,14:27,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4519263,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan, +04/13/2022,21:50,BROOKLYN,11212,40.663116,-73.915886,"(40.663116, -73.915886)",DUMONT AVENUE,SARATOGA AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4519887,Station Wagon/Sport Utility Vehicle,Bike,,, +04/15/2022,21:30,,,40.626358,-74.13231,"(40.626358, -74.13231)",FOREST AVENUE,ORDELL AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4519882,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/13/2022,7:52,,,40.68064,-73.89672,"(40.68064, -73.89672)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518675,Van,Sedan,,, +04/13/2022,6:54,MANHATTAN,10065,40.76636,-73.96309,"(40.76636, -73.96309)",,,1144 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4518583,Sedan,,,, +04/13/2022,13:00,QUEENS,11420,40.67541,-73.80365,"(40.67541, -73.80365)",,,120-04 135 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4518803,Sedan,Sedan,Cargo,, +04/15/2022,0:06,MANHATTAN,10002,40.721275,-73.98931,"(40.721275, -73.98931)",,,170 ALLEN STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4519459,Convertible,,,, +04/14/2022,16:27,BRONX,10467,40.884346,-73.88706,"(40.884346, -73.88706)",WEST GUN HILL ROAD,MOSHOLU PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,5:00,BROOKLYN,11207,40.685368,-73.9109,"(40.685368, -73.9109)",BUSHWICK AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518877,Sedan,Sedan,,, +04/13/2022,16:56,QUEENS,11377,40.7371,-73.90372,"(40.7371, -73.90372)",61 STREET,50 AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4518769,Sedan,Sedan,,, +04/14/2022,14:30,MANHATTAN,10029,40.793488,-73.94328,"(40.793488, -73.94328)",EAST 109 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519223,Sedan,Dump,,, +04/14/2022,18:30,BROOKLYN,11237,40.706985,-73.928665,"(40.706985, -73.928665)",,,65 PORTER AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4519067,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/14/2022,22:00,BROOKLYN,11219,40.627403,-73.99926,"(40.627403, -73.99926)",,,1310 62 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519082,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/10/2022,15:40,,,40.781273,-73.976006,"(40.781273, -73.976006)",WEST 78 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519278,Pick-up Truck,Sedan,,, +04/09/2022,19:30,BRONX,10452,40.840225,-73.91769,"(40.840225, -73.91769)",EAST 170 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519366,Bus,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,0:00,,,,,,HUTCHINSON RIVER PARKWAY,ORCHARD BEACH,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4519027,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,7:00,BROOKLYN,11208,40.67532,-73.868095,"(40.67532, -73.868095)",,,554 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519638,Sedan,,,, +04/15/2022,15:05,QUEENS,11435,40.688957,-73.79824,"(40.688957, -73.79824)",110 AVENUE,LIVERPOOL STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,Unspecified,,4519330,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/07/2022,19:03,BRONX,10451,40.82249,-73.915504,"(40.82249, -73.915504)",,,370 EAST 158 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519850,Dump,Sedan,,, +04/14/2022,8:47,BROOKLYN,11219,40.636353,-74.003395,"(40.636353, -74.003395)",,,938 55 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519111,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,16:10,BROOKLYN,11203,40.652527,-73.94297,"(40.652527, -73.94297)",,,185 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519228,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,10:56,QUEENS,11378,40.733204,-73.88838,"(40.733204, -73.88838)",74 STREET,52 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519677,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,5:55,,,,,,LAWTON AVENUE,LAWTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474705,Sedan,,,, +04/14/2022,15:00,MANHATTAN,10021,40.768795,-73.958374,"(40.768795, -73.958374)",EAST 72 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519191,Sedan,Box Truck,,, +04/14/2022,18:11,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",WALTON AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519422,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +04/15/2022,21:25,QUEENS,11354,40.758545,-73.833145,"(40.758545, -73.833145)",,,133-35 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519401,Station Wagon/Sport Utility Vehicle,Bike,,, +04/13/2022,13:46,BROOKLYN,11226,40.655186,-73.954124,"(40.655186, -73.954124)",,,177 CLARKSON AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4518815,Sedan,Bike,,, +04/11/2022,14:52,BROOKLYN,11233,40.68177,-73.93703,"(40.68177, -73.93703)",,,234 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519731,Sedan,,,, +04/14/2022,18:15,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4519036,Sedan,Sedan,,, +04/14/2022,18:24,,,,,,,,2700 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/13/2022,7:32,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4518934,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,0:14,,,40.692547,-73.90736,"(40.692547, -73.90736)",ELDERT STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4519143,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,17:50,,,40.856037,-73.83284,"(40.856037, -73.83284)",PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519554,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,16:00,,,40.79286,-73.96754,"(40.79286, -73.96754)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519820,Bus,Sedan,,, +04/14/2022,22:00,QUEENS,11411,40.70274,-73.74414,"(40.70274, -73.74414)",211 STREET,MURDOCK AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519292,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,8:24,QUEENS,11420,40.67169,-73.816635,"(40.67169, -73.816635)",122 PLACE,133 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4519160,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/07/2022,13:12,MANHATTAN,10023,40.78056,-73.98022,"(40.78056, -73.98022)",WEST 75 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Oversized Vehicle,,,,,4519277,Garbage,,,, +04/01/2022,20:00,QUEENS,11373,40.73574,-73.872665,"(40.73574, -73.872665)",90 STREET,56 AVENUE,,2,0,2,0,0,0,0,0,Driver Inexperience,,,,,4519255,Sedan,,,, +04/13/2022,13:44,,,40.813095,-73.89827,"(40.813095, -73.89827)",LEGGETT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518723,Box Truck,Box Truck,,, +04/13/2022,7:55,,,40.674747,-73.9417,"(40.674747, -73.9417)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4518966,Sedan,Sedan,,, +04/14/2022,13:30,,,40.788555,-73.7787,"(40.788555, -73.7787)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519099,Sedan,Sedan,,, +04/13/2022,16:00,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4518925,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,7:56,BRONX,10460,40.845554,-73.88749,"(40.845554, -73.88749)",,,770 EAST 179 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4518698,Sedan,,,, +04/13/2022,15:35,BROOKLYN,11236,40.633446,-73.91097,"(40.633446, -73.91097)",,,1025 EAST 80 STREET,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4518759,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,19:35,BROOKLYN,11222,40.72015,-73.93783,"(40.72015, -73.93783)",MORGAN AVENUE,RICHARDSON STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519250,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,7:00,QUEENS,11369,40.7609,-73.87018,"(40.7609, -73.87018)",99 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519004,Sedan,Sedan,,, +04/13/2022,15:40,BROOKLYN,11232,40.657665,-74.00093,"(40.657665, -74.00093)",4 AVENUE,30 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4518990,Pick-up Truck,Moped,,, +04/13/2022,8:30,QUEENS,11361,40.766857,-73.76269,"(40.766857, -73.76269)",221 STREET,39 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518664,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,18:00,,,40.60301,-74.016884,"(40.60301, -74.016884)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,7:55,BROOKLYN,11215,40.66677,-73.98831,"(40.66677, -73.98831)",5 AVENUE,13 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4519899,,,,, +11/05/2021,20:30,,,,,,WEST 37 STREET,madison avenue,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474742,Sedan,Sedan,,, +08/20/2021,21:00,QUEENS,11433,,,,,,109-14 164th PL,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450947,Pick-up Truck,,,, +08/20/2021,16:28,,,,,,RANDALL AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450967,,,,, +08/23/2021,13:42,QUEENS,11433,40.704422,-73.792854,"(40.704422, -73.792854)",MERRICK BOULEVARD,ARCHER AVENUE,,2,0,2,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4450946,Sedan,Dump,,, +08/22/2021,3:00,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",MC DONALD AVENUE,BAY PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450965,Taxi,Bike,,, +08/24/2021,2:26,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4450935,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/23/2021,14:50,,,,,,SOUTH AVENUE,ARLINGTON PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450976,Sedan,,,, +06/20/2021,5:40,BROOKLYN,11222,40.719788,-73.94404,"(40.719788, -73.94404)",,,520 HUMBOLDT STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4450962,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,7:00,QUEENS,11433,40.702053,-73.78561,"(40.702053, -73.78561)",105 AVENUE,171 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450945,Sedan,,,, +08/24/2021,16:00,BROOKLYN,11211,40.71249,-73.93848,"(40.71249, -73.93848)",OLIVE STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450939,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,16:04,BRONX,10455,40.817574,-73.90359,"(40.817574, -73.90359)",EAST 156 STREET,UNION AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450953,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,18:38,QUEENS,11433,40.691277,-73.7951,"(40.691277, -73.7951)",109 DRIVE,155 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4450943,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,11:41,BROOKLYN,11219,40.63659,-73.994736,"(40.63659, -73.994736)",49 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/22/2022,20:10,,,40.626217,-74.15783,"(40.626217, -74.15783)",FOREST AVENUE,UNION AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519218,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,17:50,MANHATTAN,10013,40.71755,-73.99932,"(40.71755, -73.99932)",CANAL STREET,BAXTER STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519524,Sedan,Sedan,,, +04/14/2022,12:44,BROOKLYN,11222,40.719166,-73.94854,"(40.719166, -73.94854)",LEONARD STREET,BAYARD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519787,E-Scooter,,,, +04/13/2022,15:50,,,40.748226,-73.75979,"(40.748226, -73.75979)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4519454,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +12/26/2021,16:34,,,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4490116,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/25/2021,22:45,,,40.8375,-73.91061,"(40.8375, -73.91061)",EAST 170 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4490172,Sedan,Sedan,,, +01/01/2022,20:43,BROOKLYN,11239,40.64816,-73.88288,"(40.64816, -73.88288)",,,45 TWIN PINES DRIVE,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4491555,Sedan,Sedan,,, +01/09/2022,20:02,QUEENS,11369,40.761112,-73.86814,"(40.761112, -73.86814)",101 STREET,31 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4493423,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/14/2022,15:20,BROOKLYN,11213,40.67043,-73.928185,"(40.67043, -73.928185)",ROCHESTER AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4494590,Pick-up Truck,Sedan,,, +01/14/2022,22:20,QUEENS,11423,40.72106,-73.75945,"(40.72106, -73.75945)",FRANCIS LEWIS BOULEVARD,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4495060,,,,, +01/23/2022,9:48,QUEENS,11105,40.776188,-73.90596,"(40.776188, -73.90596)",36 STREET,21 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4496758,Sedan,Sedan,,, +01/24/2022,6:36,,,40.86442,-73.90389,"(40.86442, -73.90389)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Other Vehicular,,,,4496870,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/22/2022,10:15,BRONX,10475,40.869633,-73.82653,"(40.869633, -73.82653)",,,2063A BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4496945,Sedan,,,, +01/25/2022,22:20,BROOKLYN,11201,40.69099,-73.99175,"(40.69099, -73.99175)",COURT STREET,SCHERMERHORN STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4497347,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/26/2022,1:50,QUEENS,11356,40.790615,-73.83901,"(40.790615, -73.83901)",129 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4497420,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:00,QUEENS,11419,40.692875,-73.83219,"(40.692875, -73.83219)",ATLANTIC AVENUE,114 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4450183,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,11:50,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450238,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,7:05,BROOKLYN,11211,40.719105,-73.95635,"(40.719105, -73.95635)",,,141 BEDFORD AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4450928,Garbage or Refuse,,,, +08/23/2021,5:35,,,,,,CYPRESS AVENUE,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4450685,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/24/2021,17:51,BRONX,10457,40.846687,-73.905594,"(40.846687, -73.905594)",TOPPING AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450650,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/24/2021,0:00,BROOKLYN,11211,40.71406,-73.95292,"(40.71406, -73.95292)",RODNEY STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4449905,Sedan,Flat Bed,,, +08/24/2021,17:24,,,40.66835,-73.738106,"(40.66835, -73.738106)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450223,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,11:45,,,40.69283,-73.85468,"(40.69283, -73.85468)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450341,Tractor Truck Diesel,Sedan,,, +08/24/2021,20:10,BROOKLYN,11211,40.708324,-73.95766,"(40.708324, -73.95766)",,,312 BROADWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4450494,Motorcycle,Sedan,,, +08/08/2021,5:47,MANHATTAN,10030,40.814938,-73.9449,"(40.814938, -73.9449)",,,211 WEST 134 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4450751,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/16/2021,23:40,,,40.82902,-73.94485,"(40.82902, -73.94485)",WEST 151 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,6:45,BROOKLYN,11233,40.67942,-73.91184,"(40.67942, -73.91184)",,,114 HULL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4449943,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,18:20,BROOKLYN,11229,40.60223,-73.93427,"(40.60223, -73.93427)",STUART STREET,AVENUE U,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450266,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,18:20,,,40.697117,-73.93401,"(40.697117, -73.93401)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,20:20,,,40.56106,-74.17718,"(40.56106, -74.17718)",ANNADALE ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4450733,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,1:52,QUEENS,11103,40.763596,-73.90972,"(40.763596, -73.90972)",45 STREET,28 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4450450,Sedan,Sedan,Sedan,Sedan, +08/24/2021,7:00,,,40.729877,-73.91774,"(40.729877, -73.91774)",50 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4449981,Sedan,Sedan,,, +08/24/2021,16:02,BROOKLYN,11207,40.652363,-73.89137,"(40.652363, -73.89137)",GLENWOOD ROAD,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4450132,Sedan,Bus,,, +08/24/2021,19:30,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450291,Sedan,,,, +08/24/2021,18:00,,,40.741623,-74.00698,"(40.741623, -74.00698)",WASHINGTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450310,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,15:45,,,40.679787,-73.93844,"(40.679787, -73.93844)",FULTON STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450365,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/24/2021,21:20,BRONX,10467,40.878265,-73.872696,"(40.878265, -73.872696)",,,3380 DECATUR AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450390,Sedan,,,, +08/24/2021,14:25,BROOKLYN,11210,40.625656,-73.94011,"(40.625656, -73.94011)",,,1816 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450108,Sedan,,,, +08/24/2021,9:10,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450049,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,0:17,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450790,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,0:26,MANHATTAN,10011,40.740334,-74.00209,"(40.740334, -74.00209)",,,100 8 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4450828,Taxi,Sedan,,, +08/23/2021,19:15,BROOKLYN,11203,40.65944,-73.93018,"(40.65944, -73.93018)",,,111 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450867,Sedan,,,, +08/24/2021,12:00,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450093,Sedan,Box Truck,,, +08/24/2021,7:30,BROOKLYN,11249,40.709812,-73.96657,"(40.709812, -73.96657)",,,70 SOUTH 8 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450055,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,17:30,BROOKLYN,11207,40.68708,-73.913895,"(40.68708, -73.913895)",HALSEY STREET,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450694,Sedan,Bike,,, +08/24/2021,12:20,BRONX,10467,40.879803,-73.878914,"(40.879803, -73.878914)",,,3400 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450127,Taxi,Bus,,, +08/24/2021,7:00,,,40.871174,-73.891106,"(40.871174, -73.891106)",CRESTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4449999,Sedan,,,, +08/24/2021,17:39,BRONX,10468,40.870243,-73.89356,"(40.870243, -73.89356)",,,2818 MORRIS AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450388,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,18:00,BROOKLYN,11218,40.65639,-73.9738,"(40.65639, -73.9738)",PROSPECT PARK SOUTHWEST,TERRACE PLACE,,1,0,0,0,1,0,0,0,Other Vehicular,Other Vehicular,,,,4450255,Bike,Sedan,,, +08/24/2021,22:08,MANHATTAN,10075,40.775642,-73.958405,"(40.775642, -73.958405)",EAST 80 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450271,Sedan,E-Bike,,, +08/24/2021,21:10,BROOKLYN,11239,40.6468,-73.88496,"(40.6468, -73.88496)",LOUISIANA AVENUE,TWIN PINES DRIVE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4450424,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/24/2021,23:15,BRONX,10453,40.84645,-73.91439,"(40.84645, -73.91439)",DAVIDSON AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450314,Station Wagon/Sport Utility Vehicle,Moped,,, +08/24/2021,16:15,MANHATTAN,10035,40.805737,-73.94065,"(40.805737, -73.94065)",EAST 125 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450400,E-Scooter,E-Bike,,, +08/24/2021,8:30,,,40.6841,-73.76566,"(40.6841, -73.76566)",178 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450034,Sedan,,,, +08/24/2021,12:00,BRONX,10466,40.893692,-73.85723,"(40.893692, -73.85723)",,,4201 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450118,Sedan,,,, +08/24/2021,14:20,,,,,,COLLEGE POINT BOULEVARD,HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4450229,Tractor Truck Diesel,SEMI-TRAIL,Sedan,, +08/23/2021,8:24,,,40.52599,-74.22536,"(40.52599, -74.22536)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4450773,Tractor Truck Diesel,,,, +08/14/2021,22:27,BROOKLYN,11219,40.62368,-73.99772,"(40.62368, -73.99772)",65 STREET,NEW UTRECHT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450897,Sedan,Motorcycle,,, +08/24/2021,17:10,QUEENS,11375,40.732426,-73.853905,"(40.732426, -73.853905)",102 STREET,63 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450309,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/24/2021,19:58,BROOKLYN,11209,40.633316,-74.02302,"(40.633316, -74.02302)",,,428 OVINGTON AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4450542,Sedan,Sedan,,, +08/24/2021,21:31,BRONX,10467,40.878742,-73.87255,"(40.878742, -73.87255)",DECATUR AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450794,Sedan,Sedan,,, +08/24/2021,17:00,,,40.753395,-73.79243,"(40.753395, -73.79243)",46 AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450144,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,12:10,BROOKLYN,11203,40.642498,-73.92358,"(40.642498, -73.92358)",AVENUE D,EAST 56 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4450862,Sedan,Sedan,,, +08/24/2021,15:37,BROOKLYN,11236,40.634464,-73.91211,"(40.634464, -73.91211)",,,943 EAST 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4450199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/23/2021,23:20,STATEN ISLAND,10301,40.613983,-74.10128,"(40.613983, -74.10128)",CLOVE ROAD,SUNNYSIDE TERRACE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450711,Sedan,Sedan,,, +08/24/2021,11:30,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4450067,Tractor Truck Diesel,Tractor Truck Diesel,,, +08/24/2021,9:20,BROOKLYN,11237,40.712963,-73.92761,"(40.712963, -73.92761)",MEADOW STREET,STEWART AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450493,Station Wagon/Sport Utility Vehicle,FORKLIFT,,, +08/24/2021,17:00,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450327,Sedan,Sedan,,, +08/24/2021,10:28,QUEENS,11367,40.72924,-73.8152,"(40.72924, -73.8152)",,,71-12 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450374,Sedan,Sedan,,, +01/16/2022,0:00,BROOKLYN,11208,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,CRESCENT STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4497459,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/24/2021,12:00,QUEENS,11694,40.579407,-73.83696,"(40.579407, -73.83696)",,,176 BEACH 116 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4450475,Lift Boom,Sedan,,, +08/23/2021,19:00,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",DE KALB AVENUE,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450690,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,15:56,,,40.896408,-73.852615,"(40.896408, -73.852615)",BARNES AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450245,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,0:00,,,40.698452,-73.92176,"(40.698452, -73.92176)",MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4450671,Sedan,Sedan,,, +08/24/2021,14:50,,,40.585934,-73.9519,"(40.585934, -73.9519)",SHEEPSHEAD BAY ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450267,Sedan,,,, +08/24/2021,18:53,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",144 AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4450218,Sedan,,,, +08/24/2021,15:15,BROOKLYN,11222,40.722553,-73.95008,"(40.722553, -73.95008)",,,568 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450299,Box Truck,Sedan,,, +08/17/2021,10:50,BRONX,10459,40.824654,-73.89194,"(40.824654, -73.89194)",SOUTHERN BOULEVARD,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4450764,Sedan,,,, +08/24/2021,16:13,,,40.63665,-73.96805,"(40.63665, -73.96805)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450154,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:41,QUEENS,11373,40.730274,-73.88722,"(40.730274, -73.88722)",,,74-25 GRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450511,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,1:20,,,,,,QUEENS MIDTOWN TUNNEL,,,4,0,0,0,0,0,4,0,Unsafe Speed,,,,,4450805,Sedan,,,, +08/24/2021,15:07,MANHATTAN,10013,40.723976,-74.00831,"(40.723976, -74.00831)",CANAL STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4450278,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,10:15,,,,,,LAUREL HILL BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450225,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/24/2021,3:44,MANHATTAN,10029,40.78393,-73.94423,"(40.78393, -73.94423)",EAST 97 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450279,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/24/2021,23:07,QUEENS,11413,40.679295,-73.73764,"(40.679295, -73.73764)",131 AVENUE,FRANCIS LEWIS BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450262,Sedan,Pick-up Truck,,, +08/21/2021,18:40,BROOKLYN,11237,40.707653,-73.921776,"(40.707653, -73.921776)",SAINT NICHOLAS AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450676,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,3:50,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4449910,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,0:00,MANHATTAN,10026,40.798126,-73.94832,"(40.798126, -73.94832)",WEST 112 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450725,Fire Engin,Sedan,,, +08/22/2021,14:02,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",NOSTRAND AVENUE,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4450857,Sedan,Bike,,, +08/24/2021,12:30,BRONX,10452,40.831333,-73.92167,"(40.831333, -73.92167)",EAST 165 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450191,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/24/2021,22:57,,,,,,BAILEY AVENUE,VANCORTLANDT PARK WEST,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450460,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,7:00,,,40.654346,-73.9217,"(40.654346, -73.9217)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4450851,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/13/2021,12:15,BRONX,10463,40.880165,-73.90721,"(40.880165, -73.90721)",,,269 WEST 231 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450801,Sedan,,,, +08/24/2021,20:03,BROOKLYN,11219,40.62615,-74.00494,"(40.62615, -74.00494)",12 AVENUE,67 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450585,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,3:11,MANHATTAN,10019,40.766388,-73.98421,"(40.766388, -73.98421)",,,320 WEST 56 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4449954,Sedan,,,, +08/23/2021,7:00,BROOKLYN,11237,40.6967,-73.91031,"(40.6967, -73.91031)",IRVING AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450684,Sedan,,,, +08/24/2021,13:00,QUEENS,11373,40.735123,-73.8792,"(40.735123, -73.8792)",,,86-17 53 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450153,Convertible,,,, +08/24/2021,19:19,QUEENS,11420,40.677048,-73.80547,"(40.677048, -73.80547)",134 STREET,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4450263,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/24/2021,15:40,STATEN ISLAND,10312,40.56152,-74.17186,"(40.56152, -74.17186)",ARTHUR KILL ROAD,DRUMGOOLE ROAD WEST,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4450738,Sedan,Pick-up Truck,,, +08/24/2021,18:00,,,40.74128,-73.90257,"(40.74128, -73.90257)",QUEENS BOULEVARD,61 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450220,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +08/24/2021,0:19,,,40.753468,-73.91355,"(40.753468, -73.91355)",49 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450449,Station Wagon/Sport Utility Vehicle,Bike,,, +08/24/2021,11:24,QUEENS,11385,40.699047,-73.89698,"(40.699047, -73.89698)",,,59-03 DECATUR STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450509,Sedan,,,, +08/24/2021,19:00,QUEENS,11354,40.76094,-73.83037,"(40.76094, -73.83037)",,,136-08 38 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,13:24,QUEENS,11434,40.667763,-73.785645,"(40.667763, -73.785645)",135 AVENUE,151 PLACE,,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,,,,4450931,Pick-up Truck,,,, +08/12/2021,14:55,QUEENS,11364,40.749413,-73.755325,"(40.749413, -73.755325)",,,221-42 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450831,Box Truck,Sedan,,, +08/23/2021,4:24,,,40.81666,-73.938995,"(40.81666, -73.938995)",WEST 139 STREET,,,1,0,0,0,1,0,0,0,Pavement Slippery,Pavement Slippery,,,,4450707,Sedan,Bike,,, +08/24/2021,7:20,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,0:25,MANHATTAN,10005,40.706142,-74.00603,"(40.706142, -74.00603)",WATER STREET,MAIDEN LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450094,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,8:56,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450809,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,13:10,BROOKLYN,11211,40.70251,-73.95636,"(40.70251, -73.95636)",LEE AVENUE,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450184,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,20:57,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450412,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,0:10,,,40.852818,-73.90476,"(40.852818, -73.90476)",CRESTON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450749,,,,, +08/24/2021,9:00,,,40.643738,-74.01863,"(40.643738, -74.01863)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:59,BROOKLYN,11210,40.62147,-73.95072,"(40.62147, -73.95072)",BEDFORD AVENUE,AVENUE L,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450283,Sedan,Sedan,,, +08/24/2021,1:10,,,40.608154,-74.12724,"(40.608154, -74.12724)",SOUTH GANNON AVENUE,GANSEVOORT BOULEVARD,,0,0,0,0,0,0,0,0,Illnes,,,,,4450332,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,9:55,,,40.785973,-73.96886,"(40.785973, -73.96886)",WEST 87 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450072,Sedan,Sedan,,, +08/24/2021,14:30,,,,,,north hanger road,nassau expressway,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450228,Sedan,,,, +08/24/2021,11:00,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",43 AVENUE,JUNCTION BOULEVARD,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4450545,Sedan,,,, +08/23/2021,13:30,,,40.69428,-73.92674,"(40.69428, -73.92674)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4450688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,18:50,BROOKLYN,11208,40.681522,-73.88507,"(40.681522, -73.88507)",,,93 ELTON STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450425,Sedan,E-Scooter,,, +08/24/2021,16:00,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",FLATBUSH AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4450168,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/24/2021,22:10,,,40.772045,-73.87623,"(40.772045, -73.87623)",GRAND CENTRAL PARKWAY,94 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450234,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,0:56,MANHATTAN,10010,40.73539,-73.97511,"(40.73539, -73.97511)",EAST 23 STREET,AVENUE C,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450921,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,14:15,QUEENS,11374,40.726173,-73.86489,"(40.726173, -73.86489)",63 DRIVE,ALDERTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450893,Refrigerated Van,,,, +08/22/2021,10:32,MANHATTAN,10029,40.794235,-73.93979,"(40.794235, -73.93979)",,,2172 2 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450776,Pick-up Truck,Sedan,,, +08/24/2021,21:30,QUEENS,11385,40.71085,-73.901276,"(40.71085, -73.901276)",MENAHAN STREET,61 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4450524,Sedan,,,, +08/24/2021,8:45,BROOKLYN,11210,40.631783,-73.945404,"(40.631783, -73.945404)",,,3210 AVENUE H,1,0,1,0,0,0,0,0,Unspecified,,,,,4450864,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,12:55,BROOKLYN,11212,40.655457,-73.90285,"(40.655457, -73.90285)",,,1555 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4450313,Motorcycle,Tractor Truck Diesel,,, +08/24/2021,5:09,,,40.745415,-74.00821,"(40.745415, -74.00821)",11 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4449980,Bus,Garbage or Refuse,,, +08/24/2021,14:08,MANHATTAN,10035,40.803425,-73.93309,"(40.803425, -73.93309)",2 AVENUE,EAST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450399,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,14:05,BRONX,10468,40.862404,-73.89799,"(40.862404, -73.89799)",EAST FORDHAM ROAD,EAST 190 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4450128,Station Wagon/Sport Utility Vehicle,Bus,,, +08/24/2021,15:07,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450340,Sedan,Sedan,,, +08/24/2021,16:15,,,40.737865,-74.00019,"(40.737865, -74.00019)",WEST 13 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450290,Sedan,,,, +08/24/2021,10:27,BROOKLYN,11232,40.649376,-74.0023,"(40.649376, -74.0023)",6 AVENUE,40 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450253,Sedan,,,, +08/17/2021,16:45,,,40.770317,-73.87079,"(40.770317, -73.87079)",DITMARS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450917,Sedan,,,, +08/24/2021,13:15,,,40.700546,-73.917076,"(40.700546, -73.917076)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450693,Sedan,,,, +08/24/2021,10:00,BROOKLYN,11223,40.603283,-73.969795,"(40.603283, -73.969795)",,,1925 EAST 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450270,Sedan,,,, +08/24/2021,17:40,QUEENS,11422,40.6616,-73.73661,"(40.6616, -73.73661)",143 AVENUE,248 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450531,Sedan,,,, +08/24/2021,16:00,QUEENS,11434,40.662834,-73.76758,"(40.662834, -73.76758)",146 ROAD,178 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450198,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,0:48,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450419,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,13:00,MANHATTAN,10037,40.81112,-73.94168,"(40.81112, -73.94168)",,,74 WEST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450479,Sedan,,,, +08/24/2021,20:00,QUEENS,11362,40.764748,-73.72533,"(40.764748, -73.72533)",,,254-61 NASSAU BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450233,Sedan,Sedan,,, +08/24/2021,19:40,BRONX,10458,40.857773,-73.89459,"(40.857773, -73.89459)",,,2358 WEBSTER AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4450358,Sedan,Motorcycle,,, +08/24/2021,6:50,,,40.83213,-73.86547,"(40.83213, -73.86547)",TAYLOR AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4449998,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/24/2021,18:45,BRONX,10455,40.814743,-73.90561,"(40.814743, -73.90561)",,,625 TINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4450275,Sedan,Sedan,Sedan,, +08/24/2021,13:18,,,40.69099,-73.98932,"(40.69099, -73.98932)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4450102,Bus,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,17:12,MANHATTAN,10029,40.789623,-73.94007,"(40.789623, -73.94007)",EAST 106 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450280,Sedan,Bike,,, +08/24/2021,1:20,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4450190,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,16:40,BRONX,10455,40.816166,-73.914246,"(40.816166, -73.914246)",,,560 BROOK AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4450274,Sedan,,,, +08/13/2021,10:05,BROOKLYN,11221,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,GATES AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,17:34,MANHATTAN,10002,40.710464,-73.986626,"(40.710464, -73.986626)",SOUTH STREET,CLINTON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4450244,Station Wagon/Sport Utility Vehicle,Van,,, +08/21/2021,11:51,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450677,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,2:29,,,40.717155,-73.94924,"(40.717155, -73.94924)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4449911,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,21:10,MANHATTAN,10026,40.80284,-73.95282,"(40.80284, -73.95282)",,,1912 7 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4450726,Sedan,,,, +08/24/2021,10:28,QUEENS,11106,40.75976,-73.94082,"(40.75976, -73.94082)",37 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450459,Sedan,Sedan,,, +08/24/2021,16:30,,,40.651325,-73.93906,"(40.651325, -73.93906)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450856,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/24/2021,14:15,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450823,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,1:12,,,40.615627,-74.16152,"(40.615627, -74.16152)",,,102 LAMBERTS LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450334,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,9:55,BROOKLYN,11209,40.61367,-74.03536,"(40.61367, -74.03536)",3 AVENUE,100 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450071,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,12:07,,,,,,PELHAM PARKWAY SOUTH,WILLIAMSBRIDGE ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4450074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,14:51,BROOKLYN,11222,40.728386,-73.95809,"(40.728386, -73.95809)",,,72 NOBLE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450300,Sedan,Sedan,,, +08/06/2021,13:57,,,40.80003,-73.954865,"(40.80003, -73.954865)",WEST 111 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4450724,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,0:52,BRONX,10469,40.875484,-73.8507,"(40.875484, -73.8507)",WILSON AVENUE,BOSTON ROAD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4450117,Sedan,Pick up tr,,, +08/24/2021,16:00,MANHATTAN,10025,40.795383,-73.97351,"(40.795383, -73.97351)",,,303 WEST 96 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450319,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,13:00,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Following Too Closely,Following Too Closely,Unspecified,,4450763,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/24/2021,12:05,,,40.79166,-73.96469,"(40.79166, -73.96469)",CENTRAL PARK WEST,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4450162,Sedan,Pick-up Truck,,, +08/24/2021,15:10,QUEENS,11364,40.731777,-73.77012,"(40.731777, -73.77012)",UNION TURNPIKE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4450375,Sedan,Box Truck,,, +08/23/2021,13:00,,,,,,MORRIS AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4450808,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,10:10,BRONX,10458,40.858406,-73.89061,"(40.858406, -73.89061)",WASHINGTON AVENUE,EAST 188 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4450017,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,17:53,,,40.722836,-73.95687,"(40.722836, -73.95687)",NORTH 13 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450301,Station Wagon/Sport Utility Vehicle,Dump,,, +08/24/2021,22:02,,,40.71937,-73.7876,"(40.71937, -73.7876)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4450369,Sedan,Sedan,,, +08/24/2021,2:31,BROOKLYN,11224,40.57788,-73.99477,"(40.57788, -73.99477)",NEPTUNE AVENUE,WEST 28 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450409,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,9:40,BRONX,10467,40.865448,-73.86635,"(40.865448, -73.86635)",ALLERTON AVENUE,CRUGER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450037,Sedan,Moped,,, +08/24/2021,3:15,BRONX,10470,40.896378,-73.8718,"(40.896378, -73.8718)",,,125 EAST 233 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450116,Sedan,Sedan,,, +08/12/2021,14:29,,,40.823315,-73.94901,"(40.823315, -73.94901)",WEST 142 STREET,,,2,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450780,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/24/2021,9:00,,,,,,west 232 street,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450798,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/24/2021,4:45,QUEENS,11368,40.757824,-73.86101,"(40.757824, -73.86101)",108 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:00,QUEENS,11420,40.664524,-73.81978,"(40.664524, -73.81978)",,,122-02 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450264,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,2:00,,,40.57246,-74.189835,"(40.57246, -74.189835)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4450768,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,7:19,,,40.768917,-73.888756,"(40.768917, -73.888756)",DITMARS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450455,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,20:45,BROOKLYN,11206,40.697247,-73.932846,"(40.697247, -73.932846)",MYRTLE AVENUE,DITMARS STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450701,Bike,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,11:35,,,40.748203,-73.84962,"(40.748203, -73.84962)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450058,Taxi,Taxi,,, +08/24/2021,15:20,,,40.743008,-73.77996,"(40.743008, -73.77996)",HORACE HARDING EXPRESSWAY,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4450188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,6:02,BRONX,10468,40.864117,-73.90106,"(40.864117, -73.90106)",,,20 WEST 190 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4449996,Sedan,,,, +08/24/2021,14:32,,,40.654953,-74.00703,"(40.654953, -74.00703)",3 AVENUE,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4450129,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,20:28,,,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,,,2,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4450858,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/24/2021,12:30,,,40.719437,-73.94063,"(40.719437, -73.94063)",RICHARDSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450295,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/24/2021,8:48,QUEENS,11354,40.765686,-73.82913,"(40.765686, -73.82913)",137 STREET,LEAVITT STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4450121,Station Wagon/Sport Utility Vehicle,,,, +07/13/2021,7:38,,,40.69149,-73.92557,"(40.69149, -73.92557)",BROADWAY,GREENE AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4450666,Sedan,Motorscooter,,, +08/24/2021,23:46,QUEENS,11363,40.773983,-73.74209,"(40.773983, -73.74209)",LITTLE NECK PARKWAY,39 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,18:00,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450221,Sedan,Box Truck,,, +08/24/2021,11:00,,,40.710434,-73.838066,"(40.710434, -73.838066)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4450316,Sedan,Sedan,Sedan,Sedan,Sedan +08/24/2021,10:05,BRONX,10460,40.833733,-73.88994,"(40.833733, -73.88994)",,,1515 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450393,Sedan,,,, +08/24/2021,17:41,MANHATTAN,10032,40.839176,-73.94114,"(40.839176, -73.94114)",BROADWAY,WEST 165 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450350,Motorcycle,Sedan,,, +08/24/2021,21:00,QUEENS,11377,40.754063,-73.89958,"(40.754063, -73.89958)",64 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450258,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,23:50,QUEENS,11372,40.747265,-73.88752,"(40.747265, -73.88752)",,,78-01 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450503,Bike,Sedan,,, +08/08/2021,17:15,,,40.87166,-73.92903,"(40.87166, -73.92903)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4450747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/24/2021,13:30,QUEENS,11433,40.703796,-73.79765,"(40.703796, -73.79765)",,,92-31 UNION HALL STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450208,Taxi,,,, +08/24/2021,23:50,BROOKLYN,11211,40.71214,-73.955574,"(40.71214, -73.955574)",,,62 MARCY AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450558,Bike,,,, +08/24/2021,17:08,MANHATTAN,10036,40.75857,-73.985054,"(40.75857, -73.985054)",7 AVENUE,WEST 46 STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Aggressive Driving/Road Rage,,,,4450196,Moped,Bike,,, +08/24/2021,0:35,QUEENS,11434,40.692112,-73.77729,"(40.692112, -73.77729)",LINDEN BOULEVARD,173 STREET,,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4449966,Taxi,,,, +08/21/2021,20:59,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4450680,Sedan,E-Bike,,, +08/24/2021,11:52,BROOKLYN,11203,40.65097,-73.94642,"(40.65097, -73.94642)",,,3319 CHURCH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450865,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,10:35,BROOKLYN,11235,40.57936,-73.96505,"(40.57936, -73.96505)",BRIGHTON 3 STREET,BRIGHTON 2 LANE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4450095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/24/2021,5:42,BROOKLYN,11233,40.675884,-73.90347,"(40.675884, -73.90347)",VAN SIDERIN AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4450235,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,16:47,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4450836,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/22/2022,18:00,BROOKLYN,11201,40.69278,-73.98895,"(40.69278, -73.98895)",,,333 ADAMS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4505050,Station Wagon/Sport Utility Vehicle,,,, +08/06/2021,12:20,,,40.752853,-73.99299,"(40.752853, -73.99299)",WEST 35 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450743,Taxi,E-Bike,Station Wagon/Sport Utility Vehicle,, +08/24/2021,16:30,QUEENS,11694,40.582756,-73.8351,"(40.582756, -73.8351)",,,112-10 BEACH CHANNEL DRIVE,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4450467,Station Wagon/Sport Utility Vehicle,Van,,, +08/24/2021,22:10,,,40.74147,-73.82281,"(40.74147, -73.82281)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450241,Sedan,Sedan,,, +08/24/2021,10:15,QUEENS,11385,40.70964,-73.92164,"(40.70964, -73.92164)",,,1710 FLUSHING AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450887,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/24/2021,21:08,BROOKLYN,11230,40.61324,-73.96199,"(40.61324, -73.96199)",,,1490 EAST 12 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4450289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/24/2021,11:26,MANHATTAN,10034,40.871193,-73.9141,"(40.871193, -73.9141)",BROADWAY,WEST 218 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450485,Dump,Sedan,,, +08/24/2021,14:09,MANHATTAN,10009,40.724575,-73.987495,"(40.724575, -73.987495)",1 AVENUE,EAST 3 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450227,Station Wagon/Sport Utility Vehicle,Bike,,, +08/24/2021,15:52,,,40.655632,-73.95987,"(40.655632, -73.95987)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450176,Sedan,,,, +08/18/2021,10:45,BROOKLYN,11237,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,KNICKERBOCKER AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450673,Taxi,E-Bike,,, +08/24/2021,23:59,,,40.684338,-73.914764,"(40.684338, -73.914764)",BOYLAND STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450312,Sedan,Sedan,,, +08/24/2021,11:28,,,40.67134,-73.88195,"(40.67134, -73.88195)",SUTTER AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,,4450428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/24/2021,14:30,BROOKLYN,11231,40.67321,-73.99947,"(40.67321, -73.99947)",,,375 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,13:47,MANHATTAN,10001,40.747852,-73.99291,"(40.747852, -73.99291)",WEST 29 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450923,Sedan,,,, +08/24/2021,12:12,QUEENS,11691,40.603798,-73.75211,"(40.603798, -73.75211)",SMITH PLACE,MOTT AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4450276,Sedan,,,, +08/23/2021,2:40,BRONX,10469,40.860718,-73.834175,"(40.860718, -73.834175)",,,1800 WARING AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4450761,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,13:19,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450521,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,11:00,QUEENS,11422,40.66658,-73.73587,"(40.66658, -73.73587)",NORTH CONDUIT AVENUE,242 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450847,Sedan,,,, +08/24/2021,14:23,BRONX,10457,40.84681,-73.9083,"(40.84681, -73.9083)",EAST 175 STREET,EASTBURN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450281,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,7:30,MANHATTAN,10018,40.75664,-73.994316,"(40.75664, -73.994316)",,,406 WEST 39 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450825,Sedan,unknown,,, +08/24/2021,7:06,QUEENS,11385,,,,cypress hills street,jackie robinson pkwy,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4450536,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/24/2021,1:40,BROOKLYN,11206,40.701565,-73.94333,"(40.701565, -73.94333)",,,700 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4449938,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,12:59,MANHATTAN,10027,40.808163,-73.94519,"(40.808163, -73.94519)",,,310 LENOX AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4450727,Sedan,Sedan,,, +08/20/2021,21:32,BROOKLYN,11206,40.69864,-73.93819,"(40.69864, -73.93819)",BROADWAY,LOCUST STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450674,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,19:05,QUEENS,11364,40.747887,-73.77485,"(40.747887, -73.77485)",203 STREET,56 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450201,Bike,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,13:05,,,40.839615,-73.88443,"(40.839615, -73.88443)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4450335,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/24/2021,13:00,BRONX,10454,40.807766,-73.91023,"(40.807766, -73.91023)",EAST 142 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450076,Sedan,,,, +08/24/2021,0:25,BROOKLYN,11220,40.640903,-74.00035,"(40.640903, -74.00035)",48 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,10:15,,,40.693314,-73.92496,"(40.693314, -73.92496)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4450692,Sedan,Sedan,Pick-up Truck,, +08/24/2021,22:15,,,40.852818,-73.90476,"(40.852818, -73.90476)",EAST BURNSIDE AVENUE,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450468,Ambulance,Sedan,,, +08/24/2021,21:58,BROOKLYN,11249,40.699413,-73.95902,"(40.699413, -73.95902)",WALLABOUT STREET,WYTHE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450257,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/24/2021,20:00,,,40.583687,-73.94487,"(40.583687, -73.94487)",EMMONS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450269,Station Wagon/Sport Utility Vehicle,Bike,,, +08/24/2021,15:40,BROOKLYN,11207,40.665176,-73.89122,"(40.665176, -73.89122)",LIVONIA AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450421,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,22:14,MANHATTAN,10019,40.766502,-73.99418,"(40.766502, -73.99418)",11 AVENUE,WEST 51 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4450296,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,14:25,QUEENS,11358,40.75809,-73.795815,"(40.75809, -73.795815)",NORTHERN BOULEVARD,171 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:45,BROOKLYN,11209,40.622517,-74.0248,"(40.622517, -74.0248)",,,512 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450157,Sedan,Sedan,,, +08/21/2021,4:58,,,40.836796,-73.91949,"(40.836796, -73.91949)",GERARD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4450807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/24/2021,10:57,MANHATTAN,10022,40.76431,-73.971214,"(40.76431, -73.971214)",,,16 EAST 60 STREET,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4450025,Sedan,,,, +08/22/2021,22:20,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4450769,Sedan,,,, +08/24/2021,15:12,MANHATTAN,10017,40.75425,-73.96899,"(40.75425, -73.96899)",2 AVENUE,EAST 49 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450302,Taxi,Box Truck,,, +08/24/2021,10:30,QUEENS,11422,40.66528,-73.73562,"(40.66528, -73.73562)",SOUTH CONDUIT AVENUE,243 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450232,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,15:56,BROOKLYN,11211,40.706898,-73.953964,"(40.706898, -73.953964)",,,402 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450905,Sedan,Sedan,,, +08/03/2021,19:15,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,2,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450723,Sedan,E-Bike,,, +08/24/2021,14:54,BROOKLYN,11203,40.65254,-73.923676,"(40.65254, -73.923676)",EAST 57 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4450855,Sedan,Sedan,,, +08/24/2021,9:40,BRONX,10465,40.832184,-73.82755,"(40.832184, -73.82755)",,,3446 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450122,Sedan,Sedan,,, +08/24/2021,10:20,STATEN ISLAND,10304,40.62043,-74.08444,"(40.62043, -74.08444)",,,268 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450177,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,17:00,,,40.61265,-73.96187,"(40.61265, -73.96187)",EAST 12 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450443,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,23:55,,,,,,MIDLAND PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450370,Sedan,,,, +08/24/2021,9:46,QUEENS,11377,40.745117,-73.904495,"(40.745117, -73.904495)",60 STREET,WOODSIDE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,9:00,,,,,,COVERLY AVENUE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4450010,Station Wagon/Sport Utility Vehicle,Dump,,, +08/24/2021,22:49,,,,,,EAST 138 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,9:15,BROOKLYN,11249,40.72118,-73.95866,"(40.72118, -73.95866)",WYTHE AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450070,Sedan,E-Scooter,,, +08/24/2021,10:50,MANHATTAN,10013,40.720623,-74.00666,"(40.720623, -74.00666)",,,30 VARICK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450311,Sedan,Sedan,,, +08/24/2021,9:00,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",LUDLOW STREET,DELANCEY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4449995,Sedan,Bike,,, +08/24/2021,17:38,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450189,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,6:00,,,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474807,Sedan,,,, +08/24/2021,0:00,MANHATTAN,10032,40.832764,-73.94583,"(40.832764, -73.94583)",BROADWAY,WEST 155 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450366,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,15:00,BROOKLYN,11203,40.643093,-73.92558,"(40.643093, -73.92558)",,,640 EAST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450859,Sedan,,,, +08/24/2021,21:10,,,40.70504,-73.959045,"(40.70504, -73.959045)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4450292,Sedan,,,, +08/24/2021,14:40,BROOKLYN,11234,40.623695,-73.9142,"(40.623695, -73.9142)",AVENUE M,EAST 69 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4450109,Sedan,Sedan,,, +08/23/2021,11:13,,,40.696014,-73.92153,"(40.696014, -73.92153)",GREENE AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450686,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/24/2021,9:14,BROOKLYN,11233,40.678276,-73.91076,"(40.678276, -73.91076)",FULTON STREET,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4450236,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,19:43,QUEENS,11434,40.68315,-73.780304,"(40.68315, -73.780304)",165 STREET,119 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450222,Sedan,Sedan,,, +08/24/2021,3:00,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4450454,Sedan,,,, +08/24/2021,15:00,QUEENS,11101,40.744335,-73.951004,"(40.744335, -73.951004)",11 STREET,47 ROAD,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4450501,Taxi,Bike,,, +08/24/2021,0:05,,,,,,JEROME AVENUE,PLAZA DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450243,Sedan,Motorcycle,,, +08/23/2021,10:52,BROOKLYN,11226,40.64677,-73.95206,"(40.64677, -73.95206)",ROGERS AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,13:45,QUEENS,11103,40.7598,-73.91835,"(40.7598, -73.91835)",,,31-70 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450097,Pick-up Truck,Sedan,,, +08/23/2021,1:55,BROOKLYN,11236,40.650402,-73.89422,"(40.650402, -73.89422)",EAST 108 STREET,GLENWOOD ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4450839,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,9:45,BROOKLYN,11249,40.70312,-73.96443,"(40.70312, -73.96443)",WYTHE AVENUE,ROSS STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4450056,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,13:38,STATEN ISLAND,10301,40.64411,-74.09577,"(40.64411, -74.09577)",VANBUREN STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450697,Sedan,,,, +08/24/2021,16:35,MANHATTAN,10019,40.766285,-73.98186,"(40.766285, -73.98186)",BROADWAY,WEST 57 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450315,Station Wagon/Sport Utility Vehicle,Pedicab,,, +08/24/2021,15:35,BRONX,10468,40.871002,-73.893845,"(40.871002, -73.893845)",JEROME AVENUE,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450392,Bus,Sedan,,, +08/24/2021,14:09,BROOKLYN,11236,40.640102,-73.91461,"(40.640102, -73.91461)",FARRAGUT ROAD,EAST 83 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450131,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,15:40,BROOKLYN,11201,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4450259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,13:00,BRONX,10460,40.842052,-73.868706,"(40.842052, -73.868706)",TAYLOR AVENUE,VANNEST AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4450344,Bike,,,, +08/24/2021,10:26,,,40.729824,-74.010605,"(40.729824, -74.010605)",WEST STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450285,Sedan,Bike,,, +08/24/2021,7:40,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450048,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,7:36,,,40.69595,-73.86237,"(40.69595, -73.86237)",FOREST PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4449973,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,13:50,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450193,Sedan,,,, +07/10/2021,21:15,,,40.88031,-73.91854,"(40.88031, -73.91854)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4450796,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,22:50,,,40.71039,-73.98662,"(40.71039, -73.98662)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450265,Sedan,,,, +08/24/2021,12:45,QUEENS,11368,40.75337,-73.85302,"(40.75337, -73.85302)",114 STREET,39 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4450149,Van,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,22:00,BRONX,10469,40.870804,-73.841125,"(40.870804, -73.841125)",,,3039 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450661,Sedan,,,, +08/22/2021,17:35,,,40.697678,-73.916374,"(40.697678, -73.916374)",GROVE STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450681,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,22:00,QUEENS,11361,40.76145,-73.76876,"(40.76145, -73.76876)",,,43-07 214 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450464,Sedan,Sedan,,, +08/21/2021,20:34,MANHATTAN,10029,40.791466,-73.938736,"(40.791466, -73.938736)",,,2119 1 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450744,,,,, +08/24/2021,7:30,QUEENS,11432,40.71133,-73.78763,"(40.71133, -73.78763)",,,87-20 175 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450210,Taxi,,,, +08/24/2021,17:10,QUEENS,11372,40.75608,-73.8805,"(40.75608, -73.8805)",,,87-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450489,Sedan,E-Bike,,, +08/24/2021,9:00,BROOKLYN,11220,40.642452,-74.00138,"(40.642452, -74.00138)",,,817 47 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4450786,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,21:29,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4450307,E-Bike,,,, +08/24/2021,1:10,MANHATTAN,10011,40.749302,-74.00807,"(40.749302, -74.00807)",WEST 23 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450826,Sedan,Sedan,,, +08/21/2021,19:10,BROOKLYN,11203,40.651615,-73.94387,"(40.651615, -73.94387)",,,914 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450861,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,7:00,QUEENS,11429,40.707554,-73.7503,"(40.707554, -73.7503)",HOLLIS AVENUE,207 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450077,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,20:05,BRONX,10461,40.836376,-73.83671,"(40.836376, -73.83671)",,,1317 BALCOM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450338,Sedan,Pick-up Truck,,, +08/13/2021,14:22,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4450719,Bike,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,12:36,MANHATTAN,10009,40.725708,-73.977165,"(40.725708, -73.977165)",,,402 EAST 10 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4450298,Bus,,,, +08/24/2021,12:00,BROOKLYN,11222,40.724464,-73.940506,"(40.724464, -73.940506)",,,43 SUTTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450069,Sedan,,,, +08/24/2021,12:00,,,40.69614,-73.9734,"(40.69614, -73.9734)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450125,Sedan,Box Truck,,, +08/24/2021,15:49,MANHATTAN,10128,40.786697,-73.95457,"(40.786697, -73.95457)",,,1356 MADISON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4450407,Motorbike,Sedan,,, +08/24/2021,18:46,BROOKLYN,11219,40.637615,-73.98584,"(40.637615, -73.98584)",42 STREET,14 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450386,Sedan,E-Scooter,,, +08/24/2021,10:37,BROOKLYN,11234,40.62685,-73.91183,"(40.62685, -73.91183)",,,1264 BERGEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450026,Sedan,Van,,, +08/23/2021,13:17,MANHATTAN,10016,40.74715,-73.985504,"(40.74715, -73.985504)",EAST 32 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4450746,Van,Sedan,Box Truck,, +08/22/2021,12:40,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4450840,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/24/2021,15:40,BRONX,10468,40.862083,-73.90162,"(40.862083, -73.90162)",,,2431 JEROME AVENUE,2,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450471,E-Bike,,,, +01/26/2022,13:50,MANHATTAN,10027,40.81636,-73.954094,"(40.81636, -73.954094)",AMSTERDAM AVENUE,WEST 131 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4497577,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,16:15,,,40.61747,-73.98129,"(40.61747, -73.98129)",61 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450249,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,11:30,BROOKLYN,11206,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450672,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/21/2021,8:05,,,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450675,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,6:50,,,40.788555,-73.78234,"(40.788555, -73.78234)",212 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4449939,Sedan,,,, +08/16/2021,20:30,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450806,Sedan,,,, +08/24/2021,22:04,MANHATTAN,10021,40.773006,-73.96033,"(40.773006, -73.96033)",EAST 76 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4450272,Taxi,Sedan,Box Truck,, +08/24/2021,13:48,BROOKLYN,11207,40.668957,-73.898026,"(40.668957, -73.898026)",SUTTER AVENUE,ALABAMA AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450282,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/21/2021,20:49,MANHATTAN,10003,40.730995,-73.988846,"(40.730995, -73.988846)",,,55 3 AVENUE,3,0,2,0,0,0,1,0,Driver Inattention/Distraction,,,,,4450732,Sedan,,,, +08/24/2021,17:10,QUEENS,11370,40.75855,-73.89253,"(40.75855, -73.89253)",75 STREET,31 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450200,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/24/2021,22:25,,,,,,HARLEM RIVER DRIVE,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450423,Sedan,Sedan,,, +08/24/2021,15:55,,,40.690357,-73.989746,"(40.690357, -73.989746)",BOERUM PLACE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450231,Station Wagon/Sport Utility Vehicle,Bike,,, +08/24/2021,15:35,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Reaction to Uninvolved Vehicle,Unspecified,,,4450770,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/21/2021,20:33,QUEENS,11434,40.68558,-73.79105,"(40.68558, -73.79105)",115 AVENUE,155 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4450927,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/24/2021,18:27,BROOKLYN,11236,40.63825,-73.91766,"(40.63825, -73.91766)",EAST 79 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450277,Sedan,Sedan,,, +08/24/2021,14:00,QUEENS,11356,40.78169,-73.843216,"(40.78169, -73.843216)",20 AVENUE,125 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450119,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,6:50,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450003,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,18:38,QUEENS,11416,40.681484,-73.84788,"(40.681484, -73.84788)",103 AVENUE,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450324,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,16:30,,,40.839832,-73.92392,"(40.839832, -73.92392)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450445,Sedan,,,, +08/24/2021,17:35,QUEENS,11433,40.704422,-73.792854,"(40.704422, -73.792854)",ARCHER AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450178,Sedan,Sedan,,, +08/24/2021,14:30,BROOKLYN,11209,40.619537,-74.03266,"(40.619537, -74.03266)",,,9201 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450155,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,17:30,QUEENS,11365,40.73483,-73.802055,"(40.73483, -73.802055)",67 AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,23:30,,,40.710907,-73.95165,"(40.710907, -73.95165)",GRAND STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450755,Station Wagon/Sport Utility Vehicle,Bike,,, +08/24/2021,9:50,QUEENS,11377,40.751995,-73.901566,"(40.751995, -73.901566)",34 AVENUE,60 PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450226,E-Bike,,,, +08/24/2021,16:29,BROOKLYN,11220,40.64367,-74.015495,"(40.64367, -74.015495)",4 AVENUE,55 STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4450256,Sedan,,,, +01/26/2022,23:25,,,,,,PROSPECT EXPRESSWAY EAST,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4497649,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,6:26,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4450539,Sedan,Sedan,Sedan,, +08/14/2021,11:30,QUEENS,11385,40.70767,-73.901054,"(40.70767, -73.901054)",PALMETTO STREET,60 PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450886,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:31,,,,,,SHORE PARKWAY,NOSTRAND AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450268,Station Wagon/Sport Utility Vehicle,Bike,,, +08/24/2021,20:00,QUEENS,11101,40.743484,-73.95809,"(40.743484, -73.95809)",,,2-26 50 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450217,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,4:26,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,REMSEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4450854,Sedan,Sedan,,, +08/24/2021,12:00,,,40.603886,-74.00618,"(40.603886, -74.00618)",18 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450490,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,19:30,QUEENS,11378,40.72616,-73.90012,"(40.72616, -73.90012)",HAMILTON PLACE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450517,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,22:40,,,40.754105,-73.72321,"(40.754105, -73.72321)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4450582,Sedan,,,, +08/24/2021,14:35,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",POWELL STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450237,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +01/26/2022,19:44,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4497673,Sedan,Sedan,,, +01/28/2022,2:14,,,40.73235,-73.984955,"(40.73235, -73.984955)",EAST 14 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4497954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,16:20,QUEENS,11414,40.669876,-73.84741,"(40.669876, -73.84741)",SOUTH CONDUIT AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4504612,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/21/2022,23:45,MANHATTAN,10018,40.75892,-73.999695,"(40.75892, -73.999695)",WEST 39 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504981,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/11/2022,18:00,,,40.54129,-74.2069,"(40.54129, -74.2069)",FOSTER ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505066,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,21:12,BRONX,10469,40.88024,-73.83819,"(40.88024, -73.83819)",,,3435 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504931,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/19/2022,14:15,,,40.719734,-73.78652,"(40.719734, -73.78652)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4505157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,20:19,STATEN ISLAND,10314,40.60398,-74.11539,"(40.60398, -74.11539)",TODT HILL ROAD,LINCOLN STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504937,Sedan,,,, +02/08/2022,16:45,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4505161,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,0:14,MANHATTAN,10040,40.857838,-73.932045,"(40.857838, -73.932045)",BROADWAY,WEST 192 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504433,Sedan,,,, +02/21/2022,4:45,QUEENS,11368,40.741924,-73.854546,"(40.741924, -73.854546)",,,106-03 MARTENSE AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4504642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,18:53,BROOKLYN,11219,40.627213,-73.99895,"(40.627213, -73.99895)",,,1330 62 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4505007,Station Wagon/Sport Utility Vehicle,,,, +02/10/2022,22:18,BROOKLYN,11203,40.639915,-73.94549,"(40.639915, -73.94549)",,,1353 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504993,Sedan,Sedan,,, +02/18/2022,0:20,STATEN ISLAND,10310,40.640568,-74.118,"(40.640568, -74.118)",BROADWAY,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505087,Sedan,,,, +02/21/2022,22:35,QUEENS,11429,40.708405,-73.730835,"(40.708405, -73.730835)",107 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504751,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,17:00,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504854,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,12:40,,,40.678818,-73.96535,"(40.678818, -73.96535)",BERGEN STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505048,E-Bike,,,, +02/17/2022,11:20,MANHATTAN,10065,40.763733,-73.962074,"(40.763733, -73.962074)",2 AVENUE,EAST 64 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504953,4 dr sedan,,,, +02/21/2022,0:33,,,40.66937,-73.89523,"(40.66937, -73.89523)",PENNSYLVANIA AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4504583,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +02/21/2022,16:51,,,40.743504,-73.83567,"(40.743504, -73.83567)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,12:30,QUEENS,11374,40.728302,-73.8549,"(40.728302, -73.8549)",99 STREET,66 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504499,Sedan,,,, +02/16/2022,7:55,,,40.685368,-73.9109,"(40.685368, -73.9109)",DECATUR STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4504969,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,14:40,BROOKLYN,11218,40.643024,-73.981895,"(40.643024, -73.981895)",STORY STREET,LOUISA STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4504684,Box Truck,Sedan,,, +02/21/2022,0:42,,,40.67624,-73.866104,"(40.67624, -73.866104)",CONDUIT BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504587,Sedan,Sedan,,, +02/21/2022,15:50,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4504615,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/21/2022,20:15,QUEENS,11413,40.666397,-73.75337,"(40.666397, -73.75337)",143 ROAD,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4504747,Sedan,,,, +01/29/2022,18:00,BRONX,10451,40.81612,-73.926636,"(40.81612, -73.926636)",EAST 144 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,,,,,,4498627,,,,, +01/29/2022,17:00,BROOKLYN,11233,40.674763,-73.92267,"(40.674763, -73.92267)",,,653 KINGSBOROUGH 6 WALK,0,0,0,0,0,0,0,0,Unspecified,,,,,4498875,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,15:40,QUEENS,11413,40.676693,-73.74221,"(40.676693, -73.74221)",MERRICK BOULEVARD,228 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4498051,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,Sedan,Sedan +01/16/2022,12:30,,,40.821262,-73.94608,"(40.821262, -73.94608)",SAINT NICHOLAS AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4499025,Taxi,Bus,,, +01/12/2022,15:14,BRONX,10457,40.850487,-73.88675,"(40.850487, -73.88675)",,,702 EAST 182 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498792,Sedan,,,, +01/29/2022,14:00,BRONX,10462,40.85566,-73.86988,"(40.85566, -73.86988)",,,2180 BRONX PARK EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498611,Sedan,,,, +01/25/2022,12:00,,,40.734673,-73.99459,"(40.734673, -73.99459)",EAST 12 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499009,Sedan,,,, +01/22/2022,14:12,MANHATTAN,10013,40.71539,-73.99785,"(40.71539, -73.99785)",,,57 BAYARD STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498347,Sedan,Bike,,, +11/30/2021,7:10,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",116 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498120,Sedan,,,, +01/31/2022,15:20,MANHATTAN,10018,40.752438,-73.98819,"(40.752438, -73.98819)",,,144 WEST 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499257,Armored Truck,Taxi,,, +01/28/2022,9:12,MANHATTAN,10033,40.848736,-73.93234,"(40.848736, -73.93234)",AUDUBON AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499209,Sedan,,,, +01/27/2022,18:46,BROOKLYN,11212,40.667027,-73.911026,"(40.667027, -73.911026)",SUTTER AVENUE,CHESTER STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498743,Sedan,,,, +01/27/2022,3:44,MANHATTAN,10013,40.719223,-74.00786,"(40.719223, -74.00786)",,,150 FRANKLIN STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498083,Sedan,,,, +01/29/2022,19:15,MANHATTAN,10035,40.80438,-73.93953,"(40.80438, -73.93953)",EAST 124 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498461,Sedan,Bike,,, +01/30/2022,8:00,BRONX,10471,40.902317,-73.90161,"(40.902317, -73.90161)",,,5400 FIELDSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499107,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,12:15,,,40.5778,-73.96057,"(40.5778, -73.96057)",BRIGHTON 7 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4498329,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,8:04,QUEENS,11692,40.593628,-73.80075,"(40.593628, -73.80075)",,,436 BEACH 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499365,Station Wagon/Sport Utility Vehicle,UNK,,, +01/29/2022,7:46,,,40.57858,-73.9884,"(40.57858, -73.9884)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498829,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,23:00,,,40.602093,-74.080086,"(40.602093, -74.080086)",WINDERMERE ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498892,Sedan,,,, +01/25/2022,18:50,,,40.586212,-73.990585,"(40.586212, -73.990585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498315,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,14:10,,,40.865257,-73.9096,"(40.865257, -73.9096)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4498610,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,15:25,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498231,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,18:25,,,40.714554,-73.83147,"(40.714554, -73.83147)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498876,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,16:00,QUEENS,11356,40.789253,-73.85182,"(40.789253, -73.85182)",115 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498500,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,10:00,BROOKLYN,11207,40.66891,-73.89826,"(40.66891, -73.89826)",,,554 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499077,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,16:10,,,40.77039,-73.91771,"(40.77039, -73.91771)",HOYT AVENUE SOUTH,31 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498945,Sedan,Sedan,,, +01/30/2022,12:10,,,40.62539,-74.135376,"(40.62539, -74.135376)",,,1351 FOREST AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4498450,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,20:00,BRONX,10470,40.896423,-73.86291,"(40.896423, -73.86291)",,,4225 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4504830,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,14:30,,,,,,PELHAM PARKWAY,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450496,Sedan,Sedan,,, +01/28/2022,12:45,BROOKLYN,11238,40.68031,-73.96793,"(40.68031, -73.96793)",,,550 VANDERBILT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2021,5:35,,,40.713562,-73.72903,"(40.713562, -73.72903)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498924,Sedan,,,, +01/27/2022,13:00,,,40.788525,-73.81117,"(40.788525, -73.81117)",CLINTONVILLE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497982,Sedan,,,, +01/24/2022,13:00,MANHATTAN,10023,40.781025,-73.981316,"(40.781025, -73.981316)",BROADWAY,WEST 75 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4499235,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,12:30,MANHATTAN,10037,40.810856,-73.939026,"(40.810856, -73.939026)",WEST 132 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498760,Sedan,Sedan,,, +01/29/2022,12:00,QUEENS,11419,40.686348,-73.83071,"(40.686348, -73.83071)",,,112-11 103 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498537,Sedan,Sedan,,, +01/30/2022,0:00,BRONX,10461,40.844193,-73.82932,"(40.844193, -73.82932)",MIDDLETOWN ROAD,HOBART AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498648,Sedan,,,, +01/27/2022,16:30,BROOKLYN,11226,40.65569,-73.959145,"(40.65569, -73.959145)",,,263 PARKSIDE AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4498070,Sedan,,,, +01/27/2022,16:24,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498463,Sedan,Box Truck,,, +01/29/2022,18:01,BROOKLYN,11235,40.58285,-73.959015,"(40.58285, -73.959015)",GUIDER AVENUE,EAST 11 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498334,Sedan,,,, +01/28/2022,23:00,QUEENS,11436,40.68085,-73.79907,"(40.68085, -73.79907)",116 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499291,Sedan,,,, +01/28/2022,5:00,,,40.697758,-73.88901,"(40.697758, -73.88901)",78 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498390,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,18:56,BRONX,10474,40.80801,-73.88961,"(40.80801, -73.88961)",EAST BAY AVENUE,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498960,Tractor Truck Diesel,Sedan,,, +01/28/2022,21:35,BROOKLYN,11235,,,,EMMONS AVENUE,EAST 21 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/31/2022,16:40,BROOKLYN,11226,40.640514,-73.96431,"(40.640514, -73.96431)",,,390 MARLBOROUGH ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499316,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,17:02,,,40.66714,-73.95925,"(40.66714, -73.95925)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498505,Sedan,Van,,, +01/24/2022,18:40,BROOKLYN,11206,40.70199,-73.936745,"(40.70199, -73.936745)",,,869 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498564,Sedan,,,, +01/30/2022,3:15,BROOKLYN,11233,40.66984,-73.91906,"(40.66984, -73.91906)",,,1494 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4498745,Sedan,Sedan,,, +01/31/2022,5:07,,,,,,SHORE PARKWAY,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498989,Sedan,Van,,, +01/28/2022,21:37,QUEENS,11354,40.757183,-73.83396,"(40.757183, -73.83396)",COLLEGE POINT BOULEVARD,40 ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498097,Sedan,Sedan,,, +01/29/2022,11:26,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,Unspecified,Unspecified,,4498665,Garbage or Refuse,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +01/30/2022,22:15,,,40.62772,-74.15183,"(40.62772, -74.15183)",,,274 LAKE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498713,Sedan,Sedan,,, +01/31/2022,7:54,QUEENS,11367,40.737915,-73.81485,"(40.737915, -73.81485)",KISSENA BOULEVARD,64 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499542,Bus,,,, +01/26/2022,11:15,,,40.838196,-73.901184,"(40.838196, -73.901184)",CLAREMONT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4498199,Sedan,Sedan,,, +01/27/2022,19:17,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",KINGS HIGHWAY,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498258,Sedan,Sedan,,, +01/31/2022,23:34,,,40.666294,-73.89445,"(40.666294, -73.89445)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4499060,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/31/2022,8:30,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498977,Station Wagon/Sport Utility Vehicle,Bus,,, +08/25/2021,16:25,,,,,,QUEENSBORO BRIDGE LOWER,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4450559,E-Bike,,,, +01/27/2022,18:10,BROOKLYN,11221,40.69302,-73.93706,"(40.69302, -73.93706)",DE KALB AVENUE,LEWIS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498290,Sedan,E-Bike,,, +01/28/2022,15:16,,,40.683933,-73.91228,"(40.683933, -73.91228)",DECATUR STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4498724,Box Truck,Sedan,,, +01/27/2022,0:00,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499067,Box Truck,Sedan,,, +01/26/2022,7:46,,,40.686077,-74.00038,"(40.686077, -74.00038)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4497987,Chassis Cab,Box Truck,,, +01/29/2022,17:00,BROOKLYN,11236,40.650402,-73.89422,"(40.650402, -73.89422)",GLENWOOD ROAD,EAST 108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498856,Sedan,,,, +01/28/2022,12:30,,,40.754677,-73.975815,"(40.754677, -73.975815)",EAST 46 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499304,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,0:11,QUEENS,11373,40.745903,-73.884415,"(40.745903, -73.884415)",,,81-09 41 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498431,Sedan,Pick-up Truck,,, +01/29/2022,4:48,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4498102,Sedan,,,, +01/26/2022,14:44,BRONX,10452,40.8351,-73.919464,"(40.8351, -73.919464)",EAST 167 STREET,WALTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498229,,,,, +01/28/2022,12:00,QUEENS,11106,40.767193,-73.93759,"(40.767193, -73.93759)",,,32-50 VERNON BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499159,Sedan,,,, +04/14/2022,10:30,BRONX,10454,40.804256,-73.9193,"(40.804256, -73.9193)",EAST 134 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519150,Sedan,,,, +01/29/2022,19:11,QUEENS,11368,40.746166,-73.866165,"(40.746166, -73.866165)",,,97-28 43 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498422,FIRETRUCK,Sedan,,, +01/28/2022,13:50,BRONX,10461,40.842766,-73.84594,"(40.842766, -73.84594)",SAINT RAYMOND AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498637,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/30/2022,17:35,,,40.896614,-73.860954,"(40.896614, -73.860954)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4498493,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:10,,,40.76241,-73.95443,"(40.76241, -73.95443)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4498596,Sedan,Sedan,,, +01/19/2022,20:33,,,40.682304,-73.92596,"(40.682304, -73.92596)",DECATUR STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498251,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/29/2022,23:40,BRONX,10458,,,,,,250 Bedford park boulevard,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498659,Sedan,,,, +01/30/2022,4:10,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498184,Sedan,,,, +01/21/2022,4:50,QUEENS,11433,40.693905,-73.792946,"(40.693905, -73.792946)",,,108-41 159 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498579,Sedan,,,, +01/31/2022,8:00,BRONX,10473,40.827,-73.84359,"(40.827, -73.84359)",ZEREGA AVENUE,QUIMBY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499032,Sedan,Sedan,,, +01/31/2022,7:20,BROOKLYN,11204,40.632156,-73.98435,"(40.632156, -73.98435)",16 AVENUE,47 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4498844,Taxi,Sedan,,, +01/28/2022,9:00,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4499220,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/27/2022,19:30,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",EAST 51 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497992,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,3:25,BROOKLYN,11208,40.66682,-73.88166,"(40.66682, -73.88166)",NEW LOTS AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499072,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,5:20,BROOKLYN,11209,40.6234,-74.02812,"(40.6234, -74.02812)",,,8510 4 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498367,Sedan,,,, +01/26/2022,9:25,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498366,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/11/2022,0:29,,,40.60235,-74.189644,"(40.60235, -74.189644)",CHELSEA ROAD,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498038,Sedan,,,, +01/24/2022,21:26,BROOKLYN,11235,40.588886,-73.965645,"(40.588886, -73.965645)",OCEAN PARKWAY,AVENUE Y,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499151,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/30/2022,20:39,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4498515,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,2:34,MANHATTAN,10002,40.71504,-73.99681,"(40.71504, -73.99681)",BOWERY,BAYARD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499478,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,13:41,QUEENS,11416,40.68752,-73.849495,"(40.68752, -73.849495)",,,94-15 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498532,Sedan,,,, +01/28/2022,17:23,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498124,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,6:04,,,,,,WASHINGTON BRIDGE 181 ST,,,2,0,0,0,0,0,2,0,Following Too Closely,Pavement Slippery,,,,4498482,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,16:24,,,40.6831,-73.93209,"(40.6831, -73.93209)",STUYVESANT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499200,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,3:48,QUEENS,11106,40.759003,-73.9349,"(40.759003, -73.9349)",,,23-03 36 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,12:47,,,40.697407,-73.93601,"(40.697407, -73.93601)",BROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498697,Sedan,,,, +01/06/2022,18:28,BROOKLYN,11215,40.66803,-73.983955,"(40.66803, -73.983955)",6 AVENUE,9 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499496,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,15:24,STATEN ISLAND,10301,40.644497,-74.08332,"(40.644497, -74.08332)",,,16 CURTIS PLACE,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4498454,Sedan,Sedan,,, +01/29/2022,13:40,STATEN ISLAND,10312,40.562767,-74.18087,"(40.562767, -74.18087)",WOODROW ROAD,HEFFERNAN STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4499359,Station Wagon/Sport Utility Vehicle,Garbage tr,,, +01/30/2022,23:17,,,40.890293,-73.86518,"(40.890293, -73.86518)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Reaction to Uninvolved Vehicle,,,,4498797,Sedan,Sedan,,, +01/31/2022,19:01,MANHATTAN,10065,40.760223,-73.957634,"(40.760223, -73.957634)",EAST 62 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4499436,Box Truck,,,, +01/28/2022,22:25,BROOKLYN,11211,40.717716,-73.94097,"(40.717716, -73.94097)",,,260 WITHERS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498680,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2020,23:50,BRONX,10462,40.833233,-73.85449,"(40.833233, -73.85449)",,,1268 OLMSTEAD AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498730,Taxi,,,, +01/22/2022,16:37,,,40.782703,-73.97123,"(40.782703, -73.97123)",WEST 82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498896,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,17:30,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498928,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,6:20,BROOKLYN,11207,40.678165,-73.89454,"(40.678165, -73.89454)",,,54 WYONA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499055,Sedan,,,, +01/27/2022,21:00,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4498322,Sedan,Sedan,,, +01/22/2022,12:27,,,40.674885,-73.927765,"(40.674885, -73.927765)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498520,Sedan,Bike,,, +01/29/2022,9:33,BRONX,10462,40.846474,-73.86011,"(40.846474, -73.86011)",,,864 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4498135,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,17:00,BROOKLYN,11203,40.64166,-73.93705,"(40.64166, -73.93705)",EAST 42 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499334,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,20:56,,,40.75369,-73.74445,"(40.75369, -73.74445)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498913,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,10:08,BRONX,10464,40.855194,-73.79131,"(40.855194, -73.79131)",,,632 CITY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498652,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,11:30,MANHATTAN,10029,40.78996,-73.94291,"(40.78996, -73.94291)",,,2034 2 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498812,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,23:02,BROOKLYN,11209,40.62935,-74.024086,"(40.62935, -74.024086)",,,454 76 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4498156,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +01/26/2022,11:20,QUEENS,11368,40.757336,-73.86849,"(40.757336, -73.86849)",100 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499092,Bike,Sedan,,, +01/30/2022,7:13,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4498386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/31/2022,20:22,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4499268,Sedan,Sedan,Sedan,, +08/25/2021,13:40,,,,,,KISSENA BOULEVARD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450637,Sedan,,,, +01/07/2019,12:45,,,40.868885,-73.9176,"(40.868885, -73.9176)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4063673,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,16:30,,,40.71204,-73.73646,"(40.71204, -73.73646)",HOLLIS AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498881,Sedan,Bus,,, +01/29/2022,16:00,QUEENS,11428,40.722786,-73.73544,"(40.722786, -73.73544)",,,220-38 93 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498167,Sedan,,,, +01/31/2022,17:29,BROOKLYN,11229,40.602497,-73.933846,"(40.602497, -73.933846)",,,3142 AVENUE U,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4498984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,10:33,BROOKLYN,11230,40.6251,-73.96208,"(40.6251, -73.96208)",,,1416 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499390,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,6:00,QUEENS,11385,40.69671,-73.892525,"(40.69671, -73.892525)",,,78-02 62 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499140,Sedan,,,, +01/28/2022,8:50,STATEN ISLAND,10309,40.538044,-74.205734,"(40.538044, -74.205734)",,,477 FOSTER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498024,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +10/31/2021,19:05,,,40.654797,-73.93943,"(40.654797, -73.93943)",ALBANY AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4472859,Sedan,Sedan,Sedan,, +09/18/2021,7:00,QUEENS,11434,40.67769,-73.78873,"(40.67769, -73.78873)",121 AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475101,Sedan,Sedan,,, +11/03/2021,19:20,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4473784,Sedan,Station Wagon/Sport Utility Vehicle,PK,, +11/04/2021,13:41,,,40.656105,-74.00594,"(40.656105, -74.00594)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474890,Sedan,Box Truck,,, +10/28/2021,22:55,QUEENS,11106,40.76129,-73.9429,"(40.76129, -73.9429)",,,36-41 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474549,Sedan,,,, +11/04/2021,22:42,QUEENS,11368,40.75196,-73.85456,"(40.75196, -73.85456)",ROOSEVELT AVENUE,112 STREET,,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4474264,Sedan,Bike,,, +11/03/2021,10:48,BRONX,10466,40.88469,-73.83592,"(40.88469, -73.83592)",MAROLLA PLACE,PRATT AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4473920,Flat Bed,Sedan,,, +11/03/2021,17:20,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473848,Tractor Truck Diesel,Sedan,,, +11/05/2021,16:35,BROOKLYN,11233,40.676445,-73.91277,"(40.676445, -73.91277)",ATLANTIC AVENUE,MARCONI PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474378,Sedan,Sedan,,, +11/03/2021,20:30,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,Unspecified,,,4474244,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/05/2021,14:00,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",GRAND STREET,BUSHWICK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474970,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,9:45,,,,,,,,1170 EAST 98 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4475128,,,,, +11/04/2021,18:45,BROOKLYN,11206,40.70094,-73.95462,"(40.70094, -73.95462)",,,234 LEE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474230,Pick-up Truck,Box Truck,,, +11/05/2021,14:41,,,40.701782,-73.80634,"(40.701782, -73.80634)",JAMAICA AVENUE,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4474547,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,22:30,QUEENS,11435,40.687508,-73.80666,"(40.687508, -73.80666)",139 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474130,Sedan,Sedan,,, +10/30/2021,17:55,BRONX,10457,40.850582,-73.89509,"(40.850582, -73.89509)",,,2083 BATHGATE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475104,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,14:30,MANHATTAN,10019,40.769115,-73.98856,"(40.769115, -73.98856)",WEST 57 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4474420,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,12:15,BROOKLYN,11219,40.62848,-74.00612,"(40.62848, -74.00612)",,,6518 11 AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474367,Pick-up Truck,E-Bike,,, +11/03/2021,18:23,QUEENS,11691,40.592857,-73.77531,"(40.592857, -73.77531)",EDGEMERE AVENUE,BEACH 44 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474102,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,19:30,,,40.66626,-73.99596,"(40.66626, -73.99596)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474839,Sedan,Dump,,, +08/25/2021,22:08,,,40.672695,-73.758224,"(40.672695, -73.758224)",140 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450669,Sedan,,,, +10/15/2021,19:55,MANHATTAN,10035,,,,,,200 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4468353,Sedan,Open Body,,, +11/05/2021,15:30,,,40.694836,-73.98393,"(40.694836, -73.98393)",,,FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,9:00,,,40.789375,-73.84376,"(40.789375, -73.84376)",9 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474457,Sedan,Sedan,,, +11/05/2021,4:35,MANHATTAN,10029,40.784985,-73.94345,"(40.784985, -73.94345)",,,1918 1 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4474602,Ambulance,Sedan,,, +11/03/2021,13:00,QUEENS,11419,40.68899,-73.81707,"(40.68899, -73.81707)",128 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473833,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,8:50,QUEENS,11101,40.74266,-73.93209,"(40.74266, -73.93209)",47 AVENUE,33 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474380,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,19:00,BROOKLYN,11222,40.718792,-73.93726,"(40.718792, -73.93726)",MORGAN AVENUE,WITHERS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474250,Sedan,,,, +11/04/2021,19:07,MANHATTAN,10013,40.722992,-74.0023,"(40.722992, -74.0023)",,,484 BROOME STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474307,Flat Bed,Sedan,,, +11/03/2021,18:30,BROOKLYN,11225,40.66309,-73.962395,"(40.66309, -73.962395)",EMPIRE BOULEVARD,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473998,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,18:53,BROOKLYN,11236,40.634434,-73.88871,"(40.634434, -73.88871)",,,9738 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474425,Sedan,Sedan,,, +10/29/2021,21:10,QUEENS,11419,40.692875,-73.83219,"(40.692875, -73.83219)",ATLANTIC AVENUE,114 STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474484,Station Wagon/Sport Utility Vehicle,Sedan,Van,, +11/03/2021,13:00,BROOKLYN,11222,40.725792,-73.94264,"(40.725792, -73.94264)",NASSAU AVENUE,MONITOR STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474814,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/03/2021,16:15,BROOKLYN,11219,40.630135,-74.00676,"(40.630135, -74.00676)",,,1027 64 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473872,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,23:10,,,40.689228,-73.957,"(40.689228, -73.957)",FRANKLIN AVENUE,LAFAYETTE AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474644,Sedan,Bike,,, +11/03/2021,14:00,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474074,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/03/2021,21:36,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474169,Sedan,Sedan,,, +11/04/2021,22:00,,,40.74045,-73.844376,"(40.74045, -73.844376)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474201,Sedan,Sedan,,, +11/05/2021,14:50,,,0,0,"(0.0, 0.0)",CONEY ISLAND AVENUE,,,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4474763,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/03/2021,6:15,QUEENS,11374,40.730434,-73.86061,"(40.730434, -73.86061)",97 STREET,63 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,9:36,QUEENS,11432,40.71181,-73.78785,"(40.71181, -73.78785)",175 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,Unspecified,Unspecified,,4475060,Sedan,Sedan,Sedan,Sedan, +11/04/2021,20:15,STATEN ISLAND,10305,40.58657,-74.090675,"(40.58657, -74.090675)",GARRETSON AVENUE,SIMPSON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474348,Sedan,,,, +11/04/2021,2:15,BROOKLYN,11208,40.657787,-73.874596,"(40.657787, -73.874596)",,,12435 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4473880,Sedan,Sedan,,, +11/03/2021,8:10,,,40.693005,-73.789856,"(40.693005, -73.789856)",110 AVENUE,,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4474128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/05/2021,11:00,QUEENS,11101,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,JACKSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474278,Bus,Bus,,, +11/04/2021,20:45,QUEENS,11435,40.693344,-73.80228,"(40.693344, -73.80228)",WALTHAM STREET,107 AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4475068,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,16:14,BROOKLYN,11210,40.619606,-73.945526,"(40.619606, -73.945526)",NOSTRAND AVENUE,AVENUE M,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474339,Sedan,,,, +11/05/2021,21:00,QUEENS,11413,40.665478,-73.748795,"(40.665478, -73.748795)",SOUTH CONDUIT AVENUE,EDGEWOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474590,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,19:10,BRONX,10467,40.871914,-73.87909,"(40.871914, -73.87909)",,,3077 HULL AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4474413,Ambulance,Sedan,,, +11/04/2021,16:30,BROOKLYN,11220,40.642582,-73.998604,"(40.642582, -73.998604)",9 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474521,Bus,,,, +11/04/2021,15:05,QUEENS,11366,,,,73 AVENUE,187 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474160,Sedan,Sedan,,, +11/05/2021,6:45,MANHATTAN,10016,40.742058,-73.98079,"(40.742058, -73.98079)",,,395 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474634,Bus,Sedan,,, +11/04/2021,8:00,BRONX,10466,40.894547,-73.86104,"(40.894547, -73.86104)",,,600 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474054,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:00,BROOKLYN,11236,40.639736,-73.906746,"(40.639736, -73.906746)",FLATLANDS AVENUE,EAST 89 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4474499,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,16:00,BRONX,10456,40.831184,-73.913284,"(40.831184, -73.913284)",FINDLAY AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4475013,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +11/03/2021,0:00,MANHATTAN,10032,40.843548,-73.936134,"(40.843548, -73.936134)",AUDUBON AVENUE,WEST 173 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4473614,Sedan,Sedan,Sedan,Sedan,Sedan +11/04/2021,11:27,,,40.541744,-74.207,"(40.541744, -74.207)",WOODROW ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474284,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,17:49,,,,,,ARTHUR KILL RD,EAST SERVICE RD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474283,MAIL TRUCK,Sedan,,, +11/03/2021,15:40,QUEENS,11373,40.735325,-73.865166,"(40.735325, -73.865166)",59 AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473753,Tractor Truck Gasoline,Sedan,,, +11/04/2021,20:17,QUEENS,11436,40.667473,-73.79388,"(40.667473, -73.79388)",135 AVENUE,INWOOD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4474435,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,19:10,QUEENS,11358,40.76319,-73.80644,"(40.76319, -73.80644)",159 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474452,Sedan,,,, +11/03/2021,13:51,,,40.76031,-73.9717,"(40.76031, -73.9717)",EAST 55 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473933,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,17:13,BROOKLYN,11207,40.68746,-73.906494,"(40.68746, -73.906494)",CENTRAL AVENUE,MOFFAT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474400,Station Wagon/Sport Utility Vehicle,Bus,,, +11/05/2021,1:00,BROOKLYN,11210,40.63762,-73.9395,"(40.63762, -73.9395)",,,801 EAST 39 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474869,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,15:07,BRONX,10475,40.871735,-73.83036,"(40.871735, -73.83036)",,,100 ALCOTT PLACE,1,0,1,0,0,0,0,0,Unspecified,,,,,4474717,Motorbike,,,, +11/04/2021,23:00,BROOKLYN,11234,40.61278,-73.93969,"(40.61278, -73.93969)",QUENTIN ROAD,EAST 32 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474371,Sedan,Sedan,,, +11/04/2021,15:30,BROOKLYN,11221,40.689857,-73.92535,"(40.689857, -73.92535)",,,856 QUINCY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474899,PK,,,, +11/05/2021,21:50,MANHATTAN,10002,40.72311,-73.98923,"(40.72311, -73.98923)",,,153 EAST HOUSTON STREET,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4474690,Sedan,Garbage or Refuse,,, +11/03/2021,18:40,MANHATTAN,10016,40.74757,-73.98253,"(40.74757, -73.98253)",,,50 EAST 34 STREET,1,0,0,0,1,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4474779,Sedan,Bike,,, +10/14/2021,22:30,MANHATTAN,10019,,,,AVENUE OF THE AMERICAS,WEST 53 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4467247,Taxi,Bike,,, +11/04/2021,1:30,QUEENS,11435,40.706993,-73.80952,"(40.706993, -73.80952)",,,87-16 148 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474237,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,23:39,BRONX,10468,40.86307,-73.90912,"(40.86307, -73.90912)",,,201 WEST FORDHAM ROAD,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Speed,,,,4474440,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,19:25,BROOKLYN,11215,40.66617,-73.988815,"(40.66617, -73.988815)",5 AVENUE,14 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4473949,Bike,,,, +11/05/2021,15:00,QUEENS,11372,40.75004,-73.88152,"(40.75004, -73.88152)",85 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4474611,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,11:05,QUEENS,11385,40.705734,-73.89449,"(40.705734, -73.89449)",68 AVENUE,64 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474920,Sedan,,,, +11/04/2021,6:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474020,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,6:05,,,40.83562,-73.927864,"(40.83562, -73.927864)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4474303,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,14:05,MANHATTAN,10029,40.798107,-73.944115,"(40.798107, -73.944115)",,,1581 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450748,Taxi,,,, +11/03/2021,14:36,MANHATTAN,10065,40.760223,-73.957634,"(40.760223, -73.957634)",EAST 62 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475111,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,20:35,BRONX,10473,40.82248,-73.8806,"(40.82248, -73.8806)",,,970 COLGATE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,9:28,MANHATTAN,10010,40.738167,-73.98364,"(40.738167, -73.98364)",EAST 22 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473720,Station Wagon/Sport Utility Vehicle,Moped,,, +11/02/2021,8:00,BRONX,10466,40.89352,-73.860695,"(40.89352, -73.860695)",,,4170 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4474846,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/04/2021,13:13,BRONX,10475,40.86882,-73.83175,"(40.86882, -73.83175)",,,360 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474711,Sedan,Sedan,,, +11/05/2021,15:09,BROOKLYN,11215,40.66002,-73.99123,"(40.66002, -73.99123)",21 STREET,6 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4474957,Sedan,,,, +11/05/2021,15:10,QUEENS,11355,40.743366,-73.82765,"(40.743366, -73.82765)",138 STREET,60 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4474316,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,9:30,,,40.809494,-73.935814,"(40.809494, -73.935814)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473661,Box Truck,Sedan,,, +11/05/2021,16:00,MANHATTAN,10029,40.800617,-73.9465,"(40.800617, -73.9465)",,,1385 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475079,Sedan,Sedan,,, +11/04/2021,6:00,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4474181,Sedan,,,, +04/14/2022,13:00,QUEENS,11377,40.74539,-73.90662,"(40.74539, -73.90662)",ROOSEVELT AVENUE,58 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519031,Bike,Taxi,,, +11/04/2021,14:20,BROOKLYN,11212,,,,CHRISTOPHER AVE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474214,Sedan,Sedan,,, +11/05/2021,7:00,,,,,,35 AVENUE,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474467,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,14:03,QUEENS,11436,40.6804,-73.80067,"(40.6804, -73.80067)",,,141-19 116 AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4474335,Sedan,,,, +11/03/2021,10:20,,,40.67948,-73.93291,"(40.67948, -73.93291)",FULTON STREET,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473705,Sedan,E-Bike,,, +11/03/2021,12:30,QUEENS,11372,40.756535,-73.876076,"(40.756535, -73.876076)",92 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473663,Carry All,Sedan,,, +10/28/2021,18:31,MANHATTAN,10022,40.761887,-73.96843,"(40.761887, -73.96843)",,,731 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474581,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,13:11,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474142,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,9:00,QUEENS,11413,40.673126,-73.752304,"(40.673126, -73.752304)",,,220-18 138 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474288,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,14:30,QUEENS,11436,40.674225,-73.79986,"(40.674225, -73.79986)",ROCKAWAY BOULEVARD,141 STREET,,2,0,0,0,0,0,2,0,Pavement Defective,Unspecified,,,,4473746,Station Wagon/Sport Utility Vehicle,Bus,,, +11/05/2021,16:40,,,40.691765,-73.99992,"(40.691765, -73.99992)",COLUMBIA STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474728,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,11:20,BROOKLYN,11231,40.674496,-74.00993,"(40.674496, -74.00993)",CREAMER STREET,OTSEGO STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4473630,Sedan,Box Truck,,, +11/04/2021,19:23,MANHATTAN,10024,40.79043,-73.97558,"(40.79043, -73.97558)",,,250 WEST 89 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4474472,Sedan,,,, +11/04/2021,9:00,,,40.6045,-74.12126,"(40.6045, -74.12126)",,,14 HOLDEN BOULEVARD,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4474035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,9:02,,,40.592422,-73.99508,"(40.592422, -73.99508)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,17:45,BROOKLYN,11203,40.646667,-73.92458,"(40.646667, -73.92458)",,,5569 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474851,Sedan,Sedan,,, +09/24/2021,14:00,STATEN ISLAND,10309,40.554054,-74.2125,"(40.554054, -74.2125)",,,39 AARON LANE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474271,Sedan,,,, +11/04/2021,14:00,MANHATTAN,10019,40.765423,-73.98582,"(40.765423, -73.98582)",,,354 WEST 54 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474405,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,18:15,,,0,0,"(0.0, 0.0)",CANAL STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473866,Sedan,Sedan,,, +04/23/2021,17:00,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",REMSEN AVENUE,AVENUE M,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474489,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,23:25,QUEENS,11367,40.72775,-73.81188,"(40.72775, -73.81188)",AGUILAR AVENUE,72 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474528,Sedan,Sedan,,, +11/05/2021,18:59,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474952,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,3:00,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",CHRYSTIE STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474701,Sedan,,,, +11/05/2021,13:01,,,40.824085,-73.874344,"(40.824085, -73.874344)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474785,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +11/01/2021,7:39,QUEENS,11368,40.74807,-73.863335,"(40.74807, -73.863335)",NATIONAL STREET,102 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474880,Sedan,E-Bike,,, +11/03/2021,19:04,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473894,Sedan,,,, +11/04/2021,21:56,,,40.763885,-73.84002,"(40.763885, -73.84002)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474241,Sedan,Sedan,,, +11/04/2021,13:50,QUEENS,11691,40.60708,-73.75447,"(40.60708, -73.75447)",,,13-66 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474255,Sedan,,,, +11/03/2021,19:05,BROOKLYN,11230,40.62269,-73.961876,"(40.62269, -73.961876)",EAST 14 STREET,AVENUE K,,2,0,0,0,0,0,2,0,Unspecified,,,,,4474047,Sedan,,,, +11/04/2021,15:30,,,40.851616,-73.92165,"(40.851616, -73.92165)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4474444,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +11/02/2021,12:15,BROOKLYN,11235,40.58667,-73.966156,"(40.58667, -73.966156)",OCEAN PARKWAY,AVENUE Z,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4474359,Bike,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,17:17,BRONX,10460,0,0,"(0.0, 0.0)",,,1898 BOSTON ROAD,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473970,Sedan,Sedan,Sedan,, +10/29/2021,11:50,,,0,0,"(0.0, 0.0)",ATLANTIC AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4474902,Bike,Sedan,,, +11/04/2021,10:50,MANHATTAN,10065,40.76614,-73.97166,"(40.76614, -73.97166)",5 AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,Unspecified,,,4475118,Bus,Sedan,Sedan,, +10/31/2021,10:40,QUEENS,11361,40.766563,-73.762596,"(40.766563, -73.762596)",,,39-17 221 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474461,Sedan,,,, +11/04/2021,4:13,MANHATTAN,10002,40.718304,-73.987404,"(40.718304, -73.987404)",DELANCEY STREET,NORFOLK STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4474564,Taxi,,,, +11/05/2021,17:00,QUEENS,11414,40.661915,-73.83287,"(40.661915, -73.83287)",158 AVENUE,101 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4474989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/04/2021,8:33,BROOKLYN,11236,40.630535,-73.8884,"(40.630535, -73.8884)",CANARSIE ROAD,SCHENCK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474040,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,8:30,BRONX,10460,40.834198,-73.89017,"(40.834198, -73.89017)",,,910 EAST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473657,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,15:00,BROOKLYN,11205,40.696323,-73.975784,"(40.696323, -73.975784)",,,101 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474320,Sedan,,,, +11/03/2021,23:23,,,40.79531,-73.93592,"(40.79531, -73.93592)",EAST 115 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4475056,Pick-up Truck,Sedan,Sedan,Sedan, +11/03/2021,9:15,,,40.74281,-73.99659,"(40.74281, -73.99659)",7 AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4473728,Sedan,E-Scooter,,, +11/04/2021,0:39,QUEENS,11426,40.74266,-73.72108,"(40.74266, -73.72108)",UNION TURNPIKE,249 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4473840,Sedan,Sedan,,, +11/05/2021,17:38,BROOKLYN,11229,40.61172,-73.94669,"(40.61172, -73.94669)",,,2717 AVENUE P,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474510,Box Truck,Sedan,,, +11/04/2021,8:29,QUEENS,11423,40.72178,-73.760025,"(40.72178, -73.760025)",FRANCIS LEWIS BOULEVARD,WHITEHALL TERRACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474177,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:45,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",DEAN STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450837,Sedan,Bike,,, +11/05/2021,21:30,BRONX,10466,40.881046,-73.84382,"(40.881046, -73.84382)",NEEDHAM AVENUE,EAST 224 STREET,,2,0,0,0,0,0,2,0,Outside Car Distraction,Other Vehicular,Other Vehicular,Other Vehicular,,4474827,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/05/2021,19:45,QUEENS,11432,40.706657,-73.79806,"(40.706657, -73.79806)",,,89-16 163 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475073,AMBULANCE,Sedan,,, +11/03/2021,15:25,,,40.593525,-73.99628,"(40.593525, -73.99628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474315,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/03/2021,10:00,,,40.715305,-73.96044,"(40.715305, -73.96044)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474221,Station Wagon/Sport Utility Vehicle,18 wheel,,, +11/04/2021,1:40,,,40.665348,-73.922325,"(40.665348, -73.922325)",SUTTER AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4473947,Sedan,,,, +11/03/2021,8:20,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474090,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,0:00,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474182,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,18:20,,,,,,ROSE AVENUE,SOUTH RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,10:10,,,40.775707,-73.84633,"(40.775707, -73.84633)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473757,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,0:00,BRONX,10456,40.820816,-73.91005,"(40.820816, -73.91005)",,,800 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474210,Sedan,,,, +11/03/2021,16:50,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473808,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,11:30,MANHATTAN,10013,40.722725,-74.00654,"(40.722725, -74.00654)",,,431 CANAL STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474147,Box Truck,Sedan,,, +11/03/2021,9:50,,,40.741734,-73.7283,"(40.741734, -73.7283)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/04/2021,11:39,QUEENS,11385,40.70703,-73.909325,"(40.70703, -73.909325)",WOODWARD AVENUE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474073,Sedan,E-Bike,,, +11/04/2021,4:00,,,40.68576,-73.915504,"(40.68576, -73.915504)",BROADWAY,HALSEY STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4474374,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,22:00,QUEENS,11104,40.741364,-73.92096,"(40.741364, -73.92096)",GREENPOINT AVENUE,44 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474391,Bus,,,, +11/03/2021,17:30,BRONX,10460,40.853344,-73.881676,"(40.853344, -73.881676)",SOUTHERN BOULEVARD,EAST 187 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473982,Sedan,,,, +11/05/2021,19:55,,,40.73012,-73.98947,"(40.73012, -73.98947)",3 AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4474793,Taxi,Bike,,, +11/05/2021,4:51,,,40.64952,-73.955795,"(40.64952, -73.955795)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4474856,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,11:00,BROOKLYN,11232,40.644505,-73.99874,"(40.644505, -73.99874)",,,837 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474030,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +11/05/2021,10:30,BROOKLYN,11228,40.62103,-74.0118,"(40.62103, -74.0118)",,,1078 77 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474493,Sedan,Sedan,,, +11/03/2021,20:35,QUEENS,11433,40.69447,-73.78147,"(40.69447, -73.78147)",MERRICK BOULEVARD,111 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4474342,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,16:45,QUEENS,11419,40.68811,-73.819336,"(40.68811, -73.819336)",LIBERTY AVENUE,125 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,12:40,,,40.519722,-74.22867,"(40.519722, -74.22867)",AMBOY ROAD,,,1,0,0,0,0,0,1,0,Outside Car Distraction,,,,,4474275,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,19:11,,,40.66626,-73.99596,"(40.66626, -73.99596)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474536,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,14:00,,,,,,EASTCHESTER ROAD,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474067,Sedan,Sedan,,, +11/05/2021,18:07,BROOKLYN,11204,40.630478,-73.9861,"(40.630478, -73.9861)",50 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474575,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,5:47,BRONX,10456,40.831768,-73.90803,"(40.831768, -73.90803)",PARK AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474135,Sedan,Sedan,,, +11/04/2021,11:15,BROOKLYN,11215,40.668293,-73.97924,"(40.668293, -73.97924)",,,506 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4474384,Sedan,,,, +11/04/2021,21:37,,,40.760624,-73.81769,"(40.760624, -73.81769)",BARCLAY AVENUE,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4474934,Sedan,,,, +11/03/2021,16:25,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4473854,Box Truck,Taxi,,, +11/03/2021,15:00,QUEENS,11419,40.691372,-73.80989,"(40.691372, -73.80989)",142 STREET,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474108,Box Truck,Sedan,,, +11/03/2021,14:40,BROOKLYN,11220,40.633995,-74.02081,"(40.633995, -74.02081)",,,6814 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473885,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,13:00,,,40.698837,-73.91407,"(40.698837, -73.91407)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474416,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,14:00,MANHATTAN,10065,40.767048,-73.96466,"(40.767048, -73.96466)",,,897 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474246,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,8:00,QUEENS,11691,40.60098,-73.75555,"(40.60098, -73.75555)",BEACH 22 STREET,NEW HAVEN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4474476,Sedan,Sedan,,, +11/04/2021,6:00,BROOKLYN,11232,40.664516,-73.99709,"(40.664516, -73.99709)",3 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474887,Sedan,Sedan,,, +11/03/2021,21:00,QUEENS,11417,40.67172,-73.850975,"(40.67172, -73.850975)",NORTH CONDUIT AVENUE,LINDEN BOULEVARD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4473829,Tractor Truck Diesel,Sedan,,, +11/04/2021,17:15,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474251,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,10:10,BROOKLYN,11206,40.70028,-73.941154,"(40.70028, -73.941154)",MARCUS GARVEY BOULEVARD,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474908,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,3:29,MANHATTAN,10033,40.849144,-73.93548,"(40.849144, -73.93548)",WEST 180 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475123,Pick-up Truck,Sedan,,, +10/31/2021,10:08,QUEENS,11377,40.749184,-73.90059,"(40.749184, -73.90059)",37 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474379,Sedan,Sedan,Sedan,, +11/05/2021,22:59,MANHATTAN,10019,40.772236,-73.99388,"(40.772236, -73.99388)",WEST 58 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474504,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,0:17,,,40.676807,-73.95576,"(40.676807, -73.95576)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474822,Sedan,Sedan,,, +11/03/2021,13:20,BROOKLYN,11237,40.70543,-73.9181,"(40.70543, -73.9181)",DE KALB AVENUE,SAINT NICHOLAS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473939,Box Truck,Sedan,,, +11/04/2021,22:20,BRONX,10452,40.834667,-73.92939,"(40.834667, -73.92939)",SUMMIT AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474296,Pick-up Truck,Sedan,,, +11/04/2021,13:30,BROOKLYN,11211,40.70421,-73.96123,"(40.70421, -73.96123)",BEDFORD AVENUE,RODNEY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474657,Bus,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,12:35,QUEENS,11367,40.725937,-73.8165,"(40.725937, -73.8165)",73 AVENUE,150 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474173,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,11:00,BROOKLYN,11203,40.65738,-73.931,"(40.65738, -73.931)",,,660 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473767,Sedan,,,, +11/05/2021,9:15,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4474559,Pick-up Truck,Taxi,,, +11/01/2021,9:45,QUEENS,11423,40.713013,-73.76397,"(40.713013, -73.76397)",,,92-06 196 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475067,Sedan,,,, +11/05/2021,20:42,BROOKLYN,11226,40.647743,-73.962746,"(40.647743, -73.962746)",,,145 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474684,Sedan,Sedan,,, +11/05/2021,0:15,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474749,Sedan,,,, +11/03/2021,17:30,BRONX,10453,40.856987,-73.90897,"(40.856987, -73.90897)",WEST 181 STREET,AQUEDUCT AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474078,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,16:16,QUEENS,11101,40.743305,-73.93766,"(40.743305, -73.93766)",30 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474186,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,16:00,MANHATTAN,10065,40.75992,-73.95693,"(40.75992, -73.95693)",,,498 EAST 62 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475034,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,18:35,,,40.84271,-73.89037,"(40.84271, -73.89037)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474352,Tractor Truck Diesel,Sedan,,, +11/03/2021,18:20,MANHATTAN,10128,40.78418,-73.95219,"(40.78418, -73.95219)",,,1428 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473907,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,7:37,,,40.69635,-73.94071,"(40.69635, -73.94071)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4474834,Sedan,Sedan,,, +11/04/2021,11:00,,,40.84104,-73.92195,"(40.84104, -73.92195)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474295,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,15:45,QUEENS,11428,40.721004,-73.7511,"(40.721004, -73.7511)",HOLLIS COURT BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,16:00,BROOKLYN,11217,40.682575,-73.985985,"(40.682575, -73.985985)",,,483 BALTIC STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4473908,Sedan,,,, +11/05/2021,19:53,BRONX,10451,40.818977,-73.927124,"(40.818977, -73.927124)",,,500 GRAND CONCOURSE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474595,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,19:13,,,40.662395,-73.93735,"(40.662395, -73.93735)",EAST NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4474310,Sedan,,,, +11/03/2021,18:06,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4473873,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:00,,,40.691982,-73.808044,"(40.691982, -73.808044)",PINEGROVE STREET,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4474122,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/04/2021,20:39,MANHATTAN,10023,40.77303,-73.97829,"(40.77303, -73.97829)",WEST 67 STREET,CENTRAL PARK WEST,,2,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4474327,Bike,E-Bike,,, +11/03/2021,2:50,QUEENS,11373,40.73118,-73.88307,"(40.73118, -73.88307)",82 STREET,54 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4473529,FIRE TRUCK,Sedan,,, +11/03/2021,10:10,QUEENS,11378,40.72288,-73.889626,"(40.72288, -73.889626)",70 STREET,60 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474152,Sedan,,,, +11/05/2021,18:35,,,,,,BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4474980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,23:30,BROOKLYN,11222,40.73257,-73.95202,"(40.73257, -73.95202)",MC GUINNESS BOULEVARD,INDIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474409,Sedan,,,, +11/04/2021,19:52,BRONX,10458,40.857082,-73.88203,"(40.857082, -73.88203)",,,2500 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474429,Sedan,,,, +11/04/2021,17:50,BROOKLYN,11234,40.607876,-73.92554,"(40.607876, -73.92554)",RYDER STREET,AVENUE U,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474206,Sedan,Bike,,, +11/03/2021,12:30,BROOKLYN,11216,40.68397,-73.944046,"(40.68397, -73.944046)",JEFFERSON AVENUE,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473802,Sedan,Tractor Truck Gasoline,,, +11/04/2021,9:25,BROOKLYN,11225,40.66644,-73.95361,"(40.66644, -73.95361)",CROWN STREET,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474058,Sedan,Bus,,, +11/04/2021,13:00,,,40.709805,-73.99191,"(40.709805, -73.99191)",SOUTH STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474200,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,8:50,,,40.73736,-73.934074,"(40.73736, -73.934074)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4474185,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,9:00,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474100,,,,, +11/05/2021,9:55,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474351,Sedan,Sedan,,, +11/03/2021,6:05,BROOKLYN,11208,40.659756,-73.866684,"(40.659756, -73.866684)",,,830 FOUNTAIN AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4473585,Chassis Cab,,,, +10/24/2021,18:07,,,,,,FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4470576,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,17:00,QUEENS,11435,40.698578,-73.80599,"(40.698578, -73.80599)",,,147-12 95 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474129,Sedan,Bike,,, +11/03/2021,17:41,MANHATTAN,10037,40.814358,-73.94067,"(40.814358, -73.94067)",,,506 LENOX AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4473765,Moped,,,, +10/07/2021,17:50,BRONX,10457,40.844685,-73.89176,"(40.844685, -73.89176)",,,1915 CROTONA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474279,Sedan,E-Scooter,,, +11/03/2021,20:14,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,7:10,,,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474414,Station Wagon/Sport Utility Vehicle,Van,,, +11/04/2021,0:35,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474338,Box Truck,Sedan,,, +11/02/2021,16:20,MANHATTAN,10010,40.739166,-73.97997,"(40.739166, -73.97997)",EAST 25 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474638,Sedan,E-Bike,,, +11/04/2021,15:19,QUEENS,11432,40.727642,-73.78318,"(40.727642, -73.78318)",80 ROAD,CHEVY CHASE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474161,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,14:15,,,40.52474,-74.233444,"(40.52474, -74.233444)",BOSCOMBE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474431,Sedan,Sedan,,, +11/04/2021,23:26,BRONX,10454,40.811653,-73.91685,"(40.811653, -73.91685)",EAST 144 STREET,BROOK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474596,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,8:35,QUEENS,11354,40.766308,-73.8197,"(40.766308, -73.8197)",35 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474448,Station Wagon/Sport Utility Vehicle,PK,,, +11/05/2021,22:22,BROOKLYN,11203,40.654575,-73.943214,"(40.654575, -73.943214)",LENOX ROAD,EAST 37 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4474863,Sedan,Sedan,,, +11/03/2021,14:00,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,11:33,,,40.887817,-73.83102,"(40.887817, -73.83102)",DYRE AVENUE,LIGHT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474053,Van,Bus,,, +11/05/2021,18:14,,,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474810,AMBULANCE,Sedan,Station Wagon/Sport Utility Vehicle,, +11/04/2021,0:00,,,40.654953,-74.00703,"(40.654953, -74.00703)",,,37 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474891,Sedan,Sedan,,, +11/01/2021,16:10,STATEN ISLAND,10312,40.529373,-74.161354,"(40.529373, -74.161354)",HYLAN BOULEVARD,ARDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474280,Sedan,,,, +11/03/2021,20:58,BRONX,10458,40.85681,-73.89818,"(40.85681, -73.89818)",VALENTINE AVENUE,EAST 183 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474077,Sedan,Sedan,,, +11/05/2021,1:20,QUEENS,11372,40.747475,-73.89329,"(40.747475, -73.89329)",,,72-32 BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4474265,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,10:30,QUEENS,11436,40.68435,-73.80078,"(40.68435, -73.80078)",143 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474436,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,19:55,,,40.81148,-73.9264,"(40.81148, -73.9264)",3 AVENUE,EAST 139 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473849,Sedan,Sedan,,, +11/05/2021,12:45,,,40.86732,-73.82254,"(40.86732, -73.82254)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474716,Sedan,Sedan,,, +11/05/2021,19:53,,,40.650806,-73.94958,"(40.650806, -73.94958)",CHURCH AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4474870,,,,, +11/04/2021,22:30,BROOKLYN,11206,40.699707,-73.95718,"(40.699707, -73.95718)",BEDFORD AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474231,Tractor Truck Diesel,Sedan,,, +10/28/2021,2:30,,,,,,WEST 193 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4475129,Sedan,Garbage or Refuse,,, +11/02/2021,22:30,MANHATTAN,10004,40.705147,-74.00999,"(40.705147, -74.00999)",SOUTH WILLIAM STREET,BEAVER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475105,Station Wagon/Sport Utility Vehicle,TRAILER,,, +11/02/2021,22:40,MANHATTAN,10016,40.746414,-73.98184,"(40.746414, -73.98184)",EAST 33 STREET,PARK AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474778,Taxi,E-Scooter,,, +11/04/2021,1:08,QUEENS,11385,40.711727,-73.91729,"(40.711727, -73.91729)",,,179 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474916,Motorcycle,Pick-up Truck,,, +11/04/2021,12:35,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474842,Sedan,,,, +11/04/2021,8:55,BROOKLYN,11201,40.701756,-73.99275,"(40.701756, -73.99275)",DOUGHTY STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474195,Sedan,Sedan,,, +11/03/2021,20:03,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,CANAL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4474146,Sedan,Sedan,,, +09/15/2021,15:00,,,40.830257,-73.914856,"(40.830257, -73.914856)",EAST 166 STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4475015,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,21:00,BROOKLYN,11222,40.73396,-73.94372,"(40.73396, -73.94372)",,,540 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4474247,Box Truck,,,, +11/03/2021,8:30,,,40.6664,-73.74011,"(40.6664, -73.74011)",NORTH CONDUIT AVENUE,LAURELTON PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4473672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,9:12,,,40.679592,-73.93488,"(40.679592, -73.93488)",FULTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473708,Sedan,Sedan,,, +11/05/2021,9:05,MANHATTAN,10036,40.758022,-73.981804,"(40.758022, -73.981804)",WEST 47 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474500,Bike,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,9:20,BRONX,10472,40.82804,-73.85228,"(40.82804, -73.85228)",,,2124 CHATTERTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473977,Sedan,Sedan,,, +10/29/2021,23:30,BROOKLYN,11221,40.69308,-73.929955,"(40.69308, -73.929955)",,,592 KOSCIUSZKO STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474907,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,20:45,QUEENS,11354,40.763382,-73.8303,"(40.763382, -73.8303)",NORTHERN BOULEVARD,LINDEN PLACE,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4474463,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,15:10,,,0,0,"(0.0, 0.0)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4474291,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +11/04/2021,18:05,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4474190,Sedan,Sedan,,, +11/03/2021,21:20,BROOKLYN,11213,40.666122,-73.93139,"(40.666122, -73.93139)",UTICA AVENUE,CARROLL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473795,Sedan,,,, +11/05/2021,12:11,BROOKLYN,11217,40.68496,-73.973206,"(40.68496, -73.973206)",,,144 SOUTH OXFORD STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4474323,Box Truck,Sedan,,, +11/03/2021,16:34,BROOKLYN,11229,40.610504,-73.95767,"(40.610504, -73.95767)",AVENUE P,EAST 16 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474043,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:20,BROOKLYN,11230,40.625492,-73.95855,"(40.625492, -73.95855)",AVENUE J,EAST 18 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474306,Station Wagon/Sport Utility Vehicle,Bike,,, +11/03/2021,13:08,MANHATTAN,10013,40.717632,-74.00224,"(40.717632, -74.00224)",,,80 WHITE STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474685,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,15:57,QUEENS,11103,40.76963,-73.915855,"(40.76963, -73.915855)",34 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474553,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,20:12,,,40.775486,-73.98217,"(40.775486, -73.98217)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474328,Taxi,Sedan,,, +11/03/2021,15:16,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474168,Sedan,,,, +10/18/2021,8:25,,,40.64437,-73.93061,"(40.64437, -73.93061)",CLARENDON ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474855,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,8:20,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",WEBSTER AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473658,Bus,Sedan,,, +11/04/2021,5:42,BRONX,10467,40.87835,-73.870346,"(40.87835, -73.870346)",EAST GUN HILL ROAD,NEWELL STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4473919,Sedan,,,, +11/03/2021,8:30,BRONX,10458,40.85415,-73.88447,"(40.85415, -73.88447)",EAST 187 STREET,BEAUMONT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473990,Bus,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,10:15,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4474900,Pick-up Truck,,,, +11/05/2021,22:30,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",WOODHAVEN BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474734,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,13:50,BROOKLYN,11234,40.62338,-73.93029,"(40.62338, -73.93029)",SCHENECTADY AVENUE,AVENUE L,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473690,Sedan,Sedan,,, +11/04/2021,0:34,QUEENS,11427,40.732388,-73.73238,"(40.732388, -73.73238)",,,86-14 235 COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4473838,Station Wagon/Sport Utility Vehicle,,,, +10/18/2021,17:45,BROOKLYN,11221,,,,BUSHWICK AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4468676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,19:40,BROOKLYN,11228,40.620914,-74.00846,"(40.620914, -74.00846)",,,1254 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474366,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,10:55,,,40.66618,-73.88316,"(40.66618, -73.88316)",NEW LOTS AVENUE,ASHFORD STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519171,Sedan,,,, +11/04/2021,11:00,BROOKLYN,11220,40.637196,-74.00779,"(40.637196, -74.00779)",8 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,18:05,BROOKLYN,11211,40.711082,-73.94989,"(40.711082, -73.94989)",,,537 GRAND STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,,,4474974,Sedan,Sedan,Moped,, +11/05/2021,8:20,,,40.731415,-73.91723,"(40.731415, -73.91723)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474468,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/04/2021,11:20,BROOKLYN,11217,40.680492,-73.97461,"(40.680492, -73.97461)",,,64 6 AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4474383,Sedan,Pick-up Truck,,, +11/03/2021,20:00,,,40.611404,-74.00952,"(40.611404, -74.00952)",15 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474134,Sedan,,,, +11/03/2021,17:15,BRONX,10474,40.82102,-73.88725,"(40.82102, -73.88725)",BRYANT AVENUE,GARRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474048,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:42,MANHATTAN,10038,40.707443,-74.007614,"(40.707443, -74.007614)",,,83 MAIDEN LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474260,Taxi,Sedan,,, +11/03/2021,16:50,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4473777,Sedan,,,, +11/05/2021,19:05,BROOKLYN,11201,40.7031,-73.98666,"(40.7031, -73.98666)",WATER STREET,JAY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474541,Sedan,,,, +11/04/2021,15:14,QUEENS,11433,40.702553,-73.78983,"(40.702553, -73.78983)",,,103-14 168 PLACE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,,,,,4475071,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,12:00,QUEENS,11420,40.669,-73.80357,"(40.669, -73.80357)",135 STREET,133 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474988,Sedan,,,, +11/05/2021,20:20,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",DELANCEY STREET,ORCHARD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:00,BROOKLYN,11220,40.650623,-74.013405,"(40.650623, -74.013405)",,,251 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473844,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,20:40,,,40.71153,-73.95504,"(40.71153, -73.95504)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4474225,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,18:20,BROOKLYN,11209,40.63002,-74.02839,"(40.63002, -74.02839)",3 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474601,Sedan,E-Bike,,, +11/04/2021,19:41,QUEENS,11421,40.693336,-73.85301,"(40.693336, -73.85301)",,,92-08 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474485,Sedan,Bus,,, +10/31/2021,2:08,BROOKLYN,11236,40.635853,-73.90834,"(40.635853, -73.90834)",,,8414 AVENUE J,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474424,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,18:25,QUEENS,11385,40.702686,-73.87166,"(40.702686, -73.87166)",MYRTLE AVENUE,78 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474922,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/05/2021,20:00,,,40.822933,-73.93813,"(40.822933, -73.93813)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475083,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,11:10,BROOKLYN,11223,40.590828,-73.98414,"(40.590828, -73.98414)",,,2313 STILLWELL AVENUE,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4474360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,18:45,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474392,Sedan,Bike,,, +11/05/2021,20:42,MANHATTAN,10003,40.734146,-73.98924,"(40.734146, -73.98924)",,,104 EAST 14 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474796,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/27/2021,17:55,,,40.69635,-73.94071,"(40.69635, -73.94071)",MYRTLE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474643,Sedan,Sedan,Sedan,, +11/05/2021,0:26,,,40.583992,-73.96752,"(40.583992, -73.96752)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474712,Sedan,Sedan,,, +11/05/2021,0:00,BROOKLYN,11206,40.703053,-73.942505,"(40.703053, -73.942505)",VARET STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474355,Sedan,Sedan,,, +11/05/2021,22:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474958,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,0:00,,,40.703556,-73.95023,"(40.703556, -73.95023)",UNION AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474218,Sedan,,,, +04/13/2022,7:00,BRONX,10455,40.813232,-73.90908,"(40.813232, -73.90908)",EAST 149 STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4518852,Sedan,,,, +11/04/2021,7:00,QUEENS,11432,40.72162,-73.77672,"(40.72162, -73.77672)",MCLAUGHLIN AVENUE,188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,21:36,,,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4474082,Sedan,,,, +10/30/2021,17:55,,,,,,BRONX RIVER PARKWAY,MOSHOLU PARKWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4474421,Sedan,Sedan,,, +11/04/2021,12:00,,,40.613655,-73.978,"(40.613655, -73.978)",63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474768,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,10:30,,,40.822697,-73.87001,"(40.822697, -73.87001)",STORY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474480,Pick-up Truck,Sedan,,, +11/04/2021,9:20,,,40.729492,-74.00698,"(40.729492, -74.00698)",CLARKSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474689,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,13:00,QUEENS,11433,40.694504,-73.80078,"(40.694504, -73.80078)",,,150-10 107 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475061,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,9:30,BRONX,10455,40.813652,-73.906975,"(40.813652, -73.906975)",EAST 150 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4474211,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:25,BRONX,10454,40.805367,-73.9219,"(40.805367, -73.9219)",EAST 134 STREET,BROWN PLACE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474580,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,16:00,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4473955,Sedan,Pick-up Truck,,, +11/05/2021,23:13,BROOKLYN,11218,40.641182,-73.9712,"(40.641182, -73.9712)",EAST 8 STREET,AVENUE C,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474522,Taxi,,,, +11/05/2021,13:30,,,40.737907,-73.877174,"(40.737907, -73.877174)",BROADWAY,JUSTICE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474729,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:20,MANHATTAN,10022,40.760693,-73.96648,"(40.760693, -73.96648)",,,215 EAST 58 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474302,Sedan,Sedan,,, +11/03/2021,1:09,BRONX,10473,40.82084,-73.87266,"(40.82084, -73.87266)",,,825 MORRISON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473603,Sedan,Sedan,,, +11/04/2021,10:30,QUEENS,11417,40.67263,-73.850914,"(40.67263, -73.850914)",85 STREET,DUMONT AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4474039,Sedan,,,, +11/04/2021,9:00,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474287,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/03/2021,18:25,QUEENS,11436,40.67045,-73.793335,"(40.67045, -73.793335)",INWOOD STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4473748,Sedan,Sedan,,, +11/04/2021,17:22,BROOKLYN,11222,40.730072,-73.95549,"(40.730072, -73.95549)",,,134 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4474254,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/03/2021,20:30,BROOKLYN,11235,40.59116,-73.94498,"(40.59116, -73.94498)",BEDFORD AVENUE,AVENUE Y,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473995,E-Scooter,,,, +11/05/2021,0:30,BROOKLYN,11209,40.618088,-74.0303,"(40.618088, -74.0303)",,,9226 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474495,Sedan,,,, +11/03/2021,19:25,QUEENS,11368,40.74849,-73.86355,"(40.74849, -73.86355)",102 STREET,41 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4473930,Sedan,Sedan,,, +11/01/2021,19:00,BROOKLYN,11219,40.641014,-73.99903,"(40.641014, -73.99903)",,,926 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475054,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +11/05/2021,13:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,3:40,,,40.64431,-73.93155,"(40.64431, -73.93155)",CLARENDON ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4474848,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/25/2021,1:15,,,40.778095,-73.9783,"(40.778095, -73.9783)",COLUMBUS AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474319,Bike,Sedan,,, +11/04/2021,16:21,,,40.696117,-73.905014,"(40.696117, -73.905014)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474399,Sedan,,,, +11/05/2021,15:45,,,40.676132,-73.81924,"(40.676132, -73.81924)",ROCKAWAY BOULEVARD,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474993,Sedan,Pick-up Truck,,, +11/03/2021,16:55,BROOKLYN,11207,40.66463,-73.894875,"(40.66463, -73.894875)",,,601 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4473865,,,,, +11/04/2021,19:45,,,40.604645,-74.16238,"(40.604645, -74.16238)",RICHMOND AVENUE,ETON PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474224,Sedan,Sedan,,, +11/04/2021,16:55,BROOKLYN,11234,40.621113,-73.93102,"(40.621113, -73.93102)",EAST 46 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474370,Multi-Wheeled Vehicle,,,, +11/04/2021,13:10,BRONX,10456,40.836063,-73.90422,"(40.836063, -73.90422)",,,1420 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474141,moped,Sedan,,, +11/02/2021,23:35,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4475078,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/04/2021,0:00,BROOKLYN,11215,40.674786,-73.98389,"(40.674786, -73.98389)",,,261 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474387,Sedan,,,, +11/03/2021,17:19,,,40.817596,-73.95319,"(40.817596, -73.95319)",WEST 133 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4473893,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,21:36,,,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4474083,Sedan,,,, +11/04/2021,14:00,QUEENS,11373,40.740757,-73.89028,"(40.740757, -73.89028)",74 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474236,Sedan,Sedan,,, +11/03/2021,15:15,QUEENS,11355,40.75691,-73.81951,"(40.75691, -73.81951)",BEECH AVENUE,MAGNOLIA PLACE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4473805,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,9:30,,,40.778606,-73.84339,"(40.778606, -73.84339)",125 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4474456,Dump,Sedan,,, +11/05/2021,15:30,BRONX,10473,40.816936,-73.8643,"(40.816936, -73.8643)",,,1704 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474788,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,19:33,BROOKLYN,11230,40.63278,-73.966934,"(40.63278, -73.966934)",,,1018 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474044,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,3:10,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",ROCKAWAY BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4474439,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,12:30,QUEENS,11368,40.753788,-73.86967,"(40.753788, -73.86967)",,,98-03 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474610,Sedan,,,, +11/04/2021,18:14,MANHATTAN,10002,40.71236,-73.99384,"(40.71236, -73.99384)",,,127 MADISON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475115,Sedan,Box Truck,,, +11/05/2021,13:00,,,40.74094,-74.007484,"(40.74094, -74.007484)",WASHINGTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474654,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,11:19,BROOKLYN,11233,40.67735,-73.9076,"(40.67735, -73.9076)",,,1383 HERKIMER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474375,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:00,BROOKLYN,11236,40.633606,-73.91623,"(40.633606, -73.91623)",FLATLANDS AVENUE,EAST 76 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474571,Sedan,Sedan,,, +11/04/2021,4:30,,,40.842163,-73.88902,"(40.842163, -73.88902)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4474428,Carry All,,,, +11/05/2021,16:45,BROOKLYN,11213,40.669415,-73.94262,"(40.669415, -73.94262)",,,788 EASTERN PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474562,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,18:14,BROOKLYN,11238,40.67639,-73.97189,"(40.67639, -73.97189)",FLATBUSH AVENUE,STERLING PLACE,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4474388,Sedan,E-Scooter,,, +11/05/2021,10:30,QUEENS,11691,40.60738,-73.74748,"(40.60738, -73.74748)",,,1214 BEACH 12 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,11:04,MANHATTAN,10010,40.740734,-73.99167,"(40.740734, -73.99167)",,,30 WEST 21 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474640,Sedan,Box Truck,,, +11/04/2021,7:10,,,40.783226,-73.83862,"(40.783226, -73.83862)",130 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4474449,Pick-up Truck,Sedan,,, +11/03/2021,14:00,,,40.853207,-73.8433,"(40.853207, -73.8433)",EASTCHESTER ROAD,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474068,Sedan,E-Bike,,, +11/02/2021,16:30,,,40.856625,-73.8319,"(40.856625, -73.8319)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,20:10,,,40.65881,-73.98172,"(40.65881, -73.98172)",PROSPECT AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4473843,Sedan,Sedan,,, +11/05/2021,18:25,,,,,,MAIN STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4474534,Sedan,Sedan,,, +10/29/2021,19:00,STATEN ISLAND,10305,40.58893,-74.09525,"(40.58893, -74.09525)",GARRETSON AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474947,Sedan,Sedan,,, +11/05/2021,11:30,BROOKLYN,11223,40.60536,-73.96174,"(40.60536, -73.96174)",CONEY ISLAND AVENUE,AVENUE R,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474292,Station Wagon/Sport Utility Vehicle,Bike,,, +11/05/2021,18:20,BRONX,10462,40.84232,-73.85472,"(40.84232, -73.85472)",,,2375 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474576,Sedan,Sedan,,, +11/05/2021,22:00,,,40.78888,-73.78358,"(40.78888, -73.78358)",CROSS ISLAND PARKWAY,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474699,Sedan,,,, +11/04/2021,0:42,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474417,Sedan,,,, +11/05/2021,18:00,BRONX,10469,40.865494,-73.85868,"(40.865494, -73.85868)",ALLERTON AVENUE,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4474757,Sedan,E-Scooter,,, +11/02/2021,20:03,QUEENS,11411,40.69599,-73.73665,"(40.69599, -73.73665)",116 AVENUE,223 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4474587,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/05/2021,22:08,MANHATTAN,10027,40.815277,-73.95913,"(40.815277, -73.95913)",,,40 TIEMANN PLACE,1,0,1,0,0,0,0,0,Unspecified,,,,,4474356,Sedan,,,, +11/03/2021,17:50,,,40.837177,-73.942604,"(40.837177, -73.942604)",WEST 162 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4474019,Ambulance,Sedan,,, +11/05/2021,11:00,MANHATTAN,10034,40.866447,-73.9305,"(40.866447, -73.9305)",HENSHAW STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475130,Sedan,,,, +10/25/2021,10:30,BRONX,10452,,,,EAST 170 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474725,Sedan,Sedan,,, +11/03/2021,8:30,BRONX,10457,,,,,,534 EAST 180 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4473629,Sedan,,,, +11/03/2021,16:38,MANHATTAN,10021,40.76948,-73.95787,"(40.76948, -73.95787)",EAST 73 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473903,Pick-up Truck,Sedan,,, +11/05/2021,7:37,QUEENS,11691,40.599762,-73.76001,"(40.599762, -73.76001)",,,548 AZTEC PLACE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,13:16,,,,,,GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473718,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,13:02,,,40.690483,-73.93954,"(40.690483, -73.93954)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4474843,Dump,Sedan,,, +11/05/2021,12:30,QUEENS,11412,40.6964,-73.74808,"(40.6964, -73.74808)",116 ROAD,205 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474270,Station Wagon/Sport Utility Vehicle,Convertible,,, +11/05/2021,10:36,BROOKLYN,11236,40.654007,-73.901245,"(40.654007, -73.901245)",,,10502 AVENUE D,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474404,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,23:10,BROOKLYN,11229,40.600426,-73.941895,"(40.600426, -73.941895)",NOSTRAND AVENUE,AVENUE U,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474509,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,17:30,MANHATTAN,10038,0,0,"(0.0, 0.0)",,,185 PARK ROW,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473913,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/03/2021,15:50,QUEENS,11358,40.757755,-73.79304,"(40.757755, -73.79304)",UTOPIA PARKWAY,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473801,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,13:27,MANHATTAN,10021,40.76685,-73.95376,"(40.76685, -73.95376)",EAST 72 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473902,Box Truck,Sedan,,, +11/04/2021,20:16,QUEENS,11367,40.719482,-73.81058,"(40.719482, -73.81058)",153 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474240,Sedan,Sedan,,, +11/04/2021,2:09,,,40.74284,-74.00028,"(40.74284, -74.00028)",WEST 19 STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4474106,Sedan,,,, +11/03/2021,22:21,,,40.830265,-73.95131,"(40.830265, -73.95131)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4473853,Sedan,Sedan,Sedan,, +11/04/2021,11:20,QUEENS,11433,40.697712,-73.786194,"(40.697712, -73.786194)",,,108-30 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474123,Box Truck,Sedan,,, +11/04/2021,22:00,BRONX,10470,40.898273,-73.867325,"(40.898273, -73.867325)",EAST 236 STREET,KATONAH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474862,Sedan,,,, +11/03/2021,2:25,BRONX,10468,40.875946,-73.888214,"(40.875946, -73.888214)",,,3150 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473533,Taxi,,,, +11/04/2021,9:28,QUEENS,11385,40.70766,-73.897514,"(40.70766, -73.897514)",,,66-41 FRESH POND ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4474153,,,,, +09/22/2021,20:15,MANHATTAN,10038,40.70973,-74.00626,"(40.70973, -74.00626)",,,150 WILLIAM STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474557,,,,, +11/05/2021,6:08,MANHATTAN,10002,40.711243,-73.98974,"(40.711243, -73.98974)",RUTGERS STREET,CHERRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474259,Sedan,,,, +11/05/2021,13:00,QUEENS,11373,40.74326,-73.8898,"(40.74326, -73.8898)",WOODSIDE AVENUE,75 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474885,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,9:00,MANHATTAN,10033,40.853477,-73.93514,"(40.853477, -73.93514)",WEST 186 STREET,BENNETT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474057,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,20:46,BROOKLYN,11221,40.697186,-73.92884,"(40.697186, -73.92884)",EVERGREEN AVENUE,HART STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Other Vehicular,Other Vehicular,,,4474410,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/04/2021,6:34,STATEN ISLAND,10304,40.59702,-74.09339,"(40.59702, -74.09339)",RICHMOND ROAD,OLD TOWN ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474205,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/04/2021,14:30,STATEN ISLAND,10308,40.551857,-74.135284,"(40.551857, -74.135284)",REDGRAVE AVENUE,GREENCROFT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,19:16,BRONX,10455,40.81793,-73.9053,"(40.81793, -73.9053)",WESTCHESTER AVENUE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4474592,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,14:00,BROOKLYN,11222,40.73036,-73.952515,"(40.73036, -73.952515)",GREENPOINT AVENUE,ECKFORD STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474821,Sedan,Bike,,, +11/04/2021,5:10,QUEENS,11102,40.771484,-73.929405,"(40.771484, -73.929405)",14 STREET,29 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474297,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,6:40,QUEENS,11355,40.760956,-73.807686,"(40.760956, -73.807686)",158 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4474460,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/27/2021,2:35,QUEENS,11369,40.759586,-73.86497,"(40.759586, -73.86497)",104 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474617,Sedan,,,, +11/04/2021,16:00,QUEENS,11434,,,,BELT PARKWAY,150 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4474432,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/05/2021,23:00,BRONX,10470,40.90325,-73.84801,"(40.90325, -73.84801)",CRANFORD AVENUE,BARNES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474833,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,8:50,,,40.64495,-73.9249,"(40.64495, -73.9249)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474865,Convertible,,,, +11/05/2021,1:32,QUEENS,11421,40.684753,-73.86077,"(40.684753, -73.86077)",ATLANTIC AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474488,Sedan,Sedan,,, +11/05/2021,14:00,BRONX,10455,40.81909,-73.902725,"(40.81909, -73.902725)",,,814 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474597,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,19:56,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4474722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,15:00,MANHATTAN,10030,40.819206,-73.947044,"(40.819206, -73.947044)",SAINT NICHOLAS AVENUE,WEST 138 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475082,Sedan,Motorscooter,,, +11/01/2021,16:46,MANHATTAN,10040,40.85372,-73.928696,"(40.85372, -73.928696)",AUDUBON AVENUE,WEST 189 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4475124,Motorcycle,Sedan,,, +11/04/2021,19:50,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4474191,Sedan,Sedan,,, +11/04/2021,14:18,,,40.8531,-73.92915,"(40.8531, -73.92915)",WEST 188 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474311,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,23:18,BRONX,10472,40.827507,-73.85634,"(40.827507, -73.85634)",PUGSLEY AVENUE,CHATTERTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474784,Station Wagon/Sport Utility Vehicle,LEFT SCENE,,, +11/02/2021,11:44,STATEN ISLAND,10310,40.63367,-74.12848,"(40.63367, -74.12848)",CASTLETON AVENUE,RECTOR STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474527,Sedan,,,, +11/05/2021,16:00,QUEENS,11411,40.692326,-73.74429,"(40.692326, -73.74429)",217 STREET,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474324,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,11:38,,,40.698757,-73.91885,"(40.698757, -73.91885)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474415,Box Truck,,,, +11/04/2021,16:56,,,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474329,Sedan,,,, +10/04/2021,0:00,QUEENS,11378,40.730762,-73.89668,"(40.730762, -73.89668)",,,68-24 53 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474915,Sedan,,,, +11/03/2021,0:00,BRONX,10458,40.856903,-73.89015,"(40.856903, -73.89015)",,,526 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473991,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,7:05,MANHATTAN,10030,40.81986,-73.94041,"(40.81986, -73.94041)",,,2430 7 AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4473689,Pick-up Truck,,,, +11/03/2021,7:40,,,,,,WEST 137 STREET,WEST 137 STREET AND 5 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473693,Sedan,Bus,,, +11/03/2021,14:53,BROOKLYN,11207,40.6877,-73.91095,"(40.6877, -73.91095)",COVERT STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473940,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/04/2021,12:40,,,,,,74 street,queens midtown expressway,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4474150,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,14:00,MANHATTAN,10006,,,,,,52 West st,0,0,0,0,0,0,0,0,Unspecified,,,,,4473726,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,15:10,,,40.676647,-73.82236,"(40.676647, -73.82236)",ROCKAWAY BOULEVARD,116 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474992,Sedan,E-Bike,,, +11/03/2021,22:50,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",WASHINGTON AVENUE,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473978,E-Bike,,,, +10/31/2021,4:00,,,40.744495,-73.98112,"(40.744495, -73.98112)",EAST 31 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474777,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,19:00,QUEENS,11435,40.71596,-73.81965,"(40.71596, -73.81965)",139 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474172,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,18:30,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473776,Sedan,Sedan,,, +11/05/2021,9:55,QUEENS,11377,40.73767,-73.90278,"(40.73767, -73.90278)",,,48-36 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474475,Sedan,Sedan,,, +11/03/2021,9:10,QUEENS,11429,40.703434,-73.74051,"(40.703434, -73.74051)",SPRINGFIELD BOULEVARD,MURDOCK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474031,Sedan,,,, +11/05/2021,21:15,QUEENS,11102,40.77086,-73.92992,"(40.77086, -73.92992)",30 AVENUE,14 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474673,Sedan,E-Scooter,,, +11/04/2021,17:47,BROOKLYN,11201,,,,FLATBUSH AVENUE EXTENSION,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474189,Sedan,Bus,,, +11/03/2021,9:35,QUEENS,11105,40.779728,-73.90631,"(40.779728, -73.90631)",20 AVENUE,31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473651,Station Wagon/Sport Utility Vehicle,Bike,,, +11/03/2021,16:12,QUEENS,11412,40.702053,-73.75261,"(40.702053, -73.75261)",113 AVENUE,203 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,Unspecified,,,4474343,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/03/2021,14:30,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4473941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,8:53,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4474274,Bus,Bus,,, +10/29/2021,8:45,,,40.83562,-73.927864,"(40.83562, -73.927864)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474748,Sedan,Ambulance,,, +11/05/2021,19:43,MANHATTAN,10036,40.757004,-73.98254,"(40.757004, -73.98254)",,,1166 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474503,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,9:27,QUEENS,11691,40.607853,-73.75812,"(40.607853, -73.75812)",,,1366 GIPSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4474486,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +11/05/2021,0:00,BROOKLYN,11221,40.69442,-73.93135,"(40.69442, -73.93135)",REID AVENUE,PULASKI STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474906,Sedan,Sedan,,, +11/04/2021,14:48,MANHATTAN,10002,40.72125,-73.99224,"(40.72125, -73.99224)",CHRYSTIE STREET,RIVINGTON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474464,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,18:00,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475122,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,10:47,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4474022,Station Wagon/Sport Utility Vehicle,Moped,,, +11/05/2021,14:45,QUEENS,11422,40.667168,-73.73349,"(40.667168, -73.73349)",244 STREET,138 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474322,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:17,MANHATTAN,10013,40.71589,-73.99631,"(40.71589, -73.99631)",,,50 BOWERY,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4474686,Taxi,Sedan,,, +11/03/2021,13:49,BROOKLYN,11230,40.623077,-73.96485,"(40.623077, -73.96485)",,,1411 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474042,LIMO,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,12:39,,,,,,FDR DRIVE,EAST 40 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4474301,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,13:10,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",EAST 170 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474747,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,8:03,BROOKLYN,11232,40.66778,-73.996185,"(40.66778, -73.996185)",,,550 HAMILTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473659,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,12:27,MANHATTAN,10006,40.707684,-74.015686,"(40.707684, -74.015686)",WEST STREET,WEST THAMES STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473725,Sedan,Sedan,,, +11/05/2021,14:50,,,,,,CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4474961,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/04/2021,21:30,BRONX,10469,40.87677,-73.84716,"(40.87677, -73.84716)",,,3480 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474832,Sedan,Sedan,,, +11/03/2021,23:20,,,,,,GRAND CENTRAL PARKWAY,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474179,Sedan,Sedan,,, +11/05/2021,13:50,BROOKLYN,11212,40.6599,-73.916046,"(40.6599, -73.916046)",LEGION STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474771,Sedan,Sedan,,, +11/04/2021,10:30,QUEENS,11423,0,0,"(0.0, 0.0)",,,196-35 HIAWATHA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475063,Sedan,,,, +11/05/2021,19:15,QUEENS,11379,40.721592,-73.87647,"(40.721592, -73.87647)",80 STREET,JUNIPER BOULEVARD NORTH,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474917,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,19:45,BRONX,10472,40.832386,-73.86457,"(40.832386, -73.86457)",WESTCHESTER AVENUE,THIERIOT AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4474479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:25,,,40.839092,-73.85005,"(40.839092, -73.85005)",SAINT RAYMOND AVENUE,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474713,Garbage or Refuse,Sedan,,, +04/14/2022,21:50,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",SEAVIEW AVENUE,ROCKAWAY PARKWAY,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519073,,,,, +11/03/2021,18:15,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474184,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:58,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",SOUTH CONDUIT AVENUE,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473764,Bus,Sedan,,, +11/03/2021,13:30,BROOKLYN,11208,0,0,"(0.0, 0.0)",ATLANTIC AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473877,Sedan,Sedan,,, +11/04/2021,9:11,,,,,,FRANCIS LEWIS BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474174,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,12:39,,,40.62368,-74.028,"(40.62368, -74.028)",4 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474056,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,8:10,,,40.75897,-73.807014,"(40.75897, -73.807014)",159 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474447,Sedan,,,, +11/03/2021,17:27,,,0,0,"(0.0, 0.0)",HANOVER STREET,PEARL STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474145,LIMO,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,7:30,QUEENS,11422,40.664085,-73.731865,"(40.664085, -73.731865)",248 STREET,139 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4473671,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,9:00,QUEENS,11372,40.749844,-73.883385,"(40.749844, -73.883385)",83 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474312,Pick-up Truck,,,, +11/05/2021,22:20,,,40.656063,-73.93957,"(40.656063, -73.93957)",ALBANY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unsafe Lane Changing,,,,4474569,Sedan,,,, +11/03/2021,21:20,QUEENS,11375,40.711338,-73.85646,"(40.711338, -73.85646)",METROPOLITAN AVENUE,SELFRIDGE STREET,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473796,Ambulance,E-Bike,,, +11/05/2021,13:27,,,40.71365,-73.73413,"(40.71365, -73.73413)",220 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474290,Flat Bed,Sedan,,, +11/03/2021,10:07,MANHATTAN,10035,40.802444,-73.938835,"(40.802444, -73.938835)",EAST 122 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473626,Sedan,Tractor Truck Diesel,,, +11/05/2021,16:54,,,,,,HYLAN BOULEVARD,DONGAN HILL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474344,Sedan,Sedan,,, +08/27/2021,0:00,,,40.665398,-73.95093,"(40.665398, -73.95093)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451258,Sedan,Sedan,,, +11/05/2021,8:30,,,40.526733,-74.17477,"(40.526733, -74.17477)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474281,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,11:50,QUEENS,11101,40.739426,-73.93464,"(40.739426, -73.93464)",VANDAM STREET,GALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473750,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,8:56,QUEENS,11378,40.725094,-73.910194,"(40.725094, -73.910194)",,,58-75 MAURICE AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474474,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,20:00,BROOKLYN,11234,40.62085,-73.91422,"(40.62085, -73.91422)",,,6603 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474207,Sedan,,,, +10/30/2021,0:55,,,40.687138,-73.75136,"(40.687138, -73.75136)",197 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474518,Sedan,Sedan,,, +11/03/2021,15:05,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",EAST 233 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474853,Sedan,Sedan,,, +11/03/2021,8:13,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473935,Sedan,,,, +11/05/2021,13:21,,,40.86261,-73.82679,"(40.86261, -73.82679)",HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4474715,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,7:00,BROOKLYN,11201,40.694813,-73.98328,"(40.694813, -73.98328)",GOLD STREET,JOHNSON STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4474398,Box Truck,Sedan,,, +11/03/2021,16:30,QUEENS,11372,40.75461,-73.89448,"(40.75461, -73.89448)",,,72-09 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4473733,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,21:30,MANHATTAN,10002,40.716183,-73.98075,"(40.716183, -73.98075)",DELANCEY STREET,COLUMBIA STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474365,Motorscooter,Sedan,,, +11/04/2021,14:50,BROOKLYN,11219,40.636,-73.991104,"(40.636, -73.991104)",,,4715 13 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4474232,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,13:08,MANHATTAN,10035,40.799034,-73.941315,"(40.799034, -73.941315)",,,1875 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474104,Bike,Sedan,,, +10/23/2021,15:10,,,,,,ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4470312,Sedan,Taxi,,, +11/05/2021,4:45,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,6,0,0,0,0,0,6,0,Unsafe Speed,,,,,4474884,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,7:56,,,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474032,Sedan,Sedan,,, +11/04/2021,22:50,MANHATTAN,10002,40.717922,-73.9931,"(40.717922, -73.9931)",GRAND STREET,FORSYTH STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474703,Sedan,,,, +11/03/2021,19:26,,,40.730484,-73.94625,"(40.730484, -73.94625)",CALYER STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474248,Station Wagon/Sport Utility Vehicle,Bike,,, +01/31/2022,6:25,MANHATTAN,10035,40.799576,-73.935905,"(40.799576, -73.935905)",EAST 120 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4498765,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:20,QUEENS,11414,0,0,"(0.0, 0.0)",162 AVENUE,91 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4473831,Sedan,Sedan,,, +11/03/2021,16:05,,,40.82918,-73.83782,"(40.82918, -73.83782)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473976,Tractor Truck Diesel,,,, +11/05/2021,20:05,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474615,Sedan,Sedan,,, +11/05/2021,16:00,BROOKLYN,11222,40.722775,-73.9471,"(40.722775, -73.9471)",MC GUINNESS BOULEVARD,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474817,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,9:45,BROOKLYN,11223,40.607338,-73.96189,"(40.607338, -73.96189)",KINGS HIGHWAY,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474508,Sedan,Bus,,, +11/03/2021,20:54,,,40.905018,-73.88631,"(40.905018, -73.88631)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4474038,Sedan,,,, +11/03/2021,14:20,BRONX,10460,40.841908,-73.885414,"(40.841908, -73.885414)",,,1932 CROTONA PARKWAY,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4475114,Sedan,E-Bike,,, +11/02/2021,19:00,BROOKLYN,11210,40.613506,-73.954094,"(40.613506, -73.954094)",OCEAN AVENUE,AVENUE O,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4474305,Station Wagon/Sport Utility Vehicle,Dump,,, +11/03/2021,14:15,MANHATTAN,10001,,,,w 32 st,6 ave,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474016,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,13:40,,,40.697166,-73.893364,"(40.697166, -73.893364)",SAINT FELIX AVENUE,COOPER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474923,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,12:00,BROOKLYN,11219,40.62702,-74.009384,"(40.62702, -74.009384)",,,1051 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473870,Sedan,Sedan,,, +10/30/2021,20:20,BROOKLYN,11205,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474642,Sedan,,,, +11/03/2021,16:00,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",EAST TREMONT AVENUE,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474076,Sedan,,,, +11/04/2021,17:01,QUEENS,11004,40.749477,-73.71845,"(40.749477, -73.71845)",73 ROAD,255 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474167,Convertible,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,19:00,,,40.881046,-73.84382,"(40.881046, -73.84382)",EAST 224 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4474849,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +11/04/2021,18:30,MANHATTAN,10024,40.786182,-73.98145,"(40.786182, -73.98145)",WEST 81 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,21:36,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473818,Sedan,Sedan,,, +11/05/2021,6:04,,,40.819042,-73.93075,"(40.819042, -73.93075)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4474752,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/05/2021,9:40,,,40.57927,-73.95335,"(40.57927, -73.95335)",WEST END AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474276,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:20,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4474092,Sedan,Sedan,,, +11/01/2021,0:12,,,40.757977,-73.853004,"(40.757977, -73.853004)",NORTHERN BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474261,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,23:10,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",ATLANTIC AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,14:40,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4473804,Dump,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,7:45,,,40.616966,-74.14513,"(40.616966, -74.14513)",WATCHOGUE ROAD,WILLOWBROOK ROAD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4474469,Sedan,,,, +11/03/2021,6:44,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473586,Pick-up Truck,Ambulance,,, +11/03/2021,0:00,QUEENS,11435,40.696804,-73.80338,"(40.696804, -73.80338)",,,104-15 148 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474126,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,14:40,QUEENS,11364,40.750717,-73.771126,"(40.750717, -73.771126)",208 STREET,53 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,12:50,,,0,0,"(0.0, 0.0)",BRUCKNER BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474212,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,23:47,BROOKLYN,11221,40.69578,-73.917076,"(40.69578, -73.917076)",LINDEN STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Passing or Lane Usage Improper,,,,4474411,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,22:00,,,40.70003,-73.78873,"(40.70003, -73.78873)",107 AVENUE,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475072,Ambulance,Sedan,,, +11/03/2021,13:15,MANHATTAN,10010,40.737194,-73.98328,"(40.737194, -73.98328)",,,230 EAST 21 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4473715,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,15:18,QUEENS,11360,40.783752,-73.77631,"(40.783752, -73.77631)",,,18-15 215 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474579,Sedan,Bus,,, +11/03/2021,18:00,BROOKLYN,11206,40.704277,-73.933014,"(40.704277, -73.933014)",BOGART STREET,VARET STREET,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4474333,Bike,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,4:49,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473845,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,0:00,BROOKLYN,11209,40.618443,-74.02885,"(40.618443, -74.02885)",,,9110 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474524,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,17:55,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4474196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/04/2021,15:37,,,40.793392,-73.97675,"(40.793392, -73.97675)",WEST 92 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4474162,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/03/2021,8:25,QUEENS,11434,40.683235,-73.77419,"(40.683235, -73.77419)",120 AVENUE,171 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4474060,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,16:28,MANHATTAN,10036,40.763374,-73.99647,"(40.763374, -73.99647)",11 AVENUE,WEST 46 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474501,Sedan,Sedan,,, +11/01/2021,10:50,BROOKLYN,11235,40.592518,-73.932625,"(40.592518, -73.932625)",KNAPP STREET,AVENUE Y,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475016,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,22:14,,,40.792244,-73.94419,"(40.792244, -73.94419)",EAST 107 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475085,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,7:30,,,40.66748,-73.92188,"(40.66748, -73.92188)",UNION STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474376,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,17:30,BROOKLYN,11232,40.65443,-74.00757,"(40.65443, -74.00757)",38 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4474892,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,16:30,MANHATTAN,10007,40.710888,-74.00907,"(40.710888, -74.00907)",FULTON STREET,BROADWAY,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4474286,Sedan,Bike,,, +11/05/2021,21:45,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474393,Sedan,,,, +11/05/2021,17:58,,,40.78585,-73.838356,"(40.78585, -73.838356)",130 STREET,14 AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Turning Improperly,,,,4474554,E-Scooter,Sedan,,, +11/04/2021,16:30,,,40.676445,-73.92762,"(40.676445, -73.92762)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474805,Sedan,Sedan,,, +11/03/2021,12:00,MANHATTAN,10028,40.774643,-73.95016,"(40.774643, -73.95016)",,,420 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474242,Sedan,,,, +11/05/2021,16:30,QUEENS,11420,40.669395,-73.80771,"(40.669395, -73.80771)",133 AVENUE,131 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4474995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike,, +11/04/2021,13:45,BRONX,10452,40.83609,-73.92926,"(40.83609, -73.92926)",UNIVERSITY AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474266,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,3:00,QUEENS,11375,40.735664,-73.8457,"(40.735664, -73.8457)",GRAND CENTRAL PARKWAY,63 ROAD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4474454,Sedan,Station Wagon/Sport Utility Vehicle,PK,PK, +11/01/2021,9:01,,,40.677284,-73.78684,"(40.677284, -73.78684)",155 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474437,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,16:05,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4474901,Taxi,Sedan,,, +11/03/2021,15:00,BRONX,10457,40.84299,-73.91099,"(40.84299, -73.91099)",EAST MOUNT EDEN AVENUE,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4473850,Sedan,Station Wagon/Sport Utility Vehicle,Ambulance,, +11/04/2021,18:58,,,,,,PELHAM PARKWAY,EASTCHESTER ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474516,Sedan,Sedan,,, +11/04/2021,19:00,,,40.66929,-73.842445,"(40.66929, -73.842445)",NORTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4474217,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,7:41,BROOKLYN,11209,40.625687,-74.04075,"(40.625687, -74.04075)",86 STREET,SHORE ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4474496,Sedan,Bus,Sedan,, +11/04/2021,3:00,BROOKLYN,11204,40.613968,-73.9863,"(40.613968, -73.9863)",,,2066 68 STREET,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4473923,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,8:30,BROOKLYN,11210,40.637417,-73.945244,"(40.637417, -73.945244)",,,1456 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474873,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,11:29,,,,,,,,462 26 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474069,Box Truck,Ambulance,,, +11/05/2021,12:30,BROOKLYN,11231,40.681385,-74.00074,"(40.681385, -74.00074)",HENRY STREET,1 PLACE,,2,0,2,0,0,0,0,0,Turning Improperly,,,,,4474730,Sedan,,,, +11/05/2021,15:56,QUEENS,11366,40.726326,-73.78993,"(40.726326, -73.78993)",,,178-02 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474532,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/04/2021,1:45,QUEENS,11413,40.646923,-73.75094,"(40.646923, -73.75094)",,,230-39 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473837,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,14:00,QUEENS,11101,40.735527,-73.93698,"(40.735527, -73.93698)",35 STREET,VANDAM STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474382,Taxi,E-Scooter,,, +11/05/2021,12:20,BROOKLYN,11206,40.703587,-73.944336,"(40.703587, -73.944336)",MOORE STREET,MANHATTAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474979,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,16:35,MANHATTAN,10002,,,,,,35 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,19:46,BRONX,10469,40.86546,-73.84169,"(40.86546, -73.84169)",,,2707 WOODHULL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4474422,Ambulance,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,0:00,QUEENS,11385,40.710777,-73.86502,"(40.710777, -73.86502)",COOPER AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473778,Sedan,,,, +11/03/2021,21:20,,,40.699013,-73.79573,"(40.699013, -73.79573)",SOUTH ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474114,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,16:19,BRONX,10460,40.835884,-73.88341,"(40.835884, -73.88341)",EAST 174 STREET,BOONE AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474133,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,9:30,BRONX,10460,40.84175,-73.88546,"(40.84175, -73.88546)",ELSMERE PLACE,CROTONA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475106,Sedan,Sedan,,, +11/05/2021,16:30,BROOKLYN,11201,40.703243,-73.99068,"(40.703243, -73.99068)",WATER STREET,MAIN STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474542,Sedan,,,, +11/05/2021,10:32,BROOKLYN,11222,40.723274,-73.937416,"(40.723274, -73.937416)",VANDERVORT AVENUE,ANTHONY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474826,Carry All,Sedan,,, +11/05/2021,21:19,,,40.75996,-73.8614,"(40.75996, -73.8614)",,,108 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474607,Bike,,,, +11/03/2021,18:20,MANHATTAN,10016,40.74135,-73.981316,"(40.74135, -73.981316)",3 AVENUE,EAST 27 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473953,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,7:00,,,40.699833,-73.93697,"(40.699833, -73.93697)",LOCUST STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474049,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,15:45,BRONX,10452,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,BOSCOBEL PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4473860,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/04/2021,17:15,,,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,,,,4474226,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,19:45,BROOKLYN,11214,40.58703,-73.9854,"(40.58703, -73.9854)",WEST 16 STREET,BAY 50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474361,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,13:00,,,40.727287,-74.00064,"(40.727287, -74.00064)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474653,Sedan,Tow Truck / Wrecker,,, +11/03/2021,17:40,MANHATTAN,10021,40.76912,-73.95505,"(40.76912, -73.95505)",EAST 74 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473904,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,12:35,QUEENS,11358,40.75012,-73.80728,"(40.75012, -73.80728)",OAK AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474298,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,11:00,BROOKLYN,11222,40.720444,-73.942726,"(40.720444, -73.942726)",,,37 NORTH HENRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474825,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,6:20,QUEENS,11385,40.706356,-73.900276,"(40.706356, -73.900276)",60 PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4474918,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,11:53,BROOKLYN,11225,40.662388,-73.95005,"(40.662388, -73.95005)",,,332 LEFFERTS AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4474561,Sedan,Sedan,,, +11/05/2021,15:50,MANHATTAN,10038,40.710175,-74.001144,"(40.710175, -74.001144)",ROBERT F WAGNER PLACE,PEARL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474687,Sedan,Taxi,,, +11/04/2021,13:30,QUEENS,11423,40.722393,-73.7649,"(40.722393, -73.7649)",DUNTON STREET,KENO AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474171,Sedan,,,, +11/05/2021,18:25,QUEENS,11412,40.705486,-73.77652,"(40.705486, -73.77652)",,,182-20 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475051,Sedan,,,, +10/07/2021,17:55,BROOKLYN,11206,40.698643,-73.94697,"(40.698643, -73.94697)",ELLERY STREET,TOMPKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474844,Station Wagon/Sport Utility Vehicle,tractor,,, +11/05/2021,11:00,MANHATTAN,10027,40.81144,-73.95211,"(40.81144, -73.95211)",SAINT NICHOLAS AVENUE,WEST 126 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474354,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:05,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475075,Sedan,Concrete Mixer,,, +11/03/2021,21:36,,,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4474081,Sedan,,,, +11/04/2021,19:01,BRONX,10469,40.861523,-73.84328,"(40.861523, -73.84328)",,,2426 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4474515,Sedan,,,, +11/04/2021,18:10,,,0,0,"(0.0, 0.0)",EAST 115 STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474293,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/04/2021,13:00,BROOKLYN,11231,40.68461,-73.998375,"(40.68461, -73.998375)",,,226 DE GRAW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474199,Pick-up Truck,Moped,,, +11/03/2021,16:40,BRONX,10467,40.871414,-73.86503,"(40.871414, -73.86503)",,,743 BURKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473914,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,13:10,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474465,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Convertible,, +11/04/2021,20:00,QUEENS,11411,40.689415,-73.74008,"(40.689415, -73.74008)",223 STREET,120 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,16:04,BROOKLYN,11221,40.691555,-73.93677,"(40.691555, -73.93677)",LAFAYETTE AVENUE,LEWIS AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4474088,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,0:55,BROOKLYN,11207,40.6915,-73.90956,"(40.6915, -73.90956)",HALSEY STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4473552,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/03/2021,6:00,,,40.736496,-73.909225,"(40.736496, -73.909225)",58 STREET,LAUREL HILL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474154,Sedan,,,, +11/05/2021,3:39,QUEENS,11420,40.67875,-73.8205,"(40.67875, -73.8205)",LEFFERTS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474987,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,18:20,MANHATTAN,10019,40.76525,-73.995094,"(40.76525, -73.995094)",11 AVENUE,WEST 49 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474407,Bike,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,17:26,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474337,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/05/2021,15:50,QUEENS,11375,40.727627,-73.84173,"(40.727627, -73.84173)",112 STREET,68 ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4474330,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,2:30,QUEENS,11435,40.701344,-73.81148,"(40.701344, -73.81148)",,,90-22 143 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4474120,Sedan,Sedan,,, +11/03/2021,8:00,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4473815,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,22:55,,,40.666836,-73.7664,"(40.666836, -73.7664)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474584,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,8:20,QUEENS,11370,40.75933,-73.88511,"(40.75933, -73.88511)",83 STREET,31 AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4473993,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/03/2021,12:30,QUEENS,11378,40.71935,-73.91233,"(40.71935, -73.91233)",GRAND AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473696,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,20:02,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",EAST 134 STREET,BROOK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474593,E-Bike,Tractor Truck Diesel,,, +11/05/2021,9:00,BROOKLYN,11234,40.61294,-73.9221,"(40.61294, -73.9221)",,,5325 AVENUE T,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474372,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,19:10,BROOKLYN,11231,40.677547,-73.99138,"(40.677547, -73.99138)",BOND STREET,2 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474726,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,21:18,QUEENS,11378,,,,QUEENS MIDTOWN EXPRESSWAY,43 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4474389,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,14:45,,,40.694855,-73.925,"(40.694855, -73.925)",EVERGREEN AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474624,Bike,,,, +11/04/2021,23:00,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474325,Sedan,Sedan,,, +11/05/2021,10:30,QUEENS,11419,40.687237,-73.82754,"(40.687237, -73.82754)",103 AVENUE,116 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474491,Sedan,,,, +11/04/2021,4:30,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473979,Sedan,Sedan,,, +11/05/2021,7:15,,,,,,NORTH CONDUIT AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4474433,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,14:13,,,40.884487,-73.86567,"(40.884487, -73.86567)",CARPENTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474867,Sedan,Sedan,,, +10/24/2021,5:18,,,,,,MYRTLE AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Traffic Control Disregarded,Other Vehicular,Unspecified,,4474641,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/05/2021,19:50,,,40.8133,-73.930405,"(40.8133, -73.930405)",EAST 138 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474598,Sedan,,,, +11/04/2021,19:15,QUEENS,11354,40.764706,-73.811005,"(40.764706, -73.811005)",154 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474450,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,7:59,BRONX,10463,40.884518,-73.89387,"(40.884518, -73.89387)",,,122 VANCORTLANDT AVENUE WEST,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474273,Sedan,Ambulance,,, +11/04/2021,7:20,BRONX,10460,40.834316,-73.889565,"(40.834316, -73.889565)",,,1522 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4474140,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +11/05/2021,17:08,BRONX,10461,40.84996,-73.84774,"(40.84996, -73.84774)",VANNEST AVENUE,TENBROECK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474577,,,,, +11/03/2021,12:30,STATEN ISLAND,10304,40.615368,-74.08275,"(40.615368, -74.08275)",,,7 BOWEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474065,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,9:00,,,40.7429,-73.89659,"(40.7429, -73.89659)",WOODSIDE AVENUE,68 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4474386,Bike,,,, +11/03/2021,8:00,,,40.66679,-73.85832,"(40.66679, -73.85832)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473869,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/05/2021,13:25,BROOKLYN,11215,40.657146,-73.983444,"(40.657146, -73.983444)",PROSPECT PARK WEST,19 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474895,Sedan,SHORT SCHO,,, +11/03/2021,14:22,BROOKLYN,11236,40.63787,-73.90963,"(40.63787, -73.90963)",EAST 85 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,11:30,STATEN ISLAND,10301,40.63277,-74.09004,"(40.63277, -74.09004)",WOODSTOCK AVENUE,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474526,Sedan,,,, +11/04/2021,12:25,BROOKLYN,11221,40.691822,-73.92223,"(40.691822, -73.92223)",BUSHWICK AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Driver Inattention/Distraction,,,,4474418,Carry All,Box Truck,,, +11/04/2021,8:45,,,40.715927,-73.80889,"(40.715927, -73.80889)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474239,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,16:15,QUEENS,11103,40.759365,-73.914276,"(40.759365, -73.914276)",NEWTOWN ROAD,44 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4473889,Sedan,Bike,,, +11/04/2021,22:10,QUEENS,11373,40.742573,-73.88505,"(40.742573, -73.88505)",,,42-72 80 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4474253,Sedan,,,, +11/03/2021,8:00,BRONX,10462,40.836414,-73.86333,"(40.836414, -73.86333)",,,1433 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4474789,Sedan,,,, +11/05/2021,7:00,QUEENS,11357,40.786095,-73.79412,"(40.786095, -73.79412)",CROSS ISLAND PARKWAY,200 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4474455,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/05/2021,0:00,,,,,,Marginal Street,Saint Claire place,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4474357,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,19:05,QUEENS,11385,40.711452,-73.91987,"(40.711452, -73.91987)",FLUSHING AVENUE,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474914,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/04/2021,21:00,BROOKLYN,11226,40.65249,-73.95267,"(40.65249, -73.95267)",LINDEN BOULEVARD,ROGERS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4474940,,,,, +11/03/2021,8:30,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",BRUCKNER BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474045,Tractor Truck Diesel,Bus,,, +11/03/2021,17:00,,,40.69363,-73.91332,"(40.69363, -73.91332)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473937,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,10:06,,,40.640015,-73.92575,"(40.640015, -73.92575)",KINGS HIGHWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474836,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,10:00,BROOKLYN,11236,40.64074,-73.89882,"(40.64074, -73.89882)",,,1222 EAST 96 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4473732,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,6:24,BROOKLYN,11236,40.63677,-73.89148,"(40.63677, -73.89148)",,,1501 EAST 98 STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4474427,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,11:49,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474714,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,5:10,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,10:25,QUEENS,11419,40.687004,-73.82836,"(40.687004, -73.82836)",103 AVENUE,115 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474482,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:30,QUEENS,11420,40.66549,-73.819534,"(40.66549, -73.819534)",NORTH CONDUIT AVENUE,122 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474991,Sedan,Box Truck,,, +11/05/2021,20:40,,,40.624763,-73.96518,"(40.624763, -73.96518)",CONEY ISLAND AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474678,Sedan,Sedan,,, +11/03/2021,9:20,BROOKLYN,11236,40.64405,-73.90399,"(40.64405, -73.90399)",EAST 95 STREET,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Glare,,,,,4473769,Sedan,,,, +11/05/2021,19:30,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",ESSEX STREET,DELANCEY STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4474566,Moped,Box Truck,,, +11/04/2021,15:10,BROOKLYN,11238,0,0,"(0.0, 0.0)",FULTON STREET,CLASSON AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474188,Box Truck,E-Bike,,, +11/03/2021,12:00,MANHATTAN,10037,40.81467,-73.93622,"(40.81467, -73.93622)",EAST 138 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4473652,Station Wagon/Sport Utility Vehicle,Bus,,, +11/05/2021,15:10,QUEENS,11412,40.706604,-73.76198,"(40.706604, -73.76198)",HOLLIS AVENUE,109 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475058,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,11:35,QUEENS,11365,40.738934,-73.79267,"(40.738934, -73.79267)",,,181-08 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474175,Sedan,,,, +11/04/2021,4:10,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4473945,Sedan,,,, +11/01/2021,13:50,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474708,Sedan,Sedan,,, +04/14/2022,17:51,BROOKLYN,11205,40.68978,-73.965195,"(40.68978, -73.965195)",DE KALB AVENUE,SAINT JAMES PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519076,Sedan,Bike,,, +11/05/2021,11:00,,,40.798576,-73.97316,"(40.798576, -73.97316)",WEST 100 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4474313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,18:32,BROOKLYN,11220,40.64417,-74.0103,"(40.64417, -74.0103)",,,518 51 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473842,Pick-up Truck,E-Bike,,, +11/04/2021,11:30,BROOKLYN,11249,40.699448,-73.95876,"(40.699448, -73.95876)",,,108 WALLABOUT STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474223,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,16:00,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474759,Sedan,,,, +11/04/2021,20:44,,,40.660027,-73.96061,"(40.660027, -73.96061)",FLATBUSH AVENUE,,,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4474308,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +11/03/2021,18:40,QUEENS,11385,40.700485,-73.90105,"(40.700485, -73.90105)",,,58-18 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474149,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,17:25,BROOKLYN,11234,40.617382,-73.943474,"(40.617382, -73.943474)",KINGS HIGHWAY,AVENUE N,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474204,Sedan,Pick-up Truck,,, +11/03/2021,9:30,,,,,,JAY STREET,SANDS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473737,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,19:36,QUEENS,11374,0,0,"(0.0, 0.0)",99 STREET,63 ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473781,Sedan,,,, +11/03/2021,17:42,BROOKLYN,11236,40.641033,-73.913155,"(40.641033, -73.913155)",EAST 85 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474050,Sedan,,,, +11/05/2021,21:15,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4474616,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,6:55,,,40.71122,-73.72827,"(40.71122, -73.72827)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,9:14,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,10:30,,,40.72973,-73.91183,"(40.72973, -73.91183)",58 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474033,Sedan,Box Truck,,, +11/03/2021,12:00,BROOKLYN,11237,40.713375,-73.92603,"(40.713375, -73.92603)",MEADOW STREET,GARDNER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474227,Pick-up Truck,,,, +11/05/2021,0:00,,,40.714325,-73.80743,"(40.714325, -73.80743)",HOOVER AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4474340,Station Wagon/Sport Utility Vehicle,Bike,,, +11/03/2021,8:55,QUEENS,11106,40.759254,-73.93091,"(40.759254, -73.93091)",35 AVENUE,28 STREET,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4473650,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,17:35,QUEENS,11416,40.683086,-73.85416,"(40.683086, -73.85416)",86 STREET,ROCKAWAY BOULEVARD,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4474487,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,16:55,MANHATTAN,10026,40.79864,-73.9534,"(40.79864, -73.9534)",,,111 WEST 110 STREET,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4474269,Taxi,E-Scooter,,, +11/04/2021,12:15,BROOKLYN,11235,40.57576,-73.96209,"(40.57576, -73.96209)",BRIGHTWATER COURT,BRIGHTON 5 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474721,Sedan,,,, +10/27/2021,20:46,,,,,,JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,,,,,4474403,Box Truck,,,, +11/05/2021,15:13,BROOKLYN,11215,40.664963,-73.98982,"(40.664963, -73.98982)",5 AVENUE,16 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474956,Sedan,Bike,,, +11/03/2021,18:35,,,,,,26 AVENUE,SHORE PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474362,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,12:30,BROOKLYN,11222,40.71982,-73.946625,"(40.71982, -73.946625)",,,137 BAYARD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473900,Bus,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:08,BROOKLYN,11217,40.68532,-73.98071,"(40.68532, -73.98071)",ATLANTIC AVENUE,3 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474235,Sedan,,,, +11/01/2021,11:00,BROOKLYN,11210,40.632374,-73.935875,"(40.632374, -73.935875)",,,4206 AVENUE H,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474369,Motorcycle,,,, +11/05/2021,9:00,,,40.795525,-73.97594,"(40.795525, -73.97594)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474478,Bike,,,, +10/22/2021,18:20,BROOKLYN,11215,,,,PROSPECT PARK WEST,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4474889,E-Bike,,,, +11/04/2021,14:00,,,40.590084,-73.95476,"(40.590084, -73.95476)",AVENUE Y,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474257,Sedan,Sedan,,, +11/04/2021,12:56,BROOKLYN,11213,40.664085,-73.939926,"(40.664085, -73.939926)",,,466 ALBANY AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474572,Sedan,,,, +11/04/2021,8:30,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474446,Bus,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,17:24,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4475125,Pick-up Truck,MTA BUS,,, +11/03/2021,1:50,,,40.729923,-73.91208,"(40.729923, -73.91208)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473686,Sedan,Sedan,,, +11/05/2021,12:11,BROOKLYN,11212,40.675205,-73.904396,"(40.675205, -73.904396)",EAST NEW YORK AVENUE,JUNIUS STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474773,Sedan,,,, +11/04/2021,15:15,BROOKLYN,11219,40.638382,-73.98863,"(40.638382, -73.98863)",43 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474233,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,19:05,,,40.578358,-73.99051,"(40.578358, -73.99051)",WEST 23 STREET,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4474702,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +11/05/2021,17:00,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474591,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,18:30,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474520,Sedan,,,, +11/03/2021,11:14,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",SOUTH PORTLAND AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4473950,Sedan,Box Truck,,, +10/20/2021,20:28,BROOKLYN,11234,40.634483,-73.91886,"(40.634483, -73.91886)",RALPH AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474502,Sedan,,,, +11/05/2021,16:00,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",KINGS HIGHWAY,OCEAN PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475017,Sedan,,,, +11/03/2021,0:24,,,40.841843,-73.94539,"(40.841843, -73.94539)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473615,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,14:31,BROOKLYN,11231,40.68482,-74.004585,"(40.68482, -74.004585)",,,64 UNION STREET,1,0,0,0,1,0,0,0,Oversized Vehicle,Unspecified,,,,4474731,Box Truck,E-Bike,,, +11/03/2021,12:41,MANHATTAN,10016,40.74954,-73.97744,"(40.74954, -73.97744)",EAST 39 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4473800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,7:55,QUEENS,11432,40.71368,-73.78746,"(40.71368, -73.78746)",DALNY ROAD,HIGHLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474021,Sedan,Bus,,, +10/16/2021,5:18,BROOKLYN,11225,,,,,,921 WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4474285,Sedan,Motorcycle,Sedan,Sedan,Sedan +11/04/2021,17:20,BRONX,10455,40.811657,-73.90483,"(40.811657, -73.90483)",,,502 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474208,Taxi,,,, +11/05/2021,20:30,STATEN ISLAND,10305,40.58405,-74.09489,"(40.58405, -74.09489)",,,1854 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474345,Sedan,Sedan,,, +11/05/2021,8:00,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,15:15,BROOKLYN,11220,40.63233,-74.01854,"(40.63233, -74.01854)",BAY RIDGE AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474497,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,6:16,,,40.830242,-73.9497,"(40.830242, -73.9497)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,20:10,,,40.77074,-73.99455,"(40.77074, -73.99455)",12 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473934,Sedan,,,, +11/05/2021,18:16,,,40.877106,-73.90616,"(40.877106, -73.90616)",WEST 230 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474397,Sedan,Sedan,,, +11/03/2021,14:40,BROOKLYN,11203,40.639793,-73.929115,"(40.639793, -73.929115)",UTICA AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473723,Sedan,Sedan,,, +11/04/2021,0:00,QUEENS,11423,40.717407,-73.76336,"(40.717407, -73.76336)",198 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475066,Sedan,Sedan,,, +11/05/2021,14:54,BROOKLYN,11206,40.703663,-73.94706,"(40.703663, -73.94706)",BROADWAY,WALTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474997,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,23:12,,,40.699715,-73.96182,"(40.699715, -73.96182)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474969,Sedan,Tractor Truck Diesel,,, +11/03/2021,11:41,BROOKLYN,11203,40.658894,-73.94247,"(40.658894, -73.94247)",,,600 KINGSTON AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4474131,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/04/2021,23:00,,,40.70996,-73.989334,"(40.70996, -73.989334)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474364,Sedan,Sedan,,, +11/03/2021,13:20,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",CONEY ISLAND AVENUE,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474097,Van,Sedan,,, +11/05/2021,10:58,,,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,15:00,,,40.840836,-73.87258,"(40.840836, -73.87258)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474349,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/03/2021,21:10,BROOKLYN,11223,40.598312,-73.96119,"(40.598312, -73.96119)",CONEY ISLAND AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473846,Sedan,,,, +04/13/2022,1:49,BRONX,10462,40.845192,-73.8663,"(40.845192, -73.8663)",,,689 MORRIS PARK AVENUE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4518556,E-Bike,,,, +11/04/2021,13:00,,,40.763824,-73.72686,"(40.763824, -73.72686)",254 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474458,Box Truck,Dump,,, +10/23/2021,13:00,BRONX,10468,40.879547,-73.885796,"(40.879547, -73.885796)",,,40 WEST MOSHOLU PARKWAY SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474441,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,20:00,,,,,,VANWYCK EXPRESSWAY,133 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4473832,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,19:00,,,,,,GRAND CENTRAL PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4474381,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/03/2021,11:13,,,40.641987,-74.01724,"(40.641987, -74.01724)",58 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474055,Sedan,,,, +10/31/2021,17:30,QUEENS,11370,40.763077,-73.88657,"(40.763077, -73.88657)",,,82-05 25 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474614,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,17:16,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474664,Taxi,,,, +10/27/2021,8:00,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Lane Changing,,,,4475120,Sedan,Dump,,, +11/04/2021,6:45,BROOKLYN,11236,40.640438,-73.911224,"(40.640438, -73.911224)",,,636 EAST 86 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474426,Bus,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,12:40,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474483,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,12:24,BROOKLYN,11215,40.66998,-73.98793,"(40.66998, -73.98793)",,,255 9 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474394,Sedan,Dump,,, +10/30/2021,1:12,,,40.676872,-73.94985,"(40.676872, -73.94985)",DEAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4474806,Sedan,Sedan,Sedan,, +10/29/2021,7:00,MANHATTAN,10013,40.72085,-74.00394,"(40.72085, -74.00394)",WOOSTER STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475100,Station Wagon/Sport Utility Vehicle,,,, +07/29/2021,16:45,,,,,,ASTORIA BOULEVARD,31 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4442461,Sedan,Sedan,,, +08/09/2021,21:00,,,40.589344,-74.1015,"(40.589344, -74.1015)",RICHMOND ROAD,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4445553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/08/2021,5:20,QUEENS,11385,40.698013,-73.90265,"(40.698013, -73.90265)",CYPRESS AVENUE,GEORGE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4446057,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,22:30,,,40.675987,-73.91932,"(40.675987, -73.91932)",HOWARD AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450317,Sedan,Taxi,,, +08/27/2021,13:00,,,40.64094,-73.96051,"(40.64094, -73.96051)",DORCHESTER ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451897,Sedan,,,, +08/26/2021,14:02,BRONX,10465,40.830193,-73.82579,"(40.830193, -73.82579)",,,3546 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451906,Sedan,Sedan,,, +08/27/2021,8:57,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451907,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,14:00,,,,,,BRUCKNER EXPRESSWAY,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451902,Sedan,COMMERCIAL,,, +08/24/2021,15:36,MANHATTAN,10030,40.815826,-73.947044,"(40.815826, -73.947044)",8 AVENUE,WEST 134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451894,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,16:15,BRONX,10461,40.83913,-73.84389,"(40.83913, -73.84389)",,,2521 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451903,Ambulance,,,, +08/20/2021,15:36,BROOKLYN,11238,40.682014,-73.968796,"(40.682014, -73.968796)",,,790 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4448908,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/25/2021,21:50,,,40.67693,-74.00211,"(40.67693, -74.00211)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451914,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:00,BROOKLYN,11235,40.57702,-73.9642,"(40.57702, -73.9642)",BRIGHTON BEACH AVENUE,BRIGHTON 3 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451890,Sedan,,,, +08/22/2021,18:00,QUEENS,11356,40.7856,-73.83936,"(40.7856, -73.83936)",14 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451922,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,11:51,BRONX,10461,40.843124,-73.83026,"(40.843124, -73.83026)",,,1534 CROSBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451904,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,10:29,,,,,,WASHINGTON BRIDGE,Dr. Martin Luther King Jr Blvd,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4474075,Sedan,Tractor Truck Gasoline,,, +11/03/2021,19:00,BROOKLYN,11214,40.60242,-73.99459,"(40.60242, -73.99459)",86 STREET,BAY 29 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473852,Sedan,Sedan,,, +10/20/2021,11:00,,,,,,SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474267,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,14:45,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474965,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/05/2021,22:24,BROOKLYN,11222,40.724716,-73.94932,"(40.724716, -73.94932)",,,147 ECKFORD STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4474828,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +10/28/2021,19:56,QUEENS,11375,40.711823,-73.83612,"(40.711823, -73.83612)",MARKWOOD ROAD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474490,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,14:45,,,40.735306,-74.01011,"(40.735306, -74.01011)",WEST 11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/23/2021,11:10,,,,,,ROCKAWAY BEACH BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4474898,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,0:05,BROOKLYN,11225,40.655457,-73.961975,"(40.655457, -73.961975)",,,217 OCEAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4474419,Sedan,Sedan,,, +08/25/2021,12:06,,,40.62509,-74.12474,"(40.62509, -74.12474)",MANOR ROAD,EGBERT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451694,Sedan,,,, +08/25/2021,19:59,QUEENS,11357,40.777416,-73.81752,"(40.777416, -73.81752)",24 AVENUE,149 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450529,Sedan,,,, +08/27/2021,2:40,QUEENS,11372,40.747536,-73.884865,"(40.747536, -73.884865)",81 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451549,Bike,Sedan,,, +08/27/2021,19:29,,,,,,ALEXANDER HAMILTON BRIDGE,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unsafe Speed,Unspecified,Unspecified,,4451239,Sedan,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +08/26/2021,8:35,BROOKLYN,11219,40.641727,-73.99265,"(40.641727, -73.99265)",FORT HAMILTON PARKWAY,42 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4450966,Taxi,Carry All,Station Wagon/Sport Utility Vehicle,, +08/25/2021,8:15,QUEENS,11693,40.60452,-73.82106,"(40.60452, -73.82106)",,,32 WEST 12 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450617,Motorcycle,Box Truck,,, +08/25/2021,20:02,BROOKLYN,11224,40.575165,-73.98542,"(40.575165, -73.98542)",,,1904 SURF AVENUE,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4451454,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,0:01,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4450572,Sedan,Sedan,,, +08/26/2021,16:30,MANHATTAN,10028,40.7774,-73.96064,"(40.7774, -73.96064)",,,48 EAST 81 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,12:45,,,40.86159,-73.91295,"(40.86159, -73.91295)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4450941,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,16:30,BROOKLYN,11206,40.6997,-73.94425,"(40.6997, -73.94425)",THROOP AVENUE,HOPKINS STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4451628,E-Bike,,,, +08/27/2021,15:44,BROOKLYN,11238,40.67524,-73.95725,"(40.67524, -73.95725)",,,581 PROSPECT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451756,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,21:19,BROOKLYN,11211,40.710506,-73.95656,"(40.710506, -73.95656)",MARCY AVENUE,BORINQUEN PLACE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450919,Sedan,E-Bike,,, +08/27/2021,8:00,,,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451238,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:30,QUEENS,11421,40.696136,-73.85284,"(40.696136, -73.85284)",WOODHAVEN BOULEVARD,85 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450797,Sedan,Sedan,,, +08/27/2021,22:57,STATEN ISLAND,10304,40.6247,-74.07453,"(40.6247, -74.07453)",,,695 BAY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451695,Sedan,Sedan,,, +08/27/2021,6:24,,,40.785805,-73.97268,"(40.785805, -73.97268)",WEST 85 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451121,E-Scooter,,,, +08/27/2021,10:16,BRONX,10454,40.809696,-73.92428,"(40.809696, -73.92428)",,,353 EAST 138 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451071,E-Bike,Taxi,,, +08/25/2021,18:50,,,40.842163,-73.88902,"(40.842163, -73.88902)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4450777,Sedan,Tractor Truck Diesel,,, +08/27/2021,9:30,BRONX,10457,40.844532,-73.89043,"(40.844532, -73.89043)",,,1941 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451868,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,0:05,,,40.769115,-73.98856,"(40.769115, -73.98856)",10 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450297,Sedan,Sedan,,, +08/23/2021,13:30,QUEENS,11103,40.765594,-73.914734,"(40.765594, -73.914734)",,,28-24 38 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451474,Sedan,Sedan,Sedan,, +08/27/2021,15:15,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",EAST 140 STREET,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451158,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/27/2021,14:00,BROOKLYN,11215,40.67045,-73.98193,"(40.67045, -73.98193)",5 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451292,Sedan,,,, +08/25/2021,20:45,BROOKLYN,11249,40.706226,-73.96264,"(40.706226, -73.96264)",,,114 TAYLOR STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4450557,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,9:00,,,40.75426,-73.74334,"(40.75426, -73.74334)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451084,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/25/2021,22:10,QUEENS,11433,40.70404,-73.78161,"(40.70404, -73.78161)",,,104-13 177 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450950,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,16:30,MANHATTAN,10016,40.739494,-73.97663,"(40.739494, -73.97663)",,,462 1 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451011,Sedan,Bus,,, +08/25/2021,19:00,BRONX,10467,40.873837,-73.86707,"(40.873837, -73.86707)",,,3326 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4450657,Sedan,MOPED,,, +08/27/2021,17:20,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451126,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/27/2021,23:44,,,40.6568,-73.85758,"(40.6568, -73.85758)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451185,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,20:20,,,40.574295,-73.98869,"(40.574295, -73.98869)",SURF AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4451456,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,22:25,,,,,,SANDS STREET,JAY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450590,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,9:45,BROOKLYN,11213,40.675037,-73.930534,"(40.675037, -73.930534)",BERGEN STREET,UTICA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451314,Sedan,,,, +08/26/2021,9:30,BROOKLYN,11208,40.66259,-73.876396,"(40.66259, -73.876396)",ESSEX STREET,STANLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451395,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,18:55,,,40.728363,-74.00282,"(40.728363, -74.00282)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450750,Sedan,Box Truck,,, +08/26/2021,16:47,QUEENS,11375,40.733616,-73.85253,"(40.733616, -73.85253)",YELLOWSTONE BOULEVARD,63 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450889,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,16:50,BROOKLYN,11207,40.65818,-73.89717,"(40.65818, -73.89717)",,,677 HINSDALE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,2:30,QUEENS,11418,40.696415,-73.84088,"(40.696415, -73.84088)",,,86-56 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450321,Sedan,,,, +08/24/2021,13:58,,,40.697903,-73.9468,"(40.697903, -73.9468)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451663,Sedan,Sedan,,, +08/24/2021,7:45,QUEENS,11101,40.749676,-73.94372,"(40.749676, -73.94372)",43 AVENUE,23 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451052,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,1:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4450595,Sedan,Sedan,Sedan,, +08/25/2021,15:45,BRONX,10468,40.868748,-73.89497,"(40.868748, -73.89497)",EAST 196 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450793,Station Wagon/Sport Utility Vehicle,PK,,, +08/27/2021,5:30,,,40.681286,-73.76979,"(40.681286, -73.76979)",126 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450982,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,17:54,QUEENS,11692,40.59241,-73.80334,"(40.59241, -73.80334)",BEACH 75 STREET,AMSTEL BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451668,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,3:26,BRONX,10468,40.862717,-73.9023,"(40.862717, -73.9023)",WEST FORDHAM ROAD,DAVIDSON AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4451043,GAS POWERE,,,, +08/26/2021,9:32,BROOKLYN,11208,40.66778,-73.86243,"(40.66778, -73.86243)",ELDERTS LANE,LORING AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451273,Sedan,,,, +08/27/2021,0:00,BROOKLYN,11201,40.695892,-73.99555,"(40.695892, -73.99555)",PIERREPONT STREET,HICKS STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4451114,Sedan,Sedan,Sedan,, +08/26/2021,16:20,,,40.585976,-73.93791,"(40.585976, -73.93791)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451224,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,13:40,,,40.747257,-73.76342,"(40.747257, -73.76342)",HORACE HARDING EXPRESSWAY,214 STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4450827,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/05/2021,0:00,,,40.670662,-73.94765,"(40.670662, -73.94765)",LINCOLN PLACE,,,1,0,0,0,0,0,1,0,Illnes,Other Vehicular,Other Vehicular,Other Vehicular,,4451308,Sedan,Sedan,Box Truck,Sedan, +08/25/2021,17:30,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450722,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,15:34,BROOKLYN,11226,40.654068,-73.96177,"(40.654068, -73.96177)",OCEAN AVENUE,WOODRUFF AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451203,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,0:10,,,40.675663,-73.9277,"(40.675663, -73.9277)",ROCHESTER AVENUE,,,1,0,0,0,1,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4451646,Sedan,Bike,,, +08/25/2021,1:29,,,40.812824,-73.85716,"(40.812824, -73.85716)",SOUND VIEW AVENUE,BOLTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450354,Station Wagon/Sport Utility Vehicle,,,, +08/12/2021,23:55,BROOKLYN,11214,40.60233,-74.00319,"(40.60233, -74.00319)",,,1925 BATH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4450988,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,16:25,MANHATTAN,10032,,,,,,500 WEST 157 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4450987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/25/2021,15:10,,,40.681118,-73.96443,"(40.681118, -73.96443)",ATLANTIC AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450500,Sedan,Flat Rack,,, +08/25/2021,12:44,MANHATTAN,10024,40.783844,-73.979996,"(40.783844, -73.979996)",BROADWAY,WEST 79 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451136,Pick-up Truck,Bike,,, +08/27/2021,15:40,BROOKLYN,11233,40.669212,-73.921234,"(40.669212, -73.921234)",,,1675 LINCOLN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451153,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,16:56,BRONX,10455,40.816303,-73.918625,"(40.816303, -73.918625)",,,378 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450622,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,15:20,QUEENS,11419,40.69348,-73.817726,"(40.69348, -73.817726)",,,97-19 130 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4451103,Sedan,,,, +08/27/2021,21:40,MANHATTAN,10014,40.73908,-74.00309,"(40.73908, -74.00309)",8 AVENUE,WEST 13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451520,Tractor Truck Gasoline,Box Truck,,, +08/16/2021,1:39,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4451366,Sedan,Sedan,Sedan,, +08/26/2021,10:58,BRONX,10458,40.85404,-73.88646,"(40.85404, -73.88646)",CRESCENT AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451075,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,10:40,,,40.80907,-73.94455,"(40.80907, -73.94455)",WEST 127 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451556,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/26/2021,21:50,BROOKLYN,11203,40.646385,-73.9286,"(40.646385, -73.9286)",,,5110 BEVERLEY ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451330,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,17:00,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",HAMILTON AVENUE,COURT STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4451424,Bike,,,, +08/26/2021,15:10,QUEENS,11385,40.70353,-73.89453,"(40.70353, -73.89453)",,,69-35 62 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451776,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,21:50,,,40.771996,-73.933304,"(40.771996, -73.933304)",MAIN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451883,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,16:30,,,40.705914,-73.950294,"(40.705914, -73.950294)",UNION AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450932,E-Bike,,,, +08/27/2021,6:00,QUEENS,11420,40.681274,-73.81162,"(40.681274, -73.81162)",LINDEN BOULEVARD,130 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4451141,Sedan,Sedan,,, +08/25/2021,13:26,QUEENS,11366,40.72294,-73.8002,"(40.72294, -73.8002)",168 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4450638,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,19:28,QUEENS,11434,40.672142,-73.77373,"(40.672142, -73.77373)",166 PLACE,137 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451825,Sedan,,,, +08/27/2021,15:00,BROOKLYN,11236,40.636024,-73.89506,"(40.636024, -73.89506)",EAST 95 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4451298,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/25/2021,16:15,QUEENS,11373,40.73599,-73.86551,"(40.73599, -73.86551)",JUNCTION BOULEVARD,58 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451585,Sedan,E-Bike,,, +08/26/2021,9:00,QUEENS,11103,40.769268,-73.91617,"(40.769268, -73.91617)",,,25-38 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451007,Sedan,Box Truck,,, +08/23/2021,3:49,BRONX,10475,40.886093,-73.82763,"(40.886093, -73.82763)",,,4100 BOSTON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451701,Sedan,,,, +08/26/2021,1:10,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450702,Box Truck,Sedan,,, +08/25/2021,13:27,BROOKLYN,11201,40.68882,-73.98568,"(40.68882, -73.98568)",,,200 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450470,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,0:00,BROOKLYN,11233,40.68152,-73.91973,"(40.68152, -73.91973)",HOWARD AVENUE,CHAUNCEY STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4451484,Sedan,Sedan,,, +08/27/2021,18:00,MANHATTAN,10027,40.81309,-73.945335,"(40.81309, -73.945335)",,,2232 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451352,Sedan,,,, +08/23/2021,12:06,MANHATTAN,10012,40.72064,-73.99393,"(40.72064, -73.99393)",,,164 BOWERY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,11:50,,,40.8475,-73.86696,"(40.8475, -73.86696)",RHINELANDER AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4451020,Sedan,Pick-up Truck,,, +08/25/2021,9:00,BROOKLYN,11222,40.72823,-73.94589,"(40.72823, -73.94589)",,,775 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450408,Sedan,Sedan,,, +08/27/2021,6:26,MANHATTAN,10034,40.868248,-73.916145,"(40.868248, -73.916145)",10 AVENUE,WEST 213 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4451681,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,6:00,BROOKLYN,11203,40.654728,-73.9229,"(40.654728, -73.9229)",,,31 EAST 58 STREET,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4450860,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,18:00,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",55 DRIVE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450880,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,7:00,BROOKLYN,11220,40.64316,-74.01922,"(40.64316, -74.01922)",58 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450903,Sedan,Sedan,,, +08/27/2021,15:30,QUEENS,11429,40.713024,-73.73492,"(40.713024, -73.73492)",HEMPSTEAD AVENUE,219 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451168,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,0:27,BRONX,10468,40.87859,-73.88599,"(40.87859, -73.88599)",,,3276 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451039,Sedan,,,, +08/25/2021,12:45,QUEENS,11363,40.76437,-73.74749,"(40.76437, -73.74749)",,,232-01 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450461,Van,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,9:00,BROOKLYN,11223,40.582726,-73.97321,"(40.582726, -73.97321)",SHORE PARKWAY,WEST AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450413,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,8:17,,,40.738544,-73.90293,"(40.738544, -73.90293)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Lost Consciousness,Unspecified,,,,4451265,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,9:00,BRONX,10473,40.816936,-73.8643,"(40.816936, -73.8643)",,,1704 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450812,Sedan,unknown,,, +08/26/2021,16:40,,,40.78356,-73.82449,"(40.78356, -73.82449)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450992,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:30,BROOKLYN,11211,40.70412,-73.958145,"(40.70412, -73.958145)",,,121 LEE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4450495,Box Truck,,,, +08/25/2021,23:10,BROOKLYN,11237,40.69919,-73.91469,"(40.69919, -73.91469)",MYRTLE AVENUE,IRVING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451382,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,9:00,QUEENS,11366,40.72165,-73.8096,"(40.72165, -73.8096)",78 ROAD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450376,Sedan,,,, +08/27/2021,20:00,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451173,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,13:30,,,40.82733,-73.8498,"(40.82733, -73.8498)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4450700,Sedan,Pick-up Truck,Sedan,, +08/27/2021,23:59,BROOKLYN,11221,40.695282,-73.92576,"(40.695282, -73.92576)",EVERGREEN AVENUE,STANHOPE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451377,Sedan,Sedan,,, +08/23/2021,8:09,BROOKLYN,11233,40.684902,-73.92946,"(40.684902, -73.92946)",REID AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451492,Sedan,Sedan,,, +08/26/2021,21:19,MANHATTAN,10037,40.81517,-73.93586,"(40.81517, -73.93586)",,,2289 5 AVENUE,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4450974,Sedan,Bike,,, +08/26/2021,17:25,MANHATTAN,10003,40.736004,-73.99362,"(40.736004, -73.99362)",EAST 14 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451107,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,21:30,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450584,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,16:48,,,40.625546,-73.93998,"(40.625546, -73.93998)",FLATBUSH AVENUE,AVENUE K,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4451191,Sedan,Sedan,Sedan,, +08/27/2021,17:30,,,40.832626,-73.925385,"(40.832626, -73.925385)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4451229,Sedan,,,, +08/27/2021,14:35,MANHATTAN,10035,40.79793,-73.934,"(40.79793, -73.934)",1 AVENUE,EAST 119 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451614,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,9:52,QUEENS,11378,40.719227,-73.922745,"(40.719227, -73.922745)",,,57-65 48 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4451780,Box Truck,Van,PK,, +08/27/2021,23:25,BROOKLYN,11203,40.644974,-73.92099,"(40.644974, -73.92099)",CLARENDON ROAD,EAST 59 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451335,Sedan,Sedan,,, +08/26/2021,17:00,QUEENS,11375,40.71201,-73.84994,"(40.71201, -73.84994)",MANSE STREET,71 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451433,Sedan,,,, +08/18/2021,12:00,BROOKLYN,11249,40.710625,-73.96678,"(40.710625, -73.96678)",WYTHE AVENUE,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Backing Unsafely,,,,4451537,Taxi,Sedan,,, +08/25/2021,14:52,MANHATTAN,10028,40.774834,-73.94667,"(40.774834, -73.94667)",,,536 EAST 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450602,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,11:34,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4450937,Motorcycle,Pick-up Truck,,, +08/24/2021,20:10,QUEENS,11413,40.686436,-73.752914,"(40.686436, -73.752914)",122 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451830,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,11:54,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",BRUCKNER BOULEVARD,EAST 149 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4450956,Motorcycle,,,, +08/26/2021,9:00,,,40.7518,-73.817314,"(40.7518, -73.817314)",HOLLY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450715,Sedan,Sedan,,, +08/24/2021,12:40,STATEN ISLAND,10306,40.57862,-74.10168,"(40.57862, -74.10168)",BEDFORD AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4451145,Pick-up Truck,Sedan,,, +08/25/2021,8:25,,,,,,,,10-15 37 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451063,Pick-up Truck,,,, +08/25/2021,18:00,BROOKLYN,11210,40.628956,-73.949265,"(40.628956, -73.949265)",EAST 28 STREET,AVENUE I,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,9:15,MANHATTAN,10035,40.805893,-73.942665,"(40.805893, -73.942665)",,,2002 5 AVENUE,2,0,2,0,0,0,0,0,Unspecified,,,,,4451561,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,15:26,BRONX,10469,40.874863,-73.858574,"(40.874863, -73.858574)",,,980 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451707,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,16:18,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451162,Sedan,,,, +08/27/2021,10:00,BROOKLYN,11225,40.67033,-73.95647,"(40.67033, -73.95647)",,,320 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451248,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,17:25,,,40.695377,-73.94921,"(40.695377, -73.94921)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451637,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,19:40,,,40.694923,-73.915565,"(40.694923, -73.915565)",WILSON AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450706,Sedan,Bike,,, +08/25/2021,1:57,BRONX,10456,40.830353,-73.90347,"(40.830353, -73.90347)",EAST 168 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4450394,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,Sedan, +08/26/2021,10:39,BRONX,10462,40.849033,-73.86749,"(40.849033, -73.86749)",,,1980 WHITE PLAINS ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451024,Bus,Sedan,,, +08/26/2021,20:45,,,40.88643,-73.895805,"(40.88643, -73.895805)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4451660,Sedan,Sedan,Pick-up Truck,, +08/25/2021,11:37,,,40.694794,-73.98246,"(40.694794, -73.98246)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450481,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,15:13,BROOKLYN,11218,40.649525,-73.98072,"(40.649525, -73.98072)",MC DONALD AVENUE,GREENWOOD AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4450563,Sedan,Refrigerated Van,,, +08/27/2021,21:00,BRONX,10460,40.83436,-73.889565,"(40.83436, -73.889565)",,,1527 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4451215,,,,, +08/26/2021,12:48,BROOKLYN,11226,40.650898,-73.94766,"(40.650898, -73.94766)",EAST 32 STREET,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4450848,Tractor Truck Gasoline,E-Bike,,, +08/27/2021,19:37,QUEENS,11369,40.764126,-73.88194,"(40.764126, -73.88194)",,,87-16 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,Unspecified,,,,,4451466,Sedan,,,, +08/27/2021,23:04,QUEENS,11372,40.752663,-73.87633,"(40.752663, -73.87633)",91 STREET,35 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451677,Bike,,,, +08/27/2021,9:20,QUEENS,11105,40.77788,-73.91789,"(40.77788, -73.91789)",,,23-02 23 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451019,Sedan,,,, +08/25/2021,23:15,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",ROOSEVELT AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4450910,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,10:47,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450766,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/25/2021,11:59,BROOKLYN,11203,40.656162,-73.93087,"(40.656162, -73.93087)",,,702 UTICA AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450863,Sedan,E-Bike,,, +08/26/2021,19:10,MANHATTAN,10065,40.768024,-73.97029,"(40.768024, -73.97029)",EAST 65 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4451051,Sedan,Bike,,, +08/25/2021,18:04,QUEENS,11101,40.740276,-73.92782,"(40.740276, -73.92782)",48 AVENUE,38 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450502,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,22:15,QUEENS,11361,40.759727,-73.77171,"(40.759727, -73.77171)",,,211-11 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4450899,Station Wagon/Sport Utility Vehicle,Van,,, +08/25/2021,0:00,QUEENS,11368,40.755337,-73.843254,"(40.755337, -73.843254)",126 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450546,Sedan,,,, +08/26/2021,13:15,BROOKLYN,11209,40.613194,-74.03102,"(40.613194, -74.03102)",,,444 MARINE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450816,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,10:26,,,40.82146,-73.94461,"(40.82146, -73.94461)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450430,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,18:25,BRONX,10458,40.85929,-73.885185,"(40.85929, -73.885185)",,,570 EAST 191 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451078,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,17:05,BROOKLYN,11215,40.670254,-73.992035,"(40.670254, -73.992035)",11 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4451796,Van,Bike,,, +08/27/2021,13:30,,,40.72298,-74.01161,"(40.72298, -74.01161)",WEST STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,20:10,BRONX,10458,40.860195,-73.89772,"(40.860195, -73.89772)",EAST 187 STREET,RYER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450649,Sedan,,,, +08/25/2021,10:15,STATEN ISLAND,10301,40.623055,-74.11327,"(40.623055, -74.11327)",CLOVE ROAD,BROADWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451447,Sedan,Sedan,,, +08/15/2021,19:41,MANHATTAN,10002,40.716682,-73.98244,"(40.716682, -73.98244)",WILLETT STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451501,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,12:00,BROOKLYN,11236,40.63369,-73.91611,"(40.63369, -73.91611)",,,6565 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4450689,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,23:05,BROOKLYN,11226,40.650208,-73.959984,"(40.650208, -73.959984)",CHURCH AVENUE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451197,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,11:00,BRONX,10462,40.833622,-73.849525,"(40.833622, -73.849525)",,,2265 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,23:00,QUEENS,11370,40.764484,-73.89077,"(40.764484, -73.89077)",78 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450906,Sedan,,,, +08/26/2021,1:30,,,40.640224,-74.13667,"(40.640224, -74.13667)",SHARPE AVENUE,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450979,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,0:32,BRONX,10452,40.83955,-73.91595,"(40.83955, -73.91595)",WALTON AVENUE,EAST 170 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451233,E-Bike,,,, +08/26/2021,7:57,BRONX,10462,40.83029,-73.850655,"(40.83029, -73.850655)",CASTLE HILL AVENUE,CROSS BRONX EXPRESSWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4450739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle +08/27/2021,20:00,,,40.664513,-73.9538,"(40.664513, -73.9538)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451259,Sedan,,,, +08/26/2021,13:37,,,40.80417,-73.966705,"(40.80417, -73.966705)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4450803,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +08/27/2021,12:15,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451088,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/27/2021,13:30,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",SOUTHERN BOULEVARD,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451607,Pick-up Truck,Motorcycle,,, +08/25/2021,21:30,,,40.76095,-73.832756,"(40.76095, -73.832756)",37 AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450578,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,10:50,,,40.707447,-73.8251,"(40.707447, -73.8251)",127 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4450782,Sedan,Sedan,,, +08/26/2021,0:05,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4450596,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/04/2021,10:19,MANHATTAN,10002,40.719337,-73.985916,"(40.719337, -73.985916)",RIVINGTON STREET,SUFFOLK STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4474213,Dump,Moped,,, +08/11/2021,18:00,MANHATTAN,10024,40.78202,-73.97173,"(40.78202, -73.97173)",CENTRAL PARK WEST,WEST 81 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451117,Sedan,Pick-up Truck,,, +08/20/2021,6:00,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4451846,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/26/2021,17:08,QUEENS,11435,40.688465,-73.80387,"(40.688465, -73.80387)",143 STREET,109 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450942,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/27/2021,7:55,MANHATTAN,10033,40.84691,-73.93824,"(40.84691, -73.93824)",BROADWAY,WEST 176 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Oversized Vehicle,,,,4451177,Taxi,Bus,,, +08/23/2021,11:55,BROOKLYN,11236,40.633186,-73.89945,"(40.633186, -73.89945)",AVENUE M,EAST 89 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451545,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,18:40,BROOKLYN,11217,40.687176,-73.98545,"(40.687176, -73.98545)",,,389 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4450552,Sedan,Sedan,,, +08/27/2021,4:35,QUEENS,11423,40.713398,-73.7704,"(40.713398, -73.7704)",190 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4450951,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,19:00,QUEENS,11368,40.746162,-73.86617,"(40.746162, -73.86617)",,,97-24 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451570,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,11:47,BRONX,10468,40.87022,-73.89964,"(40.87022, -73.89964)",,,2751 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451715,Sedan,,,, +08/27/2021,13:11,,,40.81108,-73.9273,"(40.81108, -73.9273)",EAST 138 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,23:45,QUEENS,11354,40.766357,-73.828766,"(40.766357, -73.828766)",,,139-12 34 ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,3:05,BROOKLYN,11218,40.639854,-73.983505,"(40.639854, -73.983505)",14 AVENUE,38 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451460,Station Wagon/Sport Utility Vehicle,Bike,,, +08/25/2021,18:05,BRONX,10460,40.835426,-73.89515,"(40.835426, -73.89515)",CLAREMONT PARKWAY,CROTONA PARK EAST,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450629,Moped,Sedan,,, +08/26/2021,17:57,,,40.68468,-74.001335,"(40.68468, -74.001335)",HICKS STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451000,Station Wagon/Sport Utility Vehicle,COM,,, +08/25/2021,20:49,,,40.677025,-73.95268,"(40.677025, -73.95268)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451318,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,14:20,BROOKLYN,11214,40.598648,-74.004456,"(40.598648, -74.004456)",20 AVENUE,20 LANE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4450843,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,10:32,,,40.663605,-73.934395,"(40.663605, -73.934395)",EMPIRE BOULEVARD,,,1,0,1,0,0,0,0,0,Glare,,,,,4450515,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,14:49,,,40.82111,-73.92749,"(40.82111, -73.92749)",WALTON AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451244,Sedan,Sedan,,, +08/20/2021,17:00,QUEENS,11694,40.58085,-73.8378,"(40.58085, -73.8378)",,,242 BEACH 116 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451667,Sedan,,,, +08/23/2021,20:40,BROOKLYN,11203,40.655567,-73.93952,"(40.655567, -73.93952)",,,756 ALBANY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451323,Sedan,,,, +08/26/2021,14:20,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4451402,Sedan,,,, +08/26/2021,8:20,QUEENS,11365,40.7356,-73.779686,"(40.7356, -73.779686)",,,192-45B 71 CRESCENT,0,0,0,0,0,0,0,0,Unspecified,,,,,4450756,Sedan,,,, +08/26/2021,19:07,QUEENS,11694,40.582745,-73.835075,"(40.582745, -73.835075)",,,112-01 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450872,Sedan,Sedan,,, +08/23/2021,5:52,,,40.892223,-73.88464,"(40.892223, -73.88464)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451656,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,9:50,BROOKLYN,11208,40.67134,-73.88195,"(40.67134, -73.88195)",SUTTER AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451056,Van,Sedan,,, +08/25/2021,14:10,BROOKLYN,11235,40.585556,-73.94881,"(40.585556, -73.94881)",,,3100 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450610,Sedan,Sedan,,, +08/19/2021,19:34,QUEENS,11377,40.76073,-73.90194,"(40.76073, -73.90194)",BROOKLYN QUEENS EXPRESSWAY,27 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4451471,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/26/2021,15:45,,,40.77039,-73.91771,"(40.77039, -73.91771)",31 STREET,HOYT AVENUE SOUTH,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4450999,Sedan,,,, +08/25/2021,17:11,BROOKLYN,11223,40.604935,-73.96822,"(40.604935, -73.96822)",EAST 5 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/14/2021,23:30,,,40.668358,-73.95592,"(40.668358, -73.95592)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4451282,Bike,E-Bike,,, +08/26/2021,12:59,QUEENS,11377,40.756996,-73.90784,"(40.756996, -73.90784)",51 STREET,31 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451014,Sedan,Moped,,, +08/25/2021,16:40,BROOKLYN,11201,40.689697,-73.98296,"(40.689697, -73.98296)",FULTON STREET,BOND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450591,Box Truck,Sedan,,, +11/05/2021,18:35,BRONX,10457,40.84893,-73.890465,"(40.84893, -73.890465)",EAST 180 STREET,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475107,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,17:18,,,40.738476,-73.79729,"(40.738476, -73.79729)",172 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451031,Sedan,,,, +08/25/2021,3:38,,,40.687008,-73.82219,"(40.687008, -73.82219)",121 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4450305,Sedan,Sedan,,, +08/26/2021,13:17,BROOKLYN,11228,40.615627,-74.012314,"(40.615627, -74.012314)",,,8320 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,12:39,BROOKLYN,11205,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451632,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,8:20,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4451110,Sedan,Bus,,, +08/27/2021,0:00,QUEENS,11422,40.670223,-73.72855,"(40.670223, -73.72855)",HOOK CREEK BOULEVARD,135 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451130,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/26/2021,3:58,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450894,Sedan,Sedan,,, +08/25/2021,16:59,QUEENS,11429,40.705185,-73.75026,"(40.705185, -73.75026)",,,111-17 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,8:20,,,40.738754,-74.0055,"(40.738754, -74.0055)",HUDSON STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4450731,Sedan,,,, +08/25/2021,21:34,QUEENS,11385,40.695656,-73.90417,"(40.695656, -73.90417)",,,1015 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450888,Sedan,,,, +08/25/2021,10:05,BROOKLYN,11203,40.651733,-73.93039,"(40.651733, -73.93039)",CHURCH AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450871,E-Bike,,,, +08/26/2021,10:00,BRONX,10475,40.879948,-73.82339,"(40.879948, -73.82339)",COOP CITY BOULEVARD,PEARTREE AVENUE,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4450775,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,14:34,,,40.719864,-73.94486,"(40.719864, -73.94486)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451055,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,7:45,,,40.608433,-74.15544,"(40.608433, -74.15544)",VICTORY BOULEVARD,CHRISTOPHER LANE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Passing Too Closely,,,,4450336,Bus,Sedan,,, +08/27/2021,14:00,QUEENS,11385,40.713814,-73.920845,"(40.713814, -73.920845)",METROPOLITAN AVENUE,WOODWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451785,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,13:39,,,40.86203,-73.80215,"(40.86203, -73.80215)",CITY ISLAND ROAD,PARK DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450795,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/25/2021,15:00,,,40.66319,-73.93727,"(40.66319, -73.93727)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450513,Sedan,Sedan,,, +08/27/2021,0:41,MANHATTAN,10032,40.84124,-73.93967,"(40.84124, -73.93967)",,,3985 BROADWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4450983,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,17:42,BROOKLYN,11222,40.728287,-73.947395,"(40.728287, -73.947395)",,,96 JEWEL STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450592,Sedan,,,, +08/27/2021,16:00,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",PRINCE STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4451115,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:00,MANHATTAN,10037,40.815327,-73.93576,"(40.815327, -73.93576)",5 AVENUE,EAST 139 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451869,Sedan,Sedan,,, +08/26/2021,19:14,BRONX,10467,40.87686,-73.87974,"(40.87686, -73.87974)",VANCORTLANDT AVENUE EAST,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451042,Sedan,Sedan,,, +08/19/2021,15:40,BROOKLYN,11216,40.672527,-73.95026,"(40.672527, -73.95026)",NOSTRAND AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451309,Sedan,Bus,,, +08/25/2021,8:15,,,40.748356,-74.00369,"(40.748356, -74.00369)",10 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450829,Sedan,,,, +08/23/2021,13:42,,,40.78324,-73.97455,"(40.78324, -73.97455)",WEST 81 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4451132,Sedan,Sedan,Bus,, +02/27/2021,23:34,BROOKLYN,11225,40.660378,-73.95775,"(40.660378, -73.95775)",,,110 MAPLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/26/2021,12:30,STATEN ISLAND,10305,40.598618,-74.081154,"(40.598618, -74.081154)",,,1151 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451149,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,12:50,BRONX,10460,40.841087,-73.86449,"(40.841087, -73.86449)",EAST TREMONT AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451510,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,23:00,QUEENS,11412,40.690468,-73.761345,"(40.690468, -73.761345)",189 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451819,Sedan,Motorbike,,, +08/25/2021,22:10,,,40.60719,-74.16243,"(40.60719, -74.16243)",VICTORY BOULEVARD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450553,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,19:10,BRONX,10457,40.844585,-73.904854,"(40.844585, -73.904854)",EAST 174 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450721,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/27/2021,11:26,BROOKLYN,11204,40.631332,-73.98301,"(40.631332, -73.98301)",,,1656 47 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451455,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,18:00,,,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451550,Sedan,Firetruck,,, +08/27/2021,2:15,,,40.689133,-73.82086,"(40.689133, -73.82086)",103 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450984,Sedan,,,, +08/26/2021,10:40,,,40.749348,-73.82585,"(40.749348, -73.82585)",MAIN STREET,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4450754,Sedan,,,, +08/26/2021,0:05,MANHATTAN,10007,40.716534,-74.00668,"(40.716534, -74.00668)",CHURCH STREET,THOMAS STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450968,Bike,,,, +08/27/2021,15:20,QUEENS,11420,40.678795,-73.80632,"(40.678795, -73.80632)",116 AVENUE,134 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451137,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,0:49,,,40.738495,-73.90274,"(40.738495, -73.90274)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4450574,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,18:00,,,40.87482,-73.877,"(40.87482, -73.877)",PERRY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451363,Sedan,Sedan,,, +08/27/2021,17:30,BROOKLYN,11204,40.621567,-73.9942,"(40.621567, -73.9942)",,,1621 65 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4451529,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,11:00,,,40.81183,-73.96112,"(40.81183, -73.96112)",WEST 122 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450920,Taxi,Taxi,,, +08/27/2021,23:46,,,40.7422,-73.840965,"(40.7422, -73.840965)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4451757,Sedan,Sedan,Sedan,Sedan, +08/19/2021,4:00,BRONX,10466,40.887375,-73.856476,"(40.887375, -73.856476)",,,815 EAST 226 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451696,Sedan,,,, +08/27/2021,20:30,BROOKLYN,11207,40.65906,-73.88459,"(40.65906, -73.88459)",STANLEY AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451419,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,1:00,QUEENS,11420,40.6785,-73.821365,"(40.6785, -73.821365)",LINDEN BOULEVARD,118 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4451580,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,16:50,QUEENS,11102,40.768436,-73.91996,"(40.768436, -73.91996)",31 STREET,28 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451475,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,17:19,MANHATTAN,10024,40.790356,-73.9768,"(40.790356, -73.9768)",,,575 WEST END AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450881,Sedan,,,, +08/25/2021,7:49,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450815,Sedan,Sedan,,, +08/22/2021,18:00,,,40.689228,-73.957,"(40.689228, -73.957)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451650,Sedan,,,, +08/25/2021,14:40,QUEENS,11435,40.696644,-73.80741,"(40.696644, -73.80741)",97 AVENUE,LIVERPOOL STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4450944,Sedan,Sedan,Sedan,, +08/25/2021,6:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450429,Sedan,,,, +08/25/2021,12:55,BRONX,10473,40.82657,-73.84981,"(40.82657, -73.84981)",,,947 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450462,Station Wagon/Sport Utility Vehicle,Dump,,, +08/26/2021,19:45,MANHATTAN,10017,40.75519,-73.97122,"(40.75519, -73.97122)",EAST 49 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,,,,4451204,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,11:00,,,,,,164 STREET,GRAND CENTRAL PARKWAY,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/20/2021,2:30,MANHATTAN,10026,40.80519,-73.95724,"(40.80519, -73.95724)",,,360 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451569,Sedan,Sedan,,, +08/27/2021,16:36,BROOKLYN,11215,40.66803,-73.983955,"(40.66803, -73.983955)",6 AVENUE,9 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451164,Sedan,,,, +08/16/2021,2:33,BROOKLYN,11222,40.7327,-73.954666,"(40.7327, -73.954666)",,,984 MANHATTAN AVENUE,1,0,0,0,1,0,0,0,Alcohol Involvement,,,,,4450995,Bike,,,, +08/26/2021,2:45,,,,,,,,329 nurge avenue,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4450876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,9:40,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4450530,Sedan,Tractor Truck Diesel,,, +08/25/2021,20:03,BRONX,10462,40.84366,-73.86613,"(40.84366, -73.86613)",,,679 VANNEST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451027,Motorcycle,E-Scooter,,, +08/26/2021,8:25,,,40.60583,-73.75779,"(40.60583, -73.75779)",MOTT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450710,Sedan,Bike,,, +08/27/2021,8:30,MANHATTAN,10128,40.78553,-73.95226,"(40.78553, -73.95226)",,,118 EAST 95 STREET,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4451010,Taxi,,,, +08/24/2021,21:05,BROOKLYN,11203,40.648182,-73.93001,"(40.648182, -73.93001)",TILDEN AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451324,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +08/25/2021,5:43,,,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451240,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,8:59,,,40.722343,-73.77717,"(40.722343, -73.77717)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451032,Sedan,Sedan,,, +08/26/2021,18:00,,,40.72735,-73.72408,"(40.72735, -73.72408)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450835,Sedan,Sedan,,, +08/21/2021,15:30,BRONX,10472,40.829533,-73.852264,"(40.829533, -73.852264)",,,2140 WATSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451499,Sedan,Sedan,,, +08/25/2021,10:04,,,40.70753,-73.96443,"(40.70753, -73.96443)",DIVISION AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450395,Sedan,Bike,,, +08/25/2021,15:20,BROOKLYN,11204,40.61368,-73.98882,"(40.61368, -73.98882)",20 AVENUE,70 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450616,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/25/2021,12:21,BRONX,10452,40.846096,-73.91919,"(40.846096, -73.91919)",SHAKESPEARE AVENUE,FEATHERBED LANE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4450651,Sedan,Sedan,,, +08/23/2021,15:45,BROOKLYN,11221,,,,,,772 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451558,Sedan,,,, +08/27/2021,2:56,BROOKLYN,11207,40.65892,-73.889824,"(40.65892, -73.889824)",LINDEN BOULEVARD,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451394,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,8:30,BROOKLYN,11210,40.636826,-73.95099,"(40.636826, -73.95099)",,,1355 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450441,Motorcycle,,,, +08/25/2021,17:50,,,40.665073,-73.996574,"(40.665073, -73.996574)",19 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450562,Sedan,,,, +08/25/2021,15:00,QUEENS,11385,40.7068,-73.906006,"(40.7068, -73.906006)",LINDEN STREET,FAIRVIEW AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451779,Pick-up Truck,,,, +08/27/2021,6:45,BRONX,10454,40.808872,-73.91615,"(40.808872, -73.91615)",,,303 SAINT ANNS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451070,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,11:05,MANHATTAN,10012,40.72488,-74.002625,"(40.72488, -74.002625)",SPRING STREET,THOMPSON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4450767,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/16/2021,23:45,,,40.694363,-73.958,"(40.694363, -73.958)",FRANKLIN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451630,Sedan,Moped,,, +08/27/2021,16:28,,,40.84453,-73.901764,"(40.84453, -73.901764)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451169,Pick-up Truck,Sedan,,, +08/27/2021,11:25,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451087,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/25/2021,21:30,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",EAST 42 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450802,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,18:45,MANHATTAN,10032,40.839176,-73.94114,"(40.839176, -73.94114)",WEST 165 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4450716,Sedan,Station Wagon/Sport Utility Vehicle,E-Bike,, +08/26/2021,16:50,BROOKLYN,11222,40.73046,-73.95149,"(40.73046, -73.95149)",MC GUINNESS BOULEVARD,GREENPOINT AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450960,Station Wagon/Sport Utility Vehicle,Bike,,, +08/25/2021,16:52,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4450523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,1:20,MANHATTAN,10018,40.75228,-73.9897,"(40.75228, -73.9897)",WEST 36 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4474780,Sedan,Moped,,, +08/18/2021,18:48,,,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4451671,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,14:10,,,40.691624,-73.942665,"(40.691624, -73.942665)",KOSCIUSZKO STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4451636,Bike,,,, +08/26/2021,10:00,BRONX,10472,40.832596,-73.87724,"(40.832596, -73.87724)",,,1324 MANOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451038,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,16:07,,,,,,jamaica ave,Jacky robinson,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450568,Sedan,Sedan,,, +08/26/2021,23:35,QUEENS,11369,40.769817,-73.87603,"(40.769817, -73.87603)",,,22-10 94 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450914,Taxi,,,, +08/27/2021,10:20,BROOKLYN,11215,40.66933,-73.981346,"(40.66933, -73.981346)",,,433 6 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4451291,Ambulance,Sedan,,, +08/26/2021,22:31,BROOKLYN,11229,40.61232,-73.94411,"(40.61232, -73.94411)",,,2957 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451187,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,0:51,,,40.77543,-73.98398,"(40.77543, -73.98398)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451125,Station Wagon/Sport Utility Vehicle,Bike,,, +08/25/2021,21:45,,,40.71574,-73.83673,"(40.71574, -73.83673)",76 ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451589,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,19:06,,,40.89466,-73.86137,"(40.89466, -73.86137)",BRONX BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451687,Sedan,,,, +08/27/2021,9:00,BROOKLYN,11212,40.666073,-73.90664,"(40.666073, -73.90664)",,,334 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451064,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,19:00,QUEENS,11435,40.70988,-73.81022,"(40.70988, -73.81022)",,,85-40 148 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451096,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,11:00,BROOKLYN,11224,40.580036,-74.006256,"(40.580036, -74.006256)",POPLAR AVENUE,SEAGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451451,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,12:45,BROOKLYN,11238,40.676785,-73.969185,"(40.676785, -73.969185)",PARK PLACE,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4451313,E-Scooter,,,, +08/27/2021,17:38,MANHATTAN,10007,40.716465,-74.013084,"(40.716465, -74.013084)",WEST STREET,WARREN STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inattention/Distraction,,,,4451154,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,19:41,MANHATTAN,10027,40.81151,-73.94649,"(40.81151, -73.94649)",WEST 129 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451353,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,9:49,MANHATTAN,10038,40.7103,-74.00106,"(40.7103, -74.00106)",,,375 PEARL STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,10:42,MANHATTAN,10002,40.715355,-73.99341,"(40.715355, -73.99341)",CANAL STREET,ELDRIDGE STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451620,Bus,Bike,,, +08/26/2021,18:52,MANHATTAN,10017,40.750687,-73.97028,"(40.750687, -73.97028)",,,338 EAST 44 STREET,1,0,0,0,1,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4450909,Bike,Pick-up Truck,,, +08/26/2021,15:50,,,40.618988,-74.0408,"(40.618988, -74.0408)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4450849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,7:45,,,,,,TOTTEN ROAD,,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4450759,Bike,,,, +08/27/2021,15:40,QUEENS,11375,40.71155,-73.85793,"(40.71155, -73.85793)",,,91-10 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451122,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,17:49,,,40.676964,-73.89895,"(40.676964, -73.89895)",FULTON STREET,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451415,Sedan,,,, +08/27/2021,21:33,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4451181,Sedan,Sedan,,, +08/26/2021,14:30,BROOKLYN,11203,40.64028,-73.94363,"(40.64028, -73.94363)",NEWKIRK AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4451329,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/25/2021,3:38,BROOKLYN,11216,40.68086,-73.95441,"(40.68086, -73.95441)",FULTON STREET,SPENCER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451664,Taxi,Sedan,,, +08/26/2021,23:00,QUEENS,11427,40.728264,-73.75541,"(40.728264, -73.75541)",86 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4450900,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,17:15,BROOKLYN,11232,40.656307,-73.99868,"(40.656307, -73.99868)",5 AVENUE,30 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451263,Station Wagon/Sport Utility Vehicle,Bike,,, +08/26/2021,1:19,,,40.678772,-73.72967,"(40.678772, -73.72967)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450641,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,7:07,BRONX,10456,40.830986,-73.91139,"(40.830986, -73.91139)",CLAY AVENUE,EAST 167 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4451225,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,12:14,,,40.6952,-73.92844,"(40.6952, -73.92844)",DE KALB AVENUE,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4451383,Station Wagon/Sport Utility Vehicle,Bike,,, +08/25/2021,15:26,,,40.769436,-73.943954,"(40.769436, -73.943954)",,,888 MAIN STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451006,Sedan,Bike,,, +08/25/2021,7:30,,,40.826275,-73.85971,"(40.826275, -73.85971)",WHITE PLAINS ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450346,Sedan,Motorcycle,,, +08/25/2021,19:29,,,40.699165,-73.914925,"(40.699165, -73.914925)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4450705,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/26/2021,14:06,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4450991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/26/2021,10:30,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4450955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,19:35,BRONX,10470,40.887737,-73.86755,"(40.887737, -73.86755)",,,3900 WEBSTER AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4450656,Sedan,E-Bike,,, +08/27/2021,14:35,BROOKLYN,11204,40.630745,-73.97717,"(40.630745, -73.97717)",18 AVENUE,MC DONALD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451199,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,6:00,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,,,,4450621,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,18:30,,,,,,WEST 246 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451659,Station Wagon/Sport Utility Vehicle,PK,,, +08/25/2021,13:00,,,40.71186,-73.97807,"(40.71186, -73.97807)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451220,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,6:25,BROOKLYN,11233,40.679073,-73.92527,"(40.679073, -73.92527)",FULTON STREET,PATCHEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451490,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,21:00,BRONX,10460,40.834667,-73.88936,"(40.834667, -73.88936)",,,1564 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4451023,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,8:15,MANHATTAN,10018,40.75767,-73.99483,"(40.75767, -73.99483)",DYER AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4451102,Sedan,Garbage or Refuse,,, +08/20/2021,0:45,BROOKLYN,11238,40.677525,-73.963715,"(40.677525, -73.963715)",SAINT MARKS AVENUE,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451642,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,23:30,,,40.721226,-73.8267,"(40.721226, -73.8267)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4450583,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,17:50,,,40.74568,-73.97213,"(40.74568, -73.97213)",1 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450913,E-Scooter,,,, +08/24/2021,15:09,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451074,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,13:34,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,EAST MOUNT EDEN AVENUE,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4450811,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,23:33,BROOKLYN,11212,40.66281,-73.90725,"(40.66281, -73.90725)",,,265 LIVONIA AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4451680,Taxi,,,, +08/25/2021,16:20,,,40.699654,-73.74227,"(40.699654, -73.74227)",SPRINGFIELD BOULEVARD,115 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451091,Sedan,Sedan,,, +08/25/2021,13:45,,,40.77008,-73.94784,"(40.77008, -73.94784)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4450601,Sedan,Sedan,Taxi,, +08/26/2021,10:52,MANHATTAN,10029,40.785973,-73.94328,"(40.785973, -73.94328)",,,326 EAST 100 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/26/2021,9:30,,,40.68772,-73.79988,"(40.68772, -73.79988)",INWOOD STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450930,Bike,,,, +08/14/2021,0:00,,,40.670586,-73.76509,"(40.670586, -73.76509)",FARMERS BOULEVARD,142 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451828,Sedan,,,, +08/25/2021,10:30,MANHATTAN,10027,40.817047,-73.96078,"(40.817047, -73.96078)",,,560 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4450544,Sedan,Sedan,Sedan,, +08/27/2021,20:30,QUEENS,11358,40.763645,-73.790276,"(40.763645, -73.790276)",192 STREET,CROCHERON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451157,Sedan,Sedan,,, +08/27/2021,7:50,BROOKLYN,11234,40.615894,-73.92947,"(40.615894, -73.92947)",FLATBUSH AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4451444,Sedan,Sedan,,, +08/25/2021,1:24,STATEN ISLAND,10310,40.628708,-74.11902,"(40.628708, -74.11902)",FOREST AVENUE,ELIZABETH STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450712,Sedan,Sedan,,, +08/27/2021,15:55,,,40.759686,-73.77183,"(40.759686, -73.77183)",NORTHERN BOULEVARD,211 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451140,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,15:45,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451297,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,20:27,BROOKLYN,11238,40.688553,-73.962845,"(40.688553, -73.962845)",LAFAYETTE AVENUE,GRAND AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451706,Dump,Bike,,, +08/25/2021,17:50,BROOKLYN,11238,40.679703,-73.961685,"(40.679703, -73.961685)",PACIFIC STREET,GRAND AVENUE,,3,0,3,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451317,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,12:01,QUEENS,11356,40.784103,-73.84854,"(40.784103, -73.84854)",119 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451079,Sedan,Pick-up Truck,,, +08/27/2021,13:53,QUEENS,11365,40.741352,-73.792145,"(40.741352, -73.792145)",,,172-00 BOOTH MEMORIAL AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451254,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,23:05,MANHATTAN,10023,40.76974,-73.982124,"(40.76974, -73.982124)",BROADWAY,WEST 61 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451129,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,21:00,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4451247,Sedan,Sedan,Sedan,, +08/27/2021,8:20,QUEENS,11422,40.66528,-73.73562,"(40.66528, -73.73562)",SOUTH CONDUIT AVENUE,243 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451092,Tractor Truck Diesel,Sedan,,, +08/26/2021,10:10,BROOKLYN,11210,40.634865,-73.94788,"(40.634865, -73.94788)",,,2080 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451196,UTIL,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,20:34,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451310,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/27/2021,16:02,BROOKLYN,11212,,,,Pitkin Ave,Thomas S Boyland St,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451150,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:27,,,40.838875,-73.90266,"(40.838875, -73.90266)",CLAREMONT PARKWAY,BOSTON ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450740,Sedan,Sedan,,, +08/27/2021,2:37,,,,,,8 AVENUE,HARLEM RIVER DRIVE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4451346,Ambulance,Sedan,,, +08/25/2021,12:50,BROOKLYN,11208,40.676937,-73.8704,"(40.676937, -73.8704)",GLENMORE AVENUE,CRESCENT STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4450567,Station Wagon/Sport Utility Vehicle,Bike,,, +08/13/2021,18:11,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451232,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,20:45,QUEENS,11421,40.686207,-73.8644,"(40.686207, -73.8644)",76 STREET,91 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4451613,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,15:24,,,40.710377,-73.81944,"(40.710377, -73.81944)",MAIN STREET,MANTON STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4450996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,16:10,BROOKLYN,11232,,,,3 AVENUE,24 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4451260,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/30/2022,14:12,,,40.63559,-74.16865,"(40.63559, -74.16865)",,,230 POND WAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498691,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2020,15:20,,,40.786938,-73.979294,"(40.786938, -73.979294)",WEST 83 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451118,Station Wagon/Sport Utility Vehicle,Bike,,, +08/27/2021,16:40,,,40.65452,-73.882225,"(40.65452, -73.882225)",VAN SICLEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451411,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,11:00,QUEENS,11432,40.712193,-73.80935,"(40.712193, -73.80935)",,,150-07 84 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451269,Sedan,,,, +08/25/2021,7:44,BROOKLYN,11233,40.669918,-73.91889,"(40.669918, -73.91889)",SAINT JOHNS PLACE,EASTERN PARKWAY,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4451060,Sedan,E-Scooter,,, +08/25/2021,17:00,QUEENS,11434,40.68673,-73.77449,"(40.68673, -73.77449)",MERRICK BOULEVARD,118 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450667,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,19:00,BRONX,10467,40.858826,-73.86858,"(40.858826, -73.86858)",OLINVILLE AVENUE,THWAITES PLACE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451758,E-Scooter,Sedan,,, +08/27/2021,17:31,BROOKLYN,11207,40.654488,-73.89521,"(40.654488, -73.89521)",STANLEY AVENUE,WILLIAMS AVENUE,,0,1,0,0,0,0,0,1,Failure to Yield Right-of-Way,Unspecified,,,,4451379,Sedan,Motorcycle,,, +08/25/2021,10:07,BROOKLYN,11228,40.619576,-74.00461,"(40.619576, -74.00461)",14 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450371,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,7:50,BROOKLYN,11212,40.65418,-73.91072,"(40.65418, -73.91072)",LINDEN BOULEVARD,EAST 98 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4450606,Sedan,Sedan,,, +08/27/2021,16:06,BROOKLYN,11223,40.601593,-73.97437,"(40.601593, -73.97437)",AVENUE S,VAN SICKLEN STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4451172,Sedan,,,, +08/25/2021,12:00,QUEENS,11101,40.75172,-73.936134,"(40.75172, -73.936134)",40 ROAD,29 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450466,Sedan,Sedan,,, +08/27/2021,12:53,QUEENS,11103,40.756344,-73.91342,"(40.756344, -73.91342)",47 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451476,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,15:10,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",2 AVENUE,EAST 116 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450973,E-Scooter,Sedan,,, +08/13/2021,18:16,BROOKLYN,11212,40.661015,-73.90853,"(40.661015, -73.90853)",ROCKAWAY AVENUE,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451106,Sedan,,,, +08/26/2021,1:03,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4451213,Taxi,Taxi,,, +08/25/2021,21:38,BROOKLYN,11229,40.61061,-73.95671,"(40.61061, -73.95671)",AVENUE P,EAST 17 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450612,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,17:00,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4450535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,15:50,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450605,Sedan,,,, +08/26/2021,8:30,,,40.68461,-73.79987,"(40.68461, -73.79987)",144 STREET,,,3,0,0,0,0,0,3,0,Turning Improperly,View Obstructed/Limited,,,,4450936,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,8:30,QUEENS,11415,40.713318,-73.82859,"(40.713318, -73.82859)",,,120-55 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4450781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,20:40,QUEENS,11354,40.760124,-73.83041,"(40.760124, -73.83041)",,,39-09 MAIN STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4450577,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,13:32,QUEENS,11415,40.709248,-73.82692,"(40.709248, -73.82692)",KEW GARDEN ROAD,84 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450789,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,16:55,BRONX,10462,40.836884,-73.859535,"(40.836884, -73.859535)",,,1480 PARKCHESTER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451507,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,6:50,,,40.76624,-73.960236,"(40.76624, -73.960236)",2 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450306,Sedan,Motorcycle,,, +08/27/2021,9:20,BROOKLYN,11229,40.599716,-73.948296,"(40.599716, -73.948296)",,,2314 AVENUE U,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451851,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,14:12,BROOKLYN,11237,40.707783,-73.932076,"(40.707783, -73.932076)",JOHNSON AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450821,Bus,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,9:53,BRONX,10452,40.83785,-73.92225,"(40.83785, -73.92225)",GRANT HIGHWAY,WEST 168 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451243,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,0:25,,,,,,MORRIS AVENUE,EAST 152 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450959,Sedan,,,, +08/27/2021,14:46,BROOKLYN,11206,40.703762,-73.94262,"(40.703762, -73.94262)",GRAHAM AVENUE,MOORE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4451544,Bike,Bike,,, +08/25/2021,22:30,MANHATTAN,10037,40.80822,-73.93673,"(40.80822, -73.93673)",PARK AVENUE,EAST 130 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450730,Taxi,Sedan,,, +08/26/2021,17:00,,,40.86272,-73.91165,"(40.86272, -73.91165)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,Other Vehicular,Other Vehicular,,,4451111,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/26/2021,0:00,,,,,,GRAND ARMY PLAZA,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4450892,Sedan,Bus,,, +08/26/2021,9:00,QUEENS,11379,40.713085,-73.87588,"(40.713085, -73.87588)",,,75-21 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unsafe Speed,,,,4451787,Moped,,,, +08/26/2021,16:20,STATEN ISLAND,10306,40.57103,-74.11247,"(40.57103, -74.11247)",CLAWSON STREET,CODDINGTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451144,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,0:00,QUEENS,11411,40.689415,-73.74008,"(40.689415, -73.74008)",223 STREET,120 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451277,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/27/2021,10:53,BROOKLYN,11230,40.627216,-73.97106,"(40.627216, -73.97106)",,,870 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451459,Ambulance,Sedan,,, +08/26/2021,20:03,BROOKLYN,11201,40.685448,-73.99134,"(40.685448, -73.99134)",WARREN STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451001,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,12:20,BROOKLYN,11217,40.680187,-73.981186,"(40.680187, -73.981186)",,,140 4 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451161,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,15:00,,,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451305,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,15:52,MANHATTAN,10024,40.782463,-73.97883,"(40.782463, -73.97883)",WEST 78 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4451133,Station Wagon/Sport Utility Vehicle,Moped,,, +08/24/2021,15:15,QUEENS,11368,40.757442,-73.86747,"(40.757442, -73.86747)",NORTHERN BOULEVARD,101 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451470,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,15:12,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4451512,Sedan,Sedan,Sedan,, +08/26/2021,11:23,BROOKLYN,11234,40.613117,-73.92631,"(40.613117, -73.92631)",UTICA AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451190,Sedan,Sedan,,, +08/10/2021,20:00,BROOKLYN,11213,40.665085,-73.92869,"(40.665085, -73.92869)",ROCHESTER AVENUE,CROWN STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4451284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/23/2021,13:05,,,40.702618,-73.9291,"(40.702618, -73.9291)",,,MELROSE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451376,Sedan,Sedan,,, +08/27/2021,8:45,MANHATTAN,10034,40.868935,-73.92419,"(40.868935, -73.92419)",,,139 PAYSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451685,Sedan,,,, +08/27/2021,20:37,BROOKLYN,11222,40.7242,-73.93765,"(40.7242, -73.93765)",MEEKER AVENUE,APOLLO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451820,Sedan,,,, +08/26/2021,22:30,BROOKLYN,11234,40.6277,-73.92102,"(40.6277, -73.92102)",,,1033 EAST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,20:15,QUEENS,11368,,,,,,108-64 50 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4450877,Sedan,Sedan,,, +08/21/2021,19:10,QUEENS,11105,40.777477,-73.91731,"(40.777477, -73.91731)",23 AVENUE,24 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451015,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,13:41,BROOKLYN,11207,40.668816,-73.89895,"(40.668816, -73.89895)",SUTTER AVENUE,WILLIAMS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451430,Sedan,Tractor Truck Diesel,,, +08/27/2021,18:25,,,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4451228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,8:15,BROOKLYN,11235,40.582275,-73.96113,"(40.582275, -73.96113)",,,2807 BRIGHTON 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451028,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:25,MANHATTAN,10023,40.76974,-73.982124,"(40.76974, -73.982124)",BROADWAY,WEST 61 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451116,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/26/2021,11:42,,,40.867733,-73.88285,"(40.867733, -73.88285)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4451033,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,23:30,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4451578,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,21:34,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450652,Sedan,Bus,,, +08/25/2021,10:01,,,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450439,Pick-up Truck,Sedan,,, +08/25/2021,10:40,QUEENS,11420,40.67851,-73.81435,"(40.67851, -73.81435)",125 STREET,115 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450442,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,22:05,BROOKLYN,11234,40.614784,-73.91315,"(40.614784, -73.91315)",,,2135 MILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450630,Sedan,,,, +08/25/2021,15:15,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4450819,Sedan,Sedan,Sedan,, +08/25/2021,12:00,BROOKLYN,11236,40.63369,-73.91611,"(40.63369, -73.91611)",,,6565 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4450478,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,17:00,BROOKLYN,11205,40.69299,-73.95583,"(40.69299, -73.95583)",BEDFORD AVENUE,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4451641,Sedan,Bus,,, +08/25/2021,12:37,,,40.72662,-73.757324,"(40.72662, -73.757324)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,0:00,BROOKLYN,11207,40.668083,-73.899704,"(40.668083, -73.899704)",,,285 HINSDALE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451418,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,15:00,,,40.894093,-73.86266,"(40.894093, -73.86266)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450842,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,16:05,QUEENS,11355,40.75425,-73.81354,"(40.75425, -73.81354)",HOLLY AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450522,Sedan,,,, +08/24/2021,16:56,,,40.637363,-73.87927,"(40.637363, -73.87927)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4451176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/25/2021,10:15,BRONX,10454,40.80411,-73.91108,"(40.80411, -73.91108)",,,759 EAST 138 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4450695,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,22:30,,,40.675907,-73.969505,"(40.675907, -73.969505)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451320,Convertible,,,, +08/26/2021,16:52,QUEENS,11368,40.73883,-73.86276,"(40.73883, -73.86276)",,,55-25 98 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4450875,Sedan,Sedan,Sedan,, +08/25/2021,9:15,MANHATTAN,10019,40.767918,-73.985725,"(40.767918, -73.985725)",WEST 57 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450385,Sedan,,,, +08/25/2021,16:10,MANHATTAN,10026,40.80379,-73.9539,"(40.80379, -73.9539)",,,238 WEST 116 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451047,Sedan,Sedan,,, +08/25/2021,17:51,MANHATTAN,10036,40.76553,-73.99768,"(40.76553, -73.99768)",12 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450631,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,14:50,,,40.607964,-74.162346,"(40.607964, -74.162346)",,,1650 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450978,Sedan,Sedan,,, +08/27/2021,5:15,BROOKLYN,11207,40.66292,-73.890625,"(40.66292, -73.890625)",NEW LOTS AVENUE,WYONA STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4451400,Bus,Sedan,,, +08/27/2021,2:45,,,40.740784,-73.815,"(40.740784, -73.815)",59 AVENUE,KISSENA BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451207,Bike,Sedan,,, +08/27/2021,7:00,BROOKLYN,11210,40.62689,-73.945885,"(40.62689, -73.945885)",AVENUE J,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451188,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,14:00,QUEENS,11417,40.673782,-73.84055,"(40.673782, -73.84055)",,,135-31 96 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451568,Sedan,E-Scooter,,, +08/27/2021,17:35,BROOKLYN,11201,40.69816,-73.97834,"(40.69816, -73.97834)",,,21 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451165,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,10:10,BRONX,10470,40.895687,-73.86338,"(40.895687, -73.86338)",,,4205 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,23:26,,,40.6785,-73.794876,"(40.6785, -73.794876)",119 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450678,Sedan,,,, +08/26/2021,12:30,BROOKLYN,11224,40.573475,-74.00445,"(40.573475, -74.00445)",ATLANTIC AVENUE,BEACH 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451026,Sedan,,,, +08/26/2021,9:00,BROOKLYN,11226,40.651814,-73.94761,"(40.651814, -73.94761)",,,341 MARTENSE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451325,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,6:42,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4450709,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,14:40,QUEENS,11102,40.76701,-73.92351,"(40.76701, -73.92351)",30 ROAD,29 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451005,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,0:15,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451399,Sedan,Sedan,,, +08/25/2021,9:00,BROOKLYN,11206,40.700108,-73.95383,"(40.700108, -73.95383)",WALLABOUT STREET,LEE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450396,Sedan,Box Truck,,, +08/25/2021,4:15,,,40.589108,-73.80101,"(40.589108, -73.80101)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450476,Sedan,,,, +08/26/2021,16:20,MANHATTAN,10034,40.86811,-73.91976,"(40.86811, -73.91976)",BROADWAY,ISHAM STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451621,Sedan,E-Scooter,,, +08/27/2021,22:30,,,40.772045,-73.87623,"(40.772045, -73.87623)",94 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451468,Sedan,Sedan,,, +08/25/2021,13:59,BROOKLYN,11212,40.658836,-73.92046,"(40.658836, -73.92046)",KINGS HIGHWAY,EAST 95 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4450850,Sedan,,,, +08/26/2021,12:38,BROOKLYN,11208,40.674232,-73.86177,"(40.674232, -73.86177)",SUTTER AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451416,Sedan,,,, +08/26/2021,11:30,BROOKLYN,11206,40.694637,-73.949066,"(40.694637, -73.949066)",MARCY AVENUE,VERNON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,7:45,BROOKLYN,11221,40.68789,-73.936035,"(40.68789, -73.936035)",LEWIS AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4451581,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,18:20,,,,,,FOSTER AVENUE,EAST 105 WALK,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451180,Sedan,Pick-up Truck,,, +08/27/2021,20:18,,,,,,MACOMBS DAM BRIDGE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4451356,Taxi,Bike,,, +08/27/2021,22:15,,,40.766144,-73.99724,"(40.766144, -73.99724)",12 AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451182,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,19:20,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",CLARENDON ROAD,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450870,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/25/2021,12:43,,,40.672604,-73.993385,"(40.672604, -73.993385)",9 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450505,Dump,Bike,,, +08/26/2021,17:10,BROOKLYN,11233,40.676525,-73.909065,"(40.676525, -73.909065)",,,29 MONACO PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450844,Sedan,Sedan,,, +08/25/2021,18:40,,,40.81423,-73.93444,"(40.81423, -73.93444)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450729,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,20:55,STATEN ISLAND,10306,40.570747,-74.1281,"(40.570747, -74.1281)",TYSENS LANE,DALTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451148,Sedan,PK,,, +08/26/2021,12:20,,,,,,FORT HAMILTON PARKWAY,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450814,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/25/2021,1:15,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450427,Sedan,,,, +08/25/2021,0:41,BRONX,10462,40.856316,-73.86664,"(40.856316, -73.86664)",,,2198 CRUGER AVENUE,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4451016,E-Scooter,,,, +08/26/2021,13:15,,,40.8327,-73.950226,"(40.8327, -73.950226)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Lost Consciousness,,,,,4451253,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,11:49,,,40.71576,-73.74655,"(40.71576, -73.74655)",212 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450533,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/20/2021,4:47,QUEENS,11355,40.754375,-73.8234,"(40.754375, -73.8234)",KISSENA BOULEVARD,BEECH AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4450994,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,9:20,,,40.71738,-73.99131,"(40.71738, -73.99131)",ALLEN STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4450364,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,12:05,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451048,Sedan,Bike,,, +08/26/2021,10:20,,,,,,SHORE PARKWAY,EAST 16 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451845,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,7:02,QUEENS,11421,40.69574,-73.85444,"(40.69574, -73.85444)",,,85-41 91 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450985,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,13:25,,,40.603886,-74.00618,"(40.603886, -74.00618)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450497,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,15:21,BROOKLYN,11211,40.70648,-73.96375,"(40.70648, -73.96375)",CLYMER STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing Too Closely,Unspecified,,,4451175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/26/2021,11:49,,,40.686745,-73.96553,"(40.686745, -73.96553)",WASHINGTON AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4450895,,,,, +08/27/2021,15:20,,,,,,Williamsburg Bridge,Delancey street,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451221,E-Scooter,Minibike,,, +08/23/2021,13:15,QUEENS,11377,40.745117,-73.904495,"(40.745117, -73.904495)",60 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451494,Sedan,Sedan,,, +08/25/2021,10:47,,,,,,BRUCKNER EXPRESSWAY,MIDDLETOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450626,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +08/27/2021,16:57,,,40.86157,-73.913185,"(40.86157, -73.913185)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4451359,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,12:25,BROOKLYN,11236,40.641945,-73.916626,"(40.641945, -73.916626)",FOSTER AVENUE,EAST 83 STREET,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4451101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Ambulance,, +08/25/2021,13:41,,,40.709896,-73.83941,"(40.709896, -73.83941)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4450486,Sedan,Sedan,,, +08/24/2021,8:40,BROOKLYN,11201,40.692596,-73.981766,"(40.692596, -73.981766)",,,101 FLEET PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451069,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,6:53,MANHATTAN,10001,40.745735,-73.9917,"(40.745735, -73.9917)",,,109 WEST 27 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450922,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,22:40,,,40.84453,-73.901764,"(40.84453, -73.901764)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Following Too Closely,Driver Inattention/Distraction,,,4450779,Tractor Truck Diesel,Sedan,Sedan,, +08/25/2021,18:40,,,40.69146,-73.88547,"(40.69146, -73.88547)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451784,Sedan,Sedan,,, +08/26/2021,5:20,,,40.77393,-73.92166,"(40.77393, -73.92166)",HOYT AVENUE NORTH,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451540,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,12:30,BRONX,10473,40.822903,-73.87005,"(40.822903, -73.87005)",,,900 FTELEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450696,Flat Bed,,,, +08/27/2021,12:20,,,40.85512,-73.872215,"(40.85512, -73.872215)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451343,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,6:54,QUEENS,11423,40.717785,-73.76249,"(40.717785, -73.76249)",89 AVENUE,199 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450948,Sedan,Sedan,Sedan,, +08/25/2021,7:58,STATEN ISLAND,10306,40.568764,-74.11149,"(40.568764, -74.11149)",HYLAN BOULEVARD,ROSS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451143,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,4:50,,,40.65161,-74.01062,"(40.65161, -74.01062)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4450555,Sedan,Sedan,,, +08/25/2021,22:25,BROOKLYN,11226,40.647358,-73.95944,"(40.647358, -73.95944)",ALBEMARLE ROAD,EAST 21 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4450644,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,10:02,BROOKLYN,11214,40.61068,-74.00669,"(40.61068, -74.00669)",85 STREET,16 AVENUE,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4451303,Pick-up Truck,,,, +08/27/2021,13:13,BROOKLYN,11219,40.629425,-73.99795,"(40.629425, -73.99795)",59 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451458,Bus,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,9:30,,,40.71598,-73.97579,"(40.71598, -73.97579)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Fell Asleep,Other Vehicular,,,,4451212,Taxi,Sedan,,, +08/25/2021,16:30,,,40.689922,-73.92281,"(40.689922, -73.92281)",LINDEN STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4450704,Sedan,Sedan,,, +08/10/2021,17:50,MANHATTAN,10019,40.77259,-73.99275,"(40.77259, -73.99275)",,,675 WEST 59 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4451705,Box Truck,,,, +08/27/2021,8:00,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4451009,Sedan,,,, +08/25/2021,19:31,BRONX,10466,40.896694,-73.853516,"(40.896694, -73.853516)",EAST 237 STREET,BYRON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4450662,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,19:59,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",104 STREET,ATLANTIC AVENUE,,6,0,0,0,0,0,6,0,Cell Phone (hand-Held),Unspecified,,,,4451590,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,17:40,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450588,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,10:37,,,40.66989,-73.93381,"(40.66989, -73.93381)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451312,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +08/26/2021,11:30,QUEENS,11355,40.74584,-73.82342,"(40.74584, -73.82342)",BOOTH MEMORIAL AVENUE,142 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450753,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:15,,,40.66408,-73.94817,"(40.66408, -73.94817)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450834,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,12:30,,,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451491,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,0:00,BRONX,10460,40.836124,-73.88987,"(40.836124, -73.88987)",BOSTON ROAD,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,19:05,BROOKLYN,11236,40.637646,-73.91187,"(40.637646, -73.91187)",,,755 EAST 83 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450549,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,2:30,,,40.67376,-73.73431,"(40.67376, -73.73431)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451408,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,13:00,,,40.625515,-74.15226,"(40.625515, -74.15226)",FOREST AVENUE,EUNICE PLACE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4450980,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/25/2021,5:00,,,40.604485,-74.070656,"(40.604485, -74.070656)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450771,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,0:30,BROOKLYN,11222,40.73225,-73.95196,"(40.73225, -73.95196)",,,294 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4450961,Sedan,,,, +08/27/2021,9:50,QUEENS,11101,40.737774,-73.93809,"(40.737774, -73.93809)",,,30-10 STARR AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4451054,Flat Bed,Pick-up Truck,,, +08/25/2021,14:18,,,40.81339,-73.95627,"(40.81339, -73.95627)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4450543,Bus,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,17:42,QUEENS,11373,40.731182,-73.871605,"(40.731182, -73.871605)",WOODHAVEN BOULEVARD,WETHEROLE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,0:33,,,,,,PARK DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4450339,Sedan,,,, +08/26/2021,7:00,,,40.879948,-73.88086,"(40.879948, -73.88086)",STEUBEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,20:00,BROOKLYN,11207,40.663223,-73.89165,"(40.663223, -73.89165)",,,651 VERMONT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451410,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,21:45,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4450901,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/01/2021,4:48,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451112,Sedan,Sedan,,, +08/27/2021,14:19,BRONX,10469,40.88219,-73.85066,"(40.88219, -73.85066)",EAST 222 STREET,LACONIA AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451675,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/25/2021,11:13,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4450463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Pick-up Truck, +08/27/2021,16:30,BROOKLYN,11232,40.65216,-74.01143,"(40.65216, -74.01143)",,,265 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451262,Taxi,Sedan,,, +08/27/2021,2:09,BRONX,10473,40.81748,-73.86395,"(40.81748, -73.86395)",,,618 SAINT LAWRENCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451037,Station Wagon/Sport Utility Vehicle,Unknown,,, +08/25/2021,17:02,BROOKLYN,11207,40.67486,-73.896645,"(40.67486, -73.896645)",,,122 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450569,Sedan,Sedan,,, +08/21/2021,0:33,,,40.837513,-73.91478,"(40.837513, -73.91478)",GRAND CONCOURSE,,,1,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,Unspecified,,,4451226,E-Scooter,Sedan,,, +08/26/2021,13:30,QUEENS,11385,40.71285,-73.904274,"(40.71285, -73.904274)",,,60-31 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450882,Tow Truck / Wrecker,Taxi,,, +08/25/2021,12:28,MANHATTAN,10001,40.749638,-73.99905,"(40.749638, -73.99905)",WEST 28 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450830,Sedan,Bike,,, +08/25/2021,19:55,BROOKLYN,11230,40.60994,-73.967804,"(40.60994, -73.967804)",,,1600 OCEAN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4450735,,,,, +08/27/2021,13:10,MANHATTAN,10017,40.75057,-73.97459,"(40.75057, -73.97459)",,,655 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451205,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,12:30,,,40.678104,-73.9432,"(40.678104, -73.9432)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451651,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/27/2021,18:30,BRONX,10466,40.89155,-73.86179,"(40.89155, -73.86179)",CARPENTER AVENUE,EAST 229 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:20,BROOKLYN,11222,40.724945,-73.951454,"(40.724945, -73.951454)",,,680 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451080,Station Wagon/Sport Utility Vehicle,Bus,,, +08/26/2021,12:19,BROOKLYN,11233,40.6845,-73.92639,"(40.6845, -73.92639)",PATCHEN AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451551,Box Truck,Sedan,,, +08/27/2021,5:56,,,40.596123,-74.00068,"(40.596123, -74.00068)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450990,Sedan,,,, +08/27/2021,14:13,,,40.72662,-73.757324,"(40.72662, -73.757324)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451097,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/09/2021,19:32,BRONX,10456,40.82942,-73.91226,"(40.82942, -73.91226)",EAST 166 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451241,Sedan,Sedan,,, +08/26/2021,22:44,BROOKLYN,11219,40.635864,-74.001396,"(40.635864, -74.001396)",,,5411 FORT HAMILTON PARKWAY,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451452,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/26/2021,21:51,QUEENS,11412,40.69703,-73.768585,"(40.69703, -73.768585)",MURDOCK AVENUE,MANGIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4450938,Sedan,Sedan,Convertible,, +08/25/2021,16:55,,,40.689426,-73.94223,"(40.689426, -73.94223)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451643,Sedan,,,, +08/26/2021,14:45,QUEENS,11355,40.753494,-73.82987,"(40.753494, -73.82987)",FRANKLIN AVENUE,SAULL STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450969,Station Wagon/Sport Utility Vehicle,Bike,,, +08/27/2021,20:00,,,40.754498,-73.834076,"(40.754498, -73.834076)",HAIGHT STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4451155,Sedan,STAK,,, +08/27/2021,15:00,QUEENS,11420,40.681927,-73.82205,"(40.681927, -73.82205)",,,109-51 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4451138,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/02/2021,8:30,MANHATTAN,10026,40.799217,-73.952965,"(40.799217, -73.952965)",,,110 WEST 111 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451560,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,15:30,BRONX,10460,40.84162,-73.86653,"(40.84162, -73.86653)",,,606 BAKER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450575,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/26/2021,10:30,MANHATTAN,10002,40.722336,-73.98805,"(40.722336, -73.98805)",,,196 ORCHARD STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4451219,Box Truck,,,, +08/26/2021,14:42,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450908,Pick-up Truck,Pick-up Truck,,, +08/27/2021,15:30,BROOKLYN,11229,40.61559,-73.94546,"(40.61559, -73.94546)",,,2925 KINGS HIGHWAY,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4451200,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,19:27,MANHATTAN,10029,40.793808,-73.942024,"(40.793808, -73.942024)",,,229 EAST 110 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450620,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,21:05,BROOKLYN,11204,40.612022,-73.98606,"(40.612022, -73.98606)",,,2115 70 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4451530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,9:50,MANHATTAN,10075,40.777004,-73.96374,"(40.777004, -73.96374)",EAST 79 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4450741,Station Wagon/Sport Utility Vehicle,Van,,, +08/25/2021,19:30,BROOKLYN,11237,40.708256,-73.91997,"(40.708256, -73.91997)",CYPRESS AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451385,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/23/2021,21:00,BRONX,10456,40.837513,-73.91478,"(40.837513, -73.91478)",GRAND CONCOURSE,MARCY PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451231,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,0:00,BROOKLYN,11220,40.643017,-74.00386,"(40.643017, -74.00386)",,,736 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450561,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:20,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451086,Pick-up Truck,Pick-up Truck,,, +08/25/2021,12:15,,,40.69423,-73.94608,"(40.69423, -73.94608)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451631,Pick-up Truck,Motorcycle,,, +08/27/2021,20:50,BROOKLYN,11203,40.653343,-73.938156,"(40.653343, -73.938156)",,,555 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451333,Station Wagon/Sport Utility Vehicle,Bus,,, +08/26/2021,16:33,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451123,Sedan,Sedan,Pick-up Truck,, +08/25/2021,1:30,,,40.781685,-73.844124,"(40.781685, -73.844124)",124 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4450525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/25/2021,19:35,BROOKLYN,11230,40.611954,-73.96817,"(40.611954, -73.96817)",OCEAN PARKWAY,AVENUE O,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450784,Taxi,Sedan,,, +08/25/2021,19:18,,,40.75425,-73.96899,"(40.75425, -73.96899)",EAST 49 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450800,Sedan,,,, +08/27/2021,22:40,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",DYCKMAN STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451697,Sedan,Sedan,,, +08/25/2021,12:46,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/07/2021,6:30,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451778,Station Wagon/Sport Utility Vehicle,,,, +08/05/2021,20:30,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451465,Motorcycle,,,, +08/19/2021,15:20,BRONX,10466,40.886166,-73.84506,"(40.886166, -73.84506)",,,1151 EAST 229 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4451874,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/31/2022,10:15,,,40.82413,-73.94098,"(40.82413, -73.94098)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498824,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/25/2021,18:19,BROOKLYN,11210,40.63178,-73.945625,"(40.63178, -73.945625)",AVENUE H,EAST 32 STREET,,5,0,0,0,0,0,5,0,Turning Improperly,Unspecified,,,,4450640,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,8:50,MANHATTAN,10032,40.84356,-73.9419,"(40.84356, -73.9419)",,,715 WEST 170 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450717,Sedan,,,, +08/25/2021,18:20,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450580,Sedan,,,, +08/27/2021,1:40,QUEENS,11372,40.756145,-73.8798,"(40.756145, -73.8798)",88 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450915,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/20/2021,16:13,BROOKLYN,11233,40.674755,-73.91109,"(40.674755, -73.91109)",ROCKAWAY AVENUE,DEAN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451065,Sedan,Bike,,, +08/27/2021,17:30,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4451827,Sedan,Tractor Truck Diesel,Sedan,, +08/21/2021,17:18,QUEENS,11385,40.700584,-73.89724,"(40.700584, -73.89724)",,,60-31 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451772,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,22:25,,,40.6752,-73.950005,"(40.6752, -73.950005)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451316,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/27/2021,14:48,BRONX,10467,40.861317,-73.86554,"(40.861317, -73.86554)",WARING AVENUE,HOLLAND AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451124,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/25/2021,19:02,MANHATTAN,10075,40.777004,-73.96374,"(40.777004, -73.96374)",EAST 79 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450607,Taxi,Taxi,,, +08/26/2021,2:00,QUEENS,11106,40.75967,-73.92725,"(40.75967, -73.92725)",31 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4451002,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,4:00,QUEENS,11372,40.75585,-73.87691,"(40.75585, -73.87691)",,,33-24 91 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451464,Pick-up Truck,,,, +08/10/2021,11:15,BROOKLYN,11213,40.67774,-73.936,"(40.67774, -73.936)",,,1545 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451582,Box Truck,Ambulance,,, +08/27/2021,13:45,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4451246,Flat Bed,,,, +08/27/2021,12:10,BROOKLYN,11203,40.653862,-73.9296,"(40.653862, -73.9296)",EAST 51 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4451327,Sedan,Flat Bed,,, +08/26/2021,7:36,,,40.889927,-73.9084,"(40.889927, -73.9084)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4450841,Box Truck,,,, +08/26/2021,17:41,BRONX,10471,40.897877,-73.897,"(40.897877, -73.897)",BROADWAY,WEST 252 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4451658,Motorcycle,,,, +08/27/2021,12:00,,,40.64204,-74.0204,"(40.64204, -74.0204)",3 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451481,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,17:27,BROOKLYN,11212,40.65711,-73.91335,"(40.65711, -73.91335)",STRAUSS STREET,LOTT AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4451058,Sedan,Sedan,Sedan,, +08/27/2021,2:43,BRONX,10469,40.87652,-73.84113,"(40.87652, -73.84113)",,,3304 WICKHAM AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4451679,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/26/2021,9:30,BRONX,10453,40.850132,-73.91162,"(40.850132, -73.91162)",WEST 177 STREET,DAVIDSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450758,Sedan,,,, +08/22/2021,8:37,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4451218,Chassis Cab,Station Wagon/Sport Utility Vehicle,Sedan,, +08/23/2021,20:00,QUEENS,11366,40.7266,-73.789116,"(40.7266, -73.789116)",UNION TURNPIKE,179 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450997,Sedan,Bike,,, +08/26/2021,19:00,QUEENS,11420,40.68143,-73.82376,"(40.68143, -73.82376)",,,109-56 117 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,16:10,QUEENS,11691,40.60877,-73.75396,"(40.60877, -73.75396)",,,14-25 BEACH CHANNEL DRIVE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4450613,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,15:27,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4451166,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/26/2021,20:37,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450878,Sedan,Sedan,,, +08/26/2021,4:55,BROOKLYN,11211,40.707523,-73.96115,"(40.707523, -73.96115)",ROEBLING STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4450762,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/25/2021,5:45,QUEENS,11417,40.67403,-73.84063,"(40.67403, -73.84063)",LINDEN BOULEVARD,96 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450308,Bike,,,, +08/25/2021,19:45,MANHATTAN,10011,40.745415,-74.00821,"(40.745415, -74.00821)",WEST 18 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4450822,Sedan,,,, +08/21/2021,11:30,BROOKLYN,11205,40.690285,-73.95433,"(40.690285, -73.95433)",SPENCER COURT,KOSCIUSZKO STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451635,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,14:19,BRONX,10468,,,,,,117 father zeiser place,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451108,Sedan,,,, +08/27/2021,1:40,BRONX,10467,40.882336,-73.87907,"(40.882336, -73.87907)",,,3530 ROCHAMBEAU AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4451041,Sedan,Sedan,,, +08/26/2021,20:20,,,40.71583,-73.81375,"(40.71583, -73.81375)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451034,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,15:54,BROOKLYN,11219,40.63544,-73.98675,"(40.63544, -73.98675)",,,1433 45 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4450785,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:15,QUEENS,11373,40.743668,-73.884476,"(40.743668, -73.884476)",,,80-20 BROADWAY,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4450548,Sedan,Ambulance,,, +08/25/2021,12:50,,,40.82451,-73.95186,"(40.82451, -73.95186)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4451267,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/27/2021,0:07,QUEENS,11362,40.752182,-73.74055,"(40.752182, -73.74055)",,,239-17 66 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451789,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/26/2021,7:00,,,40.738476,-73.79729,"(40.738476, -73.79729)",172 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450653,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,9:46,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",JEROME AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450446,Sedan,Sedan,,, +08/27/2021,18:35,,,,,,135 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451280,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,10:30,BRONX,10460,40.841263,-73.88013,"(40.841263, -73.88013)",,,1010 EAST 178 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451076,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,11:00,,,40.70674,-73.92032,"(40.70674, -73.92032)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451380,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,8:45,QUEENS,11412,40.701588,-73.74865,"(40.701588, -73.74865)",FRANCIS LEWIS BOULEVARD,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451093,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,22:57,,,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451306,Sedan,Sedan,,, +08/25/2021,7:40,,,40.582066,-73.96564,"(40.582066, -73.96564)",,,BRIGHTON 3 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4451029,Sedan,Sedan,,, +08/27/2021,23:30,,,40.68714,-73.80801,"(40.68714, -73.80801)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4451195,Sedan,Sedan,,, +08/25/2021,14:00,QUEENS,11435,40.712513,-73.82217,"(40.712513, -73.82217)",83 AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450647,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,14:10,,,40.773872,-73.98223,"(40.773872, -73.98223)",WEST 66 STREET,,,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4451134,Van,Box Truck,,, +08/27/2021,9:29,,,40.84353,-73.89401,"(40.84353, -73.89401)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4451875,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/27/2021,20:34,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451513,Sedan,Sedan,,, +08/22/2021,1:30,BROOKLYN,11216,40.67187,-73.95464,"(40.67187, -73.95464)",BEDFORD AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451311,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,8:15,BROOKLYN,11225,40.668118,-73.95166,"(40.668118, -73.95166)",,,1176 PRESIDENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451286,Sedan,,,, +08/27/2021,3:48,BROOKLYN,11212,40.669765,-73.91025,"(40.669765, -73.91025)",,,1705 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451151,Sedan,,,, +08/26/2021,23:50,,,,,,VANWYCK EXPRESSWAY,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4451821,Sedan,Tractor Truck Diesel,,, +08/25/2021,14:19,,,40.63658,-74.16506,"(40.63658, -74.16506)",GRANDVIEW AVENUE,CHRISTOPHER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450977,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,7:47,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4450810,Pick-up Truck,Sedan,Sedan,, +08/26/2021,12:56,BROOKLYN,11215,40.658276,-73.98532,"(40.658276, -73.98532)",,,420 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451261,Sedan,,,, +08/25/2021,16:58,BROOKLYN,11218,40.64545,-73.97311,"(40.64545, -73.97311)",CHURCH AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450736,Box Truck,Sedan,,, +08/27/2021,5:21,,,40.667576,-73.72951,"(40.667576, -73.72951)",,,HOOK CREEK BOULEVARD,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,,,,4451090,Sedan,Pick-up Truck,,, +08/25/2021,23:10,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450587,Pick-up Truck,,,, +08/23/2021,23:15,,,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451553,Sedan,,,, +08/22/2021,17:15,BROOKLYN,11208,40.67272,-73.8814,"(40.67272, -73.8814)",BELMONT AVENUE,ESSEX STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451429,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,9:00,,,40.84275,-73.92283,"(40.84275, -73.92283)",GRANT HIGHWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4451227,Sedan,Box Truck,,, +08/24/2021,22:28,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",CENTRAL PARK WEST,WEST 65 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451119,Sedan,Motorcycle,,, +08/27/2021,9:46,BROOKLYN,11229,40.60646,-73.9517,"(40.60646, -73.9517)",AVENUE R,EAST 21 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451853,Sedan,Sedan,,, +08/26/2021,13:40,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4450934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,3:00,BROOKLYN,11212,40.667156,-73.9101,"(40.667156, -73.9101)",ROCKAWAY AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450600,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,21:20,BRONX,10456,40.820816,-73.91005,"(40.820816, -73.91005)",,,800 SAINT ANNS AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450954,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,19:54,STATEN ISLAND,10301,40.641483,-74.08496,"(40.641483, -74.08496)",,,151 JERSEY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4451445,Sedan,,,, +08/27/2021,17:50,BROOKLYN,11201,,,,HICKS STREET,OLD FULTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451156,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,8:00,BROOKLYN,11212,40.655148,-73.91094,"(40.655148, -73.91094)",,,601 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451061,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,14:00,QUEENS,11414,40.650673,-73.8388,"(40.650673, -73.8388)",164 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4451577,Bus,Sedan,,, +08/26/2021,23:00,QUEENS,11421,40.696774,-73.85283,"(40.696774, -73.85283)",,,84-56 WOODHAVEN BOULEVARD,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451610,Bike,Moped,,, +08/25/2021,14:28,QUEENS,11691,,,,ROCKAWAY FREEWAY,Beach 54TH STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450713,Sedan,E-Bike,,, +08/26/2021,1:50,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450627,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,16:00,,,40.77039,-73.91771,"(40.77039, -73.91771)",HOYT AVENUE SOUTH,31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451473,Sedan,Ambulance,,, +08/25/2021,12:15,MANHATTAN,10034,40.8651,-73.92189,"(40.8651, -73.92189)",WEST 204 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4450484,Sedan,Pick-up Truck,,, +08/21/2021,22:30,MANHATTAN,10024,40.78202,-73.97173,"(40.78202, -73.97173)",WEST 81 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451128,Sedan,,,, +08/27/2021,16:30,BROOKLYN,11203,40.65474,-73.94041,"(40.65474, -73.94041)",EAST 40 STREET,LENOX ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451357,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,13:10,,,40.803688,-73.915886,"(40.803688, -73.915886)",CYPRESS AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451160,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,18:19,MANHATTAN,10025,40.799976,-73.958626,"(40.799976, -73.958626)",WEST 109 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451183,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,11:35,,,40.69529,-73.94339,"(40.69529, -73.94339)",,,THROOP AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451640,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,10:00,,,40.67536,-73.969696,"(40.67536, -73.969696)",PLAZA STREET EAST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451321,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,8:20,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4450520,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,23:00,STATEN ISLAND,10312,40.54778,-74.16684,"(40.54778, -74.16684)",SERRELL AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451250,Sedan,Sedan,,, +08/26/2021,8:21,QUEENS,11373,40.742348,-73.86995,"(40.742348, -73.86995)",CORONA AVENUE,94 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450874,Motorscooter,,,, +08/25/2021,0:08,BROOKLYN,11232,40.643147,-73.99802,"(40.643147, -73.99802)",9 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450387,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,3:06,,,40.68324,-73.9439,"(40.68324, -73.9439)",HANCOCK STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,0:03,MANHATTAN,10030,40.82034,-73.940025,"(40.82034, -73.940025)",7 AVENUE,WEST 143 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451345,Sedan,Sedan,,, +08/26/2021,10:53,QUEENS,11412,40.69955,-73.747734,"(40.69955, -73.747734)",FRANCIS LEWIS BOULEVARD,115 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450845,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,14:45,,,,,,GRAND CENTRAL PARKWAY,168 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450633,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/27/2021,9:20,,,40.82034,-73.940025,"(40.82034, -73.940025)",WEST 143 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451348,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,13:00,,,40.852127,-73.93783,"(40.852127, -73.93783)",WEST 183 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451684,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,1:16,QUEENS,11101,,,,steinway street,35 avenue,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451017,E-Bike,Sedan,,, +08/25/2021,17:54,BROOKLYN,11208,40.679405,-73.88069,"(40.679405, -73.88069)",,,245 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450566,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/27/2021,2:20,,,40.743187,-73.97207,"(40.743187, -73.97207)",EAST 34 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450912,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,19:59,BROOKLYN,11239,40.638542,-73.875694,"(40.638542, -73.875694)",,,855 LOUISIANA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451412,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,13:22,QUEENS,11102,40.77057,-73.91993,"(40.77057, -73.91993)",,,28-29 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4451012,Pick-up Truck,Sedan,,, +08/26/2021,10:00,BROOKLYN,11215,40.6713,-73.992455,"(40.6713, -73.992455)",,,176 10 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4450891,Sedan,Tractor Truck Diesel,,, +08/25/2021,13:15,QUEENS,11415,40.707325,-73.832664,"(40.707325, -73.832664)",,,83-25 ABINGDON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450488,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,12:45,QUEENS,11354,40.77008,-73.812195,"(40.77008, -73.812195)",152 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450526,Sedan,Bike,,, +08/25/2021,18:08,MANHATTAN,10035,40.79993,-73.940674,"(40.79993, -73.940674)",EAST 118 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450718,Taxi,,,, +07/13/2021,18:30,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451304,Sedan,Sedan,,, +08/26/2021,0:37,,,40.77904,-73.9435,"(40.77904, -73.9435)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4450679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,7:53,BROOKLYN,11233,40.681934,-73.922554,"(40.681934, -73.922554)",RALPH AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,1:00,QUEENS,11415,40.70475,-73.83003,"(40.70475, -73.83003)",122 STREET,84 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4450698,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/26/2021,10:40,QUEENS,11372,40.755753,-73.883514,"(40.755753, -73.883514)",NORTHERN BOULEVARD,84 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450916,Sedan,Sedan,,, +08/27/2021,4:30,MANHATTAN,10025,40.789673,-73.96986,"(40.789673, -73.96986)",WEST 91 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451044,Sedan,,,, +08/25/2021,5:40,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450384,Sedan,Van,,, +08/27/2021,14:59,BROOKLYN,11234,40.617382,-73.943474,"(40.617382, -73.943474)",KINGS HIGHWAY,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451189,Ambulance,Sedan,,, +08/26/2021,16:57,MANHATTAN,10035,40.803123,-73.940445,"(40.803123, -73.940445)",PARK AVENUE,EAST 122 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450972,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,16:30,,,,,,CROSS ISLAND PARKWAY,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451370,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,10:30,QUEENS,11415,40.7038,-73.832565,"(40.7038, -73.832565)",,,84-31 LEFFERTS BOULEVARD,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451105,Sedan,Sedan,,, +08/18/2021,6:00,,,40.862312,-73.929436,"(40.862312, -73.929436)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451616,Sedan,FIRE TRUCK,,, +08/22/2021,8:53,BROOKLYN,11233,40.671646,-73.91472,"(40.671646, -73.91472)",,,1613 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451066,Sedan,,,, +08/25/2021,21:35,BROOKLYN,11212,40.669254,-73.91063,"(40.669254, -73.91063)",,,437 ROCKAWAY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450604,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,22:46,BROOKLYN,11236,40.648296,-73.89555,"(40.648296, -73.89555)",,,716 EAST 105 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450929,Sedan,Sedan,,, +07/27/2021,22:00,MANHATTAN,10040,40.863422,-73.93003,"(40.863422, -73.93003)",DONGAN PLACE,BROADWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4451073,Station Wagon/Sport Utility Vehicle,Moped,,, +08/26/2021,22:27,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",FLATLANDS AVENUE,EAST 80 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4451179,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:40,,,40.842697,-73.82519,"(40.842697, -73.82519)",MACDONOUGH PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451900,Sedan,,,, +08/26/2021,14:23,MANHATTAN,10006,40.706673,-74.01591,"(40.706673, -74.01591)",,,20 MORRIS STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451548,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,18:00,BRONX,10454,40.806587,-73.91041,"(40.806587, -73.91041)",,,745 EAST 141 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450958,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/27/2021,13:43,,,40.82156,-73.95836,"(40.82156, -73.95836)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451255,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,16:20,STATEN ISLAND,10306,40.576405,-74.127075,"(40.576405, -74.127075)",RICHMOND ROAD,ROCKLAND AVENUE,,2,0,0,0,0,0,2,0,Steering Failure,Other Vehicular,,,,4451147,Sedan,Sedan,,, +08/27/2021,18:05,MANHATTAN,10024,40.78642,-73.978065,"(40.78642, -73.978065)",BROADWAY,WEST 83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451745,Box Truck,Box Truck,,, +08/25/2021,5:55,MANHATTAN,10039,40.826683,-73.935394,"(40.826683, -73.935394)",WEST 153 STREET,POWELL BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450436,Station Wagon/Sport Utility Vehicle,Bike,,, +08/26/2021,21:00,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,,,3,0,0,0,0,0,3,0,Other Vehicular,Driver Inattention/Distraction,,,,4451417,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,2:00,BROOKLYN,11217,40.68906,-73.97939,"(40.68906, -73.97939)",,,31 ROCKWELL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450924,Sedan,,,, +08/23/2021,10:07,,,40.865177,-73.932945,"(40.865177, -73.932945)",HENRY HUDSON PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4451342,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:21,BROOKLYN,11207,40.67098,-73.884384,"(40.67098, -73.884384)",ASHFORD STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451274,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,11:00,,,40.584816,-73.95271,"(40.584816, -73.95271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4451223,Box Truck,,,, +08/25/2021,15:40,BROOKLYN,11226,40.640167,-73.95713,"(40.640167, -73.95713)",DITMAS AVENUE,EAST 22 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4450639,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,14:24,MANHATTAN,10017,40.748215,-73.968544,"(40.748215, -73.968544)",FDR DRIVE,EAST 42 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4451206,Sedan,,,, +08/26/2021,7:24,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451653,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,6:30,,,40.796215,-73.94969,"(40.796215, -73.94969)",5 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4450359,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,16:56,,,40.698265,-73.93399,"(40.698265, -73.93399)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4451386,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,11:15,QUEENS,11411,40.69377,-73.73578,"(40.69377, -73.73578)",LINDEN BOULEVARD,225 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450534,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/25/2021,22:11,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450670,Taxi,,,, +08/27/2021,6:03,,,40.596123,-74.00068,"(40.596123, -74.00068)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450989,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/26/2021,9:20,BROOKLYN,11201,40.69049,-73.978745,"(40.69049, -73.978745)",,,161 ASHLAND PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450896,Sedan,Sedan,,, +08/25/2021,6:20,MANHATTAN,10026,40.80123,-73.94996,"(40.80123, -73.94996)",,,41 WEST 115 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451049,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,16:52,BROOKLYN,11203,40.6416,-73.93802,"(40.6416, -73.93802)",AVENUE D,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,15:45,BROOKLYN,11226,40.645626,-73.95808,"(40.645626, -73.95808)",,,1046 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451201,E-Bike,,,, +08/26/2021,18:30,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4451222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,21:15,BRONX,10454,40.80484,-73.912796,"(40.80484, -73.912796)",EAST 138 STREET,JACKSON AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4450623,E-Bike,Sedan,,, +08/27/2021,12:30,,,,,,E 34 STREET,3 AVEUNE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451100,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,8:39,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,ADAMS STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450472,Sedan,Ambulance,,, +08/26/2021,17:29,,,40.6997,-73.94425,"(40.6997, -73.94425)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451666,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:05,BROOKLYN,11213,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451644,Sedan,Sedan,,, +08/22/2021,16:39,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451625,Sedan,Sedan,,, +08/25/2021,17:55,,,40.7616,-73.96865,"(40.7616, -73.96865)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4450799,Box Truck,Van,,, +07/16/2021,2:14,,,40.80674,-73.924446,"(40.80674, -73.924446)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4451068,Taxi,Tractor Truck Diesel,,, +08/25/2021,15:47,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4450772,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,20:00,,,40.828594,-73.92173,"(40.828594, -73.92173)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,,,,4451237,Sedan,,,, +08/27/2021,8:51,BROOKLYN,11205,40.69313,-73.96984,"(40.69313, -73.96984)",MYRTLE AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451053,Bike,Sedan,,, +08/25/2021,16:30,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450570,Taxi,,,, +08/26/2021,17:50,BRONX,10461,40.839962,-73.84326,"(40.839962, -73.84326)",,,1446 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4450963,Sedan,,,, +08/27/2021,14:00,,,40.804745,-73.91194,"(40.804745, -73.91194)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451159,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/12/2021,1:57,,,40.715443,-73.95185,"(40.715443, -73.95185)",MEEKER AVENUE,UNION AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4451826,Sedan,,,, +08/27/2021,1:17,QUEENS,11420,40.6697,-73.80766,"(40.6697, -73.80766)",,,131-02 131 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4451142,Sedan,Sedan,Sedan,, +08/25/2021,20:10,BROOKLYN,11249,40.70054,-73.95942,"(40.70054, -73.95942)",,,75 RUTLEDGE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450556,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,15:00,,,40.740837,-73.7583,"(40.740837, -73.7583)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,7:42,,,40.787857,-73.96745,"(40.787857, -73.96745)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450728,Sedan,,,, +08/27/2021,14:25,BROOKLYN,11236,40.644245,-73.89103,"(40.644245, -73.89103)",EAST 105 STREET,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451300,Sedan,Sedan,,, +08/26/2021,7:02,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4451319,Sedan,Sedan,,, +08/27/2021,5:10,BRONX,10466,40.899246,-73.84609,"(40.899246, -73.84609)",NEREID AVENUE,BAYCHESTER AVENUE,,1,0,0,0,0,0,1,0,Oversized Vehicle,Traffic Control Disregarded,,,,4451709,Tractor Truck Diesel,Sedan,,, +08/10/2021,19:53,MANHATTAN,10023,40.777905,-73.98209,"(40.777905, -73.98209)",BROADWAY,WEST 71 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4451127,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,16:32,QUEENS,11101,40.73938,-73.944466,"(40.73938, -73.944466)",,,25-52 BORDEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451184,Sedan,,,, +08/26/2021,12:35,,,40.859325,-73.93132,"(40.859325, -73.93132)",BROADWAY,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4451098,E-Bike,Box Truck,Station Wagon/Sport Utility Vehicle,, +08/26/2021,19:40,BROOKLYN,11219,40.637054,-73.98643,"(40.637054, -73.98643)",14 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451453,Taxi,Sedan,,, +08/26/2021,13:25,STATEN ISLAND,10301,40.613804,-74.11338,"(40.613804, -74.11338)",VICTORY BOULEVARD,LITTLE CLOVE ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4451693,Sedan,,,, +08/26/2021,9:53,MANHATTAN,10030,40.818745,-73.94207,"(40.818745, -73.94207)",,,208 WEST 140 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4450752,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Firetruck, +08/25/2021,21:37,BRONX,10462,40.84641,-73.86657,"(40.84641, -73.86657)",,,1853 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450576,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,15:16,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450970,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,18:30,MANHATTAN,10012,40.725014,-73.99712,"(40.725014, -73.99712)",,,594 BROADWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451624,PK,Bus,,, +08/27/2021,21:40,,,,,,111 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451467,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,17:23,BROOKLYN,11236,40.635395,-73.899284,"(40.635395, -73.899284)",,,1430 EAST 91 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4451193,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,12:15,BROOKLYN,11226,40.65354,-73.94986,"(40.65354, -73.94986)",,,1357 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451332,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,20:00,BRONX,10453,40.847317,-73.911476,"(40.847317, -73.911476)",TOWNSEND AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451929,Sedan,,,, +08/13/2021,4:38,,,40.80521,-73.94736,"(40.80521, -73.94736)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451555,E-Scooter,Bike,,, +08/27/2021,12:40,BRONX,10469,40.859554,-73.84301,"(40.859554, -73.84301)",,,2234 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4451120,Pick-up Truck,Sedan,,, +08/27/2021,0:07,,,,,,CLEARVIEW EXPRESSWAY,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4450902,Motorcycle,,,, +08/27/2021,0:00,BRONX,10466,40.887096,-73.86087,"(40.887096, -73.86087)",WHITE PLAINS ROAD,EAST 224 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451698,Sedan,,,, +08/27/2021,18:42,,,40.676193,-74.001335,"(40.676193, -74.001335)",HAMILTON AVENUE,WEST 9 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,12:55,,,40.759365,-73.914276,"(40.759365, -73.914276)",NEWTOWN ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4450465,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/26/2021,20:40,QUEENS,11378,40.72178,-73.902855,"(40.72178, -73.902855)",,,62-22 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4450883,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/25/2021,0:00,BROOKLYN,11207,40.68016,-73.893196,"(40.68016, -73.893196)",JAMAICA AVENUE,MILLER AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450426,Box Truck,Bike,,, +08/07/2021,3:34,,,,,,HARLEM RIVER DRIVEWAY,WEST 155 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451886,Sedan,,,, +08/26/2021,15:57,BRONX,10462,40.836662,-73.86087,"(40.836662, -73.86087)",,,1447 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450813,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,18:00,BROOKLYN,11226,40.635784,-73.95953,"(40.635784, -73.95953)",FOSTER AVENUE,EAST 19 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4450643,Sedan,Sedan,,, +08/25/2021,10:07,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4451266,Sedan,E-Bike,,, +08/25/2021,13:47,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4450949,Sedan,Refrigerated Van,,, +08/27/2021,1:15,,,40.78779,-73.77709,"(40.78779, -73.77709)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450993,Sedan,,,, +08/25/2021,16:05,,,40.70219,-73.928345,"(40.70219, -73.928345)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4450703,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/25/2021,0:00,BROOKLYN,11214,40.59132,-73.994514,"(40.59132, -73.994514)",,,1824 SHORE PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450498,Bike,,,, +08/24/2021,20:00,,,40.8297,-73.91932,"(40.8297, -73.91932)",EAST 164 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451242,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,21:45,QUEENS,11105,40.78298,-73.91376,"(40.78298, -73.91376)",,,20-64 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451004,Sedan,,,, +08/26/2021,4:23,BRONX,10469,40.87911,-73.84325,"(40.87911, -73.84325)",EAST 222 STREET,BOSTON ROAD,,2,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450659,Sedan,E-Bike,,, +08/25/2021,16:21,BRONX,10455,40.815937,-73.909134,"(40.815937, -73.909134)",TRINITY AVENUE,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450618,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,0:00,,,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4451398,Sedan,Sedan,,, +08/26/2021,13:22,BRONX,10456,40.827682,-73.8998,"(40.827682, -73.8998)",UNION AVENUE,HOME STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451021,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/20/2021,18:10,BROOKLYN,11221,40.68865,-73.922966,"(40.68865, -73.922966)",,,831 MONROE STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451493,Sedan,,,, +07/17/2021,3:31,,,40.691895,-73.93384,"(40.691895, -73.93384)",LAFAYETTE AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451483,E-Bike,,,, +08/25/2021,7:30,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450398,Sedan,Box Truck,,, +08/25/2021,0:31,,,40.83542,-73.86809,"(40.83542, -73.86809)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450345,Sedan,,,, +08/25/2021,1:04,QUEENS,11385,40.701103,-73.89088,"(40.701103, -73.89088)",CYPRESS HILLS STREET,MYRTLE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4450538,Motorcycle,,,, +08/27/2021,16:48,BROOKLYN,11212,40.66381,-73.91117,"(40.66381, -73.91117)",DUMONT AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451171,Sedan,Taxi,,, +08/26/2021,14:52,MANHATTAN,10031,40.824886,-73.9508,"(40.824886, -73.9508)",,,531 WEST 143 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450868,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,12:30,,,40.662655,-73.84912,"(40.662655, -73.84912)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450594,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/25/2021,16:12,QUEENS,11414,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450589,Sedan,,,, +11/03/2021,10:30,QUEENS,11375,40.71077,-73.852806,"(40.71077, -73.852806)",70 ROAD,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4473717,Sedan,,,, +08/25/2021,10:30,BROOKLYN,11215,40.675156,-73.99125,"(40.675156, -73.99125)",,,15 2 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450504,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,14:48,QUEENS,11379,40.72944,-73.87519,"(40.72944, -73.87519)",60 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451777,Sedan,,,, +08/26/2021,23:02,,,40.588562,-74.14584,"(40.588562, -74.14584)",FOREST HILL ROAD,ROCKLAND AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450981,Sedan,Motorcycle,,, +08/25/2021,20:15,BRONX,10460,40.839207,-73.87699,"(40.839207, -73.87699)",,,1125 WYATT STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4450778,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,15:00,BRONX,10458,40.875286,-73.88534,"(40.875286, -73.88534)",,,165 EAST 205 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4450792,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,16:03,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451036,Sedan,Pick-up Truck,,, +08/20/2021,17:08,BRONX,10467,40.878742,-73.87255,"(40.878742, -73.87255)",EAST GUN HILL ROAD,DECATUR AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4451113,Sedan,,,, +08/26/2021,0:45,,,40.804012,-73.93097,"(40.804012, -73.93097)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450734,Sedan,,,, +08/27/2021,16:55,BROOKLYN,11215,40.669785,-73.9858,"(40.669785, -73.9858)",5 AVENUE,8 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4451294,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/09/2021,12:45,BROOKLYN,11249,40.717033,-73.962494,"(40.717033, -73.962494)",,,80 NORTH 3 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451824,Station Wagon/Sport Utility Vehicle,Bike,,, +08/26/2021,9:30,QUEENS,11691,40.60694,-73.75847,"(40.60694, -73.75847)",,,1337 GIPSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451081,Sedan,,,, +08/14/2021,0:30,BROOKLYN,11219,40.64021,-73.994934,"(40.64021, -73.994934)",,,4504 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451457,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,16:36,QUEENS,11379,40.714394,-73.895996,"(40.714394, -73.895996)",,,62-60 MOUNT OLIVET CRESCENT,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4498399,Sedan,Box Truck,,, +08/26/2021,14:07,MANHATTAN,10032,40.841667,-73.94113,"(40.841667, -73.94113)",,,651 WEST 168 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450986,Sedan,,,, +08/24/2021,13:40,,,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4451704,Station Wagon/Sport Utility Vehicle,Commercial,,, +08/26/2021,23:20,QUEENS,11368,40.747303,-73.86499,"(40.747303, -73.86499)",,,99-13 42 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451595,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,22:26,BROOKLYN,11213,40.672363,-73.9308,"(40.672363, -73.9308)",PARK PLACE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451315,Sedan,Sedan,,, +08/27/2021,0:39,BROOKLYN,11206,40.703854,-73.95128,"(40.703854, -73.95128)",HARRISON AVENUE,LYNCH STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450940,Station Wagon/Sport Utility Vehicle,Bike,,, +08/27/2021,11:15,BROOKLYN,11233,40.672752,-73.921646,"(40.672752, -73.921646)",,,1646 PROSPECT PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4451152,Sedan,Sedan,,, +08/26/2021,21:00,,,,,,CONDUIT BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4451139,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:05,QUEENS,11375,40.71944,-73.84526,"(40.71944, -73.84526)",71 AVENUE,BURNS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450550,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:00,QUEENS,11427,40.73523,-73.73875,"(40.73523, -73.73875)",SEWARD AVENUE,232 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451369,Sedan,,,, +08/25/2021,10:45,MANHATTAN,10028,40.778637,-73.955696,"(40.778637, -73.955696)",,,150 EAST 85 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450742,Sedan,,,, +08/23/2021,17:41,BROOKLYN,11214,40.59953,-74.00182,"(40.59953, -74.00182)",,,2043 CROPSEY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451531,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,16:58,,,40.64495,-73.95186,"(40.64495, -73.95186)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4450853,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,17:49,QUEENS,11427,40.72364,-73.755775,"(40.72364, -73.755775)",211 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4450635,Sedan,,,, +08/26/2021,18:00,,,40.758465,-73.77648,"(40.758465, -73.77648)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450879,Sedan,Sedan,,, +08/26/2021,12:30,,,40.8439,-73.9117,"(40.8439, -73.9117)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451230,Sedan,Ambulance,,, +08/24/2021,17:16,STATEN ISLAND,10304,40.627636,-74.079216,"(40.627636, -74.079216)",,,87 WRIGHT STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4451442,Sedan,Bike,,, +08/13/2021,13:25,MANHATTAN,10027,40.806747,-73.943085,"(40.806747, -73.943085)",,,16 WEST 125 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4451050,Sedan,,,, +08/26/2021,21:52,,,40.78917,-73.95275,"(40.78917, -73.95275)",EAST 99 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450898,Sedan,Sedan,,, +08/27/2021,3:07,,,,,,CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4451035,Sedan,,,, +08/27/2021,13:15,BRONX,10460,40.840755,-73.876915,"(40.840755, -73.876915)",DEVOE AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451605,PK,Sedan,,, +08/24/2021,19:10,QUEENS,11102,40.77211,-73.93013,"(40.77211, -73.93013)",12 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,11:30,QUEENS,11369,40.761265,-73.87501,"(40.761265, -73.87501)",94 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450451,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/19/2021,19:20,BRONX,10465,40.823658,-73.836426,"(40.823658, -73.836426)",,,815 HUTCHINSON RIVER PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4451899,Sedan,,,, +08/25/2021,11:20,,,40.788586,-73.95529,"(40.788586, -73.95529)",EAST 97 STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450654,Station Wagon/Sport Utility Vehicle,Bike,,, +08/27/2021,16:20,QUEENS,11415,40.705257,-73.834206,"(40.705257, -73.834206)",118 STREET,CURZON ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451609,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,13:17,BROOKLYN,11220,40.63631,-74.0258,"(40.63631, -74.0258)",,,6809 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450817,Sedan,Sedan,,, +04/14/2022,19:50,BRONX,10467,40.872772,-73.877754,"(40.872772, -73.877754)",,,3125 HULL AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519136,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,9:35,BROOKLYN,11207,40.6576,-73.889885,"(40.6576, -73.889885)",,,819 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450431,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:44,BROOKLYN,11206,40.705738,-73.944695,"(40.705738, -73.944695)",MANHATTAN AVENUE,BOERUM STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450491,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,7:36,BROOKLYN,11212,40.664097,-73.90932,"(40.664097, -73.90932)",DUMONT AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4451567,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/27/2021,1:35,BROOKLYN,11217,40.680244,-73.984146,"(40.680244, -73.984146)",3 AVENUE,DOUGLASS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451008,Sedan,Sedan,,, +08/25/2021,9:30,,,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4451638,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,22:00,,,40.82101,-73.93436,"(40.82101, -73.93436)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4450708,Sedan,Sedan,,, +08/25/2021,22:50,BRONX,10472,40.832623,-73.86891,"(40.832623, -73.86891)",,,1750 EAST 172 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450699,Sedan,,,, +08/25/2021,9:00,BROOKLYN,11218,40.646626,-73.98308,"(40.646626, -73.98308)",FORT HAMILTON PARKWAY,BILLS PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4450389,Taxi,Sedan,,, +08/23/2021,16:15,,,40.5796,-73.954445,"(40.5796, -73.954445)",BRIGHTON 14 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451025,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,23:30,,,40.69488,-73.94042,"(40.69488, -73.94042)",MARCUS GARVEY BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unsafe Speed,,,,4451503,Motorscooter,Motorscooter,,, +08/26/2021,4:28,,,40.88643,-73.895805,"(40.88643, -73.895805)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451657,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,4:58,BROOKLYN,11223,40.604042,-73.98665,"(40.604042, -73.98665)",STILLWELL AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4450833,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,18:37,BROOKLYN,11213,40.67594,-73.94715,"(40.67594, -73.94715)",NEW YORK AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451655,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,1:10,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,Unspecified,,,4450975,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,20:15,BRONX,10469,40.86952,-73.85667,"(40.86952, -73.85667)",LURTING AVENUE,ADEE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4451211,Taxi,,,, +08/27/2021,13:20,,,40.67385,-73.90024,"(40.67385, -73.90024)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451403,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,19:30,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451167,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,14:00,QUEENS,11420,40.67027,-73.820984,"(40.67027, -73.820984)",,,135-46 LEFFERTS BOULEVARD,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4450884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/26/2021,10:20,,,40.52418,-74.2348,"(40.52418, -74.2348)",PAGE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450737,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/26/2021,18:37,BROOKLYN,11211,40.713634,-73.95915,"(40.713634, -73.95915)",,,235 GRAND STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4450911,Pick-up Truck,Bike,,, +08/25/2021,19:15,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4450579,Sedan,Sedan,Sedan,, +08/25/2021,10:51,BROOKLYN,11219,40.63322,-73.99402,"(40.63322, -73.99402)",,,5212 13 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450783,Pick-up Truck,,,, +08/25/2021,18:57,BRONX,10457,40.851467,-73.89557,"(40.851467, -73.89557)",WASHINGTON AVENUE,EAST 180 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450787,Sedan,Bike,,, +08/25/2021,5:15,QUEENS,11418,40.707954,-73.83715,"(40.707954, -73.83715)",METROPOLITAN AVENUE,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4450318,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/26/2021,18:10,BRONX,10463,40.872147,-73.90446,"(40.872147, -73.90446)",,,200 WEST KINGSBRIDGE ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450873,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,15:05,,,40.782887,-73.9439,"(40.782887, -73.9439)",FDR DRIVE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4450603,Sedan,Sedan,,, +08/26/2021,22:37,QUEENS,11379,40.71256,-73.88107,"(40.71256, -73.88107)",,,72-31 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4451783,Pick-up Truck,Sedan,,, +08/26/2021,17:45,,,40.710278,-73.95802,"(40.710278, -73.95802)",BORINQUEN PLACE,SOUTH 4 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451533,Bike,E-Bike,,, +08/25/2021,23:50,,,40.804993,-73.911354,"(40.804993, -73.911354)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450615,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,16:02,QUEENS,11434,40.67784,-73.780266,"(40.67784, -73.780266)",161 PLACE,BAISLEY BOULEVARD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4450933,Sedan,Sedan,,, +08/27/2021,13:04,BRONX,10468,40.86167,-73.908424,"(40.86167, -73.908424)",,,2300 LORING PLACE NORTH,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451109,Ambulance,,,, +08/25/2021,2:59,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",WEST 40 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450824,Box Truck,Sedan,,, +08/26/2021,18:30,BRONX,10454,40.805088,-73.91561,"(40.805088, -73.91561)",,,600 EAST 137 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450957,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,0:18,QUEENS,11373,40.735554,-73.88048,"(40.735554, -73.88048)",,,51-10 VANHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450547,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,15:33,MANHATTAN,10004,40.70627,-74.01292,"(40.70627, -74.01292)",,,42 BROADWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451547,E-Bike,,,, +08/25/2021,13:00,BRONX,10472,40.82615,-73.87766,"(40.82615, -73.87766)",WATSON AVENUE,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450714,Pick-up Truck,Carry All,,, +08/26/2021,22:11,BRONX,10467,40.875225,-73.873535,"(40.875225, -73.873535)",,,3259 PARKSIDE PLACE,1,0,0,0,0,0,1,0,Driverless/Runaway Vehicle,Unspecified,,,,4451040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,1:30,BRONX,10467,40.88547,-73.8637,"(40.88547, -73.8637)",,,3780 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4451700,Sedan,,,, +08/25/2021,13:30,BRONX,10460,40.84483,-73.88404,"(40.84483, -73.88404)",,,2074 MOHEGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451077,Sedan,,,, +08/26/2021,20:00,QUEENS,11369,40.759933,-73.87929,"(40.759933, -73.87929)",,,89-16 31 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451463,Sedan,,,, +08/27/2021,13:32,BROOKLYN,11217,40.68502,-73.97991,"(40.68502, -73.97991)",,,531 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451290,Station Wagon/Sport Utility Vehicle,MOPED,,, +08/26/2021,7:50,,,40.768887,-73.90691,"(40.768887, -73.90691)",49 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451003,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,5:25,,,40.69009,-73.93648,"(40.69009, -73.93648)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451583,Sedan,,,, +11/04/2021,18:40,,,40.68442,-73.97839,"(40.68442, -73.97839)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474197,Sedan,,,, +08/27/2021,11:05,BROOKLYN,11249,40.720074,-73.96282,"(40.720074, -73.96282)",,,22 NORTH 6 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451926,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,9:45,BRONX,10452,40.837425,-73.92037,"(40.837425, -73.92037)",WEST 169 STREET,JEROME AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451245,Sedan,,,, +08/27/2021,13:20,BROOKLYN,11205,40.69408,-73.97206,"(40.69408, -73.97206)",,,126 ADELPHI STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451135,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,6:10,BROOKLYN,11212,40.65533,-73.91601,"(40.65533, -73.91601)",,,9530 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451328,Sedan,,,, +08/23/2021,23:57,BROOKLYN,11221,40.69816,-73.92528,"(40.69816, -73.92528)",DE KALB AVENUE,CENTRAL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451378,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,11:48,BRONX,10453,40.85198,-73.91018,"(40.85198, -73.91018)",WEST TREMONT AVENUE,DAVIDSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4451905,Sedan,,,, +08/25/2021,8:30,BROOKLYN,11207,40.662395,-73.899216,"(40.662395, -73.899216)",RIVERDALE AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450565,Sedan,,,, +08/26/2021,9:40,BRONX,10473,40.820297,-73.854645,"(40.820297, -73.854645)",SEWARD AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451516,Sedan,,,, +08/26/2021,14:25,MANHATTAN,10009,40.72202,-73.98345,"(40.72202, -73.98345)",EAST 2 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450846,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/26/2021,14:25,BRONX,10466,40.902313,-73.84334,"(40.902313, -73.84334)",,,985 EAST 241 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4451683,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/13/2021,23:42,QUEENS,11434,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4451822,Sedan,Sedan,,, +11/03/2021,7:50,BRONX,10455,40.81133,-73.90078,"(40.81133, -73.90078)",BRUCKNER BOULEVARD,AUSTIN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473667,Tractor Truck Diesel,Refrigerated Van,,, +08/27/2021,0:10,,,,,,168 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4450998,Sedan,Sedan,,, +08/27/2021,22:00,BRONX,10452,40.843807,-73.91512,"(40.843807, -73.91512)",,,1560 JEROME AVENUE,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4451234,Sedan,Bike,,, +08/27/2021,8:58,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,6:52,BROOKLYN,11226,40.651695,-73.94968,"(40.651695, -73.94968)",NOSTRAND AVENUE,MARTENSE STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4451390,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,E-Bike, +08/26/2021,14:30,BROOKLYN,11207,40.65698,-73.88943,"(40.65698, -73.88943)",PENNSYLVANIA AVENUE,STANLEY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4451413,Sedan,,,, +08/26/2021,18:17,BROOKLYN,11233,40.672825,-73.911804,"(40.672825, -73.911804)",,,1710 EASTERN PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451067,Sedan,Sedan,,, +08/25/2021,22:00,QUEENS,11374,40.73611,-73.85639,"(40.73611, -73.85639)",HORACE HARDING EXPRESSWAY,102 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450918,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,18:30,BROOKLYN,11236,40.6411,-73.90463,"(40.6411, -73.90463)",FLATLANDS AVENUE,EAST 92 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451178,Station Wagon/Sport Utility Vehicle,Bike,,, +08/27/2021,6:50,BRONX,10475,40.875893,-73.83387,"(40.875893, -73.83387)",,,850 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451030,Van,Sedan,Sedan,, +08/21/2021,0:45,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451645,Taxi,Sedan,,, +08/27/2021,17:20,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CONEY ISLAND AVENUE,CATON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451202,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,15:45,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451131,Sedan,Dump,,, +08/12/2021,17:00,QUEENS,11369,40.76856,-73.86796,"(40.76856, -73.86796)",,,102-10 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451256,Sedan,CARGO VAN,,, +08/26/2021,16:00,BROOKLYN,11233,40.679295,-73.90643,"(40.679295, -73.90643)",EASTERN PARKWAY,SOMERS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451062,Sedan,,,, +08/15/2021,20:24,QUEENS,11357,0,0,"(0.0, 0.0)",,,150-27 20 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451755,Sedan,Sedan,,, +08/25/2021,23:43,,,40.699158,-73.927055,"(40.699158, -73.927055)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451381,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,17:30,QUEENS,11420,40.67709,-73.80757,"(40.67709, -73.80757)",,,116-40 LINCOLN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451571,Sedan,,,, +08/25/2021,14:50,BROOKLYN,11223,40.594124,-73.97365,"(40.594124, -73.97365)",,,2390 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450609,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:14,BROOKLYN,11234,40.62973,-73.922226,"(40.62973, -73.922226)",FLATLANDS AVENUE,EAST 56 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4450483,Station Wagon/Sport Utility Vehicle,Bike,,, +08/25/2021,8:00,QUEENS,11412,40.69289,-73.75376,"(40.69289, -73.75376)",198 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450377,Sedan,,,, +08/25/2021,19:50,,,40.847908,-73.90357,"(40.847908, -73.90357)",ANTHONY AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450648,Van,Bike,,, +08/25/2021,16:49,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",MORRIS AVENUE,EAST 161 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4450720,Taxi,Sedan,,, +08/23/2021,11:30,BROOKLYN,11206,40.69529,-73.94339,"(40.69529, -73.94339)",THROOP AVENUE,VERNON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451634,Sedan,Sedan,,, +08/25/2021,17:57,QUEENS,11385,40.70791,-73.91081,"(40.70791, -73.91081)",WOODWARD AVENUE,HARMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450527,,,,, +08/25/2021,10:30,QUEENS,11379,40.724915,-73.87939,"(40.724915, -73.87939)",,,79-22 ELIOT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4450516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,6:13,,,40.696163,-73.76881,"(40.696163, -73.76881)",DUNKIRK STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4450683,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,16:35,BROOKLYN,11236,40.633404,-73.89477,"(40.633404, -73.89477)",CANARSIE ROAD,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4450838,Bike,,,, +08/25/2021,17:20,,,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451322,Sedan,,,, +08/26/2021,10:45,,,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4451045,Sedan,Flat Bed,,, +08/17/2021,20:30,BROOKLYN,11216,40.683582,-73.953964,"(40.683582, -73.953964)",BEDFORD AVENUE,PUTNAM AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4451661,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/26/2021,15:25,MANHATTAN,10012,40.72949,-73.99827,"(40.72949, -73.99827)",,,1 WASHINGTON SQUARE VILLAGE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451104,Taxi,Sedan,,, +08/26/2021,13:45,QUEENS,11691,40.596256,-73.76684,"(40.596256, -73.76684)",SEAGIRT BOULEVARD,ROCKAWAY FREEWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4450971,Sedan,Sedan,,, +08/27/2021,13:20,BRONX,10460,40.83677,-73.88597,"(40.83677, -73.88597)",EAST 174 STREET,VYSE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451216,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/25/2021,22:52,BROOKLYN,11220,40.63404,-74.02077,"(40.63404, -74.02077)",,,6805 5 AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4450560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,13:20,QUEENS,11362,40.76128,-73.74262,"(40.76128, -73.74262)",DOUGLASTON PARKWAY,BARROWS COURT,,1,0,1,0,0,0,0,0,Unspecified,,,,,4450586,,,,, +08/25/2021,13:00,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450804,Convertible,Sedan,,, +08/26/2021,7:30,,,40.853912,-73.90377,"(40.853912, -73.90377)",EAST 180 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4450765,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,10:30,,,40.641186,-74.014404,"(40.641186, -74.014404)",5 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4450907,Sedan,Sedan,,, +08/27/2021,1:25,QUEENS,11429,40.713898,-73.7488,"(40.713898, -73.7488)",211 STREET,99 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451089,Sedan,Sedan,,, +08/27/2021,20:11,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451539,Sedan,,,, +08/26/2021,16:25,BROOKLYN,11249,40.6999,-73.96168,"(40.6999, -73.96168)",KENT AVENUE,WILLIAMSBURG STREET EAST,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4450926,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/25/2021,19:11,MANHATTAN,10065,40.762802,-73.965675,"(40.762802, -73.965675)",EAST 61 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4450599,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/26/2021,1:55,,,40.798935,-73.93637,"(40.798935, -73.93637)",EAST 119 STREET,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4451072,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,3:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4451866,Van,Sedan,,, +08/26/2021,7:52,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4450952,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,18:00,BROOKLYN,11217,40.687748,-73.980125,"(40.687748, -73.980125)",,,25 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4450551,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,16:30,QUEENS,11434,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451831,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,7:24,,,40.688614,-73.989174,"(40.688614, -73.989174)",SMITH STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4451794,Box Truck,Bike,,, +08/26/2021,19:55,BROOKLYN,11220,40.64023,-74.028275,"(40.64023, -74.028275)",,,134 WAKEMAN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4450890,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,18:30,,,40.67766,-73.80313,"(40.67766, -73.80313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451281,Sedan,Sedan,,, +08/26/2021,23:00,STATEN ISLAND,10308,40.559383,-74.15393,"(40.559383, -74.15393)",BARLOW AVENUE,GIFFORDS LANE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451146,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,20:52,MANHATTAN,10034,40.862392,-73.91802,"(40.862392, -73.91802)",9 AVENUE,WEST 205 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450745,Sedan,,,, +08/21/2021,17:52,,,40.758865,-73.938324,"(40.758865, -73.938324)",14 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451472,Sedan,,,, +08/27/2021,15:30,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451163,Sedan,E-Scooter,,, +08/26/2021,14:00,BROOKLYN,11211,40.709156,-73.957695,"(40.709156, -73.957695)",,,283 SOUTH 5 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451249,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/26/2021,15:30,STATEN ISLAND,10304,40.626003,-74.07525,"(40.626003, -74.07525)",BAY STREET,THOMPSON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451446,Sedan,Sedan,,, +08/26/2021,10:20,,,40.676548,-73.96354,"(40.676548, -73.96354)",WASHINGTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451307,Sedan,Sedan,,, +08/27/2021,13:38,QUEENS,11422,40.67138,-73.732124,"(40.67138, -73.732124)",135 AVENUE,243 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4451094,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/25/2021,0:00,QUEENS,11432,40.71253,-73.789764,"(40.71253, -73.789764)",,,87-50 KINGSTON PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4450757,Sedan,Sedan,,, +08/27/2021,1:23,BROOKLYN,11210,40.635326,-73.94794,"(40.635326, -73.94794)",,,2054 NOSTRAND AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4451198,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/26/2021,22:20,,,40.756367,-73.96012,"(40.756367, -73.96012)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4451099,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/26/2021,8:00,BROOKLYN,11212,40.656273,-73.90731,"(40.656273, -73.90731)",ROCKAWAY AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451057,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,18:09,MANHATTAN,10006,,,,,,50 west street,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450964,Sedan,,,, +08/26/2021,12:10,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4451351,Sedan,,,, +08/26/2021,8:15,BROOKLYN,11236,40.63531,-73.90804,"(40.63531, -73.90804)",,,1031 EAST 84 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450774,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Outside Car Distraction,,,,4451678,Station Wagon/Sport Utility Vehicle,Dump,,, +08/25/2021,20:30,BROOKLYN,11208,40.665787,-73.87984,"(40.665787, -73.87984)",,,783 LINWOOD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4450571,Sedan,,,, +11/04/2021,12:15,MANHATTAN,10019,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4474144,Station Wagon/Sport Utility Vehicle,Bike,,, +11/03/2021,13:33,,,40.837223,-73.82529,"(40.837223, -73.82529)",THROGS NECK EXPRESSWAY,BRUCKNER EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473974,Tractor Truck Diesel,Tractor Truck Diesel,,, +11/03/2021,23:03,MANHATTAN,10016,40.748302,-73.97835,"(40.748302, -73.97835)",EAST 37 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474582,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,18:26,,,40.720238,-73.94441,"(40.720238, -73.94441)",HUMBOLDT STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4474249,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,22:55,BRONX,10460,40.840473,-73.87399,"(40.840473, -73.87399)",,,1180 LEBANON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518887,Taxi,,,, +11/03/2021,12:30,QUEENS,11427,40.72992,-73.74243,"(40.72992, -73.74243)",BRADDOCK AVENUE,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474289,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,20:55,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4474037,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,16:35,QUEENS,11377,40.747913,-73.90337,"(40.747913, -73.90337)",60 STREET,38 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4473752,Moped,,,, +11/03/2021,12:47,BROOKLYN,11239,40.652878,-73.87706,"(40.652878, -73.87706)",,,410 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4473871,Sedan,,,, +11/05/2021,4:50,QUEENS,11357,40.790478,-73.830864,"(40.790478, -73.830864)",,,7-12 POINT CRESCENT,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4474555,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,12:15,MANHATTAN,10017,40.751606,-73.97045,"(40.751606, -73.97045)",,,301 EAST 45 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474300,Sedan,Bus,,, +11/04/2021,8:39,,,,,,EAST 37 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474015,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,8:45,QUEENS,11377,40.746906,-73.90161,"(40.746906, -73.90161)",62 STREET,39 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473921,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,17:00,,,40.8375,-73.91061,"(40.8375, -73.91061)",EAST 170 STREET,,,1,0,1,0,0,0,0,0,,,,,,4474745,,,,, +11/04/2021,14:30,,,40.785095,-73.97691,"(40.785095, -73.97691)",WEST 82 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474317,Box Truck,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,21:22,BRONX,10466,40.884907,-73.85396,"(40.884907, -73.85396)",,,939 EAST 224 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474852,Ambulance,Sedan,,, +11/04/2021,15:50,BROOKLYN,11203,40.653507,-73.92668,"(40.653507, -73.92668)",,,214 EAST 54 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474845,Bus,Sedan,,, +11/03/2021,10:39,,,40.662693,-73.995705,"(40.662693, -73.995705)",21 STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4473660,Sedan,E-Bike,,, +11/03/2021,4:40,BROOKLYN,11236,40.634853,-73.90753,"(40.634853, -73.90753)",,,1051 EAST 84 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,,4473589,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/03/2021,20:35,,,40.525352,-74.20667,"(40.525352, -74.20667)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4473803,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,8:05,BROOKLYN,11217,40.68656,-73.983864,"(40.68656, -73.983864)",,,423 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4474470,Sedan,Sedan,,, +11/03/2021,14:45,QUEENS,11365,40.734196,-73.78355,"(40.734196, -73.78355)",,,69-60 188 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474183,Sedan,E-Bike,,, +11/03/2021,21:18,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",ATKINS AVENUE,COZINE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4473879,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/03/2021,11:28,,,40.752316,-73.8324,"(40.752316, -73.8324)",AVERY AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4473758,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +10/14/2021,12:21,MANHATTAN,10029,,,,EAST 105 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4467276,Sedan,Sedan,,, +10/31/2021,18:30,STATEN ISLAND,10309,40.533817,-74.20101,"(40.533817, -74.20101)",VERNON AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474277,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,8:40,QUEENS,11105,40.772263,-73.89744,"(40.772263, -73.89744)",,,20-31 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474103,Pick-up Truck,,,, +11/03/2021,8:20,QUEENS,11435,40.694065,-73.80142,"(40.694065, -73.80142)",107 AVENUE,SUTPHIN BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4474127,Sedan,Sedan,,, +11/05/2021,18:30,QUEENS,11375,40.71717,-73.834946,"(40.71717, -73.834946)",QUEENS BOULEVARD,76 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4474332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,2:41,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4474412,Sedan,,,, +11/04/2021,8:50,,,40.725792,-74.01103,"(40.725792, -74.01103)",WEST STREET,CANAL STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4474059,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,20:40,QUEENS,11369,40.76946,-73.87843,"(40.76946, -73.87843)",,,22-18 92 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Failure to Yield Right-of-Way,,,,4474606,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,0:55,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451186,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,15:30,BROOKLYN,11212,40.668007,-73.91031,"(40.668007, -73.91031)",,,489 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474377,LIMO,,,, +11/03/2021,12:35,BROOKLYN,11222,40.725452,-73.94573,"(40.725452, -73.94573)",,,185 NASSAU AVENUE,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4474816,Pick-up Truck,E-Bike,,, +11/04/2021,16:30,MANHATTAN,10024,40.783024,-73.98213,"(40.783024, -73.98213)",WEST 77 STREET,WEST END AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474164,Sedan,,,, +11/03/2021,10:00,STATEN ISLAND,10312,40.535892,-74.158485,"(40.535892, -74.158485)",,,279 LYNDALE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4474282,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,5:50,QUEENS,11434,40.68111,-73.761185,"(40.68111, -73.761185)",FARMERS BOULEVARD,SIDWAY PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4475113,Sedan,Sedan,Sedan,Pick-up Truck, +11/05/2021,16:45,QUEENS,11378,40.726624,-73.906456,"(40.726624, -73.906456)",BORDEN AVENUE,55 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474924,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:30,MANHATTAN,10029,40.798946,-73.94241,"(40.798946, -73.94241)",,,116 EAST 116 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498006,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:11,,,40.76591,-73.96341,"(40.76591, -73.96341)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4474243,GARBAGE TR,Sedan,,, +11/04/2021,8:22,,,40.784996,-73.824234,"(40.784996, -73.824234)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4474451,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,7:49,QUEENS,11433,40.69083,-73.78706,"(40.69083, -73.78706)",BREWER BOULEVARD,MATHIAS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474438,Sedan,Van,,, +11/03/2021,11:50,STATEN ISLAND,10308,40.550766,-74.15017,"(40.550766, -74.15017)",AMBOY ROAD,GIFFORDS LANE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4473824,Sedan,,,, +11/04/2021,18:48,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4474718,Sedan,Sedan,,, +11/04/2021,8:15,MANHATTAN,10029,40.797943,-73.94213,"(40.797943, -73.94213)",LEXINGTON AVENUE,EAST 115 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4474070,Sedan,PK,,, +10/08/2021,0:00,,,,,,MAPLE,TROY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4474877,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,6:10,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474180,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,13:50,BROOKLYN,11212,40.661274,-73.917564,"(40.661274, -73.917564)",,,21 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473946,Sedan,,,, +11/04/2021,18:51,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474193,Sedan,,,, +11/05/2021,19:54,,,40.73769,-73.76858,"(40.73769, -73.76858)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474529,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,12:00,BRONX,10473,40.807102,-73.85576,"(40.807102, -73.85576)",,,1900 CORNELL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474787,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,18:00,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",LINCOLN AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474346,Pick-up Truck,Sedan,,, +11/04/2021,16:30,BRONX,10451,40.822033,-73.91182,"(40.822033, -73.91182)",EAST 159 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4474209,Bus,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,16:45,MANHATTAN,10029,40.786175,-73.9457,"(40.786175, -73.9457)",EAST 99 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,21:30,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474925,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,13:00,BROOKLYN,11213,40.664642,-73.93708,"(40.664642, -73.93708)",TROY AVENUE,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474309,Station Wagon/Sport Utility Vehicle,Bus,,, +11/03/2021,0:00,BROOKLYN,11213,40.679367,-73.931335,"(40.679367, -73.931335)",FULTON STREET,STUYVESANT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4473704,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/04/2021,7:30,QUEENS,11372,40.752285,-73.88004,"(40.752285, -73.88004)",87 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4473994,Sedan,Bus,,, +10/21/2021,15:50,BROOKLYN,11213,,,,TROY AVENUE,LINCOLN PLACE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4474936,Station Wagon/Sport Utility Vehicle,Bike,,, +11/04/2021,11:30,QUEENS,11378,40.71828,-73.914,"(40.71828, -73.914)",,,58-90 55 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474148,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,6:05,BROOKLYN,11222,40.731422,-73.94641,"(40.731422, -73.94641)",GREENPOINT AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4473938,Sedan,Sedan,,, +11/03/2021,5:55,QUEENS,11434,40.69165,-73.779205,"(40.69165, -73.779205)",MERRICK BOULEVARD,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4473682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,10:50,,,40.68777,-73.98701,"(40.68777, -73.98701)",HOYT STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473743,Sedan,Bike,,, +11/04/2021,6:00,BRONX,10466,40.896694,-73.853516,"(40.896694, -73.853516)",EAST 237 STREET,BYRON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474904,Sedan,Sedan,,, +10/29/2021,0:00,,,,,,MOSHOLU PARKWAY,gun hill road,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4474304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,7:40,QUEENS,11420,40.665684,-73.820435,"(40.665684, -73.820435)",NORTH CONDUIT AVENUE,121 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474990,Sedan,Sedan,,, +11/03/2021,14:32,BROOKLYN,11226,40.651474,-73.96127,"(40.651474, -73.96127)",,,465 OCEAN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474041,Sedan,Pick-up Truck,,, +11/04/2021,8:45,QUEENS,11377,40.740532,-73.914444,"(40.740532, -73.914444)",47 AVENUE,51 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474034,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,7:30,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4473655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,15:30,MANHATTAN,10069,40.77683,-73.989136,"(40.77683, -73.989136)",RIVERSIDE BOULEVARD,WEST 66 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474321,Sedan,,,, +11/05/2021,10:07,BROOKLYN,11236,40.650448,-73.91111,"(40.650448, -73.91111)",DITMAS AVENUE,EAST 95 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474858,Station Wagon/Sport Utility Vehicle,Bike,,, +11/05/2021,13:43,BRONX,10456,40.830837,-73.9166,"(40.830837, -73.9166)",EAST 166 STREET,GRANT AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Driver Inattention/Distraction,Unspecified,,,4475040,Taxi,Sedan,,, +11/03/2021,15:51,MANHATTAN,10023,40.78178,-73.98508,"(40.78178, -73.98508)",WEST 74 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474165,Sedan,Motorcycle,,, +11/01/2021,19:00,,,40.767117,-73.956505,"(40.767117, -73.956505)",EAST 71 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4475033,Sedan,,,, +11/04/2021,1:45,QUEENS,11435,40.707375,-73.80969,"(40.707375, -73.80969)",148 STREET,87 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474272,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,15:30,MANHATTAN,10036,40.76099,-73.99077,"(40.76099, -73.99077)",WEST 46 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474505,Sedan,Box Truck,,, +11/05/2021,11:30,BRONX,10452,40.838158,-73.92324,"(40.838158, -73.92324)",SHAKESPEARE AVENUE,WEST 168 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474750,Sedan,,,, +10/31/2021,14:20,,,40.607918,-74.138916,"(40.607918, -74.138916)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474466,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,9:15,,,40.68916,-73.99263,"(40.68916, -73.99263)",COURT STREET,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474198,Sedan,Sedan,,, +11/04/2021,1:07,STATEN ISLAND,10301,40.648228,-74.0845,"(40.648228, -74.0845)",RICHMOND TERRACE,SAINT PETERS PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474066,Sedan,Sedan,,, +11/03/2021,15:50,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474222,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,19:30,QUEENS,11101,40.74648,-73.94402,"(40.74648, -73.94402)",JACKSON AVENUE,COURT SQUARE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473855,Ambulance,,,, +11/03/2021,13:04,QUEENS,11433,40.70461,-73.79701,"(40.70461, -73.79701)",BREWER BOULEVARD,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4474113,Sedan,,,, +11/04/2021,10:00,,,40.70082,-73.78954,"(40.70082, -73.78954)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4474121,Sedan,Bus,,, +11/03/2021,5:45,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",EAST 62 STREET,YORK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473560,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,10:00,BROOKLYN,11205,40.693207,-73.971596,"(40.693207, -73.971596)",,,361 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474187,Box Truck,Sedan,,, +11/03/2021,18:00,QUEENS,11105,40.780735,-73.91462,"(40.780735, -73.91462)",23 STREET,21 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4473895,Sedan,Sedan,Sedan,, +10/15/2021,22:35,BRONX,10455,,,,,,616 WALES AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4469657,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,8:40,BROOKLYN,11221,40.692154,-73.93161,"(40.692154, -73.93161)",,,1015 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474879,Bus,Sedan,,, +11/03/2021,18:18,BRONX,10466,40.88944,-73.84609,"(40.88944, -73.84609)",,,4187 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4473917,Sedan,,,, +11/04/2021,20:30,,,,,,MAIN STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474238,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/04/2021,23:20,MANHATTAN,10019,40.76429,-73.982834,"(40.76429, -73.982834)",,,1717 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474408,Pick-up Truck,Sedan,,, +11/03/2021,23:00,QUEENS,11101,40.73634,-73.93266,"(40.73634, -73.93266)",GALE AVENUE,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474155,Sedan,Pick-up Truck,,, +11/04/2021,13:40,BROOKLYN,11235,40.590305,-73.95265,"(40.590305, -73.95265)",,,1710 AVENUE Y,0,0,0,0,0,0,0,0,Unspecified,,,,,4474256,Sedan,,,, +11/03/2021,4:59,BROOKLYN,11207,40.679337,-73.89483,"(40.679337, -73.89483)",JAMAICA AVENUE,WYONA STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4473811,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/04/2021,17:40,BROOKLYN,11220,40.64712,-74.01517,"(40.64712, -74.01517)",51 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4474888,Sedan,Fire truck,,, +11/03/2021,21:15,BROOKLYN,11230,40.63016,-73.96041,"(40.63016, -73.96041)",AVENUE H,EAST 17 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4474046,Sedan,Bike,,, +11/05/2021,17:04,BRONX,10458,40.857525,-73.8818,"(40.857525, -73.8818)",EAST FORDHAM ROAD,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475109,Sedan,Station Wagon/Sport Utility Vehicle,Moped,, +10/25/2021,10:55,QUEENS,11377,40.74462,-73.90257,"(40.74462, -73.90257)",,,62-01 WOODSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474373,Sedan,,,, +11/05/2021,21:30,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4474823,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:01,BROOKLYN,11226,40.655678,-73.95909,"(40.655678, -73.95909)",,,270 PARKSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474599,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,11:50,QUEENS,11358,40.753838,-73.805824,"(40.753838, -73.805824)",46 AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,13:50,,,,,,METROPOLITAN AVENUE,RENTAR PLAZA,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,Unspecified,,,4474919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/04/2021,20:00,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",WEST 180 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474560,Sedan,,,, +10/28/2021,19:30,QUEENS,11435,40.68747,-73.794785,"(40.68747, -73.794785)",SUTPHIN BOULEVARD,112 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,,,,4474434,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,18:45,MANHATTAN,10002,40.716248,-73.995575,"(40.716248, -73.995575)",,,139 CANAL STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474688,,,,, +10/22/2021,14:00,,,,,,EAST 161 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474724,Sedan,,,, +11/04/2021,0:10,BROOKLYN,11234,40.6107,-73.92113,"(40.6107, -73.92113)",AVENUE U,EAST 53 PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4473841,Sedan,Bus,,, +11/05/2021,12:27,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",EAST 233 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474868,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,7:45,QUEENS,11432,,,,UTOPIA PARKWAY,80 ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474176,Sedan,Bus,,, +11/04/2021,12:32,,,40.820877,-73.94517,"(40.820877, -73.94517)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475080,Sedan,,,, +11/05/2021,14:45,QUEENS,11358,40.753464,-73.79142,"(40.753464, -73.79142)",189 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474314,Pick-up Truck,Sedan,,, +11/04/2021,11:44,MANHATTAN,10075,40.7705,-73.94801,"(40.7705, -73.94801)",,,2 EAST END AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474294,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/05/2021,22:00,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4474540,Sedan,,,, +11/04/2021,15:00,BROOKLYN,11220,40.64824,-74.01401,"(40.64824, -74.01401)",49 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474955,Sedan,Garbage or Refuse,,, +11/05/2021,19:52,,,40.73361,-73.835915,"(40.73361, -73.835915)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474733,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,15:30,BROOKLYN,11233,40.668606,-73.92208,"(40.668606, -73.92208)",EASTERN PARKWAY,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474762,Sedan,,,, +11/05/2021,8:40,,,40.716183,-73.98075,"(40.716183, -73.98075)",DELANCEY STREET,,,1,0,1,0,0,0,0,0,Glare,,,,,4474363,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,16:00,BROOKLYN,11237,40.707863,-73.92364,"(40.707863, -73.92364)",,,1221 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474229,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,10:00,BRONX,10473,,,,WHITE PLAINS ROAD,LACOMBE AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474477,Pick-up Truck,Bike,,, +11/04/2021,12:30,QUEENS,11426,40.73289,-73.72114,"(40.73289, -73.72114)",COMMONWEALTH BOULEVARD,85 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474326,Sedan,Sedan,,, +11/04/2021,20:30,QUEENS,11417,40.681694,-73.84665,"(40.681694, -73.84665)",,,103-02 93 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475011,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,20:40,STATEN ISLAND,10312,40.53722,-74.17938,"(40.53722, -74.17938)",,,1007 ANNADALE ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474498,Sedan,Sedan,,, +11/04/2021,12:30,BROOKLYN,11236,40.637333,-73.89899,"(40.637333, -73.89899)",,,1392 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474430,Sedan,,,, +01/30/2022,16:41,QUEENS,11691,40.600433,-73.76445,"(40.600433, -73.76445)",HARTMAN LANE,OCEAN CREST BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498956,Sedan,Sedan,,, +11/01/2021,20:10,,,40.577244,-74.00004,"(40.577244, -74.00004)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474358,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,23:17,BRONX,10465,40.824535,-73.81983,"(40.824535, -73.81983)",,,2918 SCHLEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475127,Sedan,,,, +11/05/2021,17:00,QUEENS,11368,40.738697,-73.85898,"(40.738697, -73.85898)",57 AVENUE,100 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474727,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,19:49,QUEENS,11378,40.729015,-73.900246,"(40.729015, -73.900246)",65 PLACE,53 DRIVE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4474913,Sedan,,,, +11/03/2021,0:00,MANHATTAN,10021,40.772373,-73.96079,"(40.772373, -73.96079)",LEXINGTON AVENUE,EAST 75 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,14:23,BROOKLYN,11205,40.688797,-73.96897,"(40.688797, -73.96897)",,,309 VANDERBILT AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4473731,Station Wagon/Sport Utility Vehicle,Bike,,, +11/03/2021,4:30,BRONX,10457,40.84498,-73.89272,"(40.84498, -73.89272)",,,1908 BELMONT AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4473631,Sedan,Sedan,Sedan,, +11/04/2021,7:50,BRONX,10457,40.85053,-73.891945,"(40.85053, -73.891945)",,,2111 LAFONTAINE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4473981,Bus,,,, +11/04/2021,10:13,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474052,Sedan,,,, +10/07/2021,23:00,,,40.614193,-73.8972,"(40.614193, -73.8972)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474986,Sedan,,,, +11/03/2021,15:45,,,40.7549,-73.74548,"(40.7549, -73.74548)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4473783,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,7:00,BROOKLYN,11213,40.666935,-73.92998,"(40.666935, -73.92998)",,,1720 PRESIDENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4473768,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,9:08,BROOKLYN,11219,40.632584,-74.00631,"(40.632584, -74.00631)",FORT HAMILTON PARKWAY,61 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4474029,Sedan,Bike,,, +11/04/2021,17:09,,,,,,WEST END AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474170,Sedan,Sedan,,, +11/05/2021,8:00,BROOKLYN,11230,40.62782,-73.965744,"(40.62782, -73.965744)",,,1223 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474681,Sedan,,,, +11/04/2021,19:50,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4474341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,15:06,,,40.788948,-73.94057,"(40.788948, -73.94057)",1 AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4475057,Sedan,,,, +11/04/2021,23:33,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4474402,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,14:15,QUEENS,11432,40.711548,-73.790726,"(40.711548, -73.790726)",,,171-33 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474268,Sedan,,,, +11/05/2021,23:04,BROOKLYN,11234,40.6307,-73.924904,"(40.6307, -73.924904)",,,5324 AVENUE I,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4474514,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +08/28/2021,2:00,,,40.766155,-73.7794,"(40.766155, -73.7794)",36 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451674,Sedan,,,, +11/04/2021,0:10,,,40.74088,-73.737015,"(40.74088, -73.737015)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4473836,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,10:30,,,40.633514,-74.01561,"(40.633514, -74.01561)",7 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473867,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,8:50,,,40.86369,-73.91707,"(40.86369, -73.91707)",9 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474138,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,19:30,BROOKLYN,11203,40.650227,-73.92827,"(40.650227, -73.92827)",EAST 52 STREET,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4474089,Sedan,Sedan,Sedan,, +11/04/2021,9:00,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",78 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,17:05,QUEENS,11377,40.746235,-73.89895,"(40.746235, -73.89895)",65 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474385,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,12:43,QUEENS,11368,40.740192,-73.85335,"(40.740192, -73.85335)",108 STREET,VANDOREN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/04/2021,17:44,MANHATTAN,10013,40.719902,-74.00261,"(40.719902, -74.00261)",CANAL STREET,MERCER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474234,Sedan,Box Truck,,, +11/04/2021,5:10,,,40.72942,-73.87881,"(40.72942, -73.87881)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473886,Tractor Truck Diesel,Sedan,,, +01/31/2022,11:15,QUEENS,11356,40.78449,-73.839455,"(40.78449, -73.839455)",,,15-20 129 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498868,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,7:45,QUEENS,11691,40.598873,-73.74902,"(40.598873, -73.74902)",,,15-01 NEW HAVEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474252,Sedan,,,, +11/04/2021,1:14,MANHATTAN,10022,40.76093,-73.96914,"(40.76093, -73.96914)",EAST 57 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4473828,Taxi,Sedan,,, +11/04/2021,10:50,QUEENS,11375,40.7079,-73.851105,"(40.7079, -73.851105)",71 AVENUE,UNION TURNPIKE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474203,E-Scooter,,,, +11/05/2021,12:00,BRONX,10454,40.800503,-73.9146,"(40.800503, -73.9146)",,,770 EAST 132 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474594,Sedan,,,, +10/29/2021,9:00,,,40.575203,-74.169846,"(40.575203, -74.169846)",,,2873 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474445,Sedan,,,, +11/03/2021,8:35,QUEENS,11377,40.741047,-73.91818,"(40.741047, -73.91818)",47 AVENUE,47 STREET,,0,1,0,0,0,1,0,0,Unspecified,Unspecified,,,,4474072,Box Truck,Bike,,, +11/04/2021,22:56,,,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474835,Taxi,Sedan,,, +11/05/2021,8:50,,,40.74777,-73.768684,"(40.74777, -73.768684)",OCEANIA STREET,,,0,0,0,0,0,0,0,0,,,,,,4474462,,,,, +11/05/2021,20:27,MANHATTAN,10002,40.719593,-73.986755,"(40.719593, -73.986755)",NORFOLK STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474565,Convertible,Sedan,,, +11/05/2021,18:00,BRONX,10462,40.835026,-73.858086,"(40.835026, -73.858086)",MCGRAW AVENUE,PUGSLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474791,Sedan,,,, +11/05/2021,12:00,MANHATTAN,10011,40.74051,-73.996544,"(40.74051, -73.996544)",,,155 WEST 18 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474633,Pick-up Truck,E-Scooter,,, +11/05/2021,23:40,,,40.733696,-73.72526,"(40.733696, -73.72526)",241 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4474390,,,,, +11/03/2021,16:28,,,40.856106,-73.90646,"(40.856106, -73.90646)",DAVIDSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474080,Sedan,Bus,,, +11/03/2021,8:15,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4474494,Sedan,Sedan,Sedan,, +10/18/2021,21:39,MANHATTAN,10031,,,,SAINT NICHOLAS PLACE,WEST 153 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4474396,Sedan,Sedan,Sedan,Sedan,Motorcycle +11/02/2021,19:45,,,40.83863,-73.93348,"(40.83863, -73.93348)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474353,Sedan,Sedan,,, +11/04/2021,19:30,QUEENS,11370,40.75908,-73.89645,"(40.75908, -73.89645)",,,30-54 71 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474263,Sedan,,,, +11/04/2021,12:00,BRONX,10465,40.821613,-73.80891,"(40.821613, -73.80891)",,,3133 MILES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474709,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/04/2021,9:45,,,40.828407,-73.93125,"(40.828407, -73.93125)",MACOMBS DAM BRIDGE,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474098,Sedan,Sedan,,, +10/26/2021,9:00,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",3 AVENUE,EAST 180 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475074,Sedan,,,, +11/03/2021,10:30,BRONX,10455,40.813232,-73.90908,"(40.813232, -73.90908)",JACKSON AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4473847,Sedan,,,, +12/12/2021,10:30,MANHATTAN,10019,40.76457,-73.97364,"(40.76457, -73.97364)",CENTRAL PARK SOUTH,GRAND ARMY PLAZA,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4486085,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,4:04,BRONX,10458,40.870594,-73.88326,"(40.870594, -73.88326)",PERRY AVENUE,EAST 201 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4486359,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,14:30,QUEENS,11435,40.705944,-73.81202,"(40.705944, -73.81202)",144 STREET,87 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485915,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,16:50,,,40.884487,-73.86567,"(40.884487, -73.86567)",CARPENTER AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4485994,,,,, +12/05/2021,17:00,BROOKLYN,11221,40.686966,-73.91801,"(40.686966, -73.91801)",JEFFERSON AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486546,Sedan,,,, +12/11/2021,14:16,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",12 AVENUE,WEST 56 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486404,Sedan,,,, +12/12/2021,3:37,,,40.671616,-73.89775,"(40.671616, -73.89775)",GEORGIA AVENUE,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4486023,Sedan,Sedan,,, +12/12/2021,0:41,,,40.670853,-73.77188,"(40.670853, -73.77188)",140 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486415,Sedan,,,, +12/12/2021,0:15,BROOKLYN,11209,40.616398,-74.02807,"(40.616398, -74.02807)",,,9224 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4485499,Pick-up Truck,,,, +12/05/2021,14:00,,,,,,EASTCHESTER ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486499,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,20:15,BROOKLYN,11201,40.691303,-73.9844,"(40.691303, -73.9844)",,,228 DUFFIELD STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485841,,,,, +12/12/2021,0:00,MANHATTAN,10021,40.766666,-73.95929,"(40.766666, -73.95929)",,,309 EAST 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485733,Sedan,,,, +12/12/2021,20:28,,,40.616608,-74.14234,"(40.616608, -74.14234)",WATCHOGUE ROAD,CRYSTAL AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4486121,Sedan,Station Wagon/Sport Utility Vehicle,Bus,, +12/02/2021,17:03,QUEENS,11385,40.703766,-73.875015,"(40.703766, -73.875015)",,,78-24 74 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4486482,Sedan,Sedan,Sedan,Sedan,Sedan +12/10/2021,16:20,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4486384,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,23:50,,,40.738213,-73.80107,"(40.738213, -73.80107)",LONG ISLAND EXPRESSWAY,,,4,0,0,0,0,0,4,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4485919,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,20:37,QUEENS,11368,40.74284,-73.853874,"(40.74284, -73.853874)",,,108-55 53 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4485974,Sedan,,,, +12/08/2021,13:26,,,40.752693,-73.932915,"(40.752693, -73.932915)",39 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486347,Sedan,,,, +12/12/2021,16:06,STATEN ISLAND,10314,0,0,"(0.0, 0.0)",MAINE AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486054,Sedan,,,, +12/12/2021,2:20,BROOKLYN,11215,40.67005,-73.98808,"(40.67005, -73.98808)",,,249 9 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4485771,Station Wagon/Sport Utility Vehicle,Bus,,, +12/12/2021,19:20,BROOKLYN,11249,40.703686,-73.965065,"(40.703686, -73.965065)",WILSON STREET,WYTHE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4485802,Sedan,Moped,,, +12/12/2021,14:30,BROOKLYN,11228,40.618584,-74.009224,"(40.618584, -74.009224)",13 AVENUE,78 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4485664,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/05/2021,16:08,BRONX,10471,40.896393,-73.896805,"(40.896393, -73.896805)",,,6211 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4486596,Sedan,Dump,Sedan,, +12/12/2021,14:28,BRONX,10453,40.8514,-73.90606,"(40.8514, -73.90606)",CRESTON AVENUE,EAST 179 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486075,Ambulance,Sedan,,, +12/12/2021,11:35,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485879,Sedan,,,, +12/12/2021,20:35,QUEENS,11385,0,0,"(0.0, 0.0)",,,1666 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486491,Sedan,,,, +12/12/2021,19:30,MANHATTAN,10025,,,,94 street,west end avenue,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4485782,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,20:36,BROOKLYN,11209,40.63275,-74.02428,"(40.63275, -74.02428)",,,7201 4 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485815,Sedan,Bike,,, +01/26/2022,16:26,QUEENS,11434,40.690342,-73.78243,"(40.690342, -73.78243)",LINDEN BOULEVARD,167 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499037,Sedan,,,, +01/29/2022,14:00,QUEENS,11413,40.665955,-73.76084,"(40.665955, -73.76084)",SOUTH CONDUIT AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498270,Sedan,,,, +01/14/2022,17:20,,,40.82267,-73.92007,"(40.82267, -73.92007)",CONCOURSE VILLAGE EAST,EAST 156 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498283,Sedan,,,, +01/29/2022,9:00,,,40.71508,-73.73789,"(40.71508, -73.73789)",218 STREET,100 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498302,Sedan,,,, +01/30/2022,17:30,,,,,,HORACE HARDING EXPRESSWAY,OCEANIA STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498547,Sedan,Sedan,,, +01/26/2022,0:00,BRONX,10467,,,,BARKER AVENUE,ROSEWOOD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4498418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/26/2022,14:10,BROOKLYN,11235,40.590633,-73.94976,"(40.590633, -73.94976)",AVENUE Y,OCEAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498019,Sedan,,,, +01/31/2022,18:17,BROOKLYN,11233,40.67087,-73.91967,"(40.67087, -73.91967)",,,1741 STERLING PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499448,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,1:16,STATEN ISLAND,10301,40.636623,-74.08179,"(40.636623, -74.08179)",VICTORY BOULEVARD,WESTERVELT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4518904,Sedan,Sedan,,, +01/26/2022,9:23,BROOKLYN,11229,40.59581,-73.94204,"(40.59581, -73.94204)",AVENUE W,EAST 29 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498007,Sedan,Sedan,,, +01/31/2022,10:00,,,40.63056,-74.1057,"(40.63056, -74.1057)",FOREST AVENUE,BARD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4499426,Sedan,Sedan,,, +01/26/2022,17:35,BRONX,10461,40.84134,-73.83707,"(40.84134, -73.83707)",ERICSON PLACE,WELLMAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498633,Sedan,,,, +01/27/2022,8:40,MANHATTAN,10009,40.724876,-73.975174,"(40.724876, -73.975174)",EAST 10 STREET,AVENUE D,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498239,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,16:44,BRONX,10454,40.81099,-73.914856,"(40.81099, -73.914856)",SAINT ANNS AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498371,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,8:36,BROOKLYN,11218,40.65159,-73.98112,"(40.65159, -73.98112)",MC DONALD AVENUE,VANDERBILT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4498034,Sedan,,,, +01/25/2022,22:00,BROOKLYN,11222,40.73151,-73.954475,"(40.73151, -73.954475)",,,946 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4499047,,,,, +01/29/2022,1:35,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4498707,Sedan,Sedan,,, +01/31/2022,0:54,BROOKLYN,11225,40.660297,-73.947685,"(40.660297, -73.947685)",MIDWOOD STREET,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4499537,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/17/2022,19:15,QUEENS,11429,40.70621,-73.75072,"(40.70621, -73.75072)",,,110-03 FRANCIS LEWIS BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4497996,Sedan,,,, +01/30/2022,15:28,QUEENS,11419,40.69011,-73.81206,"(40.69011, -73.81206)",134 STREET,105 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4498552,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,0:00,QUEENS,11355,40.749928,-73.814026,"(40.749928, -73.814026)",BOWNE STREET,NEGUNDO AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498166,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,7:15,BROOKLYN,11221,40.700478,-73.92534,"(40.700478, -73.92534)",WILSON AVENUE,SUYDAM STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4498701,Bus,Bus,,, +01/30/2022,23:37,BROOKLYN,11226,40.646885,-73.94916,"(40.646885, -73.94916)",NOSTRAND AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4498768,Sedan,,,, +01/27/2022,21:45,,,40.71713,-73.7986,"(40.71713, -73.7986)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4498354,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,9:24,,,40.73984,-73.89766,"(40.73984, -73.89766)",LAUREL HILL BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498486,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,12:18,QUEENS,11101,40.75112,-73.940605,"(40.75112, -73.940605)",,,24-15 QUEENS PLAZA NORTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4498092,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,20:30,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",RALPH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499447,Bus,,,, +01/30/2022,21:17,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498569,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,17:00,BRONX,10451,40.819267,-73.926994,"(40.819267, -73.926994)",,,573 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498601,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,11:00,BROOKLYN,11222,40.725906,-73.9354,"(40.725906, -73.9354)",VARICK STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,,,,4498821,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/31/2022,16:28,QUEENS,11385,40.71114,-73.9035,"(40.71114, -73.9035)",,,60-18 BLEECKER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498900,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,13:40,BROOKLYN,11222,40.726913,-73.94187,"(40.726913, -73.94187)",,,303 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4498684,Box Truck,,,, +01/30/2022,15:15,BRONX,10472,40.83609,-73.87524,"(40.83609, -73.87524)",HARROD AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498734,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,9:15,MANHATTAN,10026,40.80654,-73.9564,"(40.80654, -73.9564)",,,358 WEST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498785,Station Wagon/Sport Utility Vehicle,,,, +12/07/2021,11:50,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4498107,Dump,Pick-up Truck,,, +01/30/2022,11:30,BROOKLYN,11214,40.58546,-73.9891,"(40.58546, -73.9891)",SHORE PARKWAY,BAY 49 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4498326,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,18:00,,,40.83169,-73.949265,"(40.83169, -73.949265)",WEST 152 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499509,Sedan,,,, +01/31/2022,21:00,BROOKLYN,11232,40.65388,-74.0037,"(40.65388, -74.0037)",,,421 36 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,8:30,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498339,Sedan,Van,,, +01/28/2022,9:31,BROOKLYN,11212,40.6626,-73.91771,"(40.6626, -73.91771)",,,220 GRAFTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499260,Sedan,,,, +01/24/2022,6:45,,,40.766617,-73.8389,"(40.766617, -73.8389)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498178,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,21:58,,,40.719437,-73.94063,"(40.719437, -73.94063)",KINGSLAND AVENUE,RICHARDSON STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4499051,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,12:00,BRONX,10463,40.884235,-73.901146,"(40.884235, -73.901146)",,,5791 BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4499146,Sedan,,,, +01/31/2022,13:43,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WHITLOCK AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Following Too Closely,,,,4498932,Sedan,Sedan,,, +01/30/2022,21:35,BROOKLYN,11225,40.667088,-73.948906,"(40.667088, -73.948906)",,,1209 CARROLL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498524,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,6:20,QUEENS,11373,40.729595,-73.88025,"(40.729595, -73.88025)",,,82-07 57 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498442,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,7:00,,,40.7422,-73.840965,"(40.7422, -73.840965)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,9:20,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498800,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,14:50,,,40.639645,-74.008835,"(40.639645, -74.008835)",7 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498885,Sedan,,,, +01/30/2022,4:00,BROOKLYN,11232,40.653976,-74.00686,"(40.653976, -74.00686)",,,315 38 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498541,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,2:58,BRONX,10468,40.862404,-73.9111,"(40.862404, -73.9111)",,,233 LANDING ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4498620,Sedan,,,, +01/29/2022,11:25,STATEN ISLAND,10306,40.572872,-74.1466,"(40.572872, -74.1466)",RICHMOND HILL ROAD,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498836,Sedan,,,, +01/30/2022,23:49,BROOKLYN,11207,40.66855,-73.90079,"(40.66855, -73.90079)",SUTTER AVENUE,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4499081,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,17:00,,,40.766445,-73.829094,"(40.766445, -73.829094)",LEAVITT STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498171,Sedan,,,, +01/28/2022,11:35,BROOKLYN,11231,40.68576,-73.99865,"(40.68576, -73.99865)",,,454 HENRY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498002,Snow Plow,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/26/2021,7:00,BRONX,10474,40.81044,-73.88735,"(40.81044, -73.88735)",,,509 MANIDA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452005,Sedan,,,, +01/29/2022,11:39,MANHATTAN,10019,40.76536,-73.98759,"(40.76536, -73.98759)",WEST 53 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499165,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,22:14,BROOKLYN,11214,40.607258,-74.00265,"(40.607258, -74.00265)",86 STREET,18 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4499401,,,,, +01/26/2022,20:00,BROOKLYN,11203,40.655212,-73.93272,"(40.655212, -73.93272)",EAST 48 STREET,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4498403,Pas (4dr s,Sedan,Station Wagon/Sport Utility Vehicle,, +01/27/2022,21:00,MANHATTAN,10001,40.748955,-73.99581,"(40.748955, -73.99581)",,,378 8 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4498853,Sedan,,,, +01/28/2022,8:17,BRONX,10460,40.837975,-73.86956,"(40.837975, -73.86956)",,,1750 MANSION STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498028,Station Wagon/Sport Utility Vehicle,Bus,,, +01/30/2022,4:55,BROOKLYN,11206,40.703762,-73.94262,"(40.703762, -73.94262)",MOORE STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498952,Sedan,Sedan,,, +01/28/2022,20:18,,,,,,MORRIS PARK AVENUE,UNIONPORT ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498075,Sedan,,,, +01/28/2022,7:45,MANHATTAN,10022,40.760227,-73.961525,"(40.760227, -73.961525)",1 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4498588,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/17/2022,0:00,,,40.69831,-73.9498,"(40.69831, -73.9498)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498997,Sedan,,,, +01/28/2022,19:00,STATEN ISLAND,10301,40.641857,-74.07966,"(40.641857, -74.07966)",FORT PLACE,MONROE AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498266,,,,, +01/27/2022,7:15,BRONX,10453,40.856533,-73.91544,"(40.856533, -73.91544)",OSBORNE PLACE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4498753,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,TRACTOR TR +01/31/2022,9:00,BROOKLYN,11208,40.66224,-73.877205,"(40.66224, -73.877205)",STANLEY AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498864,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,22:41,QUEENS,11693,40.590473,-73.811615,"(40.590473, -73.811615)",BEACH CHANNEL DRIVE,BEACH 86 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4498398,Sedan,,,, +01/26/2022,8:03,QUEENS,11385,40.700516,-73.89835,"(40.700516, -73.89835)",MYRTLE AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499127,Sedan,Carry All,,, +01/30/2022,9:10,QUEENS,11411,40.701805,-73.74115,"(40.701805, -73.74115)",COLFAX STREET,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498307,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,12:09,BRONX,10469,40.862873,-73.84917,"(40.862873, -73.84917)",MACE AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498134,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +01/28/2022,18:24,BROOKLYN,11226,40.650116,-73.960785,"(40.650116, -73.960785)",,,2011 CHURCH AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4498210,Sedan,Sedan,Box Truck,Sedan, +01/29/2022,15:25,BROOKLYN,11219,40.626373,-73.99754,"(40.626373, -73.99754)",14 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498271,Snow Plow,Pick-up Truck,,, +01/28/2022,12:22,BRONX,10466,40.89507,-73.85445,"(40.89507, -73.85445)",EAST 236 STREET,BYRON AVENUE,,1,0,1,0,0,0,0,0,,,,,,4498430,,,,, +01/22/2022,11:45,,,40.576252,-74.16978,"(40.576252, -74.16978)",,,2845 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498039,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,20:20,MANHATTAN,10014,40.73448,-74.001396,"(40.73448, -74.001396)",WEST 10 STREET,WAVERLY PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498298,Sedan,,,, +01/28/2022,22:50,BROOKLYN,11220,40.647903,-74.007416,"(40.647903, -74.007416)",45 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498060,Sedan,Sedan,Sedan,, +01/31/2022,18:35,QUEENS,11101,40.740597,-73.9306,"(40.740597, -73.9306)",35 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499097,Sedan,Sedan,,, +01/28/2022,22:50,BROOKLYN,11210,40.63641,-73.93845,"(40.63641, -73.93845)",,,770 EAST 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498243,Sedan,Sedan,Sedan,, +01/17/2022,17:54,BROOKLYN,11208,40.668327,-73.869606,"(40.668327, -73.869606)",,,2555 LINDEN BOULEVARD,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4499358,Sedan,Sedan,,, +01/27/2022,15:05,,,40.584557,-73.950874,"(40.584557, -73.950874)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498011,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,16:35,BRONX,10460,40.836308,-73.884605,"(40.836308, -73.884605)",,,985 EAST 174 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498198,Sedan,Bus,,, +11/06/2021,13:27,MANHATTAN,10002,40.71384,-73.99273,"(40.71384, -73.99273)",PIKE STREET,EAST BROADWAY,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474704,Sedan,,,, +01/27/2022,14:20,MANHATTAN,10034,40.870415,-73.91515,"(40.870415, -73.91515)",BROADWAY,WEST 216 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498457,Sedan,,,, +01/31/2022,21:13,BROOKLYN,11233,40.678143,-73.908485,"(40.678143, -73.908485)",,,2198 FULTON STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498907,Van,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,15:40,MANHATTAN,10034,40.861866,-73.91842,"(40.861866, -73.91842)",,,3816 9 AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4498474,Sedan,,,, +01/29/2022,3:33,BROOKLYN,11223,40.598217,-73.9698,"(40.598217, -73.9698)",,,2104 EAST 2 STREET,0,0,0,0,0,0,0,0,Drugs (illegal),,,,,4498146,Sedan,,,, +01/27/2022,8:41,,,40.81438,-73.89623,"(40.81438, -73.89623)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4498739,Pick-up Truck,Sedan,Sedan,, +01/31/2022,1:46,,,,,,VANDAM STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498772,Sedan,Sedan,Sedan,, +01/29/2022,16:59,QUEENS,11377,40.73963,-73.92226,"(40.73963, -73.92226)",43 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498161,Sedan,,,, +01/28/2022,15:35,QUEENS,11102,40.769886,-73.92781,"(40.769886, -73.92781)",21 STREET,30 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498573,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,20:00,BRONX,10466,40.888466,-73.83321,"(40.888466, -73.83321)",,,3822 HARPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498425,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,13:00,BROOKLYN,11215,40.66819,-73.98778,"(40.66819, -73.98778)",,,320 11 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499031,Station Wagon/Sport Utility Vehicle,bobcat sno,,, +01/31/2022,19:20,STATEN ISLAND,10312,0,0,"(0.0, 0.0)",,,499 POMPEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499116,Sedan,,,, +01/26/2022,17:44,BRONX,10456,40.832573,-73.91052,"(40.832573, -73.91052)",EAST 168 STREET,CLAY AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4498303,Taxi,,,, +01/26/2022,16:55,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4498358,Bus,Van,,, +01/30/2022,13:14,BROOKLYN,11230,40.623962,-73.97245,"(40.623962, -73.97245)",BAY PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498605,Sedan,Box Truck,,, +01/22/2022,15:00,,,40.75303,-73.92163,"(40.75303, -73.92163)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,14:35,BRONX,10458,40.859875,-73.89323,"(40.859875, -73.89323)",WEBSTER AVENUE,EAST 188 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4498628,Sedan,Bike,,, +01/25/2022,14:09,BROOKLYN,11236,40.64773,-73.91434,"(40.64773, -73.91434)",,,820 REMSEN AVENUE,1,0,1,0,0,0,0,0,,,,,,4498235,,,,, +01/28/2022,12:14,,,40.850166,-73.93576,"(40.850166, -73.93576)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498467,Sedan,,,, +01/29/2022,16:30,BROOKLYN,11224,40.576374,-74.00788,"(40.576374, -74.00788)",NEPTUNE AVENUE,HIGHLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499150,Sedan,,,, +01/29/2022,7:42,,,40.838203,-73.9302,"(40.838203, -73.9302)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498817,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,0:17,BRONX,10469,40.86551,-73.85962,"(40.86551, -73.85962)",ALLERTON AVENUE,WILLIAMSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Pavement Slippery,,,,4498088,Sedan,Sedan,,, +01/27/2022,19:00,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4498220,Sedan,,,, +01/28/2022,2:00,MANHATTAN,10036,40.7608,-73.98844,"(40.7608, -73.98844)",,,326 WEST 47 STREET,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4498103,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,15:30,QUEENS,11363,40.7684,-73.73755,"(40.7684, -73.73755)",NORTHERN BOULEVARD,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,14:30,,,,,,BROOKLYN QNS EXPRESSWAY,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499173,Sedan,,,, +01/31/2022,19:26,BRONX,10461,40.854065,-73.85203,"(40.854065, -73.85203)",,,1954 HERING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498920,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,19:00,,,,,,STILLWELL AVENUE,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4499004,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,15:35,,,40.585144,-73.98936,"(40.585144, -73.98936)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,7:45,BROOKLYN,11249,40.708347,-73.96724,"(40.708347, -73.96724)",SOUTH 10 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498556,Van,Sedan,,, +01/01/2022,14:49,,,40.804585,-73.94782,"(40.804585, -73.94782)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498789,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,18:25,,,40.66041,-73.93424,"(40.66041, -73.93424)",SCHENECTADY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498066,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,20:30,,,40.69822,-73.943954,"(40.69822, -73.943954)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498335,Taxi,,,, +01/29/2022,0:10,BRONX,10460,40.840866,-73.87281,"(40.840866, -73.87281)",EAST 180 STREET,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Alcohol Involvement,,,,4498949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,22:20,MANHATTAN,10002,40.710506,-73.98634,"(40.710506, -73.98634)",,,286 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499245,Sedan,,,, +01/27/2022,14:06,,,,,,MAIN STREET,GRAND CENTRAL PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499528,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,4:10,BROOKLYN,11207,40.67628,-73.892166,"(40.67628, -73.892166)",ATLANTIC AVENUE,MILLER AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4451421,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,21:51,BROOKLYN,11230,40.627262,-73.95791,"(40.627262, -73.95791)",,,949 EAST 19 STREET,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4451523,Taxi,Sedan,,, +08/25/2021,11:00,,,40.574986,-73.99962,"(40.574986, -73.99962)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452248,Sedan,,,, +08/26/2021,7:20,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451988,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,0:10,MANHATTAN,10016,40.74468,-73.987305,"(40.74468, -73.987305)",5 AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451485,Sedan,Sedan,,, +08/28/2021,22:00,,,40.673157,-73.76673,"(40.673157, -73.76673)",137 AVENUE,174 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4451844,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +08/28/2021,1:50,QUEENS,11419,40.693382,-73.818855,"(40.693382, -73.818855)",129 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451591,Sedan,Sedan,,, +08/27/2021,10:00,MANHATTAN,10009,40.725765,-73.979095,"(40.725765, -73.979095)",,,631 EAST 9 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451968,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,0:40,STATEN ISLAND,10301,40.642483,-74.08553,"(40.642483, -74.08553)",,,121 JERSEY STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4452060,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/27/2021,18:00,QUEENS,11434,40.657784,-73.77032,"(40.657784, -73.77032)",,,175-15 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452148,Sedan,,,, +08/28/2021,1:05,,,40.835926,-73.90291,"(40.835926, -73.90291)",3 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451214,Sedan,,,, +08/28/2021,13:00,MANHATTAN,10027,40.81796,-73.960365,"(40.81796, -73.960365)",WEST 125 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451600,Moped,,,, +08/27/2021,19:35,BRONX,10459,40.82482,-73.89684,"(40.82482, -73.89684)",,,1054 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452003,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,23:27,MANHATTAN,10036,40.76124,-73.98749,"(40.76124, -73.98749)",,,303 WEST 48 STREET,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4452045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/07/2021,0:31,MANHATTAN,10039,40.824554,-73.94196,"(40.824554, -73.94196)",WEST 147 STREET,BRADHURST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451947,Sedan,Sedan,Sedan,, +08/28/2021,6:44,BROOKLYN,11220,40.645782,-74.006935,"(40.645782, -74.006935)",,,584 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451264,Sedan,,,, +08/28/2021,14:00,BROOKLYN,11207,40.680504,-73.90629,"(40.680504, -73.90629)",BROADWAY,DE SALES PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451387,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,7:39,,,40.86679,-73.932495,"(40.86679, -73.932495)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Following Too Closely,,,,4451708,Sedan,Sedan,,, +08/28/2021,0:00,QUEENS,11237,40.708256,-73.91997,"(40.708256, -73.91997)",STARR STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451782,PK,Sedan,,, +08/28/2021,22:25,BROOKLYN,11229,40.600426,-73.941895,"(40.600426, -73.941895)",AVENUE U,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451850,LIMO,Sedan,,, +08/21/2021,1:16,,,40.81782,-73.89264,"(40.81782, -73.89264)",BRUCKNER EXPRESSWAY,,,3,1,0,0,0,0,3,1,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4449820,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/28/2021,8:00,,,,,,7 AVENUE,WEST 155 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4451893,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,15:40,,,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4451358,Sedan,,,, +08/28/2021,12:45,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451295,Sedan,Sedan,,, +08/28/2021,15:35,QUEENS,11433,40.699764,-73.78285,"(40.699764, -73.78285)",173 STREET,108 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4452087,Sedan,Sedan,,, +08/27/2021,1:30,,,40.589645,-74.15628,"(40.589645, -74.15628)",,,437 TRAVIS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452118,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,20:59,,,40.682423,-73.97069,"(40.682423, -73.97069)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4452185,Sedan,Sedan,,, +08/28/2021,14:47,MANHATTAN,10037,40.81728,-73.938545,"(40.81728, -73.938545)",LENOX AVENUE,WEST 140 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4451347,Motorcycle,,,, +08/28/2021,16:27,BROOKLYN,11236,40.629883,-73.895775,"(40.629883, -73.895775)",SEAVIEW AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451299,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,16:53,BRONX,10460,40.834915,-73.894135,"(40.834915, -73.894135)",WILKENS AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452017,Ambulance,Sedan,,, +08/28/2021,5:35,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451373,Tanker,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,10:02,,,40.76521,-73.8005,"(40.76521, -73.8005)",35 AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,,,,,4451272,Bike,,,, +08/28/2021,11:30,,,40.767353,-73.9177,"(40.767353, -73.9177)",34 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451888,Sedan,,,, +01/31/2022,9:30,QUEENS,11412,40.702286,-73.751724,"(40.702286, -73.751724)",204 STREET,113 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4499043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,1:06,QUEENS,11418,40.700348,-73.83488,"(40.700348, -73.83488)",115 STREET,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4451612,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/15/2021,3:50,QUEENS,11435,40.70727,-73.81638,"(40.70727, -73.81638)",139 STREET,86 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451937,Sedan,Sedan,,, +08/28/2021,11:59,MANHATTAN,10029,40.799156,-73.945045,"(40.799156, -73.945045)",,,23 EAST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451801,Sedan,,,, +08/28/2021,14:35,BRONX,10465,40.825146,-73.823875,"(40.825146, -73.823875)",CALHOUN AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451911,Sedan,,,, +08/28/2021,13:30,,,40.742153,-73.897156,"(40.742153, -73.897156)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451287,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,14:20,,,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451364,Sedan,Van,,, +08/28/2021,16:00,QUEENS,11356,40.78167,-73.83075,"(40.78167, -73.83075)",,,137-05 20 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451498,Sedan,,,, +08/26/2021,22:30,STATEN ISLAND,10304,40.633953,-74.085754,"(40.633953, -74.085754)",VICTORY BOULEVARD,CEBRA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452077,Sedan,,,, +08/21/2021,21:48,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452215,Sedan,,,, +08/28/2021,9:00,MANHATTAN,10032,40.83795,-73.94248,"(40.83795, -73.94248)",,,601 WEST 163 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4451761,Sedan,Van,Station Wagon/Sport Utility Vehicle,, +08/28/2021,22:04,BRONX,10474,40.811092,-73.89335,"(40.811092, -73.89335)",RANDALL AVENUE,TRUXTON STREET,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4451980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/11/2021,12:16,QUEENS,11432,40.70924,-73.78635,"(40.70924, -73.78635)",91 AVENUE,175 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4452094,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/28/2021,19:41,,,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4451388,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,9:45,BRONX,10465,40.83376,-73.81922,"(40.83376, -73.81922)",BARKLEY AVENUE,WILCOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452164,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,13:35,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4451443,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,19:00,,,40.573265,-74.146965,"(40.573265, -74.146965)",RICHMOND HILL ROAD,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4452024,Trailer,Sedan,,, +08/28/2021,10:45,BROOKLYN,11203,40.648537,-73.94644,"(40.648537, -73.94644)",,,1006 NEW YORK AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451331,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,11:00,MANHATTAN,10009,40.725864,-73.97933,"(40.725864, -73.97933)",,,617 EAST 9 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451966,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,20:57,QUEENS,11436,40.68186,-73.79552,"(40.68186, -73.79552)",146 STREET,116 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451836,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,16:53,,,40.80467,-73.93219,"(40.80467, -73.93219)",EAST 128 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451867,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/27/2021,15:30,,,40.73135,-73.98256,"(40.73135, -73.98256)",1 AVENUE,,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4452191,Motorcycle,,,, +08/24/2021,15:00,,,40.606743,-74.13081,"(40.606743, -74.13081)",,,211 WHEELER AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4451958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,14:07,BRONX,10459,40.830135,-73.891884,"(40.830135, -73.891884)",SOUTHERN BOULEVARD,FREEMAN STREET,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4452009,Ambulance,,,, +08/28/2021,1:00,BROOKLYN,11218,40.646805,-73.97807,"(40.646805, -73.97807)",,,206 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451538,Sedan,,,, +08/25/2021,11:00,BRONX,10459,40.826256,-73.88881,"(40.826256, -73.88881)",BRYANT AVENUE,WESTCHESTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451993,Sedan,,,, +08/28/2021,16:27,,,40.810764,-73.9526,"(40.810764, -73.9526)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451601,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,2:24,QUEENS,11103,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,30 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451477,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/28/2021,3:09,BROOKLYN,11226,40.643024,-73.95243,"(40.643024, -73.95243)",,,2609 CLARENDON ROAD,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,Unspecified,Unspecified,4451724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/26/2021,0:00,MANHATTAN,10022,40.762962,-73.97188,"(40.762962, -73.97188)",EAST 58 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452066,Sedan,,,, +08/28/2021,20:10,BROOKLYN,11226,40.652794,-73.946884,"(40.652794, -73.946884)",NEW YORK AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4451393,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +08/23/2021,12:00,STATEN ISLAND,10312,40.529263,-74.18986,"(40.529263, -74.18986)",HUGUENOT AVENUE,DEISIUS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451972,Sedan,Sedan,,, +08/11/2021,15:30,STATEN ISLAND,10312,40.54817,-74.16921,"(40.54817, -74.16921)",WAINWRIGHT AVENUE,LAMOKA AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4452100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,1:35,,,40.687977,-73.954834,"(40.687977, -73.954834)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451639,Sedan,Sedan,,, +08/28/2021,13:40,QUEENS,11102,40.76903,-73.92475,"(40.76903, -73.92475)",,,27-65 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451486,Sedan,Sedan,,, +08/28/2021,15:45,,,40.68731,-73.94761,"(40.68731, -73.94761)",QUINCY STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4451648,Sedan,Sedan,,, +08/28/2021,20:00,,,,,,27 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4451592,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,13:45,BROOKLYN,11212,40.669624,-73.91119,"(40.669624, -73.91119)",,,1681 PITKIN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,2:50,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4451192,Sedan,,,, +08/24/2021,14:30,STATEN ISLAND,10308,40.559174,-74.1481,"(40.559174, -74.1481)",LEVERETT AVENUE,GREAVES AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4452031,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/28/2021,17:20,MANHATTAN,10024,40.782703,-73.97123,"(40.782703, -73.97123)",WEST 82 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452160,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,21:00,BROOKLYN,11207,40.681602,-73.88886,"(40.681602, -73.88886)",,,17 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,14:51,MANHATTAN,10039,40.827633,-73.93577,"(40.827633, -73.93577)",MACOMBS DAM BRIDGE,WEST 154 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451952,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,9:50,QUEENS,11385,40.710667,-73.90277,"(40.710667, -73.90277)",,,63-16 60 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452146,Sedan,,,, +08/28/2021,1:15,QUEENS,11432,40.704033,-73.798416,"(40.704033, -73.798416)",,,161-10 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452099,Concrete Mixer,Bus,,, +08/28/2021,12:50,MANHATTAN,10019,40.763645,-73.97769,"(40.763645, -73.97769)",WEST 56 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451987,Sedan,Bus,,, +08/28/2021,3:11,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451217,PK,,,, +08/26/2021,22:50,BRONX,10474,40.814594,-73.88588,"(40.814594, -73.88588)",HUNTS POINT AVENUE,SPOFFORD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452004,Bus,Sedan,,, +08/28/2021,6:00,,,40.769737,-73.91244,"(40.769737, -73.91244)",37 STREET,ASTORIA BOULEVARD,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4451392,Sedan,,,, +08/28/2021,21:57,BRONX,10469,40.86011,-73.861755,"(40.86011, -73.861755)",,,2321 BRONXWOOD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451593,Station Wagon/Sport Utility Vehicle,Moped,,, +08/28/2021,10:00,MANHATTAN,10036,40.761448,-73.98803,"(40.761448, -73.98803)",,,328 WEST 48 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4452046,Sedan,,,, +08/28/2021,11:05,QUEENS,11105,40.772835,-73.90873,"(40.772835, -73.90873)",,,22-39 37 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4451478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/18/2021,8:40,MANHATTAN,10037,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 ST BRIDGE,LENOX AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4451946,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/25/2021,22:30,STATEN ISLAND,10309,40.53062,-74.19455,"(40.53062, -74.19455)",CHISHOLM STREET,AMBOY ROAD,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4451971,Sedan,,,, +08/28/2021,0:44,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/22/2021,15:30,MANHATTAN,10027,40.80742,-73.94677,"(40.80742, -73.94677)",,,114 WEST 124 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452254,Sedan,,,, +08/28/2021,17:30,,,,,,victory blvd,willow road east,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/28/2021,23:31,BROOKLYN,11204,40.628994,-73.98364,"(40.628994, -73.98364)",50 STREET,17 AVENUE,,2,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452022,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/28/2021,3:50,,,40.640766,-73.951416,"(40.640766, -73.951416)",AVENUE D,,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451326,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,14:07,,,40.82391,-73.94244,"(40.82391, -73.94244)",BRADHURST AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451349,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,20:50,,,40.677982,-73.791214,"(40.677982, -73.791214)",120 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451829,Sedan,,,, +08/21/2021,20:30,,,40.70644,-73.75973,"(40.70644, -73.75973)",198 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4452106,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/28/2021,13:24,BROOKLYN,11208,40.67911,-73.86426,"(40.67911, -73.86426)",101 AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451422,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,14:49,,,40.85025,-73.9007,"(40.85025, -73.9007)",VALENTINE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451932,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,23:50,,,40.72911,-74.01068,"(40.72911, -74.01068)",WEST STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452055,Taxi,,,, +08/28/2021,3:06,,,40.792244,-73.94629,"(40.792244, -73.94629)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4451288,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Sedan, +08/28/2021,10:25,BROOKLYN,11236,40.629078,-73.89985,"(40.629078, -73.89985)",,,1430 EAST 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451673,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,4:00,,,40.838158,-73.92324,"(40.838158, -73.92324)",SHAKESPEARE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451837,Sedan,Sedan,,, +08/28/2021,15:20,BRONX,10462,40.848267,-73.85862,"(40.848267, -73.85862)",,,1845 BOGART AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451339,Sedan,Sedan,,, +08/28/2021,20:59,QUEENS,11355,40.742634,-73.81858,"(40.742634, -73.81858)",150 STREET,58 ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451497,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,13:45,,,40.822235,-73.88746,"(40.822235, -73.88746)",BRUCKNER BOULEVARD,SHERIDAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4451981,Taxi,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/21/2021,22:20,,,40.8242,-73.88627,"(40.8242, -73.88627)",SHERIDAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452008,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,23:05,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4451938,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/28/2021,9:00,BROOKLYN,11207,40.682484,-73.89029,"(40.682484, -73.89029)",SUNNYSIDE AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451404,Sedan,Sedan,,, +08/28/2021,20:47,BROOKLYN,11218,40.63663,-73.975174,"(40.63663, -73.975174)",,,641 EAST 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451514,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,22:20,MANHATTAN,10031,40.821144,-73.95753,"(40.821144, -73.95753)",RIVERSIDE DRIVE,WEST 135 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452237,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/28/2021,11:52,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,,,4452209,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/26/2021,18:00,QUEENS,11433,40.705868,-73.787346,"(40.705868, -73.787346)",172 STREET,93 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4452078,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/13/2021,4:10,QUEENS,11373,40.731182,-73.871605,"(40.731182, -73.871605)",WETHEROLE STREET,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4451976,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/27/2021,22:24,BROOKLYN,11203,40.65223,-73.92818,"(40.65223, -73.92818)",,,5225 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452176,Sedan,,,, +08/28/2021,3:30,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451800,E-Bike,Sedan,,, +08/28/2021,9:30,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451257,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,10:00,BRONX,10465,40.8262,-73.821686,"(40.8262, -73.821686)",EAST TREMONT AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451910,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,8:42,BROOKLYN,11207,40.690216,-73.907295,"(40.690216, -73.907295)",SCHAEFER STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451374,Sedan,,,, +08/28/2021,6:45,BROOKLYN,11230,40.6147,-73.968025,"(40.6147, -73.968025)",,,617 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451843,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,22:40,BRONX,10467,40.87956,-73.86397,"(40.87956, -73.86397)",,,721 EAST 214 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451689,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/28/2021,21:30,QUEENS,11414,40.661983,-73.84447,"(40.661983, -73.84447)",89 STREET,157 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4451575,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,2:00,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452234,Sedan,Sedan,,, +08/28/2021,15:40,BRONX,10460,40.834915,-73.894135,"(40.834915, -73.894135)",BOSTON ROAD,WILKENS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452016,Sedan,Sedan,,, +08/28/2021,10:00,QUEENS,11418,40.70199,-73.83869,"(40.70199, -73.83869)",,,84-05 112 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451608,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,11:00,MANHATTAN,10036,40.763065,-73.99376,"(40.763065, -73.99376)",,,503 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451977,Sedan,,,, +08/28/2021,3:00,,,40.615585,-74.07359,"(40.615585, -74.07359)",TOMPKINS AVENUE,CHESTNUT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4452264,Sedan,Sedan,Sedan,, +08/28/2021,20:15,BRONX,10454,40.804043,-73.907234,"(40.804043, -73.907234)",EAST 140 STREET,WALNUT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4451436,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,8:45,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4451934,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,21:40,MANHATTAN,10027,40.812103,-73.94976,"(40.812103, -73.94976)",WEST 128 STREET,DOUGLASS BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451959,Ambulance,Sedan,,, +08/28/2021,22:03,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451505,Sedan,Sedan,,, +08/28/2021,23:20,,,40.583733,-73.91969,"(40.583733, -73.91969)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451849,Sedan,Sedan,,, +08/28/2021,3:30,QUEENS,11435,40.708183,-73.80955,"(40.708183, -73.80955)",,,148-54 86 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451271,Sedan,Sedan,,, +08/28/2021,20:25,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451626,Sedan,Sedan,,, +08/28/2021,19:45,BROOKLYN,11226,40.64606,-73.951996,"(40.64606, -73.951996)",,,986 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451355,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,10:20,,,40.69016,-73.942375,"(40.69016, -73.942375)",VAN BUREN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451652,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,15:50,,,40.67798,-73.872116,"(40.67798, -73.872116)",LIBERTY AVENUE,CONDUIT BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451431,Sedan,Sedan,,, +08/28/2021,18:32,MANHATTAN,10002,40.719482,-73.991295,"(40.719482, -73.991295)",DELANCEY STREET,ELDRIDGE STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451622,Sedan,E-Bike,,, +08/24/2021,17:11,BRONX,10459,40.82389,-73.89585,"(40.82389, -73.89585)",KELLY STREET,EAST 165 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451991,Sedan,Sedan,,, +08/28/2021,12:00,,,40.58588,-73.912704,"(40.58588, -73.912704)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4451536,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/25/2021,23:45,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4452000,Sedan,Sedan,,, +08/28/2021,1:40,MANHATTAN,10002,40.71983,-73.98755,"(40.71983, -73.98755)",ESSEX STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451194,Sedan,Sedan,,, +07/31/2021,10:00,,,,,,,,538 WEST 55TH STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452036,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/16/2021,12:05,MANHATTAN,10030,40.815205,-73.947495,"(40.815205, -73.947495)",8 AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451951,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,2:30,,,40.81339,-73.95627,"(40.81339, -73.95627)",WEST 125 STREET,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4452156,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,19:14,MANHATTAN,10128,40.787224,-73.95417,"(40.787224, -73.95417)",EAST 96 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452108,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,22:50,,,,,,MACOMBS DAM BRIDGE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451838,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,14:12,,,,,,BOSTON ROAD,PELHAM PARKWAY,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4451338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,6:10,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,Unspecified,,,,4451340,Sedan,4 dr sedan,,, +08/28/2021,18:14,,,40.88051,-73.9007,"(40.88051, -73.9007)",BAILEY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451730,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,11:00,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452030,Station Wagon/Sport Utility Vehicle,Dump,,, +08/28/2021,15:58,BRONX,10468,40.870857,-73.89367,"(40.870857, -73.89367)",MORRIS AVENUE,PARKVIEW TERRACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451362,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,23:50,,,40.66516,-73.790146,"(40.66516, -73.790146)",NASSAU EXPRESSWAY,150 STREET,,0,0,0,0,0,0,0,0,Illnes,,,,,4451832,Sedan,,,, +08/27/2021,16:40,MANHATTAN,10019,40.770313,-73.99141,"(40.770313, -73.99141)",WEST 57 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452065,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,14:30,BROOKLYN,11208,40.667328,-73.86895,"(40.667328, -73.86895)",,,723 PINE STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4451401,Sedan,Sedan,,, +08/28/2021,15:14,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,,4451870,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/28/2021,16:28,QUEENS,11435,40.69424,-73.810905,"(40.69424, -73.810905)",REMINGTON STREET,101 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4452104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/28/2021,8:10,QUEENS,11422,40.65953,-73.73261,"(40.65953, -73.73261)",MEMPHIS AVENUE,254 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4451278,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,10:30,,,40.702454,-73.859406,"(40.702454, -73.859406)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4451738,Tractor Truck Diesel,,,, +08/28/2021,6:45,MANHATTAN,10065,40.76552,-73.97211,"(40.76552, -73.97211)",EAST 61 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451857,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,20:27,BRONX,10453,40.858387,-73.90279,"(40.858387, -73.90279)",EAST 183 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451931,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,5:49,QUEENS,11435,40.7042,-73.815254,"(40.7042, -73.815254)",QUEENS BOULEVARD,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451289,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,20:35,BROOKLYN,11228,40.625126,-74.010796,"(40.625126, -74.010796)",,,1072 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,0:00,QUEENS,11423,40.706936,-73.77339,"(40.706936, -73.77339)",,,102-40 184 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452085,Sedan,Sedan,,, +08/28/2021,22:55,,,40.694115,-73.79214,"(40.694115, -73.79214)",160 STREET,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4452096,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,19:13,,,40.843616,-73.87182,"(40.843616, -73.87182)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451391,Sedan,Sedan,,, +08/28/2021,13:30,,,40.585228,-73.94155,"(40.585228, -73.94155)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451598,Sedan,Sedan,,, +08/27/2021,9:50,MANHATTAN,10019,40.761658,-73.986565,"(40.761658, -73.986565)",8 AVENUE,WEST 49 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452067,Station Wagon/Sport Utility Vehicle,,,, +08/13/2021,23:41,,,40.817898,-73.938095,"(40.817898, -73.938095)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451950,,,,, +08/22/2021,9:00,,,40.739082,-73.79345,"(40.739082, -73.79345)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452019,Station Wagon/Sport Utility Vehicle,Van,,, +08/28/2021,0:00,BROOKLYN,11232,40.649094,-74.01694,"(40.649094, -74.01694)",50 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4451302,Sedan,Sedan,Sedan,Sedan,Sedan +08/28/2021,7:09,BROOKLYN,11207,40.673706,-73.90118,"(40.673706, -73.90118)",HINSDALE STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4451427,,,,, +08/28/2021,4:00,QUEENS,11435,40.71057,-73.81576,"(40.71057, -73.81576)",,,141-39 84 DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4451270,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/28/2021,15:15,BROOKLYN,11226,40.65067,-73.95248,"(40.65067, -73.95248)",ROGERS AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451375,Station Wagon/Sport Utility Vehicle,Bus,,, +08/17/2021,12:57,BRONX,10465,40.816338,-73.83697,"(40.816338, -73.83697)",SCHLEY AVENUE,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452161,Sedan,Box Truck,Sedan,, +08/28/2021,21:15,,,40.866333,-73.92501,"(40.866333, -73.92501)",ACADEMY STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451714,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,11:45,QUEENS,11422,40.670883,-73.728325,"(40.670883, -73.728325)",HOOK CREEK BOULEVARD,134 ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451368,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:39,MANHATTAN,10027,40.808445,-73.945,"(40.808445, -73.945)",WEST 126 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452255,Sedan,Bike,,, +08/24/2021,6:50,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451990,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,23:49,MANHATTAN,10037,40.81719,-73.93446,"(40.81719, -73.93446)",WEST 142 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451871,Taxi,,,, +08/28/2021,20:15,,,40.667076,-73.99508,"(40.667076, -73.99508)",3 AVENUE,HAMILTON AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4451479,Sedan,,,, +08/28/2021,2:34,BROOKLYN,11211,40.717834,-73.95773,"(40.717834, -73.95773)",NORTH 7 STREET,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451823,Motorcycle,Sedan,,, +08/28/2021,9:34,BRONX,10465,40.83094,-73.82879,"(40.83094, -73.82879)",,,1036 CALHOUN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4451909,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/28/2021,23:52,BROOKLYN,11235,40.583847,-73.94059,"(40.583847, -73.94059)",,,2801 EMMONS AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451848,Sedan,Bike,,, +08/28/2021,16:43,QUEENS,11373,40.737335,-73.870415,"(40.737335, -73.870415)",92 STREET,55 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451587,Sedan,E-Scooter,,, +08/25/2021,13:20,STATEN ISLAND,10312,40.55413,-74.16837,"(40.55413, -74.16837)",RICHMOND AVENUE,STROUD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451970,Dump,Station Wagon/Sport Utility Vehicle,Sedan,, +07/20/2021,11:14,,,40.765675,-73.97624,"(40.765675, -73.97624)",WEST 59 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452054,Station Wagon/Sport Utility Vehicle,Bike,,, +08/28/2021,21:29,BROOKLYN,11234,40.616932,-73.943855,"(40.616932, -73.943855)",,,3132 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4451450,Sedan,,,, +07/19/2021,16:02,MANHATTAN,10030,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Turning Improperly,,,,4451982,E-Bike,Bike,,, +08/28/2021,22:09,BRONX,10454,40.809246,-73.92321,"(40.809246, -73.92321)",,,357 EAST 138 STREET,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4451435,Sedan,Sedan,,, +08/28/2021,7:55,BRONX,10461,40.85741,-73.846466,"(40.85741, -73.846466)",,,1410 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451251,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,1:28,BRONX,10474,40.806828,-73.88448,"(40.806828, -73.88448)",VIELE AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452001,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/24/2021,13:30,,,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452178,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,7:30,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451350,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,22:45,,,40.706554,-73.95832,"(40.706554, -73.95832)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451515,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/28/2021,20:30,QUEENS,11377,40.7497,-73.902565,"(40.7497, -73.902565)",37 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452121,Sedan,,,, +08/27/2021,1:30,MANHATTAN,10019,,,,,,427 WEST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452048,Sedan,Sedan,,, +08/27/2021,10:47,,,40.62376,-74.14908,"(40.62376, -74.14908)",,,935 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451954,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +08/28/2021,17:10,BROOKLYN,11211,40.713478,-73.9476,"(40.713478, -73.9476)",LEONARD STREET,DEVOE STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4451532,Moped,,,, +08/17/2021,21:00,BROOKLYN,11212,40.661774,-73.9141,"(40.661774, -73.9141)",,,108 LIVONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452203,Sedan,,,, +08/28/2021,1:22,,,40.863113,-73.920616,"(40.863113, -73.920616)",NAGLE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451688,Sedan,Motorcycle,,, +06/11/2021,12:15,,,40.837364,-73.93417,"(40.837364, -73.93417)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451960,Sedan,,,, +08/28/2021,16:28,QUEENS,11354,40.767284,-73.81301,"(40.767284, -73.81301)",34 AVENUE,MURRAY STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,Unspecified,,4451496,Sedan,Sedan,Sedan,Sedan, +08/28/2021,23:42,BROOKLYN,11207,40.65444,-73.89081,"(40.65444, -73.89081)",ALABAMA AVENUE,WORTMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451406,Sedan,Sedan,,, +08/26/2021,18:00,BRONX,10455,,,,AVENUE SAINT JOHN,FOX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451995,Sedan,Taxi,,, +06/25/2021,22:59,BRONX,10474,40.813805,-73.89112,"(40.813805, -73.89112)",TIFFANY STREET,SPOFFORD AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4452007,Sedan,,,, +08/28/2021,20:40,BROOKLYN,11234,40.611732,-73.91984,"(40.611732, -73.91984)",,,2077 EAST 55 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451798,Taxi,,,, +08/22/2021,0:00,MANHATTAN,10013,40.717136,-73.99756,"(40.717136, -73.99756)",,,94 MOTT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451941,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,14:00,BROOKLYN,11218,40.64559,-73.9754,"(40.64559, -73.9754)",,,514 ALBEMARLE ROAD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451543,Sedan,Bike,,, +08/28/2021,16:28,,,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4452238,Bus,Sedan,,, +08/28/2021,20:02,MANHATTAN,10012,40.725304,-73.996284,"(40.725304, -73.996284)",,,11 EAST HOUSTON STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4451627,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,16:53,BROOKLYN,11230,40.622837,-73.973526,"(40.622837, -73.973526)",EAST 3 STREET,BAY PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452064,Sedan,Moped,,, +08/23/2021,12:30,,,,,,KOREAN WAR VETS PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4451975,Sedan,,,, +08/25/2021,13:05,QUEENS,11385,40.711994,-73.86073,"(40.711994, -73.86073)",METROPOLITAN AVENUE,AUBREY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452145,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,10:48,QUEENS,11694,40.581615,-73.851234,"(40.581615, -73.851234)",BEACH CHANNEL DRIVE,BEACH 129 STREET,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4451669,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,5:30,BROOKLYN,11221,40.69808,-73.92536,"(40.69808, -73.92536)",MYRTLE AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4452109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,10:30,,,40.734432,-73.989914,"(40.734432, -73.989914)",EAST 14 STREET,UNION SQUARE EAST,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451978,Sedan,E-Scooter,,, +08/28/2021,0:01,QUEENS,11357,40.787937,-73.81768,"(40.787937, -73.81768)",148 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4451209,Taxi,,,, +08/28/2021,1:06,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4452040,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,14:21,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,20:30,BROOKLYN,11234,40.622044,-73.91237,"(40.622044, -73.91237)",EAST 69 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451449,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,16:58,BROOKLYN,11217,40.685406,-73.97525,"(40.685406, -73.97525)",HANSON PLACE,SOUTH ELLIOTT PLACE,,4,0,0,0,0,0,4,0,Driver Inexperience,Unspecified,,,,4451839,Sedan,Sedan,,, +08/28/2021,9:00,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451341,Box Truck,,,, +08/28/2021,1:45,,,40.684452,-73.80662,"(40.684452, -73.80662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451834,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,10:15,BRONX,10459,40.817165,-73.89669,"(40.817165, -73.89669)",,,811 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452013,Sedan,,,, +08/27/2021,16:45,,,40.581383,-74.153946,"(40.581383, -74.153946)",RICHMOND HILL ROAD,PIERPONT PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451955,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,10:55,,,40.7502,-73.83518,"(40.7502, -73.83518)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4451586,Sedan,Van,,, +08/28/2021,18:30,MANHATTAN,10026,,,,morningside ave,West 113 street,,3,0,0,0,0,0,3,0,Unspecified,,,,,4451604,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,15:30,BRONX,10453,40.851723,-73.90907,"(40.851723, -73.90907)",,,3 EAST TREMONT AVENUE,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4451935,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,6:51,,,,,,EAST 233 STREET,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451719,Van,,,, +08/28/2021,20:54,QUEENS,11377,40.74152,-73.904594,"(40.74152, -73.904594)",QUEENS BOULEVARD,60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451367,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,22:00,BROOKLYN,11207,40.6732,-73.88709,"(40.6732, -73.88709)",,,2311 PITKIN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451397,Moped,Van,,, +08/28/2021,10:30,QUEENS,11423,40.72071,-73.76015,"(40.72071, -73.76015)",,,205-04 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4452103,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,9:20,BROOKLYN,11234,40.62613,-73.92281,"(40.62613, -73.92281)",AVENUE K,EAST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451279,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,10:30,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452069,Sedan,Sedan,,, +08/28/2021,22:45,,,40.70904,-73.84146,"(40.70904, -73.84146)",JACKIE ROBINSON PKWY,,,10,0,0,0,0,0,10,0,Driver Inattention/Distraction,Unspecified,,,,4451739,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,22:47,BRONX,10473,40.81544,-73.8585,"(40.81544, -73.8585)",,,1883 LACOMBE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,6:30,MANHATTAN,10065,40.760456,-73.958206,"(40.760456, -73.958206)",,,510 EAST 62 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452223,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,12:00,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452028,Box Truck,Sedan,,, +08/26/2021,5:00,BROOKLYN,11236,40.634373,-73.89033,"(40.634373, -73.89033)",,,1991 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4452155,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,17:45,,,40.67753,-73.73085,"(40.67753, -73.73085)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4451371,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/28/2021,17:00,,,40.72408,-73.837105,"(40.72408, -73.837105)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451407,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/24/2021,17:22,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4451942,Sedan,,,, +08/28/2021,20:48,MANHATTAN,10028,40.77468,-73.95025,"(40.77468, -73.95025)",,,414 EAST 83 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451858,Sedan,Sedan,,, +08/28/2021,22:55,MANHATTAN,10037,40.80974,-73.9357,"(40.80974, -73.9357)",,,1960 PARK AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451872,Sedan,Ambulance,,, +08/28/2021,19:30,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4452240,Sedan,Bike,,, +08/28/2021,1:18,,,40.724495,-73.72469,"(40.724495, -73.72469)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4451276,Sedan,,,, +08/28/2021,18:25,MANHATTAN,10013,40.717518,-73.99832,"(40.717518, -73.99832)",,,110 MULBERRY STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451618,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,12:21,,,,,,MANHATTAN BR LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452261,Box Truck,Sedan,,, +08/28/2021,9:45,BRONX,10461,40.850315,-73.843124,"(40.850315, -73.843124)",,,1776 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4451337,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,17:33,,,40.702312,-73.93535,"(40.702312, -73.93535)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452257,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,23:15,,,40.703083,-73.85766,"(40.703083, -73.85766)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451788,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,8:30,,,,,,HORACE HARDING EXPRESSWAY,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451268,Sedan,Sedan,,, +08/28/2021,13:52,BROOKLYN,11207,40.676144,-73.893074,"(40.676144, -73.893074)",ATLANTIC AVENUE,BRADFORD STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4451428,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,16:00,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4451852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/26/2021,13:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4452162,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,20:47,BRONX,10467,40.87521,-73.86704,"(40.87521, -73.86704)",WHITE PLAINS ROAD,MAGENTA STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4451710,Sedan,E-Bike,,, +08/28/2021,16:42,BRONX,10458,40.866325,-73.89063,"(40.866325, -73.89063)",,,2714 BAINBRIDGE AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4451360,Sedan,Sedan,Sedan,, +08/28/2021,18:58,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4452006,Sedan,Sedan,,, +08/18/2021,11:00,MANHATTAN,10036,40.76195,-73.991165,"(40.76195, -73.991165)",,,420 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451983,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,10:30,,,40.64546,-74.00638,"(40.64546, -74.00638)",47 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451518,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,14:10,QUEENS,11103,40.763344,-73.91767,"(40.763344, -73.91767)",,,30-50 37 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4451482,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,22:26,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451948,Bike,,,, +08/26/2021,10:10,,,40.54849,-74.18436,"(40.54849, -74.18436)",ARDEN AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451969,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/28/2021,22:50,,,40.61368,-73.98882,"(40.61368, -73.98882)",70 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451535,Sedan,,,, +08/25/2021,16:02,MANHATTAN,10014,40.72882,-74.0053,"(40.72882, -74.0053)",VARICK STREET,DOWNING STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452179,Pick-up Truck,,,, +08/28/2021,17:53,BROOKLYN,11220,40.639786,-74.0266,"(40.639786, -74.0266)",SHORE ROAD DRIVE,RIDGE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451354,Station Wagon/Sport Utility Vehicle,Convertible,,, +08/25/2021,22:25,,,40.577946,-74.102325,"(40.577946, -74.102325)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4452132,Sedan,Sedan,,, +08/28/2021,15:55,BROOKLYN,11236,40.649025,-73.89635,"(40.649025, -73.89635)",EAST 105 STREET,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451301,Sedan,,,, +08/22/2021,23:05,BROOKLYN,11233,40.679295,-73.90643,"(40.679295, -73.90643)",EASTERN PARKWAY,SOMERS STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4452018,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/28/2021,21:22,BROOKLYN,11233,40.679302,-73.91302,"(40.679302, -73.91302)",,,103 HULL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4451812,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/28/2021,0:37,,,40.856743,-73.917625,"(40.856743, -73.917625)",MAJOR DEEGAN EXPRESSWAY RAMP,,,3,0,0,0,0,0,3,0,Unsafe Speed,Passing or Lane Usage Improper,Unspecified,,,4451901,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/28/2021,16:22,,,40.697315,-73.932274,"(40.697315, -73.932274)",MYRTLE AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4451384,Sedan,E-Bike,,, +08/28/2021,18:11,BRONX,10461,40.85226,-73.852905,"(40.85226, -73.852905)",WILLIAMSBRIDGE ROAD,RHINELANDER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451588,Station Wagon/Sport Utility Vehicle,Moped,,, +08/28/2021,9:20,,,,,,BEDFORD AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451847,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,22:43,BROOKLYN,11212,40.657253,-73.90003,"(40.657253, -73.90003)",LINDEN BOULEVARD,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451682,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,10:04,BROOKLYN,11215,40.67427,-73.978775,"(40.67427, -73.978775)",,,234 6 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Alcohol Involvement,,,,4451293,Carry All,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,1:00,QUEENS,11373,40.738903,-73.873344,"(40.738903, -73.873344)",,,90-60 52 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451252,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,8:27,BRONX,10459,40.818928,-73.90344,"(40.818928, -73.90344)",,,798 UNION AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4451434,Station Wagon/Sport Utility Vehicle,Dump,,, +08/28/2021,12:00,QUEENS,11433,40.705425,-73.78258,"(40.705425, -73.78258)",LIBERTY AVENUE,177 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4452095,Sedan,Moped,,, +08/28/2021,16:25,,,40.81312,-73.965294,"(40.81312, -73.965294)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4451599,Motorcycle,,,, +08/28/2021,21:10,QUEENS,11101,40.749054,-73.95222,"(40.749054, -73.95222)",44 DRIVE,VERNON BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451389,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/23/2021,15:58,BRONX,10459,40.82389,-73.89585,"(40.82389, -73.89585)",KELLY STREET,EAST 165 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451989,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/25/2021,5:44,BRONX,10459,40.821068,-73.89894,"(40.821068, -73.89894)",WESTCHESTER AVENUE,STEBBINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452002,Sedan,Sedan,,, +08/13/2021,6:15,MANHATTAN,10027,40.81172,-73.94505,"(40.81172, -73.94505)",,,168 WEST 130 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451953,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,19:10,,,40.733215,-74.00304,"(40.733215, -74.00304)",7 AVENUE SOUTH,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4452050,Sedan,E-Bike,,, +08/28/2021,12:15,,,40.575806,-73.9922,"(40.575806, -73.9922)",WEST 25 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451461,Sedan,,,, +08/07/2021,13:00,MANHATTAN,10039,40.82473,-73.94182,"(40.82473, -73.94182)",,,102 BRADHURST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451961,Sedan,,,, +08/28/2021,6:30,QUEENS,11433,40.70207,-73.78315,"(40.70207, -73.78315)",173 STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4452086,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,6:20,BROOKLYN,11229,40.60223,-73.93427,"(40.60223, -73.93427)",AVENUE U,STUART STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4451746,Bus,,,, +08/25/2021,9:40,BRONX,10473,40.82187,-73.86694,"(40.82187, -73.86694)",,,831 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452111,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,3:00,BRONX,10465,40.825783,-73.82017,"(40.825783, -73.82017)",,,657 EDISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452163,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,18:55,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451344,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,14:50,QUEENS,11434,40.687332,-73.77967,"(40.687332, -73.77967)",168 STREET,116 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4451840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/28/2021,9:00,STATEN ISLAND,10305,40.5975,-74.06808,"(40.5975, -74.06808)",,,180 MCCLEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452025,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,17:40,BRONX,10463,,,,Van Cortlandt Park South,Putnam Ave West,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451721,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,17:45,BROOKLYN,11203,40.651974,-73.92303,"(40.651974, -73.92303)",,,5735 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451336,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,15:40,,,40.67753,-73.73085,"(40.67753, -73.73085)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451372,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,0:01,,,40.845795,-73.92548,"(40.845795, -73.92548)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4451928,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/28/2021,8:04,STATEN ISLAND,10305,40.615414,-74.07401,"(40.615414, -74.07401)",,,163 CHESTNUT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451878,Sedan,,,, +08/28/2021,13:20,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PEARL STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4451285,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,12:00,MANHATTAN,10036,40.75913,-73.98636,"(40.75913, -73.98636)",,,235 WEST 46 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452051,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/22/2021,7:49,BROOKLYN,11226,40.644424,-73.9489,"(40.644424, -73.9489)",NOSTRAND AVENUE,CORTELYOU ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4452142,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,9:10,,,40.5726,-74.16669,"(40.5726, -74.16669)",FOREST HILL ROAD,INDEPENDENCE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4451956,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/21/2021,20:52,MANHATTAN,10128,40.78017,-73.9551,"(40.78017, -73.9551)",LEXINGTON AVENUE,EAST 87 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452220,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,18:45,QUEENS,11106,40.754974,-73.93106,"(40.754974, -73.93106)",31 STREET,37 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451541,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/26/2021,12:13,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451994,Taxi,,,, +08/27/2021,8:12,BROOKLYN,11212,40.66185,-73.9029,"(40.66185, -73.9029)",RIVERDALE AVENUE,SACKMAN STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4451998,Sedan,Bike,,, +08/28/2021,0:01,QUEENS,11354,40.760326,-73.83212,"(40.760326, -73.83212)",,,135-16 38 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451210,Sedan,,,, +08/26/2021,18:12,MANHATTAN,10029,40.79672,-73.94499,"(40.79672, -73.94499)",,,65 EAST 112 STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4452102,Sedan,Sedan,,, +08/28/2021,0:40,MANHATTAN,10035,40.804375,-73.93742,"(40.804375, -73.93742)",EAST 125 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Passing or Lane Usage Improper,,,,4451617,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,14:31,MANHATTAN,10023,40.769848,-73.98432,"(40.769848, -73.98432)",COLUMBUS AVENUE,WEST 60 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451670,Taxi,Bike,,, +08/26/2021,9:30,MANHATTAN,10036,40.76553,-73.99768,"(40.76553, -73.99768)",12 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452044,Box Truck,Box Truck,,, +08/28/2021,17:52,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451448,Sedan,Sedan,,, +08/28/2021,20:20,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4451936,Taxi,,,, +08/28/2021,8:10,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4451500,Sedan,,,, +08/27/2021,16:00,MANHATTAN,10038,40.707657,-74.00777,"(40.707657, -74.00777)",,,75 MAIDEN LANE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4452075,Garbage or Refuse,Sedan,,, +08/27/2021,12:29,BROOKLYN,11231,40.683067,-73.99557,"(40.683067, -73.99557)",SACKETT STREET,COURT STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452245,Sedan,Sedan,,, +08/28/2021,13:11,BROOKLYN,11224,40.578106,-73.99263,"(40.578106, -73.99263)",NEPTUNE AVENUE,WEST 25 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451633,Sedan,,,, +08/28/2021,0:06,BRONX,10467,40.87296,-73.87495,"(40.87296, -73.87495)",WEBSTER AVENUE,EAST 205 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451365,Sedan,,,, +08/28/2021,10:54,,,40.692547,-73.990974,"(40.692547, -73.990974)",JORALEMON STREET,COURT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451275,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,21:29,QUEENS,11436,40.681114,-73.79815,"(40.681114, -73.79815)",116 AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/26/2021,22:44,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",EAST 170 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Alcohol Involvement,,,,4451943,Sedan,Moped,,, +08/28/2021,4:40,BROOKLYN,11207,40.664528,-73.89009,"(40.664528, -73.89009)",,,581 BRADFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451420,Sedan,,,, +08/28/2021,21:40,BROOKLYN,11208,40.670807,-73.87468,"(40.670807, -73.87468)",,,1159 BLAKE AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4451396,Minibike,,,, +08/28/2021,22:29,BRONX,10457,40.846485,-73.89434,"(40.846485, -73.89434)",EAST TREMONT AVENUE,LAFONTAINE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451859,Sedan,,,, +08/03/2021,8:00,BRONX,10474,40.80304,-73.868904,"(40.80304, -73.868904)",,,355 FOOD CENTER DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4452062,PK,,,, +08/28/2021,0:00,,,40.746735,-73.8332,"(40.746735, -73.8332)",57 ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451495,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,15:43,BRONX,10469,40.871864,-73.85455,"(40.871864, -73.85455)",,,3222 YATES AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4451584,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,22:28,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",EAST 167 STREET,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452011,Sedan,,,, +08/27/2021,6:20,MANHATTAN,10027,40.813477,-73.94504,"(40.813477, -73.94504)",,,2245 7 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4451979,Sedan,Sedan,,, +08/28/2021,22:15,MANHATTAN,10029,40.79357,-73.939514,"(40.79357, -73.939514)",,,315 EAST 111 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4452200,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/28/2021,18:30,MANHATTAN,10032,40.83367,-73.94012,"(40.83367, -73.94012)",,,478 WEST 159 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452259,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,4:20,QUEENS,11421,40.684265,-73.86398,"(40.684265, -73.86398)",,,93-12 76 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4451602,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,15:40,,,40.576042,-73.99008,"(40.576042, -73.99008)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451462,Sedan,,,, +08/27/2021,17:10,QUEENS,11429,40.713375,-73.73612,"(40.713375, -73.73612)",,,218-60 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452152,Sedan,,,, +08/28/2021,17:08,MANHATTAN,10009,40.725918,-73.97579,"(40.725918, -73.97579)",EAST 11 STREET,SZOLD PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451963,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,2:25,STATEN ISLAND,10309,40.5132,-74.19686,"(40.5132, -74.19686)",SEGUINE AVENUE,PURDY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451974,Sedan,,,, +08/27/2021,13:25,,,,,,MACOMBS DAM BRIDGE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4451985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,16:00,BROOKLYN,11226,40.65369,-73.9577,"(40.65369, -73.9577)",,,55 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4451519,Sedan,,,, +01/18/2022,18:40,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498804,Pick-up Truck,,,, +01/28/2022,6:40,,,40.61022,-74.09389,"(40.61022, -74.09389)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498888,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,20:22,MANHATTAN,10032,40.837955,-73.939964,"(40.837955, -73.939964)",,,1085 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,12:40,QUEENS,11435,40.69571,-73.805756,"(40.69571, -73.805756)",WALTHAM STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498584,Bus,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,20:08,QUEENS,11373,40.745277,-73.888115,"(40.745277, -73.888115)",,,77-11 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4498964,Passenger,,,, +01/05/2022,22:01,,,40.634533,-74.0867,"(40.634533, -74.0867)",CEBRA AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4498749,Sedan,Sedan,,, +01/22/2022,14:15,,,40.7535,-73.90492,"(40.7535, -73.90492)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498129,Sedan,,,, +01/27/2021,0:05,QUEENS,11372,40.753395,-73.878365,"(40.753395, -73.878365)",,,34-20 89 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499210,Sedan,Sedan,,, +01/29/2022,9:30,,,,,,HARDING EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498379,Station Wagon/Sport Utility Vehicle,,,, +01/07/2022,16:40,,,40.82386,-73.91941,"(40.82386, -73.91941)",CONCOURSE VILLAGE EAST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498669,Sedan,,,, +01/27/2022,21:44,STATEN ISLAND,10301,40.642803,-74.07872,"(40.642803, -74.07872)",,,285 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498262,Sedan,,,, +01/24/2022,11:11,,,40.69488,-73.94042,"(40.69488, -73.94042)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499324,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,15:43,QUEENS,11101,40.73634,-73.93266,"(40.73634, -73.93266)",GREENPOINT AVENUE,GALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498043,Sedan,Box Truck,,, +01/28/2022,23:23,BRONX,10453,40.848637,-73.91169,"(40.848637, -73.91169)",JEROME AVENUE,EAST 176 STREET,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4498616,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,10:40,BROOKLYN,11208,40.67314,-73.86945,"(40.67314, -73.86945)",CRESCENT STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498860,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/29/2022,22:49,,,40.60783,-74.1465,"(40.60783, -74.1465)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4498674,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,3:45,,,40.690075,-73.91916,"(40.690075, -73.91916)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Steering Failure,Pavement Slippery,,,,4498717,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,10:30,BROOKLYN,11210,40.631577,-73.946335,"(40.631577, -73.946335)",,,1599 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498203,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/29/2022,17:30,STATEN ISLAND,10301,40.636692,-74.085884,"(40.636692, -74.085884)",STANLEY AVENUE,JERSEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498275,Sedan,,,, +01/31/2022,11:00,,,40.86173,-73.91182,"(40.86173, -73.91182)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498939,Sedan,,,, +01/31/2022,13:50,BROOKLYN,11226,40.6481,-73.950264,"(40.6481, -73.950264)",ALBEMARLE ROAD,EAST 29 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4498849,Sedan,,,, +01/29/2022,10:20,BRONX,10466,40.89154,-73.849846,"(40.89154, -73.849846)",BOYD AVENUE,EDENWALD AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4498435,Sedan,Dump,,, +01/31/2022,20:00,BROOKLYN,11210,40.638966,-73.94251,"(40.638966, -73.94251)",FOSTER AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499132,Sedan,Sedan,,, +01/29/2022,1:50,MANHATTAN,10019,40.769115,-73.98856,"(40.769115, -73.98856)",WEST 57 STREET,10 AVENUE,,3,0,0,0,0,0,3,0,Pavement Slippery,Unspecified,,,,4498114,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,3:52,MANHATTAN,10039,40.827633,-73.93577,"(40.827633, -73.93577)",MACOMBS DAM BRIDGE,WEST 154 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498757,Taxi,Taxi,,, +01/30/2022,10:45,,,40.754055,-73.99583,"(40.754055, -73.99583)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498378,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/25/2022,20:30,,,40.665085,-73.92869,"(40.665085, -73.92869)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498071,Sedan,Garbage or Refuse,,, +01/27/2022,15:54,BRONX,10471,40.90686,-73.904106,"(40.90686, -73.904106)",WEST 259 STREET,RIVERDALE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498115,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,14:30,BRONX,10467,40.873066,-73.87483,"(40.873066, -73.87483)",,,3250 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498642,Sedan,Sedan,,, +01/30/2022,16:30,MANHATTAN,10019,40.76482,-73.99542,"(40.76482, -73.99542)",,,667 11 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498981,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,18:23,QUEENS,11385,40.702328,-73.87609,"(40.702328, -73.87609)",,,73-07 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498393,Sedan,,,, +01/31/2022,16:00,BROOKLYN,11218,40.641953,-73.9885,"(40.641953, -73.9885)",12 AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498971,Sedan,,,, +01/15/2022,2:38,QUEENS,11106,40.758125,-73.928505,"(40.758125, -73.928505)",31 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498098,Tractor Truck Gasoline,E-Scooter,,, +01/29/2022,4:58,,,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4498225,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,13:38,BROOKLYN,11235,40.58762,-73.95504,"(40.58762, -73.95504)",,,1402 SHEEPSHEAD BAY ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498410,Sedan,Sedan,,, +01/28/2022,22:45,BROOKLYN,11237,40.703873,-73.91256,"(40.703873, -73.91256)",BLEECKER STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4499292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/22/2022,9:44,,,40.785374,-73.840294,"(40.785374, -73.840294)",128 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4497983,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,12:31,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,15:54,BROOKLYN,11210,40.635944,-73.95226,"(40.635944, -73.95226)",KENILWORTH PLACE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499387,Box Truck,Bus,,, +01/28/2022,9:57,BROOKLYN,11203,40.643604,-73.94301,"(40.643604, -73.94301)",CLARENDON ROAD,BROOKLYN AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498247,Sedan,Sedan,,, +01/31/2022,9:50,QUEENS,11413,40.677944,-73.74153,"(40.677944, -73.74153)",133 AVENUE,228 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498832,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,16:42,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498489,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,15:45,BROOKLYN,11217,40.68401,-73.97937,"(40.68401, -73.97937)",,,561 PACIFIC STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498509,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,17:12,MANHATTAN,10016,40.74518,-73.982735,"(40.74518, -73.982735)",EAST 31 STREET,PARK AVENUE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4498294,Sedan,Bike,,, +01/28/2022,17:40,MANHATTAN,10002,40.720688,-73.98424,"(40.720688, -73.98424)",,,20 CLINTON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498056,Taxi,Sedan,,, +01/28/2022,14:34,QUEENS,11417,40.673748,-73.84324,"(40.673748, -73.84324)",CROSS BAY BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498188,Sedan,Pick-up Truck,,, +01/28/2022,21:00,,,40.6017,-73.97342,"(40.6017, -73.97342)",LAKE STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498289,Sedan,,,, +01/28/2022,14:02,BROOKLYN,11207,40.67604,-73.89373,"(40.67604, -73.89373)",,,2724 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4499068,Station Wagon/Sport Utility Vehicle,Van,,, +01/29/2022,20:22,,,,,,SILVERLAKE PARK,HAVENWOOD RD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498274,Sedan,,,, +01/31/2022,3:44,MANHATTAN,10009,40.72675,-73.97381,"(40.72675, -73.97381)",EAST 13 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,23:00,BROOKLYN,11238,40.67752,-73.972725,"(40.67752, -73.972725)",FLATBUSH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498215,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,0:00,BRONX,10466,40.881218,-73.84077,"(40.881218, -73.84077)",,,3532 GRACE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4498434,Sedan,Sedan,,, +01/27/2022,14:45,QUEENS,11358,40.757755,-73.79304,"(40.757755, -73.79304)",NORTHERN BOULEVARD,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4497988,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,13:40,,,40.693394,-73.78894,"(40.693394, -73.78894)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4498903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,9:24,BRONX,10456,40.83394,-73.9087,"(40.83394, -73.9087)",EAST 169 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498230,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,14:00,QUEENS,11377,40.742264,-73.89651,"(40.742264, -73.89651)",,,42-15 68 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498042,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,0:20,,,40.750443,-73.96599,"(40.750443, -73.96599)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498362,Sedan,,,, +01/28/2022,22:45,STATEN ISLAND,10312,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498099,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,22:35,QUEENS,11364,40.74888,-73.77125,"(40.74888, -73.77125)",207 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498494,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,8:55,BRONX,10461,40.849846,-73.85546,"(40.849846, -73.85546)",,,1852 HONE AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4498925,Sedan,Sedan,,, +01/29/2022,14:00,BRONX,10475,40.88379,-73.83348,"(40.88379, -73.83348)",,,3475 BIVONA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498421,Sedan,,,, +01/30/2022,14:00,QUEENS,11412,40.690918,-73.7623,"(40.690918, -73.7623)",117 ROAD,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498660,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,22:00,BROOKLYN,11203,40.6525,-73.924416,"(40.6525, -73.924416)",,,5612 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498252,Pick-up Truck,Pick-up Truck,,, +01/29/2022,16:17,QUEENS,11372,,,,NORTHERN BOULEVARD,70 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498511,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,18:00,BRONX,10461,40.83741,-73.847595,"(40.83741, -73.847595)",ZEREGA AVENUE,TRATMAN AVENUE,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,,,4498643,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,1:20,QUEENS,11385,40.704292,-73.85633,"(40.704292, -73.85633)",,,81-49 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498528,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,6:45,QUEENS,11103,40.76958,-73.9156,"(40.76958, -73.9156)",,,34-16 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,17:52,,,40.76657,-73.83145,"(40.76657, -73.83145)",LINDEN PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498908,Sedan,Sedan,,, +01/27/2022,18:45,BROOKLYN,11225,40.664112,-73.94777,"(40.664112, -73.94777)",,,421 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498067,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,1:45,BROOKLYN,11228,40.619263,-74.020905,"(40.619263, -74.020905)",85 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498183,Snow Plow,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,10:09,BRONX,10459,40.82527,-73.88871,"(40.82527, -73.88871)",,,1030 BRYANT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499286,Box Truck,Sedan,,, +01/30/2022,21:30,QUEENS,11370,40.773235,-73.89035,"(40.773235, -73.89035)",80 STREET,19 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499175,Sedan,Sedan,,, +11/06/2021,21:30,BROOKLYN,11226,,,,FLATBUSH AVENUE,DURYEA PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475092,Sedan,,,, +01/29/2022,2:05,BROOKLYN,11212,40.675205,-73.904396,"(40.675205, -73.904396)",EAST NEW YORK AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498744,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,11:00,BRONX,10455,40.817513,-73.91712,"(40.817513, -73.91712)",EAST 151 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498793,Sedan,,,, +01/28/2022,9:26,,,40.693172,-73.94878,"(40.693172, -73.94878)",HART STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4498363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,14:30,BRONX,10459,40.82133,-73.90244,"(40.82133, -73.90244)",,,886A UNION AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4498202,PICK UP TR,,,, +01/30/2022,9:48,QUEENS,11361,40.76695,-73.786896,"(40.76695, -73.786896)",34 AVENUE,201 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498348,Sedan,Garbage or Refuse,,, +01/30/2022,15:08,QUEENS,11357,40.782658,-73.81344,"(40.782658, -73.81344)",,,150-16 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498516,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,15:30,,,40.67865,-73.791466,"(40.67865, -73.791466)",SUTPHIN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,21:17,BROOKLYN,11207,40.673378,-73.88585,"(40.673378, -73.88585)",PITKIN AVENUE,WARWICK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499059,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,11:14,BRONX,10457,,,,EAST 180 STREET,VALENTINE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4498696,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,22:38,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",SUTPHIN BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499038,Sedan,,,, +01/25/2022,7:03,QUEENS,11101,40.751984,-73.93111,"(40.751984, -73.93111)",,,33-00 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498781,Sedan,Pick-up Truck,,, +01/31/2022,15:49,BRONX,10462,40.831806,-73.85482,"(40.831806, -73.85482)",,,2043 CROSS BRONX EXPRESSWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499049,Sedan,,,, +12/03/2021,9:00,,,40.67973,-73.9374,"(40.67973, -73.9374)",FULTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499196,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,22:00,QUEENS,11373,40.736847,-73.87495,"(40.736847, -73.87495)",,,88-23 JUSTICE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499492,Sedan,,,, +01/29/2022,18:40,,,40.58862,-73.98373,"(40.58862, -73.98373)",STILLWELL AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4498316,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,17:00,,,40.608776,-74.09113,"(40.608776, -74.09113)",CLOVE ROAD,RICHMOND ROAD,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4498893,Sedan,,,, +01/27/2022,20:00,BROOKLYN,11211,40.71214,-73.94231,"(40.71214, -73.94231)",,,297 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498940,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,17:30,BRONX,10465,40.843517,-73.82301,"(40.843517, -73.82301)",,,3144 SPENCER DRIVE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,22:00,BRONX,10453,40.85537,-73.90473,"(40.85537, -73.90473)",WALTON AVENUE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498729,Dump,Sedan,,, +01/22/2022,17:19,BRONX,10463,40.87507,-73.91232,"(40.87507, -73.91232)",,,149 WEST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499088,Sedan,,,, +01/31/2022,0:00,BRONX,10460,40.841087,-73.86449,"(40.841087, -73.86449)",EAST TREMONT AVENUE,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498808,,,,, +01/31/2022,10:30,,,40.688324,-73.96482,"(40.688324, -73.96482)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499006,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,0:00,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498761,Sedan,Sedan,,, +01/27/2022,8:05,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4499033,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,8:23,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498935,Box Truck,Tractor Truck Diesel,,, +01/26/2022,9:30,,,40.633953,-74.085754,"(40.633953, -74.085754)",VICTORY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499428,Pick-up Truck,Sedan,,, +01/28/2022,10:00,,,40.60058,-73.99161,"(40.60058, -73.99161)",23 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498284,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,18:00,,,40.628544,-74.07648,"(40.628544, -74.07648)",BAY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498242,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2021,8:06,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",80 STREET,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Following Too Closely,,,,4499136,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,9:00,QUEENS,11379,40.71558,-73.87811,"(40.71558, -73.87811)",,,75-35 JUNIPER VALLEY ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498845,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,12:00,BROOKLYN,11214,40.60379,-74.00147,"(40.60379, -74.00147)",,,99 BAY 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498331,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,12:00,MANHATTAN,10075,40.77496,-73.9589,"(40.77496, -73.9589)",EAST 79 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499223,Sedan,Bus,,, +01/25/2022,10:14,BRONX,10454,40.807503,-73.913445,"(40.807503, -73.913445)",,,320 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498010,Sedan,,,, +01/21/2022,8:03,,,,,,NORTH CONDUIT AVENUE,135 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,Other Vehicular,,,4498020,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/31/2022,8:05,BROOKLYN,11226,40.653435,-73.95278,"(40.653435, -73.95278)",,,728 ROGERS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4499328,Sedan,,,, +01/28/2022,15:40,,,40.70003,-73.78873,"(40.70003, -73.78873)",MERRICK BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498580,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,12:42,BROOKLYN,11235,40.58904,-73.94458,"(40.58904, -73.94458)",BEDFORD AVENUE,AVENUE Z,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498142,Sedan,,,, +01/26/2022,16:20,,,40.693203,-73.953995,"(40.693203, -73.953995)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498803,Bus,Sedan,,, +01/30/2022,14:57,,,40.795456,-73.96564,"(40.795456, -73.96564)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4498543,Bus,Sedan,,, +01/29/2022,22:47,QUEENS,11435,40.70873,-73.807625,"(40.70873, -73.807625)",150 STREET,86 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498374,Sedan,,,, +01/27/2022,8:28,BROOKLYN,11212,40.661995,-73.9196,"(40.661995, -73.9196)",KINGS HIGHWAY,EAST 98 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498279,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,18:35,QUEENS,11377,40.734768,-73.90288,"(40.734768, -73.90288)",TYLER AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498052,Sedan,,,, +01/28/2022,18:08,,,,,,G.C.P. / L.I.E (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498406,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/28/2022,20:30,MANHATTAN,10016,40.740643,-73.97581,"(40.740643, -73.97581)",1 AVENUE,EAST 29 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,13:08,QUEENS,11385,40.711777,-73.91042,"(40.711777, -73.91042)",GRANDVIEW AVENUE,AMORY COURT,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4498389,PK,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,17:33,,,40.83129,-73.92904,"(40.83129, -73.92904)",WOODYCREST AVENUE,,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,Unspecified,4498675,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +01/30/2022,17:54,BRONX,10462,40.847546,-73.86724,"(40.847546, -73.86724)",,,1903 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498612,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,18:30,,,,,,G.C.P. / LAGUARDIA (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4498411,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/29/2022,12:00,BROOKLYN,11203,40.65239,-73.92655,"(40.65239, -73.92655)",EAST 54 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498257,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,0:10,,,40.74273,-73.95412,"(40.74273, -73.95412)",VERNON BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,7:52,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498003,Sedan,,,, +12/18/2021,13:30,QUEENS,11434,40.67897,-73.75985,"(40.67897, -73.75985)",BELKNAP STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498119,Sedan,,,, +01/28/2022,23:47,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498147,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/11/2022,16:33,BRONX,10466,40.897507,-73.845436,"(40.897507, -73.845436)",,,4325 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498798,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:27,,,40.73992,-73.81513,"(40.73992, -73.81513)",KISSENA BOULEVARD,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,,4498015,Sedan,Bus,Bike,, +09/22/2021,6:00,BRONX,10451,,,,EAST 151 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475205,Sedan,,,, +01/22/2021,13:39,MANHATTAN,10019,40.767742,-73.98212,"(40.767742, -73.98212)",COLUMBUS CIRCLE,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499372,Horse carr,Bike,,, +01/24/2022,17:00,QUEENS,11429,40.70329,-73.73685,"(40.70329, -73.73685)",,,219-40 MURDOCK AVENUE,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4498074,Sedan,,,, +01/29/2022,15:40,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4498899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,11:45,,,40.580696,-74.16167,"(40.580696, -74.16167)",ELMWOOD PARK DRIVE,DEVON LOOP,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498449,Sedan,,,, +01/29/2022,3:11,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4498211,Sedan,Sedan,,, +01/31/2022,6:56,QUEENS,11413,40.6745,-73.74142,"(40.6745, -73.74142)",135 AVENUE,230 STREET,,6,0,0,0,0,0,6,0,Pavement Slippery,Pavement Slippery,,,,4498830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,11:24,,,40.73077,-73.82619,"(40.73077, -73.82619)",140 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498548,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,15:11,MANHATTAN,10035,40.800663,-73.94436,"(40.800663, -73.94436)",EAST 117 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498466,Sedan,Sedan,,, +01/31/2022,19:15,,,,,,Forest hill road,Executive way,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499019,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,0:35,BROOKLYN,11210,40.636627,-73.94226,"(40.636627, -73.94226)",BROOKLYN AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498234,Sedan,Sedan,,, +01/29/2022,16:09,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4498179,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/29/2022,0:00,,,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4498343,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,LIMO, +01/28/2022,17:08,BROOKLYN,11236,40.636868,-73.91346,"(40.636868, -73.91346)",,,761 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498047,Sedan,,,, +01/30/2022,17:50,BROOKLYN,11219,40.629597,-74.00136,"(40.629597, -74.00136)",12 AVENUE,61 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498607,Sedan,,,, +01/21/2022,19:22,BROOKLYN,11207,40.68026,-73.901886,"(40.68026, -73.901886)",,,1650 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498862,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,11:30,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,20:00,BRONX,10469,40.88052,-73.85773,"(40.88052, -73.85773)",,,3728 BRONXWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498417,Sedan,,,, +01/28/2022,17:00,QUEENS,11420,40.66539,-73.81354,"(40.66539, -73.81354)",,,127-15 150 AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4498079,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/24/2022,0:50,,,40.689228,-73.957,"(40.689228, -73.957)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498311,,,,, +01/31/2022,21:00,,,40.833206,-73.82797,"(40.833206, -73.82797)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4499230,Sedan,Sedan,,, +01/29/2022,17:10,BRONX,10465,40.83116,-73.83106,"(40.83116, -73.83106)",,,2800 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4498647,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,3:00,,,40.691563,-73.86563,"(40.691563, -73.86563)",76 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4519186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/30/2022,0:25,,,,,,G.C.P. / JEWEL (CDR),,,1,0,0,0,0,0,1,0,Pavement Slippery,Driver Inattention/Distraction,,,,4498504,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,20:08,BRONX,10467,40.886448,-73.86663,"(40.886448, -73.86663)",,,3620 WEBSTER AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Turning Improperly,,,,4498813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,13:00,QUEENS,11435,40.70026,-73.80868,"(40.70026, -73.80868)",ARCHER AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498872,Sedan,,,, +01/21/2022,11:00,MANHATTAN,10026,40.805218,-73.955185,"(40.805218, -73.955185)",,,304 WEST 117 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499192,Sedan,,,, +01/29/2022,22:00,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498443,Sedan,Dump,,, +01/29/2022,15:25,,,40.69457,-73.99068,"(40.69457, -73.99068)",PIERREPONT STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498475,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,21:30,MANHATTAN,10009,40.723785,-73.97598,"(40.723785, -73.97598)",,,113 AVENUE D,2,0,1,0,0,0,1,0,Unspecified,,,,,4499311,Sedan,,,, +01/29/2022,4:46,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499073,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,13:00,,,40.819786,-73.91216,"(40.819786, -73.91216)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499013,E-Scooter,Box Truck,,, +01/31/2022,2:50,BRONX,10459,40.82368,-73.88953,"(40.82368, -73.88953)",,,1010 FAILE STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498740,Sedan,,,, +01/27/2022,12:11,BRONX,10458,40.87701,-73.88445,"(40.87701, -73.88445)",,,150 VANCORTLANDT AVENUE EAST,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498664,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,17:58,QUEENS,11426,40.725666,-73.72726,"(40.725666, -73.72726)",,,92-34 241 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499266,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,2:04,QUEENS,11418,40.699776,-73.831795,"(40.699776, -73.831795)",JAMAICA AVENUE,118 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4498533,Sedan,Sedan,Sedan,, +01/28/2022,20:00,BRONX,10460,40.839245,-73.8701,"(40.839245, -73.8701)",BRONX RIVER AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4499141,Sedan,,,, +01/31/2022,13:30,BRONX,10461,40.85472,-73.82802,"(40.85472, -73.82802)",EAST 196 STREET,BURR AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499521,Sedan,Carry All,,, +01/31/2022,19:34,QUEENS,11423,40.72095,-73.76715,"(40.72095, -73.76715)",MARENGO STREET,POMPEII AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,18:00,,,40.614834,-74.15937,"(40.614834, -74.15937)",,,3 ASTOR AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498692,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,0:00,,,40.86805,-73.83401,"(40.86805, -73.83401)",BARTOW AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498438,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,1:30,MANHATTAN,10000,40.777107,-73.96397,"(40.777107, -73.96397)",,,2 TRANSVERSE ROAD NUMBER TWO,0,0,0,0,0,0,0,0,Unspecified,,,,,4498825,Sedan,,,, +01/30/2022,9:00,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498306,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +01/31/2022,9:00,,,,,,L.I.E / G.C.P (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498957,Bus,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,17:53,MANHATTAN,10026,40.805595,-73.95819,"(40.805595, -73.95819)",MORNINGSIDE AVENUE,WEST 116 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498996,,,,, +01/28/2022,8:00,BRONX,10456,40.83091,-73.92047,"(40.83091, -73.92047)",EAST 165 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4498267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/28/2022,8:58,BROOKLYN,11210,40.63442,-73.94936,"(40.63442, -73.94936)",,,1490 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498206,Bus,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,13:19,QUEENS,11693,40.59888,-73.820694,"(40.59888, -73.820694)",CROSS BAY BOULEVARD,WEST 20 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4499111,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,1:24,,,40.718395,-73.826385,"(40.718395, -73.826385)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Passenger Distraction,,,,,4498501,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,21:00,BROOKLYN,11221,40.690266,-73.91546,"(40.690266, -73.91546)",CORNELIA STREET,EVERGREEN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498725,Sedan,Bike,,, +01/29/2022,0:34,BROOKLYN,11211,40.70743,-73.95505,"(40.70743, -73.95505)",,,369 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498560,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,15:30,BROOKLYN,11222,40.72725,-73.95279,"(40.72725, -73.95279)",,,771 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4498679,moped,Sedan,,, +01/26/2022,20:35,BROOKLYN,11208,40.67818,-73.870705,"(40.67818, -73.870705)",LIBERTY AVENUE,CRESCENT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499083,Motorcycle,Sedan,,, +01/25/2022,15:00,,,40.81636,-73.954094,"(40.81636, -73.954094)",WEST 131 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499361,Sedan,,,, +01/31/2022,5:20,QUEENS,11433,40.70061,-73.79645,"(40.70061, -73.79645)",,,160-02 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498857,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,10:00,BRONX,10463,40.87644,-73.912865,"(40.87644, -73.912865)",,,135 TERRACE VIEW AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4499161,Sedan,,,, +08/29/2021,19:48,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451924,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,19:24,MANHATTAN,10065,40.767967,-73.96822,"(40.767967, -73.96822)",EAST 66 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499480,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,15:31,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499435,Sedan,,,, +01/30/2022,10:00,,,,,,JEWEL AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498299,Sedan,,,, +01/26/2022,20:20,BRONX,10465,40.816772,-73.809135,"(40.816772, -73.809135)",HARDING AVENUE,PENNYFIELD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498632,Sedan,Sedan,,, +01/31/2022,0:34,,,40.76154,-73.9556,"(40.76154, -73.9556)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498931,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/31/2022,17:30,,,40.64663,-73.95566,"(40.64663, -73.95566)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499001,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,11:50,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4498138,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,4:10,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498597,Sedan,,,, +01/31/2022,17:15,BROOKLYN,11226,40.64952,-73.955795,"(40.64952, -73.955795)",BEDFORD AVENUE,ERASMUS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499134,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,18:45,,,40.676003,-73.865395,"(40.676003, -73.865395)",CONDUIT BOULEVARD,GRANT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499056,Bus,,,, +01/31/2022,13:00,QUEENS,11368,40.757694,-73.864624,"(40.757694, -73.864624)",104 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,14:45,QUEENS,11429,40.704018,-73.736176,"(40.704018, -73.736176)",221 STREET,113 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4499351,Sedan,Sedan,,, +01/29/2022,9:00,BROOKLYN,11221,40.69821,-73.92406,"(40.69821, -73.92406)",STOCKHOLM STREET,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498708,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,19:49,QUEENS,11373,40.734768,-73.86487,"(40.734768, -73.86487)",,,59-01 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498963,Station Wagon/Sport Utility Vehicle,BOX TRUCK,,, +01/27/2022,14:00,QUEENS,11373,40.74314,-73.88334,"(40.74314, -73.88334)",,,81-21 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498385,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +01/27/2022,17:48,,,40.73407,-73.74479,"(40.73407, -73.74479)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4497991,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,11:09,BROOKLYN,11217,40.68668,-73.97937,"(40.68668, -73.97937)",LAFAYETTE AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4499093,Sedan,Sedan,,, +01/27/2022,17:29,QUEENS,11354,40.769096,-73.833664,"(40.769096, -73.833664)",FARRINGTON STREET,31 ROAD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Turning Improperly,,,,4498170,Bike,Sedan,,, +01/31/2022,16:23,BRONX,10457,40.848396,-73.90605,"(40.848396, -73.90605)",MONROE AVENUE,MOUNT HOPE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498990,Bus,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,12:17,,,,,,MAIN STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498370,Sedan,Sedan,,, +01/23/2022,17:40,,,40.677032,-73.824684,"(40.677032, -73.824684)",114 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498035,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,14:37,,,40.83417,-73.94837,"(40.83417, -73.94837)",RIVERSIDE DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499153,Taxi,Pick-up Truck,,, +01/29/2022,21:07,,,40.578823,-73.98628,"(40.578823, -73.98628)",NEPTUNE AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4498338,Sedan,Sedan,,, +01/29/2022,10:10,MANHATTAN,10002,40.710464,-73.986626,"(40.710464, -73.986626)",SOUTH STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498151,AMBULANCE,Sedan,,, +01/28/2022,8:30,,,40.69098,-73.74878,"(40.69098, -73.74878)",201 PLACE,120 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498123,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,8:20,BROOKLYN,11236,40.649574,-73.89698,"(40.649574, -73.89698)",,,634 EAST 105 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498852,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,11:30,MANHATTAN,10065,40.768024,-73.97029,"(40.768024, -73.97029)",EAST 65 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498592,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,17:45,BROOKLYN,11236,40.64149,-73.89527,"(40.64149, -73.89527)",,,9902 AVENUE K,0,0,0,0,0,0,0,0,,,,,,4452154,Sedan,,,, +09/12/2021,21:05,QUEENS,11367,40.73819,-73.81231,"(40.73819, -73.81231)",,,61-25 156 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4460318,Motorcycle,,,, +11/02/2021,11:18,BROOKLYN,11211,40.715282,-73.95144,"(40.715282, -73.95144)",MEEKER AVENUE,SKILLMAN AVENUE,,0,1,0,0,0,0,0,1,Driver Inattention/Distraction,Unspecified,,,,4473468,Box Truck,Motorcycle,,, +10/28/2021,20:08,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4473878,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,20:45,,,40.83872,-73.91378,"(40.83872, -73.91378)",EAST 170 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475490,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,14:40,QUEENS,11691,40.59752,-73.75964,"(40.59752, -73.75964)",BEACH 25 STREET,DEERFIELD ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475499,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,20:38,,,,,,BOSTON ROAD,PELHAM PARKWAY NORTH,,1,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4475512,E-Bike,Station Wagon/Sport Utility Vehicle,,, +10/12/2021,22:00,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4467472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/17/2021,15:43,BROOKLYN,11206,,,,JOHNSON AVENUE,BUSHWICK PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4468312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,18:12,,,,,,MAJOR DEEGAN EXPRESSWAY,WEST 161 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475491,Sedan,Bus,,, +11/02/2021,19:41,,,40.73003,-73.99109,"(40.73003, -73.99109)",LAFAYETTE STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475484,Motorcycle,,,, +06/27/2021,21:30,QUEENS,11692,40.593067,-73.79258,"(40.593067, -73.79258)",,,63-08 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452285,Taxi,,,, +12/12/2021,18:00,BRONX,10468,40.86418,-73.90119,"(40.86418, -73.90119)",WEST 190 STREET,DAVIDSON AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4486360,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,19:30,,,40.712498,-73.97776,"(40.712498, -73.97776)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486214,Sedan,Sedan,,, +12/12/2021,13:50,,,40.786133,-73.824356,"(40.786133, -73.824356)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486244,Sedan,,,, +12/12/2021,23:40,,,40.691544,-73.9685,"(40.691544, -73.9685)",CLINTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485983,Bike,Sedan,,, +12/12/2021,13:28,QUEENS,11373,40.748154,-73.86983,"(40.748154, -73.86983)",,,40-35 WARREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4485724,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,17:09,MANHATTAN,10036,40.75668,-73.980606,"(40.75668, -73.980606)",,,48 WEST 46 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486083,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,7:00,STATEN ISLAND,10312,40.52791,-74.16486,"(40.52791, -74.16486)",HYLAN BOULEVARD,HOLDRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4485595,Sedan,,,, +12/12/2021,14:45,STATEN ISLAND,10305,40.597733,-74.067406,"(40.597733, -74.067406)",MCCLEAN AVENUE,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4485825,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/12/2021,17:41,MANHATTAN,10024,40.78202,-73.97173,"(40.78202, -73.97173)",WEST 81 STREET,CENTRAL PARK WEST,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inattention/Distraction,,,,4486199,Taxi,Sedan,,, +12/12/2021,14:07,,,40.585514,-73.93971,"(40.585514, -73.93971)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4486049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/12/2021,14:49,,,40.671642,-73.96258,"(40.671642, -73.96258)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485759,Sedan,Sedan,,, +12/08/2021,18:05,BRONX,10471,40.90104,-73.89689,"(40.90104, -73.89689)",WEST 254 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486471,Sedan,E-Scooter,,, +12/07/2021,10:20,QUEENS,11413,40.659306,-73.76583,"(40.659306, -73.76583)",,,147-45 182 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486430,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,21:14,BROOKLYN,11223,40.60625,-73.961815,"(40.60625, -73.961815)",,,2092 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485889,Sedan,Bike,,, +12/12/2021,3:57,BROOKLYN,11207,40.69089,-73.90545,"(40.69089, -73.90545)",,,1302 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485858,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,13:00,BROOKLYN,11211,40.713886,-73.95981,"(40.713886, -73.95981)",GRAND STREET,DRIGGS AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486366,E-Bike,Sedan,,, +11/06/2021,15:00,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4474656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,7:30,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4474854,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,7:10,BRONX,10452,40.8357,-73.926735,"(40.8357, -73.926735)",,,1114 NELSON AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4474746,Sedan,,,, +11/06/2021,1:05,,,40.734768,-73.861595,"(40.734768, -73.861595)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475434,Sedan,Sedan,,, +10/31/2021,0:30,QUEENS,11694,40.584587,-73.81958,"(40.584587, -73.81958)",ROCKAWAY BEACH BOULEVARD,BEACH 98 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,,,4475357,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/05/2021,13:20,STATEN ISLAND,10301,40.631115,-74.0918,"(40.631115, -74.0918)",,,73 FOREST AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475206,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,20:00,BRONX,10467,40.87525,-73.8756,"(40.87525, -73.8756)",HULL AVENUE,EAST 207 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475188,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,0:41,BROOKLYN,11217,40.68166,-73.97504,"(40.68166, -73.97504)",,,470 DEAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474395,Sedan,,,, +11/01/2021,14:30,MANHATTAN,10065,40.76432,-73.9576,"(40.76432, -73.9576)",,,425 EAST 67 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4475451,Motorcycle,,,, +11/06/2021,21:00,QUEENS,11417,40.674587,-73.85931,"(40.674587, -73.85931)",SUTTER AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4475006,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/06/2021,21:53,BROOKLYN,11234,40.625824,-73.92762,"(40.625824, -73.92762)",UTICA AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,,,,4474783,Sedan,Sedan,,, +11/06/2021,9:52,,,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4475162,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,14:30,BRONX,10468,40.865345,-73.90849,"(40.865345, -73.90849)",SEDGWICK AVENUE,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475251,Sedan,,,, +11/04/2021,7:41,BROOKLYN,11207,40.675888,-73.88649,"(40.675888, -73.88649)",LIBERTY AVENUE,WARWICK STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4475318,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,2:50,BROOKLYN,11229,40.59925,-73.952614,"(40.59925, -73.952614)",AVENUE U,EAST 19 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474511,E-Bike,Sedan,,, +11/06/2021,12:00,BRONX,10459,40.825924,-73.89194,"(40.825924, -73.89194)",,,1093 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4474799,Sedan,,,, +11/04/2021,18:30,STATEN ISLAND,10310,40.63239,-74.11917,"(40.63239, -74.11917)",CARY AVENUE,CAROLINE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475204,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,14:50,,,,,,EAST TREMONT AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475242,Bus,Sedan,,, +11/05/2021,10:15,BROOKLYN,11224,40.575302,-73.98453,"(40.575302, -73.98453)",WEST 17 STREET,SURF AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475140,Sedan,Bike,,, +11/06/2021,2:05,,,,,,GRAND CENTRAL PARKWAY,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474530,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,19:50,,,40.702797,-73.91365,"(40.702797, -73.91365)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474631,Sedan,Sedan,,, +11/06/2021,9:18,BROOKLYN,11212,40.66112,-73.920135,"(40.66112, -73.920135)",CLARKSON AVENUE,ROCKAWAY PARKWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474866,Station Wagon/Sport Utility Vehicle,Bike,,, +11/05/2021,23:23,BROOKLYN,11234,,,,,,50 AVIATION ROAD,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4475410,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,19:25,QUEENS,11354,40.761093,-73.82687,"(40.761093, -73.82687)",UNION STREET,39 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474933,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,18:14,,,40.764362,-73.96162,"(40.764362, -73.96162)",EAST 65 STREET,,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4475021,Box Truck,,,, +11/06/2021,6:22,,,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4475087,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/09/2021,9:45,BRONX,10473,40.81746,-73.863,"(40.81746, -73.863)",,,614 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486397,Sedan,Sedan,,, +07/09/2021,12:35,,,40.71016,-73.98854,"(40.71016, -73.98854)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452315,Taxi,,,, +11/06/2021,1:50,QUEENS,11370,40.76579,-73.886284,"(40.76579, -73.886284)",,,23-45 83 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4474612,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/06/2021,7:00,QUEENS,11357,40.795303,-73.800186,"(40.795303, -73.800186)",,,6-07 161 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4474556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,12:00,BRONX,10456,40.83501,-73.90353,"(40.83501, -73.90353)",EAST 170 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475275,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/06/2021,18:05,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475305,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/06/2021,16:45,,,40.673706,-73.90118,"(40.673706, -73.90118)",HINSDALE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4475334,Sedan,Sedan,,, +11/06/2021,15:40,BROOKLYN,11225,40.66408,-73.94817,"(40.66408, -73.94817)",NEW YORK AVENUE,EMPIRE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474603,Bus,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,4:57,MANHATTAN,10038,40.709557,-74.00644,"(40.709557, -74.00644)",WILLIAM STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474558,Sedan,,,, +11/05/2021,14:00,MANHATTAN,10022,40.75771,-73.97523,"(40.75771, -73.97523)",,,35 EAST 50 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475219,Box Truck,Sedan,,, +11/06/2021,15:28,BROOKLYN,11206,40.697247,-73.932846,"(40.697247, -73.932846)",MYRTLE AVENUE,DITMARS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474627,Sedan,Sedan,,, +11/06/2021,2:11,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474537,Sedan,,,, +11/06/2021,1:32,MANHATTAN,10029,40.794285,-73.95112,"(40.794285, -73.95112)",5 AVENUE,EAST 106 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4475065,Sedan,Motorcycle,,, +11/06/2021,4:00,BROOKLYN,11233,40.670773,-73.917046,"(40.670773, -73.917046)",,,430 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4474769,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,16:40,,,40.61368,-73.98882,"(40.61368, -73.98882)",70 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4474812,Station Wagon/Sport Utility Vehicle,Bike,,, +11/06/2021,18:24,,,40.88814,-73.89277,"(40.88814, -73.89277)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475420,Sedan,Sedan,,, +10/16/2021,23:44,,,40.8612,-73.93497,"(40.8612, -73.93497)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4475477,Sedan,,,, +11/06/2021,3:30,BROOKLYN,11203,40.644634,-73.92647,"(40.644634, -73.92647)",,,5313 CLARENDON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475117,Convertible,Convertible,Convertible,, +11/06/2021,20:23,BROOKLYN,11208,40.67412,-73.88081,"(40.67412, -73.88081)",PITKIN AVENUE,SHEPHERD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474960,Sedan,,,, +11/06/2021,13:52,,,40.68718,-73.79914,"(40.68718, -73.79914)",111 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474548,Sedan,,,, +11/06/2021,11:00,QUEENS,11370,40.755795,-73.89298,"(40.755795, -73.89298)",,,32-53 74 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474620,Sedan,,,, +11/06/2021,9:15,QUEENS,11377,40.74598,-73.89345,"(40.74598, -73.89345)",,,40-35 72 STREET,1,0,1,0,0,0,0,0,,,,,,4474735,,,,, +11/06/2021,17:35,,,40.807095,-73.945984,"(40.807095, -73.945984)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,,,,,4475265,Sedan,,,, +10/12/2021,19:59,MANHATTAN,10032,40.83951,-73.93786,"(40.83951, -73.93786)",,,511 WEST 167 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4475346,PK,Bike,,, +11/06/2021,22:00,BRONX,10460,40.841846,-73.870834,"(40.841846, -73.870834)",,,1751 VANBUREN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474929,Sedan,,,, +11/04/2021,14:37,BRONX,10458,40.859615,-73.89524,"(40.859615, -73.89524)",EAST 187 STREET,ELM PLACE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4475178,Sedan,Box Truck,,, +11/05/2021,8:50,BRONX,10451,40.8252,-73.91476,"(40.8252, -73.91476)",EAST 162 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475279,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,20:52,,,40.705215,-73.92069,"(40.705215, -73.92069)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474632,Sedan,,,, +11/05/2021,0:00,BROOKLYN,11208,40.682037,-73.87788,"(40.682037, -73.87788)",FULTON STREET,LOGAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475330,Sedan,,,, +11/06/2021,18:45,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",LEXINGTON AVENUE,EAST 35 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474671,Sedan,,,, +11/05/2021,20:18,,,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475230,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,6:27,BROOKLYN,11225,40.65947,-73.94931,"(40.65947, -73.94931)",,,342 RUTLAND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474570,FDNY TRUCK,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,17:46,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4475161,Sedan,Sedan,,, +11/06/2021,0:15,QUEENS,11420,40.680542,-73.807175,"(40.680542, -73.807175)",115 AVENUE,134 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4474981,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/06/2021,15:00,BRONX,10452,,,,WEST 172 STREET,MACOMBS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475039,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,21:20,,,40.6427,-73.87661,"(40.6427, -73.87661)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475338,Sedan,,,, +10/18/2021,7:27,BRONX,10455,,,,,,660 FOX STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4475156,Sedan,Sedan,Sedan,, +11/06/2021,2:48,QUEENS,11377,40.746346,-73.89612,"(40.746346, -73.89612)",,,69-12 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,1:35,,,40.66996,-73.90889,"(40.66996, -73.90889)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474761,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,10:10,,,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475192,Bus,Sedan,,, +11/06/2021,17:35,QUEENS,11355,40.756355,-73.82578,"(40.756355, -73.82578)",MAPLE AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474802,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,0:00,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",GRAND STREET,BUSHWICK AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475441,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,22:33,QUEENS,11355,40.75584,-73.83448,"(40.75584, -73.83448)",41 AVENUE,HAIGHT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474693,Sedan,,,, +10/30/2021,19:40,BRONX,10459,40.82099,-73.89589,"(40.82099, -73.89589)",EAST 163 STREET,KELLY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475457,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,23:00,,,40.645073,-73.97438,"(40.645073, -73.97438)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4474894,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,12:17,MANHATTAN,10128,40.781292,-73.953835,"(40.781292, -73.953835)",,,141 EAST 89 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475258,Sedan,Motorcycle,,, +11/06/2021,9:15,MANHATTAN,10003,40.73583,-73.98367,"(40.73583, -73.98367)",,,220 EAST 19 STREET,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4474639,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,20:00,QUEENS,11416,40.686764,-73.83595,"(40.686764, -73.83595)",,,101-12 107 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475168,Sedan,,,, +11/06/2021,10:55,BRONX,10457,40.842987,-73.900345,"(40.842987, -73.900345)",WASHINGTON AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475285,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,19:00,MANHATTAN,10027,40.807148,-73.958626,"(40.807148, -73.958626)",,,70 MORNINGSIDE DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474830,Taxi,E-Scooter,,, +11/06/2021,0:40,,,40.583992,-73.96752,"(40.583992, -73.96752)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474707,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,20:20,BRONX,10475,40.885296,-73.82733,"(40.885296, -73.82733)",,,3550 CONNER STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,18:41,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4474786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,, +11/04/2021,16:35,,,40.85381,-73.91386,"(40.85381, -73.91386)",WEST BURNSIDE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475200,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/06/2021,0:01,,,40.706123,-73.92214,"(40.706123, -73.92214)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474401,Convertible,,,, +11/06/2021,3:00,BROOKLYN,11203,40.653942,-73.928215,"(40.653942, -73.928215)",,,806 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475235,Station Wagon/Sport Utility Vehicle,Sedan,US GOVERME,, +11/06/2021,4:40,BROOKLYN,11208,40.685696,-73.87161,"(40.685696, -73.87161)",RIDGEWOOD AVENUE,HEMLOCK STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4475322,ECONOLINE,Sedan,Station Wagon/Sport Utility Vehicle,ECONOLINE, +11/06/2021,22:05,BROOKLYN,11236,40.637848,-73.91844,"(40.637848, -73.91844)",EAST 78 STREET,FARRAGUT ROAD,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4474666,Sedan,Sedan,Sedan,, +11/05/2021,18:00,,,40.618958,-74.02404,"(40.618958, -74.02404)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475148,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/04/2021,0:00,BROOKLYN,11208,40.68632,-73.869095,"(40.68632, -73.869095)",NICHOLS AVENUE,RIDGEWOOD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4475317,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,15:48,BRONX,10459,40.829006,-73.88993,"(40.829006, -73.88993)",,,1218 VYSE AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4475284,Sedan,,,, +11/05/2021,12:45,BRONX,10468,40.8626,-73.91151,"(40.8626, -73.91151)",LANDING ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4475187,Sedan,,,, +11/06/2021,2:35,BRONX,10463,40.885014,-73.900345,"(40.885014, -73.900345)",,,237 WEST 238 STREET,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4474512,Sedan,Sedan,,, +11/06/2021,10:22,QUEENS,11377,40.75361,-73.90393,"(40.75361, -73.90393)",NORTHERN BOULEVARD,57 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474637,Sedan,Pick-up Truck,,, +11/06/2021,18:30,BRONX,10473,40.8223,-73.873,"(40.8223, -73.873)",STORY AVENUE,MORRISON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474792,Sedan,Sedan,,, +11/02/2021,12:35,QUEENS,11416,40.68274,-73.85276,"(40.68274, -73.85276)",,,87-19 ROCKAWAY BOULEVARD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475244,Sedan,E-Bike,,, +11/06/2021,17:16,,,40.786423,-73.82394,"(40.786423, -73.82394)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4474695,Sedan,Sedan,Sedan,, +11/05/2021,12:45,BROOKLYN,11214,40.597267,-73.998665,"(40.597267, -73.998665)",BAY PARKWAY,CROPSEY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475139,Flat Bed,,,, +11/06/2021,10:00,QUEENS,11415,40.713264,-73.83285,"(40.713264, -73.83285)",,,119-14 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475167,Sedan,Sedan,,, +11/06/2021,11:40,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474751,Sedan,Sedan,,, +01/30/2022,18:03,,,40.65067,-73.95248,"(40.65067, -73.95248)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Pavement Slippery,,,,4498766,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,12:00,BROOKLYN,11207,40.67021,-73.898346,"(40.67021, -73.898346)",BELMONT AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475308,Station Wagon/Sport Utility Vehicle,,,, +11/02/2021,0:00,,,40.625908,-74.15577,"(40.625908, -74.15577)",FOREST AVENUE,VANPELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,16:30,BROOKLYN,11215,40.672142,-73.985405,"(40.672142, -73.985405)",,,303 5 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475442,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,0:52,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4474568,Taxi,Bike,,, +11/06/2021,19:08,BROOKLYN,11205,40.69767,-73.96675,"(40.69767, -73.96675)",HALL STREET,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4474604,Motorcycle,Sedan,,, +11/06/2021,18:34,BROOKLYN,11211,40.71175,-73.9558,"(40.71175, -73.9558)",SOUTH 1 STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474971,Sedan,White,,, +11/05/2021,18:19,BRONX,10460,40.83325,-73.890205,"(40.83325, -73.890205)",,,1490 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4475295,moped,,,, +11/06/2021,17:17,QUEENS,11101,40.743195,-73.93673,"(40.743195, -73.93673)",30 PLACE,47 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474661,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,17:25,,,40.846657,-73.89619,"(40.846657, -73.89619)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475102,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,9:12,QUEENS,11106,40.76241,-73.92064,"(40.76241, -73.92064)",,,31-04 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475250,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,3:44,,,40.762447,-73.91949,"(40.762447, -73.91949)",36 STREET,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4474550,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,12:30,BROOKLYN,11236,40.6487,-73.913795,"(40.6487, -73.913795)",,,9112 DITMAS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4474850,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +11/06/2021,6:10,QUEENS,11417,40.67137,-73.842995,"(40.67137, -73.842995)",,,137-27 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4474982,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,15:36,,,40.681656,-73.72783,"(40.681656, -73.72783)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474586,Sedan,Sedan,,, +08/29/2021,7:00,BROOKLYN,11208,,,,FORBELL STREET,MC KINLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452447,Sedan,,,, +11/06/2021,12:00,BRONX,10465,40.82048,-73.81809,"(40.82048, -73.81809)",EAST TREMONT AVENUE,SAMPSON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4474720,Sedan,Sedan,,, +10/13/2021,3:57,STATEN ISLAND,10304,,,,RICHMOND ROAD,DEKALB STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475180,Sedan,Sedan,,, +11/06/2021,15:03,,,,,,EDGEWATER STREET,EDGEWATER PLAZA,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475211,FRT,Sedan,,, +11/06/2021,19:30,BRONX,10462,40.845287,-73.858665,"(40.845287, -73.858665)",BRONXDALE AVENUE,VANNEST AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475119,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,22:30,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4474649,Sedan,Sedan,,, +11/06/2021,19:00,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474739,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,21:15,MANHATTAN,10032,40.837494,-73.94415,"(40.837494, -73.94415)",,,75 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4475350,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,11:12,,,,,,WEST 168 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475345,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,16:25,BRONX,10460,40.835938,-73.88645,"(40.835938, -73.88645)",,,1710 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475271,Bus,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,21:45,,,40.695347,-73.85896,"(40.695347, -73.85896)",86 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475173,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,15:50,BROOKLYN,11207,40.673573,-73.902084,"(40.673573, -73.902084)",LIBERTY AVENUE,SNEDIKER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4475331,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/06/2021,11:00,BROOKLYN,11207,40.673542,-73.88468,"(40.673542, -73.88468)",,,2376 PITKIN AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474959,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,6:30,BROOKLYN,11209,40.622704,-74.022064,"(40.622704, -74.022064)",,,611 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474525,Sedan,,,, +11/06/2021,5:05,,,,,,CORTELYOU ROAD,WESTMINISTER ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475091,Pick-up Truck,,,, +11/06/2021,16:45,BROOKLYN,11221,40.69469,-73.91693,"(40.69469, -73.91693)",,,1300 GATES AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474628,Station Wagon/Sport Utility Vehicle,Bus,,, +10/15/2021,5:45,,,,,,LONG ISLAND EXPRESSWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475471,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,14:30,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475004,Ambulance,Sedan,,, +11/06/2021,6:50,BROOKLYN,11203,40.643604,-73.94301,"(40.643604, -73.94301)",CLARENDON ROAD,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474864,Sedan,Sedan,,, +11/06/2021,21:13,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,4474766,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/06/2021,11:40,MANHATTAN,10032,40.83417,-73.94837,"(40.83417, -73.94837)",WEST 155 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475349,Bike,Sedan,,, +11/05/2021,12:25,MANHATTAN,10019,40.764996,-73.976715,"(40.764996, -73.976715)",AVENUE OF THE AMERICAS,WEST 58 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475218,Bike,Bike,,, +11/06/2021,12:30,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474811,Sedan,Sedan,Sedan,, +11/06/2021,6:00,QUEENS,11415,40.713264,-73.83285,"(40.713264, -73.83285)",,,119-14 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475174,Sedan,Sedan,,, +10/18/2021,20:00,,,,,,WEST 195 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475403,Station Wagon/Sport Utility Vehicle,Moped,,, +11/06/2021,12:24,BROOKLYN,11236,40.64891,-73.89256,"(40.64891, -73.89256)",FLATLANDS AVENUE,EAST 108 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,19:33,BRONX,10472,40.84822,-73.883125,"(40.84822, -73.883125)",SOUTHERN BOULEVARD,EAST 182 STREET,,4,0,0,0,0,0,4,0,Turning Improperly,Driver Inattention/Distraction,,,,4475103,Taxi,Pick-up Truck,,, +11/05/2021,22:53,BRONX,10453,40.857216,-73.90458,"(40.857216, -73.90458)",,,2218 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475157,Sedan,,,, +11/06/2021,17:15,QUEENS,11368,,,,SEAVER WAY,SHEA ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474738,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,16:20,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475020,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/16/2021,16:00,,,,,,,,Orchard beach road,2,0,1,0,0,0,1,0,Unspecified,,,,,4447971,Motorcycle,,,, +08/24/2021,1:10,,,40.698498,-73.99696,"(40.698498, -73.99696)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4450925,Sedan,Sedan,,, +08/27/2021,20:50,,,40.826836,-73.92263,"(40.826836, -73.92263)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451235,Taxi,Sedan,,, +08/29/2021,14:45,BRONX,10464,40.85516,-73.79019,"(40.85516, -73.79019)",,,610 MINNIEFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452646,Pick-up Truck,,,, +08/29/2021,10:12,BROOKLYN,11217,,,,,,115 SAINT JOHNS PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4452640,Sedan,Sedan,,, +08/21/2021,19:13,MANHATTAN,10001,40.744865,-73.99347,"(40.744865, -73.99347)",,,159 WEST 25 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452629,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,0:24,MANHATTAN,10028,40.780857,-73.960915,"(40.780857, -73.960915)",5 AVENUE,EAST 85 STREET,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4452635,E-Bike,,,, +11/06/2021,9:00,QUEENS,11375,40.722973,-73.83933,"(40.722973, -73.83933)",71 AVENUE,112 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474535,Sedan,Sedan,,, +11/06/2021,19:14,BROOKLYN,11222,40.728634,-73.953575,"(40.728634, -73.953575)",,,833 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474820,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,3:53,QUEENS,11369,40.757282,-73.87999,"(40.757282, -73.87999)",,,32-45 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/02/2021,12:00,,,,,,ORDELL AVENUE,FOREST AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475498,Sedan,E-Bike,,, +11/06/2021,1:35,BROOKLYN,11226,40.64814,-73.949295,"(40.64814, -73.949295)",NOSTRAND AVENUE,ALBEMARLE ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474837,Sedan,Sedan,Sedan,, +11/06/2021,23:35,MANHATTAN,10030,40.815765,-73.944786,"(40.815765, -73.944786)",,,229 WEST 135 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474665,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,15:00,BROOKLYN,11222,40.72625,-73.942726,"(40.72625, -73.942726)",,,195 MONITOR STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474819,Sedan,Bus,,, +10/30/2021,14:22,,,,,,WEST GUN HILL ROAD,MOSHOLU PARKWAY EXTENSION,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4475419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,0:45,BRONX,10468,40.862785,-73.90679,"(40.862785, -73.90679)",,,132 WEST FORDHAM ROAD,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4475191,Sedan,E-Bike,,, +11/06/2021,22:50,BRONX,10461,40.85025,-73.8449,"(40.85025, -73.8449)",,,1825 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Traffic Control Disregarded,,,,4474758,Ambulance,Sedan,,, +11/03/2021,9:58,,,40.84664,-73.92568,"(40.84664, -73.92568)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Drugs (illegal),Driver Inexperience,,,,4475201,Sedan,Sedan,,, +11/06/2021,2:52,BROOKLYN,11217,40.689663,-73.97411,"(40.689663, -73.97411)",DE KALB AVENUE,SOUTH OXFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474406,Station Wagon/Sport Utility Vehicle,Bus,,, +11/06/2021,15:12,BROOKLYN,11236,40.642002,-73.898834,"(40.642002, -73.898834)",AVENUE J,ROCKAWAY PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475238,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:36,,,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475483,Sedan,Sedan,,, +11/05/2021,16:16,BROOKLYN,11220,40.63721,-74.02221,"(40.63721, -74.02221)",SHORE ROAD DRIVE,4 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4475147,Sedan,,,, +11/06/2021,0:39,,,40.64844,-73.88242,"(40.64844, -73.88242)",PENNSYLVANIA AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4475321,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,12:50,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4475298,Sedan,Pallet,,, +11/06/2021,15:32,,,40.66252,-73.84071,"(40.66252, -73.84071)",157 AVENUE,,,4,0,0,0,0,0,4,0,Turning Improperly,,,,,4474994,Sedan,,,, +11/06/2021,14:35,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4474585,Sedan,,,, +11/06/2021,16:37,MANHATTAN,10029,40.796005,-73.93542,"(40.796005, -73.93542)",EAST 116 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474588,E-Bike,Sedan,,, +11/06/2021,16:00,QUEENS,11692,40.597614,-73.79666,"(40.597614, -73.79666)",,,623 BEACH 67 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474897,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,21:30,BROOKLYN,11203,40.644386,-73.93046,"(40.644386, -73.93046)",,,4901 CLARENDON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475234,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,17:00,BROOKLYN,11212,40.659203,-73.909996,"(40.659203, -73.909996)",BRISTOL STREET,NEWPORT STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451726,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,18:00,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452507,Sedan,Van,,, +08/29/2021,2:48,BRONX,10455,40.81846,-73.91489,"(40.81846, -73.91489)",EAST 153 STREET,ELTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451862,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,23:35,,,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498402,Sedan,Sedan,,, +08/26/2021,20:38,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452474,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,23:15,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",SUTPHIN BOULEVARD,116 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4452440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,10:00,,,40.71123,-73.85575,"(40.71123, -73.85575)",69 AVENUE,METROPOLITAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452300,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,0:28,,,40.645256,-73.874954,"(40.645256, -73.874954)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451405,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,20:31,BROOKLYN,11228,40.61458,-74.022804,"(40.61458, -74.022804)",7 AVENUE,92 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451751,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,17:43,,,,,,BELT PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4452483,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,20:29,,,40.810276,-73.94738,"(40.810276, -73.94738)",7 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4451949,Multi-Wheeled Vehicle,,,, +08/29/2021,15:18,MANHATTAN,10035,40.800053,-73.93249,"(40.800053, -73.93249)",,,2365 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451799,Box Truck,Flat Bed,,, +08/29/2021,16:15,BROOKLYN,11201,40.69212,-73.97897,"(40.69212, -73.97897)",,,115 ASHLAND PLACE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452184,Taxi,Bike,,, +07/09/2021,15:45,,,40.80054,-73.96192,"(40.80054, -73.96192)",WEST 108 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452327,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,14:19,QUEENS,11375,40.736576,-73.85406,"(40.736576, -73.85406)",HORACE HARDING EXPRESSWAY,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4452381,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,3:00,,,40.708504,-73.81954,"(40.708504, -73.81954)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451438,Sedan,Sedan,,, +08/29/2021,6:40,BROOKLYN,11206,,,,LORIMER STREET,BOERUM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451806,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,8:05,,,40.65794,-73.936874,"(40.65794, -73.936874)",WINTHROP STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452298,E-Scooter,Sedan,,, +08/28/2021,21:00,MANHATTAN,10030,40.815945,-73.94123,"(40.815945, -73.94123)",,,140 WEST 137 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452545,Sedan,,,, +07/09/2021,14:25,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4452320,Pick-up Truck,,,, +08/29/2021,6:47,QUEENS,11377,40.735615,-73.899994,"(40.735615, -73.899994)",51 AVENUE,65 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452120,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/29/2021,5:00,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",VERNON BOULEVARD,36 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,9:30,BRONX,10466,40.890354,-73.858025,"(40.890354, -73.858025)",,,723 EAST 229 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452559,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,23:26,BRONX,10469,40.8781,-73.85339,"(40.8781, -73.85339)",LACONIA AVENUE,EAST 216 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4452556,Sedan,Convertible,,, +08/29/2021,14:10,QUEENS,11365,40.732323,-73.810776,"(40.732323, -73.810776)",PARSONS BOULEVARD,JEWEL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451692,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,23:13,,,40.75406,-73.808624,"(40.75406, -73.808624)",46 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4451876,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,17:00,,,40.58381,-73.96938,"(40.58381, -73.96938)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451898,Taxi,Sedan,,, +08/29/2021,9:45,STATEN ISLAND,10312,40.54326,-74.19731,"(40.54326, -74.19731)",VINELAND AVENUE,HUGUENOT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451973,Sedan,,,, +08/29/2021,1:29,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4452042,van,Sedan,,, +08/29/2021,3:00,BRONX,10462,40.84669,-73.86192,"(40.84669, -73.86192)",,,1811 MATTHEWS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4451596,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/29/2021,8:25,,,40.87379,-73.87669,"(40.87379, -73.87669)",HULL AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4451527,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/09/2021,23:15,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",BROADWAY,69 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452339,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,10:20,BROOKLYN,11212,40.65598,-73.90933,"(40.65598, -73.90933)",,,77 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452360,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,19:00,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452404,PK,Sedan,,, +08/29/2021,3:30,,,40.685806,-73.80728,"(40.685806, -73.80728)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451572,Sedan,Sedan,,, +08/29/2021,7:30,,,40.654434,-73.86084,"(40.654434, -73.86084)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,View Obstructed/Limited,,,,4451534,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2021,11:45,BROOKLYN,11217,40.68532,-73.98071,"(40.68532, -73.98071)",ATLANTIC AVENUE,3 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452308,Sedan,Tanker,,, +08/29/2021,21:04,BROOKLYN,11231,40.67769,-74.00041,"(40.67769, -74.00041)",CLINTON STREET,LUQUER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452598,Station Wagon/Sport Utility Vehicle,Moped,,, +08/29/2021,11:15,BROOKLYN,11236,,,,FOSTER AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451672,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,4:43,BRONX,10473,40.81682,-73.85707,"(40.81682, -73.85707)",,,557 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4451506,Taxi,Sedan,,, +08/29/2021,0:28,,,40.85934,-73.90448,"(40.85934, -73.90448)",EVELYN PLACE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4452041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,14:49,QUEENS,11379,40.7231,-73.87768,"(40.7231, -73.87768)",62 AVENUE,80 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4452533,E-Scooter,,,, +08/29/2021,16:59,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4451791,Bike,E-Bike,,, +08/29/2021,2:53,BROOKLYN,11249,40.710808,-73.96478,"(40.710808, -73.96478)",,,97 SOUTH 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4451811,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/20/2021,10:44,BRONX,10462,40.839123,-73.86379,"(40.839123, -73.86379)",,,1545 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4452460,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +08/29/2021,22:30,QUEENS,11368,40.74919,-73.869194,"(40.74919, -73.869194)",,,96-15 ROOSEVELT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452495,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,3:30,QUEENS,11423,40.71028,-73.75935,"(40.71028, -73.75935)",,,100-18 200 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452089,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,10:08,,,40.826622,-73.930984,"(40.826622, -73.930984)",MACOMBS DAM BRIDGE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4451916,Sedan,Box Truck,,, +08/29/2021,13:09,MANHATTAN,10036,40.76553,-73.99768,"(40.76553, -73.99768)",12 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452052,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,1:53,,,,,,11 AVENUE,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451522,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,11:00,QUEENS,11416,40.689713,-73.840775,"(40.689713, -73.840775)",94 AVENUE,104 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451611,Sedan,Sedan,,, +08/29/2021,2:10,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",WEST 178 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451760,Sedan,,,, +07/09/2021,20:52,BROOKLYN,11236,40.64247,-73.895355,"(40.64247, -73.895355)",,,1068 EAST 100 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452335,Sedan,Sedan,,, +08/29/2021,11:31,,,,,,AMPERE AVENUE,KENNELWORTH PARK,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452419,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,23:40,BROOKLYN,11225,40.663334,-73.960236,"(40.663334, -73.960236)",,,57 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451896,Sedan,Sedan,,, +07/03/2021,0:00,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452279,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,20:49,QUEENS,11104,40.74547,-73.92586,"(40.74547, -73.92586)",,,43-31 39 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452340,Sedan,Box Truck,,, +08/29/2021,4:55,,,40.888588,-73.849884,"(40.888588, -73.849884)",PAULDING AVENUE,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4451699,Sedan,Sedan,Sedan,, +08/26/2022,6:32,BROOKLYN,11220,40.646294,-74.01379,"(40.646294, -74.01379)",,,365 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4571044,Sedan,,,, +08/28/2021,2:00,QUEENS,11417,40.676952,-73.842766,"(40.676952, -73.842766)",,,94-35 SUTTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452395,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,17:00,BRONX,10463,40.87618,-73.90943,"(40.87618, -73.90943)",,,70 MARBLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451736,Station Wagon/Sport Utility Vehicle,,,, +07/07/2021,23:55,BROOKLYN,11228,40.61405,-74.013916,"(40.61405, -74.013916)",86 STREET,13 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452312,Sedan,Bike,,, +01/26/2022,14:41,QUEENS,11378,40.725918,-73.89535,"(40.725918, -73.89535)",69 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499130,Sedan,Sedan,,, +08/29/2021,20:14,STATEN ISLAND,10306,40.556534,-74.12813,"(40.556534, -74.12813)",HYLAN BOULEVARD,BUFFALO STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452173,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,5:28,BRONX,10459,40.829422,-73.897575,"(40.829422, -73.897575)",PROSPECT AVENUE,EAST 169 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4452014,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,16:59,MANHATTAN,10013,40.720432,-74.00675,"(40.720432, -74.00675)",,,16 ERICSSON PLACE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452405,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,8:36,QUEENS,11385,40.71184,-73.905594,"(40.71184, -73.905594)",FOREST AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452539,Box Truck,,,, +06/01/2021,14:48,BRONX,10456,40.830536,-73.91571,"(40.830536, -73.91571)",EAST 166 STREET,MORRIS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4452304,Ambulance,Sedan,,, +08/29/2021,17:30,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451775,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/08/2021,23:29,,,40.590656,-73.803154,"(40.590656, -73.803154)",BEACH CHANNEL DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4452289,Sedan,,,, +08/29/2021,0:00,BROOKLYN,11237,40.704193,-73.93011,"(40.704193, -73.93011)",,,1055 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451807,Sedan,,,, +08/15/2021,13:20,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452477,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,1:30,,,40.745506,-73.852585,"(40.745506, -73.852585)",111 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451747,Bike,,,, +08/27/2021,13:49,BRONX,10472,40.83256,-73.86943,"(40.83256, -73.86943)",ROSEDALE AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452490,Sedan,Sedan,,, +08/29/2021,20:45,BROOKLYN,11210,40.631027,-73.95254,"(40.631027, -73.95254)",,,2928 BEDFORD AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451882,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,18:46,MANHATTAN,10016,40.74445,-73.97304,"(40.74445, -73.97304)",EAST 35 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452331,Taxi,Bike,,, +08/29/2021,17:51,,,40.87739,-73.8665,"(40.87739, -73.8665)",WHITE PLAINS ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451713,Sedan,,,, +08/29/2021,17:20,BROOKLYN,11211,40.71086,-73.95801,"(40.71086, -73.95801)",HAVEMEYER STREET,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452211,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +08/28/2021,5:19,BRONX,10452,40.846264,-73.920586,"(40.846264, -73.920586)",FEATHERBED LANE,PLIMPTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452348,Sedan,,,, +08/29/2021,23:00,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451841,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,16:25,QUEENS,11355,40.754658,-73.833115,"(40.754658, -73.833115)",COLLEGE POINT BOULEVARD,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451752,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,16:15,BROOKLYN,11219,40.626736,-73.99509,"(40.626736, -73.99509)",,,1460 60 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4451842,Bike,Sedan,,, +08/29/2021,12:58,BROOKLYN,11236,40.651157,-73.918144,"(40.651157, -73.918144)",REMSEN AVENUE,AVENUE A,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451802,Sedan,,,, +07/09/2021,11:50,,,40.708794,-73.72763,"(40.708794, -73.72763)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,1:00,QUEENS,11413,40.679855,-73.747406,"(40.679855, -73.747406)",,,221-05 133 AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4451409,Sedan,Sedan,,, +07/09/2021,15:00,MANHATTAN,10002,40.715954,-73.986725,"(40.715954, -73.986725)",GRAND STREET,CLINTON STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452316,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/26/2021,18:14,BRONX,10452,40.846237,-73.91818,"(40.846237, -73.91818)",FEATHERBED LANE,JESUP AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4452391,Sedan,E-Bike,,, +08/29/2021,12:47,,,40.848038,-73.93285,"(40.848038, -73.93285)",WEST 180 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,15:00,,,40.74411,-73.95364,"(40.74411, -73.95364)",48 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452128,Sedan,Sedan,,, +08/25/2021,5:18,QUEENS,11375,40.708317,-73.846664,"(40.708317, -73.846664)",UNION TURNPIKE,72 DRIVE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4452380,Sedan,,,, +08/28/2021,1:20,QUEENS,11421,40.695827,-73.855385,"(40.695827, -73.855385)",85 ROAD,90 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452346,Box Truck,Sedan,,, +07/06/2021,11:09,,,40.665546,-73.9537,"(40.665546, -73.9537)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452284,Sedan,Sedan,,, +08/29/2021,4:37,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4451439,Sedan,,,, +07/09/2021,11:00,QUEENS,11413,40.671757,-73.745255,"(40.671757, -73.745255)",228 STREET,138 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4452299,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,16:52,BRONX,10466,40.887802,-73.86046,"(40.887802, -73.86046)",EAST 225 STREET,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451712,Sedan,,,, +08/22/2021,16:45,BRONX,10469,,,,EASTCHESTER ROAD,BOSTON ROAD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4452548,Sedan,,,, +08/29/2021,8:00,BROOKLYN,11203,40.644554,-73.927666,"(40.644554, -73.927666)",CLARENDON ROAD,EAST 52 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4451803,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,17:28,QUEENS,11411,40.702057,-73.7468,"(40.702057, -73.7468)",MURDOCK AVENUE,208 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4452321,Sedan,Sedan,,, +08/29/2021,10:00,QUEENS,11368,40.7393,-73.857796,"(40.7393, -73.857796)",,,101-07 MARTENSE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451748,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,3:50,,,40.788906,-73.93765,"(40.788906, -73.93765)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4452105,Sedan,Sedan,,, +08/29/2021,22:20,BROOKLYN,11220,40.641674,-74.00313,"(40.641674, -74.00313)",49 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4452553,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +08/29/2021,1:00,BROOKLYN,11211,40.71199,-73.95644,"(40.71199, -73.95644)",,,279 SOUTH 1 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4452210,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/25/2021,16:23,,,40.826546,-73.855515,"(40.826546, -73.855515)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452509,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,18:13,MANHATTAN,10002,40.713787,-73.98512,"(40.713787, -73.98512)",MONTGOMERY STREET,HENRY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4451770,FDNY ENGIN,Sedan,Sedan,, +08/27/2021,11:36,,,40.727207,-73.90742,"(40.727207, -73.90742)",MAURICE AVENUE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452441,Sedan,Sedan,,, +08/29/2021,19:00,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452365,Tractor Truck Diesel,Sedan,,, +07/07/2021,19:50,QUEENS,11422,40.669147,-73.74049,"(40.669147, -73.74049)",,,138-37 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452311,Sedan,,,, +01/30/2022,8:08,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498481,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,4:30,QUEENS,11374,40.717197,-73.85883,"(40.717197, -73.85883)",,,67-27 ALDERTON STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4451552,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,2:56,QUEENS,11417,40.678852,-73.834114,"(40.678852, -73.834114)",ROCKAWAY BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451573,Sedan,,,, +08/29/2021,17:44,,,40.836502,-73.825165,"(40.836502, -73.825165)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4451919,Taxi,Motorcycle,,, +08/29/2021,15:00,BROOKLYN,11235,40.587612,-73.95496,"(40.587612, -73.95496)",,,1417 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4452606,Sedan,,,, +08/28/2021,5:36,BRONX,10456,40.834152,-73.90001,"(40.834152, -73.90001)",,,621 EAST 170 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4452354,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/29/2021,1:10,BROOKLYN,11210,40.631958,-73.94273,"(40.631958, -73.94273)",AVENUE H,EAST 35 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451727,Sedan,,,, +08/29/2021,13:35,MANHATTAN,10028,40.774567,-73.95108,"(40.774567, -73.95108)",,,1585 1 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452071,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,19:00,QUEENS,11363,40.7684,-73.73755,"(40.7684, -73.73755)",MARATHON PARKWAY,NORTHERN BOULEVARD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452326,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/29/2021,4:52,MANHATTAN,10029,40.79157,-73.94469,"(40.79157, -73.94469)",3 AVENUE,EAST 106 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451524,Sedan,Sedan,,, +08/29/2021,0:00,QUEENS,11434,40.68158,-73.76548,"(40.68158, -73.76548)",MERRICK BOULEVARD,127 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,Unspecified,,,4451861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/29/2021,23:50,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451927,Sedan,Sedan,,, +08/29/2021,0:50,QUEENS,11414,40.654156,-73.838646,"(40.654156, -73.838646)",CROSS BAY BOULEVARD,162 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4451563,Sedan,Sedan,,, +08/29/2021,13:45,,,,,,PELHAM PARKWAY,BOSTON ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451759,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/01/2021,18:56,BROOKLYN,11216,40.68327,-73.95016,"(40.68327, -73.95016)",JEFFERSON AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452280,Sedan,,,, +06/22/2021,14:35,,,40.83543,-73.92341,"(40.83543, -73.92341)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4452303,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/29/2021,4:06,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452090,Sedan,Sedan,,, +08/28/2021,22:30,BROOKLYN,11203,40.64981,-73.93503,"(40.64981, -73.93503)",SNYDER AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452503,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,2:19,,,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4451720,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,15:42,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451765,Sedan,Sedan,,, +08/28/2021,13:24,BRONX,10467,40.883633,-73.88517,"(40.883633, -73.88517)",WEST GUN HILL ROAD,WEST MOSHOLU PARKWAY NORTH,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4452433,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/21/2021,5:00,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452416,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,17:25,QUEENS,11372,40.746876,-73.891205,"(40.746876, -73.891205)",,,74-15 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4452336,Bus,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,10:05,MANHATTAN,10026,40.797676,-73.94929,"(40.797676, -73.94929)",,,2 WEST 111 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4452253,Sedan,Box Truck,,, +08/29/2021,4:15,QUEENS,11420,40.672203,-73.80873,"(40.672203, -73.80873)",130 STREET,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4452396,Pick-up Truck,Sedan,Sedan,, +08/29/2021,0:53,,,40.826294,-73.91462,"(40.826294, -73.91462)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4451915,Sedan,,,, +08/29/2021,1:25,QUEENS,11372,40.749294,-73.88519,"(40.749294, -73.88519)",,,37-54 81 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4451469,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/29/2021,22:00,,,40.76432,-73.9772,"(40.76432, -73.9772)",AVENUE OF THE AMERICAS,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4452049,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,20:35,,,40.708965,-73.95673,"(40.708965, -73.95673)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452590,Sedan,,,, +08/29/2021,16:45,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451676,Sedan,,,, +07/30/2021,12:42,,,40.67295,-73.92517,"(40.67295, -73.92517)",PROSPECT PLACE,,,5,0,2,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,Unspecified,4452494,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Sedan +08/29/2021,7:53,BRONX,10473,40.82258,-73.87081,"(40.82258, -73.87081)",,,1664 STORY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451945,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,0:00,MANHATTAN,10037,40.8116,-73.9349,"(40.8116, -73.9349)",EAST 135 STREET,HARLEM RIVER DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451873,Sedan,,,, +08/29/2021,3:15,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4451790,Sedan,,,, +08/29/2021,18:45,,,40.608433,-74.15544,"(40.608433, -74.15544)",VICTORY BOULEVARD,CHRISTOPHER LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +05/20/2021,18:00,BRONX,10451,40.821945,-73.9281,"(40.821945, -73.9281)",GERARD AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452307,Sedan,E-Scooter,,, +08/29/2021,17:00,BROOKLYN,11206,40.702293,-73.94412,"(40.702293, -73.94412)",,,2 MANHATTAN AVENUE,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4451810,E-Bike,,,, +08/29/2021,21:00,,,40.59547,-73.999016,"(40.59547, -73.999016)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452256,Sedan,Sedan,,, +08/28/2021,15:00,QUEENS,11436,40.686302,-73.793915,"(40.686302, -73.793915)",SUTPHIN BOULEVARD,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452446,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +08/29/2021,14:20,BROOKLYN,11209,40.632732,-74.02727,"(40.632732, -74.02727)",,,7301 3 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4451735,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,21:38,QUEENS,11694,40.57477,-73.858154,"(40.57477, -73.858154)",BEACH 140 STREET,NEWPORT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4452079,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,19:55,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452157,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,20:29,QUEENS,11366,40.733128,-73.783035,"(40.733128, -73.783035)",188 STREET,73 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451764,Sedan,E-Scooter,,, +08/24/2021,1:20,,,40.698498,-73.99696,"(40.698498, -73.99696)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452610,Sedan,Tractor Truck Diesel,,, +08/29/2021,12:50,,,40.644127,-74.00417,"(40.644127, -74.00417)",47 STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451967,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/29/2021,1:30,MANHATTAN,10003,40.73676,-73.984055,"(40.73676, -73.984055)",,,208 EAST 20 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4451489,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +08/29/2021,23:00,,,,,,WILLIAMSBURG BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451817,Taxi,,,, +08/29/2021,11:42,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4451594,Sedan,Sedan,Sedan,Sedan, +07/25/2021,0:10,QUEENS,11385,40.708076,-73.91112,"(40.708076, -73.91112)",,,466 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452532,Sedan,,,, +08/29/2021,8:10,BROOKLYN,11229,40.608948,-73.9435,"(40.608948, -73.9435)",,,3078 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4451854,Sedan,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle, +08/29/2021,6:59,BRONX,10472,40.831234,-73.872025,"(40.831234, -73.872025)",,,1265 FTELEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451731,Sedan,Sedan,Sedan,, +08/29/2021,6:50,MANHATTAN,10022,40.76092,-73.96704,"(40.76092, -73.96704)",3 AVENUE,EAST 58 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4451816,Sedan,Sedan,Sedan,, +08/27/2021,10:21,QUEENS,11426,40.726864,-73.72329,"(40.726864, -73.72329)",,,244-98 90 AVENUE,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4452457,Sedan,,,, +07/08/2021,23:00,QUEENS,11428,40.718006,-73.75277,"(40.718006, -73.75277)",91 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452288,Sedan,Box Truck,,, +08/29/2021,19:00,,,40.84691,-73.93824,"(40.84691, -73.93824)",WEST 176 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4451774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,12:05,BROOKLYN,11238,40.683266,-73.968895,"(40.683266, -73.968895)",,,475 CLERMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452295,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,0:20,,,40.67612,-73.936005,"(40.67612, -73.936005)",DEAN STREET,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4451423,Sedan,Sedan,,, +07/08/2021,23:30,,,40.69193,-73.91031,"(40.69193, -73.91031)",WEIRFIELD STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4452317,Sedan,,,, +08/25/2021,13:52,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452500,Sedan,Box Truck,,, +08/29/2021,21:00,QUEENS,11377,40.74094,-73.91725,"(40.74094, -73.91725)",48 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452125,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/28/2021,12:29,BRONX,10453,40.850018,-73.9107,"(40.850018, -73.9107)",JEROME AVENUE,WEST 177 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Following Too Closely,,,,4452390,Bike,Sedan,,, +08/29/2021,11:45,BROOKLYN,11222,40.736702,-73.95021,"(40.736702, -73.95021)",PAIDGE AVENUE,PROVOST STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Failure to Yield Right-of-Way,,,,4452355,Tractor Truck Diesel,Sedan,,, +08/29/2021,22:19,BROOKLYN,11228,40.613087,-74.01229,"(40.613087, -74.01229)",,,1383 86 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4451933,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/29/2021,0:53,BROOKLYN,11225,40.666138,-73.9567,"(40.666138, -73.9567)",,,1655 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4451562,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +08/29/2021,5:30,QUEENS,11420,40.68106,-73.82637,"(40.68106, -73.82637)",109 AVENUE,114 STREET,,1,0,0,0,0,0,1,0,Pavement Defective,Unspecified,,,,4451564,Sedan,Sedan,,, +08/29/2021,1:16,MANHATTAN,10030,40.815826,-73.947044,"(40.815826, -73.947044)",8 AVENUE,WEST 134 STREET,,1,0,1,0,0,0,0,0,Fatigued/Drowsy,,,,,4451885,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,10:07,QUEENS,11356,,,,123 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451606,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,18:52,,,,,,Pelham Parkway and Shore Road,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451920,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,15:45,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,15:01,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4451718,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,3:04,BRONX,10460,40.83325,-73.890205,"(40.83325, -73.890205)",,,1490 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4452015,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,9:25,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",EAST 163 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452353,Sedan,,,, +08/29/2021,4:20,MANHATTAN,10002,,,,WILLIAMSBURG BRIDGE,CLINTON STREET,,1,0,0,0,0,0,1,0,Passenger Distraction,,,,,4451511,Sedan,,,, +08/29/2021,13:35,QUEENS,11377,,,,53 PLACE,BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451887,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,15:10,QUEENS,11378,40.72069,-73.90287,"(40.72069, -73.90287)",,,58-38 FRESH POND ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452538,Station Wagon/Sport Utility Vehicle,Bike,,, +08/29/2021,19:30,QUEENS,11427,40.728107,-73.74166,"(40.728107, -73.74166)",,,89-67 220 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451986,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,20:50,MANHATTAN,10128,40.786545,-73.95256,"(40.786545, -73.95256)",EAST 96 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452070,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,1:00,BROOKLYN,11229,40.610504,-73.95767,"(40.610504, -73.95767)",AVENUE P,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451525,Trailer,,,, +01/31/2022,17:00,BROOKLYN,11218,40.640976,-73.982346,"(40.640976, -73.982346)",36 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498972,Bus,Sedan,,, +07/09/2021,21:20,,,40.73375,-73.865135,"(40.73375, -73.865135)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,Following Too Closely,Unspecified,,4452337,Sedan,Sedan,Sedan,Sedan, +08/29/2021,20:20,MANHATTAN,10013,40.71924,-73.99997,"(40.71924, -73.99997)",,,11 HOWARD STREET,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4452343,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,4:42,BRONX,10469,40.87312,-73.86133,"(40.87312, -73.86133)",BRONXWOOD AVENUE,DUNCAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451703,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,0:50,BROOKLYN,11226,40.653774,-73.95617,"(40.653774, -73.95617)",BEDFORD AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451804,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,14:53,,,40.792362,-73.96418,"(40.792362, -73.96418)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing or Lane Usage Improper,Unspecified,,,4452332,Sedan,Bus,,, +08/29/2021,18:05,QUEENS,11101,40.73955,-73.94531,"(40.73955, -73.94531)",BORDEN AVENUE,25 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452123,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,17:05,,,40.664013,-73.75669,"(40.664013, -73.75669)",145 AVENUE,222 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4452310,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,10:52,BROOKLYN,11236,40.63531,-73.9005,"(40.63531, -73.9005)",REMSEN AVENUE,AVENUE L,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4451546,Sedan,,,, +08/29/2021,10:00,,,,,,CROSS BRONX EXPRESSWAY,HENRY HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451728,Pick-up Truck,Sedan,,, +09/18/2022,8:11,,,40.694557,-73.906555,"(40.694557, -73.906555)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4571592,Sedan,,,, +08/25/2021,17:05,BROOKLYN,11201,40.683956,-73.98956,"(40.683956, -73.98956)",BALTIC STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4452600,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/29/2021,3:52,BROOKLYN,11213,40.677563,-73.93309,"(40.677563, -73.93309)",SCHENECTADY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,11:00,BRONX,10470,40.902157,-73.847626,"(40.902157, -73.847626)",EAST 241 STREET,OSMAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4452554,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/29/2021,6:10,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451686,Sedan,Sedan,,, +08/27/2021,21:49,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",JEROME AVENUE,EAST BURNSIDE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4452392,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,19:15,BROOKLYN,11210,40.631565,-73.94635,"(40.631565, -73.94635)",,,1598 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4451879,Sedan,,,, +08/29/2021,13:05,,,40.743515,-73.83375,"(40.743515, -73.83375)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4451647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,13:45,,,,,,ROCKAWAY FREEWAY,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452442,Sedan,,,, +07/08/2021,21:20,,,40.657093,-73.95026,"(40.657093, -73.95026)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452287,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,22:40,BROOKLYN,11218,40.638733,-73.98468,"(40.638733, -73.98468)",14 AVENUE,40 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452023,Sedan,,,, +08/14/2021,10:17,BRONX,10468,40.87022,-73.89964,"(40.87022, -73.89964)",,,2751 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452479,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,17:20,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451749,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,14:25,,,40.886127,-73.81532,"(40.886127, -73.81532)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4451918,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,13:43,BRONX,10467,40.879745,-73.88467,"(40.879745, -73.88467)",JEROME AVENUE,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452047,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/31/2022,6:20,,,40.58979,-74.19329,"(40.58979, -74.19329)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498840,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,21:30,QUEENS,11358,40.757755,-73.79304,"(40.757755, -73.79304)",NORTHERN BOULEVARD,UTOPIA PARKWAY,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4451795,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,21:45,BROOKLYN,11225,40.658512,-73.953316,"(40.658512, -73.953316)",FENIMORE STREET,ROGERS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4452196,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/07/2021,15:40,,,40.639866,-73.87788,"(40.639866, -73.87788)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452325,Sedan,Sedan,Sedan,, +08/29/2021,8:30,,,40.76249,-73.839584,"(40.76249, -73.839584)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4451741,Sedan,Sedan,,, +07/06/2021,1:10,BROOKLYN,11213,40.667824,-73.93122,"(40.667824, -73.93122)",UTICA AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452281,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,18:00,BROOKLYN,11226,40.640705,-73.952385,"(40.640705, -73.952385)",EAST 26 STREET,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452504,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,18:00,QUEENS,11368,40.75513,-73.84391,"(40.75513, -73.84391)",,,124-02 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,4:25,MANHATTAN,10011,40.73723,-74.000656,"(40.73723, -74.000656)",7 AVENUE,WEST 12 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451440,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,13:00,,,40.67843,-73.74736,"(40.67843, -73.74736)",MERRICK BOULEVARD,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452296,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,16:15,,,,,,PROSPECT AVENUE,EAST 189 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452398,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,6:00,QUEENS,11420,40.681705,-73.80675,"(40.681705, -73.80675)",,,114-47 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4451574,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,21:50,,,40.835384,-73.93096,"(40.835384, -73.93096)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,0:00,BROOKLYN,11219,40.623795,-74.00291,"(40.623795, -74.00291)",,,1314 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4452322,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,8:28,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452135,Sedan,Sedan,,, +07/21/2021,12:48,QUEENS,11432,40.703003,-73.80141,"(40.703003, -73.80141)",,,155-03 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452567,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/29/2021,16:15,QUEENS,11377,40.754276,-73.90902,"(40.754276, -73.90902)",BROADWAY,51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452462,Sedan,,,, +08/13/2021,12:45,BROOKLYN,11238,40.687664,-73.96394,"(40.687664, -73.96394)",,,16 CLIFTON PLACE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452510,Bike,,,, +08/29/2021,15:45,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451771,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,7:35,BRONX,10451,40.82406,-73.92815,"(40.82406, -73.92815)",RIVER AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452411,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,21:23,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4451864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,21:14,BROOKLYN,11203,40.65945,-73.9384,"(40.65945, -73.9384)",,,701 FENIMORE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452158,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,16:09,QUEENS,11356,40.780155,-73.8406,"(40.780155, -73.8406)",128 STREET,22 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451754,Sedan,,,, +08/29/2021,0:30,BROOKLYN,11203,40.655575,-73.926895,"(40.655575, -73.926895)",LENOX ROAD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4451722,Sedan,,,, +07/08/2021,13:30,,,40.75184,-73.94806,"(40.75184, -73.94806)",11 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452291,Sedan,,,, +07/09/2021,12:45,BROOKLYN,11216,40.669712,-73.94774,"(40.669712, -73.94774)",EASTERN PARKWAY,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4452302,Sedan,,,, +08/29/2021,11:09,BRONX,10464,40.84583,-73.785965,"(40.84583, -73.785965)",CITY ISLAND AVENUE,CAROLL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451913,Carry All,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,23:00,QUEENS,11435,40.70055,-73.8101,"(40.70055, -73.8101)",,,91-12 144 PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452091,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,5:40,QUEENS,11378,40.722897,-73.91386,"(40.722897, -73.91386)",MASPETH AVENUE,RUST STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4451786,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,10:20,,,40.72973,-73.91183,"(40.72973, -73.91183)",58 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452437,Sedan,TRLR,,, +08/29/2021,15:06,,,40.743187,-73.97207,"(40.743187, -73.97207)",EAST 34 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451818,Sedan,Sedan,,, +07/09/2021,19:25,,,40.60023,-73.9956,"(40.60023, -73.9956)",BAY PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452329,Sedan,,,, +08/29/2021,10:22,,,40.85458,-73.9162,"(40.85458, -73.9162)",WEST BURNSIDE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452241,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,3:40,,,40.757065,-73.73904,"(40.757065, -73.73904)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4452373,Tanker,,,, +08/29/2021,15:00,QUEENS,11436,40.68211,-73.79464,"(40.68211, -73.79464)",116 AVENUE,147 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451856,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,21:30,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452358,Bus,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,19:00,QUEENS,11369,40.767704,-73.87233,"(40.767704, -73.87233)",,,23-33 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452268,Sedan,Sedan,,, +08/29/2021,0:10,BROOKLYN,11228,40.623688,-74.01467,"(40.623688, -74.01467)",76 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4451426,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/09/2021,18:17,BROOKLYN,11234,40.62577,-73.9113,"(40.62577, -73.9113)",EAST 73 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452318,Sedan,Sedan,,, +07/02/2021,9:30,,,40.74886,-73.93755,"(40.74886, -73.93755)",JACKSON AVENUE,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4452292,Sedan,,,, +08/29/2021,7:28,QUEENS,11368,,,,,,54-39 100 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451740,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,21:13,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CENTRE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4451940,Sedan,Sedan,,, +08/29/2021,5:55,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,WINTHROP STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4451565,Sedan,Sedan,,, +08/29/2021,1:49,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4451921,Sedan,Taxi,School Bus,, +06/28/2021,16:19,,,40.702454,-73.859406,"(40.702454, -73.859406)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unsafe Speed,,,4452537,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,15:25,,,,,,QUEENS PLAZA NORTH,28 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452306,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,17:44,BRONX,10462,40.852306,-73.86207,"(40.852306, -73.86207)",BRADY AVENUE,MULINER AVENUE,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4452137,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,22:45,,,40.743324,-73.83379,"(40.743324, -73.83379)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Reaction to Uninvolved Vehicle,Following Too Closely,,,4451793,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/02/2021,0:00,QUEENS,11413,40.665485,-73.75374,"(40.665485, -73.75374)",224 STREET,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452455,Sedan,Box Truck,,, +08/29/2021,15:15,BROOKLYN,11211,40.7124,-73.95136,"(40.7124, -73.95136)",UNION AVENUE,AINSLIE STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4451809,Motorscooter,,,, +08/29/2021,22:50,BRONX,10473,40.81689,-73.86383,"(40.81689, -73.86383)",RANDALL AVENUE,SAINT LAWRENCE AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4452493,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,19:00,,,40.781693,-73.82225,"(40.781693, -73.82225)",20 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452082,Sedan,Sedan,,, +08/29/2021,17:09,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",NORTHERN BOULEVARD,40 AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4451880,Motorcycle,Taxi,,, +08/29/2021,3:50,,,40.701836,-73.82211,"(40.701836, -73.82211)",JAMAICA AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4451629,Sedan,Sedan,,, +08/29/2021,11:48,BROOKLYN,11226,40.6434,-73.9546,"(40.6434, -73.9546)",,,2470 BEDFORD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451717,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,8:23,BRONX,10460,40.832954,-73.89185,"(40.832954, -73.89185)",,,1420 CHARLOTTE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452352,Sedan,,,, +08/29/2021,5:57,,,,,,BRUCKNER EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4451517,Station Wagon/Sport Utility Vehicle,,,, +07/08/2021,15:44,QUEENS,11426,40.75068,-73.72698,"(40.75068, -73.72698)",,,245-20 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452333,Sedan,Sedan,,, +08/29/2021,14:06,QUEENS,11105,,,,19th Ave,46 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451889,Van,Van,,, +08/29/2021,20:15,QUEENS,11411,40.701187,-73.74148,"(40.701187, -73.74148)",SPRINGFIELD BOULEVARD,115 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451763,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,11:05,BROOKLYN,11206,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,VERNON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452425,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,17:25,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452314,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,15:40,BRONX,10453,40.847813,-73.90754,"(40.847813, -73.90754)",GRAND CONCOURSE,EAST 176 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4452387,Sedan,,,, +08/29/2021,12:00,,,40.776016,-73.78441,"(40.776016, -73.78441)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,0:08,,,40.642197,-73.92835,"(40.642197, -73.92835)",EAST 51 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4451723,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/29/2021,10:00,QUEENS,11435,40.692364,-73.802795,"(40.692364, -73.802795)",,,107-14 LIVERPOOL STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452092,Sedan,,,, +08/29/2021,3:23,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451997,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,1:50,STATEN ISLAND,10308,40.54387,-74.14445,"(40.54387, -74.14445)",HYLAN BOULEVARD,CLEVELAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,3:47,QUEENS,11691,40.595325,-73.78092,"(40.595325, -73.78092)",BEACH CHANNEL DRIVE,BEACH 50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452438,Sedan,,,, +08/29/2021,1:35,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",34 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451509,E-Bike,Sedan,,, +07/24/2021,23:38,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,MENAHAN STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452526,Sedan,E-Bike,,, +08/29/2021,23:46,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451814,Sedan,Sedan,Sedan,, +08/27/2021,16:37,,,40.688305,-73.75607,"(40.688305, -73.75607)",193 STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452445,Sedan,,,, +08/29/2021,19:00,QUEENS,11418,40.69403,-73.834724,"(40.69403, -73.834724)",,,91-26 112 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452498,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,2:35,BROOKLYN,11213,40.66703,-73.93171,"(40.66703, -73.93171)",,,1688 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451559,Sedan,Sedan,,, +08/20/2021,22:40,QUEENS,11434,40.67824,-73.7711,"(40.67824, -73.7711)",BEDELL STREET,130 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452443,Sedan,Sedan,,, +08/29/2021,9:10,BRONX,10465,,,,,,447 QUINCY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451912,Sedan,,,, +08/29/2021,1:30,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4451487,Pick-up Truck,,,, +08/29/2021,0:30,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451729,Sedan,,,, +08/29/2021,21:45,,,40.743393,-73.837555,"(40.743393, -73.837555)",LONG ISLAND EXPRESSWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451984,Station Wagon/Sport Utility Vehicle,,,, +08/02/2021,11:48,QUEENS,11435,40.704456,-73.809105,"(40.704456, -73.809105)",,,88-32 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452566,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,0:00,QUEENS,11419,40.68399,-73.82309,"(40.68399, -73.82309)",,,107-50 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452393,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/29/2021,16:59,BRONX,10469,40.880337,-73.83824,"(40.880337, -73.83824)",,,3443 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451877,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,7:30,,,40.654434,-73.86084,"(40.654434, -73.86084)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4451597,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2021,14:00,BROOKLYN,11238,40.683723,-73.96797,"(40.683723, -73.96797)",VANDERBILT AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452301,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/18/2021,12:00,,,,,,LINCOLN AVENUE,flatbush,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452282,Box Truck,Sedan,,, +08/29/2021,0:00,QUEENS,11432,40.712444,-73.78834,"(40.712444, -73.78834)",,,175-05 WEXFORD TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451767,Sedan,Sedan,,, +08/28/2021,18:02,MANHATTAN,10040,40.861256,-73.925674,"(40.861256, -73.925674)",NAGLE AVENUE,THAYER STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452505,Sedan,E-Bike,,, +08/29/2021,19:25,BROOKLYN,11228,40.62657,-74.01167,"(40.62657, -74.01167)",71 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451750,Pick-up Truck,E-Bike,,, +08/29/2021,19:00,,,,,,VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,18:50,MANHATTAN,10003,40.73198,-73.98199,"(40.73198, -73.98199)",,,253 1 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452190,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,10:08,,,40.77353,-73.94417,"(40.77353, -73.94417)",FDR DRIVE,,,3,0,0,0,3,0,0,0,Pavement Defective,Shoulders Defective/Improper,Pavement Defective,,,4451773,Bike,Bike,Bike,, +08/25/2021,4:10,QUEENS,11367,40.72939,-73.8209,"(40.72939, -73.8209)",,,70-10 147 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452516,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,14:22,MANHATTAN,10280,40.708828,-74.016205,"(40.708828, -74.016205)",,,200 RECTOR PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452403,Sedan,Sedan,,, +08/29/2021,6:35,BROOKLYN,11233,40.670906,-73.920715,"(40.670906, -73.920715)",,,1732 STERLING PLACE,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,,,4451576,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/10/2021,0:00,BRONX,10452,40.84434,-73.91475,"(40.84434, -73.91475)",WEST MOUNT EDEN AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452370,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,8:45,,,40.766293,-73.93363,"(40.766293, -73.93363)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451542,Sedan,,,, +07/08/2021,16:55,QUEENS,11429,40.71365,-73.73413,"(40.71365, -73.73413)",102 AVENUE,220 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4452309,Sedan,Sedan,,, +08/29/2021,12:00,,,40.85493,-73.82617,"(40.85493, -73.82617)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451917,Tractor Truck Diesel,Sedan,,, +08/24/2021,15:40,,,40.700245,-73.92089,"(40.700245, -73.92089)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452480,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Tractor Truck Diesel,, +08/26/2021,5:30,,,40.686756,-73.9938,"(40.686756, -73.9938)",COURT STREET,WARREN STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4452599,Bus,Van,,, +08/29/2021,12:06,,,40.866325,-73.88837,"(40.866325, -73.88837)",MARION AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452043,Sedan,,,, +08/29/2021,14:45,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,EDSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451690,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,15:51,,,40.696175,-73.98036,"(40.696175, -73.98036)",TILLARY STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4451797,Sedan,Moped,,, +08/29/2021,0:43,,,40.597607,-74.14128,"(40.597607, -74.14128)",,,192 WALCOTT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451957,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,21:00,,,40.8133,-73.930405,"(40.8133, -73.930405)",EAST 138 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4451863,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/29/2021,4:40,,,40.79337,-73.93274,"(40.79337, -73.93274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4451526,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,4:16,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",SUTTER AVENUE,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4451441,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,3:39,,,,,,MAJOR DEEGAN EXPRESSWAY,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4451733,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2021,1:22,BROOKLYN,11236,40.647976,-73.89399,"(40.647976, -73.89399)",FLATLANDS AVENUE,EAST 106 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452341,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,23:22,BROOKLYN,11222,40.724636,-73.94818,"(40.724636, -73.94818)",MC GUINNESS BOULEVARD,NASSAU AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4451805,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,5:55,BRONX,10469,40.87645,-73.848175,"(40.87645, -73.848175)",BOSTON ROAD,FENTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451702,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,3:56,BROOKLYN,11233,40.68316,-73.93809,"(40.68316, -73.93809)",MARCUS GARVEY BOULEVARD,HALSEY STREET,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4452541,Motorcycle,,,, +07/08/2021,22:20,QUEENS,11693,40.584896,-73.81895,"(40.584896, -73.81895)",,,97-02 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452286,Sedan,,,, +07/09/2021,11:30,,,40.660297,-73.947685,"(40.660297, -73.947685)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4452297,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,17:15,BROOKLYN,11207,40.656204,-73.886696,"(40.656204, -73.886696)",WORTMAN AVENUE,VERMONT STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4452130,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,15:13,BROOKLYN,11217,40.685406,-73.97525,"(40.685406, -73.97525)",HANSON PLACE,SOUTH ELLIOTT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452323,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,4:45,BROOKLYN,11220,40.647064,-74.0166,"(40.647064, -74.0166)",,,268 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452555,Sedan,Sedan,,, +08/25/2021,15:00,,,40.575302,-73.98453,"(40.575302, -73.98453)",WEST 17 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452472,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,19:02,BROOKLYN,11236,40.6411,-73.90463,"(40.6411, -73.90463)",FLATLANDS AVENUE,EAST 92 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4451742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,17:00,BRONX,10461,40.838387,-73.84162,"(40.838387, -73.84162)",COMMERCE AVENUE,BUTLER PLACE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4452167,Sedan,,,, +07/09/2021,16:20,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452338,Sedan,Sedan,,, +08/29/2021,20:20,QUEENS,11105,40.77731,-73.91239,"(40.77731, -73.91239)",DITMARS BOULEVARD,28 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4451891,Sedan,Motorcycle,,, +08/29/2021,13:30,BROOKLYN,11219,40.632435,-73.998405,"(40.632435, -73.998405)",12 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4452359,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,20:40,QUEENS,11372,40.74993,-73.87392,"(40.74993, -73.87392)",,,37-31 93 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,10:00,,,40.685074,-73.83029,"(40.685074, -73.83029)",112 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4451566,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/29/2021,11:45,BRONX,10472,40.83256,-73.86943,"(40.83256, -73.86943)",EAST 172 STREET,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451944,Sedan,Sedan,,, +07/09/2021,16:42,BROOKLYN,11205,40.69452,-73.96712,"(40.69452, -73.96712)",,,135 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452313,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,16:35,,,40.57944,-73.979614,"(40.57944, -73.979614)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451881,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,11:40,BROOKLYN,11249,,,,WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4451557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,10:30,,,40.605217,-74.00838,"(40.605217, -74.00838)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4451654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,9:00,BRONX,10451,40.81976,-73.92348,"(40.81976, -73.92348)",,,2924 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452068,Sedan,,,, +08/29/2021,3:45,BROOKLYN,11220,40.638523,-74.01,"(40.638523, -74.01)",7 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452029,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,0:37,MANHATTAN,10011,40.733612,-73.999565,"(40.733612, -73.999565)",AVENUE OF THE AMERICAS,WEST 8 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2021,15:15,BROOKLYN,11236,40.631554,-73.90511,"(40.631554, -73.90511)",,,1218 EAST 83 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452324,Sedan,,,, +08/24/2021,17:00,,,40.740818,-73.8213,"(40.740818, -73.8213)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4452535,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,20:00,QUEENS,11411,40.6952,-73.73402,"(40.6952, -73.73402)",116 AVENUE,226 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452149,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,19:00,BROOKLYN,11205,40.697662,-73.97749,"(40.697662, -73.97749)",,,11 NORTH ELLIOTT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452422,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,15:41,,,40.698254,-73.86939,"(40.698254, -73.86939)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4451781,Sedan,Sedan,,, +07/09/2021,4:58,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4452290,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2021,8:40,,,,,,Queens blvd,Union Tpky,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452293,Sedan,Sedan,,, +08/29/2021,3:20,,,40.63082,-73.88636,"(40.63082, -73.88636)",SHORE PARKWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451437,Sedan,Sedan,,, +08/24/2021,10:50,BROOKLYN,11219,40.63933,-73.99623,"(40.63933, -73.99623)",47 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452351,,,,, +08/29/2021,22:41,BROOKLYN,11211,40.706673,-73.95443,"(40.706673, -73.95443)",HARRISON AVENUE,HOOPER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Backing Unsafely,,,,4451813,Ambulance,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,22:39,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451860,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,15:52,QUEENS,11434,40.684155,-73.78699,"(40.684155, -73.78699)",116 ROAD,BARRON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452453,Station Wagon/Sport Utility Vehicle,,,, +07/09/2021,17:15,BROOKLYN,11228,40.61458,-74.022804,"(40.61458, -74.022804)",92 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4452319,Sedan,Sedan,,, +08/28/2021,11:11,,,40.863163,-73.91988,"(40.863163, -73.91988)",WEST 205 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452497,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,14:31,BROOKLYN,11229,40.599632,-73.93396,"(40.599632, -73.93396)",KNAPP STREET,AVENUE V,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4452372,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +01/27/2022,12:10,,,40.76573,-73.926445,"(40.76573, -73.926445)",31 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4498091,Moped,,,, +08/29/2021,12:35,BRONX,10463,40.887352,-73.90534,"(40.887352, -73.90534)",WEST 238 STREET,GREYSTONE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451737,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,2:00,QUEENS,11435,40.70055,-73.8101,"(40.70055, -73.8101)",,,91-12 144 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452088,Sedan,,,, +08/29/2021,0:00,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4451762,Motorcycle,Sedan,,, +07/05/2021,20:32,BROOKLYN,11236,40.637108,-73.89338,"(40.637108, -73.89338)",AVENUE M,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452334,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,17:00,,,40.606728,-73.76394,"(40.606728, -73.76394)",BAYSWATER AVENUE,BAY 25 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452439,Sedan,,,, +08/29/2021,15:25,QUEENS,11434,40.68432,-73.769684,"(40.68432, -73.769684)",BAISLEY BOULEVARD,120 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451833,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/29/2021,11:25,MANHATTAN,10000,40.774708,-73.97469,"(40.774708, -73.97469)",WEST DRIVE,OLMSTED WAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4451623,Bike,,,, +08/29/2021,1:44,,,,,,QUEENS MIDTOWN EXPRESSWAY,42 street,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4451508,Station Wagon/Sport Utility Vehicle,Bike,,, +08/29/2021,19:20,BRONX,10475,40.878654,-73.824066,"(40.878654, -73.824066)",,,120 CASALS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4451923,Sedan,,,, +08/29/2021,6:05,,,40.696823,-73.91487,"(40.696823, -73.91487)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4452097,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,0:20,BROOKLYN,11236,40.652786,-73.91997,"(40.652786, -73.91997)",REMSEN AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451725,Sedan,,,, +08/29/2021,10:48,BROOKLYN,11226,40.649944,-73.96703,"(40.649944, -73.96703)",CATON AVENUE,RUGBY ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4451716,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,10:15,MANHATTAN,10029,40.78393,-73.94423,"(40.78393, -73.94423)",1 AVENUE,EAST 97 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452012,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2021,18:19,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452328,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,2:00,,,40.744644,-73.77041,"(40.744644, -73.77041)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452521,Sedan,,,, +08/29/2021,16:45,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4451753,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,18:30,BROOKLYN,11215,40.67267,-73.99002,"(40.67267, -73.99002)",3 AVENUE,7 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4451792,Pick-up Truck,Pick-up Truck,,, +07/08/2021,23:30,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452305,Sedan,,,, +08/28/2021,20:30,QUEENS,11368,40.752117,-73.8595,"(40.752117, -73.8595)",,,38-14 108 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452270,E-Bike,Sedan,,, +08/29/2021,0:23,STATEN ISLAND,10304,40.617714,-74.08225,"(40.617714, -74.08225)",MICKARDAN COURT,PRINCE STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4452406,Pick-up Truck,Sedan,Sedan,Sedan, +08/28/2021,21:30,BROOKLYN,11207,40.674606,-73.89508,"(40.674606, -73.89508)",,,400 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452444,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/29/2021,0:30,BROOKLYN,11211,40.715588,-73.93398,"(40.715588, -73.93398)",REWE STREET,VANDERVORT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4451808,Sedan,,,, +08/28/2021,10:15,STATEN ISLAND,10310,40.64081,-74.11916,"(40.64081, -74.11916)",RICHMOND TERRACE,BARRETT LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452491,Sedan,,,, +08/29/2021,13:00,QUEENS,11373,40.743546,-73.88799,"(40.743546, -73.88799)",WOODSIDE AVENUE,77 STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4451743,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/29/2021,12:45,QUEENS,11417,40.671932,-73.85165,"(40.671932, -73.85165)",NORTH CONDUIT AVENUE,84 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4452382,Sedan,Sedan,,, +08/29/2021,15:59,MANHATTAN,10027,40.81796,-73.960365,"(40.81796, -73.960365)",WEST 125 STREET,RIVERSIDE DRIVE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452169,Station Wagon/Sport Utility Vehicle,Bike,,, +08/29/2021,17:36,,,40.828983,-73.952156,"(40.828983, -73.952156)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4452236,Sedan,,,, +08/25/2021,19:15,,,40.674747,-73.9417,"(40.674747, -73.9417)",SAINT MARKS AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4452506,Sedan,Bike,,, +01/19/2022,7:50,,,40.695377,-73.94921,"(40.695377, -73.94921)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498310,Bus,Station Wagon/Sport Utility Vehicle,,, +07/05/2021,9:46,BROOKLYN,11225,40.657425,-73.96231,"(40.657425, -73.96231)",,,231 OCEAN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452283,E-Bike,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,15:30,QUEENS,11428,40.71753,-73.7389,"(40.71753, -73.7389)",216 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451768,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,0:00,BROOKLYN,11206,40.70778,-73.93854,"(40.70778, -73.93854)",MONTROSE AVENUE,BUSHWICK PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4474973,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/06/2021,12:00,MANHATTAN,10128,40.78519,-73.94934,"(40.78519, -73.94934)",EAST 96 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,19:25,MANHATTAN,10002,40.714054,-73.9902,"(40.714054, -73.9902)",RUTGERS STREET,EAST BROADWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4474648,Sedan,Bike,,, +11/06/2021,21:05,BRONX,10456,40.821114,-73.90995,"(40.821114, -73.90995)",,,820 SAINT ANNS AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4475043,Bike,E-Bike,,, +11/06/2021,22:00,QUEENS,11435,40.709625,-73.81821,"(40.709625, -73.81821)",,,84-48 MANTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475290,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,13:29,,,40.692844,-73.99311,"(40.692844, -73.99311)",CLINTON STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4474544,Station Wagon/Sport Utility Vehicle,Moped,,, +11/06/2021,22:45,BROOKLYN,11206,40.69673,-73.93735,"(40.69673, -73.93735)",,,1080 MYRTLE AVENUE,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,,,,4474905,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,14:50,QUEENS,11691,40.59831,-73.755226,"(40.59831, -73.755226)",,,20-30 ELK DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475507,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,23:31,BROOKLYN,11235,40.58906,-73.96414,"(40.58906, -73.96414)",,,601 AVENUE Y,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475026,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,20:58,MANHATTAN,10280,40.712353,-74.01549,"(40.712353, -74.01549)",,,395 SOUTH END AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475099,Sedan,Bike,,, +11/06/2021,2:20,,,40.768887,-73.90691,"(40.768887, -73.90691)",ASTORIA BOULEVARD,43 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4474551,Sedan,Sedan,,, +11/06/2021,5:25,QUEENS,11369,40.761017,-73.86899,"(40.761017, -73.86899)",,,100-02 31 AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4474618,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/06/2021,12:59,,,40.865925,-73.88594,"(40.865925, -73.88594)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4475272,Sedan,Motorcycle,,, +10/29/2021,21:00,BRONX,10461,0,0,"(0.0, 0.0)",COMMERCE AVENUE,BUTLER PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475282,Sedan,,,, +11/06/2021,18:20,QUEENS,11377,40.7493,-73.89758,"(40.7493, -73.89758)",65 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474636,Sedan,Bike,,, +11/06/2021,11:50,,,40.835194,-73.874054,"(40.835194, -73.874054)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4474795,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/30/2021,0:31,BRONX,10457,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4475260,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,21:30,MANHATTAN,10018,40.75767,-73.99483,"(40.75767, -73.99483)",WEST 40 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475143,Sedan,,,, +10/22/2021,19:30,,,,,,WEST 202 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475228,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,0:15,BROOKLYN,11203,40.657745,-73.93104,"(40.657745, -73.93104)",,,640 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474567,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,0:41,,,,,,LIE LOWER LEVEL (CDR),,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4474662,Station Wagon/Sport Utility Vehicle,Carry All,,, +01/23/2022,0:34,QUEENS,11368,40.746075,-73.86408,"(40.746075, -73.86408)",NATIONAL STREET,44 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4498453,Sedan,,,, +10/23/2021,4:09,BROOKLYN,11211,,,,ROSS STREET,LEE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4470198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/06/2021,16:00,,,40.70324,-73.92615,"(40.70324, -73.92615)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474629,Sedan,Sedan,,, +11/04/2021,10:30,BROOKLYN,11208,40.66687,-73.88066,"(40.66687, -73.88066)",,,734 LINWOOD STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475323,Sedan,E-Bike,,, +11/06/2021,22:26,,,,,,JUNCTION BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4474883,Sedan,Sedan,,, +11/06/2021,13:30,,,40.707027,-73.9236,"(40.707027, -73.9236)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474623,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,16:38,,,40.670734,-73.93373,"(40.670734, -73.93373)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475367,Sedan,,,, +11/05/2021,21:21,BRONX,10453,40.8557,-73.91495,"(40.8557, -73.91495)",HENNESSEY PLACE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475190,Sedan,,,, +11/06/2021,12:25,BRONX,10454,40.806812,-73.9175,"(40.806812, -73.9175)",SAINT ANNS AVENUE,EAST 138 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4475044,Bike,,,, +11/02/2021,18:33,MANHATTAN,10028,40.774788,-73.954445,"(40.774788, -73.954445)",,,298 EAST 81 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475448,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,19:00,QUEENS,11355,40.740616,-73.81721,"(40.740616, -73.81721)",60 AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474696,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,6:00,BROOKLYN,11211,40.716778,-73.93635,"(40.716778, -73.93635)",MORGAN AVENUE,MASPETH AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4474967,Sedan,Chassis Cab,,, +11/06/2021,22:08,MANHATTAN,10030,40.815304,-73.94371,"(40.815304, -73.94371)",WEST 135 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475089,Sedan,,,, +11/06/2021,12:35,QUEENS,11420,40.66764,-73.806244,"(40.66764, -73.806244)",135 AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475010,Taxi,,,, +11/06/2021,15:00,BROOKLYN,11212,40.65622,-73.913155,"(40.65622, -73.913155)",EAST 98 STREET,STRAUSS STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474774,E-Scooter,,,, +11/05/2021,22:50,QUEENS,11418,40.699104,-73.83332,"(40.699104, -73.83332)",116 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475166,Sedan,,,, +10/26/2021,16:20,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475249,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,0:20,BROOKLYN,11226,40.651978,-73.96467,"(40.651978, -73.96467)",,,15 CROOKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474679,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,11:15,BRONX,10458,40.86645,-73.88505,"(40.86645, -73.88505)",,,2801 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475181,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/08/2021,17:13,,,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4475487,Bus,Bike,,, +11/06/2021,13:00,BROOKLYN,11236,40.638,-73.90726,"(40.638, -73.90726)",,,923 EAST 87 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474669,Sedan,Sedan,,, +11/06/2021,2:44,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4474513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,4:15,STATEN ISLAND,10304,40.612366,-74.08516,"(40.612366, -74.08516)",,,588 TARGEE STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4475202,Sedan,Sedan,Sedan,Sedan, +11/06/2021,6:20,BROOKLYN,11207,40.65342,-73.88898,"(40.65342, -73.88898)",COZINE AVENUE,GEORGIA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4475332,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,20:00,QUEENS,11412,40.696583,-73.7667,"(40.696583, -73.7667)",DORMANS ROAD,OVID PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474605,Sedan,,,, +11/06/2021,10:30,MANHATTAN,10016,40.74633,-73.98609,"(40.74633, -73.98609)",,,295 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474740,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/05/2021,19:30,,,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4475309,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,6:00,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475245,Sedan,,,, +11/01/2021,14:34,MANHATTAN,10028,40.777542,-73.957016,"(40.777542, -73.957016)",EAST 83 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475152,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,2:05,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475422,Sedan,,,, +11/05/2021,19:00,BRONX,10452,40.844376,-73.92178,"(40.844376, -73.92178)",PLIMPTON AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475492,Sedan,,,, +11/06/2021,15:00,QUEENS,11364,40.748207,-73.7441,"(40.748207, -73.7441)",233 STREET,67 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474755,UPS,Sedan,,, +11/04/2021,14:50,,,,,,HENRY HUDSON PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4475344,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,11:00,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4474859,Sedan,Sedan,,, +11/06/2021,2:27,BRONX,10457,40.8477,-73.90097,"(40.8477, -73.90097)",EAST TREMONT AVENUE,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475158,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,10:05,BRONX,10465,40.82741,-73.81918,"(40.82741, -73.81918)",RANDALL AVENUE,HOLLYWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4474719,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/06/2021,23:02,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474650,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,16:00,,,,,,102 CROSS DRIVE,WEST DRIVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475195,Bike,,,, +11/06/2021,5:20,STATEN ISLAND,10304,40.625305,-74.084625,"(40.625305, -74.084625)",,,597 VANDUZER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475208,Sedan,Sedan,,, +11/06/2021,15:54,STATEN ISLAND,10312,40.56091,-74.16901,"(40.56091, -74.16901)",,,854 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474950,Sedan,Sedan,,, +11/06/2021,22:09,,,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4475121,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/06/2021,1:53,,,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4474765,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,20:03,,,40.69401,-73.9611,"(40.69401, -73.9611)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475353,Sedan,Sedan,,, +11/06/2021,14:52,BROOKLYN,11222,40.72766,-73.94295,"(40.72766, -73.94295)",NORMAN AVENUE,MONITOR STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474824,Sedan,,,, +11/03/2021,7:46,MANHATTAN,10022,40.75928,-73.959274,"(40.75928, -73.959274)",YORK AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475256,Sedan,Pick-up Truck,,, +11/05/2021,19:11,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4475172,Sedan,Sedan,Sedan,, +11/06/2021,3:07,BROOKLYN,11208,40.67239,-73.87463,"(40.67239, -73.87463)",SUTTER AVENUE,FOUNTAIN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,5:00,BROOKLYN,11203,40.655827,-73.94336,"(40.655827, -73.94336)",EAST 37 STREET,CLARKSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474838,Sedan,Van,Station Wagon/Sport Utility Vehicle,, +11/06/2021,20:08,BROOKLYN,11219,40.631454,-73.992256,"(40.631454, -73.992256)",14 AVENUE,53 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475300,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,15:40,,,40.68335,-73.8412,"(40.68335, -73.8412)",103 AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4475175,Sedan,Sedan,,, +11/06/2021,1:03,BROOKLYN,11236,40.64165,-73.90378,"(40.64165, -73.90378)",FLATLANDS AVENUE,EAST 93 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4474506,Sedan,Sedan,,, +11/05/2021,10:30,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475239,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,13:24,,,,,,,,79 EAST DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475196,Sedan,,,, +11/06/2021,10:05,BROOKLYN,11226,40.65399,-73.96416,"(40.65399, -73.96416)",SAINT PAULS PLACE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474677,Sedan,,,, +11/06/2021,15:15,BROOKLYN,11222,40.72625,-73.942726,"(40.72625, -73.942726)",,,195 MONITOR STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4474999,Sedan,E-Scooter,Sedan,Sedan,Sedan +11/06/2021,14:49,MANHATTAN,10019,40.760056,-73.97884,"(40.760056, -73.97884)",,,51 WEST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474589,Sedan,Sedan,,, +11/06/2021,19:10,QUEENS,11419,40.685936,-73.82594,"(40.685936, -73.82594)",117 STREET,LIBERTY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4474975,Station Wagon/Sport Utility Vehicle,Bike,,, +11/06/2021,13:00,QUEENS,11691,40.603485,-73.76859,"(40.603485, -73.76859)",HEALY AVENUE,BAY 32 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Following Too Closely,,,,4475506,Sedan,Sedan,,, +11/01/2021,9:10,,,40.884815,-73.86755,"(40.884815, -73.86755)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4475216,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,14:25,BRONX,10466,40.88851,-73.86009,"(40.88851, -73.86009)",EAST 226 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4475154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,17:50,BROOKLYN,11204,40.610115,-73.988945,"(40.610115, -73.988945)",74 STREET,21 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4474772,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/03/2021,16:45,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475414,Sedan,Sedan,,, +11/06/2021,20:20,,,40.63379,-74.142784,"(40.63379, -74.142784)",INNIS STREET,TRANTOR PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474808,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,18:43,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",KINGS HIGHWAY,AVENUE D,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475470,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,19:05,BRONX,10460,40.840836,-73.88563,"(40.840836, -73.88563)",,,1900 CROTONA PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475110,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,20:40,,,,,,NORTHERN BOULEVARD,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474886,Sedan,Sedan,,, +11/06/2021,8:49,,,40.692593,-73.91551,"(40.692593, -73.91551)",CENTRAL AVENUE,,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4474622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,21:45,MANHATTAN,10002,40.72098,-73.98696,"(40.72098, -73.98696)",ESSEX STREET,STANTON STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4474647,Sedan,E-Bike,,, +11/06/2021,23:12,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",3 AVENUE,EAST 168 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4475289,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,4:53,MANHATTAN,10031,40.825504,-73.948235,"(40.825504, -73.948235)",,,511 WEST 145 STREET,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4474545,Sedan,Sedan,,, +10/28/2021,12:05,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4475262,Tractor Truck Diesel,Sedan,Bus,, +11/06/2021,20:20,,,,,,LONG ISLAND EXPRESSWAY,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,14:45,QUEENS,11373,40.737892,-73.8813,"(40.737892, -73.8813)",51 AVENUE,SAINT JAMES AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474737,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,17:54,MANHATTAN,10033,40.84784,-73.93953,"(40.84784, -73.93953)",FORT WASHINGTON AVENUE,WEST 177 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475348,Sedan,E-Bike,,, +11/06/2021,10:00,,,40.599277,-74.13095,"(40.599277, -74.13095)",,,469 BRADLEY AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Backing Unsafely,,,,4475233,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,12:40,,,40.646446,-73.87392,"(40.646446, -73.87392)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475320,Sedan,,,, +11/06/2021,9:35,,,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474625,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,23:39,,,,,,GRAND CENTRAL PARKWAY,HOME LAWN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474652,Sedan,Sedan,,, +11/06/2021,21:32,BRONX,10468,40.86385,-73.909065,"(40.86385, -73.909065)",SEDGWICK AVENUE,FORDHAM HILL OVAL,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475136,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,21:23,BROOKLYN,11236,40.63868,-73.91682,"(40.63868, -73.91682)",EAST 80 STREET,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475027,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,21:10,,,40.80891,-73.93021,"(40.80891, -73.93021)",3 AVENUE BRIDGE,EAST 134 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475047,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,21:10,MANHATTAN,10001,40.751446,-74.001434,"(40.751446, -74.001434)",WEST 29 STREET,10 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475355,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,13:13,,,40.758205,-73.777405,"(40.758205, -73.777405)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4474539,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/06/2021,14:20,QUEENS,11691,40.603855,-73.753746,"(40.603855, -73.753746)",,,1077 BEACH 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475496,Sedan,Sedan,,, +11/06/2021,15:08,,,40.59192,-73.99401,"(40.59192, -73.99401)",25 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474818,Garbage or Refuse,Sedan,,, +10/25/2021,11:00,,,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4475393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,23:09,MANHATTAN,10003,40.726185,-73.98943,"(40.726185, -73.98943)",EAST 4 STREET,2 AVENUE,,3,0,0,0,1,0,2,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4475482,Sedan,Bike,,, +11/06/2021,15:23,MANHATTAN,10002,40.716583,-73.98882,"(40.716583, -73.98882)",,,367 GRAND STREET,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4474583,Sedan,Bike,,, +08/30/2021,16:18,BRONX,10461,40.84164,-73.837036,"(40.84164, -73.837036)",,,1534 ERICSON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452166,Sedan,,,, +11/06/2021,12:30,BROOKLYN,11201,40.700733,-73.98974,"(40.700733, -73.98974)",PROSPECT STREET,CADMAN PLAZA EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475380,Sedan,Sedan,,, +11/06/2021,15:45,,,40.77441,-73.84542,"(40.77441, -73.84542)",26 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474935,Station Wagon/Sport Utility Vehicle,Bike,,, +11/06/2021,3:50,QUEENS,11423,40.71902,-73.764206,"(40.71902, -73.764206)",,,198-25 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4474531,Sedan,,,, +11/06/2021,9:50,BROOKLYN,11236,40.646297,-73.91274,"(40.646297, -73.91274)",,,900 REMSEN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4474663,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,17:35,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475024,Van,Sedan,,, +11/06/2021,11:15,,,40.666153,-73.89542,"(40.666153, -73.89542)",SHEFFIELD AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475324,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,1:00,,,40.865543,-73.8368,"(40.865543, -73.8368)",EAST GUN HILL ROAD,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474871,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,15:20,QUEENS,11370,40.762,-73.89668,"(40.762, -73.89668)",,,72-15 25 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474613,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,18:57,STATEN ISLAND,10310,40.626366,-74.1199,"(40.626366, -74.1199)",,,597 CLOVE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475207,Sedan,Sedan,,, +10/17/2021,7:00,,,,,,GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475182,Sedan,Sedan,,, +11/06/2021,22:10,QUEENS,11372,40.748436,-73.87626,"(40.748436, -73.87626)",ELMHURST AVENUE,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474741,Sedan,,,, +10/28/2021,11:05,,,40.82802,-73.93122,"(40.82802, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475488,Sedan,,,, +11/06/2021,19:00,,,40.787025,-73.793,"(40.787025, -73.793)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474697,Sedan,,,, +11/06/2021,15:10,BROOKLYN,11209,40.6256,-74.03608,"(40.6256, -74.03608)",COLONIAL ROAD,85 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4475142,Sedan,Bike,,, +11/05/2021,17:20,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475165,Sedan,,,, +11/06/2021,18:34,BRONX,10461,40.848293,-73.84988,"(40.848293, -73.84988)",,,1668 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474756,Sedan,,,, +11/05/2021,7:00,,,40.84497,-73.9092,"(40.84497, -73.9092)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475493,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,4:30,BROOKLYN,11207,40.67275,-73.897095,"(40.67275, -73.897095)",,,181 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475333,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,2:00,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474608,Sedan,,,, +11/05/2021,14:05,BROOKLYN,11208,40.675404,-73.87192,"(40.675404, -73.87192)",EUCLID AVENUE,PITKIN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475310,Sedan,,,, +11/06/2021,14:46,BROOKLYN,11203,40.66131,-73.931885,"(40.66131, -73.931885)",,,863 MIDWOOD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474563,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,17:50,,,40.63424,-74.141014,"(40.63424, -74.141014)",,,228 NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475224,Sedan,Sedan,,, +11/06/2021,2:15,BROOKLYN,11206,40.70696,-73.93922,"(40.70696, -73.93922)",,,238 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474966,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,18:04,,,40.785866,-73.950935,"(40.785866, -73.950935)",LEXINGTON AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4475450,Motorcycle,Sedan,,, +11/06/2021,12:50,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475088,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/06/2021,18:20,,,40.69772,-73.92454,"(40.69772, -73.92454)",CENTRAL AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4474630,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,12:37,BROOKLYN,11234,40.62937,-73.92801,"(40.62937, -73.92801)",,,1760 UTICA AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4474782,Sedan,Bus,,, +11/06/2021,7:00,QUEENS,11420,40.680817,-73.8202,"(40.680817, -73.8202)",,,120-18 111 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475009,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,9:40,BROOKLYN,11236,40.65018,-73.91575,"(40.65018, -73.91575)",,,690 EAST 91 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4474857,Station Wagon/Sport Utility Vehicle,Convertible,Convertible,Convertible, +11/06/2021,7:00,QUEENS,11101,40.75389,-73.91651,"(40.75389, -73.91651)",46 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474552,Sedan,Bike,,, +11/06/2021,8:50,,,40.599766,-73.99483,"(40.599766, -73.99483)",BAY 31 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474523,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,20:33,BROOKLYN,11236,40.633858,-73.911446,"(40.633858, -73.911446)",EAST 80 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474667,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,16:19,,,40.822105,-73.90062,"(40.822105, -73.90062)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475281,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,15:00,BROOKLYN,11222,40.7263,-73.94273,"(40.7263, -73.94273)",,,197 MONITOR STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474797,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,10:00,QUEENS,11104,40.738598,-73.927246,"(40.738598, -73.927246)",GREENPOINT AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474635,E-Scooter,,,, +11/03/2021,10:10,STATEN ISLAND,10314,40.619167,-74.1234,"(40.619167, -74.1234)",MANOR ROAD,CONSTANT AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Alcohol Involvement,,,,4475189,Sedan,Sedan,,, +11/06/2021,14:15,STATEN ISLAND,10312,40.543957,-74.176796,"(40.543957, -74.176796)",,,740 ANNADALE ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,13:40,BROOKLYN,11220,40.635017,-74.0244,"(40.635017, -74.0244)",,,371 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475149,Box Truck,Sedan,,, +11/05/2021,16:37,BRONX,10468,40.87781,-73.886856,"(40.87781, -73.886856)",,,3230 JEROME AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475246,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/24/2021,14:30,BROOKLYN,11207,,,,,,763 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4470482,Sedan,,,, +11/01/2021,18:50,BRONX,10463,40.876743,-73.90664,"(40.876743, -73.90664)",BROADWAY,EXTERIOR STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4475423,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +11/06/2021,1:43,,,40.672195,-73.91133,"(40.672195, -73.91133)",ROCKAWAY AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4474683,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,19:05,,,40.68683,-73.86703,"(40.68683, -73.86703)",ELDERTS LANE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4475159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,9:20,BRONX,10456,40.834187,-73.90018,"(40.834187, -73.90018)",,,1394 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475274,Sedan,,,, +11/06/2021,21:05,BROOKLYN,11217,40.68342,-73.97552,"(40.68342, -73.97552)",,,620 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474926,Sedan,Sedan,,, +10/22/2021,16:05,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4475302,Sedan,Sedan,,, +11/06/2021,3:00,BROOKLYN,11208,40.687492,-73.87789,"(40.687492, -73.87789)",JAMAICA AVENUE,RICHMOND STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4475325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,12:10,BRONX,10451,40.815865,-73.91987,"(40.815865, -73.91987)",EAST 148 STREET,COURTLANDT AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4474600,Sedan,,,, +11/06/2021,15:12,QUEENS,11414,40.66736,-73.844215,"(40.66736, -73.844215)",,,90-04 153 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475001,Sedan,Sedan,,, +11/05/2021,23:20,,,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475231,Sedan,,,, +11/06/2021,0:10,,,40.650146,-74.00508,"(40.650146, -74.00508)",5 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4474893,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,16:00,QUEENS,11358,40.753838,-73.805824,"(40.753838, -73.805824)",46 AVENUE,161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474578,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,14:00,,,40.684937,-73.91014,"(40.684937, -73.91014)",,,BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474626,Sedan,Sedan,,, +11/06/2021,16:30,,,40.68468,-74.001335,"(40.68468, -74.001335)",HICKS STREET,SACKETT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475095,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,11:00,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4475052,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,0:49,BROOKLYN,11206,40.707012,-73.93871,"(40.707012, -73.93871)",BUSHWICK PLACE,JOHNSON AVENUE,,3,0,0,0,0,0,3,0,Drugs (illegal),Unspecified,,,,4474546,Pick-up Truck,Sedan,,, +11/02/2021,9:15,QUEENS,11101,40.752243,-73.94026,"(40.752243, -73.94026)",,,41-22 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475248,Sedan,,,, +08/30/2021,1:25,QUEENS,11416,40.683292,-73.860115,"(40.683292, -73.860115)",,,95-18 80 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452350,Sedan,,,, +11/05/2021,0:00,,,40.856743,-73.89527,"(40.856743, -73.89527)",EAST 184 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4475505,Bus,Sedan,,, +11/05/2021,7:00,BROOKLYN,11208,40.670822,-73.86696,"(40.670822, -73.86696)",,,731 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475311,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,8:06,,,40.835194,-73.874054,"(40.835194, -73.874054)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475155,Sedan,Sedan,,, +11/04/2021,16:38,MANHATTAN,10032,40.83818,-73.938675,"(40.83818, -73.938675)",,,501 WEST 165 STREET,0,0,0,0,0,0,0,0,Illnes,,,,,4475347,Sedan,,,, +11/06/2021,9:04,BROOKLYN,11233,40.673824,-73.90839,"(40.673824, -73.90839)",BERGEN STREET,STONE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474764,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,5:23,,,40.85512,-73.872215,"(40.85512, -73.872215)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4475193,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,14:30,MANHATTAN,10002,,,,EAST BROADWAY,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475197,Station Wagon/Sport Utility Vehicle,Bike,,, +11/06/2021,4:24,,,40.629707,-73.90486,"(40.629707, -73.90486)",EAST 80 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474507,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,20:55,MANHATTAN,10016,40.7485,-73.974976,"(40.7485, -73.974976)",EAST 39 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475288,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,16:40,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4474815,Station Wagon/Sport Utility Vehicle,Bike,,, +11/06/2021,12:13,BROOKLYN,11203,40.648117,-73.931015,"(40.648117, -73.931015)",EAST 49 STREET,TILDEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4474840,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/01/2021,15:54,BRONX,10454,40.804905,-73.91883,"(40.804905, -73.91883)",EAST 135 STREET,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475412,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,8:30,QUEENS,11379,40.722717,-73.87851,"(40.722717, -73.87851)",62 AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475241,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,3:35,MANHATTAN,10033,40.84701,-73.93172,"(40.84701, -73.93172)",,,2404 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475479,Sedan,Sedan,,, +11/06/2021,6:30,BROOKLYN,11236,40.64041,-73.9112,"(40.64041, -73.9112)",,,638 EAST 86 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4474672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/06/2021,22:20,QUEENS,11436,40.67429,-73.800644,"(40.67429, -73.800644)",140 STREET,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4475112,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,7:05,,,,,,LONG ISLAND EXPRESSWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474736,Sedan,Sedan,,, +11/05/2021,18:33,,,40.803894,-73.95204,"(40.803894, -73.95204)",WEST 117 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4475264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:55,QUEENS,11692,40.591877,-73.79136,"(40.591877, -73.79136)",ROCKAWAY BEACH BOULEVARD,BEACH 62 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475356,Sedan,Bus,,, +11/06/2021,9:00,BRONX,10470,40.89963,-73.855865,"(40.89963, -73.855865)",,,4417 MATILDA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474829,Taxi,Sedan,,, +11/06/2021,15:00,,,40.742043,-73.95436,"(40.742043, -73.95436)",VERNON BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474621,Sedan,,,, +11/06/2021,10:15,BROOKLYN,11234,40.621216,-73.93539,"(40.621216, -73.93539)",FLATBUSH AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,14:00,BROOKLYN,11206,40.701027,-73.94813,"(40.701027, -73.94813)",GERRY STREET,HARRISON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474976,Box Truck,,,, +11/01/2021,2:10,,,40.696213,-73.97528,"(40.696213, -73.97528)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475137,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,22:55,BROOKLYN,11234,,,,Belt parkway,Flatbush avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474655,Sedan,Sedan,,, +11/06/2021,22:30,MANHATTAN,10002,40.712646,-73.98998,"(40.712646, -73.98998)",MADISON STREET,RUTGERS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474645,Sedan,,,, +11/06/2021,0:16,MANHATTAN,10128,40.781387,-73.95213,"(40.781387, -73.95213)",EAST 90 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475035,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/04/2021,15:50,QUEENS,11103,40.76958,-73.9156,"(40.76958, -73.9156)",,,34-16 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4475254,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,8:15,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",MOUNT EDEN PARKWAY,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475494,Box Truck,Sedan,,, +11/06/2021,17:20,BROOKLYN,11214,40.59355,-73.98465,"(40.59355, -73.98465)",AVENUE V,STILLWELL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4474710,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,20:50,BROOKLYN,11214,40.600655,-73.9988,"(40.600655, -73.9988)",,,8734 21 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4474770,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,17:15,QUEENS,11377,40.738354,-73.89591,"(40.738354, -73.89591)",69 STREET,48 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4475215,Bike,,,, +11/04/2021,13:14,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475177,Bus,,,, +11/04/2021,15:30,BROOKLYN,11207,40.6534,-73.88949,"(40.6534, -73.88949)",,,950 GEORGIA AVENUE,2,0,0,0,0,0,2,0,Unspecified,,,,,4475340,Station Wagon/Sport Utility Vehicle,,,, +10/08/2021,1:45,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4475391,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +11/06/2021,11:43,QUEENS,11422,40.67824,-73.734116,"(40.67824, -73.734116)",234 STREET,131 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474804,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/13/2021,22:54,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,1,0,0,0,0,0,1,Unspecified,,,,,4475458,Motorcycle,,,, +11/06/2021,19:09,,,40.7865,-73.803406,"(40.7865, -73.803406)",CROSS ISLAND PARKWAY,159 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474692,Sedan,,,, +11/04/2021,20:50,BROOKLYN,11207,40.65115,-73.890015,"(40.65115, -73.890015)",LOUISIANA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475319,Convertible,,,, +11/03/2021,12:22,,,40.78389,-73.950294,"(40.78389, -73.950294)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,16:51,,,40.816677,-73.893845,"(40.816677, -73.893845)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475171,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,18:05,,,0,0,"(0.0, 0.0)",GERARD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475489,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,14:40,BRONX,10456,40.823814,-73.907745,"(40.823814, -73.907745)",EAST 163 STREET,EAGLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475185,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,22:20,QUEENS,11373,40.735115,-73.87524,"(40.735115, -73.87524)",,,88-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,0:05,BRONX,10459,40.82101,-73.899025,"(40.82101, -73.899025)",,,888 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485902,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,15:00,,,40.659496,-73.96056,"(40.659496, -73.96056)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485705,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,18:00,QUEENS,11385,40.711403,-73.916756,"(40.711403, -73.916756)",STARR STREET,WOODWARD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486486,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +12/12/2021,16:15,BROOKLYN,11218,40.639984,-73.98525,"(40.639984, -73.98525)",,,1346 39 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486269,Sedan,Sedan,,, +12/12/2021,16:35,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4485789,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,8:00,,,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,FEATHERBED LANE,,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,Other Vehicular,Other Vehicular,,4485926,Sedan,Sedan,Sedan,Sedan, +12/12/2021,21:15,BROOKLYN,11225,40.66908,-73.95289,"(40.66908, -73.95289)",,,1156 UNION STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486181,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,0:40,BROOKLYN,11208,40.673325,-73.87716,"(40.673325, -73.87716)",,,868 BELMONT AVENUE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4486033,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +12/12/2021,14:10,BRONX,10473,40.822903,-73.87005,"(40.822903, -73.87005)",,,900 FTELEY AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4485690,Sedan,,,, +01/28/2022,11:00,MANHATTAN,10036,40.75898,-73.99595,"(40.75898, -73.99595)",WEST 41 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498238,Bus,Sedan,,, +01/31/2022,15:20,,,40.67412,-73.88081,"(40.67412, -73.88081)",PITKIN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498867,Sedan,,,, +01/31/2022,1:20,BRONX,10462,40.845596,-73.864334,"(40.845596, -73.864334)",MORRIS PARK AVENUE,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499193,Sedan,Van,,, +01/23/2022,9:56,BRONX,10454,40.810043,-73.92782,"(40.810043, -73.92782)",,,188 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499014,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,14:40,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",SUTTER AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499076,Sedan,Sedan,,, +01/30/2022,0:00,BROOKLYN,11209,40.631035,-74.019066,"(40.631035, -74.019066)",71 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498470,Sedan,,,, +01/27/2022,6:05,,,40.764416,-73.902916,"(40.764416, -73.902916)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498106,Sedan,,,, +01/28/2022,14:14,BROOKLYN,11226,40.64477,-73.954735,"(40.64477, -73.954735)",BEDFORD AVENUE,BEVERLEY ROAD,,3,0,0,0,0,0,3,0,Unspecified,,,,,4498207,Sedan,,,, +01/29/2022,2:45,QUEENS,11413,40.671684,-73.75647,"(40.671684, -73.75647)",141 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,21:11,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",CROSS BRONX EXPRESSWAY,JEROME AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4499546,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,21:45,,,40.695583,-73.92078,"(40.695583, -73.92078)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,23:43,,,40.73367,-73.85766,"(40.73367, -73.85766)",62 DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498059,Sedan,4 dr sedan,,, +01/29/2022,12:29,QUEENS,11415,40.707985,-73.83394,"(40.707985, -73.83394)",83 AVENUE,ABINGDON ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498536,Sedan,Sedan,,, +01/28/2022,18:25,,,40.844746,-73.90363,"(40.844746, -73.90363)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498736,Sedan,Box Truck,,, +01/30/2022,8:37,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499244,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,14:00,,,40.752663,-73.746025,"(40.752663, -73.746025)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4498175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,20:30,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4498519,Sedan,Sedan,,, +01/30/2022,9:29,BRONX,10461,40.845074,-73.82779,"(40.845074, -73.82779)",,,1610 MAHAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4498651,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/31/2022,19:06,QUEENS,11422,40.65501,-73.72964,"(40.65501, -73.72964)",259 STREET,148 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,16:12,BRONX,10458,40.87305,-73.882965,"(40.87305, -73.882965)",EAST MOSHOLU PARKWAY SOUTH,EAST 203 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498668,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,15:16,BROOKLYN,11239,40.654343,-73.864204,"(40.654343, -73.864204)",,,11629 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4499069,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/28/2022,18:30,,,,,,WEST 172 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498458,Sedan,,,, +01/28/2022,16:30,,,40.88271,-73.881256,"(40.88271, -73.881256)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498624,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,20:30,QUEENS,11413,40.68344,-73.74037,"(40.68344, -73.74037)",226 STREET,129 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498508,Sedan,,,, +01/30/2022,23:00,MANHATTAN,10010,40.740437,-73.98431,"(40.740437, -73.98431)",,,50 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498619,Sedan,,,, +01/30/2022,12:00,BROOKLYN,11209,40.63337,-74.03584,"(40.63337, -74.03584)",NARROWS AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498471,Sedan,,,, +01/27/2022,13:30,BROOKLYN,11216,40.6884,-73.95118,"(40.6884, -73.95118)",GREENE AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499323,Sedan,,,, +01/31/2022,17:50,,,40.857903,-73.86468,"(40.857903, -73.86468)",PELHAM PARKWAY NORTH,WALLACE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499000,Sedan,Pick-up Truck,,, +01/06/2022,18:30,BROOKLYN,11223,40.603264,-73.980675,"(40.603264, -73.980675)",,,146 HIGHLAWN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499308,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,9:00,QUEENS,11105,40.773193,-73.91317,"(40.773193, -73.91317)",,,23-35 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498572,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,21:00,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",CONEY ISLAND AVENUE,FOSTER AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4498661,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,19:00,QUEENS,11379,40.725567,-73.87608,"(40.725567, -73.87608)",CALDWELL AVENUE,61 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499029,Sedan,,,, +01/08/2022,19:30,,,40.85868,-73.89922,"(40.85868, -73.89922)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498953,,,,, +01/24/2022,16:25,,,40.7448,-73.991425,"(40.7448, -73.991425)",WEST 26 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499180,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,21:36,BRONX,10455,40.81322,-73.90026,"(40.81322, -73.90026)",,,670 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498529,Dump,Sedan,,, +01/24/2022,20:45,,,40.75588,-73.92371,"(40.75588, -73.92371)",37 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,10:30,,,40.718857,-73.946236,"(40.718857, -73.946236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498688,Sedan,,,, +01/19/2022,19:30,QUEENS,11414,40.665905,-73.85321,"(40.665905, -73.85321)",153 AVENUE,81 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498078,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,1:59,QUEENS,11691,40.596085,-73.76216,"(40.596085, -73.76216)",SEAGIRT BOULEVARD,BEACH 29 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4498604,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,11:00,BROOKLYN,11222,40.725906,-73.9354,"(40.725906, -73.9354)",VARICK STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498820,Box Truck,,,, +01/22/2022,2:05,BROOKLYN,11206,40.699375,-73.94711,"(40.699375, -73.94711)",HOPKINS STREET,TOMPKINS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498375,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,22:00,BRONX,10453,,,,WEST 177 STREET,WEST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499125,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,18:00,BRONX,10467,40.883133,-73.882095,"(40.883133, -73.882095)",WEST GUN HILL ROAD,KNOX PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498629,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,14:00,BROOKLYN,11212,40.67053,-73.90511,"(40.67053, -73.90511)",PITKIN AVENUE,SACKMAN STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4499443,Sedan,Sedan,Sedan,, +01/28/2022,9:30,BRONX,10453,40.85525,-73.91277,"(40.85525, -73.91277)",ANDREWS AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498980,Sedan,,,, +01/29/2022,9:15,BRONX,10472,40.83082,-73.87001,"(40.83082, -73.87001)",WESTCHESTER AVENUE,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499096,Sedan,,,, +01/31/2022,12:45,BROOKLYN,11230,40.61462,-73.968666,"(40.61462, -73.968666)",OCEAN PARKWAY,AVENUE N,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498968,Sedan,Sedan,,, +01/29/2022,18:29,BROOKLYN,11249,40.718967,-73.96104,"(40.718967, -73.96104)",NORTH 6 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498683,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,9:45,,,40.756176,-73.80173,"(40.756176, -73.80173)",45 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498497,Sedan,,,, +01/21/2022,15:30,QUEENS,11378,40.722897,-73.91386,"(40.722897, -73.91386)",MASPETH AVENUE,RUST STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499172,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,19:00,BRONX,10469,40.87457,-73.841095,"(40.87457, -73.841095)",,,3224 GUNTHER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499410,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,11:50,,,40.836544,-73.87365,"(40.836544, -73.87365)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4498721,Station Wagon/Sport Utility Vehicle,,,, +01/19/2022,3:00,QUEENS,11356,40.7859,-73.848656,"(40.7859, -73.848656)",14 AVENUE,119 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499456,Sedan,,,, +01/31/2022,17:50,,,40.85669,-73.864746,"(40.85669, -73.864746)",WALLACE AVENUE,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4499357,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/23/2022,23:41,MANHATTAN,10031,40.820095,-73.955086,"(40.820095, -73.955086)",BROADWAY,WEST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499145,Sedan,Bus,,, +01/28/2022,14:00,BRONX,10465,40.809494,-73.80292,"(40.809494, -73.80292)",,,5 PENNYFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498636,Sedan,,,, +01/25/2022,8:27,BROOKLYN,11207,40.677868,-73.90332,"(40.677868, -73.90332)",VAN SIDERIN AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4499262,Sedan,Sedan,Bus,Sedan, +01/27/2022,0:00,BROOKLYN,11207,,,,,,299 HENDRIX STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4499052,Sedan,Box Truck,,, +11/07/2021,17:05,,,,,,SOUTH OXFORD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474910,Sedan,Sedan,,, +01/31/2022,9:08,QUEENS,11413,40.68173,-73.75343,"(40.68173, -73.75343)",,,132-55 RIDGEDALE STREET,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4499042,Station Wagon/Sport Utility Vehicle,Bus,,, +01/30/2022,15:00,QUEENS,11373,40.738323,-73.8856,"(40.738323, -73.8856)",QUEENS BOULEVARD,ALBION AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498439,Sedan,,,, +01/28/2022,18:00,QUEENS,11373,40.742,-73.87864,"(40.742, -73.87864)",,,86-11 WHITNEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498967,Sedan,,,, +01/21/2022,10:15,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498155,Sedan,,,, +01/29/2022,7:26,,,40.606358,-74.120926,"(40.606358, -74.120926)",MANOR ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498894,Sedan,Sedan,,, +01/28/2022,18:14,BRONX,10472,40.836708,-73.87527,"(40.836708, -73.87527)",BRONX RIVER AVENUE,EAST 177 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498703,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,15:21,BROOKLYN,11234,40.616756,-73.93788,"(40.616756, -73.93788)",AVENUE P,EAST 37 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4497995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,6:55,MANHATTAN,10029,40.78871,-73.94678,"(40.78871, -73.94678)",,,1836 3 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4498111,Sedan,Sedan,Sedan,, +01/31/2022,8:13,BROOKLYN,11229,40.59487,-73.95056,"(40.59487, -73.95056)",AVENUE W,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498986,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,5:20,QUEENS,11420,40.677505,-73.81786,"(40.677505, -73.81786)",121 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498551,Sedan,Sedan,,, +01/30/2022,13:17,BRONX,10461,40.85308,-73.8569,"(40.85308, -73.8569)",NEILL AVENUE,LURTING AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499400,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,12:13,BRONX,10469,40.85973,-73.85597,"(40.85973, -73.85597)",LACONIA AVENUE,ASTOR AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4498023,Sedan,Sedan,,, +01/29/2022,12:30,BRONX,10467,40.883133,-73.882095,"(40.883133, -73.882095)",WEST GUN HILL ROAD,KNOX PLACE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,,4498762,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +01/29/2022,14:30,,,,,,BROOME STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498353,Sedan,,,, +01/30/2022,8:20,,,40.70075,-73.98599,"(40.70075, -73.98599)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4498485,Pick-up Truck,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/30/2022,23:20,QUEENS,11422,40.658154,-73.73815,"(40.658154, -73.73815)",249 STREET,MAYDA ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498587,Sedan,,,, +01/27/2022,20:01,BRONX,10463,40.884716,-73.90087,"(40.884716, -73.90087)",,,5805 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498116,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/28/2022,7:00,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498055,Sedan,Bus,,, +01/28/2022,18:00,MANHATTAN,10029,40.79435,-73.94473,"(40.79435, -73.94473)",,,1753 LEXINGTON AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498110,Sedan,,,, +01/22/2022,9:55,,,0,0,"(0.0, 0.0)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498325,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,19:00,BROOKLYN,11215,40.667202,-73.99136,"(40.667202, -73.99136)",,,532 4 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498219,Sedan,,,, +01/27/2022,13:00,QUEENS,11368,40.738068,-73.861046,"(40.738068, -73.861046)",,,98-40 57 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498087,Motorcycle,,,, +01/22/2022,13:00,BRONX,10452,40.837673,-73.91922,"(40.837673, -73.91922)",EAST 169 STREET,GERARD AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4498226,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,17:20,BROOKLYN,11214,40.614594,-74.002625,"(40.614594, -74.002625)",78 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499299,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,7:30,,,40.597282,-73.907455,"(40.597282, -73.907455)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498775,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,0:10,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4497984,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,0:15,BROOKLYN,11207,40.67734,-73.89909,"(40.67734, -73.89909)",,,1 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499080,Sedan,,,, +01/31/2022,21:30,BROOKLYN,11234,40.63653,-73.92652,"(40.63653, -73.92652)",,,5200 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4498921,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,8:15,,,40.824738,-73.95435,"(40.824738, -73.95435)",WEST 141 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499386,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,17:05,,,40.6544,-73.92044,"(40.6544, -73.92044)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498248,Sedan,,,, +01/28/2022,14:00,BRONX,10457,40.838017,-73.90452,"(40.838017, -73.90452)",EAST 171 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498615,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,18:50,,,40.579212,-73.976265,"(40.579212, -73.976265)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Driver Inattention/Distraction,,,,4498342,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,23:10,MANHATTAN,10026,40.79824,-73.95247,"(40.79824, -73.95247)",WEST 110 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4498788,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/29/2022,17:50,QUEENS,11420,40.66592,-73.812675,"(40.66592, -73.812675)",,,149-34 128 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498187,Station Wagon/Sport Utility Vehicle,NYC SANITA,,, +01/30/2022,16:50,MANHATTAN,10002,40.716682,-73.98244,"(40.716682, -73.98244)",DELANCEY STREET,WILLETT STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4498490,Sedan,Sedan,,, +01/22/2022,23:41,MANHATTAN,10016,40.747772,-73.985054,"(40.747772, -73.985054)",WEST 33 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498293,Ambulance,Pick-up Truck,,, +12/14/2021,15:00,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",WHITE PLAINS ROAD,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498904,Station Wagon/Sport Utility Vehicle,,,, +01/17/2022,20:04,BROOKLYN,11213,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498523,Sedan,Sedan,,, +01/28/2022,16:40,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498639,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,6:46,BROOKLYN,11212,40.65588,-73.90999,"(40.65588, -73.90999)",,,55 HEGEMAN AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4498748,Sedan,,,, +01/30/2022,21:04,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",CANAL STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499046,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/25/2022,11:00,BRONX,10469,40.88093,-73.84755,"(40.88093, -73.84755)",MICKLE AVENUE,EAST 222 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499213,Sedan,,,, +01/31/2022,7:40,QUEENS,11432,40.715805,-73.77393,"(40.715805, -73.77393)",188 STREET,WEXFORD TERRACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499531,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,11:00,QUEENS,11367,,,,,,70-57 PARK DRIVE EAST,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4498380,Taxi,Sedan,Sedan,, +01/28/2022,0:52,,,40.61226,-74.13605,"(40.61226, -74.13605)",VICTORY BOULEVARD,INGRAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499022,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,11:43,,,40.64785,-73.976364,"(40.64785, -73.976364)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498540,Sedan,,,, +01/25/2022,0:31,BROOKLYN,11207,40.669838,-73.89635,"(40.669838, -73.89635)",,,297 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499065,Sedan,Sedan,Sedan,, +01/29/2022,15:05,STATEN ISLAND,10301,40.64499,-74.07936,"(40.64499, -74.07936)",ACADEMY PLACE,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499252,Sedan,,,, +01/07/2022,20:47,QUEENS,11436,40.671406,-73.79942,"(40.671406, -73.79942)",140 STREET,130 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4498656,Sedan,Sedan,,, +01/24/2022,1:06,QUEENS,11369,40.76041,-73.87485,"(40.76041, -73.87485)",94 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499012,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/09/2022,9:00,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499206,Sedan,,,, +01/26/2022,8:04,BROOKLYN,11209,40.63337,-74.03584,"(40.63337, -74.03584)",BAY RIDGE PARKWAY,NARROWS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498512,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,19:50,,,40.832573,-73.91052,"(40.832573, -73.91052)",CLAY AVENUE,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498936,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/25/2022,8:26,STATEN ISLAND,10305,40.611843,-74.07314,"(40.611843, -74.07314)",CLIFTON AVENUE,FOX HILL TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4499250,Sedan,Sedan,Sedan,, +01/29/2022,0:05,,,40.810276,-73.94738,"(40.810276, -73.94738)",POWELL BOULEVARD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Driver Inattention/Distraction,,,4498756,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,13:11,,,40.675186,-73.933304,"(40.675186, -73.933304)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452879,Sedan,Sedan,,, +08/30/2021,16:59,BRONX,10458,40.85487,-73.88619,"(40.85487, -73.88619)",EAST 187 STREET,BELMONT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452394,Station Wagon/Sport Utility Vehicle,Bike,,, +08/18/2021,15:00,BROOKLYN,11201,40.69164,-73.9976,"(40.69164, -73.9976)",,,320 HICKS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452965,Sedan,,,, +08/28/2021,15:20,BROOKLYN,11223,40.59401,-73.96086,"(40.59401, -73.96086)",,,2575 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452977,Sedan,,,, +08/30/2021,20:46,MANHATTAN,10016,40.74845,-73.97291,"(40.74845, -73.97291)",,,250 EAST 40 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452944,Sedan,Bike,,, +08/28/2021,3:00,BRONX,10456,40.822277,-73.908875,"(40.822277, -73.908875)",,,586 EAST 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452976,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,11:54,BROOKLYN,11226,40.649937,-73.958595,"(40.649937, -73.958595)",,,893 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452978,Sedan,Tractor Truck Diesel,,, +08/29/2021,4:54,,,40.84543,-73.91399,"(40.84543, -73.91399)",EAST 174 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452973,Sedan,,,, +08/30/2021,19:34,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452982,Sedan,,,, +08/27/2021,19:10,,,40.83005,-73.922424,"(40.83005, -73.922424)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452972,Sedan,,,, +08/26/2021,13:40,BROOKLYN,11233,40.680553,-73.90858,"(40.680553, -73.90858)",STONE AVENUE,MACDOUGAL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4450788,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,12:00,QUEENS,11691,40.608334,-73.76395,"(40.608334, -73.76395)",,,13-76 SUNNYSIDE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498777,Sedan,,,, +01/30/2022,23:00,QUEENS,11418,40.689873,-73.84282,"(40.689873, -73.84282)",ATLANTIC AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498568,Sedan,,,, +01/28/2022,11:37,BROOKLYN,11234,,,,EAST 45 STREET,AVENUE H,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498644,Sedan,,,, +01/29/2022,1:34,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498700,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,6:50,BROOKLYN,11249,40.70054,-73.960205,"(40.70054, -73.960205)",,,735 WYTHE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519362,Box Truck,,,, +01/31/2022,20:25,QUEENS,11356,40.785374,-73.840294,"(40.785374, -73.840294)",14 AVENUE,128 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4498909,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:00,STATEN ISLAND,10308,40.563774,-74.15586,"(40.563774, -74.15586)",ARTHUR KILL ROAD,GIFFORDS LANE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498889,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,15:15,,,40.703667,-73.9269,"(40.703667, -73.9269)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499508,Sedan,,,, +01/29/2022,15:25,,,,,,BAY RIDGE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498280,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,0:15,,,40.82532,-73.94574,"(40.82532, -73.94574)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499149,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,19:27,QUEENS,11385,40.70424,-73.866714,"(40.70424, -73.866714)",,,78-44 82 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498394,Sedan,Sedan,,, +01/29/2022,8:00,QUEENS,11691,40.596443,-73.76474,"(40.596443, -73.76474)",,,333 BEACH 32 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498948,Sedan,,,, +01/29/2022,23:55,BRONX,10472,40.826424,-73.85868,"(40.826424, -73.85868)",VIRGINIA AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4498733,Sedan,,,, +01/27/2022,20:00,QUEENS,11415,40.71362,-73.83038,"(40.71362, -73.83038)",80 ROAD,KEW GARDEN ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499418,Sedan,,,, +01/28/2022,11:40,QUEENS,11691,40.595795,-73.75407,"(40.595795, -73.75407)",,,216 BEACH 20 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4498600,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,20:20,,,40.760494,-73.8614,"(40.760494, -73.8614)",108 STREET,ASTORIA BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,,,,,4498407,Bike,,,, +01/30/2022,0:00,QUEENS,11365,40.75115,-73.78253,"(40.75115, -73.78253)",197 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498495,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,18:50,MANHATTAN,10016,40.740902,-73.97836,"(40.740902, -73.97836)",,,244 EAST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499164,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,11:33,BROOKLYN,11236,,,,EAST 95 STREET,AVENUE N,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4475144,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,9:12,QUEENS,11415,40.707092,-73.83192,"(40.707092, -73.83192)",,,83-66 ABINGDON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452342,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,18:52,BROOKLYN,11217,40.677074,-73.973694,"(40.677074, -73.973694)",7 AVENUE,STERLING PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452217,Sedan,Bike,,, +08/29/2021,19:42,BROOKLYN,11233,40.675323,-73.90827,"(40.675323, -73.90827)",STONE AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452920,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,0:05,BROOKLYN,11220,40.6374,-74.01116,"(40.6374, -74.01116)",7 AVENUE,59 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452733,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:50,MANHATTAN,10032,40.840195,-73.94307,"(40.840195, -73.94307)",WEST 165 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452694,Sedan,Tractor Truck Gasoline,,, +08/30/2021,0:30,,,40.736732,-73.85451,"(40.736732, -73.85451)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4451815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,17:50,BROOKLYN,11203,40.64166,-73.93705,"(40.64166, -73.93705)",AVENUE D,EAST 42 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4452195,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,16:00,BRONX,10452,40.83354,-73.92037,"(40.83354, -73.92037)",WALTON AVENUE,MCCLELLAN STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452413,Sedan,,,, +08/30/2021,17:24,MANHATTAN,10031,40.81941,-73.95333,"(40.81941, -73.95333)",,,535 WEST 135 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452235,Ambulance,Sedan,,, +08/27/2021,0:00,,,40.611095,-74.11467,"(40.611095, -74.11467)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4452657,Sedan,Sedan,Sedan,, +08/29/2021,22:00,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452777,Sedan,,,, +08/30/2021,5:10,,,40.727585,-73.88781,"(40.727585, -73.88781)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,3:38,,,40.663517,-73.957214,"(40.663517, -73.957214)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4451908,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,22:35,BROOKLYN,11230,40.63311,-73.97217,"(40.63311, -73.97217)",OCEAN PARKWAY,18 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452247,Sedan,Sedan,,, +08/26/2021,11:25,BRONX,10472,40.82839,-73.881485,"(40.82839, -73.881485)",,,1470 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452731,Sedan,E-Scooter,,, +08/29/2021,0:40,BROOKLYN,11207,40.678978,-73.88771,"(40.678978, -73.88771)",,,2899 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452770,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,11:15,BRONX,10475,40.86832,-73.83317,"(40.86832, -73.83317)",BARTOW AVENUE,EDSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452551,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,8:30,QUEENS,11101,40.73949,-73.93841,"(40.73949, -73.93841)",,,49-49 30 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451965,Flat Rack,Sedan,,, +08/30/2021,16:15,BRONX,10472,40.83714,-73.87501,"(40.83714, -73.87501)",,,1460 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452136,Sedan,,,, +08/30/2021,13:00,,,40.73319,-73.866875,"(40.73319, -73.866875)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452375,Sedan,Box Truck,,, +08/30/2021,20:30,BRONX,10461,40.848633,-73.82801,"(40.848633, -73.82801)",WILLOW LANE,BUHRE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4452418,Sedan,Sedan,,, +08/30/2021,18:50,,,40.707466,-73.7887,"(40.707466, -73.7887)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452451,Convertible,,,, +08/30/2021,12:35,,,40.788692,-73.93787,"(40.788692, -73.93787)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452110,Sedan,,,, +08/30/2021,11:10,,,40.7044,-73.92384,"(40.7044, -73.92384)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452056,Sedan,Tractor Truck Diesel,,, +08/30/2021,2:00,,,40.657516,-73.8931,"(40.657516, -73.8931)",ALABAMA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452792,Sedan,Sedan,,, +08/26/2021,12:30,,,40.69299,-73.95583,"(40.69299, -73.95583)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Backing Unsafely,Unspecified,,,4452842,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,13:30,QUEENS,11374,40.733475,-73.8642,"(40.733475, -73.8642)",,,61-01 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452084,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/14/2022,18:50,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",ROOSEVELT AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498412,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,1:52,QUEENS,11418,40.69382,-73.83461,"(40.69382, -73.83461)",112 STREET,92 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4452057,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/20/2021,5:09,MANHATTAN,10036,40.760822,-73.99832,"(40.760822, -73.99832)",11 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452754,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,2:35,QUEENS,11377,40.742943,-73.91685,"(40.742943, -73.91685)",48 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452129,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,9:15,,,40.715958,-73.81275,"(40.715958, -73.81275)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452021,Sedan,Sedan,,, +08/30/2021,19:39,QUEENS,11423,40.720646,-73.760315,"(40.720646, -73.760315)",HILLSIDE AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,13:25,BROOKLYN,11234,40.622417,-73.92727,"(40.622417, -73.92727)",,,2002 UTICA AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4452229,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,18:45,,,40.696823,-73.91487,"(40.696823, -73.91487)",KNICKERBOCKER AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4452258,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,14:30,MANHATTAN,10012,40.72403,-74.00087,"(40.72403, -74.00087)",,,138 SPRING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452482,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,0:15,QUEENS,11417,40.67281,-73.843254,"(40.67281, -73.843254)",,,135-45 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452383,Sedan,,,, +08/30/2021,20:22,QUEENS,11436,40.679363,-73.7973,"(40.679363, -73.7973)",FOCH BOULEVARD,144 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452464,Sedan,Sedan,,, +08/30/2021,7:00,BRONX,10454,40.807915,-73.93006,"(40.807915, -73.93006)",,,7 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:33,MANHATTAN,10022,40.75898,-73.96244,"(40.75898, -73.96244)",EAST 58 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,20:30,MANHATTAN,10029,40.792187,-73.9382,"(40.792187, -73.9382)",EAST 110 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452202,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/30/2021,19:43,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",FLATLANDS AVENUE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452785,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/17/2021,15:10,BRONX,10463,40.876976,-73.90584,"(40.876976, -73.90584)",,,188 WEST 230 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452899,Pick-up Truck,,,, +08/30/2021,13:26,BRONX,10473,40.81983,-73.841934,"(40.81983, -73.841934)",ZEREGA AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4452374,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/28/2021,20:30,QUEENS,11691,40.611244,-73.77086,"(40.611244, -73.77086)",,,14-19 POINT BREEZE PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452681,Sedan,Sedan,,, +08/30/2021,18:00,BROOKLYN,11208,0,0,"(0.0, 0.0)",PITKIN AVENUE,CHESTNUT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452793,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,13:35,,,,,,EAST 37 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452138,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/28/2021,20:05,QUEENS,11369,40.763664,-73.86778,"(40.763664, -73.86778)",27 AVENUE,HUMPHREYS STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4452869,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,17:15,,,40.735924,-74.00073,"(40.735924, -74.00073)",GREENWICH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452181,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,9:08,MANHATTAN,10001,40.754337,-73.99861,"(40.754337, -73.99861)",,,460 WEST 34 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452759,Box Truck,Box Truck,,, +08/30/2021,12:30,,,40.843735,-73.895905,"(40.843735, -73.895905)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4452063,Carry All,Sedan,,, +08/28/2021,11:35,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/30/2021,10:30,MANHATTAN,10128,40.786545,-73.95256,"(40.786545, -73.95256)",EAST 96 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4452402,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,17:24,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",WEST FORDHAM ROAD,LORING PLACE NORTH,,1,0,1,0,0,0,0,0,,,,,,4452431,,,,, +08/27/2021,12:17,QUEENS,11436,40.676598,-73.795944,"(40.676598, -73.795944)",120 AVENUE,144 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452882,Sedan,,,, +08/30/2021,11:25,MANHATTAN,10012,40.721996,-73.99641,"(40.721996, -73.99641)",,,48 SPRING STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452643,Box Truck,,,, +08/29/2021,14:30,BROOKLYN,11203,40.659363,-73.93967,"(40.659363, -73.93967)",ALBANY AVENUE,FENIMORE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452743,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,6:34,BROOKLYN,11234,40.616295,-73.92991,"(40.616295, -73.92991)",FLATBUSH AVENUE,AVENUE O,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452225,Sedan,Tractor Truck Diesel,,, +08/30/2021,11:00,BROOKLYN,11211,40.703655,-73.960594,"(40.703655, -73.960594)",KEAP STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452702,Garbage or Refuse,Sedan,,, +08/30/2021,15:00,,,40.59476,-73.98199,"(40.59476, -73.98199)",86 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452249,Sedan,,,, +08/30/2021,19:00,QUEENS,11357,40.776997,-73.8148,"(40.776997, -73.8148)",150 STREET,WILLETS POINT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452189,Sedan,Tractor Truck Diesel,,, +08/30/2021,14:42,BROOKLYN,11209,40.626328,-74.03284,"(40.626328, -74.03284)",RIDGE BOULEVARD,83 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452364,Sedan,Box Truck,,, +08/29/2021,15:30,BROOKLYN,11207,40.669373,-73.88438,"(40.669373, -73.88438)",,,926 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452781,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,14:25,QUEENS,11385,40.713116,-73.90972,"(40.713116, -73.90972)",METROPOLITAN AVENUE,AMORY COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452143,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,22:35,QUEENS,11374,40.72837,-73.87114,"(40.72837, -73.87114)",WOODHAVEN BOULEVARD,ALDERTON STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4452661,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,19:42,,,40.655563,-73.87974,"(40.655563, -73.87974)",SCHENCK AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4452797,E-Bike,,,, +08/30/2021,1:45,QUEENS,11372,40.747272,-73.88745,"(40.747272, -73.88745)",,,78-11 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4452269,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,21:05,,,40.65728,-73.947365,"(40.65728, -73.947365)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452197,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,9:01,BRONX,10460,40.8309,-73.88638,"(40.8309, -73.88638)",BOONE AVENUE,JENNINGS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452273,Sedan,,,, +08/30/2021,23:42,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452242,Taxi,Sedan,,, +08/28/2021,6:03,,,40.852383,-73.92048,"(40.852383, -73.92048)",CEDAR AVENUE,SEDGWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452713,Sedan,E-Bike,,, +08/30/2021,4:00,BROOKLYN,11235,40.58874,-73.95842,"(40.58874, -73.95842)",,,2541 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451855,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,19:20,,,,,,HERKIMER STREET,EAST NEW YORK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452763,Station Wagon/Sport Utility Vehicle,Bus,,, +08/29/2021,19:30,QUEENS,11385,40.706783,-73.91196,"(40.706783, -73.91196)",HARMAN STREET,ONDERDONK AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452864,Sedan,Bike,,, +08/30/2021,5:46,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4452174,Sedan,Tractor Truck Diesel,,, +08/30/2021,8:45,MANHATTAN,10027,40.809757,-73.95892,"(40.809757, -73.95892)",,,1232 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452583,Sedan,,,, +08/27/2021,8:00,QUEENS,11378,40.722248,-73.90133,"(40.722248, -73.90133)",,,57-25 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452854,Sedan,,,, +08/23/2021,13:00,,,40.67636,-73.86643,"(40.67636, -73.86643)",SHERIDAN AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452796,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,19:15,QUEENS,11368,40.74962,-73.86665,"(40.74962, -73.86665)",99 STREET,39 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452688,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,0:38,,,40.840614,-73.78403,"(40.840614, -73.78403)",CITY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4451925,Sedan,Sedan,Sedan,Pick-up Truck,Sedan +08/26/2021,12:50,BRONX,10462,40.83989,-73.86213,"(40.83989, -73.86213)",,,1566 UNIONPORT ROAD,1,0,1,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,17:15,,,,,,SHEA STADIUM,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4452141,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,10:39,BROOKLYN,11226,40.648533,-73.95827,"(40.648533, -73.95827)",FLATBUSH AVENUE,SNYDER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452243,Sedan,Sedan,,, +08/29/2021,0:00,BROOKLYN,11208,40.671276,-73.882324,"(40.671276, -73.882324)",,,988 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452771,Sedan,,,, +08/30/2021,15:45,QUEENS,11358,40.758743,-73.797615,"(40.758743, -73.797615)",169 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452192,Sedan,Sedan,,, +08/30/2021,11:20,BRONX,10467,40.88396,-73.869316,"(40.88396, -73.869316)",,,3556 WEBSTER AVENUE,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4452550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +08/30/2021,20:10,MANHATTAN,10032,40.844677,-73.93886,"(40.844677, -73.93886)",BROADWAY,WEST 173 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452660,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,20:29,,,40.745754,-73.73044,"(40.745754, -73.73044)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4452218,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/14/2021,9:30,BROOKLYN,11238,40.685436,-73.96729,"(40.685436, -73.96729)",,,430 CLINTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4452923,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,16:45,,,40.689228,-73.957,"(40.689228, -73.957)",LAFAYETTE AVENUE,FRANKLIN AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Lane Changing,Unspecified,,,4452844,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +08/24/2021,20:35,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,ALABAMA AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4452758,Sedan,Sedan,Sedan,, +08/30/2021,10:27,BRONX,10467,40.884476,-73.87877,"(40.884476, -73.87877)",,,3585 DEKALB AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4452061,Sedan,,,, +08/30/2021,11:44,QUEENS,11433,40.699326,-73.79328,"(40.699326, -73.79328)",,,106-16 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452093,Station Wagon/Sport Utility Vehicle,Bus,,, +08/30/2021,23:25,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452386,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,21:19,MANHATTAN,10035,40.803123,-73.940445,"(40.803123, -73.940445)",PARK AVENUE,EAST 122 STREET,,2,0,1,0,0,0,1,0,Unspecified,,,,,4452816,,,,, +08/30/2021,17:30,MANHATTAN,10027,40.811203,-73.96158,"(40.811203, -73.96158)",BROADWAY,WEST 121 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452168,Box Truck,Sedan,,, +08/30/2021,16:30,QUEENS,11102,40.77742,-73.92265,"(40.77742, -73.92265)",19 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452469,Sedan,Sedan,,, +08/25/2021,0:00,BROOKLYN,11208,40.66957,-73.86571,"(40.66957, -73.86571)",,,792 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452776,4 dr sedan,Sedan,,, +08/30/2021,12:00,QUEENS,11420,40.680588,-73.82806,"(40.680588, -73.82806)",112 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452038,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,14:35,BRONX,10456,40.822273,-73.906204,"(40.822273, -73.906204)",,,890 TRINITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452277,Sedan,UNKNOWN,,, +08/30/2021,16:20,STATEN ISLAND,10304,40.61147,-74.088486,"(40.61147, -74.088486)",,,623 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452407,Sedan,,,, +08/30/2021,10:10,,,40.611225,-74.11758,"(40.611225, -74.11758)",REON AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452076,Pick-up Truck,Sedan,,, +08/30/2021,17:53,MANHATTAN,10029,40.78663,-73.946785,"(40.78663, -73.946785)",,,215 EAST 99 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452201,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,17:35,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452682,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,13:59,MANHATTAN,10019,40.772236,-73.99388,"(40.772236, -73.99388)",12 AVENUE,WEST 58 STREET,,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4452741,Sedan,Sedan,,, +08/30/2021,18:35,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",GRAND CENTRAL PARKWAY,150 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4452519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,17:25,QUEENS,11411,40.68862,-73.73746,"(40.68862, -73.73746)",120 AVENUE,226 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unsafe Speed,,,,4452151,Sedan,Sedan,,, +08/30/2021,6:50,BROOKLYN,11249,40.71138,-73.96645,"(40.71138, -73.96645)",SOUTH 6 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452208,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,10:06,BRONX,10463,,,,,,2601 HENRY HUDSON PARKWAY W,0,0,0,0,0,0,0,0,Unspecified,,,,,4452903,Sedan,,,, +08/13/2021,16:23,BRONX,10463,40.883465,-73.9016,"(40.883465, -73.9016)",WEST 236 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452898,Sedan,Bus,,, +08/30/2021,1:15,BROOKLYN,11207,40.65993,-73.891655,"(40.65993, -73.891655)",PENNSYLVANIA AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452787,Sedan,Sedan,,, +01/14/2022,12:03,QUEENS,11377,40.757847,-73.89922,"(40.757847, -73.89922)",31 AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499102,Sedan,Sedan,,, +08/30/2021,23:37,BRONX,10469,40.87073,-73.84679,"(40.87073, -73.84679)",,,1344 EAST GUN HILL ROAD,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4452668,Taxi,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/25/2021,23:36,,,40.67224,-73.96104,"(40.67224, -73.96104)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4452871,Sedan,Sedan,Sedan,, +08/30/2021,15:00,QUEENS,11417,40.6807,-73.84465,"(40.6807, -73.84465)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4452379,Sedan,Station Wagon/Sport Utility Vehicle,BOX TRUCK,, +08/30/2021,2:40,BROOKLYN,11220,40.64519,-74.01393,"(40.64519, -74.01393)",,,5220 4 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4451964,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,18:00,QUEENS,11436,40.680088,-73.80177,"(40.680088, -73.80177)",116 AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4452463,Sedan,Sedan,,, +08/30/2021,0:15,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452131,Sedan,Sedan,,, +08/30/2021,16:00,BRONX,10452,40.83562,-73.927864,"(40.83562, -73.927864)",OGDEN AVENUE,WEST 166 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452412,Sedan,,,, +08/30/2021,20:36,,,40.711945,-73.82303,"(40.711945, -73.82303)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452347,Sedan,,,, +08/30/2021,21:50,BRONX,10454,40.812263,-73.92059,"(40.812263, -73.92059)",EAST 143 STREET,WILLIS AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452228,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:20,BRONX,10468,40.882835,-73.888016,"(40.882835, -73.888016)",GOULDEN AVENUE,SEDGWICK AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unsafe Speed,,,,4452902,Sedan,Bike,,, +08/30/2021,16:00,BROOKLYN,11214,40.60461,-73.99826,"(40.60461, -73.99826)",86 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452753,Bus,,,, +08/30/2021,0:00,,,40.80184,-73.95915,"(40.80184, -73.95915)",MANHATTAN AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4452252,Sedan,Sedan,,, +08/28/2021,1:20,BRONX,10458,40.858646,-73.8856,"(40.858646, -73.8856)",,,582 EAST FORDHAM ROAD,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4452671,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,13:20,BROOKLYN,11203,40.639317,-73.9368,"(40.639317, -73.9368)",EAST 42 STREET,FOSTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452180,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,20:00,QUEENS,11101,40.757717,-73.94126,"(40.757717, -73.94126)",,,38-70 12 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4452470,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,20:15,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4452647,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/30/2021,9:01,BROOKLYN,11249,40.69979,-73.9594,"(40.69979, -73.9594)",,,798 WYTHE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452207,Bike,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,16:00,,,40.606544,-74.03255,"(40.606544, -74.03255)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4452417,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/30/2021,7:35,,,40.72,-73.76198,"(40.72, -73.76198)",202 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452020,Bus,,,, +08/30/2021,15:30,QUEENS,11368,40.757034,-73.87133,"(40.757034, -73.87133)",97 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452265,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/30/2021,0:00,,,40.707653,-73.921776,"(40.707653, -73.921776)",SCOTT AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452107,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,22:30,QUEENS,11372,40.7549,-73.873886,"(40.7549, -73.873886)",94 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452274,Sedan,Pick-up Truck,,, +08/30/2021,16:38,,,40.59511,-74.091286,"(40.59511, -74.091286)",CORNELIA STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452172,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,2:15,QUEENS,11372,40.747272,-73.88745,"(40.747272, -73.88745)",,,78-11 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,18:16,,,,,,,,66 WEST DRIVE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452701,Bike,,,, +08/30/2021,19:40,BROOKLYN,11236,40.646297,-73.91274,"(40.646297, -73.91274)",,,900 REMSEN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452222,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,15:30,,,40.603207,-74.1629,"(40.603207, -74.1629)",,,1837 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452721,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,0:15,BRONX,10454,40.80843,-73.92338,"(40.80843, -73.92338)",WILLIS AVENUE,EAST 137 STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4451865,Sedan,Sedan,,, +08/30/2021,1:45,BROOKLYN,11207,40.653454,-73.88466,"(40.653454, -73.88466)",FLATLANDS AVENUE,VERMONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452764,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,13:11,BRONX,10466,40.890545,-73.84087,"(40.890545, -73.84087)",WILDER AVENUE,STRANG AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4452561,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/30/2021,21:35,,,,,,queens midtown expressway,74 street,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452863,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,15:00,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452829,Sedan,,,, +08/30/2021,15:00,STATEN ISLAND,10301,40.620274,-74.09385,"(40.620274, -74.09385)",,,101 ARLO ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4452408,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,11:16,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4452074,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +08/30/2021,0:00,,,40.784348,-73.84487,"(40.784348, -73.84487)",15 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4452080,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,11:42,BROOKLYN,11204,40.619785,-73.98246,"(40.619785, -73.98246)",,,5921 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452367,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,15:24,BROOKLYN,11207,40.66115,-73.89257,"(40.66115, -73.89257)",,,657 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452762,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,14:30,BROOKLYN,11228,40.621666,-74.013176,"(40.621666, -74.013176)",,,7713 11 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452114,Sedan,,,, +08/30/2021,15:19,QUEENS,11420,40.682507,-73.81431,"(40.682507, -73.81431)",127 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452389,Sedan,Sedan,,, +08/29/2021,3:00,BROOKLYN,11208,40.681293,-73.87768,"(40.681293, -73.87768)",,,219 LOGAN STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452780,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,16:45,QUEENS,11428,40.72003,-73.74282,"(40.72003, -73.74282)",93 AVENUE,215 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452150,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,13:45,,,40.8398,-73.928665,"(40.8398, -73.928665)",WEST 167 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,,,,4452432,AMBULANCE,Sedan,,, +08/25/2021,10:36,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4452806,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,7:15,BRONX,10451,40.820286,-73.911835,"(40.820286, -73.911835)",,,745 BROOK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452033,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:15,QUEENS,11372,40.753025,-73.873245,"(40.753025, -73.873245)",,,94-25 35 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452368,Sedan,Sedan,,, +08/30/2021,3:54,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",MOUNT EDEN PARKWAY,GRAND CONCOURSE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452424,Sedan,E-Bike,,, +08/30/2021,12:00,QUEENS,11436,40.67429,-73.800644,"(40.67429, -73.800644)",140 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452466,Sedan,UNKNOWN,,, +08/30/2021,11:35,BROOKLYN,11220,40.63396,-74.01012,"(40.63396, -74.01012)",,,820 62 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452039,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,15:00,BROOKLYN,11221,40.689995,-73.93722,"(40.689995, -73.93722)",,,784 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452113,Station Wagon/Sport Utility Vehicle,,,, +08/18/2021,22:45,BROOKLYN,11208,40.667953,-73.87007,"(40.667953, -73.87007)",LINDEN BOULEVARD,EUCLID AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452788,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,15:55,BROOKLYN,11207,40.667835,-73.89484,"(40.667835, -73.89484)",BLAKE AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4452795,Sedan,Sedan,,, +08/30/2021,16:10,QUEENS,11373,40.736763,-73.88754,"(40.736763, -73.88754)",51 AVENUE,JACOBUS STREET,,1,0,1,0,0,0,0,0,,,,,,4452140,,,,, +08/30/2021,11:33,BROOKLYN,11230,40.617794,-73.96,"(40.617794, -73.96)",ELM AVENUE,EAST 15 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452244,Sedan,,,, +08/30/2021,16:18,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",LOGAN STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452782,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,13:11,BRONX,10469,40.878986,-73.84342,"(40.878986, -73.84342)",BOSTON ROAD,GUNTHER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452560,Taxi,Sedan,,, +08/23/2021,10:05,MANHATTAN,10018,40.75649,-73.997765,"(40.75649, -73.997765)",WEST 37 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452756,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,10:00,,,40.720238,-73.94441,"(40.720238, -73.94441)",HUMBOLDT STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452059,Sedan,Sedan,,, +08/30/2021,18:45,,,40.620308,-74.16238,"(40.620308, -74.16238)",REGIS DRIVE,ELSON COURT,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4452170,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,9:15,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4452010,Van,Van,,, +08/30/2021,12:44,BROOKLYN,11238,40.68459,-73.97017,"(40.68459, -73.97017)",FULTON STREET,ADELPHI STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4452133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,22:07,QUEENS,11379,40.720154,-73.87531,"(40.720154, -73.87531)",80 STREET,JUNIPER BOULEVARD SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452865,Sedan,,,, +08/30/2021,14:00,BROOKLYN,11218,40.637966,-73.981895,"(40.637966, -73.981895)",15 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452361,Sedan,,,, +08/30/2021,0:40,QUEENS,11377,40.746048,-73.89903,"(40.746048, -73.89903)",ROOSEVELT AVENUE,65 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452124,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,23:30,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452926,Sedan,Sedan,,, +08/29/2021,0:00,MANHATTAN,10000,40.777264,-73.9642,"(40.777264, -73.9642)",,,31 TRANSVERSE ROAD NUMBER TWO,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452700,Sedan,Bus,,, +08/30/2021,0:00,BRONX,10458,40.87637,-73.88286,"(40.87637, -73.88286)",MOSHOLU PARKWAY,VANCORTLANDT AVENUE EAST,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4452434,Sedan,Taxi,,, +08/30/2021,23:00,,,40.781677,-73.83871,"(40.781677, -73.83871)",130 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,9:25,QUEENS,11103,40.766827,-73.909294,"(40.766827, -73.909294)",43 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452461,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,9:46,,,40.82751,-73.92495,"(40.82751, -73.92495)",EAST 161 STREET,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4452415,Box Truck,,,, +08/30/2021,11:20,BROOKLYN,11234,40.61883,-73.92866,"(40.61883, -73.92866)",,,4804 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4452232,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,10:30,,,40.73706,-73.85266,"(40.73706, -73.85266)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452659,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,14:50,BROOKLYN,11207,40.659702,-73.8786,"(40.659702, -73.8786)",WORTMAN AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452775,Sedan,,,, +08/30/2021,19:39,,,40.682003,-73.9687,"(40.682003, -73.9687)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4452186,Moped,,,, +08/30/2021,18:40,MANHATTAN,10019,40.76429,-73.982834,"(40.76429, -73.982834)",,,1717 BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452683,Sedan,Bike,,, +08/30/2021,5:30,BROOKLYN,11203,40.64842,-73.926125,"(40.64842, -73.926125)",TILDEN AVENUE,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452177,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,6:27,MANHATTAN,10029,40.793594,-73.9474,"(40.793594, -73.9474)",PARK AVENUE,EAST 107 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451930,Sedan,Sedan,,, +08/26/2021,11:30,,,40.606064,-74.147514,"(40.606064, -74.147514)",WILLOWBROOK ROAD,HALL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452722,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,12:45,BROOKLYN,11232,40.651604,-74.01051,"(40.651604, -74.01051)",43 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452873,Sedan,Pick-up Truck,,, +08/30/2021,10:14,QUEENS,11435,40.693344,-73.80228,"(40.693344, -73.80228)",107 AVENUE,WALTHAM STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4452098,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/30/2021,20:15,BROOKLYN,11217,,,,,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452212,Sedan,Sedan,,, +08/26/2021,2:15,BROOKLYN,11206,40.700527,-73.94161,"(40.700527, -73.94161)",,,760 BROADWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452845,Ambulance,Sedan,,, +08/29/2021,8:25,BROOKLYN,11207,,,,,,155 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452772,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,14:36,BROOKLYN,11210,40.617737,-73.95288,"(40.617737, -73.95288)",,,1399 EAST 22 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4452617,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,13:48,MANHATTAN,10065,40.760857,-73.961075,"(40.760857, -73.961075)",EAST 61 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4452219,Bike,Sedan,,, +08/30/2021,16:30,QUEENS,11692,40.596874,-73.79856,"(40.596874, -73.79856)",BEACH 69 STREET,ALMEDA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4452891,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,15:03,BROOKLYN,11219,40.631844,-73.99439,"(40.631844, -73.99439)",,,1321 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452345,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,23:20,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4452651,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,20:18,BROOKLYN,11225,40.661858,-73.95366,"(40.661858, -73.95366)",,,437 ROGERS AVENUE,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4452199,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,14:40,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452153,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,11:40,STATEN ISLAND,10314,40.612576,-74.12237,"(40.612576, -74.12237)",MANOR ROAD,JOSEPHINE STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452705,Sedan,,,, +08/28/2021,19:40,MANHATTAN,10036,40.76161,-73.99032,"(40.76161, -73.99032)",WEST 47 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452740,Van,,,, +08/30/2021,11:00,QUEENS,11417,40.67215,-73.843185,"(40.67215, -73.843185)",CROSS BAY BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452378,Sedan,,,, +08/30/2021,11:00,,,40.727493,-73.80117,"(40.727493, -73.80117)",75 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452528,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,15:58,BRONX,10451,40.818977,-73.927124,"(40.818977, -73.927124)",,,500 GRAND CONCOURSE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452227,Sedan,E-Scooter,,, +08/30/2021,17:08,,,40.87626,-73.90395,"(40.87626, -73.90395)",BAILEY AVENUE,WEST 230 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452904,Sedan,Sedan,,, +08/30/2021,20:26,QUEENS,11370,40.756416,-73.88649,"(40.756416, -73.88649)",,,32-56 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452266,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,2:55,BROOKLYN,11208,40.683933,-73.87119,"(40.683933, -73.87119)",HEMLOCK STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452779,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/12/2021,3:10,MANHATTAN,10026,40.80384,-73.95608,"(40.80384, -73.95608)",,,301 WEST 115 STREET,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4452667,Sedan,Sedan,,, +08/19/2021,17:15,BRONX,10467,40.88396,-73.869316,"(40.88396, -73.869316)",,,3556 WEBSTER AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4452851,Sedan,Moped,,, +08/30/2021,16:00,BRONX,10456,40.835926,-73.90291,"(40.835926, -73.90291)",SAINT PAULS PLACE,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452275,E-Scooter,,,, +08/29/2021,9:40,,,,,,QUEENS PLAZA SOUTH,27 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,2:15,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4452679,Sedan,,,, +08/30/2021,1:47,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4451892,Sedan,,,, +08/26/2021,21:45,BROOKLYN,11208,40.665905,-73.87778,"(40.665905, -73.87778)",HEGEMAN AVENUE,SHEPHERD AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4452765,Sedan,Sedan,,, +08/23/2021,15:00,MANHATTAN,10034,40.864273,-73.920845,"(40.864273, -73.920845)",,,100 POST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452709,Sedan,Sedan,,, +08/30/2021,20:35,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:00,BRONX,10456,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4452409,AMBULANCE,Sedan,,, +08/30/2021,10:50,,,40.78959,-73.81954,"(40.78959, -73.81954)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4452081,Sedan,Sedan,,, +08/30/2021,23:15,QUEENS,11417,40.674053,-73.84434,"(40.674053, -73.84434)",,,91-54 GOLD ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452397,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,17:14,BROOKLYN,11220,40.63491,-74.01017,"(40.63491, -74.01017)",61 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452749,Sedan,E-Bike,,, +08/30/2021,17:15,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",FEATHERBED LANE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452620,Sedan,,,, +08/30/2021,23:00,BROOKLYN,11210,40.621857,-73.93823,"(40.621857, -73.93823)",EAST 38 STREET,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4452231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,19:32,,,40.576885,-74.00323,"(40.576885, -74.00323)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4452251,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,21:20,QUEENS,11103,40.768906,-73.914246,"(40.768906, -73.914246)",,,25-14 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452471,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,11:40,,,40.644,-73.976585,"(40.644, -73.976585)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452362,Carry All,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:22,QUEENS,11354,40.76165,-73.82715,"(40.76165, -73.82715)",UNION STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452117,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,17:00,QUEENS,11428,40.716133,-73.75138,"(40.716133, -73.75138)",210 STREET,94 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452147,Sedan,,,, +08/23/2021,0:00,BROOKLYN,11207,40.6813,-73.89278,"(40.6813, -73.89278)",,,110 SUNNYSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452802,Sedan,Sedan,,, +08/30/2021,7:00,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452034,Sedan,Taxi,,, +08/30/2021,14:30,BROOKLYN,11208,40.684383,-73.87982,"(40.684383, -73.87982)",,,78 NORWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,23:10,BROOKLYN,11218,40.64412,-73.98907,"(40.64412, -73.98907)",37 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452369,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,16:30,QUEENS,11427,40.727566,-73.75038,"(40.727566, -73.75038)",,,214-11 WHITEHALL TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452206,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,0:10,BRONX,10471,40.897285,-73.89691,"(40.897285, -73.89691)",,,6155 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452901,Sedan,Sedan,Sedan,, +08/28/2021,2:22,BROOKLYN,11239,40.65289,-73.866745,"(40.65289, -73.866745)",SEAVIEW AVENUE,ERSKINE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452761,Sedan,Sedan,,, +08/28/2021,23:00,QUEENS,11385,40.700607,-73.90994,"(40.700607, -73.90994)",SAINT NICHOLAS,PALMETTO STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452861,Sedan,Sedan,,, +08/30/2021,5:50,QUEENS,11377,40.750317,-73.89867,"(40.750317, -73.89867)",64 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452126,Sedan,Sedan,,, +08/30/2021,10:00,,,40.66626,-73.95957,"(40.66626, -73.95957)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452159,Pick-up Truck,,,, +08/30/2021,18:00,QUEENS,11435,40.70887,-73.81871,"(40.70887, -73.81871)",84 DRIVE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452529,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/30/2021,17:42,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",VALENTINE AVENUE,EAST 178 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452426,Sedan,Sedan,,, +08/30/2021,20:28,BRONX,10458,40.86502,-73.89277,"(40.86502, -73.89277)",EAST 194 STREET,BRIGGS AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4452435,Sedan,Bike,,, +08/29/2021,19:30,BRONX,10471,40.904167,-73.89837,"(40.904167, -73.89837)",,,5649 SYLVAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452905,Sedan,,,, +08/30/2021,3:50,STATEN ISLAND,10304,40.60574,-74.08353,"(40.60574, -74.08353)",MOSEL AVENUE,SABLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452032,Sedan,,,, +08/30/2021,18:15,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452262,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/17/2021,19:10,BROOKLYN,11211,40.717743,-73.93854,"(40.717743, -73.93854)",,,30 DEBEVOISE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452939,,,,, +08/30/2021,7:53,MANHATTAN,10065,40.761944,-73.96168,"(40.761944, -73.96168)",,,337 EAST 62 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4452073,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,23:40,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452927,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/30/2021,1:00,QUEENS,11375,40.708786,-73.85239,"(40.708786, -73.85239)",SYBILLA STREET,70 DRIVE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,Unspecified,Unspecified,,4452376,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/30/2021,8:30,BRONX,10462,40.838684,-73.854675,"(40.838684, -73.854675)",,,1575 ODELL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4451992,Sedan,,,, +08/30/2021,15:00,,,40.72911,-74.01068,"(40.72911, -74.01068)",WEST STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452171,GOLF CART,E-Bike,,, +08/30/2021,11:40,MANHATTAN,10036,40.762253,-73.99572,"(40.762253, -73.99572)",,,545 WEST 45 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452423,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,21:20,QUEENS,11385,40.711452,-73.91987,"(40.711452, -73.91987)",FLUSHING AVENUE,ONDERDONK AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4452866,Pick-up Truck,Sedan,Sedan,Sedan,Sedan +08/30/2021,15:40,BROOKLYN,11222,40.727283,-73.93716,"(40.727283, -73.93716)",,,72 VAN DAM STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452356,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,12:20,BROOKLYN,11237,40.7065,-73.91701,"(40.7065, -73.91701)",DE KALB AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452112,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,18:30,BROOKLYN,11232,40.65773,-74.00257,"(40.65773, -74.00257)",,,136 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452734,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,13:30,QUEENS,11369,40.766747,-73.86924,"(40.766747, -73.86924)",101 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452684,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,15:50,BROOKLYN,11217,40.679222,-73.981834,"(40.679222, -73.981834)",,,164 4 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4452213,Box Truck,,,, +08/30/2021,19:35,,,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,65 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452194,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,18:40,BRONX,10466,40.892754,-73.85774,"(40.892754, -73.85774)",WHITE PLAINS ROAD,EAST 232 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452558,Sedan,Sedan,,, +08/29/2021,15:35,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452658,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,19:08,MANHATTAN,10021,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,EAST 76 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452221,Sedan,Taxi,,, +08/30/2021,10:35,,,40.637756,-74.00721,"(40.637756, -74.00721)",56 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452874,Sedan,,,, +08/30/2021,12:54,,,40.69579,-73.93313,"(40.69579, -73.93313)",WILLOUGHBY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452101,Sedan,,,, +08/29/2021,4:50,BROOKLYN,11216,40.680504,-73.95156,"(40.680504, -73.95156)",,,1253 FULTON STREET,4,0,0,0,0,0,4,0,Passenger Distraction,Unspecified,,,,4452846,Sedan,Taxi,,, +08/30/2021,13:21,BROOKLYN,11222,40.722664,-73.94401,"(40.722664, -73.94401)",,,64 RUSSELL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452058,Box Truck,Sedan,,, +08/22/2021,4:20,MANHATTAN,10001,40.753925,-73.99761,"(40.753925, -73.99761)",WEST 34 STREET,DYER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452755,Taxi,Sedan,,, +08/30/2021,11:05,QUEENS,11417,40.67172,-73.850975,"(40.67172, -73.850975)",NORTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,9:02,QUEENS,11436,40.674847,-73.79983,"(40.674847, -73.79983)",141 STREET,123 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452454,Bus,,,, +08/30/2021,14:10,,,40.674652,-73.87712,"(40.674652, -73.87712)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452134,Sedan,Sedan,,, +08/30/2021,17:33,BROOKLYN,11210,40.62589,-73.93442,"(40.62589, -73.93442)",AVENUE K,EAST 43 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452233,Sedan,,,, +08/30/2021,11:36,BRONX,10452,40.832283,-73.92975,"(40.832283, -73.92975)",OGDEN AVENUE,WEST 163 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4452414,Taxi,Sedan,,, +08/30/2021,13:49,,,40.683758,-73.8643,"(40.683758, -73.8643)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452344,Taxi,,,, +08/30/2021,2:20,QUEENS,11421,40.685204,-73.86327,"(40.685204, -73.86327)",,,92-16 77 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4452053,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/30/2021,3:55,BRONX,10466,40.89204,-73.85814,"(40.89204, -73.85814)",EAST 231 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451939,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,10:48,,,,,,JAY STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452175,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,0:00,BROOKLYN,11207,40.662533,-73.88149,"(40.662533, -73.88149)",,,2197 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,,,4452794,Station Wagon/Sport Utility Vehicle,PK,Sedan,, +08/30/2021,15:20,MANHATTAN,10007,40.714165,-74.00632,"(40.714165, -74.00632)",CHAMBERS STREET,BROADWAY,,1,0,0,0,0,0,0,0,Unspecified,,,,,4452246,E-Scooter,,,, +08/30/2021,9:00,QUEENS,11368,40.74912,-73.85393,"(40.74912, -73.85393)",,,111-71 44 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452139,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,2:15,,,40.836617,-73.87377,"(40.836617, -73.87377)",BRONX RIVER PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452698,Station Wagon/Sport Utility Vehicle,,,, +08/26/2021,15:30,QUEENS,11419,40.696915,-73.81514,"(40.696915, -73.81514)",,,134-10 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4452726,,,,, +08/30/2021,23:29,,,,,,Grand Central Parkway Service Ro,69 Road,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452586,Sedan,Sedan,,, +08/29/2021,9:25,,,40.676964,-73.89895,"(40.676964, -73.89895)",GEORGIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452773,Tractor Truck Diesel,Sedan,,, +08/30/2021,17:54,,,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452187,E-Scooter,,,, +08/29/2021,8:45,,,40.59691,-74.19134,"(40.59691, -74.19134)",WEST SHORE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4452652,Sedan,,,, +08/29/2021,13:46,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452791,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,10:40,,,40.598312,-73.96119,"(40.598312, -73.96119)",CONEY ISLAND AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452371,Dump,,,, +08/20/2021,2:10,,,40.690174,-73.95527,"(40.690174, -73.95527)",,,KOSCIUSZKO STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452841,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,21:15,QUEENS,11379,40.721592,-73.87647,"(40.721592, -73.87647)",JUNIPER BOULEVARD NORTH,80 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452867,Sedan,,,, +08/30/2021,0:30,QUEENS,11692,40.589252,-73.7958,"(40.589252, -73.7958)",BEACH 67 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452083,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,5:41,BRONX,10456,40.83226,-73.91369,"(40.83226, -73.91369)",COLLEGE AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4452410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,1:45,BROOKLYN,11207,40.67751,-73.8973,"(40.67751, -73.8973)",,,27 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452760,Sedan,,,, +08/30/2021,20:40,BROOKLYN,11230,40.611446,-73.96267,"(40.611446, -73.96267)",,,1880 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452363,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,10:49,MANHATTAN,10065,40.764915,-73.95516,"(40.764915, -73.95516)",YORK AVENUE,EAST 69 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452072,Sedan,Sedan,,, +08/30/2021,9:45,,,40.638668,-74.139404,"(40.638668, -74.139404)",NICHOLAS AVENUE,PORT LANE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452127,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/30/2021,16:04,,,40.763515,-73.9142,"(40.763515, -73.9142)",41 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4452465,Sedan,,,, +08/30/2021,16:00,,,40.820263,-73.92976,"(40.820263, -73.92976)",RIVER AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4452436,,,,, +08/30/2021,10:05,STATEN ISLAND,10304,40.60574,-74.08353,"(40.60574, -74.08353)",MOSEL AVENUE,SABLE AVENUE,,0,0,0,0,0,0,0,0,,,,,,4452035,,,,, +08/29/2021,10:30,BROOKLYN,11208,40.679405,-73.88069,"(40.679405, -73.88069)",,,245 HIGHLAND PLACE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452774,Sedan,Sedan,,, +08/26/2021,17:13,,,40.69689,-73.95564,"(40.69689, -73.95564)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452847,Sedan,Flat Bed,,, +08/30/2021,16:27,,,40.76975,-73.96061,"(40.76975, -73.96061)",EAST 72 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4452634,Sedan,Moped,,, +08/20/2021,8:26,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452900,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,10:40,,,40.815933,-73.90992,"(40.815933, -73.90992)",CAULDWELL AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4452226,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,12:32,BROOKLYN,11211,40.71763,-73.933044,"(40.71763, -73.933044)",,,222 MASPETH AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4452703,Station Wagon/Sport Utility Vehicle,,,, +08/19/2021,23:00,,,40.83369,-73.91386,"(40.83369, -73.91386)",EAST 168 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452710,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,1:25,MANHATTAN,10039,40.822117,-73.94024,"(40.822117, -73.94024)",,,232 WEST 145 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4451895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,20:30,BROOKLYN,11207,40.669956,-73.88499,"(40.669956, -73.88499)",,,552 WARWICK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452798,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,19:13,MANHATTAN,10012,,,,EAST HOUSTON STREET,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4452260,Sedan,Station Wagon/Sport Utility Vehicle,Box Truck,, +01/31/2022,13:28,,,40.662945,-73.95379,"(40.662945, -73.95379)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Other Vehicular,Unspecified,,,4499331,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/29/2021,2:22,,,40.65204,-73.887955,"(40.65204, -73.887955)",GEORGIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452769,Sedan,PK,,, +08/30/2021,13:35,,,40.60459,-74.02212,"(40.60459, -74.02212)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4452182,Sedan,Sedan,,, +08/30/2021,15:00,QUEENS,11434,40.68936,-73.7848,"(40.68936, -73.7848)",LINDEN BOULEVARD,ODONNELL ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452473,Sedan,Sedan,Sedan,, +08/30/2021,15:15,MANHATTAN,10019,40.764214,-73.98877,"(40.764214, -73.98877)",,,352 WEST 51 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452204,Sedan,Sedan,,, +08/30/2021,22:04,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452784,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,21:25,,,40.688564,-73.93019,"(40.688564, -73.93019)",REID AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4452909,Bike,Sedan,,, +08/30/2021,21:38,QUEENS,11369,40.765747,-73.86409,"(40.765747, -73.86409)",DITMARS BOULEVARD,27 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452267,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/30/2021,15:37,BRONX,10472,40.832386,-73.86457,"(40.832386, -73.86457)",WESTCHESTER AVENUE,THIERIOT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452116,Sedan,Sedan,,, +08/30/2021,11:45,BROOKLYN,11211,40.715977,-73.950485,"(40.715977, -73.950485)",,,240 MEEKER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452027,Sedan,,,, +08/30/2021,16:16,BROOKLYN,11218,40.637817,-73.97956,"(40.637817, -73.97956)",DAHILL ROAD,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452400,Sedan,,,, +08/30/2021,10:29,,,40.814102,-73.940865,"(40.814102, -73.940865)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452544,Sedan,Motorcycle,,, +08/30/2021,10:50,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4452165,Flat Bed,Flat Bed,,, +08/30/2021,9:20,,,40.696503,-73.89887,"(40.696503, -73.89887)",,,16-000 CODY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452144,Sedan,Box Truck,,, +08/30/2021,14:16,BROOKLYN,11221,40.685028,-73.94135,"(40.685028, -73.94135)",PUTNAM AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4452430,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Flat Bed,Station Wagon/Sport Utility Vehicle +08/29/2021,21:13,BROOKLYN,11207,40.6594,-73.88873,"(40.6594, -73.88873)",,,1991 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452778,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,6:13,,,40.665375,-73.934235,"(40.665375, -73.934235)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452198,Van,Sedan,,, +08/30/2021,7:30,BROOKLYN,11234,40.631454,-73.927216,"(40.631454, -73.927216)",,,1214 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452230,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,8:15,BROOKLYN,11220,40.639225,-74.0021,"(40.639225, -74.0021)",51 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452748,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,16:50,QUEENS,11691,40.59514,-73.754,"(40.59514, -73.754)",SEAGIRT BOULEVARD,BEACH 20 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452680,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/25/2021,16:04,,,40.67277,-73.9628,"(40.67277, -73.9628)",WASHINGTON AVENUE,LINCOLN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452883,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,8:50,BROOKLYN,11220,40.644863,-74.01748,"(40.644863, -74.01748)",3 AVENUE,55 STREET,,2,0,1,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4452932,Sedan,Sedan,Sedan,, +08/30/2021,15:40,,,40.575714,-73.96301,"(40.575714, -73.96301)",BRIGHTON 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452250,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,15:09,QUEENS,11356,40.78168,-73.84595,"(40.78168, -73.84595)",COLLEGE POINT BOULEVARD,20 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452188,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,15:25,QUEENS,11360,40.78643,-73.793274,"(40.78643, -73.793274)",CROSS ISLAND PARKWAY,201 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452857,Sedan,Pick-up Truck,,, +08/27/2021,12:00,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452655,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,13:00,MANHATTAN,10019,40.76527,-73.97531,"(40.76527, -73.97531)",,,40 CENTRAL PARK SOUTH,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4452685,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/30/2021,13:30,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452214,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,20:15,,,40.8077723,-73.9454833,"(40.8077723, -73.9454833)",WEST 125 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452662,Sedan,Sedan,,, +11/07/2021,16:55,MANHATTAN,10021,40.76948,-73.95787,"(40.76948, -73.95787)",EAST 73 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Lost Consciousness,,,,4475259,Sedan,Sedan,,, +01/31/2022,9:25,BRONX,10472,40.8305,-73.861626,"(40.8305, -73.861626)",WHITE PLAINS ROAD,GLEASON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4498807,Sedan,,,, +01/29/2022,4:30,QUEENS,11104,40.743263,-73.91964,"(40.743263, -73.91964)",QUEENS BOULEVARD,45 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498148,Taxi,,,, +01/27/2022,11:25,QUEENS,11355,40.756023,-73.82088,"(40.756023, -73.82088)",BOWNE STREET,BEECH AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498014,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,14:31,BROOKLYN,11223,40.597984,-73.96411,"(40.597984, -73.96411)",AVENUE U,EAST 7 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498016,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,21:05,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4499488,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,11:25,,,40.7526,-73.81466,"(40.7526, -73.81466)",BURLING STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498130,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,20:40,STATEN ISLAND,10310,40.62928,-74.113365,"(40.62928, -74.113365)",FOREST AVENUE,NORTH BURGHER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498246,Sedan,Sedan,,, +01/28/2022,8:19,BRONX,10460,40.83636,-73.86999,"(40.83636, -73.86999)",,,1444 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4498027,Sedan,Sedan,,, +01/31/2022,10:20,,,40.70674,-73.92032,"(40.70674, -73.92032)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498839,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/27/2022,22:02,BROOKLYN,11223,40.58794,-73.97434,"(40.58794, -73.97434)",AVENUE Y,SHELL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498143,Sedan,Sedan,,, +01/29/2022,23:40,BRONX,10472,40.826424,-73.85868,"(40.826424, -73.85868)",VIRGINIA AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4498728,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,8:00,STATEN ISLAND,10301,40.642803,-74.07872,"(40.642803, -74.07872)",,,285 SAINT MARKS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498261,Sedan,,,, +01/27/2022,14:56,BROOKLYN,11234,40.61877,-73.929794,"(40.61877, -73.929794)",AVENUE N,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Glare,,,,,4498046,Station Wagon/Sport Utility Vehicle,,,, +01/09/2022,19:05,BROOKLYN,11217,40.68672,-73.98224,"(40.68672, -73.98224)",NEVINS STREET,STATE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4493226,Sedan,,,, +01/29/2022,0:39,BROOKLYN,11211,40.703434,-73.96035,"(40.703434, -73.96035)",WILLIAMSBURG STREET WEST,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498555,Taxi,Sedan,,, +01/29/2022,19:25,,,40.734314,-73.93803,"(40.734314, -73.93803)",GREENPOINT AVENUE,REVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,19:30,MANHATTAN,10036,40.75889,-73.98968,"(40.75889, -73.98968)",,,321 WEST 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498671,Sedan,Ambulance,,, +01/28/2022,5:28,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,9:13,QUEENS,11421,40.69083,-73.85752,"(40.69083, -73.85752)",88 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4497999,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,8:00,QUEENS,11368,40.743176,-73.856926,"(40.743176, -73.856926)",51 AVENUE,ALSTYNE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,11:30,QUEENS,11101,40.75475,-73.93678,"(40.75475, -73.93678)",CRESCENT STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498131,Sedan,Sedan,,, +01/30/2022,11:47,BROOKLYN,11238,40.679733,-73.9578,"(40.679733, -73.9578)",,,1027 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498357,Sedan,Sedan,,, +01/28/2022,0:00,,,40.69783,-73.93677,"(40.69783, -73.93677)",ARION PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498716,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,0:15,,,40.704185,-73.781715,"(40.704185, -73.781715)",177 STREET,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498583,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,2:10,BROOKLYN,11211,40.714165,-73.948166,"(40.714165, -73.948166)",,,630 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498566,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,14:00,MANHATTAN,10001,40.745445,-73.989136,"(40.745445, -73.989136)",,,28 WEST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499178,Station Wagon/Sport Utility Vehicle,FDNY FIRET,,, +01/31/2022,11:45,BROOKLYN,11220,40.63721,-74.02221,"(40.63721, -74.02221)",SHORE ROAD DRIVE,4 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498802,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,19:02,,,40.643425,-74.01207,"(40.643425, -74.01207)",53 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498544,Sedan,,,, +01/31/2022,21:35,BRONX,10474,40.809776,-73.889084,"(40.809776, -73.889084)",OAK POINT AVENUE,CASANOVA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,11:49,,,,,,BROOKLYN QUEENS EXPY (CDR),,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4498158,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +01/28/2022,15:15,,,40.708637,-73.90412,"(40.708637, -73.90412)",LINDEN STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4498405,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/08/2022,5:35,,,,,,Bruckner Blvd & Saint Anns,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498991,Sedan,,,, +01/31/2022,4:30,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4498676,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,20:47,QUEENS,11356,40.781662,-73.83366,"(40.781662, -73.83366)",,,135-05 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519105,Pick-up Truck,,,, +01/29/2022,18:15,BRONX,10451,40.81612,-73.926636,"(40.81612, -73.926636)",EAST 144 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4498384,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,14:52,BRONX,10453,40.854763,-73.90765,"(40.854763, -73.90765)",DAVIDSON AVENUE,WEST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498715,Station Wagon/Sport Utility Vehicle,Bus,,, +01/26/2022,8:58,,,40.584644,-73.94899,"(40.584644, -73.94899)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498004,Sedan,Sedan,Sedan,, +01/27/2022,16:28,,,40.8541,-73.919106,"(40.8541, -73.919106)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Following Too Closely,Unspecified,,,4498026,Taxi,Sedan,Sedan,, +01/28/2022,12:00,MANHATTAN,10002,40.723423,-73.99287,"(40.723423, -73.99287)",,,263 BOWERY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498826,Sedan,Sedan,,, +01/29/2022,14:03,QUEENS,11385,40.7005,-73.901024,"(40.7005, -73.901024)",,,58-19 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499138,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,16:30,,,40.815403,-73.93992,"(40.815403, -73.93992)",,,WEST 137 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498755,Ambulance,Sedan,,, +01/29/2022,16:25,BROOKLYN,11214,40.592762,-73.99257,"(40.592762, -73.99257)",25 AVENUE,HARWAY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498268,Sedan,,,, +01/30/2022,0:15,BRONX,10459,40.82625,-73.894844,"(40.82625, -73.894844)",EAST 167 STREET,TIFFANY STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4498726,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,11:15,QUEENS,11432,40.708477,-73.80007,"(40.708477, -73.80007)",,,162-02 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498858,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,0:30,,,40.884815,-73.86755,"(40.884815, -73.86755)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498809,Taxi,,,, +01/29/2022,3:35,BROOKLYN,11237,40.709003,-73.92234,"(40.709003, -73.92234)",FLUSHING AVENUE,SCOTT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498559,Box Truck,Sedan,,, +01/30/2022,9:30,,,40.604942,-74.16598,"(40.604942, -74.16598)",DAWSON CIRCLE,ARLENE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498693,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,13:30,BROOKLYN,11211,40.70914,-73.950836,"(40.70914, -73.950836)",SOUTH 2 STREET,UNION AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4498561,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,9:20,STATEN ISLAND,10301,40.642643,-74.08354,"(40.642643, -74.08354)",,,217 WESTERVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498273,Sedan,Sedan,,, +01/30/2022,16:30,BROOKLYN,11249,40.703808,-73.96518,"(40.703808, -73.96518)",,,599 WYTHE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498941,Sedan,Bus,,, +01/24/2022,8:55,MANHATTAN,10029,40.789345,-73.94153,"(40.789345, -73.94153)",,,320 EAST 105 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4498041,Sedan,E-Bike,,, +01/29/2022,2:33,QUEENS,11103,40.75975,-73.916176,"(40.75975, -73.916176)",,,31-28 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4498100,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,11:30,QUEENS,11378,40.723827,-73.89729,"(40.723827, -73.89729)",,,66-55 58 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499137,Sedan,Box Truck,,, +01/28/2022,17:20,STATEN ISLAND,10310,40.63472,-74.10894,"(40.63472, -74.10894)",CASTLETON AVENUE,DAVIS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498263,Sedan,,,, +01/29/2022,12:03,QUEENS,11417,40.674503,-73.83773,"(40.674503, -73.83773)",LINDEN BOULEVARD,HAWTREE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498186,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,2:04,STATEN ISLAND,10304,40.62909,-74.078255,"(40.62909, -74.078255)",,,92 PROSPECT STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,,,4499429,Sedan,Sedan,,, +08/31/2021,13:12,QUEENS,11365,40.73656,-73.79923,"(40.73656, -73.79923)",170 STREET,65 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452536,Sedan,Sedan,,, +01/30/2022,8:30,BROOKLYN,11225,40.65994,-73.95347,"(40.65994, -73.95347)",MIDWOOD STREET,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499347,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,10:43,BRONX,10459,40.8247,-73.89778,"(40.8247, -73.89778)",,,1038 HALL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498527,Sedan,,,, +01/28/2022,8:03,BROOKLYN,11212,40.66208,-73.92121,"(40.66208, -73.92121)",,,196 ROCKAWAY PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passenger Distraction,,,,4498241,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,9:50,BRONX,10453,40.848793,-73.91495,"(40.848793, -73.91495)",HARRISON AVENUE,WEST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498009,Sedan,,,, +01/28/2022,6:25,QUEENS,11368,40.745766,-73.86421,"(40.745766, -73.86421)",NATIONAL STREET,45 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498395,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,11:25,BRONX,10454,40.803864,-73.92041,"(40.803864, -73.92041)",,,141 BRUCKNER BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4498623,Tanker,Sedan,,, +01/28/2022,14:05,QUEENS,11004,40.74052,-73.70259,"(40.74052, -73.70259)",267 STREET,83 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498053,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,12:58,BRONX,10454,40.806786,-73.92335,"(40.806786, -73.92335)",,,435 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498373,Sedan,Sedan,,, +01/31/2022,22:30,QUEENS,11368,40.737335,-73.86345,"(40.737335, -73.86345)",,,97-20 57 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499155,Sedan,,,, +01/28/2022,6:05,,,40.62194,-73.91753,"(40.62194, -73.91753)",RALPH AVENUE,AVENUE M,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4497994,Sedan,Sedan,,, +01/21/2021,2:40,BROOKLYN,11216,40.67357,-73.95294,"(40.67357, -73.95294)",ROGERS AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,View Obstructed/Limited,,,,4498427,Sedan,Sedan,,, +01/31/2022,18:24,BRONX,10462,40.848545,-73.86161,"(40.848545, -73.86161)",RHINELANDER AVENUE,MULINER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498919,Van,,,, +01/26/2022,16:00,,,40.68723,-73.941795,"(40.68723, -73.941795)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4498364,Sedan,,,, +01/23/2022,23:05,,,,,,MONTROSE AVENUE,BROADWAY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498036,Sedan,,,, +01/30/2022,20:00,,,40.66858,-73.84223,"(40.66858, -73.84223)",SOUTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498554,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/26/2021,2:37,BRONX,10457,40.83945,-73.91209,"(40.83945, -73.91209)",SHERIDAN AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498295,Sedan,,,, +01/22/2022,2:18,,,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4499483,tr,Sedan,,, +01/30/2022,22:59,,,,,,2 avenue,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498593,Sedan,,,, +01/31/2022,5:00,BROOKLYN,11203,40.641743,-73.93586,"(40.641743, -73.93586)",,,4317 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,,,,,4498770,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,11:30,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498126,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,23:11,,,40.702362,-73.91291,"(40.702362, -73.91291)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498695,Sedan,Sedan,,, +01/31/2022,16:05,BROOKLYN,11222,40.73207,-73.94462,"(40.73207, -73.94462)",GREENPOINT AVENUE,NORTH HENRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499050,Sedan,,,, +01/31/2022,9:53,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4499112,Sedan,,,, +12/04/2021,13:40,MANHATTAN,10027,40.80787,-73.94979,"(40.80787, -73.94979)",,,200 WEST 123 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499375,Sedan,,,, +01/27/2022,1:15,BRONX,10473,40.822655,-73.86751,"(40.822655, -73.86751)",,,847 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4498031,,,,, +01/30/2022,0:00,,,40.637047,-74.16504,"(40.637047, -74.16504)",,,93 GRANDVIEW AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4498448,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,2:05,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4499089,D2,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:00,,,,,,201 PLACE,120 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498317,Sedan,,,, +01/30/2022,22:00,QUEENS,11104,40.736637,-73.92382,"(40.736637, -73.92382)",,,50-42 42 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499087,Pick-up Truck,Sedan,,, +01/29/2022,9:50,BROOKLYN,11215,40.67219,-73.983795,"(40.67219, -73.983795)",5 AVENUE,4 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498218,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/31/2022,20:47,QUEENS,11354,40.76856,-73.82141,"(40.76856, -73.82141)",33 AVENUE,146 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498902,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,17:13,,,40.80886,-73.95213,"(40.80886, -73.95213)",8 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498787,Sedan,,,, +01/28/2022,22:00,QUEENS,11377,40.751568,-73.90371,"(40.751568, -73.90371)",,,34-42 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498163,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,22:00,QUEENS,11377,40.75633,-73.89873,"(40.75633, -73.89873)",,,68-09 32 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499433,Sedan,,,, +01/29/2022,4:15,,,40.717022,-73.94913,"(40.717022, -73.94913)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4498686,Sedan,,,, +01/31/2022,14:03,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",NORTH CONDUIT AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498930,Sedan,Sedan,,, +01/30/2022,1:00,,,40.834187,-73.909584,"(40.834187, -73.909584)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499338,Sedan,,,, +01/26/2022,13:16,,,40.83327,-73.92504,"(40.83327, -73.92504)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498332,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,9:00,BROOKLYN,11216,40.67268,-73.953026,"(40.67268, -73.953026)",ROGERS AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Other Vehicular,,,,4498522,Sedan,Sedan,,, +01/24/2022,23:00,BROOKLYN,11213,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,PRESIDENT STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4498068,Taxi,Bike,,, +01/29/2022,12:48,MANHATTAN,10022,40.758698,-73.96179,"(40.758698, -73.96179)",,,420 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498141,Sedan,Garbage or Refuse,,, +01/30/2022,13:08,,,40.81655,-73.81229,"(40.81655, -73.81229)",HARDING AVENUE,THROGS NECK BOULEVARD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4498654,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,17:50,BROOKLYN,11212,40.67066,-73.904205,"(40.67066, -73.904205)",POWELL STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498747,Sedan,,,, +01/31/2022,10:00,QUEENS,11368,40.741516,-73.85052,"(40.741516, -73.85052)",56 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498962,Bus,Sedan,,, +01/29/2022,10:30,QUEENS,11435,40.686962,-73.80216,"(40.686962, -73.80216)",,,109-54 143 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498586,Sedan,,,, +01/31/2022,14:00,BROOKLYN,11212,,,,,,437 MOTHER GASTON BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4499264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,14:38,,,40.781277,-73.80325,"(40.781277, -73.80325)",160 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4498169,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/31/2022,15:00,,,40.598766,-74.000725,"(40.598766, -74.000725)",21 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499310,Sedan,,,, +01/31/2022,14:25,QUEENS,11413,40.657402,-73.753456,"(40.657402, -73.753456)",,,147-48 229 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498883,Pick-up Truck,,,, +01/28/2022,23:06,QUEENS,11385,40.71255,-73.91082,"(40.71255, -73.91082)",,,21-30 RENE COURT,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498388,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,14:00,BROOKLYN,11209,40.62537,-74.039116,"(40.62537, -74.039116)",86 STREET,NARROWS AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Driver Inattention/Distraction,Unspecified,Unspecified,,4498154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/31/2022,6:30,BRONX,10470,40.902203,-73.854836,"(40.902203, -73.854836)",,,4550 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498814,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,9:43,QUEENS,11355,40.76144,-73.813385,"(40.76144, -73.813385)",,,41-57 150 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498095,Sedan,Sedan,,, +01/30/2022,12:46,,,40.832367,-73.82971,"(40.832367, -73.82971)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498663,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,8:15,QUEENS,11432,40.713505,-73.788414,"(40.713505, -73.788414)",,,172-75 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499527,Sedan,Sedan,,, +01/29/2022,5:40,,,,,,QUEENSBORO BRIDGE,Thomson Avenue,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4498201,Sedan,Sedan,,, +01/29/2022,18:00,BROOKLYN,11213,40.66362,-73.930695,"(40.66362, -73.930695)",EAST 91 STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498256,Sedan,,,, +01/30/2022,23:13,BROOKLYN,11226,40.652706,-73.9484,"(40.652706, -73.9484)",,,290 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498767,Sedan,,,, +01/27/2022,16:47,QUEENS,11385,40.703884,-73.88417,"(40.703884, -73.88417)",,,68-10 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499129,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,15:24,,,40.64018,-74.02179,"(40.64018, -74.02179)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498995,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,12:45,QUEENS,11385,40.700665,-73.8961,"(40.700665, -73.8961)",MYRTLE AVENUE,DECATUR STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498401,Sedan,Pick-up Truck,,, +01/29/2022,1:30,,,40.70403,-73.81711,"(40.70403, -73.81711)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498063,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,19:30,BRONX,10462,40.83715,-73.860664,"(40.83715, -73.860664)",,,1489 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4499039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,13:55,BROOKLYN,11207,40.69003,-73.911,"(40.69003, -73.911)",CENTRAL AVENUE,HALSEY STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4498719,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,13:00,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498359,Sedan,Sedan,,, +01/31/2022,8:00,,,40.886127,-73.81532,"(40.886127, -73.81532)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498973,LIMO,,,, +01/31/2022,7:20,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498979,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,11:30,BROOKLYN,11226,40.650116,-73.9608,"(40.650116, -73.9608)",,,2009 CHURCH AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498212,E-Bike,,,, +01/27/2022,15:45,BROOKLYN,11204,40.62395,-73.98889,"(40.62395, -73.98889)",17 AVENUE,59 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498344,Bus,,,, +01/28/2022,23:42,QUEENS,11373,40.742786,-73.88264,"(40.742786, -73.88264)",BRITTON AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498433,Taxi,,,, +01/28/2022,15:11,BROOKLYN,11209,40.62761,-74.019516,"(40.62761, -74.019516)",,,627 BAY RIDGE PARKWAY,1,0,0,0,0,0,1,0,Turning Improperly,Passing or Lane Usage Improper,,,,4498058,Sedan,Moped,,, +01/30/2022,13:13,QUEENS,11367,40.72496,-73.82756,"(40.72496, -73.82756)",PARK DRIVE EAST,72 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498549,Sedan,,,, +01/28/2022,2:30,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4497989,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,16:00,BRONX,10463,40.88349,-73.91041,"(40.88349, -73.91041)",JOHNSON AVENUE,WEST 232 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,Unspecified,,,4499162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,14:15,BRONX,10456,40.82929,-73.91642,"(40.82929, -73.91642)",EAST 165 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498227,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,5:03,MANHATTAN,10016,40.750217,-73.979065,"(40.750217, -73.979065)",EAST 39 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498720,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,6:23,,,40.685463,-73.9506,"(40.685463, -73.9506)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4498300,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,5:56,BROOKLYN,11236,40.64208,-73.91967,"(40.64208, -73.91967)",RALPH AVENUE,CHASE COURT,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4498491,Garbage or Refuse,Sedan,,, +01/28/2022,11:00,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498863,Backhoe,Station Wagon/Sport Utility Vehicle,,, +11/25/2021,21:34,QUEENS,11435,40.68822,-73.79664,"(40.68822, -73.79664)",148 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4498021,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/30/2022,13:00,BROOKLYN,11230,40.620815,-73.956696,"(40.620815, -73.956696)",AVENUE L,EAST 19 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498631,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,12:50,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499034,Pick-up Truck,Sedan,,, +01/29/2022,16:01,QUEENS,11385,40.69841,-73.88995,"(40.69841, -73.88995)",,,64-63 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498416,Sedan,,,, +01/29/2022,2:00,,,40.676815,-73.82338,"(40.676815, -73.82338)",115 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498080,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,5:10,QUEENS,11368,,,,97 PLACE,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519203,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,5:25,,,,,,BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452653,Sedan,Tractor Truck Diesel,,, +10/23/2021,21:40,QUEENS,11105,,,,,,21-27 28 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475815,Sedan,Sedan,,, +01/23/2022,11:30,BRONX,10452,40.836018,-73.9243,"(40.836018, -73.9243)",WEST 167 STREET,ANDERSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498598,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,8:55,BROOKLYN,11233,40.676693,-73.917404,"(40.676693, -73.917404)",ATLANTIC AVENUE,LOUIS PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4498285,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/27/2021,0:51,BROOKLYN,11221,40.685753,-73.93516,"(40.685753, -73.93516)",,,647 PUTNAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498253,Chassis Cab,Sedan,,, +01/29/2022,14:00,,,40.675827,-73.817276,"(40.675827, -73.817276)",121 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498190,Sedan,,,, +01/22/2022,7:03,QUEENS,11423,40.713963,-73.76753,"(40.713963, -73.76753)",193 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498581,Sedan,,,, +01/31/2022,10:38,QUEENS,11378,40.725773,-73.89563,"(40.725773, -73.89563)",,,68-45 GRAND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4498846,Pick-up Truck,Pick-up Truck,,, +01/31/2022,16:10,QUEENS,11355,,,,156 STREET,HOLLYWOOD AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4499226,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,17:38,,,40.775826,-73.991264,"(40.775826, -73.991264)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4498873,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,10:12,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",BROADWAY,WEST 178 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498459,Sedan,,,, +01/26/2022,15:20,BRONX,10458,40.857525,-73.8818,"(40.857525, -73.8818)",EAST FORDHAM ROAD,CROTONA AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4498794,Sedan,,,, +11/06/2021,21:07,BROOKLYN,11236,40.64,-73.90194,"(40.64, -73.90194)",EAST 93 STREET,AVENUE J,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474646,Sedan,Sedan,,, +01/25/2022,18:20,QUEENS,11374,40.71338,-73.859665,"(40.71338, -73.859665)",WOODHAVEN BOULEVARD,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499135,Sedan,,,, +11/07/2021,4:16,BROOKLYN,11206,40.704163,-73.937454,"(40.704163, -73.937454)",,,179 MOORE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,17:23,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475255,Taxi,Sedan,Taxi,, +11/07/2021,14:36,BROOKLYN,11220,40.63489,-74.02044,"(40.63489, -74.02044)",,,6726 5 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475069,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/01/2021,20:40,BROOKLYN,11212,40.657173,-73.921074,"(40.657173, -73.921074)",EAST 93 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475674,Sedan,,,, +10/31/2021,23:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4475641,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,0:30,QUEENS,11101,40.739674,-73.934586,"(40.739674, -73.934586)",HUNTERS POINT AVENUE,VANDAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,4:02,,,40.84125,-73.9094,"(40.84125, -73.9094)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475036,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,21:52,BRONX,10463,,,,,,3725 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4475409,Sedan,,,, +11/07/2021,2:06,,,40.86794,-73.87221,"(40.86794, -73.87221)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unsafe Speed,,,,4475131,Sedan,Sedan,,, +11/04/2021,12:41,BROOKLYN,11218,40.643303,-73.974106,"(40.643303, -73.974106)",OCEAN PARKWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475598,Sedan,Sedan,,, +09/02/2021,21:30,BRONX,10458,40.85517,-73.89129,"(40.85517, -73.89129)",EAST 184 STREET,BATHGATE AVENUE,,3,0,0,0,0,0,3,0,Backing Unsafely,Unspecified,,,,4475736,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,0:05,BROOKLYN,11221,40.697186,-73.92884,"(40.697186, -73.92884)",EVERGREEN AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474674,Sedan,Sedan,,, +10/26/2021,20:30,STATEN ISLAND,10301,40.646664,-74.088936,"(40.646664, -74.088936)",RICHMOND TERRACE,JERSEY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475664,Sedan,Sedan,,, +10/31/2021,22:06,,,40.77447,-73.9924,"(40.77447, -73.9924)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4475727,Taxi,Sedan,,, +11/07/2021,13:40,BROOKLYN,11237,40.69964,-73.91447,"(40.69964, -73.91447)",,,337 GROVE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475559,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,17:20,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,1,0,0,0,1,0,0,0,Failure to Keep Right,Unspecified,,,,4475835,Bike,,,, +04/13/2022,23:23,BRONX,10456,40.832516,-73.90439,"(40.832516, -73.90439)",,,540 EAST 169 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518810,Station Wagon/Sport Utility Vehicle,Minicycle,,, +11/07/2021,1:14,QUEENS,11355,40.754658,-73.833115,"(40.754658, -73.833115)",SANFORD AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474698,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,13:50,STATEN ISLAND,10306,40.56527,-74.134605,"(40.56527, -74.134605)",CLARKE AVENUE,MONTREAL AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4474948,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/07/2021,11:00,BROOKLYN,11207,40.664047,-73.888115,"(40.664047, -73.888115)",NEW LOTS AVENUE,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,,4475313,Bike,Sedan,Sedan,, +11/07/2021,17:20,,,40.657997,-73.93591,"(40.657997, -73.93591)",WINTHROP STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475428,Sedan,Sedan,,, +11/07/2021,20:54,,,40.85664,-73.86663,"(40.85664, -73.86663)",CRUGER AVENUE,PELHAM PARKWAY SOUTH,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475519,Station Wagon/Sport Utility Vehicle,Bike,,, +11/07/2021,12:50,BRONX,10467,40.86416,-73.86638,"(40.86416, -73.86638)",,,2548 CRUGER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474927,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,11:11,QUEENS,11428,,,,222 STREET,JAMAICA AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4474803,Sedan,Sedan,,, +11/05/2021,19:45,,,40.79149,-73.93577,"(40.79149, -73.93577)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475798,Sedan,,,, +11/07/2021,0:22,,,40.682762,-73.93501,"(40.682762, -73.93501)",MACON STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4474903,Sedan,Sedan,Sedan,, +11/07/2021,12:55,MANHATTAN,10036,40.759293,-73.98455,"(40.759293, -73.98455)",,,701 7 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4474809,Box Truck,,,, +11/04/2021,18:20,BRONX,10454,40.810345,-73.92495,"(40.810345, -73.92495)",,,257 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475696,PK,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,1:55,,,40.556866,-74.12516,"(40.556866, -74.12516)",PENDALE STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474943,Sedan,,,, +11/07/2021,8:18,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,CENTRE STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4474753,Sedan,Taxi,,, +11/07/2021,12:41,BRONX,10462,40.854263,-73.869385,"(40.854263, -73.869385)",BRONX PARK EAST,LYDIG AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475515,Sedan,Bike,,, +11/07/2021,3:28,,,40.868473,-73.82158,"(40.868473, -73.82158)",HUTCHINSON RIVER PARKWAY EAST,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475097,Pick-up Truck,,,, +11/07/2021,21:40,,,40.862495,-73.9342,"(40.862495, -73.9342)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475164,Sedan,,,, +11/05/2021,10:55,,,40.764347,-73.92347,"(40.764347, -73.92347)",31 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475535,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,8:50,BROOKLYN,11207,40.66655,-73.885956,"(40.66655, -73.885956)",,,652 BARBEY STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475336,Bus,Sedan,,, +11/05/2021,8:40,QUEENS,11691,40.607574,-73.75116,"(40.607574, -73.75116)",,,14-00 BRUNSWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475525,Sedan,,,, +11/07/2021,12:02,BROOKLYN,11234,40.620125,-73.94081,"(40.620125, -73.94081)",EAST 35 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4474794,Pick-up Truck,,,, +11/07/2021,17:07,BRONX,10472,40.826385,-73.859,"(40.826385, -73.859)",,,1915 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474932,Sedan,Sedan,,, +11/07/2021,16:50,BRONX,10455,40.815853,-73.907265,"(40.815853, -73.907265)",,,736 EAST 152 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4475045,,,,, +09/22/2021,13:00,BRONX,10455,40.81361,-73.913345,"(40.81361, -73.913345)",SAINT ANNS AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4475784,Station Wagon/Sport Utility Vehicle,Van,,, +11/07/2021,11:15,BROOKLYN,11219,40.636703,-73.99038,"(40.636703, -73.99038)",46 STREET,13 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475301,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,12:35,QUEENS,11104,40.74202,-73.92656,"(40.74202, -73.92656)",47 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498369,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,19:35,MANHATTAN,10003,40.73166,-73.98545,"(40.73166, -73.98545)",2 AVENUE,EAST 13 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475800,Motorcycle,Bike,,, +11/07/2021,0:45,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,Unspecified,,,4474949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/08/2021,5:57,,,40.80333,-73.94873,"(40.80333, -73.94873)",WEST 118 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475266,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,17:40,,,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475018,Pick-up Truck,Box Truck,,, +10/31/2021,9:08,BRONX,10457,40.847515,-73.9001,"(40.847515, -73.9001)",,,420 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475701,Sedan,Sedan,,, +11/07/2021,6:40,BRONX,10467,40.871483,-73.86936,"(40.871483, -73.86936)",BARKER AVENUE,BURKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4474860,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/05/2021,10:20,BROOKLYN,11223,40.608902,-73.966194,"(40.608902, -73.966194)",,,1708 EAST 7 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475594,Sedan,E-Scooter,,, +11/07/2021,11:15,BRONX,10473,40.82028,-73.876274,"(40.82028, -73.876274)",,,820 BOYNTON AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4475359,Sedan,,,, +11/07/2021,8:30,QUEENS,11105,40.774162,-73.91623,"(40.774162, -73.91623)",,,23-73 28 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475474,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,13:40,QUEENS,11385,40.707092,-73.89724,"(40.707092, -73.89724)",FRESH POND ROAD,MADISON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4475583,Sedan,,,, +11/02/2021,18:06,BROOKLYN,11212,40.66451,-73.91723,"(40.66451, -73.91723)",BLAKE AVENUE,LEGION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/07/2021,1:00,BROOKLYN,11226,,,,,,2141 CORTELYOU ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,18:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4475646,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +11/07/2021,8:38,,,40.63068,-74.01098,"(40.63068, -74.01098)",66 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4475145,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +11/07/2021,13:15,QUEENS,11102,,,,,,21-12 27 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475029,Sedan,Sedan,Sedan,, +11/07/2021,6:40,BRONX,10457,40.84171,-73.898674,"(40.84171, -73.898674)",,,4006 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/07/2021,0:05,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4475753,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,1:50,,,40.710716,-73.981544,"(40.710716, -73.981544)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474962,Sedan,,,, +11/07/2021,6:40,,,,,,VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475607,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,13:00,QUEENS,11102,40.76615,-73.919785,"(40.76615, -73.919785)",33 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475816,Sedan,Sedan,,, +11/07/2021,19:06,MANHATTAN,10036,40.76553,-73.99768,"(40.76553, -73.99768)",WEST 48 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475220,Sedan,E-Scooter,,, +11/07/2021,7:57,MANHATTAN,10075,40.772655,-73.95556,"(40.772655, -73.95556)",2 AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4475037,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +11/07/2021,1:30,BRONX,10465,40.829685,-73.8253,"(40.829685, -73.8253)",LAFAYETTE AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475222,Taxi,,,, +11/07/2021,15:10,BROOKLYN,11206,40.70823,-73.94165,"(40.70823, -73.94165)",MESEROLE STREET,HUMBOLDT STREET,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4475132,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle +11/04/2021,1:30,MANHATTAN,10014,40.72922,-74.00524,"(40.72922, -74.00524)",,,225 VARICK STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4475659,Sedan,Tractor Truck Diesel,,, +11/07/2021,0:00,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",225 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474658,Sedan,Sedan,,, +11/01/2021,13:50,QUEENS,11374,40.711727,-73.859085,"(40.711727, -73.859085)",,,90-30 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475715,Tractor Truck Gasoline,,,, +11/07/2021,14:40,QUEENS,11420,40.68183,-73.81671,"(40.68183, -73.81671)",,,124-19 111 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475007,Sedan,,,, +11/07/2021,21:00,QUEENS,11412,40.697296,-73.766815,"(40.697296, -73.766815)",WOOD STREET,MURDOCK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475567,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,6:46,,,40.68532,-73.98071,"(40.68532, -73.98071)",,,ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4474194,Sedan,Box Truck,,, +10/21/2021,8:52,BROOKLYN,11215,,,,14 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475640,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,1:25,BROOKLYN,11207,40.680664,-73.902626,"(40.680664, -73.902626)",BUSHWICK AVENUE,CONWAY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4474675,Sedan,Sedan,,, +11/01/2021,8:45,QUEENS,11433,40.694504,-73.80078,"(40.694504, -73.80078)",,,150-14 107 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475671,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,2:07,MANHATTAN,10035,40.804066,-73.93267,"(40.804066, -73.93267)",2 AVENUE,EAST 127 STREET,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4474954,Sedan,,,, +11/07/2021,20:15,,,40.734657,-74.00475,"(40.734657, -74.00475)",CHARLES STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475134,Sedan,Bike,,, +10/26/2021,16:24,MANHATTAN,10024,40.783974,-73.97031,"(40.783974, -73.97031)",WEST 84 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475728,Ambulance,Pick-up Truck,,, +11/07/2021,10:00,QUEENS,11103,,,,,,3166 48 street,0,0,0,0,0,0,0,0,Unspecified,,,,,4475030,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,9:45,BROOKLYN,11237,40.698605,-73.90943,"(40.698605, -73.90943)",,,454 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475558,Sedan,Sedan,,, +11/07/2021,10:25,MANHATTAN,10065,40.762417,-73.95699,"(40.762417, -73.95699)",EAST 65 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475605,Sedan,,,, +11/07/2021,6:00,BROOKLYN,11220,40.63068,-74.01098,"(40.63068, -74.01098)",66 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4475076,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +10/12/2021,19:00,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",CANAL STREET,VARICK STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475853,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,4:37,BRONX,10451,40.82299,-73.91712,"(40.82299, -73.91712)",,,300 EAST 158 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475700,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/07/2021,2:55,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",WHITE PLAINS ROAD,EAST 241 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474847,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,14:55,QUEENS,11365,40.744606,-73.79256,"(40.744606, -73.79256)",50 AVENUE,UTOPIA PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474909,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,14:30,BROOKLYN,11207,40.67657,-73.89507,"(40.67657, -73.89507)",,,143 VERMONT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475341,Sedan,,,, +10/27/2021,17:27,MANHATTAN,10031,40.823887,-73.95232,"(40.823887, -73.95232)",WEST 141 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4475826,Station Wagon/Sport Utility Vehicle,Bike,,, +11/07/2021,17:30,BROOKLYN,11211,40.718803,-73.95486,"(40.718803, -73.95486)",,,196 NORTH 10 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474998,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +11/07/2021,20:45,QUEENS,11365,40.729927,-73.810936,"(40.729927, -73.810936)",,,71-01 PARSONS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475530,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,16:30,MANHATTAN,10023,40.774155,-73.984886,"(40.774155, -73.984886)",WEST 65 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4475733,Station Wagon/Sport Utility Vehicle,Utility ca,,, +11/07/2021,4:00,BRONX,10459,40.82725,-73.88688,"(40.82725, -73.88688)",,,1286 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4474798,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/07/2021,17:15,,,40.72545,-73.892654,"(40.72545, -73.892654)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475247,Sedan,Sedan,,, +11/07/2021,4:40,,,40.74803,-73.83315,"(40.74803, -73.83315)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475370,Sedan,Box Truck,,, +11/07/2021,1:00,BROOKLYN,11225,40.662582,-73.953766,"(40.662582, -73.953766)",,,416 ROGERS AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,Unspecified,,,4474876,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/07/2021,20:00,BRONX,10455,40.812634,-73.90732,"(40.812634, -73.90732)",,,538 WALES AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475042,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,20:00,BRONX,10473,40.81456,-73.858505,"(40.81456, -73.858505)",,,448 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475631,Sedan,,,, +11/05/2021,14:45,BROOKLYN,11203,40.63834,-73.92895,"(40.63834, -73.92895)",,,1405 UTICA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475681,Sedan,Van,,, +11/06/2021,20:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475537,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,12:20,QUEENS,11420,40.68654,-73.80805,"(40.68654, -73.80805)",,,109-40 VANWYCK EXPRESSWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,15:30,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475053,Sedan,Sedan,,, +11/06/2021,9:12,BROOKLYN,11204,40.620514,-73.99646,"(40.620514, -73.99646)",,,6709 16 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475794,Sedan,,,, +10/26/2021,7:40,BROOKLYN,11234,40.62451,-73.92747,"(40.62451, -73.92747)",,,1945 UTICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4475619,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/07/2021,6:30,BROOKLYN,11207,40.66086,-73.88697,"(40.66086, -73.88697)",,,808 MILLER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475335,Sedan,,,, +11/07/2021,3:15,BROOKLYN,11210,40.62948,-73.94447,"(40.62948, -73.94447)",AVENUE I,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,Unspecified,4474682,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +11/03/2021,6:50,,,40.628662,-74.13675,"(40.628662, -74.13675)",DECKER AVENUE,CATHERINE STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,8:35,STATEN ISLAND,10305,40.603626,-74.06931,"(40.603626, -74.06931)",NARROWS ROAD SOUTH,FINGERBOARD ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474944,Sedan,Tractor Truck Diesel,,, +11/07/2021,22:00,QUEENS,11435,40.705387,-73.8151,"(40.705387, -73.8151)",,,87-41 139 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475383,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,9:15,QUEENS,11101,40.74889,-73.94215,"(40.74889, -73.94215)",CRESCENT STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475263,Motorcycle,,,, +11/07/2021,14:00,QUEENS,11364,40.75074,-73.75538,"(40.75074, -73.75538)",,,221-59 59 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475096,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,16:30,,,40.577213,-73.96329,"(40.577213, -73.96329)",BRIGHTON BEACH AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475693,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,17:00,MANHATTAN,10034,,,,10 AVENUE,NAGLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475163,Sedan,,,, +11/02/2021,7:50,BRONX,10467,40.87188,-73.86714,"(40.87188, -73.86714)",,,3214 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4475620,Sedan,Moped,,, +11/07/2021,16:15,,,40.771782,-73.96333,"(40.771782, -73.96333)",EAST 73 STREET,,,1,0,0,0,1,0,0,0,Following Too Closely,Following Too Closely,,,,4475014,Sedan,Bike,,, +10/28/2021,6:50,,,40.768036,-73.905266,"(40.768036, -73.905266)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475531,Sedan,Pick-up Truck,,, +11/05/2021,12:58,MANHATTAN,10012,40.722317,-73.999405,"(40.722317, -73.999405)",,,504 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475584,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,23:40,BROOKLYN,11226,40.64726,-73.94919,"(40.64726, -73.94919)",,,1597 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4475050,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/07/2021,2:35,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4475426,Sedan,Sedan,,, +11/07/2021,4:41,QUEENS,11373,40.737156,-73.87941,"(40.737156, -73.87941)",QUEENS BOULEVARD,VANLOON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4474744,Taxi,Taxi,,, +11/07/2021,0:15,QUEENS,11418,40.696865,-73.81535,"(40.696865, -73.81535)",134 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4475198,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,16:38,QUEENS,11385,40.70439,-73.87526,"(40.70439, -73.87526)",78 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,12:20,MANHATTAN,10036,40.759403,-73.98511,"(40.759403, -73.98511)",BROADWAY,WEST 47 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4475225,Sedan,,,, +11/07/2021,9:50,QUEENS,11420,40.672565,-73.8125,"(40.672565, -73.8125)",,,130-17 126 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475003,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,5:31,,,40.834187,-73.909584,"(40.834187, -73.909584)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4475184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/04/2021,8:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475645,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,18:02,MANHATTAN,10037,40.81344,-73.94135,"(40.81344, -73.94135)",WEST 134 STREET,LENOX AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4475086,Sedan,Taxi,,, +10/08/2021,16:45,,,40.732162,-73.99431,"(40.732162, -73.99431)",UNIVERSITY PLACE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4475660,Taxi,,,, +04/14/2022,14:10,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,2,0,0,0,0,0,2,0,Illnes,Unspecified,,,,4519009,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,3:17,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,3,0,0,0,0,0,3,0,Obstruction/Debris,Unspecified,,,,4474659,Sedan,Sedan,,, +11/06/2021,14:53,,,40.7773,-73.99034,"(40.7773, -73.99034)",HENRY HUDSON PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4475717,Sedan,Convertible,,, +11/06/2021,4:30,,,40.67151,-73.76455,"(40.67151, -73.76455)",140 AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Vehicle Vandalism,Unspecified,,,,4475566,Sedan,Sedan,,, +10/27/2021,11:30,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",SOUTHERN BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,,,,4475827,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,11:00,QUEENS,11354,40.77041,-73.82468,"(40.77041, -73.82468)",PARSONS BOULEVARD,BAYSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475373,Sedan,,,, +11/07/2021,9:45,BROOKLYN,11236,40.651157,-73.918144,"(40.651157, -73.918144)",REMSEN AVENUE,AVENUE A,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4474875,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,12:12,BROOKLYN,11211,40.71837,-73.955025,"(40.71837, -73.955025)",,,496 DRIGGS AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4474878,Taxi,Bike,,, +11/07/2021,12:30,BRONX,10456,40.82391,-73.90809,"(40.82391, -73.90809)",,,585 EAST 163 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,1:17,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475712,Taxi,,,, +11/07/2021,1:22,MANHATTAN,10036,40.756767,-73.98272,"(40.756767, -73.98272)",WEST 45 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474931,Taxi,,,, +11/07/2021,5:44,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475342,Sedan,Sedan,,, +10/31/2021,20:55,BROOKLYN,11228,40.626637,-74.01025,"(40.626637, -74.01025)",,,1033 70 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475750,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,17:35,,,40.898537,-73.87957,"(40.898537, -73.87957)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4474972,Sedan,Motorcycle,,, +11/07/2021,3:20,,,40.76912,-73.95505,"(40.76912, -73.95505)",EAST 74 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4475481,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,10:20,BROOKLYN,11226,40.640823,-73.96531,"(40.640823, -73.96531)",CORTELYOU ROAD,RUGBY ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Brakes Defective,,,,4475824,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,6:10,,,40.743122,-73.897545,"(40.743122, -73.897545)",WOODSIDE AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474775,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,0:00,,,40.71709,-73.82631,"(40.71709, -73.82631)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475291,Sedan,Sedan,,, +11/07/2021,0:00,MANHATTAN,10028,40.775246,-73.94763,"(40.775246, -73.94763)",YORK AVENUE,EAST 85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475449,Sedan,Bike,,, +11/07/2021,20:48,,,40.719067,-73.99336,"(40.719067, -73.99336)",CHRYSTIE STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475528,Sedan,Box Truck,,, +11/07/2021,7:00,QUEENS,11358,40.762764,-73.79706,"(40.762764, -73.79706)",CROCHERON AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,10:21,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474930,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,21:00,BROOKLYN,11249,40.717472,-73.95862,"(40.717472, -73.95862)",,,147 NORTH 6 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4475795,Sedan,,,, +11/07/2021,13:30,QUEENS,11368,40.73929,-73.85288,"(40.73929, -73.85288)",108 STREET,WALDRON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475808,Sedan,,,, +08/24/2021,11:30,,,40.87793,-73.8703,"(40.87793, -73.8703)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4453219,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +08/31/2021,18:05,,,40.590393,-74.1661,"(40.590393, -74.1661)",,,2385 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453270,Sedan,Sedan,,, +08/30/2021,9:45,QUEENS,11694,40.583534,-73.82635,"(40.583534, -73.82635)",ROCKAWAY FREEWAY,BEACH 105 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453290,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,17:13,,,40.696785,-73.95659,"(40.696785, -73.95659)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453241,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +11/07/2021,7:24,QUEENS,11375,40.71717,-73.834946,"(40.71717, -73.834946)",76 ROAD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474953,Sedan,,,, +08/31/2021,12:58,BROOKLYN,11234,40.624332,-73.913216,"(40.624332, -73.913216)",AVENUE M,EAST 70 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452569,Van,Pick Up Tr,,, +08/31/2021,8:30,BROOKLYN,11220,40.63477,-74.00835,"(40.63477, -74.00835)",,,857 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452674,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,15:35,BRONX,10455,40.809456,-73.909454,"(40.809456, -73.909454)",EAST 144 STREET,CONCORD AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4452608,Tow Truck / Wrecker,Bus,,, +08/31/2021,3:40,BRONX,10474,40.806828,-73.88448,"(40.806828, -73.88448)",FAILE STREET,VIELE AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4453060,Van,Chassis Cab,,, +08/31/2021,15:41,,,40.676132,-73.81924,"(40.676132, -73.81924)",LEFFERTS BOULEVARD,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453022,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,0:11,,,40.760456,-73.98374,"(40.760456, -73.98374)",WEST 49 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452205,Pick-up Truck,Sedan,,, +08/31/2021,16:00,BROOKLYN,11237,40.704964,-73.928116,"(40.704964, -73.928116)",FLUSHING AVENUE,PORTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452591,Flat Bed,Sedan,,, +08/31/2021,18:40,BROOKLYN,11208,40.67585,-73.86878,"(40.67585, -73.86878)",,,2798 PITKIN AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452803,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/31/2021,5:40,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452630,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,22:00,BROOKLYN,11219,40.631454,-73.992256,"(40.631454, -73.992256)",14 AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452986,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,22:30,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",10 AVENUE,WEST 42 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453118,Sedan,Bike,,, +08/31/2021,1:50,QUEENS,11368,40.750946,-73.87051,"(40.750946, -73.87051)",,,37-22 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452272,Sedan,Bike,,, +08/31/2021,13:10,BROOKLYN,11204,40.61662,-73.99972,"(40.61662, -73.99972)",74 STREET,NEW UTRECHT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452638,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/17/2021,14:20,MANHATTAN,10019,40.761147,-73.97952,"(40.761147, -73.97952)",WEST 52 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4453056,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,20:41,MANHATTAN,10040,40.85558,-73.93428,"(40.85558, -73.93428)",WEST 189 STREET,BENNETT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453104,Station Wagon/Sport Utility Vehicle,Bike,,, +08/31/2021,12:45,,,40.626907,-73.89165,"(40.626907, -73.89165)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4452928,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,9:24,BROOKLYN,11233,40.677364,-73.90798,"(40.677364, -73.90798)",EASTERN PARKWAY,HERKIMER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452388,Sedan,,,, +08/31/2021,18:36,MANHATTAN,10019,40.769115,-73.98856,"(40.769115, -73.98856)",WEST 57 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452686,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,16:55,,,40.82406,-73.92815,"(40.82406, -73.92815)",RIVER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452711,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,16:54,,,40.752197,-73.78944,"(40.752197, -73.78944)",47 AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,15:43,BROOKLYN,11201,40.692497,-73.98896,"(40.692497, -73.98896)",,,345 ADAMS STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4452834,Sedan,Sedan,,, +08/31/2021,13:05,BROOKLYN,11234,40.60763,-73.930275,"(40.60763, -73.930275)",AVENUE T,EAST 35 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452513,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,11:18,,,40.82458,-73.870544,"(40.82458, -73.870544)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452468,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +08/30/2021,17:15,QUEENS,11368,40.749718,-73.86419,"(40.749718, -73.86419)",ROOSEVELT AVENUE,102 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4453152,Station Wagon/Sport Utility Vehicle,Bike,,, +08/27/2021,12:25,,,40.754093,-73.99209,"(40.754093, -73.99209)",WEST 37 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453192,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,4:50,BROOKLYN,11203,40.653126,-73.94137,"(40.653126, -73.94137)",,,480 LINDEN BOULEVARD,2,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452501,E-Bike,Bike,,, +08/31/2021,12:00,BROOKLYN,11224,40.575302,-73.98453,"(40.575302, -73.98453)",WEST 17 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452475,Sedan,Flat Bed,,, +08/08/2021,11:13,MANHATTAN,10019,,,,,,436 W 52nd street,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453069,E-Scooter,,,, +08/31/2021,14:40,QUEENS,11436,40.681114,-73.79815,"(40.681114, -73.79815)",144 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4452527,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,9:30,,,40.756557,-73.97444,"(40.756557, -73.97444)",EAST 49 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:30,BRONX,10466,40.88689,-73.8576,"(40.88689, -73.8576)",EAST 225 STREET,BARNES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452833,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,21:18,BROOKLYN,11210,40.633995,-73.94778,"(40.633995, -73.94778)",NOSTRAND AVENUE,GLENWOOD ROAD,,2,0,0,0,0,0,2,0,Other Vehicular,,,,,4452622,Sedan,,,, +08/31/2021,19:09,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452645,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/31/2021,23:30,QUEENS,11355,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452894,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,22:10,,,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452717,Taxi,Sedan,,, +08/31/2021,16:30,QUEENS,11427,40.730164,-73.74791,"(40.730164, -73.74791)",,,218-57 SAWYER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452849,Sedan,,,, +08/31/2021,12:50,BRONX,10472,40.8307,-73.8642,"(40.8307, -73.8642)",,,1213 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452456,Sedan,,,, +08/31/2021,14:59,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",2 AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4452518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,15:30,,,40.657246,-73.91243,"(40.657246, -73.91243)",HERZL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452596,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,20:00,MANHATTAN,10017,40.7528,-73.979294,"(40.7528, -73.979294)",EAST 42 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453148,Sedan,,,, +08/31/2021,17:20,BROOKLYN,11233,40.681087,-73.91139,"(40.681087, -73.91139)",,,59 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452708,Sedan,,,, +07/16/2021,12:40,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",EAST 144 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453006,Sedan,Sedan,Sedan,, +08/20/2021,22:32,MANHATTAN,10018,40.754677,-73.98677,"(40.754677, -73.98677)",,,10 TIMES SQUARE,3,0,1,0,2,0,0,0,Failure to Yield Right-of-Way,,,,,4453156,E-Bike,,,, +01/29/2022,18:55,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498476,Taxi,Sedan,,, +08/31/2021,16:00,QUEENS,11422,40.66652,-73.73645,"(40.66652, -73.73645)",FRANCIS LEWIS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452578,Station Wagon/Sport Utility Vehicle,,,, +08/25/2021,19:50,BRONX,10460,40.832176,-73.88873,"(40.832176, -73.88873)",,,1463 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453078,Sedan,,,, +08/31/2021,9:30,QUEENS,11412,40.699757,-73.75855,"(40.699757, -73.75855)",113 ROAD,196 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452485,Garbage or Refuse,,,, +08/30/2021,6:00,,,40.793186,-73.94057,"(40.793186, -73.94057)",2 AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Traffic Control Disregarded,,,,4452984,Sedan,Bike,,, +08/31/2021,14:30,QUEENS,11356,40.78485,-73.846794,"(40.78485, -73.846794)",14 ROAD,121 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452747,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,19:30,QUEENS,11368,40.744335,-73.858864,"(40.744335, -73.858864)",,,48-24 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452821,Sedan,,,, +08/31/2021,13:35,QUEENS,11693,40.58634,-73.81575,"(40.58634, -73.81575)",,,92-16 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453276,ENGINE SP0,Sedan,,, +08/31/2021,15:38,BROOKLYN,11236,40.64617,-73.896805,"(40.64617, -73.896805)",,,10201 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452964,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,12:08,MANHATTAN,10012,40.725773,-74.00091,"(40.725773, -74.00091)",PRINCE STREET,WEST BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453064,Van,Bike,,, +08/31/2021,18:30,QUEENS,11421,40.685963,-73.85654,"(40.685963, -73.85654)",ATLANTIC AVENUE,85 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4452616,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,4:00,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453031,Sedan,,,, +08/31/2021,5:31,BROOKLYN,11215,40.673267,-73.98952,"(40.673267, -73.98952)",3 AVENUE,6 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4452639,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/31/2021,1:13,QUEENS,11377,40.747623,-73.89658,"(40.747623, -73.89658)",69 STREET,37 ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452585,Sedan,Motorcycle,,, +08/31/2021,14:10,MANHATTAN,10013,40.722717,-74.004456,"(40.722717, -74.004456)",THOMPSON STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,16:00,QUEENS,11416,40.68527,-73.84248,"(40.68527, -73.84248)",99 STREET,101 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4453136,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:15,,,40.82034,-73.940025,"(40.82034, -73.940025)",WEST 143 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452549,Station Wagon/Sport Utility Vehicle,Bike,,, +08/29/2021,18:40,QUEENS,11433,40.696686,-73.77328,"(40.696686, -73.77328)",178 PLACE,112 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452994,van,Station Wagon/Sport Utility Vehicle,,, +08/08/2021,18:00,,,40.57554,-73.979645,"(40.57554, -73.979645)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453163,Ambulance,Sedan,,, +08/31/2021,9:15,,,40.843143,-73.85575,"(40.843143, -73.85575)",BRONXDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452664,Sedan,,,, +08/31/2021,17:18,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452592,Station Wagon/Sport Utility Vehicle,Van,,, +08/31/2021,14:05,BRONX,10467,40.865765,-73.86735,"(40.865765, -73.86735)",,,2720 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4452665,Sedan,Sedan,,, +08/31/2021,16:00,,,40.602028,-73.99857,"(40.602028, -73.99857)",BAY 26 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452631,Sedan,,,, +08/31/2021,19:15,,,40.763893,-73.915,"(40.763893, -73.915)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4453039,Sedan,,,, +08/31/2021,0:15,,,40.78515,-73.94063,"(40.78515, -73.94063)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452216,Sedan,Sedan,Sedan,, +08/31/2021,12:00,BRONX,10467,40.875507,-73.881485,"(40.875507, -73.881485)",,,165 EAST MOSHOLU PARKWAY NORTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453092,Sedan,,,, +07/06/2021,13:30,,,40.75529,-73.99493,"(40.75529, -73.99493)",9 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453231,Sedan,E-Scooter,,, +08/31/2021,7:10,QUEENS,11354,40.761623,-73.82208,"(40.761623, -73.82208)",PARSONS BOULEVARD,ROOSEVELT AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4452574,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,9:00,,,40.701027,-73.94813,"(40.701027, -73.94813)",GERRY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452941,Sedan,Sedan,,, +08/30/2021,0:38,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",ROCKAWAY PARKWAY,RUTLAND ROAD,,1,0,1,0,0,0,0,0,,,,,,4453212,,,,, +08/26/2021,18:30,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453162,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,20:37,BROOKLYN,11236,40.64891,-73.89256,"(40.64891, -73.89256)",EAST 108 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4453013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,20:30,,,40.5861,-73.97128,"(40.5861, -73.97128)",WEST 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475135,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,13:20,QUEENS,11691,40.593376,-73.778984,"(40.593376, -73.778984)",,,48-06 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453057,Ambulance,Ambulance,,, +08/31/2021,15:15,,,40.819637,-73.93432,"(40.819637, -73.93432)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4452547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,5:53,BROOKLYN,11212,40.661015,-73.90853,"(40.661015, -73.90853)",ROCKAWAY AVENUE,RIVERDALE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452632,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,17:50,MANHATTAN,10011,40.73965,-74.00014,"(40.73965, -74.00014)",,,227 WEST 15 STREET,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4453108,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/31/2021,15:15,QUEENS,11422,40.665318,-73.73431,"(40.665318, -73.73431)",SOUTH CONDUIT AVENUE,245 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452587,,,,, +08/31/2021,14:30,BROOKLYN,11203,40.649597,-73.93836,"(40.649597, -73.93836)",,,4110 SNYDER AVENUE,1,0,0,0,1,0,0,0,Unspecified,,,,,4452914,Bike,,,, +08/29/2021,23:00,QUEENS,11412,40.702515,-73.75083,"(40.702515, -73.75083)",205 STREET,113 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452993,Taxi,,,, +08/31/2021,4:20,BRONX,10454,40.81351,-73.91967,"(40.81351, -73.91967)",WILLIS AVENUE,EAST 145 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452609,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/30/2021,13:25,,,40.604412,-73.97421,"(40.604412, -73.97421)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4453194,Sedan,Bus,,, +08/26/2021,14:56,BRONX,10451,40.824257,-73.909325,"(40.824257, -73.909325)",,,508 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453075,Ambulance,,,, +08/31/2021,13:00,MANHATTAN,10035,40.797775,-73.93361,"(40.797775, -73.93361)",,,345 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452484,Sedan,,,, +08/31/2021,9:03,BROOKLYN,11212,40.656895,-73.91951,"(40.656895, -73.91951)",,,405 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452502,Sedan,,,, +08/31/2021,14:44,,,40.836796,-73.91949,"(40.836796, -73.91949)",GERARD AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4452725,Sedan,Sedan,,, +08/24/2021,14:56,BROOKLYN,11213,40.676743,-73.93316,"(40.676743, -73.93316)",SCHENECTADY AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453172,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,13:52,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4452570,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/31/2021,22:30,,,40.823505,-73.94144,"(40.823505, -73.94144)",WEST 146 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452875,Station Wagon/Sport Utility Vehicle,Bike,,, +08/31/2021,7:57,MANHATTAN,10011,40.74462,-74.0027,"(40.74462, -74.0027)",9 AVENUE,WEST 20 STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4453117,Pass,Sedan,,, +08/31/2021,9:25,QUEENS,11413,40.6785,-73.743256,"(40.6785, -73.743256)",226 STREET,133 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4452458,Sedan,,,, +08/31/2021,12:20,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452672,Sedan,Sedan,,, +08/31/2021,20:50,QUEENS,11423,40.713436,-73.7607,"(40.713436, -73.7607)",JAMAICA AVENUE,93 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452766,Sedan,Sedan,,, +08/31/2021,9:20,STATEN ISLAND,10308,40.553093,-74.142334,"(40.553093, -74.142334)",KEEGANS LANE,AMBOY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452489,,,,, +08/31/2021,13:00,BROOKLYN,11213,40.664482,-73.9339,"(40.664482, -73.9339)",,,921 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452595,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,10:45,,,40.62851,-74.14576,"(40.62851, -74.14576)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4453007,Sedan,,,, +08/06/2021,12:20,BRONX,10474,40.812737,-73.88396,"(40.812737, -73.88396)",,,622 HUNTS POINT AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4453063,E-Bike,,,, +08/31/2021,15:18,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452906,Sedan,,,, +08/31/2021,9:53,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4452563,Bus,Sedan,,, +08/31/2021,10:40,BROOKLYN,11235,40.585556,-73.94881,"(40.585556, -73.94881)",,,3100 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452603,Sedan,Pick-up Truck,,, +08/30/2021,12:00,MANHATTAN,10035,40.80574,-73.942764,"(40.80574, -73.942764)",EAST 124 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453317,Sedan,,,, +08/30/2021,17:00,,,40.707596,-73.94831,"(40.707596, -73.94831)",MESEROLE STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4453287,Bike,,,, +08/27/2021,14:59,MANHATTAN,10018,40.75216,-73.987495,"(40.75216, -73.987495)",BROADWAY,WEST 37 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453149,Pick-up Truck,,,, +08/31/2021,17:24,MANHATTAN,10038,40.70814,-74.005455,"(40.70814, -74.005455)",,,15 CLIFF STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452999,Taxi,Sedan,,, +08/27/2021,21:48,,,40.681446,-73.94644,"(40.681446, -73.94644)",MACON STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453242,Motorcycle,Sedan,,, +08/31/2021,14:10,MANHATTAN,10040,40.865078,-73.928116,"(40.865078, -73.928116)",BROADWAY,THAYER STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4452716,Taxi,E-Scooter,,, +08/31/2021,5:18,BRONX,10473,40.81916,-73.87982,"(40.81916, -73.87982)",LAFAYETTE AVENUE,COLGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452377,Sedan,,,, +08/31/2021,18:10,BROOKLYN,11238,40.6848,-73.95641,"(40.6848, -73.95641)",FRANKLIN AVENUE,MONROE STREET,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452843,Van,E-Bike,,, +08/31/2021,0:45,,,40.72178,-73.760025,"(40.72178, -73.760025)",FRANCIS LEWIS BOULEVARD,FOOTHILL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452530,Sedan,Sedan,,, +11/05/2021,15:32,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475755,Sedan,Sedan,,, +08/31/2021,12:30,,,40.728603,-74.005325,"(40.728603, -74.005325)",WEST HOUSTON STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4452801,Box Truck,Box Truck,,, +08/31/2021,14:44,BROOKLYN,11249,40.720066,-73.95689,"(40.720066, -73.95689)",,,132 NORTH 10 STREET,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,,,4452678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Moped,, +08/31/2021,18:25,,,40.862064,-73.89484,"(40.862064, -73.89484)",EAST FORDHAM ROAD,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4452621,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:35,,,40.59963,-74.18996,"(40.59963, -74.18996)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4453316,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,21:00,BRONX,10460,40.83819,-73.887474,"(40.83819, -73.887474)",,,1816 CROTONA PARK EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4453068,Sedan,,,, +08/31/2021,16:56,,,40.840645,-73.84205,"(40.840645, -73.84205)",EAST TREMONT AVENUE,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4452644,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,6:50,BRONX,10462,40.854393,-73.86201,"(40.854393, -73.86201)",MULINER AVENUE,LYDIG AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453002,Bike,,,, +08/31/2021,10:20,,,40.75895,-73.83192,"(40.75895, -73.83192)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4452577,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:13,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452881,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,21:00,BRONX,10451,40.821262,-73.9135,"(40.821262, -73.9135)",,,776 ELTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452969,Sedan,,,, +08/31/2021,9:30,BROOKLYN,11223,40.59572,-73.96103,"(40.59572, -73.96103)",,,2500 CONEY ISLAND AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452602,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/31/2021,17:26,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4452808,Sedan,,,, +08/31/2021,0:00,BROOKLYN,11220,40.63721,-74.02221,"(40.63721, -74.02221)",SHORE ROAD DRIVE,4 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452420,Sedan,Sedan,,, +08/31/2021,7:30,BROOKLYN,11217,40.68549,-73.97457,"(40.68549, -73.97457)",,,77 HANSON PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452512,Sedan,Garbage or Refuse,,, +08/31/2021,17:30,MANHATTAN,10027,40.807037,-73.949745,"(40.807037, -73.949745)",WEST 122 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452666,Station Wagon/Sport Utility Vehicle,Motorbike,,, +08/31/2021,19:00,QUEENS,11001,40.73388,-73.70509,"(40.73388, -73.70509)",86 AVENUE,262 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452573,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:36,,,40.737553,-73.85089,"(40.737553, -73.85089)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452650,Sedan,Sedan,,, +08/24/2021,20:00,QUEENS,11370,40.771988,-73.89205,"(40.771988, -73.89205)",,,78-03 19 DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453028,Sedan,,,, +08/31/2021,18:22,,,40.824562,-73.948105,"(40.824562, -73.948105)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452615,E-Bike,,,, +08/30/2021,0:00,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4453043,Sedan,Sedan,Sedan,, +08/31/2021,0:50,,,40.650387,-73.95872,"(40.650387, -73.95872)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452224,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,7:45,,,40.86442,-73.90389,"(40.86442, -73.90389)",WEST 188 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453096,Sedan,,,, +08/31/2021,22:56,BROOKLYN,11206,40.70951,-73.95088,"(40.70951, -73.95088)",UNION AVENUE,TEN EYCK STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4452935,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/31/2021,17:38,MANHATTAN,10036,,,,,,520 fifth avenue,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453230,E-Scooter,Sedan,,, +08/31/2021,11:30,,,40.66989,-73.93381,"(40.66989, -73.93381)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4453174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,8:58,BROOKLYN,11207,40.675495,-73.88916,"(40.675495, -73.88916)",LIBERTY AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452786,Station Wagon/Sport Utility Vehicle,Trailer,,, +08/31/2021,9:00,BRONX,10472,40.83609,-73.87524,"(40.83609, -73.87524)",HARROD AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452488,Sedan,Sedan,,, +08/31/2021,11:53,,,40.70519,-73.91478,"(40.70519, -73.91478)",CYPRESS AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452492,Bike,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,15:20,MANHATTAN,10037,40.81467,-73.93622,"(40.81467, -73.93622)",EAST 138 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452697,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,21:08,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453089,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,12:00,MANHATTAN,10022,40.756,-73.96463,"(40.756, -73.96463)",,,971 1 AVENUE,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4452517,Tractor Truck Diesel,Box Truck,,, +08/31/2021,23:48,,,40.65711,-74.00152,"(40.65711, -74.00152)",31 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452735,Sedan,DUMP TRUCK,,, +08/29/2021,12:50,STATEN ISLAND,10301,40.644073,-74.077774,"(40.644073, -74.077774)",WALL STREET,STUYVESANT PLACE,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4453130,Bike,,,, +08/31/2021,7:30,,,,,,FDR DRIVE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452562,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:00,BRONX,10462,40.841892,-73.85839,"(40.841892, -73.85839)",,,2000 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452825,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/29/2021,20:00,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4453168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/31/2021,5:55,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",178 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4452448,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/31/2021,23:30,MANHATTAN,10026,40.799953,-73.95274,"(40.799953, -73.95274)",,,71 WEST 112 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452699,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,19:15,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",NELSON AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452818,Station Wagon/Sport Utility Vehicle,Bus,,, +08/31/2021,22:51,QUEENS,11378,40.72428,-73.898445,"(40.72428, -73.898445)",GRAND AVENUE,HAMILTON PLACE,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4452856,Sedan,Sedan,,, +08/31/2021,11:05,QUEENS,11426,40.752007,-73.7213,"(40.752007, -73.7213)",,,70-02 252 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452459,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:20,MANHATTAN,10022,40.76025,-73.96753,"(40.76025, -73.96753)",EAST 57 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452515,Bus,Box Truck,,, +08/27/2021,17:15,MANHATTAN,10036,40.7591,-73.99214,"(40.7591, -73.99214)",WEST 43 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453150,Taxi,SCOOTER,,, +08/31/2021,18:56,BROOKLYN,11224,40.572353,-73.9905,"(40.572353, -73.9905)",,,3035 WEST 24 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4453159,Sedan,,,, +08/31/2021,15:15,,,40.673786,-73.76381,"(40.673786, -73.76381)",BEDELL STREET,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452546,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,22:20,,,40.602856,-73.98447,"(40.602856, -73.98447)",HIGHLAWN AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4452633,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/23/2021,20:00,MANHATTAN,10036,40.757538,-73.98956,"(40.757538, -73.98956)",,,668 8 AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4453138,Bus,,,, +08/31/2021,13:00,BROOKLYN,11215,40.664963,-73.98982,"(40.664963, -73.98982)",5 AVENUE,16 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4452933,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/30/2021,14:00,,,40.8165,-73.946556,"(40.8165, -73.946556)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Other Vehicular,Other Vehicular,,,4453074,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +08/31/2021,9:00,QUEENS,11436,40.683594,-73.80345,"(40.683594, -73.80345)",LINDEN BOULEVARD,140 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452481,Sedan,,,, +08/31/2021,14:30,QUEENS,11429,40.712116,-73.73118,"(40.712116, -73.73118)",223 STREET,HEMPSTEAD AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4452571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,7:10,QUEENS,11104,40.742188,-73.91891,"(40.742188, -73.91891)",GREENPOINT AVENUE,46 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452401,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,1:00,QUEENS,11385,40.70315,-73.87574,"(40.70315, -73.87574)",,,78-61 73 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452531,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,21:03,BROOKLYN,11236,40.63947,-73.902756,"(40.63947, -73.902756)",EAST 92 STREET,AVENUE J,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4453232,Sedan,,,, +08/31/2021,23:30,QUEENS,11372,40.747692,-73.89381,"(40.747692, -73.89381)",72 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452689,Bike,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,11:00,QUEENS,11435,40.714283,-73.8102,"(40.714283, -73.8102)",HOOVER AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452523,Taxi,,,, +08/24/2021,13:10,QUEENS,11102,40.772697,-73.93269,"(40.772697, -73.93269)",ASTORIA BOULEVARD,8 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453027,Pick-up Truck,,,, +08/31/2021,17:00,,,40.822437,-73.93445,"(40.822437, -73.93445)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452827,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,23:20,BROOKLYN,11212,40.65559,-73.91996,"(40.65559, -73.91996)",,,1026 WILLMOHR STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452588,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,18:19,,,40.5794,-74.16949,"(40.5794, -74.16949)",RICHMOND AVENUE,PLATINUM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452723,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,9:00,BROOKLYN,11207,40.663982,-73.89581,"(40.663982, -73.89581)",,,504 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452807,Sedan,,,, +08/31/2021,11:54,,,40.851807,-73.90683,"(40.851807, -73.90683)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452627,Station Wagon/Sport Utility Vehicle,Moped,,, +08/31/2021,16:28,BROOKLYN,11219,40.64029,-73.994804,"(40.64029, -73.994804)",45 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452992,Bus,Bike,,, +11/06/2021,6:00,,,,,,101 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475562,Pick-up Truck,Sedan,,, +08/31/2021,19:37,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",ELIOT AVENUE,QUEENS BOULEVARD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4452581,Bike,Sedan,,, +08/28/2021,2:40,,,40.60915,-74.14987,"(40.60915, -74.14987)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4453008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,1:40,QUEENS,11357,40.790344,-73.81984,"(40.790344, -73.81984)",11 AVENUE,147 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4452576,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/31/2021,5:00,QUEENS,11421,40.68831,-73.863045,"(40.68831, -73.863045)",,,89-12 78 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:00,QUEENS,11435,40.70548,-73.81286,"(40.70548, -73.81286)",,,87-55 143 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453052,Taxi,,,, +08/30/2021,16:00,BROOKLYN,11205,40.691017,-73.954475,"(40.691017, -73.954475)",SPENCER STREET,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453250,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,14:46,BRONX,10472,40.82611,-73.87802,"(40.82611, -73.87802)",,,1533 WATSON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452508,Sedan,Sedan,,, +08/31/2021,19:05,BROOKLYN,11235,40.583374,-73.95126,"(40.583374, -73.95126)",,,1725 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452604,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,21:00,QUEENS,11365,40.737804,-73.78154,"(40.737804, -73.78154)",,,67-00 192 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453195,Sedan,Sedan,,, +08/28/2021,4:40,,,40.758305,-74.000145,"(40.758305, -74.000145)",11 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453112,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,19:19,MANHATTAN,10016,40.74577,-73.97043,"(40.74577, -73.97043)",FDR DRIVE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,Unspecified,,,4452950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/31/2021,23:17,BRONX,10455,40.816463,-73.919235,"(40.816463, -73.919235)",,,356 EAST 149 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452612,Station Wagon/Sport Utility Vehicle,Bus,,, +08/23/2021,16:45,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",FLUSHING AVENUE,CLASSON AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453286,Sedan,Bike,,, +08/31/2021,15:35,,,40.83654,-73.876045,"(40.83654, -73.876045)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452676,Sedan,Tractor Truck Gasoline,,, +08/31/2021,18:26,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4452970,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +08/31/2021,13:50,BROOKLYN,11222,40.722965,-73.945366,"(40.722965, -73.945366)",DRIGGS AVENUE,DIAMOND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452594,Sedan,,,, +08/31/2021,17:44,MANHATTAN,10025,40.79611,-73.96145,"(40.79611, -73.96145)",WEST 103 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4452564,,,,, +08/28/2021,9:06,BRONX,10451,40.817394,-73.91918,"(40.817394, -73.91918)",,,579 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/15/2021,15:00,,,,,,69 avenue,70 avenue,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453033,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,6:30,QUEENS,11691,40.609596,-73.745766,"(40.609596, -73.745766)",,,860 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453062,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,12:54,BROOKLYN,11217,40.684856,-73.97805,"(40.684856, -73.97805)",FLATBUSH AVENUE,ASHLAND PLACE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4452714,Box Truck,Sedan,,, +08/31/2021,18:45,BROOKLYN,11226,40.64853,-73.95576,"(40.64853, -73.95576)",,,2265 BEDFORD AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452910,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,15:04,BROOKLYN,11210,40.62397,-73.95021,"(40.62397, -73.95021)",AVENUE K,EAST 26 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452619,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,9:50,BROOKLYN,11249,40.708366,-73.96846,"(40.708366, -73.96846)",,,460 KENT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4451554,Sedan,Tow Truck / Wrecker,,, +08/31/2021,17:15,,,40.614166,-74.000404,"(40.614166, -74.000404)",NEW UTRECHT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452654,Station Wagon/Sport Utility Vehicle,,,, +08/01/2021,18:10,STATEN ISLAND,10310,40.640568,-74.118,"(40.640568, -74.118)",BROADWAY,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453129,Sedan,,,, +08/30/2021,7:30,MANHATTAN,10004,40.705025,-74.01307,"(40.705025, -74.01307)",,,5 BEAVER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452997,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,17:40,,,40.57557,-73.981224,"(40.57557, -73.981224)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453210,Sedan,PK,,, +08/31/2021,18:35,,,40.802532,-73.95303,"(40.802532, -73.95303)",WEST 115 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452669,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,21:15,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4453177,Sedan,Sedan,,, +08/30/2021,14:37,BRONX,10472,,,,,,86 hugh grant circle,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453003,Bike,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,1:00,,,40.845005,-73.90741,"(40.845005, -73.90741)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452239,Sedan,Sedan,,, +08/31/2021,8:05,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453099,Sedan,Pick-up Truck,,, +08/31/2021,9:30,,,40.76615,-73.919785,"(40.76615, -73.919785)",30 AVENUE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4453034,Tractor Truck Diesel,Sedan,,, +08/31/2021,14:52,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452580,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,2:45,,,40.654434,-73.86084,"(40.654434, -73.86084)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452799,Sedan,,,, +08/31/2021,14:20,MANHATTAN,10031,40.82831,-73.94315,"(40.82831, -73.94315)",WEST 151 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452496,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:19,,,40.720436,-74.00671,"(40.720436, -74.00671)",VARICK STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452739,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,0:00,MANHATTAN,10280,40.70684,-74.017586,"(40.70684, -74.017586)",BATTERY PLACE,2 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453067,Sedan,,,, +08/31/2021,9:15,BROOKLYN,11215,40.672348,-73.987076,"(40.672348, -73.987076)",,,394 4 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452952,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/31/2021,14:40,BRONX,10457,40.842068,-73.8975,"(40.842068, -73.8975)",FULTON AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452626,Sedan,Ambulance,,, +08/31/2021,22:25,,,40.72032,-73.99405,"(40.72032, -73.99405)",DELANCEY STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4452642,Sedan,Sedan,,, +08/31/2021,13:52,QUEENS,11101,40.741695,-73.95202,"(40.741695, -73.95202)",51 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452884,Sedan,Sedan,,, +08/31/2021,10:10,MANHATTAN,10033,40.844788,-73.93705,"(40.844788, -73.93705)",SAINT NICHOLAS AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452691,Sedan,Bike,,, +08/31/2021,6:47,QUEENS,11432,40.71001,-73.79474,"(40.71001, -73.79474)",HILLSIDE AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452522,Flat Bed,Sedan,,, +08/31/2021,15:10,,,40.89074,-73.84,"(40.89074, -73.84)",MURDOCK AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452557,Sedan,Bike,,, +08/31/2021,13:10,,,,,,OCEANA DRIVE EAST,OCEANA DRIVE EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453166,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,8:14,QUEENS,11423,40.713436,-73.76119,"(40.713436, -73.76119)",198 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452450,Sedan,,,, +08/18/2021,10:00,BRONX,10475,40.869083,-73.83188,"(40.869083, -73.83188)",,,300 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453143,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,14:09,MANHATTAN,10019,40.767,-73.9876,"(40.767, -73.9876)",,,424 WEST 55 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4452706,E-Scooter,,,, +08/31/2021,6:48,BROOKLYN,11231,40.677437,-73.99648,"(40.677437, -73.99648)",SMITH STREET,5 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4452601,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,21:55,QUEENS,11434,40.687046,-73.792114,"(40.687046, -73.792114)",LINDEN BOULEVARD,155 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453298,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,15:18,BROOKLYN,11237,40.707783,-73.932076,"(40.707783, -73.932076)",JOHNSON AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453085,Carry All,,,, +08/11/2021,17:50,MANHATTAN,10001,40.7491,-73.99201,"(40.7491, -73.99201)",WEST 31 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453229,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,16:55,,,,,,,,1 FLUSHING PARK ENTRANCE EAST,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4452524,Motorcycle,,,, +08/31/2021,18:30,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452565,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,22:50,,,40.641838,-73.93418,"(40.641838, -73.93418)",EAST 45 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452911,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,12:45,QUEENS,11368,,,,97 STREET,40 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:57,MANHATTAN,10030,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452828,Sedan,,,, +08/31/2021,11:18,QUEENS,11372,40.74748,-73.89325,"(40.74748, -73.89325)",,,72-35 BROADWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452429,Taxi,,,, +08/31/2021,16:45,,,,,,SHORE ROAD,BARTOW CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452649,Sedan,Sedan,,, +08/31/2021,13:00,,,40.709633,-73.767815,"(40.709633, -73.767815)",99 AVENUE,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452487,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,1:13,,,40.82503,-73.93122,"(40.82503, -73.93122)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4452712,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,6:33,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452399,Dump,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/31/2021,13:40,QUEENS,11413,40.666428,-73.75677,"(40.666428, -73.75677)",,,219-25 NORTH CONDUIT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452572,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,3:40,,,,,,6 AVE,E 21ST STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452815,Sedan,Sedan,Sedan,, +08/29/2021,22:10,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4453235,Sedan,,,, +08/31/2021,18:00,MANHATTAN,10036,40.76281,-73.99317,"(40.76281, -73.99317)",WEST 47 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452687,Sedan,,,, +08/31/2021,11:21,,,,,,PARK AVENUE,HALL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452514,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,15:50,QUEENS,11691,40.599888,-73.76399,"(40.599888, -73.76399)",,,710 HARTMAN LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,1:45,,,40.69196,-73.86332,"(40.69196, -73.86332)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453009,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,19:30,BROOKLYN,11235,40.583733,-73.95736,"(40.583733, -73.95736)",,,2764 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452605,Sedan,Pick-up Truck,,, +08/31/2021,23:20,QUEENS,11101,40.74572,-73.95055,"(40.74572, -73.95055)",46 ROAD,11 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452589,Sedan,Pick-up Truck,,, +08/31/2021,8:00,BROOKLYN,11211,40.712265,-73.95548,"(40.712265, -73.95548)",MARCY AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452929,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,16:00,BRONX,10453,40.84825,-73.90975,"(40.84825, -73.90975)",WALTON AVENUE,EAST 176 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452990,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,18:50,,,40.830845,-73.947235,"(40.830845, -73.947235)",WEST 152 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452614,Sedan,Sedan,,, +08/30/2021,21:05,BROOKLYN,11216,40.682537,-73.95002,"(40.682537, -73.95002)",NOSTRAND AVENUE,HANCOCK STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4453251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,13:30,BROOKLYN,11201,40.69816,-73.97834,"(40.69816, -73.97834)",,,21 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452511,Sedan,Sedan,,, +08/26/2021,17:00,BROOKLYN,11235,40.588886,-73.965645,"(40.588886, -73.965645)",AVENUE Y,OCEAN PARKWAY,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4453199,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,8:30,,,40.750175,-73.74114,"(40.750175, -73.74114)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452476,Sedan,Sedan,,, +08/31/2021,15:10,BROOKLYN,11218,40.639416,-73.97892,"(40.639416, -73.97892)",,,600 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453073,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:49,MANHATTAN,10032,40.832764,-73.94583,"(40.832764, -73.94583)",WEST 155 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452719,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,22:50,,,40.692085,-73.983406,"(40.692085, -73.983406)",GOLD STREET,,,2,0,0,0,0,0,2,0,Alcohol Involvement,,,,,4452835,Sedan,,,, +08/31/2021,14:00,QUEENS,11432,40.72162,-73.77672,"(40.72162, -73.77672)",188 STREET,MCLAUGHLIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:00,MANHATTAN,10016,40.742023,-73.98292,"(40.742023, -73.98292)",EAST 27 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452628,Taxi,Unknown,,, +08/31/2021,5:20,BROOKLYN,11207,40.662014,-73.886826,"(40.662014, -73.886826)",VAN SICLEN AVENUE,HEGEMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452804,Sedan,,,, +08/31/2021,18:44,BRONX,10457,40.846294,-73.892975,"(40.846294, -73.892975)",,,611 EAST TREMONT AVENUE,2,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452675,E-Scooter,,,, +08/31/2021,4:13,QUEENS,11101,40.75453,-73.944275,"(40.75453, -73.944275)",,,41-09 12 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452467,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,2:36,QUEENS,11435,40.692062,-73.81018,"(40.692062, -73.81018)",,,142-02 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452357,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,14:50,QUEENS,11365,40.744072,-73.78216,"(40.744072, -73.78216)",58 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452575,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,7:55,MANHATTAN,10017,40.754154,-73.9804,"(40.754154, -73.9804)",5 AVENUE,EAST 43 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453158,E-Bike,,,, +08/31/2021,11:00,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452637,Sedan,Box Truck,,, +08/31/2021,19:00,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,21:30,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4453023,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +08/31/2021,23:30,,,40.719734,-73.78652,"(40.719734, -73.78652)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453055,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,20:55,BROOKLYN,11211,40.703434,-73.96035,"(40.703434, -73.96035)",BEDFORD AVENUE,WILLIAMSBURG STREET WEST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452947,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,14:00,MANHATTAN,10036,40.760155,-73.9988,"(40.760155, -73.9988)",11 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4453113,Sedan,Sedan,,, +08/31/2021,18:14,QUEENS,11377,40.74624,-73.89723,"(40.74624, -73.89723)",ROOSEVELT AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452582,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,12:55,,,40.836937,-73.927124,"(40.836937, -73.927124)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452971,Sedan,Taxi,,, +08/27/2021,17:15,MANHATTAN,10017,40.752815,-73.98138,"(40.752815, -73.98138)",EAST 41 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453151,Sedan,Flat Bed,,, +08/31/2021,22:03,BROOKLYN,11233,40.66894,-73.92126,"(40.66894, -73.92126)",,,1438 EASTERN PARKWAY,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452707,Sedan,Bike,,, +08/31/2021,4:55,,,40.671032,-73.93927,"(40.671032, -73.93927)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4453178,Chassis Cab,,,, +08/30/2021,17:00,QUEENS,11364,40.734505,-73.76326,"(40.734505, -73.76326)",,,208-02 RICHLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453236,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,8:18,BROOKLYN,11212,40.664772,-73.927086,"(40.664772, -73.927086)",,,4 EAST 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452499,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,10:00,BROOKLYN,11208,40.668278,-73.85884,"(40.668278, -73.85884)",,,1426 LORING AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452800,Sedan,,,, +08/29/2021,9:30,BROOKLYN,11249,40.699413,-73.95902,"(40.699413, -73.95902)",WYTHE AVENUE,WALLABOUT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4453082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,17:19,MANHATTAN,10033,40.847122,-73.936966,"(40.847122, -73.936966)",,,82 WADSWORTH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452693,Sedan,Sedan,,, +08/31/2021,13:30,QUEENS,11427,40.73059,-73.73437,"(40.73059, -73.73437)",,,232-08 88 AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4452486,Sedan,Sedan,,, +08/31/2021,16:55,,,40.673786,-73.76381,"(40.673786, -73.76381)",FARMERS BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452525,Sedan,,,, +08/31/2021,6:23,BROOKLYN,11234,40.616314,-73.90984,"(40.616314, -73.90984)",,,2148 EAST 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452853,Sedan,,,, +08/31/2021,12:02,,,,,,Perimeter road,ARTHUR ASHE LOADING DOCK,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4452830,Sedan,,,, +08/31/2021,11:00,BROOKLYN,11236,40.641644,-73.8944,"(40.641644, -73.8944)",,,1101 EAST 100 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452452,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,19:48,MANHATTAN,10022,40.75521,-73.96828,"(40.75521, -73.96828)",,,954 2 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4453114,E-Scooter,,,, +08/28/2021,16:00,BROOKLYN,11204,40.6166,-73.98936,"(40.6166, -73.98936)",,,6701 19 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453204,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,19:50,BROOKLYN,11217,40.67714,-73.979965,"(40.67714, -73.979965)",,,185 5 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452955,Bike,,,, +08/27/2021,4:25,,,40.795536,-73.9481,"(40.795536, -73.9481)",EAST 109 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4453296,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,9:39,BROOKLYN,11230,40.611702,-73.9627,"(40.611702, -73.9627)",,,1865 CONEY ISLAND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452618,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,8:00,,,,,,CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4453032,Sedan,,,, +08/31/2021,14:28,QUEENS,11103,40.765198,-73.904045,"(40.765198, -73.904045)",,,24-58 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453037,Box Truck,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,0:00,QUEENS,11372,40.75198,-73.882835,"(40.75198, -73.882835)",84 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452271,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,12:30,,,40.58667,-73.966156,"(40.58667, -73.966156)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453165,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,12:40,BRONX,10475,40.878147,-73.828156,"(40.878147, -73.828156)",,,99 DREISER LOOP,1,0,0,0,0,0,1,0,Unspecified,,,,,4452648,Sedan,,,, +08/31/2021,5:59,BRONX,10460,40.84441,-73.8689,"(40.84441, -73.8689)",FILLMORE STREET,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4452670,Station Wagon/Sport Utility Vehicle,Ambulance,,, +08/31/2021,22:21,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453100,Sedan,,,, +08/31/2021,21:30,,,40.6957,-73.7933,"(40.6957, -73.7933)",160 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4452579,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,6:54,BROOKLYN,11233,40.670116,-73.92248,"(40.670116, -73.92248)",SAINT JOHNS PLACE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4452892,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,15:54,BROOKLYN,11233,40.676,-73.90485,"(40.676, -73.90485)",,,2416 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4452597,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Beverage Truck, +11/07/2021,10:30,,,40.59976,-73.903336,"(40.59976, -73.903336)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unsafe Lane Changing,,,,4474841,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,8:30,,,40.600895,-73.98031,"(40.600895, -73.98031)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/31/2021,8:50,BROOKLYN,11225,40.664112,-73.94777,"(40.664112, -73.94777)",,,421 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4452520,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,1:40,STATEN ISLAND,10304,40.597282,-74.10816,"(40.597282, -74.10816)",,,70 BENEDICT ROAD,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4486373,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,12:53,BRONX,10452,40.837673,-73.91922,"(40.837673, -73.91922)",EAST 169 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452427,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,16:00,QUEENS,11354,40.77045,-73.83421,"(40.77045, -73.83421)",WHITESTONE EXPRESSWAY,FARRINGTON STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4452746,Sedan,Sedan,,, +08/31/2021,6:18,BROOKLYN,11226,40.642532,-73.9487,"(40.642532, -73.9487)",,,1770 NOSTRAND AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4452913,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,19:15,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",QUEENS BOULEVARD,70 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452568,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,9:55,,,,,,EAST 222 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4452552,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,16:50,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452820,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/26/2021,21:35,STATEN ISLAND,10310,40.633995,-74.12415,"(40.633995, -74.12415)",CASTLETON AVENUE,DONGAN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,Unspecified,,,4453128,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/31/2021,5:30,BROOKLYN,11225,40.664513,-73.9538,"(40.664513, -73.9538)",ROGERS AVENUE,SULLIVAN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452593,Box Truck,Sedan,,, +08/31/2021,22:16,BROOKLYN,11210,40.614067,-73.94904,"(40.614067, -73.94904)",,,2519 AVENUE O,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4452623,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,5:54,BRONX,10459,40.822628,-73.89587,"(40.822628, -73.89587)",WESTCHESTER AVENUE,KELLY STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4453066,E-Scooter,,,, +08/29/2021,20:00,MANHATTAN,10035,40.796993,-73.93375,"(40.796993, -73.93375)",,,424 EAST 118 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453004,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,19:00,BROOKLYN,11211,40.712265,-73.95548,"(40.712265, -73.95548)",MARCY AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453280,Sedan,,,, +08/31/2021,20:35,BROOKLYN,11217,40.682114,-73.97327,"(40.682114, -73.97327)",,,670 PACIFIC STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4452641,Sedan,,,, +08/31/2021,10:45,QUEENS,11101,40.74355,-73.958405,"(40.74355, -73.958405)",2 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452584,Sedan,,,, +08/27/2021,17:30,QUEENS,11412,40.705414,-73.78035,"(40.705414, -73.78035)",180 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4453224,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,9:45,MANHATTAN,10016,40.740833,-73.978775,"(40.740833, -73.978775)",,,495 2 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452983,Bike,,,, +08/31/2021,0:47,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",SUTPHIN BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/12/2021,10:00,,,40.683735,-73.85932,"(40.683735, -73.85932)",95 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453012,Sedan,,,, +08/31/2021,21:20,BROOKLYN,11236,40.636425,-73.911766,"(40.636425, -73.911766)",,,762 EAST 82 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4452607,Sedan,,,, +11/07/2021,15:55,QUEENS,11420,40.666218,-73.8076,"(40.666218, -73.8076)",SOUTH CONDUIT AVENUE,132 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4475000,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,1:29,MANHATTAN,10036,40.757633,-73.98581,"(40.757633, -73.98581)",,,1515 BROADWAY,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4474732,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,16:45,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",HYLAN BOULEVARD,NELSON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4474945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,4:58,,,,,,BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4475277,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/07/2021,20:20,QUEENS,11693,40.588047,-73.814575,"(40.588047, -73.814575)",,,304 BEACH 90 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474939,Sedan,,,, +11/01/2021,6:55,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475643,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,10:25,BRONX,10455,40.814663,-73.896416,"(40.814663, -73.896416)",,,755 BRUCKNER BOULEVARD,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4475500,Sedan,Garbage or Refuse,,, +11/07/2021,15:05,QUEENS,11102,,,,21 STREET,30 ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475031,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,11:00,BROOKLYN,11207,40.67148,-73.898674,"(40.67148, -73.898674)",ALABAMA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475339,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,0:05,BROOKLYN,11225,40.655457,-73.961975,"(40.655457, -73.961975)",,,217 OCEAN AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475523,Sedan,Sedan,,, +11/07/2021,18:00,BROOKLYN,11219,40.61971,-73.99729,"(40.61971, -73.99729)",16 AVENUE,BAY RIDGE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,18:30,,,40.68091,-73.78106,"(40.68091, -73.78106)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4475116,Sedan,Sedan,,, +11/07/2021,12:45,,,40.58584,-73.93788,"(40.58584, -73.93788)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4475601,Sedan,Sedan,,, +11/04/2021,15:30,MANHATTAN,10023,40.777412,-73.978806,"(40.777412, -73.978806)",WEST 72 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475732,MOTOR SCOO,Van,,, +11/07/2021,4:11,BROOKLYN,11229,40.595585,-73.95068,"(40.595585, -73.95068)",,,2701 OCEAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475023,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/07/2021,20:30,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",VICTORY BOULEVARD,CLOVE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475636,Sedan,Sedan,,, +11/07/2021,11:06,,,,,,PARK AVENUE,NAVY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475012,Sedan,Sedan,,, +11/07/2021,2:06,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474676,Sedan,Sedan,,, +11/04/2021,10:30,,,40.733433,-73.9955,"(40.733433, -73.9955)",WEST 10 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475661,Station Wagon/Sport Utility Vehicle,Bike,,, +11/07/2021,21:05,MANHATTAN,10037,40.808903,-73.93835,"(40.808903, -73.93835)",EAST 130 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4475055,Sedan,Sedan,Sedan,Sedan, +10/20/2021,13:00,,,,,,WEST 61 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475729,Sedan,3-Door,,, +11/05/2021,15:00,STATEN ISLAND,10310,40.629486,-74.12091,"(40.629486, -74.12091)",,,144 ROE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475576,Sedan,,,, +11/07/2021,23:30,BROOKLYN,11209,40.627094,-74.023636,"(40.627094, -74.023636)",,,7808 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475077,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,5:15,BRONX,10458,40.86052,-73.89257,"(40.86052, -73.89257)",WEBSTER AVENUE,EAST 189 STREET,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4475261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,15:15,MANHATTAN,10019,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4475587,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,17:40,,,,,,MACOMBS DAM BRIDGE,,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,Unspecified,,,4475041,Van,Sedan,Sedan,, +11/07/2021,1:40,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474983,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,21:20,,,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,11:00,BROOKLYN,11203,40.648144,-73.946396,"(40.648144, -73.946396)",,,1028 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475680,Taxi,,,, +11/07/2021,10:30,BROOKLYN,11207,40.654793,-73.88999,"(40.654793, -73.88999)",WORTMAN AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4475327,Sanitation,Station Wagon/Sport Utility Vehicle,NYC SANITA,, +11/02/2021,4:41,BROOKLYN,11238,40.6892,-73.95716,"(40.6892, -73.95716)",,,415 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4475548,Sedan,Sedan,Sedan,Sedan,Sedan +11/07/2021,3:38,,,40.84492,-73.90552,"(40.84492, -73.90552)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,4475094,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Carry All, +11/07/2021,11:00,STATEN ISLAND,10301,40.645203,-74.07843,"(40.645203, -74.07843)",HAMILTON AVENUE,STUYVESANT PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475210,Sedan,,,, +11/01/2021,15:00,QUEENS,11423,40.71516,-73.77262,"(40.71516, -73.77262)",,,88-06 189 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475739,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,2:47,,,40.63191,-74.15286,"(40.63191, -74.15286)",,,399 WALKER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4475618,Bus,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +10/22/2021,14:42,QUEENS,11358,,,,35 AVENUE,163 STREET,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4469899,Sedan,Motorcycle,,, +09/01/2021,2:35,,,,,,BRONX RIVER PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,,,,4452673,Taxi,,,, +11/07/2021,19:20,STATEN ISLAND,10301,40.612694,-74.0929,"(40.612694, -74.0929)",,,1 CAMPUS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475232,Sedan,Sedan,,, +11/06/2021,18:20,BRONX,10472,40.827656,-73.8861,"(40.827656, -73.8861)",WESTCHESTER AVENUE,WHITLOCK AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4475828,Moped,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,7:50,BRONX,10456,40.831646,-73.91819,"(40.831646, -73.91819)",,,1103 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475624,Sedan,,,, +11/07/2021,2:51,QUEENS,11429,40.703896,-73.732285,"(40.703896, -73.732285)",113 AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4474660,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:50,,,40.783146,-73.97833,"(40.783146, -73.97833)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475718,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/28/2021,14:40,MANHATTAN,10037,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,LENOX AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475654,Sedan,Bike,,, +11/07/2021,2:39,QUEENS,11105,40.77751,-73.92044,"(40.77751, -73.92044)",,,23-56 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475022,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/07/2021,17:00,,,40.694035,-73.72679,"(40.694035, -73.72679)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475374,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,11:00,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474881,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,17:26,MANHATTAN,10033,40.844246,-73.93372,"(40.844246, -73.93372)",WEST 175 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475343,Sedan,,,, +11/06/2021,6:55,STATEN ISLAND,10312,40.546955,-74.18129,"(40.546955, -74.18129)",DRUMGOOLE ROAD WEST,ARDEN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475692,PK,,,, +11/06/2021,15:45,STATEN ISLAND,10314,40.6127,-74.12771,"(40.6127, -74.12771)",,,1909 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475577,Sedan,Sedan,,, +11/07/2021,15:35,BRONX,10457,40.844814,-73.89288,"(40.844814, -73.89288)",,,1895 BELMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4475108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,19:05,,,40.63073,-74.01734,"(40.63073, -74.01734)",7 AVENUE,OVINGTON AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4475150,Station Wagon/Sport Utility Vehicle,Bike,,, +11/02/2021,12:00,QUEENS,11103,40.757545,-73.92015,"(40.757545, -73.92015)",,,32-75 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475532,Garbage or Refuse,Convertible,,, +11/07/2021,17:08,BRONX,10468,,,,,,2315 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475278,Convertible,Sedan,,, +11/07/2021,2:55,MANHATTAN,10027,40.81574,-73.95456,"(40.81574, -73.95456)",AMSTERDAM AVENUE,WEST 130 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4474938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,1:20,MANHATTAN,10002,40.710697,-73.984634,"(40.710697, -73.984634)",,,299 SOUTH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4474964,DUMP TRUCK,Sedan,,, +11/02/2021,11:19,,,40.8236,-73.9497,"(40.8236, -73.9497)",WEST 142 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475822,Sedan,,,, +11/07/2021,1:16,,,40.73556,-73.915054,"(40.73556, -73.915054)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474776,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,18:15,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4475756,Bus,Sedan,,, +11/07/2021,8:40,,,40.608727,-74.08839,"(40.608727, -74.08839)",NARROWS ROAD NORTH,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,20:10,,,40.803688,-73.915886,"(40.803688, -73.915886)",BRUCKNER BOULEVARD,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4475049,Motorcycle,,,, +11/05/2021,6:20,BROOKLYN,11201,40.692173,-73.98557,"(40.692173, -73.98557)",,,89 WILLOUGHBY STREET,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4475709,Sedan,,,, +11/04/2021,6:36,BROOKLYN,11201,40.692123,-73.98904,"(40.692123, -73.98904)",BOERUM PLACE,FULTON STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4475366,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,20:30,,,40.651104,-73.94381,"(40.651104, -73.94381)",CHURCH AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4474941,Sedan,E-Bike,,, +11/07/2021,7:40,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,MORGAN AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4474984,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/02/2021,8:20,QUEENS,11101,40.75524,-73.91875,"(40.75524, -73.91875)",,,34-08 43 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475551,Van,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,16:10,MANHATTAN,10035,40.798935,-73.93637,"(40.798935, -73.93637)",2 AVENUE,EAST 119 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475469,Station Wagon/Sport Utility Vehicle,Bus,,, +11/07/2021,7:00,BROOKLYN,11218,40.636284,-73.97137,"(40.636284, -73.97137)",DITMAS AVENUE,EAST 7 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4475501,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/07/2021,3:31,,,40.74892,-73.9779,"(40.74892, -73.9779)",EAST 38 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474767,Taxi,Taxi,,, +11/07/2021,23:00,BRONX,10456,40.83446,-73.90941,"(40.83446, -73.90941)",,,1264 CLAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475183,Sedan,,,, +11/07/2021,1:00,BROOKLYN,11203,40.65011,-73.930214,"(40.65011, -73.930214)",UTICA AVENUE,SNYDER AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4474874,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/07/2021,6:20,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475326,Bus,,,, +11/07/2021,1:00,QUEENS,11355,40.761375,-73.81045,"(40.761375, -73.81045)",SANFORD AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4474700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/07/2021,15:30,,,40.676453,-73.85688,"(40.676453, -73.85688)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475002,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,6:25,BROOKLYN,11220,40.647346,-74.007996,"(40.647346, -74.007996)",46 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475432,Sedan,Sedan,,, +11/07/2021,17:00,MANHATTAN,10039,0,0,"(0.0, 0.0)",MACOMBS PLACE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4475267,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,14:00,BRONX,10460,40.842777,-73.871284,"(40.842777, -73.871284)",,,534 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474928,Sedan,,,, +11/05/2021,11:00,BROOKLYN,11226,40.64428,-73.95252,"(40.64428, -73.95252)",VERONICA PLACE,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475677,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,23:23,STATEN ISLAND,10301,40.645206,-74.09389,"(40.645206, -74.09389)",,,644 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475637,Sedan,Sedan,,, +11/07/2021,1:01,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475059,Sedan,Sedan,,, +11/07/2021,16:24,QUEENS,11106,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,36 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4475032,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/01/2021,4:42,,,40.693874,-73.91777,"(40.693874, -73.91777)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475561,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,17:20,BRONX,10473,40.822903,-73.87005,"(40.822903, -73.87005)",,,900 FTELEY AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4475600,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,12:38,,,40.82513,-73.934395,"(40.82513, -73.934395)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475084,Sedan,Van,,, +11/07/2021,19:45,QUEENS,11361,40.7625,-73.78253,"(40.7625, -73.78253)",203 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4474912,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,14:04,,,40.60461,-73.99826,"(40.60461, -73.99826)",20 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4474813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,11:45,BRONX,10456,40.82194,-73.90743,"(40.82194, -73.90743)",EAST 161 STREET,CAULDWELL AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4475697,Ambulance,Sedan,Sedan,, +11/07/2021,8:55,BROOKLYN,11207,40.6664,-73.88265,"(40.6664, -73.88265)",,,758 NEW LOTS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475337,Sedan,Sedan,,, +11/05/2021,22:42,BRONX,10458,,,,BEDFORD PARK BOULEVARD,marion avenue,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475520,Sedan,Sedan,,, +11/07/2021,13:50,,,,,,TODT HILL ROAD,FLAGG PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4474946,Sedan,Sedan,,, +11/07/2021,21:12,QUEENS,11434,40.692066,-73.7654,"(40.692066, -73.7654)",LINDEN BOULEVARD,NEWBURG STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,15:03,BROOKLYN,11204,40.619408,-73.986435,"(40.619408, -73.986435)",,,6219 19 AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,Unspecified,Unspecified,,4475424,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/07/2021,11:40,,,40.748978,-73.796585,"(40.748978, -73.796585)",170 PLACE,,,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4474801,Sedan,,,, +12/14/2021,8:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486595,Sedan,Pick-up Truck,,, +09/01/2021,6:51,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4452917,Sedan,,,, +11/07/2021,2:12,BROOKLYN,11218,40.643906,-73.96853,"(40.643906, -73.96853)",,,1108 BEVERLEY ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4474680,Sedan,,,, +11/07/2021,0:37,QUEENS,11417,40.674557,-73.859604,"(40.674557, -73.859604)",NORTH CONDUIT AVENUE,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475008,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,16:20,,,40.790627,-73.942444,"(40.790627, -73.942444)",2 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475804,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/07/2021,1:00,BROOKLYN,11223,40.5872,-73.97439,"(40.5872, -73.97439)",COBEK COURT,SHELL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475141,Sedan,,,, +11/07/2021,17:00,BROOKLYN,11212,40.666096,-73.902084,"(40.666096, -73.902084)",,,350 JUNIUS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4474951,Sedan,,,, +10/30/2021,10:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475642,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,13:34,BROOKLYN,11236,40.640236,-73.90598,"(40.640236, -73.90598)",FLATLANDS AVENUE,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4475663,Tractor Truck Diesel,,,, +09/30/2021,8:53,QUEENS,11434,40.668026,-73.77343,"(40.668026, -73.77343)",LATHAM LANE,NORTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4475568,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,2:25,MANHATTAN,10023,40.776016,-73.98724,"(40.776016, -73.98724)",WEST END AVENUE,WEST 66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475730,Sedan,Sedan,,, +11/07/2021,13:00,BROOKLYN,11223,40.597378,-73.969635,"(40.597378, -73.969635)",EAST 2 STREET,AVENUE U,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475025,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,13:15,MANHATTAN,10017,40.75791,-73.97766,"(40.75791, -73.97766)",5 AVENUE,WEST 49 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4475590,Moped,,,, +10/28/2021,16:47,,,40.715443,-73.95185,"(40.715443, -73.95185)",MEEKER AVENUE,UNION AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475796,Sedan,Box Truck,,, +11/07/2021,14:00,BROOKLYN,11219,40.634445,-74.00628,"(40.634445, -74.00628)",,,912 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,18:24,MANHATTAN,10031,0,0,"(0.0, 0.0)",BROADWAY,WEST 146 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475829,Sedan,Ambulance,,, +11/07/2021,18:00,,,40.66235,-73.95082,"(40.66235, -73.95082)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4474896,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,16:10,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,11:15,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475706,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,15:36,BRONX,10451,40.824795,-73.91111,"(40.824795, -73.91111)",,,445 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475280,moped,,,, +11/07/2021,1:20,BRONX,10470,40.905735,-73.849396,"(40.905735, -73.849396)",EAST 242 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4474872,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,0:30,MANHATTAN,10010,40.73951,-73.98475,"(40.73951, -73.98475)",EAST 23 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4474942,Sedan,Sedan,,, +11/06/2021,20:00,,,40.595207,-73.7585,"(40.595207, -73.7585)",SEAGIRT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475527,Sedan,,,, +11/07/2021,13:11,,,40.86955,-73.88175,"(40.86955, -73.88175)",DECATUR AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475513,Sedan,,,, +11/07/2021,5:50,BRONX,10472,40.82934,-73.85043,"(40.82934, -73.85043)",,,1070 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4474790,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,1:40,,,40.776016,-73.98724,"(40.776016, -73.98724)",WEST 66 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,17:51,BRONX,10458,,,,,,2510 BELMONT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4469148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,5:20,QUEENS,11372,40.75363,-73.88597,"(40.75363, -73.88597)",34 AVENUE,81 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475578,E-Bike,,,, +11/07/2021,16:26,BROOKLYN,11226,40.65008,-73.96417,"(40.65008, -73.96417)",,,35 EAST 17 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4475093,Sedan,Sedan,Sedan,Sedan,Sedan +09/01/2021,16:10,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452953,Sedan,Sedan,,, +11/06/2021,17:05,QUEENS,11101,40.753223,-73.91215,"(40.753223, -73.91215)",,,50-10 NORTHERN BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4475647,Sedan,Bike,,, +10/26/2021,16:00,,,40.81847,-73.9414,"(40.81847, -73.9414)",WEST 140 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4475655,Motorcycle,,,, +01/28/2022,23:10,BROOKLYN,11208,40.66993,-73.8807,"(40.66993, -73.8807)",ESSEX STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499074,Station Wagon/Sport Utility Vehicle,,,, +10/24/2021,18:37,QUEENS,11377,,,,,,60-20 30 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475817,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,21:00,,,40.723347,-73.939316,"(40.723347, -73.939316)",MEEKER AVENUE,MORGAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4475170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/07/2021,13:30,,,,,,,,2271 RICHMOND AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475236,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,22:28,,,40.78542,-73.98399,"(40.78542, -73.98399)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4475726,Sedan,,,, +11/07/2021,19:43,MANHATTAN,10065,40.762592,-73.96127,"(40.762592, -73.96127)",,,329 EAST 63 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4475019,Sedan,Bike,,, +11/07/2021,21:57,MANHATTAN,10002,40.719482,-73.991295,"(40.719482, -73.991295)",DELANCEY STREET,ELDRIDGE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475534,Garbage or Refuse,E-Bike,,, +11/07/2021,4:34,BRONX,10455,40.82082,-73.91562,"(40.82082, -73.91562)",EAST 156 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475048,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,14:30,QUEENS,11101,40.730705,-73.93385,"(40.730705, -73.93385)",,,38-40 REVIEW AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4475758,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,21:50,QUEENS,11104,40.743156,-73.91871,"(40.743156, -73.91871)",QUEENS BOULEVARD,46 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,18:01,QUEENS,11373,40.743008,-73.882454,"(40.743008, -73.882454)",,,82-26 BRITTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4474937,Sedan,Pick-up Truck,,, +11/07/2021,3:30,QUEENS,11367,40.729187,-73.81521,"(40.729187, -73.81521)",,,71-16 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,11:00,,,40.693523,-73.9522,"(40.693523, -73.9522)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475354,Sedan,,,, +11/02/2021,20:15,QUEENS,11103,40.757847,-73.91661,"(40.757847, -73.91661)",BROADWAY,43 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Alcohol Involvement,,,,4475553,Sedan,Sedan,,, +01/19/2022,2:30,,,40.828278,-73.907036,"(40.828278, -73.907036)",EAST 166 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498613,Sedan,Sedan,,, +11/07/2021,15:45,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",FRANCIS LEWIS BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4474963,Sedan,,,, +11/07/2021,19:18,MANHATTAN,10019,,,,,,135 WEST 52 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4475473,Taxi,,,, +11/05/2021,21:44,BRONX,10457,40.843903,-73.894646,"(40.843903, -73.894646)",ARTHUR AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475737,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,15:30,MANHATTAN,10028,40.774364,-73.95432,"(40.774364, -73.95432)",,,1551 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475038,Sedan,Bus,,, +11/07/2021,11:20,QUEENS,11362,40.767456,-73.72844,"(40.767456, -73.72844)",,,52-34 LITTLE NECK PARKWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475098,Sedan,Pick-up Truck,,, +11/03/2021,14:45,BROOKLYN,11212,40.661427,-73.90575,"(40.661427, -73.90575)",RIVERDALE AVENUE,WATKINS STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475687,,,,, +10/31/2021,10:30,STATEN ISLAND,10305,40.579357,-74.08716,"(40.579357, -74.08716)",SLATER BOULEVARD,OLYMPIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475626,Sedan,,,, +11/07/2021,8:11,BROOKLYN,11219,,,,,,1030 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475146,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,11:25,QUEENS,11105,40.78515,-73.91496,"(40.78515, -73.91496)",,,20-23 18 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4475028,Sedan,Sedan,Sedan,, +11/05/2021,13:43,BROOKLYN,11219,40.641727,-73.99265,"(40.641727, -73.99265)",42 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475591,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/01/2021,0:45,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4453025,Sedan,Sedan,,, +11/07/2021,9:50,BRONX,10469,40.87728,-73.859535,"(40.87728, -73.859535)",,,3577 BRONXWOOD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475617,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,19:00,STATEN ISLAND,10304,40.609848,-74.0896,"(40.609848, -74.0896)",DEKALB STREET,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475638,Sedan,,,, +11/07/2021,1:40,,,40.69084,-73.79478,"(40.69084, -73.79478)",110 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475062,Sedan,Sedan,,, +12/12/2021,6:30,QUEENS,11372,40.75444,-73.8724,"(40.75444, -73.8724)",,,34-20 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485549,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,14:19,QUEENS,11415,40.705124,-73.82814,"(40.705124, -73.82814)",,,122-15 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485833,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,19:01,QUEENS,11372,40.749508,-73.88334,"(40.749508, -73.88334)",,,37-30 83 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485948,Station Wagon/Sport Utility Vehicle,E-Bike,,, +12/12/2021,6:00,QUEENS,11413,40.662876,-73.75094,"(40.662876, -73.75094)",,,144-49 228 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485793,Station Wagon/Sport Utility Vehicle,,,, +11/23/2021,16:30,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",GRAND CONCOURSE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486440,Sedan,Sedan,,, +12/10/2021,18:04,,,40.88647,-73.89603,"(40.88647, -73.89603)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4486460,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +12/11/2021,0:00,BROOKLYN,11220,40.649323,-74.01126,"(40.649323, -74.01126)",,,337 46 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486378,Station Wagon/Sport Utility Vehicle,,,, +11/29/2021,17:00,BROOKLYN,11220,40.63645,-74.01575,"(40.63645, -74.01575)",63 STREET,6 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4486517,Bike,,,, +12/12/2021,6:00,,,,,,133 AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485844,Sedan,,,, +01/28/2022,15:15,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",EAST TREMONT AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498741,Taxi,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,9:26,MANHATTAN,10019,40.76433,-73.989006,"(40.76433, -73.989006)",,,405 WEST 51 STREET,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4486076,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,3:00,QUEENS,11356,0,0,"(0.0, 0.0)",129 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4485735,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,18:55,MANHATTAN,10010,40.737885,-73.98091,"(40.737885, -73.98091)",EAST 23 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4486164,Sedan,Bike,,, +12/12/2021,9:30,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4486490,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,14:20,BROOKLYN,11204,40.616688,-73.98928,"(40.616688, -73.98928)",19 AVENUE,67 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486062,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,4:25,QUEENS,11378,40.71719,-73.90637,"(40.71719, -73.90637)",,,59-58 60 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4485723,Taxi,Sedan,,, +12/12/2021,11:45,,,40.612213,-73.99718,"(40.612213, -73.99718)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485783,Station Wagon/Sport Utility Vehicle,,,, +12/06/2021,20:18,BRONX,10459,40.8253,-73.890686,"(40.8253, -73.890686)",WESTCHESTER AVENUE,HOE AVENUE,,0,0,0,0,0,0,0,0,,,,,,4486339,,,,, +12/12/2021,12:47,,,40.828922,-73.9504,"(40.828922, -73.9504)",RIVERSIDE DRIVE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4486253,Bike,,,, +12/12/2021,9:00,BROOKLYN,11219,40.62671,-74.00436,"(40.62671, -74.00436)",12 AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4485672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,14:41,,,40.729355,-73.86023,"(40.729355, -73.86023)",QUEENS BOULEVARD,,,2,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486521,E-Scooter,,,, +12/12/2021,18:45,,,40.52599,-74.22536,"(40.52599, -74.22536)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486385,Tractor Truck Diesel,Sedan,,, +12/12/2021,0:25,BROOKLYN,11226,40.642017,-73.96266,"(40.642017, -73.96266)",CORTELYOU ROAD,EAST 17 STREET,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4485911,Station Wagon/Sport Utility Vehicle,,,, +12/10/2021,19:30,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",MAJOR DEEGAN EXPRESSWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486449,Sedan,Sedan,,, +12/10/2021,8:30,,,40.692463,-73.81082,"(40.692463, -73.81082)",VAN WYCK EXPWY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486456,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +01/28/2022,19:34,BROOKLYN,11206,40.695705,-73.94637,"(40.695705, -73.94637)",MYRTLE AVENUE,TOMPKINS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498327,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,18:00,,,,,,RUTGERS PARK,CHERRY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498841,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/27/2022,9:22,QUEENS,11432,,,,HILLSIDE AVENUE,DALNY ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498349,Sedan,,,, +01/24/2022,17:45,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498517,Bike,,,, +01/31/2022,9:45,BRONX,10466,40.890446,-73.84136,"(40.890446, -73.84136)",,,2031 STRANG AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498799,Sedan,,,, +01/27/2022,9:00,QUEENS,11373,40.74672,-73.87865,"(40.74672, -73.87865)",,,41-19 FORLEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498085,Sedan,,,, +01/29/2022,18:00,MANHATTAN,10128,40.77981,-73.95035,"(40.77981, -73.95035)",2 AVENUE,EAST 89 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498591,Bike,,,, +01/27/2022,0:00,,,40.67801,-73.94138,"(40.67801, -73.94138)",KINGSTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498305,Pick-up Truck,Sedan,,, +01/27/2022,15:00,,,40.660137,-73.983925,"(40.660137, -73.983925)",PROSPECT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498576,Sedan,Box Truck,,, +01/29/2022,10:28,BROOKLYN,11234,40.614414,-73.93282,"(40.614414, -73.93282)",AVENUE R,RYDER STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4498122,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,9:45,,,40.750885,-73.81942,"(40.750885, -73.81942)",HOLLY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498782,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,3:15,,,40.63417,-74.0178,"(40.63417, -74.0178)",67 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498195,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,16:40,QUEENS,11694,40.576782,-73.84849,"(40.576782, -73.84849)",,,239 BEACH 129 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499195,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,4:00,BROOKLYN,11207,40.68238,-73.90565,"(40.68238, -73.90565)",ABERDEEN STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4498709,Sedan,,,, +01/30/2022,4:00,BRONX,10452,40.835876,-73.918846,"(40.835876, -73.918846)",,,1240 WALTON AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4498603,Sedan,,,, +01/28/2022,16:35,,,40.79465,-73.97179,"(40.79465, -73.97179)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498073,Sedan,Garbage or Refuse,,, +01/28/2022,14:30,BROOKLYN,11234,40.611145,-73.937874,"(40.611145, -73.937874)",AVENUE R,EAST 32 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498465,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,8:00,QUEENS,11434,40.65694,-73.76878,"(40.65694, -73.76878)",150 AVENUE,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/28/2022,11:46,BROOKLYN,11222,40.733955,-73.95826,"(40.733955, -73.95826)",,,238 FRANKLIN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498682,Sedan,,,, +01/30/2022,11:50,,,,,,UNION 112 TURNPIKE,KEW FOREST LN,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498502,Sedan,,,, +01/28/2022,17:15,,,40.687553,-73.980385,"(40.687553, -73.980385)",FLATBUSH AVENUE,LIVINGSTON STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498048,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,22:20,MANHATTAN,10002,40.71875,-73.97937,"(40.71875, -73.97937)",,,116 COLUMBIA STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498222,Station Wagon/Sport Utility Vehicle,Bike,,, +01/27/2022,11:30,,,40.833916,-73.93136,"(40.833916, -73.93136)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4498233,Sedan,Sedan,,, +01/31/2022,15:10,,,40.8724,-73.88981,"(40.8724, -73.88981)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4499016,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,13:11,QUEENS,11429,40.702652,-73.73972,"(40.702652, -73.73972)",,,216-61 113 DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4498878,USPS small,,,, +01/31/2022,8:50,MANHATTAN,10011,40.74369,-73.99465,"(40.74369, -73.99465)",,,171 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499171,Station Wagon/Sport Utility Vehicle,PK,,, +01/31/2022,11:20,,,40.75117,-73.9152,"(40.75117, -73.9152)",48 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498947,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/10/2022,10:30,,,40.622643,-73.8965,"(40.622643, -73.8965)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4519282,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,8:00,,,,,,UTOPIA PARKWAY,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475213,Sedan,,,, +09/01/2021,1:20,,,,,,,,100 OAKLAND TERRACE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4453133,Sedan,,,, +01/28/2022,23:42,BRONX,10453,40.84768,-73.91237,"(40.84768, -73.91237)",JEROME AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/31/2022,18:22,QUEENS,11423,40.713497,-73.75622,"(40.713497, -73.75622)",204 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4498898,Sedan,,,, +01/29/2022,8:30,BRONX,10468,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498752,Sedan,,,, +01/23/2022,0:00,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",FARMERS BOULEVARD,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4498926,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,9:50,MANHATTAN,10011,40.733585,-73.99766,"(40.733585, -73.99766)",,,55 WEST 9 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499007,Motorcycle,Bike,,, +04/03/2022,9:00,BROOKLYN,11205,,,,,,154 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519323,Sedan,,,, +01/30/2022,22:45,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4498650,Sedan,Pick-up Truck,,, +01/29/2022,10:00,BROOKLYN,11220,40.642315,-74.00604,"(40.642315, -74.00604)",,,5011 7 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498137,Sedan,Ambulance,,, +01/28/2022,23:35,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Aggressive Driving/Road Rage,,,,4498180,Sedan,,,, +01/28/2022,23:36,,,40.640182,-74.079254,"(40.640182, -74.079254)",MONROE AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499229,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,5:55,,,40.770054,-73.914406,"(40.770054, -73.914406)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498090,Sedan,Pick-up Truck,,, +12/10/2021,16:58,BRONX,10451,40.82572,-73.92716,"(40.82572, -73.92716)",RIVER AVENUE,EAST 157 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing Too Closely,,,,4498312,Sedan,Sedan,,, +01/12/2022,17:57,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",KINGSTON AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498444,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,3:15,,,40.776173,-73.94257,"(40.776173, -73.94257)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498915,Chassis Cab,Sedan,,, +01/28/2022,12:00,BROOKLYN,11207,40.662575,-73.88136,"(40.662575, -73.88136)",,,2205 LINDEN BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499053,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,10:34,MANHATTAN,10012,40.725037,-74.00153,"(40.725037, -74.00153)",,,420 WEST BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4499121,Delivery,,,, +01/29/2022,13:00,,,40.616577,-74.159294,"(40.616577, -74.159294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4498895,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,2:34,BRONX,10457,40.843597,-73.90587,"(40.843597, -73.90587)",TOPPING AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4498667,Sedan,Sedan,Sedan,, +01/21/2022,21:42,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,4,0,0,0,0,0,4,0,Alcohol Involvement,Unspecified,,,,4498503,Taxi,Sedan,,, +01/31/2022,20:00,BRONX,10475,,,,,,3505 ROMBOUTS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499215,Sedan,Sedan,,, +01/28/2022,19:30,QUEENS,11368,40.747334,-73.859886,"(40.747334, -73.859886)",,,104-13 44 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,10:00,BROOKLYN,11219,40.639156,-74.00045,"(40.639156, -74.00045)",,,947 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499281,Sedan,Sedan,,, +01/28/2022,23:42,MANHATTAN,10022,40.757122,-73.97192,"(40.757122, -73.97192)",EAST 51 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4498112,,,,, +01/29/2022,11:30,,,40.812263,-73.92059,"(40.812263, -73.92059)",WILLIS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498381,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,21:58,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unsafe Speed,,,,4498942,Taxi,Sedan,,, +01/30/2022,14:25,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4499321,Sedan,Sedan,,, +01/28/2022,13:14,MANHATTAN,10039,40.82449,-73.94073,"(40.82449, -73.94073)",,,2777 8 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498751,Sedan,FDNY Fire,,, +01/31/2022,9:34,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498810,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,1:08,,,40.85821,-73.91679,"(40.85821, -73.91679)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498618,Sedan,,,, +04/13/2022,18:00,,,40.70722,-73.78957,"(40.70722, -73.78957)",JAMAICA AVENUE,170 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519856,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,15:55,BRONX,10472,40.826897,-73.88263,"(40.826897, -73.88263)",,,1149 CLOSE AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499035,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,8:28,BROOKLYN,11222,40.723274,-73.937416,"(40.723274, -73.937416)",VANDERVORT AVENUE,ANTHONY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498677,Flat Bed,Box Truck,,, +01/31/2022,1:45,QUEENS,11429,40.706993,-73.74825,"(40.706993, -73.74825)",,,208-21 110 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499398,Sedan,Sedan,,, +01/31/2022,1:55,BROOKLYN,11207,40.66261,-73.881256,"(40.66261, -73.881256)",,,2202 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4499058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/28/2022,9:00,,,40.832916,-73.92939,"(40.832916, -73.92939)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498260,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,4:00,QUEENS,11697,40.560776,-73.91166,"(40.560776, -73.91166)",,,202-20 ROCKAWAY POINT BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498851,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,17:30,BROOKLYN,11203,40.65017,-73.92921,"(40.65017, -73.92921)",SNYDER AVENUE,EAST 51 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4498763,Sedan,Sedan,,, +01/29/2022,17:57,BRONX,10470,40.90121,-73.852135,"(40.90121, -73.852135)",,,4550 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498437,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,12:12,QUEENS,11358,40.751545,-73.803795,"(40.751545, -73.803795)",PIDGEON MEADOW ROAD,LABURNUM AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,14:50,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4498999,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,22:33,QUEENS,11372,,,,34 AVENUE,73 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499228,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,23:40,BROOKLYN,11229,40.613052,-73.94913,"(40.613052, -73.94913)",KINGS HIGHWAY,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4498205,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,17:47,,,40.773006,-73.96033,"(40.773006, -73.96033)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4498590,Sedan,,,, +01/28/2022,17:10,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",BRUCKNER BOULEVARD,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498376,Sedan,PK,,, +01/31/2022,8:58,BROOKLYN,11230,40.619175,-73.97172,"(40.619175, -73.97172)",,,403 AVENUE L,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498969,Pick-up Truck,,,, +01/18/2022,16:34,BROOKLYN,11233,40.68457,-73.925735,"(40.68457, -73.925735)",,,694 HALSEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498288,Sedan,,,, +01/27/2022,17:23,,,,,,DICKINSON AVENUE,VANCORTLANDT PARK WEST,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4498117,Sedan,Bike,,, +01/30/2022,14:40,MANHATTAN,10128,40.78587,-73.95305,"(40.78587, -73.95305)",EAST 95 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499123,Sedan,Bike,,, +01/31/2022,1:50,BROOKLYN,11206,40.701576,-73.94729,"(40.701576, -73.94729)",,,81 GERRY STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4498545,Station Wagon/Sport Utility Vehicle,Bus,,, +01/31/2022,17:05,BROOKLYN,11235,40.58707,-73.95279,"(40.58707, -73.95279)",JEROME AVENUE,SHEEPSHEAD BAY ROAD,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4498983,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan, +11/15/2021,15:44,BRONX,10452,40.83609,-73.92926,"(40.83609, -73.92926)",WEST 166 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498281,Bus,,,, +01/28/2022,18:06,BROOKLYN,11226,40.64944,-73.96308,"(40.64944, -73.96308)",CHURCH AVENUE,EAST 18 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498208,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,5:18,,,40.684006,-74.001656,"(40.684006, -74.001656)",HICKS STREET,UNION STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497985,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/31/2022,11:45,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499414,Van,,,, +01/28/2022,17:35,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",9 AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4498249,Bus,Sedan,,, +01/31/2022,6:50,QUEENS,11423,40.71471,-73.75471,"(40.71471, -73.75471)",FRANCIS LEWIS BOULEVARD,94 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498834,Pick-up Truck,,,, +01/31/2022,17:59,,,40.745613,-73.9462,"(40.745613, -73.9462)",JACKSON AVENUE,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,16:11,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",QUEENS BOULEVARD,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498487,Motorcycle,,,, +01/28/2022,17:20,BRONX,10466,40.892525,-73.85962,"(40.892525, -73.85962)",,,657 EAST 231 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498420,Pick-up Truck,,,, +01/29/2022,9:00,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498413,Van,Bus,,, +01/27/2022,14:22,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4498223,Sedan,Sedan,,, +01/28/2022,23:50,BROOKLYN,11234,40.61199,-73.92498,"(40.61199, -73.92498)",,,2386 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498062,Sedan,,,, +01/28/2022,3:30,BRONX,10461,40.84224,-73.84406,"(40.84224, -73.84406)",WESTCHESTER SQUARE,ROBERTS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498635,Sedan,Sedan,,, +01/31/2022,18:15,BROOKLYN,11201,40.690357,-73.989746,"(40.690357, -73.989746)",SCHERMERHORN STREET,BOERUM PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498905,Sedan,,,, +01/28/2022,16:46,QUEENS,11101,40.749294,-73.942955,"(40.749294, -73.942955)",24 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498149,Sedan,,,, +01/27/2022,19:06,,,,,,WEST 252 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498017,Sedan,Ambulance,,, +01/28/2022,14:05,BRONX,10465,,,,BRUSH AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498640,Pick-up Truck,Sedan,,, +01/22/2022,6:28,,,40.85139,-73.941216,"(40.85139, -73.941216)",HAVEN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498455,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,19:45,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499070,Sedan,,,, +01/28/2022,19:29,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498704,Sedan,Sedan,,, +01/31/2022,23:02,QUEENS,11418,40.692387,-73.84164,"(40.692387, -73.84164)",,,104-20 91 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499021,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,20:31,BROOKLYN,11220,40.631485,-74.01373,"(40.631485, -74.01373)",8 AVENUE,68 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498472,Station Wagon/Sport Utility Vehicle,,,, +01/16/2022,11:00,QUEENS,11434,40.68999,-73.78327,"(40.68999, -73.78327)",LINDEN BOULEVARD,166 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498657,Sedan,,,, +01/25/2022,20:43,QUEENS,11369,40.759026,-73.85805,"(40.759026, -73.85805)",,,32-31 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498408,Sedan,Sedan,,, +01/31/2022,12:30,BROOKLYN,11221,40.687576,-73.92568,"(40.687576, -73.92568)",,,800 MADISON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499202,Sedan,,,, +01/31/2022,11:52,MANHATTAN,10012,40.72543,-73.99678,"(40.72543, -73.99678)",EAST HOUSTON STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4499302,Sedan,Sedan,,, +04/15/2022,19:23,BROOKLYN,11216,40.679485,-73.94682,"(40.679485, -73.94682)",NEW YORK AVENUE,HERKIMER STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unsafe Lane Changing,,,,4519635,Station Wagon/Sport Utility Vehicle,Bike,,, +01/23/2022,20:00,QUEENS,11103,40.766735,-73.91488,"(40.766735, -73.91488)",,,25-53 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498571,Sedan,,,, +01/28/2022,15:44,BROOKLYN,11229,40.602684,-73.94232,"(40.602684, -73.94232)",NOSTRAND AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498144,Sedan,Sedan,,, +01/30/2022,17:12,,,40.734978,-73.8614,"(40.734978, -73.8614)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498513,Sedan,,,, +01/31/2022,22:02,BROOKLYN,11234,40.6238,-73.92351,"(40.6238, -73.92351)",EAST 54 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498927,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,12:30,QUEENS,11691,40.60055,-73.75071,"(40.60055, -73.75071)",,,18-06 GATEWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4498778,Sedan,,,, +01/30/2022,18:37,BRONX,10462,40.837673,-73.84939,"(40.837673, -73.84939)",,,1521 PARKER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498662,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,4:17,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4498645,Sedan,,,, +01/30/2022,0:25,BRONX,10459,40.81632,-73.89622,"(40.81632, -73.89622)",SOUTHERN BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498530,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,15:00,QUEENS,11356,40.785835,-73.850426,"(40.785835, -73.850426)",14 AVENUE,117 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498910,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,2:25,MANHATTAN,10002,40.719482,-73.991295,"(40.719482, -73.991295)",DELANCEY STREET,ELDRIDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498356,Taxi,Sedan,,, +01/27/2022,19:50,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",KINGS HIGHWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498237,Sedan,,,, +01/30/2022,16:30,BROOKLYN,11231,40.67602,-74.001236,"(40.67602, -74.001236)",HAMILTON AVENUE,CLINTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499506,Sedan,,,, +01/31/2022,16:30,,,40.579826,-73.97622,"(40.579826, -73.97622)",SHELL ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4499148,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/29/2022,14:00,BRONX,10467,40.87609,-73.87757,"(40.87609, -73.87757)",,,3260 RESERVOIR OVAL EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4498630,Sedan,,,, +01/28/2022,10:30,,,,,,81 STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498191,Sedan,,,, +01/28/2022,20:00,,,,,,67 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498469,Sedan,,,, +01/28/2022,14:50,,,40.78959,-73.81954,"(40.78959, -73.81954)",147 STREET,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498094,Sedan,Sedan,,, +01/26/2022,8:40,BRONX,10457,40.845894,-73.89853,"(40.845894, -73.89853)",,,480 EAST 176 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498795,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,14:00,BROOKLYN,11208,,,,FORBELL STREET,GLENMORE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499075,Sedan,Garbage or Refuse,,, +01/30/2022,1:40,BRONX,10472,40.826424,-73.85868,"(40.826424, -73.85868)",VIRGINIA AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4498732,Sedan,,,, +01/29/2022,23:20,BRONX,10451,40.823845,-73.919426,"(40.823845, -73.919426)",,,775 CONCOURSE VILLAGE EAST,0,0,0,0,0,0,0,0,Backing Unsafely,Failure to Yield Right-of-Way,,,,4498599,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,15:00,QUEENS,11357,40.78846,-73.815315,"(40.78846, -73.815315)",,,149-28 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498498,Sedan,,,, +01/31/2022,18:48,QUEENS,11361,40.770744,-73.78582,"(40.770744, -73.78582)",204 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498922,Sedan,,,, +11/26/2021,8:48,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",EAST MOUNT EDEN AVENUE,GRAND CONCOURSE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498324,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/28/2022,11:00,MANHATTAN,10019,40.768612,-73.98949,"(40.768612, -73.98949)",,,500 WEST 56 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498105,Taxi,,,, +01/31/2022,15:40,BROOKLYN,11210,40.62677,-73.946884,"(40.62677, -73.946884)",NOSTRAND AVENUE,AVENUE J,,3,0,3,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499163,,,,, +01/31/2022,10:00,BROOKLYN,11206,40.70142,-73.949036,"(40.70142, -73.949036)",,,269 WALLABOUT STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4499002,Station Wagon/Sport Utility Vehicle,Dump,,, +01/30/2022,9:08,,,40.762978,-73.727974,"(40.762978, -73.727974)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498337,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,16:00,BRONX,10453,40.850018,-73.9107,"(40.850018, -73.9107)",WEST 177 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498737,Bus,Sedan,,, +01/23/2022,4:50,QUEENS,11418,40.69957,-73.830696,"(40.69957, -73.830696)",,,87-20 LEFFERTS BOULEVARD,1,0,1,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4498535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,10:58,,,40.714073,-73.95534,"(40.714073, -73.95534)",HAVEMEYER STREET,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498951,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,12:00,,,40.672966,-73.941864,"(40.672966, -73.941864)",PARK PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4498440,Concrete Mixer,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,16:00,,,40.677532,-73.760345,"(40.677532, -73.760345)",CRANDALL AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499243,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,14:24,BROOKLYN,11206,40.69979,-73.950096,"(40.69979, -73.950096)",MARCY AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498806,Sedan,Sedan,,, +01/31/2022,7:10,,,40.894093,-73.86266,"(40.894093, -73.86266)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4498819,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,11:00,QUEENS,11427,40.731842,-73.7571,"(40.731842, -73.7571)",213 STREET,82 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498176,Convertible,,,, +01/26/2022,17:45,BRONX,10459,,,,EAST 161 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4498127,Sedan,,,, +01/31/2022,9:37,MANHATTAN,10007,40.716465,-74.013084,"(40.716465, -74.013084)",WEST STREET,WARREN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499041,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,13:21,,,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4498759,Sedan,Sedan,,, +01/27/2022,17:17,BRONX,10473,40.82073,-73.86779,"(40.82073, -73.86779)",,,1686 LAFAYETTE AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4498030,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,11:00,BROOKLYN,11238,40.682926,-73.9718,"(40.682926, -73.9718)",,,397 CUMBERLAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498507,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,16:04,BRONX,10473,40.822277,-73.86715,"(40.822277, -73.86715)",,,831 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498694,Sedan,Sedan,,, +01/28/2022,20:50,BROOKLYN,11219,40.630756,-74.00942,"(40.630756, -74.00942)",,,971 65 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498539,Taxi,Taxi,,, +01/31/2022,18:10,BROOKLYN,11229,40.598957,-73.955215,"(40.598957, -73.955215)",,,1618 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498987,Sedan,Refrigerated Van,,, +01/30/2022,23:06,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498562,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,6:50,MANHATTAN,10025,40.806705,-73.96486,"(40.806705, -73.96486)",WEST 114 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498838,Sedan,,,, +01/28/2022,0:30,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4498672,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,6:30,,,40.84482,-73.837,"(40.84482, -73.837)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498045,Tractor Truck Diesel,,,, +01/31/2022,3:08,BRONX,10458,40.86609,-73.88268,"(40.86609, -73.88268)",SOUTHERN BOULEVARD,BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498622,Sedan,,,, +01/31/2022,11:00,BRONX,10451,40.814808,-73.92758,"(40.814808, -73.92758)",,,2660 PARK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499011,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +01/28/2022,20:00,BROOKLYN,11203,40.65563,-73.92596,"(40.65563, -73.92596)",EAST 55 STREET,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498277,Sedan,Sedan,Sedan,, +01/28/2022,8:00,,,40.750977,-73.934746,"(40.750977, -73.934746)",NORTHERN BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498000,Sedan,,,, +01/27/2022,9:40,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",GEORGIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499064,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,6:50,BROOKLYN,11236,40.636227,-73.88595,"(40.636227, -73.88595)",SEAVIEW AVENUE,EAST 102 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498855,Sedan,,,, +01/30/2022,11:13,BROOKLYN,11222,40.724773,-73.95033,"(40.724773, -73.95033)",,,584 LEONARD STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4498687,Sedan,Sedan,,, +01/28/2022,23:09,STATEN ISLAND,10310,40.62179,-74.11027,"(40.62179, -74.11027)",BEMENT AVENUE,STARR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498264,Sedan,Sedan,,, +01/31/2022,17:00,MANHATTAN,10003,40.736336,-73.98301,"(40.736336, -73.98301)",,,235 EAST 20 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499181,Sedan,,,, +01/29/2022,19:25,,,40.83142,-73.91831,"(40.83142, -73.91831)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4499341,Station Wagon/Sport Utility Vehicle,Taxi,,, +01/29/2022,10:45,QUEENS,11413,40.657326,-73.755585,"(40.657326, -73.755585)",148 AVENUE,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498132,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,19:30,BROOKLYN,11211,40.71799,-73.945854,"(40.71799, -73.945854)",,,141 FROST STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498689,Sedan,,,, +01/28/2022,11:30,,,40.685196,-73.97829,"(40.685196, -73.97829)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498870,Sedan,Sedan,Sedan,, +01/27/2022,22:30,,,40.725918,-73.89535,"(40.725918, -73.89535)",69 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498396,Sedan,Sedan,,, +01/31/2022,19:53,QUEENS,11368,40.747913,-73.86769,"(40.747913, -73.86769)",,,40-70 97 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498954,Sedan,,,, +01/28/2022,9:23,,,,,,CROSS BAY BOULEVARD,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4498077,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,9:50,,,40.743244,-73.73154,"(40.743244, -73.73154)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,Unspecified,Unspecified,Unspecified,4498309,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +01/27/2022,8:20,BRONX,10472,40.834473,-73.87226,"(40.834473, -73.87226)",,,1691 EAST 174 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499419,Station Wagon/Sport Utility Vehicle,Bus,,, +01/30/2022,21:20,BRONX,10457,40.847324,-73.90375,"(40.847324, -73.90375)",EAST 176 STREET,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498722,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,18:40,,,40.771004,-73.78494,"(40.771004, -73.78494)",32 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499471,Sedan,Sedan,,, +01/28/2022,13:20,BRONX,10470,40.898674,-73.8701,"(40.898674, -73.8701)",,,211 EAST 237 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498391,Sedan,,,, +01/27/2022,9:50,BROOKLYN,11221,40.69069,-73.91621,"(40.69069, -73.91621)",PUTNAM AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499355,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/28/2022,8:00,BROOKLYN,11233,40.684845,-73.92989,"(40.684845, -73.92989)",,,654 HANCOCK STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498245,Sedan,,,, +01/31/2022,14:50,BRONX,10462,40.83553,-73.86317,"(40.83553, -73.86317)",WHITE PLAINS ROAD,WOOD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499095,Sedan,,,, +01/29/2022,15:00,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",EAST 167 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,9:00,,,40.594955,-73.78627,"(40.594955, -73.78627)",BEACH 56 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4498976,Sedan,Bus,,, +01/25/2022,10:51,MANHATTAN,10010,40.736885,-73.978546,"(40.736885, -73.978546)",1 AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,Turning Improperly,,,4498032,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +01/30/2022,15:13,MANHATTAN,10013,40.720146,-74.00296,"(40.720146, -74.00296)",,,326 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499045,Sedan,,,, +01/22/2022,15:15,,,40.612293,-74.03412,"(40.612293, -74.03412)",4 AVENUE,101 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498049,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,7:20,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498181,Taxi,Sedan,,, +01/28/2022,18:58,,,40.67151,-73.76455,"(40.67151, -73.76455)",FARMERS BOULEVARD,140 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4498655,Sedan,Bus,,, +01/28/2022,15:00,BROOKLYN,11215,40.660664,-73.98478,"(40.660664, -73.98478)",,,405 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498159,Sedan,Garbage or Refuse,,, +01/31/2022,7:40,,,40.830067,-73.92915,"(40.830067, -73.92915)",JEROME AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4498774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,15:00,QUEENS,11358,40.760094,-73.79837,"(40.760094, -73.79837)",41 AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498164,Sedan,,,, +01/24/2022,7:33,BRONX,10452,40.8351,-73.919464,"(40.8351, -73.919464)",EAST 167 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498313,Sedan,Bus,,, +01/31/2022,19:35,STATEN ISLAND,10310,40.629128,-74.11471,"(40.629128, -74.11471)",,,767 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499253,Sedan,Station Wagon/Sport Utility Vehicle,HOME MADE,, +01/31/2022,0:15,STATEN ISLAND,10301,40.638958,-74.09768,"(40.638958, -74.09768)",CLINTON AVENUE,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499251,,,,, +01/30/2022,9:20,BRONX,10466,40.89184,-73.834946,"(40.89184, -73.834946)",,,2216 STRANG AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498423,Station Wagon/Sport Utility Vehicle,PK,,, +01/26/2022,1:53,MANHATTAN,10029,40.793777,-73.9459,"(40.793777, -73.9459)",,,124 EAST 108 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4497998,Sedan,Sedan,,, +01/31/2022,18:13,BROOKLYN,11215,40.66803,-73.983955,"(40.66803, -73.983955)",9 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Alcohol Involvement,,,,4499028,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,16:02,QUEENS,11420,40.665665,-73.8203,"(40.665665, -73.8203)",,,121-01 NORTH CONDUIT AVENUE,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4498567,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,11:02,MANHATTAN,10013,40.719208,-73.99552,"(40.719208, -73.99552)",,,118 ELIZABETH STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498352,E-Scooter,,,, +01/29/2022,1:45,,,40.832897,-73.862274,"(40.832897, -73.862274)",WHITE PLAINS ROAD,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4498699,Taxi,Sedan,,, +01/28/2022,21:00,,,40.86341,-73.92314,"(40.86341, -73.92314)",POST AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498484,Convertible,,,, +01/31/2022,8:25,,,40.81977,-73.93673,"(40.81977, -73.93673)",WEST 144 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498823,Ambulance,,,, +01/31/2022,17:00,BROOKLYN,11216,40.675617,-73.9545,"(40.675617, -73.9545)",,,583 SAINT MARKS AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4499442,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,10:00,,,,,,SAINT NICHOLAS TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499362,Sedan,,,, +01/25/2022,17:45,,,40.677048,-73.9387,"(40.677048, -73.9387)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498445,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,22:54,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",SOUTH CONDUIT AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4519245,Sedan,,,, +01/29/2022,12:00,QUEENS,11436,40.67469,-73.79805,"(40.67469, -73.79805)",123 AVENUE,142 PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498320,Sedan,Pick-up Truck,,, +01/30/2022,17:00,BROOKLYN,11208,40.67104,-73.86035,"(40.67104, -73.86035)",,,458 RUBY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499079,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,3:41,QUEENS,11368,40.7461,-73.86823,"(40.7461, -73.86823)",,,42-20 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498452,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,5:25,,,40.70725,-73.958466,"(40.70725, -73.958466)",MARCY AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498558,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,23:34,,,40.827274,-73.904915,"(40.827274, -73.904915)",EAST 166 STREET,BOSTON ROAD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4498934,Sedan,Sedan,Sedan,Sedan, +01/25/2022,21:20,,,40.836895,-73.8736,"(40.836895, -73.8736)",BRONX RIVER PARKWAY,EAST 177 STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4498791,Sedan,Sedan,,, +01/29/2022,0:05,BROOKLYN,11205,40.694263,-73.95235,"(40.694263, -73.95235)",NOSTRAND AVENUE,VERNON AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4498341,Sedan,,,, +01/27/2022,14:00,QUEENS,11378,40.73155,-73.8939,"(40.73155, -73.8939)",,,52-83 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499144,Motorcycle,,,, +01/27/2022,17:40,QUEENS,11435,40.704082,-73.81641,"(40.704082, -73.81641)",138 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4499530,,,,, +01/31/2022,18:35,BROOKLYN,11203,40.651066,-73.944534,"(40.651066, -73.944534)",,,3514 CHURCH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499329,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,22:30,,,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498625,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,11:00,QUEENS,11367,40.727943,-73.83289,"(40.727943, -73.83289)",VANWYCK EXPRESSWAY,69 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499332,Box Truck,Sedan,,, +01/29/2022,21:16,BRONX,10459,40.8205,-73.891075,"(40.8205, -73.891075)",,,925 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4498526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,9:45,STATEN ISLAND,10305,40.591293,-74.07465,"(40.591293, -74.07465)",OLYMPIA BOULEVARD,PEARSALL STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2020,16:50,BRONX,10463,40.88699,-73.90146,"(40.88699, -73.90146)",TIBBETT AVENUE,WEST 240 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498013,Ambulance,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,17:55,BRONX,10472,40.826077,-73.87816,"(40.826077, -73.87816)",,,1528 WATSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498727,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,23:10,BROOKLYN,11205,40.696995,-73.95475,"(40.696995, -73.95475)",WALWORTH STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498318,Sedan,,,, +01/29/2022,4:00,QUEENS,11370,40.76307,-73.88389,"(40.76307, -73.88389)",,,25-07 85 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unsafe Speed,Unspecified,,,4499432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/26/2022,0:00,BROOKLYN,11222,40.72018,-73.94287,"(40.72018, -73.94287)",,,67 HERBERT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498685,Sedan,Tractor Truck Diesel,,, +01/22/2022,20:00,,,40.768124,-73.90383,"(40.768124, -73.90383)",47 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499157,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,18:00,BRONX,10475,40.871857,-73.830315,"(40.871857, -73.830315)",,,120 ALCOTT PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498638,Sedan,,,, +01/31/2022,9:50,BRONX,10451,40.82392,-73.90879,"(40.82392, -73.90879)",,,3244 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499008,Ambulance,Sedan,,, +01/28/2022,23:00,BRONX,10456,40.833405,-73.907166,"(40.833405, -73.907166)",,,420 EAST 169 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498595,Sedan,,,, +01/30/2022,20:30,BROOKLYN,11226,40.65272,-73.94845,"(40.65272, -73.94845)",,,287 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499333,Sedan,,,, +01/29/2022,12:00,BROOKLYN,11209,40.632835,-74.02724,"(40.632835, -74.02724)",3 AVENUE,73 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498136,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,7:30,,,40.71906,-73.812126,"(40.71906, -73.812126)",150 STREET,UNION TURNPIKE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499529,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,8:50,,,40.694374,-73.803764,"(40.694374, -73.803764)",WALTHAM STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4498582,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,12:37,MANHATTAN,10004,40.7067,-74.01605,"(40.7067, -74.01605)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499044,Sedan,,,, +01/27/2022,10:15,BRONX,10474,40.808815,-73.87215,"(40.808815, -73.87215)",,,155 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498847,Sedan,PK,,, +01/27/2022,14:01,MANHATTAN,10022,40.75895,-73.96849,"(40.75895, -73.96849)",3 AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4497993,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,10:40,,,40.824562,-73.87259,"(40.824562, -73.87259)",BRUCKNER BOULEVARD,BRONX RIVER PARKWAY,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,Unspecified,,,4498710,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/28/2022,15:53,QUEENS,11422,40.652313,-73.73688,"(40.652313, -73.73688)",253 STREET,149 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498054,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/19/2022,14:20,BROOKLYN,11236,40.63158,-73.88721,"(40.63158, -73.88721)",,,2115 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498157,Sedan,Pick-up Truck,,, +01/26/2022,19:30,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499091,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,12:40,QUEENS,11691,,,,,,1339 Brunswick ave,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498961,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,11:34,,,40.809563,-73.92923,"(40.809563, -73.92923)",3 AVENUE,EAST 135 STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4498368,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/29/2022,21:45,QUEENS,11101,40.75705,-73.92167,"(40.75705, -73.92167)",34 AVENUE,38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498992,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,21:07,MANHATTAN,10014,40.735794,-74.00156,"(40.735794, -74.00156)",7 AVENUE SOUTH,PERRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498296,Sedan,Sedan,,, +01/29/2022,4:15,BRONX,10466,40.894547,-73.86104,"(40.894547, -73.86104)",,,600 EAST 233 STREET,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4498428,Ambulance,Ambulance,,, +01/30/2022,17:00,,,40.666573,-73.811775,"(40.666573, -73.811775)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498553,Sedan,,,, +01/30/2022,13:00,BROOKLYN,11232,40.65807,-74.00763,"(40.65807, -74.00763)",2 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498577,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,15:00,QUEENS,11368,40.744076,-73.85479,"(40.744076, -73.85479)",,,108-28 51 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499487,Sedan,,,, +01/30/2022,4:23,BRONX,10452,40.84364,-73.91304,"(40.84364, -73.91304)",EAST MOUNT EDEN AVENUE,WALTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498594,,,,, +01/23/2022,20:40,BROOKLYN,11236,40.633675,-73.9161,"(40.633675, -73.9161)",,,7602 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498125,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,9:00,,,40.862312,-73.929436,"(40.862312, -73.929436)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498479,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,13:05,BROOKLYN,11231,40.6784,-73.99161,"(40.6784, -73.99161)",,,46 1 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498025,Stake or Rack,Station Wagon/Sport Utility Vehicle,,, +01/12/2022,9:00,QUEENS,11372,40.752373,-73.87911,"(40.752373, -73.87911)",88 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498859,Sedan,,,, +01/27/2022,16:50,MANHATTAN,10002,40.709206,-73.99607,"(40.709206, -73.99607)",SOUTH STREET,CATHERINE SLIP,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4498842,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,10:30,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499380,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,12:37,BROOKLYN,11249,40.702847,-73.96362,"(40.702847, -73.96362)",,,637 WYTHE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498974,Sedan,,,, +01/31/2022,8:00,BROOKLYN,11235,40.57587,-73.95948,"(40.57587, -73.95948)",CONEY ISLAND AVENUE,BRIGHTWATER COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498828,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,9:00,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",EAST 161 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4498232,Bus,Sedan,,, +01/28/2022,21:21,BRONX,10466,40.88983,-73.84623,"(40.88983, -73.84623)",,,1066 EAST 233 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4498447,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,0:08,,,,,,MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4499156,Sedan,,,, +01/29/2022,1:01,BROOKLYN,11226,40.64663,-73.95566,"(40.64663, -73.95566)",BEDFORD AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498213,Sedan,Tractor Truck Gasoline,,, +01/30/2022,23:48,QUEENS,11373,40.737705,-73.88231,"(40.737705, -73.88231)",QUEENS BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498609,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,3:35,,,40.742676,-73.839516,"(40.742676, -73.839516)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498432,Taxi,,,, +01/30/2022,16:30,,,40.67147,-73.869995,"(40.67147, -73.869995)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499078,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,4:32,BROOKLYN,11218,40.641953,-73.9885,"(40.641953, -73.9885)",12 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498081,Sedan,Sedan,,, +01/29/2022,3:55,QUEENS,11377,40.75429,-73.89735,"(40.75429, -73.89735)",,,69-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499236,Sedan,,,, +01/23/2022,10:27,QUEENS,11367,40.725636,-73.82131,"(40.725636, -73.82131)",,,72-38 MAIN STREET,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4498345,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +01/30/2022,16:30,QUEENS,11418,40.705044,-73.83689,"(40.705044, -73.83689)",,,115-30 CURZON ROAD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498538,Sedan,,,, +01/29/2022,14:07,,,40.728638,-73.88239,"(40.728638, -73.88239)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4498914,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,21:15,BROOKLYN,11216,40.675354,-73.952774,"(40.675354, -73.952774)",ROGERS AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,11:55,,,40.665688,-73.939766,"(40.665688, -73.939766)",CROWN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498069,Sedan,,,, +01/29/2022,13:05,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,,,,,4498464,Sedan,,,, +01/29/2022,5:30,QUEENS,11420,40.67696,-73.81759,"(40.67696, -73.81759)",,,115-25 121 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498185,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,10:30,QUEENS,11434,40.66723,-73.785034,"(40.66723, -73.785034)",NORTH CONDUIT AVENUE,136 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498653,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,19:53,MANHATTAN,10010,40.74244,-73.99168,"(40.74244, -73.99168)",,,71 WEST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499182,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,9:50,BROOKLYN,11249,40.709568,-73.9644,"(40.709568, -73.9644)",,,126 SOUTH 8 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498959,Sedan,,,, +01/24/2022,6:53,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498670,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,15:00,BRONX,10466,40.886295,-73.847916,"(40.886295, -73.847916)",LACONIA AVENUE,EAST 228 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4498886,,,,, +01/30/2022,19:30,,,40.700603,-73.727066,"(40.700603, -73.727066)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498506,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,16:09,,,40.70553,-73.92666,"(40.70553, -73.92666)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,9:35,BROOKLYN,11201,,,,,,299 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4498477,Sedan,Bus,,, +01/27/2022,17:00,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498742,Sedan,Sedan,,, +01/31/2022,21:37,BROOKLYN,11205,40.69518,-73.956276,"(40.69518, -73.956276)",,,870 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4499325,Sedan,,,, +01/31/2022,17:28,MANHATTAN,10025,40.794163,-73.972755,"(40.794163, -73.972755)",,,250 WEST 95 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498874,Bike,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:25,BRONX,10460,40.835884,-73.88341,"(40.835884, -73.88341)",EAST 174 STREET,BOONE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4498200,PK,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,6:45,QUEENS,11373,40.72616,-73.886154,"(40.72616, -73.886154)",75 STREET,58 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499139,Taxi,,,, +01/27/2022,16:30,QUEENS,11373,40.744034,-73.890884,"(40.744034, -73.890884)",,,41-59 74 STREET,3,0,0,0,0,0,3,0,Unsafe Speed,Backing Unsafely,Unspecified,Unspecified,Unspecified,4498086,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/02/2021,18:15,,,,,,CENTRAL PARK WEST,,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4453444,Sedan,,,, +08/10/2021,12:10,MANHATTAN,10026,40.803215,-73.95254,"(40.803215, -73.95254)",WEST 116 STREET,7 AVENUE,,6,0,0,0,0,0,6,0,Failure to Yield Right-of-Way,Unspecified,,,,4450360,Sedan,Sedan,,, +10/21/2021,22:15,,,40.668625,-73.738235,"(40.668625, -73.738235)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4469627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +10/22/2021,2:42,,,,,,WEST 204 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4476175,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,17:14,QUEENS,11385,,,,DECATUR STREET,CYPRESS AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4469084,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/04/2021,22:30,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,WEST 180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476171,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/30/2021,10:00,QUEENS,11411,40.688175,-73.73165,"(40.688175, -73.73165)",,,119-22 232 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4472249,Station Wagon/Sport Utility Vehicle,,,, +01/14/2022,13:40,MANHATTAN,10001,40.75024,-73.998604,"(40.75024, -73.998604)",WEST 29 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499256,Van,Bike,,, +10/27/2021,11:50,,,40.665733,-73.755585,"(40.665733, -73.755585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4473155,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,17:03,MANHATTAN,10033,40.852726,-73.93443,"(40.852726, -73.93443)",BROADWAY,WEST 185 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476179,Van,E-Scooter,,, +10/15/2021,17:12,,,,,,CONEY ISLAND AVENUE,DITMAS AVENUE,,1,1,0,0,0,0,1,1,Lost Consciousness,Unspecified,,,,4467708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,23:25,MANHATTAN,10022,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4468944,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +11/01/2021,13:27,QUEENS,11413,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4473086,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,21:44,QUEENS,11411,40.69787,-73.743034,"(40.69787, -73.743034)",116 AVENUE,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4471580,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,14:15,,,40.694496,-73.91482,"(40.694496, -73.91482)",WILSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4476177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/12/2021,4:43,MANHATTAN,10013,40.722553,-74.00141,"(40.722553, -74.00141)",BROOME STREET,GREENE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4485518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,1:45,BRONX,10467,40.875328,-73.869225,"(40.875328, -73.869225)",BARKER AVENUE,MAGENTA STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4485982,Sedan,Sedan,Sedan,, +12/12/2021,9:21,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486024,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,21:00,,,40.901726,-73.90604,"(40.901726, -73.90604)",WEST 254 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486501,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,12:01,,,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,12:25,,,40.62435,-74.13927,"(40.62435, -74.13927)",,,1520 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,12:45,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4485874,Station Wagon/Sport Utility Vehicle,,,, +12/02/2021,15:54,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4486597,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,19:25,BRONX,10470,40.8995,-73.857,"(40.8995, -73.857)",CARPENTER AVENUE,NEREID AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4485995,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,9:35,BROOKLYN,11215,40.671177,-73.9747,"(40.671177, -73.9747)",8 AVENUE,GARFIELD PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4485770,Sedan,Armored Truck,,, +12/12/2021,6:45,QUEENS,11411,40.695286,-73.73194,"(40.695286, -73.73194)",,,115-99 228 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4485658,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,0:10,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4486126,Sedan,Sedan,,, +12/12/2021,6:00,,,40.87316,-73.87476,"(40.87316, -73.87476)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486361,Taxi,,,, +11/10/2021,20:40,BROOKLYN,11211,40.707523,-73.96115,"(40.707523, -73.96115)",DIVISION AVENUE,ROEBLING STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476181,Sedan,E-Scooter,,, +11/08/2021,9:15,QUEENS,11358,40.75934,-73.79417,"(40.75934, -73.79417)",,,40-40 172 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475387,Sedan,,,, +11/08/2021,14:05,BROOKLYN,11230,40.628273,-73.97266,"(40.628273, -73.97266)",EAST 5 STREET,WALSH COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475517,Sedan,,,, +11/08/2021,17:07,BROOKLYN,11215,40.676147,-73.98391,"(40.676147, -73.98391)",4 AVENUE,CARROLL STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,Unspecified,,,4475437,Sedan,E-Bike,Sedan,, +11/07/2021,2:50,BROOKLYN,11212,40.65418,-73.91072,"(40.65418, -73.91072)",LINDEN BOULEVARD,AMBOY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475945,Sedan,,,, +11/08/2021,22:00,MANHATTAN,10003,40.737915,-73.99223,"(40.737915, -73.99223)",EAST 17 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475904,Sedan,Sedan,,, +11/08/2021,0:40,MANHATTAN,10011,,,,,,89 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4474968,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,8:58,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",BRUCKNER BOULEVARD,EAST 140 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475413,Station Wagon/Sport Utility Vehicle,Van,,, +11/08/2021,15:50,QUEENS,11416,40.685513,-73.84162,"(40.685513, -73.84162)",101 STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475585,Sedan,Sedan,,, +11/08/2021,8:53,,,40.72543,-73.99678,"(40.72543, -73.99678)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475460,Hopper,Sedan,,, +11/04/2021,21:16,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4475866,Sedan,Box Truck,,, +11/08/2021,19:40,QUEENS,11432,40.707066,-73.796936,"(40.707066, -73.796936)",,,89-24 164 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476023,Sedan,Sedan,,, +11/08/2021,1:48,BROOKLYN,11220,40.634468,-74.01423,"(40.634468, -74.01423)",,,6402 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475070,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,19:13,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475466,Flat Bed,Sedan,,, +11/02/2021,14:00,BROOKLYN,11212,40.66546,-73.91453,"(40.66546, -73.91453)",,,191 HERZL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475940,Sedan,,,, +10/31/2021,5:30,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4476000,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/08/2021,8:30,QUEENS,11423,40.71433,-73.755585,"(40.71433, -73.755585)",205 STREET,94 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4475740,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,5:58,QUEENS,11372,40.74744,-73.885796,"(40.74744, -73.885796)",80 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4475169,Sedan,,,, +11/08/2021,16:22,BROOKLYN,11205,40.690796,-73.95637,"(40.690796, -73.95637)",DE KALB AVENUE,SKILLMAN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4475368,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/08/2021,12:25,,,40.846577,-73.913155,"(40.846577, -73.913155)",CLIFFORD PLACE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475529,Pickup with mounted Camper,Sedan,,, +11/08/2021,4:14,,,40.681137,-73.95567,"(40.681137, -73.95567)",FULTON STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475550,Taxi,Taxi,,, +11/08/2021,22:50,BRONX,10457,40.839676,-73.90011,"(40.839676, -73.90011)",3 AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475595,Taxi,Sedan,,, +11/08/2021,22:00,BRONX,10472,40.832737,-73.874435,"(40.832737, -73.874435)",,,1333 HARROD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475632,Sedan,Sedan,Sedan,, +11/08/2021,0:54,BROOKLYN,11208,40.6664,-73.871605,"(40.6664, -73.871605)",,,525 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475314,Sedan,Sedan,,, +11/08/2021,8:30,BROOKLYN,11222,40.723183,-73.94315,"(40.723183, -73.94315)",NORTH HENRY STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475240,Sedan,,,, +11/05/2021,7:50,,,40.690918,-73.85217,"(40.690918, -73.85217)",92 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4476068,Sedan,,,, +11/03/2021,13:06,MANHATTAN,10011,40.736355,-73.99759,"(40.736355, -73.99759)",,,495 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4476133,Bike,,,, +11/08/2021,8:45,BROOKLYN,11215,40.674778,-73.9763,"(40.674778, -73.9763)",,,794 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475297,Station Wagon/Sport Utility Vehicle,Van,,, +11/08/2021,7:00,QUEENS,11419,40.692192,-73.83459,"(40.692192, -73.83459)",,,111-16 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4475243,Sedan,Sedan,,, +11/03/2021,23:36,BROOKLYN,11206,40.700527,-73.94161,"(40.700527, -73.94161)",,,760 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475973,Ambulance,Ambulance,,, +11/08/2021,17:45,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475362,Sedan,Sedan,Sedan,, +11/08/2021,5:20,MANHATTAN,10035,40.79989,-73.93859,"(40.79989, -73.93859)",EAST 119 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4475194,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +11/08/2021,20:00,,,40.759525,-73.99925,"(40.759525, -73.99925)",11 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475629,Sedan,Pick-up Truck,,, +11/08/2021,13:23,BRONX,10474,40.81651,-73.88987,"(40.81651, -73.88987)",LAFAYETTE AVENUE,BARRETTO STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4475452,Sedan,,,, +11/08/2021,14:46,,,40.859543,-73.927986,"(40.859543, -73.927986)",BOGARDUS PLACE,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing or Lane Usage Improper,,,,4475478,Bus,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,12:05,BROOKLYN,11233,40.67843,-73.91357,"(40.67843, -73.91357)",FULTON STREET,BOYLAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475683,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,16:55,BRONX,10457,40.84664,-73.90469,"(40.84664, -73.90469)",EAST 175 STREET,CLAY AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475557,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,17:50,,,40.739143,-73.90109,"(40.739143, -73.90109)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4475666,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/08/2021,8:45,BRONX,10465,40.828518,-73.84119,"(40.828518, -73.84119)",BRUSH AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475223,Sedan,Bus,,, +11/08/2021,7:41,BROOKLYN,11207,40.672234,-73.90235,"(40.672234, -73.90235)",,,228 GLENMORE AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4475329,Sedan,Sedan,,, +11/08/2021,16:45,,,40.883606,-73.91558,"(40.883606, -73.91558)",WEST 231 STREET,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475421,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,0:00,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4476054,Sedan,Sedan,Sedan,, +11/08/2021,19:18,BRONX,10456,40.830353,-73.90347,"(40.830353, -73.90347)",EAST 168 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475549,Taxi,Sedan,,, +11/07/2021,15:00,,,40.849804,-73.92033,"(40.849804, -73.92033)",POPHAM AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475883,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,16:16,BROOKLYN,11213,40.678547,-73.92982,"(40.678547, -73.92982)",UTICA AVENUE,HERKIMER STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476069,Sedan,,,, +11/08/2021,19:25,,,,,,32 AVENUE,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,7:00,BROOKLYN,11236,40.630943,-73.889244,"(40.630943, -73.889244)",CANARSIE ROAD,SEAVIEW COURT,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4475398,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,19:27,BROOKLYN,11213,40.679367,-73.931335,"(40.679367, -73.931335)",FULTON STREET,STUYVESANT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475987,Sedan,E-Bike,,, +11/08/2021,11:45,MANHATTAN,10027,40.812836,-73.94377,"(40.812836, -73.94377)",,,151 WEST 132 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475269,Sedan,Sedan,,, +11/08/2021,18:20,BRONX,10468,40.859142,-73.90345,"(40.859142, -73.90345)",,,2301 JEROME AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475863,Sedan,Sedan,,, +11/08/2021,8:20,,,40.69936,-73.931564,"(40.69936, -73.931564)",JEFFERSON STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475573,Sedan,,,, +11/08/2021,0:00,MANHATTAN,10017,40.753384,-73.978584,"(40.753384, -73.978584)",,,40 EAST 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475609,Taxi,Bike,,, +11/08/2021,8:45,,,40.704212,-74.0088,"(40.704212, -74.0088)",WATER STREET,OLD SLIP,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475848,Sedan,,,, +10/22/2021,17:55,MANHATTAN,10002,40.716923,-73.98322,"(40.716923, -73.98322)",DELANCEY STREET,PITT STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475954,Sedan,Bike,,, +11/08/2021,9:30,,,40.609943,-73.955605,"(40.609943, -73.955605)",EAST 18 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475444,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,5:18,,,40.68064,-73.95338,"(40.68064, -73.95338)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4475917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,15:00,BROOKLYN,11201,40.68716,-73.995056,"(40.68716, -73.995056)",,,230 WARREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475467,Sedan,Box Truck,,, +11/08/2021,16:50,BROOKLYN,11228,40.610157,-74.01203,"(40.610157, -74.01203)",BAY 8 STREET,BENSON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475406,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,11:15,QUEENS,11102,40.771797,-73.9305,"(40.771797, -73.9305)",,,29-17 12 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475542,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,21:22,BROOKLYN,11236,40.64837,-73.91128,"(40.64837, -73.91128)",,,808 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498994,Sedan,Dump,,, +11/08/2021,16:40,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475376,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/27/2021,17:56,MANHATTAN,10026,40.803116,-73.95633,"(40.803116, -73.95633)",8 AVENUE,WEST 114 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475872,Sedan,,,, +11/06/2021,10:00,STATEN ISLAND,10312,40.55609,-74.1688,"(40.55609, -74.1688)",,,3377 RICHMOND AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4476079,Sedan,,,, +11/08/2021,17:35,BRONX,10468,40.875587,-73.89408,"(40.875587, -73.89408)",GOULDEN AVENUE,WEST BEDFORD PARK BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4475504,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/08/2021,13:15,BRONX,10451,40.816772,-73.92043,"(40.816772, -73.92043)",,,322 EAST 149 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4475415,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/08/2021,14:50,BROOKLYN,11218,40.640316,-73.97907,"(40.640316, -73.97907)",AVENUE C,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475508,Bus,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,21:45,,,40.74463,-73.90263,"(40.74463, -73.90263)",WOODSIDE AVENUE,62 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475461,Sedan,,,, +11/04/2021,21:06,BRONX,10465,40.834152,-73.81749,"(40.834152, -73.81749)",BARKLEY AVENUE,DEAN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4475930,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,0:01,BROOKLYN,11249,40.70279,-73.96343,"(40.70279, -73.96343)",WYTHE AVENUE,RODNEY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4474977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,14:20,QUEENS,11379,40.711246,-73.87095,"(40.711246, -73.87095)",80 STREET,68 AVENUE,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4475994,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,15:04,,,40.65543,-74.003265,"(40.65543, -74.003265)",4 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475394,Sedan,Bus,,, +11/08/2021,19:33,,,40.764053,-73.96476,"(40.764053, -73.96476)",EAST 63 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475792,Station Wagon/Sport Utility Vehicle,Bike,,, +10/26/2021,20:44,,,,,,FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4476076,Sedan,,,, +11/08/2021,20:18,BRONX,10451,40.818012,-73.92519,"(40.818012, -73.92519)",EAST 149 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475899,Sedan,,,, +11/08/2021,5:50,MANHATTAN,10016,40.74994,-73.98225,"(40.74994, -73.98225)",,,12 EAST 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475133,Sedan,,,, +10/24/2021,21:00,BROOKLYN,11233,,,,RALPH AVENUE,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475944,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,17:25,QUEENS,11422,40.65732,-73.738716,"(40.65732, -73.738716)",147 AVENUE,249 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4475375,Station Wagon/Sport Utility Vehicle,Bike,,, +11/08/2021,10:55,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475463,Pallet,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,12:38,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",RUST STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476004,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,19:09,BROOKLYN,11205,40.698048,-73.97579,"(40.698048, -73.97579)",FLUSHING AVENUE,NORTH OXFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475407,Ambulance,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,16:00,,,40.725975,-73.7575,"(40.725975, -73.7575)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4475724,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/30/2021,7:00,,,,,,,,546 GULF AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4475871,Sedan,,,, +11/08/2021,12:48,BROOKLYN,11215,40.667286,-73.97891,"(40.667286, -73.97891)",,,522 7 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475438,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/17/2021,23:21,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",3 AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476142,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,14:40,BROOKLYN,11238,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475980,Sedan,Sedan,,, +11/08/2021,11:30,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475268,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,12:20,BROOKLYN,11238,40.68443,-73.9661,"(40.68443, -73.9661)",GATES AVENUE,WAVERLY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475303,Station Wagon/Sport Utility Vehicle,Van,,, +11/08/2021,10:00,,,40.687477,-73.75834,"(40.687477, -73.75834)",120 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475569,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,5:30,BROOKLYN,11218,40.64538,-73.98625,"(40.64538, -73.98625)",,,3475 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476115,Sedan,,,, +11/08/2021,21:10,BROOKLYN,11234,40.63413,-73.928505,"(40.63413, -73.928505)",KINGS HIGHWAY,UTICA AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475388,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,14:29,QUEENS,11433,40.694534,-73.78622,"(40.694534, -73.78622)",,,165-99 110 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475672,Sedan,Sedan,,, +10/21/2021,14:45,BRONX,10457,,,,,,601 EAST 178 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476020,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,8:10,,,40.58679,-74.15903,"(40.58679, -74.15903)",NOME AVENUE,ROCKNE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475226,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,10:28,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475516,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,13:00,,,40.70718,-73.92107,"(40.70718, -73.92107)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475574,Sedan,Bike,,, +11/08/2021,8:37,MANHATTAN,10017,40.752377,-73.97035,"(40.752377, -73.97035)",2 AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475286,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,10:40,BROOKLYN,11204,40.61824,-73.98408,"(40.61824, -73.98408)",20 AVENUE,62 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475418,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,3:21,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475887,Box Truck,Sedan,,, +11/04/2021,18:14,,,40.83089,-73.941376,"(40.83089, -73.941376)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475952,Sedan,Sedan,,, +11/08/2021,8:10,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",SARATOGA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475684,Sedan,Truck,,, +11/08/2021,18:06,MANHATTAN,10029,40.796005,-73.93542,"(40.796005, -73.93542)",EAST 116 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4475381,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,10:13,QUEENS,11414,40.656834,-73.841286,"(40.656834, -73.841286)",,,160-12 91 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475431,Sedan,Sedan,,, +11/01/2021,10:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476057,Sedan,Sedan,,, +11/08/2021,10:50,BROOKLYN,11203,40.637455,-73.92886,"(40.637455, -73.92886)",FARRAGUT ROAD,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4475875,Sedan,Sedan,Sedan,Van, +11/08/2021,15:00,QUEENS,11691,40.596085,-73.76216,"(40.596085, -73.76216)",SEAGIRT BOULEVARD,BEACH 29 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475556,Bus,,,, +11/08/2021,4:11,QUEENS,11417,40.682415,-73.83617,"(40.682415, -73.83617)",LIBERTY AVENUE,105 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475153,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,15:50,STATEN ISLAND,10304,40.629314,-74.08521,"(40.629314, -74.08521)",LOUIS STREET,SUNRISE TERRACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475658,Sedan,Sedan,,, +11/08/2021,17:37,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",4 AVENUE,39 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475363,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,22:19,QUEENS,11378,40.732147,-73.89225,"(40.732147, -73.89225)",,,52-65 72 STREET,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4475582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,16:55,,,40.84664,-73.90469,"(40.84664, -73.90469)",EAST 175 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475526,Station Wagon/Sport Utility Vehicle,Bus,,, +11/08/2021,13:15,MANHATTAN,10075,40.77496,-73.9589,"(40.77496, -73.9589)",EAST 79 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475447,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,18:00,BRONX,10466,40.889244,-73.85453,"(40.889244, -73.85453)",,,853 EAST 229 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475963,Sedan,,,, +09/03/2021,10:11,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4453675,Sedan,,,, +11/08/2021,23:28,,,40.7266,-74.00744,"(40.7266, -74.00744)",HUDSON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475476,Sedan,Sedan,Tractor Truck Diesel,, +11/08/2021,4:40,BRONX,10457,40.846783,-73.907394,"(40.846783, -73.907394)",WEEKS AVENUE,EAST 175 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,17:50,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4475397,Sedan,Sedan,,, +11/08/2021,20:30,BROOKLYN,11236,40.64433,-73.919914,"(40.64433, -73.919914)",RALPH AVENUE,CANARSIE LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475675,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/08/2021,23:28,MANHATTAN,10012,40.72606,-74.0027,"(40.72606, -74.0027)",,,119 SULLIVAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475849,Sedan,Sedan,,, +11/08/2021,21:00,QUEENS,11419,40.69142,-73.811745,"(40.69142, -73.811745)",,,103-31 135 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475430,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,16:44,BROOKLYN,11205,40.697884,-73.97182,"(40.697884, -73.97182)",FLUSHING AVENUE,CLERMONT AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475589,Station Wagon/Sport Utility Vehicle,Bike,,, +11/08/2021,8:41,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HILLSIDE AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4475186,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,14:49,,,40.633644,-74.14215,"(40.633644, -74.14215)",SAINT JOSEPHS AVENUE,INNIS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475497,Pick-up Truck,Sedan,,, +11/08/2021,8:53,MANHATTAN,10035,40.802338,-73.93389,"(40.802338, -73.93389)",,,2425 2 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4475307,Sedan,Sedan,,, +11/08/2021,12:27,BROOKLYN,11218,40.638897,-73.96982,"(40.638897, -73.96982)",EAST 9 STREET,CORTELYOU ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475509,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,18:28,MANHATTAN,10017,40.7501,-73.974945,"(40.7501, -73.974945)",3 AVENUE,EAST 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475392,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,19:00,MANHATTAN,10033,40.855923,-73.937744,"(40.855923, -73.937744)",,,200 CABRINI BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475495,Sedan,Pick-up Truck,,, +11/06/2021,10:53,MANHATTAN,10011,40.74347,-74.00724,"(40.74347, -74.00724)",WEST 16 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4475916,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,17:57,,,40.715443,-73.95185,"(40.715443, -73.95185)",MEEKER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475443,Sedan,Sedan,,, +10/22/2021,0:30,,,,,,2 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4475933,Taxi,Sedan,,, +11/08/2021,0:30,,,40.666534,-73.80995,"(40.666534, -73.80995)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4475005,Sedan,Sedan,,, +11/07/2021,9:50,BRONX,10461,40.85226,-73.852905,"(40.85226, -73.852905)",WILLIAMSBRIDGE ROAD,RHINELANDER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,17:44,BROOKLYN,11223,40.59034,-73.972084,"(40.59034, -73.972084)",WEST 2 STREET,AVENUE X,,3,0,1,0,0,0,2,0,Brakes Defective,Unspecified,,,,4475788,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,14:50,BRONX,10459,40.818798,-73.89213,"(40.818798, -73.89213)",BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476126,Bus,Taxi,,, +11/08/2021,21:30,QUEENS,11369,40.76276,-73.87393,"(40.76276, -73.87393)",,,95-20 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,,,,,,4475579,,,,, +01/18/2022,7:00,BROOKLYN,11203,40.66247,-73.936005,"(40.66247, -73.936005)",,,806 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499541,Sedan,,,, +11/08/2021,7:45,,,,,,MIDLAND PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475292,Sedan,Sedan,,, +11/08/2021,17:22,QUEENS,11101,40.753304,-73.912575,"(40.753304, -73.912575)",NORTHERN BOULEVARD,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475543,Sedan,Sedan,,, +11/05/2021,6:45,QUEENS,11385,40.707333,-73.90336,"(40.707333, -73.90336)",,,66-11 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475991,Sedan,Sedan,Sedan,, +11/08/2021,8:30,BROOKLYN,11234,40.592167,-73.90815,"(40.592167, -73.90815)",,,6000 SHORE PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475328,Sedan,Sedan,,, +11/08/2021,9:00,,,40.660362,-73.77553,"(40.660362, -73.77553)",NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475570,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,16:31,,,40.796112,-73.945564,"(40.796112, -73.945564)",EAST 111 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4476036,Sedan,Bus,,, +11/08/2021,18:20,BROOKLYN,11213,40.667725,-73.929634,"(40.667725, -73.929634)",,,1760 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475379,Sedan,,,, +11/08/2021,14:20,STATEN ISLAND,10304,40.596127,-74.110794,"(40.596127, -74.110794)",TODT HILL ROAD,HELENA ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475610,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,18:50,QUEENS,11413,40.66975,-73.74542,"(40.66975, -73.74542)",139 AVENUE,229 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476091,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,17:00,MANHATTAN,10033,40.846622,-73.93732,"(40.846622, -73.93732)",WEST 176 STREET,WADSWORTH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475544,Motorcycle,,,, +11/08/2021,18:45,BROOKLYN,11218,40.640915,-73.97365,"(40.640915, -73.97365)",OCEAN PARKWAY,AVENUE C,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4475597,Taxi,Sedan,Sedan,, +11/08/2021,16:17,QUEENS,11419,40.694317,-73.82036,"(40.694317, -73.82036)",95 AVENUE,127 STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4475670,Sedan,,,, +11/08/2021,1:40,,,40.668655,-73.88929,"(40.668655, -73.88929)",BLAKE AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4475227,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,11:04,,,40.62466,-74.17856,"(40.62466, -74.17856)",GULF AVENUE,FOREST AVENUE,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4475316,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,11:49,,,40.71412,-73.83152,"(40.71412, -73.83152)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476062,Sedan,,,, +10/28/2021,18:34,,,40.617054,-74.035934,"(40.617054, -74.035934)",96 STREET,MARINE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476071,Sedan,,,, +11/08/2021,6:30,,,40.782993,-73.79934,"(40.782993, -73.79934)",17 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475372,Sedan,,,, +11/08/2021,20:20,,,40.688766,-73.99907,"(40.688766, -73.99907)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475464,Sedan,Chassis Cab,,, +11/03/2021,22:50,QUEENS,11429,40.71532,-73.74273,"(40.71532, -73.74273)",,,216-11 HEMPSTEAD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476043,Sedan,Sedan,Sedan,, +11/08/2021,19:00,QUEENS,11104,40.74721,-73.92359,"(40.74721, -73.92359)",SKILLMAN AVENUE,40 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475759,Sedan,,,, +11/05/2021,22:37,BROOKLYN,11221,40.685764,-73.9415,"(40.685764, -73.9415)",THROOP AVENUE,MADISON STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4475979,E-Bike,E-Scooter,,, +11/08/2021,6:00,,,40.870922,-73.91792,"(40.870922, -73.91792)",WEST 215 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475253,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,17:56,BROOKLYN,11236,40.63496,-73.892365,"(40.63496, -73.892365)",EAST 96 STREET,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475389,Sedan,,,, +11/08/2021,0:05,QUEENS,11421,40.68781,-73.85718,"(40.68781, -73.85718)",,,85-18 91 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4475179,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,9:45,,,40.821144,-73.8889,"(40.821144, -73.8889)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475364,Station Wagon/Sport Utility Vehicle,Bus,,, +11/08/2021,20:27,,,40.83936,-73.87281,"(40.83936, -73.87281)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475536,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,0:00,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475358,Sedan,,,, +11/08/2021,18:47,MANHATTAN,10037,40.81685,-73.939476,"(40.81685, -73.939476)",,,70 WEST 139 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4475911,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/08/2021,16:20,STATEN ISLAND,10305,,,,FATHER CAPODANNO BLVD,ROBIN ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475615,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,17:28,BROOKLYN,11204,40.61347,-73.98546,"(40.61347, -73.98546)",21 AVENUE,68 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475408,Sedan,E-Scooter,,, +11/08/2021,17:54,,,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475563,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,6:55,,,40.607212,-74.07682,"(40.607212, -74.07682)",HYLAN BOULEVARD,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4475656,Sedan,,,, +11/08/2021,8:05,MANHATTAN,10002,40.718143,-73.993835,"(40.718143, -73.993835)",CHRYSTIE STREET,GRAND STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475588,Sedan,E-Scooter,,, +11/08/2021,5:00,BRONX,10474,40.808815,-73.87215,"(40.808815, -73.87215)",,,155 FOOD CENTER DRIVE,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475456,Box Truck,Bike,,, +11/02/2021,21:45,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4475870,Sedan,Garbage or Refuse,,, +11/08/2021,10:42,STATEN ISLAND,10305,40.604397,-74.069,"(40.604397, -74.069)",FINGERBOARD ROAD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4476018,Station Wagon/Sport Utility Vehicle,PK,,, +11/08/2021,15:59,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475401,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,21:15,BROOKLYN,11224,40.576042,-73.99008,"(40.576042, -73.99008)",MERMAID AVENUE,WEST 23 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,Unspecified,,,4475890,E-Bike,Sedan,Sedan,, +11/08/2021,23:01,BROOKLYN,11225,40.6689,-73.95862,"(40.6689, -73.95862)",FRANKLIN AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4475396,Sedan,Sedan,Sedan,, +11/08/2021,5:55,,,,,,ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,6:40,MANHATTAN,10027,40.80885,-73.95404,"(40.80885, -73.95404)",WEST 122 STREET,MANHATTAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475935,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,12:51,BROOKLYN,11214,40.607517,-74.00169,"(40.607517, -74.00169)",,,8501 NEW UTRECHT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475304,Bike,,,, +11/08/2021,11:40,BROOKLYN,11206,40.707066,-73.9338,"(40.707066, -73.9338)",BOERUM STREET,BOGART STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475433,Sedan,Box Truck,,, +11/07/2021,2:18,BRONX,10461,40.84188,-73.843636,"(40.84188, -73.843636)",,,47 WESTCHESTER SQUARE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476148,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,6:50,BROOKLYN,11225,40.662872,-73.94559,"(40.662872, -73.94559)",,,491 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476005,Sedan,,,, +11/08/2021,15:00,QUEENS,11106,40.76131,-73.931915,"(40.76131, -73.931915)",,,34-09 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475820,Sedan,,,, +11/08/2021,10:55,BROOKLYN,11211,40.709946,-73.955505,"(40.709946, -73.955505)",RODNEY STREET,SOUTH 3 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4475439,Bike,Sedan,,, +10/28/2021,20:00,,,40.725983,-73.72421,"(40.725983, -73.72421)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4471884,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,14:20,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475521,Sedan,moped,,, +11/08/2021,18:30,,,40.775246,-73.94763,"(40.775246, -73.94763)",EAST 85 STREET,,,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4475851,Sedan,Bike,,, +11/08/2021,20:40,,,40.81058,-73.92785,"(40.81058, -73.92785)",3 AVENUE,EAST 137 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4475417,Sedan,,,, +11/08/2021,20:15,,,40.79275,-73.97132,"(40.79275, -73.97132)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,9:11,BRONX,10462,40.850086,-73.865005,"(40.850086, -73.865005)",WALLACE AVENUE,BRONXDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475921,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,9:19,MANHATTAN,10031,40.820297,-73.95349,"(40.820297, -73.95349)",,,530 WEST 136 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475951,Sedan,,,, +11/08/2021,17:34,BRONX,10457,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4475554,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,12:50,BROOKLYN,11236,40.6537,-73.90665,"(40.6537, -73.90665)",,,1055 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475685,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/08/2021,12:46,MANHATTAN,10028,40.77882,-73.953995,"(40.77882, -73.953995)",EAST 86 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475446,Station Wagon/Sport Utility Vehicle,School Bus,,, +11/08/2021,12:07,BRONX,10458,40.86609,-73.88268,"(40.86609, -73.88268)",BEDFORD PARK BOULEVARD,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475502,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,17:55,,,40.687126,-73.993614,"(40.687126, -73.993614)",COURT STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476035,Sedan,,,, +11/08/2021,15:13,,,40.640015,-73.92575,"(40.640015, -73.92575)",KINGS HIGHWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475874,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +11/08/2021,17:20,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4476163,Sedan,Sedan,Bus,, +11/08/2021,15:55,BROOKLYN,11218,40.640377,-73.978584,"(40.640377, -73.978584)",,,117 AVENUE C,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475510,Van,Bike,Sedan,, +11/08/2021,20:45,MANHATTAN,10029,40.787117,-73.94793,"(40.787117, -73.94793)",3 AVENUE,EAST 99 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4476127,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,8:47,,,40.583534,-73.984184,"(40.583534, -73.984184)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475877,Pick-up Truck,Sedan,Bus,, +11/08/2021,4:48,BRONX,10454,40.804592,-73.91906,"(40.804592, -73.91906)",MAJOR DEEGAN EXPRESSWAY,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing or Lane Usage Improper,,,,4475046,Sedan,Tractor Truck Diesel,,, +10/01/2021,0:00,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475998,Sedan,Sedan,,, +11/08/2021,12:59,BRONX,10469,40.87126,-73.84992,"(40.87126, -73.84992)",BOUCK AVENUE,BURKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475923,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,8:24,BRONX,10471,40.901062,-73.89703,"(40.901062, -73.89703)",,,201 WEST 254 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475400,Bus,Sedan,Station Wagon/Sport Utility Vehicle,, +11/08/2021,8:51,QUEENS,11379,40.723858,-73.876045,"(40.723858, -73.876045)",62 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475580,Sedan,Sedan,,, +11/08/2021,8:41,QUEENS,11367,40.7158,-73.824486,"(40.7158, -73.824486)",UNION TURNPIKE,134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475293,Sedan,,,, +11/08/2021,18:00,,,40.70029,-73.92904,"(40.70029, -73.92904)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475571,Sedan,,,, +11/08/2021,14:48,,,40.675312,-73.777145,"(40.675312, -73.777145)",BREWER BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475959,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,18:20,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",AMSTERDAM AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4475838,Sedan,Sedan,,, +11/08/2021,8:30,BRONX,10459,40.820576,-73.893135,"(40.820576, -73.893135)",,,928 SIMPSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475454,Bus,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,15:25,MANHATTAN,10019,40.762062,-73.983635,"(40.762062, -73.983635)",WEST 51 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475475,Sedan,Tow Truck / Wrecker,,, +11/08/2021,21:44,BROOKLYN,11203,40.651966,-73.94103,"(40.651966, -73.94103)",,,223 EAST 39 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/08/2021,18:04,MANHATTAN,10007,40.714386,-74.00378,"(40.714386, -74.00378)",,,52 DUANE STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4475538,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,8:43,QUEENS,11377,40.746235,-73.89895,"(40.746235, -73.89895)",65 STREET,39 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475352,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/08/2021,14:03,,,40.63851,-74.021225,"(40.63851, -74.021225)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4475378,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/07/2021,16:52,QUEENS,11429,40.713943,-73.73532,"(40.713943, -73.73532)",,,219-15 102 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476088,Sedan,,,, +11/08/2021,9:07,BRONX,10466,40.895718,-73.849525,"(40.895718, -73.849525)",WICKHAM AVENUE,PITMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475217,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,19:56,,,40.586777,-73.81465,"(40.586777, -73.81465)",ROCKAWAY BEACH BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476050,Sedan,Sedan,,, +11/08/2021,15:11,,,40.8468,-73.931854,"(40.8468, -73.931854)",WEST 179 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4475545,Motorcycle,,,, +11/08/2021,21:50,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475429,Sedan,,,, +11/06/2021,16:15,QUEENS,11379,40.712887,-73.87781,"(40.712887, -73.87781)",,,74-11 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475990,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,16:30,BRONX,10472,40.827553,-73.86727,"(40.827553, -73.86727)",WATSON AVENUE,COMMONWLTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475360,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,18:40,QUEENS,11429,40.714027,-73.735725,"(40.714027, -73.735725)",SPRINGFIELD BOULEVARD,102 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475385,Sedan,Sedan,,, +11/08/2021,2:21,BROOKLYN,11212,40.662457,-73.92012,"(40.662457, -73.92012)",EAST 98 STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475686,Sedan,Sedan,,, +11/08/2021,19:45,,,40.71937,-73.7876,"(40.71937, -73.7876)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4475602,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/14/2022,23:15,,,40.708763,-73.998116,"(40.708763, -73.998116)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498350,Sedan,,,, +11/08/2021,16:15,BRONX,10469,40.872414,-73.839966,"(40.872414, -73.839966)",HAMMERSLEY AVENUE,GUNTHER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475616,Sedan,Motorcycle,,, +11/08/2021,0:23,,,40.84915,-73.917336,"(40.84915, -73.917336)",UNIVERSITY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475209,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,19:50,MANHATTAN,10009,40.721897,-73.97928,"(40.721897, -73.97928)",,,290 EAST 4 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4475485,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,12:45,QUEENS,11413,40.6764,-73.741325,"(40.6764, -73.741325)",MERRICK BOULEVARD,229 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475273,Sedan,Sedan,,, +11/08/2021,10:30,,,40.77915,-73.91016,"(40.77915, -73.91016)",21 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475552,Sedan,Sedan,Sedan,, +11/08/2021,6:00,QUEENS,11416,40.689228,-73.84248,"(40.689228, -73.84248)",102 STREET,94 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475176,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,1:29,,,40.74668,-73.9745,"(40.74668, -73.9745)",EAST 37 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475390,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,21:45,QUEENS,11418,40.695053,-73.82381,"(40.695053, -73.82381)",ATLANTIC AVENUE,124 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475596,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,11:01,BRONX,10461,40.846745,-73.84978,"(40.846745, -73.84978)",TOMLINSON AVENUE,PIERCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4475533,Sedan,Sedan,Sedan,, +11/08/2021,7:30,,,40.66349,-73.87921,"(40.66349, -73.87921)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475315,Sedan,Box Truck,,, +11/07/2021,14:41,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475947,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,19:59,,,40.58848,-73.991875,"(40.58848, -73.991875)",SHORE PARKWAY,BAY 44 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,22:15,QUEENS,11361,40.759163,-73.77379,"(40.759163, -73.77379)",NORTHERN BOULEVARD,KENNEDY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475435,Sedan,Bus,,, +11/08/2021,13:12,BRONX,10455,40.820545,-73.91452,"(40.820545, -73.91452)",,,429 EAST 156 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475411,Bus,Sedan,,, +11/08/2021,17:31,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475754,Sedan,Sedan,,, +11/06/2021,20:30,,,40.52128,-74.23946,"(40.52128, -74.23946)",ARTHUR KILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475867,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/08/2021,20:00,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",JOHNSON AVENUE,STEWART AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475440,Sedan,Taxi,,, +10/22/2021,22:20,,,,,,EAST 116 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4469937,Sedan,Sedan,,, +11/08/2021,12:00,,,40.80174,-73.96477,"(40.80174, -73.96477)",AMSTERDAM AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4475306,Station Wagon/Sport Utility Vehicle,Bike,,, +11/08/2021,13:46,,,40.833282,-73.82836,"(40.833282, -73.82836)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476159,Bus,Bus,,, +11/08/2021,7:00,BRONX,10458,40.864483,-73.888504,"(40.864483, -73.888504)",,,386 EAST 195 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,,,,4475252,Sedan,Sedan,,, +11/03/2021,12:40,,,40.66889,-73.72903,"(40.66889, -73.72903)",136 AVENUE,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4475975,Sedan,Sedan,,, +11/08/2021,0:00,,,40.699436,-73.91229,"(40.699436, -73.91229)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475560,Sedan,Tractor Truck Diesel,,, +11/08/2021,17:02,,,40.73911,-73.943,"(40.73911, -73.943)",BORDEN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475648,Sedan,Sedan,,, +11/08/2021,17:59,MANHATTAN,10025,,,,Central Park West,105 street,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4475365,Taxi,Sedan,,, +11/08/2021,8:49,,,40.735535,-74.0017,"(40.735535, -74.0017)",7 AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475459,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,21:00,MANHATTAN,10036,40.760403,-73.98748,"(40.760403, -73.98748)",WEST 47 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475586,Sedan,,,, +11/08/2021,0:00,BROOKLYN,11226,40.64333,-73.95973,"(40.64333, -73.95973)",CORTELYOU ROAD,OCEAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475518,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,9:05,BRONX,10470,40.904087,-73.84987,"(40.904087, -73.84987)",WHITE PLAINS ROAD,SAINT OUEN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475237,Sedan,,,, +11/08/2021,0:40,BROOKLYN,11209,40.620975,-74.02537,"(40.620975, -74.02537)",GELSTON AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4475151,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/08/2021,17:48,BROOKLYN,11221,40.685234,-73.92654,"(40.685234, -73.92654)",PATCHEN AVENUE,HANCOCK STREET,,3,0,0,0,1,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4475395,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bike +10/29/2021,13:00,,,,,,malcolm x boulevard,laffayette avenue,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476070,Bike,Sedan,,, +11/08/2021,4:10,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475465,Pick-Up,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,0:10,,,40.769955,-73.836426,"(40.769955, -73.836426)",DOWNING STREET,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475371,Sedan,,,, +10/14/2021,16:10,,,,,,ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475907,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,20:15,BROOKLYN,11212,40.663116,-73.915886,"(40.663116, -73.915886)",SARATOGA AVENUE,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4475936,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/08/2021,18:50,MANHATTAN,10075,40.77667,-73.96293,"(40.77667, -73.96293)",,,17 EAST 79 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475818,Pick up,Flat bed,,, +04/15/2022,20:42,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4519587,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,16:20,BROOKLYN,11204,40.613552,-73.98176,"(40.613552, -73.98176)",WEST 7 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475402,Sedan,,,, +11/05/2021,13:50,BRONX,10468,40.859985,-73.90409,"(40.859985, -73.90409)",NORTH STREET,DAVIDSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475859,Sedan,,,, +10/26/2021,18:45,BROOKLYN,11233,40.67767,-73.9303,"(40.67767, -73.9303)",,,49 UTICA AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4476065,Pick-up Truck,,,, +11/08/2021,18:00,,,40.592857,-73.77531,"(40.592857, -73.77531)",EDGEMERE AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4475547,Sedan,Sedan,,, +10/21/2021,11:40,BRONX,10459,,,,BRUCKNER BOULEVARD,BARRETTO STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476128,Tractor Truck Diesel,Tractor Truck Diesel,,, +11/08/2021,7:15,BROOKLYN,11215,40.670197,-73.9954,"(40.670197, -73.9954)",13 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475296,Sedan,,,, +11/08/2021,15:00,QUEENS,11379,40.722523,-73.88456,"(40.722523, -73.88456)",ELIOT AVENUE,LUTHERAN AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475581,Sedan,Pick-up Truck,,, +11/05/2021,11:49,BROOKLYN,11233,40.676693,-73.917404,"(40.676693, -73.917404)",ATLANTIC AVENUE,LOUIS PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475988,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/08/2021,11:27,QUEENS,11101,40.75474,-73.9417,"(40.75474, -73.9417)",,,40-35 21 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4475541,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,11:26,MANHATTAN,10030,,,,W 140 Street,7th Ave,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475270,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,17:00,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4475361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,13:10,MANHATTAN,10001,40.748707,-73.98518,"(40.748707, -73.98518)",,,7 WEST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,6:28,,,40.829422,-73.9319,"(40.829422, -73.9319)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475625,Sedan,Sedan,,, +11/08/2021,1:00,MANHATTAN,10019,40.764305,-73.983154,"(40.764305, -73.983154)",,,250 WEST 54 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475221,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,2:36,QUEENS,11375,40.730946,-73.84859,"(40.730946, -73.84859)",108 STREET,65 ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4476016,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/06/2021,23:15,,,,,,72,2 avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476162,Sedan,,,, +11/08/2021,20:01,,,40.64644,-73.91289,"(40.64644, -73.91289)",AVENUE D,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475840,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,16:55,BROOKLYN,11229,40.596172,-73.9488,"(40.596172, -73.9488)",,,2253 EAST 22 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4475445,Sedan,Sedan,Sedan,Sedan, +11/07/2021,14:00,,,40.690346,-73.9603,"(40.690346, -73.9603)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475920,Sedan,,,, +11/05/2021,8:50,BRONX,10462,40.856464,-73.86946,"(40.856464, -73.86946)",,,2190 BOSTON ROAD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4475924,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,2:06,BROOKLYN,11228,40.620304,-74.00743,"(40.620304, -74.00743)",13 AVENUE,BAY RIDGE PARKWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4475064,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,22:38,MANHATTAN,10002,40.71384,-73.99273,"(40.71384, -73.99273)",EAST BROADWAY,PIKE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476083,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,8:10,MANHATTAN,10002,40.71592,-73.986595,"(40.71592, -73.986595)",,,408 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475480,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,7:16,BRONX,10458,40.862885,-73.89224,"(40.862885, -73.89224)",MARION AVENUE,DOROTHEA PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4475511,Sedan,Sedan,,, +10/04/2021,20:00,MANHATTAN,10032,40.83937,-73.941536,"(40.83937, -73.941536)",,,600 WEST 165 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475999,Pick-up Truck,Pick-up Truck,,, +11/08/2021,0:36,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4475399,Sedan,Sedan,,, +11/08/2021,7:00,BROOKLYN,11226,40.649776,-73.949745,"(40.649776, -73.949745)",,,185 ERASMUS STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475679,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,20:40,,,40.61334,-74.01109,"(40.61334, -74.01109)",85 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4475427,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/28/2021,15:30,BROOKLYN,11228,40.616726,-74.01833,"(40.616726, -74.01833)",86 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476052,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,10:25,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",PROSPECT EXPRESSWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475503,Sedan,Bus,,, +11/08/2021,0:10,MANHATTAN,10032,40.843163,-73.93825,"(40.843163, -73.93825)",,,1229 SAINT NICHOLAS AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475351,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,7:23,BROOKLYN,11229,40.61431,-73.94729,"(40.61431, -73.94729)",,,2702 KINGS HIGHWAY,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4475199,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,7:17,BROOKLYN,11221,40.692623,-73.923676,"(40.692623, -73.923676)",BUSHWICK AVENUE,BLEECKER STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4475572,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/08/2021,13:24,BRONX,10457,40.85266,-73.88991,"(40.85266, -73.88991)",ARTHUR AVENUE,QUARRY ROAD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4475703,Motorcycle,Sedan,,, +11/08/2021,20:40,QUEENS,11427,40.728024,-73.74764,"(40.728024, -73.74764)",217 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475386,Sedan,Sedan,,, +11/08/2021,16:33,QUEENS,11413,40.657864,-73.766075,"(40.657864, -73.766075)",149 ROAD,182 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4475377,Sedan,Sedan,,, +11/08/2021,15:11,BRONX,10466,40.884735,-73.84045,"(40.884735, -73.84045)",BAYCHESTER AVENUE,CRAWFORD AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475608,Sedan,,,, +11/06/2021,23:06,BROOKLYN,11233,40.67887,-73.92165,"(40.67887, -73.92165)",RALPH AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476031,Sedan,,,, +11/08/2021,15:11,BRONX,10463,40.878395,-73.91811,"(40.878395, -73.91811)",,,19 KNOLLS CRESCENT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475416,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,16:10,MANHATTAN,10029,40.793594,-73.9474,"(40.793594, -73.9474)",PARK AVENUE,EAST 107 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475453,Sedan,Sedan,,, +11/07/2021,19:10,BRONX,10466,,,,,,4009 WHITE PLAINS ROAD,5,0,0,0,0,0,5,0,Following Too Closely,Unspecified,,,,4475958,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,10:15,BROOKLYN,11232,,,,39 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475881,Sedan,,,, +11/08/2021,18:50,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475468,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,5:00,BRONX,10468,40.873936,-73.895386,"(40.873936, -73.895386)",,,2925 GOULDEN AVENUE,0,0,0,0,0,0,0,0,,,,,,4475404,,,,, +10/29/2021,16:00,BRONX,10458,40.87266,-73.88425,"(40.87266, -73.88425)",,,268 EAST 202 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475862,,,,, +10/29/2021,15:37,BROOKLYN,11220,40.637962,-74.01058,"(40.637962, -74.01058)",58 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475873,Sedan,,,, +08/23/2021,17:00,BRONX,10456,40.819855,-73.906395,"(40.819855, -73.906395)",,,801 JACKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475894,Sedan,,,, +11/08/2021,23:27,QUEENS,11420,40.67769,-73.82884,"(40.67769, -73.82884)",ROCKAWAY BOULEVARD,110 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4475436,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +12/12/2021,20:40,BROOKLYN,11213,40.670166,-73.936554,"(40.670166, -73.936554)",,,267 TROY AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4485820,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,2:45,,,40.715553,-73.82617,"(40.715553, -73.82617)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4445777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/25/2021,14:38,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",55 DRIVE,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4450541,Sedan,Pick-up Truck,,, +08/29/2021,15:30,BRONX,10466,40.885647,-73.84402,"(40.885647, -73.84402)",,,1175 EAST 229 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453146,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,0:00,BRONX,10460,40.84034,-73.88186,"(40.84034, -73.88186)",,,1950 BRYANT AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4454182,Sedan,,,, +05/17/2021,18:00,QUEENS,11369,40.7656,-73.87897,"(40.7656, -73.87897)",,,24-00 90 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454192,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,17:23,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4454177,Tractor Truck Diesel,,,, +09/03/2021,20:17,BRONX,10457,40.85252,-73.90002,"(40.85252, -73.90002)",VALENTINE AVENUE,EAST 180 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454204,Station Wagon/Sport Utility Vehicle,Bike,,, +08/10/2021,10:30,QUEENS,11435,40.695778,-73.803535,"(40.695778, -73.803535)",,,147-06 105 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454189,Sedan,Flat Bed,,, +09/02/2021,22:00,QUEENS,11372,40.74906,-73.89082,"(40.74906, -73.89082)",75 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454193,Sedan,,,, +09/02/2021,23:51,MANHATTAN,10021,40.770134,-73.95939,"(40.770134, -73.95939)",,,225 EAST 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454184,Taxi,,,, +09/03/2021,16:44,,,40.850735,-73.902824,"(40.850735, -73.902824)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454212,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,8:00,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454185,Sedan,,,, +08/29/2021,6:00,,,40.771374,-73.877144,"(40.771374, -73.877144)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454194,Sedan,Sedan,,, +09/02/2021,16:37,BRONX,10453,40.85673,-73.90279,"(40.85673, -73.90279)",MORRIS AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454210,Van,Bus,,, +08/19/2021,4:00,,,,,,31 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454181,Sedan,Sedan,,, +08/28/2021,22:49,QUEENS,11103,40.76577,-73.919,"(40.76577, -73.919)",34 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4454188,Station Wagon/Sport Utility Vehicle,,,, +12/12/2021,8:30,BROOKLYN,11203,40.649513,-73.93984,"(40.649513, -73.93984)",SNYDER AVENUE,EAST 40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4485798,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/12/2021,23:20,,,40.732315,-74.00052,"(40.732315, -74.00052)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/11/2021,10:33,BROOKLYN,11238,40.6864,-73.9685,"(40.6864, -73.9685)",VANDERBILT AVENUE,GREENE AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4486541,Station Wagon/Sport Utility Vehicle,Bike,,, +12/12/2021,19:20,QUEENS,11420,40.668056,-73.81777,"(40.668056, -73.81777)",149 AVENUE,122 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4485869,Sedan,,,, +12/12/2021,23:50,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4485918,Sedan,Sedan,Sedan,, +12/11/2021,15:24,QUEENS,11385,40.696873,-73.89787,"(40.696873, -73.89787)",,,1140 SENECA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4486479,Station Wagon/Sport Utility Vehicle,,,, +11/23/2021,6:24,,,40.838646,-73.85952,"(40.838646, -73.85952)",METROPOLITAN OVAL,METROPOLITAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4486422,Bus,,,, +12/12/2021,10:20,,,40.890648,-73.84875,"(40.890648, -73.84875)",EAST 233 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4485970,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/12/2021,1:45,QUEENS,11420,40.67602,-73.81613,"(40.67602, -73.81613)",122 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4485848,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/09/2021,21:30,,,40.606102,-74.07983,"(40.606102, -74.07983)",STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,,,4486391,Tractor Truck Diesel,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/30/2021,18:13,MANHATTAN,10013,40.716682,-73.99741,"(40.716682, -73.99741)",,,174 CANAL STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453681,Sedan,Sedan,Box Truck,, +09/01/2021,11:04,QUEENS,11355,40.75224,-73.820854,"(40.75224, -73.820854)",45 AVENUE,KISSENA BOULEVARD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4452893,Taxi,,,, +08/31/2021,19:16,,,40.6828,-73.90638,"(40.6828, -73.90638)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454001,Sedan,E-Bike,,, +09/02/2021,14:31,,,40.86507,-73.87185,"(40.86507, -73.87185)",BRONX RIVER PARKWAY,,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4453644,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/02/2021,10:17,,,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453346,Sedan,Sedan,,, +09/02/2021,4:40,BROOKLYN,11236,40.640373,-73.89702,"(40.640373, -73.89702)",ROCKAWAY PARKWAY,AVENUE K,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4453899,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/01/2021,17:46,BROOKLYN,11215,40.668896,-73.99315,"(40.668896, -73.99315)",,,533 3 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452956,Sedan,Box Truck,,, +09/03/2021,15:24,,,40.833588,-73.91498,"(40.833588, -73.91498)",EAST 167 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4453460,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,0:00,BRONX,10452,40.84196,-73.915306,"(40.84196, -73.915306)",EAST 172 STREET,TOWNSEND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453328,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/03/2021,13:55,BRONX,10458,40.854626,-73.881325,"(40.854626, -73.881325)",,,2429 SOUTHERN BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454110,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/01/2021,18:44,BRONX,10454,40.804344,-73.92158,"(40.804344, -73.92158)",BRUCKNER BOULEVARD,BROOK AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4453312,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,18:00,,,40.71582,-73.80799,"(40.71582, -73.80799)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,6:13,,,,,,WEST 16 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453206,Pick-up Truck,,,, +09/03/2021,21:43,BROOKLYN,11215,40.668617,-73.980156,"(40.668617, -73.980156)",,,274 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453499,ambulance,Sedan,,, +09/02/2021,23:22,MANHATTAN,10031,40.8188,-73.956024,"(40.8188, -73.956024)",WEST 133 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4453449,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,11:30,QUEENS,11435,40.714283,-73.8102,"(40.714283, -73.8102)",150 STREET,HOOVER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4453186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/01/2021,0:11,BRONX,10454,40.807056,-73.92208,"(40.807056, -73.92208)",,,432 EAST 136 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452611,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/31/2021,9:35,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453925,Sedan,,,, +08/28/2021,17:44,MANHATTAN,10012,40.722523,-73.99925,"(40.722523, -73.99925)",,,513 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453540,Sedan,Sedan,,, +09/03/2021,16:45,QUEENS,11427,40.728497,-73.746864,"(40.728497, -73.746864)",HILLSIDE AVENUE,218 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453721,Sedan,Pick-up Truck,,, +09/01/2021,23:29,BROOKLYN,11232,40.657757,-74.00411,"(40.657757, -74.00411)",32 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452936,Sedan,,,, +08/27/2021,15:10,BRONX,10458,40.86209,-73.89269,"(40.86209, -73.89269)",,,2536 MARION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453462,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,14:45,QUEENS,11367,40.740646,-73.82812,"(40.740646, -73.82812)",62 ROAD,138 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4453333,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/29/2021,23:45,BROOKLYN,11203,40.64461,-73.9267,"(40.64461, -73.9267)",CLARENDON ROAD,EAST 53 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4453389,Sedan,,,, +09/01/2021,8:30,BROOKLYN,11206,40.702335,-73.95061,"(40.702335, -73.95061)",,,104 LORIMER STREET,2,0,2,0,0,0,0,0,Traffic Control Disregarded,,,,,4453084,,,,, +09/02/2021,11:00,BROOKLYN,11236,40.640373,-73.89702,"(40.640373, -73.89702)",AVENUE K,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453504,Sedan,,,, +09/03/2021,3:30,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453575,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,21:00,BRONX,10472,40.830826,-73.859146,"(40.830826, -73.859146)",,,1950 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453902,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,19:20,BROOKLYN,11210,40.636074,-73.951096,"(40.636074, -73.951096)",ROGERS AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452980,Taxi,Sedan,,, +08/26/2021,13:57,,,40.843777,-73.90947,"(40.843777, -73.90947)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4453763,Box Truck,Sedan,,, +08/25/2021,13:59,BRONX,10463,,,,238 street,Irwin,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453853,Sedan,Sedan,,, +09/02/2021,0:00,BROOKLYN,11220,40.635235,-74.01698,"(40.635235, -74.01698)",6 AVENUE,EIRIK PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,23:15,BROOKLYN,11208,40.66224,-73.877205,"(40.66224, -73.877205)",STANLEY AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453245,Sedan,,,, +09/02/2021,0:38,,,40.716328,-73.948074,"(40.716328, -73.948074)",JACKSON STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4453282,Sedan,Sedan,Sedan,, +09/01/2021,5:39,BRONX,10463,40.876476,-73.904495,"(40.876476, -73.904495)",MAJOR DEEGAN EXPRESSWAY,WEST 230 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453864,Sedan,Sedan,,, +08/26/2021,20:00,QUEENS,11435,40.706818,-73.81704,"(40.706818, -73.81704)",,,138-78 QUEENS BOULEVARD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453430,Bike,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,19:45,BRONX,10453,40.854874,-73.916794,"(40.854874, -73.916794)",SEDGWICK AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452989,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,15:00,BROOKLYN,11214,40.605923,-74.00404,"(40.605923, -74.00404)",,,8681 18 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453203,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,0:50,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453360,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/01/2021,17:29,QUEENS,11435,40.704082,-73.81641,"(40.704082, -73.81641)",138 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453421,Sedan,Sedan,,, +09/03/2021,16:00,,,40.727566,-73.929276,"(40.727566, -73.929276)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453702,Tanker,Convertible,,, +09/02/2021,8:47,BROOKLYN,11210,40.623455,-73.95491,"(40.623455, -73.95491)",AVENUE K,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453492,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,12:14,QUEENS,11374,40.73367,-73.85766,"(40.73367, -73.85766)",99 STREET,62 DRIVE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4453619,Station Wagon/Sport Utility Vehicle,Bike,,, +09/02/2021,16:00,,,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453234,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,14:00,MANHATTAN,10036,40.75469,-73.9858,"(40.75469, -73.9858)",,,135 WEST 41 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453750,Van,,,, +09/03/2021,16:35,,,40.732613,-73.925156,"(40.732613, -73.925156)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453596,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,17:13,,,40.817173,-73.94607,"(40.817173, -73.94607)",8 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4454145,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,7:36,,,40.703655,-73.822464,"(40.703655, -73.822464)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452704,Sedan,,,, +08/16/2021,17:20,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453366,Sedan,,,, +09/03/2021,3:27,STATEN ISLAND,10307,40.509766,-74.234085,"(40.509766, -74.234085)",BEDELL AVENUE,SPRUCE COURT,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,Unspecified,,4453365,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/01/2021,15:15,,,40.685223,-73.988716,"(40.685223, -73.988716)",WYCKOFF STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452868,Ambulance,Box Truck,,, +09/03/2021,17:58,,,40.787018,-73.811584,"(40.787018, -73.811584)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,8:00,QUEENS,11368,40.75259,-73.86517,"(40.75259, -73.86517)",,,37-19 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519392,Sedan,Sedan,,, +09/02/2021,0:51,,,40.730118,-73.86232,"(40.730118, -73.86232)",QUEENS BOULEVARD,63 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453035,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,19:18,,,40.749348,-73.82585,"(40.749348, -73.82585)",MAIN STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453481,Sedan,Sedan,,, +09/01/2021,21:00,QUEENS,11378,40.724182,-73.89551,"(40.724182, -73.89551)",,,68-10 58 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453964,Sedan,Sedan,Motorcycle,, +09/03/2021,2:10,BROOKLYN,11238,40.68562,-73.96422,"(40.68562, -73.96422)",,,131 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4453828,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/30/2021,18:00,QUEENS,11432,40.705917,-73.79375,"(40.705917, -73.79375)",,,166-15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4453453,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,23:55,BROOKLYN,11221,40.696358,-73.93414,"(40.696358, -73.93414)",BROADWAY,VERNON AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4454014,Moped,Taxi,,, +09/03/2021,21:00,STATEN ISLAND,10306,40.565643,-74.10003,"(40.565643, -74.10003)",ROMA AVENUE,NEW DORP LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453793,Sedan,,,, +08/31/2021,17:55,QUEENS,11103,40.757385,-73.91698,"(40.757385, -73.91698)",,,32-79 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453871,US Mail Tr,Sedan,,, +09/02/2021,21:56,BRONX,10460,40.842224,-73.87006,"(40.842224, -73.87006)",,,1737 MELVILLE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453321,Sedan,,,, +09/02/2021,10:00,,,40.623646,-74.16554,"(40.623646, -74.16554)",,,104 AMADOR STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,15:46,,,40.853706,-73.871864,"(40.853706, -73.871864)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4453049,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/30/2021,20:46,,,40.66733,-73.95353,"(40.66733, -73.95353)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453737,Sedan,,,, +08/30/2021,9:27,BROOKLYN,11204,40.628494,-73.98282,"(40.628494, -73.98282)",OLD NEW UTRECHT ROAD,50 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454053,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,8:00,,,40.86341,-73.92314,"(40.86341, -73.92314)",ACADEMY STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453090,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,23:19,MANHATTAN,10038,40.710396,-74.00561,"(40.710396, -74.00561)",BEEKMAN STREET,WILLIAM STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4453385,Sedan,Sedan,,, +09/02/2021,13:27,QUEENS,11419,40.69194,-73.81904,"(40.69194, -73.81904)",,,127-01 101 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4453106,Sedan,,,, +09/01/2021,7:25,,,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4452824,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/03/2021,18:00,BROOKLYN,11226,40.654022,-73.95221,"(40.654022, -73.95221)",,,209 LENOX ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453932,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,22:10,BROOKLYN,11232,40.659668,-73.99518,"(40.659668, -73.99518)",24 STREET,5 AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4453814,Sedan,,,, +09/03/2021,1:28,,,40.694363,-73.756165,"(40.694363, -73.756165)",116 ROAD,196 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4454090,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/03/2021,5:41,,,40.829002,-73.91557,"(40.829002, -73.91557)",EAST 165 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4453398,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/01/2021,4:15,QUEENS,11354,40.76295,-73.83196,"(40.76295, -73.83196)",NORTHERN BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452745,Sedan,,,, +09/01/2021,12:15,,,40.659428,-73.88375,"(40.659428, -73.88375)",STANLEY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453259,Sedan,Sedan,,, +09/01/2021,15:00,BROOKLYN,11211,40.714455,-73.935295,"(40.714455, -73.935295)",METROPOLITAN AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4453273,Pick-up Truck,Sedan,,, +09/01/2021,18:18,,,40.68161,-73.77221,"(40.68161, -73.77221)",172 STREET,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453299,Sedan,,,, +09/03/2021,16:50,BROOKLYN,11237,40.70912,-73.92764,"(40.70912, -73.92764)",RANDOLPH STREET,VARICK AVENUE,,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,,,,4453554,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,22:30,,,40.67843,-73.74736,"(40.67843, -73.74736)",MERRICK BOULEVARD,222 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453417,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,9:54,BROOKLYN,11234,40.61685,-73.92276,"(40.61685, -73.92276)",EAST 54 STREET,AVENUE O,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4452813,Sedan,Sedan,Sedan,, +09/01/2021,10:45,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4452750,Tractor Truck Diesel,Sedan,Tractor Truck Diesel,, +09/02/2021,12:30,,,40.789783,-73.81419,"(40.789783, -73.81419)",150 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453694,Sedan,,,, +09/02/2021,10:54,BROOKLYN,11220,40.64311,-74.016075,"(40.64311, -74.016075)",4 AVENUE,56 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453216,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/03/2021,0:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453370,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/01/2021,16:01,QUEENS,11358,40.75882,-73.805145,"(40.75882, -73.805145)",161 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452858,Station Wagon/Sport Utility Vehicle,,,, +08/24/2021,8:00,BRONX,10474,40.81651,-73.88987,"(40.81651, -73.88987)",BARRETTO STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453847,Sedan,,,, +09/01/2021,9:24,,,40.60702,-74.162384,"(40.60702, -74.162384)",,,1705 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4452724,Station Wagon/Sport Utility Vehicle,,,, +08/22/2021,11:53,,,,,,WEST STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453560,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,9:58,MANHATTAN,10033,40.84554,-73.93278,"(40.84554, -73.93278)",WEST 177 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453105,Sedan,,,, +09/02/2021,12:30,QUEENS,11423,40.71436,-73.766396,"(40.71436, -73.766396)",,,195-04 90 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453839,Sedan,,,, +09/03/2021,11:52,,,40.674885,-73.927765,"(40.674885, -73.927765)",BERGEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453936,Sedan,Sedan,Sedan,, +08/29/2021,17:50,MANHATTAN,10009,40.724697,-73.97842,"(40.724697, -73.97842)",AVENUE C,EAST 8 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453353,Sedan,Bike,,, +08/27/2021,16:27,QUEENS,11372,40.74906,-73.89082,"(40.74906, -73.89082)",75 STREET,37 AVENUE,,3,0,0,0,0,0,3,0,Oversized Vehicle,Unspecified,,,,4453485,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,21:34,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4452967,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,15:20,MANHATTAN,10038,40.709976,-74.004486,"(40.709976, -74.004486)",,,83 GOLD STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453580,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,2:00,BROOKLYN,11203,40.640446,-73.92435,"(40.640446, -73.92435)",,,5535 WHITTY LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453626,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,22:11,QUEENS,11412,40.7036,-73.7583,"(40.7036, -73.7583)",198 STREET,111 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454087,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,19:05,MANHATTAN,10002,40.714054,-73.9853,"(40.714054, -73.9853)",,,10 MONTGOMERY STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453798,Sedan,Sedan,,, +09/03/2021,12:20,QUEENS,11102,40.77225,-73.9272,"(40.77225, -73.9272)",,,18-04 ASTORIA BOULEVARD,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4453875,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,17:53,,,40.672527,-73.95026,"(40.672527, -73.95026)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453977,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,19:00,,,40.789375,-73.84376,"(40.789375, -73.84376)",124 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453001,Sedan,,,, +09/02/2021,9:50,,,40.820435,-73.93623,"(40.820435, -73.93623)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4453325,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,17:27,,,40.760704,-73.858246,"(40.760704, -73.858246)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453338,Sedan,Sedan,,, +09/02/2021,11:00,BROOKLYN,11201,40.695057,-73.99531,"(40.695057, -73.99531)",,,98 MONTAGUE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4453124,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,16:25,,,40.627193,-74.16047,"(40.627193, -74.16047)",,,371 HARBOR ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453524,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +08/30/2021,21:25,QUEENS,11418,40.70001,-73.830894,"(40.70001, -73.830894)",LEFFERTS BOULEVARD,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453441,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,7:35,,,40.715958,-73.81275,"(40.715958, -73.81275)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453054,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,1:00,BROOKLYN,11221,40.691895,-73.93384,"(40.691895, -73.93384)",STUYVESANT AVENUE,LAFAYETTE AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4454023,Bike,Taxi,,, +09/03/2021,7:15,,,,,,49 STREET,BROOKLYN QUEENS EXPRESSWAY W/B,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453548,Taxi,,,, +09/03/2021,23:45,,,40.629707,-73.90486,"(40.629707, -73.90486)",AVENUE M,EAST 80 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453658,Sedan,,,, +09/02/2021,13:55,BRONX,10457,,,,,,511 EAST TREMONT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454127,Sedan,E-Bike,,, +09/02/2021,9:40,MANHATTAN,10010,40.736237,-73.97724,"(40.736237, -73.97724)",,,420 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,10:30,BRONX,10453,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,WEST 174 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452737,E-Bike,,,, +09/01/2021,20:15,STATEN ISLAND,10306,40.56444,-74.12676,"(40.56444, -74.12676)",SOUTH RAILROAD AVENUE,GUYON AVENUE,,0,0,0,0,0,0,0,0,Other Electronic Device,Unspecified,,,,4453402,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,10:53,QUEENS,11377,40.73899,-73.89225,"(40.73899, -73.89225)",47 AVENUE,72 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452837,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,14:15,BROOKLYN,11211,40.714836,-73.956696,"(40.714836, -73.956696)",,,131 ROEBLING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4452943,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,11:29,BRONX,10454,40.808807,-73.9107,"(40.808807, -73.9107)",JACKSON AVENUE,SAINT MARYS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453607,Sedan,,,, +09/01/2021,22:00,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",FOUNTAIN AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453255,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,19:35,,,,,,VANCORTLANDT PARK WEST,ORLOFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453914,Sedan,Sedan,,, +09/03/2021,0:33,,,40.558403,-74.12611,"(40.558403, -74.12611)",HYLAN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453397,Sedan,,,, +09/02/2021,15:10,BRONX,10454,40.8072,-73.90637,"(40.8072, -73.90637)",,,380 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453304,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,10:40,BROOKLYN,11232,40.65823,-74.00035,"(40.65823, -74.00035)",29 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453048,Sedan,Sedan,,, +09/01/2021,18:25,BROOKLYN,11214,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,86 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453180,Sedan,,,, +09/01/2021,12:00,BROOKLYN,11208,0,0,"(0.0, 0.0)",PITKIN AVENUE,MONTAUK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453260,Sedan,,,, +09/01/2021,1:19,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453429,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,20:05,,,40.5832,-73.97304,"(40.5832, -73.97304)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Driver Inattention/Distraction,,,,4498827,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,14:30,MANHATTAN,10128,,,,EAST 87 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453293,Ambulance,Sedan,,, +09/02/2021,20:00,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453221,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/01/2021,7:30,BROOKLYN,11208,40.67279,-73.87183,"(40.67279, -73.87183)",,,1249 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452767,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,19:00,,,,,,G.C.P. / LAGUARDIA (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4453157,Sedan,,,, +09/02/2021,20:55,,,40.689976,-73.79955,"(40.689976, -73.79955)",LIVERPOOL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,Unspecified,,4453456,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/02/2021,19:00,BRONX,10462,40.854465,-73.86805,"(40.854465, -73.86805)",,,641 LYDIG AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453473,Taxi,,,, +09/01/2021,9:10,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",3 AVENUE,EAST 168 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4453076,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,19:30,BRONX,10463,40.88285,-73.90358,"(40.88285, -73.90358)",,,3450 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453891,Station Wagon/Sport Utility Vehicle,,,, +08/08/2021,12:00,BROOKLYN,11206,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4453955,Sedan,Sedan,Sedan,, +09/02/2021,8:30,BRONX,10451,40.816532,-73.92822,"(40.816532, -73.92822)",EAST 144 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453097,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,6:45,MANHATTAN,10002,40.71745,-73.98494,"(40.71745, -73.98494)",DELANCEY STREET,ATTORNEY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4453587,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,12:21,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453424,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,2:00,MANHATTAN,10128,40.787224,-73.95417,"(40.787224, -73.95417)",EAST 96 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Following Too Closely,,,,4453300,Sedan,Taxi,,, +08/31/2021,10:00,MANHATTAN,10003,40.727814,-73.99116,"(40.727814, -73.99116)",,,25 COOPER SQUARE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453357,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,16:24,BROOKLYN,11212,40.66519,-73.9271,"(40.66519, -73.9271)",,,1070 EAST NEW YORK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453630,Sedan,Sedan,,, +09/02/2021,1:00,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,STEENWICK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4453145,Sedan,Sedan,,, +09/01/2021,16:47,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453682,Sedan,Box Truck,,, +09/02/2021,17:20,MANHATTAN,10022,40.7616,-73.96865,"(40.7616, -73.96865)",EAST 58 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453211,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/31/2021,8:19,,,40.788315,-73.9765,"(40.788315, -73.9765)",,,WEST 86 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4453466,Sedan,Box Truck,,, +09/02/2021,17:15,,,,,,WEST 179 STREET,HENRY HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454071,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,19:47,MANHATTAN,10021,40.76685,-73.95376,"(40.76685, -73.95376)",YORK AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452961,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,11:45,,,,,,LONG ISLAND EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4453190,Box Truck,Box Truck,,, +09/01/2021,9:05,BROOKLYN,11218,40.639526,-73.97337,"(40.639526, -73.97337)",,,387 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,15:05,,,,,,BEVERLEY ROAD,WESTMINISTER ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/01/2021,15:00,BRONX,10456,40.83435,-73.89869,"(40.83435, -73.89869)",,,1418 CLINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453329,Sedan,,,, +09/03/2021,14:30,QUEENS,11377,40.745827,-73.90111,"(40.745827, -73.90111)",63 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453564,Sedan,,,, +07/30/2021,23:05,BROOKLYN,11212,40.658627,-73.908875,"(40.658627, -73.908875)",,,523 CHESTER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453985,Sedan,,,, +09/01/2021,22:47,BROOKLYN,11210,40.62917,-73.940475,"(40.62917, -73.940475)",,,1119 EAST 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4452925,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/01/2021,5:04,MANHATTAN,10027,40.813732,-73.94487,"(40.813732, -73.94487)",,,2252 7 AVENUE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4453334,Sedan,E-Bike,,, +09/02/2021,14:00,QUEENS,11367,40.738857,-73.82488,"(40.738857, -73.82488)",,,63-25 MAIN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454028,Sedan,,,, +08/25/2021,21:00,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453461,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,20:50,QUEENS,11435,40.715706,-73.81023,"(40.715706, -73.81023)",150 STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453601,Sedan,,,, +08/28/2021,9:39,BRONX,10467,40.884026,-73.869286,"(40.884026, -73.869286)",,,3560 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4453907,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +09/01/2021,16:21,,,,,,GRAND CENTRAL PARKWAY,76 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4453042,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,3:23,BRONX,10473,40.821354,-73.86318,"(40.821354, -73.86318)",,,1810 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453378,Sedan,Motorscooter,,, +09/03/2021,5:00,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",HOWARD AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453772,Sedan,Sedan,,, +09/01/2021,22:00,BROOKLYN,11207,,,,,,102 WILLIAMS AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453249,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,8:40,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452878,Sedan,,,, +08/31/2021,0:00,BRONX,10452,40.84543,-73.91399,"(40.84543, -73.91399)",JEROME AVENUE,EAST 174 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,16:05,BROOKLYN,11222,40.734318,-73.95642,"(40.734318, -73.95642)",,,135 FREEMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453780,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/31/2021,16:10,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453857,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/01/2021,21:15,BROOKLYN,11217,,,,LAFAYETTE AVENUE,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453169,Sedan,,,, +09/02/2021,18:15,,,40.826298,-73.85742,"(40.826298, -73.85742)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453264,Pick-up Truck,Sedan,,, +09/03/2021,13:41,,,40.767117,-73.956505,"(40.767117, -73.956505)",1 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454170,Taxi,Box Truck,,, +09/02/2021,18:00,QUEENS,11367,,,,MAIN STREET,GRAVETT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453434,Sedan,,,, +09/01/2021,14:30,QUEENS,11368,40.758106,-73.85721,"(40.758106, -73.85721)",,,112-15 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453017,Sedan,,,, +09/02/2021,10:15,BRONX,10469,,,,EASTCHESTER ROAD,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453918,Sedan,,,, +09/02/2021,8:30,MANHATTAN,10031,40.82657,-73.944824,"(40.82657, -73.944824)",WEST 148 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453377,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,14:55,,,40.7266,-73.93066,"(40.7266, -73.93066)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4452937,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,7:15,QUEENS,11377,40.74855,-73.89582,"(40.74855, -73.89582)",BROADWAY,37 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4453018,Motorcycle,Sedan,,, +09/03/2021,8:00,BROOKLYN,11212,40.657257,-73.91229,"(40.657257, -73.91229)",,,42 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453711,Sedan,,,, +08/26/2021,5:40,BRONX,10456,40.834034,-73.91676,"(40.834034, -73.91676)",,,1188 SHERIDAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453392,Station Wagon/Sport Utility Vehicle,Bus,,, +09/02/2021,2:37,,,,,,AVENUE L,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4452981,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +09/02/2021,1:00,BROOKLYN,11214,40.587902,-73.98954,"(40.587902, -73.98954)",CROPSEY AVENUE,BAY 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453198,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,13:20,BRONX,10452,40.840286,-73.92147,"(40.840286, -73.92147)",JESUP AVENUE,GRANT HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453409,Sedan,,,, +09/01/2021,1:30,,,40.818504,-73.91448,"(40.818504, -73.91448)",3 AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4452613,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/02/2021,11:07,BROOKLYN,11220,40.643986,-74.01149,"(40.643986, -74.01149)",52 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453226,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,11:05,,,40.84023,-73.880104,"(40.84023, -73.880104)",EAST TREMONT AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454121,Sedan,,,, +09/02/2021,16:00,QUEENS,11378,40.730972,-73.92204,"(40.730972, -73.92204)",46 STREET,54 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453488,Sedan,Sedan,,, +09/02/2021,0:00,BROOKLYN,11212,40.66975,-73.91037,"(40.66975, -73.91037)",,,1701 PITKIN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453508,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,21:30,BROOKLYN,11238,40.676105,-73.970436,"(40.676105, -73.970436)",,,225 STERLING PLACE,1,0,0,0,1,0,0,0,Passing Too Closely,Passing Too Closely,,,,4453288,Sedan,E-Bike,,, +09/01/2021,6:57,,,40.688564,-73.93019,"(40.688564, -73.93019)",GATES AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452908,Station Wagon/Sport Utility Vehicle,Bike,,, +09/01/2021,14:15,BRONX,10461,40.836052,-73.83345,"(40.836052, -73.83345)",,,3219 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453139,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,16:40,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453281,Sedan,,,, +09/02/2021,15:54,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453263,Sedan,,,, +09/02/2021,9:00,QUEENS,11364,40.736267,-73.772865,"(40.736267, -73.772865)",FRANCIS LEWIS BOULEVARD,73 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453185,Sedan,Bike,,, +09/03/2021,13:30,,,,,,GRAND CENTRAL PARKWAY,164 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453433,Sedan,Sedan,,, +09/01/2021,2:13,BROOKLYN,11222,40.720306,-73.944305,"(40.720306, -73.944305)",,,497 MEEKER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452677,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,14:44,MANHATTAN,10016,40.744377,-73.97495,"(40.744377, -73.97495)",,,314 EAST 34 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4453205,Sedan,Taxi,Sedan,, +09/01/2021,6:45,QUEENS,11433,40.690434,-73.78941,"(40.690434, -73.78941)",160 STREET,CLAUDE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452877,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,9:00,QUEENS,11420,40.668724,-73.81082,"(40.668724, -73.81082)",135 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453361,Sedan,,,, +09/01/2021,15:25,,,40.85005,-73.91606,"(40.85005, -73.91606)",UNIVERSITY AVENUE,MACOMBS ROAD,,4,0,0,0,0,0,4,0,Tire Failure/Inadequate,Unspecified,,,,4452985,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,9:30,BROOKLYN,11226,40.650635,-73.9633,"(40.650635, -73.9633)",,,27 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453493,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/02/2021,13:00,,,40.716824,-73.82019,"(40.716824, -73.82019)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4453420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,16:45,MANHATTAN,10036,,,,WEST 44 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4453752,Taxi,E-Scooter,,, +09/02/2021,14:22,,,40.679733,-73.97432,"(40.679733, -73.97432)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453237,Station Wagon/Sport Utility Vehicle,Bike,,, +09/03/2021,17:00,BROOKLYN,11207,40.682655,-73.910034,"(40.682655, -73.910034)",CHAUNCEY STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453510,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,17:30,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453713,Sedan,Van,,, +08/27/2021,16:45,,,40.60998,-74.12017,"(40.60998, -74.12017)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4453528,Sedan,,,, +08/30/2021,5:06,QUEENS,11379,40.712788,-73.878654,"(40.712788, -73.878654)",,,72-52 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453960,Sedan,,,, +09/02/2021,0:00,,,40.707077,-73.954025,"(40.707077, -73.954025)",BROADWAY,HOOPER STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4452930,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/01/2021,16:58,STATEN ISLAND,10301,40.616413,-74.103516,"(40.616413, -74.103516)",VICTORY BOULEVARD,CLOVE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453132,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,4:30,MANHATTAN,10027,40.814144,-73.95571,"(40.814144, -73.95571)",AMSTERDAM AVENUE,WEST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453900,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,17:36,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4454008,Bike,,,, +09/01/2021,16:15,MANHATTAN,10009,40.723175,-73.98823,"(40.723175, -73.98823)",,,76 EAST 1 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453362,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,2:00,QUEENS,11367,40.72784,-73.83284,"(40.72784, -73.83284)",JEWEL AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453167,Sedan,Sedan,,, +09/02/2021,0:00,BRONX,10453,40.856045,-73.90079,"(40.856045, -73.90079)",GRAND CONCOURSE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4453347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/01/2021,3:40,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4453516,Sedan,,,, +09/01/2021,8:45,BROOKLYN,11235,40.591385,-73.95967,"(40.591385, -73.95967)",,,2400 EAST 11 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452957,Dump,Sedan,Station Wagon/Sport Utility Vehicle,, +09/03/2021,5:30,BROOKLYN,11234,40.627983,-73.92493,"(40.627983, -73.92493)",FLATLANDS AVENUE,EAST 53 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4453825,Sedan,Pick-up Truck,,, +08/30/2021,6:30,QUEENS,11378,40.719105,-73.9072,"(40.719105, -73.9072)",,,59-44 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453965,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,14:45,BROOKLYN,11236,40.64077,-73.90913,"(40.64077, -73.90913)",GLENWOOD ROAD,EAST 88 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453313,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/03/2021,10:25,STATEN ISLAND,10301,40.635933,-74.07585,"(40.635933, -74.07585)",BAY STREET,HANNAH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453869,Sedan,Sedan,,, +09/03/2021,18:30,MANHATTAN,10035,40.796997,-73.9347,"(40.796997, -73.9347)",,,2285 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454036,Sedan,Van,,, +09/03/2021,12:00,BRONX,10466,40.888588,-73.84233,"(40.888588, -73.84233)",,,1217 EAST 233 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453927,Sedan,,,, +09/02/2021,20:50,BROOKLYN,11211,40.7064,-73.95036,"(40.7064, -73.95036)",,,202 UNION AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453274,Sedan,Bike,,, +09/01/2021,11:45,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4453220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,11:30,BRONX,10461,40.837418,-73.84096,"(40.837418, -73.84096)",,,1350 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454150,Sedan,Sedan,,, +09/02/2021,23:00,BRONX,10456,40.835945,-73.90756,"(40.835945, -73.90756)",,,1348 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453330,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,10:58,BROOKLYN,11214,40.597267,-73.998665,"(40.597267, -73.998665)",BAY PARKWAY,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452757,Tow Truck / Wrecker,Box Truck,,, +09/01/2021,3:18,,,40.625546,-73.93998,"(40.625546, -73.93998)",FLATBUSH AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4452814,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,21:19,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453597,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,21:47,MANHATTAN,10013,40.72206,-74.00309,"(40.72206, -74.00309)",,,70 GRAND STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453065,Sedan,Sedan,,, +08/24/2021,12:30,BROOKLYN,11233,40.67725,-73.92754,"(40.67725, -73.92754)",ROCHESTER AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454026,Bike,Sedan,,, +09/03/2021,7:30,,,40.769646,-73.91425,"(40.769646, -73.91425)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4453550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,7:30,BROOKLYN,11238,40.681564,-73.96658,"(40.681564, -73.96658)",ATLANTIC AVENUE,CLINTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453373,Sedan,Box Truck,,, +09/03/2021,0:42,,,,,,VANDAM STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453268,Sedan,Sedan,,, +09/01/2021,18:58,,,40.704712,-73.727425,"(40.704712, -73.727425)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4452895,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,21:00,,,40.847897,-73.92499,"(40.847897, -73.92499)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4453405,Sedan,,,, +09/02/2021,0:53,,,40.697536,-73.87106,"(40.697536, -73.87106)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453120,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,14:20,BROOKLYN,11203,40.65434,-73.94704,"(40.65434, -73.94704)",NEW YORK AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453388,Sedan,,,, +09/03/2021,19:30,,,40.733738,-73.95485,"(40.733738, -73.95485)",GREEN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453781,Sedan,,,, +09/02/2021,8:00,,,40.58493,-73.91434,"(40.58493, -73.91434)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453645,Sedan,Sedan,,, +08/29/2021,23:00,QUEENS,11413,40.66589,-73.76276,"(40.66589, -73.76276)",,,144-43 182 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453410,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,15:00,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453244,,,,, +09/02/2021,17:30,BROOKLYN,11205,40.689674,-73.96614,"(40.689674, -73.96614)",DE KALB AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453954,Carry All,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,11:09,BRONX,10460,40.837585,-73.866394,"(40.837585, -73.866394)",ARCHER STREET,TAYLOR AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4452738,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/02/2021,10:59,,,,,,NASSAU EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4453024,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/01/2021,16:03,BRONX,10456,40.832005,-73.90876,"(40.832005, -73.90876)",EAST 168 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453077,Sedan,Sedan,,, +08/30/2021,10:25,BROOKLYN,11216,40.68389,-73.93823,"(40.68389, -73.93823)",HANCOCK STREET,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454015,Sedan,Sedan,,, +08/02/2021,21:50,BRONX,10463,40.884197,-73.91147,"(40.884197, -73.91147)",,,3220 NETHERLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,2:15,BROOKLYN,11207,40.66115,-73.895035,"(40.66115, -73.895035)",,,619 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452805,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,13:05,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",2 AVENUE,EAST 57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452942,Sedan,Flat Bed,,, +09/02/2021,18:00,,,40.845078,-73.91111,"(40.845078, -73.91111)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4453448,Carry All,Taxi,,, +09/02/2021,16:15,BROOKLYN,11204,,,,,,1720 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453181,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,10:47,BRONX,10454,40.811977,-73.92373,"(40.811977, -73.92373)",EAST 141 STREET,ALEXANDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454116,Sedan,,,, +09/03/2021,18:42,BROOKLYN,11211,40.71594,-73.92488,"(40.71594, -73.92488)",,,1313 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453555,Tractor Truck Diesel,,,, +09/03/2021,14:45,BRONX,10458,40.867027,-73.89111,"(40.867027, -73.89111)",BRIGGS AVENUE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4453465,Sedan,,,, +09/02/2021,13:55,MANHATTAN,10022,40.758007,-73.96625,"(40.758007, -73.96625)",2 AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453209,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,0:00,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453125,Sedan,Sedan,,, +09/02/2021,9:11,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453342,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,15:15,,,40.90083,-73.905136,"(40.90083, -73.905136)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Using On Board Navigation Device,,,,,4452887,Carry All,,,, +09/03/2021,23:46,,,40.651226,-73.94096,"(40.651226, -73.94096)",EAST 39 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4453632,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,7:51,,,40.839447,-73.88384,"(40.839447, -73.88384)",CROSS BRONX EXPRESSWAY,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Driver Inattention/Distraction,Driver Inattention/Distraction,,4454126,Sedan,Sedan,Carry All,Sedan, +09/03/2021,13:50,STATEN ISLAND,10306,40.581264,-74.11221,"(40.581264, -74.11221)",RICHMOND ROAD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453416,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,1:17,BROOKLYN,11211,40.71437,-73.946075,"(40.71437, -73.946075)",MANHATTAN AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4452949,Station Wagon/Sport Utility Vehicle,Bike,,, +09/02/2021,21:38,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4453308,Sedan,,,, +09/03/2021,23:05,,,40.734993,-73.936295,"(40.734993, -73.936295)",GREENPOINT AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453720,Bike,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,0:00,,,40.64404,-73.877525,"(40.64404, -73.877525)",SEAVIEW AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453576,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,8:40,,,40.8164,-73.89126,"(40.8164, -73.89126)",BARRY STREET,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4453503,Sedan,Garbage or Refuse,,, +09/03/2021,15:31,MANHATTAN,10032,40.83665,-73.943,"(40.83665, -73.943)",,,3861 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454056,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,15:09,BROOKLYN,11208,,,,CRESCENT STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453442,Sedan,,,, +09/03/2021,8:25,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",ALLERTON AVENUE,BRONX PARK EAST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4453474,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/26/2021,17:05,,,40.67973,-73.9374,"(40.67973, -73.9374)",,,MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4453892,Sedan,Box Truck,,, +08/19/2021,16:47,BROOKLYN,11235,40.577213,-73.96329,"(40.577213, -73.96329)",BRIGHTON BEACH AVENUE,BRIGHTON 4 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453762,Sedan,Sedan,,, +09/03/2021,10:25,MANHATTAN,10022,40.761276,-73.9668,"(40.761276, -73.9668)",,,968 3 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453534,,,,, +08/30/2021,7:50,BROOKLYN,11234,40.635365,-73.92571,"(40.635365, -73.92571)",GLENWOOD ROAD,EAST 53 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453820,Sedan,Sedan,,, +09/03/2021,9:20,,,,,,3 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453437,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,22:30,,,40.6953,-73.74915,"(40.6953, -73.74915)",LINDEN BOULEVARD,203 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454091,Sedan,Sedan,,, +09/02/2021,14:00,BRONX,10454,,,,SAINT ANNS AVENUE,EAST 138 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4453303,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,0:00,BROOKLYN,11208,40.68286,-73.88447,"(40.68286, -73.88447)",RIDGEWOOD AVENUE,LINWOOD STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453256,Sedan,Sedan,,, +09/02/2021,14:30,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453173,Sedan,E-Scooter,,, +09/03/2021,19:50,BROOKLYN,11225,40.66022,-73.95059,"(40.66022, -73.95059)",,,1128 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453500,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,12:45,,,40.771328,-73.90391,"(40.771328, -73.90391)",DITMARS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453865,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,21:00,QUEENS,11420,40.675682,-73.816,"(40.675682, -73.816)",ROCKAWAY BOULEVARD,122 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4453570,Sedan,Sedan,,, +08/05/2021,4:09,,,,,,CROMWELL AVENUE,JEROME AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453788,Sedan,,,, +09/02/2021,17:39,MANHATTAN,10065,40.764988,-73.96116,"(40.764988, -73.96116)",EAST 66 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4453294,Pick-up Truck,Sedan,,, +09/03/2021,9:44,BROOKLYN,11226,40.653675,-73.962746,"(40.653675, -73.962746)",,,100 WOODRUFF AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4453693,Sedan,,,, +09/01/2021,15:40,QUEENS,11427,40.72405,-73.76114,"(40.72405, -73.76114)",,,86-65 208 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453053,Sedan,Sedan,,, +09/01/2021,10:15,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453620,Sedan,,,, +08/29/2021,20:00,BRONX,10459,40.826195,-73.89049,"(40.826195, -73.89049)",,,1096 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453848,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,8:15,,,40.6052,-74.0852,"(40.6052, -74.0852)",CLOVE ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453384,Sedan,,,, +09/01/2021,2:10,MANHATTAN,10036,40.76281,-73.99317,"(40.76281, -73.99317)",WEST 47 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452695,Bike,,,, +09/02/2021,13:55,MANHATTAN,10011,40.741283,-73.994804,"(40.741283, -73.994804)",,,110 WEST 20 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453110,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,7:00,MANHATTAN,10009,40.72383,-73.98009,"(40.72383, -73.98009)",,,620 EAST 6 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453369,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,14:10,,,40.75855,-73.82964,"(40.75855, -73.82964)",MAIN STREET,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4452859,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,16:12,QUEENS,11368,40.751526,-73.859184,"(40.751526, -73.859184)",108 STREET,39 AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4453337,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,23:40,,,40.70159,-73.94875,"(40.70159, -73.94875)",HARRISON AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4453083,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,11:22,MANHATTAN,10128,40.782734,-73.955345,"(40.782734, -73.955345)",EAST 90 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4453592,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/02/2021,2:42,,,40.831127,-73.91745,"(40.831127, -73.91745)",EAST 166 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453030,Station Wagon/Sport Utility Vehicle,,,, +07/21/2021,7:50,QUEENS,11105,40.78035,-73.90869,"(40.78035, -73.90869)",,,20-24 28 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454176,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,23:01,,,40.688904,-73.980934,"(40.688904, -73.980934)",FULTON STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4453613,Sedan,Bike,,, +09/02/2021,6:10,BROOKLYN,11213,40.669403,-73.94221,"(40.669403, -73.94221)",KINGSTON AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453934,E-Scooter,,,, +09/03/2021,12:30,,,40.778614,-73.83887,"(40.778614, -73.83887)",130 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453401,Station Wagon/Sport Utility Vehicle,Bike,,, +08/29/2021,11:51,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,,,4453480,Sedan,Sedan,Sedan,, +09/03/2021,17:34,,,40.82092,-73.94333,"(40.82092, -73.94333)",WEST 142 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4454137,Pick-up Truck,Multi-Wheeled Vehicle,Station Wagon/Sport Utility Vehicle,, +09/01/2021,6:31,,,40.670956,-73.91107,"(40.670956, -73.91107)",ROCKAWAY AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4452966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van,Station Wagon/Sport Utility Vehicle, +09/02/2021,18:51,,,40.806614,-73.90769,"(40.806614, -73.90769)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4453307,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +09/02/2021,15:30,,,40.69305,-73.799446,"(40.69305, -73.799446)",108 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453452,Sedan,,,, +09/02/2021,18:05,BROOKLYN,11232,40.654068,-74.001,"(40.654068, -74.001)",34 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453215,Sedan,Bike,,, +09/03/2021,14:10,BROOKLYN,11213,40.668873,-73.93268,"(40.668873, -73.93268)",,,1076 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4453469,Station Wagon/Sport Utility Vehicle,Bus,,, +09/01/2021,5:30,BRONX,10461,40.852196,-73.84364,"(40.852196, -73.84364)",,,1950 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4453000,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,15:21,BROOKLYN,11238,40.676403,-73.96287,"(40.676403, -73.96287)",GRAND AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453175,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,20:07,QUEENS,11106,40.7632,-73.92109,"(40.7632, -73.92109)",34 STREET,31 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453320,E-Bike,Pick-up Truck,,, +09/01/2021,14:30,,,40.736103,-73.90567,"(40.736103, -73.90567)",59 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452916,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,11:00,MANHATTAN,10006,40.706673,-74.01591,"(40.706673, -74.01591)",,,20 MORRIS STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4453539,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,20:36,STATEN ISLAND,10310,40.632717,-74.12178,"(40.632717, -74.12178)",,,49 ROE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453882,Sedan,,,, +09/01/2021,13:40,QUEENS,11385,40.70416,-73.89743,"(40.70416, -73.89743)",,,60-58 68 ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453121,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,10:45,,,40.625206,-74.14955,"(40.625206, -74.14955)",,,1815 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453519,Sedan,Sedan,,, +08/29/2021,6:15,QUEENS,11373,40.745785,-73.889336,"(40.745785, -73.889336)",76 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453734,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,15:20,,,40.577244,-74.00004,"(40.577244, -74.00004)",WEST 33 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453766,Sedan,Ambulance,,, +09/03/2021,6:45,QUEENS,11435,40.699017,-73.80696,"(40.699017, -73.80696)",94 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453457,Sedan,Bus,,, +09/03/2021,21:20,BROOKLYN,11236,40.637928,-73.88904,"(40.637928, -73.88904)",,,1379 EAST 101 STREET,2,0,0,0,0,0,2,0,Unspecified,,,,,4453507,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,10:54,BROOKLYN,11205,40.694576,-73.95615,"(40.694576, -73.95615)",MYRTLE AVENUE,BEDFORD AVENUE,,1,1,1,1,0,0,0,0,View Obstructed/Limited,,,,,4453656,Flat Bed,,,, +09/03/2021,18:45,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4453470,Motorcycle,,,, +09/03/2021,9:00,BROOKLYN,11206,40.70362,-73.953156,"(40.70362, -73.953156)",,,215 HEYWARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453586,Sedan,Bus,,, +09/02/2021,1:27,,,40.75484,-73.98412,"(40.75484, -73.98412)",AVENUE OF THE AMERICAS,,,1,0,1,0,0,0,0,0,,,,,,4453753,,,,, +09/03/2021,19:00,QUEENS,11428,40.71637,-73.74685,"(40.71637, -73.74685)",,,94-45 212 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453529,Sedan,,,, +09/02/2021,13:40,,,40.746536,-73.985954,"(40.746536, -73.985954)",WEST 31 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453147,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,14:15,BROOKLYN,11220,40.63511,-74.00738,"(40.63511, -74.00738)",,,880 59 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453802,Sedan,,,, +09/01/2021,18:12,BROOKLYN,11211,40.71415,-73.93174,"(40.71415, -73.93174)",,,1106 GRAND STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4452948,Bus,,,, +09/02/2021,20:30,,,40.652794,-73.946884,"(40.652794, -73.946884)",NEW YORK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4453629,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,12:00,,,,,,LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4454086,Sedan,Sedan,,, +09/03/2021,9:56,QUEENS,11416,40.68959,-73.84072,"(40.68959, -73.84072)",,,94-06 104 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4453374,Sedan,Sedan,,, +08/25/2021,18:00,MANHATTAN,10013,40.71946,-74.00045,"(40.71946, -74.00045)",,,25 HOWARD STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453684,Sedan,Box Truck,,, +09/03/2021,10:19,BRONX,10457,40.843372,-73.904945,"(40.843372, -73.904945)",CLAY AVENUE,EAST 173 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4453797,Station Wagon/Sport Utility Vehicle,Gator,,, +09/03/2021,15:55,BROOKLYN,11230,40.61793,-73.9571,"(40.61793, -73.9571)",,,1323 EAST 18 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453496,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,22:22,QUEENS,11103,40.76782,-73.90851,"(40.76782, -73.90851)",,,24-30 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453861,Sedan,Sedan,,, +09/03/2021,1:45,,,40.630768,-74.142365,"(40.630768, -74.142365)",,,340 NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453701,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/19/2021,19:44,QUEENS,11416,40.684204,-73.85858,"(40.684204, -73.85858)",82 STREET,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453438,Sedan,,,, +09/02/2021,11:00,QUEENS,11355,40.756046,-73.81307,"(40.756046, -73.81307)",149 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453088,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,9:30,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453844,Sedan,,,, +09/01/2021,2:20,,,0,0,"(0.0, 0.0)",WADSWORTH AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4452720,MOPED,Sedan,,, +09/01/2021,20:00,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",150 STREET,NORTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4453014,Sedan,Sedan,,, +09/03/2021,23:05,,,40.604095,-74.020355,"(40.604095, -74.020355)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4453558,Sedan,Sedan,Sedan,, +09/01/2021,13:35,BROOKLYN,11236,40.632717,-73.89138,"(40.632717, -73.89138)",SEAVIEW AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452823,Sedan,,,, +09/03/2021,21:45,BRONX,10467,40.883675,-73.86274,"(40.883675, -73.86274)",,,3800 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453928,Sedan,PK,,, +09/02/2021,10:15,,,40.85535,-73.91836,"(40.85535, -73.91836)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4453352,Sedan,Sedan,Sedan,Sedan, +08/27/2021,21:23,QUEENS,11372,40.74873,-73.87365,"(40.74873, -73.87365)",,,93-01 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453484,Sedan,,,, +09/03/2021,12:16,,,,,,THIRD AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453606,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,18:00,QUEENS,11372,40.75296,-73.873535,"(40.75296, -73.873535)",35 AVENUE,94 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453019,Sedan,Sedan,,, +09/01/2021,22:39,BROOKLYN,11206,40.698368,-73.953156,"(40.698368, -73.953156)",,,33 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4452907,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,11:00,QUEENS,11416,40.67984,-73.85634,"(40.67984, -73.85634)",,,81-19 102 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4453011,Sedan,,,, +09/03/2021,0:40,MANHATTAN,10018,40.758377,-73.994385,"(40.758377, -73.994385)",DYER AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4453324,Sedan,,,, +09/02/2021,15:45,,,,,,UTOPIA PARKWAY,67 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453189,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,21:01,BROOKLYN,11223,40.607254,-73.96728,"(40.607254, -73.96728)",OCEAN PARKWAY,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452960,Sedan,,,, +09/02/2021,17:50,QUEENS,11101,40.738205,-73.92823,"(40.738205, -73.92823)",38 STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453200,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,16:54,,,40.81339,-73.95627,"(40.81339, -73.95627)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Other Vehicular,Unspecified,,,4453959,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +09/01/2021,4:15,QUEENS,11418,40.705627,-73.83785,"(40.705627, -73.83785)",MAYFAIR ROAD,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4452624,Sedan,Sedan,Sedan,Sedan, +09/02/2021,16:05,BROOKLYN,11209,,,,,,333 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453227,Sedan,,,, +09/02/2021,23:20,,,40.726967,-73.85647,"(40.726967, -73.85647)",66 AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4453649,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,21:30,,,40.764988,-73.96116,"(40.764988, -73.96116)",2 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4453341,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +08/29/2021,23:19,,,,,,Linden Blvd,Avenue D,,4,0,0,0,0,0,4,0,Unspecified,,,,,4453984,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,8:20,,,40.728474,-73.882614,"(40.728474, -73.882614)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453137,Tractor Truck Diesel,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +09/02/2021,13:21,BROOKLYN,11218,40.644096,-73.96687,"(40.644096, -73.96687)",BEVERLEY ROAD,ARGYLE ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453489,Station Wagon/Sport Utility Vehicle,Bike,,, +09/01/2021,19:40,BROOKLYN,11215,40.661354,-73.980576,"(40.661354, -73.980576)",,,467 15 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453285,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,14:08,,,40.62539,-74.135376,"(40.62539, -74.135376)",,,1351 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453523,Sedan,,,, +09/02/2021,0:45,,,0,0,"(0.0, 0.0)",SAINT NICHOLAS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453706,Bike,Sedan,,, +09/02/2021,10:49,BRONX,10463,40.8805,-73.922386,"(40.8805, -73.922386)",,,2475 PALISADE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453906,Sedan,,,, +09/01/2021,19:22,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4453379,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/27/2021,13:00,,,40.708843,-74.00251,"(40.708843, -74.00251)",PEARL STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,,,,,4453547,Bike,,,, +09/03/2021,23:00,,,40.59987,-74.00839,"(40.59987, -74.00839)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4453744,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/02/2021,15:34,BROOKLYN,11212,40.664444,-73.92111,"(40.664444, -73.92111)",,,2126 UNION STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453511,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,15:18,BRONX,10466,40.893177,-73.83807,"(40.893177, -73.83807)",,,4075 SETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453917,Sedan,Sedan,,, +08/29/2021,13:09,QUEENS,11378,40.716743,-73.9037,"(40.716743, -73.9037)",60 LANE,60 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453961,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,20:50,BROOKLYN,11208,40.67381,-73.88288,"(40.67381, -73.88288)",,,2426 PITKIN AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4453579,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,13:48,QUEENS,11104,40.74089,-73.92201,"(40.74089, -73.92201)",GREENPOINT AVENUE,43 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453714,Station Wagon/Sport Utility Vehicle,Bike,,, +09/01/2021,12:30,QUEENS,11423,40.718513,-73.764206,"(40.718513, -73.764206)",,,88-14 198 STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4453836,Taxi,,,, +09/02/2021,0:40,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4453269,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/02/2021,2:25,STATEN ISLAND,10306,40.571663,-74.09192,"(40.571663, -74.09192)",MIDLAND AVENUE,BADEN PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453393,Sedan,Sedan,,, +09/03/2021,13:20,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453874,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,19:00,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,CITY ISLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453623,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,22:14,BROOKLYN,11209,40.620434,-74.024475,"(40.620434, -74.024475)",86 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4453406,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,10:30,BROOKLYN,11230,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,AVENUE N,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453494,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,11:30,QUEENS,11434,40.657784,-73.77032,"(40.657784, -73.77032)",,,175-15 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453411,Sedan,,,, +09/01/2021,9:00,,,40.71306,-73.80669,"(40.71306, -73.80669)",PARSONS BOULEVARD,84 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454034,Sedan,Sedan,,, +09/01/2021,16:26,BRONX,10459,40.82406,-73.8998,"(40.82406, -73.8998)",PROSPECT AVENUE,EAST 165 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453079,Sedan,Sedan,,, +09/01/2021,13:00,BROOKLYN,11207,40.66124,-73.895096,"(40.66124, -73.895096)",,,613 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4452790,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,13:17,,,40.65993,-73.891655,"(40.65993, -73.891655)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452809,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,0:33,,,40.839447,-73.88384,"(40.839447, -73.88384)",BOSTON ROAD,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4453044,Pick-up Truck,Sedan,,, +09/02/2021,7:55,,,40.647064,-74.02263,"(40.647064, -74.02263)",1 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453225,Sedan,Taxi,,, +09/01/2021,11:50,QUEENS,11373,40.739395,-73.87792,"(40.739395, -73.87792)",CORONA AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452832,Bus,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,15:00,,,,,,METROPOLITAN AVENUE,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4454136,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/02/2021,5:25,,,40.83301,-73.95027,"(40.83301, -73.95027)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453070,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +08/30/2021,18:30,QUEENS,11105,40.779163,-73.92052,"(40.779163, -73.92052)",,,23-15 19 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453868,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,10:45,BROOKLYN,11208,40.67239,-73.87463,"(40.67239, -73.87463)",FOUNTAIN AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453248,Station Wagon/Sport Utility Vehicle,FDNY EMS,,, +09/01/2021,10:50,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4452886,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/27/2021,14:33,QUEENS,11377,40.736893,-73.894485,"(40.736893, -73.894485)",50 AVENUE,GARFIELD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453563,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,9:25,BRONX,10453,40.856045,-73.90079,"(40.856045, -73.90079)",GRAND CONCOURSE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453098,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,6:23,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453777,Sedan,Box Truck,,, +09/02/2021,18:40,QUEENS,11101,40.73634,-73.93266,"(40.73634, -73.93266)",GREENPOINT AVENUE,GALE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453267,Taxi,Motorcycle,,, +09/01/2021,11:05,BRONX,10460,40.839325,-73.8648,"(40.839325, -73.8648)",,,1552 LELAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452729,Sedan,,,, +09/03/2021,13:00,,,40.750244,-73.75738,"(40.750244, -73.75738)",SPRINGFIELD BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4453425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +09/02/2021,7:42,,,40.816406,-73.91573,"(40.816406, -73.91573)",BERGEN AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453045,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,22:30,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4453356,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/01/2021,0:23,,,40.888596,-73.89068,"(40.888596, -73.89068)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4453856,Sedan,Sedan,,, +09/03/2021,19:21,QUEENS,11423,40.724678,-73.764824,"(40.724678, -73.764824)",FRANCIS LEWIS BOULEVARD,EPSOM COURSE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4453600,Sedan,Sedan,,, +09/03/2021,18:48,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",LEFFERTS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453577,Sedan,,,, +08/25/2021,18:43,BROOKLYN,11233,40.68134,-73.927895,"(40.68134, -73.927895)",,,225 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,Unspecified,Unspecified,Unspecified,4454025,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +09/02/2021,8:30,QUEENS,11370,40.768303,-73.89962,"(40.768303, -73.89962)",HAZEN STREET,DITMARS BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4453551,Sedan,Sedan,,, +09/01/2021,19:32,MANHATTAN,10034,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,WEST 202 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453093,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,13:13,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4453404,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,, +09/03/2021,16:25,,,40.805725,-73.95442,"(40.805725, -73.95442)",8 AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4453784,Sedan,Sedan,,, +09/01/2021,17:00,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",ELIOT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Turning Improperly,,,,4453119,Bus,Sedan,,, +08/13/2021,11:30,BROOKLYN,11226,40.65249,-73.95267,"(40.65249, -73.95267)",ROGERS AVENUE,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453383,Sedan,Bus,,, +09/02/2021,18:45,STATEN ISLAND,10301,40.61906,-74.10629,"(40.61906, -74.10629)",,,1100 CLOVE ROAD,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4453855,Sedan,Sedan,,, +09/01/2021,6:30,MANHATTAN,10019,,,,WEST 57 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4452742,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/01/2021,10:15,QUEENS,11368,40.74618,-73.85293,"(40.74618, -73.85293)",111 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4452831,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,17:00,BRONX,10457,40.843822,-73.91038,"(40.843822, -73.91038)",EAST 173 STREET,SELWYN AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454094,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,0:00,BRONX,10466,40.89154,-73.849846,"(40.89154, -73.849846)",EDENWALD AVENUE,BOYD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453916,,,,, +09/02/2021,22:20,BROOKLYN,11223,40.600735,-73.98218,"(40.600735, -73.98218)",AVENUE S,WEST 10 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4453257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,13:30,,,40.624367,-74.08033,"(40.624367, -74.08033)",CEDAR STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453866,Sedan,Sedan,,, +09/01/2021,15:20,BROOKLYN,11204,,,,19 AVENUE,55 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454039,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,20:20,QUEENS,11420,40.680496,-73.821365,"(40.680496, -73.821365)",111 AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453568,Station Wagon/Sport Utility Vehicle,Bike,,, +09/03/2021,10:05,BROOKLYN,11234,40.635258,-73.92745,"(40.635258, -73.92745)",KINGS HIGHWAY,GLENWOOD ROAD,,4,0,0,0,0,0,4,0,Turning Improperly,Unsafe Speed,,,,4453821,Sedan,Sedan,,, +09/03/2021,12:35,QUEENS,11420,40.666084,-73.82809,"(40.666084, -73.82809)",NORTH CONDUIT AVENUE,114 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4453571,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,12:00,BROOKLYN,11237,40.700043,-73.91199,"(40.700043, -73.91199)",,,315 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4486617,Sedan,Box Truck,,, +09/02/2021,22:30,BROOKLYN,11208,,,,SUTTER AVENUE,HEMLOCK STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4453262,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/01/2021,2:06,,,40.666405,-73.802635,"(40.666405, -73.802635)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4452876,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/01/2021,13:50,BROOKLYN,11218,40.643303,-73.974106,"(40.643303, -73.974106)",OCEAN PARKWAY,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452987,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,19:49,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",VERMONT STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4453252,Sedan,Sedan,,, +09/02/2021,15:43,QUEENS,11415,40.7038,-73.82345,"(40.7038, -73.82345)",METROPOLITAN AVENUE,129 STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4453135,Sedan,Sedan,,, +09/03/2021,17:25,QUEENS,11374,40.73162,-73.856606,"(40.73162, -73.856606)",99 STREET,63 DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453527,Sedan,Sedan,,, +09/01/2021,1:38,,,40.84474,-73.922585,"(40.84474, -73.922585)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4453218,Station Wagon/Sport Utility Vehicle,TRACTOR TR,Sedan,, +09/01/2021,9:00,QUEENS,11369,,,,87 STREET,30 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452752,Sedan,E-Bike,,, +09/02/2021,22:15,STATEN ISLAND,10314,40.580616,-74.152534,"(40.580616, -74.152534)",RICHMOND HILL ROAD,FOREST HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453394,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/03/2021,15:00,QUEENS,11413,40.677925,-73.75486,"(40.677925, -73.75486)",136 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453673,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,16:00,,,,,,BROOKVILLE BOULEVARD,CROSS ISLAND PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452896,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,0:30,,,40.691612,-73.83667,"(40.691612, -73.83667)",109 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453372,Sedan,,,, +09/01/2021,8:45,MANHATTAN,10025,40.798344,-73.97263,"(40.798344, -73.97263)",,,314 WEST 100 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4452718,Box Truck,,,, +09/02/2021,11:30,QUEENS,11364,40.731777,-73.77012,"(40.731777, -73.77012)",FRANCIS LEWIS BOULEVARD,UNION TURNPIKE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453426,Sedan,Bike,,, +09/02/2021,18:21,,,40.71314,-73.8241,"(40.71314, -73.8241)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,11:15,BROOKLYN,11220,40.634617,-74.02353,"(40.634617, -74.02353)",BAY RIDGE AVENUE,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4452860,Dump,Sedan,Station Wagon/Sport Utility Vehicle,, +09/03/2021,13:35,BRONX,10462,40.854504,-73.867714,"(40.854504, -73.867714)",WHITE PLAINS ROAD,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4453562,Sedan,,,, +09/03/2021,2:15,,,40.76213,-73.7295,"(40.76213, -73.7295)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453289,Sedan,Sedan,,, +09/02/2021,19:00,QUEENS,11372,40.74943,-73.89588,"(40.74943, -73.89588)",35 ROAD,69 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453616,Sedan,Sedan,,, +08/30/2021,20:30,,,40.679585,-73.96507,"(40.679585, -73.96507)",DEAN STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,16:00,,,40.75172,-73.936134,"(40.75172, -73.936134)",40 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,20:00,BROOKLYN,11210,40.627193,-73.94295,"(40.627193, -73.94295)",,,3402 AVENUE J,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453823,Sedan,Sedan,,, +09/02/2021,15:25,QUEENS,11354,40.766743,-73.83272,"(40.766743, -73.83272)",FARRINGTON STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4453479,Sedan,Box Truck,,, +09/01/2021,14:30,QUEENS,11429,40.704514,-73.740105,"(40.704514, -73.740105)",,,112-45 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452848,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,21:43,,,40.819477,-73.92689,"(40.819477, -73.92689)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453447,Moped,,,, +09/01/2021,3:00,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4453314,Sedan,,,, +09/02/2021,8:30,QUEENS,11432,40.712357,-73.7851,"(40.712357, -73.7851)",,,178-21 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453188,Sedan,,,, +09/02/2021,8:00,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Reaction to Uninvolved Vehicle,Unspecified,,,4453982,Station Wagon/Sport Utility Vehicle,Box Truck,Bus,, +09/01/2021,19:15,QUEENS,11361,40.766552,-73.77255,"(40.766552, -73.77255)",38 AVENUE,BELL BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453101,Sedan,,,, +09/03/2021,0:00,BROOKLYN,11219,40.6453,-73.994026,"(40.6453, -73.994026)",,,923 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453800,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,23:53,BRONX,10459,40.830368,-73.89718,"(40.830368, -73.89718)",PROSPECT AVENUE,FREEMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453331,Sedan,Sedan,,, +09/02/2021,22:18,,,40.5912,-74.16106,"(40.5912, -74.16106)",,,786 KLONDIKE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4453522,Sedan,,,, +09/02/2021,0:20,QUEENS,11414,40.657497,-73.83947,"(40.657497, -73.83947)",160 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4452931,Sedan,Sedan,,, +09/02/2021,2:46,,,,,,KINGS HIGHWAY,EAST 34 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453059,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,12:00,,,40.60413,-74.02015,"(40.60413, -74.02015)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4453740,Sedan,,,, +08/28/2021,13:20,MANHATTAN,10030,40.817116,-73.94801,"(40.817116, -73.94801)",WEST 135 STREET,SAINT NICHOLAS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453905,Bike,,,, +09/03/2021,9:00,MANHATTAN,10022,40.753616,-73.96458,"(40.753616, -73.96458)",,,31 BEEKMAN PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453605,Pick-up Truck,Taxi,,, +09/02/2021,4:56,,,40.596596,-74.16218,"(40.596596, -74.16218)",,,2075 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4453109,Sedan,,,, +08/30/2021,16:30,BROOKLYN,11203,40.64334,-73.92849,"(40.64334, -73.92849)",,,734 EAST 51 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453387,Flat Bed,Sedan,,, +09/02/2021,10:25,,,40.764557,-73.82891,"(40.764557, -73.82891)",LEAVITT STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4453087,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,1:47,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",OCEAN PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454059,Taxi,Van,,, +09/01/2021,16:10,BRONX,10455,40.814842,-73.91871,"(40.814842, -73.91871)",,,483 WILLIS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452975,Sedan,,,, +09/02/2021,21:30,BROOKLYN,11222,40.722145,-73.94713,"(40.722145, -73.94713)",,,2 BROOME STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453758,Sedan,Pick-up Truck,,, +09/02/2021,9:30,,,,,,HOME LAWN STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453164,Sedan,Sedan,,, +09/02/2021,13:40,,,40.688698,-73.942085,"(40.688698, -73.942085)",THROOP AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4453243,Sedan,E-Bike,,, +07/14/2021,19:05,BRONX,10466,40.88548,-73.85838,"(40.88548, -73.85838)",BARNES AVENUE,EAST 223 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453935,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/10/2021,23:29,,,40.74355,-73.73246,"(40.74355, -73.73246)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unsafe Speed,Unspecified,,,4453400,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +09/01/2021,20:10,QUEENS,11378,40.72444,-73.915115,"(40.72444, -73.915115)",RUST STREET,56 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452921,E-Scooter,,,, +08/08/2021,11:00,QUEENS,11101,40.75589,-73.94781,"(40.75589, -73.94781)",,,41-18 VERNON BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4453859,Station Wagon/Sport Utility Vehicle,Van,,, +09/02/2021,15:47,MANHATTAN,10012,,,,EAST HOUSTON STREET,BROADWAY,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4453358,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,7:40,,,,,,GRAND CENTRAL PARKWAY,188 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Passenger Distraction,,,,4453182,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,20:00,,,40.845882,-73.930435,"(40.845882, -73.930435)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453343,Tractor Truck Diesel,Sedan,,, +09/03/2021,9:30,QUEENS,11367,40.7317,-73.8256,"(40.7317, -73.8256)",,,141-24 68 DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453432,Sedan,Sedan,,, +09/01/2021,22:40,QUEENS,11101,40.7448,-73.953415,"(40.7448, -73.953415)",47 ROAD,VERNON BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452915,Sedan,,,, +08/29/2021,19:20,QUEENS,11368,40.758305,-73.85561,"(40.758305, -73.85561)",114 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453556,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,3:30,QUEENS,11372,40.754444,-73.878334,"(40.754444, -73.878334)",,,89-11 34 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452690,E-Bike,,,, +09/01/2021,8:00,BROOKLYN,11204,40.61149,-73.98969,"(40.61149, -73.98969)",,,2035 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453201,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,14:30,STATEN ISLAND,10301,40.63714,-74.08088,"(40.63714, -74.08088)",VICTORY BOULEVARD,FREMONT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453860,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,0:08,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453295,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,9:56,,,40.819637,-73.93432,"(40.819637, -73.93432)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4498754,Box Truck,Sedan,,, +09/01/2021,11:15,,,40.72089,-73.99576,"(40.72089, -73.99576)",MOTT STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452817,Pick-up Truck,,,, +09/03/2021,23:40,BROOKLYN,11226,,,,FLATBUSH AVENUE,NEWKIRK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453688,Sedan,Dump,,, +09/03/2021,11:00,,,40.741734,-73.7283,"(40.741734, -73.7283)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453415,Sedan,,,, +09/01/2021,17:45,BROOKLYN,11249,40.7162,-73.96161,"(40.7162, -73.96161)",,,211 BERRY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452951,Sedan,,,, +09/02/2021,0:00,,,40.856625,-73.8319,"(40.856625, -73.8319)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453621,Tractor Truck Diesel,Sedan,,, +09/02/2021,12:30,BROOKLYN,11206,,,,HUMBOLDT STREET,MOORE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453275,Sedan,Sedan,Sedan,, +09/02/2021,14:57,,,40.836296,-73.87369,"(40.836296, -73.87369)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453238,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,17:40,BRONX,10466,40.88877,-73.82829,"(40.88877, -73.82829)",,,1625 EAST 233 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453141,Sedan,Bike,,, +09/03/2021,15:23,QUEENS,11366,40.724983,-73.79422,"(40.724983, -73.79422)",175 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453598,Bus,Sedan,,, +09/03/2021,21:45,,,40.58117,-73.95989,"(40.58117, -73.95989)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4454152,Sedan,Sedan,Sedan,, +09/03/2021,10:30,QUEENS,11432,40.70375,-73.79916,"(40.70375, -73.79916)",JAMAICA AVENUE,160 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4453458,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/15/2021,17:55,,,40.60404,-74.128845,"(40.60404, -74.128845)",LIVINGSTON AVENUE,HOLDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454009,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,23:40,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unsafe Speed,,,,4453368,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,15:34,,,40.858635,-73.846466,"(40.858635, -73.846466)",SEYMOUR AVENUE,PELHAM PARKWAY,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4453475,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,2:10,,,40.768356,-73.904884,"(40.768356, -73.904884)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Other Vehicular,,,,4453646,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,11:00,MANHATTAN,10031,40.818394,-73.95089,"(40.818394, -73.95089)",CONVENT AVENUE,WEST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453893,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,16:35,MANHATTAN,10037,40.820435,-73.93623,"(40.820435, -73.93623)",LENOX AVENUE,WEST 145 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453326,Station Wagon/Sport Utility Vehicle,Bus,,, +09/03/2021,10:20,QUEENS,11421,40.696777,-73.8581,"(40.696777, -73.8581)",,,87-16 PARK LANE SOUTH,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4454138,Sedan,Sedan,,, +08/29/2021,20:36,,,40.686577,-73.947464,"(40.686577, -73.947464)",GATES AVENUE,,,6,0,0,0,1,0,5,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4453348,Sedan,Bike,Sedan,Taxi,Taxi +09/01/2021,20:02,QUEENS,11373,40.73321,-73.869484,"(40.73321, -73.869484)",,,91-41 QUEENS BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453536,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,18:50,,,40.61526,-74.16017,"(40.61526, -74.16017)",LAMBERTS LANE,SELDIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453517,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,22:55,BROOKLYN,11221,40.68998,-73.93751,"(40.68998, -73.93751)",,,771 GREENE AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4454016,Sedan,,,, +09/01/2021,18:59,BROOKLYN,11235,40.586395,-73.9326,"(40.586395, -73.9326)",,,3855 SHORE PARKWAY,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4452958,Sedan,,,, +08/31/2021,12:15,BROOKLYN,11201,40.698597,-73.99246,"(40.698597, -73.99246)",,,75 HENRY STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4453612,Pick-up Truck,,,, +09/01/2021,22:18,MANHATTAN,10029,40.79558,-73.94823,"(40.79558, -73.94823)",,,22 EAST 109 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453302,Sedan,,,, +09/03/2021,23:25,BROOKLYN,11234,40.629246,-73.924095,"(40.629246, -73.924095)",,,1186 EAST 54 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453593,Sedan,Sedan,,, +09/01/2021,6:06,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453029,Pick-up Truck,Pick-up Truck,,, +09/02/2021,15:20,QUEENS,11379,40.716553,-73.88324,"(40.716553, -73.88324)",,,63-41 72 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453967,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,16:40,QUEENS,11373,40.73979,-73.87836,"(40.73979, -73.87836)",,,84-20 BROADWAY,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453153,Station Wagon/Sport Utility Vehicle,Bike,,, +08/30/2021,23:23,,,40.685463,-73.9506,"(40.685463, -73.9506)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453849,Sedan,Sedan,,, +09/03/2021,11:20,BROOKLYN,11210,40.631287,-73.945564,"(40.631287, -73.945564)",,,1623 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4453628,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,10:10,,,40.708195,-73.96594,"(40.708195, -73.96594)",BERRY STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4452940,,,,, +08/29/2021,9:00,,,40.86987,-73.88283,"(40.86987, -73.88283)",MARION AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4453464,Sedan,Sedan,Sedan,, +09/03/2021,11:39,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4454120,Bike,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,7:40,QUEENS,11691,40.595802,-73.764656,"(40.595802, -73.764656)",SEAGIRT BOULEVARD,BEACH 32 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453795,Sedan,Sedan,,, +09/03/2021,5:30,BROOKLYN,11238,40.688873,-73.96001,"(40.688873, -73.96001)",,,376 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453501,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,1:19,QUEENS,11369,40.768726,-73.87056,"(40.768726, -73.87056)",100 STREET,23 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499115,,,,, +09/02/2021,13:05,MANHATTAN,10029,40.790367,-73.949776,"(40.790367, -73.949776)",PARK AVENUE,EAST 102 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453193,Sedan,,,, +09/02/2021,19:50,,,40.576744,-73.98372,"(40.576744, -73.98372)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453208,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,20:35,,,40.866577,-73.8722,"(40.866577, -73.8722)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453638,Pick-up Truck,,,, +09/02/2021,16:45,MANHATTAN,10027,40.813934,-73.96005,"(40.813934, -73.96005)",,,75 LASALLE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453913,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,23:30,QUEENS,11373,40.746258,-73.873955,"(40.746258, -73.873955)",,,41-29 DENMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453733,Sedan,,,, +09/02/2021,11:43,BRONX,10467,40.883133,-73.882095,"(40.883133, -73.882095)",KNOX PLACE,WEST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453051,Sedan,,,, +09/02/2021,13:09,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4453126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/02/2021,4:33,MANHATTAN,10065,40.763042,-73.956535,"(40.763042, -73.956535)",YORK AVENUE,EAST 66 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452963,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/02/2021,4:33,,,40.596596,-74.16218,"(40.596596, -74.16218)",,,2075 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4453309,Box Truck,,,, +09/03/2021,7:35,,,40.79485,-73.962364,"(40.79485, -73.962364)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453443,Bike,Bike,,, +08/29/2021,3:17,BRONX,10452,40.84275,-73.92283,"(40.84275, -73.92283)",GRANT HIGHWAY,PLIMPTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inexperience,,,,4453765,Sedan,Motorcycle,,, +08/11/2021,6:01,BRONX,10474,40.81905,-73.88635,"(40.81905, -73.88635)",,,1327 SENECA AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Driverless/Runaway Vehicle,,,,4453502,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,10:00,,,40.669666,-73.76561,"(40.669666, -73.76561)",FARMERS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4453015,Sedan,Sedan,,, +08/30/2021,23:50,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453380,Sedan,,,, +09/02/2021,11:42,BRONX,10471,40.905983,-73.90058,"(40.905983, -73.90058)",,,5836 FIELDSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4453911,Sedan,,,, +08/31/2021,6:55,BROOKLYN,11204,40.608997,-73.98373,"(40.608997, -73.98373)",,,1547 WEST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454043,Sedan,,,, +09/03/2021,23:00,,,,,,,,85 EAST DRIVE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4453653,Bike,,,, +08/28/2021,13:43,MANHATTAN,10026,40.797894,-73.9498,"(40.797894, -73.9498)",,,24 WEST 111 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4453785,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,0:50,,,40.679485,-73.897026,"(40.679485, -73.897026)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Other Vehicular,,,,4453247,Sedan,Taxi,,, +08/26/2021,21:30,MANHATTAN,10018,40.751114,-73.98499,"(40.751114, -73.98499)",,,59 WEST 37 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454175,Taxi,,,, +09/03/2021,8:50,BRONX,10466,40.88042,-73.84427,"(40.88042, -73.84427)",NEEDHAM AVENUE,EAST 223 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4453930,Sedan,,,, +09/03/2021,11:55,BRONX,10452,40.83714,-73.92049,"(40.83714, -73.92049)",EAST 168 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4453436,Sedan,Box Truck,,, +09/02/2021,2:50,BRONX,10470,40.90524,-73.84954,"(40.90524, -73.84954)",,,4769 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453171,Sedan,Sedan,Sedan,, +09/03/2021,23:02,BRONX,10451,,,,EXTERIOR STREET,EAST 138 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453609,Sedan,Sedan,,, +02/16/2021,17:55,,,40.829163,-73.93727,"(40.829163, -73.93727)",8 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4453375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,13:00,BROOKLYN,11211,40.70992,-73.9623,"(40.70992, -73.9623)",BROADWAY,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453279,Sedan,,,, +09/02/2021,7:00,QUEENS,11369,40.76195,-73.86908,"(40.76195, -73.86908)",,,100-15 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453020,Sedan,Sedan,,, +09/02/2021,21:52,MANHATTAN,10031,40.830845,-73.947235,"(40.830845, -73.947235)",BROADWAY,WEST 152 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453552,Sedan,,,, +09/02/2021,9:20,QUEENS,11692,40.593124,-73.79162,"(40.593124, -73.79162)",,,62-02 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453271,Sedan,Pick-up Truck,,, +09/01/2021,6:05,,,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4453176,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,2:35,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4452625,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,16:05,BROOKLYN,11209,40.624626,-74.02885,"(40.624626, -74.02885)",,,360 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453228,Sedan,,,, +09/03/2021,15:00,BRONX,10455,40.812817,-73.91571,"(40.812817, -73.91571)",,,458 EAST 146 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454125,Sedan,,,, +09/02/2021,12:50,BROOKLYN,11230,40.612083,-73.953835,"(40.612083, -73.953835)",,,2044 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453486,Box Truck,Sedan,,, +09/03/2021,5:33,,,40.71508,-73.73789,"(40.71508, -73.73789)",218 STREET,100 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453419,Sedan,Sedan,,, +09/02/2021,23:50,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453412,Motorcycle,Pick-up Truck,,, +09/02/2021,12:00,QUEENS,11101,40.728188,-73.930145,"(40.728188, -73.930145)",,,39-30 REVIEW AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453196,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/01/2021,23:45,,,40.788555,-73.78234,"(40.788555, -73.78234)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4452919,Pick-up Truck,Sedan,,, +08/27/2021,9:00,,,40.63288,-74.13204,"(40.63288, -74.13204)",,,27 WASHINGTON PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453700,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,8:28,MANHATTAN,10035,40.799473,-73.93888,"(40.799473, -73.93888)",,,2171 3 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453080,Taxi,,,, +09/01/2021,9:00,QUEENS,11361,40.761642,-73.76882,"(40.761642, -73.76882)",43 AVENUE,214 PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Failure to Yield Right-of-Way,,,,4452810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,2:50,MANHATTAN,10025,40.804115,-73.960655,"(40.804115, -73.960655)",,,400 WEST 113 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453707,Ambulance,,,, +09/03/2021,0:00,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",HILLSIDE AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4453454,Sedan,,,, +08/28/2021,17:15,BRONX,10459,40.8263,-73.890915,"(40.8263, -73.890915)",,,1117 HOE AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4453845,Sedan,,,, +09/03/2021,15:00,QUEENS,11413,40.676643,-73.74203,"(40.676643, -73.74203)",,,228-09 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4453471,Sedan,,,, +09/03/2021,3:00,MANHATTAN,10001,,,,,,411 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453746,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,11:20,BROOKLYN,11209,40.629986,-74.0235,"(40.629986, -74.0235)",,,462 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453407,Sedan,Sedan,,, +09/03/2021,17:49,BROOKLYN,11249,,,,WYTHE AVENUE,PENN STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453585,Sedan,Sedan,,, +09/01/2021,13:04,BRONX,10459,40.827274,-73.89192,"(40.827274, -73.89192)",,,1135 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453071,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,16:17,BROOKLYN,11212,40.662613,-73.90895,"(40.662613, -73.90895)",,,682 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453512,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,13:38,QUEENS,11374,40.712437,-73.85974,"(40.712437, -73.85974)",,,70-10 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Oversized Vehicle,,,,4453962,Sedan,Bus,,, +09/03/2021,16:30,BROOKLYN,11211,40.717007,-73.9355,"(40.717007, -73.9355)",,,187 MASPETH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453757,Pick-up Truck,,,, +07/26/2021,16:00,QUEENS,11378,,,,48 street,47 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,16:45,QUEENS,11428,40.717834,-73.75703,"(40.717834, -73.75703)",,,90-51 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453530,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,20:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4453355,Sedan,,,, +09/02/2021,13:40,BROOKLYN,11236,40.652115,-73.916664,"(40.652115, -73.916664)",EAST 92 STREET,AVENUE A,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4453214,Sedan,Sedan,Van,, +09/01/2021,19:30,MANHATTAN,10002,40.715206,-73.9967,"(40.715206, -73.9967)",,,33 BOWERY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453686,Sedan,,,, +09/02/2021,1:00,,,,,,NEW ENGLAND THRUWAY,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4453142,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,9:00,BROOKLYN,11225,40.66047,-73.94476,"(40.66047, -73.94476)",,,470 MIDWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453468,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,18:12,,,40.834133,-73.91665,"(40.834133, -73.91665)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452974,Bus,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,4:30,,,40.6889,-73.92726,"(40.6889, -73.92726)",GATES AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4454012,Sedan,Sedan,Sedan,Sedan, +08/17/2021,23:10,QUEENS,11103,40.75705,-73.91283,"(40.75705, -73.91283)",47 STREET,NEWTOWN ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453873,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/26/2021,11:21,BRONX,10461,40.842728,-73.8289,"(40.842728, -73.8289)",,,1447 MERRY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453622,Sedan,,,, +09/03/2021,17:23,BROOKLYN,11226,,,,,,611 OCEAN AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453497,Bike,Sedan,,, +09/02/2021,17:37,,,40.768887,-73.90691,"(40.768887, -73.90691)",43 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453323,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,2:22,QUEENS,11377,40.74128,-73.90257,"(40.74128, -73.90257)",63 STREET,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4452998,Taxi,,,, +12/20/2021,22:00,BROOKLYN,11217,40.683247,-73.977425,"(40.683247, -73.977425)",,,590 PACIFIC STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499502,Sedan,,,, +09/03/2021,17:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453885,Box Truck,Sedan,,, +09/03/2021,7:00,QUEENS,11368,40.750515,-73.85158,"(40.750515, -73.85158)",114 STREET,43 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453537,Sedan,,,, +09/03/2021,12:10,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453439,Sedan,Taxi,,, +09/03/2021,0:53,,,,,,MARCY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454033,Taxi,Taxi,,, +08/09/2021,18:40,QUEENS,11434,40.68512,-73.78044,"(40.68512, -73.78044)",166 STREET,FOCH BOULEVARD,,1,0,0,0,1,0,0,0,Passing Too Closely,Following Too Closely,,,,4454085,Station Wagon/Sport Utility Vehicle,Bike,,, +09/02/2021,14:00,QUEENS,11379,40.713287,-73.87163,"(40.713287, -73.87163)",METROPOLITAN AVENUE,80 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,11:32,QUEENS,11106,40.766666,-73.9304,"(40.766666, -73.9304)",21 STREET,31 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453040,Sedan,Sedan,,, +09/03/2021,19:37,,,40.81339,-73.95627,"(40.81339, -73.95627)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4453924,Motorscooter,,,, +09/01/2021,8:00,,,,,,LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4452839,Bus,Box Truck,,, +09/03/2021,15:30,,,40.64891,-73.89256,"(40.64891, -73.89256)",EAST 108 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453506,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/03/2021,14:06,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4453822,3-Door,3-Door,,, +09/03/2021,13:30,BRONX,10462,40.841278,-73.86359,"(40.841278, -73.86359)",UNIONPORT ROAD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453545,Sedan,Sedan,,, +09/03/2021,15:20,QUEENS,11369,40.76052,-73.87379,"(40.76052, -73.87379)",95 STREET,31 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Other Vehicular,Unspecified,,,4453573,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/01/2021,19:00,QUEENS,11417,40.68166,-73.843666,"(40.68166, -73.843666)",,,103-43 96 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454133,Sedan,,,, +09/03/2021,13:19,BROOKLYN,11222,40.731056,-73.95442,"(40.731056, -73.95442)",,,925 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453778,Sedan,,,, +09/01/2021,0:30,,,40.758965,-73.95819,"(40.758965, -73.95819)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452885,Sedan,Sedan,,, +09/03/2021,17:48,BROOKLYN,11208,40.668045,-73.86993,"(40.668045, -73.86993)",,,2545 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Lane Changing,Other Vehicular,,,4453670,Sedan,Sedan,Pick-up Truck,, +09/02/2021,16:20,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453266,Sedan,Sedan,,, +09/01/2021,0:00,MANHATTAN,10035,40.806293,-73.93603,"(40.806293, -73.93603)",EAST 128 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4452730,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,20:30,BROOKLYN,11219,40.63406,-74.00411,"(40.63406, -74.00411)",58 STREET,FORT HAMILTON PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453801,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,18:50,BROOKLYN,11208,40.665005,-73.87566,"(40.665005, -73.87566)",,,2378 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,Unspecified,4453253,PK,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/01/2021,11:25,,,40.81916,-73.87982,"(40.81916, -73.87982)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453046,Sedan,,,, +08/25/2021,8:00,,,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453804,,,,, +09/02/2021,15:20,BROOKLYN,11203,40.655754,-73.92403,"(40.655754, -73.92403)",EAST 57 STREET,LENOX ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453395,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,19:20,BROOKLYN,11211,40.71415,-73.93174,"(40.71415, -73.93174)",,,1106 GRAND STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452946,Sedan,,,, +09/02/2021,2:00,,,40.5794,-74.16949,"(40.5794, -74.16949)",RICHMOND AVENUE,PLATINUM AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453306,Sedan,Pick-up Truck,,, +08/09/2021,9:30,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4453862,Pick-up Truck,,,, +09/01/2021,19:40,BROOKLYN,11203,40.650185,-73.92907,"(40.650185, -73.92907)",,,5101 SNYDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453390,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,0:17,,,40.743317,-73.731384,"(40.743317, -73.731384)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453223,Sedan,,,, +09/02/2021,18:53,BROOKLYN,11222,40.733715,-73.9522,"(40.733715, -73.9522)",,,330 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4453284,Sedan,Box Truck,,, +09/01/2021,7:35,QUEENS,11385,40.70863,-73.859406,"(40.70863, -73.859406)",,,75-09 WOODHAVEN BOULEVARD,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4452850,Sedan,Sedan,,, +09/01/2021,16:00,,,,,,UTOPIA PARKWAY,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4452889,4 dr sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,13:15,BRONX,10473,40.822914,-73.84893,"(40.822914, -73.84893)",,,784 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4453127,Bus,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,2:30,MANHATTAN,10036,40.755276,-73.985176,"(40.755276, -73.985176)",,,130 WEST 42 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453743,Sedan,Sedan,,, +09/01/2021,23:28,BROOKLYN,11229,40.595318,-73.95066,"(40.595318, -73.95066)",,,2718 OCEAN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Alcohol Involvement,Unspecified,Unspecified,,4453094,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +08/29/2021,2:15,,,40.705864,-73.91884,"(40.705864, -73.91884)",HART STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453958,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/02/2021,1:15,QUEENS,11364,40.74785,-73.773834,"(40.74785, -73.773834)",,,56-38 CLEARVIEW EXPRESSWAY,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4453102,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,7:30,,,40.629513,-74.14079,"(40.629513, -74.14079)",PORT RICHMOND AVENUE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4453310,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,7:46,QUEENS,11366,40.730923,-73.78998,"(40.730923, -73.78998)",180 STREET,73 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453422,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,10:30,BRONX,10462,40.842205,-73.8556,"(40.842205, -73.8556)",,,2250 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4452728,Sedan,,,, +01/30/2022,22:55,QUEENS,11421,40.686783,-73.859985,"(40.686783, -73.859985)",91 AVENUE,81 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4498570,Sedan,Sedan,,, +09/02/2021,13:30,,,40.860577,-73.90255,"(40.860577, -73.90255)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453351,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,8:00,QUEENS,11691,40.601322,-73.75788,"(40.601322, -73.75788)",NEW HAVEN AVENUE,GRASSMERE TERRACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4453832,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,6:50,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4453483,Sedan,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle, +08/27/2021,10:00,,,40.672794,-73.76942,"(40.672794, -73.76942)",137 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4454089,Sedan,Sedan,,, +09/02/2021,3:00,QUEENS,11004,40.737335,-73.70833,"(40.737335, -73.70833)",260 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453010,Sedan,Tractor Truck Diesel,,, +09/02/2021,20:06,BRONX,10462,40.854465,-73.86805,"(40.854465, -73.86805)",,,641 LYDIG AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4453319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,6:54,QUEENS,11435,40.692295,-73.80949,"(40.692295, -73.80949)",,,143-18 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453451,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,16:45,,,40.666435,-73.83478,"(40.666435, -73.83478)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4453567,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/01/2021,18:05,QUEENS,11422,40.677788,-73.72944,"(40.677788, -73.72944)",,,242-11 130 ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453991,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,14:17,MANHATTAN,10022,,,,2 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453340,Sedan,Sedan,,, +09/03/2021,7:30,,,,,,MANHATTAN BR LOWER,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4453677,Sedan,Sedan,,, +09/03/2021,19:30,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453526,Sedan,,,, +09/01/2021,7:16,,,40.659702,-73.8786,"(40.659702, -73.8786)",WORTMAN AVENUE,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4452789,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,17:16,,,40.75412,-73.92955,"(40.75412, -73.92955)",33 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453867,Sedan,Sedan,,, +09/02/2021,7:00,STATEN ISLAND,10305,40.598934,-74.06377,"(40.598934, -74.06377)",MCCLEAN AVENUE,LILY POND AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4453315,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,21:12,BROOKLYN,11230,40.623825,-73.9737,"(40.623825, -73.9737)",AVENUE J,EAST 3 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453799,Sedan,Bike,,, +08/31/2021,22:45,MANHATTAN,10023,40.778606,-73.98163,"(40.778606, -73.98163)",WEST 72 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453705,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,2:18,BROOKLYN,11225,0,0,"(0.0, 0.0)",,,1055 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453618,Sedan,Sedan,,, +09/02/2021,6:34,BROOKLYN,11234,40.61901,-73.92588,"(40.61901, -73.92588)",AVENUE N,EAST 51 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453050,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,16:35,QUEENS,11432,40.723927,-73.78611,"(40.723927, -73.78611)",TUDOR ROAD,SURREY PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453599,Sedan,,,, +09/02/2021,16:55,BRONX,10461,40.840164,-73.84262,"(40.840164, -73.84262)",FERRIS PLACE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,9:21,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",YORK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4452715,Station Wagon/Sport Utility Vehicle,,,, +09/02/2020,9:22,,,40.88387,-73.886955,"(40.88387, -73.886955)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4453850,Sedan,Sedan,,, +09/01/2021,20:20,QUEENS,11422,40.65742,-73.729324,"(40.65742, -73.729324)",,,259-04 147 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4452897,Sedan,Sedan,,, +09/02/2021,9:00,QUEENS,11375,40.714584,-73.84831,"(40.714584, -73.84831)",71 AVENUE,INGRAM STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Obstruction/Debris,,,,4453091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,1:55,BRONX,10458,40.86404,-73.89245,"(40.86404, -73.89245)",EAST 193 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453367,Taxi,Sedan,,, +09/02/2021,20:38,BROOKLYN,11215,40.671326,-73.98551,"(40.671326, -73.98551)",,,322 6 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453291,Sedan,Bus,,, +09/01/2021,17:10,,,,,,GRAND CENTRAL PARKWAY,MAIN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453427,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,11:45,BROOKLYN,11205,40.697838,-73.97078,"(40.697838, -73.97078)",VANDERBILT AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4453561,Van,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Moped +09/03/2021,22:30,MANHATTAN,10005,40.705307,-74.00903,"(40.705307, -74.00903)",BEAVER STREET,HANOVER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453594,Station Wagon/Sport Utility Vehicle,Ambulance,,, +08/27/2021,12:50,MANHATTAN,10017,,,,,,144 EAST 44,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453617,Sedan,,,, +09/02/2021,8:02,QUEENS,11374,40.722122,-73.8646,"(40.722122, -73.8646)",64 ROAD,ELLWELL CRESCENT,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,11:25,QUEENS,11354,40.771854,-73.83179,"(40.771854, -73.83179)",29 ROAD,WHITESTONE EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453478,Sedan,Sedan,,, +09/01/2021,14:00,BRONX,10472,40.829098,-73.86192,"(40.829098, -73.86192)",,,1133 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452826,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,18:35,BROOKLYN,11224,40.57686,-73.98266,"(40.57686, -73.98266)",MERMAID AVENUE,WEST 15 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4454142,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,13:20,BRONX,10460,40.844795,-73.88208,"(40.844795, -73.88208)",,,906 EAST 180 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4454109,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,19:00,BROOKLYN,11224,40.577244,-74.00004,"(40.577244, -74.00004)",NEPTUNE AVENUE,WEST 33 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4453207,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,13:40,QUEENS,11373,40.743057,-73.87769,"(40.743057, -73.87769)",JUDGE STREET,WHITNEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453446,Sedan,Sedan,,, +09/01/2021,9:30,,,40.726326,-73.7662,"(40.726326, -73.7662)",GRAND CENTRAL PARKWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453183,Sedan,Sedan,,, +09/03/2021,17:45,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453639,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/27/2022,0:00,BRONX,10460,40.83924,-73.86668,"(40.83924, -73.86668)",TAYLOR AVENUE,GUERLAIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499420,Sedan,Sedan,,, +09/02/2021,0:00,,,40.59281,-73.97877,"(40.59281, -73.97877)",86 STREET,WEST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453344,Sedan,,,, +09/03/2021,13:45,MANHATTAN,10281,40.714527,-74.015686,"(40.714527, -74.015686)",,,250 VESEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453541,LIMO,Sedan,,, +09/03/2021,20:45,,,40.632565,-74.137344,"(40.632565, -74.137344)",,,387 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453521,Pick-up Truck,Sedan,,, +09/01/2021,15:26,,,40.702526,-73.95934,"(40.702526, -73.95934)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452934,Station Wagon/Sport Utility Vehicle,School Bus,,, +09/03/2021,13:34,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4453463,Sedan,Sedan,,, +09/02/2021,14:09,BROOKLYN,11233,,,,EASTERN PARKWAY,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4453134,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +09/02/2021,3:30,,,40.72656,-73.83802,"(40.72656, -73.83802)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453739,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,10:35,BROOKLYN,11233,,,,CHAUNCEY STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453773,Sedan,Sedan,,, +09/02/2021,22:09,BROOKLYN,11236,,,,EAST 76 STREET,RALPH AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4453505,Sedan,,,, +09/03/2021,23:02,QUEENS,11417,40.677708,-73.84768,"(40.677708, -73.84768)",,,107-20 90 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4453574,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/02/2021,20:30,QUEENS,11356,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,18 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4453476,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,2:44,BROOKLYN,11234,40.62788,-73.93251,"(40.62788, -73.93251)",AVENUE J,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4498681,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,22:00,MANHATTAN,10025,40.804886,-73.96248,"(40.804886, -73.96248)",AMSTERDAM AVENUE,WEST 113 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453894,Sedan,,,, +09/01/2021,9:30,BROOKLYN,11219,40.626343,-73.99898,"(40.626343, -73.99898)",,,1365 63 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,19:55,,,40.594334,-73.935905,"(40.594334, -73.935905)",COYLE STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4452959,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,6:45,,,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453349,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,21:00,,,40.843777,-73.90947,"(40.843777, -73.90947)",EAST 173 STREET,,,1,0,1,0,0,0,0,0,,,,,,4454096,,,,, +08/27/2021,16:35,BRONX,10467,40.877037,-73.86682,"(40.877037, -73.86682)",,,3430 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453915,Sedan,Sedan,,, +09/03/2021,10:30,BROOKLYN,11211,40.714825,-73.95882,"(40.714825, -73.95882)",DRIGGS AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453584,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,11:15,,,40.767113,-73.90405,"(40.767113, -73.90405)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4498944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,19:00,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",ATLANTIC AVENUE,UTICA AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4454013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,17:07,BROOKLYN,11226,40.650642,-73.96527,"(40.650642, -73.96527)",EAST 16 STREET,CATON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453498,Sedan,,,, +09/02/2021,20:57,QUEENS,11434,40.667847,-73.77612,"(40.667847, -73.77612)",159 STREET,NORTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4453297,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/02/2021,15:30,QUEENS,11103,40.768234,-73.90709,"(40.768234, -73.90709)",44 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4453872,Station Wagon/Sport Utility Vehicle,Bus,,, +09/01/2021,11:30,BROOKLYN,11226,40.649944,-73.96703,"(40.649944, -73.96703)",CATON AVENUE,RUGBY ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452822,Sedan,,,, +09/02/2021,20:00,BROOKLYN,11206,40.701424,-73.94307,"(40.701424, -73.94307)",BROADWAY,THORNTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453277,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,12:52,MANHATTAN,10000,40.768795,-73.97031,"(40.768795, -73.97031)",,,21 TRANSVERSE ROAD NUMBER ONE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4452751,Bike,,,, +09/02/2021,11:37,BROOKLYN,11215,40.662678,-73.9851,"(40.662678, -73.9851)",16 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453217,Sedan,,,, +09/01/2021,10:51,BRONX,10474,40.814224,-73.8826,"(40.814224, -73.8826)",,,669 DRAKE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453058,Concrete Mixer,Flat Bed,,, +09/03/2021,15:34,,,40.74242,-73.826546,"(40.74242, -73.826546)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453696,Sedan,,,, +09/02/2021,9:42,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453332,Sedan,Box Truck,,, +09/03/2021,9:12,,,40.685513,-73.97429,"(40.685513, -73.97429)",SOUTH PORTLAND AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453371,Sedan,E-Bike,,, +09/02/2021,13:00,BRONX,10451,40.816696,-73.923096,"(40.816696, -73.923096)",MORRIS AVENUE,EAST 148 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453107,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/01/2021,16:00,MANHATTAN,10038,40.7098,-74.00883,"(40.7098, -74.00883)",,,22 JOHN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452862,Sedan,Carry All,,, +09/01/2021,14:08,,,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452979,Sedan,Sedan,,, +09/02/2021,22:53,,,40.713974,-73.97997,"(40.713974, -73.97997)",LEWIS STREET,,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4453647,Sedan,,,, +09/03/2021,7:20,,,,,,QUEENS PLAZA SOUTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453382,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,7:00,QUEENS,11357,40.790165,-73.80753,"(40.790165, -73.80753)",154 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453086,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,14:30,QUEENS,11420,40.67577,-73.81695,"(40.67577, -73.81695)",,,121-10 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453026,Sedan,,,, +09/01/2021,15:00,STATEN ISLAND,10304,40.617954,-74.07766,"(40.617954, -74.07766)",,,75 KIMBERLY LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453854,Sedan,,,, +09/01/2021,13:47,STATEN ISLAND,10314,40.608833,-74.12118,"(40.608833, -74.12118)",MANOR ROAD,SCHMIDTS LANE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453399,Sedan,Sedan,,, +08/11/2021,13:10,,,40.67279,-73.922226,"(40.67279, -73.922226)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453942,Sedan,Sedan,,, +09/02/2021,1:45,BROOKLYN,11236,40.652435,-73.91183,"(40.652435, -73.91183)",AVENUE B,EAST 96 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4453931,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/01/2021,8:33,QUEENS,11358,,,,167 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4452744,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,3:02,,,,,,HARLEM RIVER DRIVE RAMP,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4452692,Taxi,Sedan,,, +09/01/2021,9:40,BROOKLYN,11226,40.64067,-73.953094,"(40.64067, -73.953094)",,,2513 AVENUE D,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452912,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,14:00,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4453557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,17:19,BROOKLYN,11207,40.67021,-73.898346,"(40.67021, -73.898346)",BELMONT AVENUE,ALABAMA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453261,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,16:31,BROOKLYN,11218,40.643337,-73.98926,"(40.643337, -73.98926)",,,1119 38 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4452988,Station Wagon/Sport Utility Vehicle,Bike,,, +09/01/2021,14:36,BRONX,10467,40.856323,-73.87244,"(40.856323, -73.87244)",BRONX RIVER PARKWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4452872,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,3:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4453359,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/02/2021,9:30,QUEENS,11367,40.729443,-73.82551,"(40.729443, -73.82551)",JEWEL AVENUE,140 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453187,Bike,Sedan,,, +09/02/2021,14:20,BROOKLYN,11214,40.606674,-73.99252,"(40.606674, -73.99252)",21 AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453202,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,13:09,QUEENS,11413,40.67759,-73.74479,"(40.67759, -73.74479)",225 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453414,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,8:47,BROOKLYN,11210,40.62285,-73.95479,"(40.62285, -73.95479)",,,1241 EAST 21 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4453491,Sedan,,,, +09/02/2021,2:30,MANHATTAN,10001,40.75011,-73.99634,"(40.75011, -73.99634)",,,330 WEST 30 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453140,Sedan,,,, +08/31/2021,19:30,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453725,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,12:00,QUEENS,11101,40.743084,-73.9358,"(40.743084, -73.9358)",47 AVENUE,31 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453459,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,11:45,,,40.82256,-73.87101,"(40.82256, -73.87101)",STORY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453903,Sedan,Sedan,,, +09/02/2021,22:07,BRONX,10473,40.823257,-73.84902,"(40.823257, -73.84902)",CASTLE HILL AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453239,Sedan,Ambulance,,, +09/02/2021,17:00,QUEENS,11421,,,,,,86-13 75 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4453364,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,19:05,BROOKLYN,11219,40.636967,-73.9865,"(40.636967, -73.9865)",,,4301 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454062,Sedan,Bus,,, +09/02/2021,19:15,,,,,,west 17 street,BOARDWALK WEST,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453764,Bike,,,, +09/02/2021,17:00,MANHATTAN,10039,40.82093,-73.93739,"(40.82093, -73.93739)",,,137 WEST 145 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4453327,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,22:00,QUEENS,11429,40.7031,-73.73038,"(40.7031, -73.73038)",MURDOCK AVENUE,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453531,Sedan,,,, +08/24/2021,21:13,,,40.584057,-74.16102,"(40.584057, -74.16102)",WESTPORT STREET,MARSH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453518,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,20:35,BROOKLYN,11226,40.650208,-73.95244,"(40.650208, -73.95244)",,,836 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4452922,Van,Sedan,Station Wagon/Sport Utility Vehicle,, +09/02/2021,14:30,,,40.708294,-73.7385,"(40.708294, -73.7385)",110 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453830,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/01/2021,16:00,QUEENS,11373,40.73966,-73.880516,"(40.73966, -73.880516)",,,83-07 DONGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453154,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,4:12,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453972,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,14:10,QUEENS,11364,40.73789,-73.76794,"(40.73789, -73.76794)",73 AVENUE,HOLLIS HILLS TERRACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453258,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,10:30,,,,,,,,65 EAST DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4453047,Box Truck,,,, +09/02/2021,16:16,,,40.810627,-73.95828,"(40.810627, -73.95828)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4453272,Moped,,,, +09/03/2021,18:30,BROOKLYN,11203,40.647266,-73.92408,"(40.647266, -73.92408)",,,383 EAST 56 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4453627,Sedan,Box Truck,,, +09/03/2021,17:30,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4453878,Station Wagon/Sport Utility Vehicle,Dump,,, +09/02/2021,15:00,,,40.73769,-73.76858,"(40.73769, -73.76858)",CLEARVIEW EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4453428,Sedan,Sedan,Sedan,, +09/01/2021,15:00,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453292,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,23:00,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453413,Sedan,,,, +08/24/2021,13:00,BROOKLYN,11214,40.60023,-73.9956,"(40.60023, -73.9956)",BAY PARKWAY,BENSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454066,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/01/2021,10:30,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",UTICA AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453391,Sedan,,,, +09/01/2021,10:10,BROOKLYN,11236,40.63217,-73.89669,"(40.63217, -73.89669)",,,9013 AVENUE N,2,0,0,0,0,0,2,0,Driver Inexperience,,,,,4452811,Sedan,,,, +09/02/2021,11:02,MANHATTAN,10029,40.79814,-73.94051,"(40.79814, -73.94051)",,,186 EAST 116 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4453081,Station Wagon/Sport Utility Vehicle,Bike,,, +09/03/2021,23:50,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454072,Sedan,,,, +09/02/2021,14:26,QUEENS,11411,40.69768,-73.73577,"(40.69768, -73.73577)",223 STREET,115 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453222,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/01/2021,7:50,,,,,,GRAND CENTRAL PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4453041,Taxi,Sedan,Taxi,Taxi, +09/01/2021,0:00,,,,,,68 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4452768,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/01/2021,5:57,BROOKLYN,11209,40.62079,-74.04048,"(40.62079, -74.04048)",92 STREET,SHORE ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4452852,Sedan,Sedan,,, +08/23/2021,7:50,,,40.696686,-73.9378,"(40.696686, -73.9378)",LEWIS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454024,Sedan,,,, +09/02/2021,19:23,MANHATTAN,10013,40.726746,-74.00898,"(40.726746, -74.00898)",GREENWICH STREET,VANDAM STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453386,Pick-up Truck,Bike,,, +09/03/2021,21:55,BRONX,10458,40.86038,-73.88889,"(40.86038, -73.88889)",EAST FORDHAM ROAD,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4454128,Bus,Sedan,,, +09/01/2021,20:27,QUEENS,11418,40.70293,-73.81903,"(40.70293, -73.81903)",,,132-50 METROPOLITAN AVENUE,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453115,Sedan,E-Bike,,, +09/01/2021,19:10,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4453103,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,8:30,,,40.852383,-73.90365,"(40.852383, -73.90365)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452736,Taxi,Van,,, +09/02/2021,19:40,STATEN ISLAND,10306,40.575596,-74.09598,"(40.575596, -74.09598)",MORELAND STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453403,Sedan,,,, +09/01/2021,5:00,,,40.692547,-73.90736,"(40.692547, -73.90736)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453957,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,13:25,,,40.76363,-73.9533,"(40.76363, -73.9533)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,19:02,BROOKLYN,11205,40.694214,-73.95932,"(40.694214, -73.95932)",MYRTLE AVENUE,KENT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453240,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,16:00,MANHATTAN,10030,40.814632,-73.9442,"(40.814632, -73.9442)",WEST 134 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4454154,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,14:45,MANHATTAN,10009,40.72285,-73.98542,"(40.72285, -73.98542)",,,149 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453354,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,9:06,BROOKLYN,11201,,,,JAY STREET,CATHEDRAL PLACE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453604,Station Wagon/Sport Utility Vehicle,Bike,,, +08/04/2021,10:31,,,40.773964,-73.9228,"(40.773964, -73.9228)",HOYT AVENUE SOUTH,23 STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4453858,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,15:59,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4453553,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,21:08,,,40.69205,-73.982544,"(40.69205, -73.982544)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4453278,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/02/2021,0:00,BRONX,10467,,,,EAST GUN HILL ROAD,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4453144,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,18:57,BRONX,10455,40.812283,-73.90447,"(40.812283, -73.90447)",EAST 149 STREET,PROSPECT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453305,Sedan,,,, +09/02/2021,0:19,,,40.78519,-73.95143,"(40.78519, -73.95143)",EAST 95 STREET,,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4452962,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,15:00,,,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4453191,Station Wagon/Sport Utility Vehicle,Bike,,, +09/02/2021,18:00,,,40.60174,-73.990395,"(40.60174, -73.990395)",84 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453197,Sedan,,,, +09/01/2021,4:03,MANHATTAN,10128,40.781246,-73.9479,"(40.781246, -73.9479)",,,343 EAST 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4452636,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/03/2021,0:25,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453265,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,21:45,,,40.833065,-73.85974,"(40.833065, -73.85974)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4453005,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/03/2021,10:25,QUEENS,11385,40.70593,-73.87492,"(40.70593, -73.87492)",,,77-20 75 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453973,Station Wagon/Sport Utility Vehicle,Motorcycle,Sedan,, +09/02/2021,7:30,QUEENS,11428,40.720703,-73.74111,"(40.720703, -73.74111)",93 AVENUE,216 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453021,Tow Truck / Wrecker,Sedan,,, +09/02/2021,1:00,,,40.768887,-73.90691,"(40.768887, -73.90691)",43 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453322,Sedan,,,, +09/02/2021,5:41,BROOKLYN,11226,40.65488,-73.96189,"(40.65488, -73.96189)",OCEAN AVENUE,PARKSIDE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453487,Sedan,,,, +09/02/2021,13:15,,,,,,BELT PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4453233,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/23/2021,12:30,QUEENS,11372,40.75607,-73.88059,"(40.75607, -73.88059)",,,87-01 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,,,,,,4453339,,,,, +09/01/2021,13:30,BROOKLYN,11225,40.67098,-73.9595,"(40.67098, -73.9595)",,,286 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452918,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,15:20,BROOKLYN,11233,40.67101,-73.92239,"(40.67101, -73.92239)",RALPH AVENUE,STERLING PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4453986,Sedan,Sedan,,, +09/01/2021,20:47,MANHATTAN,10036,40.758427,-73.99264,"(40.758427, -73.99264)",9 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4453123,Sedan,Sedan,,, +09/02/2021,23:08,QUEENS,11411,40.701805,-73.74115,"(40.701805, -73.74115)",COLFAX STREET,SPRINGFIELD BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453418,Box Truck,Sedan,,, +08/24/2021,19:00,QUEENS,11423,40.706966,-73.77338,"(40.706966, -73.77338)",,,102-19 184 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453455,Sedan,UNK,,, +09/03/2021,22:40,,,,,,RIVERSIDE DRIVE EAST,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4453909,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/03/2021,8:40,QUEENS,11101,40.749336,-73.94036,"(40.749336, -73.94036)",,,27-09 42 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453719,Sedan,Flat Bed,,, +09/01/2021,11:30,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453381,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,10:05,BROOKLYN,11214,40.61239,-74.000916,"(40.61239, -74.000916)",17 AVENUE,NEW UTRECHT AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454050,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/03/2021,10:45,BRONX,10451,40.827812,-73.925934,"(40.827812, -73.925934)",RIVER AVENUE,EAST 161 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4453651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,15:00,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",EASTERN PARKWAY,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453513,,,,, +09/02/2021,1:05,,,40.82967,-73.931076,"(40.82967, -73.931076)",OGDEN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Oversized Vehicle,,,,4453787,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +08/23/2021,14:00,QUEENS,11433,40.700054,-73.78657,"(40.700054, -73.78657)",,,170-04 107 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4453843,Sedan,Sedan,Pick-up Truck,, +09/01/2021,22:57,MANHATTAN,10022,40.754875,-73.96853,"(40.754875, -73.96853)",EAST 50 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Tinted Windows,Unspecified,,,,4452945,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,5:30,QUEENS,11385,40.702755,-73.91012,"(40.702755, -73.91012)",,,1704 LINDEN STREET,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4453963,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,1:15,BROOKLYN,11207,40.662113,-73.89002,"(40.662113, -73.89002)",,,665 WYONA STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453254,Sedan,,,, +09/02/2021,15:45,STATEN ISLAND,10305,40.598415,-74.08239,"(40.598415, -74.08239)",,,1177 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453396,Pick-up Truck,,,, +09/02/2021,18:44,,,40.829647,-73.94439,"(40.829647, -73.94439)",AMSTERDAM AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453376,E-Scooter,Sedan,,, +09/03/2021,20:22,BROOKLYN,11203,40.643894,-73.93826,"(40.643894, -73.93826)",CLARENDON ROAD,ALBANY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453631,Sedan,,,, +08/29/2021,0:00,BROOKLYN,11201,40.698246,-73.98055,"(40.698246, -73.98055)",NAVY STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4454088,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/01/2021,23:49,BRONX,10471,40.909615,-73.89769,"(40.909615, -73.89769)",WEST 261 STREET,HUXLEY AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4453851,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +09/01/2021,8:00,BRONX,10463,40.87618,-73.90943,"(40.87618, -73.90943)",,,70 MARBLE HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453863,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,2:22,,,40.75218,-73.85201,"(40.75218, -73.85201)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453445,Sedan,,,, +09/01/2021,8:05,,,40.595394,-74.167564,"(40.595394, -74.167564)",,,80 MULBERRY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453311,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,12:40,,,40.819878,-73.85777,"(40.819878, -73.85777)",SEWARD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453566,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,13:20,BROOKLYN,11219,40.62847,-74.002525,"(40.62847, -74.002525)",12 AVENUE,63 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453408,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,17:35,,,40.684002,-73.863434,"(40.684002, -73.863434)",ATLANTIC AVENUE,76 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4454144,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,23:35,,,,,,QUEENS BOULEVARD,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453595,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,9:20,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453509,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,8:50,,,,,,MANHATTAN BRIDGE,EAST RIVER,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4453678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,15:20,,,,,,THROGS NECK EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4453440,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,11:00,BRONX,10474,40.81899,-73.8867,"(40.81899, -73.8867)",BRYANT AVENUE,SENECA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453846,Station Wagon/Sport Utility Vehicle,,,, +08/30/2021,20:45,,,40.669712,-73.94774,"(40.669712, -73.94774)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4454032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/02/2021,8:10,MANHATTAN,10028,40.77656,-73.95271,"(40.77656, -73.95271)",2 AVENUE,EAST 84 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453016,Bike,Moped,,, +09/01/2021,7:35,QUEENS,11101,40.75097,-73.90953,"(40.75097, -73.90953)",,,37-20 WOODSIDE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452838,Sedan,Box Truck,,, +09/01/2021,6:15,,,40.746113,-73.73576,"(40.746113, -73.73576)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4452727,Chassis Cab,,,, +09/01/2021,18:05,MANHATTAN,10036,40.760117,-73.98484,"(40.760117, -73.98484)",WEST 48 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,14:30,STATEN ISLAND,10304,40.61086,-74.088875,"(40.61086, -74.088875)",RICHMOND ROAD,PIERCE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453131,Sedan,Sedan,,, +09/01/2021,20:00,,,40.54823,-74.220665,"(40.54823, -74.220665)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454123,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,19:00,QUEENS,11364,40.74554,-73.7768,"(40.74554, -73.7768)",FRANCIS LEWIS BOULEVARD,58 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4452890,4 dr sedan,4 dr sedan,,, +09/01/2021,17:59,QUEENS,11413,40.671013,-73.75818,"(40.671013, -73.75818)",EDGEWOOD AVENUE,141 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4452880,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/02/2021,9:40,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453095,Station Wagon/Sport Utility Vehicle,Motorcycle,Sedan,, +09/02/2021,6:00,,,40.641205,-73.877205,"(40.641205, -73.877205)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4453246,Sedan,,,, +09/03/2021,18:23,MANHATTAN,10027,40.80897,-73.94833,"(40.80897, -73.94833)",7 AVENUE,WEST 125 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453779,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,0:00,BROOKLYN,11207,40.665794,-73.89625,"(40.665794, -73.89625)",,,405 GEORGIA AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4453423,FORKLIFT,Sedan,,, +09/03/2021,21:23,,,40.762802,-73.965675,"(40.762802, -73.965675)",3 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454179,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,12:15,QUEENS,11354,40.775257,-73.824554,"(40.775257, -73.824554)",PARSONS BOULEVARD,25 DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453482,Pick-up Truck,Sedan,,, +08/28/2021,3:00,,,40.678455,-73.949684,"(40.678455, -73.949684)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453350,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,16:00,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453608,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,3:00,MANHATTAN,10037,40.812813,-73.94181,"(40.812813, -73.94181)",LENOX AVENUE,WEST 133 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4452938,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/01/2021,13:50,,,40.818504,-73.91448,"(40.818504, -73.91448)",3 AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4452968,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,18:50,BROOKLYN,11212,40.662033,-73.921135,"(40.662033, -73.921135)",,,205 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453213,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,15:42,BRONX,10469,40.8703,-73.839905,"(40.8703, -73.839905)",TIEMANN AVENUE,ADEE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453179,Sedan,Sedan,,, +09/02/2021,20:37,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4453301,Sedan,Sedan,Sedan,, +09/03/2021,12:05,,,40.73277,-73.94282,"(40.73277, -73.94282)",GREENPOINT AVENUE,KINGSLAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453467,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/02/2021,16:00,QUEENS,11385,,,,MYRTLE AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,19:25,,,40.79573,-73.93267,"(40.79573, -73.93267)",PLEASANT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453318,Sedan,,,, +09/01/2021,8:00,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4452996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,10:51,,,40.79286,-73.96754,"(40.79286, -73.96754)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Passing or Lane Usage Improper,,,,4453450,Station Wagon/Sport Utility Vehicle,Ambulance,,, +08/28/2021,14:30,QUEENS,11368,40.7508,-73.86164,"(40.7508, -73.86164)",,,104-53 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,1:15,,,40.622093,-73.937515,"(40.622093, -73.937515)",RYDER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4452924,Sedan,Sedan,,, +09/01/2021,11:48,,,40.725243,-73.933914,"(40.725243, -73.933914)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4453283,Box Truck,Tractor Truck Diesel,,, +09/01/2021,16:13,,,40.81569,-73.958305,"(40.81569, -73.958305)",WEST 125 STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Turning Improperly,,,,4453709,Sedan,Bike,,, +09/01/2021,22:20,,,40.61687,-74.13592,"(40.61687, -74.13592)",,,273 NEAL DOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453525,Sedan,UNKNOWN,,, +09/02/2021,10:00,QUEENS,11373,40.74407,-73.88505,"(40.74407, -73.88505)",,,80-01 BAXTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453155,Tow Truck / Wrecker,Sedan,,, +08/22/2021,0:00,BROOKLYN,11238,40.67224,-73.96104,"(40.67224, -73.96104)",CLASSON AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453923,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,20:13,QUEENS,11103,40.765205,-73.91392,"(40.765205, -73.91392)",,,28-33 STEINWAY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4453549,Sedan,,,, +09/03/2021,15:34,QUEENS,11374,,,,63 ROAD,QUEENS BOULEVARD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4453659,Sedan,E-Bike,,, +09/03/2021,23:53,BROOKLYN,11216,40.691708,-73.94849,"(40.691708, -73.94849)",DE KALB AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453886,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,13:36,MANHATTAN,10001,40.748512,-73.98872,"(40.748512, -73.98872)",WEST 32 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453749,Bus,Van,,, +09/03/2021,16:50,QUEENS,11413,40.675213,-73.7378,"(40.675213, -73.7378)",MERRICK BOULEVARD,232 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453472,Station Wagon/Sport Utility Vehicle,Bus,,, +09/02/2021,16:04,QUEENS,11373,40.73462,-73.874214,"(40.73462, -73.874214)",,,89-10 QUEENS BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4453170,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,14:25,MANHATTAN,10002,40.715366,-73.98987,"(40.715366, -73.98987)",,,17 ESSEX STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453589,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,12:15,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4453477,Motorcycle,,,, +09/01/2021,15:29,MANHATTAN,10029,40.796074,-73.94349,"(40.796074, -73.94349)",EAST 112 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4453435,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/02/2021,12:19,MANHATTAN,10032,40.844685,-73.9408,"(40.844685, -73.9408)",FORT WASHINGTON AVENUE,WEST 172 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453345,Sedan,,,, +09/03/2021,18:35,BROOKLYN,11220,,,,56 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4453812,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/02/2021,2:45,QUEENS,11365,40.735092,-73.79099,"(40.735092, -73.79099)",,,67-04 181 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453184,Sedan,,,, +09/02/2021,17:30,BRONX,10458,40.85681,-73.88757,"(40.85681, -73.88757)",,,571 EAST 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454207,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,16:55,MANHATTAN,10016,40.750217,-73.979065,"(40.750217, -73.979065)",PARK AVENUE,EAST 39 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4452954,Taxi,Taxi,,, +01/27/2022,8:58,BRONX,10460,40.840473,-73.87399,"(40.840473, -73.87399)",,,1180 LEBANON STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4498796,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,18:01,,,40.82499,-73.91662,"(40.82499, -73.91662)",PARK AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,6:00,QUEENS,11357,40.78168,-73.82102,"(40.78168, -73.82102)",20 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498499,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,9:00,,,40.74504,-73.7345,"(40.74504, -73.7345)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498301,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,15:00,QUEENS,11422,40.658733,-73.727745,"(40.658733, -73.727745)",,,145-28 FRANKTON STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4498879,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,16:54,BRONX,10459,40.822704,-73.886345,"(40.822704, -73.886345)",,,1365 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498731,Sedan,Sedan,,, +01/28/2022,10:00,BROOKLYN,11209,40.61917,-74.03186,"(40.61917, -74.03186)",,,324 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498022,Station Wagon/Sport Utility Vehicle,,,, +01/22/2022,16:14,,,40.68829,-73.9391,"(40.68829, -73.9391)",QUINCY STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498286,Sedan,,,, +01/29/2022,2:18,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,3,0,0,0,0,0,3,0,Pavement Slippery,,,,,4499054,Sedan,,,, +01/27/2022,15:30,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",WESTCHESTER AVENUE,SAINT ANNS AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498008,E-Bike,Sedan,,, +01/31/2022,18:15,,,40.69245,-73.811005,"(40.69245, -73.811005)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4498929,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,20:15,QUEENS,11104,,,,42nd St,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499098,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,8:09,STATEN ISLAND,10301,0,0,"(0.0, 0.0)",,,483 JERSEY STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4498240,Sedan,Sedan,Pick-up Truck,, +01/23/2022,8:04,BRONX,10471,40.906456,-73.898544,"(40.906456, -73.898544)",WEST 259 STREET,HUXLEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498140,Sedan,,,, +01/28/2022,12:45,BRONX,10475,,,,,,2338 PALMER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498634,Sedan,,,, +01/30/2022,10:30,BROOKLYN,11214,40.603504,-73.99939,"(40.603504, -73.99939)",,,8659 20 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498333,Sedan,,,, +01/28/2022,18:00,QUEENS,11367,40.729767,-73.824356,"(40.729767, -73.824356)",,,141-19 JEWEL AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4498372,Sedan,Ambulance,,, +01/28/2022,19:30,QUEENS,11426,40.738277,-73.721466,"(40.738277, -73.721466)",,,82-04 247 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498168,Sedan,,,, +01/26/2022,16:30,QUEENS,11369,40.759026,-73.85805,"(40.759026, -73.85805)",,,32-31 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498037,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/20/2022,22:38,,,,,,CROSS ISLAND PARKWAY,160 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498096,Sedan,Sedan,,, +01/31/2022,2:05,QUEENS,11373,40.73826,-73.87928,"(40.73826, -73.87928)",51 AVENUE,VANLOON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498614,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,15:00,QUEENS,11373,40.741493,-73.87503,"(40.741493, -73.87503)",90 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498383,Sedan,,,, +01/28/2022,20:15,BRONX,10459,40.826256,-73.88881,"(40.826256, -73.88881)",BRYANT AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498153,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,8:50,QUEENS,11433,40.6922,-73.79173,"(40.6922, -73.79173)",BRINKERHOFF AVENUE,159 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498121,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,14:30,QUEENS,11432,40.712612,-73.79323,"(40.712612, -73.79323)",HIGHLAND AVENUE,HOME LAWN STREET,,1,0,1,0,0,0,0,0,,,,,,4499395,,,,, +01/30/2022,23:11,BROOKLYN,11237,40.696465,-73.91826,"(40.696465, -73.91826)",,,319 WILSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498714,Sedan,,,, +01/28/2022,8:40,QUEENS,11374,40.72454,-73.86937,"(40.72454, -73.86937)",,,62-98 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,6:00,BROOKLYN,11203,40.64898,-73.9301,"(40.64898, -73.9301)",,,986 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498769,Sedan,,,, +01/27/2022,7:50,,,40.839447,-73.88384,"(40.839447, -73.88384)",BOSTON ROAD,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498764,Sedan,Sedan,,, +01/20/2022,22:00,BROOKLYN,11232,40.663406,-73.99381,"(40.663406, -73.99381)",,,182 19 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498005,Sedan,,,, +01/31/2022,15:35,,,40.84769,-73.919334,"(40.84769, -73.919334)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4498978,Sedan,Bike,,, +01/28/2022,4:24,,,,,,G.C.P. / JEWEL (CDR),,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4497990,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,14:30,,,,,,,,335 WILLIAMSBURG STREET WEST,0,0,0,0,0,0,0,0,Unspecified,,,,,4498057,Van,,,, +01/31/2022,23:30,QUEENS,11421,40.686447,-73.85485,"(40.686447, -73.85485)",87 STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4499017,Station Wagon/Sport Utility Vehicle,Snow Plow,,, +01/30/2022,12:00,QUEENS,11432,40.715702,-73.80913,"(40.715702, -73.80913)",,,150-42 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4498550,Sedan,,,, +01/28/2022,0:00,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",12 AVENUE,WEST 42 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498272,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,4:05,BROOKLYN,11225,40.663284,-73.96096,"(40.663284, -73.96096)",EMPIRE BOULEVARD,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498101,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,18:30,,,40.627037,-74.16483,"(40.627037, -74.16483)",,,2239 FOREST AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498040,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,13:14,STATEN ISLAND,10314,,,,MANOR ROAD,SCHMIDTS LANE,,0,0,0,0,0,0,0,0,,,,,,4498897,,,,, +01/21/2022,22:30,BROOKLYN,11213,40.67801,-73.94138,"(40.67801, -73.94138)",ATLANTIC AVENUE,KINGSTON AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498360,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,6:55,BROOKLYN,11215,,,,,,1304 8 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4498217,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,19:19,,,40.83232,-73.91676,"(40.83232, -73.91676)",MCCLELLAN STREET,,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4498228,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,23:30,,,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498415,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,2:08,BROOKLYN,11236,40.648605,-73.905266,"(40.648605, -73.905266)",,,9720 FOSTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498492,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,5:30,QUEENS,11417,40.678787,-73.84426,"(40.678787, -73.84426)",CROSS BAY BOULEVARD,107 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4498189,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,0:00,BRONX,10464,40.85135,-73.7886,"(40.85135, -73.7886)",,,470 CITY ISLAND AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4498649,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +01/28/2022,0:00,,,,,,BELL BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498912,Sedan,,,, +01/25/2022,18:20,BROOKLYN,11233,40.67413,-73.913925,"(40.67413, -73.913925)",BOYLAND STREET,BERGEN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499263,Sedan,,,, +01/28/2022,23:20,BROOKLYN,11208,40.672855,-73.87131,"(40.672855, -73.87131)",SUTTER AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499071,Sedan,Sedan,,, +01/27/2022,18:03,MANHATTAN,10032,40.842438,-73.93926,"(40.842438, -73.93926)",WEST 170 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498460,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,7:12,BROOKLYN,11226,40.641212,-73.96444,"(40.641212, -73.96444)",MARLBOROUGH ROAD,CORTELYOU ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499319,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,22:00,BROOKLYN,11212,40.66337,-73.9142,"(40.66337, -73.9142)",,,151 DUMONT AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,,,4498746,Sedan,Sedan,,, +01/26/2022,13:30,BROOKLYN,11233,40.68158,-73.93235,"(40.68158, -73.93235)",,,295 DECATUR STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498254,Sedan,Sedan,,, +01/28/2022,14:00,QUEENS,11432,,,,80 ROAD,UTOPIA PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498365,Sedan,,,, +01/31/2022,15:10,,,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4498882,Bus,Tractor Truck Diesel,,, +01/27/2022,10:25,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498815,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,20:30,BROOKLYN,11238,40.6864,-73.9685,"(40.6864, -73.9685)",VANDERBILT AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4498666,Sedan,,,, +01/29/2022,12:20,,,40.58008,-73.95981,"(40.58008, -73.95981)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498328,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,21:15,,,40.82269,-73.94947,"(40.82269, -73.94947)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498531,Sedan,,,, +01/29/2022,1:25,BROOKLYN,11216,40.67187,-73.95464,"(40.67187, -73.95464)",BEDFORD AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498518,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,0:30,,,,,,PROSPECT PARK SOUTHWEST,PARK CIRCLE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,8:20,QUEENS,11412,40.70632,-73.75078,"(40.70632, -73.75078)",FRANCIS LEWIS BOULEVARD,110 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4499036,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,15:45,,,40.69919,-73.91469,"(40.69919, -73.91469)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498698,Sedan,Sedan,,, +01/28/2022,17:27,BRONX,10457,40.84097,-73.89918,"(40.84097, -73.89918)",3 AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498196,Sedan,,,, +01/27/2022,19:46,QUEENS,11694,40.58356,-73.82174,"(40.58356, -73.82174)",ROCKAWAY BEACH BOULEVARD,BEACH 101 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499194,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,9:32,MANHATTAN,10035,40.804066,-73.93267,"(40.804066, -73.93267)",2 AVENUE,EAST 127 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4498783,Taxi,,,, +01/29/2022,8:00,STATEN ISLAND,10301,40.63967,-74.094185,"(40.63967, -74.094185)",,,215 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498269,Sedan,,,, +01/29/2022,17:50,QUEENS,11385,40.70402,-73.890236,"(40.70402, -73.890236)",,,65-29 70 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499128,Sedan,,,, +01/29/2022,16:30,BRONX,10463,40.876854,-73.89931,"(40.876854, -73.89931)",,,3115 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499147,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/29/2022,10:51,QUEENS,11428,40.71744,-73.7434,"(40.71744, -73.7434)",,,94-28 214 PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498133,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,16:09,,,40.613235,-73.98206,"(40.613235, -73.98206)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498282,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,15:29,,,40.586098,-73.93237,"(40.586098, -73.93237)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4498982,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/29/2022,14:00,BRONX,10456,40.831985,-73.908676,"(40.831985, -73.908676)",,,421 EAST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498602,Sedan,,,, +01/30/2022,22:15,,,40.83609,-73.87039,"(40.83609, -73.87039)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498735,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,8:30,QUEENS,11368,40.74165,-73.86688,"(40.74165, -73.86688)",,,50-02 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498429,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:07,,,40.645134,-73.90232,"(40.645134, -73.90232)",GLENWOOD ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498297,Bus,Sedan,,, +01/31/2022,6:00,QUEENS,11105,40.780346,-73.916664,"(40.780346, -73.916664)",,,21-21 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499510,Sedan,,,, +01/20/2022,22:20,QUEENS,11369,40.759155,-73.86124,"(40.759155, -73.86124)",,,32-33 108 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498414,E-Bike,Motorbike,,, +01/30/2022,23:15,,,40.8612,-73.93497,"(40.8612, -73.93497)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4498816,Sedan,,,, +01/28/2022,1:35,BRONX,10467,40.87144,-73.867165,"(40.87144, -73.867165)",BURKE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498392,Sedan,Sedan,,, +01/28/2022,10:20,BROOKLYN,11235,40.57688,-73.95288,"(40.57688, -73.95288)",WEST END AVENUE,ORIENTAL BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4498018,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,9:12,BROOKLYN,11211,40.70908,-73.9575,"(40.70908, -73.9575)",SOUTH 5 STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4498950,Sedan,Sedan,,, +01/31/2022,17:49,MANHATTAN,10028,40.77691,-73.95748,"(40.77691, -73.95748)",EAST 82 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4498933,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,16:00,BRONX,10463,40.88502,-73.91217,"(40.88502, -73.91217)",,,3250 ARLINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499094,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,10:38,,,40.738403,-73.93864,"(40.738403, -73.93864)",30 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498150,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,23:00,,,,,,NEW ENGLAND THRUWAY,,,3,0,0,0,0,0,3,0,Pavement Slippery,Pavement Slippery,Pavement Slippery,,,4498818,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,9:35,BROOKLYN,11203,40.64396,-73.937294,"(40.64396, -73.937294)",CLARENDON ROAD,EAST 42 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498244,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,20:37,,,40.684856,-73.79899,"(40.684856, -73.79899)",145 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4498128,Sedan,Sedan,Sedan,, +12/11/2021,8:30,BROOKLYN,11221,40.697186,-73.92884,"(40.697186, -73.92884)",HART STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499354,Sedan,,,, +01/26/2022,17:00,BRONX,10463,40.878284,-73.90803,"(40.878284, -73.90803)",WEST 230 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4498012,Bus,Sedan,,, +01/26/2022,8:02,BRONX,10462,40.838604,-73.860504,"(40.838604, -73.860504)",,,1555 UNIONPORT ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498033,Motorcycle,Sedan,,, +01/27/2022,15:00,,,40.61983,-74.02957,"(40.61983, -74.02957)",90 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498801,Box Truck,Sedan,,, +01/28/2022,0:42,,,,,,ROOSEVELT AVENUE,SUBWAY QUEENS YARD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498387,Bike,,,, +01/31/2022,11:50,MANHATTAN,10027,40.810455,-73.95589,"(40.810455, -73.95589)",,,425 WEST 123 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498837,Box Truck,Sedan,,, +01/29/2022,6:20,QUEENS,11354,40.76407,-73.80914,"(40.76407, -73.80914)",156 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498172,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,7:30,QUEENS,11357,40.78545,-73.81223,"(40.78545, -73.81223)",,,15-55 MURRAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498165,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,23:11,,,40.68623,-74.00046,"(40.68623, -74.00046)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498001,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,23:41,MANHATTAN,10010,40.74088,-73.990074,"(40.74088, -73.990074)",WEST 22 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499166,Box Truck,Sedan,,, +01/22/2022,16:15,BROOKLYN,11203,40.654045,-73.92673,"(40.654045, -73.92673)",EAST 54 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498404,Sedan,,,, +01/21/2022,8:42,,,40.67221,-73.92802,"(40.67221, -73.92802)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499407,Taxi,Sedan,,, +01/21/2022,13:47,QUEENS,11377,40.744026,-73.90651,"(40.744026, -73.90651)",,,58-23 41 DRIVE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498773,Sedan,,,, +01/27/2022,16:11,BROOKLYN,11203,40.653786,-73.931015,"(40.653786, -73.931015)",,,737 LINDEN BOULEVARD,4,0,0,0,0,0,4,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4498850,Sedan,Sedan,Sedan,, +01/28/2022,18:10,BROOKLYN,11203,40.644253,-73.93252,"(40.644253, -73.93252)",CLARENDON ROAD,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4498255,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/30/2022,23:15,BROOKLYN,11210,40.63674,-73.94035,"(40.63674, -73.94035)",FARRAGUT ROAD,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498848,Sedan,,,, +01/22/2022,23:20,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,BOWERY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498355,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,0:05,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",PARSONS BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498585,Sedan,Sedan,,, +01/29/2022,12:20,,,40.82858,-73.87918,"(40.82858, -73.87918)",WESTCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498718,Sedan,Garbage or Refuse,,, +01/30/2022,22:04,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498546,Sedan,,,, +01/25/2022,15:00,QUEENS,11372,40.748222,-73.87835,"(40.748222, -73.87835)",ROOSEVELT AVENUE,88 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4498287,Bus,,,, +12/07/2021,17:05,,,,,,30 AVENUE,,,3,0,3,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498192,Pick-up Truck,,,, +01/29/2022,19:30,,,40.723698,-73.7406,"(40.723698, -73.7406)",92 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498308,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,3:35,QUEENS,11413,40.67948,-73.75741,"(40.67948, -73.75741)",MERRICK BOULEVARD,MONTAUK STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498089,Sedan,,,, +01/29/2022,0:00,,,,,,CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4498221,Station Wagon/Sport Utility Vehicle,,,, +01/11/2022,20:38,BROOKLYN,11219,40.632614,-73.98513,"(40.632614, -73.98513)",,,1570 47 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498224,Sedan,Sedan,,, +01/25/2022,12:00,MANHATTAN,10013,40.719395,-74.00189,"(40.719395, -74.00189)",CANAL STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4497986,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,3:00,MANHATTAN,10018,40.752316,-73.985954,"(40.752316, -73.985954)",AVENUE OF THE AMERICAS,WEST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498276,Taxi,Sedan,,, +12/07/2021,11:00,QUEENS,11434,40.675312,-73.777145,"(40.675312, -73.777145)",132 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498108,Tractor Truck Diesel,Sedan,,, +01/31/2022,21:30,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498901,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,9:50,MANHATTAN,10002,40.718567,-73.9834,"(40.718567, -73.9834)",RIVINGTON STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498784,Sedan,Dump,,, +12/07/2021,13:45,,,40.673008,-73.78809,"(40.673008, -73.78809)",SUTPHIN BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4498118,Sedan,,,, +01/27/2022,20:54,STATEN ISLAND,10310,40.634567,-74.1172,"(40.634567, -74.1172)",CASTLETON AVENUE,BROADWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4498323,Sedan,,,, +01/29/2022,11:25,MANHATTAN,10002,40.718792,-73.98902,"(40.718792, -73.98902)",DELANCEY STREET,LUDLOW STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4498488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,15:55,,,40.597267,-73.998665,"(40.597267, -73.998665)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498250,Bus,Sedan,,, +01/30/2022,8:11,BROOKLYN,11214,40.603886,-74.00618,"(40.603886, -74.00618)",18 AVENUE,BATH AVENUE,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4498340,Station Wagon/Sport Utility Vehicle,Bus,,, +01/28/2022,22:58,BROOKLYN,11210,40.629505,-73.94416,"(40.629505, -73.94416)",FLATBUSH AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498061,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,13:45,BRONX,10458,40.85487,-73.88619,"(40.85487, -73.88619)",EAST 187 STREET,BELMONT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498790,Sedan,,,, +01/29/2022,21:10,BROOKLYN,11225,40.665546,-73.9537,"(40.665546, -73.9537)",ROGERS AVENUE,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498177,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,16:50,BRONX,10469,40.87079,-73.84492,"(40.87079, -73.84492)",HAMMERSLEY AVENUE,FENTON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498419,Sedan,,,, +01/31/2022,20:00,BRONX,10469,40.874405,-73.84004,"(40.874405, -73.84004)",BURKE AVENUE,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499219,Sedan,,,, +01/31/2022,14:55,,,,,,HEMPSTEAD TURNPIKE,ROUTE 9 EXTENSION WEST,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4498880,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +01/22/2022,15:45,MANHATTAN,10040,40.8629,-73.9256,"(40.8629, -73.9256)",,,140 DYCKMAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498456,Sedan,Sedan,,, +01/29/2022,1:39,MANHATTAN,10039,40.832413,-73.93544,"(40.832413, -73.93544)",,,159-04 HARLEM RIVER DRIVE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4498750,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +01/17/2022,16:07,BROOKLYN,11249,40.719646,-73.96029,"(40.719646, -73.96029)",,,141 WYTHE AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4499048,Sedan,Sedan,,, +01/30/2022,20:28,,,40.696186,-73.751976,"(40.696186, -73.751976)",116 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498646,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,16:29,QUEENS,11418,40.70269,-73.839485,"(40.70269, -73.839485)",PARK LANE SOUTH,112 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499020,Sedan,,,, +01/27/2022,15:40,BROOKLYN,11215,40.66803,-73.983955,"(40.66803, -73.983955)",9 STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499539,Sedan,,,, +01/29/2022,17:30,QUEENS,11365,40.741714,-73.78253,"(40.741714, -73.78253)",,,193-14 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4498382,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,23:01,,,40.709995,-73.79263,"(40.709995, -73.79263)",169 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4499273,Sedan,Sedan,,, +01/31/2022,8:34,,,,,,NEW ENGLAND THRUWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4498811,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/31/2022,9:34,,,40.769646,-73.91425,"(40.769646, -73.91425)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498943,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,5:00,BRONX,10468,40.859306,-73.89885,"(40.859306, -73.89885)",GRAND CONCOURSE,EAST 184 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4498617,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,22:00,QUEENS,11372,40.749157,-73.86943,"(40.749157, -73.86943)",JUNCTION BOULEVARD,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498514,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,20:55,,,40.67526,-73.88203,"(40.67526, -73.88203)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,23:50,BROOKLYN,11234,40.61199,-73.92498,"(40.61199, -73.92498)",,,2386 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498678,Sedan,Sedan,,, +01/31/2022,7:05,BROOKLYN,11206,40.696983,-73.935234,"(40.696983, -73.935234)",BROADWAY,MYRTLE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498702,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,18:30,BROOKLYN,11233,40.683083,-73.922745,"(40.683083, -73.922745)",,,195 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499201,Sedan,Pick-up Truck,,, +01/31/2022,10:37,BROOKLYN,11211,40.71312,-73.93589,"(40.71312, -73.93589)",,,969 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4498938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +01/28/2022,15:45,BRONX,10469,40.864574,-73.83503,"(40.864574, -73.83503)",,,1738 EAST GUN HILL ROAD,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4498076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,3:00,,,40.792244,-73.94629,"(40.792244, -73.94629)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498779,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,18:17,STATEN ISLAND,10301,40.63165,-74.08762,"(40.63165, -74.08762)",VICTORY BOULEVARD,WOODSTOCK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498265,Sedan,,,, +01/31/2022,16:40,,,40.762146,-73.83465,"(40.762146, -73.83465)",KING ROAD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4498869,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/31/2022,12:52,,,,,,CROSS ISLAND PARKWAY,TOTTEN ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4498911,Sedan,AMBULANCE,,, +01/28/2022,11:45,,,40.726967,-73.89655,"(40.726967, -73.89655)",CLINTON AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498397,Sedan,,,, +01/30/2022,21:40,,,40.728855,-73.92782,"(40.728855, -73.92782)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499090,Sedan,Sedan,,, +01/29/2022,9:40,QUEENS,11435,40.714268,-73.81244,"(40.714268, -73.81244)",,,147-39 HOOVER AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,Unspecified,4498377,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +01/30/2022,13:30,BROOKLYN,11218,40.642105,-73.98436,"(40.642105, -73.98436)",,,1308 36 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498606,Sedan,,,, +01/26/2021,2:56,BRONX,10473,40.82433,-73.874374,"(40.82433, -73.874374)",STRATFORD AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498822,Sedan,,,, +01/30/2022,5:25,,,40.696182,-73.93384,"(40.696182, -73.93384)",BROADWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498711,Box Truck,Sedan,,, +11/09/2021,18:33,,,40.68836,-73.91615,"(40.68836, -73.91615)",JEFFERSON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475855,Sedan,,,, +01/28/2022,10:15,BROOKLYN,11221,,,,DITMARS STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498723,Box Truck,Sedan,,, +01/31/2022,11:50,BROOKLYN,11220,40.639854,-74.0122,"(40.639854, -74.0122)",6 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499363,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,16:00,BROOKLYN,11230,40.623722,-73.97463,"(40.623722, -73.97463)",AVENUE J,EAST 2 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498970,Bus,Sedan,,, +01/30/2022,0:45,BROOKLYN,11216,40.675354,-73.952774,"(40.675354, -73.952774)",ROGERS AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498446,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,18:45,,,40.678963,-73.94965,"(40.678963, -73.94965)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4498314,Sedan,Bus,,, +01/26/2022,11:00,QUEENS,11385,40.700043,-73.90683,"(40.700043, -73.90683)",,,55-50 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499143,Sedan,,,, +01/10/2022,18:06,BROOKLYN,11208,40.674232,-73.86177,"(40.674232, -73.86177)",SUTTER AVENUE,CONDUIT BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4499441,,,,, +01/27/2022,22:28,BROOKLYN,11212,40.663254,-73.914925,"(40.663254, -73.914925)",STRAUSS STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499476,Sedan,Sedan,,, +01/29/2022,4:05,,,40.70725,-73.958466,"(40.70725, -73.958466)",MARCY AVENUE,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498557,Garbage or Refuse,Taxi,,, +01/31/2022,9:00,BROOKLYN,11231,40.685627,-74.00046,"(40.685627, -74.00046)",,,517 HICKS STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Other Vehicular,Unspecified,Unspecified,,4499174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,10:25,BROOKLYN,11229,40.599907,-73.94664,"(40.599907, -73.94664)",AVENUE U,BEDFORD AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4498409,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,21:00,BROOKLYN,11219,40.631943,-74.000626,"(40.631943, -74.000626)",,,1152 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498843,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,16:50,,,40.701237,-73.79465,"(40.701237, -73.79465)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498578,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,10:32,BRONX,10455,40.819336,-73.9137,"(40.819336, -73.9137)",,,3012 3 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4499003,Sedan,,,, +01/19/2022,7:50,BROOKLYN,11201,40.69255,-73.987274,"(40.69255, -73.987274)",,,369 JAY STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4498510,Sedan,,,, +01/29/2022,18:15,BRONX,10467,40.873993,-73.8793,"(40.873993, -73.8793)",,,3109 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498626,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,1:02,,,40.73226,-73.83522,"(40.73226, -73.83522)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498441,Sedan,Sedan,,, +01/29/2022,8:00,STATEN ISLAND,10305,40.59553,-74.0633,"(40.59553, -74.0633)",,,27 ROBIN ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4498891,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,20:19,BRONX,10459,40.830147,-73.89289,"(40.830147, -73.89289)",SIMPSON STREET,FREEMAN STREET,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4498975,Sedan,Sedan,,, +01/29/2022,1:22,BROOKLYN,11221,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498705,Sedan,,,, +01/30/2022,23:25,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4498805,Taxi,Sedan,,, +01/28/2022,22:10,BROOKLYN,11220,40.646786,-74.008575,"(40.646786, -74.008575)",47 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498113,Sedan,,,, +01/27/2022,14:00,QUEENS,11429,40.7031,-73.73038,"(40.7031, -73.73038)",MURDOCK AVENUE,227 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498029,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,21:12,MANHATTAN,10034,40.86187,-73.92402,"(40.86187, -73.92402)",,,176 NAGLE AVENUE,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4519699,Station Wagon/Sport Utility Vehicle,E-Bike,,, +01/28/2022,19:45,,,40.601734,-73.935036,"(40.601734, -73.935036)",AVENUE U,GERRITSEN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498145,Sedan,,,, +01/21/2022,18:10,,,40.66309,-73.962395,"(40.66309, -73.962395)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4498182,Sedan,Sedan,,, +01/31/2022,5:30,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,17:15,QUEENS,11413,40.68017,-73.748436,"(40.68017, -73.748436)",133 AVENUE,220 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4498050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,12:21,BROOKLYN,11219,40.631104,-73.9962,"(40.631104, -73.9962)",56 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498965,Sedan,Bus,,, +01/28/2022,16:00,,,40.69595,-73.9824,"(40.69595, -73.9824)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498044,Sedan,Pick-up Truck,,, +01/31/2022,18:05,,,40.767185,-73.98997,"(40.767185, -73.98997)",10 AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4498988,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,19:30,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498160,Snow Plow,,,, +01/29/2022,3:00,MANHATTAN,10018,40.756832,-73.99752,"(40.756832, -73.99752)",,,493 10 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498259,Taxi,Dump,,, +01/30/2022,16:30,,,40.610844,-74.1811,"(40.610844, -74.1811)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4498673,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,17:58,BRONX,10466,40.899822,-73.84347,"(40.899822, -73.84347)",MURDOCK AVENUE,NEREID AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4498424,Sedan,,,, +01/31/2022,11:01,QUEENS,11692,40.59284,-73.796455,"(40.59284, -73.796455)",,,67-20 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498854,Box Truck,UNK,,, +01/27/2022,20:20,BROOKLYN,11203,40.655396,-73.92977,"(40.655396, -73.92977)",EAST 51 STREET,LENOX ROAD,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4499133,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,12:00,MANHATTAN,10040,40.85575,-73.93166,"(40.85575, -73.93166)",WADSWORTH TERRACE,WEST 190 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498483,Sedan,,,, +01/28/2022,13:26,,,40.72125,-73.99224,"(40.72125, -73.99224)",RIVINGTON STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498351,Sedan,Sedan,,, +01/29/2022,2:15,MANHATTAN,10065,40.76484,-73.970505,"(40.76484, -73.970505)",EAST 61 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498589,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,5:30,BROOKLYN,11213,40.664642,-73.93708,"(40.664642, -73.93708)",TROY AVENUE,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498072,Sedan,,,, +01/28/2022,12:27,QUEENS,11357,40.788532,-73.815094,"(40.788532, -73.815094)",,,149-43 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498093,Pick-up Truck,,,, +01/27/2022,18:10,MANHATTAN,10011,40.74611,-74.008095,"(40.74611, -74.008095)",WEST 19 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4498236,Sedan,Sedan,,, +01/28/2022,19:04,BROOKLYN,11210,40.636208,-73.94899,"(40.636208, -73.94899)",FARRAGUT ROAD,EAST 29 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4498209,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,22:30,,,,,,BROOKLYN BATTERY TUNNEL,,,3,0,0,0,0,0,3,0,Lost Consciousness,Unspecified,,,,4498304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,16:11,MANHATTAN,10002,40.716682,-73.98244,"(40.716682, -73.98244)",DELANCEY STREET,WILLETT STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4498468,Sedan,Sedan,,, +01/29/2022,2:17,MANHATTAN,10027,40.8061,-73.9475,"(40.8061, -73.9475)",,,107 WEST 122 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,8:04,BROOKLYN,11203,40.65254,-73.923676,"(40.65254, -73.923676)",EAST 57 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498319,Station Wagon/Sport Utility Vehicle,Bike,Bus,, +08/27/2021,14:50,,,40.66798,-73.77432,"(40.66798, -73.77432)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4498104,Sedan,,,, +01/26/2022,19:50,,,40.76684,-73.838264,"(40.76684, -73.838264)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498451,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/30/2022,6:55,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4498923,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,7:20,,,40.84506,-73.916855,"(40.84506, -73.916855)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4498336,Sedan,Sedan,,, +01/27/2022,15:30,BROOKLYN,11225,40.664112,-73.94777,"(40.664112, -73.94777)",,,421 EMPIRE BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4498065,,,,, +01/29/2022,5:14,,,40.662296,-73.98874,"(40.662296, -73.98874)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4498918,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,15:50,BROOKLYN,11207,40.68223,-73.90928,"(40.68223, -73.90928)",BROADWAY,PILLING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498993,Sedan,,,, +01/31/2022,17:45,,,40.82513,-73.931076,"(40.82513, -73.931076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498906,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/31/2022,17:37,,,40.69056,-73.98511,"(40.69056, -73.98511)",HOYT STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499249,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,0:00,,,40.756565,-73.99028,"(40.756565, -73.99028)",WEST 41 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498291,Taxi,PK,,, +01/29/2022,16:50,BRONX,10467,40.873016,-73.87488,"(40.873016, -73.87488)",,,3210 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,8:05,BRONX,10457,40.838844,-73.905815,"(40.838844, -73.905815)",,,1510 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4498197,FIRE TRUCK,Sedan,,, +01/19/2022,13:50,MANHATTAN,10031,40.82864,-73.94885,"(40.82864, -73.94885)",,,3609 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499026,Van,Sedan,,, +01/28/2022,21:00,MANHATTAN,10039,40.826237,-73.935715,"(40.826237, -73.935715)",,,2637 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4498758,Sedan,,,, +01/30/2022,12:27,BROOKLYN,11232,40.66874,-73.99668,"(40.66874, -73.99668)",HAMILTON AVENUE,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498542,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,14:38,BRONX,10461,40.84865,-73.845024,"(40.84865, -73.845024)",,,1790 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4498621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,13:15,,,40.612293,-74.13512,"(40.612293, -74.13512)",VICTORY BOULEVARD,KELL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498738,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,4:00,BROOKLYN,11226,40.64741,-73.95887,"(40.64741, -73.95887)",,,2114 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4498658,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,21:58,MANHATTAN,10033,40.851353,-73.93385,"(40.851353, -73.93385)",,,209 WADSWORTH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4498473,Sedan,Sedan,,, +01/31/2022,15:50,BROOKLYN,11207,40.670593,-73.88697,"(40.670593, -73.88697)",SUTTER AVENUE,BARBEY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499082,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,13:10,MANHATTAN,10003,40.724274,-73.99082,"(40.724274, -73.99082)",2 AVENUE,EAST 1 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499303,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,16:21,,,40.635784,-73.95953,"(40.635784, -73.95953)",FOSTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4498204,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,6:30,,,,,,49 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4498574,Sedan,Sedan,,, +01/28/2022,15:02,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4498478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/29/2022,18:17,BRONX,10470,40.896812,-73.86808,"(40.896812, -73.86808)",,,273 EAST 234 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4498436,Sedan,,,, +01/31/2022,23:37,BROOKLYN,11208,40.667313,-73.87451,"(40.667313, -73.87451)",HEGEMAN AVENUE,MILFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499061,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/27/2022,22:30,BRONX,10451,40.823383,-73.91835,"(40.823383, -73.91835)",PARK AVENUE,EAST 158 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4498346,Sedan,AMBULANCE,,, +01/26/2022,4:30,,,40.847393,-73.90463,"(40.847393, -73.90463)",CLAY AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4498690,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,8:30,BROOKLYN,11221,40.69099,-73.93664,"(40.69099, -73.93664)",,,169 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4498214,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,14:40,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4498865,Sedan,,,, +01/26/2022,13:50,MANHATTAN,10013,40.71712,-74.007965,"(40.71712, -74.007965)",WEST BROADWAY,THOMAS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4498082,Sedan,Sedan,,, +01/29/2022,17:30,BRONX,10469,40.863487,-73.85586,"(40.863487, -73.85586)",,,2515 LACONIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4498998,Sedan,Sedan,,, +01/28/2022,22:30,QUEENS,11691,40.60098,-73.75555,"(40.60098, -73.75555)",NEW HAVEN AVENUE,BEACH 22 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4498955,Station Wagon/Sport Utility Vehicle,,,, +02/20/2022,9:22,STATEN ISLAND,10309,40.526264,-74.20153,"(40.526264, -74.20153)",AMBOY ROAD,SEGUINE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4505067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,0:00,BRONX,10453,40.84942,-73.91113,"(40.84942, -73.91113)",JEROME AVENUE,MOUNT HOPE PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4505021,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,10:45,MANHATTAN,10128,40.77918,-73.9508,"(40.77918, -73.9508)",2 AVENUE,EAST 88 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504492,Sedan,,,, +11/09/2021,18:00,,,,,,CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4476239,Sedan,Sedan,,, +04/15/2022,12:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519740,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,17:40,,,40.676586,-73.78686,"(40.676586, -73.78686)",155 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4518829,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/10/2022,21:40,BROOKLYN,11215,40.666885,-73.98159,"(40.666885, -73.98159)",7 AVENUE,9 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519906,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,9:40,MANHATTAN,10019,40.763966,-73.988625,"(40.763966, -73.988625)",,,755 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519122,Dump,,,, +04/14/2022,15:05,BROOKLYN,11215,40.667973,-73.99586,"(40.667973, -73.99586)",HAMILTON AVENUE,16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519260,Sedan,Sedan,,, +04/15/2022,9:30,,,,,,HUTCHINSON RIVER PARKWAY,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519240,PK,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,18:00,,,40.76555,-73.83911,"(40.76555, -73.83911)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519566,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,11:40,QUEENS,11105,40.780315,-73.90871,"(40.780315, -73.90871)",,,20-27 28 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519763,Sedan,,,, +04/13/2022,15:00,,,40.78956,-73.97737,"(40.78956, -73.97737)",WEST 87 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519805,Sedan,Sedan,,, +04/10/2022,19:43,BRONX,10475,40.879898,-73.83181,"(40.879898, -73.83181)",,,1000 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519309,Sedan,,,, +07/08/2022,18:50,QUEENS,11355,40.760956,-73.807686,"(40.760956, -73.807686)",158 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544751,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,21:18,BRONX,10456,40.82651,-73.90956,"(40.82651, -73.90956)",WASHINGTON AVENUE,WEIHER COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519471,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +04/15/2022,6:20,QUEENS,11358,40.749825,-73.80354,"(40.749825, -73.80354)",OAK AVENUE,163 PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519272,Sedan,,,, +04/12/2022,19:11,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519515,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,10:30,,,0,0,"(0.0, 0.0)",4 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519387,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,12:00,,,40.84603,-73.93034,"(40.84603, -73.93034)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4519600,Sedan,Tractor Truck Diesel,,, +04/15/2022,0:00,STATEN ISLAND,10308,40.55733,-74.153015,"(40.55733, -74.153015)",GIFFORDS LANE,LEVERETT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519304,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2022,12:06,BRONX,10460,40.85401,-73.87187,"(40.85401, -73.87187)",BOSTON ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519743,PK,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,14:13,MANHATTAN,10013,40.718266,-74.00706,"(40.718266, -74.00706)",WEST BROADWAY,LEONARD STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518897,Ambulance,Sedan,,, +04/13/2022,11:35,,,40.673244,-73.737946,"(40.673244, -73.737946)",135 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518750,Pick-up Truck,Box Truck,,, +04/13/2022,1:24,MANHATTAN,10003,40.724102,-73.98847,"(40.724102, -73.98847)",,,65 EAST 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4518653,Sedan,Sedan,,, +04/14/2022,1:04,BRONX,10469,40.88144,-73.848755,"(40.88144, -73.848755)",EAST 222 STREET,EASTCHESTER ROAD,,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Speed,,,,4518957,Sedan,Sedan,,, +04/14/2022,16:31,BROOKLYN,11236,40.63644,-73.892654,"(40.63644, -73.892654)",,,1878 ROCKAWAY PARKWAY,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4519017,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,3:50,,,40.835873,-73.8699,"(40.835873, -73.8699)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4518786,Taxi,Sedan,,, +04/13/2022,11:45,,,40.61047,-74.11837,"(40.61047, -74.11837)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4518778,Sedan,Sedan,,, +04/14/2022,10:13,,,40.685764,-73.97308,"(40.685764, -73.97308)",FULTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518985,Station Wagon/Sport Utility Vehicle,Bike,,, +04/14/2022,18:39,QUEENS,11378,40.724888,-73.89899,"(40.724888, -73.89899)",HAMILTON PLACE,PERRY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519116,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/13/2022,16:13,,,40.68738,-73.92089,"(40.68738, -73.92089)",HOWARD AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519691,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,17:40,QUEENS,11375,40.71958,-73.83978,"(40.71958, -73.83978)",QUEENS BOULEVARD,72 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519287,Taxi,,,, +04/15/2022,17:54,,,40.630688,-73.92521,"(40.630688, -73.92521)",EAST 53 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4519357,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/14/2022,22:00,,,,,,GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519214,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,23:54,,,40.7923,-73.95046,"(40.7923, -73.95046)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519536,Sedan,Sedan,,, +04/13/2022,15:27,,,40.880505,-73.885956,"(40.880505, -73.885956)",PAUL AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518825,Sedan,Bus,,, +04/13/2022,3:30,QUEENS,11103,40.758163,-73.91727,"(40.758163, -73.91727)",,,42-05 BROADWAY,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4518858,Sedan,Sedan,,, +04/14/2022,17:57,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4519090,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/13/2022,20:52,,,40.715397,-73.772766,"(40.715397, -73.772766)",189 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519055,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,21:10,BROOKLYN,11207,40.653427,-73.88677,"(40.653427, -73.88677)",,,1109 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519167,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,13:00,QUEENS,11436,40.68409,-73.80169,"(40.68409, -73.80169)",LINDEN BOULEVARD,142 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4519340,Sedan,Sedan,Sedan,, +03/31/2022,10:28,QUEENS,11421,40.69055,-73.85743,"(40.69055, -73.85743)",,,88-10 86 STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4519182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/13/2022,11:48,MANHATTAN,10036,40.760536,-73.994804,"(40.760536, -73.994804)",,,602 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518882,Station Wagon/Sport Utility Vehicle,FDNY Engin,,, +04/15/2022,20:21,,,40.613895,-73.99219,"(40.613895, -73.99219)",19 AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519315,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/13/2022,23:50,,,40.74561,-73.84785,"(40.74561, -73.84785)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519199,Sedan,Sedan,,, +04/13/2022,23:45,,,40.694885,-73.98515,"(40.694885, -73.98515)",JOHNSON STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4518817,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,21:08,BRONX,10454,40.80612,-73.91796,"(40.80612, -73.91796)",EAST 137 STREET,SAINT ANNS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519154,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,17:40,BROOKLYN,11226,40.6481,-73.950066,"(40.6481, -73.950066)",,,2902 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519626,Sedan,Sedan,,, +04/09/2022,14:15,BROOKLYN,11203,40.65661,-73.93091,"(40.65661, -73.93091)",CLARKSON AVENUE,UTICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519415,Sedan,,,, +04/14/2022,16:58,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4519038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +04/15/2022,18:15,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",LIBERTY AVENUE,SUTPHIN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4519869,Sedan,Motorcycle,,, +04/10/2022,21:20,QUEENS,11372,40.753326,-73.8718,"(40.753326, -73.8718)",JUNCTION BOULEVARD,35 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519449,,,,, +04/14/2022,14:16,,,40.700726,-73.94194,"(40.700726, -73.94194)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519592,Tow Truck,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,14:08,,,40.77012,-73.95741,"(40.77012, -73.95741)",EAST 74 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519823,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,0:40,,,40.688698,-73.942085,"(40.688698, -73.942085)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,6:07,MANHATTAN,10010,40.740185,-73.986374,"(40.740185, -73.986374)",PARK AVENUE SOUTH,EAST 23 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519346,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/14/2022,5:58,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,9:17,BROOKLYN,11238,,,,SAINT JOHNS PLACE,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476345,Sedan,Sedan,,, +09/04/2021,18:40,BROOKLYN,11215,40.67285,-73.97339,"(40.67285, -73.97339)",PRESIDENT STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454475,Sedan,Sedan,,, +04/14/2022,13:39,,,40.601734,-73.935036,"(40.601734, -73.935036)",GERRITSEN AVENUE,AVENUE U,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519508,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,17:52,,,,,,98 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454482,Sedan,,,, +09/04/2021,23:10,QUEENS,11434,40.688362,-73.77663,"(40.688362, -73.77663)",MERRICK BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4454462,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,10:09,MANHATTAN,10038,40.707386,-74.00549,"(40.707386, -74.00549)",JOHN STREET,PEARL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454470,Sedan,,,, +09/03/2021,13:00,QUEENS,11691,,,,,,99 BEACH 31 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454487,Sedan,,,, +08/20/2021,21:41,QUEENS,11434,40.68378,-73.789734,"(40.68378, -73.789734)",155 STREET,116 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4454461,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,12:30,,,40.706142,-74.00603,"(40.706142, -74.00603)",MAIDEN LANE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454471,Box Truck,Sedan,,, +08/26/2021,15:25,,,40.635624,-74.01707,"(40.635624, -74.01707)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4450818,Pick-up Truck,Sedan,,, +09/02/2021,15:00,QUEENS,11691,,,,MOTT AVENUE,GRASSMERE TERRACE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4454472,Sedan,,,, +09/04/2021,20:00,MANHATTAN,10022,40.763588,-73.97142,"(40.763588, -73.97142)",MADISON AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454456,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,12:28,BRONX,10459,,,,EAST 163 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4454464,Pick-up Truck,,,, +04/15/2022,22:31,BROOKLYN,11211,40.71114,-73.94929,"(40.71114, -73.94929)",,,561 GRAND STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,17:50,BRONX,10465,40.831123,-73.826645,"(40.831123, -73.826645)",,,3508 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519299,Sedan,Garbage or Refuse,,, +04/14/2022,21:30,,,,,,G.C.P. / L.I.E (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519209,Sedan,Sedan,,, +04/14/2022,14:49,,,40.5763,-73.96854,"(40.5763, -73.96854)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519713,Bus,Sedan,,, +04/14/2022,15:35,BROOKLYN,11206,40.70191,-73.94231,"(40.70191, -73.94231)",,,34 GRAHAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519064,Pick-up Truck,Sedan,,, +04/13/2022,16:48,,,,,,ALBEMARLE ROAD,WESTMINISTER ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4518841,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +07/07/2022,18:30,BRONX,10455,40.817207,-73.916,"(40.817207, -73.916)",3 AVENUE,EAST 151 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544552,Station Wagon/Sport Utility Vehicle,Ambulance,,, +07/06/2022,22:40,BRONX,10463,40.87078,-73.90686,"(40.87078, -73.90686)",BAILEY AVENUE,WEST 193 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4544195,Bike,,,, +07/07/2022,10:15,BROOKLYN,11219,40.626373,-73.99754,"(40.626373, -73.99754)",14 AVENUE,62 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544565,Sedan,E-Bike,,, +07/06/2022,0:40,QUEENS,11103,40.75635,-73.914505,"(40.75635, -73.914505)",,,32-15 46 STREET,0,0,0,0,0,0,0,0,Texting,Unspecified,Unspecified,,,4545156,Sedan,Sedan,Sedan,, +07/06/2022,10:29,,,40.687565,-73.984406,"(40.687565, -73.984406)",BOND STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544816,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,15:15,,,40.6651,-73.94539,"(40.6651, -73.94539)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544672,Sedan,,,, +07/07/2022,22:30,MANHATTAN,10016,40.747295,-73.97405,"(40.747295, -73.97405)",EAST 38 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544376,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,3:10,,,40.79003,-73.821175,"(40.79003, -73.821175)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4544258,STREET,Station Wagon/Sport Utility Vehicle,Sedan,, +07/03/2022,19:50,BROOKLYN,11224,40.574593,-73.98764,"(40.574593, -73.98764)",WEST 21 STREET,SURF AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545202,Sedan,,,, +07/06/2022,15:00,,,40.870777,-73.81923,"(40.870777, -73.81923)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544017,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,16:00,BROOKLYN,11207,40.66847,-73.88376,"(40.66847, -73.88376)",,,558 ASHFORD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544765,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,2:53,BROOKLYN,11212,40.665462,-73.90969,"(40.665462, -73.90969)",,,564 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4453712,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,16:00,QUEENS,11385,40.69319,-73.89575,"(40.69319, -73.89575)",CYPRESS AVENUE,CLOVER PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453976,Sedan,,,, +09/04/2021,21:50,MANHATTAN,10018,40.754128,-73.98834,"(40.754128, -73.98834)",WEST 39 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4453808,Sedan,Bike,,, +09/03/2021,0:00,,,40.851616,-73.92165,"(40.851616, -73.92165)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454303,Station Wagon/Sport Utility Vehicle,Van,,, +08/27/2021,17:00,MANHATTAN,10001,40.747894,-73.989174,"(40.747894, -73.989174)",AVENUE OF THE AMERICAS,WEST 31 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454266,Bike,,,, +09/04/2021,0:10,BRONX,10454,40.807903,-73.92005,"(40.807903, -73.92005)",EAST 138 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4453515,Sedan,Motorcycle,,, +09/04/2021,3:15,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",ROCKAWAY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,13:40,BROOKLYN,11215,40.677406,-73.983055,"(40.677406, -73.983055)",4 AVENUE,UNION STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454080,gas mo ped,,,, +09/04/2021,0:55,STATEN ISLAND,10301,40.642483,-74.08553,"(40.642483, -74.08553)",,,121 JERSEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453881,Sedan,,,, +09/01/2021,19:49,MANHATTAN,10002,40.71738,-73.99131,"(40.71738, -73.99131)",ALLEN STREET,GRAND STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454240,Sedan,,,, +09/04/2021,22:27,,,40.701504,-73.99329,"(40.701504, -73.99329)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454352,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,1:55,BRONX,10455,40.81634,-73.917694,"(40.81634, -73.917694)",,,557 MELROSE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454454,Bus,Sedan,,, +09/04/2021,1:00,,,,,,HORACE HARDING EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453543,Sedan,Box Truck,,, +09/04/2021,9:08,BRONX,10466,40.889175,-73.84416,"(40.889175, -73.84416)",EAST 233 STREET,GRACE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4453908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,8:00,MANHATTAN,10002,40.712784,-73.98851,"(40.712784, -73.98851)",,,197 MADISON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4454292,Sedan,,,, +09/03/2021,12:17,,,40.83489,-73.8663,"(40.83489, -73.8663)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4454338,Tractor Truck Diesel,Taxi,,, +09/04/2021,1:19,,,40.772327,-73.94531,"(40.772327, -73.94531)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4454183,Sedan,Sedan,Sedan,, +09/04/2021,8:00,BRONX,10472,40.830303,-73.8718,"(40.830303, -73.8718)",FTELEY AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453569,Sedan,,,, +09/04/2021,5:45,,,,,,MANHATTAN BR UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453685,Sedan,Sedan,,, +09/04/2021,20:15,BROOKLYN,11233,,,,,,1777 PARK PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453983,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,21:30,BRONX,10459,,,,,,1083 LONGFELLOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454035,Sedan,Sedan,,, +09/04/2021,18:36,,,40.69612,-73.746185,"(40.69612, -73.746185)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454097,Sedan,,,, +09/04/2021,7:17,,,40.804585,-73.91213,"(40.804585, -73.91213)",BRUCKNER BOULEVARD,EAST 138 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454117,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,14:55,BROOKLYN,11208,,,,conduit avenue,sutter avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453663,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,4:35,,,,,,LIE LOWER LEVEL (CDR),,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4453624,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,18:47,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",AVENUE J,RALPH AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4454387,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:02,,,40.667553,-73.89671,"(40.667553, -73.89671)",BLAKE AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4454419,,,,, +09/04/2021,15:50,QUEENS,11354,40.76316,-73.8164,"(40.76316, -73.8164)",149 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Turning Improperly,,,,4453655,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,15:25,BROOKLYN,11236,40.643894,-73.91352,"(40.643894, -73.91352)",,,8720 FOSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453625,Sedan,Sedan,Sedan,, +08/28/2021,23:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454314,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,16:55,QUEENS,11422,40.671097,-73.731255,"(40.671097, -73.731255)",135 AVENUE,244 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453676,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/04/2021,6:20,QUEENS,11378,40.727856,-73.90659,"(40.727856, -73.90659)",,,59-51 MAURICE AVENUE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4453583,Dump,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,20:53,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,WALTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454115,Sedan,Sedan,,, +09/04/2021,23:26,QUEENS,11102,40.775906,-73.920525,"(40.775906, -73.920525)",23 STREET,24 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453870,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,20:07,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,1,0,0,0,0,0,0,0,Pavement Defective,,,,,4453922,E-Bike,,,, +07/08/2022,9:00,STATEN ISLAND,10310,40.631138,-74.12783,"(40.631138, -74.12783)",,,804 POST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545058,Sedan,,,, +09/04/2021,17:23,BRONX,10460,40.836536,-73.89339,"(40.836536, -73.89339)",CROTONA PARK EAST,CHARLOTTE STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4454044,Sedan,Sedan,,, +09/04/2021,6:30,,,40.691113,-73.838425,"(40.691113, -73.838425)",ATLANTIC AVENUE,107 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4454139,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +09/04/2021,0:00,BRONX,10454,40.807903,-73.92005,"(40.807903, -73.92005)",EAST 138 STREET,BROWN PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453610,Multi-Wheeled Vehicle,Multi-Wheeled Vehicle,,, +09/04/2021,17:19,,,40.768932,-73.79191,"(40.768932, -73.79191)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453667,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/04/2021,9:50,BROOKLYN,11233,40.67638,-73.911736,"(40.67638, -73.911736)",,,2220 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4453771,Bus,Sedan,,, +08/14/2021,11:32,BROOKLYN,11234,40.61146,-73.92437,"(40.61146, -73.92437)",FLATBUSH AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,11:28,BROOKLYN,11210,40.632427,-73.93513,"(40.632427, -73.93513)",AVENUE H,EAST 43 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454029,Sedan,Sedan,,, +09/02/2021,11:35,QUEENS,11374,40.72883,-73.8659,"(40.72883, -73.8659)",63 AVENUE,WETHEROLE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454258,Sedan,Sedan,Sedan,, +09/03/2021,11:57,MANHATTAN,10009,40.73378,-73.98065,"(40.73378, -73.98065)",EAST 18 STREET,1 AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454388,,,,, +09/04/2021,15:37,BROOKLYN,11217,40.687023,-73.97621,"(40.687023, -73.97621)",FULTON STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453687,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,15:17,,,40.798306,-73.93683,"(40.798306, -73.93683)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4453736,Sedan,Box Truck,,, +09/04/2021,2:33,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4453636,Motorcycle,,,, +09/01/2021,23:30,BROOKLYN,11217,40.686447,-73.98564,"(40.686447, -73.98564)",,,387 PACIFIC STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454234,Sedan,Sedan,,, +09/04/2021,16:38,BROOKLYN,11214,40.595104,-74.00091,"(40.595104, -74.00091)",,,8973 BAY PARKWAY,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4454061,Sedan,Sedan,,, +09/04/2021,15:40,,,40.766857,-73.76269,"(40.766857, -73.76269)",221 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454108,Sedan,Bike,,, +07/05/2022,13:30,,,40.611546,-74.15961,"(40.611546, -74.15961)",,,1501 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544820,Pick-up Truck,Sedan,,, +09/01/2021,19:30,BROOKLYN,11231,40.669308,-74.004456,"(40.669308, -74.004456)",BRYANT STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454307,Tractor Truck Gasoline,,,, +09/04/2021,0:20,,,40.655846,-73.98066,"(40.655846, -73.98066)",PROSPECT EXPRESSWAY EAST,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453819,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,18:07,BRONX,10468,,,,Father Zeiser Place,Webb Avenue,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4454275,Sedan,Bike,,, +09/04/2021,7:00,BRONX,10469,40.878696,-73.8576,"(40.878696, -73.8576)",,,935 EAST 215 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453910,Sedan,,,, +09/04/2021,22:50,MANHATTAN,10001,40.748806,-73.99221,"(40.748806, -73.99221)",,,371 7 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453751,Bike,Sedan,,, +09/03/2021,18:18,BROOKLYN,11212,40.66844,-73.919044,"(40.66844, -73.919044)",,,1478 PITKIN AVENUE,1,0,1,0,0,0,0,0,,,,,,4454323,Sedan,,,, +09/04/2021,3:31,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4454003,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,18:15,,,40.737194,-73.97447,"(40.737194, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,14:20,BROOKLYN,11210,40.62334,-73.95595,"(40.62334, -73.95595)",AVENUE K,OCEAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453692,Sedan,,,, +09/03/2021,12:17,BROOKLYN,11223,40.59616,-73.96104,"(40.59616, -73.96104)",AVENUE V,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454249,Sedan,,,, +09/04/2021,19:00,BROOKLYN,11210,40.622105,-73.94498,"(40.622105, -73.94498)",EAST 31 STREET,AVENUE L,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454395,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/04/2021,19:50,BROOKLYN,11212,40.665073,-73.9274,"(40.665073, -73.9274)",EAST NEW YORK AVENUE,EAST 95 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453941,Sedan,Sedan,,, +09/04/2021,12:03,BROOKLYN,11212,40.666885,-73.911964,"(40.666885, -73.911964)",BRISTOL STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4453761,Sedan,Sedan,,, +09/04/2021,23:08,BROOKLYN,11203,40.646442,-73.92771,"(40.646442, -73.92771)",,,5202 BEVERLEY ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453944,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,21:41,,,40.768875,-73.90852,"(40.768875, -73.90852)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453883,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,16:20,BRONX,10468,40.867474,-73.89741,"(40.867474, -73.89741)",JEROME AVENUE,EAST KINGSBRIDGE ROAD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454280,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/04/2021,0:20,QUEENS,11422,40.657425,-73.74602,"(40.657425, -73.74602)",,,235-20 147 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453532,Van,Station Wagon/Sport Utility Vehicle,,, +07/03/2021,19:15,,,40.71705,-73.75977,"(40.71705, -73.75977)",202 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4454328,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,17:20,,,40.839294,-73.88418,"(40.839294, -73.88418)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,20:00,BRONX,10460,40.836002,-73.888596,"(40.836002, -73.888596)",,,1675 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4454449,Sedan,,,, +09/02/2021,16:30,BROOKLYN,11210,40.627094,-73.94161,"(40.627094, -73.94161)",,,1760 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454394,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,10:32,BRONX,10466,40.8867,-73.86218,"(40.8867, -73.86218)",,,679 EAST 223 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454265,Sedan,Sedan,,, +09/04/2021,5:10,QUEENS,11361,40.764263,-73.77134,"(40.764263, -73.77134)",40 AVENUE,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453544,Sedan,,,, +09/03/2021,20:30,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454295,Sedan,Bike,,, +09/04/2021,14:05,BROOKLYN,11226,40.64443,-73.96395,"(40.64443, -73.96395)",,,1601 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453691,Sedan,,,, +09/04/2021,23:05,QUEENS,11102,40.776066,-73.93229,"(40.776066, -73.93229)",,,4-11 26 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453889,Sedan,,,, +08/03/2021,9:30,,,40.8239,-73.876526,"(40.8239, -73.876526)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454340,Sedan,Pick-up Truck,,, +09/04/2021,11:50,MANHATTAN,10018,40.75469,-73.99536,"(40.75469, -73.99536)",WEST 36 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4453754,Sedan,,,, +09/04/2021,7:30,QUEENS,11420,40.66691,-73.822014,"(40.66691, -73.822014)",150 AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454178,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,15:14,MANHATTAN,10013,40.719574,-73.99951,"(40.719574, -73.99951)",,,150 LAFAYETTE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454244,Box Truck,,,, +09/04/2021,8:00,BROOKLYN,11209,40.619976,-74.02369,"(40.619976, -74.02369)",GATLING PLACE,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453809,Station Wagon/Sport Utility Vehicle,,,, +08/14/2021,12:45,BROOKLYN,11207,40.67606,-73.89374,"(40.67606, -73.89374)",,,2723 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4454422,,,,, +09/02/2021,12:56,,,40.86242,-73.89405,"(40.86242, -73.89405)",EAST KINGSBRIDGE ROAD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4454320,Sedan,Sedan,,, +09/04/2021,16:05,,,40.82663,-73.87285,"(40.82663, -73.87285)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453635,Sedan,Pick-up Truck,,, +09/04/2021,18:00,QUEENS,11101,40.744026,-73.92616,"(40.744026, -73.92616)",QUEENS BOULEVARD,39 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453657,Sedan,Sedan,,, +09/04/2021,11:00,BROOKLYN,11203,40.639736,-73.93012,"(40.639736, -73.93012)",EAST 49 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454049,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,16:00,BROOKLYN,11204,40.621887,-73.98741,"(40.621887, -73.98741)",,,6012 18 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454409,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/04/2021,18:05,QUEENS,11101,40.74525,-73.95575,"(40.74525, -73.95575)",5 STREET,47 ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4453717,Sedan,,,, +09/04/2021,7:25,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",ATLANTIC AVENUE,104 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454146,Box Truck,,,, +09/03/2021,19:50,QUEENS,11412,40.701122,-73.756195,"(40.701122, -73.756195)",113 AVENUE,199 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454347,Bike,,,, +09/04/2021,4:30,BRONX,10455,40.812855,-73.90725,"(40.812855, -73.90725)",EAST 149 STREET,WALES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453611,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,8:10,,,40.729515,-73.8715,"(40.729515, -73.8715)",WOODHAVEN BOULEVARD,ELIOT AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4453975,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,8:43,BROOKLYN,11214,40.606888,-73.99589,"(40.606888, -73.99589)",82 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454067,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,8:30,,,,,,SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4453770,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/04/2021,4:20,MANHATTAN,10018,40.75108,-73.98686,"(40.75108, -73.98686)",WEST 36 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454259,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,10:00,,,40.68535,-74.00101,"(40.68535, -74.00101)",HICKS STREET,DE GRAW STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454306,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,1:39,QUEENS,11358,40.76027,-73.80401,"(40.76027, -73.80401)",162 STREET,SANFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,15:30,,,40.639786,-74.03613,"(40.639786, -74.03613)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Tire Failure/Inadequate,,,,,4453699,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,16:35,,,40.599754,-74.09162,"(40.599754, -74.09162)",RICHMOND ROAD,TARGEE STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4453792,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/04/2021,12:00,MANHATTAN,10003,40.73714,-73.98649,"(40.73714, -73.98649)",,,81 IRVING PLACE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4454384,Station Wagon/Sport Utility Vehicle,BOOM LIFT,,, +09/04/2021,12:18,BROOKLYN,11235,40.58383,-73.94073,"(40.58383, -73.94073)",EMMONS AVENUE,EAST 28 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,Unspecified,Unspecified,4454253,Tractor Truck Diesel,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +09/04/2021,18:30,STATEN ISLAND,10304,40.61593,-74.087425,"(40.61593, -74.087425)",VANDUZER STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454042,Sedan,Sedan,,, +09/04/2021,8:40,,,40.676132,-73.81924,"(40.676132, -73.81924)",LEFFERTS BOULEVARD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4453565,Moped,Sedan,,, +09/04/2021,14:56,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",NORTH CONDUIT AVENUE,118 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454131,Sedan,Sedan,,, +09/04/2021,13:30,QUEENS,11411,40.69787,-73.743034,"(40.69787, -73.743034)",SPRINGFIELD BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453679,Convertible,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,11:05,BROOKLYN,11215,40.66575,-73.97923,"(40.66575, -73.97923)",9 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454079,Garbage or Refuse,Bike,,, +09/04/2021,0:32,MANHATTAN,10035,,,,EAST 125 STREET,willis avenue bridge,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4453981,Sedan,Sedan,Multi-Wheeled Vehicle,, +09/04/2021,16:00,,,40.711082,-73.77798,"(40.711082, -73.77798)",183 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453840,Sedan,,,, +08/31/2021,16:15,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454313,Station Wagon/Sport Utility Vehicle,Open Body,,, +02/01/2022,23:10,,,40.625546,-73.93998,"(40.625546, -73.93998)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499259,Sedan,Sedan,,, +09/04/2021,7:00,BRONX,10466,40.895084,-73.85984,"(40.895084, -73.85984)",EAST 234 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453921,Sedan,,,, +09/03/2021,19:11,BROOKLYN,11235,40.59328,-73.94538,"(40.59328, -73.94538)",BEDFORD AVENUE,AVENUE X,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454254,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/04/2021,7:15,QUEENS,11373,40.740746,-73.87173,"(40.740746, -73.87173)",50 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4453732,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/04/2021,17:00,QUEENS,11420,40.681503,-73.81782,"(40.681503, -73.81782)",111 AVENUE,123 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4454147,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:00,MANHATTAN,10016,,,,EAST 38 STREET,tunnel apprOACH street,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4454227,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,19:58,BROOKLYN,11222,40.734352,-73.95606,"(40.734352, -73.95606)",,,147 FREEMAN STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4453783,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/04/2021,21:53,,,40.68161,-73.77221,"(40.68161, -73.77221)",BAISLEY BOULEVARD,172 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454093,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,6:30,QUEENS,11377,40.74101,-73.90058,"(40.74101, -73.90058)",65 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453582,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,19:00,BROOKLYN,11210,40.636387,-73.94611,"(40.636387, -73.94611)",FARRAGUT ROAD,EAST 32 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4453938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,13:44,BROOKLYN,11208,40.66804,-73.86055,"(40.66804, -73.86055)",LORING AVENUE,DREW STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,12:15,,,40.62435,-74.13927,"(40.62435, -74.13927)",,,1520 FOREST AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4453949,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,22:50,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SPRINGFIELD BOULEVARD,SOUTH CONDUIT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453723,Sedan,Sedan,,, +09/04/2021,17:45,,,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,Unspecified,,,4453937,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/03/2022,10:20,BROOKLYN,11214,40.61224,-74.00095,"(40.61224, -74.00095)",,,7917 NEW UTRECHT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545018,Sedan,Sedan,,, +09/04/2021,8:45,BROOKLYN,11220,40.645973,-74.01631,"(40.645973, -74.01631)",3 AVENUE,53 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4453816,Pick-up Truck,Sedan,,, +09/03/2021,6:40,BROOKLYN,11220,40.64685,-74.019264,"(40.64685, -74.019264)",54 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454285,Tractor Truck Diesel,Sedan,,, +09/04/2021,1:02,MANHATTAN,10016,40.74668,-73.9745,"(40.74668, -73.9745)",2 AVENUE,EAST 37 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4453535,ambulance,Sedan,,, +09/01/2021,21:00,,,40.598953,-74.00696,"(40.598953, -74.00696)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454331,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,20:00,,,40.614246,-74.15379,"(40.614246, -74.15379)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4454198,Sedan,,,, +08/07/2021,2:15,,,40.657555,-73.894196,"(40.657555, -73.894196)",LINDEN BOULEVARD,,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4454410,Sedan,,,, +09/04/2021,16:40,,,,,,ALEXANDER HAMILTON BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4454069,Stake or Rack,Convertible,,, +09/04/2021,18:05,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4453642,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,10:30,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4453648,Sedan,,,, +09/04/2021,3:37,MANHATTAN,10029,40.79651,-73.93659,"(40.79651, -73.93659)",,,337 EAST 116 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4454004,Sedan,Sedan,Sedan,Sedan,Sedan +09/02/2021,13:00,,,40.61796,-73.99138,"(40.61796, -73.99138)",18 AVENUE,67 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454327,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,17:35,,,40.688667,-73.87548,"(40.688667, -73.87548)",JAMAICA AVENUE,EUCLID AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453666,Sedan,Bike,,, +09/04/2021,1:15,MANHATTAN,10032,40.843594,-73.94004,"(40.843594, -73.94004)",,,651 WEST 171 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454054,Sedan,,,, +08/29/2021,12:50,QUEENS,11433,,,,,,150-46 108 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454363,Sedan,,,, +09/04/2021,5:11,QUEENS,11357,40.795555,-73.82262,"(40.795555, -73.82262)",147 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453698,Sedan,Sedan,,, +09/04/2021,9:30,BRONX,10458,40.85611,-73.88252,"(40.85611, -73.88252)",EAST 189 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454111,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,22:33,BROOKLYN,11219,40.6406,-73.99434,"(40.6406, -73.99434)",FORT HAMILTON PARKWAY,NEW UTRECHT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4454408,Station Wagon/Sport Utility Vehicle,Bike,,, +09/04/2021,8:06,BROOKLYN,11234,40.63606,-73.92683,"(40.63606, -73.92683)",KINGS HIGHWAY,EAST 52 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,11:35,,,40.70029,-73.92904,"(40.70029, -73.92904)",TROUTMAN STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4454005,Van,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,17:57,QUEENS,11413,40.673428,-73.7572,"(40.673428, -73.7572)",139 AVENUE,SLOAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454102,Sedan,,,, +09/04/2021,17:22,,,40.82882,-73.83833,"(40.82882, -73.83833)",BRUCKNER EXPRESSWAY,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,,,4454141,Sedan,Sedan,Sedan,, +09/04/2021,8:02,BROOKLYN,11239,40.64816,-73.88288,"(40.64816, -73.88288)",,,45 TWIN PINES DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4453614,Sedan,,,, +09/04/2021,12:00,BROOKLYN,11208,40.677635,-73.86292,"(40.677635, -73.86292)",,,533 DREW STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,20:35,MANHATTAN,10009,,,,EAST 16 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454385,Taxi,E-Bike,,, +09/04/2021,20:00,BROOKLYN,11234,40.615166,-73.91864,"(40.615166, -73.91864)",AVENUE T,EAST 58 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454390,Bike,Sedan,,, +09/04/2021,8:40,,,40.650528,-73.95583,"(40.650528, -73.95583)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453690,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,10:23,BRONX,10462,40.832085,-73.85541,"(40.832085, -73.85541)",,,2043 ELLIS AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453897,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,15:00,BROOKLYN,11204,40.614265,-73.98219,"(40.614265, -73.98219)",,,2149 65 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454374,Convertible,,,, +09/04/2021,19:15,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",2 AVENUE,EAST 63 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454187,Sedan,E-Bike,,, +09/04/2021,23:25,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454316,Sedan,,,, +09/04/2021,8:33,,,40.79323,-73.979515,"(40.79323, -73.979515)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,,,,,4453634,Motorcycle,,,, +09/04/2021,20:23,QUEENS,11101,40.743713,-73.942116,"(40.743713, -73.942116)",SKILLMAN AVENUE,AUSTELL PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,0:34,QUEENS,11101,40.742756,-73.95047,"(40.742756, -73.95047)",49 AVENUE,11 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453581,Station Wagon/Sport Utility Vehicle,Minibike,,, +09/04/2021,17:00,QUEENS,11004,40.737923,-73.70558,"(40.737923, -73.70558)",HILLSIDE AVENUE,263 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453680,Sedan,Sedan,,, +09/04/2021,17:45,QUEENS,11426,40.743652,-73.71836,"(40.743652, -73.71836)",,,252-05 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453998,Sedan,Sedan,,, +09/04/2021,3:00,BROOKLYN,11207,40.676067,-73.893555,"(40.676067, -73.893555)",,,2730 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453671,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,23:33,,,,,,WEST 36 STREET,,,1,0,1,0,0,0,0,0,,,,,,4454268,Sedan,,,, +09/04/2021,15:20,BRONX,10451,40.81869,-73.91858,"(40.81869, -73.91858)",EAST 152 STREET,COURTLANDT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:50,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4453755,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,11:20,BROOKLYN,11214,40.611,-73.99972,"(40.611, -73.99972)",,,1770 80 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454048,Sedan,,,, +09/04/2021,12:20,QUEENS,11417,40.670593,-73.83834,"(40.670593, -73.83834)",ECKFORD AVENUE,CENTREVILLE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,Unspecified,Unspecified,,4454129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/04/2021,19:31,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454092,Sedan,,,, +09/04/2021,8:30,STATEN ISLAND,10301,40.64219,-74.09433,"(40.64219, -74.09433)",,,73 CASSIDY PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453879,Sedan,,,, +09/04/2021,16:00,MANHATTAN,10013,0,0,"(0.0, 0.0)",,,100 CENTRE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454243,Sedan,Sedan,,, +09/01/2021,10:00,,,,,,NASSAU EXPRESSWAY,N HANGER ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4454345,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +09/04/2021,7:45,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4453745,Sedan,Sedan,Sedan,, +08/30/2021,3:50,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454260,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,5:00,QUEENS,11368,40.752052,-73.85423,"(40.752052, -73.85423)",,,112-26 ROOSEVELT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453731,E-Bike,Box Truck,,, +09/04/2021,5:46,BRONX,10467,40.865868,-73.8635,"(40.865868, -73.8635)",,,2702 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453546,Sedan,Station Wagon/Sport Utility Vehicle,Taxi,, +09/04/2021,4:26,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454286,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,14:55,,,40.836792,-73.84669,"(40.836792, -73.84669)",WESTCHESTER AVENUE,,,2,0,0,0,2,0,0,0,Unspecified,Unspecified,,,,4453660,Sedan,E-Bike,,, +09/04/2021,16:40,QUEENS,11692,40.594826,-73.787254,"(40.594826, -73.787254)",BEACH 57 STREET,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453796,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,21:15,,,40.66243,-73.88168,"(40.66243, -73.88168)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,21:22,MANHATTAN,10027,40.810318,-73.943634,"(40.810318, -73.943634)",WEST 129 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4454342,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,3:25,BRONX,10460,40.840103,-73.888794,"(40.840103, -73.888794)",EAST 175 STREET,MOHEGAN AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4454206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,0:38,,,,,,GOWANUS RAMP,,,6,0,0,0,0,0,6,0,Accelerator Defective,Unspecified,Unspecified,Unspecified,,4453813,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +09/04/2021,17:58,,,40.69286,-73.87801,"(40.69286, -73.87801)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4453979,Motorbike,Sedan,,, +09/04/2021,20:55,,,40.578358,-73.99051,"(40.578358, -73.99051)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453768,Taxi,,,, +09/04/2021,17:30,,,40.583355,-74.14962,"(40.583355, -74.14962)",FOREST HILL ROAD,LEASON PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4453703,Sedan,Motorcycle,,, +09/04/2021,21:45,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4454277,Motorbike,,,, +09/01/2021,10:55,MANHATTAN,10065,40.75991,-73.95882,"(40.75991, -73.95882)",YORK AVENUE,EAST 61 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454305,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,20:00,STATEN ISLAND,10304,40.627167,-74.07595,"(40.627167, -74.07595)",BAY STREET,WATER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454041,Sedan,Sedan,,, +07/06/2022,15:46,,,,,,BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4544051,Sedan,Sedan,Box Truck,, +09/04/2021,5:28,QUEENS,11435,40.695637,-73.80372,"(40.695637, -73.80372)",SUTPHIN BOULEVARD,105 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453838,Taxi,Sedan,,, +09/04/2021,1:11,BROOKLYN,11236,40.650414,-73.917305,"(40.650414, -73.917305)",,,683 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4453939,Van,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +08/30/2021,21:05,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",SUTPHIN BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454358,Sedan,,,, +09/03/2021,14:00,BROOKLYN,11229,40.610264,-73.954704,"(40.610264, -73.954704)",EAST 19 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,17:12,,,40.60507,-73.97913,"(40.60507, -73.97913)",WEST 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454438,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,12:19,,,40.635853,-74.16619,"(40.635853, -74.16619)",SOUTH AVENUE,ARLINGTON PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4453951,,,,, +09/02/2021,5:00,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Obstruction/Debris,,,,4454230,Sedan,Sedan,,, +07/08/2022,9:45,,,,,,Shea road,Stadium place north,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4544936,Station Wagon/Sport Utility Vehicle,Bike,,, +09/03/2021,14:00,BROOKLYN,11208,40.675613,-73.870514,"(40.675613, -73.870514)",,,2753 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454417,Sedan,,,, +09/03/2021,14:15,BROOKLYN,11235,40.592514,-73.95231,"(40.592514, -73.95231)",AVENUE X,EAST 18 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454255,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/04/2021,2:30,,,40.741394,-73.8848,"(40.741394, -73.8848)",45 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4453538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/03/2021,19:00,QUEENS,11385,40.70333,-73.88656,"(40.70333, -73.88656)",,,67-21 CENTRAL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454334,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,19:50,BRONX,10458,40.86309,-73.88946,"(40.86309, -73.88946)",EAST 194 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454278,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,14:30,,,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4453742,Sedan,Sedan,Sedan,, +09/04/2021,0:30,MANHATTAN,10033,40.846153,-73.932335,"(40.846153, -73.932335)",AMSTERDAM AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454070,Sedan,,,, +09/04/2021,18:20,BRONX,10452,40.83068,-73.92427,"(40.83068, -73.92427)",RIVER AVENUE,EAST 164 STREET,,2,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4453652,E-Scooter,,,, +09/04/2021,9:03,MANHATTAN,10032,40.834015,-73.94282,"(40.834015, -73.94282)",,,541 WEST 158 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454055,Taxi,,,, +08/28/2021,6:30,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454311,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,17:05,,,40.859875,-73.89323,"(40.859875, -73.89323)",EAST 188 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454214,Sedan,Dump,,, +09/04/2021,13:57,,,40.771076,-73.91872,"(40.771076, -73.91872)",29 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453877,Sedan,Pick-up Truck,,, +09/04/2021,10:00,BRONX,10466,40.888577,-73.863434,"(40.888577, -73.863434)",,,3971 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453920,Ambulance,Pick-up Truck,,, +09/04/2021,2:00,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454156,Motorcycle,,,, +09/04/2021,11:00,QUEENS,11427,40.723087,-73.75655,"(40.723087, -73.75655)",210 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453999,Sedan,,,, +09/04/2021,19:17,BROOKLYN,11208,40.66682,-73.88166,"(40.66682, -73.88166)",NEW LOTS AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4453669,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/04/2021,1:49,QUEENS,11358,40.765137,-73.79957,"(40.765137, -73.79957)",35 AVENUE,166 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453697,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,13:30,BROOKLYN,11204,40.6311,-73.98262,"(40.6311, -73.98262)",,,1678 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,13:28,MANHATTAN,10012,40.72179,-73.99986,"(40.72179, -73.99986)",BROOME STREET,BROADWAY,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453602,Bike,,,, +09/04/2021,15:20,BROOKLYN,11234,40.628387,-73.92431,"(40.628387, -73.92431)",FLATLANDS AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454379,Sedan,Sedan,,, +09/04/2021,15:10,MANHATTAN,10035,40.8037,-73.93582,"(40.8037, -73.93582)",EAST 125 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454006,Sedan,,,, +09/04/2021,2:30,,,40.714157,-73.956276,"(40.714157, -73.956276)",NORTH 4 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453782,E-Scooter,Sedan,,, +09/03/2021,14:00,QUEENS,11375,40.72096,-73.84698,"(40.72096, -73.84698)",70 AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454326,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,12:28,,,40.676964,-73.89895,"(40.676964, -73.89895)",GEORGIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453672,Sedan,Sedan,,, +09/04/2021,9:50,,,40.625206,-74.14955,"(40.625206, -74.14955)",,,1815 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453704,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,12:30,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,Unspecified,,,4454172,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/04/2021,17:59,,,40.698387,-73.774895,"(40.698387, -73.774895)",179 STREET,SAYRES AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454103,Sedan,Sedan,,, +09/04/2021,17:16,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454113,Sedan,Sedan,Sedan,, +09/04/2021,4:10,MANHATTAN,10002,40.719337,-73.985916,"(40.719337, -73.985916)",SUFFOLK STREET,RIVINGTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453590,Sedan,,,, +09/04/2021,16:30,QUEENS,11377,40.753708,-73.90299,"(40.753708, -73.90299)",58 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4453929,Sedan,Bike,,, +09/04/2021,8:48,BROOKLYN,11206,40.711643,-73.94392,"(40.711643, -73.94392)",GRAND STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453640,Sedan,Box Truck,,, +09/04/2021,8:00,,,40.605495,-73.98307,"(40.605495, -73.98307)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454037,Pick-up Truck,Bus,,, +09/04/2021,5:45,QUEENS,11372,40.74872,-73.87371,"(40.74872, -73.87371)",93 STREET,ROOSEVELT AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453572,Sedan,E-Bike,,, +09/04/2021,22:30,QUEENS,11411,40.688408,-73.7305,"(40.688408, -73.7305)",119 AVENUE,233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453722,Sedan,,,, +09/04/2021,0:30,QUEENS,11412,40.696648,-73.7693,"(40.696648, -73.7693)",MURDOCK AVENUE,DUNKIRK STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454100,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,18:30,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453993,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,16:50,BROOKLYN,11208,40.663643,-73.87395,"(40.663643, -73.87395)",STANLEY AVENUE,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453664,Sedan,Sedan,,, +09/02/2021,13:08,QUEENS,11373,40.741493,-73.87503,"(40.741493, -73.87503)",CORONA AVENUE,90 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454304,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,18:30,MANHATTAN,10018,40.75442,-73.98906,"(40.75442, -73.98906)",,,214 WEST 39 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4454262,Sedan,,,, +09/04/2021,22:18,BROOKLYN,11209,40.62537,-74.039116,"(40.62537, -74.039116)",86 STREET,NARROWS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4453805,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/04/2021,10:35,BROOKLYN,11233,40.682446,-73.911674,"(40.682446, -73.911674)",CHAUNCEY STREET,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453759,Sedan,,,, +09/04/2021,14:59,MANHATTAN,10128,40.78221,-73.95993,"(40.78221, -73.95993)",EAST 87 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454186,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,16:30,MANHATTAN,10013,40.71793,-74.00099,"(40.71793, -74.00099)",LAFAYETTE STREET,WALKER STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454241,Pick-up Truck,Bike,,, +09/04/2021,9:00,BROOKLYN,11220,40.637215,-74.018524,"(40.637215, -74.018524)",64 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453815,Sedan,Unknown,,, +09/04/2021,17:06,MANHATTAN,10029,40.789055,-73.94861,"(40.789055, -73.94861)",EAST 101 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453661,Station Wagon/Sport Utility Vehicle,Bike,,, +09/03/2021,18:30,BROOKLYN,11239,40.65256,-73.876686,"(40.65256, -73.876686)",,,550 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454427,Sedan,,,, +09/04/2021,5:52,BROOKLYN,11203,40.65642,-73.93088,"(40.65642, -73.93088)",,,689 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453633,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,18:40,BROOKLYN,11231,40.680252,-74.01441,"(40.680252, -74.01441)",KING STREET,FERRIS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454315,Sedan,,,, +09/04/2021,6:20,BRONX,10451,40.824493,-73.91256,"(40.824493, -73.91256)",,,443 EAST 162 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454045,Sedan,Sedan,,, +09/04/2021,1:40,BRONX,10457,40.844734,-73.89935,"(40.844734, -73.89935)",EAST 175 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Speed,,,,4454122,Sedan,Sedan,,, +09/04/2021,5:20,MANHATTAN,10013,40.718456,-73.99482,"(40.718456, -73.99482)",BOWERY,GRAND STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453683,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,17:08,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453880,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/04/2021,17:04,QUEENS,11434,40.679707,-73.789246,"(40.679707, -73.789246)",119 AVENUE,153 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454084,Sedan,Sedan,,, +09/04/2021,18:21,,,40.712505,-73.89591,"(40.712505, -73.89591)",METROPOLITAN AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453978,Sedan,Motorcycle,,, +09/04/2021,10:20,QUEENS,11372,40.750557,-73.87669,"(40.750557, -73.87669)",,,90-09 37 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4453615,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/04/2021,2:15,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453559,Sedan,,,, +09/04/2021,4:20,QUEENS,11368,40.745266,-73.85596,"(40.745266, -73.85596)",108 STREET,49 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453730,Sedan,Sedan,,, +09/03/2021,20:55,MANHATTAN,10016,40.740482,-73.979004,"(40.740482, -73.979004)",,,480 2 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454389,Station Wagon/Sport Utility Vehicle,Bike,,, +09/04/2021,17:40,,,40.824352,-73.87245,"(40.824352, -73.87245)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453901,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,5:50,BROOKLYN,11226,40.64264,-73.95763,"(40.64264, -73.95763)",,,1138 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4453689,Station Wagon/Sport Utility Vehicle,,,, +08/15/2021,2:00,,,,,,EAST 44 STREET,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454267,Sedan,Sedan,,, +08/30/2021,8:50,BRONX,10455,40.81014,-73.908226,"(40.81014, -73.908226)",WALES AVENUE,EAST 145 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454290,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,3:35,BRONX,10460,40.840023,-73.88864,"(40.840023, -73.88864)",,,855 EAST 175 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454205,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,6:28,,,40.812813,-73.94181,"(40.812813, -73.94181)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454343,Taxi,,,, +09/04/2021,6:57,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453747,Bus,Sedan,,, +09/02/2021,6:50,QUEENS,11375,40.71614,-73.83357,"(40.71614, -73.83357)",QUEENS BOULEVARD,77 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,4:07,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454386,,,,, +09/04/2021,19:59,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4454010,Sedan,E-Bike,,, +09/04/2021,21:43,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",NEW LOTS AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454418,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,14:00,QUEENS,11354,40.775974,-73.82779,"(40.775974, -73.82779)",WHITESTONE EXPRESSWAY,25 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453654,Bus,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:50,BRONX,10469,40.87603,-73.84947,"(40.87603, -73.84947)",,,3431 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454078,Sedan,Sedan,,, +08/31/2021,12:45,BROOKLYN,11212,40.657383,-73.911514,"(40.657383, -73.911514)",AMBOY STREET,LOTT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454324,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,16:00,,,40.879463,-73.85249,"(40.879463, -73.85249)",EAST 218 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454002,Sedan,,,, +09/04/2021,8:30,,,40.772156,-73.94541,"(40.772156, -73.94541)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4453637,Sedan,,,, +09/04/2021,5:55,,,40.67416,-73.72756,"(40.67416, -73.72756)",HOOK CREEK BOULEVARD,,,1,0,0,0,0,0,1,0,Glare,,,,,4453674,Sedan,,,, +09/04/2021,19:30,,,40.663185,-73.84911,"(40.663185, -73.84911)",SHORE PARKWAY,84 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454140,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,18:38,BRONX,10454,40.807846,-73.913994,"(40.807846, -73.913994)",,,626 EAST 141 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454114,Sedan,,,, +09/04/2021,14:04,,,40.688614,-73.989174,"(40.688614, -73.989174)",SMITH STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453603,Sedan,Bike,,, +09/04/2021,9:20,QUEENS,11434,40.675842,-73.78305,"(40.675842, -73.78305)",157 STREET,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454344,Sedan,,,, +09/01/2021,9:57,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454428,Sedan,Sedan,,, +09/04/2021,12:00,BRONX,10457,40.84628,-73.88893,"(40.84628, -73.88893)",CLINTON AVENUE,EAST 179 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4454216,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,9:40,BROOKLYN,11209,40.626225,-74.02995,"(40.626225, -74.02995)",,,8210 3 AVENUE,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4453834,Sedan,Sedan,,, +09/03/2021,16:53,,,40.865383,-73.89348,"(40.865383, -73.89348)",EAST KINGSBRIDGE ROAD,VALENTINE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454276,Station Wagon/Sport Utility Vehicle,Bus,,, +09/04/2021,1:53,BRONX,10468,40.876774,-73.88678,"(40.876774, -73.88678)",,,3188 VILLA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454279,Sedan,Sedan,,, +09/04/2021,1:50,BROOKLYN,11236,40.64359,-73.90471,"(40.64359, -73.90471)",GLENWOOD ROAD,EAST 94 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4453542,Sedan,,,, +09/04/2021,5:00,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",DITMAS AVENUE,REMSEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454400,Sedan,,,, +09/04/2021,19:33,,,40.67268,-73.953026,"(40.67268, -73.953026)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453926,Sedan,Sedan,,, +09/04/2021,2:40,QUEENS,11385,40.69729,-73.903366,"(40.69729, -73.903366)",,,1671 GEORGE STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4453974,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +09/03/2021,13:37,QUEENS,11378,40.72418,-73.89068,"(40.72418, -73.89068)",,,59-14 70 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Failure to Yield Right-of-Way,,,,4454336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,10:47,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",WEST 34 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453741,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/04/2021,2:00,,,40.66807,-73.80789,"(40.66807, -73.80789)",135 AVENUE,131 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4454157,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,16:30,BROOKLYN,11212,40.665398,-73.90964,"(40.665398, -73.90964)",,,589 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453776,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,17:04,BROOKLYN,11210,,,,EAST 38 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454380,Sedan,,,, +09/04/2021,18:40,,,40.6752,-73.950005,"(40.6752, -73.950005)",SAINT MARKS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4453940,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,18:28,BROOKLYN,11207,40.674587,-73.88653,"(40.674587, -73.88653)",,,644 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4453668,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,1:27,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",ESSEX STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4453588,Sedan,Sedan,,, +09/04/2021,3:50,,,40.846725,-73.93563,"(40.846725, -73.93563)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454057,Sedan,Sedan,,, +09/04/2021,20:27,QUEENS,11420,40.68329,-73.81153,"(40.68329, -73.81153)",131 STREET,111 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4454173,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,11:15,,,40.817116,-73.94801,"(40.817116, -73.94801)",SAINT NICHOLAS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453708,,,,, +09/04/2021,11:10,QUEENS,11355,40.742634,-73.81858,"(40.742634, -73.81858)",150 STREET,58 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,21:04,,,40.666306,-73.79171,"(40.666306, -73.79171)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454104,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,14:01,,,40.684814,-73.98353,"(40.684814, -73.98353)",NEVINS STREET,,,1,0,0,0,1,0,0,0,Accelerator Defective,Driver Inattention/Distraction,,,,4454353,Station Wagon/Sport Utility Vehicle,Bike,,, +09/04/2021,22:57,BRONX,10461,40.850315,-73.843124,"(40.850315, -73.843124)",,,1776 EASTCHESTER ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453767,Sedan,Sedan,,, +09/04/2021,9:55,QUEENS,11103,40.762383,-73.90708,"(40.762383, -73.90708)",,,48-21 28 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4453876,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +08/29/2021,22:00,BROOKLYN,11231,40.679237,-73.99967,"(40.679237, -73.99967)",3 PLACE,CLINTON STREET,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4454308,Taxi,,,, +09/04/2021,23:48,BROOKLYN,11223,40.60536,-73.96174,"(40.60536, -73.96174)",AVENUE R,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4454256,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,9:30,BRONX,10467,40.87417,-73.86579,"(40.87417, -73.86579)",,,730 BARTHOLDI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453919,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,1:18,MANHATTAN,10036,40.75876,-73.9887,"(40.75876, -73.9887)",,,705 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453748,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,9:35,BROOKLYN,11201,40.688602,-73.98508,"(40.688602, -73.98508)",,,225 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454233,Sedan,Bike,,, +08/30/2021,22:35,BROOKLYN,11229,40.59938,-73.95141,"(40.59938, -73.95141)",AVENUE U,OCEAN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454250,Sedan,Sedan,,, +07/22/2021,9:45,MANHATTAN,10001,40.751175,-73.99105,"(40.751175, -73.99105)",,,201 WEST 34 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4454263,Sedan,Moped,,, +09/04/2021,16:00,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,15:15,,,40.714104,-73.95322,"(40.714104, -73.95322)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476488,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/09/2021,8:24,,,40.536995,-74.22429,"(40.536995, -74.22429)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4476509,Motorcycle,,,, +04/11/2021,11:39,,,40.68164,-73.98568,"(40.68164, -73.98568)",BUTLER STREET,,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4476490,E-Bike,,,, +11/03/2021,2:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,,,,,,4476513,,,,, +11/09/2021,22:14,BROOKLYN,11232,40.646717,-73.99789,"(40.646717, -73.99789)",40 STREET,8 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4476495,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/03/2021,11:28,BROOKLYN,11211,40.709084,-73.960106,"(40.709084, -73.960106)",,,240 BROADWAY,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4476504,E-Scooter,Sedan,,, +11/09/2021,16:00,MANHATTAN,10036,40.761795,-73.99079,"(40.761795, -73.99079)",,,402 WEST 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476507,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,2:26,,,40.696167,-73.97721,"(40.696167, -73.97721)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4476486,Sedan,Sedan,,, +10/12/2021,5:30,,,40.698246,-73.98055,"(40.698246, -73.98055)",NAVY STREET,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4466614,Station Wagon/Sport Utility Vehicle,,,, +12/08/2021,8:00,STATEN ISLAND,10304,40.630318,-74.08683,"(40.630318, -74.08683)",LOUIS STREET,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4486403,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/08/2021,20:04,,,40.68218,-73.94659,"(40.68218, -73.94659)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486432,Sedan,,,, +12/12/2021,10:24,BROOKLYN,11223,40.594433,-73.96484,"(40.594433, -73.96484)",GRAVESEND NECK ROAD,OCEAN PARKWAY,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4485890,Sedan,Sedan,,, +12/14/2021,0:00,BROOKLYN,11222,40.72572,-73.95088,"(40.72572, -73.95088)",LEONARD STREET,NORMAN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4486852,Sedan,,,, +12/14/2021,14:34,BRONX,10468,40.86135,-73.9062,"(40.86135, -73.9062)",,,2336 UNIVERSITY AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4486687,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,17:00,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4486782,Pick-up Truck,Tractor Truck Diesel,,, +12/14/2021,6:29,BROOKLYN,11236,40.638577,-73.90414,"(40.638577, -73.90414)",REMSEN AVENUE,AVENUE J,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4486396,Sedan,,,, +12/14/2021,11:56,BROOKLYN,11223,40.59287,-73.96078,"(40.59287, -73.96078)",,,2617 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486476,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/14/2021,12:03,BROOKLYN,11230,40.613045,-73.97383,"(40.613045, -73.97383)",,,1487 MC DONALD AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4486570,Station Wagon/Sport Utility Vehicle,,,, +12/14/2021,19:18,QUEENS,11377,40.7351,-73.89665,"(40.7351, -73.89665)",,,68-07 MAURICE AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4487086,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,0:45,QUEENS,11385,40.693047,-73.90166,"(40.693047, -73.90166)",,,56-05 COOPER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4486671,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,23:15,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4544505,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,10:40,,,40.688553,-73.91245,"(40.688553, -73.91245)",EVERGREEN AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4543895,Bike,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,16:27,BROOKLYN,11220,40.645645,-74.01422,"(40.645645, -74.01422)",,,375 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545043,Sedan,,,, +06/26/2022,18:24,STATEN ISLAND,10304,40.609047,-74.08581,"(40.609047, -74.08581)",BRITTON AVENUE,PIERCE STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544492,Sedan,E-Scooter,,, +07/06/2022,16:25,,,,,,,,106 COMSTOCK AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4544270,Sedan,Sedan,,, +07/06/2022,21:45,STATEN ISLAND,10304,40.621433,-74.08553,"(40.621433, -74.08553)",,,741 VANDUZER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545053,Sedan,Sedan,,, +07/08/2022,17:25,QUEENS,11356,40.781693,-73.84051,"(40.781693, -73.84051)",20 AVENUE,128 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544624,Sedan,Sedan,,, +11/09/2021,15:30,QUEENS,11354,40.76856,-73.82141,"(40.76856, -73.82141)",33 AVENUE,146 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475734,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,22:25,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",EAST FORDHAM ROAD,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475842,E-Scooter,,,, +11/09/2021,23:30,,,40.658234,-73.9321,"(40.658234, -73.9321)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475780,Sedan,Gas Scoote,,, +11/09/2021,18:32,STATEN ISLAND,10305,40.58847,-74.09039,"(40.58847, -74.09039)",HYLAN BOULEVARD,ALTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4476418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,13:24,,,40.605568,-74.00443,"(40.605568, -74.00443)",BENSON AVENUE,18 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476222,Sedan,,,, +11/08/2021,23:45,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476193,Sedan,Sedan,,, +11/09/2021,0:50,BROOKLYN,11223,40.60115,-73.97839,"(40.60115, -73.97839)",AVENUE S,WEST 6 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4475405,Station Wagon/Sport Utility Vehicle,TOW TRUCK,,, +11/09/2021,6:47,BROOKLYN,11249,40.710625,-73.96678,"(40.710625, -73.96678)",WYTHE AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475765,Sedan,,,, +11/09/2021,15:57,BROOKLYN,11219,40.63556,-73.98441,"(40.63556, -73.98441)",,,4322 15 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4475912,Van,,,, +11/09/2021,18:00,,,40.73329,-73.98719,"(40.73329, -73.98719)",3 AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475803,Moped,,,, +11/09/2021,8:50,,,40.66408,-73.94817,"(40.66408, -73.94817)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4476107,Bus,Bus,,, +10/30/2021,22:30,MANHATTAN,10026,40.802044,-73.957664,"(40.802044, -73.957664)",,,321 WEST 112 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4476272,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/08/2021,11:00,,,40.67221,-73.92802,"(40.67221, -73.92802)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476360,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/09/2021,4:20,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Following Too Closely,,,,4475514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,21:00,BRONX,10453,40.85396,-73.90944,"(40.85396, -73.90944)",GRAND AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475810,Box Truck,Sedan,,, +11/09/2021,5:50,,,40.55692,-74.205956,"(40.55692, -74.205956)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476219,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +11/03/2021,11:30,BRONX,10458,40.854496,-73.88543,"(40.854496, -73.88543)",EAST 187 STREET,CAMBRELENG AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476260,Sedan,,,, +11/09/2021,9:48,,,40.666363,-73.95223,"(40.666363, -73.95223)",CROWN STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476006,Sedan,Sedan,,, +11/09/2021,7:20,,,40.752975,-73.91024,"(40.752975, -73.91024)",NORTHERN BOULEVARD,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475555,Station Wagon/Sport Utility Vehicle,Bus,,, +11/09/2021,15:20,BROOKLYN,11201,40.68912,-73.98445,"(40.68912, -73.98445)",,,240 LIVINGSTON STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4475707,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,16:31,,,40.694923,-73.915565,"(40.694923, -73.915565)",WILSON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475846,Box Truck,Bike,,, +11/04/2021,5:55,,,40.845104,-73.91494,"(40.845104, -73.91494)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4476474,Tractor Truck Diesel,,,, +11/09/2021,15:54,BROOKLYN,11215,40.663727,-73.99098,"(40.663727, -73.99098)",,,608 5 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475878,Sedan,E-Bike,,, +11/09/2021,9:00,BRONX,10469,40.860874,-73.84145,"(40.860874, -73.84145)",,,1559 WARING AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4475922,Sedan,,,, +11/09/2021,15:00,,,40.656494,-73.99899,"(40.656494, -73.99899)",30 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475953,Sedan,,,, +11/09/2021,12:02,BRONX,10472,40.83202,-73.87323,"(40.83202, -73.87323)",METCALF AVENUE,EAST 172 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4475667,Sedan,Sedan,,, +11/09/2021,9:30,MANHATTAN,10011,40.737423,-73.99261,"(40.737423, -73.99261)",,,110 5 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475621,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,11:00,BROOKLYN,11208,40.676952,-73.86958,"(40.676952, -73.86958)",,,530 CONDUIT BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4476315,Sedan,,,, +10/22/2021,19:15,BROOKLYN,11233,,,,ATLANTIC AVENUE,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476344,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,4:50,BROOKLYN,11234,40.623978,-73.92063,"(40.623978, -73.92063)",AVENUE L,EAST 57 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476395,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,11:20,QUEENS,11101,40.751904,-73.9346,"(40.751904, -73.9346)",,,30-03 40 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475652,Sedan,Sedan,,, +11/09/2021,7:50,BRONX,10470,40.89845,-73.85431,"(40.89845, -73.85431)",NEREID AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,17:50,STATEN ISLAND,10301,40.639755,-74.091156,"(40.639755, -74.091156)",FRANKLIN AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4476234,Sedan,Sedan,,, +11/09/2021,10:00,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475698,Sedan,,,, +11/09/2021,9:00,,,,,,VANWYCK EXPRESSWAY,109 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475592,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,14:50,,,40.77305,-73.92148,"(40.77305, -73.92148)",CRESCENT STREET,HOYT AVENUE SOUTH,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475949,E-Scooter,Sedan,,, +11/09/2021,7:10,BROOKLYN,11222,40.719048,-73.939095,"(40.719048, -73.939095)",FROST STREET,DEBEVOISE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475793,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,18:20,,,40.7672,-73.887825,"(40.7672, -73.887825)",82 STREET,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4475819,Sedan,Sedan,,, +11/08/2021,16:10,BRONX,10456,40.83228,-73.90963,"(40.83228, -73.90963)",EAST 168 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476481,Sedan,,,, +11/09/2021,10:01,,,40.663555,-73.93162,"(40.663555, -73.93162)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4475989,Sedan,Sedan,,, +11/09/2021,13:00,QUEENS,11435,40.70887,-73.81871,"(40.70887, -73.81871)",QUEENS BOULEVARD,84 DRIVE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475885,Sedan,,,, +11/09/2021,21:10,MANHATTAN,10001,40.747826,-73.98711,"(40.747826, -73.98711)",,,34 WEST 32 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4475969,Taxi,Bike,,, +11/09/2021,8:55,STATEN ISLAND,10306,40.56935,-74.11089,"(40.56935, -74.11089)",HYLAN BOULEVARD,ROSE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,0:00,BROOKLYN,11212,40.67066,-73.904205,"(40.67066, -73.904205)",POWELL STREET,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,13:50,BROOKLYN,11211,40.70735,-73.959404,"(40.70735, -73.959404)",WILSON STREET,DIVISION AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475771,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,16:30,QUEENS,11435,40.690254,-73.799904,"(40.690254, -73.799904)",,,109-09 LIVERPOOL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476293,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,4:00,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4476407,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle +11/09/2021,19:07,,,40.806343,-73.93318,"(40.806343, -73.93318)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475868,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/09/2021,16:52,BRONX,10461,40.838673,-73.83567,"(40.838673, -73.83567)",EAST TREMONT AVENUE,HARRINGTON AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4476170,Sedan,Sedan,,, +10/28/2021,17:20,BROOKLYN,11208,40.683186,-73.86631,"(40.683186, -73.86631)",ELDERTS LANE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476316,Sedan,Motorcycle,,, +11/09/2021,12:25,QUEENS,11004,40.736946,-73.71014,"(40.736946, -73.71014)",HILLSIDE AVENUE,258 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4475708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,12:20,BRONX,10466,40.896694,-73.853516,"(40.896694, -73.853516)",EAST 237 STREET,BYRON AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4476377,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/09/2021,15:00,BROOKLYN,11225,40.657093,-73.95026,"(40.657093, -73.95026)",NOSTRAND AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475747,Sedan,,,, +11/08/2021,20:00,,,40.82682,-73.94154,"(40.82682, -73.94154)",EDGECOMBE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476243,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,10:00,STATEN ISLAND,10306,0,0,"(0.0, 0.0)",ALLISON AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475630,Sedan,,,, +11/09/2021,15:02,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",LEFFERTS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476098,Carry All,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,17:40,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475901,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,18:31,BROOKLYN,11212,40.65641,-73.90638,"(40.65641, -73.90638)",HEGEMAN AVENUE,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475939,Sedan,Taxi,,, +11/01/2021,10:30,QUEENS,11375,40.709236,-73.84325,"(40.709236, -73.84325)",75 ROAD,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476397,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,20:35,,,40.686817,-73.97821,"(40.686817, -73.97821)",ASHLAND PLACE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476038,E-Bike,Pick-up Truck,,, +11/09/2021,8:00,,,40.779747,-73.915825,"(40.779747, -73.915825)",DITMARS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476227,Taxi,Sedan,,, +11/09/2021,19:11,BRONX,10451,40.821484,-73.91218,"(40.821484, -73.91218)",3 AVENUE,EAST 158 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475787,Sedan,,,, +11/08/2021,17:00,QUEENS,11412,40.692936,-73.75774,"(40.692936, -73.75774)",194 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476197,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,4:28,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475811,Pick-up Truck,Tractor Truck Diesel,,, +11/09/2021,17:30,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475761,Sedan,Sedan,,, +11/04/2021,18:18,QUEENS,11375,40.714584,-73.84831,"(40.714584, -73.84831)",71 AVENUE,INGRAM STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4476278,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/09/2021,16:45,,,40.72545,-73.837776,"(40.72545, -73.837776)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475714,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,21:49,BROOKLYN,11220,0,0,"(0.0, 0.0)",,,873 45 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476119,Sedan,Taxi,,, +11/08/2021,14:00,BROOKLYN,11216,40.676807,-73.95576,"(40.676807, -73.95576)",FRANKLIN AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476335,Sedan,Pick-up Truck,,, +11/09/2021,21:28,BRONX,10452,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4475833,Box Truck,,,, +11/09/2021,9:00,BROOKLYN,11206,40.70776,-73.94156,"(40.70776, -73.94156)",,,188 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475766,Sedan,Tractor Truck Diesel,,, +11/09/2021,17:40,QUEENS,11691,40.6028,-73.74879,"(40.6028, -73.74879)",NAMEOKE AVENUE,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475834,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,3:00,MANHATTAN,10027,40.813778,-73.959694,"(40.813778, -73.959694)",LASALLE STREET,BROADWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4475805,Taxi,,,, +11/09/2021,14:31,BROOKLYN,11204,40.61785,-73.988075,"(40.61785, -73.988075)",19 AVENUE,65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476210,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/09/2021,1:50,,,,,,WESTCHESTER AVENUE,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4475455,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,15:00,BRONX,10460,0,0,"(0.0, 0.0)",,,1970 WEST FARMS ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476254,Tractor Truck Diesel,AMBULANCE,,, +11/05/2021,19:20,MANHATTAN,10017,40.75209,-73.97759,"(40.75209, -73.97759)",,,89 EAST 42 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4476371,Station Wagon/Sport Utility Vehicle,Bike,,, +11/09/2021,18:48,QUEENS,11423,40.70805,-73.7784,"(40.70805, -73.7784)",182 PLACE,93 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4475743,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,3:45,QUEENS,11373,40.738384,-73.87936,"(40.738384, -73.87936)",POYER STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544117,Sedan,,,, +11/07/2021,18:00,,,40.679375,-73.96408,"(40.679375, -73.96408)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476359,Sedan,Sedan,,, +11/08/2021,19:00,,,40.688667,-73.87548,"(40.688667, -73.87548)",JAMAICA AVENUE,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476327,Bus,Sedan,,, +11/09/2021,23:12,,,40.714455,-73.935295,"(40.714455, -73.935295)",METROPOLITAN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476190,Bike,Pick-up Truck,,, +11/09/2021,6:22,BROOKLYN,11226,40.646126,-73.959206,"(40.646126, -73.959206)",REGENT PLACE,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475522,Sedan,Sedan,,, +09/05/2021,13:39,,,,,,KINGS HIGHWAY,EAST 53 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454030,Motorcycle,Sedan,,, +11/07/2021,17:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4476220,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck, +11/09/2021,16:54,BRONX,10466,40.89312,-73.85646,"(40.89312, -73.85646)",,,725 EAST 233 STREET,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Turning Improperly,,,,4475713,Van,Sedan,,, +11/09/2021,11:00,MANHATTAN,10029,40.787693,-73.94148,"(40.787693, -73.94148)",EAST 103 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475806,Van,Sedan,,, +11/08/2021,6:10,BRONX,10457,40.84781,-73.897644,"(40.84781, -73.897644)",,,1943 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4476261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/09/2021,18:00,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475762,Sedan,,,, +11/09/2021,23:45,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476003,Chassis Cab,Sedan,,, +07/06/2022,10:55,QUEENS,11366,40.731663,-73.78736,"(40.731663, -73.78736)",183 STREET,73 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544537,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,7:50,BROOKLYN,11235,40.586754,-73.95806,"(40.586754, -73.95806)",EAST 12 STREET,WILLIAMS COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475782,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,16:00,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476419,Sedan,Sedan,,, +11/09/2021,16:52,BRONX,10451,40.82317,-73.9275,"(40.82317, -73.9275)",GERARD AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476240,Sedan,,,, +11/09/2021,11:56,,,40.741135,-73.8986,"(40.741135, -73.8986)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475628,Chassis Cab,Sedan,Sedan,, +11/09/2021,13:40,,,40.748066,-73.93974,"(40.748066, -73.93974)",QUEENS STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475653,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,2:00,MANHATTAN,10029,40.787693,-73.94148,"(40.787693, -73.94148)",1 AVENUE,EAST 103 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475891,Station Wagon/Sport Utility Vehicle,Bike,,, +09/27/2021,9:35,BROOKLYN,11213,40.671337,-73.9448,"(40.671337, -73.9448)",SAINT JOHNS PLACE,BROOKLYN AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4476340,Bike,Sedan,,, +11/09/2021,15:13,QUEENS,11356,40.77861,-73.84249,"(40.77861, -73.84249)",23 AVENUE,126 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,13:00,,,40.8416,-73.90112,"(40.8416, -73.90112)",EAST 173 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4475972,Sedan,,,, +11/09/2021,19:00,MANHATTAN,10026,40.80209,-73.94987,"(40.80209, -73.94987)",,,52 WEST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476271,Sedan,,,, +11/09/2021,6:45,,,40.859444,-73.915985,"(40.859444, -73.915985)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4475612,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/09/2021,16:00,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4475841,Sedan,,,, +11/09/2021,20:00,BRONX,10472,40.83545,-73.86956,"(40.83545, -73.86956)",,,1748 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,11:45,BROOKLYN,11215,40.669228,-73.97634,"(40.669228, -73.97634)",,,314 8 AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4475639,PK,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,12:50,BROOKLYN,11211,40.70844,-73.961784,"(40.70844, -73.961784)",,,172 SOUTH 9 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,16:30,MANHATTAN,10034,40.86386,-73.92191,"(40.86386, -73.92191)",,,65 POST AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476178,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,8:12,QUEENS,11106,40.759468,-73.94,"(40.759468, -73.94)",12 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476225,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,14:16,QUEENS,11385,40.710777,-73.86502,"(40.710777, -73.86502)",88 STREET,COOPER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475993,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,19:05,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475721,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/05/2021,21:40,,,40.71328,-73.83311,"(40.71328, -73.83311)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454163,Sedan,Sedan,,, +11/09/2021,17:55,BROOKLYN,11211,40.71252,-73.93833,"(40.71252, -73.93833)",GRAND STREET,WATERBURY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475775,Station Wagon/Sport Utility Vehicle,Bike,,, +11/06/2021,20:23,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,18:43,BRONX,10461,40.84703,-73.83246,"(40.84703, -73.83246)",BUHRE AVENUE,EDISON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4545128,Sedan,Sedan,,, +11/08/2021,19:20,BROOKLYN,11207,40.679535,-73.900475,"(40.679535, -73.900475)",HIGHLAND BOULEVARD,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476312,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,16:10,,,,,,WEST 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476132,Pick-up Truck,,,, +11/06/2021,18:30,,,40.671185,-73.94204,"(40.671185, -73.94204)",SAINT JOHNS PLACE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476378,Bike,Sedan,,, +11/09/2021,12:06,,,40.647964,-73.974915,"(40.647964, -73.974915)",PROSPECT EXPRESSWAY EAST,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4475884,Sedan,Sedan,,, +11/09/2021,8:00,MANHATTAN,10036,40.764088,-73.99593,"(40.764088, -73.99593)",,,646 11 AVENUE,1,0,1,0,0,0,0,0,Glare,,,,,4475546,Sedan,,,, +11/09/2021,7:10,BRONX,10461,40.84639,-73.84376,"(40.84639, -73.84376)",,,1000 WATERS PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475968,Van,,,, +11/09/2021,15:50,BROOKLYN,11207,40.66649,-73.89645,"(40.66649, -73.89645)",,,390 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475702,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,14:35,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CATON AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475910,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,11:28,BROOKLYN,11221,40.69321,-73.91256,"(40.69321, -73.91256)",CORNELIA STREET,WILSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475845,Sedan,Box Truck,,, +11/09/2021,19:56,MANHATTAN,10075,40.773335,-73.95506,"(40.773335, -73.95506)",2 AVENUE,EAST 79 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4475791,Taxi,Bike,,, +11/04/2021,11:14,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4476411,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,15:20,,,40.61135,-74.09847,"(40.61135, -74.09847)",CLOVE ROAD,NARROWS ROAD NORTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476233,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,13:44,,,40.741447,-73.84603,"(40.741447, -73.84603)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475814,Sedan,Sedan,,, +11/09/2021,2:05,MANHATTAN,10014,40.74184,-74.00751,"(40.74184, -74.00751)",,,450 WEST 14 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476135,Sedan,,,, +11/08/2021,13:21,BRONX,10451,40.816147,-73.91975,"(40.816147, -73.91975)",,,529 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476472,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,9:10,,,40.695995,-73.96742,"(40.695995, -73.96742)",WASHINGTON AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,21:03,QUEENS,11004,40.744984,-73.71506,"(40.744984, -73.71506)",,,79-11 256 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475978,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,16:05,BRONX,10456,40.83047,-73.90972,"(40.83047, -73.90972)",BROOK AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476040,Sedan,Sedan,,, +11/09/2021,9:30,BROOKLYN,11206,40.705738,-73.944695,"(40.705738, -73.944695)",MANHATTAN AVENUE,BOERUM STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475774,Station Wagon/Sport Utility Vehicle,Bike,,, +11/09/2021,6:36,BRONX,10462,40.85289,-73.86889,"(40.85289, -73.86889)",,,2076 BRONX PARK EAST,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4475919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/09/2021,7:10,QUEENS,11691,40.602715,-73.7492,"(40.602715, -73.7492)",,,14-16 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475575,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,16:15,BROOKLYN,11210,40.61867,-73.95401,"(40.61867, -73.95401)",AVENUE M,EAST 21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475830,Sedan,Sedan,,, +11/09/2021,13:23,BROOKLYN,11236,40.646572,-73.89617,"(40.646572, -73.89617)",FLATLANDS AVENUE,EAST 103 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475665,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,19:03,BROOKLYN,11226,40.642845,-73.955315,"(40.642845, -73.955315)",,,2307 CLARENDON ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475836,Sedan,E-Bike,,, +11/09/2021,16:50,,,40.704807,-73.77278,"(40.704807, -73.77278)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475742,Sedan,Sedan,,, +11/09/2021,14:15,QUEENS,11368,40.74618,-73.85293,"(40.74618, -73.85293)",111 STREET,49 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475825,Sedan,Pick-up Truck,,, +11/08/2021,3:00,,,40.712055,-73.96615,"(40.712055, -73.96615)",SOUTH 5 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476479,Sedan,,,, +11/09/2021,14:23,BROOKLYN,11219,40.625957,-74.0046,"(40.625957, -74.0046)",,,1201 67 STREET,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4476196,Dump,,,, +11/09/2021,15:00,,,,,,,,612 EAST 151 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475786,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,0:00,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476211,Sedan,,,, +11/09/2021,0:49,,,40.732937,-73.920395,"(40.732937, -73.920395)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475462,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,12:54,BRONX,10457,40.847366,-73.899506,"(40.847366, -73.899506)",EAST TREMONT AVENUE,PARK AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4476255,Moped,,,, +11/09/2021,23:20,BRONX,10457,40.848927,-73.88816,"(40.848927, -73.88816)",EAST 181 STREET,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4476013,Sedan,Sedan,,, +11/09/2021,17:01,BROOKLYN,11203,40.647427,-73.92314,"(40.647427, -73.92314)",,,346 EAST 57 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476367,Sedan,Sedan,,, +11/03/2021,12:51,,,40.672062,-73.925255,"(40.672062, -73.925255)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476341,Sedan,Box Truck,,, +11/09/2021,11:15,,,40.694214,-73.95932,"(40.694214, -73.95932)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475906,Sedan,Van,,, +11/09/2021,10:59,,,40.666637,-73.7646,"(40.666637, -73.7646)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475635,Station Wagon/Sport Utility Vehicle,Convertible,,, +11/09/2021,7:20,,,,,,ASTORIA BOULEVARD,31 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4475644,Sedan,Sedan,,, +11/09/2021,23:02,,,40.7473,-73.828995,"(40.7473, -73.828995)",BOOTH MEMORIAL AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475856,Sedan,Sedan,,, +10/27/2021,4:45,BRONX,10458,40.85931,-73.89208,"(40.85931, -73.89208)",EAST 188 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476253,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,7:45,,,40.650715,-73.951385,"(40.650715, -73.951385)",CHURCH AVENUE,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475676,Sedan,E-Bike,,, +11/09/2021,17:00,,,40.757877,-73.8839,"(40.757877, -73.8839)",32 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475895,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,10:14,BRONX,10466,40.888527,-73.85668,"(40.888527, -73.85668)",,,4028 BARNES AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476275,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,16:35,QUEENS,11422,40.657436,-73.746185,"(40.657436, -73.746185)",147 AVENUE,235 STREET,,0,0,0,0,0,0,0,0,,,,,,4475720,,,,, +11/09/2021,17:46,BROOKLYN,11212,40.667095,-73.92276,"(40.667095, -73.92276)",RALPH AVENUE,EAST NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4475941,Sedan,,,, +11/04/2021,20:39,BROOKLYN,11210,40.6264,-73.93736,"(40.6264, -73.93736)",,,1183 EAST 40 STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4476339,Ambulance,Sedan,,, +11/09/2021,8:45,,,,,,164 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475603,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,17:30,,,,,,,,1 RODMANS NECK ROAD,0,0,0,0,0,0,0,0,Animals Action,,,,,4475857,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,17:00,BRONX,10467,40.856323,-73.87244,"(40.856323, -73.87244)",PELHAM PARKWAY,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475927,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,0:00,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475971,Sedan,Sedan,,, +11/09/2021,7:50,BRONX,10456,40.836823,-73.90706,"(40.836823, -73.90706)",,,1368 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475613,Bus,Ambulance,,, +11/09/2021,12:52,BRONX,10475,40.879192,-73.83757,"(40.879192, -73.83757)",,,3400 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475673,Sedan,,,, +11/03/2021,6:55,BROOKLYN,11207,40.678265,-73.89724,"(40.678265, -73.89724)",,,80 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,18:20,BROOKLYN,11208,40.676327,-73.86547,"(40.676327, -73.86547)",GRANT AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476320,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,10:00,BRONX,10458,40.856796,-73.88992,"(40.856796, -73.88992)",EAST 187 STREET,BATHGATE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475711,Sedan,,,, +11/09/2021,20:45,BROOKLYN,11213,40.673996,-73.92785,"(40.673996, -73.92785)",ROCHESTER AVENUE,SAINT MARKS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475807,Motorbike,Sedan,,, +10/24/2021,12:37,QUEENS,11374,,,,AUSTIN STREET,63 DRIVE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4476279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/09/2021,21:50,,,40.76942,-73.880295,"(40.76942, -73.880295)",DITMARS BOULEVARD,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4476011,Sedan,Taxi,,, +11/09/2021,10:40,,,40.69479,-73.99431,"(40.69479, -73.99431)",MONTAGUE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475627,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,20:45,QUEENS,11375,40.72162,-73.854576,"(40.72162, -73.854576)",CLYDE STREET,YELLOWSTONE BOULEVARD,,1,0,0,0,0,0,0,0,Unspecified,,,,,4475738,E-Bike,,,, +11/09/2021,8:45,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4475565,Sedan,,,, +11/09/2021,9:30,,,40.694836,-73.98393,"(40.694836, -73.98393)",JOHNSON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4475704,,,,, +11/07/2021,20:29,BROOKLYN,11216,40.674446,-73.95009,"(40.674446, -73.95009)",,,710 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4476373,,,,, +11/09/2021,6:40,QUEENS,11691,,,,,,11-07 REDFERN AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4475850,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/09/2021,15:35,QUEENS,11354,40.76315,-73.81261,"(40.76315, -73.81261)",41 AVENUE,MURRAY STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4475691,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/09/2021,18:30,,,40.56771,-74.13977,"(40.56771, -74.13977)",,,CLARKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476420,Sedan,Sedan,,, +11/06/2021,20:53,,,40.62806,-74.02029,"(40.62806, -74.02029)",BAY RIDGE PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,21:00,,,40.743225,-73.83778,"(40.743225, -73.83778)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4475942,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/09/2021,23:00,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4475763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,9:00,BRONX,10453,40.847557,-73.91024,"(40.847557, -73.91024)",WALTON AVENUE,HENWOOD PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475889,Sedan,Sedan,,, +11/09/2021,10:15,QUEENS,11374,40.728535,-73.86076,"(40.728535, -73.86076)",64 ROAD,SAUNDERS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475964,Sedan,,,, +11/09/2021,21:20,,,40.816025,-73.93947,"(40.816025, -73.93947)",WEST 138 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475914,Sedan,E-Bike,,, +11/09/2021,16:40,MANHATTAN,10022,40.76244,-73.96867,"(40.76244, -73.96867)",,,127 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475801,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,12:50,BROOKLYN,11229,40.609333,-73.948425,"(40.609333, -73.948425)",BEDFORD AVENUE,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476109,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,16:51,MANHATTAN,10012,40.72593,-73.99466,"(40.72593, -73.99466)",BLEECKER STREET,LAFAYETTE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4476270,Station Wagon/Sport Utility Vehicle,Bike,,, +11/09/2021,20:30,,,40.605015,-74.02929,"(40.605015, -74.02929)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4475751,Sedan,,,, +11/09/2021,13:00,BROOKLYN,11206,40.697117,-73.93401,"(40.697117, -73.93401)",MYRTLE AVENUE,TROUTMAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,17:20,,,40.638264,-74.021095,"(40.638264, -74.021095)",4 AVENUE,65 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475745,Sedan,,,, +11/09/2021,1:30,BRONX,10467,40.863758,-73.86642,"(40.863758, -73.86642)",,,2529 CRUGER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475539,Sedan,,,, +11/08/2021,11:17,MANHATTAN,10033,40.84957,-73.94012,"(40.84957, -73.94012)",,,825 WEST 179 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476214,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/30/2021,7:40,QUEENS,11432,40.707554,-73.78821,"(40.707554, -73.78821)",,,171-15 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476379,Taxi,Taxi,,, +11/09/2021,8:20,STATEN ISLAND,10301,40.613552,-74.10069,"(40.613552, -74.10069)",CLOVE ROAD,OSWEGO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475657,Box Truck,Sedan,,, +11/09/2021,23:25,BROOKLYN,11234,40.635426,-73.92474,"(40.635426, -73.92474)",GLENWOOD ROAD,EAST 54 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475777,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/05/2021,7:34,,,40.668797,-73.93113,"(40.668797, -73.93113)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476346,Sedan,Sedan,,, +11/07/2021,4:47,,,,,,BRONX WHITESTONE BRIDGE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4476263,Sedan,Sedan,,, +11/09/2021,18:25,BRONX,10460,40.84193,-73.88582,"(40.84193, -73.88582)",SOUTHERN BOULEVARD,ELSMERE PLACE,,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4476021,E-Bike,,,, +09/19/2021,3:33,,,40.842335,-73.91619,"(40.842335, -73.91619)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4476482,Sedan,,,, +11/09/2021,14:30,BROOKLYN,11223,40.595383,-73.97524,"(40.595383, -73.97524)",VAN SICKLEN STREET,GRAVESEND NECK ROAD,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4475783,Sedan,Bike,,, +11/03/2021,4:00,BRONX,10473,40.824028,-73.86893,"(40.824028, -73.86893)",,,951 SOUND VIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476402,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,12:15,MANHATTAN,10013,40.720318,-74.01218,"(40.720318, -74.01218)",WEST STREET,NORTH MOORE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,20:16,BROOKLYN,11221,40.692562,-73.92799,"(40.692562, -73.92799)",LAFAYETTE AVENUE,PATCHEN AVENUE,,1,0,1,0,0,0,0,0,,,,,,4476067,,,,, +11/09/2021,23:00,QUEENS,11420,40.673008,-73.81334,"(40.673008, -73.81334)",125 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4475768,Sedan,,,, +11/09/2021,9:30,,,40.709675,-73.82003,"(40.709675, -73.82003)",QUEENS BOULEVARD,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4475722,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,5:00,,,,,,WASHINGTON BRIDGE 181 ST,,,3,0,0,0,0,0,3,0,Following Too Closely,Reaction to Uninvolved Vehicle,Following Too Closely,,,4476203,Sedan,Sedan,Sedan,, +11/09/2021,19:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4476224,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/09/2021,12:13,BROOKLYN,11220,40.641327,-74.00709,"(40.641327, -74.00709)",7 AVENUE,52 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475882,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,9:25,,,,,,queens midtown expy,69 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475996,Sedan,Box Truck,,, +11/09/2021,0:00,,,40.592186,-73.9777,"(40.592186, -73.9777)",WEST 7 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4475790,Sedan,,,, +11/06/2021,15:50,STATEN ISLAND,10306,40.57468,-74.12929,"(40.57468, -74.12929)",RICHMOND ROAD,RIEDEL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476415,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/09/2021,19:25,QUEENS,11368,40.742073,-73.86591,"(40.742073, -73.86591)",,,97-01 50 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475831,Sedan,Tow Truck / Wrecker,,, +10/03/2021,19:00,,,40.801857,-73.957245,"(40.801857, -73.957245)",WEST 112 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476274,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,17:00,BRONX,10459,40.826767,-73.888855,"(40.826767, -73.888855)",EAST 167 STREET,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476129,Sedan,Bus,,, +11/06/2021,20:00,BROOKLYN,11219,40.621815,-74.00076,"(40.621815, -74.00076)",,,1439 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476349,Sedan,,,, +11/09/2021,12:30,,,40.820644,-73.93072,"(40.820644, -73.93072)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4475837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/02/2021,14:30,,,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4476342,Sedan,,,, +11/09/2021,12:00,QUEENS,11691,40.60877,-73.757805,"(40.60877, -73.757805)",GIPSON STREET,NAMEOKE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476138,Sedan,Bike,,, +11/09/2021,6:30,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475472,School Bus,Sedan,,, +11/06/2021,15:00,BRONX,10460,40.845985,-73.884476,"(40.845985, -73.884476)",SOUTHERN BOULEVARD,EAST 180 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476257,Sedan,E-Bike,,, +06/26/2021,12:24,BRONX,10451,40.822456,-73.92692,"(40.822456, -73.92692)",WALTON AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476204,Sedan,Sedan,,, +11/09/2021,0:15,,,40.77041,-73.82468,"(40.77041, -73.82468)",PARSONS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475749,Sedan,,,, +11/09/2021,10:50,BROOKLYN,11204,40.619755,-73.97892,"(40.619755, -73.97892)",21 AVENUE,57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475908,Station Wagon/Sport Utility Vehicle,Van,,, +11/09/2021,9:41,QUEENS,11105,40.77576,-73.906494,"(40.77576, -73.906494)",,,21-12 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/09/2021,13:45,,,40.771744,-73.875275,"(40.771744, -73.875275)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4475896,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,15:35,QUEENS,11101,40.748367,-73.93893,"(40.748367, -73.93893)",JACKSON AVENUE,ORCHARD STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4476230,Sedan,,,, +11/09/2021,16:20,BRONX,10466,40.888687,-73.84018,"(40.888687, -73.84018)",EAST 233 STREET,WILDER AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4476030,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,15:45,MANHATTAN,10128,40.78655,-73.95466,"(40.78655, -73.95466)",EAST 95 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475799,Bus,Sedan,,, +11/09/2021,17:59,BRONX,10451,40.814735,-73.92905,"(40.814735, -73.92905)",,,315 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476477,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,0:00,BRONX,10459,40.82186,-73.88834,"(40.82186, -73.88834)",BRUCKNER BOULEVARD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475813,Bus,Garbage or Refuse,,, +10/24/2021,4:17,BROOKLYN,11206,,,,STAGG STREET,BOGART STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4470330,Sedan,Sedan,,, +11/09/2021,20:45,STATEN ISLAND,10301,40.63863,-74.0875,"(40.63863, -74.0875)",,,405 JERSEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475984,Sedan,Sedan,,, +11/09/2021,11:56,,,40.685368,-73.9109,"(40.685368, -73.9109)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4475852,Sedan,Sedan,,, +11/09/2021,14:00,BROOKLYN,11233,40.67816,-73.91076,"(40.67816, -73.91076)",,,133 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475690,Pick-up Truck,Sedan,,, +11/09/2021,10:20,QUEENS,11377,40.740852,-73.91632,"(40.740852, -73.91632)",47 AVENUE,49 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475719,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,0:00,,,40.75998,-73.85658,"(40.75998, -73.85658)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,8:33,QUEENS,11367,40.71991,-73.809044,"(40.71991, -73.809044)",UNION TURNPIKE,PARSONS BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475604,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,11:05,BRONX,10467,40.858868,-73.86952,"(40.858868, -73.86952)",BARKER AVENUE,THWAITES PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476283,Sedan,,,, +11/09/2021,11:30,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4475858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Convertible,, +11/09/2021,16:30,QUEENS,11419,40.691357,-73.812904,"(40.691357, -73.812904)",,,133-12 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475773,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,16:20,,,,,,Father capdanno Blvd,Seaview ave,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476410,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,6:37,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4476245,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,8:00,BROOKLYN,11212,40.659176,-73.92033,"(40.659176, -73.92033)",,,9502 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476363,Sedan,,,, +11/09/2021,16:30,BRONX,10455,40.81516,-73.91774,"(40.81516, -73.91774)",BERGEN AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475694,Sedan,Bus,,, +11/09/2021,11:00,QUEENS,11365,40.73645,-73.803734,"(40.73645, -73.803734)",,,65-07 165 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475723,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/09/2021,15:40,,,40.836407,-73.94852,"(40.836407, -73.94852)",RIVERSIDE DRIVE WEST,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476001,Box Truck,Bus,,, +11/09/2021,17:20,BRONX,10460,40.84398,-73.8696,"(40.84398, -73.8696)",GARFIELD STREET,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4475928,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,14:15,,,40.759724,-73.92061,"(40.759724, -73.92061)",37 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475946,Sedan,,,, +11/09/2021,21:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476416,Carry All,,,, +11/09/2021,8:17,QUEENS,11372,40.755165,-73.8891,"(40.755165, -73.8891)",NORTHERN BOULEVARD,78 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4475599,Sedan,Motorcycle,,, +11/09/2021,9:20,BRONX,10452,40.843174,-73.91196,"(40.843174, -73.91196)",EAST MOUNT EDEN AVENUE,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475823,AMBULANCE,AMBULANCE,,, +11/07/2021,0:03,BROOKLYN,11217,40.687332,-73.9859,"(40.687332, -73.9859)",,,376 ATLANTIC AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4476461,E-Scooter,,,, +11/09/2021,3:37,QUEENS,11422,40.65736,-73.74154,"(40.65736, -73.74154)",147 AVENUE,HUXLEY STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4475634,Sedan,,,, +10/28/2021,16:05,STATEN ISLAND,10304,40.60472,-74.09109,"(40.60472, -74.09109)",,,987 TARGEE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476424,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,0:00,BROOKLYN,11203,40.658478,-73.92818,"(40.658478, -73.92818)",EAST 53 STREET,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475879,Sedan,Sedan,Sedan,, +07/07/2022,19:27,,,40.80405,-73.91737,"(40.80405, -73.91737)",MAJOR DEEGAN EXPRESSWAY,,,0,1,0,0,0,0,0,1,Traffic Control Disregarded,Unspecified,,,,4544619,Moped,Tractor Truck Diesel,,, +11/09/2021,8:10,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4475741,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,14:00,QUEENS,11369,40.760746,-73.862434,"(40.760746, -73.862434)",ASTORIA BOULEVARD,107 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475926,Dump,Sedan,,, +11/05/2021,0:23,,,40.670887,-73.93649,"(40.670887, -73.93649)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4476375,Sedan,Sedan,,, +11/09/2021,22:30,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",WEST BROADWAY,CANAL STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4475847,Station Wagon/Sport Utility Vehicle,Bike,,, +11/09/2021,14:41,STATEN ISLAND,10306,40.574497,-74.11993,"(40.574497, -74.11993)",2 STREET,ROSE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475669,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,19:19,,,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4476223,Sedan,,,, +11/09/2021,21:03,BRONX,10468,40.86923,-73.89604,"(40.86923, -73.89604)",EAST 196 STREET,JEROME AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4476184,Station Wagon/Sport Utility Vehicle,Bike,,, +11/09/2021,14:40,,,40.676304,-73.82029,"(40.676304, -73.82029)",118 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475778,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,18:45,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4475764,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,16:30,BRONX,10467,40.856323,-73.87244,"(40.856323, -73.87244)",BRONX RIVER PARKWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,Driver Inattention/Distraction,,4476007,Sedan,Sedan,Sedan,, +11/09/2021,23:40,QUEENS,11377,40.740894,-73.89961,"(40.740894, -73.89961)",QUEENS BOULEVARD,65 PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476108,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,16:38,BROOKLYN,11229,40.603096,-73.938545,"(40.603096, -73.938545)",AVENUE T,FORD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475785,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/12/2021,11:47,QUEENS,11423,40.707516,-73.76671,"(40.707516, -73.76671)",,,190-30 103 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476380,Sedan,,,, +11/09/2021,9:52,BROOKLYN,11236,40.63825,-73.91766,"(40.63825, -73.91766)",FARRAGUT ROAD,EAST 79 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4475662,Sedan,Sedan,,, +11/05/2021,17:00,,,40.67612,-73.936005,"(40.67612, -73.936005)",DEAN STREET,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4476347,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/09/2021,9:48,QUEENS,11362,40.76369,-73.72498,"(40.76369, -73.72498)",HORACE HARDING EXPRESSWAY,256 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475623,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,15:15,,,0,0,"(0.0, 0.0)",WEST 176 STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Following Too Closely,,,,4476235,Station Wagon/Sport Utility Vehicle,Moped,,, +11/09/2021,19:00,,,40.716644,-73.99582,"(40.716644, -73.99582)",BOWERY,CANAL STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4475888,Sedan,Sedan,,, +11/09/2021,15:55,BRONX,10470,40.90554,-73.84872,"(40.90554, -73.84872)",,,730 EAST 242 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475961,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,15:09,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475705,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/09/2021,21:30,MANHATTAN,10009,40.72756,-73.9794,"(40.72756, -73.9794)",,,175 AVENUE B,0,0,0,0,0,0,0,0,Unspecified,,,,,4475802,Tractor Truck Diesel,,,, +11/09/2021,20:35,BROOKLYN,11219,40.631805,-73.988304,"(40.631805, -73.988304)",15 AVENUE,50 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475913,,,,, +11/09/2021,17:39,MANHATTAN,10036,40.761555,-73.99408,"(40.761555, -73.99408)",WEST 45 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475843,Taxi,Sedan,,, +11/09/2021,8:35,BROOKLYN,11235,40.581345,-73.96283,"(40.581345, -73.96283)",NEPTUNE AVENUE,BRIGHTON 6 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4475614,Sedan,Bike,,, +11/09/2021,4:51,BRONX,10469,40.86321,-73.83707,"(40.86321, -73.83707)",,,2523 LODOVICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4475540,Sedan,Box Truck,,, +11/09/2021,19:35,,,40.754105,-73.72321,"(40.754105, -73.72321)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475744,Motorcycle,Sedan,,, +11/08/2021,17:00,BROOKLYN,11207,40.673573,-73.902084,"(40.673573, -73.902084)",LIBERTY AVENUE,SNEDIKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476317,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,18:30,MANHATTAN,10065,40.76163,-73.96051,"(40.76163, -73.96051)",,,1135 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475809,Flat Rack,,,, +11/09/2021,13:00,QUEENS,11413,40.678955,-73.74914,"(40.678955, -73.74914)",,,220-02 MERRICK BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475710,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/29/2021,16:58,QUEENS,11434,40.67091,-73.771,"(40.67091, -73.771)",140 AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476194,Sedan,Bike,,, +11/04/2021,15:30,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476216,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,8:30,QUEENS,11374,40.726463,-73.85943,"(40.726463, -73.85943)",65 ROAD,WETHEROLE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476017,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,16:15,MANHATTAN,10033,40.850086,-73.93319,"(40.850086, -73.93319)",,,1445 SAINT NICHOLAS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4476266,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,21:10,,,40.688614,-73.989174,"(40.688614, -73.989174)",,,ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475752,Station Wagon/Sport Utility Vehicle,Bus,,, +11/09/2021,0:00,BROOKLYN,11231,40.676945,-73.991875,"(40.676945, -73.991875)",BOND STREET,3 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476080,Sedan,E-Bike,,, +11/08/2021,11:00,,,40.66798,-73.893845,"(40.66798, -73.893845)",BLAKE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476314,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/09/2021,9:30,BRONX,10453,40.858513,-73.90877,"(40.858513, -73.90877)",,,2199 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,12:55,,,,,,UTICA AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476343,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/09/2021,19:05,,,40.67327,-73.9474,"(40.67327, -73.9474)",NEW YORK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476376,,,,, +11/09/2021,7:55,,,40.748913,-73.9374,"(40.748913, -73.9374)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475651,Pick-up Truck,Sedan,,, +11/09/2021,16:41,BROOKLYN,11219,40.631573,-73.99547,"(40.631573, -73.99547)",55 STREET,NEW UTRECHT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4475909,Bike,,,, +11/02/2021,7:00,BRONX,10471,40.889458,-73.89828,"(40.889458, -73.89828)",WEST 242 STREET,BROADWAY,,1,0,1,0,0,0,0,0,,,,,,4476244,,,,, +11/09/2021,19:20,MANHATTAN,10013,40.725025,-74.005905,"(40.725025, -74.005905)",DOMINICK STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475854,Sedan,Motorcycle,,, +11/09/2021,8:18,BROOKLYN,11204,40.62202,-73.98726,"(40.62202, -73.98726)",18 AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475633,Station Wagon/Sport Utility Vehicle,Bus,,, +11/09/2021,15:40,BRONX,10454,40.81042,-73.924866,"(40.81042, -73.924866)",,,262 ALEXANDER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4475695,Sedan,Sedan,,, +11/09/2021,15:00,,,,,,BOSTON ROAD,EAST 169 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4475970,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,16:50,MANHATTAN,10013,40.715527,-73.99761,"(40.715527, -73.99761)",,,2 ELIZABETH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,9:23,MANHATTAN,10021,40.771782,-73.96544,"(40.771782, -73.96544)",EAST 72 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475606,Pick-up Truck,Box Truck,,, +03/12/2021,6:41,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unsafe Lane Changing,Unspecified,Unspecified,4398540,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,Tractor Truck Diesel +08/04/2021,17:06,,,40.682114,-73.95367,"(40.682114, -73.95367)",BEDFORD AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4444736,Station Wagon/Sport Utility Vehicle,Bike,,, +08/17/2021,18:25,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4449755,Sedan,,,, +08/24/2021,0:16,,,,,,FOUNTAIN AVENUE,,,0,1,0,0,0,0,0,0,Unspecified,,,,,4450581,E-Bike,,,, +08/30/2021,15:50,,,,,,84 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4452385,Sedan,,,, +09/05/2021,12:30,QUEENS,11354,40.76941,-73.843285,"(40.76941, -73.843285)",,,124-04 31 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454019,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,23:56,,,40.716644,-73.99582,"(40.716644, -73.99582)",CANAL STREET,,,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,,,,4454245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,4:48,BRONX,10455,40.81456,-73.909615,"(40.81456, -73.909615)",,,610 TRINITY AVENUE,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4454118,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,16:10,BROOKLYN,11219,40.630337,-73.99342,"(40.630337, -73.99342)",14 AVENUE,55 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454851,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,6:30,,,40.62376,-74.14908,"(40.62376, -74.14908)",,,935 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454602,,,,, +09/04/2021,1:30,BROOKLYN,11211,40.70787,-73.95681,"(40.70787, -73.95681)",,,282 RODNEY STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454573,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,0:40,,,40.752888,-73.96374,"(40.752888, -73.96374)",FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453710,Sedan,Taxi,,, +09/05/2021,10:57,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",OCEAN AVENUE,ALBEMARLE ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4454074,Sedan,,,, +09/05/2021,7:45,BROOKLYN,11208,40.681217,-73.88211,"(40.681217, -73.88211)",SHEPHERD AVENUE,ARLINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454421,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/03/2021,16:03,STATEN ISLAND,10304,40.6094,-74.09011,"(40.6094, -74.09011)",NARROWS ROAD NORTH,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4454554,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,20:00,QUEENS,11417,40.6807,-73.84465,"(40.6807, -73.84465)",WOODHAVEN BOULEVARD,ROCKAWAY BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454688,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,17:40,,,,,,,,7 CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454756,Sedan,Sedan,,, +09/05/2021,21:02,MANHATTAN,10128,40.78263,-73.9512,"(40.78263, -73.9512)",EAST 92 STREET,3 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4454191,Taxi,Sedan,,, +09/03/2021,9:39,,,40.834644,-73.865036,"(40.834644, -73.865036)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454599,Tractor Truck Diesel,Sedan,,, +09/05/2021,21:38,BROOKLYN,11213,40.66957,-73.94539,"(40.66957, -73.94539)",,,704 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454667,Sedan,Sedan,,, +09/05/2021,15:45,BROOKLYN,11208,40.67567,-73.87008,"(40.67567, -73.87008)",CRESCENT STREET,PITKIN AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454524,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/05/2021,0:21,BROOKLYN,11212,40.656456,-73.90447,"(40.656456, -73.90447)",,,635 WATKINS STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4453774,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,17:40,QUEENS,11422,40.67138,-73.732124,"(40.67138, -73.732124)",243 STREET,135 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4453988,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,21:14,BROOKLYN,11223,40.605904,-73.9645,"(40.605904, -73.9645)",,,1765 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454252,Sedan,,,, +09/05/2021,19:00,BROOKLYN,11231,40.682377,-74.00398,"(40.682377, -74.00398)",COLUMBIA STREET,SUMMIT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454318,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,15:15,BRONX,10456,40.826874,-73.90539,"(40.826874, -73.90539)",BOSTON ROAD,CAULDWELL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4454452,E-Scooter,,,, +09/04/2021,10:23,,,40.61303,-74.131516,"(40.61303, -74.131516)",,,19 WATCHOGUE ROAD,1,0,1,0,0,0,0,0,Outside Car Distraction,,,,,4454498,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,1:00,BROOKLYN,11212,40.657482,-73.92141,"(40.657482, -73.92141)",LENOX ROAD,EAST 93 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453943,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,4:10,BROOKLYN,11234,40.599617,-73.911316,"(40.599617, -73.911316)",,,2875 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4453827,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:30,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454713,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,22:15,BROOKLYN,11236,,,,,,761 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454742,Sedan,Sedan,,, +09/05/2021,4:55,QUEENS,11373,40.74336,-73.87433,"(40.74336, -73.87433)",,,91-04 43 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454810,Taxi,,,, +04/16/2022,11:55,,,,,,JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4519395,Sedan,Sedan,,, +09/05/2021,14:45,QUEENS,11373,,,,,,54-07 JUNCTION BOULEVARD,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453896,Station Wagon/Sport Utility Vehicle,Bike,,, +09/05/2021,13:37,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4453829,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,17:05,BRONX,10474,40.822533,-73.88509,"(40.822533, -73.88509)",BRUCKNER BOULEVARD,EDGEWATER ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454625,Sedan,Pick-up Truck,,, +09/05/2021,12:00,BRONX,10460,40.840565,-73.86943,"(40.840565, -73.86943)",,,1632 VANBUREN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453969,Sedan,,,, +09/05/2021,0:48,MANHATTAN,10018,40.750893,-73.98644,"(40.750893, -73.98644)",,,38 WEST 36 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4453790,Sedan,Bike,,, +09/03/2021,7:30,,,40.553276,-74.18827,"(40.553276, -74.18827)",LEGATE AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454495,Box Truck,Sedan,,, +09/05/2021,0:35,QUEENS,11414,40.663746,-73.83642,"(40.663746, -73.83642)",,,97-16 156 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454155,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,21:35,QUEENS,11356,40.778606,-73.8452,"(40.778606, -73.8452)",123 STREET,23 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454202,Sedan,Bike,,, +09/05/2021,4:30,BROOKLYN,11208,40.67901,-73.881004,"(40.67901, -73.881004)",,,3101 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454518,Sedan,,,, +09/05/2021,21:45,BROOKLYN,11219,40.633244,-74.00278,"(40.633244, -74.00278)",,,1056 58 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454351,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,1:40,,,40.605618,-73.75666,"(40.605618, -73.75666)",GRASSMERE TERRACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454502,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,8:15,,,40.63491,-74.01017,"(40.63491, -74.01017)",8 AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4453817,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,0:00,,,40.570835,-74.16983,"(40.570835, -74.16983)",FOREST HILL ROAD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453950,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,22:35,,,40.796562,-73.974205,"(40.796562, -73.974205)",WEST 97 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454082,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,14:40,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454705,PK,Sedan,,, +09/05/2021,23:00,BROOKLYN,11210,40.631474,-73.94625,"(40.631474, -73.94625)",,,1602 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4454833,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,11:45,,,40.683342,-74.001976,"(40.683342, -74.001976)",HICKS STREET,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454317,Sedan,,,, +09/03/2021,11:07,MANHATTAN,10017,40.75337,-73.974655,"(40.75337, -73.974655)",LEXINGTON AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454566,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,13:53,BRONX,10466,40.897175,-73.849106,"(40.897175, -73.849106)",,,4348 BRUNER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4454716,Sedan,Sedan,Sedan,, +09/05/2021,11:25,QUEENS,11427,40.7389,-73.73378,"(40.7389, -73.73378)",UNION TURNPIKE,WINCHESTER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4453989,Sedan,Sedan,,, +09/05/2021,21:42,MANHATTAN,10036,40.760403,-73.98748,"(40.760403, -73.98748)",8 AVENUE,WEST 47 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4454793,Pedicab,,,, +09/05/2021,0:00,,,40.832253,-73.88453,"(40.832253, -73.88453)",SHERIDAN EXPRESSWAY,EAST 172 STREET,,4,0,0,0,0,0,4,0,Turning Improperly,Unspecified,,,,4454046,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,2:25,,,40.669865,-73.95051,"(40.669865, -73.95051)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454652,Taxi,,,, +09/05/2021,3:50,BROOKLYN,11201,40.68978,-73.98139,"(40.68978, -73.98139)",,,395 FLATBUSH AVENUE EXTENSION,0,0,0,0,0,0,0,0,Unspecified,,,,,4453837,Sedan,,,, +09/04/2021,16:27,STATEN ISLAND,10301,40.63172,-74.095924,"(40.63172, -74.095924)",FOREST AVENUE,HAVENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454552,Sedan,,,, +09/05/2021,19:25,BROOKLYN,11236,,,,FARRAGUT ROAD,EAST 99 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4454378,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +09/05/2021,14:00,,,40.58481,-73.98301,"(40.58481, -73.98301)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454479,Sedan,,,, +09/02/2021,22:20,,,40.73447,-73.86316,"(40.73447, -73.86316)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454812,Sedan,Motorcycle,,, +09/03/2021,20:38,STATEN ISLAND,10301,40.637596,-74.08009,"(40.637596, -74.08009)",,,119 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4454547,Station Wagon/Sport Utility Vehicle,Bus,,, +09/02/2021,6:32,BRONX,10467,40.880898,-73.88196,"(40.880898, -73.88196)",,,3433 DEKALB AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454614,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,17:00,QUEENS,11420,,,,ROCKAWAY BOULEVARD,131 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454143,Sedan,Sedan,,, +09/03/2021,13:30,QUEENS,11691,40.602436,-73.75763,"(40.602436, -73.75763)",,,1016 GRASSMERE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454577,Sedan,,,, +09/05/2021,21:30,QUEENS,11370,40.757977,-73.88297,"(40.757977, -73.88297)",85 STREET,32 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454196,Sedan,,,, +09/05/2021,9:00,BROOKLYN,11218,40.642376,-73.97818,"(40.642376, -73.97818)",,,356 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454064,Sedan,,,, +09/05/2021,9:25,,,40.63757,-74.01457,"(40.63757, -74.01457)",6 AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454281,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/01/2021,10:20,BROOKLYN,11231,40.68079,-73.99174,"(40.68079, -73.99174)",UNION STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454701,Sedan,Sedan,,, +09/05/2021,20:16,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",FRANCIS LEWIS BOULEVARD,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4453995,Moped,,,, +08/31/2021,0:42,MANHATTAN,10022,40.759785,-73.976295,"(40.759785, -73.976295)",EAST 52 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454558,Station Wagon/Sport Utility Vehicle,Bike,,, +09/02/2021,8:08,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454723,Sedan,Sedan,,, +09/05/2021,19:34,QUEENS,11413,40.66608,-73.76364,"(40.66608, -73.76364)",,,144-38 181 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454222,Station Wagon/Sport Utility Vehicle,Trailer,,, +09/05/2021,10:14,BROOKLYN,11230,40.632572,-73.96862,"(40.632572, -73.96862)",,,720 EAST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454075,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,22:15,,,40.715427,-73.72918,"(40.715427, -73.72918)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4454224,Sedan,Sedan,Sedan,, +09/05/2021,23:21,BROOKLYN,11224,40.57686,-73.98266,"(40.57686, -73.98266)",WEST 15 STREET,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4454165,Sedan,Sedan,,, +09/05/2021,19:29,QUEENS,11691,40.593376,-73.778984,"(40.593376, -73.778984)",,,48-06 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454585,Sedan,Sedan,,, +09/05/2021,1:35,QUEENS,11377,40.74376,-73.90003,"(40.74376, -73.90003)",65 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453715,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/05/2021,10:20,BROOKLYN,11230,40.616238,-73.96357,"(40.616238, -73.96357)",CONEY ISLAND AVENUE,RODER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454659,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,18:23,QUEENS,11355,40.760532,-73.82156,"(40.760532, -73.82156)",41 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454777,Sedan,,,, +09/05/2021,4:33,BROOKLYN,11208,40.678867,-73.87087,"(40.678867, -73.87087)",CRESCENT STREET,HILL STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454539,E-Bike,,,, +09/01/2021,13:42,,,40.768936,-73.834335,"(40.768936, -73.834335)",STRATTON STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454755,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,7:36,,,40.741734,-73.7283,"(40.741734, -73.7283)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454722,Sedan,Sedan,,, +09/03/2021,21:04,BROOKLYN,11249,40.713043,-73.96753,"(40.713043, -73.96753)",,,337 KENT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454572,Sedan,Sedan,,, +09/05/2021,0:25,BROOKLYN,11238,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,FULTON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4453735,Bus,Motorcycle,,, +09/04/2021,0:28,,,40.752975,-73.91024,"(40.752975, -73.91024)",WOODSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454601,Station Wagon/Sport Utility Vehicle,Bike,,, +09/05/2021,16:05,,,40.660217,-73.72807,"(40.660217, -73.72807)",HOOK CREEK BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453994,Sedan,Sedan,,, +09/05/2021,9:23,QUEENS,11420,40.67696,-73.81759,"(40.67696, -73.81759)",,,115-25 121 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454169,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,9:57,BROOKLYN,11203,40.658295,-73.93109,"(40.658295, -73.93109)",UTICA AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4454670,Sedan,Sedan,,, +09/05/2021,20:30,BROOKLYN,11238,,,,,,283 GREENE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454065,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,22:12,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,1,0,0,0,1,0,0,0,Unspecified,,,,,4476269,Bike,,,, +09/05/2021,1:32,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4454523,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,4:30,MANHATTAN,10036,40.76126,-73.99428,"(40.76126, -73.99428)",,,626B 10 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4454557,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,2:33,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",EAST 134 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454124,Sedan,,,, +09/02/2021,12:30,BROOKLYN,11219,40.62923,-73.996124,"(40.62923, -73.996124)",NEW UTRECHT AVENUE,58 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4454852,Sedan,Bike,,, +09/05/2021,4:50,BROOKLYN,11203,40.66169,-73.93144,"(40.66169, -73.93144)",,,483 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454743,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/30/2021,20:00,BROOKLYN,11235,,,,BRIGHTON 1 STREET,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454651,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,12:29,BROOKLYN,11222,40.721085,-73.94092,"(40.721085, -73.94092)",,,131 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453835,Sedan,,,, +09/05/2021,8:58,BROOKLYN,11236,40.641945,-73.916626,"(40.641945, -73.916626)",FOSTER AVENUE,EAST 83 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4453898,Sedan,Sedan,,, +09/05/2021,15:46,BROOKLYN,11236,40.643482,-73.90958,"(40.643482, -73.90958)",,,1043 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454372,Sedan,,,, +09/05/2021,20:00,,,,,,BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454737,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,7:00,,,40.77861,-73.84249,"(40.77861, -73.84249)",126 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454020,Sedan,,,, +08/27/2021,13:30,QUEENS,11691,40.602222,-73.75806,"(40.602222, -73.75806)",,,23-11 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454514,Sedan,Bike,,, +08/27/2021,14:00,QUEENS,11432,40.707333,-73.800545,"(40.707333, -73.800545)",,,88-47 161 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454687,Sedan,Box Truck,,, +09/05/2021,5:24,BROOKLYN,11209,40.612556,-74.0361,"(40.612556, -74.0361)",SHORE ROAD,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453818,Sedan,,,, +09/05/2021,11:52,,,40.718143,-73.993835,"(40.718143, -73.993835)",CHRYSTIE STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454242,Bike,,,, +09/05/2021,17:30,BROOKLYN,11233,40.669476,-73.919975,"(40.669476, -73.919975)",HOWARD AVENUE,EASTERN PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454399,Sedan,,,, +09/05/2021,0:08,,,40.774612,-73.92399,"(40.774612, -73.92399)",HOYT AVENUE SOUTH,21 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453887,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,19:35,BROOKLYN,11215,40.672855,-73.97993,"(40.672855, -73.97993)",6 AVENUE,1 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454081,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,0:20,MANHATTAN,10036,40.761555,-73.99408,"(40.761555, -73.99408)",WEST 45 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4454567,Sedan,Van,,, +09/03/2021,17:45,,,40.881073,-73.878494,"(40.881073, -73.878494)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454612,Station Wagon/Sport Utility Vehicle,Bus,,, +09/02/2021,8:00,QUEENS,11691,40.61267,-73.76628,"(40.61267, -73.76628)",DUNBAR STREET,BAYWATER COURT,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454519,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,12:00,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4454007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/05/2021,5:40,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4454101,Sedan,Sedan,,, +09/03/2021,10:00,MANHATTAN,10065,40.763836,-73.96039,"(40.763836, -73.96039)",,,352 EAST 65 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454842,Station Wagon/Sport Utility Vehicle,Bulk Agriculture,,, +09/04/2021,8:00,,,40.61913,-73.99019,"(40.61913, -73.99019)",65 STREET,,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4454831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,20:44,BROOKLYN,11231,40.67843,-74.00893,"(40.67843, -74.00893)",RICHARDS STREET,VISITATION PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454706,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/05/2021,23:00,STATEN ISLAND,10304,40.624256,-74.080696,"(40.624256, -74.080696)",,,171 BROAD STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454562,Sedan,Bike,,, +08/30/2021,0:05,QUEENS,11426,40.74266,-73.72108,"(40.74266, -73.72108)",249 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454794,Convertible,,,, +09/05/2021,19:35,BROOKLYN,11220,40.637196,-74.00779,"(40.637196, -74.00779)",57 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454350,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,5:38,,,,,,MEEKER AVENUE,MC GUINNESS BLVD SOUTH,,1,0,0,0,0,0,1,0,Brakes Defective,Other Vehicular,,,,4453769,Sedan,Sedan,,, +09/01/2021,19:30,,,40.59514,-73.754,"(40.59514, -73.754)",BEACH 20 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454501,Sedan,,,, +09/05/2021,9:20,BRONX,10461,40.85278,-73.853294,"(40.85278, -73.853294)",,,1916 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453970,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,1:05,BROOKLYN,11207,40.6732,-73.88709,"(40.6732, -73.88709)",,,2311 PITKIN AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4454420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,11:30,BROOKLYN,11235,40.59137,-73.94014,"(40.59137, -73.94014)",,,3779 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4454248,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,17:00,QUEENS,11418,40.705627,-73.83785,"(40.705627, -73.83785)",PARK LANE SOUTH,MAYFAIR ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454151,Sedan,,,, +08/27/2021,1:33,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454841,Sedan,Sedan,,, +09/05/2021,9:30,BRONX,10455,40.816307,-73.897545,"(40.816307, -73.897545)",,,784 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454623,Sedan,Sedan,,, +09/05/2021,16:22,BRONX,10457,,,,,,1758 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454200,Sedan,Sedan,,, +09/05/2021,11:35,BROOKLYN,11206,40.708168,-73.95067,"(40.708168, -73.95067)",UNION AVENUE,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4454563,Sedan,Sedan,Sedan,Sedan, +08/13/2021,23:17,QUEENS,11419,40.68727,-73.827385,"(40.68727, -73.827385)",,,116-004 103 AVENUE,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4446695,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/05/2021,13:00,,,40.606327,-73.99647,"(40.606327, -73.99647)",20 AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454040,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,19:30,BROOKLYN,11207,40.677357,-73.88687,"(40.677357, -73.88687)",ATLANTIC AVENUE,WARWICK STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4454515,Sedan,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/05/2021,4:00,MANHATTAN,10036,40.759933,-73.991554,"(40.759933, -73.991554)",,,627 9 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4454548,Sedan,,,, +09/05/2021,5:05,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",EAST 167 STREET,JEROME AVENUE,,1,0,1,0,0,0,0,0,,,,,,4454098,,,,, +09/05/2021,23:00,BRONX,10459,40.83091,-73.8987,"(40.83091, -73.8987)",,,1272 UNION AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454448,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,6:00,,,40.721523,-73.941795,"(40.721523, -73.941795)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453789,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,1:11,BRONX,10453,40.85038,-73.90699,"(40.85038, -73.90699)",EAST TREMONT AVENUE,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454215,Sedan,,,, +09/05/2021,7:50,BRONX,10466,40.89492,-73.85314,"(40.89492, -73.85314)",BRONXWOOD AVENUE,PITMAN AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4453933,Sedan,Sedan,,, +09/05/2021,3:30,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4454228,Sedan,Sedan,,, +09/05/2021,0:20,,,40.677822,-73.91636,"(40.677822, -73.91636)",SARATOGA AVENUE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4454027,,,,, +09/05/2021,21:20,,,,,,,,91 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454209,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/25/2021,22:12,QUEENS,11414,40.657497,-73.83947,"(40.657497, -73.83947)",CROSS BAY BOULEVARD,160 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4450593,Sedan,Sedan,,, +09/05/2021,19:05,,,40.76234,-73.98236,"(40.76234, -73.98236)",7 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454576,Station Wagon/Sport Utility Vehicle,PEDI CAB,,, +09/05/2021,1:35,QUEENS,11419,40.687717,-73.81915,"(40.687717, -73.81915)",,,104-52 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454135,Sedan,Sedan,,, +09/03/2021,16:36,BRONX,10467,40.864067,-73.86545,"(40.864067, -73.86545)",,,2562 HOLLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454586,Sedan,,,, +09/05/2021,0:38,QUEENS,11411,40.688885,-73.73833,"(40.688885, -73.73833)",225 STREET,120 AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4453726,Sedan,Sedan,,, +09/05/2021,13:00,BROOKLYN,11218,40.643456,-73.972725,"(40.643456, -73.972725)",EAST 7 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454660,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/05/2021,0:12,BROOKLYN,11208,40.68578,-73.88132,"(40.68578, -73.88132)",JAMAICA AVENUE,HALE AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454538,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/05/2021,2:00,BROOKLYN,11206,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4454775,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,20:10,,,40.59084,-73.797935,"(40.59084, -73.797935)",BEACH 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454738,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,9:00,BROOKLYN,11207,40.65613,-73.886894,"(40.65613, -73.886894)",,,155 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454411,Sedan,,,, +09/05/2021,13:50,STATEN ISLAND,10301,40.636024,-74.08719,"(40.636024, -74.08719)",,,51 PINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4453884,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/05/2021,7:05,QUEENS,11105,40.777004,-73.91661,"(40.777004, -73.91661)",23 AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453888,Sedan,,,, +09/05/2021,14:35,BRONX,10451,40.82219,-73.9145,"(40.82219, -73.9145)",,,404 EAST 158 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4454288,Taxi,E-Bike,,, +09/03/2021,17:49,BROOKLYN,11230,40.617004,-73.96912,"(40.617004, -73.96912)",AVENUE M,OCEAN PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4454658,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,4:00,BROOKLYN,11203,40.65063,-73.94666,"(40.65063, -73.94666)",,,922 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453948,Sedan,Sedan,,, +09/05/2021,14:15,BROOKLYN,11236,40.631935,-73.91321,"(40.631935, -73.91321)",PAERDEGAT AVENUE NORTH,PAERDEGAT 1 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4454375,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/21/2021,18:00,BRONX,10469,40.87969,-73.85527,"(40.87969, -73.85527)",,,3727 PAULDING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454698,Sedan,,,, +09/05/2021,16:09,BRONX,10469,40.876926,-73.85679,"(40.876926, -73.85679)",EAST 213 STREET,PAULDING AVENUE,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4454000,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +08/28/2021,22:55,,,40.602535,-73.99321,"(40.602535, -73.99321)",85 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454489,Sedan,,,, +09/04/2021,14:50,,,40.58833,-73.80431,"(40.58833, -73.80431)",ROCKAWAY BEACH BOULEVARD,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inexperience,,,,4454736,Sedan,E-Bike,,, +09/05/2021,10:01,MANHATTAN,10026,40.805725,-73.95442,"(40.805725, -73.95442)",WEST 118 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453806,Sedan,Bike,,, +09/05/2021,15:29,BRONX,10453,40.857327,-73.904526,"(40.857327, -73.904526)",JEROME AVENUE,EAST 182 STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4454301,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,1:25,,,40.670208,-73.79156,"(40.670208, -73.79156)",147 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454463,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,21:30,BRONX,10457,,,,WALTON AVENUE,EAST 174 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454512,Taxi,,,, +09/05/2021,2:00,BROOKLYN,11234,40.6073,-73.919716,"(40.6073, -73.919716)",FLATBUSH AVENUE,HENDRICKSON PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4453824,Sedan,Sedan,Sedan,, +09/05/2021,3:09,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",KINGS HIGHWAY,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4453947,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/05/2021,2:00,BRONX,10453,40.8574,-73.90567,"(40.8574, -73.90567)",DAVIDSON AVENUE,WEST 182 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4454709,Sedan,,,, +08/13/2021,5:50,,,40.69231,-73.88147,"(40.69231, -73.88147)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4454718,Motorcycle,,,, +09/05/2021,7:00,QUEENS,11413,40.66549,-73.75236,"(40.66549, -73.75236)",SOUTH CONDUIT AVENUE,225 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4453992,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/05/2021,3:00,BRONX,10458,40.854973,-73.89251,"(40.854973, -73.89251)",EAST 183 STREET,BASSFORD AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4454180,Sedan,Sedan,,, +09/03/2021,18:20,,,,,,BROOKLYN QUEENS EXPRESSWAY,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454702,Sedan,,,, +09/05/2021,0:00,BRONX,10452,40.843452,-73.92471,"(40.843452, -73.92471)",,,1425 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454528,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,12:00,QUEENS,11411,40.695408,-73.74101,"(40.695408, -73.74101)",219 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454649,Sedan,,,, +09/05/2021,11:20,BROOKLYN,11228,40.620735,-74.01582,"(40.620735, -74.01582)",,,1054 80 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4453833,Sedan,Sedan,,, +09/05/2021,20:15,QUEENS,11354,40.75895,-73.83192,"(40.75895, -73.83192)",ROOSEVELT AVENUE,PRINCE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454021,Sedan,Sedan,,, +09/05/2021,1:00,BROOKLYN,11222,40.72499,-73.936554,"(40.72499, -73.936554)",,,810 MEEKER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4453786,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,14:30,BRONX,10460,40.839676,-73.871216,"(40.839676, -73.871216)",EAST TREMONT AVENUE,VANNEST AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453971,Sedan,,,, +09/01/2021,8:15,BROOKLYN,11212,40.658302,-73.90104,"(40.658302, -73.90104)",NEW LOTS AVENUE,POWELL STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454784,Convertible,,,, +09/05/2021,11:00,BRONX,10468,40.8692,-73.89456,"(40.8692, -73.89456)",,,2763 MORRIS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4454261,Sedan,,,, +09/05/2021,8:58,,,40.79611,-73.96145,"(40.79611, -73.96145)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4453956,E-Scooter,,,, +09/05/2021,14:53,BROOKLYN,11219,,,,,,1217 49 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4454853,Station Wagon/Sport Utility Vehicle,Bike,,, +09/04/2021,19:25,MANHATTAN,10036,40.76278,-73.991196,"(40.76278, -73.991196)",,,444 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454575,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,9:10,BROOKLYN,11210,40.635506,-73.956245,"(40.635506, -73.956245)",FARRAGUT ROAD,EAST 22 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454490,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/05/2021,21:30,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4454068,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,12:20,QUEENS,11364,40.75059,-73.77812,"(40.75059, -73.77812)",50 AVENUE,201 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454365,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,18:40,,,40.625805,-74.15509,"(40.625805, -74.15509)",,,1976 FOREST AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454500,Sedan,Van,,, +09/05/2021,8:50,BROOKLYN,11208,40.681587,-73.8794,"(40.681587, -73.8794)",,,3134 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454429,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,15:00,,,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454161,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,12:10,STATEN ISLAND,10310,40.637985,-74.10955,"(40.637985, -74.10955)",HENDERSON AVENUE,DAVIS AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4454556,Sedan,Sedan,Sedan,Sedan, +08/29/2021,2:00,BRONX,10452,40.8347,-73.91827,"(40.8347, -73.91827)",EAST 167 STREET,GRAND VIEW PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454683,Sedan,Sedan,,, +09/05/2021,10:15,,,40.830154,-73.93964,"(40.830154, -73.93964)",WEST 155 STREET,EDGECOMBE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454058,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,10:00,MANHATTAN,10019,40.769394,-73.98521,"(40.769394, -73.98521)",,,400 WEST 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454568,Pick-up Truck,,,, +09/05/2021,12:20,BROOKLYN,11214,40.609196,-73.99823,"(40.609196, -73.99823)",,,1868 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454038,Sedan,,,, +09/05/2021,3:00,BROOKLYN,11203,40.65783,-73.93883,"(40.65783, -73.93883)",,,647 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4453738,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/05/2021,23:45,,,,,,HENRY HUDSON PARKWAY RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4454591,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +08/13/2021,22:55,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4454795,Motorbike,,,, +09/05/2021,2:00,BROOKLYN,11236,40.643482,-73.90958,"(40.643482, -73.90958)",,,1043 REMSEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4453904,Sedan,Sedan,Sedan,, +09/05/2021,16:13,QUEENS,11435,40.68683,-73.79996,"(40.68683, -73.79996)",145 STREET,111 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4454105,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/05/2021,11:50,BROOKLYN,11203,40.647476,-73.94343,"(40.647476, -73.94343)",,,1044 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454745,Sedan,,,, +08/31/2021,18:01,STATEN ISLAND,10304,40.622463,-74.07254,"(40.622463, -74.07254)",BAY STREET,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4454672,Sedan,Bike,,, +09/01/2021,9:00,,,40.690285,-73.95433,"(40.690285, -73.95433)",SPENCER COURT,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454542,Sedan,Bike,,, +09/05/2021,18:30,,,40.66496,-73.82226,"(40.66496, -73.82226)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454130,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:43,MANHATTAN,10032,40.831566,-73.942986,"(40.831566, -73.942986)",WEST 155 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454820,Motorscooter,,,, +09/05/2021,2:25,BROOKLYN,11235,40.58345,-73.95039,"(40.58345, -73.95039)",EMMONS AVENUE,SHEEPSHEAD BAY ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454247,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,14:00,,,40.69635,-73.94071,"(40.69635, -73.94071)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454549,Sedan,,,, +09/05/2021,21:50,BRONX,10466,40.88478,-73.853615,"(40.88478, -73.853615)",,,956 EAST 224 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4454077,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/05/2021,0:00,,,40.75548,-73.76815,"(40.75548, -73.76815)",213 STREET,48 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454011,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/04/2021,21:03,BROOKLYN,11206,40.700592,-73.950294,"(40.700592, -73.950294)",UNION AVENUE,WALLABOUT STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454581,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/23/2021,13:45,,,,,,3 AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454606,Sedan,Sedan,,, +09/05/2021,18:00,BROOKLYN,11204,40.61402,-73.98009,"(40.61402, -73.98009)",,,2225 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454330,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,17:34,BROOKLYN,11239,40.65256,-73.876686,"(40.65256, -73.876686)",,,550 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454520,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,4:36,MANHATTAN,10030,40.81909,-73.94093,"(40.81909, -73.94093)",7 AVENUE,WEST 141 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454149,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,11:00,BROOKLYN,11226,40.65144,-73.959,"(40.65144, -73.959)",,,858A FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454844,Sedan,,,, +09/05/2021,17:55,,,40.598392,-73.90629,"(40.598392, -73.90629)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454217,Station Wagon/Sport Utility Vehicle,Taxi,,, +08/30/2021,16:05,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454691,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/19/2021,10:00,,,40.68837,-73.944916,"(40.68837, -73.944916)",LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4454560,Sedan,,,, +09/04/2021,18:15,QUEENS,11423,40.713093,-73.78047,"(40.713093, -73.78047)",,,88-15 182 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454753,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,9:40,,,40.802074,-73.93407,"(40.802074, -73.93407)",2 AVENUE,EAST 124 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4454229,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,14:30,QUEENS,11692,40.58875,-73.8044,"(40.58875, -73.8044)",,,215 BEACH 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454739,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,18:00,,,40.688774,-73.9479,"(40.688774, -73.9479)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454564,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,4:33,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453727,Sedan,,,, +09/03/2021,11:12,BROOKLYN,11230,40.616756,-73.97142,"(40.616756, -73.97142)",AVENUE M,EAST 4 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454661,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,11:00,BROOKLYN,11211,40.71161,-73.95754,"(40.71161, -73.95754)",SOUTH 2 STREET,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454582,Sedan,Sedan,,, +07/07/2022,5:42,MANHATTAN,10031,40.82451,-73.95186,"(40.82451, -73.95186)",BROADWAY,WEST 142 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544473,Station Wagon/Sport Utility Vehicle,Bike,,, +09/05/2021,10:08,BROOKLYN,11207,40.666714,-73.89351,"(40.666714, -73.89351)",,,521 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454412,Sedan,,,, +09/05/2021,13:50,QUEENS,11105,,,,DITMARS BOULEVARD,46 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4453890,LIMO,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,13:38,BROOKLYN,11236,40.63978,-73.899254,"(40.63978, -73.899254)",,,1302 EAST 95 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4454376,Sedan,Sedan,Sedan,Sedan, +09/04/2021,11:05,BRONX,10467,40.868557,-73.870514,"(40.868557, -73.870514)",,,2910 BRONX PARK EAST,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4454622,Sedan,,,, +08/29/2021,1:20,QUEENS,11691,40.59407,-73.77281,"(40.59407, -73.77281)",ROCKAWAY BEACH BOULEVARD,BEACH 41 STREET,,0,0,0,0,0,0,0,0,,,,,,4454544,Sedan,,,, +09/05/2021,5:00,QUEENS,11419,40.692192,-73.83459,"(40.692192, -73.83459)",,,111-16 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4454160,Taxi,Sedan,,, +09/05/2021,14:55,BRONX,10460,40.844593,-73.88167,"(40.844593, -73.88167)",EAST 180 STREET,DALY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4454199,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/04/2021,18:30,BROOKLYN,11239,40.653835,-73.87775,"(40.653835, -73.87775)",,,129 GATEWAY DRIVE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454516,E-Scooter,,,, +09/05/2021,17:45,MANHATTAN,10001,40.75265,-73.994545,"(40.75265, -73.994545)",,,333 WEST 34 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454264,Sedan,Sedan,,, +09/05/2021,2:59,,,40.609844,-74.16152,"(40.609844, -74.16152)",,,12 DANNY COURT,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4453953,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,17:20,,,,,,,,985 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453997,Sedan,,,, +09/02/2021,17:05,QUEENS,11361,,,,NORTHERN BOULEVARD,223 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454734,Sedan,Armored Truck,,, +09/05/2021,7:05,,,40.801155,-73.959656,"(40.801155, -73.959656)",WEST 110 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4453810,Pick-up Truck,Bike,,, +09/03/2021,8:40,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454703,Tractor Truck Gasoline,Tractor Truck Gasoline,,, +09/05/2021,4:00,BRONX,10458,40.86074,-73.895386,"(40.86074, -73.895386)",EAST 188 STREET,TIEBOUT AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454302,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,22:48,,,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454095,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,1:50,,,40.83846,-73.90175,"(40.83846, -73.90175)",BATHGATE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454837,Sedan,Motorscooter,,, +08/12/2021,10:35,,,40.57957,-73.96221,"(40.57957, -73.96221)",BRIGHTON 6 STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4454655,Bike,,,, +09/03/2021,10:00,MANHATTAN,10029,40.79726,-73.94053,"(40.79726, -73.94053)",3 AVENUE,EAST 115 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454774,Sedan,,,, +09/05/2021,15:35,MANHATTAN,10025,40.795383,-73.97351,"(40.795383, -73.97351)",,,303 WEST 96 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4453966,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,3:29,,,40.769062,-73.8369,"(40.769062, -73.8369)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Animals Action,,,,,4454017,Sedan,,,, +08/29/2021,22:45,BROOKLYN,11208,40.683346,-73.88651,"(40.683346, -73.88651)",JAMAICA AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4454521,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +09/05/2021,14:50,,,,,,WEST STREET,BROOKLYN BATTERY TUNNEL,,0,0,0,0,0,0,0,0,Following Too Closely,Traffic Control Disregarded,,,,4454465,Sedan,Sedan,,, +09/04/2021,12:30,QUEENS,11691,40.603027,-73.74775,"(40.603027, -73.74775)",,,13-01 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454492,Sedan,,,, +09/02/2021,17:19,BROOKLYN,11218,,,,EAST 3 STREET,CATON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454849,Sedan,Tractor Truck Gasoline,,, +09/05/2021,7:10,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4453803,Convertible,Sedan,,, +09/05/2021,18:45,BRONX,10467,40.861275,-73.86366,"(40.861275, -73.86366)",BARNES AVENUE,WARING AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4454208,Sedan,Pick-up Truck,,, +09/05/2021,4:42,,,40.69733,-73.78456,"(40.69733, -73.78456)",MERRICK BOULEVARD,109 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453842,Sedan,,,, +09/04/2021,18:00,BROOKLYN,11222,40.732388,-73.943726,"(40.732388, -73.943726)",GREENPOINT AVENUE,MONITOR STREET,,4,0,0,0,0,0,4,0,Outside Car Distraction,Unspecified,,,,4454866,Sedan,Sedan,,, +07/01/2022,9:10,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4544520,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,2:56,BROOKLYN,11224,40.573013,-73.993835,"(40.573013, -73.993835)",SURF AVENUE,WEST 28 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4453775,Motorcycle,Sedan,,, +09/05/2021,19:10,,,40.610493,-74.16485,"(40.610493, -74.16485)",MERRILL AVENUE,ARLENE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454022,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/05/2021,11:39,,,40.68378,-73.789734,"(40.68378, -73.789734)",155 STREET,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4454460,Sedan,Sedan,,, +08/27/2021,20:34,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,111 STREET,,2,0,0,0,0,0,2,0,Driver Inexperience,Glare,,,,4454786,Motorbike,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,14:10,,,40.60646,-73.9517,"(40.60646, -73.9517)",AVENUE R,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454257,Sedan,Sedan,,, +09/05/2021,10:28,BROOKLYN,11203,,,,,,134 EAST 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4453945,Sedan,,,, +09/04/2021,5:37,,,40.644688,-74.003586,"(40.644688, -74.003586)",7 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454605,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +09/05/2021,11:30,BROOKLYN,11206,,,,BUSHWICK AVENUE,SCHOLES STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454570,Sedan,E-Scooter,,, +09/05/2021,5:00,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BREWER BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4454106,Sedan,,,, +09/05/2021,19:50,BROOKLYN,11210,40.6146,-73.94943,"(40.6146, -73.94943)",,,3608 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454073,Sedan,Bike,,, +09/05/2021,21:00,BROOKLYN,11208,40.67579,-73.878365,"(40.67579, -73.878365)",GLENMORE AVENUE,MONTAUK AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4454525,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,19:10,,,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454555,Van,,,, +09/05/2021,4:30,QUEENS,11420,40.67629,-73.82203,"(40.67629, -73.82203)",,,115-22 116 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4454134,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +09/03/2021,21:25,MANHATTAN,10032,40.832764,-73.94583,"(40.832764, -73.94583)",WEST 155 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454807,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,4:00,BRONX,10475,40.886665,-73.82612,"(40.886665, -73.82612)",PEARTREE AVENUE,BOSTON ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4453912,Sedan,,,, +09/03/2021,9:00,BROOKLYN,11203,40.653088,-73.94211,"(40.653088, -73.94211)",EAST 38 STREET,LINDEN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454747,Station Wagon/Sport Utility Vehicle,Bike,,, +09/05/2021,4:30,QUEENS,11429,40.708263,-73.73025,"(40.708263, -73.73025)",,,225-27 107 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453831,Pick-up Truck,,,, +09/03/2021,19:45,STATEN ISLAND,10304,40.594048,-74.099495,"(40.594048, -74.099495)",DELAWARE AVENUE,RICHMOND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454636,Sedan,,,, +09/05/2021,11:30,,,40.695023,-73.98885,"(40.695023, -73.98885)",ADAMS STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454354,Station Wagon/Sport Utility Vehicle,,,, +08/23/2021,15:30,,,40.57397,-74.16992,"(40.57397, -74.16992)",RICHMOND AVENUE,INDEPENDENCE AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4454499,Bus,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,15:34,MANHATTAN,10025,40.797813,-73.971344,"(40.797813, -73.971344)",WEST 100 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4453987,Sedan,,,, +09/05/2021,16:20,QUEENS,11421,40.694782,-73.85258,"(40.694782, -73.85258)",WOODHAVEN BOULEVARD,86 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454162,Motorcycle,,,, +09/05/2021,21:45,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454423,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,23:30,BROOKLYN,11224,40.57557,-73.981224,"(40.57557, -73.981224)",STILLWELL AVENUE,SURF AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454246,Sedan,,,, +09/05/2021,0:00,BROOKLYN,11234,40.60143,-73.91334,"(40.60143, -73.91334)",,,2777 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453826,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,2:00,BROOKLYN,11203,40.63992,-73.93207,"(40.63992, -73.93207)",,,1338 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4453756,Convertible,Sedan,,, +09/05/2021,19:55,BROOKLYN,11210,40.632313,-73.93703,"(40.632313, -73.93703)",ALBANY AVENUE,AVENUE H,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454031,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,6:40,BRONX,10466,40.884167,-73.85251,"(40.884167, -73.85251)",,,3942 PAULDING AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4454717,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/05/2021,12:53,MANHATTAN,10065,40.76552,-73.97211,"(40.76552, -73.97211)",EAST 61 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4454190,Sedan,,,, +09/05/2021,17:00,QUEENS,11413,40.6688,-73.742805,"(40.6688, -73.742805)",139 AVENUE,231 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4453990,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,21:30,QUEENS,11691,40.60864,-73.75712,"(40.60864, -73.75712)",,,22-81 NAMEOKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454574,Sedan,,,, +08/24/2021,18:00,,,40.610935,-74.14307,"(40.610935, -74.14307)",VICTORY BOULEVARD,CRYSTAL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4454592,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/04/2021,19:45,,,40.67989,-73.94034,"(40.67989, -73.94034)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454541,Taxi,Sedan,,, +09/05/2021,21:21,BRONX,10458,,,,,,311 Bedford park boulevard,0,0,0,0,0,0,0,0,Unspecified,,,,,4454679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,20:20,,,40.685947,-73.95943,"(40.685947, -73.95943)",CLASSON AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454060,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,13:20,MANHATTAN,10019,40.768692,-73.98886,"(40.768692, -73.98886)",,,858 10 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454550,Sedan,Box Truck,,, +09/04/2021,19:10,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",GRAND CONCOURSE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454712,Taxi,,,, +07/06/2022,17:12,,,40.686928,-73.98484,"(40.686928, -73.98484)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544019,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,0:00,,,40.59087,-73.801285,"(40.59087, -73.801285)",BEACH CHANNEL DRIVE,BEACH 73 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454740,Sedan,E-Bike,,, +09/03/2021,12:58,BROOKLYN,11225,40.660297,-73.947685,"(40.660297, -73.947685)",MIDWOOD STREET,NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454792,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,4:58,QUEENS,11372,40.74908,-73.870125,"(40.74908, -73.870125)",,,95-50 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453895,Sedan,,,, +09/05/2021,15:42,BROOKLYN,11207,40.66841,-73.90167,"(40.66841, -73.90167)",SUTTER AVENUE,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454413,Bus,Sedan,,, +09/04/2021,22:27,,,40.659496,-73.96056,"(40.659496, -73.96056)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454653,Sedan,,,, +09/05/2021,2:45,BRONX,10463,40.871567,-73.90647,"(40.871567, -73.90647)",,,2698 BAILEY AVENUE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4454274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/05/2021,4:00,QUEENS,11423,40.7082,-73.7669,"(40.7082, -73.7669)",102 AVENUE,191 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4453841,Sedan,Sedan,,, +09/05/2021,12:28,BRONX,10462,40.847363,-73.8579,"(40.847363, -73.8579)",MORRIS PARK AVENUE,BOGART AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4453968,Sedan,,,, +09/02/2021,22:30,,,,,,GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4454508,Sedan,Sedan,Sedan,, +08/27/2021,16:30,QUEENS,11691,40.605553,-73.74734,"(40.605553, -73.74734)",,,11-17 BEACH 12 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454493,E-Bike,,,, +09/05/2021,0:50,BROOKLYN,11232,40.655987,-74.002686,"(40.655987, -74.002686)",33 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4453811,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,12:39,STATEN ISLAND,10301,40.602135,-74.114876,"(40.602135, -74.114876)",OCEAN TERRACE,TODT HILL ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454681,Sedan,Sedan,,, +08/28/2021,20:50,QUEENS,11432,40.706257,-73.80033,"(40.706257, -73.80033)",,,160-11 89 AVENUE,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454752,Bike,,,, +08/31/2021,8:45,,,40.681633,-73.95133,"(40.681633, -73.95133)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454546,Garbage or Refuse,Box Truck,,, +09/05/2021,12:45,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454836,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,1:14,QUEENS,11418,40.702286,-73.82796,"(40.702286, -73.82796)",HILLSIDE AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4454148,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +08/29/2021,16:12,STATEN ISLAND,10305,40.596733,-74.07045,"(40.596733, -74.07045)",SAND LANE,MCCLEAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4454578,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,0:40,BROOKLYN,11206,40.703762,-73.94262,"(40.703762, -73.94262)",MOORE STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454583,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,5:15,QUEENS,11413,40.67574,-73.739365,"(40.67574, -73.739365)",,,231-02 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4453728,Sedan,Sedan,,, +09/05/2021,2:35,BROOKLYN,11236,40.64456,-73.91995,"(40.64456, -73.91995)",,,1350 RALPH AVENUE,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4454731,Sedan,Sedan,,, +09/05/2021,13:30,,,40.78959,-73.81954,"(40.78959, -73.81954)",CROSS ISLAND PARKWAY,147 STREET,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4454203,Sedan,,,, +09/05/2021,13:57,BRONX,10465,40.82713,-73.824455,"(40.82713, -73.824455)",,,759 REVERE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4454239,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,15:55,BROOKLYN,11213,40.664223,-73.93157,"(40.664223, -73.93157)",,,414 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454666,Sedan,,,, +09/05/2021,20:33,,,40.743664,-73.856064,"(40.743664, -73.856064)",51 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454047,Sedan,Bus,,, +09/05/2021,11:40,BROOKLYN,11207,40.65923,-73.89329,"(40.65923, -73.89329)",HEGEMAN AVENUE,GEORGIA AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454517,Sedan,Pick-up Truck,,, +09/05/2021,19:23,MANHATTAN,10025,40.79259,-73.972916,"(40.79259, -73.972916)",,,220 WEST 93 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4454083,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,15:05,BROOKLYN,11201,40.68841,-74.001076,"(40.68841, -74.001076)",BALTIC STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454704,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,7:48,BROOKLYN,11219,40.634468,-73.99271,"(40.634468, -73.99271)",13 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454850,Station Wagon/Sport Utility Vehicle,Dump,,, +09/05/2021,13:20,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454218,Sedan,Pick-up Truck,,, +09/05/2021,5:50,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",BAILEY AVENUE,WEST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4453952,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,1:07,BRONX,10451,40.82386,-73.91941,"(40.82386, -73.91941)",CONCOURSE VILLAGE EAST,EAST 158 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4453791,Sedan,Van,,, +09/05/2021,19:43,BROOKLYN,11236,40.633038,-73.9156,"(40.633038, -73.9156)",EAST 76 STREET,PAERDEGAT AVENUE NORTH,,4,0,0,0,0,0,4,0,Failure to Keep Right,Unspecified,,,,4454377,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:45,BROOKLYN,11208,40.674213,-73.86304,"(40.674213, -73.86304)",,,338 FORBELL STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4454522,Sedan,Sedan,,, +09/05/2021,8:00,,,40.769283,-73.82445,"(40.769283, -73.82445)",32 AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454018,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,17:19,,,,,,HILLSIDE AVENUE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453996,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,20:00,QUEENS,11691,,,,BEACH 20 STREET,PLAINVIEW AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4454478,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,18:50,QUEENS,11423,40.71268,-73.774994,"(40.71268, -73.774994)",,,89-29 186 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4454689,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,5:00,BRONX,10469,40.878426,-73.85598,"(40.878426, -73.85598)",,,3671 PAULDING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454076,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,1:20,MANHATTAN,10027,40.811646,-73.94637,"(40.811646, -73.94637)",,,2181 7 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454159,Taxi,E-Bike,,, +09/03/2021,15:00,,,40.709305,-73.84369,"(40.709305, -73.84369)",METROPOLITAN AVENUE,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4454620,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/02/2021,17:20,QUEENS,11691,,,,,,45-19 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4454565,Sedan,,,, +08/22/2021,14:22,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",BRUCKNER BOULEVARD,EAST 149 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454817,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,15:00,QUEENS,11368,40.754173,-73.857056,"(40.754173, -73.857056)",,,110-21 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454197,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,8:40,BROOKLYN,11232,,,,39 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,17:13,,,40.792244,-73.94419,"(40.792244, -73.94419)",EAST 107 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,21:30,STATEN ISLAND,10304,40.62679,-74.0806,"(40.62679, -74.0806)",COURT STREET,TOMPKINS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454551,Sedan,,,, +09/04/2021,23:16,STATEN ISLAND,10301,40.639267,-74.0941,"(40.639267, -74.0941)",LAFAYETTE AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454559,Sedan,,,, +09/02/2021,23:00,BROOKLYN,11249,40.703453,-73.96623,"(40.703453, -73.96623)",,,585 KENT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454571,Sedan,Sedan,,, +09/05/2021,21:13,QUEENS,11436,40.667908,-73.79474,"(40.667908, -73.79474)",135 AVENUE,145 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454107,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,10:09,BRONX,10471,40.909298,-73.90682,"(40.909298, -73.90682)",ARLINGTON AVENUE,INDEPENDENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476348,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,22:45,,,40.69976,-73.98465,"(40.69976, -73.98465)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476034,Sedan,Sedan,,, +11/07/2021,21:37,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4476408,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,15:45,MANHATTAN,10128,40.778805,-73.947975,"(40.778805, -73.947975)",EAST 89 STREET,1 AVENUE,,2,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4475789,Taxi,E-Scooter,,, +11/08/2021,10:20,,,40.70079,-73.9605,"(40.70079, -73.9605)",WYTHE AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476199,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,10:00,QUEENS,11104,40.75011,-73.91541,"(40.75011, -73.91541)",48 STREET,BARNETT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4476208,Bike,,,, +11/09/2021,5:00,MANHATTAN,10022,40.76285,-73.967735,"(40.76285, -73.967735)",EAST 60 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475486,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,8:34,,,40.676445,-73.92762,"(40.676445, -73.92762)",ROCHESTER AVENUE,,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4476336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,12:01,QUEENS,11691,40.603855,-73.753746,"(40.603855, -73.753746)",,,1077 BEACH 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4475821,Box Truck,,,, +11/09/2021,16:52,BROOKLYN,11238,40.681446,-73.97089,"(40.681446, -73.97089)",,,535 CARLTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475839,Bike,Bike,,, +11/09/2021,19:45,,,40.8133,-73.930405,"(40.8133, -73.930405)",EAST 138 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476475,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +11/07/2021,4:02,,,40.841877,-73.8888,"(40.841877, -73.8888)",CROSS BRONX EXPY,,,5,0,0,0,0,0,5,0,Following Too Closely,Following Too Closely,Unspecified,,,4476258,Sedan,Taxi,Sedan,, +11/09/2021,18:05,QUEENS,11357,40.784344,-73.81657,"(40.784344, -73.81657)",149 STREET,17 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4475748,Sedan,Sedan,,, +11/09/2021,13:30,,,40.635647,-74.12995,"(40.635647, -74.12995)",,,32 NEW STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475985,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,16:05,BROOKLYN,11211,40.71076,-73.95314,"(40.71076, -73.95314)",BORINQUEN PLACE,SOUTH 1 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4475772,Sedan,Bike,,, +11/09/2021,18:45,QUEENS,11369,40.761135,-73.86432,"(40.761135, -73.86432)",GILLMORE STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476287,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,17:03,,,40.57296,-74.09955,"(40.57296, -74.09955)",GREELEY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476417,Sedan,,,, +11/09/2021,17:54,BROOKLYN,11230,40.627186,-73.95669,"(40.627186, -73.95669)",,,1430 OCEAN AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4475832,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,11:15,BROOKLYN,11212,40.667862,-73.9035,"(40.667862, -73.9035)",,,261 POWELL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475689,Sedan,Tractor Truck Diesel,,, +11/09/2021,9:50,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4475593,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,14:55,,,40.828068,-73.87298,"(40.828068, -73.87298)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4475900,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,14:00,QUEENS,11385,40.70759,-73.89529,"(40.70759, -73.89529)",MADISON STREET,64 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476002,Sedan,Sedan,,, +11/09/2021,17:39,,,40.63556,-73.922844,"(40.63556, -73.922844)",GLENWOOD ROAD,EAST 56 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4475725,Sedan,Sedan,,, +11/09/2021,17:40,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",ELIOT AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475716,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,16:00,,,40.76281,-73.99317,"(40.76281, -73.99317)",10 AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4544057,Sedan,Sedan,,, +11/09/2021,1:42,BRONX,10467,40.858196,-73.87099,"(40.858196, -73.87099)",BRONX PARK EAST,REISS PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4476273,Sedan,Sedan,,, +11/09/2021,10:30,QUEENS,11414,40.650814,-73.837814,"(40.650814, -73.837814)",164 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4475767,Carry All,Sedan,Sedan,, +11/09/2021,15:00,BROOKLYN,11222,40.725403,-73.93972,"(40.725403, -73.93972)",,,621 MORGAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4475797,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,17:30,BROOKLYN,11228,40.6147,-74.004326,"(40.6147, -74.004326)",,,1548 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476229,Sedan,,,, +11/09/2021,6:35,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476164,Station Wagon/Sport Utility Vehicle,Van,,, +11/08/2021,14:50,,,40.82858,-73.87918,"(40.82858, -73.87918)",ELDER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476399,Pick-up Truck,Bus,,, +11/09/2021,15:22,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4476458,Bike,,,, +11/09/2021,9:00,QUEENS,11368,40.7454,-73.855484,"(40.7454, -73.855484)",,,108-14 49 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475812,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,7:00,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4475757,Sedan,Sedan,Sedan,, +11/09/2021,21:45,,,40.65621,-73.914665,"(40.65621, -73.914665)",ROCKAWAY PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476362,Sedan,,,, +11/09/2021,0:21,QUEENS,11429,40.712116,-73.75297,"(40.712116, -73.75297)",,,206-07 100 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476090,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,20:18,QUEENS,11423,40.719772,-73.76428,"(40.719772, -73.76428)",,,198-26 FOOTHILL AVENUE,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4476124,Bike,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,11:25,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476188,Station Wagon/Sport Utility Vehicle,4 dr sedan,,, +11/09/2021,21:47,,,40.62729,-73.94217,"(40.62729, -73.94217)",EAST 35 STREET,,,2,0,1,0,0,0,1,0,Unspecified,Unspecified,,,,4475779,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,15:30,BROOKLYN,11208,40.682983,-73.88157,"(40.682983, -73.88157)",,,87 HIGHLAND PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544383,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,14:37,MANHATTAN,10016,40.74577,-73.98608,"(40.74577, -73.98608)",,,4 EAST 30 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544978,Sedan,Bike,,, +07/06/2022,10:56,,,40.759018,-73.855156,"(40.759018, -73.855156)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,12:00,,,40.71245,-73.91853,"(40.71245, -73.91853)",WOODWARD AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544350,Pick-up Truck,Bike,,, +07/07/2022,9:52,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544541,Sedan,Sedan,,, +04/05/2022,20:00,BROOKLYN,11209,40.6261,-74.02017,"(40.6261, -74.02017)",,,626 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544651,Sedan,,,, +07/06/2022,10:10,BROOKLYN,11236,40.63242,-73.91241,"(40.63242, -73.91241)",,,958 EAST 78 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4543893,Sedan,Bus,,, +07/08/2022,14:30,BROOKLYN,11212,40.66307,-73.911964,"(40.66307, -73.911964)",,,713 BOYLAND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544864,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/07/2022,20:28,MANHATTAN,10039,40.82538,-73.94006,"(40.82538, -73.94006)",8 AVENUE,WEST 149 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4544580,Sedan,Bike,,, +07/06/2022,22:47,,,40.674755,-73.91109,"(40.674755, -73.91109)",DEAN STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4545068,Sedan,,,, +07/08/2022,22:36,,,40.75247,-73.96456,"(40.75247, -73.96456)",FDR DRIVE,EAST 49 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4544735,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,22:25,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",FLATBUSH AVENUE EXTENSION,TILLARY STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Turning Improperly,,,,4544678,Station Wagon/Sport Utility Vehicle,Bus,,, +07/06/2022,15:15,BRONX,10466,40.892475,-73.8545,"(40.892475, -73.8545)",EAST 233 STREET,BARNES AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4544213,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,20:00,QUEENS,11432,40.713924,-73.80212,"(40.713924, -73.80212)",CHAPIN PARKWAY,164 STREET,,1,0,1,0,0,0,0,0,,,,,,4544548,Sedan,,,, +07/08/2022,17:23,BROOKLYN,11201,40.68969,-73.99237,"(40.68969, -73.99237)",COURT STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4544689,Flat Bed,Taxi,,, +07/08/2022,16:30,,,40.601734,-73.935036,"(40.601734, -73.935036)",AVENUE U,GERRITSEN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4544853,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/23/2022,18:41,,,,,,BELT PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544569,Sedan,Bus,,, +07/02/2022,2:00,QUEENS,11373,40.72959,-73.88025,"(40.72959, -73.88025)",,,82-03 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544939,Station Wagon/Sport Utility Vehicle,,,, +06/19/2022,13:15,QUEENS,11369,40.762733,-73.87719,"(40.762733, -73.87719)",,,26-09 92 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544798,Sedan,,,, +07/06/2022,5:27,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4543951,Van,Box Truck,,, +09/06/2021,17:30,,,,,,UNION TURNPIKE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/01/2022,10:30,BROOKLYN,11236,40.631744,-73.88742,"(40.631744, -73.88742)",,,2094 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545143,Sedan,,,, +07/01/2022,7:25,QUEENS,11435,40.706753,-73.81821,"(40.706753, -73.81821)",,,86-25 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544546,Sedan,Sedan,,, +07/07/2022,0:35,BROOKLYN,11249,,,,WYTHE AVENUE,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4545040,Sedan,Sedan,,, +07/07/2022,19:55,QUEENS,11106,40.76197,-73.92539,"(40.76197, -73.92539)",BROADWAY,31 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4544952,Sedan,,,, +06/25/2022,7:50,,,40.830154,-73.93964,"(40.830154, -73.93964)",WEST 155 STREET,EDGECOMBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544903,,,,, +07/07/2022,9:45,,,40.745483,-73.77853,"(40.745483, -73.77853)",199 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,0:59,BROOKLYN,11221,40.697186,-73.92884,"(40.697186, -73.92884)",EVERGREEN AVENUE,HART STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544885,Sedan,Sedan,,, +07/06/2022,4:30,,,40.666035,-73.7592,"(40.666035, -73.7592)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4543872,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,7:45,,,40.605934,-74.000465,"(40.605934, -74.000465)",86 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545096,Bike,Sedan,,, +07/06/2022,0:00,QUEENS,11436,40.680477,-73.7921,"(40.680477, -73.7921)",SUTPHIN BOULEVARD,FOCH BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544063,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,19:26,BROOKLYN,11209,40.620434,-74.024475,"(40.620434, -74.024475)",FORT HAMILTON PARKWAY,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544337,Sedan,Motorcycle,,, +07/07/2022,13:15,QUEENS,11362,40.76188,-73.72319,"(40.76188, -73.72319)",LITTLE NECK PARKWAY,58 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4544596,Sedan,Sedan,,, +07/07/2022,7:43,,,,,,EAST 173 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544524,Sedan,,,, +07/06/2022,9:00,BRONX,10462,0,0,"(0.0, 0.0)",,,1501 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,,,,,,4544656,,,,, +07/07/2022,0:25,BROOKLYN,11212,40.658318,-73.90516,"(40.658318, -73.90516)",,,230 LOTT AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544846,Station Wagon/Sport Utility Vehicle,Minibike,,, +06/29/2022,20:44,BROOKLYN,11233,40.675346,-73.92198,"(40.675346, -73.92198)",RALPH AVENUE,DEAN STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4544877,Bike,Sedan,,, +07/07/2022,22:32,MANHATTAN,10032,40.839867,-73.94064,"(40.839867, -73.94064)",BROADWAY,WEST 166 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544902,Sedan,Bike,,, +07/06/2022,18:13,,,40.81341,-73.82239,"(40.81341, -73.82239)",SCHURZ AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544252,Sedan,Motorcycle,,, +07/08/2022,19:00,BRONX,10453,40.84962,-73.91938,"(40.84962, -73.91938)",MONTGOMERY AVENUE,WEST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544721,Sedan,Sedan,,, +07/06/2022,8:00,QUEENS,11375,40.721363,-73.84808,"(40.721363, -73.84808)",AUSTIN STREET,69 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4543999,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,22:20,,,,,,,,1257 SACKET AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544460,CITYWIDE,Sedan,,, +07/08/2022,15:00,QUEENS,11004,40.748756,-73.7087,"(40.748756, -73.7087)",UNION TURNPIKE,264 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4544681,Pick-up Truck,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/07/2022,17:54,BROOKLYN,11219,40.62764,-73.99657,"(40.62764, -73.99657)",60 STREET,NEW UTRECHT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544441,Sedan,Bike,,, +07/08/2022,14:30,BROOKLYN,11218,40.638706,-73.97652,"(40.638706, -73.97652)",,,555 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544919,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,21:25,,,40.74273,-73.95412,"(40.74273, -73.95412)",VERNON BOULEVARD,50 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544660,Tractor Truck Diesel,Sedan,,, +07/06/2022,9:50,QUEENS,11360,40.786366,-73.786514,"(40.786366, -73.786514)",ESTATES LANE,BONNIE LANE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4544128,Sedan,Bike,,, +07/07/2022,12:00,BROOKLYN,11223,40.604843,-73.97763,"(40.604843, -73.97763)",,,342 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4544573,Sedan,,,, +07/06/2022,18:30,,,40.609627,-74.14955,"(40.609627, -74.14955)",VICTORY BOULEVARD,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544819,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,1:01,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519507,Sedan,Sedan,,, +06/30/2022,17:30,BRONX,10475,40.88462,-73.831825,"(40.88462, -73.831825)",,,4026 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544789,Sedan,,,, +07/07/2022,0:28,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544100,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,19:05,,,40.725025,-74.005905,"(40.725025, -74.005905)",VARICK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544703,Sedan,,,, +07/07/2022,23:15,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544387,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/05/2022,22:56,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4544974,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,11:53,BROOKLYN,11218,40.635017,-73.973915,"(40.635017, -73.973915)",,,699 EAST 5 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545006,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +07/08/2022,17:20,,,40.856625,-73.8319,"(40.856625, -73.8319)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4544763,Sedan,Sedan,,, +07/06/2022,18:55,MANHATTAN,10018,40.754177,-73.984604,"(40.754177, -73.984604)",WEST 41 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544860,E-Bike,,,, +06/30/2022,11:48,,,,,,42 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544719,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,14:00,QUEENS,11433,40.70063,-73.78244,"(40.70063, -73.78244)",,,107-12 WREN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545165,Sedan,,,, +07/07/2022,20:50,,,40.666294,-73.80267,"(40.666294, -73.80267)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4544414,Sedan,Sedan,Sedan,, +07/06/2022,0:30,BROOKLYN,11233,,,,,,249 THOMAS S BOYLAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544157,Sedan,Box Truck,,, +06/27/2022,16:11,BROOKLYN,11222,40.72582,-73.95196,"(40.72582, -73.95196)",,,708 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544578,Sedan,PK,,, +07/08/2022,17:23,,,40.784355,-73.98117,"(40.784355, -73.98117)",WEST END AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545194,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/27/2022,17:45,BROOKLYN,11212,40.669262,-73.91356,"(40.669262, -73.91356)",BOYLAND STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,19:55,BROOKLYN,11249,40.701305,-73.95969,"(40.701305, -73.95969)",,,84 PENN STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545031,Bike,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,23:25,QUEENS,11354,40.76767,-73.817375,"(40.76767, -73.817375)",34 AVENUE,149 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544752,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2022,7:04,,,40.769993,-73.915825,"(40.769993, -73.915825)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4544529,Motorcycle,,,, +07/08/2022,7:38,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LEFFERTS BOULEVARD,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unsafe Lane Changing,,,,4545148,Sedan,Sedan,,, +07/06/2022,14:50,QUEENS,11413,40.67702,-73.752945,"(40.67702, -73.752945)",,,136-07 218 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4543992,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,0:00,,,40.779884,-73.80321,"(40.779884, -73.80321)",WILLETS POINT BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544514,,,,, +07/07/2022,1:40,,,40.716488,-73.94643,"(40.716488, -73.94643)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4544284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +06/20/2022,2:45,,,40.67441,-73.991875,"(40.67441, -73.991875)",6 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544948,Sedan,Sedan,,, +07/06/2022,17:24,,,40.596222,-73.98897,"(40.596222, -73.98897)",25 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544561,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,11:35,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Other Vehicular,,,,4544600,Sedan,Flat Bed,,, +07/06/2022,10:13,STATEN ISLAND,10312,40.557243,-74.18115,"(40.557243, -74.18115)",WOODROW ROAD,WOEHRLE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544366,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,21:05,MANHATTAN,10027,40.80897,-73.9446,"(40.80897, -73.9446)",,,338 LENOX AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544029,E-Bike,,,, +07/06/2022,13:27,BRONX,10458,,,,EAST 194 STREET,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4544179,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2022,6:07,,,,,,JEFFERSON STREET,DONGAN HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544926,Sedan,,,, +07/08/2022,12:26,,,40.696117,-73.970436,"(40.696117, -73.970436)",PARK AVENUE,VANDERBILT AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544611,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,16:30,BROOKLYN,11203,40.651325,-73.93906,"(40.651325, -73.93906)",CHURCH AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544329,Sedan,Sedan,,, +07/07/2022,6:02,,,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544236,Sedan,Bike,,, +07/05/2022,17:32,BROOKLYN,11234,40.615337,-73.91247,"(40.615337, -73.91247)",,,2130 EAST 63 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4545102,Sedan,Sedan,,, +07/07/2022,23:10,,,,,,,,1440 CROSS BRONX EXPRESSWAY,6,0,0,0,0,0,6,0,Unsafe Speed,Unspecified,,,,4544628,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/02/2022,3:58,,,40.806644,-73.92495,"(40.806644, -73.92495)",EAST 134 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545225,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,23:00,BROOKLYN,11206,40.70128,-73.93952,"(40.70128, -73.93952)",FLUSHING AVENUE,BEAVER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545214,Sedan,,,, +07/06/2022,11:57,,,,,,PELHAM PARKWAY,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4543908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,6:10,,,40.77915,-73.91016,"(40.77915, -73.91016)",28 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4543860,Sedan,Pick-up Truck,,, +07/06/2022,13:37,,,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544070,Box Truck,Sedan,,, +07/05/2022,23:20,,,40.79166,-73.96469,"(40.79166, -73.96469)",WEST 96 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544840,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/08/2022,7:00,QUEENS,11101,40.74641,-73.95032,"(40.74641, -73.95032)",11 STREET,46 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4544500,Station Wagon/Sport Utility Vehicle,Moped,,, +07/06/2022,14:00,BRONX,10456,40.83501,-73.91206,"(40.83501, -73.91206)",EAST 169 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544189,Sedan,,,, +07/06/2022,22:30,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Following Too Closely,,,,4544033,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,11:30,MANHATTAN,10027,40.80819,-73.94646,"(40.80819, -73.94646)",,,125 WEST 125 STREET,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4544588,Station Wagon/Sport Utility Vehicle,Bike,,, +06/29/2022,17:27,BRONX,10463,40.88421,-73.893425,"(40.88421, -73.893425)",,,123 VANCORTLANDT AVENUE WEST,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4544445,Moped,Bus,,, +06/29/2022,13:33,BRONX,10460,40.844593,-73.88167,"(40.844593, -73.88167)",DALY AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4544456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/07/2022,14:48,,,40.602688,-73.933556,"(40.602688, -73.933556)",,,AVENUE U,1,0,1,0,0,0,0,0,Unspecified,,,,,4544643,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,13:00,BROOKLYN,11226,40.652313,-73.95602,"(40.652313, -73.95602)",LINDEN BOULEVARD,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544744,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,15:20,QUEENS,11417,40.6794,-73.8586,"(40.6794, -73.8586)",LIBERTY AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4544391,Sedan,E-Bike,,, +07/05/2022,7:00,STATEN ISLAND,10305,40.592083,-74.067955,"(40.592083, -74.067955)",QUINCY AVENUE,SAND LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544969,Sedan,,,, +07/08/2022,20:40,BROOKLYN,11230,40.616062,-73.95561,"(40.616062, -73.95561)",,,1901 AVENUE N,1,0,1,0,0,0,0,0,Unspecified,,,,,4544699,Taxi,,,, +07/08/2022,23:23,MANHATTAN,10065,40.76547,-73.97005,"(40.76547, -73.97005)",EAST 62 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545176,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,19:30,QUEENS,11372,40.756046,-73.88073,"(40.756046, -73.88073)",NORTHERN BOULEVARD,87 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4544482,Sedan,,,, +07/08/2022,11:40,MANHATTAN,10026,40.803215,-73.95254,"(40.803215, -73.95254)",WEST 116 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544593,Sedan,Box Truck,,, +07/08/2022,18:15,,,40.669098,-73.93666,"(40.669098, -73.93666)",EASTERN PARKWAY,,,1,0,0,0,1,0,0,0,Turning Improperly,Following Too Closely,,,,4544991,Pick-up Truck,Bike,,, +11/10/2021,18:45,,,40.7923,-73.807236,"(40.7923, -73.807236)",11 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476073,Sedan,,,, +07/03/2022,13:20,MANHATTAN,10009,40.725285,-73.97798,"(40.725285, -73.97798)",AVENUE C,EAST 9 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544556,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,23:30,BRONX,10459,40.820988,-73.89491,"(40.820988, -73.89491)",EAST 163 STREET,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544807,Sedan,,,, +07/08/2022,18:24,BRONX,10466,40.88492,-73.84883,"(40.88492, -73.84883)",EAST 226 STREET,LACONIA AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4544786,Sedan,,,, +07/06/2022,13:30,QUEENS,11436,40.68285,-73.79902,"(40.68285, -73.79902)",144 STREET,115 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544083,Sedan,Sedan,,, +07/08/2022,19:24,,,40.727898,-73.83882,"(40.727898, -73.83882)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,,,,,4545067,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,16:43,,,40.679653,-73.77724,"(40.679653, -73.77724)",166 STREET,,,2,0,0,0,0,0,2,0,Turning Improperly,Driver Inexperience,,,,4544409,Sedan,Sedan,,, +06/09/2022,7:40,,,40.769318,-73.8666,"(40.769318, -73.8666)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544497,Sedan,Sedan,,, +07/07/2022,13:20,,,40.62577,-74.134735,"(40.62577, -74.134735)",FOREST AVENUE,VELTMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544271,Sedan,Sedan,,, +07/04/2022,16:00,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",35 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544510,Sedan,,,, +07/01/2022,15:20,,,40.831566,-73.942986,"(40.831566, -73.942986)",WEST 155 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544912,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,22:38,QUEENS,11105,40.776962,-73.9024,"(40.776962, -73.9024)",38 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,17:00,BRONX,10472,40.830685,-73.88216,"(40.830685, -73.88216)",,,1277 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544657,Sedan,,,, +07/07/2022,17:45,QUEENS,11432,40.707767,-73.80258,"(40.707767, -73.80258)",,,159-10 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4544525,Sedan,Sedan,Sedan,, +07/08/2022,11:20,BRONX,10474,40.817223,-73.88418,"(40.817223, -73.88418)",,,1360 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4544642,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,16:00,BRONX,10474,40.81044,-73.88735,"(40.81044, -73.88735)",,,509 MANIDA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544620,Taxi,,,, +07/06/2022,0:00,BROOKLYN,11212,40.664593,-73.907616,"(40.664593, -73.907616)",,,312 OSBORN STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4543985,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,0:08,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,NEW YORK AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4544318,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,12:00,,,40.82309,-73.956345,"(40.82309, -73.956345)",WEST 138 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544472,Sedan,,,, +07/07/2022,2:27,BROOKLYN,11220,40.63105,-74.01303,"(40.63105, -74.01303)",,,824 67 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544259,Sedan,Sedan,,, +07/06/2022,13:54,QUEENS,11385,40.708782,-73.9123,"(40.708782, -73.9123)",WOODWARD AVENUE,STANHOPE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4543948,Sedan,Sedan,,, +07/06/2022,22:02,BROOKLYN,11232,40.652626,-74.00617,"(40.652626, -74.00617)",39 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544020,Box Truck,,,, +07/02/2022,16:53,BRONX,10456,40.833286,-73.914085,"(40.833286, -73.914085)",MORRIS AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544615,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,15:40,,,40.830112,-73.850266,"(40.830112, -73.850266)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4544372,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/06/2022,22:00,,,,,,KOREAN WAR VETS PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,12:36,BROOKLYN,11236,40.646492,-73.903824,"(40.646492, -73.903824)",,,1361 ROCKAWAY PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4543897,Sedan,,,, +07/08/2022,18:30,BRONX,10472,40.827904,-73.8646,"(40.827904, -73.8646)",,,1810 WATSON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544632,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,23:17,MANHATTAN,10029,40.796516,-73.94737,"(40.796516, -73.94737)",,,1661 MADISON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4540468,Station Wagon/Sport Utility Vehicle,,,, +06/29/2022,16:47,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",BAILEY AVENUE,WEST KINGSBRIDGE ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544483,AMBULANCE,,,, +07/08/2022,9:10,QUEENS,11385,40.71371,-73.919014,"(40.71371, -73.919014)",,,48-01 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544583,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,17:30,BROOKLYN,11226,40.654068,-73.96177,"(40.654068, -73.96177)",OCEAN AVENUE,WOODRUFF AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544890,Pick-up Truck,Sedan,,, +07/03/2022,15:00,,,40.755486,-73.82472,"(40.755486, -73.82472)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545112,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,16:30,,,0,0,"(0.0, 0.0)",WEST 93 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4544834,Sedan,Taxi,Box Truck,, +07/07/2022,14:35,QUEENS,11355,40.757477,-73.810585,"(40.757477, -73.810585)",MURRAY STREET,ELM AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544515,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,20:20,QUEENS,11414,40.653763,-73.84147,"(40.653763, -73.84147)",162 AVENUE,90 STREET,,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4544395,Sedan,Sedan,,, +07/06/2022,8:00,QUEENS,11432,40.709126,-73.79613,"(40.709126, -73.79613)",,,87-57 166 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4544536,Taxi,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +07/06/2022,21:30,,,40.547245,-74.180244,"(40.547245, -74.180244)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544168,Sedan,Pick-up Truck,,, +06/25/2022,15:07,QUEENS,11373,40.74691,-73.88086,"(40.74691, -73.88086)",,,40-67 GLEANE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544449,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,15:38,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544452,Bus,Sedan,,, +07/06/2022,4:15,BROOKLYN,11208,40.68619,-73.87622,"(40.68619, -73.87622)",ETNA STREET,CHESTNUT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4543810,Sedan,,,, +01/05/2022,12:55,BROOKLYN,11209,40.619976,-74.02369,"(40.619976, -74.02369)",86 STREET,GATLING PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4492177,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,3:55,,,,,,BRONX RIVER PARKWAY,STORY AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4519930,Sedan,,,, +02/01/2022,14:50,QUEENS,11413,,,,,,229-19 139 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499231,Sedan,,,, +02/01/2022,19:45,,,40.712082,-74.01013,"(40.712082, -74.01013)",CHURCH STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499378,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,19:00,,,40.865246,-73.909874,"(40.865246, -73.909874)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4499284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,10:40,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499725,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +02/01/2022,18:35,BROOKLYN,11213,40.674904,-73.94447,"(40.674904, -73.94447)",BROOKLYN AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499703,Taxi,,,, +02/01/2022,3:25,,,40.673107,-73.99959,"(40.673107, -73.99959)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4498985,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +02/01/2022,10:30,QUEENS,11434,40.66546,-73.76389,"(40.66546, -73.76389)",181 STREET,145 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499267,Sedan,Pick-up Truck,Sedan,, +02/01/2022,8:30,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499517,Sedan,,,, +02/01/2022,23:43,BROOKLYN,11226,40.640583,-73.95573,"(40.640583, -73.95573)",DITMAS AVENUE,FLATBUSH AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4499313,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/18/2022,13:25,,,,,,EAST 57 STREET,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499648,Sedan,Sedan,,, +01/29/2022,0:40,MANHATTAN,10009,,,,14 Street,1 Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499309,Station Wagon/Sport Utility Vehicle,LIMO,,, +02/01/2022,8:05,BROOKLYN,11229,40.598938,-73.95548,"(40.598938, -73.95548)",AVENUE U,EAST 16 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499024,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,17:44,,,40.640583,-73.95573,"(40.640583, -73.95573)",FLATBUSH AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499320,Sedan,Box Truck,,, +02/02/2022,10:30,MANHATTAN,10017,40.757233,-73.97605,"(40.757233, -73.97605)",EAST 49 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499549,Station Wagon/Sport Utility Vehicle,Bike,,, +01/25/2022,0:05,,,40.716557,-73.82869,"(40.716557, -73.82869)",GRAND CENTRAL PKWY,,,5,1,0,0,0,0,5,1,Driver Inattention/Distraction,,,,,4498109,Sedan,,,, +01/29/2022,0:01,BRONX,10456,,,,MCCLELLAN STREET,CARROLL PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499722,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,16:10,,,40.865902,-73.904396,"(40.865902, -73.904396)",WEBB AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499626,Sedan,Sedan,,, +02/01/2022,0:00,,,40.678303,-73.87289,"(40.678303, -73.87289)",CONDUIT BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499063,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,12:35,,,,,,,,2218 VICTORY BOULEVARD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4499207,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/01/2022,16:30,,,40.863327,-73.89921,"(40.863327, -73.89921)",MORRIS AVENUE,,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4499397,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,14:20,QUEENS,11106,40.76019,-73.9329,"(40.76019, -73.9329)",35 AVENUE,24 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544504,Station Wagon/Sport Utility Vehicle,Bike,,, +02/01/2022,18:36,MANHATTAN,10019,40.769005,-73.992355,"(40.769005, -73.992355)",WEST 55 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499545,Taxi,,,, +02/01/2022,6:30,,,40.612213,-74.15395,"(40.612213, -74.15395)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4499598,Station Wagon/Sport Utility Vehicle,Tanker,,, +02/01/2022,11:15,BRONX,10468,,,,,,175 FATHER ZEISER PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499183,Sedan,,,, +02/01/2022,8:05,,,40.721844,-73.90444,"(40.721844, -73.90444)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499119,Box Truck,Sedan,,, +02/01/2022,10:36,BROOKLYN,11237,40.696117,-73.905014,"(40.696117, -73.905014)",HALSEY STREET,WYCKOFF AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499169,Box Truck,Van,,, +02/01/2022,7:45,BROOKLYN,11237,40.707027,-73.9236,"(40.707027, -73.9236)",JEFFERSON STREET,WYCKOFF AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,Listening/Using Headphones,,,,4499120,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,18:10,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499779,PK,PK,,, +02/01/2022,9:05,BROOKLYN,11207,40.67325,-73.886734,"(40.67325, -73.886734)",PITKIN AVENUE,JEROME STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499199,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,0:27,MANHATTAN,10035,40.80475,-73.93829,"(40.80475, -73.93829)",,,113 EAST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499100,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/02/2022,3:50,,,40.831017,-73.85226,"(40.831017, -73.85226)",CROSS BRONX EXPRESSWAY,POWELL AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499589,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,12:00,BROOKLYN,11237,40.692974,-73.90811,"(40.692974, -73.90811)",HALSEY STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499298,Sedan,,,, +02/01/2022,13:30,,,,,,MACOMBS DAM BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,,,,4499337,Enclosed Body - Nonremovable Enclosure,Bus,,, +01/30/2022,13:45,MANHATTAN,10030,40.81527,-73.94768,"(40.81527, -73.94768)",,,300 WEST 133 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499613,Sedan,,,, +02/01/2022,7:58,QUEENS,11372,40.748318,-73.87742,"(40.748318, -73.87742)",ROOSEVELT AVENUE,89 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499434,Sedan,,,, +01/30/2022,18:00,MANHATTAN,10032,40.841377,-73.93771,"(40.841377, -73.93771)",,,85 AUDUBON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4499602,Sedan,Sedan,,, +02/01/2022,9:09,BRONX,10473,40.82408,-73.8429,"(40.82408, -73.8429)",ZEREGA AVENUE,LAFAYETTE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499109,Dump,E-Scooter,,, +02/01/2022,6:30,,,40.667038,-73.7682,"(40.667038, -73.7682)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499188,Sedan,Sedan,Sedan,, +02/01/2022,17:10,MANHATTAN,10065,40.760933,-73.957756,"(40.760933, -73.957756)",,,500 EAST 63 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499274,Flat Rack,Sedan,,, +02/01/2022,14:10,,,40.673683,-73.92214,"(40.673683, -73.92214)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499416,Sedan,,,, +12/06/2021,19:25,,,40.823635,-73.93095,"(40.823635, -73.93095)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4499686,Van,Sedan,,, +02/01/2022,0:00,BROOKLYN,11201,40.692192,-73.98628,"(40.692192, -73.98628)",WILLOUGHBY STREET,LAWRENCE STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4499208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,19:28,,,40.642563,-74.08653,"(40.642563, -74.08653)",JERSEY STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499242,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/28/2022,20:00,MANHATTAN,10028,,,,,,320 EAST 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499804,Motorcycle,,,, +02/01/2022,9:00,,,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499131,Sedan,Sedan,,, +01/25/2022,9:20,BRONX,10461,40.84088,-73.83938,"(40.84088, -73.83938)",EAST TREMONT AVENUE,LITTLE LEAGUE PLACE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,0:00,BRONX,10459,40.821564,-73.89171,"(40.821564, -73.89171)",,,953 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499494,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,14:30,BROOKLYN,11222,40.73393,-73.952934,"(40.73393, -73.952934)",,,211 GREEN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499570,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,22:15,,,40.695965,-73.96642,"(40.695965, -73.96642)",HALL STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Backing Unsafely,,,,4499640,Sedan,Sedan,,, +01/28/2022,17:02,,,40.702564,-73.790565,"(40.702564, -73.790565)",MERRICK BOULEVARD,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499745,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,8:00,BROOKLYN,11223,40.604443,-73.97003,"(40.604443, -73.97003)",KINGS HIGHWAY,EAST 3 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499294,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,22:20,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4499707,Sedan,Sedan,,, +02/01/2022,23:18,BROOKLYN,11216,40.67994,-73.941216,"(40.67994, -73.941216)",FULTON STREET,KINGSTON AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4499322,Sedan,,,, +02/01/2022,21:50,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499258,Sedan,Sedan,,, +02/01/2022,19:09,BROOKLYN,11238,40.684803,-73.97071,"(40.684803, -73.97071)",,,770 FULTON STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4499408,Sedan,,,, +02/01/2022,15:15,BRONX,10469,0,0,"(0.0, 0.0)",,,3610 PAULDING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499216,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,16:35,BROOKLYN,11212,40.66386,-73.92456,"(40.66386, -73.92456)",RUTLAND ROAD,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499661,Sedan,Sedan,,, +02/01/2022,6:00,,,40.718647,-73.83771,"(40.718647, -73.83771)",QUEENS BOULEVARD,75 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499349,Sedan,,,, +02/01/2022,14:52,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,LONG ISLAND EXPRESSWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4499269,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/01/2022,6:50,,,40.727154,-73.75399,"(40.727154, -73.75399)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499350,Sedan,Bus,,, +02/01/2022,10:30,BROOKLYN,11211,,,,SOUTH 3 STREET,ROEBLING STREET,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4499314,Sedan,Sedan,,, +01/31/2022,22:08,,,40.68783,-73.93004,"(40.68783, -73.93004)",REID AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,6:09,BROOKLYN,11249,,,,WYTHE AVENUE,WILLIAMSBURG STREET EAST,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499005,Sedan,,,, +01/28/2022,16:38,BRONX,10453,40.857117,-73.90253,"(40.857117, -73.90253)",,,2242 MORRIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499828,Box Truck,Bus,,, +02/01/2022,6:51,QUEENS,11385,40.70276,-73.88894,"(40.70276, -73.88894)",66 STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499238,Sedan,Sedan,,, +01/30/2022,9:00,MANHATTAN,10030,40.820877,-73.94517,"(40.820877, -73.94517)",EDGECOMBE AVENUE,WEST 141 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4499630,Sedan,,,, +01/27/2022,13:00,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Lost Consciousness,Other Vehicular,Other Vehicular,,,4499702,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +02/01/2022,8:45,QUEENS,11416,40.68305,-73.85029,"(40.68305, -73.85029)",101 AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499027,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,12:00,BROOKLYN,11201,40.698288,-73.984,"(40.698288, -73.984)",,,1 DUFFIELD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499723,Sedan,,,, +02/01/2022,9:20,BRONX,10467,40.883575,-73.86281,"(40.883575, -73.86281)",EAST 219 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499214,Sedan,,,, +02/01/2022,10:40,BROOKLYN,11211,40.713104,-73.95147,"(40.713104, -73.95147)",UNION AVENUE,DEVOE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499315,Sedan,,,, +01/21/2022,18:30,,,40.665318,-73.73431,"(40.665318, -73.73431)",245 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4496437,Sedan,Sedan,,, +01/30/2022,15:56,MANHATTAN,10030,40.814396,-73.945595,"(40.814396, -73.945595)",,,168 WEST 133 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499625,Sedan,,,, +01/31/2022,22:25,QUEENS,11368,40.754456,-73.860405,"(40.754456, -73.860405)",,,36-16 108 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499657,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,23:10,BRONX,10467,40.879692,-73.875595,"(40.879692, -73.875595)",,,263 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4499285,Sedan,,,, +01/28/2022,12:01,,,,,,1 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499802,Van,,,, +02/01/2022,11:10,BRONX,10473,,,,,,1636 BRUCKNER BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499126,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,12:55,QUEENS,11421,40.692184,-73.86195,"(40.692184, -73.86195)",,,80-11 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499170,Sedan,,,, +02/01/2022,11:30,QUEENS,11360,40.787056,-73.78705,"(40.787056, -73.78705)",,,13-34 ESTATES LANE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499458,Sedan,,,, +02/01/2022,14:45,,,40.837315,-73.934044,"(40.837315, -73.934044)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499232,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,16:45,STATEN ISLAND,10309,40.521065,-74.23623,"(40.521065, -74.23623)",,,246 RICHMOND VALLEY ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499607,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,2:10,,,40.667366,-73.77181,"(40.667366, -73.77181)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499187,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,8:55,BRONX,10473,40.82444,-73.843,"(40.82444, -73.843)",,,809 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4499110,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +02/01/2022,16:36,MANHATTAN,10013,40.719055,-74.01245,"(40.719055, -74.01245)",WEST STREET,HARRISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499377,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,2:33,,,40.79337,-73.93274,"(40.79337, -73.93274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4499500,Sedan,,,, +02/01/2022,9:45,,,40.738403,-73.93864,"(40.738403, -73.93864)",30 STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499158,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,22:15,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Unsafe Speed,,,,4499272,Sedan,Sedan,,, +02/01/2022,14:48,BRONX,10473,40.819878,-73.85777,"(40.819878, -73.85777)",WHITE PLAINS ROAD,SEWARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499689,Sedan,,,, +01/29/2022,10:30,BRONX,10466,40.89817,-73.845665,"(40.89817, -73.845665)",,,4360 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499739,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,0:00,MANHATTAN,10037,40.81344,-73.94135,"(40.81344, -73.94135)",WEST 134 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499615,Sedan,Bus,,, +02/01/2022,12:35,,,40.767803,-73.95601,"(40.767803, -73.95601)",1 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unsafe Lane Changing,,,,4499222,Taxi,Box Truck,,, +02/01/2022,15:00,BRONX,10459,40.821003,-73.89787,"(40.821003, -73.89787)",ROGERS PLACE,EAST 163 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499279,Sedan,Sedan,,, +01/29/2022,4:00,BROOKLYN,11203,40.639977,-73.94263,"(40.639977, -73.94263)",,,1358 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499668,Sedan,,,, +02/01/2022,18:55,STATEN ISLAND,10310,40.639175,-74.121826,"(40.639175, -74.121826)",RICHMOND TERRACE,ALASKA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499427,Sedan,Sedan,,, +02/01/2022,6:20,BROOKLYN,11207,40.658337,-73.87759,"(40.658337, -73.87759)",ASHFORD STREET,COZINE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499062,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,16:10,QUEENS,11357,40.787006,-73.821594,"(40.787006, -73.821594)",,,145-24 14 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499601,Sedan,,,, +02/01/2022,1:05,BROOKLYN,11208,40.66753,-73.86427,"(40.66753, -73.86427)",,,1259 LORING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499203,Sedan,Sedan,,, +02/01/2022,14:15,,,40.77044,-73.91655,"(40.77044, -73.91655)",ASTORIA BOULEVARD,32 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499513,Sedan,Sedan,,, +02/01/2022,6:30,QUEENS,11412,40.696377,-73.757034,"(40.696377, -73.757034)",196 STREET,115 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499394,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,14:00,BROOKLYN,11221,40.69687,-73.923035,"(40.69687, -73.923035)",HIMROD STREET,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499297,Sedan,,,, +01/31/2022,12:30,BROOKLYN,11224,40.573593,-73.99109,"(40.573593, -73.99109)",,,2410 SURF AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499750,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,22:52,,,40.74478,-73.86342,"(40.74478, -73.86342)",99 STREET,CORONA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499335,Sedan,,,, +08/11/2021,8:20,MANHATTAN,10002,40.710083,-73.99411,"(40.710083, -73.99411)",WATER STREET,MARKET SLIP,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4447489,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/21/2021,14:45,,,40.872143,-73.818695,"(40.872143, -73.818695)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Speed,,,,4450691,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,19:26,BRONX,10460,40.834915,-73.894135,"(40.834915, -73.894135)",BOSTON ROAD,WILKENS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4451018,Bus,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,0:02,BRONX,10451,40.8245,-73.912636,"(40.8245, -73.912636)",,,428 EAST 162 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4452276,Taxi,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,15:45,MANHATTAN,10001,40.75462,-73.99713,"(40.75462, -73.99713)",WEST 35 STREET,DYER AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4453116,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,, +09/05/2021,17:07,BROOKLYN,11220,40.645164,-74.02258,"(40.645164, -74.02258)",,,158 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455125,Station Wagon/Sport Utility Vehicle,,,, +09/01/2021,15:45,BROOKLYN,11212,40.667625,-73.91023,"(40.667625, -73.91023)",,,510 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455184,Bike,,,, +01/31/2022,16:00,BRONX,10455,40.815937,-73.909134,"(40.815937, -73.909134)",WESTCHESTER AVENUE,TRINITY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499674,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,20:00,BROOKLYN,11220,40.642536,-74.0094,"(40.642536, -74.0094)",,,5209 6 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455124,Sedan,,,, +08/03/2021,19:18,BRONX,10466,40.89017,-73.85916,"(40.89017, -73.85916)",,,4064 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,10:41,,,,,,broadway street,58 street,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455142,Sedan,,,, +08/19/2021,3:16,BROOKLYN,11220,40.641327,-74.00709,"(40.641327, -74.00709)",52 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455123,Sedan,,,, +09/01/2021,23:35,BROOKLYN,11232,40.666283,-73.9971,"(40.666283, -73.9971)",,,82 18 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455127,Sedan,,,, +09/04/2021,10:00,MANHATTAN,10029,40.78811,-73.93857,"(40.78811, -73.93857)",,,430 EAST 105 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455158,Sedan,,,, +08/27/2021,15:49,,,40.859245,-73.81814,"(40.859245, -73.81814)",PELHAM PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455115,Sedan,Sedan,,, +09/06/2021,2:10,MANHATTAN,10001,40.75219,-73.99347,"(40.75219, -73.99347)",WEST 34 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4455166,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,21:40,BRONX,10461,40.837845,-73.834724,"(40.837845, -73.834724)",,,3140 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455116,Motorcycle,,,, +09/06/2021,18:30,BROOKLYN,11232,40.664516,-73.99709,"(40.664516, -73.99709)",3 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455126,Sedan,Sedan,,, +02/01/2022,3:35,,,,,,GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499241,Tractor Truck Diesel,,,, +01/31/2022,4:54,BRONX,10463,,,,,,148 van cortlandt park south,0,0,0,0,0,0,0,0,Unspecified,,,,,4499609,Sedan,,,, +02/01/2022,8:55,QUEENS,11385,40.69737,-73.90721,"(40.69737, -73.90721)",,,877 WYCKOFF AVENUE,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4499641,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,19:00,MANHATTAN,10075,40.77207,-73.94994,"(40.77207, -73.94994)",EAST 80 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4499278,Sedan,Sedan,,, +02/01/2022,20:10,BROOKLYN,11238,40.67686,-73.97222,"(40.67686, -73.97222)",,,357 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4499538,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,0:48,QUEENS,11377,40.75221,-73.90443,"(40.75221, -73.90443)",BROADWAY,57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499086,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,21:05,BRONX,10456,40.83104,-73.91032,"(40.83104, -73.91032)",,,1160 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4499345,Sedan,,,, +02/01/2022,11:00,MANHATTAN,10011,40.738976,-73.9966,"(40.738976, -73.9966)",,,114 WEST 16 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499179,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,14:10,MANHATTAN,10038,40.70812,-74.005516,"(40.70812, -74.005516)",,,13 CLIFF STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499360,Sedan,Box Truck,,, +02/01/2022,16:48,,,40.71407,-73.99751,"(40.71407, -73.99751)",DIVISION STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499237,Bus,Sedan,,, +09/05/2021,3:19,,,40.864655,-73.813866,"(40.864655, -73.813866)",SHORE ROAD,,,0,1,0,0,0,1,0,0,Unspecified,Unspecified,,,,4455132,Sedan,E-Bike,,, +09/06/2021,17:04,BROOKLYN,11212,40.66157,-73.91548,"(40.66157, -73.91548)",SARATOGA AVENUE,LIVONIA AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454393,Sedan,,,, +09/06/2021,20:00,MANHATTAN,10172,40.75592,-73.9749,"(40.75592, -73.9749)",EAST 48 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4454553,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,22:06,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454455,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,17:48,QUEENS,11368,40.75763,-73.865685,"(40.75763, -73.865685)",103 STREET,NORTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454943,Sedan,Sedan,,, +09/06/2021,0:32,,,40.88809,-73.89254,"(40.88809, -73.89254)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,1:23,,,,,,GRAND CENTRAL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454099,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,18:32,QUEENS,11368,40.740036,-73.85289,"(40.740036, -73.85289)",WESTSIDE AVENUE,VANDOREN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454434,FDNY TRUCK,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,21:13,BROOKLYN,11213,40.66597,-73.928604,"(40.66597, -73.928604)",ROCHESTER AVENUE,CARROLL STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454641,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,16:28,,,40.85713,-73.8808,"(40.85713, -73.8808)",FORDHAM UNIVERSITY,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454483,Sedan,Sedan,,, +09/05/2021,6:21,QUEENS,11434,40.683784,-73.769745,"(40.683784, -73.769745)",MERRICK BOULEVARD,BAISLEY BOULEVARD,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4454881,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,16:41,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454984,Sedan,E-Scooter,,, +09/06/2021,0:30,,,40.69222,-73.847496,"(40.69222, -73.847496)",89 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454167,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,21:00,BROOKLYN,11249,40.721397,-73.95605,"(40.721397, -73.95605)",BERRY STREET,NORTH 12 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454497,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,5:00,BROOKLYN,11218,40.643303,-73.974106,"(40.643303, -73.974106)",OCEAN PARKWAY,BEVERLEY ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4454940,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,14:08,QUEENS,11106,40.759457,-73.93589,"(40.759457, -73.93589)",36 AVENUE,22 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454970,Station Wagon/Sport Utility Vehicle,Bus,,, +09/06/2021,22:41,,,,,,HENRY HUDSON PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4454819,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,4:45,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454221,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,15:00,BROOKLYN,11230,40.6285,-73.97463,"(40.6285, -73.97463)",,,304 FOSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,23:45,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454584,Sedan,Sedan,,, +09/06/2021,18:10,BROOKLYN,11220,40.649918,-74.01226,"(40.649918, -74.01226)",3 AVENUE,46 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4454607,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,23:10,QUEENS,11422,40.67221,-73.734634,"(40.67221, -73.734634)",BROOKVILLE BOULEVARD,135 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4454646,Sedan,,,, +09/06/2021,5:45,QUEENS,11385,40.706356,-73.900276,"(40.706356, -73.900276)",60 PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454714,Sedan,Sedan,,, +09/06/2021,15:50,,,40.619568,-73.98628,"(40.619568, -73.98628)",19 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4454332,Sedan,Sedan,,, +09/06/2021,7:22,BROOKLYN,11209,40.624435,-74.03948,"(40.624435, -74.03948)",,,8721 NARROWS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4454283,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/05/2021,23:20,STATEN ISLAND,10304,40.617786,-74.08111,"(40.617786, -74.08111)",OSGOOD AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455032,Sedan,,,, +09/03/2021,14:00,,,,,,WATERSEDGE DRIVE,27 avenue,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455097,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,13:13,BROOKLYN,11229,40.60106,-73.93427,"(40.60106, -73.93427)",,,2245 GERRITSEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454312,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,11:53,QUEENS,11435,40.69261,-73.80314,"(40.69261, -73.80314)",107 AVENUE,LIVERPOOL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454284,Sedan,Sedan,,, +08/04/2021,0:01,,,40.71654,-73.996994,"(40.71654, -73.996994)",ELIZABETH STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454955,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,15:41,QUEENS,11434,40.679054,-73.76184,"(40.679054, -73.76184)",131 AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454356,Sedan,,,, +02/01/2022,8:00,,,40.686237,-73.839066,"(40.686237, -73.839066)",104 STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4499343,Sedan,Sedan,,, +09/06/2021,21:00,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Unspecified,,,4454711,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,22:00,,,,,,FLATBUSH AVENUE,GRAND ARMY PLAZA,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454474,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,19:24,BRONX,10452,40.838715,-73.91998,"(40.838715, -73.91998)",INWOOD AVENUE,WEST CLARKE PLACE,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,Unspecified,,,4454511,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,22:38,BROOKLYN,11234,40.627747,-73.92009,"(40.627747, -73.92009)",,,1101 EAST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454772,Sedan,Sedan,,, +09/06/2021,14:41,BRONX,10467,40.88271,-73.881256,"(40.88271, -73.881256)",JEROME AVENUE,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454611,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,21:50,MANHATTAN,10029,40.792255,-73.948395,"(40.792255, -73.948395)",PARK AVENUE,EAST 105 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454725,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,1:40,BROOKLYN,11233,40.67824,-73.909966,"(40.67824, -73.909966)",,,2079 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4454271,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +09/06/2021,21:55,QUEENS,11420,40.68329,-73.81153,"(40.68329, -73.81153)",111 AVENUE,131 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454443,Sedan,,,, +09/05/2021,12:10,,,40.61956,-74.01537,"(40.61956, -74.01537)",11 AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455013,Sedan,Bike,,, +09/06/2021,22:20,,,,,,PELHAM BRIDGE ROAD,SHORE ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454603,Sedan,Convertible,,, +09/06/2021,15:53,BRONX,10463,40.876877,-73.9034,"(40.876877, -73.9034)",BAILEY AVENUE,ALBANY CRESCENT,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454898,Station Wagon/Sport Utility Vehicle,,,, +08/31/2021,17:45,QUEENS,11378,40.72755,-73.89548,"(40.72755, -73.89548)",,,55-13 69 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455034,Motorcycle,,,, +09/06/2021,18:53,,,,,,GREENPOINT AVENUE,RAILROAD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454362,Sedan,Sedan,,, +09/06/2021,23:05,,,40.61796,-73.99138,"(40.61796, -73.99138)",18 AVENUE,67 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454406,Sedan,,,, +08/05/2021,16:24,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454959,Sedan,,,, +09/06/2021,10:27,QUEENS,11411,40.695347,-73.74079,"(40.695347, -73.74079)",,,219-15 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4454293,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,12:00,BROOKLYN,11214,40.60242,-73.99459,"(40.60242, -73.99459)",86 STREET,BAY 29 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454880,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,21:57,BROOKLYN,11249,40.72118,-73.95866,"(40.72118, -73.95866)",NORTH 10 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454632,Sedan,Sedan,,, +09/06/2021,5:30,,,40.666275,-73.93415,"(40.666275, -73.93415)",CARROLL STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454665,Sedan,Sedan,,, +09/06/2021,16:15,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4454872,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,20:40,BRONX,10468,40.86923,-73.89604,"(40.86923, -73.89604)",JEROME AVENUE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454950,Station Wagon/Sport Utility Vehicle,Van,,, +09/06/2021,22:40,QUEENS,11434,40.667713,-73.77792,"(40.667713, -73.77792)",NORTH CONDUIT AVENUE,157 STREET,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4454467,Sedan,Sedan,,, +09/01/2021,17:05,,,40.69089,-73.94253,"(40.69089, -73.94253)",LAFAYETTE AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4454916,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,23:50,,,40.62656,-74.15199,"(40.62656, -74.15199)",LAKE AVENUE,WESTBROOK AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4454503,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,20:50,QUEENS,11417,40.67156,-73.84783,"(40.67156, -73.84783)",88 STREET,ARION ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454430,Sedan,Bike,,, +09/06/2021,17:00,BRONX,10473,40.82084,-73.87266,"(40.82084, -73.87266)",,,825 MORRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454595,Sedan,,,, +09/04/2021,15:18,MANHATTAN,10019,40.762917,-73.98566,"(40.762917, -73.98566)",WEST 51 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4454993,Sedan,,,, +09/06/2021,13:15,,,40.858162,-73.91699,"(40.858162, -73.91699)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Lane Marking Improper/Inadequate,,,,4454369,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/02/2021,18:22,BRONX,10463,40.87947,-73.89709,"(40.87947, -73.89709)",,,3363 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454887,Sedan,,,, +09/04/2021,22:50,QUEENS,11385,40.71397,-73.92357,"(40.71397, -73.92357)",,,46-00 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455048,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,18:30,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454533,Sedan,Sedan,,, +09/06/2021,18:35,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454435,Sedan,FIRE TRUCK,,, +09/06/2021,17:00,BROOKLYN,11208,40.673996,-73.866806,"(40.673996, -73.866806)",,,624 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454534,Sedan,,,, +07/06/2022,21:44,BRONX,10466,40.881176,-73.840744,"(40.881176, -73.840744)",,,3528 GRACE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544212,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,0:00,BRONX,10462,40.83758,-73.8589,"(40.83758, -73.8589)",,,26 METROPOLITAN OVAL,0,0,0,0,0,0,0,0,Unspecified,,,,,4454930,Sedan,,,, +09/06/2021,1:20,BRONX,10455,40.817207,-73.916,"(40.817207, -73.916)",3 AVENUE,EAST 151 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454119,Taxi,Motorscooter,,, +09/06/2021,13:35,,,40.86804,-73.879105,"(40.86804, -73.879105)",SOUTHERN BOULEVARD,MOSHOLU PARKWAY,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Lane Changing,,,,4454965,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,16:09,BROOKLYN,11226,40.642643,-73.948715,"(40.642643, -73.948715)",,,1764 NOSTRAND AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454402,Pick-up Truck,Bike,,, +09/06/2021,17:40,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454828,Sedan,,,, +08/29/2021,11:00,BROOKLYN,11226,40.647434,-73.958824,"(40.647434, -73.958824)",,,2117 ALBEMARLE ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455043,Sedan,Sedan,,, +09/04/2021,13:17,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Other Vehicular,,,,4454906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,1:10,QUEENS,11368,40.75326,-73.864456,"(40.75326, -73.864456)",103 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4454195,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/05/2021,14:20,,,,,,TILLOTSON AVENUE,CONNER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454942,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,20:13,,,40.75307,-73.79238,"(40.75307, -73.79238)",HOLLIS COURT BOULEVARD,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4454367,Bike,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:58,BROOKLYN,11210,40.621994,-73.94598,"(40.621994, -73.94598)",NOSTRAND AVENUE,AVENUE L,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454488,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,14:00,QUEENS,11435,40.714935,-73.81636,"(40.714935, -73.81636)",MAIN STREET,COOLIDGE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4454974,Tractor Truck Diesel,Sedan,Sedan,Sedan, +09/06/2021,11:30,,,40.677032,-73.824684,"(40.677032, -73.824684)",114 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454431,Bus,Sedan,,, +09/06/2021,22:06,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",BROADWAY,WEST 157 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Other Vehicular,,,4454818,Sedan,Station Wagon/Sport Utility Vehicle,PK,, +09/02/2021,3:33,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454886,Sedan,,,, +09/06/2021,20:54,MANHATTAN,10018,40.753613,-73.992424,"(40.753613, -73.992424)",,,520 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454457,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,20:40,,,40.72656,-73.83802,"(40.72656, -73.83802)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455101,Ambulance,Sedan,,, +09/06/2021,18:21,BROOKLYN,11204,40.628796,-73.98785,"(40.628796, -73.98785)",16 AVENUE,53 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454958,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,4:48,BRONX,10454,40.80549,-73.91031,"(40.80549, -73.91031)",BRUCKNER BOULEVARD,EAST 140 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4454291,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,13:35,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,8,0,0,0,0,0,8,0,Unspecified,Unspecified,,,,4454321,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,14:44,BRONX,10459,40.82186,-73.88834,"(40.82186, -73.88834)",BRUCKNER BOULEVARD,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454624,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +09/02/2021,7:59,BRONX,10474,40.818848,-73.887634,"(40.818848, -73.887634)",FAILE STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4455077,Sedan,Sedan,,, +09/06/2021,18:30,BROOKLYN,11233,40.669975,-73.91988,"(40.669975, -73.91988)",HOWARD AVENUE,SAINT JOHNS PLACE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4454396,Sedan,Bike,,, +09/06/2021,0:15,BROOKLYN,11203,40.65255,-73.93049,"(40.65255, -73.93049)",,,848 UTICA AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4454744,Sedan,Station Wagon/Sport Utility Vehicle,Motorcycle,, +08/25/2021,7:00,MANHATTAN,10004,40.704212,-74.011566,"(40.704212, -74.011566)",,,85 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454983,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,3:06,BROOKLYN,11212,40.65844,-73.91514,"(40.65844, -73.91514)",,,12 NEWPORT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454272,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/06/2021,19:08,BROOKLYN,11205,40.692665,-73.960785,"(40.692665, -73.960785)",,,249 CLASSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454543,Ambulance,,,, +09/06/2021,13:50,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454633,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,9:15,QUEENS,11419,40.69346,-73.81861,"(40.69346, -73.81861)",,,129-13 97 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454298,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/06/2021,17:50,,,,,,LINDEN BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4454441,Sedan,Sedan,Sedan,, +09/01/2021,5:30,BRONX,10463,40.8843,-73.90332,"(40.8843, -73.90332)",WEST 236 STREET,CORLEAR AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454899,Refrigerated Van,Sedan,,, +09/06/2021,17:10,,,40.752754,-73.851906,"(40.752754, -73.851906)",GRAND CENTRAL PARKWAY,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,12:59,BROOKLYN,11236,40.64906,-73.91326,"(40.64906, -73.91326)",DITMAS AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454782,Pick-up Truck,,,, +09/06/2021,17:30,BROOKLYN,11234,40.58635,-73.89665,"(40.58635, -73.89665)",,,3159 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454381,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,2:37,BRONX,10459,40.83128,-73.8903,"(40.83128, -73.8903)",,,1291 HOE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454447,Sedan,,,, +09/06/2021,22:59,BROOKLYN,11213,40.67948,-73.93291,"(40.67948, -73.93291)",FULTON STREET,SCHENECTADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455016,Scooter,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,20:50,MANHATTAN,10002,40.723274,-73.99122,"(40.723274, -73.99122)",,,229 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454893,Sedan,,,, +09/06/2021,2:00,BRONX,10467,40.879745,-73.88467,"(40.879745, -73.88467)",MOSHOLU PARKWAY,JEROME AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454610,Sedan,,,, +09/06/2021,2:45,QUEENS,11411,40.68981,-73.72854,"(40.68981, -73.72854)",,,234-10 118 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454220,Sedan,,,, +09/06/2021,15:04,BRONX,10467,40.878807,-73.86388,"(40.878807, -73.86388)",EAST 213 STREET,HOLLAND AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454724,,,,, +09/06/2021,12:15,,,40.69595,-73.9824,"(40.69595, -73.9824)",TILLARY STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4454357,PK,,,, +09/06/2021,22:40,QUEENS,11413,40.677883,-73.74561,"(40.677883, -73.74561)",MERRICK BOULEVARD,224 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454640,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,20:00,STATEN ISLAND,10306,40.576504,-74.1037,"(40.576504, -74.1037)",HYLAN BOULEVARD,LINCOLN AVENUE,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4454580,Sedan,Sedan,Sedan,, +09/06/2021,9:20,,,40.856388,-73.90177,"(40.856388, -73.90177)",CRESTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,8:05,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",BRUCKNER EXPRESSWAY,PELHAM PARKWAY,,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,,,,4454954,Bus,Sedan,,, +09/06/2021,22:35,,,40.741344,-73.95459,"(40.741344, -73.95459)",BORDEN AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4454509,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +07/31/2021,23:24,MANHATTAN,10012,40.72433,-73.9966,"(40.72433, -73.9966)",,,120 CROSBY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454894,Sedan,,,, +09/06/2021,16:00,MANHATTAN,10031,40.82309,-73.956345,"(40.82309, -73.956345)",WEST 138 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454405,Sedan,,,, +09/06/2021,17:36,BROOKLYN,11212,40.660763,-73.92008,"(40.660763, -73.92008)",,,1154 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454746,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,18:00,BROOKLYN,11217,,,,,,62 ST.MARKS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454874,Sedan,,,, +09/06/2021,14:20,QUEENS,11420,40.677715,-73.81497,"(40.677715, -73.81497)",,,115-22 124 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454446,Sedan,,,, +09/06/2021,22:06,QUEENS,11434,40.662926,-73.76496,"(40.662926, -73.76496)",181 STREET,146 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454645,Sedan,,,, +09/06/2021,2:25,MANHATTAN,10016,40.74577,-73.97043,"(40.74577, -73.97043)",FDR DRIVE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454226,Sedan,,,, +09/06/2021,0:14,BROOKLYN,11239,,,,,,630 -1 LOUISIANA AVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454530,Sedan,,,, +09/06/2021,15:47,,,40.601948,-73.99382,"(40.601948, -73.99382)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454329,Bus,Sedan,,, +09/06/2021,13:01,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4454535,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,6:09,BROOKLYN,11210,40.63633,-73.94705,"(40.63633, -73.94705)",EAST 31 STREET,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454401,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,12:10,BROOKLYN,11208,40.675186,-73.873436,"(40.675186, -73.873436)",PITKIN AVENUE,CHESTNUT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454529,Minicycle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,16:38,,,40.684887,-74.00111,"(40.684887, -74.00111)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/06/2021,22:11,MANHATTAN,10005,40.706013,-74.00882,"(40.706013, -74.00882)",WALL STREET,HANOVER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454466,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,4:06,QUEENS,11105,40.772526,-73.902466,"(40.772526, -73.902466)",,,21-28 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454932,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/06/2021,0:57,QUEENS,11420,40.683002,-73.81955,"(40.683002, -73.81955)",122 STREET,109 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4454132,Sedan,,,, +09/01/2021,18:10,BRONX,10467,40.88131,-73.88141,"(40.88131, -73.88141)",,,3433 KOSSUTH AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4454967,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/06/2021,17:45,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454827,Sedan,,,, +09/05/2021,2:30,BROOKLYN,11203,40.650517,-73.92359,"(40.650517, -73.92359)",KINGS HIGHWAY,SNYDER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4455081,Sedan,Bike,,, +09/06/2021,12:40,,,40.658306,-73.95666,"(40.658306, -73.95666)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454637,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,8:40,QUEENS,11418,40.696453,-73.82682,"(40.696453, -73.82682)",121 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4454297,Sedan,,,, +09/06/2021,10:52,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",WOODHAVEN BOULEVARD,101 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454299,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,16:50,QUEENS,11105,40.77124,-73.9038,"(40.77124, -73.9038)",,,43-20 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454596,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,18:11,STATEN ISLAND,10312,40.543335,-74.164276,"(40.543335, -74.164276)",AMBOY ROAD,RICHMOND AVENUE,,1,0,0,0,0,0,1,0,Passenger Distraction,Unspecified,,,,4454964,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,13:35,QUEENS,11385,40.70041,-73.90368,"(40.70041, -73.90368)",MYRTLE AVENUE,HANCOCK STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4454337,Sedan,Sedan,Sedan,, +09/06/2021,15:25,BRONX,10474,40.81636,-73.891815,"(40.81636, -73.891815)",LAFAYETTE AVENUE,TIFFANY STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4454626,Sedan,,,, +09/03/2021,16:33,,,40.85876,-73.89736,"(40.85876, -73.89736)",VALENTINE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454991,Sedan,Moped,,, +09/06/2021,15:33,BROOKLYN,11236,40.6285,-73.89793,"(40.6285, -73.89793)",SEAVIEW AVENUE,EAST 86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:25,,,,,,,,101 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454680,Bike,Bike,,, +09/01/2021,13:55,,,40.821068,-73.89894,"(40.821068, -73.89894)",EAST 163 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455076,Sedan,Sedan,,, +09/06/2021,2:00,,,40.833065,-73.85974,"(40.833065, -73.85974)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454237,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,16:10,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454597,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,16:20,,,40.846878,-73.920616,"(40.846878, -73.920616)",UNIVERSITY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454657,Sedan,,,, +09/06/2021,20:27,QUEENS,11693,40.58646,-73.81544,"(40.58646, -73.81544)",ROCKAWAY BEACH BOULEVARD,BEACH 92 STREET,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4454735,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,7:40,BROOKLYN,11233,40.6717,-73.91458,"(40.6717, -73.91458)",,,1621 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454273,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,2:30,QUEENS,11385,40.69993,-73.90588,"(40.69993, -73.90588)",CYPRESS AVENUE,CORNELIA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454335,Sedan,Sedan,,, +08/30/2021,13:00,,,40.594334,-73.990944,"(40.594334, -73.990944)",25 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455021,Sedan,,,, +09/04/2021,17:35,,,40.730194,-73.887566,"(40.730194, -73.887566)",GRAND AVENUE,74 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455037,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,17:00,QUEENS,11361,40.757656,-73.78229,"(40.757656, -73.78229)",NORTHERN BOULEVARD,201 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454366,Sedan,,,, +09/06/2021,20:50,BROOKLYN,11210,40.636215,-73.94872,"(40.636215, -73.94872)",,,2918 FARRAGUT ROAD,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454491,Sedan,E-Bike,,, +08/29/2021,18:20,MANHATTAN,10036,40.760353,-73.99124,"(40.760353, -73.99124)",9 AVENUE,WEST 45 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4454994,Sedan,E-Bike,,, +09/06/2021,0:57,,,40.83335,-73.93524,"(40.83335, -73.93524)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454822,Sedan,Sedan,,, +09/05/2021,20:50,BROOKLYN,11204,40.62591,-73.983406,"(40.62591, -73.983406)",,,5310 18 AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4454957,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,7:52,,,40.82082,-73.91562,"(40.82082, -73.91562)",EAST 156 STREET,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4454289,Sedan,Moped,,, +09/06/2021,19:55,BROOKLYN,11212,40.66827,-73.90263,"(40.66827, -73.90263)",JUNIUS STREET,SUTTER AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454397,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,0:51,QUEENS,11434,40.66362,-73.777176,"(40.66362, -73.777176)",ROCKAWAY BOULEVARD,144 TERRACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,18:55,QUEENS,11355,40.74831,-73.82599,"(40.74831, -73.82599)",MAIN STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454359,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,17:11,,,40.85119,-73.844315,"(40.85119, -73.844315)",EASTCHESTER ROAD,MORRIS PARK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454590,Sedan,,,, +09/06/2021,16:00,QUEENS,11434,40.685276,-73.77241,"(40.685276, -73.77241)",MERRICK BOULEVARD,VICTORIA ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,Unspecified,4454348,Sedan,Sedan,Sedan,Sedan,Sedan +09/06/2021,13:15,,,,,,HAMILTON AVENUE,HICKS STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454913,Sedan,Sedan,,, +09/06/2021,14:34,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY SOUTH,,1,0,0,0,0,0,1,0,Drugs (illegal),,,,,4454682,Sedan,,,, +09/06/2021,2:25,QUEENS,11417,40.678944,-73.83447,"(40.678944, -73.83447)",105 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4454432,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,0:00,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454618,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,11:38,,,40.57858,-73.9884,"(40.57858, -73.9884)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454720,Sedan,,,, +09/06/2021,14:20,QUEENS,11411,40.68756,-73.72773,"(40.68756, -73.72773)",,,236-06 119 AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454644,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:30,,,40.579212,-73.976265,"(40.579212, -73.976265)",SHEEPSHEAD BAY ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4454480,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +08/31/2021,8:35,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4454982,Bus,Sedan,,, +09/06/2021,14:40,BROOKLYN,11208,40.682564,-73.87605,"(40.682564, -73.87605)",,,3225 FULTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454416,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,12:20,STATEN ISLAND,10312,40.546707,-74.19913,"(40.546707, -74.19913)",HUGUENOT AVENUE,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454901,Pick-up Truck,Sedan,,, +09/06/2021,20:07,BROOKLYN,11213,40.665916,-73.92547,"(40.665916, -73.92547)",EAST NEW YORK AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454404,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,0:54,BRONX,10469,40.8628,-73.84539,"(40.8628, -73.84539)",MACE AVENUE,MORGAN AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4454211,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,15:00,QUEENS,11432,40.703342,-73.80021,"(40.703342, -73.80021)",PARSONS BOULEVARD,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454937,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,14:00,,,40.87626,-73.90395,"(40.87626, -73.90395)",BAILEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454322,Sedan,Box Truck,,, +09/06/2021,19:50,,,,,,BOSTON ROAD,EAST 169 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Aggressive Driving/Road Rage,,,,4454450,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/24/2021,21:00,QUEENS,11363,40.776627,-73.74399,"(40.776627, -73.74399)",,,249-22 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455108,Station Wagon/Sport Utility Vehicle,,,, +08/20/2021,15:00,QUEENS,11102,40.768124,-73.92891,"(40.768124, -73.92891)",,,21-41 30 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454977,Sedan,,,, +09/06/2021,0:00,BRONX,10457,40.854996,-73.89515,"(40.854996, -73.89515)",,,4506 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454848,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/06/2021,14:20,MANHATTAN,10128,40.77855,-73.951256,"(40.77855, -73.951256)",EAST 87 STREET,2 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454458,Sedan,E-Scooter,,, +09/06/2021,10:30,,,40.583057,-73.973114,"(40.583057, -73.973114)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4454569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle, +09/05/2021,8:03,MANHATTAN,10036,40.760403,-73.98748,"(40.760403, -73.98748)",WEST 47 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,5:56,QUEENS,11419,40.684055,-73.82312,"(40.684055, -73.82312)",,,107-02 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454439,Pick-up Truck,Sedan,,, +09/06/2021,20:30,,,40.677834,-73.88509,"(40.677834, -73.88509)",ATLANTIC AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454382,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,19:17,,,40.561707,-74.172264,"(40.561707, -74.172264)",LADD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454923,Motorcycle,,,, +09/06/2021,10:30,QUEENS,11368,40.757065,-73.87113,"(40.757065, -73.87113)",,,97-11 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454946,Box Truck,,,, +09/06/2021,8:15,BRONX,10458,40.865875,-73.891075,"(40.865875, -73.891075)",,,2670 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454609,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,20:29,,,40.676743,-73.93316,"(40.676743, -73.93316)",PACIFIC STREET,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4454790,Motorcycle,,,, +09/06/2021,20:25,QUEENS,11434,40.6769,-73.78158,"(40.6769, -73.78158)",BAISLEY BOULEVARD,LAKEVIEW LANE,,1,0,0,0,0,0,1,0,Turning Improperly,Unsafe Speed,,,,4454469,Sedan,Motorcycle,,, +09/06/2021,15:50,BROOKLYN,11208,40.674385,-73.87897,"(40.674385, -73.87897)",ATKINS AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4454531,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/25/2021,14:22,BRONX,10459,40.819504,-73.897896,"(40.819504, -73.897896)",DAWSON STREET,ROGERS PLACE,,1,0,0,0,1,0,0,0,Unsafe Speed,Other Vehicular,,,,4454990,Sedan,Bike,,, +08/12/2021,10:30,BRONX,10463,40.88145,-73.91685,"(40.88145, -73.91685)",,,2700 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454890,Sedan,Sedan,Sedan,, +09/06/2021,16:50,,,,,,JEROME AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454536,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,5:05,BROOKLYN,11226,40.643063,-73.95166,"(40.643063, -73.95166)",CLARENDON ROAD,ROGERS AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4455082,Sedan,Sedan,,, +09/02/2021,18:06,,,40.75024,-73.998604,"(40.75024, -73.998604)",WEST 29 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4454895,Bike,Moped,,, +09/06/2021,0:10,QUEENS,11421,40.692318,-73.8609,"(40.692318, -73.8609)",JAMAICA AVENUE,FOREST PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454164,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,10:40,,,40.770054,-73.914406,"(40.770054, -73.914406)",35 STREET,,,1,0,0,0,1,0,0,0,Fatigued/Drowsy,,,,,4454968,Bike,,,, +09/02/2021,16:42,MANHATTAN,10030,,,,WEST 143 STREET,BRADHURST AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4454924,Sedan,Sedan,,, +09/06/2021,14:45,BROOKLYN,11208,40.668358,-73.87421,"(40.668358, -73.87421)",,,720 LOGAN STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4454415,Station Wagon/Sport Utility Vehicle,Refrigerated Van,,, +09/06/2021,19:30,QUEENS,11411,40.686966,-73.73832,"(40.686966, -73.73832)",226 STREET,FRANCIS LEWIS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,,,,4454638,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,12:00,,,40.846863,-73.90142,"(40.846863, -73.90142)",EAST 176 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454300,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,20:23,BROOKLYN,11235,40.58706,-73.949066,"(40.58706, -73.949066)",,,3041 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454629,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,11:00,,,40.544487,-74.176506,"(40.544487, -74.176506)",ANNADALE ROAD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454952,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,11:38,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454870,Motorcycle,,,, +09/06/2021,23:39,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454477,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,21:30,BROOKLYN,11219,40.645008,-73.99505,"(40.645008, -73.99505)",,,925 40 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454507,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,14:25,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454759,Sedan,Sedan,,, +09/06/2021,19:20,MANHATTAN,10025,40.795525,-73.97594,"(40.795525, -73.97594)",WEST 95 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454593,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,16:24,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454346,Sedan,,,, +09/06/2021,22:36,,,40.625256,-73.9987,"(40.625256, -73.9987)",64 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454371,Sedan,,,, +09/04/2021,12:45,BRONX,10474,40.810192,-73.88632,"(40.810192, -73.88632)",OAK POINT AVENUE,COSTER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455074,Sedan,,,, +09/06/2021,7:00,BRONX,10472,40.83003,-73.86786,"(40.83003, -73.86786)",,,1205 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454238,Station Wagon/Sport Utility Vehicle,,,, +09/04/2021,14:20,,,,,,,,Beach 197 Rockaway Breezy Blvd,1,0,0,0,1,0,0,0,Passenger Distraction,Other Vehicular,,,,4455004,Sedan,Bike,,, +09/02/2021,8:38,,,40.6656,-73.74648,"(40.6656, -73.74648)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,,4454963,Sedan,Sedan,Sedan,Sedan, +09/06/2021,17:23,,,40.703697,-73.966545,"(40.703697, -73.966545)",KENT AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4454349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,21:45,BROOKLYN,11208,40.68857,-73.8723,"(40.68857, -73.8723)",,,58 HEMLOCK STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4454391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/06/2021,3:55,QUEENS,11432,40.717564,-73.781494,"(40.717564, -73.781494)",,,85-14 AVON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/06/2021,15:25,BROOKLYN,11218,40.64456,-73.98836,"(40.64456, -73.98836)",FORT HAMILTON PARKWAY,36 STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4454662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,12:30,BRONX,10469,40.87872,-73.850914,"(40.87872, -73.850914)",,,1413 NEEDHAM AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4454697,Sedan,Sedan,,, +09/06/2021,2:04,QUEENS,11372,40.753677,-73.87197,"(40.753677, -73.87197)",,,34-59 JUNCTION BOULEVARD,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4454236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,12:15,,,40.66632,-73.83481,"(40.66632, -73.83481)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4454445,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,4:32,,,40.76623,-73.915306,"(40.76623, -73.915306)",28 AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4454598,Sedan,Sedan,Sedan,, +09/06/2021,1:18,BROOKLYN,11207,40.66996,-73.89537,"(40.66996, -73.89537)",,,309 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,Unspecified,,,4454527,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,10:00,BRONX,10461,40.85187,-73.853775,"(40.85187, -73.853775)",RHINELANDER AVENUE,TOMLINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454296,Sedan,,,, +09/06/2021,10:14,BROOKLYN,11236,40.643204,-73.90929,"(40.643204, -73.90929)",REMSEN AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4454608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,3:37,,,40.694576,-73.95615,"(40.694576, -73.95615)",BEDFORD AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4454223,Sedan,Sedan,,, +09/06/2021,17:27,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4454398,Sedan,,,, +09/06/2021,15:00,QUEENS,11426,40.729645,-73.71979,"(40.729645, -73.71979)",COMMONWEALTH BOULEVARD,87 DRIVE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454648,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,2:27,BRONX,10461,40.85597,-73.84278,"(40.85597, -73.84278)",,,1526 RHINELANDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454587,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,11:15,BROOKLYN,11214,40.599255,-73.9894,"(40.599255, -73.9894)",86 STREET,24 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454333,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/05/2021,4:14,,,40.76663,-73.88903,"(40.76663, -73.88903)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454944,Sedan,Sedan,,, +09/01/2021,6:30,MANHATTAN,10038,40.71125,-74.0003,"(40.71125, -74.0003)",,,388 PEARL STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454903,PK,,,, +09/06/2021,2:06,BRONX,10451,40.82325,-73.90918,"(40.82325, -73.90918)",,,3214 3 AVENUE,2,0,0,0,0,0,2,0,Outside Car Distraction,Unspecified,Unspecified,,,4454451,Sedan,Sedan,Taxi,, +09/06/2021,22:50,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454433,Sedan,Sedan,,, +09/06/2021,20:30,MANHATTAN,10032,40.83599,-73.944695,"(40.83599, -73.944695)",,,25 FORT WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454821,SCOOTER GA,Sedan,,, +09/04/2021,17:55,STATEN ISLAND,10312,40.56062,-74.17494,"(40.56062, -74.17494)",CROSSFIELD AVENUE,BERRY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454883,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,23:45,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454459,Sedan,Sedan,,, +09/06/2021,11:00,BROOKLYN,11212,40.655006,-73.905075,"(40.655006, -73.905075)",OSBORN STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454325,Sedan,,,, +09/06/2021,11:00,BROOKLYN,11220,40.642864,-74.01266,"(40.642864, -74.01266)",5 AVENUE,54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454287,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,3:20,BROOKLYN,11229,40.606346,-73.95273,"(40.606346, -73.95273)",OCEAN AVENUE,AVENUE R,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4454956,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,6:30,BRONX,10469,40.868332,-73.85094,"(40.868332, -73.85094)",,,2937 THROOP AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4454617,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,11:20,QUEENS,11385,40.704266,-73.85629,"(40.704266, -73.85629)",,,81-55 WOODHAVEN BOULEVARD,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4454715,Tanker,Sedan,Station Wagon/Sport Utility Vehicle,, +09/06/2021,0:35,BROOKLYN,11226,40.644215,-73.965744,"(40.644215, -73.965744)",,,1410 BEVERLEY ROAD,1,0,0,0,0,0,0,0,Unspecified,,,,,4454360,E-Bike,,,, +09/06/2021,20:25,BROOKLYN,11224,40.576626,-73.98478,"(40.576626, -73.98478)",WEST 17 STREET,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454481,Sedan,,,, +09/06/2021,13:00,QUEENS,11429,40.7146,-73.74023,"(40.7146, -73.74023)",HEMPSTEAD AVENUE,217 PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454643,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:25,STATEN ISLAND,10301,40.638844,-74.08471,"(40.638844, -74.08471)",WINTER AVENUE,BISMARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454561,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,8:02,BROOKLYN,11209,40.625492,-74.0356,"(40.625492, -74.0356)",,,105 85 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4454282,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,2:40,BRONX,10462,40.8561,-73.86763,"(40.8561, -73.86763)",,,2190 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454213,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/06/2021,22:04,QUEENS,11355,40.75584,-73.83448,"(40.75584, -73.83448)",41 AVENUE,HAIGHT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454403,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,15:15,BRONX,10469,40.87015,-73.84562,"(40.87015, -73.84562)",,,1381 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4455035,PC,,,, +09/06/2021,11:15,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4454496,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/06/2021,19:25,,,,,,BORDEN AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454364,Sedan,Sedan,,, +09/06/2021,18:50,MANHATTAN,10013,40.715157,-74.00212,"(40.715157, -74.00212)",WORTH STREET,CENTRE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454908,Sedan,,,, +09/06/2021,14:30,BROOKLYN,11220,40.642796,-74.00197,"(40.642796, -74.00197)",8 AVENUE,47 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454939,E-Scooter,,,, +09/06/2021,0:00,BRONX,10461,40.841972,-73.84404,"(40.841972, -73.84404)",,,2734 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454829,Sedan,Sedan,,, +09/02/2021,14:00,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4454979,Sedan,,,, +09/06/2021,2:35,BROOKLYN,11208,40.666832,-73.87739,"(40.666832, -73.87739)",,,482 BERRIMAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454424,Sedan,,,, +09/01/2021,19:52,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",AVENUE I,OCEAN PARKWAY,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4454878,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,18:45,BROOKLYN,11221,40.68626,-73.93712,"(40.68626, -73.93712)",,,526 MADISON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455023,Sedan,,,, +09/06/2021,5:00,BRONX,10455,40.81878,-73.916084,"(40.81878, -73.916084)",,,413 EAST 153 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454600,Sedan,,,, +09/06/2021,3:56,BROOKLYN,11236,40.6481,-73.91474,"(40.6481, -73.91474)",REMSEN AVENUE,DITMAS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4455083,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,10:50,,,40.78866,-73.778625,"(40.78866, -73.778625)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,,,,,4454309,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,22:45,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454639,Sedan,Sedan,,, +08/27/2021,2:01,,,40.753994,-73.94244,"(40.753994, -73.94244)",21 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454961,AMBU,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,23:04,BRONX,10472,40.83361,-73.86668,"(40.83361, -73.86668)",,,1323 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454594,Sedan,Sedan,Sedan,, +09/06/2021,11:45,BROOKLYN,11211,40.71507,-73.95968,"(40.71507, -73.95968)",,,223 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454294,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/06/2021,6:00,QUEENS,11434,40.688362,-73.77663,"(40.688362, -73.77663)",MERRICK BOULEVARD,116 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4454355,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,16:50,BROOKLYN,11217,40.68354,-73.98438,"(40.68354, -73.98438)",NEVINS STREET,WYCKOFF STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454733,Taxi,,,, +09/06/2021,0:00,MANHATTAN,10016,40.743584,-73.979675,"(40.743584, -73.979675)",,,443 3 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454708,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,10:30,,,40.67693,-74.00211,"(40.67693, -74.00211)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454270,Sedan,Sedan,,, +09/02/2021,16:30,BROOKLYN,11233,40.680363,-73.92984,"(40.680363, -73.92984)",,,145 CHAUNCEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454981,Sedan,,,, +09/06/2021,14:30,QUEENS,11416,40.686768,-73.84393,"(40.686768, -73.84393)",,,98-21 97 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454871,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,15:00,MANHATTAN,10038,40.70808,-74.00341,"(40.70808, -74.00341)",PEARL STREET,BEEKMAN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454468,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,17:09,,,40.636826,-74.011765,"(40.636826, -74.011765)",60 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,16:00,MANHATTAN,10003,40.735313,-73.994125,"(40.735313, -73.994125)",WEST 13 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4454926,Sedan,Moped,,, +09/06/2021,2:56,QUEENS,11432,40.70576,-73.80167,"(40.70576, -73.80167)",PARSONS BOULEVARD,89 AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4454166,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/03/2021,21:22,BROOKLYN,11233,40.678566,-73.92465,"(40.678566, -73.92465)",,,14 BUFFALO AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455068,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,1:00,BROOKLYN,11208,40.676327,-73.86547,"(40.676327, -73.86547)",PITKIN AVENUE,GRANT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454526,Sedan,Sedan,,, +09/06/2021,4:20,,,40.844063,-73.921,"(40.844063, -73.921)",WEST 172 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4454540,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +09/06/2021,14:00,QUEENS,11106,40.763416,-73.92844,"(40.763416, -73.92844)",CRESCENT STREET,BROADWAY,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4454969,Sedan,E-Bike,,, +09/06/2021,0:00,BROOKLYN,11239,40.652462,-73.87658,"(40.652462, -73.87658)",,,590 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454414,Sedan,Sedan,,, +09/06/2021,19:50,BROOKLYN,11210,40.63465,-73.93727,"(40.63465, -73.93727)",GLENWOOD ROAD,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454771,Sedan,Sedan,,, +09/06/2021,20:10,QUEENS,11420,40.67013,-73.80938,"(40.67013, -73.80938)",133 AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,23:00,BRONX,10467,40.863773,-73.87039,"(40.863773, -73.87039)",,,2526 BRONX PARK EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4455011,Sedan,,,, +09/06/2021,14:20,BROOKLYN,11239,40.655785,-73.86289,"(40.655785, -73.86289)",,,519 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454532,Sedan,,,, +09/06/2021,17:25,,,40.72293,-73.847336,"(40.72293, -73.847336)",QUEENS BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,2:42,BROOKLYN,11236,40.642574,-73.90235,"(40.642574, -73.90235)",EAST 95 STREET,FLATLANDS AVENUE,,8,0,0,0,0,0,8,0,Driver Inattention/Distraction,Other Vehicular,,,,4454235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,21:41,BROOKLYN,11235,40.58197,-73.95495,"(40.58197, -73.95495)",CASS PLACE,CORBIN PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4454630,Sedan,Sedan,Sedan,Sedan, +09/06/2021,12:35,,,40.836407,-73.94852,"(40.836407, -73.94852)",WEST 158 STREET,RIVERSIDE DRIVE WEST,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4454808,Sedan,Bike,,, +09/06/2021,17:45,BROOKLYN,11212,40.669197,-73.91407,"(40.669197, -73.91407)",,,1607 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454392,E-Bike,Sedan,,, +09/06/2021,16:00,MANHATTAN,10016,40.744377,-73.974915,"(40.744377, -73.974915)",,,321 EAST 34 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4454370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,15:41,BROOKLYN,11219,40.63283,-74.00516,"(40.63283, -74.00516)",60 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454663,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,0:00,STATEN ISLAND,10312,40.55485,-74.16853,"(40.55485, -74.16853)",RICHMOND AVENUE,LEVERETT AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4454989,Sedan,Sedan,,, +09/06/2021,23:50,BROOKLYN,11212,40.672432,-73.91054,"(40.672432, -73.91054)",,,1543 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454437,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,12:00,BROOKLYN,11217,40.6775,-73.97974,"(40.6775, -73.97974)",,,172 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454476,Sedan,Bike,,, +08/27/2021,23:45,,,40.583908,-73.98599,"(40.583908, -73.98599)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:47,MANHATTAN,10001,40.75702,-74.00494,"(40.75702, -74.00494)",12 AVENUE,WEST 34 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4454896,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,20:00,QUEENS,11691,40.597378,-73.77595,"(40.597378, -73.77595)",,,461 BEACH 44 STREET,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4454505,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,6:10,BROOKLYN,11208,40.67267,-73.872696,"(40.67267, -73.872696)",,,1223 SUTTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454425,Box Truck,Box Truck,,, +08/20/2021,15:40,BROOKLYN,11214,40.607002,-73.988556,"(40.607002, -73.988556)",77 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454879,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,12:25,BRONX,10471,40.906475,-73.904175,"(40.906475, -73.904175)",,,5661 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454888,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:25,STATEN ISLAND,10309,40.554684,-74.21738,"(40.554684, -74.21738)",,,2453 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4454905,Sedan,,,, +09/06/2021,13:00,,,40.815437,-73.924,"(40.815437, -73.924)",EAST 144 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4454453,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/01/2022,16:20,BROOKLYN,11234,40.61529,-73.91846,"(40.61529, -73.91846)",,,5815 AVENUE T,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4499706,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,15:30,BROOKLYN,11223,,,,,,24 SLOAN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499293,Sedan,,,, +02/01/2022,8:00,BROOKLYN,11233,40.681236,-73.928734,"(40.681236, -73.928734)",REID AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499717,Sedan,,,, +02/01/2022,6:19,QUEENS,11419,40.690662,-73.81033,"(40.690662, -73.81033)",105 AVENUE,VANWYCK EXPRESSWAY,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4499010,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,11:30,MANHATTAN,10031,40.825905,-73.94712,"(40.825905, -73.94712)",WEST 146 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4499835,Sedan,Bike,,, +01/28/2022,23:10,BRONX,10458,40.856693,-73.88465,"(40.856693, -73.88465)",EAST 189 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499629,Taxi,,,, +02/01/2022,23:00,QUEENS,11420,40.68083,-73.81034,"(40.68083, -73.81034)",,,114-36 131 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499503,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,8:34,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499154,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,11:55,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499160,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,17:35,BRONX,10467,40.884983,-73.86204,"(40.884983, -73.86204)",EAST 221 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499409,Sedan,Ambulance,,, +01/28/2022,19:41,MANHATTAN,10013,40.725674,-74.00578,"(40.725674, -74.00578)",VARICK STREET,SPRING STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499815,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,5:50,,,40.666637,-73.7646,"(40.666637, -73.7646)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,,,,4499186,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,20:30,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",ROCKAWAY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499477,Sedan,,,, +02/01/2022,16:00,,,40.895447,-73.88002,"(40.895447, -73.88002)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499221,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/09/2022,12:54,,,40.63175,-74.15123,"(40.63175, -74.15123)",WALKER STREET,LAKE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4499575,Bus,Sedan,,, +02/01/2022,8:50,BROOKLYN,11235,40.587193,-73.940414,"(40.587193, -73.940414)",VOORHIES AVENUE,EAST 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499105,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,16:30,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,19:20,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499557,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,13:40,,,40.733612,-73.999565,"(40.733612, -73.999565)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4499606,Sedan,Box Truck,,, +02/01/2022,5:30,BRONX,10474,40.8076,-73.87888,"(40.8076, -73.87888)",,,800 FOOD CENTER DRIVE,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4499113,Pick-up Truck,,,, +02/01/2022,13:45,,,40.694065,-73.85106,"(40.694065, -73.85106)",94 STREET,JAMAICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499185,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,5:05,BRONX,10467,40.87134,-73.86207,"(40.87134, -73.86207)",,,846 BURKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499212,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,15:00,BROOKLYN,11211,40.708305,-73.95755,"(40.708305, -73.95755)",,,305 BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499317,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/27/2022,12:50,BRONX,10457,40.847794,-73.889114,"(40.847794, -73.889114)",,,2082 CROTONA AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4499628,Sedan,,,, +01/12/2022,6:14,QUEENS,11432,40.72162,-73.77672,"(40.72162, -73.77672)",188 STREET,MCLAUGHLIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,5:30,BROOKLYN,11237,,,,,,294 SUYDAM STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4499124,Sedan,Sedan,Sedan,Sedan, +02/01/2022,17:00,,,40.73236,-73.72256,"(40.73236, -73.72256)",CROSS ISLAND PARKWAY,85 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499233,Sedan,Sedan,,, +02/01/2022,2:10,BRONX,10456,40.818607,-73.904785,"(40.818607, -73.904785)",,,764 TINTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4499085,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/01/2022,13:15,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499204,,,,, +02/01/2022,23:30,,,40.600956,-73.98607,"(40.600956, -73.98607)",STILLWELL AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4499404,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,11:17,MANHATTAN,10016,40.748653,-73.97916,"(40.748653, -73.97916)",,,113 EAST 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499191,Sedan,Sedan,,, +02/01/2022,18:02,,,,,,,,2423 Utica Avenue,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4499705,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +01/26/2022,14:00,QUEENS,11367,40.727272,-73.81718,"(40.727272, -73.81718)",150 STREET,72 ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4499577,Sedan,,,, +02/01/2022,4:20,BROOKLYN,11212,40.66451,-73.91723,"(40.66451, -73.91723)",BLAKE AVENUE,LEGION STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499261,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,8:23,BROOKLYN,11201,40.70136,-73.98286,"(40.70136, -73.98286)",GOLD STREET,YORK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499438,Sedan,Sedan,,, +02/01/2022,11:10,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499600,Station Wagon/Sport Utility Vehicle,Convertible,,, +02/01/2022,6:10,,,40.639256,-73.968796,"(40.639256, -73.968796)",CORTELYOU ROAD,CONEY ISLAND AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4499522,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,20:22,MANHATTAN,10019,40.764935,-73.987885,"(40.764935, -73.987885)",,,786 9 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499306,Taxi,E-Scooter,,, +01/25/2022,12:15,QUEENS,11368,40.754955,-73.85384,"(40.754955, -73.85384)",114 STREET,37 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4499655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +02/01/2022,8:00,QUEENS,11413,40.675564,-73.741806,"(40.675564, -73.741806)",,,134-49 229 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499248,Sedan,,,, +02/01/2022,13:00,BROOKLYN,11234,40.61448,-73.92641,"(40.61448, -73.92641)",UTICA AVENUE,FILLMORE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499693,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,18:03,QUEENS,11385,40.701046,-73.89153,"(40.701046, -73.89153)",MYRTLE AVENUE,64 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499240,Sedan,Sedan,,, +02/01/2022,0:52,QUEENS,11385,40.712902,-73.90608,"(40.712902, -73.90608)",METROPOLITAN AVENUE,FOREST AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4499030,Sedan,Sedan,,, +01/30/2022,23:30,,,40.691097,-73.927704,"(40.691097, -73.927704)",PATCHEN AVENUE,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499720,Taxi,,,, +02/01/2022,8:53,,,40.673008,-73.78809,"(40.673008, -73.78809)",ROCKAWAY BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499176,Sedan,,,, +02/01/2022,17:37,BROOKLYN,11230,40.622265,-73.96572,"(40.622265, -73.96572)",AVENUE K,EAST 10 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499280,Sedan,Sedan,,, +01/29/2022,15:00,BROOKLYN,11220,40.640263,-74.00233,"(40.640263, -74.00233)",,,868 50 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499636,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,19:41,BRONX,10455,40.815346,-73.89724,"(40.815346, -73.89724)",,,761 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499287,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,17:00,BRONX,10467,40.88156,-73.87481,"(40.88156, -73.87481)",,,268 EAST 211 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499383,Sedan,,,, +02/01/2022,9:00,BROOKLYN,11235,40.5906,-73.94679,"(40.5906, -73.94679)",,,2503 EAST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499642,Sedan,,,, +02/01/2022,16:37,BRONX,10462,40.84459,-73.864914,"(40.84459, -73.864914)",,,1741 HUNT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499271,Snow Plow,Sedan,,, +02/01/2022,8:31,,,,,,ROCKAWAY PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499224,Sedan,,,, +01/16/2022,19:00,BROOKLYN,11234,40.6287,-73.91926,"(40.6287, -73.91926)",EAST 59 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499709,Station Wagon/Sport Utility Vehicle,,,, +01/20/2022,22:14,,,40.88756,-73.866394,"(40.88756, -73.866394)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4499738,Sedan,,,, +02/01/2022,17:38,BRONX,10472,40.82419,-73.88298,"(40.82419, -73.88298)",,,1040 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,Unspecified,4499425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +01/30/2022,14:20,MANHATTAN,10027,40.811985,-73.94375,"(40.811985, -73.94375)",,,126 WEST 131 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499616,Sedan,,,, +02/01/2022,22:18,BROOKLYN,11235,40.589718,-73.94665,"(40.589718, -73.94665)",,,2560 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499296,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,14:05,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",TINTON AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499346,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,17:20,BROOKLYN,11203,40.642914,-73.93428,"(40.642914, -73.93428)",,,751 EAST 45 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499666,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,20:05,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",BRUCKNER BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4499368,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,0:00,BROOKLYN,11201,40.686096,-73.99637,"(40.686096, -73.99637)",CLINTON STREET,KANE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4499681,Sedan,Bike,,, +02/01/2022,2:13,BRONX,10458,40.867256,-73.88363,"(40.867256, -73.88363)",WEBSTER AVENUE,EAST BEDFORD PARK BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499015,Taxi,,,, +10/23/2021,20:10,BRONX,10475,,,,,,4330 BOSTON ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4470385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,19:06,,,40.819157,-73.96038,"(40.819157, -73.96038)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4499710,Sedan,,,, +02/01/2022,19:30,QUEENS,11429,40.718502,-73.73527,"(40.718502, -73.73527)",JAMAICA AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499247,Sedan,,,, +02/01/2022,22:34,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,Unspecified,,,4499507,Taxi,Van,Station Wagon/Sport Utility Vehicle,, +02/01/2022,9:00,MANHATTAN,10031,40.82335,-73.94913,"(40.82335, -73.94913)",,,500 WEST 142 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499167,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,14:29,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499481,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,19:45,,,40.579376,-73.96311,"(40.579376, -73.96311)",OCEANVIEW AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499749,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,8:00,STATEN ISLAND,10309,40.517242,-74.20777,"(40.517242, -74.20777)",,,413 WOODVALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499637,Sedan,Sedan,,, +02/01/2022,17:40,BROOKLYN,11207,40.68309,-73.910774,"(40.68309, -73.910774)",BROADWAY,MOFFAT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499301,Sedan,Sedan,,, +02/01/2022,21:21,,,40.74357,-73.83772,"(40.74357, -73.83772)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4499327,Sedan,,,, +02/01/2022,21:40,,,40.785366,-73.84482,"(40.785366, -73.84482)",14 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499610,Sedan,Sedan,,, +02/01/2022,15:52,BROOKLYN,11219,40.62368,-73.99772,"(40.62368, -73.99772)",65 STREET,NEW UTRECHT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499405,Sedan,Box Truck,,, +02/01/2022,13:55,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499190,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,12:50,BRONX,10470,40.898876,-73.85539,"(40.898876, -73.85539)",NEREID AVENUE,RICHARDSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499218,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,9:20,BRONX,10461,40.846405,-73.842896,"(40.846405, -73.842896)",WATERS PLACE,INDUSTRIAL STREET,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4499106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,16:45,BRONX,10466,40.89825,-73.85786,"(40.89825, -73.85786)",CARPENTER AVENUE,EAST 237 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499412,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,6:55,BROOKLYN,11226,40.634907,-73.96132,"(40.634907, -73.96132)",FOSTER AVENUE,EAST 17 STREET,,0,1,0,1,0,0,0,0,Traffic Control Disregarded,,,,,4499277,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,5:31,,,40.67812,-74.00316,"(40.67812, -74.00316)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4499808,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,10:33,,,40.64404,-73.877525,"(40.64404, -73.877525)",SEAVIEW AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499197,Pick-up Truck,Bus,,, +02/01/2022,11:00,,,,,,9 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499225,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,11:00,QUEENS,11378,,,,,,56-20 59 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499620,Sedan,,,, +01/28/2022,8:15,BRONX,10455,,,,CONCORD AVENUE,EAST 147 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4499565,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/27/2022,22:50,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499583,Bike,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,11:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4454758,Sedan,Sedan,,, +02/01/2022,3:40,MANHATTAN,10022,40.759586,-73.968056,"(40.759586, -73.968056)",3 AVENUE,EAST 56 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499103,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,12:00,,,,,,MACOMBS DAM BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499342,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,4:12,MANHATTAN,10031,40.825138,-73.9514,"(40.825138, -73.9514)",BROADWAY,WEST 143 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499152,Sedan,Sedan,,, +02/01/2022,18:16,BRONX,10460,40.841087,-73.86449,"(40.841087, -73.86449)",EAST TREMONT AVENUE,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499423,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,3:23,BROOKLYN,11208,40.675938,-73.86823,"(40.675938, -73.86823)",AUTUMN AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499084,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle,, +02/01/2022,18:54,,,40.84002,-73.8373,"(40.84002, -73.8373)",EAST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499234,Motorscooter,Sedan,,, +02/01/2022,7:35,QUEENS,11367,40.727337,-73.82211,"(40.727337, -73.82211)",,,71-12 MAIN STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499548,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,11:38,BROOKLYN,11204,40.611317,-73.99254,"(40.611317, -73.99254)",,,1971 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4499399,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,11:50,BRONX,10458,40.863647,-73.8918,"(40.863647, -73.8918)",EAST 193 STREET,MARION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4499184,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/28/2022,14:00,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BARTOW AVENUE,BAYCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499726,Taxi,Sedan,,, +01/31/2022,12:00,BROOKLYN,11220,40.64063,-74.025734,"(40.64063, -74.025734)",65 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,13:47,BROOKLYN,11218,40.635532,-73.97264,"(40.635532, -73.97264)",,,514 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499282,Sedan,,,, +02/01/2022,22:22,QUEENS,11411,40.696217,-73.7436,"(40.696217, -73.7436)",SPRINGFIELD BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499265,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,0:00,STATEN ISLAND,10314,40.6094,-74.11657,"(40.6094, -74.11657)",SLOSSON AVENUE,SCHMIDTS LANE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499627,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,9:44,,,40.90414,-73.905014,"(40.90414, -73.905014)",RIVERDALE AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499649,Sedan,,,, +02/01/2022,13:35,BRONX,10451,,,,,,699 MORRIS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499290,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +02/01/2022,10:30,BROOKLYN,11218,40.641537,-73.981766,"(40.641537, -73.981766)",35 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499177,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,6:15,MANHATTAN,10028,40.777874,-73.95175,"(40.777874, -73.95175)",EAST 86 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499122,Sedan,,,, +01/30/2022,9:00,BROOKLYN,11211,40.706463,-73.96079,"(40.706463, -73.96079)",LEE AVENUE,WILSON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499785,,,,, +02/01/2022,16:35,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499437,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,11:35,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499599,Sedan,Sedan,,, +02/01/2022,13:00,,,,,,SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499205,Sedan,,,, +02/01/2022,21:30,MANHATTAN,10003,40.730816,-73.989006,"(40.730816, -73.989006)",,,48 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499307,Sedan,Bike,,, +02/01/2022,22:43,BROOKLYN,11232,40.645596,-73.999054,"(40.645596, -73.999054)",8 AVENUE,42 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499520,Sedan,Sedan,,, +02/01/2022,13:45,MANHATTAN,10038,40.70767,-74.00577,"(40.70767, -74.00577)",,,111 JOHN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499381,Sedan,Box Truck,,, +02/01/2022,6:29,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",FAILE STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4499114,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,8:15,MANHATTAN,10038,40.708225,-74.00654,"(40.708225, -74.00654)",GOLD STREET,JOHN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499040,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,18:58,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454814,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +02/01/2022,2:30,QUEENS,11385,40.709538,-73.89467,"(40.709538, -73.89467)",,,65-55 TRAFFIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499239,Sedan,,,, +02/01/2022,21:40,BROOKLYN,11226,40.65429,-73.96179,"(40.65429, -73.96179)",,,353 OCEAN AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499318,Sedan,E-Bike,,, +02/01/2022,15:41,QUEENS,11422,40.66239,-73.73034,"(40.66239, -73.73034)",CANEY LANE,139 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499211,Station Wagon/Sport Utility Vehicle,Convertible,,, +01/29/2022,15:35,,,40.582863,-73.97485,"(40.582863, -73.97485)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499704,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,6:00,,,40.6835,-73.93516,"(40.6835, -73.93516)",LEWIS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499721,Sedan,,,, +01/29/2022,13:45,QUEENS,11435,40.694458,-73.80198,"(40.694458, -73.80198)",,,106-35 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4499634,Sedan,,,, +01/27/2022,19:42,QUEENS,11434,40.666565,-73.77048,"(40.666565, -73.77048)",,,144-55 BREWER BOULEVARD,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4497922,Box Truck,,,, +02/01/2022,8:10,,,40.6958,-73.99824,"(40.6958, -73.99824)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4499254,Station Wagon/Sport Utility Vehicle,Flatbed,,, +01/30/2022,16:30,QUEENS,11434,40.682377,-73.767166,"(40.682377, -73.767166)",MERRICK BOULEVARD,125 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499643,Sedan,Sedan,,, +02/01/2022,18:18,BRONX,10466,40.88902,-73.84963,"(40.88902, -73.84963)",,,4140 PAULDING AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499413,Sedan,,,, +02/01/2022,11:30,BROOKLYN,11206,40.703106,-73.93532,"(40.703106, -73.93532)",,,199 COOK STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499168,Sedan,Sedan,,, +02/01/2022,9:31,,,40.767963,-73.91169,"(40.767963, -73.91169)",STEINWAY STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4499511,Station Wagon/Sport Utility Vehicle,Carry All,,, +01/20/2022,12:28,BROOKLYN,11231,40.675602,-73.99816,"(40.675602, -73.99816)",,,199 HUNTINGTON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4499806,Van,,,, +02/01/2022,12:30,,,40.613388,-73.995995,"(40.613388, -73.995995)",BAY RIDGE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499406,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,5:40,,,40.61394,-73.92053,"(40.61394, -73.92053)",AVENUE T,EAST 56 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499142,Sedan,,,, +02/01/2022,11:00,BROOKLYN,11208,40.663208,-73.870384,"(40.663208, -73.870384)",WORTMAN AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499198,Pick-up Truck,Pick-up Truck,,, +02/01/2022,13:00,,,40.73723,-74.000656,"(40.73723, -74.000656)",7 AVENUE,,,1,0,0,0,0,0,1,0,Oversized Vehicle,Unspecified,,,,4499605,Box Truck,Sedan,,, +02/01/2022,22:35,BROOKLYN,11218,40.642082,-73.984314,"(40.642082, -73.984314)",36 STREET,LOUISA STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4499587,Sedan,Sedan,,, +02/01/2022,9:35,QUEENS,11379,40.7297,-73.87678,"(40.7297, -73.87678)",84 PLACE,58 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499108,Sedan,,,, +01/27/2022,16:20,QUEENS,11434,40.660347,-73.767975,"(40.660347, -73.767975)",147 AVENUE,BREWER BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4497928,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,22:05,QUEENS,11368,40.757034,-73.87133,"(40.757034, -73.87133)",NORTHERN BOULEVARD,97 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499638,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,21:01,QUEENS,11434,40.668446,-73.77193,"(40.668446, -73.77193)",BREWER BOULEVARD,144 ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4499295,Station Wagon/Sport Utility Vehicle,Moped,,, +01/30/2022,11:30,BROOKLYN,11234,40.61907,-73.93432,"(40.61907, -73.93432)",HENDRICKSON STREET,AVENUE P,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499708,Dump,Sedan,,, +01/26/2022,2:19,,,,,,CENTRAL PARK WEST,WEST 78 STREET,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4499714,Pick-up Truck,,,, +02/01/2022,0:16,QUEENS,11420,40.68181,-73.82377,"(40.68181, -73.82377)",,,117-05 109 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,Other Vehicular,,,4499023,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/01/2022,14:38,BRONX,10452,40.845142,-73.91105,"(40.845142, -73.91105)",GRAND CONCOURSE,CROSS BRONX EXPRESSWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499340,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,13:54,BRONX,10459,40.819363,-73.893074,"(40.819363, -73.893074)",BARRETTO STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499369,Sedan,Sedan,,, +02/01/2022,0:00,MANHATTAN,10002,,,,RIVINGTON STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499246,Ambulance,PK,,, +09/07/2021,10:00,,,,,,56 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454922,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,15:55,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4499611,Taxi,Sedan,Sedan,, +02/01/2022,19:09,MANHATTAN,10128,40.776604,-73.94663,"(40.776604, -73.94663)",EAST 87 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4499276,Sedan,Sedan,,, +02/01/2022,9:37,QUEENS,11104,40.74547,-73.92586,"(40.74547, -73.92586)",,,43-31 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499348,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,13:35,QUEENS,11434,,,,ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499189,Sedan,Pick-up Truck,,, +02/01/2022,5:53,,,40.678253,-74.00273,"(40.678253, -74.00273)",HAMILTON AVENUE,HENRY STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499101,Van,Sedan,,, +02/01/2022,22:30,BROOKLYN,11223,40.59619,-73.98036,"(40.59619, -73.98036)",AVENUE U,WEST 9 STREET,,1,0,1,0,0,0,0,0,,,,,,4499490,,,,, +01/31/2022,14:58,BRONX,10468,40.868847,-73.902626,"(40.868847, -73.902626)",,,125 WEST KINGSBRIDGE ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499621,Sedan,Sedan,,, +02/01/2022,15:31,QUEENS,11355,40.755486,-73.82472,"(40.755486, -73.82472)",KISSENA BOULEVARD,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499227,Sedan,Box Truck,,, +02/01/2022,7:55,BRONX,10466,40.89014,-73.8472,"(40.89014, -73.8472)",,,1036 EAST 233 STREET,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4499217,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/30/2022,23:20,QUEENS,11419,40.689236,-73.82852,"(40.689236, -73.82852)",101 AVENUE,116 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4499568,Sedan,Bus,Station Wagon/Sport Utility Vehicle,, +01/22/2022,2:39,,,40.666836,-73.7664,"(40.666836, -73.7664)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4499352,Sedan,Sedan,,, +02/01/2022,23:19,QUEENS,11104,40.744934,-73.92119,"(40.744934, -73.92119)",,,43-25 43 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4499270,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +02/01/2022,17:15,BROOKLYN,11206,40.698265,-73.93399,"(40.698265, -73.93399)",BUSHWICK AVENUE,JEFFERSON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4499300,Taxi,Sedan,Sedan,, +02/01/2022,10:45,BROOKLYN,11224,40.57891,-73.98538,"(40.57891, -73.98538)",,,1702 NEPTUNE AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4499747,Sedan,,,, +01/27/2022,15:15,BROOKLYN,11228,40.619465,-74.02288,"(40.619465, -74.02288)",86 STREET,DAHLGREN PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4499682,Sedan,Sedan,,, +02/01/2022,15:02,,,,,,G.C.P / L.I.E. (CDR),,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4499326,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,14:39,MANHATTAN,10016,40.747185,-73.97764,"(40.747185, -73.97764)",,,162 EAST 36 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499255,Bike,Sedan,,, +01/31/2022,8:50,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499646,Flat Bed,Van,,, +01/31/2022,11:00,,,40.658417,-73.929146,"(40.658417, -73.929146)",EAST 52 STREET,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499663,Sedan,Sedan,,, +01/29/2022,15:00,BROOKLYN,11216,40.675385,-73.95337,"(40.675385, -73.95337)",BEDFORD AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499701,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,15:23,BROOKLYN,11204,40.630478,-73.9861,"(40.630478, -73.9861)",16 AVENUE,50 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499283,Sedan,Box Truck,,, +02/21/2022,13:40,MANHATTAN,10027,40.807938,-73.94382,"(40.807938, -73.94382)",,,68 WEST 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504919,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,12:25,QUEENS,11365,40.74319,-73.778755,"(40.74319, -73.778755)",HORACE HARDING EXPRESSWAY,197 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4504535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,3:00,MANHATTAN,10001,40.751953,-74.00267,"(40.751953, -74.00267)",,,522 WEST 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504977,Sedan,Sedan,,, +02/21/2022,5:10,QUEENS,11432,40.708183,-73.79158,"(40.708183, -73.79158)",,,90-20 169 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504478,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,15:18,,,40.63043,-73.88593,"(40.63043, -73.88593)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504627,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,6:30,STATEN ISLAND,10305,40.586086,-74.08732,"(40.586086, -74.08732)",,,265B MASON AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505019,Sedan,,,, +02/08/2022,19:25,STATEN ISLAND,10308,40.542427,-74.14591,"(40.542427, -74.14591)",NELSON AVENUE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504948,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,21:30,BROOKLYN,11207,40.6649,-73.89306,"(40.6649, -73.89306)",LIVONIA AVENUE,NEW JERSEY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4544233,Bike,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,8:40,QUEENS,11101,40.740543,-73.9382,"(40.740543, -73.9382)",30 STREET,HUNTERS POINT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544551,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/02/2022,15:00,BROOKLYN,11203,40.644855,-73.922646,"(40.644855, -73.922646)",,,5710 CLARENDON ROAD,1,0,0,0,0,0,1,0,Unspecified,,,,,4544740,Sedan,,,, +06/14/2022,13:50,BRONX,10460,40.84708,-73.8867,"(40.84708, -73.8867)",EAST 180 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544478,Pick-up Truck,,,, +07/01/2022,21:07,,,40.592422,-73.99508,"(40.592422, -73.99508)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544568,Sedan,Sedan,,, +07/06/2022,15:05,BROOKLYN,11223,40.60591,-73.967026,"(40.60591, -73.967026)",,,1750 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4544078,Sedan,,,, +07/06/2022,21:30,BROOKLYN,11239,,,,,,1128 Essex Street,1,0,0,0,0,0,1,0,Unspecified,,,,,4544378,Sedan,,,, +07/07/2022,16:49,BROOKLYN,11234,40.6287,-73.91926,"(40.6287, -73.91926)",AVENUE J,EAST 59 STREET,,4,0,2,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4544647,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +07/07/2022,20:42,BROOKLYN,11226,40.650425,-73.9611,"(40.650425, -73.9611)",,,510 OCEAN AVENUE,1,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4544694,Sedan,E-Bike,,, +06/29/2022,13:15,BRONX,10457,40.839767,-73.905396,"(40.839767, -73.905396)",CLAREMONT PARKWAY,WEBSTER AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Following Too Closely,,,,4545189,Bike,,,, +06/17/2022,17:02,MANHATTAN,10025,40.794987,-73.96469,"(40.794987, -73.96469)",,,55 WEST 100 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544966,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,5:15,BROOKLYN,11203,40.65765,-73.94146,"(40.65765, -73.94146)",,,554 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544610,Sedan,,,, +07/08/2022,14:55,QUEENS,11368,40.758305,-73.85561,"(40.758305, -73.85561)",NORTHERN BOULEVARD,114 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4544930,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,14:59,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",BAYCHESTER AVENUE,EAST 233 STREET,,2,0,0,0,0,0,2,0,Oversized Vehicle,Unsafe Lane Changing,Other Vehicular,Unspecified,,4544781,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/08/2022,7:50,MANHATTAN,10019,40.76524,-73.97524,"(40.76524, -73.97524)",,,36 CENTRAL PARK SOUTH,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4545024,Bike,E-Scooter,,, +07/08/2022,12:30,QUEENS,11369,40.760723,-73.872086,"(40.760723, -73.872086)",30 AVENUE,97 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545078,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/06/2022,16:30,BROOKLYN,11226,40.64269,-73.95764,"(40.64269, -73.95764)",FLATBUSH AVENUE,CLARENDON ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544115,Station Wagon/Sport Utility Vehicle,Bike,,, +07/07/2022,14:49,,,,,,ASTORIA BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544493,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,19:30,QUEENS,11423,40.710648,-73.76145,"(40.710648, -73.76145)",,,99-15 198 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544625,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/01/2022,6:28,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4544605,Sedan,MOPD,,, +07/08/2022,10:46,BROOKLYN,11218,40.644913,-73.97443,"(40.644913, -73.97443)",CHURCH AVENUE,PROSPECT EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544916,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/05/2022,18:40,BROOKLYN,11223,40.597843,-73.98161,"(40.597843, -73.98161)",,,2011 WEST 10 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545097,Sedan,Van,,, +07/08/2022,13:25,,,40.74135,-73.937096,"(40.74135, -73.937096)",30 PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545133,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/08/2022,8:40,BROOKLYN,11201,40.68866,-73.985245,"(40.68866, -73.985245)",,,193 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544680,Bus,,,, +07/06/2022,13:17,QUEENS,11365,40.734795,-73.80115,"(40.734795, -73.80115)",168 STREET,67 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544542,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,20:12,BROOKLYN,11235,40.583485,-73.95014,"(40.583485, -73.95014)",,,1825 EMMONS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544852,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,6:30,BRONX,10455,40.812897,-73.90145,"(40.812897, -73.90145)",SOUTHERN BOULEVARD,SAINT JOHN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544637,Station Wagon/Sport Utility Vehicle,,,, +05/24/2022,15:02,BROOKLYN,11233,40.675446,-73.91936,"(40.675446, -73.91936)",,,351 HOWARD AVENUE,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4544878,Sedan,Ambulance,,, +07/08/2022,13:20,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4544769,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,18:25,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4544940,Tractor Truck Diesel,Sedan,,, +07/08/2022,22:35,BROOKLYN,11220,40.63721,-74.02221,"(40.63721, -74.02221)",SHORE ROAD DRIVE,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544674,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/07/2022,2:00,,,,,,CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545088,Sedan,,,, +07/07/2022,1:35,MANHATTAN,10002,40.7147,-73.97582,"(40.7147, -73.97582)",,,1 WILLIAMSBURG BRIDGE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544217,Bike,E-Bike,,, +07/06/2022,17:00,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544016,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,10:15,,,,,,,,79 EAST DRIVE,1,0,0,0,1,0,0,0,Illnes,,,,,4543890,Bike,,,, +07/06/2022,23:57,BRONX,10472,40.83228,-73.871315,"(40.83228, -73.871315)",CROES AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544303,Taxi,,,, +07/07/2022,19:00,BROOKLYN,11208,40.66661,-73.876144,"(40.66661, -73.876144)",HEGEMAN AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544384,Sedan,Sedan,,, +07/06/2022,21:22,,,40.58096,-73.96466,"(40.58096, -73.96466)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544058,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,15:50,BRONX,10468,40.862297,-73.90912,"(40.862297, -73.90912)",,,2300 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4544050,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,14:40,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4544340,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +07/07/2022,21:25,BRONX,10467,40.879055,-73.87439,"(40.879055, -73.87439)",EAST GUN HILL ROAD,PERRY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544487,Sedan,,,, +06/01/2022,7:00,BROOKLYN,11206,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545019,Station Wagon/Sport Utility Vehicle,,,, +05/10/2022,19:00,QUEENS,11372,40.74939,-73.89466,"(40.74939, -73.89466)",,,35-47 71 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544652,Sedan,Sedan,,, +07/08/2022,10:00,BRONX,10462,40.84811,-73.857376,"(40.84811, -73.857376)",,,1806 RADCLIFF AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544733,Sedan,,,, +07/07/2022,13:27,QUEENS,11385,40.700615,-73.89673,"(40.700615, -73.89673)",MYRTLE AVENUE,SUMMERFIELD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544579,,,,, +07/07/2022,20:35,BROOKLYN,11221,40.698246,-73.92997,"(40.698246, -73.92997)",WILLOUGHBY AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544896,Ambulance,,,, +07/06/2022,17:35,,,40.742493,-73.87337,"(40.742493, -73.87337)",91 PLACE,CORONA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544110,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,17:20,,,40.855137,-73.90836,"(40.855137, -73.90836)",GRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544176,Sedan,Sedan,,, +07/06/2022,17:00,BROOKLYN,11201,40.70328,-73.99206,"(40.70328, -73.99206)",,,46 WATER STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544464,Sedan,Sedan,,, +07/07/2022,8:00,BRONX,10463,40.882336,-73.89164,"(40.882336, -73.89164)",SEDGWICK AVENUE,HILLMAN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4544433,Sedan,,,, +07/01/2022,11:27,QUEENS,11367,40.741753,-73.82504,"(40.741753, -73.82504)",,,142-10 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544532,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/30/2022,16:48,,,40.585,-73.94764,"(40.585, -73.94764)",SHORE PARKWAY,EAST 21 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inexperience,Unspecified,,,4544708,Sedan,Taxi,Sedan,, +07/05/2022,15:45,QUEENS,11432,40.71523,-73.77598,"(40.71523, -73.77598)",,,87-27 CHELSEA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544547,Sedan,,,, +07/06/2022,23:08,QUEENS,11428,40.718143,-73.749054,"(40.718143, -73.749054)",,,93-18 HOLLIS COURT BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544193,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,8:51,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520041,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/08/2021,17:15,,,,,,HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4476646,Sedan,,,, +02/02/2022,17:40,BROOKLYN,11226,40.650448,-73.95767,"(40.650448, -73.95767)",,,2261 CHURCH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4499532,Sedan,,,, +02/20/2022,12:30,,,40.72303,-73.810135,"(40.72303, -73.810135)",PARSONS BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4505167,Sedan,Bus,,, +02/21/2022,7:00,,,40.687687,-73.792564,"(40.687687, -73.792564)",113 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4504695,Sedan,Sedan,,, +02/21/2022,19:00,QUEENS,11434,40.66851,-73.76626,"(40.66851, -73.76626)",FARMERS BOULEVARD,144 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504661,Sedan,,,, +02/14/2022,7:00,BRONX,10465,40.814915,-73.828285,"(40.814915, -73.828285)",,,2576 MILES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4505073,Sedan,,,, +02/07/2022,19:00,QUEENS,11385,40.708168,-73.91056,"(40.708168, -73.91056)",,,1913 HARMAN STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4505150,Sedan,,,, +02/21/2022,20:58,BRONX,10467,40.861343,-73.86749,"(40.861343, -73.86749)",WHITE PLAINS ROAD,WARING AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504711,Sedan,Sedan,,, +02/21/2022,16:35,,,40.666348,-73.76093,"(40.666348, -73.76093)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504550,Sedan,Pick-up Truck,,, +02/21/2022,10:59,BROOKLYN,11222,40.73555,-73.958534,"(40.73555, -73.958534)",FRANKLIN STREET,DUPONT STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4504526,Sedan,,,, +02/17/2022,16:10,,,40.587566,-73.811264,"(40.587566, -73.811264)",ROCKAWAY BEACH BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504985,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/21/2022,7:26,,,40.651714,-73.882706,"(40.651714, -73.882706)",VANDALIA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504594,PK,,,, +02/21/2022,22:51,QUEENS,11385,,,,PALMETTO STREET,WOODWARD AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4504753,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,8:00,BRONX,10453,40.84942,-73.91113,"(40.84942, -73.91113)",JEROME AVENUE,MOUNT HOPE PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4505013,Box Truck,Sedan,,, +02/10/2022,17:38,MANHATTAN,10039,40.82424,-73.93927,"(40.82424, -73.93927)",,,255 WEST 148 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504941,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,11:40,BROOKLYN,11210,40.632015,-73.941765,"(40.632015, -73.941765)",AVENUE H,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4504523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,1:31,QUEENS,11419,40.69405,-73.82802,"(40.69405, -73.82802)",LEFFERTS BOULEVARD,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4504474,Pick-up Truck,Sedan,,, +02/21/2022,20:33,BROOKLYN,11207,40.6552,-73.893555,"(40.6552, -73.893555)",LOUISIANA AVENUE,STANLEY AVENUE,,3,0,0,0,0,0,3,0,Outside Car Distraction,,,,,4504632,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,15:20,BROOKLYN,11207,40.656258,-73.87813,"(40.656258, -73.87813)",JEROME STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4504792,Postal tru,Sedan,,, +02/21/2022,11:53,,,40.599827,-74.17823,"(40.599827, -74.17823)",TRAVIS AVENUE,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4504602,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,10:00,QUEENS,11367,40.72702,-73.83105,"(40.72702, -73.83105)",,,69-53 PARK DRIVE EAST,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4505175,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/16/2022,16:30,BROOKLYN,11207,40.667454,-73.89475,"(40.667454, -73.89475)",,,400 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4505081,Sedan,,,, +02/21/2022,17:30,QUEENS,11368,40.74935,-73.85807,"(40.74935, -73.85807)",108 STREET,42 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4504646,Bike,,,, +02/16/2022,8:30,QUEENS,11691,40.607872,-73.7487,"(40.607872, -73.7487)",CENTRAL AVENUE,WHEATLEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4505139,Sedan,,,, +02/21/2022,14:25,BROOKLYN,11237,40.70499,-73.91736,"(40.70499, -73.91736)",STOCKHOLM STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504973,Sedan,Ambulance,,, +02/08/2022,16:20,BRONX,10456,,,,TELLER AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4505008,Bike,,,, +02/19/2022,12:00,BRONX,10467,40.87182,-73.87927,"(40.87182, -73.87927)",,,3067 HULL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504959,Sedan,,,, +02/21/2022,16:00,BROOKLYN,11217,40.686916,-73.97737,"(40.686916, -73.97737)",SAINT FELIX STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504533,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,9:39,BROOKLYN,11207,40.66583,-73.88395,"(40.66583, -73.88395)",,,718 NEW LOTS AVENUE,3,0,3,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4504588,Sedan,,,, +07/08/2022,22:20,QUEENS,11413,40.665497,-73.75573,"(40.665497, -73.75573)",SOUTH CONDUIT AVENUE,222 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4544687,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,11:00,BRONX,10464,40.859245,-73.81814,"(40.859245, -73.81814)",SHORE ROAD,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544564,Box Truck,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,19:24,,,40.70476,-73.91996,"(40.70476, -73.91996)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544087,Sedan,,,, +07/07/2022,11:00,BROOKLYN,11231,40.67393,-73.999954,"(40.67393, -73.999954)",HAMILTON AVENUE,COURT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544519,Box Truck,Sedan,,, +07/08/2022,14:27,QUEENS,11101,40.753304,-73.912575,"(40.753304, -73.912575)",NORTHERN BOULEVARD,50 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544955,E-Bike,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,20:49,BROOKLYN,11236,40.63574,-73.90853,"(40.63574, -73.90853)",AVENUE J,EAST 84 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4544797,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/07/2022,23:49,QUEENS,11429,40.70947,-73.74581,"(40.70947, -73.74581)",HOLLIS AVENUE,212 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4544410,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/02/2022,13:00,,,40.577744,-73.95607,"(40.577744, -73.95607)",BRIGHTON 14 STREET,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545200,Sedan,,,, +07/07/2022,23:38,,,,,,FDR DRIVE,EAST 25 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4544829,Sedan,Sedan,,, +07/08/2022,8:44,,,40.744556,-73.870834,"(40.744556, -73.870834)",43 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544935,Sedan,Sedan,,, +07/06/2022,16:23,,,,,,BROOKLYN QUEENS EXPRESSWAY,30 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545157,Sedan,,,, +07/07/2022,0:27,,,40.719643,-73.83507,"(40.719643, -73.83507)",75 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544981,Sedan,Sedan,,, +07/08/2022,18:30,BRONX,10469,40.8638,-73.83367,"(40.8638, -73.83367)",,,1816 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544715,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,22:40,,,40.880753,-73.90048,"(40.880753, -73.90048)",BAILEY AVENUE,BAILEY PLACE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4544428,Bike,,,, +07/02/2022,18:00,BROOKLYN,11233,40.682568,-73.91713,"(40.682568, -73.91713)",SARATOGA AVENUE,BAINBRIDGE STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544872,Sedan,,,, +07/08/2022,8:45,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544720,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,15:13,BROOKLYN,11215,40.666737,-73.991745,"(40.666737, -73.991745)",4 AVENUE,15 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544664,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,13:00,QUEENS,11385,40.705765,-73.896576,"(40.705765, -73.896576)",67 AVENUE,FRESH POND ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544574,Sedan,Tractor Truck Diesel,,, +07/07/2022,19:10,STATEN ISLAND,10301,40.640026,-74.100464,"(40.640026, -74.100464)",,,228 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Animals Action,,,,,4545054,Sedan,,,, +07/06/2022,18:15,QUEENS,11354,40.770683,-73.83567,"(40.770683, -73.83567)",,,28-55 ULMER STREET,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4544129,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,13:00,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4520096,Pick-up Truck,,,, +11/12/2021,15:00,,,40.82403,-73.94476,"(40.82403, -73.94476)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4476711,Sedan,Moped,,, +09/07/2021,12:40,BROOKLYN,11235,40.586098,-73.96015,"(40.586098, -73.96015)",,,2875 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4455497,Station Wagon/Sport Utility Vehicle,,,, +08/17/2021,20:10,MANHATTAN,10023,40.779922,-73.98068,"(40.779922, -73.98068)",WEST 74 STREET,AMSTERDAM AVENUE,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4448651,Taxi,,,, +08/28/2021,0:20,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4451579,Tractor Truck Gasoline,Sedan,,, +08/31/2021,5:39,,,40.76553,-73.99768,"(40.76553, -73.99768)",12 AVENUE,,,1,1,0,1,0,0,1,0,Driver Inattention/Distraction,,,,,4452278,Motorcycle,,,, +09/05/2021,1:30,,,40.62894,-74.04092,"(40.62894, -74.04092)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454885,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,1:20,,,40.728363,-73.88449,"(40.728363, -73.88449)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4455469,Sedan,Pick-up Truck,,, +09/02/2021,16:05,BRONX,10451,40.81702,-73.91935,"(40.81702, -73.91935)",,,567 COURTLANDT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4455505,Sedan,Sedan,Sedan,, +11/06/2021,19:45,QUEENS,11369,40.76267,-73.87526,"(40.76267, -73.87526)",,,26-39 94 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4476715,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,11:15,BROOKLYN,11211,40.710476,-73.963844,"(40.710476, -73.963844)",SOUTH 6 STREET,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4455467,Sedan,Box Truck,,, +09/06/2021,0:46,MANHATTAN,10039,40.827198,-73.93668,"(40.827198, -73.93668)",MACOMBS PLACE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455511,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,14:20,,,40.82513,-73.931076,"(40.82513, -73.931076)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4455489,Sedan,Sedan,Sedan,, +08/28/2021,9:00,BRONX,10451,40.81722,-73.91924,"(40.81722, -73.91924)",COURTLANDT AVENUE,EAST 150 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455501,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,17:04,BROOKLYN,11238,40.68621,-73.9701,"(40.68621, -73.9701)",,,60 GREENE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,Unspecified,,,4455460,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/07/2021,14:50,,,,,,MONTAGUE STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455479,Motorcycle,Box Truck,,, +09/01/2021,4:30,,,40.809044,-73.92856,"(40.809044, -73.92856)",EAST 135 STREET,LINCOLN AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455503,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,16:30,BRONX,10451,40.816875,-73.923004,"(40.816875, -73.923004)",,,524 MORRIS AVENUE,1,0,1,0,0,0,0,0,,,,,,4455504,,,,, +11/12/2021,8:36,,,40.643986,-74.01149,"(40.643986, -74.01149)",5 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476714,Sedan,,,, +09/07/2021,18:00,,,,,,MANHATTAN BR UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4454889,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +09/07/2021,13:30,QUEENS,11417,40.676617,-73.8579,"(40.676617, -73.8579)",PITKIN AVENUE,79 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4454806,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/07/2021,17:35,,,40.681995,-74.002625,"(40.681995, -74.002625)",HICKS STREET,SUMMIT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455279,Station Wagon/Sport Utility Vehicle,Bike,,, +09/07/2021,16:39,BRONX,10452,,,,WALTON AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455241,Sedan,Sedan,,, +09/07/2021,1:26,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454436,Sedan,Sedan,,, +09/07/2021,7:20,,,40.656063,-73.93957,"(40.656063, -73.93957)",CLARKSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454787,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,12:40,BROOKLYN,11203,40.662907,-73.932365,"(40.662907, -73.932365)",,,921 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454985,Sedan,,,, +09/07/2021,21:37,BROOKLYN,11226,40.653576,-73.95946,"(40.653576, -73.95946)",FLATBUSH AVENUE,LENOX ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454839,Sedan,Sedan,,, +09/01/2021,9:57,,,40.667522,-73.78063,"(40.667522, -73.78063)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455208,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,15:30,BRONX,10475,40.86877,-73.83174,"(40.86877, -73.83174)",BAYCHESTER AVENUE,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455354,Sedan,Sedan,,, +09/07/2021,7:10,MANHATTAN,10001,40.753487,-73.99657,"(40.753487, -73.99657)",,,402 WEST 34 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454494,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/07/2021,19:00,,,40.603874,-73.99544,"(40.603874, -73.99544)",85 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454847,Station Wagon/Sport Utility Vehicle,Van,,, +09/07/2021,14:35,BROOKLYN,11207,40.677357,-73.896225,"(40.677357, -73.896225)",FULTON STREET,NEW JERSEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4455277,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/10/2021,16:24,MANHATTAN,10001,40.7508,-73.99819,"(40.7508, -73.99819)",,,350 9 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4455327,Motorcycle,Sedan,,, +09/07/2021,15:26,QUEENS,11427,40.72981,-73.74469,"(40.72981, -73.74469)",HILLSIDE AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455094,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,4:30,BROOKLYN,11207,40.67628,-73.892166,"(40.67628, -73.892166)",ATLANTIC AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454537,Sedan,,,, +09/07/2021,15:02,,,40.793606,-73.94952,"(40.793606, -73.94952)",MADISON AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454726,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,18:44,,,40.850395,-73.9228,"(40.850395, -73.9228)",CROSS BRONX EXPY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454911,Sedan,Tow Truck / Wrecker,,, +09/07/2021,16:15,BROOKLYN,11232,40.656548,-74.0021,"(40.656548, -74.0021)",4 AVENUE,32 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454933,Station Wagon/Sport Utility Vehicle,Bike,,, +09/07/2021,17:32,,,40.67792,-73.9182,"(40.67792, -73.9182)",DEWEY PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455005,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,15:00,QUEENS,11385,40.70276,-73.881355,"(40.70276, -73.881355)",,,71-72 70 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455038,Sedan,,,, +09/07/2021,6:50,QUEENS,11432,40.707977,-73.78306,"(40.707977, -73.78306)",,,178-07 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454685,Sedan,Tractor Truck Diesel,,, +09/07/2021,9:07,MANHATTAN,10029,40.789204,-73.95483,"(40.789204, -73.95483)",EAST 98 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Passing Too Closely,,,,4454634,Taxi,Bike,,, +09/05/2021,12:56,BROOKLYN,11213,40.663704,-73.936424,"(40.663704, -73.936424)",,,770 EMPIRE BOULEVARD,1,0,0,0,0,0,1,0,Turning Improperly,Other Vehicular,,,,4455381,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +08/27/2021,18:00,,,40.73261,-73.8686,"(40.73261, -73.8686)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455434,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,10:35,,,40.768955,-73.82669,"(40.768955, -73.82669)",UNION STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454675,Sedan,,,, +09/07/2021,12:24,MANHATTAN,10005,40.705772,-74.00887,"(40.705772, -74.00887)",,,63 WALL STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4454635,Station Wagon/Sport Utility Vehicle,Box Truck,,, +08/19/2021,13:04,QUEENS,11365,40.741623,-73.79109,"(40.741623, -73.79109)",184 STREET,58 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4455306,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,2:10,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4454707,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/07/2021,8:40,STATEN ISLAND,10310,40.636772,-74.11886,"(40.636772, -74.11886)",,,780 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454589,Box Truck,Sedan,,, +09/07/2021,21:00,BRONX,10467,40.878128,-73.86944,"(40.878128, -73.86944)",EAST GUN HILL ROAD,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455036,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/07/2021,12:22,BROOKLYN,11233,40.681026,-73.90866,"(40.681026, -73.90866)",,,15 STONE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454830,Sedan,,,, +09/07/2021,15:51,,,40.584816,-73.95271,"(40.584816, -73.95271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,17:30,,,,,,BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,Unspecified,,,4455064,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,19:06,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4454938,Pick-up Truck,Pick-up Truck,,, +09/07/2021,10:55,QUEENS,11385,40.704155,-73.90752,"(40.704155, -73.90752)",GATES AVENUE,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455047,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,3:35,BRONX,10455,40.8126,-73.899,"(40.8126, -73.899)",BRUCKNER BOULEVARD,TIMPSON PLACE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454621,Sedan,Bike,,, +09/07/2021,12:00,QUEENS,11358,40.75171,-73.80612,"(40.75171, -73.80612)",161 STREET,LABURNUM AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454693,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,13:30,QUEENS,11432,40.71146,-73.79647,"(40.71146, -73.79647)",HIGHLAND AVENUE,167 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454798,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,12:30,STATEN ISLAND,10305,40.589603,-74.089386,"(40.589603, -74.089386)",HYLAN BOULEVARD,RARITAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455374,Sedan,Ambulance,,, +09/07/2021,11:25,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4454931,Sedan,Dump,,, +09/07/2021,15:34,,,40.609806,-74.16041,"(40.609806, -74.16041)",RICHMOND AVENUE,MERRILL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4455231,Taxi,E-Bike,,, +09/07/2021,7:40,MANHATTAN,10021,40.766544,-73.95102,"(40.766544, -73.95102)",EAST 73 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4455382,Sedan,Pick-up Truck,,, +09/07/2021,16:40,MANHATTAN,10029,40.795406,-73.93617,"(40.795406, -73.93617)",,,332 EAST 115 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454727,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,14:32,,,40.71702,-73.830505,"(40.71702, -73.830505)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4454768,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/03/2021,20:44,MANHATTAN,10011,40.744003,-73.99942,"(40.744003, -73.99942)",WEST 21 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455311,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,5:50,BROOKLYN,11225,40.659527,-73.94842,"(40.659527, -73.94842)",,,380 RUTLAND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4454654,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,19:47,BRONX,10457,40.84717,-73.899605,"(40.84717, -73.899605)",,,4196 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455206,Sedan,,,, +09/07/2021,15:58,MANHATTAN,10002,40.715473,-73.98512,"(40.715473, -73.98512)",,,440 GRAND STREET,2,0,0,0,1,0,1,0,Other Vehicular,Unspecified,,,,4454971,Taxi,Bike,,, +09/07/2021,10:45,,,40.840775,-73.87246,"(40.840775, -73.87246)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4455020,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,22:44,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Following Too Closely,,,4455191,Tractor Truck Diesel,Sedan,Motorcycle,, +08/19/2021,12:02,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455299,Tractor Truck Diesel,Sedan,,, +09/07/2021,22:45,,,40.70789,-73.84652,"(40.70789, -73.84652)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4454815,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,15:02,BROOKLYN,11236,,,,CONKLIN AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455259,Sedan,Sedan,,, +09/07/2021,12:30,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4454854,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,21:50,QUEENS,11377,0,0,"(0.0, 0.0)",69 STREET,MAURICE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454780,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,14:26,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455365,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,17:56,BROOKLYN,11217,40.677715,-73.97326,"(40.677715, -73.97326)",7 AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4454732,Convertible,Bus,,, +09/04/2021,21:35,MANHATTAN,10009,40.73065,-73.98308,"(40.73065, -73.98308)",EAST 13 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455221,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,12:37,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",EAST 42 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455389,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,21:18,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,20:15,,,,,,SULLIVAN PLACE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4454788,,,,, +09/07/2021,21:58,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454840,Sedan,Sedan,,, +09/04/2021,11:58,BROOKLYN,11208,40.68856,-73.87572,"(40.68856, -73.87572)",CYPRESS HILL STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455268,Sedan,Sedan,,, +09/07/2021,1:08,QUEENS,11419,40.68628,-73.82991,"(40.68628, -73.82991)",,,103-11 113 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Passing or Lane Usage Improper,,,4454440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/28/2021,8:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455316,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/07/2021,21:45,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454764,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,16:00,QUEENS,11368,,,,Northern blvd,Boat Basin PL,,5,0,0,0,0,0,5,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4455151,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,Pick-up Truck, +09/05/2021,0:05,,,40.750443,-73.96599,"(40.750443, -73.96599)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4455387,Sedan,Sedan,,, +09/06/2021,17:10,,,,,,GRANT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455240,Sedan,,,, +09/07/2021,0:30,,,40.752098,-73.94425,"(40.752098, -73.94425)",21 STREET,QUEENS PLAZA SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454504,Taxi,Sedan,,, +09/07/2021,16:40,,,40.676003,-73.865395,"(40.676003, -73.865395)",GRANT AVENUE,CONDUIT BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455278,Sedan,Pick-up Truck,,, +09/07/2021,10:15,BRONX,10473,40.823914,-73.85549,"(40.823914, -73.85549)",PUGSLEY AVENUE,HERMANY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454730,Sedan,Sedan,,, +09/07/2021,14:50,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454843,Sedan,Box Truck,,, +09/06/2021,9:30,MANHATTAN,10029,40.79367,-73.94175,"(40.79367, -73.94175)",,,246 EAST 110 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455332,Sedan,Box Truck,,, +09/07/2021,15:10,,,40.73736,-73.934074,"(40.73736, -73.934074)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4454781,Van,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,16:21,QUEENS,11379,40.71943,-73.87917,"(40.71943, -73.87917)",77 STREET,JUNIPER BOULEVARD SOUTH,,0,0,0,0,0,0,0,0,Tow Hitch Defective,Unspecified,Unspecified,Unspecified,Unspecified,4455090,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/03/2021,20:37,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",FARMERS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455212,Sedan,Sedan,,, +09/07/2021,12:45,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4454809,Sedan,Sedan,,, +09/07/2021,8:25,QUEENS,11373,40.731277,-73.871574,"(40.731277, -73.871574)",WOODHAVEN BOULEVARD,BOOTH STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4455436,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,17:55,MANHATTAN,10018,,,,9 AVENUE,WEST 38 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455310,Sedan,Sedan,,, +09/07/2021,11:30,QUEENS,11429,40.70947,-73.74581,"(40.70947, -73.74581)",212 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4454650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,12:35,,,40.58665,-73.934456,"(40.58665, -73.934456)",COYLE STREET,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454676,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,4:05,QUEENS,11372,40.75149,-73.88748,"(40.75149, -73.88748)",79 STREET,35 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4454949,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +09/07/2021,16:22,BROOKLYN,11236,40.637775,-73.88511,"(40.637775, -73.88511)",,,1470 EAST 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455413,Sedan,Sedan,,, +09/07/2021,17:30,,,40.61481,-74.03195,"(40.61481, -74.03195)",97 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454760,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,14:40,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",VANDAM STREET,THOMSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455055,Moped,Pick-up Truck,,, +09/07/2021,13:58,BRONX,10475,40.88208,-73.82836,"(40.88208, -73.82836)",,,2244 TILLOTSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455353,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,7:05,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,EAST 59 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454627,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,16:42,,,40.60603,-73.98703,"(40.60603, -73.98703)",KINGS HIGHWAY,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454877,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/07/2021,11:00,,,40.766685,-73.892136,"(40.766685, -73.892136)",77 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454972,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,8:22,BROOKLYN,11220,40.63233,-74.01854,"(40.63233, -74.01854)",6 AVENUE,BAY RIDGE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454669,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/07/2021,3:35,BROOKLYN,11234,40.6224,-73.936646,"(40.6224, -73.936646)",KINGS HIGHWAY,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4454796,Sedan,Sedan,,, +09/07/2021,21:47,STATEN ISLAND,10312,,,,RICHMOND AVENUE,ARTHUR KILL ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455235,Sedan,Sedan,,, +09/05/2021,20:50,BROOKLYN,11234,40.626457,-73.918,"(40.626457, -73.918)",AVENUE K,RALPH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455297,Sedan,,,, +09/07/2021,17:50,BRONX,10466,40.89193,-73.848076,"(40.89193, -73.848076)",EDENWALD AVENUE,WICKHAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455071,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,16:25,,,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,,,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4454750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,14:30,QUEENS,11420,40.666893,-73.80546,"(40.666893, -73.80546)",NORTH CONDUIT AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4454802,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,9:18,BROOKLYN,11214,40.606457,-73.989136,"(40.606457, -73.989136)",BAY PARKWAY,78 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4455375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,17:00,QUEENS,11105,40.781796,-73.910736,"(40.781796, -73.910736)",,,20-25 CRESCENT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455225,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,13:15,,,40.643005,-74.00533,"(40.643005, -74.00533)",7 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454936,Sedan,Bus,,, +09/07/2021,6:00,,,40.814487,-73.95547,"(40.814487, -73.95547)",WEST 128 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454513,Sedan,Sedan,,, +09/07/2021,14:00,QUEENS,11385,40.699356,-73.90184,"(40.699356, -73.90184)",,,989 SENECA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455046,Taxi,,,, +09/07/2021,13:42,BRONX,10462,40.85556,-73.867676,"(40.85556, -73.867676)",,,2171 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454710,UTILITY VE,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,17:00,,,40.76838,-73.92125,"(40.76838, -73.92125)",NEWTOWN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4454978,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,0:25,MANHATTAN,10018,40.752895,-73.98925,"(40.752895, -73.98925)",7 AVENUE,WEST 37 STREET,,1,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4454902,Sedan,E-Bike,,, +09/07/2021,17:30,,,40.844955,-73.93008,"(40.844955, -73.93008)",ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4454826,Station Wagon/Sport Utility Vehicle,Taxi,Tractor Truck Diesel,Tractor Truck Diesel,Sedan +08/29/2021,23:00,,,40.610405,-74.150665,"(40.610405, -74.150665)",,,517 WILLOW ROAD EAST,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4455304,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/07/2021,21:30,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454857,Sedan,Sedan,,, +08/14/2021,22:56,BRONX,10452,40.84364,-73.91304,"(40.84364, -73.91304)",EAST MOUNT EDEN AVENUE,WALTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455227,Sedan,Ambulance,,, +09/07/2021,8:35,QUEENS,11373,40.731277,-73.871574,"(40.731277, -73.871574)",WOODHAVEN BOULEVARD,BOOTH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454767,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,6:00,,,,,,HAVEN ESPLANADE,SILVERLAKE ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455058,Sedan,,,, +09/07/2021,16:30,BRONX,10457,40.853874,-73.89248,"(40.853874, -73.89248)",,,2256 BATHGATE AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4455197,Sedan,,,, +09/07/2021,20:19,BROOKLYN,11249,40.710934,-73.96514,"(40.710934, -73.96514)",,,81 SOUTH 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454801,Sedan,,,, +09/07/2021,20:45,QUEENS,11105,40.77124,-73.9038,"(40.77124, -73.9038)",,,43-16 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4454997,Sedan,,,, +09/07/2021,7:05,STATEN ISLAND,10314,40.61258,-74.129166,"(40.61258, -74.129166)",VICTORY BOULEVARD,QUINLAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454588,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,14:20,BROOKLYN,11235,40.5861,-73.93851,"(40.5861, -73.93851)",,,3711 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4454862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,5:15,QUEENS,11433,,,,158 STREET,archer ave,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4454684,Sedan,,,, +09/07/2021,18:12,QUEENS,11418,40.703217,-73.82428,"(40.703217, -73.82428)",HILLSIDE AVENUE,127 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454869,Sedan,Motorcycle,,, +09/07/2021,21:00,,,40.664043,-73.736534,"(40.664043, -73.736534)",243 STREET,MEMPHIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454763,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,14:40,BROOKLYN,11222,40.734844,-73.95841,"(40.734844, -73.95841)",FRANKLIN STREET,EAGLE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454861,Box Truck,,,, +08/29/2021,15:10,BROOKLYN,11201,40.689804,-73.97794,"(40.689804, -73.97794)",DE KALB AVENUE,SAINT FELIX STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4455245,Station Wagon/Sport Utility Vehicle,Moped,,, +09/05/2021,5:00,BROOKLYN,11207,40.67131,-73.89277,"(40.67131, -73.89277)",,,313 WYONA STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4455274,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,0:15,QUEENS,11420,40.679005,-73.819595,"(40.679005, -73.819595)",LINDEN BOULEVARD,120 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454442,Station Wagon/Sport Utility Vehicle,,,, +08/09/2021,15:03,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455322,Taxi,Van,,, +09/07/2021,16:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4455119,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,16:15,QUEENS,11361,40.758396,-73.76759,"(40.758396, -73.76759)",,,214-10 46 AVENUE,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4455417,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,12:13,QUEENS,11103,40.76529,-73.91799,"(40.76529, -73.91799)",,,35-16 30 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454973,Sedan,Bike,,, +09/07/2021,12:15,,,40.704494,-73.81743,"(40.704494, -73.81743)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4454668,Sedan,Sedan,,, +09/07/2021,8:50,,,40.732887,-73.920586,"(40.732887, -73.920586)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4454671,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,23:00,,,40.8254,-73.865074,"(40.8254, -73.865074)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4454925,Sedan,,,, +09/05/2021,1:00,MANHATTAN,10011,40.749302,-74.00807,"(40.749302, -74.00807)",WEST 23 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455315,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,13:05,QUEENS,11355,40.75413,-73.809555,"(40.75413, -73.809555)",46 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454692,Sedan,Sedan,,, +09/07/2021,9:26,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,Unspecified,,,4454953,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/05/2021,15:30,BROOKLYN,11216,40.67672,-73.94708,"(40.67672, -73.94708)",NEW YORK AVENUE,DEAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455360,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,14:20,BROOKLYN,11236,40.650448,-73.91111,"(40.650448, -73.91111)",EAST 95 STREET,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4454749,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,8:05,BROOKLYN,11206,40.69393,-73.937225,"(40.69393, -73.937225)",,,93 LEWIS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455022,Box Truck,Sedan,,, +09/07/2021,9:45,QUEENS,11374,40.72841,-73.86044,"(40.72841, -73.86044)",,,64-20 SAUNDERS STREET,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4454615,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/07/2021,22:35,,,,,,200 STREET,HOLLIS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454927,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,16:00,,,,,,PELHAM PARKWAY NORTH,barnes ave,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455014,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,21:00,,,40.740364,-73.89972,"(40.740364, -73.89972)",65 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455054,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/07/2021,10:00,BROOKLYN,11211,40.713493,-73.95885,"(40.713493, -73.95885)",,,252 GRAND STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454628,Sedan,,,, +09/07/2021,12:55,MANHATTAN,10007,40.714485,-74.013596,"(40.714485, -74.013596)",WEST STREET,BARCLAY STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4454690,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,13:00,,,40.598766,-74.000725,"(40.598766, -74.000725)",21 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455376,Sedan,,,, +09/04/2021,17:00,BROOKLYN,11231,40.679943,-73.98956,"(40.679943, -73.98956)",UNION STREET,BOND STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,,,4455384,Sedan,Bike,Sedan,, +09/07/2021,14:05,BRONX,10472,,,,,,1106 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454729,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/07/2021,0:00,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",EAST 63 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454845,Sedan,Sedan,,, +09/03/2021,0:00,QUEENS,11372,40.75363,-73.88597,"(40.75363, -73.88597)",81 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455367,Sedan,,,, +09/07/2021,19:30,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455107,Sedan,Pick-up Truck,,, +09/03/2021,14:22,MANHATTAN,10011,,,,W 23 street,10 Avenue,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455308,Sedan,,,, +09/07/2021,0:27,QUEENS,11411,40.692783,-73.74511,"(40.692783, -73.74511)",SPRINGFIELD BOULEVARD,119 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454647,Sedan,Sedan,,, +09/07/2021,19:30,QUEENS,11427,40.726673,-73.746216,"(40.726673, -73.746216)",,,89-15 217 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454761,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,7:29,STATEN ISLAND,10308,40.55763,-74.15184,"(40.55763, -74.15184)",,,184 LEVERETT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454579,Sedan,Pick-up Truck,,, +09/07/2021,5:30,QUEENS,11385,40.705173,-73.88423,"(40.705173, -73.88423)",,,70-02 69 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454719,Sedan,,,, +09/07/2021,9:30,MANHATTAN,10039,40.827633,-73.93577,"(40.827633, -73.93577)",WEST 154 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454917,Sedan,,,, +09/07/2021,9:42,,,40.837864,-73.86356,"(40.837864, -73.86356)",WHITE PLAINS ROAD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/25/2021,6:00,BROOKLYN,11205,,,,,,170 HALL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455243,Sedan,,,, +09/07/2021,3:00,BROOKLYN,11233,40.67686,-73.92,"(40.67686, -73.92)",,,1927 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4455024,Sedan,PK,,, +09/07/2021,22:20,BROOKLYN,11203,40.64461,-73.9267,"(40.64461, -73.9267)",CLARENDON ROAD,EAST 53 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454783,Sedan,,,, +09/07/2021,2:30,QUEENS,11372,40.74681,-73.89176,"(40.74681, -73.89176)",BROADWAY,ROOSEVELT AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4454948,Sedan,Sedan,,, +09/07/2021,20:30,QUEENS,11101,40.748108,-73.947365,"(40.748108, -73.947365)",21 STREET,44 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455042,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,20:00,BROOKLYN,11211,40.708424,-73.95134,"(40.708424, -73.95134)",HEWES STREET,SOUTH 3 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454995,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,18:19,BRONX,10465,40.8262,-73.821686,"(40.8262, -73.821686)",EAST TREMONT AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454835,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,14:45,QUEENS,11434,40.669014,-73.77083,"(40.669014, -73.77083)",144 AVENUE,169 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455210,Sedan,Sedan,,, +09/06/2021,23:00,BROOKLYN,11213,40.674885,-73.927765,"(40.674885, -73.927765)",BERGEN STREET,ROCHESTER AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,,,,4455350,Sedan,Sedan,,, +09/07/2021,21:20,MANHATTAN,10036,40.758022,-73.981804,"(40.758022, -73.981804)",AVENUE OF THE AMERICAS,WEST 47 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454776,Sedan,E-Bike,,, +09/07/2021,11:30,,,40.8252,-73.867714,"(40.8252, -73.867714)",ROSEDALE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455236,Pick-up Truck,Pick-up Truck,,, +09/07/2021,18:45,BROOKLYN,11212,40.65532,-73.91607,"(40.65532, -73.91607)",,,9525 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454766,Ambulance,Sedan,,, +09/07/2021,1:40,,,40.68038,-73.80466,"(40.68038, -73.80466)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4454506,Sedan,Sedan,,, +09/07/2021,5:30,BROOKLYN,11207,40.6757,-73.89729,"(40.6757, -73.89729)",,,2630 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,Unspecified,,,4455275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,11:15,BROOKLYN,11235,40.5916,-73.960686,"(40.5916, -73.960686)",CONEY ISLAND AVENUE,AVENUE X,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4454677,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,19:10,BROOKLYN,11236,40.650402,-73.89422,"(40.650402, -73.89422)",EAST 108 STREET,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4454803,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +09/07/2021,18:10,,,40.737682,-73.85206,"(40.737682, -73.85206)",LONG ISLAND EXPRESSWAY,108 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455437,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/01/2021,14:34,QUEENS,11434,,,,belt parkway,150 street,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4455345,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,10:35,MANHATTAN,10021,40.76527,-73.95213,"(40.76527, -73.95213)",EAST 71 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4455156,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,14:00,QUEENS,11368,40.73862,-73.8508,"(40.73862, -73.8508)",SAULTELL AVENUE,WALDRON STREET,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4454811,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,7:00,BRONX,10463,40.874634,-73.90357,"(40.874634, -73.90357)",,,2876 HEATH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454900,Sedan,,,, +09/01/2021,13:30,QUEENS,11434,40.668613,-73.77349,"(40.668613, -73.77349)",,,144-07 LATHAM LANE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455200,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,18:15,,,,,,GRAND CENTRAL PARKWAY,HOMELAWN ST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454791,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,16:40,QUEENS,11435,40.697086,-73.8034,"(40.697086, -73.8034)",,,148-09 LIBERTY AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454751,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/04/2021,14:02,MANHATTAN,10026,40.801704,-73.95691,"(40.801704, -73.95691)",,,246 WEST 112 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,14:52,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",WEST 39 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455296,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/07/2021,14:30,,,40.836098,-73.934875,"(40.836098, -73.934875)",HARLEM RIVER DRIVE,,,3,0,0,0,0,0,3,0,Passenger Distraction,Driver Inattention/Distraction,,,,4454935,Sedan,Sedan,,, +09/07/2021,20:30,BRONX,10463,40.877235,-73.91781,"(40.877235, -73.91781)",KAPPOCK STREET,JOHNSON AVENUE,,1,1,0,1,0,0,1,0,Unspecified,,,,,4455073,Bus,,,, +09/07/2021,15:00,BRONX,10455,40.81198,-73.90434,"(40.81198, -73.90434)",,,524 SOUTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454824,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,19:20,BROOKLYN,11223,40.59602,-73.96225,"(40.59602, -73.96225)",,,810 AVENUE V,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4454863,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,11:00,,,40.673103,-73.92793,"(40.673103, -73.92793)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455359,Station Wagon/Sport Utility Vehicle,,,, +08/28/2021,23:45,QUEENS,11102,40.769463,-73.917114,"(40.769463, -73.917114)",,,25-36 33 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4455223,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,20:00,MANHATTAN,10019,40.763657,-73.97347,"(40.763657, -73.97347)",WEST 58 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inexperience,,,,4454873,Box Truck,Sedan,,, +09/02/2021,9:39,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4455427,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,21:00,,,40.84487,-73.92068,"(40.84487, -73.92068)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455228,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,1:30,,,,,,VANWYCK EXPRESSWAY,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4454485,Sedan,,,, +09/05/2021,12:10,BRONX,10472,40.82678,-73.878746,"(40.82678, -73.878746)",,,1120 ELDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455324,Sedan,Sedan,Sedan,, +09/07/2021,11:08,,,40.665947,-73.8735,"(40.665947, -73.8735)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4455266,Sedan,Sedan,,, +09/07/2021,19:20,,,40.78322,-73.84586,"(40.78322, -73.84586)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454770,Sedan,,,, +09/07/2021,12:58,QUEENS,11101,40.75294,-73.94047,"(40.75294, -73.94047)",,,23-10 41 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454975,Station Wagon/Sport Utility Vehicle,Moped,,, +09/07/2021,10:30,,,40.76394,-73.828156,"(40.76394, -73.828156)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4454673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,21:00,,,40.53842,-74.23742,"(40.53842, -74.23742)",SHARROTTS ROAD,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454962,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,12:00,MANHATTAN,10002,40.713165,-73.980804,"(40.713165, -73.980804)",,,18 JACKSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455303,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/07/2021,6:15,,,,,,EAST 110 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Turning Improperly,,,,4455180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,18:00,BRONX,10461,40.841774,-73.8329,"(40.841774, -73.8329)",,,1525 EDISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454834,Sedan,Sedan,,, +09/07/2021,0:00,,,40.844746,-73.90363,"(40.844746, -73.90363)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454856,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,18:49,,,40.60715,-73.89837,"(40.60715, -73.89837)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455061,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,20:00,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4454918,Sedan,Sedan,,, +09/07/2021,8:10,QUEENS,11363,40.7684,-73.73755,"(40.7684, -73.73755)",NORTHERN BOULEVARD,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4454695,Bus,Chassis Cab,,, +09/07/2021,7:40,BROOKLYN,11212,40.654377,-73.91959,"(40.654377, -73.91959)",,,1015 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4454748,Sedan,Sedan,,, +09/07/2021,12:38,,,,,,BRONX WHITESTONE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4455396,Sedan,Sedan,Sedan,, +09/07/2021,9:15,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4454616,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +08/29/2021,8:39,QUEENS,11372,40.75286,-73.87446,"(40.75286, -73.87446)",93 STREET,35 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,21:00,,,40.823647,-73.87843,"(40.823647, -73.87843)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454928,Pick-up Truck,,,, +09/07/2021,16:30,QUEENS,11435,40.7042,-73.815254,"(40.7042, -73.815254)",QUEENS BOULEVARD,HILLSIDE AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454800,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/06/2021,18:50,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",WEST 40 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455314,Sedan,Sedan,,, +09/07/2021,10:30,BRONX,10466,40.892834,-73.847466,"(40.892834, -73.847466)",,,4123 BRUNER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4454699,Sedan,Sedan,,, +09/07/2021,14:30,,,40.76095,-73.832756,"(40.76095, -73.832756)",PRINCE STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454754,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,20:12,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,KINGS HIGHWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4455079,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,18:30,,,,,,,,71 EAST DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4455017,Bike,,,, +09/07/2021,14:15,,,40.59359,-73.99613,"(40.59359, -73.99613)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4455028,Sedan,Sedan,,, +09/07/2021,8:00,BRONX,10468,40.879547,-73.885796,"(40.879547, -73.885796)",,,40 WEST MOSHOLU PARKWAY SOUTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4454613,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,20:30,BROOKLYN,11235,40.58882,-73.937744,"(40.58882, -73.937744)",,,2616 BROWN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454860,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/07/2021,18:10,,,40.705414,-73.78035,"(40.705414, -73.78035)",LIBERTY AVENUE,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4454934,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,6:00,,,40.761036,-73.98702,"(40.761036, -73.98702)",WEST 48 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454545,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,20:00,QUEENS,11429,,,,,,107-06 223 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4454762,Sedan,,,, +09/07/2021,17:39,BRONX,10461,40.842484,-73.84254,"(40.842484, -73.84254)",,,1370 BLONDELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455010,Sedan,,,, +09/07/2021,7:40,QUEENS,11373,40.745304,-73.86912,"(40.745304, -73.86912)",,,95-01 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454912,Sedan,Sedan,,, +09/07/2021,10:36,,,40.71001,-73.79474,"(40.71001, -73.79474)",168 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454686,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,21:00,,,40.81261,-73.95683,"(40.81261, -73.95683)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455290,Sedan,Sedan,,, +09/02/2021,0:00,BRONX,10472,40.833767,-73.87738,"(40.833767, -73.87738)",EAST 173 STREET,MANOR AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455237,Sedan,,,, +09/07/2021,19:34,BROOKLYN,11236,40.647537,-73.89466,"(40.647537, -73.89466)",,,10402 FLATLANDS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454804,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,16:15,QUEENS,11364,40.748802,-73.75655,"(40.748802, -73.75655)",,,61-29 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455105,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/07/2021,14:53,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4455209,Sedan,Sedan,,, +09/07/2021,21:45,QUEENS,11373,40.739082,-73.88954,"(40.739082, -73.88954)",,,74-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454813,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,14:10,BRONX,10467,40.880257,-73.876785,"(40.880257, -73.876785)",EAST GUN HILL ROAD,TRYON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454678,Sedan,Sedan,,, +08/25/2021,22:15,,,40.718647,-73.83771,"(40.718647, -73.83771)",75 AVENUE,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,11:25,,,40.58359,-74.156204,"(40.58359, -74.156204)",,,167 BRIDGETOWN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4454642,Sedan,,,, +09/07/2021,8:30,,,40.75326,-74.00383,"(40.75326, -74.00383)",WEST 30 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Backing Unsafely,,,,4455307,Station Wagon/Sport Utility Vehicle,Bus,,, +09/07/2021,17:47,QUEENS,11368,40.750164,-73.86067,"(40.750164, -73.86067)",,,104-25 ROOSEVELT AVENUE,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4454945,Sedan,E-Bike,,, +09/07/2021,13:40,QUEENS,11379,,,,,,66-78 69 STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455039,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,1:00,BROOKLYN,11235,40.589237,-73.96245,"(40.589237, -73.96245)",AVENUE Y,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454721,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,18:39,BROOKLYN,11226,40.65121,-73.95893,"(40.65121, -73.95893)",FLATBUSH AVENUE,MARTENSE STREET,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454838,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/07/2021,19:12,BRONX,10458,40.857277,-73.888466,"(40.857277, -73.888466)",LORILLARD PLACE,EAST 188 STREET,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4454987,Minicycle,Van,,, +09/07/2021,21:30,BROOKLYN,11220,40.636353,-74.02801,"(40.636353, -74.02801)",,,225 BAY RIDGE AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4454897,Sedan,,,, +09/07/2021,1:50,QUEENS,11101,40.755875,-73.93691,"(40.755875, -73.93691)",,,38-24 24 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454631,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/07/2021,7:25,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454510,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,20:25,BROOKLYN,11203,40.646423,-73.92499,"(40.646423, -73.92499)",,,458 EAST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454765,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/02/2021,17:13,,,,,,DONGAN HILL AVENUE,MASON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,,,,,4455383,Motorcycle,,,, +09/07/2021,14:00,BROOKLYN,11214,40.60461,-73.99826,"(40.60461, -73.99826)",20 AVENUE,86 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4454846,Sedan,Bike,,, +09/07/2021,11:10,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",JAMAICA AVENUE,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4454728,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/30/2021,21:46,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4455242,Sedan,Taxi,,, +09/07/2021,12:00,,,40.678303,-73.87289,"(40.678303, -73.87289)",CONDUIT BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455276,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +09/07/2021,15:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455155,Sedan,Sedan,,, +08/27/2021,15:05,,,40.69885,-73.938576,"(40.69885, -73.938576)",,,PARK AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4455347,PK,Sedan,,, +09/07/2021,15:26,QUEENS,11377,40.74251,-73.90734,"(40.74251, -73.90734)",44 AVENUE,58 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454778,Box Truck,,,, +09/07/2021,13:13,QUEENS,11433,40.69401,-73.77864,"(40.69401, -73.77864)",SAYRES AVENUE,173 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4455201,Bike,Sedan,,, +09/07/2021,14:00,STATEN ISLAND,10306,40.55777,-74.115715,"(40.55777, -74.115715)",GUYON AVENUE,RIGA STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455377,Sedan,Pick-up Truck,,, +09/07/2021,22:00,QUEENS,11430,,,,Belt Parkway,Van Wyck Expressway,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4454929,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,23:00,MANHATTAN,10029,40.79428,-73.94902,"(40.79428, -73.94902)",EAST 107 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455430,Sedan,Sedan,,, +09/07/2021,8:55,QUEENS,11354,40.767754,-73.83193,"(40.767754, -73.83193)",LINDEN PLACE,32 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454674,Sedan,,,, +09/07/2021,9:30,,,40.691708,-73.97355,"(40.691708, -73.97355)",WASHINGTON PARK,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454976,Sedan,,,, +09/06/2021,19:52,,,40.73068,-73.94923,"(40.73068, -73.94923)",GREENPOINT AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455313,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,23:40,BRONX,10473,40.82066,-73.84213,"(40.82066, -73.84213)",,,635 ZEREGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4454920,Sedan,,,, +09/07/2021,9:05,MANHATTAN,10019,40.76593,-73.99088,"(40.76593, -73.99088)",WEST 52 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454656,Pro master,,,, +09/07/2021,2:00,BRONX,10453,40.848022,-73.90859,"(40.848022, -73.90859)",MORRIS AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,,4454700,Sedan,Sedan,Sedan,, +09/07/2021,23:00,QUEENS,11377,40.746143,-73.89812,"(40.746143, -73.89812)",ROOSEVELT AVENUE,67 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455051,,,,, +09/07/2021,20:10,QUEENS,11105,40.77436,-73.91287,"(40.77436, -73.91287)",23 AVENUE,31 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4455029,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +09/07/2021,6:23,QUEENS,11375,40.722305,-73.84414,"(40.722305, -73.84414)",108 STREET,70 ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4454619,Sedan,Sedan,,, +09/07/2021,19:30,,,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455348,Sedan,,,, +09/02/2021,17:05,QUEENS,11375,40.71626,-73.830734,"(40.71626, -73.830734)",78 AVENUE,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455439,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,18:48,BROOKLYN,11212,40.668995,-73.91058,"(40.668995, -73.91058)",,,452 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455186,Sedan,Van,,, +09/07/2021,16:30,,,,,,BRUCKNER EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454823,Sedan,Sedan,,, +08/30/2021,23:18,QUEENS,11103,40.76548,-73.913704,"(40.76548, -73.913704)",28 AVENUE,STEINWAY STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455260,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/07/2021,15:40,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455267,Sedan,Sedan,,, +09/07/2021,0:48,BRONX,10460,40.84343,-73.88254,"(40.84343, -73.88254)",DALY AVENUE,EAST 179 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4454486,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,10:13,MANHATTAN,10022,40.758633,-73.96579,"(40.758633, -73.96579)",EAST 56 STREET,2 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455391,Taxi,Bike,,, +09/07/2021,17:44,BROOKLYN,11235,40.587418,-73.95936,"(40.587418, -73.95936)",AVENUE Z,EAST 11 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4454859,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,17:25,BROOKLYN,11238,40.67942,-73.96823,"(40.67942, -73.96823)",BERGEN STREET,VANDERBILT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454876,Concrete Mixer,,,, +09/06/2021,16:00,BROOKLYN,11204,40.622166,-73.98356,"(40.622166, -73.98356)",,,5601 19 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455326,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/07/2021,15:00,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",QUEENS BOULEVARD,ELIOT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,19:00,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455062,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/07/2021,8:50,QUEENS,11435,40.706367,-73.816734,"(40.706367, -73.816734)",QUEENS BOULEVARD,87 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4454799,Sedan,,,, +09/07/2021,10:30,,,40.748955,-73.87136,"(40.748955, -73.87136)",ROOSEVELT AVENUE,95 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4455373,Station Wagon/Sport Utility Vehicle,Bike,,, +09/07/2021,16:15,,,40.584366,-73.9271,"(40.584366, -73.9271)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4454864,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,9:00,,,40.749943,-73.754616,"(40.749943, -73.754616)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4454694,Pick-up Truck,Sedan,,, +09/07/2021,4:00,,,40.663906,-73.95098,"(40.663906, -73.95098)",EMPIRE BOULEVARD,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4454604,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/07/2021,7:18,BRONX,10468,40.870014,-73.89135,"(40.870014, -73.89135)",,,2815 GRAND CONCOURSE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4454966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,20:04,BROOKLYN,11212,40.6583,-73.918365,"(40.6583, -73.918365)",,,370 EAST 96 STREET,3,0,1,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4455084,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck, +09/07/2021,8:10,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454757,Sedan,Sedan,,, +09/07/2021,11:57,BROOKLYN,11203,40.64571,-73.94324,"(40.64571, -73.94324)",,,1118 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4454741,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/07/2021,18:45,MANHATTAN,10012,40.725037,-74.00153,"(40.725037, -74.00153)",,,420 WEST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455019,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,22:05,,,40.582756,-74.13041,"(40.582756, -74.13041)",ROCKLAND AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4455357,Sedan,,,, +09/07/2021,0:57,BROOKLYN,11212,40.65634,-73.92137,"(40.65634, -73.92137)",KINGS HIGHWAY,EAST 92 STREET,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Alcohol Involvement,,,,4454789,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,12:10,BROOKLYN,11226,40.644657,-73.95664,"(40.644657, -73.95664)",EAST 22 STREET,BEVERLEY ROAD,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4454832,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,22:36,,,40.742996,-73.75073,"(40.742996, -73.75073)",224 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455300,Sedan,,,, +09/04/2021,19:58,BRONX,10456,40.834515,-73.91771,"(40.834515, -73.91771)",GRAND CONCOURSE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455229,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/07/2021,16:20,,,40.608833,-73.76515,"(40.608833, -73.76515)",MOTT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4454855,AMBULANCE,,,, +09/07/2021,16:30,QUEENS,11104,40.749344,-73.919365,"(40.749344, -73.919365)",44 STREET,BARNETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454779,Sedan,Sedan,,, +09/01/2021,23:45,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455474,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,18:15,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455202,Station Wagon/Sport Utility Vehicle,,,, +08/27/2021,18:45,BROOKLYN,11219,40.644302,-73.99387,"(40.644302, -73.99387)",,,979 40 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4455222,Taxi,,,, +08/24/2021,18:00,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,7:00,QUEENS,11414,40.668556,-73.84714,"(40.668556, -73.84714)",88 STREET,151 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4454805,Sedan,,,, +04/14/2022,9:20,QUEENS,11420,40.677654,-73.82866,"(40.677654, -73.82866)",,,110-00 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4519177,Sedan,,,, +04/15/2022,12:30,BROOKLYN,11218,40.639587,-73.974785,"(40.639587, -73.974785)",,,519 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520229,Sedan,,,, +04/12/2022,23:48,,,40.80777,-73.94549,"(40.80777, -73.94549)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4520236,Sedan,,,, +04/08/2022,12:38,BROOKLYN,11219,40.635582,-73.99155,"(40.635582, -73.99155)",48 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520227,Sedan,,,, +04/16/2022,22:00,MANHATTAN,10026,40.805096,-73.95488,"(40.805096, -73.95488)",8 AVENUE,WEST 117 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4520235,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/15/2022,23:42,BROOKLYN,11211,40.71553,-73.95257,"(40.71553, -73.95257)",,,294 NORTH 8 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520234,Sedan,,,, +04/13/2022,12:40,QUEENS,11367,40.72784,-73.83284,"(40.72784, -73.83284)",JEWEL AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519197,Sedan,Sedan,,, +04/16/2022,23:21,BRONX,10453,40.857098,-73.917206,"(40.857098, -73.917206)",,,1960 CEDAR AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520230,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,21:15,BROOKLYN,11230,40.630344,-73.968185,"(40.630344, -73.968185)",,,755 EAST 9 STREET,4,0,0,0,0,0,4,0,Other Vehicular,Driver Inattention/Distraction,,,,4516355,Sedan,Sedan,,, +04/25/2022,17:50,,,40.644,-73.87584,"(40.644, -73.87584)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4522053,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,22:13,QUEENS,11377,,,,,,24-55 Brooklyn queens expressway wes,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4522233,Sedan,Sedan,,, +04/25/2022,12:28,BROOKLYN,11210,,,,GLENWOOD ROAD,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4522112,Station Wagon/Sport Utility Vehicle,,,, +04/22/2022,23:35,BROOKLYN,11236,,,,REMSEN AVENUE,AVENUE A,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4522525,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/25/2022,0:32,QUEENS,11370,40.766903,-73.895966,"(40.766903, -73.895966)",ASTORIA BOULEVARD,73 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4521682,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/25/2022,23:37,BROOKLYN,11206,,,,,,905 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4522089,Sedan,Sedan,Sedan,Sedan, +04/22/2022,5:00,QUEENS,11385,40.70833,-73.91037,"(40.70833, -73.91037)",,,1934 HARMAN STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4522406,Pick-up Truck,,,, +04/25/2022,18:40,QUEENS,11432,40.71001,-73.79474,"(40.71001, -73.79474)",168 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4522140,Sedan,Bus,,, +04/20/2022,20:30,MANHATTAN,10001,40.7496,-74.00281,"(40.7496, -74.00281)",,,450 WEST 26 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4522485,Van,,,, +04/24/2022,23:40,BROOKLYN,11233,40.681572,-73.92579,"(40.681572, -73.92579)",PATCHEN AVENUE,BAINBRIDGE STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4522577,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/17/2022,7:00,,,40.5778,-73.96057,"(40.5778, -73.96057)",BRIGHTON BEACH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4522649,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/08/2021,7:15,QUEENS,11378,,,,69 STREET,CLINTON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4455040,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,15:20,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4499677,Taxi,Sedan,,, +07/09/2022,14:45,QUEENS,11432,40.71449,-73.789665,"(40.71449, -73.789665)",,,172-66 HENLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544825,Sedan,,,, +04/16/2022,12:50,BROOKLYN,11229,40.603344,-73.93684,"(40.603344, -73.93684)",GERRITSEN AVENUE,AVENUE T,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519510,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,18:00,BROOKLYN,11222,40.726402,-73.95478,"(40.726402, -73.95478)",,,64 MESEROLE AVENUE,0,0,0,0,0,0,0,0,,,,,,4519788,,,,, +04/16/2022,0:15,,,40.67533,-73.93609,"(40.67533, -73.93609)",BERGEN STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519613,Station Wagon/Sport Utility Vehicle,Bike,,, +04/16/2022,0:17,MANHATTAN,10001,40.74666,-73.990074,"(40.74666, -73.990074)",WEST 29 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Passing Too Closely,Unspecified,,,4520050,Sedan,Sedan,Sedan,, +04/10/2022,14:30,BROOKLYN,11220,40.64615,-74.01509,"(40.64615, -74.01509)",,,314 52 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520030,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,0:50,QUEENS,11377,40.746334,-73.89633,"(40.746334, -73.89633)",ROOSEVELT AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519312,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,13:30,,,40.750668,-73.85097,"(40.750668, -73.85097)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519562,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,7:40,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",BRONX RIVER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4519931,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +04/16/2022,22:35,BROOKLYN,11207,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519661,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,16:57,,,40.83091,-73.92047,"(40.83091, -73.92047)",GRAND CONCOURSE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520004,Station Wagon/Sport Utility Vehicle,Moped,,, +04/16/2022,1:05,MANHATTAN,10010,40.739933,-73.98579,"(40.739933, -73.98579)",,,108 EAST 23 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,Other Vehicular,,,4520105,Sedan,Sedan,Taxi,, +04/08/2022,7:30,BROOKLYN,11212,,,,,,162 CHRISTOPHER AVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520193,Sedan,,,, +04/16/2022,0:35,BROOKLYN,11214,40.59232,-73.9931,"(40.59232, -73.9931)",CROPSEY AVENUE,25 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519325,Sedan,Pick-up Truck,,, +04/16/2022,22:30,BROOKLYN,11221,40.689274,-73.92398,"(40.689274, -73.92398)",GATES AVENUE,RALPH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519685,,,,, +04/16/2022,6:25,,,40.66319,-73.93727,"(40.66319, -73.93727)",LEFFERTS AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4520047,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,23:45,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,6,0,0,0,0,0,6,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,Unspecified,4520092,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Sedan +04/16/2022,16:00,BROOKLYN,11211,40.713264,-73.94218,"(40.713264, -73.94218)",,,292 AINSLIE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519986,Sedan,,,, +04/16/2022,3:20,BROOKLYN,11224,40.578106,-73.99263,"(40.578106, -73.99263)",NEPTUNE AVENUE,WEST 25 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519347,Sedan,Sedan,,, +04/16/2022,22:20,QUEENS,11004,40.753345,-73.7068,"(40.753345, -73.7068)",,,270-05 76 AVENUE,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519481,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,19:59,,,40.79124,-73.9794,"(40.79124, -73.9794)",WEST 88 STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4519812,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/16/2022,13:54,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,23:25,,,40.8464,-73.89338,"(40.8464, -73.89338)",ARTHUR AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519935,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,19:25,,,40.81417,-73.93431,"(40.81417, -73.93431)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519950,Taxi,Pick-up Truck,,, +04/16/2022,1:10,,,40.825897,-73.93936,"(40.825897, -73.93936)",8 AVENUE,WEST 150 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Failure to Keep Right,,,,4519445,Bus,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:33,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4519411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,9:55,BROOKLYN,11234,40.614258,-73.92765,"(40.614258, -73.92765)",,,2286 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4520124,Box Truck,,,, +04/25/2022,1:30,BROOKLYN,11237,0,0,"(0.0, 0.0)",WYCKOFF AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521827,Bus,Sedan,,, +09/08/2021,15:00,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4455110,Motorcycle,,,, +04/14/2022,10:34,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",EAST 96 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4520175,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +04/14/2022,17:15,,,40.62456,-74.15878,"(40.62456, -74.15878)",WILCOX STREET,HEANEY AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4520213,Sedan,Sedan,,, +04/16/2022,15:50,,,40.593163,-73.9086,"(40.593163, -73.9086)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519413,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,15:10,MANHATTAN,10022,40.75907,-73.9765,"(40.75907, -73.9765)",,,1 EAST 51 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520070,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,20:20,,,40.768475,-73.809494,"(40.768475, -73.809494)",155 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519475,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,12:10,QUEENS,11364,40.744976,-73.748634,"(40.744976, -73.748634)",69 AVENUE,CLOVERDALE BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519390,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/11/2022,19:20,MANHATTAN,10029,40.794476,-73.93357,"(40.794476, -73.93357)",,,280 PLEASANT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519949,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,5:30,QUEENS,11373,40.734364,-73.88148,"(40.734364, -73.88148)",HASPEL STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519649,Sedan,,,, +04/16/2022,12:44,MANHATTAN,10034,40.86406,-73.92472,"(40.86406, -73.92472)",,,120 SHERMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/15/2022,8:18,,,40.874973,-73.87946,"(40.874973, -73.87946)",BAINBRIDGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519976,Sedan,,,, +04/15/2022,19:00,BROOKLYN,11217,40.685513,-73.97429,"(40.685513, -73.97429)",SOUTH PORTLAND AVENUE,HANSON PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519968,Sedan,,,, +04/16/2022,2:08,QUEENS,11414,40.66366,-73.83903,"(40.66366, -73.83903)",,,156-36 95 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519405,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +04/16/2022,16:00,,,40.765625,-73.7244,"(40.765625, -73.7244)",LITTLE NECK PARKWAY,NASSAU BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519460,Sedan,Pick-up Truck,,, +04/16/2022,1:30,QUEENS,11103,40.76805,-73.91382,"(40.76805, -73.91382)",,,25-09 37 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4519581,Station Wagon/Sport Utility Vehicle,,,, +04/06/2022,14:49,BROOKLYN,11234,40.62636,-73.91901,"(40.62636, -73.91901)",EAST 59 STREET,AVENUE K,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520120,Sedan,Sedan,,, +04/16/2022,22:50,QUEENS,11433,40.707893,-73.78673,"(40.707893, -73.78673)",173 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519857,Sedan,,,, +04/16/2022,2:15,BRONX,10457,40.846657,-73.89619,"(40.846657, -73.89619)",3 AVENUE,EAST TREMONT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520022,Sedan,,,, +04/07/2022,18:00,BROOKLYN,11234,40.633232,-73.9284,"(40.633232, -73.9284)",,,1601 UTICA AVENUE,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4520125,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,22:50,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4519482,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,18:43,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520206,Sedan,Sedan,Sedan,, +04/16/2022,20:00,BROOKLYN,11226,40.646557,-73.95742,"(40.646557, -73.95742)",,,2163 TILDEN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519541,Sedan,Sedan,,, +04/16/2022,12:20,MANHATTAN,10019,40.77146,-73.994354,"(40.77146, -73.994354)",12 AVENUE,WEST 57 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520075,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:50,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",SUNRISE HIGHWAY,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519429,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,18:30,MANHATTAN,10027,40.811264,-73.95782,"(40.811264, -73.95782)",AMSTERDAM AVENUE,WEST 123 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520000,E-Bike,Convertible,,, +04/13/2022,20:55,,,40.832035,-73.85568,"(40.832035, -73.85568)",ELLIS AVENUE,CROSS BRONX EXPRESSWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519925,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +04/13/2022,17:55,,,40.68122,-73.98047,"(40.68122, -73.98047)",,,4 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519911,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,19:22,MANHATTAN,10016,40.742023,-73.98292,"(40.742023, -73.98292)",EAST 27 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519941,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,11:48,BROOKLYN,11219,40.634537,-74.003395,"(40.634537, -74.003395)",57 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520218,Sedan,Sedan,,, +04/16/2022,16:42,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4519995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,14:20,QUEENS,11368,40.75639,-73.859726,"(40.75639, -73.859726)",109 STREET,34 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520057,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,10:30,,,40.675735,-73.89686,"(40.675735, -73.89686)",,,PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519642,Sedan,Sedan,,, +04/16/2022,0:05,BROOKLYN,11203,40.658665,-73.93756,"(40.658665, -73.93756)",,,659 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520035,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,16:03,BROOKLYN,11221,40.693825,-73.93422,"(40.693825, -73.93422)",,,59 STUYVESANT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519689,Sedan,Sedan,,, +04/16/2022,11:43,,,40.737907,-73.877174,"(40.737907, -73.877174)",BROADWAY,JUSTICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519558,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,1:02,,,,,,FDR DRIVE RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519829,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,18:12,MANHATTAN,10036,40.757233,-73.9898,"(40.757233, -73.9898)",WEST 42 STREET,8 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4520113,Bus,Motorscooter,,, +04/16/2022,17:30,BROOKLYN,11223,40.602337,-73.984375,"(40.602337, -73.984375)",,,1810 WEST 12 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519491,Sedan,Sedan,,, +04/15/2022,12:40,STATEN ISLAND,10304,40.62655,-74.076965,"(40.62655, -74.076965)",,,108 CANAL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520011,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,11:55,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520134,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,21:17,QUEENS,11105,40.77436,-73.91287,"(40.77436, -73.91287)",31 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519765,Sedan,,,, +04/16/2022,17:35,QUEENS,11373,40.745384,-73.88247,"(40.745384, -73.88247)",,,83-15 PETTIT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519564,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,0:50,QUEENS,11419,40.691357,-73.812904,"(40.691357, -73.812904)",,,133-12 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4519772,Sedan,Sedan,Sedan,, +04/16/2022,10:25,,,,,,,,1110 Flatlands ave,0,0,0,0,0,0,0,0,Unspecified,,,,,4519664,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,0:00,,,,,,Rogers,lefferets avenue,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4520043,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,1:01,,,40.78006,-73.988174,"(40.78006, -73.988174)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,4519317,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/15/2022,23:05,,,40.764736,-73.98804,"(40.764736, -73.98804)",WEST 52 STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4520083,Sedan,Bike,,, +04/14/2022,13:00,,,40.825817,-73.95302,"(40.825817, -73.95302)",RIVERSIDE DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520199,Sedan,,,, +04/16/2022,15:52,BROOKLYN,11234,40.599163,-73.91084,"(40.599163, -73.91084)",,,2900 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519531,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2022,20:55,,,,,,TERRACE VIEW AVENUE,WEST 225 STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519990,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,12:15,BROOKLYN,11212,40.66544,-73.916466,"(40.66544, -73.916466)",,,629 SARATOGA AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4520189,Sedan,Sedan,,, +04/15/2022,18:11,QUEENS,11429,40.70906,-73.73056,"(40.70906, -73.73056)",225 STREET,106 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520128,Sedan,Sedan,,, +04/15/2022,7:36,BROOKLYN,11218,40.64795,-73.979675,"(40.64795, -73.979675)",,,3132 FORT HAMILTON PARKWAY,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520029,Sedan,Bike,,, +04/16/2022,3:25,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519327,Sedan,,,, +09/08/2021,10:15,,,,,,HENRY HUDSON PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455194,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,8:00,,,40.60784,-73.961975,"(40.60784, -73.961975)",QUENTIN ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499824,Sedan,,,, +04/16/2022,15:30,BROOKLYN,11249,40.71779,-73.96521,"(40.71779, -73.96521)",METROPOLITAN AVENUE,RIVER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519487,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,4:25,BROOKLYN,11207,40.677708,-73.885574,"(40.677708, -73.885574)",,,2939 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4519665,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,13:50,BRONX,10467,40.865532,-73.86238,"(40.865532, -73.86238)",BOSTON ROAD,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519559,Sedan,Carry All,,, +04/12/2022,17:42,BRONX,10460,40.850666,-73.88243,"(40.850666, -73.88243)",,,2300 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4519985,Sedan,Sedan,,, +04/14/2022,14:00,BRONX,10462,40.83642,-73.84715,"(40.83642, -73.84715)",,,2355 WESTCHESTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520010,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,23:34,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,,,,,,4519616,,,,, +04/13/2022,8:42,MANHATTAN,10075,40.775677,-73.9647,"(40.775677, -73.9647)",EAST 77 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Backing Unsafely,,,,4520176,Sedan,Sedan,,, +04/15/2022,19:05,MANHATTAN,10019,40.77074,-73.99455,"(40.77074, -73.99455)",WEST 56 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Unspecified,,,,4520073,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4519426,Tractor Truck Diesel,Sedan,,, +04/16/2022,16:44,QUEENS,11413,40.68561,-73.75027,"(40.68561, -73.75027)",SPRINGFIELD BOULEVARD,130 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519440,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,10:26,MANHATTAN,10010,40.744083,-73.98973,"(40.744083, -73.98973)",,,28 WEST 26 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519920,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/15/2022,12:30,QUEENS,11385,40.704678,-73.86761,"(40.704678, -73.86761)",81 STREET,78 ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520139,Sedan,Tractor Truck Diesel,,, +04/16/2022,15:37,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519511,Sedan,Sedan,,, +04/11/2022,3:58,BRONX,10472,40.824432,-73.88304,"(40.824432, -73.88304)",,,1056 BRONX RIVER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519971,Sedan,,,, +04/07/2022,11:55,,,40.642605,-74.01981,"(40.642605, -74.01981)",59 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520104,Sedan,,,, +04/16/2022,19:00,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",LEFFERTS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519783,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,15:35,,,40.835472,-73.8669,"(40.835472, -73.8669)",CROSS BRONX EXPRESSWAY,BEACH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519926,Sedan,Sedan,,, +04/16/2022,17:34,QUEENS,11422,40.65287,-73.72974,"(40.65287, -73.72974)",149 AVENUE,259 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519433,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,23:31,,,40.675682,-74.00119,"(40.675682, -74.00119)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Following Too Closely,Other Vehicular,Other Vehicular,,4519579,Sedan,Sedan,Sedan,Sedan, +04/16/2022,11:43,QUEENS,11435,40.69401,-73.80714,"(40.69401, -73.80714)",LIBERTY AVENUE,PRINCETON STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4520023,E-Bike,,,, +04/13/2022,10:40,,,,,,SHORE PARKWAY,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520056,Sedan,Bike,,, +04/16/2022,19:40,BRONX,10468,40.875893,-73.88825,"(40.875893, -73.88825)",JEROME AVENUE,EAST 205 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Other Vehicular,,,,4519978,Ambulance,Bus,,, +04/16/2022,18:57,,,40.710667,-73.93361,"(40.710667, -73.93361)",MORGAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519497,Sedan,E-Scooter,,, +04/16/2022,18:50,,,40.839237,-73.94688,"(40.839237, -73.94688)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519597,Sedan,Pick-up Truck,,, +04/07/2022,17:00,,,40.583725,-73.89372,"(40.583725, -73.89372)",FLATBUSH AVENUE,AVIATION ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520121,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,2:00,,,40.826923,-73.913635,"(40.826923, -73.913635)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520016,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,12:47,,,40.74613,-73.83605,"(40.74613, -73.83605)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499837,Sedan,Sedan,,, +04/09/2022,19:20,MANHATTAN,10031,40.825138,-73.9514,"(40.825138, -73.9514)",WEST 143 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520207,Sedan,,,, +04/16/2022,23:52,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4519908,Sedan,,,, +04/16/2022,5:05,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",RUST STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519345,Sedan,,,, +04/08/2022,17:00,BRONX,10472,40.82817,-73.86265,"(40.82817, -73.86265)",WATSON AVENUE,LELAND AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519964,Station Wagon/Sport Utility Vehicle,Bike,Station Wagon/Sport Utility Vehicle,, +04/16/2022,20:09,,,40.831623,-73.95072,"(40.831623, -73.95072)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519476,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,16:32,MANHATTAN,10028,40.77609,-73.95554,"(40.77609, -73.95554)",,,200 EAST 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519802,Sedan,UKNOWN,,, +04/16/2022,23:58,BROOKLYN,11207,40.673016,-73.89718,"(40.673016, -73.89718)",GLENMORE AVENUE,SHEFFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519646,Sedan,unknown,,, +04/16/2022,1:40,,,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4520069,Sedan,Sedan,,, +04/16/2022,1:52,,,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519723,Sedan,Sedan,,, +04/10/2022,12:53,BROOKLYN,11205,40.69786,-73.96395,"(40.69786, -73.96395)",FLUSHING AVENUE,STEUBEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520017,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,8:00,BROOKLYN,11210,40.61383,-73.95105,"(40.61383, -73.95105)",,,2302 AVENUE O,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519540,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,8:58,MANHATTAN,10013,40.71759,-74.0022,"(40.71759, -74.0022)",,,79 WHITE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519973,Sedan,Box Truck,,, +04/12/2022,17:51,BRONX,10454,40.80879,-73.91619,"(40.80879, -73.91619)",EAST 141 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4519996,Motorcycle,Sedan,,, +04/16/2022,20:58,,,40.753677,-73.914474,"(40.753677, -73.914474)",NORTHERN BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519585,Sedan,,,, +04/13/2022,19:25,BRONX,10457,40.851624,-73.888664,"(40.851624, -73.888664)",,,2247 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519934,Sedan,,,, +04/16/2022,12:15,,,40.744057,-73.8468,"(40.744057, -73.8468)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519379,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,22:50,QUEENS,11361,40.761684,-73.760315,"(40.761684, -73.760315)",NORTHERN BOULEVARD,221 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519747,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,15:45,,,40.81394,-73.948425,"(40.81394, -73.948425)",WEST 131 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519444,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:20,,,40.684845,-73.81338,"(40.684845, -73.81338)",109 AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519776,Sedan,Box Truck,,, +04/16/2022,22:18,BROOKLYN,11234,40.62356,-73.927376,"(40.62356, -73.927376)",UTICA AVENUE,AVENUE L,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4519530,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,7:45,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4519746,Sedan,,,, +04/15/2022,14:20,BROOKLYN,11225,40.665462,-73.95201,"(40.665462, -73.95201)",,,377 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520034,Sedan,Truck,,, +04/16/2022,2:00,BROOKLYN,11207,40.666443,-73.90026,"(40.666443, -73.90026)",,,350 SNEDIKER AVENUE,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4519641,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,13:30,BROOKLYN,11225,40.65695,-73.95243,"(40.65695, -73.95243)",,,224 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520044,Sedan,Van,,, +04/16/2022,2:20,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",SPRINGFIELD BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4519319,Sedan,Sedan,,, +04/12/2022,2:20,BROOKLYN,11207,40.677208,-73.89723,"(40.677208, -73.89723)",PENNSYLVANIA AVENUE,FULTON STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520086,Sedan,Sedan,,, +04/16/2022,9:17,,,40.870907,-73.90725,"(40.870907, -73.90725)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4519989,Sedan,Sedan,Sedan,, +03/27/2022,3:00,MANHATTAN,10031,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4520198,Sedan,,,, +04/11/2022,18:55,,,40.878613,-73.849464,"(40.878613, -73.849464)",FENTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4520146,Motorcycle,Sedan,Sedan,Sedan, +04/14/2022,21:21,,,40.707153,-73.8189,"(40.707153, -73.8189)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4519927,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2022,15:00,,,40.666573,-73.78632,"(40.666573, -73.78632)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Following Too Closely,Following Too Closely,,,4519432,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2022,18:00,QUEENS,11426,40.73679,-73.719925,"(40.73679, -73.719925)",83 AVENUE,248 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519434,Sedan,Sedan,,, +04/16/2022,22:40,,,40.660362,-73.77553,"(40.660362, -73.77553)",ROCKAWAY BOULEVARD,NASSAU EXPRESSWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4519837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,16:39,BRONX,10458,40.878826,-73.8829,"(40.878826, -73.8829)",EAST MOSHOLU PARKWAY NORTH,KOSSUTH AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520078,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/16/2022,12:15,MANHATTAN,10002,40.714745,-73.98261,"(40.714745, -73.98261)",,,500 GRAND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,8:40,,,40.740112,-73.98222,"(40.740112, -73.98222)",3 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4519921,Sedan,Bike,,, +04/11/2022,20:00,BROOKLYN,11207,40.654484,-73.886536,"(40.654484, -73.886536)",COZINE AVENUE,NEW JERSEY AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4520112,Sedan,Sedan,,, +04/16/2022,23:40,,,40.704067,-73.93861,"(40.704067, -73.93861)",MOORE STREET,BUSHWICK AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519496,E-Scooter,Sedan,,, +04/16/2022,15:27,MANHATTAN,10003,40.73599,-73.98946,"(40.73599, -73.98946)",EAST 16 STREET,UNION SQUARE EAST,,1,0,0,0,1,0,0,0,Unspecified,,,,,4519942,Bike,,,, +04/16/2022,0:00,QUEENS,11385,40.69928,-73.90479,"(40.69928, -73.90479)",HANCOCK STREET,CYPRESS AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520138,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/16/2022,4:45,BRONX,10457,40.847393,-73.90463,"(40.847393, -73.90463)",CLAY AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519840,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,12:44,BRONX,10460,40.84269,-73.88737,"(40.84269, -73.88737)",ELSMERE PLACE,MARMION AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4519938,Sedan,Motorcycle,Station Wagon/Sport Utility Vehicle,, +04/11/2022,12:47,BRONX,10472,40.82839,-73.86748,"(40.82839, -73.86748)",,,1135 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4519970,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2022,15:00,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519409,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,4:00,QUEENS,11418,40.703022,-73.83768,"(40.703022, -73.83768)",BABBAGE STREET,84 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519452,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/09/2022,2:40,BROOKLYN,11234,40.61859,-73.94242,"(40.61859, -73.94242)",KINGS HIGHWAY,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520122,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,15:00,,,,,,LIE OUTER ROADWAY (CDR),,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520127,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,23:50,BROOKLYN,11211,40.7118,-73.94224,"(40.7118, -73.94224)",GRAND STREET,HUMBOLDT STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4519486,Sedan,Sedan,,, +04/16/2022,20:51,QUEENS,11385,40.70318,-73.86058,"(40.70318, -73.86058)",,,87-17 MYRTLE AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4519680,Sedan,Sedan,Sedan,, +04/14/2022,15:00,,,40.70179,-73.81601,"(40.70179, -73.81601)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unsafe Speed,Unspecified,Unspecified,Unspecified,4520117,Sedan,Van,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/15/2022,1:25,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519988,Sedan,Ambulance,,, +04/15/2022,17:27,BROOKLYN,11224,40.578938,-73.98522,"(40.578938, -73.98522)",WEST 17 STREET,NEPTUNE AVENUE,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4520072,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,3:27,,,40.834164,-73.922226,"(40.834164, -73.922226)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4519421,Sedan,Sedan,,, +04/16/2022,13:33,BROOKLYN,11212,40.66549,-73.91063,"(40.66549, -73.91063)",BLAKE AVENUE,CHESTER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519518,Sedan,Van,,, +04/16/2022,1:00,,,40.673786,-73.76381,"(40.673786, -73.76381)",FARMERS BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519378,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,21:15,MANHATTAN,10002,40.720074,-73.988365,"(40.720074, -73.988365)",RIVINGTON STREET,LUDLOW STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519478,Sedan,,,, +04/14/2022,14:30,MANHATTAN,10031,40.825138,-73.9514,"(40.825138, -73.9514)",BROADWAY,WEST 143 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520200,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,10:00,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",2 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519824,Sedan,,,, +04/16/2022,18:16,,,40.676537,-73.732185,"(40.676537, -73.732185)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4519466,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2022,16:25,,,40.660297,-73.947685,"(40.660297, -73.947685)",MIDWOOD STREET,,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4520033,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/14/2022,16:35,MANHATTAN,10001,40.746616,-73.99382,"(40.746616, -73.99382)",7 AVENUE,WEST 27 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519943,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,16:55,,,,,,PELHAM PARKWAY SOUTH,EASTCHESTER ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519560,Sedan,PK,,, +04/16/2022,11:45,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519913,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,18:18,,,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519961,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,21:25,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519933,Sedan,,,, +04/16/2022,5:55,BROOKLYN,11208,40.679653,-73.88556,"(40.679653, -73.88556)",FULTON STREET,CLEVELAND STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,,,,,4519659,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,10:55,QUEENS,11377,40.752155,-73.89995,"(40.752155, -73.89995)",34 AVENUE,62 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520008,Bike,Sedan,,, +04/16/2022,1:09,MANHATTAN,10017,40.75348,-73.97879,"(40.75348, -73.97879)",MADISON AVENUE,EAST 43 STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4520103,Garbage or Refuse,Sedan,,, +04/16/2022,14:06,BROOKLYN,11230,40.62894,-73.97377,"(40.62894, -73.97377)",,,315 FOSTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519548,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,13:00,,,40.856037,-73.83284,"(40.856037, -73.83284)",PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520025,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,20:50,,,40.627987,-73.91625,"(40.627987, -73.91625)",AVENUE K,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4519533,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/16/2022,3:30,QUEENS,11434,40.692757,-73.77463,"(40.692757, -73.77463)",LINDEN BOULEVARD,175 PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4519331,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,9:20,BROOKLYN,11225,40.65998,-73.9616,"(40.65998, -73.9616)",,,2101 BEEKMAN PLACE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,Unspecified,Unspecified,4520045,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan +04/11/2022,17:18,,,40.83988,-73.916794,"(40.83988, -73.916794)",EAST 170 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520208,Motorcycle,,,, +04/16/2022,17:04,BROOKLYN,11234,40.620285,-73.93438,"(40.620285, -73.93438)",,,2036 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519441,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,12:00,BROOKLYN,11221,40.687935,-73.9154,"(40.687935, -73.9154)",HANCOCK STREET,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519598,E-Bike,,,, +04/15/2022,14:40,MANHATTAN,10028,40.775017,-73.94711,"(40.775017, -73.94711)",,,510 EAST 85 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520177,Sedan,,,, +04/10/2022,15:10,BROOKLYN,11235,40.576385,-73.96718,"(40.576385, -73.96718)",BRIGHTON 1 STREET,BRIGHTON BEACH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4520097,Sedan,Bike,,, +04/16/2022,15:22,,,40.826923,-73.913635,"(40.826923, -73.913635)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519992,Sedan,,,, +04/16/2022,20:30,,,40.651695,-73.94968,"(40.651695, -73.94968)",MARTENSE STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519624,Sedan,Sedan,,, +09/09/2021,15:10,,,,,,HORACE HARDING EXPRESSWAY,FRESH MEADOW LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455405,Sedan,Sedan,,, +02/04/2022,22:04,BROOKLYN,11231,0,0,"(0.0, 0.0)",,,347 BOND STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499930,Ambulance,Sedan,,, +04/15/2022,22:50,BROOKLYN,11219,40.64458,-73.99132,"(40.64458, -73.99132)",,,1035 38 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520225,Motorcycle,,,, +04/16/2022,17:13,,,40.799145,-73.972534,"(40.799145, -73.972534)",RIVERSIDE DRIVE,,,2,0,1,0,1,0,0,0,Reaction to Uninvolved Vehicle,,,,,4519801,Bike,,,, +04/10/2022,3:40,,,,,,MORRIS AVENUE,EAST 141 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519997,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,21:30,QUEENS,11368,40.737755,-73.85509,"(40.737755, -73.85509)",,,59-26 XENIA STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519577,Taxi,,,, +04/16/2022,18:30,,,40.747627,-73.976746,"(40.747627, -73.976746)",3 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519503,Motorcycle,,,, +04/14/2022,11:22,BROOKLYN,11225,40.66673,-73.95649,"(40.66673, -73.95649)",,,1637 BEDFORD AVENUE,1,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4520039,Sedan,E-Bike,,, +04/15/2022,12:10,,,40.582977,-73.98042,"(40.582977, -73.98042)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520055,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,17:56,BRONX,10469,40.86955,-73.844505,"(40.86955, -73.844505)",,,1428 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4519895,Station Wagon/Sport Utility Vehicle,Motorbike,,, +04/16/2022,17:51,BRONX,10468,40.87303,-73.88898,"(40.87303, -73.88898)",,,16 EAST BEDFORD PARK BOULEVARD,3,0,0,0,0,0,3,0,Other Vehicular,Following Too Closely,Unspecified,,,4519979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2022,9:35,BROOKLYN,11208,40.67086,-73.87424,"(40.67086, -73.87424)",FOUNTAIN AVENUE,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519644,Sedan,Sedan,,, +04/16/2022,16:27,QUEENS,11434,40.674744,-73.76368,"(40.674744, -73.76368)",GARRETT STREET,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519756,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,18:43,MANHATTAN,10036,40.756767,-73.98272,"(40.756767, -73.98272)",WEST 45 STREET,AVENUE OF THE AMERICAS,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4520111,Taxi,Motorscooter,,, +04/14/2022,7:59,STATEN ISLAND,10301,40.64842,-74.08517,"(40.64842, -74.08517)",,,300 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4520015,Sedan,,,, +04/15/2022,14:40,BROOKLYN,11235,40.59085,-73.94779,"(40.59085, -73.94779)",AVENUE Y,EAST 22 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4520184,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2022,20:49,,,40.739162,-73.78556,"(40.739162, -73.78556)",188 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4519779,Sedan,Ambulance,,, +04/14/2022,19:25,STATEN ISLAND,10305,40.601204,-74.06509,"(40.601204, -74.06509)",LILY POND AVENUE,NARROWS ROAD SOUTH,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4520157,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,18:00,,,40.637646,-74.111755,"(40.637646, -74.111755)",HENDERSON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520018,Sedan,Sedan,,, +04/16/2022,1:50,,,40.71576,-73.74655,"(40.71576, -73.74655)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519321,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,7:30,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520089,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,21:30,,,40.721905,-73.84502,"(40.721905, -73.84502)",QUEENS BOULEVARD,70 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519547,Sedan,,,, +04/13/2022,2:14,QUEENS,11416,40.680923,-73.85503,"(40.680923, -73.85503)",84 STREET,102 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519928,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2022,17:03,,,40.739162,-73.78556,"(40.739162, -73.78556)",188 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519436,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,17:54,BRONX,10473,40.82309,-73.862404,"(40.82309, -73.862404)",,,880 THIERIOT AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519923,Sedan,,,, +04/14/2022,15:25,,,40.57557,-73.981224,"(40.57557, -73.981224)",SURF AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520064,Station Wagon/Sport Utility Vehicle,,,, +04/13/2022,21:00,BRONX,10452,40.838768,-73.92815,"(40.838768, -73.92815)",WEST 167 STREET,WEST 168 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519993,Sedan,,,, +04/16/2022,0:00,BROOKLYN,11207,40.656216,-73.882515,"(40.656216, -73.882515)",VAN SICLEN AVENUE,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519658,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,15:30,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unsafe Speed,,,,4519709,Station Wagon/Sport Utility Vehicle,Dump,,, +04/25/2022,13:15,,,,,,HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4522158,Station Wagon/Sport Utility Vehicle,Sedan,,, +03/09/2022,12:21,,,40.801685,-73.91734,"(40.801685, -73.91734)",EAST 132 STREET,CYPRESS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Other Vehicular,,,,4519974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,13:45,,,40.78503,-73.94058,"(40.78503, -73.94058)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4519825,Sedan,Sedan,,, +04/16/2022,18:50,QUEENS,11004,40.74831,-73.70954,"(40.74831, -73.70954)",UNION TURNPIKE,263 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519465,Sedan,Sedan,,, +04/16/2022,2:41,QUEENS,11374,40.731815,-73.8713,"(40.731815, -73.8713)",WOODHAVEN BOULEVARD,LONG ISLAND EXPRESSWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519493,Sedan,Sedan,,, +04/14/2022,13:40,,,40.692345,-73.88179,"(40.692345, -73.88179)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4520137,Sedan,,,, +04/16/2022,8:24,QUEENS,11378,40.72237,-73.91065,"(40.72237, -73.91065)",58 PLACE,57 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519396,Sedan,Sedan,,, +04/11/2022,21:00,QUEENS,11368,40.749966,-73.861755,"(40.749966, -73.861755)",104 STREET,ROOSEVELT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4520118,Bike,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,23:50,,,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519846,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,2:40,QUEENS,11103,40.770233,-73.91562,"(40.770233, -73.91562)",,,33-29 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4519583,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +04/16/2022,19:30,MANHATTAN,10019,40.76998,-73.99465,"(40.76998, -73.99465)",WEST 55 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4520077,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/05/2022,10:20,BRONX,10457,40.842537,-73.89724,"(40.842537, -73.89724)",,,1743 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520195,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/16/2022,20:11,BROOKLYN,11215,40.66359,-73.9911,"(40.66359, -73.9911)",17 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4519467,Sedan,Moped,,, +04/16/2022,14:00,BRONX,10463,40.87142,-73.90654,"(40.87142, -73.90654)",,,2686 BAILEY AVENUE,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4519980,Sedan,Sedan,,, +04/14/2022,15:24,BRONX,10458,40.86052,-73.89257,"(40.86052, -73.89257)",WEBSTER AVENUE,EAST 189 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519939,Sedan,Box Truck,,, +04/10/2022,21:45,MANHATTAN,10010,40.739357,-73.98437,"(40.739357, -73.98437)",,,143 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519944,Bus,Box Truck,,, +04/16/2022,12:36,,,40.702232,-74.01587,"(40.702232, -74.01587)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519394,Sedan,Sedan,,, +04/16/2022,5:30,BRONX,10458,40.85713,-73.8808,"(40.85713, -73.8808)",SOUTHERN BOULEVARD,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4519744,Sedan,,,, +04/16/2022,12:58,QUEENS,11004,40.736156,-73.71371,"(40.736156, -73.71371)",HILLSIDE AVENUE,LITTLE NECK PARKWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519431,Sedan,Sedan,,, +04/16/2022,21:00,BROOKLYN,11226,40.637768,-73.95868,"(40.637768, -73.95868)",NEWKIRK AVENUE,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519874,Sedan,,,, +04/16/2022,11:30,,,40.74994,-73.882454,"(40.74994, -73.882454)",84 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519377,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,1:30,BROOKLYN,11233,40.67681,-73.91924,"(40.67681, -73.91924)",ATLANTIC AVENUE,HOWARD AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,,,,4519526,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,11:50,BRONX,10472,40.833965,-73.8629,"(40.833965, -73.8629)",CROSS BRONX EXPRESSWAY,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519936,Station Wagon/Sport Utility Vehicle,,,, +04/08/2022,19:00,BRONX,10451,40.82463,-73.91059,"(40.82463, -73.91059)",EAST 163 STREET,WASHINGTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520202,Sedan,,,, +04/16/2022,23:00,,,40.79856,-73.96336,"(40.79856, -73.96336)",WEST 105 STREET,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4519813,Sedan,Sedan,Sedan,, +04/16/2022,12:36,QUEENS,11354,40.770245,-73.815735,"(40.770245, -73.815735)",32 AVENUE,150 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4519447,Sedan,,,, +04/15/2022,21:00,MANHATTAN,10018,40.75595,-73.99074,"(40.75595, -73.99074)",8 AVENUE,WEST 40 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520052,Sedan,Box Truck,,, +09/09/2021,16:46,BROOKLYN,11212,,,,CHRISTOPHER AVE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4455462,Sedan,Sedan,,, +02/04/2022,9:41,,,40.84168,-73.93934,"(40.84168, -73.93934)",WEST 169 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4500010,Van,Van,,, +04/16/2022,5:25,,,40.636635,-74.008385,"(40.636635, -74.008385)",58 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4520026,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/16/2022,15:20,MANHATTAN,10032,40.83349,-73.94158,"(40.83349, -73.94158)",AMSTERDAM AVENUE,WEST 158 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519599,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:30,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519561,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,0:45,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",METROPOLITAN AVENUE,UNION AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4519987,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,1:42,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4520006,E-Bike,Sedan,,, +04/16/2022,10:57,MANHATTAN,10032,40.832237,-73.942505,"(40.832237, -73.942505)",WEST 156 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519634,Sedan,Sedan,,, +04/14/2022,18:40,QUEENS,11385,40.70701,-73.90458,"(40.70701, -73.90458)",,,2056 GATES AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4520212,Sedan,,,, +04/16/2022,2:27,MANHATTAN,10030,40.819473,-73.9462,"(40.819473, -73.9462)",,,91 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4519442,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/14/2022,8:01,BROOKLYN,11212,40.6733,-73.90392,"(40.6733, -73.90392)",LIBERTY AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520180,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,2:15,BROOKLYN,11203,40.655273,-73.93178,"(40.655273, -73.93178)",LENOX ROAD,EAST 49 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519414,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,17:20,,,40.578938,-73.98522,"(40.578938, -73.98522)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520071,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,15:00,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519912,Motorcycle,Sedan,,, +04/16/2022,20:31,MANHATTAN,10010,40.738796,-73.97716,"(40.738796, -73.97716)",1 AVENUE,EAST 26 STREET,,3,0,3,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519958,Sedan,,,, +04/16/2022,3:20,QUEENS,11422,40.67704,-73.72941,"(40.67704, -73.72941)",,,242-18 131 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519480,Sedan,Sedan,,, +04/16/2022,14:20,BROOKLYN,11207,40.65802,-73.88248,"(40.65802, -73.88248)",,,300 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519660,Ambulance,,,, +04/15/2022,14:00,BRONX,10462,40.832233,-73.85427,"(40.832233, -73.85427)",ELLIS AVENUE,OLMSTEAD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519932,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,14:01,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519800,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2022,15:35,,,40.763245,-73.75806,"(40.763245, -73.75806)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519410,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,0:20,,,40.700737,-73.99499,"(40.700737, -73.99499)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519333,Sedan,Sedan,,, +04/16/2022,19:46,,,40.605743,-73.898674,"(40.605743, -73.898674)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519532,Sedan,,,, +04/12/2022,0:00,QUEENS,11004,40.74814,-73.71943,"(40.74814, -73.71943)",,,73-50 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4520126,Sedan,,,, +04/16/2022,23:00,BROOKLYN,11210,40.63506,-73.95003,"(40.63506, -73.95003)",,,1453 FLATBUSH AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4519684,Sedan,Sedan,,, +04/16/2022,13:40,BROOKLYN,11205,40.693478,-73.965515,"(40.693478, -73.965515)",,,487 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4519485,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,12:43,BROOKLYN,11213,40.663593,-73.934044,"(40.663593, -73.934044)",,,843 EMPIRE BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4520031,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,22:00,,,40.666286,-73.95084,"(40.666286, -73.95084)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4520046,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/16/2022,19:15,,,40.83091,-73.92047,"(40.83091, -73.92047)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4519991,Sedan,Sedan,,, +04/20/2022,22:30,BROOKLYN,11203,0,0,"(0.0, 0.0)",,,151 EAST 42 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522520,Sedan,,,, +04/14/2022,17:06,QUEENS,11421,40.696743,-73.85834,"(40.696743, -73.85834)",PARK LANE SOUTH,87 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,0:15,QUEENS,11368,40.742313,-73.86033,"(40.742313, -73.86033)",,,51-11 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519556,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/15/2022,14:05,BRONX,10468,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,ANDREWS AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4519998,Sedan,Sedan,,, +04/15/2022,12:01,BROOKLYN,11234,40.619602,-73.91626,"(40.619602, -73.91626)",,,6328 AVENUE N,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520123,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,1:00,BRONX,10454,40.802227,-73.912544,"(40.802227, -73.912544)",,,781 EAST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519852,Sedan,,,, +04/16/2022,22:25,BROOKLYN,11213,40.665375,-73.934235,"(40.665375, -73.934235)",SCHENECTADY AVENUE,CROWN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4520166,Sedan,Sedan,,, +04/05/2022,16:00,,,40.62438,-74.13936,"(40.62438, -74.13936)",,,1525 FOREST AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520204,Sedan,Sedan,,, +04/16/2022,10:47,BROOKLYN,11236,40.634235,-73.89929,"(40.634235, -73.89929)",,,1517 REMSEN AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4519438,Sedan,Sedan,,, +04/15/2022,7:44,,,40.825794,-73.86124,"(40.825794, -73.86124)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4519929,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,16:00,MANHATTAN,10019,40.769226,-73.98477,"(40.769226, -73.98477)",WEST 59 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520076,Taxi,Pedicab,,, +04/16/2022,11:40,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4519430,Sedan,Sedan,Sedan,Sedan, +04/16/2022,5:12,QUEENS,11377,40.742664,-73.91005,"(40.742664, -73.91005)",,,43-07 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519473,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,15:40,BROOKLYN,11201,40.69816,-73.97834,"(40.69816, -73.97834)",,,21 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4519969,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,11:15,,,,,,EAST 116 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519948,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,14:00,BROOKLYN,11207,40.67477,-73.8966,"(40.67477, -73.8966)",,,127 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519398,Sedan,,,, +04/14/2022,19:30,MANHATTAN,10036,40.75891,-73.98977,"(40.75891, -73.98977)",,,324 WEST 44 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4520102,Sedan,Bike,,, +04/14/2022,15:30,,,40.65418,-73.91072,"(40.65418, -73.91072)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +03/31/2022,7:45,,,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,EXTERIOR STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519994,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,10:20,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",NEW LOTS AVENUE,HINSDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519643,Sedan,,,, +04/11/2022,23:26,BROOKLYN,11225,40.66807,-73.950676,"(40.66807, -73.950676)",NOSTRAND AVENUE,PRESIDENT STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4520036,Sedan,Sedan,,, +04/16/2022,10:50,BROOKLYN,11225,40.6578,-73.96036,"(40.6578, -73.96036)",,,635 FLATBUSH AVENUE,1,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,,,,4520042,Sedan,E-Bike,,, +04/16/2022,1:40,BRONX,10467,40.881588,-73.86181,"(40.881588, -73.86181)",,,762 EAST 217 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Other Vehicular,,,,4519324,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,21:52,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520136,Sedan,Sedan,,, +04/16/2022,10:40,,,40.85874,-73.93012,"(40.85874, -73.93012)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519726,Sedan,,,, +04/16/2022,22:32,,,,,,PARSONS BOULEVARD,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519780,Sedan,Sedan,,, +04/14/2022,19:09,,,40.65344,-73.97748,"(40.65344, -73.97748)",PROSPECT EXPRESSWAY EAST,,,3,0,0,0,0,0,3,0,Pavement Slippery,,,,,4520091,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,21:26,BROOKLYN,11226,40.639412,-73.95873,"(40.639412, -73.95873)",,,2014 DITMAS AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4519542,Sedan,Sedan,,, +04/12/2022,20:50,,,,,,WILLIS AVE BRIDGE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4519975,Sedan,Sedan,,, +04/16/2022,19:14,QUEENS,11103,40.766083,-73.907715,"(40.766083, -73.907715)",45 STREET,25 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519582,Sedan,E-Bike,,, +04/16/2022,15:30,BROOKLYN,11231,40.67602,-74.001236,"(40.67602, -74.001236)",HAMILTON AVENUE,CLINTON STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4520119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,13:26,QUEENS,11103,40.759926,-73.9149,"(40.759926, -73.9149)",,,30-85 43 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519762,Sedan,Sedan,,, +04/16/2022,20:28,BROOKLYN,11232,40.659912,-73.998604,"(40.659912, -73.998604)",26 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4519461,Sedan,E-Bike,,, +04/16/2022,11:30,BROOKLYN,11209,40.624096,-74.03375,"(40.624096, -74.03375)",86 STREET,RIDGE BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519393,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,16:11,BRONX,10472,40.826786,-73.87591,"(40.826786, -73.87591)",,,1101 MANOR AVENUE,1,0,0,0,0,0,0,0,Unspecified,,,,,4519924,E-Scooter,,,, +04/16/2022,4:08,BRONX,10458,40.86749,-73.88323,"(40.86749, -73.88323)",,,2960 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4519982,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,9:25,BROOKLYN,11229,40.59464,-73.952705,"(40.59464, -73.952705)",EAST 18 STREET,AVENUE W,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519509,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,15:10,,,40.60353,-74.01863,"(40.60353, -74.01863)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,10:20,,,40.83761,-73.88106,"(40.83761, -73.88106)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519940,Tractor Truck Diesel,Sedan,,, +04/16/2022,16:00,MANHATTAN,10018,40.754093,-73.99209,"(40.754093, -73.99209)",WEST 37 STREET,8 AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4520106,Pick-up Truck,Bike,,, +04/16/2022,0:01,,,40.7538,-73.90213,"(40.7538, -73.90213)",NORTHERN BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4519569,Tractor Truck Diesel,Sedan,,, +04/16/2022,1:00,BROOKLYN,11208,40.66045,-73.86719,"(40.66045, -73.86719)",FOUNTAIN AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519656,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,6:15,BROOKLYN,11223,40.586308,-73.96943,"(40.586308, -73.96943)",AVENUE Z,WEST STREET,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4520058,Sedan,Sedan,,, +04/14/2022,10:15,BRONX,10457,40.848095,-73.89098,"(40.848095, -73.89098)",,,2047 HUGHES AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520020,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,16:52,BROOKLYN,11223,40.609985,-73.96239,"(40.609985, -73.96239)",AVENUE P,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520224,Sedan,Sedan,,, +04/16/2022,16:30,BROOKLYN,11233,40.678314,-73.92519,"(40.678314, -73.92519)",,,835 HERKIMER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519698,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,3:55,QUEENS,11368,40.739346,-73.85479,"(40.739346, -73.85479)",,,105-36 OTIS AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4519557,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,9:20,MANHATTAN,10004,40.7067,-74.01605,"(40.7067, -74.01605)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520194,Sedan,Sedan,Sedan,, +04/15/2022,16:00,BROOKLYN,11226,40.654915,-73.958305,"(40.654915, -73.958305)",,,40 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519999,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,17:40,STATEN ISLAND,10310,40.637646,-74.111755,"(40.637646, -74.111755)",HENDERSON AVENUE,OAKLAND AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4520012,Sedan,,,, +04/14/2022,21:25,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",CENTRAL PARK WEST,WEST 65 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520028,Sedan,E-Scooter,,, +04/16/2022,16:40,MANHATTAN,10032,40.84105,-73.94469,"(40.84105, -73.94469)",RIVERSIDE DRIVE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519611,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/21/2022,15:00,,,,,,BROOKVILLE BOULEVARD,CROSS ISLAND PLAZA,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522566,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,9:15,,,40.622963,-74.01184,"(40.622963, -74.01184)",BAY RIDGE PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4522468,Bus,Sedan,,, +04/25/2022,8:50,,,,,,major deegan underpass,east 153 street,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4521874,Sedan,Pick-up Truck,,, +02/04/2022,13:39,,,,,,ALBEMARLE ROAD,WESTMINISTER ROAD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500139,Sedan,Sedan,,, +09/01/2021,3:00,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4455606,Sedan,,,, +01/30/2022,12:00,,,,,,WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4500243,Sedan,,,, +04/17/2022,15:07,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519839,Sedan,Sedan,,, +07/07/2022,15:30,BROOKLYN,11215,40.660725,-73.979805,"(40.660725, -73.979805)",,,205 PROSPECT PARK WEST,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4545343,Sedan,Flat Rack,,, +11/18/2021,15:15,QUEENS,11369,,,,,,108-01 grand central parkway,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478963,Chassis Cab,Pick-up Truck,,, +01/23/2022,1:35,,,40.667076,-73.78266,"(40.667076, -73.78266)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,,,,,4496612,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,13:15,,,40.5953,-74.1619,"(40.5953, -74.1619)",ROCKLAND AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4498871,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,9:30,BROOKLYN,11225,40.671112,-73.96008,"(40.671112, -73.96008)",,,260 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4500573,Bus,,,, +02/04/2022,4:00,,,40.682808,-73.851135,"(40.682808, -73.851135)",89 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500557,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,21:50,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500594,Sedan,Dump,,, +02/01/2022,12:51,BROOKLYN,11225,,,,PRESIDENT STREET,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500572,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,6:19,,,,,,JAMAICA AVENUE,VANWYCK EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500558,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,16:07,,,40.714436,-73.759995,"(40.714436, -73.759995)",199 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4500550,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,13:38,,,40.8666,-73.895454,"(40.8666, -73.895454)",EAST KINGSBRIDGE ROAD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500583,Sedan,,,, +02/04/2022,23:00,BRONX,10468,40.86397,-73.89822,"(40.86397, -73.89822)",,,50 EAST 191 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500578,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,11:05,BRONX,10452,40.836018,-73.9243,"(40.836018, -73.9243)",ANDERSON AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500598,Sedan,,,, +01/28/2022,23:11,,,40.710495,-73.83314,"(40.710495, -73.83314)",82 AVENUE,GRENFELL STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500559,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:00,,,40.712284,-73.78536,"(40.712284, -73.78536)",HILLSIDE AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500552,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,0:45,,,,,,MOTT AVENUE,CORNAGA AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500576,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/17/2022,21:20,,,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505044,Sedan,Sedan,,, +02/15/2022,16:00,,,40.727207,-73.90742,"(40.727207, -73.90742)",BORDEN AVENUE,MAURICE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4505095,Sedan,Ambulance,,, +02/21/2022,17:15,,,40.730648,-73.72572,"(40.730648, -73.72572)",241 STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4504746,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +02/21/2022,2:25,MANHATTAN,10029,40.79505,-73.93317,"(40.79505, -73.93317)",EAST 116 STREET,PLEASANT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504458,Sedan,Sedan,,, +02/21/2022,0:40,MANHATTAN,10014,40.730717,-74.00446,"(40.730717, -74.00446)",7 AVENUE SOUTH,BEDFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504915,Sedan,Sedan,,, +02/18/2022,9:07,STATEN ISLAND,10304,40.6052,-74.0852,"(40.6052, -74.0852)",CLOVE ROAD,ELBE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504938,,,,, +02/21/2022,20:20,BROOKLYN,11222,40.724636,-73.94818,"(40.724636, -73.94818)",MC GUINNESS BOULEVARD,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504641,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/21/2022,23:20,MANHATTAN,10011,40.735573,-73.9987,"(40.735573, -73.9987)",,,101 WEST 11 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504682,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,22:25,,,40.720936,-73.993805,"(40.720936, -73.993805)",BOWERY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4504932,Sedan,,,, +02/21/2022,10:40,BROOKLYN,11208,40.670406,-73.86972,"(40.670406, -73.86972)",,,593 PINE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4504579,Station Wagon/Sport Utility Vehicle,,,, +02/21/2022,2:10,,,40.754158,-73.96271,"(40.754158, -73.96271)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4504491,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/18/2022,19:10,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,ASTORIA BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4505002,Bike,,,, +02/17/2022,8:02,QUEENS,11372,40.74909,-73.89065,"(40.74909, -73.89065)",,,75-07 37 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4505068,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,12:30,,,40.668484,-73.92532,"(40.668484, -73.92532)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500351,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,19:20,BROOKLYN,11235,40.59328,-73.94538,"(40.59328, -73.94538)",AVENUE X,BEDFORD AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499489,Station Wagon/Sport Utility Vehicle,Bike,,, +01/31/2022,8:30,BROOKLYN,11216,,,,,,486 GATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500316,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,16:00,BROOKLYN,11220,40.639435,-74.00546,"(40.639435, -74.00546)",53 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499909,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,6:50,,,40.623253,-74.16209,"(40.623253, -74.16209)",AMADOR STREET,AMITY PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499608,Sedan,Sedan,,, +02/02/2022,23:12,MANHATTAN,10036,40.759197,-73.98463,"(40.759197, -73.98463)",7 AVENUE,WEST 47 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4499554,Taxi,Station Wagon/Sport Utility Vehicle,Taxi,, +01/30/2022,8:00,,,40.76964,-73.91168,"(40.76964, -73.91168)",ASTORIA BOULEVARD,24 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500030,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,12:25,QUEENS,11372,40.75126,-73.87167,"(40.75126, -73.87167)",37 AVENUE,WARREN STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499891,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,13:05,QUEENS,11428,40.71921,-73.74642,"(40.71921, -73.74642)",213 STREET,93 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4499877,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,10:37,,,40.678722,-73.952995,"(40.678722, -73.952995)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500312,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,8:40,QUEENS,11420,40.67687,-73.806114,"(40.67687, -73.806114)",,,133-17 FOCH BOULEVARD,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499784,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,12:00,MANHATTAN,10016,40.74124,-73.97917,"(40.74124, -73.97917)",,,228 EAST 28 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4500097,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,19:00,BRONX,10472,40.82867,-73.87821,"(40.82867, -73.87821)",,,1531 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4500018,Sedan,,,, +02/03/2022,19:16,,,40.753693,-73.89831,"(40.753693, -73.89831)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4499768,Sedan,Tractor Truck Diesel,,, +02/02/2022,0:14,,,,,,JAMAICA AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4499275,Sedan,,,, +02/04/2022,23:05,QUEENS,11429,40.711853,-73.73299,"(40.711853, -73.73299)",,,221-03 103 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500185,Sedan,,,, +02/04/2022,21:49,BRONX,10466,40.89063,-73.85892,"(40.89063, -73.85892)",WHITE PLAINS ROAD,EAST 229 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500393,Sedan,E-Bike,,, +02/02/2022,16:40,BROOKLYN,11226,40.65245,-73.96345,"(40.65245, -73.96345)",SAINT PAULS PLACE,CROOKE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4499526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +01/29/2022,8:20,QUEENS,11378,40.721764,-73.90288,"(40.721764, -73.90288)",,,62-18 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4500033,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/04/2022,15:08,QUEENS,11413,40.677414,-73.7588,"(40.677414, -73.7588)",135 AVENUE,BELKNAP STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499896,Sedan,,,, +02/02/2022,16:00,QUEENS,11418,40.705666,-73.818474,"(40.705666, -73.818474)",VANWYCK EXPRESSWAY,87 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4499958,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,15:00,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4499672,Box Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +02/01/2022,15:12,BROOKLYN,11236,40.638226,-73.895996,"(40.638226, -73.895996)",EAST 96 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4500108,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/03/2022,18:13,BROOKLYN,11210,40.636448,-73.94513,"(40.636448, -73.94513)",FARRAGUT ROAD,NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500230,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,22:18,,,40.724262,-73.93745,"(40.724262, -73.93745)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499572,Sedan,Sedan,,, +02/03/2022,17:00,,,40.60307,-74.01667,"(40.60307, -74.01667)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500429,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/01/2021,18:20,,,40.69324,-73.92865,"(40.69324, -73.92865)",KOSCIUSZKO STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455785,Sedan,,,, +02/03/2022,17:50,BRONX,10466,40.88424,-73.84928,"(40.88424, -73.84928)",LACONIA AVENUE,EAST 225 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499751,Sedan,,,, +02/03/2022,10:04,QUEENS,11691,40.59329,-73.77972,"(40.59329, -73.77972)",ROCKAWAY BEACH BOULEVARD,BEACH 49 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499818,Sedan,Ambulance,,, +02/04/2022,10:58,BROOKLYN,11209,40.62696,-74.03552,"(40.62696, -74.03552)",COLONIAL ROAD,83 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499852,Sedan,Sedan,,, +02/02/2022,5:25,,,40.83354,-73.92037,"(40.83354, -73.92037)",WALTON AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4499339,Taxi,,,, +02/04/2022,9:22,BROOKLYN,11201,40.691082,-73.98345,"(40.691082, -73.98345)",,,445 ALBEE SQUARE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499999,Sedan,Box Truck,,, +02/02/2022,21:21,QUEENS,11367,40.729855,-73.81853,"(40.729855, -73.81853)",150 STREET,70 ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499579,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,18:15,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499782,Sedan,,,, +02/03/2022,18:11,BRONX,10459,40.823215,-73.89475,"(40.823215, -73.89475)",,,981 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499923,,,,, +02/04/2022,5:30,QUEENS,11691,40.60269,-73.76301,"(40.60269, -73.76301)",CORNAGA AVENUE,BAY 25 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,,,,4499990,Sedan,Sedan,,, +02/03/2022,17:16,MANHATTAN,10001,40.751656,-73.99014,"(40.751656, -73.99014)",7 AVENUE,WEST 35 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500366,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,20:00,QUEENS,11355,40.745125,-73.83143,"(40.745125, -73.83143)",58 ROAD,134 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500085,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,15:00,QUEENS,11374,40.726185,-73.87022,"(40.726185, -73.87022)",62 ROAD,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500282,Sedan,,,, +02/03/2022,11:05,BROOKLYN,11231,40.67769,-74.00041,"(40.67769, -74.00041)",CLINTON STREET,LUQUER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499810,Sedan,,,, +02/05/2021,1:30,,,40.731964,-73.97412,"(40.731964, -73.97412)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500417,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,16:10,QUEENS,11413,40.665897,-73.76044,"(40.665897, -73.76044)",,,184-20 SOUTH CONDUIT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499730,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,18:44,QUEENS,11103,40.757595,-73.92011,"(40.757595, -73.92011)",,,32-41 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500246,Sedan,Sedan,,, +02/02/2022,8:05,BROOKLYN,11209,40.626457,-74.02686,"(40.626457, -74.02686)",81 STREET,4 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499366,Sedan,Pick-up Truck,,, +02/04/2022,15:29,QUEENS,11420,40.677,-73.81965,"(40.677, -73.81965)",LEFFERTS BOULEVARD,115 AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499931,Sedan,,,, +02/02/2022,18:45,QUEENS,11104,40.74181,-73.91993,"(40.74181, -73.91993)",GREENPOINT AVENUE,45 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499467,Sedan,,,, +02/02/2022,2:40,BRONX,10460,40.836308,-73.884605,"(40.836308, -73.884605)",,,985 EAST 174 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500138,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,8:40,BRONX,10451,40.820023,-73.92663,"(40.820023, -73.92663)",EAST 151 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500176,Sedan,Bus,,, +02/03/2022,1:25,MANHATTAN,10037,40.8122,-73.94226,"(40.8122, -73.94226)",LENOX AVENUE,WEST 132 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,,,,4499618,Taxi,Station Wagon/Sport Utility Vehicle,,, +01/16/2022,22:00,MANHATTAN,10031,40.82465,-73.94623,"(40.82465, -73.94623)",WEST 145 STREET,CONVENT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500065,Convertible,Sedan,,, +01/31/2022,10:12,BROOKLYN,11212,40.664436,-73.9221,"(40.664436, -73.9221)",,,699 RALPH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500537,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +02/03/2022,13:03,MANHATTAN,10013,40.719456,-73.99441,"(40.719456, -73.99441)",BOWERY,BROOME STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500022,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,16:00,BROOKLYN,11215,40.67431,-73.984695,"(40.67431, -73.984695)",,,302 2 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500478,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,8:00,,,40.7606,-73.964325,"(40.7606, -73.964325)",2 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499884,Sedan,Dump,,, +02/02/2022,18:30,MANHATTAN,10003,40.72937,-73.98713,"(40.72937, -73.98713)",,,149 2 AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unsafe Lane Changing,,,,4500145,Sedan,Taxi,,, +02/03/2022,8:22,BRONX,10461,40.840263,-73.84717,"(40.840263, -73.84717)",GLEBE AVENUE,SAINT PETERS AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4499645,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,19:30,BRONX,10466,40.888935,-73.85986,"(40.888935, -73.85986)",,,4015 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4500404,Sedan,,,, +02/03/2022,13:15,BRONX,10459,40.82101,-73.89733,"(40.82101, -73.89733)",,,921 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499954,Sedan,Sedan,,, +02/03/2022,11:55,BROOKLYN,11229,40.595154,-73.93313,"(40.595154, -73.93313)",,,2378 KNAPP STREET,1,0,1,0,0,0,0,0,,,,,,4499692,,,,, +02/02/2022,15:45,,,40.668625,-73.738235,"(40.668625, -73.738235)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499451,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,20:42,BRONX,10454,40.8077,-73.92955,"(40.8077, -73.92955)",BRUCKNER BOULEVARD,LINCOLN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4500527,Sedan,Sedan,,, +02/04/2022,3:30,QUEENS,11385,40.70747,-73.91007,"(40.70747, -73.91007)",WOODWARD AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4499967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,11:15,QUEENS,11413,40.650394,-73.757126,"(40.650394, -73.757126)",,,230-07 ROCKAWAY BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4499392,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,17:30,QUEENS,11373,40.746414,-73.88341,"(40.746414, -73.88341)",BAXTER AVENUE,ITHACA STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499831,Sedan,,,, +02/01/2022,9:20,STATEN ISLAND,10309,40.530262,-74.2111,"(40.530262, -74.2111)",DRUMGOOLE ROAD WEST,MAGUIRE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499845,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/03/2022,19:45,QUEENS,11369,40.759182,-73.86883,"(40.759182, -73.86883)",100 STREET,32 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499864,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,17:00,BROOKLYN,11218,40.63795,-73.9731,"(40.63795, -73.9731)",,,430 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500198,Station Wagon/Sport Utility Vehicle,Bus,,, +02/04/2022,6:05,MANHATTAN,10035,40.8017,-73.9343,"(40.8017, -73.9343)",,,2405 2 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4499986,Box Truck,,,, +02/02/2022,15:38,,,40.792015,-73.98051,"(40.792015, -73.98051)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499444,Sedan,Taxi,,, +02/02/2022,11:44,QUEENS,11411,40.702057,-73.7468,"(40.702057, -73.7468)",208 STREET,MURDOCK AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4499393,Sedan,Sedan,,, +02/04/2022,15:30,MANHATTAN,10036,40.757908,-73.9893,"(40.757908, -73.9893)",8 AVENUE,WEST 43 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500361,,,,, +02/02/2022,16:35,,,40.65676,-73.960144,"(40.65676, -73.960144)",FLATBUSH AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4499793,Box Truck,,,, +02/04/2022,16:31,BRONX,10467,40.86784,-73.864395,"(40.86784, -73.864395)",WALLACE AVENUE,ARNOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499937,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,11:14,QUEENS,11101,40.74135,-73.937096,"(40.74135, -73.937096)",30 PLACE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499463,Box Truck,,,, +02/02/2022,8:22,BRONX,10467,40.86536,-73.87043,"(40.86536, -73.87043)",BRONX PARK EAST,ALLERTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4499373,Station Wagon/Sport Utility Vehicle,Box Truck,,, +01/24/2022,15:00,BROOKLYN,11203,40.656162,-73.93087,"(40.656162, -73.93087)",,,702 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500210,Sedan,,,, +02/02/2022,19:26,BRONX,10471,40.897984,-73.897026,"(40.897984, -73.897026)",,,6255 BROADWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499691,Sedan,Sedan,,, +02/04/2022,17:30,,,40.694744,-73.785675,"(40.694744, -73.785675)",110 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500547,Box Truck,,,, +02/04/2022,0:00,QUEENS,11412,40.710316,-73.75247,"(40.710316, -73.75247)",FRANCIS LEWIS BOULEVARD,104 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4499916,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,14:16,QUEENS,11385,40.701065,-73.89118,"(40.701065, -73.89118)",,,64-66 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500073,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,23:57,,,40.697327,-73.82961,"(40.697327, -73.82961)",LEFFERTS BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499564,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/26/2022,8:00,,,,,,ASTORIA BOULEVARD,49 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4500235,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,10:13,BROOKLYN,11210,40.622955,-73.93723,"(40.622955, -73.93723)",FLATBUSH AVENUE,AVENUE L,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500299,Bus,Sedan,,, +02/04/2022,15:21,QUEENS,11421,40.691208,-73.8586,"(40.691208, -73.8586)",87 ROAD,85 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500499,Sedan,Box Truck,,, +02/02/2022,13:21,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",COOPER AVENUE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499585,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/12/2022,20:12,,,40.655422,-73.95007,"(40.655422, -73.95007)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499888,Sedan,Sedan,,, +02/04/2022,16:15,QUEENS,11412,40.695255,-73.75554,"(40.695255, -73.75554)",116 AVENUE,197 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499901,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,10:10,BROOKLYN,11233,40.682903,-73.927345,"(40.682903, -73.927345)",,,467A MACDONOUGH STREET,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4499718,Dump,Sedan,,, +02/04/2022,22:00,MANHATTAN,10003,40.730007,-73.987366,"(40.730007, -73.987366)",EAST 10 STREET,STUYVESANT STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500151,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,6:48,,,40.591427,-74.1648,"(40.591427, -74.1648)",,,2301 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499653,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,22:00,BROOKLYN,11230,40.61642,-73.97445,"(40.61642, -73.97445)",MC DONALD AVENUE,AVENUE M,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500192,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,18:10,,,40.67983,-73.9583,"(40.67983, -73.9583)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500338,Sedan,PK,,, +02/02/2022,10:40,MANHATTAN,10001,40.745342,-73.99049,"(40.745342, -73.99049)",,,800 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499697,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,10:28,BROOKLYN,11226,40.64196,-73.95708,"(40.64196, -73.95708)",FLATBUSH AVENUE,VANDERVEER PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499385,Sedan,Sedan,,, +01/28/2022,0:00,MANHATTAN,10002,40.72284,-73.99144,"(40.72284, -73.99144)",,,215 CHRYSTIE STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499971,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,20:25,BROOKLYN,11236,40.635105,-73.896484,"(40.635105, -73.896484)",AVENUE M,EAST 93 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4499455,Sedan,Sedan,,, +02/02/2022,14:27,BROOKLYN,11210,40.61669,-73.949814,"(40.61669, -73.949814)",BEDFORD AVENUE,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499536,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,19:35,MANHATTAN,10032,40.83238,-73.940895,"(40.83238, -73.940895)",SAINT NICHOLAS AVENUE,WEST 157 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500267,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,12:50,QUEENS,11691,40.600548,-73.74711,"(40.600548, -73.74711)",,,13-01 MOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499826,Pick-up Truck,,,, +02/03/2022,21:50,QUEENS,11355,40.748344,-73.81353,"(40.748344, -73.81353)",POPLAR AVENUE,ROBINSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,5:00,QUEENS,11368,40.749264,-73.86847,"(40.749264, -73.86847)",97 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,6:35,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499644,Sedan,Dump,,, +02/03/2022,17:57,,,40.739902,-73.791275,"(40.739902, -73.791275)",HORACE HARDING EXPRESSWAY,183 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499762,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,7:50,QUEENS,11373,40.74245,-73.87238,"(40.74245, -73.87238)",CORONA AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499832,Sedan,,,, +02/01/2022,18:42,BRONX,10463,40.873417,-73.90293,"(40.873417, -73.90293)",,,2788 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499998,Sedan,,,, +02/02/2022,18:25,QUEENS,11377,40.738605,-73.90742,"(40.738605, -73.90742)",58 LANE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499468,Sedan,,,, +02/03/2022,18:45,QUEENS,11372,40.75159,-73.88655,"(40.75159, -73.88655)",80 STREET,35 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4499860,,,,, +02/02/2022,14:18,BROOKLYN,11231,40.677834,-74.00617,"(40.677834, -74.00617)",HUNTINGTON STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499505,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,1:05,QUEENS,11435,40.704082,-73.81641,"(40.704082, -73.81641)",HILLSIDE AVENUE,138 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499798,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,13:30,,,40.674904,-73.94447,"(40.674904, -73.94447)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499415,Sedan,,,, +02/03/2022,18:30,,,40.578995,-73.96491,"(40.578995, -73.96491)",BRIGHTON 3 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499748,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,9:40,STATEN ISLAND,10312,40.5438,-74.164795,"(40.5438, -74.164795)",MOSELY AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500025,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,17:00,,,40.703724,-73.95979,"(40.703724, -73.95979)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,6:00,,,40.66851,-73.76626,"(40.66851, -73.76626)",144 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499664,Sedan,Bus,,, +02/02/2022,14:15,,,,,,BROOKLYN BATTERY TUNNEL,,,12,0,0,0,0,0,12,0,Following Too Closely,Unspecified,Unspecified,,,4499684,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/29/2022,5:33,QUEENS,11102,40.767647,-73.92078,"(40.767647, -73.92078)",31 STREET,NEWTOWN AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500239,Pick-up Truck,,,, +02/04/2022,0:20,,,40.748535,-73.77372,"(40.748535, -73.77372)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499993,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +01/26/2022,4:15,QUEENS,11372,40.752598,-73.87705,"(40.752598, -73.87705)",,,90-11 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4499865,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/04/2022,15:25,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499920,Sedan,,,, +02/04/2022,14:09,BROOKLYN,11234,40.62905,-73.92798,"(40.62905, -73.92798)",,,1778 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500304,Sedan,,,, +02/03/2022,16:15,BRONX,10466,40.88762,-73.85992,"(40.88762, -73.85992)",,,706 EAST 225 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499741,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,0:40,,,40.665916,-73.92547,"(40.665916, -73.92547)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,Unspecified,4500352,Sedan,Sedan,Sedan,Sedan, +02/02/2022,16:40,BROOKLYN,11211,40.70915,-73.9591,"(40.70915, -73.9591)",,,225 HAVEMEYER STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499789,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,20:00,QUEENS,11432,40.711857,-73.78742,"(40.711857, -73.78742)",,,175-35 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500037,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,19:50,BRONX,10454,40.803593,-73.919785,"(40.803593, -73.919785)",BRUCKNER BOULEVARD,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Glare,,,,,4499560,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,18:35,MANHATTAN,10022,40.76092,-73.96704,"(40.76092, -73.96704)",3 AVENUE,EAST 58 STREET,,1,0,1,0,0,0,0,0,,,,,,4499772,,,,, +02/03/2022,5:47,QUEENS,11367,40.739002,-73.8209,"(40.739002, -73.8209)",REEVES AVENUE,149 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499580,Sedan,Sedan,,, +01/28/2022,18:00,,,,,,CROSS BRONX EXTENTION,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4500088,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,16:50,QUEENS,11433,40.69001,-73.79204,"(40.69001, -73.79204)",157 STREET,111 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499892,,,,, +02/04/2022,18:40,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500218,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,10:45,QUEENS,11101,40.75389,-73.91651,"(40.75389, -73.91651)",NORTHERN BOULEVARD,46 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,10:19,BRONX,10475,40.86505,-73.83001,"(40.86505, -73.83001)",,,200 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499897,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,22:45,QUEENS,11372,40.7568,-73.873665,"(40.7568, -73.873665)",JUNCTION BOULEVARD,NORTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4500031,Motorcycle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +01/30/2022,6:30,,,,,,WEST SHORE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4500257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,8:15,,,40.60275,-73.98539,"(40.60275, -73.98539)",HIGHLAWN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499631,Sedan,,,, +01/23/2022,0:00,,,40.82897,-73.9486,"(40.82897, -73.9486)",WEST 149 STREET,,,2,0,0,0,1,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499947,Sedan,Bike,,, +02/03/2022,17:35,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499822,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,15:23,,,40.696342,-73.97644,"(40.696342, -73.97644)",PARK AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4499473,Sedan,Sprinter V,,, +01/28/2022,10:00,,,40.692425,-73.96075,"(40.692425, -73.96075)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500326,Sedan,,,, +01/29/2022,14:00,QUEENS,11367,40.731968,-73.81495,"(40.731968, -73.81495)",,,69-36 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4500456,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,20:18,,,40.623672,-73.8956,"(40.623672, -73.8956)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4499755,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,18:00,BRONX,10473,40.820877,-73.8667,"(40.820877, -73.8667)",LAFAYETTE AVENUE,ROSEDALE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500003,,,,, +02/03/2022,4:20,BRONX,10472,40.831215,-73.85628,"(40.831215, -73.85628)",,,2040 GLEASON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499594,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,11:45,BRONX,10453,0,0,"(0.0, 0.0)",GRAND AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499946,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/02/2022,7:20,BRONX,10457,40.84724,-73.89088,"(40.84724, -73.89088)",EAST 179 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499595,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/04/2022,6:15,BROOKLYN,11201,40.699703,-73.98047,"(40.699703, -73.98047)",SANDS STREET,NAVY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500378,,,,, +02/04/2022,2:45,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4499961,Sedan,,,, +02/02/2022,22:16,BROOKLYN,11222,40.72706,-73.94957,"(40.72706, -73.94957)",,,135 MC GUINNESS BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499573,Stake or Rack,Sedan,,, +02/04/2022,2:24,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499777,Sedan,,,, +02/02/2022,18:37,MANHATTAN,10010,40.738167,-73.98364,"(40.738167, -73.98364)",3 AVENUE,EAST 22 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499978,Bike,Bus,,, +02/02/2022,2:26,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",BRUCKNER BOULEVARD,HUNTS POINT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4499288,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,15:10,,,40.765125,-73.952126,"(40.765125, -73.952126)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499803,Station Wagon/Sport Utility Vehicle,Bus,,, +01/31/2022,8:05,,,40.65477,-74.00708,"(40.65477, -74.00708)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4500078,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/04/2022,15:35,,,40.789734,-73.9661,"(40.789734, -73.9661)",CENTRAL PARK WEST,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500121,Bus,Taxi,,, +02/03/2022,18:20,QUEENS,11370,40.759926,-73.884285,"(40.759926, -73.884285)",,,30-56 84 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499856,Sedan,,,, +02/02/2022,20:00,BRONX,10452,40.84398,-73.92296,"(40.84398, -73.92296)",GRANT HIGHWAY,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499498,Taxi,,,, +02/02/2022,18:08,BRONX,10466,40.89253,-73.84832,"(40.89253, -73.84832)",,,4117 WICKHAM AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499734,Sedan,,,, +02/01/2022,22:41,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499851,Chassis Cab,Sedan,,, +02/03/2022,17:45,QUEENS,11373,40.737156,-73.87941,"(40.737156, -73.87941)",VANLOON STREET,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499836,Sedan,,,, +02/03/2022,22:20,,,40.69365,-73.98333,"(40.69365, -73.98333)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499767,Sedan,Sedan,,, +01/30/2022,7:40,BRONX,10473,40.81991,-73.86167,"(40.81991, -73.86167)",,,715 THIERIOT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500002,Sedan,Box Truck,,, +02/02/2022,7:30,,,40.717033,-73.8221,"(40.717033, -73.8221)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499344,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,17:00,QUEENS,11420,40.68079,-73.806305,"(40.68079, -73.806305)",115 AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499783,Sedan,,,, +02/02/2022,22:11,QUEENS,11355,40.755524,-73.833405,"(40.755524, -73.833405)",COLLEGE POINT BOULEVARD,41 ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499472,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,8:15,BRONX,10474,40.821083,-73.88678,"(40.821083, -73.88678)",,,1320 GARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499924,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,5:02,BRONX,10459,40.83078,-73.88954,"(40.83078, -73.88954)",,,1421 VYSE AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,,4499574,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +01/31/2022,12:56,QUEENS,11358,40.76289,-73.805534,"(40.76289, -73.805534)",NORTHERN BOULEVARD,160 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4500086,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/04/2022,6:55,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499989,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,22:05,MANHATTAN,10019,40.763485,-73.98895,"(40.763485, -73.98895)",WEST 50 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500421,Station Wagon/Sport Utility Vehicle,Bike,,, +02/03/2022,12:07,,,40.76685,-73.95376,"(40.76685, -73.95376)",EAST 72 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499811,Sedan,Flat Rack,,, +02/04/2022,17:50,MANHATTAN,10001,40.74557,-73.990875,"(40.74557, -73.990875)",,,797 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500127,E-Bike,,,, +02/04/2022,18:00,MANHATTAN,10025,40.807953,-73.965836,"(40.807953, -73.965836)",,,615 WEST 115 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500382,Sedan,,,, +01/28/2022,14:21,,,40.592422,-73.99508,"(40.592422, -73.99508)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500164,Pick-up Truck,Sedan,,, +02/02/2022,6:40,BRONX,10461,40.84545,-73.833595,"(40.84545, -73.833595)",WESTCHESTER AVENUE,ROBERTS AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4499523,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,12:56,MANHATTAN,10024,40.787045,-73.97759,"(40.787045, -73.97759)",WEST 84 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Other Vehicular,,,,4499729,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,16:54,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4499925,Tow Truck / Wrecker,Sedan,,, +02/03/2022,17:15,BRONX,10469,40.875164,-73.855,"(40.875164, -73.855)",,,3544 LACONIA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4499754,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,0:00,,,,,,WILLETS POINT BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4499910,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/02/2022,8:00,QUEENS,11365,40.728443,-73.80813,"(40.728443, -73.80813)",,,71-74 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499555,Bus,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,17:35,BRONX,10455,40.816555,-73.91677,"(40.816555, -73.91677)",3 AVENUE,EAST 150 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500535,,,,, +02/02/2022,20:45,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4499878,Sedan,Tractor Truck Diesel,,, +02/02/2022,16:10,,,,,,WEST SHORE EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4499846,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,19:50,QUEENS,11432,40.716354,-73.78419,"(40.716354, -73.78419)",MIDLAND PARKWAY,DALNY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499796,Sedan,Sedan,,, +02/02/2022,3:30,QUEENS,11434,40.675415,-73.761635,"(40.675415, -73.761635)",136 AVENUE,THURSTON STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4499893,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,8:20,BROOKLYN,11228,40.623047,-74.00732,"(40.623047, -74.00732)",,,1213 72 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499403,Sedan,Pick-up Truck,,, +02/02/2022,13:00,BROOKLYN,11212,40.67291,-73.90938,"(40.67291, -73.90938)",,,1570 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499445,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,18:30,BROOKLYN,11212,40.664375,-73.92376,"(40.664375, -73.92376)",ROCKAWAY PARKWAY,RUTLAND ROAD,,0,0,0,0,0,0,0,0,,,,,,4500247,,,,, +02/03/2022,8:30,,,40.638264,-74.021095,"(40.638264, -74.021095)",65 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499658,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,17:40,BROOKLYN,11204,40.61652,-73.98586,"(40.61652, -73.98586)",65 STREET,20 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500194,Sedan,,,, +02/03/2022,18:48,MANHATTAN,10013,40.723118,-74.00624,"(40.723118, -74.00624)",GRAND STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499940,Sedan,Sedan,,, +02/04/2022,8:20,BRONX,10455,40.81909,-73.902725,"(40.81909, -73.902725)",,,814 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499841,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,16:32,QUEENS,11368,40.75164,-73.85559,"(40.75164, -73.85559)",,,111-06 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499491,Sedan,Sedan,,, +02/03/2022,10:42,MANHATTAN,10029,40.796005,-73.93542,"(40.796005, -73.93542)",1 AVENUE,EAST 116 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499974,Sedan,,,, +02/02/2022,17:00,,,40.65073,-73.9719,"(40.65073, -73.9719)",PARK CIRCLE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499711,Tractor Truck Diesel,Sedan,,, +02/02/2022,20:40,MANHATTAN,10029,40.78517,-73.94332,"(40.78517, -73.94332)",EAST 99 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499957,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,16:20,,,40.805836,-73.94691,"(40.805836, -73.94691)",WEST 122 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500462,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,18:50,BROOKLYN,11205,40.6931,-73.95489,"(40.6931, -73.95489)",WILLOUGHBY AVENUE,SPENCER STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500317,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,9:10,MANHATTAN,10035,40.804134,-73.93684,"(40.804134, -73.93684)",,,159 EAST 125 STREET,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4499979,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,18:41,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4499817,Sedan,Tractor Truck Gasoline,,, +02/02/2022,11:04,BROOKLYN,11210,40.632145,-73.952736,"(40.632145, -73.952736)",BEDFORD AVENUE,CAMPUS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499388,Sedan,Sedan,,, +02/02/2022,13:43,MANHATTAN,10022,40.759678,-73.97216,"(40.759678, -73.97216)",PARK AVENUE,EAST 54 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499604,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/02/2022,17:10,,,40.844746,-73.90363,"(40.844746, -73.90363)",CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4499665,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/02/2022,13:00,,,40.752316,-73.985954,"(40.752316, -73.985954)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499430,Sedan,Box Truck,,, +02/02/2022,13:50,QUEENS,11102,40.769466,-73.91708,"(40.769466, -73.91708)",,,25-15 33 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499535,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/25/2022,16:45,BRONX,10460,40.836708,-73.868195,"(40.836708, -73.868195)",MERRILL STREET,SAINT LAWRENCE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500017,Sedan,,,, +02/03/2022,21:00,QUEENS,11432,40.706684,-73.79915,"(40.706684, -73.79915)",162 STREET,89 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499763,Sedan,,,, +02/03/2022,17:30,MANHATTAN,10001,40.753925,-73.99761,"(40.753925, -73.99761)",WEST 34 STREET,DYER AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4500204,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,22:24,BROOKLYN,11234,40.61859,-73.94242,"(40.61859, -73.94242)",KINGS HIGHWAY,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500036,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,14:45,BROOKLYN,11249,40.699448,-73.959595,"(40.699448, -73.959595)",,,7 HEYWARD STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499788,Station Wagon/Sport Utility Vehicle,Van,,, +02/02/2022,13:20,BROOKLYN,11233,40.681694,-73.9378,"(40.681694, -73.9378)",MACDONOUGH STREET,MARCUS GARVEY BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499719,Sedan,,,, +02/04/2022,15:50,STATEN ISLAND,10305,40.58657,-74.09206,"(40.58657, -74.09206)",HYLAN BOULEVARD,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499905,Tow Truck / Wrecker,Sedan,,, +02/02/2022,18:02,MANHATTAN,10021,40.76817,-73.9528,"(40.76817, -73.9528)",EAST 74 STREET,YORK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499482,Bike,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,22:45,,,40.689133,-73.951324,"(40.689133, -73.951324)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500306,Sedan,,,, +01/30/2021,22:37,BRONX,10465,40.823147,-73.82221,"(40.823147, -73.82221)",,,539 CALHOUN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499985,Sedan,Pick-up Truck,,, +02/02/2022,0:50,MANHATTAN,10036,40.762943,-73.9974,"(40.762943, -73.9974)",,,610 WEST 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499550,Sedan,Sedan,Box Truck,, +01/27/2022,5:45,MANHATTAN,10039,40.82422,-73.9409,"(40.82422, -73.9409)",,,2768 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499873,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,13:55,BRONX,10466,40.891907,-73.834694,"(40.891907, -73.834694)",STRANG AVENUE,BELL AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500392,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,11:30,BROOKLYN,11226,40.64229,-73.95059,"(40.64229, -73.95059)",,,330 EAST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500231,Sedan,,,, +02/04/2022,17:45,QUEENS,11374,40.711845,-73.859764,"(40.711845, -73.859764)",WOODHAVEN BOULEVARD,METROPOLITAN AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4500105,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,6:50,BROOKLYN,11222,40.72784,-73.94105,"(40.72784, -73.94105)",SUTTON STREET,NORMAN AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500011,Sedan,E-Scooter,,, +02/04/2022,20:20,MANHATTAN,10022,40.758327,-73.96894,"(40.758327, -73.96894)",EAST 54 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500050,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,23:00,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500428,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,10:48,,,,,,JEROME AVENUE,EAST 162 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4500179,Sedan,Box Truck,,, +02/01/2022,14:18,BRONX,10454,40.804344,-73.92158,"(40.804344, -73.92158)",BRUCKNER BOULEVARD,BROOK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500530,Sedan,,,, +02/04/2022,4:45,BROOKLYN,11213,40.664677,-73.937546,"(40.664677, -73.937546)",,,833 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500006,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,12:15,BROOKLYN,11222,40.71957,-73.940056,"(40.71957, -73.940056)",,,280 RICHARDSON STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Failure to Yield Right-of-Way,,,,4499868,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/02/2022,6:58,BROOKLYN,11223,40.599327,-73.96576,"(40.599327, -73.96576)",,,2027 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499827,Pick-up Truck,Bike,,, +02/03/2022,17:36,BROOKLYN,11236,40.631935,-73.91207,"(40.631935, -73.91207)",,,7 PAERDEGAT 2 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499758,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/15/2022,1:25,QUEENS,11103,40.76908,-73.915215,"(40.76908, -73.915215)",,,25-22 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500224,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +01/31/2022,21:50,BROOKLYN,11217,40.67525,-73.97335,"(40.67525, -73.97335)",,,209 LINCOLN PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500477,Sedan,,,, +02/04/2022,8:39,BROOKLYN,11236,40.64979,-73.905655,"(40.64979, -73.905655)",,,1227 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4499861,Sedan,Box Truck,,, +02/01/2022,16:08,STATEN ISLAND,10308,40.541317,-74.15228,"(40.541317, -74.15228)",,,163 HILLCREST STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500360,Pick-up Truck,Sedan,,, +02/02/2022,3:23,,,,,,,,21 GULF AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499652,Sedan,,,, +02/01/2022,17:41,STATEN ISLAND,10308,40.56144,-74.15483,"(40.56144, -74.15483)",GIFFORDS LANE,GURLEY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4500284,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +01/29/2022,19:00,BRONX,10459,40.81959,-73.89283,"(40.81959, -73.89283)",,,900 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4499953,Sedan,,,, +02/02/2022,7:40,,,,,,PROSPECT EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499364,Sedan,,,, +02/02/2022,12:55,,,40.852337,-73.92517,"(40.852337, -73.92517)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499696,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,13:30,BROOKLYN,11204,40.61913,-73.99019,"(40.61913, -73.99019)",18 AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499936,Bus,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,14:10,,,40.739357,-73.89103,"(40.739357, -73.89103)",QUEENS BOULEVARD,73 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4499464,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/04/2022,17:55,BROOKLYN,11229,40.594738,-73.95176,"(40.594738, -73.95176)",AVENUE W,EAST 19 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499900,Sedan,,,, +02/03/2022,6:04,QUEENS,11369,40.759384,-73.86691,"(40.759384, -73.86691)",32 AVENUE,102 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499671,Taxi,Sedan,,, +02/04/2022,19:20,BROOKLYN,11212,40.65655,-73.92284,"(40.65655, -73.92284)",LENOX ROAD,EAST 91 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500241,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,7:42,MANHATTAN,10030,40.814278,-73.945274,"(40.814278, -73.945274)",,,207 WEST 133 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499617,Sedan,Sedan,,, +01/30/2022,16:25,MANHATTAN,10032,40.83444,-73.94187,"(40.83444, -73.94187)",,,517 WEST 159 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500271,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,11:30,MANHATTAN,10013,40.717407,-73.99908,"(40.717407, -73.99908)",,,215 CANAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499970,Station Wagon/Sport Utility Vehicle,,,, +01/15/2022,12:33,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",WILLIS AVENUE,EAST 138 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500061,Pick-up Truck,,,, +09/10/2021,6:10,QUEENS,11385,,,,,,17-31 Cornelia Street,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4456217,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,13:25,BRONX,10455,40.814915,-73.905525,"(40.814915, -73.905525)",,,628 TINTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499563,Bus,Ambulance,,, +02/03/2022,12:13,MANHATTAN,10030,40.818085,-73.94169,"(40.818085, -73.94169)",,,2386 7 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499872,PK,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,7:38,BROOKLYN,11236,40.645874,-73.892845,"(40.645874, -73.892845)",EAST 105 STREET,AVENUE J,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500021,Sedan,,,, +02/03/2022,0:38,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",LORIMER STREET,MONTROSE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4499792,Pick-up Truck,,,, +02/04/2022,13:45,,,,,,RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500042,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,23:40,,,,,,CROSS BRONX EXPY RAMP,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4499584,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,19:53,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",EAST 80 STREET,FLATLANDS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499759,Sedan,,,, +02/04/2022,9:26,QUEENS,11374,40.729774,-73.85252,"(40.729774, -73.85252)",65 ROAD,102 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499883,Sedan,,,, +02/02/2022,6:05,QUEENS,11419,40.68246,-73.830025,"(40.68246, -73.830025)",111 STREET,107 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499504,Sedan,Bike,,, +01/28/2022,3:35,MANHATTAN,10002,40.722523,-73.99211,"(40.722523, -73.99211)",,,15 STANTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4500183,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +02/02/2022,19:39,BROOKLYN,11234,40.60625,-73.92374,"(40.60625, -73.92374)",RYDER STREET,AVENUE V,,0,0,0,0,0,0,0,0,Alcohol Involvement,Pavement Slippery,Unspecified,,,4499712,Sedan,Sedan,Sedan,, +01/25/2022,0:27,BROOKLYN,11226,40.63669,-73.96452,"(40.63669, -73.96452)",DITMAS AVENUE,RUGBY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500143,Sedan,Sedan,Sedan,, +02/04/2022,13:25,BRONX,10467,40.884068,-73.85917,"(40.884068, -73.85917)",BARNES AVENUE,EAST 221 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4500403,Station Wagon/Sport Utility Vehicle,Bike,,, +01/29/2022,22:47,BROOKLYN,11221,40.689453,-73.924034,"(40.689453, -73.924034)",,,30 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500435,Sedan,Garbage or Refuse,,, +02/02/2022,18:23,MANHATTAN,10002,40.71718,-73.99548,"(40.71718, -73.99548)",,,93 BOWERY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500026,Sedan,,,, +01/28/2022,17:00,,,40.67417,-73.95671,"(40.67417, -73.95671)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500344,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,18:50,BROOKLYN,11232,40.65476,-74.00724,"(40.65476, -74.00724)",,,976 3 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4500117,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,14:00,,,,,,ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500334,Sedan,Pick-up Truck,,, +02/04/2022,0:00,,,40.877106,-73.90616,"(40.877106, -73.90616)",WEST 230 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500043,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,16:00,QUEENS,11101,40.75148,-73.93567,"(40.75148, -73.93567)",,,29-27 40 ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500238,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,15:00,MANHATTAN,10003,,,,,,306 EAST 11 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500423,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,15:50,BRONX,10451,40.827824,-73.91934,"(40.827824, -73.91934)",EAST 163 STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4500166,Bus,Sedan,,, +02/02/2022,19:10,BRONX,10469,40.88357,-73.854965,"(40.88357, -73.854965)",,,929 EAST 222 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499742,Sedan,,,, +01/31/2022,9:40,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WYTHE AVENUE,WILLIAMSBURG STREET EAST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500516,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/02/2022,18:18,,,40.86135,-73.89774,"(40.86135, -73.89774)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4499547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:05,BRONX,10460,40.846542,-73.88561,"(40.846542, -73.88561)",EAST 180 STREET,MAPES AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4500303,Sedan,Sedan,,, +02/04/2022,20:39,QUEENS,11362,40.77148,-73.73481,"(40.77148, -73.73481)",NORTHERN BOULEVARD,254 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499942,,,,, +01/28/2022,9:06,MANHATTAN,10036,40.75783,-73.99125,"(40.75783, -73.99125)",,,350 WEST 42 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4500355,Sedan,Bus,,, +02/04/2022,10:45,BROOKLYN,11211,40.714504,-73.93623,"(40.714504, -73.93623)",,,995 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500487,Dump,Sedan,,, +02/03/2022,16:05,MANHATTAN,10001,40.75219,-73.99347,"(40.75219, -73.99347)",8 AVENUE,WEST 34 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500365,Taxi,E-Scooter,,, +01/29/2022,10:50,,,40.6742,-73.999985,"(40.6742, -73.999985)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4500007,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,8:33,BROOKLYN,11232,40.64544,-73.999214,"(40.64544, -73.999214)",,,4219 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499676,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,9:42,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499371,Sedan,,,, +02/03/2022,6:57,,,40.621563,-74.16849,"(40.621563, -74.16849)",SOUTH AVENUE,GOETHALS ROAD NORTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499591,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,4:50,MANHATTAN,10001,40.749245,-73.999886,"(40.749245, -73.999886)",,,401 WEST 27 STREET,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4500209,Sedan,Sedan,,, +02/02/2022,18:00,BROOKLYN,11208,,,,LORING AVENUE,EMERALD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499450,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,18:29,QUEENS,11413,40.66462,-73.75292,"(40.66462, -73.75292)",225 STREET,144 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499915,Sedan,,,, +01/26/2022,18:15,QUEENS,11378,40.71929,-73.9033,"(40.71929, -73.9033)",61 STREET,59 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500071,Sedan,MOPED,,, +02/01/2022,10:15,MANHATTAN,10006,40.708645,-74.0124,"(40.708645, -74.0124)",,,86 TRINITY PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500265,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,8:25,BRONX,10457,40.84467,-73.8972,"(40.84467, -73.8972)",,,4123 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499596,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,10:50,,,40.835445,-73.923386,"(40.835445, -73.923386)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4499497,Station Wagon/Sport Utility Vehicle,Bus,,, +02/03/2022,5:00,BRONX,10457,40.853542,-73.89731,"(40.853542, -73.89731)",,,2144 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4499590,Sedan,KOMATSU LO,,, +02/03/2022,15:47,BROOKLYN,11225,40.663834,-73.95228,"(40.663834, -73.95228)",,,301 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499887,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,21:40,BROOKLYN,11221,40.693874,-73.91777,"(40.693874, -73.91777)",CENTRAL AVENUE,GATES AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4499771,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,6:25,BRONX,10457,40.837643,-73.90334,"(40.837643, -73.90334)",WASHINGTON AVENUE,EAST 171 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499559,Taxi,Bus,,, +02/03/2022,8:00,,,40.735413,-73.91835,"(40.735413, -73.91835)",LAUREL HILL BOULEVARD,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499778,Sedan,,,, +02/02/2022,3:06,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499289,Sedan,,,, +02/03/2022,18:41,BROOKLYN,11231,40.68295,-74.00635,"(40.68295, -74.00635)",VAN BRUNT STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499805,Sedan,Bike,,, +01/31/2022,6:50,BRONX,10457,40.851097,-73.89281,"(40.851097, -73.89281)",QUARRY ROAD,EAST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500324,Sedan,,,, +02/03/2022,11:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499733,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,15:20,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,MAPLE AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,12:22,QUEENS,11101,40.751198,-73.93441,"(40.751198, -73.93441)",,,30-30 NORTHERN BOULEVARD,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4499855,Pick-up Truck,Sedan,,, +02/04/2022,17:22,,,40.82403,-73.94476,"(40.82403, -73.94476)",SAINT NICHOLAS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500150,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,10:47,BROOKLYN,11201,40.70166,-73.99207,"(40.70166, -73.99207)",CADMAN PLAZA WEST,BROOKLYN QNS EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500369,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,22:00,BRONX,10454,40.80919,-73.92968,"(40.80919, -73.92968)",,,2454 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499948,Sedan,,,, +09/05/2021,8:38,BROOKLYN,11233,,,,,,1875 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456328,Sedan,Sedan,,, +02/03/2022,19:18,,,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500191,,,,, +02/04/2022,18:49,MANHATTAN,10036,40.75806,-73.97998,"(40.75806, -73.97998)",,,42 WEST 48 STREET,1,0,1,0,0,0,0,0,Brakes Defective,,,,,4500413,Box Truck,,,, +02/04/2022,20:59,,,,,,BELT PARKWAY,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500128,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,17:45,,,40.649868,-73.93409,"(40.649868, -73.93409)",SNYDER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500234,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,15:13,MANHATTAN,10025,40.80584,-73.96176,"(40.80584, -73.96176)",,,1111 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500383,Ambulance,Sedan,,, +02/01/2022,22:45,BRONX,10460,40.84321,-73.879234,"(40.84321, -73.879234)",EAST 180 STREET,BRYANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500545,Station Wagon/Sport Utility Vehicle,Ambulance,,, +01/30/2022,6:50,,,40.58369,-73.92157,"(40.58369, -73.92157)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4499842,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,Sedan, +01/31/2022,14:40,QUEENS,11415,40.70387,-73.82534,"(40.70387, -73.82534)",,,85-29 126 STREET,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,Unspecified,,,4499962,Sedan,Sedan,Sedan,, +02/02/2022,9:18,BROOKLYN,11234,40.611977,-73.91273,"(40.611977, -73.91273)",,,6103 STRICKLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500297,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,7:49,MANHATTAN,10016,40.7485,-73.974976,"(40.7485, -73.974976)",EAST 39 STREET,QUEENS MIDTOWN TUNNEL EXIT,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499975,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,17:20,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",EAST 58 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500087,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,21:00,MANHATTAN,10002,40.718567,-73.9834,"(40.718567, -73.9834)",RIVINGTON STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499980,Sedan,,,, +02/02/2022,7:00,BROOKLYN,11203,40.651295,-73.93983,"(40.651295, -73.93983)",,,4009 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499667,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,9:51,BRONX,10473,40.82444,-73.843,"(40.82444, -73.843)",,,809 ZEREGA AVENUE,1,0,0,0,0,0,1,0,Steering Failure,Unspecified,,,,4499424,Tow Truck / Wrecker,Sedan,,, +02/02/2022,3:00,QUEENS,11372,40.755264,-73.88817,"(40.755264, -73.88817)",79 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4499431,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,21:40,QUEENS,11432,40.707226,-73.804504,"(40.707226, -73.804504)",153 STREET,HILLSIDE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499632,Taxi,Bike,,, +02/04/2022,1:46,,,40.760857,-73.961075,"(40.760857, -73.961075)",EAST 61 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499801,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,17:55,BROOKLYN,11236,40.64359,-73.90471,"(40.64359, -73.90471)",GLENWOOD ROAD,EAST 94 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499454,Station Wagon/Sport Utility Vehicle,Ambulance,,, +02/03/2022,1:15,QUEENS,11372,40.74744,-73.885796,"(40.74744, -73.885796)",80 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499659,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,23:00,BROOKLYN,11235,0,0,"(0.0, 0.0)",AVENUE Y,EAST 23 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,6:45,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499479,Armored Truck,Sedan,,, +02/04/2022,16:42,BROOKLYN,11237,40.692417,-73.902794,"(40.692417, -73.902794)",COOPER STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500217,Sedan,Sedan,,, +02/02/2022,6:15,BRONX,10452,40.838333,-73.91692,"(40.838333, -73.91692)",WALTON AVENUE,MARCY PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499685,Sedan,,,, +01/27/2022,16:45,MANHATTAN,10033,40.853016,-73.93539,"(40.853016, -73.93539)",,,90 BENNETT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500452,Sedan,,,, +02/04/2022,10:05,BROOKLYN,11229,40.59713,-73.93835,"(40.59713, -73.93835)",,,2231 BATCHELDER STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499840,Sedan,Sedan,,, +02/02/2022,12:53,MANHATTAN,10005,40.70619,-74.00917,"(40.70619, -74.00917)",,,55 WALL STREET,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4499379,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,11:18,MANHATTAN,10035,40.803696,-73.93792,"(40.803696, -73.93792)",EAST 124 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499994,Sedan,Sedan,,, +02/02/2022,11:25,BROOKLYN,11218,40.64349,-73.99,"(40.64349, -73.99)",,,3823 FORT HAMILTON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499633,Station Wagon/Sport Utility Vehicle,Taxi,,, +02/04/2022,17:00,QUEENS,11361,40.75693,-73.77902,"(40.75693, -73.77902)",45 ROAD,204 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4499919,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,15:20,BROOKLYN,11203,40.651573,-73.94385,"(40.651573, -73.94385)",,,917 BROOKLYN AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4500254,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +02/04/2022,11:30,BROOKLYN,11203,40.648117,-73.931015,"(40.648117, -73.931015)",EAST 49 STREET,TILDEN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4500232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,17:30,BRONX,10451,40.825577,-73.918465,"(40.825577, -73.918465)",CONCOURSE VILLAGE EAST,EAST 161 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4500195,Bike,Sedan,,, +02/03/2022,10:40,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499679,Sedan,Sedan,,, +02/02/2022,19:25,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499973,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,18:53,QUEENS,11414,40.664192,-73.841125,"(40.664192, -73.841125)",CROSS BAY BOULEVARD,156 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4500471,Sedan,,,, +02/03/2022,11:30,MANHATTAN,10016,40.74339,-73.98615,"(40.74339, -73.98615)",MADISON AVENUE,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499699,Bus,Box Truck,,, +02/03/2022,18:05,BRONX,10459,40.820984,-73.891624,"(40.820984, -73.891624)",EAST 163 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499952,Van,Sedan,,, +02/02/2022,8:22,,,40.69608,-73.9694,"(40.69608, -73.9694)",CLINTON AVENUE,PARK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499389,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,17:10,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4499453,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/02/2022,16:25,,,40.67693,-74.00211,"(40.67693, -74.00211)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499829,Sedan,Sedan,,, +02/04/2022,22:22,BROOKLYN,11237,40.699265,-73.91482,"(40.699265, -73.91482)",GROVE STREET,IRVING AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500221,E-Bike,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,9:43,BROOKLYN,11212,40.660004,-73.91529,"(40.660004, -73.91529)",,,46 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500532,Sedan,Sedan,,, +02/03/2022,15:55,BROOKLYN,11210,40.636,-73.93741,"(40.636, -73.93741)",,,1525 ALBANY AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4500225,Station Wagon/Sport Utility Vehicle,Taxi,,, +02/03/2022,18:35,QUEENS,11368,40.740257,-73.86532,"(40.740257, -73.86532)",CHRISTIE AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499834,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,21:08,QUEENS,11427,40.731598,-73.75799,"(40.731598, -73.75799)",82 AVENUE,212 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499470,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,1:25,BROOKLYN,11249,40.722843,-73.95542,"(40.722843, -73.95542)",,,200 NORTH 14 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4499576,Sedan,Van,Sedan,, +02/03/2022,20:42,BROOKLYN,11229,40.59592,-73.941025,"(40.59592, -73.941025)",AVENUE W,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499823,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,18:13,,,40.629166,-73.947334,"(40.629166, -73.947334)",NOSTRAND AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499732,Sedan,E-Scooter,,, +02/04/2022,17:35,BROOKLYN,11226,40.647243,-73.96048,"(40.647243, -73.96048)",ALBEMARLE ROAD,OCEAN AVENUE,,1,0,1,0,0,0,0,0,Drugs (illegal),,,,,4500155,Sedan,,,, +02/03/2022,18:28,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499795,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,13:30,,,40.69894,-73.83717,"(40.69894, -73.83717)",112 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499402,Sedan,,,, +02/02/2022,17:00,QUEENS,11416,40.68699,-73.8529,"(40.68699, -73.8529)",,,89-20 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499963,Sedan,,,, +01/29/2022,12:29,BROOKLYN,11216,40.678177,-73.94469,"(40.678177, -73.94469)",,,1438 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500343,Sedan,,,, +02/02/2022,19:35,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499493,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,18:02,BROOKLYN,11204,40.612175,-73.99397,"(40.612175, -73.99397)",BAY RIDGE PARKWAY,19 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499939,Sedan,,,, +07/09/2021,17:25,BROOKLYN,11216,40.672527,-73.95026,"(40.672527, -73.95026)",NOSTRAND AVENUE,STERLING PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4436292,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +07/31/2021,22:30,QUEENS,11692,40.592674,-73.79909,"(40.592674, -73.79909)",BEACH CHANNEL DRIVE,BEACH 70 STREET,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4443740,Sedan,Sedan,,, +08/12/2021,15:00,,,40.69231,-73.88147,"(40.69231, -73.88147)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4446459,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/23/2021,8:30,BROOKLYN,11203,40.650227,-73.92827,"(40.650227, -73.92827)",SNYDER AVENUE,EAST 52 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4450869,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,9:00,BRONX,10459,40.820972,-73.892845,"(40.820972, -73.892845)",EAST 163 STREET,SIMPSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499370,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,5:45,,,,,,,,88-29 VANERVEER STREET,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4451769,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,7:00,MANHATTAN,10035,40.799297,-73.94113,"(40.799297, -73.94113)",EAST 117 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499995,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,8:15,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",SOUTHERN BOULEVARD,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499926,Sedan,,,, +02/02/2022,16:15,,,,,,47 STREET,LAUREL HILL BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4499465,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,1:05,,,,,,VANERVEER STREET,91 AVENUE,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4453729,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,14:30,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4454171,Sedan,Sedan,,, +09/01/2021,16:35,QUEENS,11354,40.75702,-73.83868,"(40.75702, -73.83868)",VANWYCK EXPRESSWAY,ROOSEVELT AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4455406,Station Wagon/Sport Utility Vehicle,Tanker,,, +09/07/2021,17:53,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",WYCKOFF AVENUE,DE KALB AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4455807,Sedan,Bike,,, +09/10/2021,22:00,,,40.671474,-73.93088,"(40.671474, -73.93088)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456238,Sedan,Sedan,,, +09/08/2021,13:25,QUEENS,11355,40.752316,-73.8324,"(40.752316, -73.8324)",COLLEGE POINT BOULEVARD,AVERY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455096,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,9:48,BROOKLYN,11220,40.635494,-74.00957,"(40.635494, -74.00957)",8 AVENUE,60 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4456067,Bus,,,, +09/03/2021,22:45,,,40.69811,-73.91713,"(40.69811, -73.91713)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455791,,,,, +09/08/2021,23:19,BRONX,10455,40.816044,-73.91195,"(40.816044, -73.91195)",SAINT ANNS AVENUE,WESTCHESTER AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4455523,Sedan,Sedan,Taxi,Station Wagon/Sport Utility Vehicle,Sedan +09/08/2021,12:53,QUEENS,11419,40.690838,-73.822876,"(40.690838, -73.822876)",101 AVENUE,123 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455189,Box Truck,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,0:00,BROOKLYN,11212,40.664413,-73.901634,"(40.664413, -73.901634)",,,417 JUNIUS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455996,Sedan,,,, +09/09/2021,0:33,QUEENS,11417,40.674133,-73.85826,"(40.674133, -73.85826)",78 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4455144,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/09/2021,9:50,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4455637,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,16:23,BRONX,10453,40.851185,-73.921425,"(40.851185, -73.921425)",,,1622 SEDGWICK AVENUE,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4455500,Taxi,Moped,,, +09/07/2021,22:10,,,40.68431,-73.95411,"(40.68431, -73.95411)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456153,Sedan,,,, +08/30/2021,14:59,,,40.670116,-73.92248,"(40.670116, -73.92248)",RALPH AVENUE,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456271,Sedan,,,, +09/09/2021,12:36,QUEENS,11356,40.7847,-73.83854,"(40.7847, -73.83854)",130 STREET,15 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455484,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,14:53,BROOKLYN,11207,40.684513,-73.909386,"(40.684513, -73.909386)",BUSHWICK AVENUE,MOFFAT STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4455790,Station Wagon/Sport Utility Vehicle,Bike,,, +09/08/2021,6:06,,,40.729305,-73.910385,"(40.729305, -73.910385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4455371,Sedan,Box Truck,,, +09/07/2021,0:40,,,40.672516,-73.93356,"(40.672516, -73.93356)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456239,Sedan,,,, +09/07/2021,0:35,,,40.67132,-73.9281,"(40.67132, -73.9281)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4455676,Sedan,Sedan,Sedan,, +09/10/2021,16:40,BRONX,10468,40.87016,-73.89099,"(40.87016, -73.89099)",GRAND CONCOURSE,EAST 198 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456403,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,13:39,BROOKLYN,11220,40.633106,-74.01206,"(40.633106, -74.01206)",,,6410 8 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455626,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,14:30,BROOKLYN,11229,40.599174,-73.95335,"(40.599174, -73.95335)",,,1811 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455346,Sedan,Box Truck,,, +09/08/2021,0:10,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454816,Sedan,Sedan,,, +09/10/2021,12:00,,,40.827423,-73.836754,"(40.827423, -73.836754)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456016,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,19:49,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4455713,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/03/2021,11:00,BROOKLYN,11236,40.647564,-73.92024,"(40.647564, -73.92024)",,,1139 RALPH AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4455836,Sedan,,,, +09/08/2021,4:00,BROOKLYN,11220,40.64166,-74.01392,"(40.64166, -74.01392)",,,5602 5 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4455128,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,18:30,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455639,Sedan,,,, +01/27/2022,17:45,BROOKLYN,11212,40.66399,-73.92988,"(40.66399, -73.92988)",EAST NEW YORK AVENUE,EAST 92 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4500216,Sedan,Sedan,,, +09/10/2021,8:55,QUEENS,11368,40.757442,-73.86747,"(40.757442, -73.86747)",NORTHERN BOULEVARD,101 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455566,Sedan,Taxi,,, +09/09/2021,21:34,MANHATTAN,10037,40.81358,-73.9396,"(40.81358, -73.9396)",,,45 WEST 135 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4456439,Sedan,,,, +09/08/2021,8:00,BRONX,10458,40.856606,-73.88445,"(40.856606, -73.88445)",,,655 EAST 189 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455248,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,18:58,,,40.74641,-73.78023,"(40.74641, -73.78023)",HOLLIS COURT BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455681,Pick-up Truck,Sedan,,, +09/10/2021,17:30,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455740,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:00,BROOKLYN,11214,40.606903,-73.99892,"(40.606903, -73.99892)",,,1901 84 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455998,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,14:24,MANHATTAN,10029,40.788486,-73.94363,"(40.788486, -73.94363)",,,1998 2 AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455162,Bike,Bike,,, +09/10/2021,14:00,BROOKLYN,11236,40.653744,-73.91848,"(40.653744, -73.91848)",CHURCH AVENUE,EAST 92 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455862,Sedan,Sedan,,, +09/10/2021,19:00,BRONX,10453,40.85154,-73.918335,"(40.85154, -73.918335)",PALISADE PLACE,POPHAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455926,Sedan,,,, +09/09/2021,8:44,,,40.904552,-73.847824,"(40.904552, -73.847824)",BARNES AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455325,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,16:10,BROOKLYN,11219,40.623325,-74.003296,"(40.623325, -74.003296)",,,1318 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,9:45,BRONX,10466,40.898018,-73.845634,"(40.898018, -73.845634)",,,4353 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456482,Sedan,,,, +09/09/2021,17:25,BROOKLYN,11215,40.659252,-73.988434,"(40.659252, -73.988434)",20 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455454,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,7:00,BROOKLYN,11234,40.619198,-73.9228,"(40.619198, -73.9228)",,,5412 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4455952,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,7:00,BROOKLYN,11222,40.7242,-73.93765,"(40.7242, -73.93765)",APOLLO STREET,MEEKER AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454891,Sedan,E-Bike,,, +09/01/2021,1:25,QUEENS,11385,40.70832,-73.90144,"(40.70832, -73.90144)",GATES AVENUE,60 PLACE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456213,Station Wagon/Sport Utility Vehicle,E-Bike,,, +08/29/2021,16:40,,,40.629414,-74.137856,"(40.629414, -74.137856)",,,166 CATHERINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455607,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,21:01,MANHATTAN,10025,,,,Columbus Ave,WEST 104 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455168,Station Wagon/Sport Utility Vehicle,Bike,,, +09/08/2021,22:30,QUEENS,11369,40.75916,-73.859116,"(40.75916, -73.859116)",,,32-33 111 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455369,Sedan,Sedan,,, +09/03/2021,15:26,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",2 AVENUE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455537,Sedan,Sedan,,, +08/31/2021,13:15,QUEENS,11429,40.713985,-73.73812,"(40.713985, -73.73812)",HEMPSTEAD AVENUE,218 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456218,Tractor Truck Diesel,Sedan,,, +09/10/2021,10:19,BRONX,10468,40.859608,-73.90778,"(40.859608, -73.90778)",WEST 183 STREET,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455598,Taxi,,,, +09/10/2021,14:00,BROOKLYN,11206,40.699455,-73.9397,"(40.699455, -73.9397)",BROADWAY,ELLERY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455818,Sedan,,,, +09/06/2021,22:50,,,40.670277,-73.92542,"(40.670277, -73.92542)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455669,Sedan,E-Bike,,, +09/09/2021,16:00,BROOKLYN,11226,40.65399,-73.96416,"(40.65399, -73.96416)",SAINT PAULS PLACE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455775,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,20:00,QUEENS,11412,40.701588,-73.7544,"(40.701588, -73.7544)",113 AVENUE,201 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455852,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,0:36,BRONX,10468,40.863327,-73.89921,"(40.863327, -73.89921)",MORRIS AVENUE,EAST 190 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455293,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/09/2021,12:38,QUEENS,11434,40.687016,-73.77487,"(40.687016, -73.77487)",MERRICK BOULEVARD,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4455756,Bus,Station Wagon/Sport Utility Vehicle,,, +08/27/2021,4:52,BRONX,10463,40.882664,-73.89644,"(40.882664, -73.89644)",,,3397 SEDGWICK AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4456174,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +09/08/2021,6:15,,,40.825687,-73.86102,"(40.825687, -73.86102)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4454915,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,8:10,BROOKLYN,11203,40.654976,-73.936554,"(40.654976, -73.936554)",LENOX ROAD,TROY AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4455543,Sedan,Sedan,,, +09/08/2021,17:45,BROOKLYN,11203,40.65362,-73.93352,"(40.65362, -73.93352)",SCHENECTADY AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455542,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,13:55,BRONX,10469,40.874737,-73.855255,"(40.874737, -73.855255)",EAST 211 STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,Unspecified,,,4455072,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/10/2021,14:57,,,40.74198,-73.82475,"(40.74198, -73.82475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455691,Sedan,Sedan,,, +09/10/2021,16:15,,,40.8133,-73.930405,"(40.8133, -73.930405)",EAST 138 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455708,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/03/2021,11:44,,,40.671535,-73.957664,"(40.671535, -73.957664)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455658,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/10/2021,23:30,BROOKLYN,11220,40.646294,-74.019844,"(40.646294, -74.019844)",2 AVENUE,55 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456054,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/01/2021,18:12,,,40.777412,-73.978806,"(40.777412, -73.978806)",WEST 72 STREET,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4455900,Bike,,,, +09/05/2021,6:00,,,40.671474,-73.93088,"(40.671474, -73.93088)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4455630,Sedan,Sedan,Sedan,Sedan,Sedan +09/10/2021,22:00,MANHATTAN,10036,40.754326,-73.980286,"(40.754326, -73.980286)",,,518 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456081,Sedan,,,, +08/31/2021,14:57,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",LEGGETT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455880,Tractor Truck Gasoline,PK,,, +09/10/2021,10:06,BRONX,10457,40.84171,-73.898674,"(40.84171, -73.898674)",,,4006 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455966,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,21:46,BROOKLYN,11207,40.67811,-73.89762,"(40.67811, -73.89762)",BUSHWICK AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456275,Sedan,Sedan,,, +09/10/2021,0:00,QUEENS,11370,40.759457,-73.88608,"(40.759457, -73.88608)",,,30-51 82 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,,,4456336,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/09/2021,8:30,,,40.843906,-73.92413,"(40.843906, -73.92413)",BOSCOBEL PLACE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4455492,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,14:30,QUEENS,11422,40.657406,-73.74507,"(40.657406, -73.74507)",BROOKVILLE BOULEVARD,147 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455696,,,,, +09/08/2021,11:39,,,40.691666,-73.76239,"(40.691666, -73.76239)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455214,Sedan,,,, +09/06/2021,20:15,,,40.67624,-73.866104,"(40.67624, -73.866104)",CONDUIT BOULEVARD,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456303,Sedan,,,, +09/10/2021,23:30,MANHATTAN,10038,40.70949,-74.01025,"(40.70949, -74.01025)",,,160 BROADWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4455843,Taxi,Bus,Sedan,, +09/09/2021,12:05,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456121,Sedan,Sedan,Sedan,, +09/08/2021,13:40,BRONX,10467,40.8673,-73.87047,"(40.8673, -73.87047)",,,2850 BRONX PARK EAST,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4455252,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/08/2021,20:00,,,40.843174,-73.91196,"(40.843174, -73.91196)",GRAND CONCOURSE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455562,Sedan,,,, +08/14/2021,19:38,,,40.67058,-73.93096,"(40.67058, -73.93096)",SAINT JOHNS PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456244,Sedan,,,, +09/08/2021,12:35,BROOKLYN,11207,40.657066,-73.8895,"(40.657066, -73.8895)",,,850 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455269,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,17:10,MANHATTAN,10036,40.757183,-73.98966,"(40.757183, -73.98966)",,,241 WEST 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456491,UNKNOWN,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,13:20,QUEENS,11377,40.753284,-73.90691,"(40.753284, -73.90691)",NORTHERN BOULEVARD,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455049,Taxi,Dump,,, +09/05/2021,1:32,MANHATTAN,10009,40.724606,-73.985695,"(40.724606, -73.985695)",,,172 EAST 4 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4456024,Sedan,Sedan,,, +09/02/2021,12:45,MANHATTAN,10023,40.77622,-73.97596,"(40.77622, -73.97596)",WEST 72 STREET,CENTRAL PARK WEST,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4455892,Bike,,,, +09/07/2021,23:50,MANHATTAN,10040,40.858273,-73.93182,"(40.858273, -73.93182)",WEST 193 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4456147,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,15:10,,,40.80275,-73.93358,"(40.80275, -73.93358)",2 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455575,Sedan,Sedan,,, +09/08/2021,9:00,BROOKLYN,11212,40.67165,-73.906364,"(40.67165, -73.906364)",GLENMORE AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455003,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,17:00,QUEENS,11377,40.755207,-73.903275,"(40.755207, -73.903275)",,,32-21 58 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456433,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,3:49,BRONX,10463,40.881306,-73.90009,"(40.881306, -73.90009)",,,3418 BAILEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456228,Sedan,Bus,,, +09/08/2021,14:05,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455428,Sedan,Motorcycle,,, +09/09/2021,17:53,MANHATTAN,10017,40.754486,-73.97341,"(40.754486, -73.97341)",,,127 EAST 47 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4455447,Box Truck,,,, +09/09/2021,13:20,BROOKLYN,11206,40.70518,-73.942856,"(40.70518, -73.942856)",GRAHAM AVENUE,MC KIBBIN STREET,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4455468,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/10/2021,20:35,,,40.70725,-73.958466,"(40.70725, -73.958466)",DIVISION AVENUE,MARCY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455723,Sedan,,,, +08/18/2021,11:10,BROOKLYN,11207,40.684937,-73.91014,"(40.684937, -73.91014)",COOPER STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455594,Sedan,Sedan,,, +09/08/2021,14:05,MANHATTAN,10004,40.70495,-74.01156,"(40.70495, -74.01156)",BROAD STREET,BEAVER STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4455033,Station Wagon/Sport Utility Vehicle,Bike,,, +09/08/2021,7:50,BROOKLYN,11236,40.645164,-73.898346,"(40.645164, -73.898346)",EAST 100 STREET,FLATLANDS AVENUE,,2,0,2,0,0,0,0,0,View Obstructed/Limited,,,,,4455006,Sedan,,,, +08/26/2021,18:32,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455814,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,11:30,MANHATTAN,10016,40.745033,-73.97445,"(40.745033, -73.97445)",,,314 EAST 35 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455392,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,9:50,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455066,Station Wagon/Sport Utility Vehicle,Bike,,, +09/01/2021,15:45,,,40.79676,-73.9451,"(40.79676, -73.9451)",EAST 112 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455915,Box Truck,Sedan,,, +09/08/2021,12:25,,,40.698536,-73.91788,"(40.698536, -73.91788)",KNICKERBOCKER AVENUE,,,2,0,0,0,0,0,2,0,Tinted Windows,Unspecified,,,,4454980,Sedan,Sedan,,, +09/10/2021,17:05,,,40.654316,-73.922165,"(40.654316, -73.922165)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4455728,Sedan,Sedan,,, +09/08/2021,12:30,QUEENS,11422,40.673798,-73.73179,"(40.673798, -73.73179)",242 STREET,MERRICK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455265,Sedan,Pick-up Truck,,, +09/10/2021,7:45,,,40.721485,-73.86658,"(40.721485, -73.86658)",64 ROAD,,,1,0,1,0,0,0,0,0,Glare,,,,,4455906,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,7:50,,,40.722496,-73.9769,"(40.722496, -73.9769)",AVENUE D,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4456028,Sedan,Bike,,, +09/09/2021,19:51,QUEENS,11434,40.667084,-73.78698,"(40.667084, -73.78698)",BAISLEY BOULEVARD,NORTH CONDUIT AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4455530,Sedan,,,, +09/08/2021,17:00,QUEENS,11423,40.708927,-73.77733,"(40.708927, -73.77733)",183 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455662,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,2:07,,,40.71401,-73.85965,"(40.71401, -73.85965)",WOODHAVEN BOULEVARD,YELLOWSTONE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455154,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,20:55,BROOKLYN,11217,40.684742,-73.97923,"(40.684742, -73.97923)",,,562 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4455745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,13:00,BROOKLYN,11226,40.647976,-73.959564,"(40.647976, -73.959564)",,,266 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455780,Sedan,,,, +09/10/2021,12:40,QUEENS,11419,40.691406,-73.81273,"(40.691406, -73.81273)",LIBERTY AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456142,Sedan,Sedan,,, +09/09/2021,0:00,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456280,Sedan,Sedan,,, +09/08/2021,17:00,BRONX,10459,40.82098,-73.89388,"(40.82098, -73.89388)",EAST 163 STREET,FOX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455885,Sedan,,,, +09/10/2021,0:00,MANHATTAN,10010,40.74059,-73.989395,"(40.74059, -73.989395)",EAST 22 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455977,Sedan,,,, +09/09/2021,18:40,MANHATTAN,10018,40.75619,-73.99057,"(40.75619, -73.99057)",,,625 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456060,Taxi,,,, +09/08/2021,7:40,QUEENS,11691,40.603,-73.74787,"(40.603, -73.74787)",,,1315 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4455173,Sedan,,,, +09/08/2021,19:09,,,40.8351,-73.919464,"(40.8351, -73.919464)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4455496,Ambulance,Box Truck,,, +09/10/2021,7:45,BROOKLYN,11208,40.66933,-73.8738,"(40.66933, -73.8738)",DUMONT AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4456307,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,8:25,,,40.753677,-73.914474,"(40.753677, -73.914474)",48 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Drugs (illegal),,,,,4499857,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,15:30,,,40.67695,-74.00181,"(40.67695, -74.00181)",HAMILTON AVENUE,HUNTINGTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455286,Sedan,Motorcycle,,, +09/09/2021,19:28,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,2:00,QUEENS,11367,40.720707,-73.81601,"(40.720707, -73.81601)",,,147-22 78 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455700,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,5:15,BRONX,10451,40.8244,-73.909706,"(40.8244, -73.909706)",,,491 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455618,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,4:29,QUEENS,11103,40.769268,-73.91361,"(40.769268, -73.91361)",,,36-20 ASTORIA BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,5:30,QUEENS,11434,40.681488,-73.77233,"(40.681488, -73.77233)",125 AVENUE,172 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4455218,Sedan,Sedan,,, +09/10/2021,20:00,STATEN ISLAND,10301,40.62434,-74.09396,"(40.62434, -74.09396)",VICTORY BOULEVARD,THERESA PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456088,Sedan,Pick-up Truck,,, +08/26/2021,19:25,BROOKLYN,11238,40.678165,-73.962234,"(40.678165, -73.962234)",BERGEN STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456253,Sedan,,,, +09/10/2021,9:13,BROOKLYN,11228,40.62619,-74.00847,"(40.62619, -74.00847)",,,6921 11 AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455717,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/06/2021,18:00,,,40.700123,-73.91632,"(40.700123, -73.91632)",BLEECKER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4455800,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +08/09/2021,12:39,BROOKLYN,11221,40.689022,-73.93925,"(40.689022, -73.93925)",LEXINGTON AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456162,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/09/2021,9:22,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",ATLANTIC AVENUE,LOGAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455273,Sedan,Box Truck,,, +09/08/2021,8:45,,,,,,GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4454999,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/09/2021,0:50,MANHATTAN,10035,40.803753,-73.93999,"(40.803753, -73.93999)",EAST 123 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455579,Sedan,,,, +08/29/2021,4:05,,,40.58396,-73.9253,"(40.58396, -73.9253)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456198,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,16:30,,,40.659016,-73.95673,"(40.659016, -73.95673)",BEDFORD AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4455056,Station Wagon/Sport Utility Vehicle,Bike,,, +09/06/2021,19:13,MANHATTAN,10011,40.73656,-74.0011,"(40.73656, -74.0011)",7 AVENUE,WEST 11 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4456427,Pick-up Truck,Convertible,,, +09/08/2021,8:05,BRONX,10456,40.830353,-73.90347,"(40.830353, -73.90347)",EAST 168 STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455135,Sedan,Sedan,,, +09/10/2021,15:40,,,40.72857,-73.85809,"(40.72857, -73.85809)",QUEENS BOULEVARD,65 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455767,Sedan,,,, +09/03/2021,21:35,QUEENS,11411,40.665848,-73.74822,"(40.665848, -73.74822)",BELT PARKWAY,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4453533,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,18:25,QUEENS,11378,40.713272,-73.9089,"(40.713272, -73.9089)",,,54-15 ANDREWS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455423,Sedan,,,, +09/08/2021,19:00,BRONX,10461,40.851852,-73.83376,"(40.851852, -73.83376)",WILKINSON AVENUE,MAYFLOWER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456008,Sedan,Sedan,,, +09/10/2021,22:13,QUEENS,11378,40.727757,-73.89229,"(40.727757, -73.89229)",71 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456222,Bus,Sedan,,, +09/07/2021,15:06,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4455574,Sedan,,,, +09/09/2021,14:39,BROOKLYN,11217,40.68707,-73.98522,"(40.68707, -73.98522)",,,400 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4455475,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/08/2021,11:55,QUEENS,11377,40.751083,-73.9079,"(40.751083, -73.9079)",54 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455213,Sedan,,,, +09/08/2021,16:54,MANHATTAN,10017,40.756607,-73.97651,"(40.756607, -73.97651)",EAST 48 STREET,MADISON AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Traffic Control Disregarded,,,,4455339,E-Scooter,Sedan,,, +09/09/2021,18:01,MANHATTAN,10029,40.79466,-73.94404,"(40.79466, -73.94404)",,,153 EAST 110 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455429,Sedan,Box Truck,,, +09/08/2021,15:24,BRONX,10474,40.817207,-73.88432,"(40.817207, -73.88432)",WHITTIER STREET,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455075,Sedan,,,, +09/09/2021,19:00,BROOKLYN,11212,40.668125,-73.90358,"(40.668125, -73.90358)",SUTTER AVENUE,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455463,Sedan,,,, +09/08/2021,7:36,,,,,,THROGS NECK BRIDGE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4455397,Sedan,Tractor Truck Gasoline,,, +09/08/2021,4:30,,,40.63439,-73.89324,"(40.63439, -73.89324)",EAST 95 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455012,Sedan,Sedan,,, +09/09/2021,10:30,BRONX,10460,40.842857,-73.86956,"(40.842857, -73.86956)",,,1754 TAYLOR AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4455323,Pick-up Truck,,,, +09/10/2021,7:57,,,40.835445,-73.923386,"(40.835445, -73.923386)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455633,Taxi,Sedan,,, +09/10/2021,1:15,,,40.645256,-73.874954,"(40.645256, -73.874954)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456290,Sedan,,,, +08/26/2021,10:30,MANHATTAN,10014,40.737545,-74.00484,"(40.737545, -74.00484)",8 AVENUE,WEST 12 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,6:40,,,40.870777,-73.81923,"(40.870777, -73.81923)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Pavement Slippery,,,,4455233,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,8:15,BROOKLYN,11228,40.617813,-74.00644,"(40.617813, -74.00644)",14 AVENUE,77 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455984,Sedan,Bike,,, +09/10/2021,22:44,,,40.830906,-73.8736,"(40.830906, -73.8736)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456039,Sedan,Sedan,,, +09/09/2021,10:15,,,40.609554,-73.96631,"(40.609554, -73.96631)",AVENUE P,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4455257,Sedan,Sedan,Sedan,, +09/09/2021,19:17,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455750,Sedan,,,, +09/10/2021,7:30,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4455601,PK,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,15:00,,,40.66858,-73.84223,"(40.66858, -73.84223)",CROSS BAY BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,Unspecified,,,4455470,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/08/2021,13:25,MANHATTAN,10032,40.83459,-73.9445,"(40.83459, -73.9445)",,,3799 BROADWAY,0,0,0,0,0,0,0,0,Shoulders Defective/Improper,,,,,4455534,Van,,,, +09/09/2021,8:45,,,40.797337,-73.96244,"(40.797337, -73.96244)",WEST 104 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4455317,Taxi,Tractor Truck Diesel,,, +09/08/2021,1:43,BROOKLYN,11237,40.701103,-73.92239,"(40.701103, -73.92239)",DE KALB AVENUE,KNICKERBOCKER AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4455808,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,10:30,STATEN ISLAND,10306,40.572014,-74.146996,"(40.572014, -74.146996)",RICHMOND ROAD,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455385,Ambulance,Sedan,,, +09/10/2021,13:40,BRONX,10462,40.85159,-73.867805,"(40.85159, -73.867805)",BRONXDALE AVENUE,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4455643,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/03/2021,8:45,MANHATTAN,10034,40.864113,-73.92126,"(40.864113, -73.92126)",WEST 204 STREET,POST AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4456133,Motorcycle,,,, +09/09/2021,1:05,QUEENS,11419,40.687153,-73.82462,"(40.687153, -73.82462)",,,103-45 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Turning Improperly,,,,4455149,Sedan,Sedan,,, +09/09/2021,11:06,MANHATTAN,10282,40.714767,-74.016205,"(40.714767, -74.016205)",NORTH END AVENUE,VESEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455355,Sedan,,,, +09/08/2021,15:10,QUEENS,11691,,,,ROCKAWAY FREEWAY,BEACH 54 STREET,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4455169,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,14:41,MANHATTAN,10031,40.820107,-73.95304,"(40.820107, -73.95304)",,,508 WEST 136 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455672,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,0:10,BROOKLYN,11208,40.68095,-73.877594,"(40.68095, -73.877594)",,,223 LOGAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456310,Sedan,,,, +09/08/2021,4:30,BRONX,10454,40.806236,-73.9201,"(40.806236, -73.9201)",,,489 EAST 136 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455502,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,19:10,BROOKLYN,11238,40.686287,-73.9695,"(40.686287, -73.9695)",GREENE AVENUE,CLERMONT AVENUE,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4455732,Sedan,Bike,,, +09/10/2021,16:14,MANHATTAN,10002,40.714207,-73.99485,"(40.714207, -73.99485)",DIVISION STREET,MARKET STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456064,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,22:50,BRONX,10472,40.82834,-73.882416,"(40.82834, -73.882416)",,,1441 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455118,PK,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,17:00,MANHATTAN,10030,40.818424,-73.94515,"(40.818424, -73.94515)",8 AVENUE,WEST 138 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4455510,Sedan,Sedan,,, +08/31/2021,17:15,,,40.73414,-73.99919,"(40.73414, -73.99919)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456424,Sedan,Sedan,,, +09/04/2021,17:14,,,40.84984,-73.934975,"(40.84984, -73.934975)",WADSWORTH AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456107,Sedan,,,, +09/09/2021,13:36,QUEENS,11358,40.76521,-73.8005,"(40.76521, -73.8005)",35 AVENUE,165 STREET,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4456262,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,7:08,,,,,,CROSS BRONX EXPY RAMP,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4455638,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,4:05,QUEENS,11369,40.764828,-73.86985,"(40.764828, -73.86985)",100 STREET,25 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4455762,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,11:00,,,40.813385,-73.94511,"(40.813385, -73.94511)",WEST 132 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456447,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/09/2021,23:35,,,40.576275,-73.98796,"(40.576275, -73.98796)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4456004,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/08/2021,8:15,,,40.73771,-73.974266,"(40.73771, -73.974266)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455203,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,0:49,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",SOUTHERN BOULEVARD,EAST TREMONT AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455555,E-Bike,E-Bike,,, +09/09/2021,18:24,BROOKLYN,11215,40.670616,-73.98924,"(40.670616, -73.98924)",,,233 9 STREET,0,0,0,0,0,0,0,0,Oversized Vehicle,Aggressive Driving/Road Rage,,,,4455867,Box Truck,Moped,,, +09/09/2021,9:05,QUEENS,11692,40.59296,-73.79418,"(40.59296, -73.79418)",BEACH CHANNEL DRIVE,BEACH 65 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455419,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,14:24,,,40.681835,-73.97584,"(40.681835, -73.97584)",DEAN STREET,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4455086,Sedan,Bike,,, +09/04/2021,11:22,BROOKLYN,11237,40.698486,-73.92144,"(40.698486, -73.92144)",MYRTLE AVENUE,HIMROD STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455796,Sedan,Sedan,,, +09/10/2021,11:25,BROOKLYN,11232,,,,4 AVENUE,41 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455872,Sedan,E-Scooter,,, +09/10/2021,0:00,MANHATTAN,10002,40.71366,-73.97898,"(40.71366, -73.97898)",,,573 GRAND STREET,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455933,Sedan,Bike,,, +09/09/2021,8:45,QUEENS,11434,0,0,"(0.0, 0.0)",BAISLEY BOULEVARD,MERRILL STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455331,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,9:30,,,40.724434,-73.8693,"(40.724434, -73.8693)",63 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455435,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/06/2021,18:05,QUEENS,11434,40.67267,-73.770294,"(40.67267, -73.770294)",137 AVENUE,170 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4456371,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/03/2021,17:51,BRONX,10463,40.883198,-73.90802,"(40.883198, -73.90802)",,,3240 RIVERDALE AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4456182,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,16:24,QUEENS,11106,,,,,,24-12 34 AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455611,Taxi,Sedan,,, +09/08/2021,14:25,BROOKLYN,11223,40.589157,-73.98282,"(40.589157, -73.98282)",AVENUE X,WEST 13 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4455181,Sedan,Van,,, +09/09/2021,18:00,BRONX,10461,40.845833,-73.83148,"(40.845833, -73.83148)",,,1722 CROSBY AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4456012,Sedan,Sedan,Sedan,, +09/09/2021,15:30,BRONX,10459,40.832726,-73.89655,"(40.832726, -73.89655)",,,1423 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455554,Sedan,Sedan,,, +09/08/2021,16:00,,,40.647972,-74.0181,"(40.647972, -74.0181)",52 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455129,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,16:25,QUEENS,11421,40.686207,-73.85569,"(40.686207, -73.85569)",ATLANTIC AVENUE,86 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4455182,Moped,Sedan,,, +09/10/2021,13:10,QUEENS,11368,40.75513,-73.84391,"(40.75513, -73.84391)",,,124-02 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455828,Sedan,,,, +08/23/2021,11:02,BRONX,10470,40.90304,-73.849556,"(40.90304, -73.849556)",FURMAN AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4456488,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,9:45,BRONX,10474,40.81014,-73.89118,"(40.81014, -73.89118)",,,529 WORTHEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455569,Sedan,,,, +09/10/2021,15:00,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",3 AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456463,Sedan,,,, +09/08/2021,11:45,QUEENS,11691,40.595303,-73.78115,"(40.595303, -73.78115)",,,50-15 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4455163,Box Truck,,,, +09/09/2021,2:35,QUEENS,11378,40.71688,-73.9212,"(40.71688, -73.9212)",,,47-08 GRAND AVENUE,0,0,0,0,0,0,0,0,Steering Failure,,,,,4455363,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,20:34,QUEENS,11106,40.764347,-73.92347,"(40.764347, -73.92347)",31 STREET,31 AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4455586,E-Bike,,,, +09/08/2021,0:34,BRONX,10454,40.80994,-73.91339,"(40.80994, -73.91339)",,,604 SAINT MARYS STREET,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4454825,Moped,Pick-up Truck,,, +09/09/2021,17:24,,,,,,HORACE HARDING EXPRESSWAY,COLLEGE POINT BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455401,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/08/2021,5:04,,,40.86159,-73.92475,"(40.86159, -73.92475)",FORT GEORGE HILL,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456157,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,3:30,MANHATTAN,,40.81982,-73.95529,"(40.81982, -73.95529)",,,3333 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4455665,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,21:00,,,40.736145,-73.92651,"(40.736145, -73.92651)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455685,Sedan,Sedan,,, +09/09/2021,23:57,,,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4455458,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,21:44,QUEENS,11374,40.727108,-73.859024,"(40.727108, -73.859024)",65 ROAD,BOOTH STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Passing or Lane Usage Improper,,,,4455103,Sedan,Ambulance,,, +09/09/2021,1:00,MANHATTAN,10001,40.74782,-73.99665,"(40.74782, -73.99665)",WEST 27 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455301,Taxi,,,, +09/09/2021,10:47,BROOKLYN,11232,40.656548,-74.0021,"(40.656548, -74.0021)",4 AVENUE,32 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455453,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,19:50,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4455433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,11:00,QUEENS,11375,40.73605,-73.8486,"(40.73605, -73.8486)",,,62-71 110 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455344,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,14:45,BROOKLYN,11201,40.69595,-73.9824,"(40.69595, -73.9824)",PRINCE STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455610,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/08/2021,8:00,,,,,,137 STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4454892,Pick-up Truck,,,, +09/09/2021,18:20,BROOKLYN,11208,40.673943,-73.86393,"(40.673943, -73.86393)",SUTTER AVENUE,ELDERTS LANE,,2,0,0,0,0,0,2,0,Failure to Keep Right,Unspecified,,,,4456286,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,13:00,QUEENS,11370,40.765377,-73.88906,"(40.765377, -73.88906)",ASTORIA BOULEVARD,80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,16:25,BROOKLYN,11212,40.6573,-73.919975,"(40.6573, -73.919975)",,,376 EAST 94 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455085,Sedan,,,, +09/02/2021,9:15,,,40.882393,-73.83623,"(40.882393, -73.83623)",BOLLER AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455538,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,16:45,MANHATTAN,10018,40.753784,-73.99323,"(40.753784, -73.99323)",,,315 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455164,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,16:54,BROOKLYN,11238,40.687866,-73.96879,"(40.687866, -73.96879)",LAFAYETTE AVENUE,VANDERBILT AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Driver Inattention/Distraction,,,,4455670,Sedan,Sedan,,, +09/02/2021,15:00,BROOKLYN,11221,40.686462,-73.92245,"(40.686462, -73.92245)",,,899 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4456329,Sedan,,,, +09/09/2021,15:50,,,40.88183,-73.87627,"(40.88183, -73.87627)",EAST 211 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455597,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/09/2021,1:43,MANHATTAN,10016,40.744625,-73.98525,"(40.744625, -73.98525)",MADISON AVENUE,EAST 29 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455853,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,17:44,QUEENS,11375,40.725037,-73.850426,"(40.725037, -73.850426)",68 ROAD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4455407,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/10/2021,11:35,QUEENS,11377,40.75223,-73.905396,"(40.75223, -73.905396)",,,34-63 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455687,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,7:00,QUEENS,11368,40.755066,-73.84419,"(40.755066, -73.84419)",,,123-01 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455829,Moped,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,7:05,MANHATTAN,10032,40.843502,-73.93799,"(40.843502, -73.93799)",SAINT NICHOLAS AVENUE,WEST 172 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500272,,,,, +09/10/2021,21:02,BROOKLYN,11236,40.635506,-73.913284,"(40.635506, -73.913284)",FLATLANDS AVENUE,EAST 80 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455704,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,20:40,,,40.67239,-73.87463,"(40.67239, -73.87463)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456049,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,7:10,BROOKLYN,11206,40.69677,-73.93701,"(40.69677, -73.93701)",,,1090 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456291,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/08/2021,7:06,BROOKLYN,11233,40.676773,-73.91878,"(40.676773, -73.91878)",,,2074 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4455120,Sedan,Sedan,,, +09/08/2021,21:31,BRONX,10468,40.867878,-73.893005,"(40.867878, -73.893005)",GRAND CONCOURSE,EAST 196 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455292,Sedan,,,, +09/09/2021,18:40,BROOKLYN,11212,40.667706,-73.90636,"(40.667706, -73.90636)",STONE AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Eating or Drinking,Unspecified,,,,4455997,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,15:45,BROOKLYN,11233,40.670895,-73.91405,"(40.670895, -73.91405)",BOYLAND STREET,EAST NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,11:30,BRONX,10467,40.87634,-73.863144,"(40.87634, -73.863144)",,,767 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455539,Box Truck,,,, +09/09/2021,8:50,QUEENS,11412,40.696648,-73.7693,"(40.696648, -73.7693)",MURDOCK AVENUE,DUNKIRK STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4455330,Sedan,Sedan,Sedan,, +09/06/2021,13:40,BRONX,10467,40.87835,-73.870346,"(40.87835, -73.870346)",EAST GUN HILL ROAD,NEWELL STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455524,Station Wagon/Sport Utility Vehicle,Bike,,, +09/10/2021,17:04,QUEENS,11367,40.74016,-73.83023,"(40.74016, -73.83023)",136 STREET,63 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455692,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,12:00,QUEENS,11420,40.66708,-73.81033,"(40.66708, -73.81033)",NORTH CONDUIT AVENUE,130 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,18:20,,,,,,COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455899,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,16:20,MANHATTAN,10002,40.714363,-73.99283,"(40.714363, -73.99283)",DIVISION STREET,PIKE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456055,Sedan,,,, +09/09/2021,16:48,MANHATTAN,10022,40.75928,-73.959274,"(40.75928, -73.959274)",YORK AVENUE,EAST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455485,Sedan,,,, +09/03/2021,14:37,,,40.67549,-73.93885,"(40.67549, -73.93885)",BERGEN STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456272,Bike,Sedan,,, +09/08/2021,16:15,BROOKLYN,11206,40.708675,-73.93699,"(40.708675, -73.93699)",WATERBURY STREET,MESEROLE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456376,,,,, +09/10/2021,10:50,,,40.675663,-73.9277,"(40.675663, -73.9277)",ROCHESTER AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456240,Sedan,Sedan,,, +09/08/2021,23:01,QUEENS,11101,40.749733,-73.936104,"(40.749733, -73.936104)",NORTHERN BOULEVARD,41 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455965,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,18:30,,,40.60572,-73.981224,"(40.60572, -73.981224)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456112,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,4:00,MANHATTAN,10027,40.80907,-73.94455,"(40.80907, -73.94455)",LENOX AVENUE,WEST 127 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4499622,Dump,,,, +08/13/2021,10:37,MANHATTAN,10016,40.744305,-73.97473,"(40.744305, -73.97473)",,,333 EAST 34 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4456356,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,5:00,BROOKLYN,11220,40.639217,-74.026596,"(40.639217, -74.026596)",,,202 WAKEMAN PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455448,Taxi,,,, +09/09/2021,7:34,,,40.75537,-73.98746,"(40.75537, -73.98746)",7 AVENUE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Following Too Closely,,,,4455395,Station Wagon/Sport Utility Vehicle,Bus,,, +09/02/2021,15:46,,,40.89091,-73.887215,"(40.89091, -73.887215)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456176,Sedan,Sedan,,, +09/08/2021,6:25,BRONX,10456,40.822487,-73.90827,"(40.822487, -73.90827)",,,854 EAGLE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455506,PK,Box Truck,,, +09/08/2021,9:32,BROOKLYN,11236,40.640373,-73.89702,"(40.640373, -73.89702)",ROCKAWAY PARKWAY,AVENUE K,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455009,Bike,,,, +09/10/2021,21:21,,,40.860764,-73.87195,"(40.860764, -73.87195)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455758,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,14:20,,,40.60927,-74.1513,"(40.60927, -74.1513)",VICTORY BOULEVARD,SOUTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455224,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,23:31,MANHATTAN,10034,40.867413,-73.92203,"(40.867413, -73.92203)",,,4915 BROADWAY,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4456106,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +09/10/2021,18:20,BROOKLYN,11209,40.61825,-74.02637,"(40.61825, -74.02637)",FORT HAMILTON PARKWAY,90 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455719,Station Wagon/Sport Utility Vehicle,Bike,,, +09/09/2021,7:20,,,40.631157,-74.14692,"(40.631157, -74.14692)",MORNINGSTAR ROAD,WALKER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455550,MTA BUS,Sedan,,, +09/09/2021,16:05,QUEENS,11411,40.698174,-73.739555,"(40.698174, -73.739555)",,,115-75 219 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455443,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,19:03,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",LORIMER STREET,MONTROSE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455098,Sedan,Bike,,, +09/08/2021,10:06,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,14:45,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455282,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,8:26,QUEENS,11375,40.7263,-73.843605,"(40.7263, -73.843605)",68 DRIVE,110 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455565,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,8:40,BROOKLYN,11220,40.637962,-74.01058,"(40.637962, -74.01058)",7 AVENUE,58 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455873,Station Wagon/Sport Utility Vehicle,,,, +09/03/2021,22:28,,,40.69149,-73.92557,"(40.69149, -73.92557)",BROADWAY,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4455792,Sedan,Bike,,, +08/15/2021,9:50,,,40.76177,-73.979065,"(40.76177, -73.979065)",AVENUE OF THE AMERICAS,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455587,Sedan,Bike,,, +09/09/2021,19:50,QUEENS,11372,40.756535,-73.876076,"(40.756535, -73.876076)",92 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:48,MANHATTAN,10009,40.72943,-73.978035,"(40.72943, -73.978035)",EAST 14 STREET,AVENUE B,,2,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4456032,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/08/2021,10:00,BROOKLYN,11206,40.69979,-73.950096,"(40.69979, -73.950096)",FLUSHING AVENUE,MARCY AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455000,Sedan,Bike,,, +09/08/2021,15:40,QUEENS,11419,40.689953,-73.818,"(40.689953, -73.818)",,,127-13 103 AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4455188,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:08,BRONX,10453,40.846577,-73.913155,"(40.846577, -73.913155)",JEROME AVENUE,CLIFFORD PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455234,Sedan,Sedan,,, +09/10/2021,12:30,STATEN ISLAND,10304,40.62417,-74.08091,"(40.62417, -74.08091)",,,180 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456085,Sedan,,,, +09/08/2021,16:50,BRONX,10457,40.84588,-73.904755,"(40.84588, -73.904755)",CLAY AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455925,Ambulance,Sedan,,, +09/08/2021,12:30,,,40.607258,-74.00265,"(40.607258, -74.00265)",18 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455026,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/08/2021,23:00,,,,,,WILLIAMSBURG BRIDGE INNER ROADWA,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4455134,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,21:40,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456278,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,11:32,MANHATTAN,10025,,,,west 106 street,manhattan avenue,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4455625,Sedan,Bike,,, +09/09/2021,6:30,,,40.72688,-73.83907,"(40.72688, -73.83907)",GRAND CENTRAL PARKWAY,69 ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455340,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,10:00,BROOKLYN,11205,40.692883,-73.95678,"(40.692883, -73.95678)",SKILLMAN STREET,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456155,Sedan,,,, +09/10/2021,18:00,BROOKLYN,11249,40.714046,-73.9616,"(40.714046, -73.9616)",,,304 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455724,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,7:30,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455642,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,15:10,,,40.752117,-73.96475,"(40.752117, -73.96475)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455380,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,7:30,,,40.671997,-73.87742,"(40.671997, -73.87742)",SUTTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,11:40,BRONX,10451,40.818047,-73.92246,"(40.818047, -73.92246)",EAST 150 STREET,MORRIS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455519,Sedan,,,, +09/08/2021,18:24,MANHATTAN,10025,40.793556,-73.967026,"(40.793556, -73.967026)",WEST 97 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455091,Station Wagon/Sport Utility Vehicle,Convertible,,, +09/03/2021,12:20,,,40.68576,-73.915504,"(40.68576, -73.915504)",BROADWAY,HALSEY STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455787,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,20:12,QUEENS,11378,40.7216,-73.912994,"(40.7216, -73.912994)",RUST STREET,57 DRIVE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4456220,Sedan,,,, +09/07/2021,2:50,,,40.69529,-73.94339,"(40.69529, -73.94339)",THROOP AVENUE,,,1,0,0,0,1,0,0,0,Unsafe Speed,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4456160,Bike,,,, +08/17/2021,17:44,,,,,,BUSHWICK AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,,,,,4455593,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,10:30,QUEENS,11101,40.743187,-73.941765,"(40.743187, -73.941765)",,,47-32 AUSTELL PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4455139,Sedan,Sedan,Box Truck,Tractor Truck Gasoline, +09/09/2021,6:08,BROOKLYN,11231,40.67602,-74.001236,"(40.67602, -74.001236)",HAMILTON AVENUE,CLINTON STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455480,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,14:29,BROOKLYN,11203,40.64957,-73.93887,"(40.64957, -73.93887)",SNYDER AVENUE,ALBANY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455835,Sedan,,,, +09/10/2021,16:27,BROOKLYN,11229,40.614788,-73.94658,"(40.614788, -73.94658)",KINGS HIGHWAY,EAST 28 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455741,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,17:40,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455680,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,15:15,MANHATTAN,10027,40.817406,-73.95704,"(40.817406, -73.95704)",,,3250 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4456124,Sedan,,,, +09/10/2021,16:41,,,40.88742,-73.89449,"(40.88742, -73.89449)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4456232,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,11:35,BROOKLYN,11235,40.588196,-73.95248,"(40.588196, -73.95248)",,,2546 EAST 17 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4455619,TRUCK,,,, +09/10/2021,13:15,,,40.83142,-73.92643,"(40.83142, -73.92643)",JEROME AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455651,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,8:03,BROOKLYN,11212,40.66384,-73.92166,"(40.66384, -73.92166)",BLAKE AVENUE,EAST 98 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455990,Sedan,,,, +09/09/2021,13:10,BROOKLYN,11203,40.64437,-73.93061,"(40.64437, -73.93061)",CLARENDON ROAD,EAST 49 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455861,Sedan,Sedan,,, +09/10/2021,18:00,BRONX,10455,40.81014,-73.908226,"(40.81014, -73.908226)",EAST 145 STREET,WALES AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4455709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,11:00,MANHATTAN,10023,40.774807,-73.98442,"(40.774807, -73.98442)",WEST 66 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455893,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +09/02/2021,10:20,,,40.85891,-73.922966,"(40.85891, -73.922966)",DYCKMAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455614,Tractor Truck Diesel,,,, +09/07/2021,12:01,MANHATTAN,10017,,,,EAST 44 STREET,LEXINGTON AVENUE,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4456148,Sedan,,,, +09/10/2021,0:25,QUEENS,11430,40.66528,-73.80604,"(40.66528, -73.80604)",134 STREET,149 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4455473,Station Wagon/Sport Utility Vehicle,Dump,,, +08/27/2021,19:48,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4456434,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/03/2021,16:35,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4453490,Pick-up Truck,Sedan,,, +09/09/2021,15:00,QUEENS,11385,40.710037,-73.90744,"(40.710037, -73.90744)",,,2118 GREENE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455424,Motorcycle,,,, +09/08/2021,18:20,MANHATTAN,10019,40.76177,-73.979065,"(40.76177, -73.979065)",WEST 53 STREET,AVENUE OF THE AMERICAS,,2,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4455335,E-Scooter,Bike,,, +09/07/2021,13:22,,,40.671474,-73.93088,"(40.671474, -73.93088)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455677,Sedan,,,, +09/09/2021,14:30,BROOKLYN,11206,40.70938,-73.9371,"(40.70938, -73.9371)",WATERBURY STREET,SCHOLES STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455954,Sedan,Box Truck,,, +09/10/2021,17:45,QUEENS,11104,40.739807,-73.92384,"(40.739807, -73.92384)",,,41-20 48 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455736,Sedan,,,, +09/03/2021,11:06,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",TIFFANY STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455879,Sedan,E-Bike,,, +09/10/2021,16:00,,,40.70362,-73.85628,"(40.70362, -73.85628)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456214,Sedan,Sedan,,, +09/08/2021,21:10,,,40.673008,-73.78809,"(40.673008, -73.78809)",ROCKAWAY BOULEVARD,SUTPHIN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455464,Sedan,,,, +09/08/2021,21:41,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455812,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:48,BROOKLYN,11206,40.708405,-73.9473,"(40.708405, -73.9473)",,,72 SCHOLES STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456345,Sedan,E-Bike,,, +09/03/2021,21:00,,,40.666233,-73.761,"(40.666233, -73.761)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4454219,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +09/08/2021,0:50,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455217,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,23:55,BROOKLYN,11230,40.629932,-73.966194,"(40.629932, -73.966194)",,,1150 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455776,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,23:40,,,40.744194,-73.97133,"(40.744194, -73.97133)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4455918,Sedan,,,, +09/10/2021,16:20,MANHATTAN,10030,40.819874,-73.94085,"(40.819874, -73.94085)",,,148 WEST 142 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456443,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,0:35,BRONX,10456,40.835297,-73.91291,"(40.835297, -73.91291)",EAST 169 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4455561,Taxi,Sedan,,, +09/08/2021,8:20,QUEENS,11422,40.665257,-73.739555,"(40.665257, -73.739555)",SOUTH CONDUIT AVENUE,BROOKVILLE BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4454910,Sedan,,,, +09/08/2021,13:48,MANHATTAN,10028,40.780537,-73.95906,"(40.780537, -73.95906)",,,1162 MADISON AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4455272,Taxi,,,, +09/09/2021,1:31,BROOKLYN,11226,40.64525,-73.94707,"(40.64525, -73.94707)",EAST 32 STREET,BEVERLEY ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455546,Sedan,E-Bike,,, +09/08/2021,14:50,MANHATTAN,10025,40.797916,-73.96385,"(40.797916, -73.96385)",WEST 104 STREET,COLUMBUS AVENUE,,2,0,1,0,0,0,0,0,Unspecified,,,,,4455067,E-Scooter,,,, +09/08/2021,10:00,BRONX,10454,40.80715,-73.90821,"(40.80715, -73.90821)",EAST 142 STREET,SOUTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455514,Sedan,,,, +09/08/2021,3:09,BRONX,10452,40.840424,-73.92239,"(40.840424, -73.92239)",WEST 170 STREET,SHAKESPEARE AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4455247,Sedan,,,, +08/30/2021,2:11,QUEENS,11412,40.69247,-73.75942,"(40.69247, -73.75942)",192 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455752,Sedan,,,, +09/08/2021,17:50,MANHATTAN,10032,40.84356,-73.938156,"(40.84356, -73.938156)",,,600 WEST 172 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455193,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,11:21,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456196,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/28/2021,22:41,BROOKLYN,11237,40.69889,-73.91753,"(40.69889, -73.91753)",MYRTLE AVENUE,BLEECKER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455771,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,9:06,BROOKLYN,11214,40.59977,-73.993675,"(40.59977, -73.993675)",,,72 BAY 32 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456026,Sedan,E-Scooter,,, +09/09/2021,10:00,,,,,,30 AVENUE,BROOKLYN QUEENS EXPRESSWAY W/B,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,4455578,Sedan,Sedan,Sedan,, +09/10/2021,16:27,,,40.73204,-73.87034,"(40.73204, -73.87034)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4455657,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,9:50,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",EAST GUN HILL ROAD,BRONX RIVER PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456470,Sedan,,,, +09/10/2021,13:45,QUEENS,11368,40.761765,-73.839874,"(40.761765, -73.839874)",,,129-02 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456169,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,5:00,QUEENS,11373,40.73877,-73.887886,"(40.73877, -73.887886)",,,76-09 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455153,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,18:00,BROOKLYN,11201,40.700768,-73.990944,"(40.700768, -73.990944)",CADMAN PLAZA WEST,PROSPECT STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4455478,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,10:11,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455629,Bus,Sedan,,, +09/08/2021,12:52,MANHATTAN,10022,40.758007,-73.96625,"(40.758007, -73.96625)",2 AVENUE,EAST 55 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455390,USPS,Box Truck,,, +09/09/2021,15:00,,,40.901726,-73.90604,"(40.901726, -73.90604)",RIVERDALE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456225,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,22:00,,,,,,EASTCHESTER ROAD,PELHAM PARKWAY SOUTH,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455646,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,10:00,BROOKLYN,11222,40.724583,-73.94831,"(40.724583, -73.94831)",,,130 NASSAU AVENUE,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455172,Station Wagon/Sport Utility Vehicle,Bike,,, +09/09/2021,13:30,QUEENS,11434,,,,belt parkway,150 street,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4455336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,13:20,,,40.835598,-73.9138,"(40.835598, -73.9138)",EAST 169 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455491,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,20:00,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456306,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,0:36,,,40.889137,-73.88885,"(40.889137, -73.88885)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4455109,Sedan,Sedan,,, +09/10/2021,21:45,BRONX,10454,40.80843,-73.92338,"(40.80843, -73.92338)",EAST 137 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455712,Sedan,Carry All,,, +09/10/2021,16:45,BROOKLYN,11214,40.60876,-74.00081,"(40.60876, -74.00081)",,,8306 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,15:45,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455283,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,11:30,QUEENS,11411,40.69061,-73.726265,"(40.69061, -73.726265)",LINDEN BOULEVARD,CITY LINE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455695,Station Wagon/Sport Utility Vehicle,Convertible,,, +09/10/2021,18:50,,,40.66061,-73.94262,"(40.66061, -73.94262)",KINGSTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inexperience,Unspecified,,,,4455842,Station Wagon/Sport Utility Vehicle,Bike,,, +08/13/2021,16:40,,,40.670887,-73.93649,"(40.670887, -73.93649)",TROY AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4456252,Sedan,,,, +09/03/2021,23:50,BROOKLYN,11215,40.67425,-73.982086,"(40.67425, -73.982086)",,,278B 5 AVENUE,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455866,E-Bike,,,, +05/17/2021,13:22,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4455634,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,Sedan, +09/07/2021,11:45,,,40.692146,-73.919464,"(40.692146, -73.919464)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455804,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,19:00,MANHATTAN,10022,40.758312,-73.96,"(40.758312, -73.96)",,,40 SUTTON PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455684,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,21:47,,,,,,Broadway,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455799,Sedan,,,, +09/10/2021,13:35,BRONX,10469,40.85993,-73.84308,"(40.85993, -73.84308)",,,2323 EASTCHESTER ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455647,Sedan,Sedan,,, +09/10/2021,8:51,QUEENS,11691,40.60063,-73.75059,"(40.60063, -73.75059)",EVERDELL AVENUE,GATEWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455748,Sedan,,,, +09/04/2021,22:30,QUEENS,11370,40.757977,-73.88297,"(40.757977, -73.88297)",85 STREET,32 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455854,Sedan,E-Bike,,, +08/19/2021,17:00,,,40.762383,-73.90344,"(40.762383, -73.90344)",BOROUGH PLACE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456428,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,8:15,,,40.81766,-73.93076,"(40.81766, -73.93076)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455705,Sedan,Sedan,,, +09/08/2021,12:11,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455318,Sedan,Sedan,,, +09/07/2021,7:38,,,40.77428,-73.97738,"(40.77428, -73.97738)",WEST 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455889,Flat Bed,Sedan,,, +09/08/2021,12:07,,,40.689137,-73.990715,"(40.689137, -73.990715)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4455138,Sedan,Sedan,,, +09/01/2021,12:55,BROOKLYN,11237,40.702362,-73.91291,"(40.702362, -73.91291)",SAINT NICHOLAS AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455784,Sedan,,,, +09/09/2021,6:30,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456141,Sedan,,,, +09/08/2021,21:30,BRONX,10460,40.83576,-73.891396,"(40.83576, -73.891396)",BOSTON ROAD,SUBURBAN PLACE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4455551,Bike,,,, +09/08/2021,7:30,,,40.700775,-73.91334,"(40.700775, -73.91334)",GROVE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455809,Sedan,Sedan,,, +02/02/2022,23:00,,,40.718353,-73.7654,"(40.718353, -73.7654)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500534,Sedan,Sedan,,, +09/10/2021,16:00,BRONX,10451,40.81572,-73.925064,"(40.81572, -73.925064)",EAST 144 STREET,RIDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456458,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/03/2021,7:56,BRONX,10474,40.812748,-73.89335,"(40.812748, -73.89335)",,,1169 EAST 156 STREET,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4455884,Tractor Truck Diesel,Sedan,,, +09/10/2021,17:54,,,40.829647,-73.94439,"(40.829647, -73.94439)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455673,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,12:35,QUEENS,11422,40.67546,-73.73385,"(40.67546, -73.73385)",LAURELTON PARKWAY,133 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455945,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,15:05,BROOKLYN,11237,40.704716,-73.92875,"(40.704716, -73.92875)",KNICKERBOCKER AVENUE,FLUSHING AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4455817,Sedan,Box Truck,,, +09/02/2021,2:07,,,40.85787,-73.93842,"(40.85787, -73.93842)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455615,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,5:52,,,40.80543,-73.92087,"(40.80543, -73.92087)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456456,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,11:00,BRONX,10456,40.82839,-73.916916,"(40.82839, -73.916916)",MORRIS AVENUE,EAST 164 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4455251,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,8:45,,,40.6772,-73.94147,"(40.6772, -73.94147)",,,PACIFIC STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456273,Sedan,Sedan,,, +09/09/2021,8:40,BROOKLYN,11212,40.666077,-73.90672,"(40.666077, -73.90672)",,,337 BLAKE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455911,Flat Bed,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,9:15,,,40.73181,-73.866646,"(40.73181, -73.866646)",QUEENS BOULEVARD,62 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4454960,Bike,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,16:40,BROOKLYN,11223,40.5946,-73.96681,"(40.5946, -73.96681)",,,440 GRAVESEND NECK ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455177,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,20:28,BRONX,10461,40.84592,-73.831566,"(40.84592, -73.831566)",,,1731 CROSBY AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456493,E-Scooter,,,, +08/28/2021,17:15,BRONX,10459,40.82097,-73.89242,"(40.82097, -73.89242)",,,1018 EAST 163 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455727,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,16:30,,,40.726536,-73.9544,"(40.726536, -73.9544)",MESEROLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455045,Station Wagon/Sport Utility Vehicle,BOX TRUCK,,, +09/02/2021,9:10,,,40.729794,-73.98866,"(40.729794, -73.98866)",STUYVESANT STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,,,,,4456020,Sedan,,,, +09/04/2021,5:27,BRONX,10469,40.87226,-73.8428,"(40.87226, -73.8428)",,,3148 MICKLE AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4455529,Sedan,,,, +09/03/2021,19:20,,,,,,,,105-180 171 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455661,Sedan,,,, +09/10/2021,11:57,QUEENS,11691,40.60232,-73.759,"(40.60232, -73.759)",CORNAGA AVENUE,BEACH CHANNEL DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455766,Sedan,Motorscooter,,, +09/08/2021,21:32,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455183,E-Bike,Sedan,,, +09/08/2021,16:13,,,,,,,,380. 88 STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4455102,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,20:26,BROOKLYN,11223,40.597477,-73.96871,"(40.597477, -73.96871)",EAST 3 STREET,AVENUE U,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455176,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,12:17,,,40.830738,-73.9105,"(40.830738, -73.9105)",EAST 167 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455495,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,11:32,STATEN ISLAND,10305,40.609592,-74.06953,"(40.609592, -74.06953)",,,685 TOMPKINS AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455352,Sedan,Sedan,,, +09/09/2021,1:45,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455148,Sedan,Sedan,,, +09/09/2021,6:42,QUEENS,11385,40.701527,-73.89482,"(40.701527, -73.89482)",,,71-27 FRESH POND ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455364,Sedan,,,, +08/24/2021,9:00,BROOKLYN,11233,40.676014,-73.90511,"(40.676014, -73.90511)",,,2402 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456044,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,6:39,BROOKLYN,11223,40.606907,-73.9705,"(40.606907, -73.9705)",QUENTIN ROAD,EAST 3 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454865,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:35,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4456311,Sedan,Sedan,,, +09/09/2021,10:41,QUEENS,11355,40.75763,-73.82799,"(40.75763, -73.82799)",BARCLAY AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455402,Van,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,5:00,,,40.701103,-73.92239,"(40.701103, -73.92239)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455795,Sedan,Sedan,,, +09/07/2021,14:00,BRONX,10455,40.81846,-73.91489,"(40.81846, -73.91489)",EAST 153 STREET,ELTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455518,Sedan,Bike,,, +09/09/2021,12:31,BROOKLYN,11232,40.647068,-73.993935,"(40.647068, -73.993935)",37 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,6:20,,,40.747147,-73.77754,"(40.747147, -73.77754)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455298,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,17:06,BROOKLYN,11236,40.646664,-73.89997,"(40.646664, -73.89997)",GLENWOOD ROAD,EAST 100 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4455666,Sedan,,,, +09/10/2021,1:20,,,40.710243,-73.9584,"(40.710243, -73.9584)",HAVEMEYER STREET,SOUTH 4 STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4455457,Bike,,,, +09/09/2021,17:38,BROOKLYN,11208,40.67616,-73.86446,"(40.67616, -73.86446)",,,581 ELDERTS LANE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4456287,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,16:50,,,40.738773,-73.80846,"(40.738773, -73.80846)",HORACE HARDING EXPRESSWAY,160 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455699,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/31/2021,14:16,MANHATTAN,10024,40.78517,-73.973145,"(40.78517, -73.973145)",WEST 84 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4455821,Station Wagon/Sport Utility Vehicle,Box Truck,Sedan,, +09/05/2021,2:40,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4456003,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,0:37,,,40.697075,-73.93185,"(40.697075, -73.93185)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455556,Sedan,Moped,,, +09/03/2021,17:50,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455716,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,7:39,MANHATTAN,10003,40.73416,-73.98863,"(40.73416, -73.98863)",,,4 IRVING PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455848,Flat Bed,,,, +09/10/2021,16:09,BROOKLYN,11236,40.637264,-73.908966,"(40.637264, -73.908966)",,,930 EAST 85 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455688,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,19:17,BROOKLYN,11233,40.676342,-73.910934,"(40.676342, -73.910934)",ROCKAWAY AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456359,Sedan,,,, +09/10/2021,1:40,BROOKLYN,11214,40.602173,-73.99359,"(40.602173, -73.99359)",,,8566 BAY PARKWAY,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4456011,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,14:20,STATEN ISLAND,10314,40.61324,-74.12045,"(40.61324, -74.12045)",VICTORY BOULEVARD,BEECHWOOD PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4456050,Sedan,,,, +09/10/2021,18:40,BROOKLYN,11223,40.607323,-73.97271,"(40.607323, -73.97271)",,,1869 MC DONALD AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4455744,Box Truck,Station Wagon/Sport Utility Vehicle,,, +05/18/2021,0:21,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,8:30,,,40.665836,-73.75739,"(40.665836, -73.75739)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,,4455905,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/01/2021,3:40,BROOKLYN,11203,40.659603,-73.92929,"(40.659603, -73.92929)",,,48 EAST 52 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4456231,Sedan,Sedan,Sedan,Sedan,Sedan +09/07/2021,14:00,BROOKLYN,11207,40.666813,-73.886,"(40.666813, -73.886)",,,637 BARBEY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456292,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,15:10,,,40.78944,-73.82045,"(40.78944, -73.82045)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456267,Van,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,17:00,QUEENS,11413,40.67991,-73.752,"(40.67991, -73.752)",,,216-19 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455444,Sedan,Sedan,,, +09/07/2021,15:39,,,40.802757,-73.93026,"(40.802757, -73.93026)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455570,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,1:42,QUEENS,11375,40.724308,-73.842575,"(40.724308, -73.842575)",JEWEL AVENUE,110 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456423,Pick-up Truck,,,, +09/04/2021,2:02,,,40.606888,-73.99589,"(40.606888, -73.99589)",20 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4455974,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,17:06,BROOKLYN,11226,40.64803,-73.966675,"(40.64803, -73.966675)",RUGBY ROAD,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455779,Station Wagon/Sport Utility Vehicle,Bike,,, +09/09/2021,18:15,MANHATTAN,10029,40.799286,-73.945366,"(40.799286, -73.945366)",EAST 115 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455583,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/05/2021,11:28,MANHATTAN,10031,,,,WEST 153 STREET,RIVERSIDE DRIVE,,1,0,1,0,0,0,0,0,,,,,,4455671,,,,, +09/07/2021,17:59,QUEENS,11377,40.75708,-73.90648,"(40.75708, -73.90648)",55 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455588,Sedan,E-Bike,,, +09/06/2021,20:35,,,40.862312,-73.929436,"(40.862312, -73.929436)",SHERMAN AVENUE,BROADWAY,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4456110,Sedan,Bike,,, +09/08/2021,15:12,,,40.85179,-73.90279,"(40.85179, -73.90279)",ANTHONY AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455238,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,12:55,BROOKLYN,11201,,,,FLATBUSH AVENUE EXTENSION,LAFAYETTE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455025,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,13:41,BROOKLYN,11223,40.605675,-73.966965,"(40.605675, -73.966965)",OCEAN PARKWAY,KINGS HIGHWAY,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455027,Sedan,E-Bike,,, +09/08/2021,0:43,BRONX,10457,40.848133,-73.88885,"(40.848133, -73.88885)",EAST 180 STREET,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455204,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,15:00,,,40.781506,-73.816956,"(40.781506, -73.816956)",149 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455400,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,15:20,,,40.742035,-73.86604,"(40.742035, -73.86604)",50 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455053,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/13/2021,11:33,BRONX,10463,40.87802,-73.90241,"(40.87802, -73.90241)",WEST 231 STREET,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456168,Bus,Sedan,,, +09/08/2021,22:00,,,40.583355,-74.14962,"(40.583355, -74.14962)",FOREST HILL ROAD,LEASON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455226,Sedan,Sedan,,, +08/23/2021,1:00,,,40.756058,-73.94283,"(40.756058, -73.94283)",40 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455963,Sedan,,,, +09/09/2021,15:05,QUEENS,11692,40.59296,-73.79418,"(40.59296, -73.79418)",BEACH CHANNEL DRIVE,BEACH 65 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,10:40,BROOKLYN,11215,40.66479,-73.98599,"(40.66479, -73.98599)",,,324 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455089,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/10/2021,19:12,BROOKLYN,11238,40.6864,-73.9685,"(40.6864, -73.9685)",GREENE AVENUE,VANDERBILT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455731,Sedan,Sedan,,, +09/09/2021,0:23,BROOKLYN,11236,40.639507,-73.90386,"(40.639507, -73.90386)",,,1236 EAST 91 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:45,,,40.65431,-74.004425,"(40.65431, -74.004425)",4 AVENUE,,,2,0,1,0,0,0,0,0,Unspecified,,,,,4455869,E-Scooter,,,, +09/09/2021,17:33,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4455442,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,8:50,,,40.61312,-73.9894,"(40.61312, -73.9894)",20 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4454992,Sedan,,,, +09/10/2021,1:00,MANHATTAN,10029,40.792812,-73.937744,"(40.792812, -73.937744)",EAST 111 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4455602,Sedan,Sedan,,, +09/08/2021,6:43,MANHATTAN,10032,,,,,,1920 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4455205,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,19:00,BRONX,10462,40.8566,-73.86849,"(40.8566, -73.86849)",,,626 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4455533,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/10/2021,20:01,QUEENS,11356,40.776638,-73.84531,"(40.776638, -73.84531)",123 STREET,25 AVENUE,,0,0,0,0,0,0,0,0,Texting,Unspecified,Unspecified,,,4455932,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +08/28/2021,5:00,QUEENS,11369,40.75846,-73.87833,"(40.75846, -73.87833)",90 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455761,Sedan,,,, +09/10/2021,9:33,BROOKLYN,11229,40.599144,-73.95356,"(40.599144, -73.95356)",AVENUE U,EAST 18 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455742,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/04/2021,23:00,MANHATTAN,10027,40.819252,-73.955086,"(40.819252, -73.955086)",,,95 OLD BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,20:42,BROOKLYN,11236,40.637676,-73.8925,"(40.637676, -73.8925)",AVENUE M,EAST 98 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455720,Sedan,,,, +08/28/2021,16:00,BROOKLYN,11201,40.69977,-73.98294,"(40.69977, -73.98294)",GOLD STREET,SANDS STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456259,Box Truck,E-Bike,,, +09/04/2021,18:55,QUEENS,11101,40.754078,-73.9326,"(40.754078, -73.9326)",,,30-16 38 AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456436,Sedan,LIMO,Station Wagon/Sport Utility Vehicle,, +09/08/2021,8:00,MANHATTAN,10027,40.809692,-73.94409,"(40.809692, -73.94409)",WEST 128 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455254,Station Wagon/Sport Utility Vehicle,Bike,,, +08/31/2021,9:30,BROOKLYN,11207,40.685368,-73.9109,"(40.685368, -73.9109)",BUSHWICK AVENUE,DECATUR STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4455581,Station Wagon/Sport Utility Vehicle,Bike,,, +09/10/2021,19:30,BROOKLYN,11233,40.67413,-73.913925,"(40.67413, -73.913925)",BOYLAND STREET,BERGEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455874,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,8:40,BROOKLYN,11207,40.677937,-73.89543,"(40.677937, -73.89543)",,,93 VERMONT STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455281,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,4:37,BRONX,10452,40.840225,-73.91769,"(40.840225, -73.91769)",JEROME AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4455560,Sedan,Sedan,,, +09/06/2021,5:55,BROOKLYN,11238,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,CLASSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455931,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,7:33,BROOKLYN,11233,,,,PATCHEN AVENUE,MACON STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455001,Sedan,Box Truck,,, +09/08/2021,0:50,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Reaction to Uninvolved Vehicle,,,,4455052,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,8:00,,,40.69603,-73.943535,"(40.69603, -73.943535)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456150,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/07/2021,22:30,BRONX,10465,40.814724,-73.822044,"(40.814724, -73.822044)",HARDING AVENUE,BALCOM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456010,Sedan,Sedan,,, +09/09/2021,16:00,BROOKLYN,11225,40.66618,-73.94902,"(40.66618, -73.94902)",,,330 CROWN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455425,Sedan,,,, +08/23/2021,18:50,,,40.68442,-73.97839,"(40.68442, -73.97839)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455958,Station Wagon/Sport Utility Vehicle,Bus,,, +09/05/2021,16:24,QUEENS,11385,40.697346,-73.89081,"(40.697346, -73.89081)",78 AVENUE,64 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4456215,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:09,,,40.864807,-73.91937,"(40.864807, -73.91937)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,9:00,QUEENS,11377,40.739094,-73.91762,"(40.739094, -73.91762)",48 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455735,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,14:50,BRONX,10474,40.815212,-73.88181,"(40.815212, -73.88181)",SPOFFORD AVENUE,HALLECK STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,12:20,QUEENS,11101,40.751045,-73.946465,"(40.751045, -73.946465)",43 AVENUE,13 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455737,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,16:08,,,40.758255,-73.7772,"(40.758255, -73.7772)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4455432,Station Wagon/Sport Utility Vehicle,Carry All,,, +09/08/2021,19:17,BROOKLYN,11235,40.588886,-73.965645,"(40.588886, -73.965645)",AVENUE Y,OCEAN PARKWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4456385,Sedan,Moped,,, +09/08/2021,7:45,BROOKLYN,11203,,,,FOSTER AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455080,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,6:30,,,40.78614,-73.93929,"(40.78614, -73.93929)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,12:46,QUEENS,11693,40.584885,-73.81896,"(40.584885, -73.81896)",,,97-06 ROCKAWAY BEACH BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455420,Bus,Sedan,,, +09/09/2021,10:15,STATEN ISLAND,10307,40.50483,-74.241646,"(40.50483, -74.241646)",HYLAN BOULEVARD,YETMAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455295,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,13:00,,,40.709675,-73.82003,"(40.709675, -73.82003)",QUEENS BOULEVARD,MAIN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455703,Sedan,Box Truck,,, +09/09/2021,17:30,MANHATTAN,10036,40.757828,-73.99308,"(40.757828, -73.99308)",9 AVENUE,WEST 41 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455394,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/08/2021,12:45,,,40.738575,-73.845345,"(40.738575, -73.845345)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455008,Sedan,Sedan,,, +09/02/2021,11:56,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Passenger Distraction,,,,4455571,Tractor Truck Diesel,Taxi,,, +09/07/2021,13:49,BROOKLYN,11206,40.701763,-73.9276,"(40.701763, -73.9276)",WILSON AVENUE,TROUTMAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455803,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,18:20,BROOKLYN,11209,40.630093,-74.02241,"(40.630093, -74.02241)",,,7418 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455099,Motorcycle,,,, +09/09/2021,11:18,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",EAST 161 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455549,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,8:36,QUEENS,11412,40.6957,-73.75674,"(40.6957, -73.75674)",196 STREET,115 DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4454941,Sedan,,,, +09/10/2021,9:45,,,40.739574,-73.79167,"(40.739574, -73.79167)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4455603,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,12:00,BROOKLYN,11207,40.661972,-73.89814,"(40.661972, -73.89814)",,,523 HINSDALE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456309,Sedan,,,, +09/08/2021,20:30,BROOKLYN,11203,40.653233,-73.93054,"(40.653233, -73.93054)",,,809 UTICA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4455540,Sedan,,,, +09/08/2021,15:10,BRONX,10475,40.88321,-73.827934,"(40.88321, -73.827934)",,,2267 NEW ENGLAND THRUWAY,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4455069,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,22:36,,,40.78356,-73.82449,"(40.78356, -73.82449)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455730,Sedan,Sedan,Sedan,, +09/10/2021,0:35,,,40.763573,-73.92189,"(40.763573, -73.92189)",33 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455459,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,0:20,BROOKLYN,11221,40.693874,-73.91777,"(40.693874, -73.91777)",CENTRAL AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4455772,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/08/2021,23:04,MANHATTAN,10003,40.732803,-73.98606,"(40.732803, -73.98606)",,,250 EAST 14 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4456030,Bus,Bike,,, +09/08/2021,17:38,BROOKLYN,11226,40.6442,-73.96595,"(40.6442, -73.96595)",BEVERLEY ROAD,RUGBY ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455196,Sedan,Sedan,,, +09/01/2021,17:05,,,40.784355,-73.98117,"(40.784355, -73.98117)",WEST 79 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4455898,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/10/2021,14:00,,,40.71123,-73.85575,"(40.71123, -73.85575)",69 AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,9:10,,,40.665268,-73.827705,"(40.665268, -73.827705)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,12:16,BROOKLYN,11206,40.701077,-73.94043,"(40.701077, -73.94043)",FLUSHING AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455624,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/09/2021,22:50,,,,,,QUEENSBORO BRIDGE LOWER ROADWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4455486,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +09/09/2021,0:00,BROOKLYN,11233,40.67582,-73.930466,"(40.67582, -73.930466)",DEAN STREET,UTICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455351,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,15:20,BROOKLYN,11207,40.670578,-73.89582,"(40.670578, -73.89582)",,,380 BELMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456285,Station Wagon/Sport Utility Vehicle,Taxi,,, +09/09/2021,12:45,BROOKLYN,11219,40.638172,-73.98526,"(40.638172, -73.98526)",14 AVENUE,41 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456062,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/08/2021,10:30,BROOKLYN,11207,40.656105,-73.8968,"(40.656105, -73.8968)",,,359 DE WITT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455262,Station Wagon/Sport Utility Vehicle,,,, +07/31/2021,16:55,,,40.81322,-73.897835,"(40.81322, -73.897835)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455887,Sedan,,,, +09/10/2021,15:12,MANHATTAN,10032,40.84107,-73.93605,"(40.84107, -73.93605)",AMSTERDAM AVENUE,WEST 170 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4456343,Bike,,,, +09/08/2021,14:20,,,40.804585,-73.91213,"(40.804585, -73.91213)",EAST 138 STREET,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455507,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,13:00,QUEENS,11432,40.715202,-73.801575,"(40.715202, -73.801575)",164 PLACE,84 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455698,Sedan,Sedan,,, +09/08/2021,18:07,BROOKLYN,11212,40.658394,-73.90464,"(40.658394, -73.90464)",,,240 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455121,Sedan,Sedan,,, +09/08/2021,16:20,QUEENS,11373,40.74622,-73.86863,"(40.74622, -73.86863)",,,95-35 42 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455220,Sedan,,,, +09/09/2021,18:30,BROOKLYN,11215,40.67321,-73.99288,"(40.67321, -73.99288)",2 AVENUE,8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455846,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,21:00,BROOKLYN,11214,40.583656,-73.98656,"(40.583656, -73.98656)",CROPSEY AVENUE,BAY 52 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456000,Sedan,Sedan,,, +09/03/2021,17:09,MANHATTAN,10039,40.821,-73.93755,"(40.821, -73.93755)",,,145 WEST 145 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456442,Sedan,,,, +09/10/2021,19:43,BRONX,10469,40.8726,-73.85455,"(40.8726, -73.85455)",YATES AVENUE,BOSTON ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4455764,Motorcycle,,,, +09/08/2021,16:25,BROOKLYN,11207,40.66649,-73.89645,"(40.66649, -73.89645)",,,390 GEORGIA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455271,Sedan,Box Truck,,, +09/01/2021,22:00,BROOKLYN,11211,,,,,,301 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456251,Sedan,,,, +09/09/2021,20:30,,,40.605335,-73.75528,"(40.605335, -73.75528)",BEACH CHANNEL DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4455564,Sedan,Sedan,,, +09/09/2021,4:49,BROOKLYN,11209,40.616535,-74.03093,"(40.616535, -74.03093)",,,9412 4 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455250,Sedan,Pick-up Truck,,, +09/05/2021,4:00,MANHATTAN,10027,40.81636,-73.954094,"(40.81636, -73.954094)",WEST 131 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456125,Sedan,,,, +09/08/2021,14:05,MANHATTAN,10021,40.76703,-73.95658,"(40.76703, -73.95658)",,,1321 1 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455160,,,,, +09/02/2021,9:00,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,Other Vehicular,,,,4455857,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,8:16,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4455329,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,6:35,QUEENS,11373,40.74572,-73.88916,"(40.74572, -73.88916)",,,76-13 BROADWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4455411,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,8:00,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4456027,Sedan,Sedan,,, +09/08/2021,22:14,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455577,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,12:34,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455113,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,11:57,MANHATTAN,10029,40.792187,-73.9382,"(40.792187, -73.9382)",EAST 110 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455937,Bus,,,, +09/09/2021,15:56,MANHATTAN,10032,,,,,,662 WEST 173 STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4455535,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,3:32,,,40.830437,-73.83748,"(40.830437, -73.83748)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456471,Tractor Truck Gasoline,,,, +09/10/2021,17:50,,,40.89163,-73.85184,"(40.89163, -73.85184)",BRONXWOOD AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Driver Inexperience,,,,4456484,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,16:20,,,40.738773,-73.80846,"(40.738773, -73.80846)",HORACE HARDING EXPRESSWAY,160 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,12:42,BRONX,10454,40.80911,-73.922874,"(40.80911, -73.922874)",,,371 EAST 138 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455520,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,8:55,,,40.665836,-73.75739,"(40.665836, -73.75739)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455609,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,10:00,QUEENS,11365,40.742348,-73.788445,"(40.742348, -73.788445)",58 AVENUE,187 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455725,Sedan,Sedan,,, +09/08/2021,2:25,MANHATTAN,10002,40.71443,-73.99722,"(40.71443, -73.99722)",,,7 BOWERY,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4454904,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,12:00,QUEENS,11369,40.768047,-73.86712,"(40.768047, -73.86712)",,,102-40 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455366,Sedan,,,, +09/08/2021,11:30,MANHATTAN,10128,40.785866,-73.950935,"(40.785866, -73.950935)",EAST 96 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4455938,Sedan,Sedan,Sedan,, +09/09/2021,8:15,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4455465,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,20:38,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455667,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,19:15,QUEENS,11385,40.700005,-73.90296,"(40.700005, -73.90296)",SENECA AVENUE,WEIRFIELD STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4456221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,11:15,,,40.65484,-73.9597,"(40.65484, -73.9597)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4455041,Bike,,,, +09/08/2021,15:54,BROOKLYN,11207,40.68366,-73.90788,"(40.68366, -73.90788)",BUSHWICK AVENUE,PILLING STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4455811,Flat Bed,Sedan,Station Wagon/Sport Utility Vehicle,, +09/07/2021,18:19,QUEENS,11103,40.758224,-73.91741,"(40.758224, -73.91741)",42 STREET,BROADWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455592,Station Wagon/Sport Utility Vehicle,Bike,,, +09/08/2021,8:40,QUEENS,11104,40.748817,-73.91282,"(40.748817, -73.91282)",51 STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455140,Sedan,,,, +09/10/2021,7:41,BROOKLYN,11226,40.642727,-73.95718,"(40.642727, -73.95718)",,,2175 CLARENDON ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4455777,Sedan,,,, +09/09/2021,20:03,BROOKLYN,11207,40.68771,-73.91329,"(40.68771, -73.91329)",,,1049 HALSEY STREET,1,0,0,0,0,0,1,0,Other Vehicular,Aggressive Driving/Road Rage,Unspecified,Unspecified,,4455449,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Van, +09/09/2021,1:58,QUEENS,11373,40.745834,-73.880295,"(40.745834, -73.880295)",BRITTON AVENUE,HAMPTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455408,Sedan,,,, +09/09/2021,10:15,,,40.75455,-73.74317,"(40.75455, -73.74317)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455305,Sedan,Sedan,,, +09/10/2021,17:35,BRONX,10462,40.853622,-73.86059,"(40.853622, -73.86059)",COLDEN AVENUE,LYDIG AVENUE,,1,0,0,0,1,0,0,0,Brakes Defective,Unspecified,,,,4455759,Sedan,Bike,,, +09/01/2021,10:05,BRONX,10463,40.877354,-73.910614,"(40.877354, -73.910614)",WEST 227 STREET,ADRIAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4456177,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/10/2021,20:30,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456233,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,17:00,,,40.78009,-73.9194,"(40.78009, -73.9194)",19 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455635,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,14:08,BROOKLYN,11204,40.62451,-73.98831,"(40.62451, -73.98831)",58 STREET,17 AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4456070,Sedan,Bike,,, +09/08/2021,0:02,BROOKLYN,11210,40.638546,-73.94924,"(40.638546, -73.94924)",EAST 29 STREET,FOSTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4455545,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,0:15,,,,,,WAVERLY PL,WAVERLY PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455652,Sedan,,,, +09/04/2021,0:02,BROOKLYN,11207,40.680035,-73.9055,"(40.680035, -73.9055)",EASTERN PARKWAY,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455793,Sedan,Sedan,,, +09/09/2021,17:00,BROOKLYN,11214,40.60492,-73.98704,"(40.60492, -73.98704)",,,7823 23 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455994,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,14:15,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4455498,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/09/2021,9:38,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4456171,Taxi,Van,,, +09/09/2021,5:27,,,40.808163,-73.92653,"(40.808163, -73.92653)",ALEXANDER AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4455525,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,20:00,BRONX,10455,40.80993,-73.90725,"(40.80993, -73.90725)",EAST 145 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4455710,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,11:40,QUEENS,11354,40.762848,-73.815025,"(40.762848, -73.815025)",BARTON AVENUE,149 PLACE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4455693,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,9:35,,,40.6216,-74.11154,"(40.6216, -74.11154)",CLOVE ROAD,CLOVE WAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456086,Sedan,Sedan,,, +09/09/2021,1:47,,,40.684383,-73.823265,"(40.684383, -73.823265)",LEFFERTS BOULEVARD,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,,,4455146,Sedan,Sedan,Sedan,, +09/10/2021,13:07,QUEENS,11434,40.666477,-73.808136,"(40.666477, -73.808136)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4455770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/09/2021,23:53,,,,,,NASSAU EXPRESSWAY,,,4,0,0,0,0,0,4,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4455472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,21:30,QUEENS,11412,40.692154,-73.74957,"(40.692154, -73.74957)",119 AVENUE,201 PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455753,Sedan,PK,,, +09/08/2021,14:20,BRONX,10458,40.856323,-73.883896,"(40.856323, -73.883896)",EAST 189 STREET,CAMBRELENG AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455192,Sedan,Taxi,,, +09/10/2021,5:55,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456056,Sedan,Pick-up Truck,,, +09/08/2021,20:15,STATEN ISLAND,10312,40.541153,-74.16696,"(40.541153, -74.16696)",AMBOY ROAD,BAMBERGER LANE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Unspecified,,,,4455319,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,14:11,,,40.752888,-73.96374,"(40.752888, -73.96374)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455919,Sedan,Sedan,,, +08/31/2021,22:07,,,40.68836,-73.91615,"(40.68836, -73.91615)",BUSHWICK AVENUE,,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4455783,Sedan,,,, +09/08/2021,9:13,BRONX,10456,40.83019,-73.90153,"(40.83019, -73.90153)",,,1234 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455133,Ambulance,Ambulance,,, +09/08/2021,11:04,,,40.896122,-73.908005,"(40.896122, -73.908005)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4455641,Van Camper,,,, +09/04/2021,23:30,,,40.68218,-73.94659,"(40.68218, -73.94659)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456156,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,16:20,BRONX,10474,40.808903,-73.894875,"(40.808903, -73.894875)",OAK POINT AVENUE,BARRY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455882,Sedan,,,, +09/09/2021,14:37,,,40.676243,-73.95269,"(40.676243, -73.95269)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455678,Sedan,Sedan,,, +09/08/2021,20:50,BROOKLYN,11206,40.703854,-73.95128,"(40.703854, -73.95128)",HARRISON AVENUE,LYNCH STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4455092,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,20:30,BRONX,10462,40.83496,-73.854,"(40.83496, -73.854)",,,1351 ODELL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455358,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,15:25,,,,,,HUTCHINSON RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4455379,Sedan,Sedan,,, +09/06/2021,23:17,,,40.668373,-73.92264,"(40.668373, -73.92264)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4456241,Station Wagon/Sport Utility Vehicle,Bus,,, +09/10/2021,17:31,BROOKLYN,11204,40.630283,-73.97816,"(40.630283, -73.97816)",DAHILL ROAD,18 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4456418,Bike,Moped,,, +09/03/2021,12:14,BROOKLYN,11237,40.69426,-73.91036,"(40.69426, -73.91036)",JEFFERSON AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455788,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,18:48,BROOKLYN,11207,40.659275,-73.889,"(40.659275, -73.889)",LINDEN BOULEVARD,VERMONT STREET,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4456277,Sedan,Sedan,,, +08/30/2021,20:50,MANHATTAN,10003,40.724903,-73.99233,"(40.724903, -73.99233)",BOWERY,EAST 1 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4456007,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,17:53,BROOKLYN,11206,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,VERNON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456332,Sedan,,,, +09/10/2021,3:30,BROOKLYN,11203,40.64043,-73.9246,"(40.64043, -73.9246)",,,5525 WHITTY LANE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455838,Sedan,,,, +09/08/2021,11:56,,,40.68587,-73.76349,"(40.68587, -73.76349)",180 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,Other Vehicular,,,4455216,Station Wagon/Sport Utility Vehicle,Chassis Cab,Sedan,, +09/08/2021,17:10,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455288,Sedan,Sedan,,, +09/08/2021,17:30,QUEENS,11373,40.7452,-73.88426,"(40.7452, -73.88426)",KETCHAM STREET,BAXTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455152,Sedan,Sedan,,, +09/09/2021,20:45,MANHATTAN,10013,40.722725,-74.00654,"(40.722725, -74.00654)",,,431 CANAL STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4455481,Sedan,Box Truck,Box Truck,, +09/03/2021,7:33,,,40.768406,-73.98205,"(40.768406, -73.98205)",COLUMBUS CIRCLE,BROADWAY,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4455620,Sedan,,,, +09/07/2021,4:00,BROOKLYN,11208,40.680016,-73.87743,"(40.680016, -73.87743)",LOGAN STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456305,Station Wagon/Sport Utility Vehicle,Sedan,,, +08/27/2021,10:10,MANHATTAN,10023,40.771667,-73.9867,"(40.771667, -73.9867)",WEST 61 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4456274,Sedan,,,, +09/10/2021,12:00,BROOKLYN,11215,40.670708,-73.98599,"(40.670708, -73.98599)",,,308 7 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455865,Sedan,,,, +09/09/2021,14:00,BROOKLYN,11216,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Traffic Control Disregarded,,,,4455679,Bus,Sedan,,, +09/01/2021,19:00,BRONX,10451,40.817738,-73.924164,"(40.817738, -73.924164)",,,234 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4456453,Pick-up Truck,,,, +09/08/2021,0:40,,,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455178,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,10:30,BRONX,10458,40.85713,-73.89112,"(40.85713, -73.89112)",,,4643 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inexperience,,,,4455557,Sedan,Motorbike,,, +09/09/2021,14:00,BRONX,10458,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,MARION AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456396,Station Wagon/Sport Utility Vehicle,Bus,,, +02/02/2022,12:00,QUEENS,11373,40.738373,-73.88826,"(40.738373, -73.88826)",,,50-001 KNEELAND STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500060,Sedan,,,, +09/08/2021,21:04,BROOKLYN,11231,40.683044,-74.00366,"(40.683044, -74.00366)",COLUMBIA STREET,CARROLL STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4456115,Bike,,,, +09/10/2021,12:55,BROOKLYN,11238,40.6864,-73.9685,"(40.6864, -73.9685)",VANDERBILT AVENUE,GREENE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455798,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/09/2021,21:30,BROOKLYN,11212,40.664097,-73.90932,"(40.664097, -73.90932)",ROCKAWAY AVENUE,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455875,Bus,Sedan,,, +09/09/2021,15:40,,,,,,35 AVENUE,CLEARVIEW EXPRESSWAY,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455416,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/08/2021,8:50,BRONX,10471,40.895256,-73.91563,"(40.895256, -73.91563)",PALISADE AVENUE,WEST 247 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456195,Box Truck,,,, +09/04/2021,8:30,MANHATTAN,10009,40.72498,-73.97724,"(40.72498, -73.97724)",,,713 EAST 9 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456021,Sedan,Sedan,,, +09/08/2021,9:25,,,40.75747,-73.902794,"(40.75747, -73.902794)",60 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455613,,,,, +09/09/2021,10:10,BRONX,10471,,,,,,4499 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4456224,Sedan,,,, +09/08/2021,8:15,QUEENS,11375,40.71047,-73.85092,"(40.71047, -73.85092)",METROPOLITAN AVENUE,71 AVENUE,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4455334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/23/2021,23:57,BROOKLYN,11221,40.697075,-73.93185,"(40.697075, -73.93185)",WILLOUGHBY AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455769,Dump,,,, +09/09/2021,12:58,BRONX,10457,40.840244,-73.901886,"(40.840244, -73.901886)",WASHINGTON AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455552,Taxi,Moped,,, +09/03/2021,13:35,BROOKLYN,11231,40.676796,-74.01356,"(40.676796, -74.01356)",VAN BRUNT STREET,DIKEMAN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456459,Sedan,Tractor Truck Gasoline,,, +09/09/2021,11:10,BROOKLYN,11215,40.666134,-73.99224,"(40.666134, -73.99224)",4 AVENUE,16 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455452,Pick-up Truck,Bike,,, +09/08/2021,16:15,BROOKLYN,11212,40.666306,-73.905106,"(40.666306, -73.905106)",,,350 BLAKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455185,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,6:30,,,40.74648,-73.7589,"(40.74648, -73.7589)",218 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455721,Sedan,,,, +09/10/2021,9:01,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456490,Sedan,Tractor Truck Diesel,,, +09/09/2021,19:40,QUEENS,11413,40.666405,-73.74538,"(40.666405, -73.74538)",NORTH CONDUIT AVENUE,230 PLACE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455445,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,14:12,,,40.67973,-73.76162,"(40.67973, -73.76162)",MERRICK BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455337,Sedan,,,, +09/08/2021,1:30,QUEENS,11434,40.678364,-73.77949,"(40.678364, -73.77949)",BAISLEY BOULEVARD,BREWER BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4454882,,,,, +09/09/2021,11:30,QUEENS,11356,40.790615,-73.83901,"(40.790615, -73.83901)",7 AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455403,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,10:36,MANHATTAN,10034,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456159,Station Wagon/Sport Utility Vehicle,Bike,,, +09/04/2021,3:25,,,40.703556,-73.78805,"(40.703556, -73.78805)",LIBERTY AVENUE,170 STREET,,5,0,0,0,0,0,5,0,Unsafe Speed,Turning Improperly,,,,4455663,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,16:20,BRONX,10467,40.879055,-73.87439,"(40.879055, -73.87439)",EAST GUN HILL ROAD,PERRY AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Turning Improperly,,,,4455596,Refrigerated Van,Sedan,,, +09/08/2021,21:30,,,40.759197,-73.98463,"(40.759197, -73.98463)",WEST 47 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455589,Armored Truck,,,, +09/09/2021,6:30,QUEENS,11378,40.72852,-73.90573,"(40.72852, -73.90573)",54 AVENUE,MAURICE AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4455361,Sedan,Refrigerated Van,,, +09/08/2021,18:45,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455112,Sedan,,,, +09/09/2021,12:17,,,40.691353,-73.92142,"(40.691353, -73.92142)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455816,Station Wagon/Sport Utility Vehicle,Dump,,, +09/09/2021,20:17,BROOKLYN,11208,40.667953,-73.87007,"(40.667953, -73.87007)",LINDEN BOULEVARD,EUCLID AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4456288,Station Wagon/Sport Utility Vehicle,MOPED,,, +09/08/2021,17:55,BRONX,10460,40.84197,-73.86744,"(40.84197, -73.86744)",MEAD STREET,GARFIELD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455244,Sedan,,,, +09/08/2021,4:00,BRONX,10472,40.833218,-73.86859,"(40.833218, -73.86859)",,,1314 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455030,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,17:42,QUEENS,11373,40.74141,-73.88461,"(40.74141, -73.88461)",,,80-08 45 AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4455825,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,0:00,BROOKLYN,11225,40.668056,-73.950264,"(40.668056, -73.950264)",,,1195 PRESIDENT STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455631,Sedan,,,, +09/10/2021,23:00,,,,,,188 STREET,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4455913,Sedan,Sedan,,, +09/10/2021,13:19,BRONX,10469,40.860893,-73.84321,"(40.860893, -73.84321)",EASTCHESTER ROAD,WARING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455648,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +09/04/2021,1:47,MANHATTAN,10011,40.7414,-73.99504,"(40.7414, -73.99504)",,,123 WEST 20 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455849,Sedan,,,, +09/09/2021,9:55,,,40.840496,-73.94599,"(40.840496, -73.94599)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4455584,Sedan,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +09/10/2021,11:00,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,TILLARY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455747,Sedan,Sedan,,, +09/08/2021,15:10,,,40.67181,-73.998795,"(40.67181, -73.998795)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4455230,Tractor Truck Diesel,Sedan,,, +09/10/2021,19:00,QUEENS,11358,40.761448,-73.80288,"(40.761448, -73.80288)",NORTHERN BOULEVARD,163 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455689,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,17:05,QUEENS,11369,40.76217,-73.87041,"(40.76217, -73.87041)",ASTORIA BOULEVARD,99 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inexperience,,,,4456333,Station Wagon/Sport Utility Vehicle,Motorbike,,, +09/10/2021,11:55,,,40.641327,-74.00709,"(40.641327, -74.00709)",7 AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Passing or Lane Usage Improper,,,,4456051,Station Wagon/Sport Utility Vehicle,E-Bike,,, +09/04/2021,3:15,QUEENS,11377,40.757954,-73.8982,"(40.757954, -73.8982)",31 AVENUE,69 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455855,E-Bike,Sedan,,, +08/22/2021,14:50,BRONX,10474,40.814503,-73.88649,"(40.814503, -73.88649)",FAILE STREET,SPOFFORD AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455831,Taxi,Sedan,,, +09/10/2021,11:30,BRONX,10455,40.81632,-73.903015,"(40.81632, -73.903015)",PROSPECT AVENUE,EAST 155 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455706,Tractor Truck Diesel,Sedan,,, +09/10/2021,12:50,BROOKLYN,11208,40.665245,-73.87513,"(40.665245, -73.87513)",ATKINS AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4456293,Sedan,Sedan,,, +09/09/2021,20:20,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4455532,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,14:00,STATEN ISLAND,10306,40.575653,-74.10455,"(40.575653, -74.10455)",HYLAN BOULEVARD,GREELEY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455388,Sedan,Sedan,,, +09/08/2021,10:44,,,40.69891,-73.93078,"(40.69891, -73.93078)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455810,Sedan,Sedan,,, +09/08/2021,8:54,,,40.759624,-73.99548,"(40.759624, -73.99548)",10 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455309,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,13:00,BRONX,10467,40.87891,-73.87377,"(40.87891, -73.87377)",,,320 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4455645,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,5:30,QUEENS,11101,40.74679,-73.94324,"(40.74679, -73.94324)",JACKSON AVENUE,THOMSON AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455159,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,0:30,MANHATTAN,10016,40.74664,-73.98032,"(40.74664, -73.98032)",,,120 EAST 34 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456072,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,12:10,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",EAST 163 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4455972,Sedan,Pick-up Truck,,, +09/10/2021,14:25,,,40.65008,-73.96101,"(40.65008, -73.96101)",CHURCH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455778,Sedan,,,, +09/05/2021,13:00,MANHATTAN,10031,40.828396,-73.945305,"(40.828396, -73.945305)",WEST 150 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455674,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,23:46,BROOKLYN,11208,40.68536,-73.88221,"(40.68536, -73.88221)",HIGHLAND BOULEVARD,JAMAICA AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456312,Sedan,E-Bike,,, +09/09/2021,16:35,,,40.845253,-73.90935,"(40.845253, -73.90935)",MORRIS AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4455494,Sedan,E-Scooter,,, +09/09/2021,3:30,BROOKLYN,11222,,,,,,195 Lombardy,1,0,0,0,0,0,1,0,Steering Failure,,,,,4455171,Sedan,,,, +09/07/2021,10:08,BRONX,10451,40.816574,-73.9196,"(40.816574, -73.9196)",,,349 EAST 149 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455513,Sedan,,,, +09/09/2021,8:45,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",OCEAN PARKWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455980,Convertible,Bike,,, +09/10/2021,18:00,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",WILLIS AVENUE,EAST 135 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,13:13,,,40.731064,-74.00142,"(40.731064, -74.00142)",WEST 3 STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4456426,Pick-up Truck,Motorcycle,,, +09/03/2021,16:45,,,0,0,"(0.0, 0.0)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455616,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,4:40,MANHATTAN,10034,40.863113,-73.920616,"(40.863113, -73.920616)",NAGLE AVENUE,WEST 204 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456109,Sedan,,,, +09/07/2021,9:53,,,,,,WEST 204 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456138,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,12:30,BROOKLYN,11208,40.685497,-73.86978,"(40.685497, -73.86978)",,,188 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455284,Sedan,,,, +09/08/2021,14:41,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4455198,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +09/08/2021,17:35,,,40.70261,-73.992516,"(40.70261, -73.992516)",BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455059,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,16:45,MANHATTAN,10022,40.76092,-73.96704,"(40.76092, -73.96704)",3 AVENUE,EAST 58 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4455683,Station Wagon/Sport Utility Vehicle,Bus,,, +09/01/2021,0:00,MANHATTAN,10023,40.777905,-73.98209,"(40.777905, -73.98209)",AMSTERDAM AVENUE,WEST 71 STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4455896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,9:51,BROOKLYN,11219,40.631134,-74.00693,"(40.631134, -74.00693)",10 AVENUE,63 STREET,,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4455715,Sedan,,,, +09/10/2021,11:46,BRONX,10457,40.847324,-73.90375,"(40.847324, -73.90375)",EAST 176 STREET,ANTHONY AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Failure to Yield Right-of-Way,,,,4456501,Sedan,E-Scooter,,, +09/10/2021,20:27,,,,,,QUEENSBORO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455738,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,17:13,STATEN ISLAND,10310,40.63299,-74.11416,"(40.63299, -74.11416)",CARY AVENUE,NORTH BURGHER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456167,,,,, +09/10/2021,18:00,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455870,Bus,Van,,, +09/08/2021,18:20,BROOKLYN,11215,40.664013,-73.97735,"(40.664013, -73.97735)",PROSPECT PARK WEST,10 STREET,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,Unspecified,,4455088,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +09/07/2021,12:32,BROOKLYN,11221,40.694313,-73.93052,"(40.694313, -73.93052)",BROADWAY,DODWORTH STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,15:21,QUEENS,11422,40.677383,-73.726204,"(40.677383, -73.726204)",STEPHANIE DRIVE,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4455441,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,9:25,,,40.69624,-73.973465,"(40.69624, -73.973465)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4454996,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,22:35,QUEENS,11434,40.655254,-73.76568,"(40.655254, -73.76568)",182 STREET,ROCKAWAY BOULEVARD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4456212,Sedan,Sedan,,, +09/03/2021,12:00,BRONX,10474,40.805645,-73.8793,"(40.805645, -73.8793)",RYAWA AVENUE,HALLECK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455888,Sedan,,,, +09/08/2021,0:00,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",COOPER AVENUE,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455421,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,0:00,BRONX,10458,40.85934,-73.885284,"(40.85934, -73.885284)",,,558 EAST 191 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455207,Sedan,Station Wagon/Sport Utility Vehicle,,, +08/30/2021,21:00,,,40.781666,-73.986694,"(40.781666, -73.986694)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455890,Taxi,PK,,, +09/06/2021,17:45,BROOKLYN,11201,40.69637,-73.99725,"(40.69637, -73.99725)",PIERREPONT STREET,COLUMBIA HEIGHTS,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456230,Bike,E-Scooter,,, +09/09/2021,18:00,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",LONGWOOD AVENUE,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4455572,Sedan,Sedan,,, +06/21/2021,3:40,QUEENS,11101,40.753822,-73.92537,"(40.753822, -73.92537)",,,36-25 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456429,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,0:35,BROOKLYN,11237,40.709316,-73.93301,"(40.709316, -73.93301)",MORGAN AVENUE,MESEROLE STREET,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4455137,E-Bike,Sedan,,, +09/09/2021,11:45,BROOKLYN,11201,40.6947,-73.9872,"(40.6947, -73.9872)",,,320 JAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455477,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/10/2021,13:20,BROOKLYN,11214,40.605934,-74.000465,"(40.605934, -74.000465)",86 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456363,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/02/2021,20:00,BROOKLYN,11236,40.63951,-73.910194,"(40.63951, -73.910194)",,,720 EAST 86 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455947,Sedan,,,, +09/08/2021,21:59,BRONX,10455,40.814724,-73.89788,"(40.814724, -73.89788)",,,737 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455567,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,6:40,,,40.771038,-73.83413,"(40.771038, -73.83413)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455399,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,23:15,BROOKLYN,11211,40.711323,-73.94725,"(40.711323, -73.94725)",GRAND STREET,LEONARD STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455456,Sedan,E-Bike,,, +09/03/2021,9:30,,,40.886406,-73.84119,"(40.886406, -73.84119)",BAYCHESTER AVENUE,SCHIEFELIN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4456481,Motorcycle,,,, +09/08/2021,16:30,,,40.69832,-73.962265,"(40.69832, -73.962265)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455063,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,8:11,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455093,Sedan,Sedan,,, +09/09/2021,10:10,QUEENS,11355,,,,Shea road,Perimeter road,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455289,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,22:31,,,40.73635,-73.97502,"(40.73635, -73.97502)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,3:10,BROOKLYN,11223,40.606674,-73.96183,"(40.606674, -73.96183)",,,2067 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4455255,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,17:15,QUEENS,11358,40.756397,-73.804535,"(40.756397, -73.804535)",162 STREET,45 AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4499460,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,21:05,BROOKLYN,11208,40.662544,-73.87652,"(40.662544, -73.87652)",,,891 STANLEY AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455263,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/09/2021,23:30,,,40.672886,-73.99922,"(40.672886, -73.99922)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455482,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,7:44,QUEENS,11417,40.67667,-73.86078,"(40.67667, -73.86078)",76 STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4455599,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +09/08/2021,11:46,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4454988,Sedan,Sedan,,, +09/10/2021,23:30,BROOKLYN,11229,40.602684,-73.94232,"(40.602684, -73.94232)",NOSTRAND AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,8:30,BRONX,10466,40.899815,-73.85781,"(40.899815, -73.85781)",NEREID AVENUE,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Turning Improperly,,,,4455528,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,23:01,QUEENS,11429,40.714222,-73.73894,"(40.714222, -73.73894)",217 LANE,HEMPSTEAD AVENUE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4455903,Sedan,PK,,, +09/09/2021,17:15,QUEENS,11377,40.754063,-73.89958,"(40.754063, -73.89958)",NORTHERN BOULEVARD,64 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4455660,Sedan,Sedan,,, +08/25/2021,7:46,MANHATTAN,10017,40.754105,-73.96862,"(40.754105, -73.96862)",,,301 EAST 49 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4456146,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,20:45,MANHATTAN,10033,40.84992,-73.93148,"(40.84992, -73.93148)",AUDUBON AVENUE,WEST 183 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455621,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,19:16,BROOKLYN,11229,40.60358,-73.95636,"(40.60358, -73.95636)",AVENUE S,EAST 16 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4455175,Station Wagon/Sport Utility Vehicle,Bike,,, +09/09/2021,19:45,MANHATTAN,10065,40.764988,-73.96116,"(40.764988, -73.96116)",EAST 66 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455490,Taxi,Sedan,,, +09/10/2021,7:00,MANHATTAN,10035,40.798923,-73.93421,"(40.798923, -73.93421)",,,348 EAST 120 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455628,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,23:44,,,40.69875,-73.9834,"(40.69875, -73.9834)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4455734,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,19:27,,,40.884144,-73.91502,"(40.884144, -73.91502)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4456354,Tractor Truck Diesel,,,, +09/10/2021,23:36,MANHATTAN,10012,40.722355,-73.99327,"(40.722355, -73.99327)",BOWERY,PRINCE STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4456066,Bike,,,, +09/03/2021,14:00,BRONX,10455,40.821136,-73.91684,"(40.821136, -73.91684)",,,355 EAST 156 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455517,Sedan,Flat Bed,,, +09/07/2021,16:43,BROOKLYN,11221,40.697582,-73.92983,"(40.697582, -73.92983)",MYRTLE AVENUE,SUYDAM STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455805,Station Wagon/Sport Utility Vehicle,Bike,,, +09/10/2021,1:04,,,40.719135,-73.78949,"(40.719135, -73.78949)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455702,Sedan,,,, +09/09/2021,17:00,QUEENS,11354,40.767754,-73.83193,"(40.767754, -73.83193)",LINDEN PLACE,32 AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4456268,Moped,,,, +09/08/2021,8:55,BROOKLYN,11234,40.627098,-73.91238,"(40.627098, -73.91238)",,,1236 BERGEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455018,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/05/2021,13:00,QUEENS,11106,40.76609,-73.9349,"(40.76609, -73.9349)",13 STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455962,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,20:10,BROOKLYN,11222,40.73068,-73.94923,"(40.73068, -73.94923)",GREENPOINT AVENUE,PROVOST STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455487,Box Truck,E-Bike,,, +08/28/2021,19:30,BRONX,10455,40.816895,-73.90277,"(40.816895, -73.90277)",,,724 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455886,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,17:47,BROOKLYN,11237,40.698536,-73.91788,"(40.698536, -73.91788)",BLEECKER STREET,KNICKERBOCKER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455819,Sedan,,,, +08/30/2021,14:30,,,40.7065,-73.91701,"(40.7065, -73.91701)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455774,Dump,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,11:00,,,40.67544,-73.78086,"(40.67544, -73.78086)",160 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455215,Sedan,Sedan,,, +09/10/2021,17:00,,,40.782536,-73.81182,"(40.782536, -73.81182)",18 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455760,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,21:10,BRONX,10471,40.906338,-73.8965,"(40.906338, -73.8965)",BROADWAY,WEST 259 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456178,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,2:00,,,40.64918,-73.976616,"(40.64918, -73.976616)",EAST 5 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,,,4454921,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/10/2021,16:50,,,40.857327,-73.904526,"(40.857327, -73.904526)",JEROME AVENUE,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455922,E-Bike,,,, +09/08/2021,14:20,,,,,,VERRAZANO BRIDGE UPPER,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4455100,Sedan,Sedan,Sedan,, +09/09/2021,8:35,BROOKLYN,11207,40.674133,-73.89644,"(40.674133, -73.89644)",,,145 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4455253,Sedan,Sedan,,, +09/10/2021,10:00,QUEENS,11101,40.750244,-73.920135,"(40.750244, -73.920135)",43 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456440,Station Wagon/Sport Utility Vehicle,,,, +09/02/2021,1:40,BROOKLYN,11236,40.647514,-73.920235,"(40.647514, -73.920235)",,,1141 RALPH AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455544,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/04/2022,17:00,,,40.68534,-73.80431,"(40.68534, -73.80431)",111 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4572090,Sedan,Pick-up Truck,,, +09/09/2021,16:15,BROOKLYN,11205,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,WILLIAMSBURG STREET WEST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455461,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,11:23,MANHATTAN,10029,40.78937,-73.94027,"(40.78937, -73.94027)",,,2041 1 AVENUE,1,0,0,0,0,0,0,0,View Obstructed/Limited,Following Too Closely,,,,4455604,Sedan,E-Scooter,,, +09/10/2021,0:00,BROOKLYN,11203,40.64993,-73.93312,"(40.64993, -73.93312)",SNYDER AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4455729,Sedan,Sedan,Sedan,, +09/08/2021,17:00,QUEENS,11106,40.757393,-73.93547,"(40.757393, -73.93547)",37 AVENUE,24 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455754,Sedan,Sedan,,, +08/30/2021,14:30,,,40.708256,-73.91997,"(40.708256, -73.91997)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455773,Sedan,Dump,,, +09/08/2021,15:20,MANHATTAN,10013,40.719154,-74.0021,"(40.719154, -74.0021)",BROADWAY,LISPENARD STREET,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455195,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,13:30,,,40.796017,-73.97502,"(40.796017, -73.97502)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4455655,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,0:46,,,40.736046,-73.92673,"(40.736046, -73.92673)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455050,Sedan,Sedan,,, +09/03/2021,17:28,QUEENS,11378,,,,58 road,Queens midtown expressway,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456216,Sedan,,,, +09/09/2021,13:35,MANHATTAN,10040,40.86025,-73.93095,"(40.86025, -73.93095)",,,4580 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4456172,Station Wagon/Sport Utility Vehicle,,,, +09/06/2021,13:11,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4456473,Sedan,Sedan,,, +08/29/2021,15:00,BROOKLYN,11216,40.68804,-73.947754,"(40.68804, -73.947754)",MARCY AVENUE,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4456152,Sedan,,,, +09/08/2021,12:50,,,40.609512,-73.98957,"(40.609512, -73.98957)",BAY RIDGE PARKWAY,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455378,Station Wagon/Sport Utility Vehicle,Bike,,, +09/05/2021,12:50,,,,,,WEST 179 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455623,Sedan,E-Bike,,, +09/09/2021,6:50,,,40.715805,-73.77393,"(40.715805, -73.77393)",188 STREET,,,1,0,1,0,0,0,0,0,,,,,,4455342,,,,, +09/10/2021,1:40,BROOKLYN,11221,40.690266,-73.91546,"(40.690266, -73.91546)",CORNELIA STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,,,,,4455789,E-Bike,,,, +09/10/2021,9:30,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Backing Unsafely,,,,4455608,Sedan,Tow Truck / Wrecker,,, +09/08/2021,11:25,QUEENS,11377,40.745594,-73.9034,"(40.745594, -73.9034)",61 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455141,Sedan,Sedan,,, +09/09/2021,12:00,BRONX,10455,40.820625,-73.914894,"(40.820625, -73.914894)",,,420 EAST 156 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:30,BRONX,10454,40.81051,-73.91576,"(40.81051, -73.91576)",,,479 EAST 143 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455714,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,19:00,BROOKLYN,11208,40.683685,-73.87204,"(40.683685, -73.87204)",,,3346 FULTON STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4456304,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/10/2021,17:10,,,40.69611,-73.96406,"(40.69611, -73.96406)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455697,Sedan,Sedan,,, +09/08/2021,15:18,,,40.66018,-73.91414,"(40.66018, -73.91414)",STRAUSS STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455122,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,8:17,,,40.736656,-74.00102,"(40.736656, -74.00102)",,,65 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4455640,Bike,,,, +09/09/2021,6:40,BROOKLYN,11234,40.632755,-73.92984,"(40.632755, -73.92984)",KINGS HIGHWAY,AVENUE H,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4455294,Van,Sedan,,, +09/08/2021,14:08,BRONX,10461,40.84732,-73.848526,"(40.84732, -73.848526)",,,1151 PIERCE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455845,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,7:30,BRONX,10467,40.88471,-73.86899,"(40.88471, -73.86899)",,,3600 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456437,Sedan,Sedan,,, +09/10/2021,13:20,BROOKLYN,11215,40.666115,-73.978195,"(40.666115, -73.978195)",,,511 8 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455868,Sedan,Garbage or Refuse,,, +09/08/2021,19:11,,,40.674747,-73.9417,"(40.674747, -73.9417)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456254,Sedan,,,, +09/10/2021,17:30,BRONX,10452,40.832314,-73.93161,"(40.832314, -73.93161)",SEDGWICK AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455682,Sedan,Sedan,,, +09/10/2021,14:00,QUEENS,11429,40.705925,-73.7396,"(40.705925, -73.7396)",,,111-28 SPRINGFIELD BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455739,Sedan,,,, +09/10/2021,14:20,BROOKLYN,11204,40.618965,-73.99037,"(40.618965, -73.99037)",,,6518 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4455653,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,10:18,BROOKLYN,11201,40.696198,-73.98877,"(40.696198, -73.98877)",ADAMS STREET,TILLARY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,11:10,BROOKLYN,11216,40.67657,-73.94431,"(40.67657, -73.94431)",DEAN STREET,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4456237,Sedan,Sedan,Sedan,Sedan, +09/08/2021,20:20,QUEENS,11411,40.691277,-73.746254,"(40.691277, -73.746254)",120 AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4455328,Pick-up Truck,,,, +09/08/2021,9:05,QUEENS,11104,,,,,,51-01 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455147,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,22:06,,,40.658417,-73.76768,"(40.658417, -73.76768)",149 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4451766,Sedan,Sedan,,, +09/09/2021,15:20,BRONX,10454,40.806065,-73.90905,"(40.806065, -73.90905)",BRUCKNER BOULEVARD,EAST 141 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455526,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,12:50,,,40.681046,-73.94346,"(40.681046, -73.94346)",TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456151,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,3:19,BRONX,10461,40.834175,-73.829,"(40.834175, -73.829)",,,3371 EAST TREMONT AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456009,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,15:15,,,,,,SEAGIRT boulevard,BEACH 9 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4455746,Sedan,Sedan,,, +08/11/2021,20:30,BRONX,10459,40.82746,-73.89838,"(40.82746, -73.89838)",,,1224 PROSPECT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455881,Sedan,,,, +09/08/2021,16:16,,,40.863163,-73.8942,"(40.863163, -73.8942)",EAST KINGSBRIDGE ROAD,,,2,0,0,0,0,0,2,0,Other Vehicular,Unspecified,Unspecified,,,4456402,Sedan,Sedan,Sedan,, +09/10/2021,16:24,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4456077,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/07/2021,12:36,BRONX,10457,40.84964,-73.89661,"(40.84964, -73.89661)",EAST 179 STREET,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456408,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,11:20,,,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455675,Sedan,,,, +09/09/2021,17:10,BROOKLYN,11211,40.714043,-73.92634,"(40.714043, -73.92634)",GARDNER AVENUE,METROPOLITAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,11:00,BROOKLYN,11233,40.676598,-73.93039,"(40.676598, -73.93039)",UTICA AVENUE,PACIFIC STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4456242,Sedan,Station Wagon/Sport Utility Vehicle,Budget tru,, +09/08/2021,19:00,,,40.834805,-73.886116,"(40.834805, -73.886116)",EAST 173 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455967,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,11:11,,,40.725918,-73.89535,"(40.725918, -73.89535)",GRAND AVENUE,BORDEN AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4455044,van,Sedan,,, +09/09/2021,19:20,QUEENS,11101,40.749268,-73.945465,"(40.749268, -73.945465)",44 AVENUE,22 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455450,Sedan,Sedan,,, +09/08/2021,10:20,BROOKLYN,11233,40.68197,-73.92887,"(40.68197, -73.92887)",REID AVENUE,DECATUR STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455007,Sedan,,,, +08/27/2021,17:20,BROOKLYN,11203,40.651176,-73.941666,"(40.651176, -73.941666)",,,3814 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456340,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,6:30,,,40.766155,-73.89226,"(40.766155, -73.89226)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455393,Sedan,Sedan,Sedan,, +09/08/2021,16:44,QUEENS,11413,40.683376,-73.76043,"(40.683376, -73.76043)",FARMERS BOULEVARD,MONTAUK STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4455219,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +09/06/2021,15:10,MANHATTAN,10023,40.77303,-73.97829,"(40.77303, -73.97829)",CENTRAL PARK WEST,WEST 67 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455815,Sedan,Sedan,,, +09/09/2021,15:45,BRONX,10451,40.815437,-73.924,"(40.815437, -73.924)",EAST 144 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455508,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,13:03,,,40.605904,-74.1354,"(40.605904, -74.1354)",,,698 WESTWOOD AVENUE,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4455548,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,19:21,BROOKLYN,11208,40.682186,-73.86982,"(40.682186, -73.86982)",ATLANTIC AVENUE,AUTUMN AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,,4455270,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/08/2021,16:37,BROOKLYN,11228,40.606422,-74.0147,"(40.606422, -74.0147)",CROPSEY AVENUE,15 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4455070,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,20:55,MANHATTAN,10075,40.772964,-73.9542,"(40.772964, -73.9542)",,,330 EAST 79 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455161,Sedan,Taxi,,, +09/04/2021,3:27,,,40.695583,-73.92078,"(40.695583, -73.92078)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455794,Sedan,,,, +08/01/2021,23:00,,,,,,Myrtle ave,Freedom square,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4455559,Sedan,,,, +09/08/2021,8:55,,,40.819057,-73.92923,"(40.819057, -73.92923)",EAST 149 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4455249,Sedan,Bike,,, +09/08/2021,7:24,BROOKLYN,11212,40.66018,-73.91414,"(40.66018, -73.91414)",STRAUSS STREET,RIVERDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455190,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,17:25,,,40.69205,-73.982544,"(40.69205, -73.982544)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455929,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,18:32,MANHATTAN,10035,40.803078,-73.93839,"(40.803078, -73.93839)",,,120 EAST 123 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455576,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,21:18,MANHATTAN,10003,40.724274,-73.99082,"(40.724274, -73.99082)",2 AVENUE,EAST 1 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Traffic Control Disregarded,,,,4456029,Sedan,Sedan,,, +09/04/2021,19:28,,,40.71886,-73.97492,"(40.71886, -73.97492)",FDR DRIVE,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456022,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,0:00,MANHATTAN,10000,,,,WEST DRIVE,TRANSVERSE ROAD NUMBER FOUR,,1,0,1,0,0,0,0,0,,,,,,4455002,Bike,,,, +09/10/2021,22:20,BRONX,10475,40.877476,-73.83661,"(40.877476, -73.83661)",BAYCHESTER AVENUE,GIVAN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4456483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,2:50,QUEENS,11427,40.72469,-73.7541,"(40.72469, -73.7541)",HILLSIDE AVENUE,212 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4454909,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,17:55,BROOKLYN,11236,40.645615,-73.9099,"(40.645615, -73.9099)",FOSTER AVENUE,EAST 92 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4455104,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,22:50,,,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4455726,Taxi,Sedan,,, +09/09/2021,20:35,QUEENS,11361,40.75568,-73.77526,"(40.75568, -73.77526)",,,206-49 46 ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455431,Sedan,,,, +09/08/2021,18:25,MANHATTAN,10016,40.751575,-73.982285,"(40.751575, -73.982285)",5 AVENUE,WEST 39 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455167,Sedan,E-Scooter,,, +09/08/2021,19:35,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4455078,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,19:40,,,40.644,-73.87584,"(40.644, -73.87584)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456276,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,21:00,MANHATTAN,10075,40.773598,-73.9578,"(40.773598, -73.9578)",3 AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455536,Sedan,Sedan,,, +09/08/2021,7:45,BROOKLYN,11238,,,,GATES AVENUE,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4455349,Sedan,,,, +09/08/2021,15:50,QUEENS,11370,40.757267,-73.88283,"(40.757267, -73.88283)",,,32-27 85 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4455368,Sedan,Tractor Truck Diesel,,, +09/05/2021,9:00,,,40.755978,-73.939095,"(40.755978, -73.939095)",39 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455591,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,16:03,BROOKLYN,11236,40.64024,-73.91947,"(40.64024, -73.91947)",RALPH AVENUE,FOSTER AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4455668,Sedan,Sedan,,, +09/09/2021,6:55,,,40.75868,-73.77558,"(40.75868, -73.77558)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455302,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,21:30,BROOKLYN,11203,40.656063,-73.93957,"(40.656063, -73.93957)",ALBANY AVENUE,CLARKSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,22:00,BROOKLYN,11233,40.68279,-73.92268,"(40.68279, -73.92268)",,,203 RALPH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456295,Sedan,,,, +09/10/2021,2:20,,,40.825527,-73.882286,"(40.825527, -73.882286)",WATSON AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4455636,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +09/06/2021,11:45,,,40.585026,-73.958275,"(40.585026, -73.958275)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4455999,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/09/2021,13:20,QUEENS,11373,40.735634,-73.87602,"(40.735634, -73.87602)",QUEENS BOULEVARD,55 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455409,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,22:10,BROOKLYN,11203,40.652855,-73.945915,"(40.652855, -73.945915)",LINDEN BOULEVARD,EAST 34 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455541,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/17/2021,14:20,BROOKLYN,11216,40.678722,-73.952995,"(40.678722, -73.952995)",ATLANTIC AVENUE,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,,,,,,4456245,Sedan,,,, +09/07/2021,21:50,QUEENS,11422,40.675056,-73.72927,"(40.675056, -73.72927)",,,243-49 132 ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456130,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,13:10,,,,,,GRAND ARMY PLAZA,PROSPECT PARK WEST,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455864,Sedan,,,, +09/09/2021,19:49,BROOKLYN,11229,40.606346,-73.95273,"(40.606346, -73.95273)",AVENUE R,OCEAN AVENUE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4455499,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/10/2021,14:30,BRONX,10451,40.822117,-73.91421,"(40.822117, -73.91421)",,,417 EAST 158 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455707,Sedan,Bus,,, +09/10/2021,8:30,,,40.665848,-73.75187,"(40.665848, -73.75187)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4455694,Sedan,Flat Rack,,, +09/08/2021,16:19,BRONX,10459,40.821358,-73.889114,"(40.821358, -73.889114)",BRUCKNER BOULEVARD,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455114,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +08/10/2021,14:52,,,40.778805,-73.974075,"(40.778805, -73.974075)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455901,Sedan,Sedan,,, +09/09/2021,9:47,,,40.73715,-73.930824,"(40.73715, -73.930824)",GREENPOINT AVENUE,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4455320,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/08/2021,16:00,STATEN ISLAND,10304,40.612465,-74.08318,"(40.612465, -74.08318)",,,280 PARK HILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456057,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,16:00,,,40.710274,-73.77774,"(40.710274, -73.77774)",183 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4455426,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,14:20,,,40.754147,-73.722885,"(40.754147, -73.722885)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455211,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/09/2021,21:10,QUEENS,11413,40.674557,-73.75186,"(40.674557, -73.75186)",,,137-27 220 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4455446,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +09/10/2021,15:25,,,,,,SEDGWICK AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456489,Sedan,Moped,,, +08/31/2021,20:20,,,40.68979,-73.90655,"(40.68979, -73.90655)",DECATUR STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455782,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/06/2021,2:30,MANHATTAN,10009,40.73135,-73.98256,"(40.73135, -73.98256)",EAST 14 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455978,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,19:35,,,40.611458,-74.15254,"(40.611458, -74.15254)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455605,Sedan,Sedan,,, +09/09/2021,17:26,MANHATTAN,10019,40.764626,-73.99555,"(40.764626, -73.99555)",11 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455590,Sedan,Sedan,,, +09/04/2021,5:33,MANHATTAN,10034,40.864483,-73.919044,"(40.864483, -73.919044)",,,500 WEST 207 STREET,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456132,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,3:45,BRONX,10474,40.81711,-73.89204,"(40.81711, -73.89204)",GARRISON AVENUE,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455568,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/08/2022,1:00,MANHATTAN,10019,40.76723,-73.98412,"(40.76723, -73.98412)",,,340 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4571999,Sedan,,,, +09/08/2021,14:44,QUEENS,11361,40.761734,-73.76008,"(40.761734, -73.76008)",,,221-17 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4455031,Sedan,Box Truck,,, +09/06/2021,15:10,MANHATTAN,10014,40.733215,-74.00304,"(40.733215, -74.00304)",7 AVENUE SOUTH,GROVE STREET,,2,0,1,0,1,0,0,0,Driver Inattention/Distraction,,,,,4456425,Bike,,,, +09/09/2021,8:40,,,40.889927,-73.9084,"(40.889927, -73.9084)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4456349,Chassis Cab,,,, +09/09/2021,7:35,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455246,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/06/2021,18:44,MANHATTAN,10034,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,WEST 202 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4456137,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,7:55,,,40.770683,-73.79598,"(40.770683, -73.79598)",29 AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4455398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,16:50,BRONX,10457,40.848606,-73.8898,"(40.848606, -73.8898)",EAST 180 STREET,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455199,Sedan,,,, +09/08/2021,5:47,,,,,,PELHAM PARKWAY NORTH,BOSTON ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455015,Sedan,Sedan,,, +09/08/2021,15:40,BRONX,10466,40.899277,-73.85921,"(40.899277, -73.85921)",,,4366 BULLARD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455065,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +09/04/2021,2:00,QUEENS,11372,40.753326,-73.8718,"(40.753326, -73.8718)",JUNCTION BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456090,E-Bike,,,, +08/09/2021,19:00,,,40.6992,-73.92309,"(40.6992, -73.92309)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455563,Ambulance,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,1:00,MANHATTAN,10033,40.852726,-73.93443,"(40.852726, -73.93443)",BROADWAY,WEST 185 STREET,,1,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4456165,E-Bike,Taxi,,, +09/09/2021,10:59,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455280,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,22:20,BROOKLYN,11208,40.67114,-73.88008,"(40.67114, -73.88008)",,,534 SHEPHERD AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4455264,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +09/08/2021,8:15,,,40.77056,-73.91751,"(40.77056, -73.91751)",GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4454998,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,3:35,MANHATTAN,10029,40.798615,-73.94375,"(40.798615, -73.94375)",EAST 115 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4455580,Station Wagon/Sport Utility Vehicle,,,, +08/21/2021,2:30,BRONX,10473,40.812904,-73.847694,"(40.812904, -73.847694)",BARRETT AVENUE,HOWE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456040,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,1:48,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4456192,Taxi,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,15:00,QUEENS,11373,40.738903,-73.87649,"(40.738903, -73.87649)",87 STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455410,Sedan,,,, +09/03/2021,8:01,,,40.889458,-73.89828,"(40.889458, -73.89828)",BROADWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456180,Sedan,Motorcycle,,, +09/09/2021,1:25,BRONX,10467,40.873943,-73.87035,"(40.873943, -73.87035)",,,3324 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4455531,Sedan,Sedan,,, +09/10/2021,12:50,QUEENS,11369,40.760906,-73.87295,"(40.760906, -73.87295)",96 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,18:50,,,40.718075,-73.97511,"(40.718075, -73.97511)",FDR DRIVE,,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4455934,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +09/10/2021,18:20,BROOKLYN,11203,40.65169,-73.93116,"(40.65169, -73.93116)",,,4912 CHURCH AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4455722,Sedan,E-Bike,,, +09/08/2021,0:00,,,40.6374,-74.01116,"(40.6374, -74.01116)",59 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455451,Sedan,,,, +09/09/2021,8:03,,,40.790363,-73.96564,"(40.790363, -73.96564)",CENTRAL PARK WEST,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4455312,Sedan,Sedan,,, +09/10/2021,4:41,BROOKLYN,11215,40.66279,-73.98833,"(40.66279, -73.98833)",6 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4455476,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +09/08/2021,20:15,QUEENS,11373,40.73694,-73.88657,"(40.73694, -73.88657)",IRELAND STREET,51 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455150,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,20:40,MANHATTAN,10006,40.711033,-74.01454,"(40.711033, -74.01454)",WEST STREET,LIBERTY STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455356,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,19:30,QUEENS,11385,40.705467,-73.90974,"(40.705467, -73.90974)",ONDERDONK AVENUE,MENAHAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455362,Sedan,Moped,,, +09/08/2021,0:16,QUEENS,11420,40.66675,-73.80157,"(40.66675, -73.80157)",NORTH CONDUIT AVENUE,VANWYCK EXPRESSWAY,,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4454884,Sedan,Sedan,Sedan,, +09/09/2021,20:26,QUEENS,11428,40.722313,-73.74285,"(40.722313, -73.74285)",92 AVENUE,216 STREET,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Unspecified,,,,4455440,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,13:00,,,40.57761,-73.96145,"(40.57761, -73.96145)",BRIGHTON 6 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455174,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/07/2021,19:59,BROOKLYN,11207,40.67811,-73.89762,"(40.67811, -73.89762)",JAMAICA AVENUE,BUSHWICK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4456284,Sedan,Sedan,,, +09/09/2021,15:15,STATEN ISLAND,10301,40.641785,-74.09849,"(40.641785, -74.09849)",,,185 CASSIDY PLACE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4456059,Sedan,,,, +09/08/2021,12:30,,,,,,ATLANTIC AVENUE,94 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4455187,Bike,,,, +09/10/2021,0:00,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",EAST FORDHAM ROAD,JEROME AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4455493,Sedan,,,, +09/03/2021,9:15,MANHATTAN,10031,,,,WEST 145 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455664,Garbage or Refuse,,,, +09/09/2021,13:00,,,40.7847,-73.83854,"(40.7847, -73.83854)",130 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455404,Station Wagon/Sport Utility Vehicle,,,, +09/09/2021,0:00,BRONX,10454,40.808205,-73.907845,"(40.808205, -73.907845)",SOUTHERN BOULEVARD,SAINT MARYS STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4455516,Sedan,,,, +09/08/2021,12:15,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455111,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,13:30,BROOKLYN,11219,40.641808,-73.99429,"(40.641808, -73.99429)",43 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456065,Station Wagon/Sport Utility Vehicle,Bus,,, +09/08/2021,22:30,BROOKLYN,11207,40.68026,-73.901886,"(40.68026, -73.901886)",,,1650 BUSHWICK AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4455285,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,7:00,QUEENS,11375,40.723267,-73.83833,"(40.723267, -73.83833)",113 STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455595,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,23:10,BROOKLYN,11216,40.6775,-73.94701,"(40.6775, -73.94701)",PACIFIC STREET,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4456243,Sedan,,,, +09/10/2021,12:28,BRONX,10452,40.840107,-73.92478,"(40.840107, -73.92478)",PLIMPTON AVENUE,WEST 169 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4455632,Station Wagon/Sport Utility Vehicle,,,, +09/05/2021,6:58,,,,,,BRUCKNER EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456005,Sedan,,,, +09/10/2021,8:00,QUEENS,11418,40.701218,-73.81622,"(40.701218, -73.81622)",,,89-00 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455833,Sedan,,,, +09/08/2021,18:58,,,40.856743,-73.89527,"(40.856743, -73.89527)",WEBSTER AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4455558,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +09/10/2021,12:00,BROOKLYN,11206,40.699757,-73.95359,"(40.699757, -73.95359)",,,277 LEE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4456116,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,18:20,,,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4456399,Sedan,Bus,,, +09/07/2021,7:05,BROOKLYN,11205,40.69436,-73.97604,"(40.69436, -73.97604)",,,100 NORTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4455797,Sedan,,,, +09/10/2021,12:40,,,40.764454,-73.83178,"(40.764454, -73.83178)",FARRINGTON STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455690,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,8:43,BROOKLYN,11212,40.66425,-73.922104,"(40.66425, -73.922104)",RALPH AVENUE,EAST 98 STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4455877,,,,, +09/09/2021,13:00,BROOKLYN,11212,40.665627,-73.92045,"(40.665627, -73.92045)",SUTTER AVENUE,TAPSCOTT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455910,Sedan,Sedan,,, +09/05/2021,5:00,,,40.821144,-73.95753,"(40.821144, -73.95753)",WEST 135 STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4456367,Sedan,Sedan,Sedan,, +09/08/2021,13:06,BROOKLYN,11231,40.67992,-74.007225,"(40.67992, -74.007225)",,,54 RICHARDS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455136,Sedan,Sedan,,, +09/10/2021,12:00,MANHATTAN,10013,40.715355,-73.99865,"(40.715355, -73.99865)",,,46 MOTT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4456053,Sedan,Sedan,,, +09/09/2021,15:00,QUEENS,11385,40.700447,-73.90323,"(40.700447, -73.90323)",,,57-11 MYRTLE AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4455422,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/10/2021,9:44,BRONX,10468,40.873657,-73.89838,"(40.873657, -73.89838)",RESERVOIR AVENUE,UNIVERSITY AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,Passing or Lane Usage Improper,,,,4456229,Sedan,E-Scooter,,, +09/10/2021,17:00,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",ASHFORD STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4456294,Station Wagon/Sport Utility Vehicle,,,, +09/07/2021,17:04,MANHATTAN,10029,40.79962,-73.94396,"(40.79962, -73.94396)",,,75 EAST 116 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4455573,Sedan,Van,,, +09/09/2021,17:15,BRONX,10460,40.841396,-73.87651,"(40.841396, -73.87651)",LEBANON STREET,DEVOE AVENUE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4455553,Station Wagon/Sport Utility Vehicle,VAN TRUCK,,, +09/03/2021,7:21,BROOKLYN,11237,40.70499,-73.91736,"(40.70499, -73.91736)",STOCKHOLM STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inexperience,,,,4455786,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +08/24/2021,20:13,MANHATTAN,10034,40.863556,-73.91962,"(40.863556, -73.91962)",NAGLE AVENUE,10 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4456145,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +08/23/2021,17:18,BRONX,10455,40.812496,-73.90283,"(40.812496, -73.90283)",,,580 SOUTHERN BOULEVARD,1,0,0,0,1,0,0,0,Unspecified,Unspecified,Unspecified,,,4455923,Box Truck,Station Wagon/Sport Utility Vehicle,Bike,, +09/10/2021,14:50,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455950,Sedan,Bus,,, +09/08/2021,21:54,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",EAST 134 STREET,BROOK AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,View Obstructed/Limited,,,,4456460,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/09/2021,23:21,MANHATTAN,10154,40.75827,-73.97318,"(40.75827, -73.97318)",,,345 PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455622,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +09/09/2021,8:46,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455483,Sedan,Sedan,,, +09/10/2021,17:28,,,40.74689,-73.92081,"(40.74689, -73.92081)",43 STREET,,,0,1,0,0,0,0,0,1,Turning Improperly,Driver Inexperience,,,,4455733,Sedan,Minibike,,, +09/10/2021,9:58,MANHATTAN,10037,40.81719,-73.93446,"(40.81719, -73.93446)",HARLEM RIVER DRIVE,WEST 142 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4455585,Station Wagon/Sport Utility Vehicle,,,, +08/29/2021,10:57,BRONX,10471,40.911385,-73.90003,"(40.911385, -73.90003)",,,6206 TYNDALL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4456173,Sedan,Sedan,Sedan,, +09/10/2021,16:15,QUEENS,11436,40.67613,-73.80013,"(40.67613, -73.80013)",120 AVENUE,141 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455755,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,16:18,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",58 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4455686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +09/07/2021,16:47,BROOKLYN,11237,40.70183,-73.91933,"(40.70183, -73.91933)",IRVING AVENUE,STANHOPE STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,4455806,Bike,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +09/09/2021,14:05,BRONX,10462,40.847363,-73.8579,"(40.847363, -73.8579)",MORRIS PARK AVENUE,BOGART AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455617,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,13:10,,,40.670277,-73.92542,"(40.670277, -73.92542)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4456269,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,22:04,BRONX,10470,40.906384,-73.85167,"(40.906384, -73.85167)",EAST 242 STREET,CARPENTER AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4456474,Sedan,,,, +09/10/2021,19:58,MANHATTAN,10029,40.797447,-73.94671,"(40.797447, -73.94671)",EAST 112 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4455914,,,,, +09/08/2021,22:50,BROOKLYN,11235,40.59275,-73.95016,"(40.59275, -73.95016)",OCEAN AVENUE,AVENUE X,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4455179,Sedan,Sedan,,, +09/08/2021,18:00,BROOKLYN,11235,40.58426,-73.96002,"(40.58426, -73.96002)",,,2955 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,12:45,QUEENS,11356,40.78794,-73.84289,"(40.78794, -73.84289)",11 AVENUE,125 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4454986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,12:07,QUEENS,11106,40.76283,-73.92901,"(40.76283, -73.92901)",33 AVENUE,CRESCENT STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4455232,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,19:26,,,40.867733,-73.88285,"(40.867733, -73.88285)",WEBSTER AVENUE,BOTANICAL SQUARE SOUTH,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455291,Station Wagon/Sport Utility Vehicle,Bike,,, +09/08/2021,17:10,,,40.848694,-73.93047,"(40.848694, -73.93047)",AMSTERDAM AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4456158,E-Bike,,,, +09/08/2021,15:01,QUEENS,11356,40.78297,-73.84859,"(40.78297, -73.84859)",,,18-15 119 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455095,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,12:00,,,40.817898,-73.938095,"(40.817898, -73.938095)",WEST 141 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Other Vehicular,,,,4456449,FIRETRUCK,Sedan,,, +09/08/2021,13:47,BROOKLYN,11215,40.67148,-73.98928,"(40.67148, -73.98928)",,,185 8 STREET,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4455087,Pick-up Truck,,,, +09/09/2021,6:00,BROOKLYN,11229,40.598278,-73.958206,"(40.598278, -73.958206)",,,2102 EAST 13 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455256,Sedan,,,, +09/08/2021,21:25,BROOKLYN,11211,40.7052,-73.955185,"(40.7052, -73.955185)",,,244 HEWES STREET,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4455415,SCOOTER,,,, +09/07/2021,15:55,BROOKLYN,11232,40.6532,-74.008865,"(40.6532, -74.008865)",,,4002 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4455871,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/05/2021,2:14,,,40.86114,-73.91894,"(40.86114, -73.91894)",9 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4456108,Sedan,Sedan,,, +09/10/2021,8:10,BRONX,10474,40.811512,-73.89053,"(40.811512, -73.89053)",RANDALL AVENUE,TIFFANY STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4455600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,0:00,BROOKLYN,11236,40.63693,-73.91109,"(40.63693, -73.91109)",FLATLANDS AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456206,Sedan,Sedan,,, +09/06/2021,8:00,,,40.677048,-73.9387,"(40.677048, -73.9387)",PACIFIC STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4455659,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +09/10/2021,1:30,BRONX,10466,40.881264,-73.83875,"(40.881264, -73.83875)",BAYCHESTER AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4455527,Sedan,,,, +08/24/2021,14:45,,,40.699024,-73.91623,"(40.699024, -73.91623)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4455768,E-Bike,Box Truck,,, +09/08/2021,15:15,BROOKLYN,11238,40.687096,-73.971634,"(40.687096, -73.971634)",,,349 CARLTON AVENUE,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4455130,E-Bike,Station Wagon/Sport Utility Vehicle,,, +09/08/2021,14:25,MANHATTAN,10065,40.762737,-73.9597,"(40.762737, -73.9597)",EAST 64 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455157,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,14:00,,,40.76155,-73.96659,"(40.76155, -73.96659)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4455386,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,17:00,MANHATTAN,10020,40.76029,-73.98016,"(40.76029, -73.98016)",,,1271 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Unspecified,,,,,4455338,Sedan,,,, +09/09/2021,0:30,,,40.671078,-73.842926,"(40.671078, -73.842926)",CROSS BAY BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455471,Sedan,,,, +09/10/2021,11:40,BRONX,10468,40.873383,-73.88938,"(40.873383, -73.88938)",JEROME AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455644,Station Wagon/Sport Utility Vehicle,,,, +09/08/2021,14:25,,,40.669403,-73.912605,"(40.669403, -73.912605)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4456061,Station Wagon/Sport Utility Vehicle,Bus,,, +09/09/2021,16:15,BROOKLYN,11222,40.730537,-73.95077,"(40.730537, -73.95077)",,,213 GREENPOINT AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4455488,Sedan,Box Truck,,, +09/08/2021,16:50,BROOKLYN,11222,40.732716,-73.95807,"(40.732716, -73.95807)",FRANKLIN STREET,HURON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4455170,Pick-up Truck,,,, +09/07/2021,17:37,,,,,,MACOMBS ROAD,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4455627,Sedan,E-Scooter,,, +09/08/2021,15:40,BROOKLYN,11208,40.688446,-73.87593,"(40.688446, -73.87593)",,,784 JAMAICA AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4456322,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/09/2021,7:42,MANHATTAN,10029,40.78808,-73.94931,"(40.78808, -73.94931)",,,1557 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4455512,Sedan,Sedan,,, +09/08/2021,19:05,BRONX,10472,40.826557,-73.87771,"(40.826557, -73.87771)",,,1057 BOYNTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4455117,Sedan,Sedan,,, +09/10/2021,12:30,BROOKLYN,11207,40.66819,-73.88454,"(40.66819, -73.88454)",,,616 WARWICK STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4456308,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/03/2021,4:13,BROOKLYN,11233,40.676647,-73.91647,"(40.676647, -73.91647)",ATLANTIC AVENUE,SARATOGA AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4456289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/10/2021,0:00,BROOKLYN,11220,40.637726,-74.00717,"(40.637726, -74.00717)",,,747 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4455455,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,13:30,,,40.749306,-73.86141,"(40.749306, -73.86141)",104 STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455826,Sedan,,,, +09/10/2021,13:30,,,40.72579,-73.79175,"(40.72579, -73.79175)",UNION TURNPIKE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455701,Sedan,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,11:34,,,40.795456,-73.96564,"(40.795456, -73.96564)",WEST 100 STREET,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4455321,Station Wagon/Sport Utility Vehicle,FDNY Truck,,, +09/09/2021,16:00,,,,,,ORCHARD BEACH ROAD,PARK DRIVE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4456013,Sedan,Sedan,,, +09/10/2021,20:35,MANHATTAN,10016,40.745728,-73.97813,"(40.745728, -73.97813)",EAST 34 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,View Obstructed/Limited,,,,4455718,Taxi,,,, +09/07/2021,1:20,,,40.7025,-73.91633,"(40.7025, -73.91633)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455801,Sedan,Sedan,,, +09/05/2021,0:00,MANHATTAN,10010,40.74345,-73.9882,"(40.74345, -73.9882)",EAST 26 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455981,E-Bike,Taxi,,, +09/10/2021,22:09,,,40.68626,-73.8013,"(40.68626, -73.8013)",111 AVENUE,143 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4455851,Sedan,Bike,,, +09/10/2021,9:30,BRONX,10460,40.842766,-73.86614,"(40.842766, -73.86614)",,,643 MEAD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/09/2021,11:26,QUEENS,11420,40.66691,-73.822014,"(40.66691, -73.822014)",LEFFERTS BOULEVARD,150 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4455333,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/08/2021,23:10,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4455751,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +09/05/2021,17:35,,,40.734657,-74.00475,"(40.734657, -74.00475)",CHARLES STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4455654,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/09/2021,18:14,,,40.749733,-73.936104,"(40.749733, -73.936104)",NORTHERN BOULEVARD,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4455612,Station Wagon/Sport Utility Vehicle,Box Truck,,, +09/08/2021,13:27,BRONX,10455,40.818993,-73.909744,"(40.818993, -73.909744)",EAST 156 STREET,EAGLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4455522,E-Bike,,,, +09/09/2021,13:57,MANHATTAN,10023,40.778793,-73.98206,"(40.778793, -73.98206)",WEST 72 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4455891,Van,,,, +09/09/2021,8:30,MANHATTAN,10019,40.76529,-73.993256,"(40.76529, -73.993256)",,,516 WEST 50 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4455343,Sedan,FDNY,,, +09/10/2021,19:00,QUEENS,11385,40.693844,-73.90119,"(40.693844, -73.90119)",WYCKOFF AVENUE,CODY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4456223,Sedan,Sedan,,, +09/08/2021,20:18,,,40.66858,-73.84223,"(40.66858, -73.84223)",SOUTH CONDUIT AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4455143,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2021,16:50,QUEENS,11411,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4453724,Station Wagon/Sport Utility Vehicle,,,, +09/10/2021,22:45,QUEENS,11368,40.745724,-73.859566,"(40.745724, -73.859566)",47 AVENUE,104 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4456430,Sedan,E-Bike,,, +02/03/2022,18:00,BROOKLYN,11237,40.705677,-73.926094,"(40.705677, -73.926094)",IRVING AVENUE,MELROSE STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500016,,,,, +02/04/2022,10:00,MANHATTAN,10029,40.795708,-73.93688,"(40.795708, -73.93688)",,,320 EAST 115 STREET,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499879,Ambulance,,,, +02/03/2022,19:34,,,40.695717,-73.96592,"(40.695717, -73.96592)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Following Too Closely,,,4499770,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/02/2022,4:00,BROOKLYN,11204,40.615376,-73.99927,"(40.615376, -73.99927)",,,1657 BAY RIDGE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4499687,Station Wagon/Sport Utility Vehicle,,,, +01/27/2022,17:20,QUEENS,11433,40.704033,-73.7938,"(40.704033, -73.7938)",165 STREET,ARCHER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500509,Sedan,Tractor Truck Diesel,,, +02/04/2022,1:56,QUEENS,11412,40.696667,-73.750175,"(40.696667, -73.750175)",116 AVENUE,203 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4499894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +02/04/2022,13:41,MANHATTAN,10003,40.729416,-73.9871,"(40.729416, -73.9871)",,,151 2 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500149,Sedan,Box Truck,,, +02/02/2022,16:50,,,,,,E 8th,Foster Avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499524,Bus,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,1:00,QUEENS,11372,40.755165,-73.8891,"(40.755165, -73.8891)",NORTHERN BOULEVARD,78 STREET,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4499656,Sedan,Sedan,,, +02/03/2022,18:00,BRONX,10467,40.8863,-73.863525,"(40.8863, -73.863525)",,,641 EAST 222 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500408,Sedan,,,, +02/03/2022,7:04,,,,,,WEST SHORE EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4500259,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,8:45,BROOKLYN,11229,40.60689,-73.95795,"(40.60689, -73.95795)",,,1760 EAST 15 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,15:10,,,40.700554,-73.84294,"(40.700554, -73.84294)",PARK LANE SOUTH,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499956,Sedan,,,, +02/03/2022,8:10,,,40.586117,-73.93604,"(40.586117, -73.93604)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4499675,Bus,Sedan,,, +02/02/2022,21:57,BRONX,10456,40.8308,-73.90502,"(40.8308, -73.90502)",,,555 EAST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499569,Sedan,,,, +02/02/2022,20:30,QUEENS,11375,40.732277,-73.84927,"(40.732277, -73.84927)",108 STREET,64 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500427,Sedan,Sedan,,, +02/03/2022,16:35,,,40.5917,-74.16443,"(40.5917, -74.16443)",,,2271 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4499753,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,16:51,BRONX,10453,40.854588,-73.90187,"(40.854588, -73.90187)",GRAND CONCOURSE,EAST 181 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4499816,Bus,Bus,,, +02/03/2022,9:30,QUEENS,11385,40.705616,-73.86575,"(40.705616, -73.86575)",,,83-17 78 AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4499969,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,7:20,QUEENS,11102,40.771347,-73.92285,"(40.771347, -73.92285)",ASTORIA BOULEVARD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499515,FDNY AMBUL,Sedan,,, +02/03/2021,17:00,QUEENS,11377,40.74094,-73.91725,"(40.74094, -73.91725)",47 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499921,Sedan,Sedan,,, +02/03/2022,16:52,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499764,Sedan,Flat Bed,,, +02/04/2022,8:34,,,40.777714,-73.82406,"(40.777714, -73.82406)",PARSONS BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499906,Bus,,,, +02/03/2022,17:40,BRONX,10472,40.8305,-73.86606,"(40.8305, -73.86606)",,,1213 BEACH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500001,Van,,,, +02/02/2022,11:30,,,40.832626,-73.925385,"(40.832626, -73.925385)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499501,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,0:00,,,40.73814,-74.00816,"(40.73814, -74.00816)",JANE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500207,Box Truck,Sedan,,, +02/02/2022,10:36,,,,,,VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499353,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,18:00,BROOKLYN,11237,40.70994,-73.92803,"(40.70994, -73.92803)",,,123 VARICK AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4499780,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/13/2021,18:33,QUEENS,11694,,,,BEACH CHANNEL DRIVE,BEACH 116 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4466838,Sedan,,,, +02/01/2022,0:00,QUEENS,11369,40.76052,-73.87379,"(40.76052, -73.87379)",95 STREET,31 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499862,Sedan,,,, +02/04/2022,21:27,QUEENS,11357,40.7923,-73.807236,"(40.7923, -73.807236)",154 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4500081,Dump,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,15:45,QUEENS,11375,40.711338,-73.85646,"(40.711338, -73.85646)",METROPOLITAN AVENUE,SELFRIDGE STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499446,Sedan,,,, +02/02/2022,6:15,,,40.758533,-73.98885,"(40.758533, -73.98885)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500359,Station Wagon/Sport Utility Vehicle,Dump,,, +02/01/2022,7:00,,,40.738216,-73.98568,"(40.738216, -73.98568)",GRAMERCY PARK NORTH,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499984,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,17:35,MANHATTAN,10036,40.75958,-73.984375,"(40.75958, -73.984375)",,,714 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499551,Sedan,,,, +01/30/2022,14:45,QUEENS,11362,40.765648,-73.72392,"(40.765648, -73.72392)",,,54-27 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500293,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,14:13,MANHATTAN,10038,40.711998,-74.005264,"(40.711998, -74.005264)",FRANKFORT STREET,PARK ROW,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499847,Box Truck,Sedan,,, +02/03/2022,18:00,BROOKLYN,11205,40.692684,-73.96874,"(40.692684, -73.96874)",,,174 CLINTON AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4499812,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,18:30,BRONX,10467,40.87739,-73.8665,"(40.87739, -73.8665)",EAST GUN HILL ROAD,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4499736,Tow Truck / Wrecker,Sedan,,, +02/04/2022,21:25,,,40.642014,-73.9313,"(40.642014, -73.9313)",AVENUE D,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500248,Sedan,Sedan,,, +02/04/2022,16:13,,,,,,BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500027,Pick-up Truck,Sedan,,, +01/26/2022,7:30,BROOKLYN,11201,40.683956,-73.98956,"(40.683956, -73.98956)",HOYT STREET,BALTIC STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499934,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/04/2022,15:58,MANHATTAN,10016,40.743874,-73.97163,"(40.743874, -73.97163)",EAST 35 STREET,FDR DRIVE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4500053,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,5:10,,,40.742676,-73.839516,"(40.742676, -73.839516)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500318,Bulk Agriculture,Sedan,,, +02/04/2022,14:00,QUEENS,11361,40.763535,-73.77171,"(40.763535, -73.77171)",,,213-11 41 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499889,Sedan,,,, +02/04/2022,17:58,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499911,Pick-up Truck,,,, +02/03/2022,0:45,,,40.6913,-73.9455,"(40.6913, -73.9455)",TOMPKINS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500181,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,18:18,BROOKLYN,11229,40.610947,-73.953606,"(40.610947, -73.953606)",AVENUE P,OCEAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500141,Sedan,,,, +02/02/2022,2:30,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4499556,Sedan,,,, +01/31/2022,20:30,MANHATTAN,10032,40.83597,-73.945984,"(40.83597, -73.945984)",,,860 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500270,Sedan,Pick-up Truck,,, +02/04/2022,13:09,BROOKLYN,11222,40.720913,-73.94074,"(40.720913, -73.94074)",,,2 BEADEL STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499867,Sedan,Box Truck,,, +02/03/2022,8:17,MANHATTAN,10003,40.734886,-73.98995,"(40.734886, -73.98995)",,,10 UNION SQUARE EAST,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499614,Ambulance,Sedan,,, +02/03/2022,8:25,,,40.87683,-73.86472,"(40.87683, -73.86472)",EAST GUN HILL ROAD,HOLLAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,9:30,BRONX,10458,40.8552,-73.88432,"(40.8552, -73.88432)",,,690 EAST 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500301,Sedan,,,, +02/02/2022,17:30,BROOKLYN,11225,40.665737,-73.95088,"(40.665737, -73.95088)",,,907 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499534,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,13:40,QUEENS,11367,40.726593,-73.81684,"(40.726593, -73.81684)",72 DRIVE,150 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500035,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,20:00,BROOKLYN,11215,40.6634,-73.97785,"(40.6634, -73.97785)",PROSPECT PARK WEST,11 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4500481,Sedan,Sedan,,, +02/04/2022,17:42,QUEENS,11356,40.786747,-73.84295,"(40.786747, -73.84295)",125 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4500102,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/02/2022,20:18,,,40.723698,-74.00792,"(40.723698, -74.00792)",CANAL STREET,HUDSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499484,Sedan,Taxi,,, +02/03/2022,18:39,BROOKLYN,11220,40.634617,-74.02353,"(40.634617, -74.02353)",4 AVENUE,BAY RIDGE AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4499774,Sedan,Sedan,,, +02/02/2022,9:45,BROOKLYN,11211,40.714092,-73.94899,"(40.714092, -73.94899)",,,596 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4499787,Box Truck,,,, +01/25/2022,10:00,BROOKLYN,11233,40.68316,-73.93809,"(40.68316, -73.93809)",HALSEY STREET,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500308,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,8:30,,,40.89163,-73.85184,"(40.89163, -73.85184)",BRONXWOOD AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500402,Sedan,Sedan,,, +02/03/2022,7:50,,,40.608223,-74.1294,"(40.608223, -74.1294)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,16:12,MANHATTAN,10022,40.759922,-73.96273,"(40.759922, -73.96273)",,,344 EAST 59 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499724,Sedan,Sedan,,, +02/02/2022,8:40,BRONX,10456,40.836506,-73.90536,"(40.836506, -73.90536)",PARK AVENUE,SAINT PAULS PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4499562,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +02/04/2022,6:54,MANHATTAN,10030,40.82004,-73.94126,"(40.82004, -73.94126)",,,160 WEST 142 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499874,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/02/2022,23:15,BROOKLYN,11206,40.697315,-73.932274,"(40.697315, -73.932274)",MYRTLE AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500012,Sedan,,,, +02/04/2022,22:00,,,40.855556,-73.92918,"(40.855556, -73.92918)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500433,Sedan,Sedan,,, +01/31/2022,18:35,QUEENS,11355,40.753006,-73.8326,"(40.753006, -73.8326)",COLLEGE POINT BOULEVARD,POPLE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500104,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +02/02/2022,1:40,,,40.831017,-73.85226,"(40.831017, -73.85226)",CROSS BRONX EXPRESSWAY,POWELL AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4499592,Dump,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,11:00,BRONX,10455,40.816746,-73.915306,"(40.816746, -73.915306)",,,600 BERGEN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499949,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,20:40,,,40.680477,-73.951164,"(40.680477, -73.951164)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500329,Taxi,Sedan,,, +02/04/2022,9:50,BROOKLYN,11249,40.699482,-73.96104,"(40.699482, -73.96104)",KENT AVENUE,RUTLEDGE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500474,Sedan,Bus,,, +02/02/2022,20:11,BROOKLYN,11222,40.727962,-73.95008,"(40.727962, -73.95008)",MC GUINNESS BOULEVARD,MESEROLE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499820,Sedan,,,, +02/03/2022,8:30,BRONX,10472,40.825394,-73.883286,"(40.825394, -73.883286)",BRONX RIVER AVENUE,WATSON AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500005,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,7:27,BROOKLYN,11236,40.646214,-73.89578,"(40.646214, -73.89578)",,,757 EAST 103 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4499757,Sedan,Sedan,,, +02/01/2022,13:00,,,,,,HARLEM RIVER DRIVE RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4500269,Station Wagon/Sport Utility Vehicle,Taxi,,, +02/04/2022,22:10,,,40.761894,-73.72916,"(40.761894, -73.72916)",,,251 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499943,Sedan,GARBAGE TR,,, +02/04/2022,6:50,QUEENS,11004,40.743603,-73.70752,"(40.743603, -73.70752)",,,263-05 81 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4499850,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,0:15,BRONX,10472,40.835857,-73.87213,"(40.835857, -73.87213)",CROSS BRONX EXPRESSWAY,CROES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499597,Pick-up Truck,,,, +02/03/2022,22:22,BROOKLYN,11204,40.63291,-73.97957,"(40.63291, -73.97957)",43 STREET,17 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500196,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,10:30,QUEENS,11373,40.733906,-73.87178,"(40.733906, -73.87178)",,,90-01 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499843,Sedan,,,, +02/03/2022,17:18,QUEENS,11422,40.663788,-73.734024,"(40.663788, -73.734024)",247 STREET,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4499760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/02/2022,4:07,MANHATTAN,10017,40.751747,-73.97081,"(40.751747, -73.97081)",2 AVENUE,EAST 45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499312,Sedan,,,, +02/03/2022,19:20,MANHATTAN,10028,40.77882,-73.953995,"(40.77882, -73.953995)",3 AVENUE,EAST 86 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499807,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,20:30,BROOKLYN,11213,40.667763,-73.93122,"(40.667763, -73.93122)",,,299 UTICA AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500075,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,0:38,,,,,,FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4499988,Sedan,,,, +01/31/2022,22:45,,,40.801125,-73.92988,"(40.801125, -73.92988)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499981,Sedan,Sedan,,, +02/03/2022,12:00,QUEENS,11377,40.740273,-73.89586,"(40.740273, -73.89586)",69 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499775,Box Truck,Lift Boom,,, +02/02/2022,11:00,QUEENS,11370,,,,77 STREET,19 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499514,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,17:33,MANHATTAN,10001,,,,31 street,SIXTH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500364,,,,, +02/03/2022,9:00,BROOKLYN,11210,40.637794,-73.93954,"(40.637794, -73.93954)",,,792 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499669,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,8:15,,,40.671925,-73.939186,"(40.671925, -73.939186)",ALBANY AVENUE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4499439,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,13:00,BROOKLYN,11232,40.662308,-73.99507,"(40.662308, -73.99507)",,,184 21 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500372,Sedan,,,, +02/04/2022,7:20,BROOKLYN,11236,40.63868,-73.91682,"(40.63868, -73.91682)",EAST 80 STREET,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4500023,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,19:23,BRONX,10463,40.882732,-73.89672,"(40.882732, -73.89672)",,,3809 CANNON PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500044,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,17:00,BRONX,10470,40.90146,-73.86267,"(40.90146, -73.86267)",VIREO AVENUE,EAST 240 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500414,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,14:10,MANHATTAN,10022,,,,EAST 57 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499976,Sedan,Carry All,,, +01/26/2022,7:45,QUEENS,11106,40.76034,-73.936386,"(40.76034, -73.936386)",,,35-34 21 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,20:40,BROOKLYN,11203,40.650227,-73.92827,"(40.650227, -73.92827)",SNYDER AVENUE,EAST 52 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499660,Sedan,Scooter,,, +02/04/2022,6:20,BRONX,10460,40.835705,-73.888756,"(40.835705, -73.888756)",EAST 173 STREET,SOUTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500134,Sedan,Sedan,,, +02/04/2022,20:05,,,40.861256,-73.925674,"(40.861256, -73.925674)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4500424,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,17:50,MANHATTAN,10027,40.810627,-73.95828,"(40.810627, -73.95828)",WEST 122 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4500384,Bike,,,, +02/03/2022,17:59,,,40.838203,-73.9302,"(40.838203, -73.9302)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4500167,Tractor Truck Diesel,Sedan,,, +02/04/2022,15:47,BROOKLYN,11225,40.668083,-73.95929,"(40.668083, -73.95929)",,,960 CARROLL STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499918,Dump,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,15:45,BROOKLYN,11211,40.712082,-73.94227,"(40.712082, -73.94227)",,,300 HUMBOLDT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499791,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,10:00,,,40.75595,-73.99074,"(40.75595, -73.99074)",WEST 40 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500357,Taxi,,,, +02/03/2022,11:40,BRONX,10469,40.877544,-73.84664,"(40.877544, -73.84664)",,,3440 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4499737,Sedan,,,, +02/03/2022,19:25,BROOKLYN,11234,40.60981,-73.92251,"(40.60981, -73.92251)",AVENUE U,FLATBUSH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500040,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,16:23,BRONX,10454,40.80806,-73.93042,"(40.80806, -73.93042)",,,1 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499567,Sedan,,,, +02/01/2022,13:30,,,40.614452,-73.99161,"(40.614452, -73.99161)",71 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500295,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,14:29,MANHATTAN,10002,40.720722,-73.98325,"(40.720722, -73.98325)",,,164 ATTORNEY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500094,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,13:13,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",1 AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499886,Taxi,Box Truck,,, +02/02/2022,19:41,BRONX,10453,40.854874,-73.916794,"(40.854874, -73.916794)",SEDGWICK AVENUE,WEST 179 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4499582,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/04/2022,17:00,BROOKLYN,11235,0,0,"(0.0, 0.0)",,,2437 EAST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499899,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,10:32,MANHATTAN,10013,40.717278,-73.99544,"(40.717278, -73.99544)",BOWERY,HESTER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500182,Sedan,Sedan,,, +02/03/2022,0:00,BROOKLYN,11203,40.65812,-73.934006,"(40.65812, -73.934006)",SCHENECTADY AVENUE,WINTHROP STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500008,Taxi,Sedan,Sedan,, +02/03/2022,12:00,,,40.674355,-73.76752,"(40.674355, -73.76752)",134 ROAD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499713,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,7:28,BRONX,10467,40.879467,-73.87518,"(40.879467, -73.87518)",,,272 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499623,Bus,Pick-up Truck,,, +02/02/2022,13:23,QUEENS,11355,40.75584,-73.83448,"(40.75584, -73.83448)",HAIGHT STREET,41 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499459,Sedan,,,, +02/04/2022,19:40,BROOKLYN,11206,40.70199,-73.936745,"(40.70199, -73.936745)",,,869 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500116,Taxi,Sedan,,, +02/02/2022,0:13,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4500533,Sedan,Sedan,,, +02/04/2022,0:36,BRONX,10452,40.8382,-73.92371,"(40.8382, -73.92371)",WOODYCREST AVENUE,WEST 168 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4500190,Sedan,Van,,, +02/03/2022,14:00,BROOKLYN,11203,40.65142,-73.93716,"(40.65142, -73.93716)",CHURCH AVENUE,EAST 43 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Lane Changing,,,,4500226,Sedan,,,, +01/31/2022,7:25,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500453,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,15:51,MANHATTAN,10002,40.713554,-73.98086,"(40.713554, -73.98086)",JACKSON STREET,MADISON STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499475,Sedan,,,, +01/30/2022,21:49,,,40.73361,-73.835915,"(40.73361, -73.835915)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500341,Sedan,Sedan,,, +02/04/2022,10:35,,,40.742657,-73.846214,"(40.742657, -73.846214)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499839,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,9:39,BROOKLYN,11236,40.644863,-73.89174,"(40.644863, -73.89174)",,,1052 EAST 105 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499382,Sedan,Sedan,,, +02/03/2022,17:00,,,40.697426,-73.784325,"(40.697426, -73.784325)",109 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500514,Sedan,Sedan,,, +02/02/2022,22:55,BROOKLYN,11218,40.643574,-73.97166,"(40.643574, -73.97166)",BEVERLEY ROAD,EAST 8 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499635,Taxi,,,, +02/04/2022,15:47,MANHATTAN,10028,40.77719,-73.95225,"(40.77719, -73.95225)",EAST 85 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4500523,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/02/2022,15:15,MANHATTAN,10029,40.78455,-73.94689,"(40.78455, -73.94689)",,,1873 2 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4499964,Sedan,Sedan,,, +02/02/2022,6:25,BROOKLYN,11217,40.68354,-73.98438,"(40.68354, -73.98438)",WYCKOFF STREET,NEVINS STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4499544,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/01/2022,14:00,MANHATTAN,10013,40.72034,-74.00223,"(40.72034, -74.00223)",MERCER STREET,HOWARD STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4499871,Box Truck,,,, +02/03/2022,9:15,,,40.742012,-73.78278,"(40.742012, -73.78278)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499959,Bus,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,18:42,,,40.726444,-73.76579,"(40.726444, -73.76579)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499800,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,2:12,,,40.76553,-73.94028,"(40.76553, -73.94028)",VERNON BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499854,Sedan,Sedan,,, +02/02/2022,17:00,,,40.73769,-73.76858,"(40.73769, -73.76858)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499461,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,15:35,MANHATTAN,10012,40.725964,-74.001274,"(40.725964, -74.001274)",,,159 PRINCE STREET,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4499485,Sedan,Bike,,, +02/02/2022,8:58,QUEENS,11434,40.67824,-73.7711,"(40.67824, -73.7711)",130 AVENUE,BEDELL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499727,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,16:43,BRONX,10469,40.879055,-73.851875,"(40.879055, -73.851875)",OAKLEY STREET,EAST 218 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4500412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,11:20,QUEENS,11413,0,0,"(0.0, 0.0)",225 STREET,146 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4499680,Sedan,Sedan,,, +02/03/2022,9:03,,,40.833965,-73.8629,"(40.833965, -73.8629)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499688,Sedan,Sedan,,, +02/01/2022,2:30,,,40.856537,-73.87257,"(40.856537, -73.87257)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499875,Sedan,,,, +01/31/2022,23:39,,,40.79337,-73.93274,"(40.79337, -73.93274)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499991,Sedan,,,, +02/02/2022,11:18,,,,,,HORACE HARDING EXPRESSWAY,LITTLE NECK PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499376,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,19:40,BROOKLYN,11203,40.651936,-73.9294,"(40.651936, -73.9294)",CHURCH AVENUE,EAST 51 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4500233,Sedan,Sedan,,, +02/04/2022,13:56,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",ROCKAWAY BOULEVARD,SOUTH CONDUIT AVENUE,,2,0,0,0,0,0,2,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4499914,Pick-up Truck,Sedan,,, +02/02/2022,23:12,BRONX,10454,40.804344,-73.92158,"(40.804344, -73.92158)",BRUCKNER BOULEVARD,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500542,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,17:00,QUEENS,11101,40.74386,-73.94175,"(40.74386, -73.94175)",SKILLMAN AVENUE,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +02/03/2022,10:11,BROOKLYN,11207,40.684937,-73.91014,"(40.684937, -73.91014)",COOPER STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4500013,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,11:23,,,40.621128,-74.133514,"(40.621128, -74.133514)",,,391 COLLEGE AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4499588,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/04/2022,12:20,BROOKLYN,11216,40.690372,-73.947105,"(40.690372, -73.947105)",,,671 LAFAYETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4499882,Van,CAMPER TRA,Van,, +01/20/2022,21:55,BRONX,10472,40.828663,-73.8781,"(40.828663, -73.8781)",,,1540 WESTCHESTER AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500020,Taxi,E-Bike,,, +11/12/2021,12:24,,,,,,BAY PARKWAY,SHORE PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477002,PK,,,, +02/03/2022,9:05,BROOKLYN,11212,40.66112,-73.920135,"(40.66112, -73.920135)",CLARKSON AVENUE,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500220,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,12:00,BROOKLYN,11217,40.67995,-73.98133,"(40.67995, -73.98133)",BUTLER STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499903,Bus,Box Truck,,, +02/04/2022,10:15,,,40.671406,-73.96133,"(40.671406, -73.96133)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500349,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:02,BROOKLYN,11226,40.63679,-73.95744,"(40.63679, -73.95744)",FOSTER AVENUE,EAST 21 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500154,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,14:20,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",SUTTER AVENUE,FORBELL STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4499422,Sedan,Sedan,,, +02/03/2022,10:50,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4499880,Bus,,,, +01/13/2022,7:37,BROOKLYN,11235,40.583733,-73.95736,"(40.583733, -73.95736)",,,2764 EAST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500501,Sedan,,,, +02/03/2022,21:00,,,40.690895,-73.99406,"(40.690895, -73.99406)",CLINTON STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500368,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,14:30,QUEENS,11434,40.68408,-73.76466,"(40.68408, -73.76466)",178 PLACE,LESLIE ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4500280,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/02/2022,15:00,MANHATTAN,10065,40.764572,-73.95543,"(40.764572, -73.95543)",,,1283 YORK AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4499650,Sedan,,,, +02/04/2022,21:58,BROOKLYN,11226,40.644424,-73.9489,"(40.644424, -73.9489)",NOSTRAND AVENUE,CORTELYOU ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500253,Sedan,,,, +02/02/2022,2:20,,,40.815662,-73.88702,"(40.815662, -73.88702)",HUNTS POINT AVENUE,FAILE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499367,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,11:28,BROOKLYN,11214,40.606537,-73.99984,"(40.606537, -73.99984)",19 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500564,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,17:35,QUEENS,11691,40.600567,-73.7621,"(40.600567, -73.7621)",BEACH CHANNEL DRIVE,BAY 25 STREET,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4499495,Sedan,,,, +02/03/2022,2:15,QUEENS,11434,40.68121,-73.773,"(40.68121, -73.773)",BAISLEY BOULEVARD,171 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4499678,Sedan,Sedan,,, +02/04/2022,15:15,QUEENS,11414,40.6572,-73.83941,"(40.6572, -73.83941)",,,160-04 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499932,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,10:30,QUEENS,11370,40.765423,-73.89001,"(40.765423, -73.89001)",79 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499858,Sedan,Sedan,,, +02/01/2022,12:18,MANHATTAN,10029,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499996,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:00,MANHATTAN,10018,40.759525,-73.99925,"(40.759525, -73.99925)",WEST 40 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Turning Improperly,,,,4500213,Sedan,Sedan,,, +01/30/2022,10:46,,,40.54823,-74.220665,"(40.54823, -74.220665)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unsafe Speed,,,,4500244,Sedan,Sedan,,, +02/01/2022,12:08,MANHATTAN,10032,40.832695,-73.94078,"(40.832695, -73.94078)",,,930 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500274,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,19:00,,,40.71747,-73.908516,"(40.71747, -73.908516)",59 STREET,59 DRIVE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499619,Sedan,,,, +02/04/2022,21:00,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500059,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,19:30,QUEENS,11411,40.696392,-73.72751,"(40.696392, -73.72751)",,,115-30 CROSS ISLAND PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4499452,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,22:02,BROOKLYN,11213,40.666737,-73.93132,"(40.666737, -73.93132)",,,327 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499786,Sedan,Sedan,,, +02/03/2022,16:00,,,40.684937,-73.91014,"(40.684937, -73.91014)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4500015,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,18:42,BROOKLYN,11234,40.612362,-73.92297,"(40.612362, -73.92297)",AVENUE T,EAST 53 PLACE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499765,Sedan,,,, +02/01/2022,21:37,,,40.69603,-73.943535,"(40.69603, -73.943535)",THROOP AVENUE,,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4500311,Taxi,,,, +02/03/2022,16:05,,,40.832756,-73.85918,"(40.832756, -73.85918)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4500000,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/02/2022,21:28,BROOKLYN,11217,40.678852,-73.97405,"(40.678852, -73.97405)",,,101 PROSPECT PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499552,Sedan,Sedan,,, +01/31/2022,14:15,QUEENS,11356,40.78169,-73.841415,"(40.78169, -73.841415)",127 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499907,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/05/2021,13:15,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4500188,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/03/2022,21:40,MANHATTAN,10003,40.728725,-73.986145,"(40.728725, -73.986145)",,,345 EAST 9 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500147,Sedan,Bus,,, +02/02/2022,11:10,,,40.63665,-73.96805,"(40.63665, -73.96805)",CONEY ISLAND AVENUE,DITMAS AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4499525,Sedan,,,, +02/04/2022,19:13,BROOKLYN,11235,40.591686,-73.94021,"(40.591686, -73.94021)",AVENUE Y,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,10:34,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",AVENUE I,NOSTRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499731,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,19:26,BRONX,10470,40.901318,-73.86274,"(40.901318, -73.86274)",,,4385 VIREO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500405,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,18:05,MANHATTAN,10032,40.844685,-73.9408,"(40.844685, -73.9408)",FORT WASHINGTON AVENUE,WEST 172 STREET,,1,0,1,0,0,0,0,0,Glare,,,,,4500446,Van,,,, +02/04/2022,16:25,BRONX,10462,40.84535,-73.865555,"(40.84535, -73.865555)",,,713 MORRIS PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500229,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,17:55,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500055,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,18:00,QUEENS,11411,40.69377,-73.73578,"(40.69377, -73.73578)",LINDEN BOULEVARD,225 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499752,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,6:53,QUEENS,11103,40.75982,-73.9139,"(40.75982, -73.9139)",31 AVENUE,44 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499558,Sedan,Sedan,,, +02/04/2022,17:53,,,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499912,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,13:15,BROOKLYN,11212,40.65417,-73.913765,"(40.65417, -73.913765)",LINDEN BOULEVARD,EAST 96 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500236,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,10:40,BROOKLYN,11215,40.6622,-73.97887,"(40.6622, -73.97887)",13 STREET,PROSPECT PARK WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500480,Sedan,,,, +02/04/2022,14:05,,,40.719933,-73.97876,"(40.719933, -73.97876)",COLUMBIA STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4500095,Sedan,Sedan,,, +02/04/2022,12:15,QUEENS,11103,40.766434,-73.89604,"(40.766434, -73.89604)",,,72-02 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499863,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,17:30,,,40.760284,-73.769356,"(40.760284, -73.769356)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499449,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/23/2022,7:45,STATEN ISLAND,10312,40.544052,-74.165085,"(40.544052, -74.165085)",,,3850 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4499848,Sedan,,,, +02/02/2022,12:29,,,,,,BAISLEY BOULEVARD,178 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499396,Sedan,,,, +02/04/2022,0:05,QUEENS,11413,40.67522,-73.75384,"(40.67522, -73.75384)",,,137-21 218 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499794,Sedan,,,, +02/02/2022,17:20,STATEN ISLAND,10310,40.63377,-74.12725,"(40.63377, -74.12725)",,,1335 CASTLETON AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4499654,Sedan,,,, +02/01/2022,23:30,,,40.74753,-73.98831,"(40.74753, -73.98831)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500362,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,21:30,QUEENS,11412,40.691994,-73.76111,"(40.691994, -73.76111)",190 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4499895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,21:12,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Aggressive Driving/Road Rage,,,,4500112,Sedan,Sedan,,, +02/02/2022,19:15,BROOKLYN,11223,40.605877,-73.98598,"(40.605877, -73.98598)",WEST 13 STREET,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499938,Convertible,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,8:57,BRONX,10459,40.830135,-73.891884,"(40.830135, -73.891884)",SOUTHERN BOULEVARD,FREEMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499694,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,11:10,QUEENS,11377,40.74872,-73.89625,"(40.74872, -73.89625)",BROOKLYN QUEENS EXPRESSWAY,BROADWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499466,Sedan,Sedan,,, +02/02/2022,13:35,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499571,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/02/2022,16:22,QUEENS,11368,40.751724,-73.855316,"(40.751724, -73.855316)",,,111-36 ROOSEVELT AVENUE,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4500319,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,15:07,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4499951,Sedan,,,, +02/02/2022,22:55,BRONX,10454,40.805016,-73.92109,"(40.805016, -73.92109)",EAST 134 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499673,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,8:37,BRONX,10454,40.80694,-73.91376,"(40.80694, -73.91376)",CYPRESS AVENUE,EAST 140 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4499612,Sedan,Sedan,,, +02/04/2022,0:54,,,,,,SCHLEY AVENUE,CROSS BRONX EXPRESSWAY EXTENSION,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4499968,Sedan,,,, +02/02/2022,8:15,STATEN ISLAND,10301,40.64033,-74.0871,"(40.64033, -74.0871)",JERSEY STREET,PAUW STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4499391,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,10:10,BROOKLYN,11237,40.6967,-73.91031,"(40.6967, -73.91031)",IRVING AVENUE,PUTNAM AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,View Obstructed/Limited,,,,4499356,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,14:43,BRONX,10452,40.844234,-73.92363,"(40.844234, -73.92363)",OGDEN AVENUE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499499,Sedan,Pick-up Truck,,, +02/03/2022,17:41,,,40.73382,-74.01022,"(40.73382, -74.01022)",WEST STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4500208,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,18:30,QUEENS,11373,40.73792,-73.867744,"(40.73792, -73.867744)",,,94-18 55 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499833,Sedan,Sedan,,, +02/02/2022,16:33,BROOKLYN,11218,40.646496,-73.9812,"(40.646496, -73.9812)",MINNA STREET,DAHILL ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4499578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,20:45,,,40.734497,-73.72287,"(40.734497, -73.72287)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4499469,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/26/2022,11:15,,,,,,BARTOW CIRCLE,SHORE ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4499922,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,10:30,BROOKLYN,11217,40.689735,-73.97611,"(40.689735, -73.97611)",DE KALB AVENUE,SOUTH ELLIOTT PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4499769,Box Truck,Sedan,,, +02/02/2022,16:30,,,40.70618,-73.92846,"(40.70618, -73.92846)",PORTER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4499781,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,10:15,MANHATTAN,10002,40.71264,-73.98501,"(40.71264, -73.98501)",,,40 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499983,Sedan,,,, +02/04/2022,23:50,QUEENS,11358,40.765285,-73.80144,"(40.765285, -73.80144)",35 AVENUE,164 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4500082,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,15:00,BRONX,10466,40.89417,-73.856964,"(40.89417, -73.856964)",EAST 234 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499735,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/21/2022,22:27,,,40.865078,-73.928116,"(40.865078, -73.928116)",BROADWAY,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500401,Sedan,E-Bike,,, +02/03/2022,13:03,,,40.759018,-73.85349,"(40.759018, -73.85349)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500029,Sedan,Sedan,,, +02/03/2022,19:43,,,40.860516,-73.9146,"(40.860516, -73.9146)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4499813,Sedan,Chassis Cab,,, +02/04/2022,21:30,QUEENS,11367,40.73161,-73.81494,"(40.73161, -73.81494)",,,70-05 KISSENA BOULEVARD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4499927,Sedan,Sedan,,, +01/30/2022,1:12,QUEENS,11355,40.761745,-73.81353,"(40.761745, -73.81353)",150 STREET,BARCLAY AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500430,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,9:16,,,,,,,,EAST 222 STREET,2,0,0,0,0,0,2,0,Unspecified,,,,,4477125,Sedan,Sedan,,, +02/03/2022,13:10,BROOKLYN,11232,40.655273,-74.0105,"(40.655273, -74.0105)",2 AVENUE,39 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499890,Sedan,,,, +02/04/2022,9:31,,,40.8396,-73.929474,"(40.8396, -73.929474)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500171,Taxi,,,, +02/04/2022,12:39,,,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4500142,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,5:40,QUEENS,11417,40.682262,-73.84514,"(40.682262, -73.84514)",WOODHAVEN BOULEVARD,103 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499516,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,16:40,QUEENS,11691,40.595203,-73.75603,"(40.595203, -73.75603)",SEAGIRT BOULEVARD,CREST ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4500541,Station Wagon/Sport Utility Vehicle,Bus,,, +02/03/2022,13:20,BRONX,10466,40.89236,-73.8387,"(40.89236, -73.8387)",,,4042 MONTICELLO AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499744,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,3:55,,,40.690308,-73.99881,"(40.690308, -73.99881)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4499830,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/02/2022,10:25,BROOKLYN,11205,40.693626,-73.96406,"(40.693626, -73.96406)",MYRTLE AVENUE,GRAND AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4499639,Sedan,,,, +01/31/2022,7:50,STATEN ISLAND,10309,40.554134,-74.21267,"(40.554134, -74.21267)",,,41 AARON LANE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4499844,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,17:23,,,40.58877,-73.98597,"(40.58877, -73.98597)",28 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500300,Sedan,,,, +01/17/2022,11:15,BROOKLYN,11225,40.665825,-73.957466,"(40.665825, -73.957466)",,,220 MONTGOMERY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499997,Sedan,,,, +02/01/2022,14:30,QUEENS,11101,40.753994,-73.94244,"(40.753994, -73.94244)",41 AVENUE,21 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4499859,,,,, +02/02/2022,5:35,,,,,,BRONX SHORE ROAD,CENTRAL ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499982,Sedan,,,, +02/01/2022,8:18,BRONX,10463,40.87892,-73.90479,"(40.87892, -73.90479)",WEST 231 STREET,BROADWAY,,1,0,1,0,0,0,0,0,,,,,,4499960,,,,, +02/02/2022,16:33,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499440,Bus,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,17:35,STATEN ISLAND,10306,40.560863,-74.12085,"(40.560863, -74.12085)",GUYON AVENUE,PENDALE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499670,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,19:20,QUEENS,11435,40.70887,-73.81871,"(40.70887, -73.81871)",QUEENS BOULEVARD,84 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499799,Sedan,,,, +02/03/2022,7:28,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4499624,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus, +02/02/2022,8:30,STATEN ISLAND,10301,40.63382,-74.09696,"(40.63382, -74.09696)",,,419 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499417,Sedan,,,, +02/02/2022,17:25,QUEENS,11377,40.738605,-73.90742,"(40.738605, -73.90742)",58 LANE,48 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499462,Sedan,,,, +02/01/2022,15:45,,,40.594486,-74.09874,"(40.594486, -74.09874)",RARITAN AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499955,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/03/2022,15:00,BROOKLYN,11206,40.701077,-73.94043,"(40.701077, -73.94043)",HUMBOLDT STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499698,Sedan,Sedan,,, +02/03/2022,2:28,,,40.826088,-73.86121,"(40.826088, -73.86121)",BRUCKNER BOULEVARD,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4499690,Sedan,Tractor Truck Gasoline,,, +02/02/2022,10:00,,,40.604664,-74.02189,"(40.604664, -74.02189)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4499384,Sedan,Sedan,,, +02/03/2022,14:15,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499972,Sedan,Sedan,,, +02/03/2022,8:20,QUEENS,11691,40.600197,-73.74397,"(40.600197, -73.74397)",,,825 HICKSVILLE ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4499814,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,20:50,QUEENS,11429,40.712116,-73.73118,"(40.712116, -73.73118)",HEMPSTEAD AVENUE,223 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4499917,Sedan,Sedan,,, +02/02/2022,5:15,,,40.54823,-74.220665,"(40.54823, -74.220665)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500258,Sedan,Sedan,,, +02/03/2022,13:00,BRONX,10452,40.83235,-73.92107,"(40.83235, -73.92107)",WALTON AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4500597,Sedan,,,, +10/22/2021,11:30,BRONX,10473,,,,,,831 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,,,,,,4477225,,,,, +02/03/2022,14:40,BROOKLYN,11204,40.62046,-73.98312,"(40.62046, -73.98312)",,,1966 59 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4500197,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +02/04/2022,11:20,,,40.791557,-73.96848,"(40.791557, -73.96848)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4499849,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,16:20,BRONX,10466,40.8871,-73.8635,"(40.8871, -73.8635)",,,626 EAST 223 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4499740,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,11:05,MANHATTAN,10013,40.71592,-73.99933,"(40.71592, -73.99933)",BAYARD STREET,MULBERRY STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499870,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,19:30,BRONX,10451,40.8252,-73.91476,"(40.8252, -73.91476)",COURTLANDT AVENUE,EAST 162 STREET,,1,0,1,0,0,0,0,0,,,,,,4499561,,,,, +02/03/2022,16:52,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",QUEENS BOULEVARD,34 STREET,,1,0,1,0,0,0,0,0,,,,,,4499773,,,,, +02/03/2022,11:00,QUEENS,11101,40.748398,-73.94479,"(40.748398, -73.94479)",23 STREET,44 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499776,Sedan,,,, +02/02/2022,6:00,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499330,Sedan,Tractor Truck Diesel,,, +02/04/2022,8:00,QUEENS,11373,40.74314,-73.88334,"(40.74314, -73.88334)",,,81-21 BROADWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4499838,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,18:15,BRONX,10460,40.838013,-73.86859,"(40.838013, -73.86859)",,,1773 MANSION STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4499586,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,13:02,MANHATTAN,10004,40.704643,-74.00961,"(40.704643, -74.00961)",,,1 HANOVER SQUARE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4499603,Sedan,Box Truck,,, +02/04/2022,11:35,,,,,,FDR DRIVE,EAST 47 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499885,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/29/2022,20:45,BROOKLYN,11225,40.668564,-73.95342,"(40.668564, -73.95342)",,,216 ROGERS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,6:42,,,40.675117,-74.00962,"(40.675117, -74.00962)",OTSEGO STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499809,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,20:07,BROOKLYN,11215,40.668583,-73.97631,"(40.668583, -73.97631)",,,527 4 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499902,Sedan,,,, +02/02/2022,22:46,,,40.6992,-73.92309,"(40.6992, -73.92309)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499512,Sedan,,,, +02/03/2022,15:10,,,40.683094,-73.80576,"(40.683094, -73.80576)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4499715,Sedan,Tractor Truck Diesel,,, +02/04/2022,6:57,,,40.795383,-73.92994,"(40.795383, -73.92994)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Pavement Slippery,Pavement Slippery,Pavement Slippery,,4499987,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/29/2022,14:50,STATEN ISLAND,10312,40.547688,-74.19036,"(40.547688, -74.19036)",,,729 WOODROW ROAD,1,0,1,0,0,0,0,0,Obstruction/Debris,,,,,4500024,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,16:33,BRONX,10466,40.889736,-73.83125,"(40.889736, -73.83125)",,,3939 DYRE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4500391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,6:58,,,,,,EAST 62 STREET,EAST 62 STREET & YORK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499950,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,19:00,,,40.691948,-73.93983,"(40.691948, -73.93983)",KOSCIUSZKO STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500327,Sedan,Sedan,,, +02/04/2022,23:00,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",CHURCH AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500136,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,11:40,BROOKLYN,11249,40.71004,-73.96853,"(40.71004, -73.96853)",SOUTH 8 STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500476,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/04/2022,1:57,,,40.704082,-73.81641,"(40.704082, -73.81641)",138 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500549,Dump,Sedan,Sedan,, +02/02/2022,16:56,BROOKLYN,11225,40.656773,-73.95533,"(40.656773, -73.95533)",,,138 WINTHROP STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Oversized Vehicle,,,,4499540,Sedan,Ambulance,,, +02/03/2022,21:00,BROOKLYN,11229,40.610096,-73.96138,"(40.610096, -73.96138)",AVENUE P,EAST 12 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4499825,,,,, +02/03/2022,19:35,MANHATTAN,10029,40.791046,-73.95138,"(40.791046, -73.95138)",EAST 102 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499965,Sedan,Sedan,,, +02/04/2022,7:12,BROOKLYN,11214,40.598465,-73.99145,"(40.598465, -73.99145)",,,70 BAY 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4499945,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +02/02/2022,16:04,BROOKLYN,11234,40.619423,-73.917244,"(40.619423, -73.917244)",,,2401 RALPH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500305,Station Wagon/Sport Utility Vehicle,,,, +02/06/2021,15:48,BROOKLYN,11210,40.62948,-73.94447,"(40.62948, -73.94447)",NEW YORK AVENUE,AVENUE I,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4500569,E-Bike,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,11:55,,,40.700546,-73.917076,"(40.700546, -73.917076)",IRVING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500014,Station Wagon/Sport Utility Vehicle,,,, +01/28/2022,17:40,BRONX,10467,40.88074,-73.88353,"(40.88074, -73.88353)",,,3407 JEROME AVENUE,1,0,1,0,0,0,0,0,,,,,,4499876,,,,, +02/05/2021,1:40,BROOKLYN,11212,40.66096,-73.91846,"(40.66096, -73.91846)",,,276 EAST 98 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500219,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,18:51,MANHATTAN,10016,40.7431,-73.974014,"(40.7431, -73.974014)",EAST 33 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4499977,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,16:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,11:00,,,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,SAINT MARKS AVENUE,,0,1,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500122,E-Bike,Bus,,, +01/31/2022,15:40,BROOKLYN,11216,40.675385,-73.95337,"(40.675385, -73.95337)",SAINT MARKS AVENUE,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500350,Sedan,,,, +02/04/2022,5:43,,,40.827,-73.84359,"(40.827, -73.84359)",ZEREGA AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4500009,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Garbage or Refuse, +02/04/2022,17:50,QUEENS,11418,40.705494,-73.82141,"(40.705494, -73.82141)",134 STREET,86 ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500556,Dump,Sedan,,, +02/03/2022,1:12,,,40.858986,-73.89382,"(40.858986, -73.89382)",EAST 187 STREET,WEBSTER AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4499593,Sedan,Sedan,,, +02/02/2022,8:00,,,40.751835,-73.82427,"(40.751835, -73.82427)",ELDER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499457,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,9:59,,,40.749607,-73.89687,"(40.749607, -73.89687)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4499374,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,16:21,QUEENS,11434,40.67253,-73.77119,"(40.67253, -73.77119)",137 AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4499662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,11:10,MANHATTAN,10023,40.776016,-73.98724,"(40.776016, -73.98724)",WEST END AVENUE,WEST 66 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4499728,Bus,Sedan,,, +02/02/2022,15:37,MANHATTAN,10013,40.72085,-74.00394,"(40.72085, -74.00394)",CANAL STREET,WOOSTER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499486,Sedan,Pick-up Truck,,, +02/02/2022,15:48,,,,,,SANDS STREET,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4499474,Sedan,Sedan,,, +02/03/2022,13:30,BRONX,10462,40.841694,-73.86477,"(40.841694, -73.86477)",,,1624 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4499683,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,7:46,,,40.85154,-73.918335,"(40.85154, -73.918335)",PALISADE PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499819,Sedan,Fire Truck,,, +02/02/2022,17:00,MANHATTAN,10034,40.8675,-73.92174,"(40.8675, -73.92174)",,,4926 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,16:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4499992,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,14:20,,,40.73448,-73.92243,"(40.73448, -73.92243)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500068,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +01/31/2022,14:00,BROOKLYN,11209,40.631462,-74.0278,"(40.631462, -74.0278)",3 AVENUE,BAY RIDGE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499913,,,,, +01/31/2022,14:56,MANHATTAN,10032,40.837406,-73.93924,"(40.837406, -73.93924)",,,505 WEST 164 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500268,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,20:30,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",AVENUE I,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4499533,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,18:30,BRONX,10459,40.830135,-73.89088,"(40.830135, -73.89088)",FREEMAN STREET,HOE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499566,Sedan,,,, +02/04/2022,0:15,BROOKLYN,11225,40.666084,-73.94722,"(40.666084, -73.94722)",,,366 CROWN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4499790,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,16:30,,,40.761585,-73.76086,"(40.761585, -73.76086)",NORTHERN BOULEVARD,220 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499761,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,6:26,,,40.766716,-73.928566,"(40.766716, -73.928566)",23 STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4499866,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/03/2022,9:25,BROOKLYN,11234,40.616222,-73.91347,"(40.616222, -73.91347)",,,2040 EAST 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500039,Garbage or Refuse,Sedan,,, +02/03/2022,20:03,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",VANDAM STREET,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4499881,Sedan,,,, +02/02/2022,16:20,BRONX,10459,40.82636,-73.89884,"(40.82636, -73.89884)",EAST 167 STREET,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499581,Pick-up Truck,Sedan,,, +02/01/2022,20:00,BRONX,10472,40.82822,-73.87133,"(40.82822, -73.87133)",,,1157 FTELEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500019,Sedan,,,, +02/04/2022,13:35,QUEENS,11372,40.751793,-73.88455,"(40.751793, -73.88455)",,,82-00 35 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4499898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +02/02/2022,23:03,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4499518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/03/2022,19:38,,,40.792362,-73.96418,"(40.792362, -73.96418)",CENTRAL PARK WEST,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4499853,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/04/2022,8:22,BROOKLYN,11201,40.697605,-73.98447,"(40.697605, -73.98447)",,,165 CONCORD STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4500374,Sedan,Bike,,, +02/04/2022,11:58,BROOKLYN,11226,40.650387,-73.95872,"(40.650387, -73.95872)",CHURCH AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500152,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,18:55,,,40.75225,-73.702095,"(40.75225, -73.702095)",UNION TURNPIKE,HEWLETT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,8:35,BROOKLYN,11232,40.643707,-73.99744,"(40.643707, -73.99744)",43 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500193,,,,, +01/24/2022,10:00,BROOKLYN,11213,40.67004,-73.93658,"(40.67004, -73.93658)",TROY AVENUE,LINCOLN PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500340,Sedan,,,, +02/04/2022,18:15,,,40.875256,-73.84342,"(40.875256, -73.84342)",KINGSLAND AVENUE,,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4500415,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,17:11,BRONX,10462,40.852375,-73.86582,"(40.852375, -73.86582)",HOLLAND AVENUE,BRADY AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4500046,Snow Plow,,,, +02/03/2022,15:14,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4499756,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,11:00,QUEENS,11103,40.758972,-73.91901,"(40.758972, -73.91901)",STEINWAY STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500240,Sedan,Bus,,, +02/02/2022,17:55,MANHATTAN,10004,40.702408,-74.01283,"(40.702408, -74.01283)",WHITEHALL STREET,STATE STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500056,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,13:30,QUEENS,11355,40.746815,-73.826164,"(40.746815, -73.826164)",,,56-45 MAIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4499908,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,21:14,BRONX,10451,40.82052,-73.92136,"(40.82052, -73.92136)",,,655 MORRIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500524,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,17:26,BROOKLYN,11215,40.666737,-73.991745,"(40.666737, -73.991745)",4 AVENUE,15 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4499766,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/02/2022,17:30,,,40.7615,-73.997826,"(40.7615, -73.997826)",11 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4499553,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,17:00,BRONX,10472,40.82731,-73.857834,"(40.82731, -73.857834)",,,1953 CHATTERTON AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4500004,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,23:28,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504617,Sedan,Sedan,,, +02/21/2022,15:13,,,,,,LONG ISLAND EXPRESSWAY,GRAND CENTRAL PARKWAY,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4504606,Sedan,Pick-up Truck,,, +10/01/2021,16:33,,,40.671772,-73.93641,"(40.671772, -73.93641)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4463231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +09/29/2021,15:26,QUEENS,11377,40.753403,-73.90587,"(40.753403, -73.90587)",55 STREET,NORTHERN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4463391,Bus,Sedan,,, +11/01/2021,4:54,,,40.694,-73.92351,"(40.694, -73.92351)",EVERGREEN AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4472955,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,1:30,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4474668,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,20:00,QUEENS,11414,40.66544,-73.83519,"(40.66544, -73.83519)",COHANCY STREET,155 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4474985,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,11:00,BRONX,10462,40.832684,-73.85637,"(40.832684, -73.85637)",,,2026 NEWBOLD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476403,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,23:35,,,40.708374,-73.84271,"(40.708374, -73.84271)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477525,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,6:00,BROOKLYN,11209,40.622116,-74.03197,"(40.622116, -74.03197)",,,280 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477536,Station Wagon/Sport Utility Vehicle,,,, +10/25/2021,0:15,,,,,,BRONX WHITESTONE BRIDGE,,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4477504,Sedan,Sedan,,, +10/29/2021,11:00,,,,,,BRONX WHITESTONE BRIDGE,,,4,0,0,0,0,0,4,0,Following Too Closely,Unsafe Lane Changing,,,,4477506,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/08/2021,20:45,,,40.828114,-73.93107,"(40.828114, -73.93107)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477534,Tractor Truck Diesel,Sedan,,, +10/12/2021,21:30,BROOKLYN,11233,,,,Dean St,Mother gaston blvd,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4466753,Sedan,Sedan,Sedan,, +11/03/2021,20:30,BRONX,10465,40.820873,-73.82357,"(40.820873, -73.82357)",,,2755 DEWEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477507,Sedan,,,, +11/08/2021,14:45,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477533,Sedan,Sedan,Bus,, +11/12/2021,14:35,,,,,,ROCKAWAY FREEWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477515,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,15:58,BROOKLYN,11234,40.61232,-73.93172,"(40.61232, -73.93172)",FILLMORE AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476819,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/11/2021,16:19,BROOKLYN,11207,40.682545,-73.89234,"(40.682545, -73.89234)",,,264 HIGHLAND BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477289,Sedan,MOTOR SCOO,,, +11/10/2021,8:14,,,,,,freshpond road,59 drive,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477130,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,14:20,,,40.68316,-73.93809,"(40.68316, -73.93809)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476797,Sedan,,,, +11/10/2021,8:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,18:47,QUEENS,11101,40.74854,-73.94964,"(40.74854, -73.94964)",11 STREET,44 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476160,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/12/2021,11:05,,,40.61406,-74.08618,"(40.61406, -74.08618)",VANDERBILT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477050,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,16:00,QUEENS,11414,40.651608,-73.846695,"(40.651608, -73.846695)",84 STREET,163 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4476105,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,0:00,,,40.738403,-73.93864,"(40.738403, -73.93864)",30 STREET,BORDEN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476635,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,10:38,BROOKLYN,11220,40.641563,-74.003235,"(40.641563, -74.003235)",,,4907 8 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4476499,Bike,,,, +11/05/2021,9:58,BROOKLYN,11221,40.691555,-73.93677,"(40.691555, -73.93677)",LAFAYETTE AVENUE,LEWIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477197,Sedan,,,, +11/08/2021,18:00,,,40.669186,-73.87479,"(40.669186, -73.87479)",LOGAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477316,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,22:50,BRONX,10454,40.804783,-73.91184,"(40.804783, -73.91184)",,,259 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476478,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/12/2021,5:45,,,40.69854,-73.94116,"(40.69854, -73.94116)",,,MARCUS GARVEY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4476796,Sedan,,,, +11/11/2021,11:20,BROOKLYN,11213,40.667583,-73.94152,"(40.667583, -73.94152)",,,1423 PRESIDENT STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476358,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,23:07,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477290,Bike,,,, +11/10/2021,17:15,,,40.61103,-74.15682,"(40.61103, -74.15682)",AKRON STREET,DEBBIE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476674,Dump,Sedan,,, +11/09/2021,21:52,BRONX,10456,40.835808,-73.91437,"(40.835808, -73.91437)",,,232 EAST 169 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477455,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,9:09,BRONX,10474,40.816273,-73.89287,"(40.816273, -73.89287)",GARRISON AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476624,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,9:45,QUEENS,11362,40.74859,-73.73705,"(40.74859, -73.73705)",,,71-43 DOUGLASTON PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4476329,,,,, +11/10/2021,11:45,MANHATTAN,10021,40.76521,-73.953896,"(40.76521, -73.953896)",,,535 EAST 70 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477406,Bike,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,0:12,QUEENS,11423,40.725475,-73.76559,"(40.725475, -73.76559)",FRANCIS LEWIS BOULEVARD,MCLAUGHLIN AVENUE,,1,0,0,0,0,0,1,0,Brakes Defective,,,,,4475760,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,3:10,MANHATTAN,10013,40.723747,-74.00612,"(40.723747, -74.00612)",WATTS STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477080,Sedan,Sedan,Sedan,, +11/08/2021,16:02,BRONX,10465,40.832558,-73.8273,"(40.832558, -73.8273)",,,2909 OTIS AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4476855,Sedan,,,, +11/10/2021,15:00,QUEENS,11428,40.72644,-73.73577,"(40.72644, -73.73577)",,,221-71 92 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476089,Sedan,,,, +11/11/2021,0:00,QUEENS,11367,40.730305,-73.81465,"(40.730305, -73.81465)",,,154-02 71 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4476637,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/11/2021,15:55,,,40.701912,-73.93699,"(40.701912, -73.93699)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476505,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,10:10,,,40.80405,-73.91737,"(40.80405, -73.91737)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4476564,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/08/2021,8:40,BROOKLYN,11219,40.633053,-73.99522,"(40.633053, -73.99522)",,,5308 NEW UTRECHT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477482,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,16:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4476221,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,18:58,BROOKLYN,11205,40.689445,-73.95513,"(40.689445, -73.95513)",BEDFORD AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Oversized Vehicle,,,,4476679,Station Wagon/Sport Utility Vehicle,Bus,,, +11/09/2021,11:12,,,40.77447,-73.9924,"(40.77447, -73.9924)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4476738,Sedan,Taxi,,, +11/12/2021,16:51,STATEN ISLAND,10301,40.64352,-74.07616,"(40.64352, -74.07616)",SCHUYLER STREET,RICHMOND TERRACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477052,Sedan,,,, +11/10/2021,9:38,BRONX,10474,40.812305,-73.89637,"(40.812305, -73.89637)",GARRISON AVENUE,LEGGETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Oversized Vehicle,,,,4476130,Van,Bus,,, +11/11/2021,8:02,MANHATTAN,10023,40.77548,-73.98022,"(40.77548, -73.98022)",WEST 69 STREET,COLUMBUS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4476890,PK,,,, +11/12/2021,11:43,BROOKLYN,11233,40.67392,-73.91012,"(40.67392, -73.91012)",BERGEN STREET,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476999,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/11/2021,9:36,MANHATTAN,10018,40.754707,-73.99164,"(40.754707, -73.99164)",8 AVENUE,WEST 38 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4476304,Convertible,Tanker,,, +11/10/2021,17:50,,,40.828617,-73.84217,"(40.828617, -73.84217)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476401,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,20:00,QUEENS,11420,40.668724,-73.82145,"(40.668724, -73.82145)",LEFFERTS BOULEVARD,149 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476447,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,6:22,BROOKLYN,11204,40.613895,-73.99219,"(40.613895, -73.99219)",19 AVENUE,72 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477023,Sedan,E-Bike,,, +11/10/2021,4:45,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475864,Station Wagon/Sport Utility Vehicle,,,, +10/31/2021,15:34,BROOKLYN,11206,40.697422,-73.93796,"(40.697422, -73.93796)",LEWIS AVENUE,STOCKTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477244,Sedan,,,, +11/05/2021,15:59,,,40.767418,-73.7906,"(40.767418, -73.7906)",33 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476605,Sedan,Sedan,,, +11/10/2021,12:05,BRONX,10454,40.809246,-73.92321,"(40.809246, -73.92321)",,,357 EAST 138 STREET,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4476139,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/11/2021,17:06,MANHATTAN,10016,40.74954,-73.97744,"(40.74954, -73.97744)",LEXINGTON AVENUE,EAST 39 STREET,,1,0,0,0,1,0,0,0,Passing Too Closely,Passing Too Closely,,,,4476356,Sedan,E-Bike,,, +11/11/2021,18:23,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476535,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,13:30,MANHATTAN,10009,40.72957,-73.98099,"(40.72957, -73.98099)",,,207 AVENUE A,0,0,0,0,0,0,0,0,Unspecified,,,,,4477256,Sedan,,,, +11/11/2021,18:10,BROOKLYN,11237,40.704308,-73.91924,"(40.704308, -73.91924)",WYCKOFF AVENUE,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476596,Bus,Sedan,,, +11/12/2021,0:00,,,,,,SOUTH CONDUIT AVENUE,146 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4476840,Sedan,Pick-up Truck,Sedan,, +11/12/2021,12:45,BROOKLYN,11234,40.611637,-73.91287,"(40.611637, -73.91287)",EAST 60 PLACE,STRICKLAND AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476667,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,22:10,,,40.64647,-74.01258,"(40.64647, -74.01258)",4 AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4476774,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,17:00,BROOKLYN,11201,40.68651,-73.989944,"(40.68651, -73.989944)",,,86 BERGEN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476391,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/11/2021,6:45,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4476876,Sedan,Box Truck,,, +11/10/2021,19:40,,,,,,97 STREET,DITMARS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476288,Sedan,Sedan,,, +11/11/2021,17:30,BRONX,10472,40.827183,-73.86011,"(40.827183, -73.86011)",,,1038 WHITE PLAINS ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476753,Sedan,Moped,,, +11/02/2021,18:30,BRONX,10460,40.839245,-73.8701,"(40.839245, -73.8701)",ROSEDALE AVENUE,BRONX RIVER AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4477226,E-Bike,,,, +11/10/2021,7:00,,,40.855614,-73.90352,"(40.855614, -73.90352)",CAMERON PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475892,Sedan,UNKNOWN,,, +11/07/2021,16:35,,,40.85901,-73.927635,"(40.85901, -73.927635)",HILLSIDE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476541,Sedan,,,, +11/12/2021,1:36,QUEENS,11416,40.682564,-73.85199,"(40.682564, -73.85199)",88 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476540,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,9:05,QUEENS,11354,40.763588,-73.83603,"(40.763588, -73.83603)",COLLEGE POINT BOULEVARD,35 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476039,Dump,Sedan,,, +11/07/2021,21:52,BRONX,10465,40.834076,-73.81937,"(40.834076, -73.81937)",,,1015 WILCOX AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476689,Sedan,,,, +11/12/2021,14:15,QUEENS,11375,40.7243,-73.84517,"(40.7243, -73.84517)",108 STREET,69 ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476706,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,11:40,BROOKLYN,11211,40.7118,-73.94224,"(40.7118, -73.94224)",HUMBOLDT STREET,GRAND STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4476167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,7:17,QUEENS,11101,40.75267,-73.93641,"(40.75267, -73.93641)",28 STREET,40 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476656,Pick-up Truck,E-Scooter,,, +11/11/2021,9:00,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477116,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,1:32,QUEENS,11102,40.768017,-73.92536,"(40.768017, -73.92536)",,,30-19 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476972,Sedan,,,, +11/12/2021,11:40,,,40.857708,-73.9043,"(40.857708, -73.9043)",BUCHANAN PLACE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4476628,Station Wagon/Sport Utility Vehicle,Bike,,, +10/22/2021,18:30,MANHATTAN,10033,,,,,,617 WEST 179 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477135,Sedan,Sedan,,, +11/12/2021,23:47,QUEENS,11354,40.75847,-73.83331,"(40.75847, -73.83331)",,,133-20 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4476922,Station Wagon/Sport Utility Vehicle,Sedan,E-Bike,, +11/11/2021,8:15,,,40.58667,-73.966156,"(40.58667, -73.966156)",OCEAN PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477034,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/08/2021,13:00,BROOKLYN,11208,40.665314,-73.86846,"(40.665314, -73.86846)",STANLEY AVENUE,PINE STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4477320,Sedan,E-Bike,,, +08/24/2021,18:00,BRONX,10456,40.830738,-73.9105,"(40.830738, -73.9105)",WEBSTER AVENUE,EAST 167 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477428,,,,, +11/10/2021,18:16,BROOKLYN,11217,40.681503,-73.974236,"(40.681503, -73.974236)",6 AVENUE,DEAN STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476491,Sedan,Bike,,, +11/10/2021,15:20,,,40.651276,-73.94003,"(40.651276, -73.94003)",EAST 40 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476694,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,17:46,,,40.868694,-73.90237,"(40.868694, -73.90237)",WEST KINGSBRIDGE ROAD,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4476187,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/10/2021,7:00,,,40.750965,-73.94027,"(40.750965, -73.94027)",CRESCENT STREET,QUEENS PLAZA NORTH,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477365,Sedan,Sedan,,, +11/12/2021,18:00,BRONX,10454,40.80484,-73.912796,"(40.80484, -73.912796)",JACKSON AVENUE,EAST 138 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4476862,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,23:50,BROOKLYN,11226,40.64677,-73.95206,"(40.64677, -73.95206)",ROGERS AVENUE,TILDEN AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4477153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,6:20,,,40.732243,-73.87013,"(40.732243, -73.87013)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476232,Tanker,Sedan,,, +11/11/2021,9:40,QUEENS,11418,40.69035,-73.84108,"(40.69035, -73.84108)",ATLANTIC AVENUE,104 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4476560,Chassis Cab,Sedan,,, +11/12/2021,1:40,BROOKLYN,11207,40.6649,-73.89306,"(40.6649, -73.89306)",LIVONIA AVENUE,NEW JERSEY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4477295,Sedan,Sedan,Sedan,Sedan, +11/10/2021,8:35,,,,,,EAST 169 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4476251,Ambulance,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +11/10/2021,8:45,BRONX,10462,40.854504,-73.867714,"(40.854504, -73.867714)",WHITE PLAINS ROAD,LYDIG AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476008,Sedan,,,, +11/12/2021,13:40,BROOKLYN,11231,40.67394,-73.99997,"(40.67394, -73.99997)",,,360 HAMILTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477091,Sedan,Pick-up Truck,,, +11/10/2021,13:41,BROOKLYN,11212,40.67024,-73.907005,"(40.67024, -73.907005)",PITKIN AVENUE,STONE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476959,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,14:49,BROOKLYN,11234,40.61919,-73.92302,"(40.61919, -73.92302)",AVENUE N,EAST 54 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477185,Bus,Sedan,,, +11/11/2021,17:48,,,40.755222,-73.96135,"(40.755222, -73.96135)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476573,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/10/2021,9:40,,,40.708168,-73.95067,"(40.708168, -73.95067)",UNION AVENUE,,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4475950,Sedan,E-Scooter,,, +11/11/2021,6:30,BROOKLYN,11218,40.644863,-73.97768,"(40.644863, -73.97768)",,,283 EAST 3 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477476,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/12/2021,14:55,BROOKLYN,11207,40.673378,-73.88585,"(40.673378, -73.88585)",PITKIN AVENUE,WARWICK STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477281,Station Wagon/Sport Utility Vehicle,Bus,,, +11/11/2021,7:55,STATEN ISLAND,10306,40.567947,-74.11528,"(40.567947, -74.11528)",,,482 CLAWSON STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4476427,Sedan,Sedan,,, +11/11/2021,19:45,QUEENS,11428,40.720592,-73.74913,"(40.720592, -73.74913)",212 STREET,91 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476440,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,23:40,BROOKLYN,11201,40.696243,-73.99004,"(40.696243, -73.99004)",CADMAN PLAZA EAST,TILLARY STREET,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,,,,,4476460,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,10:18,BROOKLYN,11225,40.666363,-73.95223,"(40.666363, -73.95223)",DEARBORN COURT,CROWN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476721,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,7:09,BROOKLYN,11237,40.709003,-73.92234,"(40.709003, -73.92234)",FLUSHING AVENUE,SCOTT AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4476592,Sedan,Sedan,Box Truck,Sedan, +11/10/2021,13:00,QUEENS,11101,40.757595,-73.94603,"(40.757595, -73.94603)",,,40-01 VERNON BOULEVARD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4475982,Sedan,Sedan,,, +11/10/2021,9:15,,,40.751747,-73.97081,"(40.751747, -73.97081)",2 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475955,Convertible,,,, +11/12/2021,8:50,QUEENS,11377,40.73725,-73.91799,"(40.73725, -73.91799)",50 AVENUE,48 STREET,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4476834,Box Truck,,,, +11/11/2021,16:20,MANHATTAN,10016,40.749664,-73.98158,"(40.749664, -73.98158)",MADISON AVENUE,EAST 37 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4476372,Bike,Sedan,,, +11/11/2021,15:26,BROOKLYN,11229,40.610226,-73.96015,"(40.610226, -73.96015)",,,1324 AVENUE P,1,0,0,0,1,0,0,0,Unspecified,,,,,4476545,E-Bike,,,, +11/10/2021,15:45,QUEENS,11432,40.711845,-73.78738,"(40.711845, -73.78738)",,,175-62 HILLSIDE AVENUE,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4476028,Sedan,,,, +11/12/2021,5:55,,,40.67818,-73.90911,"(40.67818, -73.90911)",FULTON STREET,TRUXTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476993,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/10/2021,8:46,BROOKLYN,11222,40.72626,-73.95522,"(40.72626, -73.95522)",DOBBIN STREET,MESEROLE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4475905,Sedan,Bus,,, +11/12/2021,15:30,QUEENS,11434,40.664326,-73.78007,"(40.664326, -73.78007)",145 ROAD,158 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,Unspecified,4476726,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/10/2021,17:45,BRONX,10456,40.82137,-73.90491,"(40.82137, -73.90491)",EAST 161 STREET,FOREST AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476250,Sedan,Sedan,,, +11/12/2021,9:30,QUEENS,11106,40.759884,-73.9368,"(40.759884, -73.9368)",21 STREET,36 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476976,Taxi,,,, +10/22/2021,12:57,,,40.83836,-73.92493,"(40.83836, -73.92493)",NELSON AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477097,Sedan,Bus,,, +11/11/2021,7:30,QUEENS,11370,40.77254,-73.88935,"(40.77254, -73.88935)",,,19-56 81 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476528,Pick-up Truck,,,, +11/12/2021,13:50,,,40.776188,-73.90596,"(40.776188, -73.90596)",36 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476660,Sedan,Sedan,,, +11/10/2021,16:05,QUEENS,11367,40.719357,-73.81799,"(40.719357, -73.81799)",78 ROAD,MAIN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476120,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,19:52,MANHATTAN,10027,40.81574,-73.95456,"(40.81574, -73.95456)",AMSTERDAM AVENUE,WEST 130 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476743,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,12:00,MANHATTAN,10036,40.759197,-73.98463,"(40.759197, -73.98463)",WEST 47 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476781,Pick-up Truck,,,, +11/12/2021,22:10,,,40.663605,-73.934395,"(40.663605, -73.934395)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477180,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/09/2021,20:10,BROOKLYN,11207,40.66239,-73.88594,"(40.66239, -73.88594)",HEGEMAN AVENUE,HENDRIX STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4477328,Bike,,,, +11/12/2021,8:20,MANHATTAN,10029,40.797447,-73.94671,"(40.797447, -73.94671)",MADISON AVENUE,EAST 112 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476942,Sedan,,,, +11/10/2021,17:30,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477038,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,18:39,BROOKLYN,11216,40.677574,-73.95548,"(40.677574, -73.95548)",DEAN STREET,FRANKLIN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477121,Bike,,,, +11/10/2021,16:02,BROOKLYN,11211,40.716778,-73.93635,"(40.716778, -73.93635)",MORGAN AVENUE,MASPETH AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476145,Station Wagon/Sport Utility Vehicle,Bike,,, +11/10/2021,12:57,BROOKLYN,11204,40.61599,-73.97726,"(40.61599, -73.97726)",,,2255 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476496,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,9:57,,,40.752995,-73.91068,"(40.752995, -73.91068)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477380,Sedan,E-Bike,,, +11/11/2021,19:20,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4476512,Sedan,Taxi,,, +11/10/2021,14:50,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476280,Sedan,,,, +11/12/2021,14:35,BROOKLYN,11206,40.708633,-73.948494,"(40.708633, -73.948494)",,,391 LORIMER STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4477439,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/12/2021,12:35,QUEENS,11101,40.74712,-73.94239,"(40.74712, -73.94239)",JACKSON AVENUE,44 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476698,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/09/2021,18:15,,,40.824184,-73.93723,"(40.824184, -73.93723)",WEST 149 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476616,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,12:00,,,40.60582,-73.9803,"(40.60582, -73.9803)",WEST 7 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476198,Sedan,Sedan,,, +11/11/2021,16:15,BRONX,10466,40.90152,-73.84695,"(40.90152, -73.84695)",BAYCHESTER AVENUE,EAST 241 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4477140,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +11/05/2021,21:31,BROOKLYN,11208,40.68086,-73.864685,"(40.68086, -73.864685)",FORBELL STREET,MC KINLEY AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4477299,E-Bike,,,, +11/12/2021,12:30,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476808,Box Truck,Flat Bed,,, +11/04/2021,15:40,BROOKLYN,11221,,,,,,10 Malcolm X boulevard,0,0,0,0,0,0,0,0,Unspecified,,,,,4477210,Sedan,,,, +11/10/2021,12:00,BRONX,10456,40.837864,-73.9114,"(40.837864, -73.9114)",MORRIS AVENUE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4476262,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/10/2021,8:00,,,40.736534,-73.85611,"(40.736534, -73.85611)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4475932,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/11/2021,22:00,BROOKLYN,11236,40.633892,-73.918816,"(40.633892, -73.918816)",,,1722 RALPH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476577,Sedan,,,, +11/12/2021,20:17,,,40.87656,-73.90436,"(40.87656, -73.90436)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477238,Sedan,,,, +11/10/2021,10:20,STATEN ISLAND,10301,40.639923,-74.08111,"(40.639923, -74.08111)",BENZIGER AVENUE,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4476019,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/03/2021,16:30,MANHATTAN,10065,40.76677,-73.97119,"(40.76677, -73.97119)",EAST 63 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4477469,Bus,Motorcycle,Taxi,, +11/10/2021,1:53,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4476096,Sedan,,,, +11/12/2021,15:39,STATEN ISLAND,10304,40.591022,-74.100914,"(40.591022, -74.100914)",RICHMOND ROAD,FOUR CORNERS ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4476763,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/10/2021,13:00,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",HYLAN BOULEVARD,NEW DORP LANE,,2,0,0,0,0,0,2,0,Following Too Closely,Other Vehicular,Unspecified,Unspecified,,4476422,Sedan,Pick-up Truck,Sedan,Sedan, +11/09/2021,14:12,QUEENS,11367,40.72866,-73.82278,"(40.72866, -73.82278)",MAIN STREET,70 ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477067,Sedan,Bike,,, +11/05/2021,14:10,,,40.844917,-73.926384,"(40.844917, -73.926384)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477261,Sedan,Tractor Truck Diesel,,, +11/11/2021,9:45,MANHATTAN,10022,40.759624,-73.970085,"(40.759624, -73.970085)",EAST 55 STREET,LEXINGTON AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476572,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/11/2021,5:35,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4476466,Sedan,Box Truck,,, +11/10/2021,15:00,,,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476186,Sedan,Sedan,,, +11/10/2021,16:52,,,40.66685,-73.8907,"(40.66685, -73.8907)",DUMONT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476322,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,16:40,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476428,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,12:15,QUEENS,11365,40.749687,-73.78785,"(40.749687, -73.78785)",48 AVENUE,192 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476604,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,13:00,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476041,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,19:50,MANHATTAN,10022,40.762913,-73.96981,"(40.762913, -73.96981)",EAST 59 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4476455,Bike,,,, +11/10/2021,15:15,,,40.787937,-73.81768,"(40.787937, -73.81768)",14 AVENUE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4476074,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/11/2021,12:32,QUEENS,11356,40.778603,-73.846115,"(40.778603, -73.846115)",23 AVENUE,COLLEGE POINT BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476383,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +11/10/2021,1:30,BRONX,10466,40.889954,-73.827576,"(40.889954, -73.827576)",,,3947 PROVOST AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4475962,Sedan,,,, +11/10/2021,7:59,,,40.757973,-73.98554,"(40.757973, -73.98554)",WEST 45 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476303,Taxi,,,, +11/12/2021,8:30,QUEENS,11365,40.73785,-73.78527,"(40.73785, -73.78527)",,,64-50 188 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476631,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,21:45,QUEENS,11433,40.69687,-73.78072,"(40.69687, -73.78072)",110 AVENUE,173 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,4477342,Sedan,Sedan,Sedan,LIMO,Sedan +11/09/2021,15:15,BRONX,10461,40.840027,-73.846245,"(40.840027, -73.846245)",,,2507 FRISBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476648,Bus,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,3:27,,,40.86028,-73.89405,"(40.86028, -73.89405)",MARION AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476209,Sedan,,,, +11/03/2021,10:15,BROOKLYN,11224,40.581062,-74.00071,"(40.581062, -74.00071)",BAY VIEW AVENUE,WEST 33 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477044,Sedan,unk,,, +11/07/2021,17:23,,,40.69603,-73.943535,"(40.69603, -73.943535)",,,MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inexperience,,,,4477101,Van,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,8:00,,,40.615765,-74.15234,"(40.615765, -74.15234)",,,397 WILLOW ROAD EAST,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4476242,Sedan,,,, +11/12/2021,16:56,BROOKLYN,11207,40.68708,-73.913895,"(40.68708, -73.913895)",BUSHWICK AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476747,Station Wagon/Sport Utility Vehicle,Van,,, +10/31/2021,5:00,,,40.744892,-73.77022,"(40.744892, -73.77022)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4476599,Sedan,,,, +11/11/2021,13:07,QUEENS,11368,40.760586,-73.84592,"(40.760586, -73.84592)",NORTHERN BOULEVARD,126 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476462,Tractor Truck Diesel,Sedan,,, +11/05/2021,16:24,,,40.759724,-73.92061,"(40.759724, -73.92061)",37 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4476532,Sedan,Garbage or Refuse,,, +11/10/2021,20:33,MANHATTAN,10022,40.75781,-73.97353,"(40.75781, -73.97353)",PARK AVENUE,EAST 51 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4476786,Sedan,,,, +11/11/2021,13:05,MANHATTAN,10016,40.7485,-73.974976,"(40.7485, -73.974976)",EAST 39 STREET,QUEENS MIDTOWN TUNNEL EXIT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476298,Sedan,Box Truck,,, +11/12/2021,13:45,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476823,Sedan,Sedan,,, +11/10/2021,9:17,BROOKLYN,11226,40.643246,-73.94877,"(40.643246, -73.94877)",NOSTRAND AVENUE,CLARENDON ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4476366,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,16:55,QUEENS,11362,40.765385,-73.74389,"(40.765385, -73.74389)",,,242-24 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476641,Sedan,Sedan,,, +11/09/2021,7:29,QUEENS,11385,40.703587,-73.88547,"(40.703587, -73.88547)",CENTRAL AVENUE,68 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477167,PK,,,, +11/10/2021,13:00,BROOKLYN,11221,40.700264,-73.9232,"(40.700264, -73.9232)",,,1386 DE KALB AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476113,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,17:57,BROOKLYN,11226,40.64997,-73.958626,"(40.64997, -73.958626)",,,892 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4476333,Sedan,Bike,,, +11/10/2021,19:00,,,40.818504,-73.91448,"(40.818504, -73.91448)",3 AVENUE,EAST 153 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4476140,E-Bike,,,, +11/12/2021,12:30,,,,,,SPRINGFIELD BOULEVARD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476670,Bus,,,, +11/07/2021,15:00,BROOKLYN,11206,40.70739,-73.95054,"(40.70739, -73.95054)",SOUTH 4 STREET,UNION AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477400,Sedan,Bike,,, +11/11/2021,11:33,BROOKLYN,11217,40.68039,-73.974625,"(40.68039, -73.974625)",,,65 6 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4476500,Sedan,Sedan,,, +11/12/2021,16:34,,,40.688904,-73.980934,"(40.688904, -73.980934)",FULTON STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476730,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/11/2021,0:50,QUEENS,11418,40.701218,-73.81622,"(40.701218, -73.81622)",,,89-00 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476084,Taxi,Sedan,,, +11/12/2021,4:20,BROOKLYN,11211,40.71721,-73.93471,"(40.71721, -73.93471)",VANDERVORT AVENUE,MASPETH AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476506,Tractor Truck Diesel,,,, +11/12/2021,23:22,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477466,Sedan,,,, +11/12/2021,7:10,BRONX,10469,40.87752,-73.85862,"(40.87752, -73.85862)",,,917 EAST 213 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477144,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,19:20,BROOKLYN,11208,40.682228,-73.8697,"(40.682228, -73.8697)",,,3443 ATLANTIC AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477312,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,8:40,QUEENS,11366,40.726086,-73.8018,"(40.726086, -73.8018)",76 AVENUE,167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476636,Garbage or Refuse,,,, +11/12/2021,0:25,QUEENS,11361,40.75433,-73.77956,"(40.75433, -73.77956)",,,46-34 202 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4476759,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,10:10,BRONX,10474,40.821095,-73.88732,"(40.821095, -73.88732)",,,940 BRYANT AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477488,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,23:00,BRONX,10457,40.84953,-73.89012,"(40.84953, -73.89012)",,,2119 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477061,Sedan,,,, +11/10/2021,16:35,BRONX,10475,40.87609,-73.833435,"(40.87609, -73.833435)",,,140 DONIZETTI PLACE,1,0,1,0,0,0,0,0,,,,,,4476174,,,,, +11/12/2021,14:25,QUEENS,11354,40.76027,-73.83049,"(40.76027, -73.83049)",MAIN STREET,39 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4476899,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,15:45,,,40.586124,-73.990715,"(40.586124, -73.990715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476409,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,15:40,QUEENS,11361,40.760143,-73.77004,"(40.760143, -73.77004)",,,213-17 NORTHERN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,,,,,4476046,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,14:45,,,40.61018,-74.03548,"(40.61018, -74.03548)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476803,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,17:30,QUEENS,11379,40.71409,-73.87928,"(40.71409, -73.87928)",,,66-49 74 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,Unspecified,4477252,Sedan,Sedan,Sedan,Sedan,Sedan +10/27/2021,16:39,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4476912,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/06/2021,18:21,,,40.816883,-73.96265,"(40.816883, -73.96265)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477008,RGR,Taxi,,, +11/10/2021,12:10,BROOKLYN,11236,40.645294,-73.901,"(40.645294, -73.901)",,,1066 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476308,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,17:59,,,,,,BROOKVILLE BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476432,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/22/2021,11:00,BROOKLYN,11215,,,,1 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477448,Sedan,,,, +11/12/2021,22:26,BRONX,10463,40.88214,-73.904305,"(40.88214, -73.904305)",,,3246 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477232,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/12/2021,8:35,BRONX,10467,40.85799,-73.86201,"(40.85799, -73.86201)",,,815 PELHAM PARKWAY NORTH,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,16:04,QUEENS,11101,40.74118,-73.94229,"(40.74118, -73.94229)",49 AVENUE,27 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476153,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:30,MANHATTAN,10038,40.71,-74.00729,"(40.71, -74.00729)",,,123 FULTON STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477076,Sedan,Box Truck,,, +11/10/2021,15:00,,,40.833435,-73.94534,"(40.833435, -73.94534)",BROADWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4476552,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,18:30,QUEENS,11429,40.707306,-73.75122,"(40.707306, -73.75122)",FRANCIS LEWIS BOULEVARD,HOLLIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476092,Sedan,Tractor Truck Diesel,,, +11/10/2021,17:53,QUEENS,11101,40.73927,-73.933716,"(40.73927, -73.933716)",32 PLACE,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476154,Box Truck,,,, +10/31/2021,11:35,QUEENS,11372,40.755554,-73.885376,"(40.755554, -73.885376)",82 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4476846,Ambulance,,,, +11/01/2021,16:09,QUEENS,11377,40.75361,-73.90393,"(40.75361, -73.90393)",57 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,,,,4476567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,9:30,,,40.73937,-73.79189,"(40.73937, -73.79189)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476131,Pick-up Truck,Sedan,,, +11/11/2021,17:05,MANHATTAN,10017,40.75332,-73.972595,"(40.75332, -73.972595)",EAST 46 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476352,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:00,QUEENS,11358,40.755566,-73.79172,"(40.755566, -73.79172)",189 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4476584,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,0:40,BROOKLYN,11206,40.707645,-73.947845,"(40.707645, -73.947845)",,,55 MESEROLE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,21:30,,,40.74498,-73.89325,"(40.74498, -73.89325)",41 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476387,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,23:24,BRONX,10470,40.901062,-73.86157,"(40.901062, -73.86157)",NEREID AVENUE,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4477202,Sedan,Sedan,,, +11/11/2021,23:46,MANHATTAN,10027,40.810974,-73.95098,"(40.810974, -73.95098)",,,305 WEST 126 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4476663,Sedan,Sedan,Sedan,Sedan,Sedan +11/11/2021,8:00,QUEENS,11354,40.766815,-73.83038,"(40.766815, -73.83038)",137 STREET,LATIMER PLACE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476683,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,18:25,,,40.759686,-73.77183,"(40.759686, -73.77183)",211 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476451,Sedan,,,, +11/10/2021,0:00,BROOKLYN,11225,40.66446,-73.954544,"(40.66446, -73.954544)",,,196 SULLIVAN PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476064,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,21:00,QUEENS,11423,40.714596,-73.76279,"(40.714596, -73.76279)",,,90-49 197 STREET,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4476292,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,22:55,,,40.680027,-73.83997,"(40.680027, -73.83997)",ROCKAWAY BOULEVARD,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476446,E-Bike,,,, +07/06/2022,16:39,QUEENS,11418,,,,,,88-06 VANWYCK EXPRESSWAY,1,0,0,0,0,0,0,0,Unspecified,,,,,4544468,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,8:40,BROOKLYN,11207,40.656693,-73.89464,"(40.656693, -73.89464)",DE WITT AVENUE,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476328,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,19:15,BRONX,10462,40.84409,-73.86571,"(40.84409, -73.86571)",,,1710 WHITE PLAINS ROAD,2,0,0,0,0,0,2,0,Other Vehicular,Following Too Closely,Unspecified,,,4476608,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/10/2021,6:12,BRONX,10467,40.881992,-73.8702,"(40.881992, -73.8702)",,,3547 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4475865,Box Truck,,,, +11/12/2021,9:25,BROOKLYN,11206,40.699657,-73.95121,"(40.699657, -73.95121)",,,565 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4477335,Dump,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,17:19,MANHATTAN,10016,40.74764,-73.97382,"(40.74764, -73.97382)",,,717 2 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Passing Too Closely,,,,4476357,Bus,Convertible,,, +11/10/2021,16:15,,,40.761993,-73.75849,"(40.761993, -73.75849)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476045,Sedan,,,, +11/12/2021,2:20,QUEENS,11430,,,,Nassau expressway,North hangar road,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4476536,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,12:10,QUEENS,11368,40.750717,-73.85877,"(40.750717, -73.85877)",ROOSEVELT AVENUE,108 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4476134,Bike,Sedan,,, +11/10/2021,16:30,BRONX,10457,40.842384,-73.903915,"(40.842384, -73.903915)",,,1650 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4476668,Sedan,moped,,, +11/12/2021,8:15,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4477409,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,15:50,,,40.691307,-73.91326,"(40.691307, -73.91326)",CENTRAL AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,,,,,4476595,Bike,,,, +11/01/2021,7:29,,,,,,BRONX WHITESTONE BRIDGE,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,,,,4476877,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,19:00,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476392,Station Wagon/Sport Utility Vehicle,Bus,,, +11/11/2021,18:00,,,40.779324,-73.775604,"(40.779324, -73.775604)",BELL BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4476685,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,0:45,QUEENS,11369,40.761703,-73.88175,"(40.761703, -73.88175)",87 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476847,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,19:45,QUEENS,11372,40.750732,-73.87312,"(40.750732, -73.87312)",94 STREET,ELMHURST AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476702,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,11:15,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477112,Sedan,,,, +10/30/2021,12:00,QUEENS,11103,40.76531,-73.908325,"(40.76531, -73.908325)",,,25-95 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477351,Sedan,Sedan,,, +11/11/2021,0:12,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4476085,Sedan,Sedan,,, +11/11/2021,9:10,BROOKLYN,11204,40.615993,-73.99717,"(40.615993, -73.99717)",17 AVENUE,73 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476286,Sedan,Box Truck,,, +11/07/2021,22:25,MANHATTAN,10017,40.755405,-73.97949,"(40.755405, -73.97949)",EAST 45 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477051,Sedan,,,, +11/06/2021,0:00,,,40.79293,-73.94791,"(40.79293, -73.94791)",EAST 106 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476537,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,14:15,BROOKLYN,11201,40.694813,-73.98328,"(40.694813, -73.98328)",JOHNSON STREET,GOLD STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476307,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,12:57,MANHATTAN,10036,40.759197,-73.98463,"(40.759197, -73.98463)",7 AVENUE,WEST 47 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4476522,Bike,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,16:58,BRONX,10465,40.818733,-73.81338,"(40.818733, -73.81338)",,,254 THROGS NECK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476690,Sedan,,,, +11/11/2021,0:28,,,,,,VANWYCK EXPRESSWAY,133 AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4476106,Tractor Truck Diesel,Sedan,,, +10/25/2021,18:00,QUEENS,11102,40.76541,-73.92151,"(40.76541, -73.92151)",,,30-40 32 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476971,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,9:00,,,40.687782,-73.91907,"(40.687782, -73.91907)",PUTNAM AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4544886,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/11/2021,13:30,BROOKLYN,11206,40.706596,-73.94309,"(40.706596, -73.94309)",GRAHAM AVENUE,JOHNSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476480,Bus,Sedan,,, +11/10/2021,10:06,QUEENS,11378,40.723213,-73.89412,"(40.723213, -73.89412)",69 STREET,CALDWELL AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,17:40,BROOKLYN,11207,40.67258,-73.89122,"(40.67258, -73.89122)",PITKIN AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477317,Sedan,Sedan,,, +11/12/2021,17:00,,,40.825413,-73.923485,"(40.825413, -73.923485)",GRAND CONCOURSE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4477450,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,20:00,,,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4477291,Sedan,Sedan,,, +11/12/2021,10:00,MANHATTAN,10003,40.7347,-73.98094,"(40.7347, -73.98094)",,,341 EAST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477031,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,9:51,,,40.702858,-73.863625,"(40.702858, -73.863625)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4477149,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,22:00,QUEENS,11361,40.76161,-73.760765,"(40.76161, -73.760765)",,,220-33 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4477084,Sedan,,,, +10/21/2021,20:46,,,,,,MOUNT EDEN PARKWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477444,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,15:55,BROOKLYN,11201,40.6898,-73.97805,"(40.6898, -73.97805)",,,116 DE KALB AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476441,Bus,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,11:55,QUEENS,11357,40.779037,-73.805115,"(40.779037, -73.805115)",CLINTONVILLE STREET,WILLETS POINT BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476382,Pick-up Truck,E-Bike,,, +11/12/2021,19:00,BROOKLYN,11209,40.617817,-74.03339,"(40.617817, -74.03339)",,,9406 3 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477227,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,12:01,BROOKLYN,11219,40.62764,-73.99657,"(40.62764, -73.99657)",60 STREET,NEW UTRECHT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476501,Sedan,,,, +11/10/2021,8:49,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4475960,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,13:35,BRONX,10466,40.888454,-73.84197,"(40.888454, -73.84197)",GRENADA PLACE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4475983,Taxi,,,, +11/11/2021,10:41,QUEENS,11423,40.72921,-73.781166,"(40.72921, -73.781166)",188 STREET,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476754,Sedan,Van,,, +11/10/2021,18:50,,,40.670666,-73.80103,"(40.670666, -73.80103)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476202,Sedan,Box Truck,,, +11/05/2021,17:30,BROOKLYN,11226,40.652412,-73.95423,"(40.652412, -73.95423)",,,123 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477143,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,15:49,,,40.68668,-73.97937,"(40.68668, -73.97937)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476717,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,8:45,,,40.609226,-73.94939,"(40.609226, -73.94939)",QUENTIN ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476548,Sedan,Sedan,,, +11/11/2021,9:30,QUEENS,11428,40.716057,-73.745255,"(40.716057, -73.745255)",,,212-61 JAMAICA AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476436,Sedan,,,, +11/10/2021,19:10,QUEENS,11428,40.71659,-73.74293,"(40.71659, -73.74293)",JAMAICA AVENUE,214 PLACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476059,Sedan,Sedan,,, +11/12/2021,7:38,BROOKLYN,11234,40.617523,-73.94222,"(40.617523, -73.94222)",NEW YORK AVENUE,AVENUE N,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476580,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,14:00,BRONX,10467,40.884842,-73.86416,"(40.884842, -73.86416)",,,635 EAST 220 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476267,Sedan,,,, +08/26/2021,0:00,,,40.804905,-73.91883,"(40.804905, -73.91883)",EAST 135 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476563,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:40,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476913,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,6:10,,,40.685463,-73.9506,"(40.685463, -73.9506)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,7:40,,,40.687935,-73.9154,"(40.687935, -73.9154)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476585,Sedan,Tractor Truck Diesel,,, +11/11/2021,7:45,,,40.823956,-73.877144,"(40.823956, -73.877144)",BRUCKNER BOULEVARD,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476400,Sedan,Box Truck,,, +11/12/2021,20:30,BROOKLYN,11223,40.59582,-73.98373,"(40.59582, -73.98373)",AVENUE U,86 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477100,LIMO,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,10:00,,,40.687546,-73.8208,"(40.687546, -73.8208)",123 STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4475934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,1:00,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476158,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,2:50,QUEENS,11101,40.73781,-73.929245,"(40.73781, -73.929245)",GREENPOINT AVENUE,37 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476212,Sedan,E-Scooter,,, +11/12/2021,20:50,QUEENS,11373,40.747086,-73.8813,"(40.747086, -73.8813)",,,40-44 GLEANE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477136,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,7:00,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476998,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,6:30,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475974,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,19:30,BROOKLYN,11228,40.618973,-74.00523,"(40.618973, -74.00523)",BAY RIDGE PARKWAY,14 AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4476095,Taxi,Sedan,,, +11/12/2021,22:05,BROOKLYN,11207,40.67937,-73.886444,"(40.67937, -73.886444)",FULTON STREET,ASHFORD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4477323,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/10/2021,21:00,BRONX,10474,40.822533,-73.88509,"(40.822533, -73.88509)",EDGEWATER ROAD,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476623,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,18:15,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476323,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,15:40,BROOKLYN,11206,0,0,"(0.0, 0.0)",MARCUS GARVEY BOULEVARD,WILLOUGHBY AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4477199,E-Bike,Sedan,,, +11/07/2021,17:30,QUEENS,11369,40.759525,-73.87947,"(40.759525, -73.87947)",,,31-14 89 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4476722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,10:20,MANHATTAN,10029,40.79439,-73.94151,"(40.79439, -73.94151)",,,232 EAST 111 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4476640,Sedan,Sedan,,, +11/10/2021,8:15,,,40.669712,-73.94774,"(40.669712, -73.94774)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476365,Sedan,Sedan,,, +11/11/2021,9:00,BROOKLYN,11234,40.61709,-73.91895,"(40.61709, -73.91895)",AVENUE O,EAST 58 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476281,Station Wagon/Sport Utility Vehicle,Van,,, +11/12/2021,5:55,MANHATTAN,10019,40.76779,-73.98754,"(40.76779, -73.98754)",,,444 WEST 56 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476517,E-Bike,Sedan,,, +11/10/2021,13:00,QUEENS,11416,40.68667,-73.84321,"(40.68667, -73.84321)",,,97-32 99 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476051,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,21:18,,,40.76536,-73.98759,"(40.76536, -73.98759)",9 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476788,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,17:33,QUEENS,11694,40.580894,-73.83989,"(40.580894, -73.83989)",NEWPORT AVENUE,BEACH 118 STREET,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4477257,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/18/2021,16:25,,,,,,NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4477208,ELECTRIC S,Sedan,,, +11/12/2021,8:50,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476591,Station Wagon/Sport Utility Vehicle,Dump,,, +11/10/2021,15:20,QUEENS,11420,40.676537,-73.807236,"(40.676537, -73.807236)",132 STREET,FOCH BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Passing or Lane Usage Improper,,,,4476101,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,7:40,,,40.829422,-73.9319,"(40.829422, -73.9319)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Reaction to Uninvolved Vehicle,,,,4476470,Box Truck,Box Truck,,, +10/29/2021,14:21,BROOKLYN,11203,40.657387,-73.945885,"(40.657387, -73.945885)",,,433 WINTHROP STREET,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476854,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,15:01,QUEENS,11433,40.688778,-73.786446,"(40.688778, -73.786446)",DILLON STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476739,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,19:25,,,,,,BRONX WHITESTONE BRIDGE,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4476678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,14:00,QUEENS,11379,40.713264,-73.87233,"(40.713264, -73.87233)",,,79-60 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477154,Sedan,Sedan,,, +10/30/2021,8:22,BROOKLYN,11208,40.676598,-73.88163,"(40.676598, -73.88163)",,,764 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Turning Improperly,,,,4477286,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,8:10,,,,,,WEST 155 STREET,HARLEM RIVER DRIVE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4476617,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,3:59,BRONX,10465,40.814575,-73.814896,"(40.814575, -73.814896)",EAST TREMONT AVENUE,SCHURZ AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476649,Garbage or Refuse,Taxi,,, +11/12/2021,14:31,STATEN ISLAND,10304,40.6228,-74.08526,"(40.6228, -74.08526)",BROAD STREET,VANDUZER STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477046,Sedan,Sedan,,, +11/12/2021,22:34,,,40.787914,-73.841965,"(40.787914, -73.841965)",126 STREET,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4476886,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/12/2021,11:30,MANHATTAN,10022,,,,EAST 53 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476707,Bus,Bike,,, +11/12/2021,17:45,,,40.66885,-73.91635,"(40.66885, -73.91635)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476960,Bus,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,14:35,BROOKLYN,11236,40.645283,-73.9025,"(40.645283, -73.9025)",,,1430 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476612,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,15:00,BROOKLYN,11211,40.71617,-73.95952,"(40.71617, -73.95952)",BEDFORD AVENUE,NORTH 4 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,17:20,,,,,,G.C.P. / L.I.E (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476465,Sedan,Sedan,,, +11/11/2021,18:07,BROOKLYN,11219,40.63803,-73.99258,"(40.63803, -73.99258)",46 STREET,12 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477479,Sedan,,,, +11/11/2021,18:04,STATEN ISLAND,10304,40.59922,-74.09173,"(40.59922, -74.09173)",RICHMOND ROAD,WEST FINGERBOARD ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4476423,Sedan,,,, +11/10/2021,18:40,MANHATTAN,10025,40.80117,-73.961464,"(40.80117, -73.961464)",WEST 109 STREET,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476311,Sedan,Sedan,,, +11/11/2021,17:57,,,40.618874,-74.13753,"(40.618874, -74.13753)",,,208 DICKIE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476675,Sedan,Box Truck,,, +11/11/2021,12:34,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477024,Sedan,Bike,,, +11/12/2021,17:15,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4476734,Sedan,Sedan,,, +11/12/2021,8:40,QUEENS,11357,40.785324,-73.80568,"(40.785324, -73.80568)",FRANCIS LEWIS BOULEVARD,LOCKE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476920,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,20:00,,,40.697582,-73.94965,"(40.697582, -73.94965)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477247,Sedan,,,, +11/10/2021,11:19,MANHATTAN,10075,40.772343,-73.95269,"(40.772343, -73.95269)",EAST 79 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476456,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,13:26,MANHATTAN,10029,40.786724,-73.94822,"(40.786724, -73.94822)",,,1774 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476828,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,7:44,BRONX,10454,40.803272,-73.918884,"(40.803272, -73.918884)",SAINT ANNS PLACE,BRUCKNER BOULEVARD,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4477438,Taxi,Sedan,,, +11/10/2021,9:25,BROOKLYN,11214,40.60242,-73.99459,"(40.60242, -73.99459)",86 STREET,BAY 29 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476192,Sedan,Sedan,,, +11/12/2021,0:00,BROOKLYN,11232,40.653282,-74.008766,"(40.653282, -74.008766)",3 AVENUE,40 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476775,Sedan,Sedan,,, +11/12/2021,13:45,BROOKLYN,11212,40.66381,-73.91117,"(40.66381, -73.91117)",DUMONT AVENUE,BRISTOL STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4476994,Sedan,Convertible,,, +11/08/2021,3:19,,,40.74091,-73.83727,"(40.74091, -73.83727)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4477487,Sedan,Sedan,,, +11/11/2021,18:50,,,,,,RIVERSIDE DRIVE,,,3,0,0,0,0,0,3,0,Unsafe Speed,Driver Inattention/Distraction,,,,4476559,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,6:07,,,40.719738,-73.78574,"(40.719738, -73.78574)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475886,Sedan,Sedan,,, +11/11/2021,1:50,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476259,Tractor Truck Diesel,,,, +10/22/2021,17:30,BROOKLYN,11203,,,,UTICA AVENUE,FARRAGUT ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4470277,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,7:50,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476544,Sedan,Sedan,,, +11/10/2021,8:30,,,40.59302,-73.793274,"(40.59302, -73.793274)",BEACH 64 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476029,PK,Sedan,,, +11/10/2021,11:30,MANHATTAN,10035,40.801765,-73.93723,"(40.801765, -73.93723)",EAST 122 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476511,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:04,,,40.60461,-73.99826,"(40.60461, -73.99826)",20 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476218,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,20:00,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,EASTERN PARKWAY,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476749,E-Bike,,,, +11/10/2021,7:55,BROOKLYN,11224,40.57557,-73.981224,"(40.57557, -73.981224)",SURF AVENUE,STILLWELL AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476166,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,8:38,BRONX,10471,40.892952,-73.89665,"(40.892952, -73.89665)",,,6035 BROADWAY,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4477237,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,17:15,,,40.64507,-73.95803,"(40.64507, -73.95803)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476770,Sedan,,,, +11/07/2021,21:30,BROOKLYN,11221,0,0,"(0.0, 0.0)",GREENE AVENUE,THROOP AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477093,Sedan,Sedan,,, +11/08/2021,22:00,QUEENS,11435,40.692078,-73.810196,"(40.692078, -73.810196)",,,137-21 LIBERTY AVENUE,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4476576,Sedan,Box Truck,,, +11/09/2021,8:50,QUEENS,11103,40.76248,-73.90732,"(40.76248, -73.90732)",48 STREET,28 AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4476655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/11/2021,22:00,BROOKLYN,11206,40.69497,-73.93958,"(40.69497, -73.93958)",,,730 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477220,Sedan,,,, +11/10/2021,23:50,BROOKLYN,11213,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476117,Sedan,,,, +11/11/2021,18:38,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",EAST 138 STREET,WILLIS AVENUE,,1,0,1,0,0,0,0,0,,,,,,4476469,E-Bike,,,, +11/12/2021,11:17,,,40.66172,-74.00011,"(40.66172, -74.00011)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476627,Sedan,Tractor Truck Diesel,,, +11/11/2021,16:10,BROOKLYN,11225,40.65694,-73.952614,"(40.65694, -73.952614)",,,216 WINTHROP STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476370,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,19:50,,,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,,,,4477280,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,12:50,QUEENS,11434,,,,156 STREET,140 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476644,Station Wagon/Sport Utility Vehicle,Bike,,, +11/10/2021,14:45,BROOKLYN,11222,40.72717,-73.937164,"(40.72717, -73.937164)",,,73 VAN DAM STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476144,Box Truck,Chassis Cab,,, +11/10/2021,14:33,,,40.668926,-73.88748,"(40.668926, -73.88748)",SCHENCK AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476318,Station Wagon/Sport Utility Vehicle,Bike,,, +11/10/2021,12:50,BROOKLYN,11215,40.676098,-73.98069,"(40.676098, -73.98069)",,,218 5 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4476489,Dump,Sedan,Tractor Truck Diesel,, +11/04/2021,23:00,QUEENS,11102,40.769657,-73.9309,"(40.769657, -73.9309)",,,30-50 14 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477378,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,18:00,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476710,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,17:00,BROOKLYN,11235,40.57568,-73.95518,"(40.57568, -73.95518)",BRIGHTWATER AVENUE,BRIGHTON 15 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477040,Sedan,Sedan,,, +11/10/2021,18:30,,,40.883736,-73.8308,"(40.883736, -73.8308)",REEDS MILL LANE,STEENWICK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476268,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,13:15,BROOKLYN,11235,40.58945,-73.960526,"(40.58945, -73.960526)",AVENUE Y,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4476693,Sedan,,,, +11/12/2021,19:40,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476861,Sedan,,,, +11/06/2021,18:00,BROOKLYN,11207,40.659702,-73.8786,"(40.659702, -73.8786)",WORTMAN AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477298,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,17:31,MANHATTAN,10024,40.78202,-73.97173,"(40.78202, -73.97173)",WEST 81 STREET,CENTRAL PARK WEST,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476896,Taxi,Motorcycle,,, +11/12/2021,11:50,QUEENS,11365,40.73169,-73.80509,"(40.73169, -73.80509)",164 STREET,JEWEL AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476632,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,23:05,BROOKLYN,11236,40.635475,-73.89156,"(40.635475, -73.89156)",AVENUE N,ROCKAWAY PARKWAY,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4476813,Sedan,Sedan,Sedan,Sedan, +11/12/2021,14:00,,,40.70789,-73.84652,"(40.70789, -73.84652)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,10:22,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476806,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,13:25,BRONX,10461,40.857414,-73.84662,"(40.857414, -73.84662)",,,1400 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476645,Ambulance,Sedan,,, +11/04/2021,17:45,QUEENS,11372,40.75053,-73.876884,"(40.75053, -73.876884)",90 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476746,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,20:18,,,40.77929,-73.98114,"(40.77929, -73.98114)",WEST 73 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476882,Taxi,,,, +11/11/2021,10:30,QUEENS,11691,40.602802,-73.745705,"(40.602802, -73.745705)",,,731 BEACH 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477471,Sedan,,,, +11/12/2021,13:00,,,40.70855,-73.78827,"(40.70855, -73.78827)",172 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476703,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,22:00,MANHATTAN,10016,40.741272,-73.97535,"(40.741272, -73.97535)",EAST 30 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476299,E-Bike,E-Bike,,, +11/04/2021,13:45,BRONX,10452,40.84506,-73.91309,"(40.84506, -73.91309)",EAST 174 STREET,TOWNSEND AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476949,Sedan,Sedan,,, +11/10/2021,21:15,,,,,,BELT PARKWAY,,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4476100,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,9:05,MANHATTAN,10019,40.7621,-73.97881,"(40.7621, -73.97881)",,,1330 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4476785,Station Wagon/Sport Utility Vehicle,Bus,,, +10/23/2021,22:45,,,,,,WEST 180 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477174,Sedan,,,, +11/10/2021,23:37,,,40.86967,-73.86527,"(40.86967, -73.86527)",ADEE AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4476549,Sedan,Sedan,,, +11/10/2021,18:30,MANHATTAN,10029,40.79505,-73.93317,"(40.79505, -73.93317)",EAST 116 STREET,PLEASANT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476825,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,13:20,BROOKLYN,11218,40.643463,-73.9849,"(40.643463, -73.9849)",,,136 TEHAMA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Alcohol Involvement,Unspecified,,,4477495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,16:00,BRONX,10452,40.843304,-73.91919,"(40.843304, -73.91919)",WEST 172 STREET,JESUP AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476941,Sedan,,,, +11/02/2021,11:15,,,40.76217,-73.7568,"(40.76217, -73.7568)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476671,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,9:30,QUEENS,11434,40.66503,-73.77696,"(40.66503, -73.77696)",,,144-57 166 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477016,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:14,BRONX,10469,40.85839,-73.856804,"(40.85839, -73.856804)",,,2205 WILLIAMSBRIDGE ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476839,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,8:50,BROOKLYN,11236,40.64793,-73.90679,"(40.64793, -73.90679)",,,901 EAST 96 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476613,Bus,Sedan,,, +11/11/2021,16:32,BRONX,10459,40.822697,-73.886444,"(40.822697, -73.886444)",,,1361 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4477492,Dump,,,, +11/11/2021,8:20,QUEENS,11105,40.773727,-73.89831,"(40.773727, -73.89831)",,,20-05 46 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476231,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,8:55,BROOKLYN,11207,40.66314,-73.88003,"(40.66314, -73.88003)",LINDEN BOULEVARD,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477318,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,17:27,BROOKLYN,11214,40.603054,-74.00825,"(40.603054, -74.00825)",CROPSEY AVENUE,BAY 17 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4476983,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,6:00,BRONX,10472,40.829536,-73.861176,"(40.829536, -73.861176)",,,1154 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475903,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,9:00,BROOKLYN,11222,40.723537,-73.9457,"(40.723537, -73.9457)",,,13 DIAMOND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476150,Sedan,,,, +11/12/2021,12:25,,,,,,CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4476725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/10/2021,10:06,QUEENS,11385,40.702164,-73.88967,"(40.702164, -73.88967)",,,71-21 65 PLACE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475995,Sedan,Sedan,,, +10/22/2021,13:00,BROOKLYN,11206,,,,FLUSHING AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477087,Pick-up Truck,Sedan,,, +11/09/2021,14:00,BROOKLYN,11203,40.658657,-73.93766,"(40.658657, -73.93766)",,,655 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476527,Sedan,,,, +11/12/2021,11:50,QUEENS,11358,40.765213,-73.78896,"(40.765213, -73.78896)",,,34-45 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476659,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,15:10,STATEN ISLAND,10306,40.56467,-74.1156,"(40.56467, -74.1156)",,,2754 HYLAN BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476762,Sedan,,,, +11/10/2021,21:57,QUEENS,11101,40.740543,-73.9382,"(40.740543, -73.9382)",HUNTERS POINT AVENUE,30 STREET,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Unspecified,,,,4476155,Station Wagon/Sport Utility Vehicle,ambulance,,, +11/10/2021,10:20,,,40.657837,-73.95033,"(40.657837, -73.95033)",NOSTRAND AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476063,Sedan,Sedan,Sedan,, +11/10/2021,15:24,,,40.72979,-73.948265,"(40.72979, -73.948265)",CALYER STREET,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4476149,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,8:00,BROOKLYN,11218,40.642204,-73.991936,"(40.642204, -73.991936)",41 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476494,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,11:45,BROOKLYN,11226,40.639256,-73.957924,"(40.639256, -73.957924)",,,600 EAST 21 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476332,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/10/2021,19:13,,,40.61111,-73.9526,"(40.61111, -73.9526)",KINGS HIGHWAY,EAST 21 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476112,Sedan,,,, +11/10/2021,21:10,,,40.84453,-73.901764,"(40.84453, -73.901764)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4476353,Taxi,Tractor Truck Diesel,,, +11/12/2021,21:30,BROOKLYN,11205,40.690693,-73.95728,"(40.690693, -73.95728)",DE KALB AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4477110,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,4:10,QUEENS,11417,40.673668,-73.84725,"(40.673668, -73.84725)",,,88-45 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4475776,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/08/2021,9:00,QUEENS,11433,40.70002,-73.801315,"(40.70002, -73.801315)",,,95-26 TUCKERTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477402,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,10:15,,,40.695072,-73.9901,"(40.695072, -73.9901)",CADMAN PLAZA EAST,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4476388,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/12/2021,15:00,,,40.61018,-74.03548,"(40.61018, -74.03548)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476802,Station Wagon/Sport Utility Vehicle,Taxi,Taxi,, +11/11/2021,12:50,BROOKLYN,11229,40.60728,-73.944214,"(40.60728, -73.944214)",AVENUE R,EAST 29 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476516,Sedan,Sedan,,, +11/07/2021,4:59,BROOKLYN,11216,40.677406,-73.9451,"(40.677406, -73.9451)",,,1417 PACIFIC STREET,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4477124,Sedan,Sedan,Sedan,, +11/11/2021,8:55,MANHATTAN,10017,40.751698,-73.97669,"(40.751698, -73.97669)",,,110 EAST 42 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476291,Station Wagon/Sport Utility Vehicle,Bike,,, +11/10/2021,18:00,,,40.80897,-73.94833,"(40.80897, -73.94833)",7 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476664,Station Wagon/Sport Utility Vehicle,Bike,,, +11/11/2021,19:36,BROOKLYN,11236,40.63931,-73.89432,"(40.63931, -73.89432)",EAST 98 STREET,AVENUE L,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476450,Sedan,,,, +11/11/2021,15:50,QUEENS,11412,40.695114,-73.75898,"(40.695114, -73.75898)",115 DRIVE,194 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4477338,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,7:33,BROOKLYN,11203,40.660233,-73.93712,"(40.660233, -73.93712)",TROY AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476697,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,15:19,,,40.719337,-73.985916,"(40.719337, -73.985916)",SUFFOLK STREET,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476842,Sedan,E-Scooter,,, +11/11/2021,16:00,BRONX,10458,40.855507,-73.88747,"(40.855507, -73.88747)",,,601 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477059,,,,, +11/11/2021,13:52,BROOKLYN,11223,40.595886,-73.98315,"(40.595886, -73.98315)",AVENUE U,WEST 12 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476554,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,16:00,BROOKLYN,11225,40.65664,-73.95776,"(40.65664, -73.95776)",,,35 WINTHROP STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476869,Sedan,Box Truck,,, +11/11/2021,15:35,QUEENS,11358,40.761448,-73.80288,"(40.761448, -73.80288)",163 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4476686,Sedan,,,, +11/11/2021,19:18,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",FLATBUSH AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4477445,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,17:15,MANHATTAN,10014,40.728603,-74.005325,"(40.728603, -74.005325)",VARICK STREET,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477075,Station Wagon/Sport Utility Vehicle,Van,,, +11/08/2021,8:45,,,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477113,Bike,Sedan,,, +11/12/2021,21:46,,,40.697803,-73.969734,"(40.697803, -73.969734)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4476742,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/05/2021,13:22,QUEENS,11369,40.76699,-73.88461,"(40.76699, -73.88461)",85 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4476848,Sedan,Sedan,,, +11/07/2021,1:04,QUEENS,11106,40.75855,-73.924866,"(40.75855, -73.924866)",34 AVENUE,34 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476975,Sedan,Sedan,,, +08/01/2021,23:20,BROOKLYN,11208,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,DREW STREET,,1,0,1,0,0,0,0,0,,,,,,4477285,,,,, +11/12/2021,9:15,BROOKLYN,11211,40.707592,-73.95555,"(40.707592, -73.95555)",BROADWAY,KEAP STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477352,Bus,,,, +11/09/2021,8:25,,,40.668667,-73.868324,"(40.668667, -73.868324)",LINDEN BOULEVARD,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4477313,E-Scooter,,,, +11/11/2021,8:26,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476437,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,8:38,QUEENS,11105,40.76935,-73.90235,"(40.76935, -73.90235)",,,22-18 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476568,Sedan,,,, +11/12/2021,3:00,QUEENS,11419,40.689827,-73.81291,"(40.689827, -73.81291)",133 STREET,105 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477461,Sedan,,,, +11/09/2021,13:52,STATEN ISLAND,10310,40.630527,-74.106445,"(40.630527, -74.106445)",,,480 FOREST AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477037,Sedan,,,, +11/10/2021,10:40,,,,,,ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476581,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,12:49,,,40.860954,-73.92651,"(40.860954, -73.92651)",NAGLE AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476669,Sedan,,,, +11/11/2021,20:11,,,40.692146,-73.919464,"(40.692146, -73.919464)",EVERGREEN AVENUE,,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4476586,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:00,BROOKLYN,11226,40.646244,-73.95201,"(40.646244, -73.95201)",,,976 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477147,Sedan,,,, +11/10/2021,12:51,,,40.850098,-73.9067,"(40.850098, -73.9067)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476213,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,11:17,STATEN ISLAND,10301,40.647163,-74.08811,"(40.647163, -74.08811)",,,456 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475967,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,8:45,,,40.67973,-73.75148,"(40.67973, -73.75148)",218 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4475976,Sedan,,,, +11/10/2021,9:20,BROOKLYN,11221,40.697186,-73.92884,"(40.697186, -73.92884)",HART STREET,EVERGREEN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4476176,Moped,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,11:30,,,40.74447,-73.911514,"(40.74447, -73.911514)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476386,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,10:27,BROOKLYN,11236,40.629402,-73.90417,"(40.629402, -73.90417)",,,1325 EAST 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476014,Sedan,Sedan,,, +11/12/2021,9:00,BROOKLYN,11221,40.685234,-73.92654,"(40.685234, -73.92654)",PATCHEN AVENUE,HANCOCK STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477219,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,4:30,BRONX,10462,40.852306,-73.86207,"(40.852306, -73.86207)",MULINER AVENUE,BRADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476205,Sedan,Sedan,,, +11/08/2021,14:10,MANHATTAN,10003,40.73664,-73.98473,"(40.73664, -73.98473)",,,233 3 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477029,Taxi,,,, +11/10/2021,14:35,STATEN ISLAND,10306,40.55882,-74.110634,"(40.55882, -74.110634)",ROBERTS DRIVE,MANILA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476406,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,14:00,QUEENS,11419,40.695396,-73.81656,"(40.695396, -73.81656)",132 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4476049,Sedan,Sedan,,, +11/09/2021,14:15,BROOKLYN,11203,40.64911,-73.9462,"(40.64911, -73.9462)",,,3320 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476729,Sedan,,,, +11/11/2021,6:44,,,40.8854,-73.89723,"(40.8854, -73.89723)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476246,Sedan,Sedan,,, +11/12/2021,10:16,BROOKLYN,11230,40.63529,-73.958206,"(40.63529, -73.958206)",OCEAN AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476908,Sedan,,,, +11/11/2021,22:26,MANHATTAN,10016,40.749603,-73.97951,"(40.749603, -73.97951)",EAST 38 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476435,Sedan,Sedan,,, +11/10/2021,7:15,BRONX,10467,40.86138,-73.869446,"(40.86138, -73.869446)",WARING AVENUE,BARKER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475925,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,10:16,MANHATTAN,10029,40.794464,-73.93964,"(40.794464, -73.93964)",2 AVENUE,EAST 112 STREET,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,,,,4476600,Sedan,Motorbike,,, +11/10/2021,10:00,,,40.59553,-73.99886,"(40.59553, -73.99886)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4476182,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,17:15,,,,,,,,19 Ditmars blvd,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4476531,Sedan,,,, +11/12/2021,19:08,,,40.59255,-73.9946,"(40.59255, -73.9946)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477005,Sedan,,,, +11/12/2021,2:40,MANHATTAN,10027,40.81161,-73.95249,"(40.81161, -73.95249)",,,359 WEST 126 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476757,Taxi,Sedan,,, +11/08/2021,15:05,QUEENS,11427,40.727222,-73.74681,"(40.727222, -73.74681)",89 AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476740,Sedan,Sedan,,, +11/11/2021,16:30,,,40.634354,-73.94202,"(40.634354, -73.94202)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477142,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,16:51,QUEENS,11377,40.735596,-73.89901,"(40.735596, -73.89901)",GARFIELD AVENUE,66 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476718,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,19:00,BROOKLYN,11208,40.68556,-73.87875,"(40.68556, -73.87875)",LOGAN STREET,ETNA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477301,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,19:55,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",OCEAN PARKWAY,DITMAS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477480,Station Wagon/Sport Utility Vehicle,Bike,,, +11/10/2021,16:00,,,40.608852,-74.15334,"(40.608852, -74.15334)",,,2800 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476237,Sedan,Sedan,,, +11/10/2021,18:45,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",RALPH AVENUE,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476579,Sedan,Sedan,,, +11/12/2021,10:17,QUEENS,11358,40.753914,-73.80674,"(40.753914, -73.80674)",46 AVENUE,160 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476916,Sedan,Sedan,,, +11/11/2021,9:00,MANHATTAN,10033,40.84491,-73.93324,"(40.84491, -73.93324)",AMSTERDAM AVENUE,WEST 176 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476558,Sedan,Bike,,, +11/12/2021,13:50,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4477004,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/10/2021,8:25,BROOKLYN,11233,40.67339,-73.91678,"(40.67339, -73.91678)",SARATOGA AVENUE,SAINT MARKS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4475937,Carry All,Sedan,,, +11/10/2021,13:04,,,,,,111 STREET,GRAND CENTRAL PARKWAY,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4476012,Sedan,Sedan,Sedan,Sedan,Dump +11/12/2021,14:15,BROOKLYN,11222,40.723003,-73.94502,"(40.723003, -73.94502)",HUMBOLDT STREET,DRIGGS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,22:45,MANHATTAN,10004,,,,WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477073,Sedan,,,, +11/10/2021,1:15,STATEN ISLAND,10305,40.58653,-74.09593,"(40.58653, -74.09593)",HUSSON STREET,BUEL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4476425,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/11/2021,17:10,,,40.60023,-73.9956,"(40.60023, -73.9956)",BAY PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4477026,Sedan,Bus,,, +11/09/2021,12:45,,,40.677574,-73.95548,"(40.677574, -73.95548)",DEAN STREET,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477250,Sedan,,,, +11/05/2021,21:32,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",DE KALB AVENUE,MARCUS GARVEY BOULEVARD,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4477150,Sedan,E-Bike,,, +11/12/2021,7:20,QUEENS,11432,40.70673,-73.806274,"(40.70673, -73.806274)",,,150-15 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476733,Ambulance,,,, +11/12/2021,22:04,,,,,,EAST 161 STREET,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476963,Sedan,Sedan,,, +11/04/2021,9:45,,,40.833813,-73.86275,"(40.833813, -73.86275)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476735,Sedan,Sedan,,, +11/11/2021,11:00,,,40.6674,-73.773636,"(40.6674, -73.773636)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476430,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,18:00,BROOKLYN,11206,40.704716,-73.950226,"(40.704716, -73.950226)",,,143 UNION AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4477451,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,14:45,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4476044,Sedan,Sedan,,, +11/10/2021,23:17,QUEENS,11373,40.74238,-73.88189,"(40.74238, -73.88189)",VIETOR AVENUE,BROADWAY,,1,0,1,0,0,0,0,0,,,,,,4476136,,,,, +11/10/2021,11:00,,,,,,STATEN ISLAND EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4476413,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,3:25,,,40.754974,-73.853096,"(40.754974, -73.853096)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476290,Sedan,Sedan,,, +11/10/2021,19:48,QUEENS,11372,40.74929,-73.88872,"(40.74929, -73.88872)",,,77-19 37 AVENUE,3,0,1,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476701,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,6:45,,,40.78866,-73.778625,"(40.78866, -73.778625)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476381,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,9:00,,,,,,COLLEGE POINT BOULEVARD,31 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475957,Pick-up Truck,,,, +11/11/2021,7:00,STATEN ISLAND,10312,40.54101,-74.18877,"(40.54101, -74.18877)",,,90 RAMONA AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4476569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,0:10,QUEENS,11369,40.759014,-73.86013,"(40.759014, -73.86013)",,,32-47 110 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476812,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,21:25,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",HOOK CREEK BOULEVARD,SUNRISE HIGHWAY,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476060,Sedan,,,, +11/11/2021,20:07,BRONX,10461,40.84642,-73.84839,"(40.84642, -73.84839)",,,1575 WILLIAMSBRIDGE ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Other Vehicular,,,,4476547,Station Wagon/Sport Utility Vehicle,50 CC Moto,,, +11/10/2021,6:34,QUEENS,11372,40.75644,-73.87701,"(40.75644, -73.87701)",NORTHERN BOULEVARD,91 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475898,Motorcycle,,,, +11/11/2021,3:40,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4476601,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,16:00,,,0,0,"(0.0, 0.0)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477395,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,20:07,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4476538,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/10/2021,7:50,BRONX,10458,40.866283,-73.89068,"(40.866283, -73.89068)",,,2710 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476032,Bus,Sedan,,, +11/12/2021,16:00,,,40.762276,-73.785126,"(40.762276, -73.785126)",39 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476728,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,10:30,MANHATTAN,10065,40.763733,-73.962074,"(40.763733, -73.962074)",EAST 64 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476452,Sedan,Bike,,, +11/11/2021,20:25,BROOKLYN,11210,40.636265,-73.94802,"(40.636265, -73.94802)",NOSTRAND AVENUE,FARRAGUT ROAD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476771,Sedan,E-Bike,,, +11/12/2021,17:26,BROOKLYN,11223,40.604218,-73.971886,"(40.604218, -73.971886)",,,482 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477099,Sedan,Sedan,,, +11/10/2021,9:49,BRONX,10465,40.819252,-73.80821,"(40.819252, -73.80821)",,,4201 THROGS NECK EXPRESSWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4476169,Sedan,Sedan,Sedan,, +11/12/2021,14:20,BRONX,10452,40.843555,-73.91533,"(40.843555, -73.91533)",,,1545 JEROME AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476970,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,18:18,,,40.869545,-73.87972,"(40.869545, -73.87972)",WEBSTER AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476654,Sedan,E-Scooter,,, +11/10/2021,7:22,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Oversized Vehicle,,,,4476025,Sedan,Box Truck,,, +11/11/2021,13:26,BRONX,10462,40.843666,-73.857285,"(40.843666, -73.857285)",,,1601 BRONXDALE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476622,Carry All,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,18:34,BROOKLYN,11211,40.71407,-73.954346,"(40.71407, -73.954346)",METROPOLITAN AVENUE,MARCY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476483,Sedan,Box Truck,,, +11/11/2021,13:15,,,40.621994,-73.94598,"(40.621994, -73.94598)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4476331,Sedan,,,, +11/11/2021,9:47,QUEENS,11354,,,,,,140-39 34th Ave,0,0,0,0,0,0,0,0,Unspecified,,,,,4477333,Sedan,,,, +11/11/2021,22:30,BROOKLYN,11213,40.67132,-73.9281,"(40.67132, -73.9281)",STERLING PLACE,ROCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477123,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,6:20,BROOKLYN,11222,40.72747,-73.94194,"(40.72747, -73.94194)",,,320 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476247,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,14:43,BRONX,10451,40.819317,-73.93032,"(40.819317, -73.93032)",EAST 149 STREET,RIVER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476947,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,17:19,BRONX,10451,40.821167,-73.91356,"(40.821167, -73.91356)",EAST 157 STREET,ELTON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477435,Sedan,,,, +11/11/2021,17:00,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476502,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,20:35,BRONX,10469,40.858574,-73.851234,"(40.858574, -73.851234)",PELHAM PARKWAY NORTH,THROOP AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4476696,Sedan,,,, +11/10/2021,21:50,BROOKLYN,11236,40.63193,-73.88763,"(40.63193, -73.88763)",,,2075 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476086,Sedan,Sedan,,, +11/10/2021,18:00,,,40.69152,-73.74708,"(40.69152, -73.74708)",120 AVENUE,NASHVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476201,Sedan,,,, +11/06/2021,22:30,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4476864,Sedan,Sedan,,, +11/11/2021,8:14,BROOKLYN,11212,40.66353,-73.913086,"(40.66353, -73.913086)",AMBOY STREET,DUMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477055,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,20:56,BROOKLYN,11219,40.633083,-74.00558,"(40.633083, -74.00558)",FORT HAMILTON PARKWAY,60 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477484,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/12/2021,12:07,STATEN ISLAND,10305,40.596848,-74.06206,"(40.596848, -74.06206)",LILY POND AVENUE,GUILFORD STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476761,Bus,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,18:37,BRONX,10457,40.845264,-73.890816,"(40.845264, -73.890816)",,,707 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4476256,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,10:45,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477297,Sedan,,,, +11/07/2021,2:00,QUEENS,11412,40.690918,-73.7623,"(40.690918, -73.7623)",117 ROAD,FARMERS BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4476562,Sedan,Sedan,,, +11/11/2021,6:47,,,40.753635,-73.91893,"(40.753635, -73.91893)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476228,Sedan,Motorcycle,,, +11/12/2021,0:00,,,40.663292,-73.92543,"(40.663292, -73.92543)",RUTLAND ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477155,Sedan,Bus,,, +11/10/2021,17:58,,,40.726357,-73.76388,"(40.726357, -73.76388)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4476123,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/25/2021,15:00,MANHATTAN,10024,40.788197,-73.97836,"(40.788197, -73.97836)",WEST 85 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476884,Sedan,Sedan,,, +11/10/2021,16:30,QUEENS,11412,40.70089,-73.75708,"(40.70089, -73.75708)",113 AVENUE,198 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476306,,,,, +11/11/2021,0:30,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4476398,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,8:33,MANHATTAN,10038,40.7103,-74.00106,"(40.7103, -74.00106)",,,375 PEARL STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4477095,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,14:20,,,40.694115,-73.79214,"(40.694115, -73.79214)",109 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476575,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,0:00,,,,,,,,71 WEST DRIVE,1,0,1,0,0,0,0,0,Unspecified,,,,,4476078,Bike,,,, +11/12/2021,14:40,BROOKLYN,11214,40.604435,-73.99485,"(40.604435, -73.99485)",84 STREET,21 AVENUE,,1,0,1,0,0,0,0,0,,,,,,4477010,,,,, +11/06/2021,0:38,QUEENS,11377,40.767933,-73.90402,"(40.767933, -73.90402)",GRAND CENTRAL PARKWAY,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4476533,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/10/2021,16:40,,,40.67134,-73.88195,"(40.67134, -73.88195)",LINWOOD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476324,Bus,Sedan,,, +11/11/2021,16:25,MANHATTAN,10029,40.79908,-73.94485,"(40.79908, -73.94485)",,,55 EAST 115 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4476518,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/06/2021,0:00,QUEENS,11360,40.774464,-73.78263,"(40.774464, -73.78263)",208 STREET,28 AVENUE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4476607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,20:20,,,40.764347,-73.82595,"(40.764347, -73.82595)",BOWNE STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476072,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,12:01,BROOKLYN,11205,40.69382,-73.96254,"(40.69382, -73.96254)",,,545 MYRTLE AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4476723,Sedan,Taxi,Sedan,, +11/10/2021,7:05,MANHATTAN,10035,40.80275,-73.93358,"(40.80275, -73.93358)",EAST 125 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475869,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,11:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476354,Chassis Cab,Sedan,,, +11/11/2021,8:00,QUEENS,11434,40.666626,-73.77386,"(40.666626, -73.77386)",,,144-14 176 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477015,Sedan,,,, +11/11/2021,12:30,MANHATTAN,10128,40.783447,-73.95269,"(40.783447, -73.95269)",,,1407 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4476457,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,8:30,MANHATTAN,10035,40.80594,-73.94263,"(40.80594, -73.94263)",,,2004 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476665,Sedan,Sedan,,, +11/12/2021,20:55,QUEENS,11694,40.579575,-73.854034,"(40.579575, -73.854034)",,,556 BEACH 133 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477258,Box Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/10/2021,12:58,,,40.625298,-74.15042,"(40.625298, -74.15042)",,,1846 FOREST AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4475986,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,8:30,MANHATTAN,10029,40.791782,-73.93851,"(40.791782, -73.93851)",,,2125 1 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476827,Sedan,,,, +11/12/2021,7:15,MANHATTAN,10004,40.704964,-74.01172,"(40.704964, -74.01172)",,,33 BEAVER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476590,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,18:00,QUEENS,11414,40.65736,-73.84046,"(40.65736, -73.84046)",160 AVENUE,92 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4476102,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,6:30,,,,,,NORTHERN BOULEVARD,CLEARVIEW EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476776,Sedan,,,, +11/11/2021,16:50,,,40.698544,-73.96236,"(40.698544, -73.96236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4476442,Sedan,Tractor Truck Diesel,,, +11/11/2021,19:15,QUEENS,11377,40.741863,-73.90751,"(40.741863, -73.90751)",QUEENS BOULEVARD,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476393,Sedan,Carry All,,, +11/10/2021,20:30,QUEENS,11423,40.717472,-73.761154,"(40.717472, -73.761154)",,,89-45 201 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476295,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,19:11,BRONX,10462,40.84247,-73.85335,"(40.84247, -73.85335)",EAST TREMONT AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476755,Sedan,MOPET,,, +11/01/2021,19:40,BRONX,10472,40.826527,-73.874886,"(40.826527, -73.874886)",STRATFORD AVENUE,WATSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477229,Sedan,,,, +11/11/2021,10:20,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477287,Sedan,Sedan,,, +11/11/2021,13:35,,,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476633,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,17:20,QUEENS,11373,40.737705,-73.88231,"(40.737705, -73.88231)",QUEENS BOULEVARD,51 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4477132,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/08/2021,6:56,,,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Alcohol Involvement,Unspecified,,,4476543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/12/2021,3:21,BRONX,10461,40.838104,-73.835014,"(40.838104, -73.835014)",EAST TREMONT AVENUE,CODDINGTON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4476650,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,9:45,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4476800,Sedan,Dump,,, +11/11/2021,18:50,STATEN ISLAND,10304,40.626003,-74.07525,"(40.626003, -74.07525)",BAY STREET,THOMPSON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477048,Sedan,,,, +11/11/2021,16:31,BRONX,10467,40.884014,-73.8791,"(40.884014, -73.8791)",EAST 212 STREET,DEKALB AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4476497,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/12/2021,9:48,BROOKLYN,11233,40.682137,-73.933876,"(40.682137, -73.933876)",,,318 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477221,Sedan,,,, +11/11/2021,14:30,MANHATTAN,10022,40.757122,-73.97192,"(40.757122, -73.97192)",LEXINGTON AVENUE,EAST 51 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unsafe Lane Changing,,,,4476523,Taxi,Sedan,,, +11/12/2021,14:43,,,40.694744,-73.785675,"(40.694744, -73.785675)",167 STREET,110 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476708,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,14:41,QUEENS,11355,40.75477,-73.82997,"(40.75477, -73.82997)",MAPLE AVENUE,FRAME PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476691,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,0:00,BRONX,10466,40.897488,-73.859375,"(40.897488, -73.859375)",,,4320 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4477137,Sedan,Sedan,Sedan,, +11/10/2021,18:55,BROOKLYN,11235,40.58786,-73.95527,"(40.58786, -73.95527)",EAST 14 STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476110,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/12/2021,9:09,,,40.69099,-73.98932,"(40.69099, -73.98932)",RED HOOK LANE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476766,Box Truck,Box Truck,,, +11/11/2021,17:24,QUEENS,11373,40.743378,-73.87432,"(40.743378, -73.87432)",,,91-07 43 AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476464,Sedan,E-Bike,,, +11/12/2021,6:10,BROOKLYN,11237,40.70153,-73.92314,"(40.70153, -73.92314)",KNICKERBOCKER AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,16:54,BROOKLYN,11211,40.7024,-73.95918,"(40.7024, -73.95918)",,,623 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476165,Station Wagon/Sport Utility Vehicle,Bus,,, +11/12/2021,21:45,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4477118,Tractor Truck Diesel,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/10/2021,12:00,BRONX,10469,40.86751,-73.83567,"(40.86751, -73.83567)",BARTOW AVENUE,BRUNER AVENUE,,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4476300,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,16:15,BROOKLYN,11212,40.67206,-73.9036,"(40.67206, -73.9036)",GLENMORE AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476995,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,16:53,,,40.758022,-73.981804,"(40.758022, -73.981804)",,,AVENUE OF THE AMERICAS,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476784,Station Wagon/Sport Utility Vehicle,MOped,,, +11/10/2021,19:47,BROOKLYN,11219,40.63063,-74.00923,"(40.63063, -74.00923)",FORT HAMILTON PARKWAY,65 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4476094,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/11/2021,0:00,QUEENS,11432,40.711857,-73.78742,"(40.711857, -73.78742)",,,175-35 HILLSIDE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476639,Sedan,Bike,,, +11/11/2021,16:30,BRONX,10475,40.879192,-73.83757,"(40.879192, -73.83757)",,,3400 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:10,BRONX,10456,,,,TELLER AVENUE,EAST 164 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476940,Tractor Truck Diesel,Sedan,,, +11/10/2021,0:00,,,40.58604,-74.16859,"(40.58604, -74.16859)",,,2500 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476676,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,14:39,,,40.725792,-74.01103,"(40.725792, -74.01103)",WEST STREET,CANAL STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4476053,Pick-up Truck,,,, +11/11/2021,16:35,QUEENS,11368,40.75815,-73.85675,"(40.75815, -73.85675)",,,112-24 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476337,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,8:30,,,40.65538,-73.9203,"(40.65538, -73.9203)",WILLMOHR STREET,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476364,Sedan,,,, +11/11/2021,14:00,BROOKLYN,11207,40.66102,-73.89353,"(40.66102, -73.89353)",,,643 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4477292,Sedan,,,, +10/26/2021,13:36,BROOKLYN,11215,40.66959,-73.9959,"(40.66959, -73.9959)",2 AVENUE,14 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477457,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,20:59,BRONX,10453,40.858707,-73.9037,"(40.858707, -73.9037)",JEROME AVENUE,EAST 183 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476794,Sedan,,,, +11/12/2021,18:00,BROOKLYN,11208,40.690987,-73.86903,"(40.690987, -73.86903)",GRANT AVENUE,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477322,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,20:00,BRONX,10473,40.8223,-73.873,"(40.8223, -73.873)",STORY AVENUE,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477065,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,19:28,MANHATTAN,10028,40.77656,-73.95271,"(40.77656, -73.95271)",EAST 84 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477410,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,23:55,,,40.840645,-73.84205,"(40.840645, -73.84205)",EAST TREMONT AVENUE,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4476857,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,0:00,,,40.70665,-73.95042,"(40.70665, -73.95042)",UNION AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4476191,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/11/2021,6:14,BROOKLYN,11231,40.68079,-73.99174,"(40.68079, -73.99174)",HOYT STREET,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476282,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,23:50,BROOKLYN,11225,40.667915,-73.95606,"(40.667915, -73.95606)",,,1593 BEDFORD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476116,Sedan,,,, +11/12/2021,1:30,QUEENS,11361,40.76532,-73.771904,"(40.76532, -73.771904)",BELL BOULEVARD,39 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476471,Sedan,Sedan,,, +11/09/2021,15:20,BROOKLYN,11236,40.63276,-73.912544,"(40.63276, -73.912544)",,,48 PAERDEGAT 1 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476618,Pick-up Truck,Bike,,, +11/12/2021,14:30,QUEENS,11414,40.66544,-73.83901,"(40.66544, -73.83901)",,,155-31 KILLARNEY STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4477374,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:10,BROOKLYN,11239,40.65094,-73.88494,"(40.65094, -73.88494)",,,1180 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477319,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,15:52,,,40.656475,-73.744934,"(40.656475, -73.744934)",BROOKVILLE BOULEVARD,147 ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476894,Sedan,Sedan,,, +11/11/2021,18:27,,,40.63256,-74.137375,"(40.63256, -74.137375)",,,382 PORT RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476677,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,21:32,BRONX,10459,40.82098,-73.89388,"(40.82098, -73.89388)",EAST 163 STREET,FOX STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4477490,Taxi,Sedan,Station Wagon/Sport Utility Vehicle,, +11/11/2021,0:25,,,40.82214,-73.930824,"(40.82214, -73.930824)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476151,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,20:55,MANHATTAN,10032,40.841152,-73.942696,"(40.841152, -73.942696)",,,177 FORT WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4476555,Sedan,Motorscooter,,, +11/11/2021,10:01,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4477452,Sedan,Bus,,, +11/12/2021,13:17,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477063,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,5:48,QUEENS,11379,40.715927,-73.87284,"(40.715927, -73.87284)",,,79-51 JUNIPER VALLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4477151,Sedan,,,, +11/10/2021,22:35,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476805,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/11/2021,15:19,,,,,,MAIN STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4476917,Pick-up Truck,Sedan,,, +11/11/2021,12:28,BROOKLYN,11231,40.68212,-74.00731,"(40.68212, -74.00731)",BOWNE STREET,VAN BRUNT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476405,Box Truck,Box Truck,,, +11/10/2021,7:40,BRONX,10463,,,,,,3001 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4477234,Sedan,,,, +11/03/2021,13:51,MANHATTAN,10040,40.856586,-73.933784,"(40.856586, -73.933784)",,,179 BENNETT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477088,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +08/09/2021,10:06,,,40.65807,-73.960434,"(40.65807, -73.960434)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4476611,Bus,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,14:50,BROOKLYN,11207,40.682556,-73.8882,"(40.682556, -73.8882)",JAMAICA AVENUE,WARWICK STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4477279,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,17:27,,,40.8617,-73.89139,"(40.8617, -73.89139)",EAST FORDHAM ROAD,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476310,E-Scooter,,,, +11/12/2021,19:11,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",DELANCEY STREET,ORCHARD STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476765,Taxi,E-Bike,,, +11/12/2021,8:30,,,40.84708,-73.86836,"(40.84708, -73.86836)",RHINELANDER AVENUE,AMETHYST STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4476550,Sedan,Sedan,,, +11/12/2021,10:00,QUEENS,11691,40.59843,-73.76658,"(40.59843, -73.76658)",,,32-21 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477498,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,3:05,QUEENS,11419,40.686565,-73.8223,"(40.686565, -73.8223)",,,104-50 121 STREET,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,,,4476445,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/10/2021,15:58,QUEENS,11101,,,,thompson avenue,court square,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476156,Motorbike,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,15:40,QUEENS,11101,40.745285,-73.94831,"(40.745285, -73.94831)",46 ROAD,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476719,Bus,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,12:40,QUEENS,11422,40.65636,-73.72958,"(40.65636, -73.72958)",147 ROAD,259 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476438,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,11:10,BROOKLYN,11207,40.65414,-73.88732,"(40.65414, -73.88732)",PENNSYLVANIA AVENUE,COZINE AVENUE,,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4476319,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,2:35,,,40.735764,-73.97491,"(40.735764, -73.97491)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475781,Sedan,Sedan,,, +11/11/2021,17:30,,,40.735336,-73.91689,"(40.735336, -73.91689)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:08,BRONX,10469,40.880707,-73.84022,"(40.880707, -73.84022)",,,3734 BOSTON ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477206,Pick-up Truck,Sedan,Pick-up Truck,, +11/12/2021,7:45,MANHATTAN,10027,40.806763,-73.94624,"(40.806763, -73.94624)",,,269 LENOX AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476661,Bus,Sedan,,, +11/10/2021,16:30,,,40.701958,-73.9239,"(40.701958, -73.9239)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476594,Sedan,Sedan,,, +11/11/2021,21:18,BROOKLYN,11237,40.692417,-73.902794,"(40.692417, -73.902794)",COOPER STREET,IRVING AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476587,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/11/2021,14:38,BROOKLYN,11219,40.624653,-73.99933,"(40.624653, -73.99933)",65 STREET,14 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476350,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/10/2021,6:45,,,,,,,,101 EAST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4476077,Bike,E-Bike,,, +11/11/2021,18:30,,,40.68285,-73.79902,"(40.68285, -73.79902)",144 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476836,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,13:20,QUEENS,11434,40.683098,-73.78432,"(40.683098, -73.78432)",LONG STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477340,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,15:50,,,40.609512,-73.98957,"(40.609512, -73.98957)",BAY RIDGE PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476215,Sedan,,,, +11/10/2021,6:54,,,40.658417,-73.76768,"(40.658417, -73.76768)",149 AVENUE,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,19:56,,,40.719368,-73.836006,"(40.719368, -73.836006)",113 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4476844,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,12:10,MANHATTAN,10025,40.792614,-73.96906,"(40.792614, -73.96906)",,,130 WEST 95 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476629,Sedan,,,, +11/12/2021,8:55,BROOKLYN,11204,40.615185,-73.98367,"(40.615185, -73.98367)",65 STREET,21 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476985,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,18:44,,,40.768707,-73.72889,"(40.768707, -73.72889)",CONCORD STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476870,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,4:58,QUEENS,11420,40.671196,-73.813896,"(40.671196, -73.813896)",133 AVENUE,125 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Pavement Defective,,,,4476582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,13:25,,,40.80704,-73.9698,"(40.80704, -73.9698)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476745,Sedan,Sedan,,, +11/10/2021,14:24,,,40.845467,-73.92813,"(40.845467, -73.92813)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4476206,Tractor Truck Diesel,Tractor Truck Diesel,,, +11/11/2021,16:20,,,40.778606,-73.84339,"(40.778606, -73.84339)",23 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476687,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,15:32,MANHATTAN,10065,40.764786,-73.96844,"(40.764786, -73.96844)",PARK AVENUE,EAST 62 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4477421,Sedan,Sedan,,, +11/12/2021,11:45,,,40.743767,-73.83748,"(40.743767, -73.83748)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477114,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,17:49,MANHATTAN,10024,40.78065,-73.976425,"(40.78065, -73.976425)",COLUMBUS AVENUE,WEST 77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476883,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,15:48,BRONX,10469,40.86544,-73.85579,"(40.86544, -73.85579)",ALLERTON AVENUE,LACONIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476849,Station Wagon/Sport Utility Vehicle,Moped,,, +11/05/2021,17:46,QUEENS,11435,40.704147,-73.807594,"(40.704147, -73.807594)",148 STREET,89 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476704,Sedan,Sedan,,, +11/10/2021,20:50,QUEENS,11103,40.76447,-73.91231,"(40.76447, -73.91231)",,,28-19 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477355,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,14:59,QUEENS,11103,40.765335,-73.90612,"(40.765335, -73.90612)",47 STREET,25 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4476530,Van,Sedan,,, +11/10/2021,15:20,BROOKLYN,11216,40.672527,-73.95026,"(40.672527, -73.95026)",NOSTRAND AVENUE,STERLING PLACE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476369,Bus,Sedan,,, +11/12/2021,23:38,MANHATTAN,10035,40.8032,-73.93466,"(40.8032, -73.93466)",,,252 EAST 125 STREET,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4476826,Sedan,Sedan,,, +11/11/2021,6:10,,,40.699715,-73.79869,"(40.699715, -73.79869)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476296,Box Truck,Sedan,,, +11/10/2021,21:00,QUEENS,11412,40.690704,-73.76049,"(40.690704, -73.76049)",118 AVENUE,190 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476643,Sedan,Sedan,,, +11/10/2021,23:53,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4476122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,12:56,QUEENS,11373,40.73675,-73.87768,"(40.73675, -73.87768)",QUEENS BOULEVARD,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,6:40,STATEN ISLAND,10301,40.613476,-74.09793,"(40.613476, -74.09793)",HOWARD AVENUE,MARTHA STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4477036,Sedan,Sedan,Sedan,, +11/12/2021,12:40,,,,,,PROSPECT STREET,JAY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4476777,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,14:10,,,40.70403,-73.81711,"(40.70403, -73.81711)",HILLSIDE AVENUE,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4476672,Sedan,Sedan,,, +11/08/2021,18:20,QUEENS,11432,40.70576,-73.80167,"(40.70576, -73.80167)",89 AVENUE,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477403,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,8:32,BROOKLYN,11204,40.615356,-73.976234,"(40.615356, -73.976234)",60 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476493,Taxi,,,, +11/10/2021,13:47,MANHATTAN,10065,40.766556,-73.96294,"(40.766556, -73.96294)",EAST 67 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476143,Convertible,Box Truck,,, +11/10/2021,15:00,MANHATTAN,10019,40.76479,-73.98429,"(40.76479, -73.98429)",WEST 54 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476510,Station Wagon/Sport Utility Vehicle,SPRINTER V,,, +11/12/2021,15:00,MANHATTAN,10016,40.749725,-73.98363,"(40.749725, -73.98363)",EAST 36 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477041,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,16:12,BROOKLYN,11236,40.64891,-73.89256,"(40.64891, -73.89256)",EAST 108 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476709,Sedan,,,, +10/14/2021,20:00,,,40.782887,-73.9439,"(40.782887, -73.9439)",FDR DRIVE,EAST 96 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4477468,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,15:45,MANHATTAN,10030,40.81985,-73.940384,"(40.81985, -73.940384)",,,2427 7 AVENUE,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,Unspecified,,,4476614,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/12/2021,20:20,,,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4477146,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,6:30,,,40.60353,-74.01863,"(40.60353, -74.01863)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4477172,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,8:30,BROOKLYN,11222,40.733665,-73.95573,"(40.733665, -73.95573)",,,153 GREEN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476276,Sedan,,,, +11/10/2021,15:32,,,,,,HUTCHINSON RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476172,Sedan,Sedan,,, +11/12/2021,0:00,MANHATTAN,10282,40.717922,-74.01542,"(40.717922, -74.01542)",,,34 RIVER TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477078,Sedan,,,, +11/10/2021,2:00,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476024,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,23:00,QUEENS,11358,40.753895,-73.79827,"(40.753895, -73.79827)",46 AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4476681,Sedan,,,, +11/12/2021,22:25,BRONX,10452,40.83611,-73.92238,"(40.83611, -73.92238)",GRANT HIGHWAY,JEROME AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4476965,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,14:25,,,40.743477,-73.73286,"(40.743477, -73.73286)",GRAND CENTRAL PKWY,,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4476713,Station Wagon/Sport Utility Vehicle,Bus,,, +10/21/2021,9:50,QUEENS,11414,,,,157 AVENUE,CROSS BAY BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4469467,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,8:30,,,40.774677,-73.98221,"(40.774677, -73.98221)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4476736,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,12:00,BRONX,10460,40.838577,-73.86916,"(40.838577, -73.86916)",,,1530 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477216,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/10/2021,18:22,,,,,,ELLINGTON PARKWAY,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476048,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/03/2021,17:45,QUEENS,11368,40.75415,-73.853424,"(40.75415, -73.853424)",114 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476810,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/11/2021,21:23,,,40.756367,-73.96012,"(40.756367, -73.96012)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476434,Sedan,,,, +11/10/2021,8:18,QUEENS,11375,40.711338,-73.85646,"(40.711338, -73.85646)",METROPOLITAN AVENUE,SELFRIDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475929,Sedan,Sedan,,, +11/09/2021,14:10,BRONX,10467,40.8585,-73.86783,"(40.8585, -73.86783)",BOSTON ROAD,THWAITES PLACE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4477242,Sedan,,,, +11/09/2021,12:09,,,40.830257,-73.914856,"(40.830257, -73.914856)",EAST 166 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476948,Sedan,,,, +11/10/2021,1:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4476414,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,18:34,,,40.707146,-73.927025,"(40.707146, -73.927025)",VARICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476183,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,10:00,,,40.84434,-73.91475,"(40.84434, -73.91475)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4476954,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,19:30,QUEENS,11105,40.77613,-73.910706,"(40.77613, -73.910706)",DITMARS BOULEVARD,31 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4477284,Motorcycle,Sedan,,, +11/12/2021,7:50,BRONX,10453,40.85038,-73.90699,"(40.85038, -73.90699)",EAST TREMONT AVENUE,CRESTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476570,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,8:00,,,40.60181,-73.760605,"(40.60181, -73.760605)",DICKENS STREET,OCEAN CREST BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477473,Sedan,,,, +02/06/2022,0:52,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,GRAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505022,Sedan,Sedan,,, +11/10/2021,18:39,QUEENS,11417,40.682262,-73.84514,"(40.682262, -73.84514)",WOODHAVEN BOULEVARD,103 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4476099,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/11/2021,8:00,BRONX,10454,40.81082,-73.91399,"(40.81082, -73.91399)",,,342 CRIMMINS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,19:14,BROOKLYN,11215,40.672222,-73.97383,"(40.672222, -73.97383)",8 AVENUE,CARROLL STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477446,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,11:55,,,40.596977,-73.97324,"(40.596977, -73.97324)",MC DONALD AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477019,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,15:51,,,40.804054,-73.91369,"(40.804054, -73.91369)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476565,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,14:18,,,40.78884,-73.81381,"(40.78884, -73.81381)",150 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4476385,Box Truck,,,, +11/12/2021,0:00,,,,,,QUEENSBORO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476449,Taxi,Sedan,Sedan,, +11/10/2021,10:30,QUEENS,11433,40.692547,-73.79391,"(40.692547, -73.79391)",,,109-34 157 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476026,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,13:30,MANHATTAN,10017,40.750763,-73.97445,"(40.750763, -73.97445)",EAST 42 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476055,Sedan,Pick-up Truck,,, +11/10/2021,17:45,BRONX,10468,40.857758,-73.90095,"(40.857758, -73.90095)",CRESTON AVENUE,EAST 183 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4476284,Sedan,Bike,,, +11/12/2021,22:10,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",BRUCKNER BOULEVARD,EAST 149 STREET,,4,0,0,0,0,0,4,0,Unspecified,Unspecified,,,,4476865,Sedan,Tractor Truck Diesel,,, +11/10/2021,13:50,,,40.604645,-74.16238,"(40.604645, -74.16238)",RICHMOND AVENUE,ETON PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476238,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,17:25,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",BOWERY,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477108,Sedan,,,, +11/11/2021,8:31,BROOKLYN,11222,40.72588,-73.941696,"(40.72588, -73.941696)",KINGSLAND AVENUE,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476248,Sedan,Sedan,,, +11/11/2021,17:34,,,40.83501,-73.91206,"(40.83501, -73.91206)",COLLEGE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476473,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/11/2021,17:59,,,40.693874,-73.91777,"(40.693874, -73.91777)",CENTRAL AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476597,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,1:25,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4475918,Sedan,,,, +11/08/2021,20:04,QUEENS,11427,40.73044,-73.74377,"(40.73044, -73.74377)",,,220-05 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476741,Sedan,Sedan,,, +11/10/2021,10:01,,,40.66188,-73.94557,"(40.66188, -73.94557)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476526,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,3:44,,,40.756874,-73.94436,"(40.756874, -73.94436)",,,40 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476974,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/12/2021,13:30,,,40.752197,-73.726135,"(40.752197, -73.726135)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4476658,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,20:00,MANHATTAN,10016,40.748985,-73.979965,"(40.748985, -73.979965)",PARK AVENUE,EAST 37 STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477184,Taxi,Bike,,, +11/10/2021,9:30,BRONX,10451,40.82273,-73.91934,"(40.82273, -73.91934)",,,3050 PARK AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4476619,Sedan,,,, +11/10/2021,9:16,,,,,,CORNAGA AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476147,Bus,Box Truck,,, +11/11/2021,0:00,BROOKLYN,11238,40.67752,-73.972725,"(40.67752, -73.972725)",PARK PLACE,FLATBUSH AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4476487,Sedan,Pick-up Truck,,, +11/12/2021,8:00,,,40.743008,-73.77758,"(40.743008, -73.77758)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476626,Pick-up Truck,Sedan,,, +11/06/2021,9:40,QUEENS,11435,40.715183,-73.82325,"(40.715183, -73.82325)",135 STREET,COOLIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476732,Sedan,Sedan,,, +11/12/2021,14:10,BROOKLYN,11206,40.708767,-73.94004,"(40.708767, -73.94004)",,,204 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477443,Station Wagon/Sport Utility Vehicle,Bus,,, +11/12/2021,10:50,,,40.675053,-73.947235,"(40.675053, -73.947235)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477128,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,6:40,BROOKLYN,11211,40.71505,-73.939926,"(40.71505, -73.939926)",,,24 ORIENT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476515,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,5:37,QUEENS,11368,40.750732,-73.86286,"(40.750732, -73.86286)",,,103-18 39 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476814,Pick-up Truck,,,, +11/08/2021,18:00,QUEENS,11377,40.752262,-73.89902,"(40.752262, -73.89902)",34 AVENUE,64 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476700,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,20:25,BROOKLYN,11207,40.66798,-73.893845,"(40.66798, -73.893845)",NEW JERSEY AVENUE,BLAKE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477314,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,7:50,QUEENS,11418,40.702873,-73.817055,"(40.702873, -73.817055)",KEW GARDEN ROAD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475966,Tractor Truck Diesel,Sedan,,, +11/12/2021,18:14,MANHATTAN,10018,40.752934,-73.9855,"(40.752934, -73.9855)",WEST 39 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4477028,Bike,,,, +11/10/2021,16:09,BROOKLYN,11211,40.703205,-73.95713,"(40.703205, -73.95713)",,,157 LEE AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476484,Bus,Station Wagon/Sport Utility Vehicle,,, +10/28/2021,19:37,BRONX,10452,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,GOBLE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,11:49,,,40.692764,-73.94579,"(40.692764, -73.94579)",PULASKI STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476841,Sedan,Sedan,,, +11/11/2021,17:03,BROOKLYN,11210,40.635815,-73.95343,"(40.635815, -73.95343)",BEDFORD AVENUE,FARRAGUT ROAD,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,,,,,4476773,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,14:10,BRONX,10467,40.884346,-73.88706,"(40.884346, -73.88706)",WEST GUN HILL ROAD,MOSHOLU PARKWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476189,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,19:00,,,,,,,,61 CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476756,Van,,,, +11/08/2021,10:54,BRONX,10472,40.830025,-73.872765,"(40.830025, -73.872765)",WESTCHESTER AVENUE,METCALF AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477230,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,2:13,QUEENS,11370,40.756897,-73.893196,"(40.756897, -73.893196)",74 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4475897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,17:20,BROOKLYN,11212,40.661503,-73.91839,"(40.661503, -73.91839)",,,839 HOWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476996,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,8:14,,,40.687077,-73.92355,"(40.687077, -73.92355)",PUTNAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476061,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,12:18,,,40.61273,-74.13602,"(40.61273, -74.13602)",,,431 INGRAM AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476236,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,20:05,BROOKLYN,11220,40.637547,-74.003845,"(40.637547, -74.003845)",9 AVENUE,54 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477483,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,4:00,MANHATTAN,10040,40.85685,-73.93148,"(40.85685, -73.93148)",BROADWAY TERRACE,FAIRVIEW AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Passing or Lane Usage Improper,,,,4476542,Sedan,Taxi,,, +10/19/2021,14:25,,,40.68316,-73.93809,"(40.68316, -73.93809)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4472525,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,18:00,MANHATTAN,10021,40.769737,-73.96271,"(40.769737, -73.96271)",LEXINGTON AVENUE,EAST 71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476453,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/10/2021,17:00,BROOKLYN,11221,40.68723,-73.941795,"(40.68723, -73.941795)",GATES AVENUE,THROOP AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4476602,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,20:46,QUEENS,11101,40.742874,-73.933945,"(40.742874, -73.933945)",VANDAM STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476727,Box Truck,Sedan,,, +11/05/2021,18:00,QUEENS,11370,40.760605,-73.88631,"(40.760605, -73.88631)",,,30-22 82 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476751,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,17:15,BROOKLYN,11226,40.64545,-73.95907,"(40.64545, -73.95907)",,,365 EAST 21 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476772,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,12:23,BROOKLYN,11237,40.70942,-73.93304,"(40.70942, -73.93304)",,,154 MORGAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476168,Sedan,Tractor Truck Diesel,,, +11/12/2021,12:15,QUEENS,11420,40.673187,-73.82491,"(40.673187, -73.82491)",133 AVENUE,114 PLACE,,1,0,0,0,0,0,1,0,Unsafe Speed,Driver Inattention/Distraction,,,,4476653,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,11:50,,,40.757793,-73.861916,"(40.757793, -73.861916)",NORTHERN BOULEVARD,,,3,0,0,0,0,0,3,0,View Obstructed/Limited,Turning Improperly,,,,4476010,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/12/2021,10:15,BROOKLYN,11228,40.61405,-74.013916,"(40.61405, -74.013916)",86 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:49,BROOKLYN,11233,40.681934,-73.922554,"(40.681934, -73.922554)",RALPH AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477222,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,21:00,,,40.82048,-73.81809,"(40.82048, -73.81809)",EAST TREMONT AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477509,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,6:09,BROOKLYN,11233,40.683174,-73.92496,"(40.683174, -73.92496)",,,519 MACDONOUGH STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477196,Sedan,,,, +11/10/2021,11:18,BROOKLYN,11203,40.652992,-73.9438,"(40.652992, -73.9438)",,,413 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476361,Box Truck,Sedan,,, +11/12/2021,7:20,BROOKLYN,11203,40.65743,-73.9451,"(40.65743, -73.9451)",BROOKLYN AVENUE,WINTHROP STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4476621,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,18:47,QUEENS,11385,40.709385,-73.91764,"(40.709385, -73.91764)",,,1817 WILLOUGHBY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476325,Sedan,,,, +10/30/2021,1:30,,,40.690907,-73.95542,"(40.690907, -73.95542)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476795,Sedan,Sedan,,, +11/05/2021,13:30,,,40.750423,-73.78517,"(40.750423, -73.78517)",48 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476606,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,22:30,QUEENS,11419,40.688816,-73.8175,"(40.688816, -73.8175)",,,127-20 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476103,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,15:50,MANHATTAN,10020,,,,AVENUE OF THE AMERICAS,West 50,,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4476519,Box Truck,Sedan,,, +11/12/2021,15:00,MANHATTAN,10027,40.812008,-73.951515,"(40.812008, -73.951515)",SAINT NICHOLAS AVENUE,WEST 127 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476712,Station Wagon/Sport Utility Vehicle,PK,,, +11/08/2021,2:30,,,40.767963,-73.91169,"(40.767963, -73.91169)",25 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477373,Sedan,Sedan,,, +11/08/2021,18:00,BROOKLYN,11225,40.661743,-73.94784,"(40.661743, -73.94784)",EAST NEW YORK AVENUE,NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476695,Sedan,,,, +11/10/2021,6:35,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,,,,,4476087,Sedan,,,, +11/11/2021,6:30,QUEENS,11365,40.73322,-73.80788,"(40.73322, -73.80788)",,,67-25 161 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476638,Sedan,Sedan,,, +11/10/2021,18:20,QUEENS,11369,40.76301,-73.87533,"(40.76301, -73.87533)",94 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476289,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,17:00,BRONX,10454,40.80581,-73.91437,"(40.80581, -73.91437)",,,250 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4476863,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,20:33,BROOKLYN,11219,40.639633,-73.989204,"(40.639633, -73.989204)",,,1246 42 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477481,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,12:50,,,40.75855,-73.82964,"(40.75855, -73.82964)",41 AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4476905,Sedan,,,, +11/12/2021,13:18,BROOKLYN,11239,40.647873,-73.881805,"(40.647873, -73.881805)",,,1380 PENNSYLVANIA AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477300,Station Wagon/Sport Utility Vehicle,,,, +10/30/2021,19:07,,,40.68871,-73.95499,"(40.68871, -73.95499)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476680,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,9:30,,,40.825794,-73.86124,"(40.825794, -73.86124)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4476737,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +10/26/2021,8:30,BRONX,10475,40.87448,-73.83393,"(40.87448, -73.83393)",,,750 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476651,Bus,Bus,,, +02/21/2022,6:46,BRONX,10455,40.81813,-73.91646,"(40.81813, -73.91646)",,,408 EAST 152 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4504667,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,9:34,STATEN ISLAND,10305,40.61274,-74.06876,"(40.61274, -74.06876)",,,198 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477049,Sedan,Sedan,,, +11/11/2021,11:30,BROOKLYN,11207,40.661976,-73.88884,"(40.661976, -73.88884)",,,693 BRADFORD STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477288,Sedan,,,, +11/11/2021,9:30,,,40.695538,-73.74831,"(40.695538, -73.74831)",LINDEN BOULEVARD,204 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4476305,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/10/2021,19:50,,,40.584366,-73.9271,"(40.584366, -73.9271)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476111,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,12:40,BROOKLYN,11203,40.66041,-73.93424,"(40.66041, -73.93424)",SCHENECTADY AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476524,Station Wagon/Sport Utility Vehicle,Unknown,,, +10/20/2021,11:50,BRONX,10466,,,,,,4332 BARNES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477192,Sedan,,,, +10/22/2021,10:35,,,,,,CANAL STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477072,Station Wagon/Sport Utility Vehicle,Dump,,, +11/12/2021,22:00,,,40.816883,-73.96265,"(40.816883, -73.96265)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476744,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,19:25,BROOKLYN,11201,40.69816,-73.97834,"(40.69816, -73.97834)",,,21 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476926,Sedan,,,, +10/15/2021,18:00,BROOKLYN,11238,,,,,,556 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477454,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,11:30,,,,,,ATLANTIC AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4477134,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,15:40,BROOKLYN,11215,40.67669,-73.98355,"(40.67669, -73.98355)",,,244 4 AVENUE,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4477456,Sedan,Bike,,, +11/12/2021,12:27,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,22:55,,,40.690468,-73.9879,"(40.690468, -73.9879)",LIVINGSTON STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476459,Taxi,,,, +11/11/2021,22:35,BROOKLYN,11207,40.658165,-73.88926,"(40.658165, -73.88926)",,,875 NEW JERSEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477293,Sedan,Sedan,,, +11/10/2021,19:45,MANHATTAN,10010,,,,broadway,23 street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477035,Bus,Taxi,,, +11/10/2021,7:59,MANHATTAN,10036,40.757973,-73.98554,"(40.757973, -73.98554)",WEST 45 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4475992,Taxi,,,, +11/12/2021,0:36,MANHATTAN,10002,40.71431,-73.987175,"(40.71431, -73.987175)",EAST BROADWAY,CLINTON STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4476443,Sedan,Sedan,,, +11/10/2021,9:10,QUEENS,11354,40.76595,-73.80984,"(40.76595, -73.80984)",35 AVENUE,155 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4475956,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,22:52,,,40.76416,-73.968895,"(40.76416, -73.968895)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inattention/Distraction,,,,4477429,Station Wagon/Sport Utility Vehicle,Convertible,,, +11/10/2021,17:16,,,40.892956,-73.86382,"(40.892956, -73.86382)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4476374,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,21:38,,,40.84621,-73.91227,"(40.84621, -73.91227)",TOWNSEND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476200,Sedan,,,, +11/11/2021,13:30,BROOKLYN,11212,40.661015,-73.90853,"(40.661015, -73.90853)",RIVERDALE AVENUE,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4476835,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,13:08,BROOKLYN,11230,40.61257,-73.97372,"(40.61257, -73.97372)",MC DONALD AVENUE,RYDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476503,Carry All,Sedan,,, +11/10/2021,13:00,BROOKLYN,11229,40.601696,-73.93508,"(40.601696, -73.93508)",,,3102 AVENUE U,1,0,1,0,0,0,0,0,Unspecified,,,,,4476546,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,18:45,BRONX,10456,40.828194,-73.90386,"(40.828194, -73.90386)",EAST 167 STREET,BOSTON ROAD,,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4476252,Sedan,,,, +11/10/2021,15:30,BROOKLYN,11201,40.68837,-73.98857,"(40.68837, -73.98857)",,,302 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476033,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,19:00,BROOKLYN,11220,40.635868,-74.00559,"(40.635868, -74.00559)",57 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476125,Sedan,,,, +11/09/2021,17:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476801,Tractor Truck Diesel,Sedan,,, +11/10/2021,17:00,BROOKLYN,11225,40.664093,-73.94363,"(40.664093, -73.94363)",,,560 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476557,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,22:30,QUEENS,11106,40.76447,-73.93241,"(40.76447, -73.93241)",,,33-07 21 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476226,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/10/2021,20:12,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unsafe Lane Changing,Unspecified,Unspecified,4476161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +11/08/2021,22:07,BRONX,10467,40.861336,-73.866806,"(40.861336, -73.866806)",WARING AVENUE,BOSTON ROAD,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4476574,Pick-up Truck,,,, +11/12/2021,0:00,,,40.585056,-73.928894,"(40.585056, -73.928894)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477098,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/10/2021,8:30,BROOKLYN,11211,40.711693,-73.95124,"(40.711693, -73.95124)",UNION AVENUE,POWERS STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4475943,Sedan,Sedan,,, +11/12/2021,19:57,,,40.699547,-73.83246,"(40.699547, -73.83246)",117 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4477531,Sedan,Motorcycle,,, +11/10/2021,6:13,,,40.73915,-73.847374,"(40.73915, -73.847374)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475880,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +11/10/2021,15:47,BROOKLYN,11233,40.679188,-73.927666,"(40.679188, -73.927666)",,,1784 FULTON STREET,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4476066,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,17:03,BROOKLYN,11201,40.695854,-73.98198,"(40.695854, -73.98198)",,,200 TILLARY STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4476724,Sedan,,,, +11/11/2021,8:51,,,40.712902,-73.98694,"(40.712902, -73.98694)",MADISON STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4476429,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:25,MANHATTAN,10128,40.783245,-73.94473,"(40.783245, -73.94473)",1 AVENUE,EAST 96 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476137,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,14:45,QUEENS,11001,40.73472,-73.709305,"(40.73472, -73.709305)",EAST WILLISTON AVENUE,258 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4476042,Sedan,Bike,,, +11/12/2021,18:10,BROOKLYN,11207,40.657383,-73.88974,"(40.657383, -73.88974)",,,832 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477321,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/11/2021,16:41,,,40.67973,-73.76162,"(40.67973, -73.76162)",MERRICK BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476534,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,15:05,,,40.763508,-73.77193,"(40.763508, -73.77193)",41 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476330,Pick-up Truck,Sedan,,, +11/10/2021,18:30,,,40.711365,-73.97897,"(40.711365, -73.97897)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4476355,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +10/25/2021,7:50,BROOKLYN,11237,,,,GROVE STREET,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476589,Bus,Sedan,,, +11/11/2021,7:50,BRONX,10459,40.830055,-73.88641,"(40.830055, -73.88641)",BOONE AVENUE,WEST FARMS ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4476666,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +11/11/2021,9:59,,,40.703556,-73.78805,"(40.703556, -73.78805)",LIBERTY AVENUE,170 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476294,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,8:56,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476856,,,,, +10/30/2021,5:30,QUEENS,11103,40.76636,-73.91632,"(40.76636, -73.91632)",,,28-10 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477363,Sedan,,,, +11/09/2021,18:30,,,40.686203,-73.950745,"(40.686203, -73.950745)",GATES AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476634,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,14:00,STATEN ISLAND,10301,40.63029,-74.08891,"(40.63029, -74.08891)",VICTORY BOULEVARD,FOREST AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477053,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,10:50,BROOKLYN,11210,40.629166,-73.947334,"(40.629166, -73.947334)",NOSTRAND AVENUE,AVENUE I,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476394,Pick-up Truck,Pick-up Truck,,, +11/10/2021,14:22,MANHATTAN,10029,40.793816,-73.94012,"(40.793816, -73.94012)",2 AVENUE,EAST 111 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476539,Taxi,Sedan,Box Truck,, +11/05/2021,21:00,,,,,,TOMPKINS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477089,Sedan,Motorcycle,,, +11/12/2021,5:50,BROOKLYN,11207,40.675438,-73.889465,"(40.675438, -73.889465)",,,552 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477296,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,15:25,BROOKLYN,11236,40.651867,-73.9127,"(40.651867, -73.9127)",EAST 95 STREET,AVENUE B,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4477157,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,7:45,QUEENS,11423,40.713875,-73.75405,"(40.713875, -73.75405)",JAMAICA AVENUE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476893,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,13:47,MANHATTAN,10019,40.767307,-73.98014,"(40.767307, -73.98014)",,,240 CENTRAL PARK SOUTH,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Other Vehicular,,,,4476498,Taxi,Box Truck,,, +11/05/2021,19:19,QUEENS,11374,40.72229,-73.86732,"(40.72229, -73.86732)",63 DRIVE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476705,Sedan,Pick-up Truck,,, +11/06/2021,18:50,BROOKLYN,11234,40.610134,-73.91108,"(40.610134, -73.91108)",,,2544 MILL AVENUE,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4476692,Bike,,,, +11/10/2021,17:49,,,40.68473,-74.00102,"(40.68473, -74.00102)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passenger Distraction,Passing or Lane Usage Improper,,,,4476081,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/05/2021,13:25,QUEENS,11106,40.75621,-73.92896,"(40.75621, -73.92896)",32 STREET,36 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476973,Sedan,,,, +11/10/2021,14:00,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",CARPENTER AVENUE,EAST 233 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476301,Station Wagon/Sport Utility Vehicle,Ambulance,,, +09/26/2022,9:42,,,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,,,1,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4572017,Taxi,E-Bike,,, +11/04/2021,21:00,QUEENS,11385,40.70713,-73.90327,"(40.70713, -73.90327)",FOREST AVENUE,PALMETTO STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,,4477119,Sedan,Sedan,Sedan,Sedan, +11/10/2021,7:07,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,16:14,BROOKLYN,11206,40.701912,-73.93699,"(40.701912, -73.93699)",FLUSHING AVENUE,BUSHWICK AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476185,Station Wagon/Sport Utility Vehicle,Bike,,, +11/11/2021,20:00,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4476439,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,1:50,BROOKLYN,11213,40.663704,-73.936424,"(40.663704, -73.936424)",,,770 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477537,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,1:05,MANHATTAN,10036,40.758266,-73.98547,"(40.758266, -73.98547)",,,1535 BROADWAY,0,0,0,0,0,0,0,0,Alcohol Involvement,Other Vehicular,Other Vehicular,,,4476783,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/31/2021,5:00,BROOKLYN,11223,40.60417,-73.97796,"(40.60417, -73.97796)",,,1778 WEST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477039,Sedan,,,, +11/10/2021,14:15,,,40.690693,-73.95728,"(40.690693, -73.95728)",DE KALB AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,,,,4476603,Taxi,Box Truck,,, +11/10/2021,16:30,MANHATTAN,10065,40.765358,-73.965904,"(40.765358, -73.965904)",EAST 64 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476454,Sedan,Sedan,,, +11/12/2021,6:00,,,40.7067,-74.01605,"(40.7067, -74.01605)",WEST STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476588,Station Wagon/Sport Utility Vehicle,Bus,,, +10/21/2021,14:00,,,40.67066,-73.957985,"(40.67066, -73.957985)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Turning Improperly,,,,4477162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,16:55,BRONX,10457,40.848022,-73.88864,"(40.848022, -73.88864)",,,702 EAST 180 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476566,Bus,Sedan,,, +11/10/2021,10:53,,,40.64936,-74.01284,"(40.64936, -74.01284)",47 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475981,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,13:30,,,40.652428,-73.83923,"(40.652428, -73.83923)",163 AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4477467,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/05/2021,23:20,BROOKLYN,11249,40.71138,-73.96645,"(40.71138, -73.96645)",WYTHE AVENUE,SOUTH 6 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4477440,Sedan,E-Scooter,,, +11/10/2021,0:00,,,40.601463,-73.97555,"(40.601463, -73.97555)",AVENUE S,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4476217,E-Bike,,,, +11/01/2021,4:50,MANHATTAN,10040,40.855595,-73.92733,"(40.855595, -73.92733)",WEST 192 STREET,AUDUBON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4477168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/11/2021,15:00,QUEENS,11354,40.76536,-73.82787,"(40.76536, -73.82787)",35 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476384,Sedan,Sedan,,, +11/10/2021,17:13,BRONX,10461,40.834354,-73.82623,"(40.834354, -73.82623)",BRUCKNER BOULEVARD,CROSBY AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476173,Sedan,E-Bike,,, +11/10/2021,7:30,QUEENS,11419,40.69401,-73.81587,"(40.69401, -73.81587)",,,97-15 132 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4475965,Sedan,Beverage Truck,,, +11/10/2021,11:45,QUEENS,11420,40.685764,-73.80665,"(40.685764, -73.80665)",VANWYCK EXPRESSWAY,LAKEWOOD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476027,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,5:10,,,40.68717,-73.89231,"(40.68717, -73.89231)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477141,Sedan,,,, +11/11/2021,9:30,BRONX,10460,40.8466,-73.88346,"(40.8466, -73.88346)",EAST 181 STREET,CROTONA PARKWAY,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4476561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,18:12,,,40.679565,-73.92882,"(40.679565, -73.92882)",FULTON STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477213,Sedan,Sedan,,, +11/10/2021,16:15,,,40.867012,-73.92312,"(40.867012, -73.92312)",WEST 204 STREET,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4476264,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,15:15,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4476249,Bus,,,, +11/10/2021,5:20,MANHATTAN,10022,40.759983,-73.964806,"(40.759983, -73.964806)",2 AVENUE,EAST 58 STREET,,1,0,0,0,1,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4475931,Flat Rack,Bike,,, +11/07/2021,15:28,,,,,,PELHAM PARKWAY SOUTH,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4476578,,,,, +11/08/2021,16:25,,,40.678318,-73.94693,"(40.678318, -73.94693)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477106,Sedan,,,, +11/12/2021,15:00,,,40.874157,-73.899445,"(40.874157, -73.899445)",RESERVOIR AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477233,Sedan,Sedan,,, +11/11/2021,19:20,,,40.74854,-73.97315,"(40.74854, -73.97315)",EAST 40 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476396,Sedan,Sedan,,, +11/09/2021,17:00,BRONX,10463,40.878098,-73.905396,"(40.878098, -73.905396)",,,5545 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477231,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/27/2021,16:05,QUEENS,11103,40.768333,-73.90776,"(40.768333, -73.90776)",,,43-20 ASTORIA BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476529,Moped,,,, +11/12/2021,12:00,STATEN ISLAND,10312,40.553314,-74.1634,"(40.553314, -74.1634)",GENESEE AVENUE,CORTELYOU AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476760,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,0:00,MANHATTAN,10027,40.817547,-73.95694,"(40.817547, -73.95694)",WEST 131 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477009,Sedan,,,, +11/12/2021,18:25,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476720,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/11/2021,23:08,QUEENS,11419,40.683674,-73.832794,"(40.683674, -73.832794)",,,104-50 109 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476444,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/11/2021,12:12,MANHATTAN,10016,40.743782,-73.97352,"(40.743782, -73.97352)",EAST 34 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476297,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,13:50,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476467,Sedan,Sedan,,, +11/10/2021,6:20,BROOKLYN,11218,40.637093,-73.97293,"(40.637093, -73.97293)",,,470 OCEAN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476114,Taxi,,,, +11/11/2021,10:22,QUEENS,11693,40.586777,-73.81465,"(40.586777, -73.81465)",ROCKAWAY BEACH BOULEVARD,BEACH 91 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4476334,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,22:30,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476351,Sedan,Sedan,,, +11/10/2021,5:54,MANHATTAN,10033,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,WEST 181 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4475861,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,7:30,QUEENS,11004,40.749844,-73.7119,"(40.749844, -73.7119)",,,75-59 263 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476433,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,2:31,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inexperience,,,,4476146,Flat Bed,Sedan,,, +08/30/2021,20:21,BROOKLYN,11208,40.673008,-73.87038,"(40.673008, -73.87038)",SUTTER AVENUE,PINE STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477329,Motorcycle,,,, +11/02/2021,13:30,QUEENS,11385,40.70177,-73.89808,"(40.70177, -73.89808)",,,60-21 70 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477120,Beverage Truck,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,6:55,QUEENS,11101,40.743103,-73.95609,"(40.743103, -73.95609)",,,5-18 50 AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4476157,Sedan,Box Truck,Box Truck,, +11/10/2021,11:29,BROOKLYN,11204,40.630615,-73.97743,"(40.630615, -73.97743)",,,4417 18 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476492,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,15:20,MANHATTAN,10026,40.804333,-73.95305,"(40.804333, -73.95305)",,,211 WEST 117 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inexperience,,,,4476662,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,16:38,BROOKLYN,11201,40.688763,-73.98964,"(40.688763, -73.98964)",,,282 ATLANTIC AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476390,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,5:40,BRONX,10468,40.862778,-73.906166,"(40.862778, -73.906166)",WEST FORDHAM ROAD,ANDREWS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476514,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:40,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476075,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,14:50,,,40.87686,-73.85976,"(40.87686, -73.85976)",BRONXWOOD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477127,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,14:00,,,40.524,-74.186104,"(40.524, -74.186104)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,Unspecified,4476277,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/11/2021,9:30,BROOKLYN,11237,40.7014,-73.91858,"(40.7014, -73.91858)",HIMROD STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,0:35,BROOKLYN,11207,40.67265,-73.89063,"(40.67265, -73.89063)",,,2212 PITKIN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477294,Van,,,, +11/12/2021,3:30,QUEENS,11432,40.71093,-73.80804,"(40.71093, -73.80804)",,,85-11 151 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476630,Sedan,,,, +11/12/2021,21:53,,,,,,CROSS BRONX EXPRESSWAY,WESTCHESTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477062,Sedan,,,, +11/12/2021,11:17,QUEENS,11375,40.734985,-73.85066,"(40.734985, -73.85066)",63 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4476852,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/09/2021,7:00,,,40.65878,-73.960526,"(40.65878, -73.960526)",FLATBUSH AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476556,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,17:20,QUEENS,11694,40.57799,-73.8354,"(40.57799, -73.8354)",,,115-02 OCEAN PROMENADE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4477152,AMBULANCE,,,, +11/12/2021,7:44,BROOKLYN,11217,40.6802,-73.98194,"(40.6802, -73.98194)",,,355 BUTLER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477453,Pick-up Truck,,,, +11/12/2021,23:13,,,40.592815,-73.90808,"(40.592815, -73.90808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4476804,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,14:50,BROOKLYN,11206,40.694637,-73.949066,"(40.694637, -73.949066)",MARCY AVENUE,VERNON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476688,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,20:50,,,40.751858,-73.82637,"(40.751858, -73.82637)",MAIN STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476919,Sedan,,,, +11/11/2021,13:33,BROOKLYN,11223,40.600838,-73.98125,"(40.600838, -73.98125)",WEST 9 STREET,AVENUE S,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476982,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,15:42,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4477447,Sedan,Sedan,Sedan,, +11/10/2021,13:30,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",111 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476097,Fire truck,Sedan,,, +11/09/2021,18:45,BROOKLYN,11213,40.67312,-73.94463,"(40.67312, -73.94463)",PARK PLACE,BROOKLYN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477115,Sedan,,,, +11/10/2021,6:50,STATEN ISLAND,10306,40.554436,-74.13043,"(40.554436, -74.13043)",HYLAN BOULEVARD,THAYER PLACE,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4476421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/12/2021,21:41,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477282,Sedan,,,, +11/12/2021,13:00,BROOKLYN,11249,40.707752,-73.96842,"(40.707752, -73.96842)",KENT AVENUE,SOUTH 11 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477360,Sedan,,,, +11/12/2021,9:45,QUEENS,11422,40.636112,-73.7403,"(40.636112, -73.7403)",ROCKAWAY BOULEVARD,MEYER AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4476571,Pick-up Truck,Pick-up Truck,,, +11/10/2021,17:25,,,40.83441,-73.94986,"(40.83441, -73.94986)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4476551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,18:15,,,40.76177,-73.979065,"(40.76177, -73.979065)",WEST 53 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476787,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,19:45,,,40.853542,-73.92439,"(40.853542, -73.92439)",HARLEM RIVER DRIVE,,,2,0,0,0,0,0,2,0,Pavement Slippery,,,,,4477182,AMBULANCE,,,, +11/12/2021,16:57,BROOKLYN,11212,40.66885,-73.91635,"(40.66885, -73.91635)",STRAUSS STREET,PITKIN AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4476997,E-Bike,Sedan,,, +11/12/2021,11:50,BROOKLYN,11214,40.615707,-74.00146,"(40.615707, -74.00146)",76 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477021,Sedan,Garbage or Refuse,,, +11/12/2021,7:20,,,40.788628,-73.789665,"(40.788628, -73.789665)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4477503,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,11:05,BRONX,10474,40.80347,-73.86915,"(40.80347, -73.86915)",,,335 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476620,Sedan,Box Truck,,, +11/11/2021,22:10,QUEENS,11101,40.74288,-73.951164,"(40.74288, -73.951164)",11 STREET,49 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476476,Bike,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,10:45,MANHATTAN,10023,40.774734,-73.98818,"(40.774734, -73.98818)",WEST 64 STREET,WEST END AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +11/10/2021,1:25,MANHATTAN,10006,40.709835,-74.014885,"(40.709835, -74.014885)",ALBANY STREET,WEST STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4476583,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,15:35,BRONX,10473,40.822903,-73.87005,"(40.822903, -73.87005)",,,900 FTELEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476752,Sedan,,,, +11/11/2021,16:00,QUEENS,11360,40.777016,-73.79336,"(40.777016, -73.79336)",22 AVENUE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476684,Sedan,,,, +11/12/2021,11:45,BROOKLYN,11225,40.670002,-73.95823,"(40.670002, -73.95823)",,,812 FRANKLIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476818,Bus,Bus,,, +11/11/2021,18:00,MANHATTAN,10037,40.81359,-73.93967,"(40.81359, -73.93967)",,,40 WEST 135 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476615,Sedan,,,, +11/10/2021,8:00,BROOKLYN,11208,40.669106,-73.880486,"(40.669106, -73.880486)",,,595 ESSEX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477315,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,16:19,BROOKLYN,11212,40.656307,-73.91887,"(40.656307, -73.91887)",EAST 94 STREET,WILLMOHR STREET,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,Unspecified,4477513,Bus,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +11/11/2021,22:00,BROOKLYN,11212,40.662067,-73.91961,"(40.662067, -73.91961)",,,199 TAPSCOTT STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476992,Sedan,Pick-up Truck,,, +11/12/2021,14:35,BRONX,10465,40.87829,-73.87006,"(40.87829, -73.87006)",BRONX RIVER PARKWAY,EAST GUN HILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,5:53,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476152,Sedan,Tractor Truck Gasoline,,, +11/10/2021,3:58,,,40.702625,-73.81323,"(40.702625, -73.81323)",139 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4476022,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,6:40,QUEENS,11377,40.7364,-73.90926,"(40.7364, -73.90926)",BROOKLYN QUEENS EXPRESSWAY,58 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4475915,Van,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,1:35,BROOKLYN,11210,40.617733,-73.951935,"(40.617733, -73.951935)",,,1347 EAST 23 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476207,Sedan,,,, +11/11/2021,12:11,MANHATTAN,10039,40.826824,-73.938995,"(40.826824, -73.938995)",,,2844 8 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4476285,Sedan,Box Truck,,, +11/08/2021,18:00,BRONX,10467,40.880844,-73.86679,"(40.880844, -73.86679)",,,3645 OLINVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477205,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,13:30,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",EAST 36 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476056,US POSTAL,Van,,, +11/12/2021,19:00,BRONX,10459,40.822144,-73.89491,"(40.822144, -73.89491)",,,975 TIFFANY STREET,0,0,0,0,0,0,0,0,Illnes,Unspecified,Unspecified,,,4477489,Van,Station Wagon/Sport Utility Vehicle,Sedan,, +11/10/2021,18:10,,,,,,HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476047,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/22/2021,17:50,,,,,,queens midtown expressway servic,58 avenue,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4470016,Box Truck,Sedan,,, +11/10/2021,9:26,,,40.844753,-73.90539,"(40.844753, -73.90539)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476241,Carry All,Sedan,,, +11/10/2021,17:30,BRONX,10473,40.816082,-73.85886,"(40.816082, -73.85886)",,,524 UNDERHILL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476404,Sedan,,,, +11/12/2021,10:10,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4476910,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,7:20,,,40.689426,-73.94223,"(40.689426, -73.94223)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4476598,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/12/2021,17:15,BRONX,10468,40.870132,-73.90161,"(40.870132, -73.90161)",,,2728 WEBB AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477240,Station Wagon/Sport Utility Vehicle,Bus,,, +11/12/2021,7:20,,,40.827595,-73.85004,"(40.827595, -73.85004)",CASTLE HILL AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476657,Sedan,Sedan,,, +11/11/2021,20:40,BROOKLYN,11225,40.66386,-73.9516,"(40.66386, -73.9516)",,,330 EMPIRE BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476525,Sedan,Sedan,Sedan,, +11/12/2021,15:40,,,40.742146,-74.00821,"(40.742146, -74.00821)",WEST 14 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Oversized Vehicle,Traffic Control Disregarded,,,,4476764,Bus,Bike,,, +11/11/2021,1:16,,,40.662506,-73.96088,"(40.662506, -73.96088)",STERLING STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4476093,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/10/2021,19:01,QUEENS,11367,40.73222,-73.81493,"(40.73222, -73.81493)",,,69-30 KISSENA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476121,Sedan,,,, +11/10/2021,17:00,,,40.679375,-73.96408,"(40.679375, -73.96408)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476368,Sedan,Pick-up Truck,,, +11/10/2021,12:18,BROOKLYN,11208,40.67526,-73.88203,"(40.67526, -73.88203)",GLENMORE AVENUE,ESSEX STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476321,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,16:00,BROOKLYN,11238,40.687958,-73.96474,"(40.687958, -73.96474)",,,64 SAINT JAMES PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476463,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,2:00,QUEENS,11361,40.759808,-73.782936,"(40.759808, -73.782936)",,,201-19 42 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476642,Sedan,,,, +11/03/2021,13:56,QUEENS,11385,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477122,Sedan,,,, +11/12/2021,0:04,BROOKLYN,11206,40.707493,-73.94153,"(40.707493, -73.94153)",MONTROSE AVENUE,HUMBOLDT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476485,Sedan,,,, +11/11/2021,4:55,QUEENS,11434,40.66454,-73.82276,"(40.66454, -73.82276)",SOUTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4476141,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,0:10,,,40.761204,-73.73094,"(40.761204, -73.73094)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Brakes Defective,Passing Too Closely,Unspecified,Unspecified,,4476625,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/12/2021,12:30,QUEENS,11435,40.695457,-73.80536,"(40.695457, -73.80536)",WALTHAM STREET,LIBERTY AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4477404,Sedan,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,, +11/10/2021,18:22,MANHATTAN,10019,40.766285,-73.98186,"(40.766285, -73.98186)",WEST 57 STREET,BROADWAY,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4476508,Sedan,,,, +11/10/2021,6:55,MANHATTAN,10027,40.81632,-73.95784,"(40.81632, -73.95784)",BROADWAY,WEST 129 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4476082,Taxi,Bike,,, +11/12/2021,22:15,QUEENS,11435,40.705746,-73.8097,"(40.705746, -73.8097)",SUTPHIN BOULEVARD,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477394,,,,, +11/10/2021,14:40,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",ROCKAWAY BOULEVARD,NORTH CONDUIT AVENUE,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,,,,4477341,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,19:00,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4476448,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/07/2021,1:35,QUEENS,11370,40.76257,-73.888535,"(40.76257, -73.888535)",,,25-33 80 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476845,Sedan,,,, +11/12/2021,15:43,QUEENS,11104,40.74089,-73.92201,"(40.74089, -73.92201)",GREENPOINT AVENUE,43 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476699,Station Wagon/Sport Utility Vehicle,Moped,,, +11/11/2021,6:30,MANHATTAN,10018,40.756546,-73.99218,"(40.756546, -73.99218)",,,350 WEST 40 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476302,Sedan,Tractor Truck Diesel,,, +11/12/2021,11:20,MANHATTAN,10038,40.709557,-74.00644,"(40.709557, -74.00644)",WILLIAM STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477077,Sedan,Bus,,, +11/12/2021,8:30,BROOKLYN,11215,40.664165,-73.990555,"(40.664165, -73.990555)",PROSPECT AVENUE,5 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476716,Sedan,Motorcycle,,, +11/12/2021,22:24,QUEENS,11368,40.757725,-73.86372,"(40.757725, -73.86372)",105 STREET,NORTHERN BOULEVARD,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4476809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +10/03/2021,5:45,BROOKLYN,11219,40.626373,-73.99754,"(40.626373, -73.99754)",14 AVENUE,62 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477043,Sedan,Sedan,,, +11/12/2021,9:25,BROOKLYN,11232,40.66394,-73.99769,"(40.66394, -73.99769)",21 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476874,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,7:52,BRONX,10475,40.87529,-73.833916,"(40.87529, -73.833916)",,,800 BAYCHESTER AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476647,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,7:58,BROOKLYN,11236,40.64651,-73.894844,"(40.64651, -73.894844)",,,922 EAST 104 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4476309,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,18:35,BROOKLYN,11237,,,,St Nicholas avenue,Dekalb avenue,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476748,Sedan,Taxi,,, +11/12/2021,3:50,BRONX,10461,40.834755,-73.82993,"(40.834755, -73.82993)",EAST TREMONT AVENUE,BAISLEY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476652,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,8:50,BROOKLYN,11229,40.60561,-73.95675,"(40.60561, -73.95675)",,,1810 EAST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476610,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,2:25,MANHATTAN,10019,40.767075,-73.983765,"(40.767075, -73.983765)",,,322 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476520,Sedan,,,, +11/11/2021,13:20,BRONX,10452,40.83164,-73.930115,"(40.83164, -73.930115)",OGDEN AVENUE,WEST 162 STREET,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4476957,Bus,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,11:50,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476326,Sedan,Bike,,, +11/05/2021,21:45,QUEENS,11106,40.75546,-73.92736,"(40.75546, -73.92736)",36 AVENUE,34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,20:34,BROOKLYN,11234,40.616463,-73.89966,"(40.616463, -73.89966)",,,7419 AVENUE X,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4476104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,19:02,BROOKLYN,11219,40.638947,-73.988045,"(40.638947, -73.988045)",42 STREET,13 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477474,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,14:40,BROOKLYN,11224,40.576508,-73.98584,"(40.576508, -73.98584)",MERMAID AVENUE,WEST 19 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545233,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,16:49,BROOKLYN,11206,40.705605,-73.94627,"(40.705605, -73.94627)",BOERUM STREET,LEONARD STREET,,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,,,,4545029,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,7:56,MANHATTAN,10003,40.729183,-73.98726,"(40.729183, -73.98726)",2 AVENUE,EAST 9 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4545466,Taxi,,,, +07/08/2022,8:26,STATEN ISLAND,10305,40.6125,-74.064964,"(40.6125, -74.064964)",SCARBORO AVENUE,BAY STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,4545427,Sedan,Pick-up Truck,Sedan,Sedan,Sedan +07/09/2022,0:55,BRONX,10456,40.830624,-73.90451,"(40.830624, -73.90451)",EAST 168 STREET,FULTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544665,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,17:00,,,40.673256,-73.9307,"(40.673256, -73.9307)",UTICA AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544989,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,3:40,BROOKLYN,11230,40.63363,-73.961075,"(40.63363, -73.961075)",,,694 EAST 17 STREET,1,0,0,0,0,0,1,0,Unspecified,,,,,4545279,Sedan,,,, +07/09/2022,18:05,BRONX,10466,40.882442,-73.840294,"(40.882442, -73.840294)",,,1991 NEEDHAM AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545081,Sedan,Sedan,,, +07/09/2022,23:45,QUEENS,11372,40.75363,-73.88597,"(40.75363, -73.88597)",34 AVENUE,81 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545367,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2022,0:40,,,40.68892,-73.99915,"(40.68892, -73.99915)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4544679,Taxi,,,, +07/09/2022,18:15,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4545129,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +06/26/2022,23:02,MANHATTAN,10003,40.73059,-73.99242,"(40.73059, -73.99242)",BROADWAY,EAST 8 STREET,,2,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545464,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/09/2022,4:35,BROOKLYN,11226,40.63962,-73.95477,"(40.63962, -73.95477)",FLATBUSH AVENUE,NEWKIRK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544695,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,4:00,,,40.7423,-73.781235,"(40.7423, -73.781235)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544827,Sedan,,,, +07/09/2022,10:19,MANHATTAN,10035,40.800507,-73.938156,"(40.800507, -73.938156)",EAST 120 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545241,,,,, +07/09/2022,12:45,MANHATTAN,10003,40.731163,-73.99193,"(40.731163, -73.99193)",EAST 9 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545253,Sedan,Bike,,, +07/06/2022,7:30,BROOKLYN,11215,40.670757,-73.98954,"(40.670757, -73.98954)",,,223 9 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545284,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,20:26,BROOKLYN,11233,40.67582,-73.930466,"(40.67582, -73.930466)",DEAN STREET,UTICA AVENUE,,2,0,1,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4545305,E-Bike,Sedan,,, +07/09/2022,0:50,BROOKLYN,11236,40.64,-73.90194,"(40.64, -73.90194)",AVENUE J,EAST 93 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4544795,Sedan,,,, +07/09/2022,0:53,BROOKLYN,11203,40.654453,-73.93067,"(40.654453, -73.93067)",,,771 UTICA AVENUE,3,0,2,0,0,0,0,0,Unspecified,,,,,4544745,E-Bike,,,, +07/09/2022,7:43,,,40.596195,-74.18331,"(40.596195, -74.18331)",,,3812 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544778,Sedan,,,, +07/09/2022,6:00,,,,,,20 AVENUE,WHITESTONE EXPRESSWAY,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,,,,,4544753,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,20:45,BROOKLYN,11211,40.71603,-73.95633,"(40.71603, -73.95633)",,,220 NORTH 6 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545481,Sedan,Sedan,,, +07/09/2022,8:50,,,40.62055,-74.16919,"(40.62055, -74.16919)",SOUTH AVENUE,FAHY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544815,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,7:51,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",CHAMBERS STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544722,Sedan,Bike,,, +07/05/2022,23:27,BROOKLYN,11213,40.674004,-73.94455,"(40.674004, -73.94455)",BROOKLYN AVENUE,PROSPECT PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4545304,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,22:42,STATEN ISLAND,10301,40.632427,-74.0893,"(40.632427, -74.0893)",,,374 WOODSTOCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4545062,Sedan,Sedan,Sedan,, +07/09/2022,23:30,QUEENS,11414,40.65603,-73.84974,"(40.65603, -73.84974)",160 AVENUE,82 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4545151,Sedan,,,, +06/24/2022,18:11,BROOKLYN,11221,40.698246,-73.92997,"(40.698246, -73.92997)",WILLOUGHBY AVENUE,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4545336,Box Truck,,,, +07/08/2022,21:57,,,40.68483,-73.86048,"(40.68483, -73.86048)",80 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4545257,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,14:00,BRONX,10475,40.869423,-73.825745,"(40.869423, -73.825745)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545309,Sedan,,,, +07/09/2022,6:30,BROOKLYN,11228,40.620304,-74.00743,"(40.620304, -74.00743)",BAY RIDGE PARKWAY,13 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544731,Sedan,,,, +07/09/2022,17:55,BRONX,10470,40.905025,-73.84959,"(40.905025, -73.84959)",WHITE PLAINS ROAD,PENFIELD STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4544804,Sedan,Motorcycle,,, +07/09/2022,14:18,BRONX,10473,40.814823,-73.84706,"(40.814823, -73.84706)",CASTLE HILL AVENUE,NORTON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545003,Sedan,Sedan,,, +07/02/2022,22:17,,,40.73723,-74.000656,"(40.73723, -74.000656)",WEST 12 STREET,,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4545252,Sedan,Bike,,, +04/14/2022,8:30,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4520376,Sedan,PK,,, +04/07/2022,5:20,BROOKLYN,11234,40.627018,-73.927765,"(40.627018, -73.927765)",,,1860 UTICA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4517607,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,12:00,,,,,,NASSAU EXPRESSWAY,,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Following Too Closely,,,,4519406,Sedan,Box Truck,,, +04/09/2022,5:30,BROOKLYN,11206,40.695705,-73.94637,"(40.695705, -73.94637)",TOMPKINS AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519672,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,12:33,MANHATTAN,10027,40.810318,-73.943634,"(40.810318, -73.943634)",LENOX AVENUE,WEST 129 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4520049,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:25,MANHATTAN,10029,40.798546,-73.94165,"(40.798546, -73.94165)",,,1844 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520466,Van,Sedan,,, +04/14/2022,20:38,MANHATTAN,10128,40.784245,-73.9471,"(40.784245, -73.9471)",EAST 96 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520481,Ambulance,Taxi,,, +04/03/2022,2:37,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520477,Taxi,Sedan,,, +04/16/2022,0:27,BROOKLYN,11209,40.630997,-74.0179,"(40.630997, -74.0179)",,,639 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,Unspecified,,,,4520454,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2021,17:16,,,40.836403,-73.875595,"(40.836403, -73.875595)",CROSS BRONX EXPY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4520474,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,20:45,BROOKLYN,11213,40.66925,-73.93944,"(40.66925, -73.93944)",EASTERN PARKWAY,ALBANY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520452,Station Wagon/Sport Utility Vehicle,,,, +04/02/2022,18:53,MANHATTAN,10029,40.7883,-73.94879,"(40.7883, -73.94879)",,,152 EAST 100 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520467,E-Bike,,,, +04/15/2022,22:00,QUEENS,11412,40.692352,-73.762436,"(40.692352, -73.762436)",FARMERS BOULEVARD,DUNKIRK DRIVE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4520483,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,9:45,BROOKLYN,11209,40.634235,-74.03674,"(40.634235, -74.03674)",,,7401 SHORE ROAD,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4522032,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +04/25/2022,13:00,BRONX,10459,0,0,"(0.0, 0.0)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4522267,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,10:20,QUEENS,11377,0,0,"(0.0, 0.0)",LAUREL HILL BOULEVARD,44 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4522321,Sedan,Bike,,, +04/24/2022,5:08,QUEENS,11385,,,,BLEECKER STREET,ONDERDONK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4522411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2022,9:04,BRONX,10469,,,,EAST 219 STREET,PAULDING AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4522004,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,8:10,MANHATTAN,10035,40.805058,-73.93904,"(40.805058, -73.93904)",EAST 125 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4521947,Sedan,Bike,,, +04/18/2022,16:30,,,40.61074,-74.09583,"(40.61074, -74.09583)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4522596,Motorcycle,Sedan,,, +04/24/2022,17:25,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4522636,Sedan,,,, +07/04/2022,20:50,,,40.670116,-73.92248,"(40.670116, -73.92248)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Turning Improperly,Unspecified,Unspecified,Unspecified,4545420,Sedan,Sedan,Sedan,Sedan,Sedan +07/09/2022,17:34,,,40.73986,-73.79012,"(40.73986, -73.79012)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544828,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,2:20,QUEENS,11103,40.762653,-73.91599,"(40.762653, -73.91599)",,,30-47 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,17:50,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,1,0,0,0,0,0,0,0,Unsafe Speed,Driver Inexperience,,,,4545494,E-Scooter,Box Truck,,, +07/09/2022,14:55,BRONX,10475,40.879765,-73.831955,"(40.879765, -73.831955)",BAYCHESTER AVENUE,COOP CITY BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544764,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,13:30,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4545366,Sedan,Sedan,,, +07/07/2022,22:45,BROOKLYN,11204,40.62757,-73.976585,"(40.62757, -73.976585)",MC DONALD AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4545270,Sedan,,,, +04/17/2022,1:00,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519798,Refrigerated Van,Taxi,,, +04/17/2022,13:30,MANHATTAN,10019,40.76989,-73.99248,"(40.76989, -73.99248)",,,611 WEST 56 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520082,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,4:03,QUEENS,11419,40.687706,-73.82588,"(40.687706, -73.82588)",118 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4519916,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/17/2022,19:55,,,40.63047,-74.137856,"(40.63047, -74.137856)",,,47 RAINBOW AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4520425,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,8:36,,,40.89845,-73.85431,"(40.89845, -73.85431)",WHITE PLAINS ROAD,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4520381,,,,, +04/17/2022,0:05,BROOKLYN,11249,40.69819,-73.96191,"(40.69819, -73.96191)",CLASSON AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519489,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,17:30,BROOKLYN,11230,40.631573,-73.969986,"(40.631573, -73.969986)",,,238 PARKVILLE AVENUE,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4519873,Sedan,Sedan,Sedan,, +04/17/2022,16:09,STATEN ISLAND,10310,40.633816,-74.11705,"(40.633816, -74.11705)",NOBLE PLACE,BROADWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520274,Sedan,Sedan,,, +04/17/2022,4:03,,,,,,RANDALL AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519963,Sedan,Sedan,,, +04/13/2022,20:00,STATEN ISLAND,10304,40.612785,-74.07803,"(40.612785, -74.07803)",,,23 MOSEL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520360,Sedan,,,, +04/17/2022,3:30,BROOKLYN,11234,40.62058,-73.92221,"(40.62058, -73.92221)",,,1477 EAST 55 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519534,Sedan,,,, +04/17/2022,14:35,MANHATTAN,10002,40.71384,-73.99273,"(40.71384, -73.99273)",PIKE STREET,EAST BROADWAY,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519983,E-Scooter,,,, +04/14/2022,17:00,QUEENS,11356,40.78166,-73.83523,"(40.78166, -73.83523)",,,133-11 20 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520420,Sedan,,,, +03/03/2022,6:42,,,40.703033,-73.797134,"(40.703033, -73.797134)",UNION HALL STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520332,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,3:18,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4519589,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,16:25,,,40.7698,-73.94122,"(40.7698, -73.94122)",,,900 MAIN STREET,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4519764,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,17:20,MANHATTAN,10001,40.74967,-73.99531,"(40.74967, -73.99531)",8 AVENUE,WEST 30 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520109,,,,, +04/03/2022,0:30,,,40.69897,-73.95702,"(40.69897, -73.95702)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520243,Taxi,Sedan,,, +04/17/2022,14:40,,,40.689194,-73.75365,"(40.689194, -73.75365)",120 AVENUE,196 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4520278,Sedan,Sedan,Sedan,, +04/15/2022,8:27,BRONX,10465,40.810135,-73.80387,"(40.810135, -73.80387)",PENNYFIELD AVENUE,BEVY PLACE,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,Unspecified,,,4520297,Sedan,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +04/17/2022,0:00,QUEENS,11413,40.67581,-73.739555,"(40.67581, -73.739555)",MERRICK BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4519730,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,12:00,BROOKLYN,11207,40.656944,-73.88082,"(40.656944, -73.88082)",COZINE AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519650,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,15:00,,,,,,G.C.P / L.I.E. (CDR),,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519718,Sedan,Sedan,,, +04/17/2022,12:19,BROOKLYN,11209,40.625046,-74.02446,"(40.625046, -74.02446)",5 AVENUE,81 STREET,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4519662,Sedan,E-Bike,,, +04/17/2022,22:44,BROOKLYN,11220,40.639446,-74.02696,"(40.639446, -74.02696)",RIDGE BOULEVARD,WAKEMAN PLACE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519752,Sedan,Taxi,,, +04/15/2022,15:00,BRONX,10461,40.853973,-73.830315,"(40.853973, -73.830315)",,,2929 EAST 196 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520296,Sedan,,,, +04/17/2022,13:38,,,40.805042,-73.936935,"(40.805042, -73.936935)",EAST 126 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519954,Bus,Sedan,,, +04/17/2022,4:45,BRONX,10452,40.84442,-73.92505,"(40.84442, -73.92505)",UNDERCLIFF AVENUE,BOSCOBEL PLACE,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4520005,Sedan,Sedan,Sedan,, +02/05/2022,16:40,,,,,,EAST 222 STREET,ELY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500409,Sedan,,,, +04/16/2022,12:06,BRONX,10467,40.881504,-73.879364,"(40.881504, -73.879364)",ROCHAMBEAU AVENUE,EAST GUN HILL ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520317,Sedan,,,, +04/07/2022,18:52,,,40.67058,-73.93096,"(40.67058, -73.93096)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520247,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,23:00,,,40.61044,-74.09957,"(40.61044, -74.09957)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,10:45,BROOKLYN,11211,40.705544,-73.95317,"(40.705544, -73.95317)",HARRISON AVENUE,PENN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519630,Bike,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,21:23,,,40.75619,-73.746414,"(40.75619, -73.746414)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519737,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,15:05,MANHATTAN,10282,40.717663,-74.01394,"(40.717663, -74.01394)",CHAMBERS STREET,NORTH END AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519891,Sedan,Bus,,, +04/17/2022,13:00,BRONX,10457,40.84857,-73.902725,"(40.84857, -73.902725)",,,324 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4520231,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/11/2022,15:30,BRONX,10466,40.894547,-73.86104,"(40.894547, -73.86104)",,,600 EAST 233 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520374,Sedan,,,, +04/17/2022,10:59,QUEENS,11103,40.76559,-73.914734,"(40.76559, -73.914734)",,,28-28 38 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4519767,Sedan,Sedan,Sedan,Sedan,Sedan +04/17/2022,12:00,MANHATTAN,10029,40.792534,-73.951,"(40.792534, -73.951)",,,29 EAST 104 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4519675,Sedan,,,, +04/14/2022,22:14,STATEN ISLAND,10314,40.613075,-74.12257,"(40.613075, -74.12257)",VICTORY BOULEVARD,MANOR ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520359,Sedan,Sedan,,, +04/16/2022,8:30,,,40.69268,-73.93998,"(40.69268, -73.93998)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520256,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,14:50,,,40.80521,-73.94736,"(40.80521, -73.94736)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520287,Sedan,Bike,,, +04/17/2022,15:40,,,,,,WILLIS AVE BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520350,Station Wagon/Sport Utility Vehicle,Van,,, +04/14/2022,19:07,MANHATTAN,10001,40.74666,-73.990074,"(40.74666, -73.990074)",WEST 29 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520448,Sedan,,,, +04/17/2022,19:00,,,40.741623,-73.993744,"(40.741623, -73.993744)",WEST 21 STREET,,,1,0,1,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4519946,E-Scooter,,,, +04/14/2022,5:57,,,40.729996,-73.91187,"(40.729996, -73.91187)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520386,Sedan,,,, +04/17/2022,23:15,,,40.787506,-73.9383,"(40.787506, -73.9383)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519984,Sedan,Sedan,,, +04/17/2022,2:17,QUEENS,11691,40.60214,-73.756996,"(40.60214, -73.756996)",,,22-51 CORNAGA AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4519860,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,3:36,STATEN ISLAND,10305,40.596252,-74.0702,"(40.596252, -74.0702)",,,134 SAND LANE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520155,Sedan,Taxi,Sedan,, +04/17/2022,1:15,QUEENS,11365,40.73818,-73.779,"(40.73818, -73.779)",,,67-18B 195 LANE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4519777,Sedan,Sedan,Sedan,, +02/26/2022,6:25,BRONX,10466,40.900196,-73.844635,"(40.900196, -73.844635)",,,4416 WILDER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4520364,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +04/17/2022,14:58,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520054,Sedan,Sedan,Sedan,, +04/17/2022,18:30,QUEENS,11435,40.70355,-73.80983,"(40.70355, -73.80983)",,,145-29 89 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519878,Sedan,,,, +04/17/2022,15:58,,,40.686745,-73.96553,"(40.686745, -73.96553)",WASHINGTON AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4520063,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/17/2022,7:00,BRONX,10472,40.828598,-73.875374,"(40.828598, -73.875374)",,,1167 STRATFORD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519965,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,16:20,STATEN ISLAND,10310,40.62667,-74.12827,"(40.62667, -74.12827)",FOREST AVENUE,DUBOIS AVENUE,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,,,,4520400,Sedan,Sedan,,, +04/17/2022,2:55,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Glare,,,,,4519504,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,9:56,,,,,,HORACE HARDING EXPRESSWAY,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4477064,Sedan,,,, +04/17/2022,20:25,BROOKLYN,11207,40.679535,-73.900475,"(40.679535, -73.900475)",BUSHWICK AVENUE,HIGHLAND BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4519832,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,10:00,QUEENS,11355,40.753006,-73.8326,"(40.753006, -73.8326)",COLLEGE POINT BOULEVARD,POPLE AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4520341,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,6:40,BRONX,10467,40.877697,-73.86762,"(40.877697, -73.86762)",,,641 EAST GUN HILL ROAD,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520379,Sedan,Sedan,,, +04/17/2022,2:16,BROOKLYN,11234,40.599915,-73.91165,"(40.599915, -73.91165)",,,2859 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519535,Pick-up Truck,Van,,, +04/15/2022,2:49,,,40.589935,-74.145676,"(40.589935, -74.145676)",FOREST HILL ROAD,ASHWORTH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520421,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,17:30,QUEENS,11420,40.670486,-73.80449,"(40.670486, -73.80449)",134 STREET,131 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519773,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,19:31,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",WESTCHESTER AVENUE,BRONX RIVER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519966,Sedan,Sedan,,, +04/17/2022,9:10,,,,,,LIBERTY AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519868,Sedan,,,, +04/13/2022,15:00,QUEENS,11435,40.699635,-73.80312,"(40.699635, -73.80312)",150 STREET,95 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520329,Sedan,,,, +04/14/2022,21:00,STATEN ISLAND,10304,40.60777,-74.08144,"(40.60777, -74.08144)",,,360 MOSEL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520363,Sedan,,,, +04/17/2022,21:19,QUEENS,11419,40.691895,-73.81917,"(40.691895, -73.81917)",127 STREET,101 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4519917,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,4:20,,,40.686264,-73.9567,"(40.686264, -73.9567)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4519670,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,12:27,QUEENS,11368,40.7415,-73.85907,"(40.7415, -73.85907)",,,102-17 STRONG AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519719,Sedan,,,, +04/12/2022,13:26,,,40.682507,-73.94375,"(40.682507, -73.94375)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520251,Van,Sedan,,, +04/17/2022,1:30,MANHATTAN,10025,40.794052,-73.970375,"(40.794052, -73.970375)",WEST 96 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4519803,Sedan,Sedan,,, +04/17/2022,5:12,,,,,,CROSS BRONX EXPRESSWAY EXTENSION,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4520306,Sedan,,,, +04/17/2022,1:01,,,40.67898,-73.88107,"(40.67898, -73.88107)",ATLANTIC AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4519645,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,2:40,MANHATTAN,10019,40.76525,-73.995094,"(40.76525, -73.995094)",WEST 49 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4520081,Sedan,Sedan,,, +04/12/2022,14:30,,,40.75201,-73.93016,"(40.75201, -73.93016)",NORTHERN BOULEVARD,,,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4520257,Taxi,Bike,,, +04/17/2022,13:10,BROOKLYN,11249,40.699482,-73.96104,"(40.699482, -73.96104)",CLASSON AVENUE,KENT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,12:43,MANHATTAN,10007,40.71552,-74.00925,"(40.71552, -74.00925)",WEST BROADWAY,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519890,Bike,Sedan,,, +04/13/2022,11:54,BRONX,10466,40.891838,-73.86275,"(40.891838, -73.86275)",EAST 229 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4520375,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/06/2022,3:32,BROOKLYN,11213,40.66965,-73.94684,"(40.66965, -73.94684)",,,650 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,Unspecified,4520443,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/16/2022,9:17,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4520318,Sedan,Sedan,,, +04/17/2022,20:32,BROOKLYN,11203,40.654854,-73.931725,"(40.654854, -73.931725)",,,291 EAST 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519790,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,20:57,,,40.85162,-73.8265,"(40.85162, -73.8265)",BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519900,Sedan,Sedan,,, +04/13/2022,22:30,BRONX,10475,40.88471,-73.83131,"(40.88471, -73.83131)",BOSTON ROAD,DYRE AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4520369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,19:00,,,40.698463,-73.960205,"(40.698463, -73.960205)",FLUSHING AVENUE,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4520246,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,0:17,BROOKLYN,11231,40.6851,-73.99458,"(40.6851, -73.99458)",COURT STREET,BUTLER STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519586,Station Wagon/Sport Utility Vehicle,Bus,,, +04/17/2022,12:20,,,,,,VERRAZANO BRIDGE LOWER,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,,,,,4520301,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,18:35,,,,,,BELT PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4519753,Sedan,,,, +04/17/2022,1:00,BRONX,10467,40.878887,-73.87582,"(40.878887, -73.87582)",,,3400 RESERVOIR OVAL EAST,0,0,0,0,0,0,0,0,Unspecified,,,,,4520270,Sedan,,,, +04/17/2022,4:40,MANHATTAN,10018,40.75172,-73.98835,"(40.75172, -73.98835)",,,141 WEST 36 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4520108,Van,Sedan,Sedan,, +04/17/2022,13:30,MANHATTAN,10035,40.80538,-73.93458,"(40.80538, -73.93458)",,,2345 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519953,Sedan,,,, +04/17/2022,11:40,BROOKLYN,11210,40.631424,-73.955475,"(40.631424, -73.955475)",CAMPUS ROAD,EAST 22 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520003,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,14:55,QUEENS,11435,40.697308,-73.80983,"(40.697308, -73.80983)",95 AVENUE,BRISBIN STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4520370,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/17/2022,5:20,,,40.852383,-73.90365,"(40.852383, -73.90365)",GRAND CONCOURSE,EAST BURNSIDE AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519838,Moped,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,14:10,MANHATTAN,10023,40.781025,-73.981316,"(40.781025, -73.981316)",BROADWAY,WEST 75 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4520308,Sedan,,,, +04/17/2022,12:10,,,40.81005,-73.92515,"(40.81005, -73.92515)",EAST 138 STREET,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4520352,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,13:57,,,,,,BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519897,Sedan,Sedan,,, +04/17/2022,18:00,QUEENS,11412,40.702,-73.767914,"(40.702, -73.767914)",HILBURN AVENUE,RYE PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520277,Sedan,,,, +04/17/2022,0:15,MANHATTAN,10033,40.8478,-73.93486,"(40.8478, -73.93486)",,,1365 SAINT NICHOLAS AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519614,Sedan,E-Scooter,,, +04/17/2022,20:22,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4520021,Sedan,,,, +04/17/2022,11:23,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519729,Sedan,Sedan,Taxi,, +04/17/2022,5:30,QUEENS,11368,40.744602,-73.85562,"(40.744602, -73.85562)",108 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520065,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,14:00,BROOKLYN,11207,40.67689,-73.900055,"(40.67689, -73.900055)",EAST NEW YORK AVENUE,ALABAMA AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4519831,Sedan,Sedan,,, +04/17/2022,15:11,,,40.843956,-73.8978,"(40.843956, -73.8978)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4520019,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,4:03,BRONX,10475,40.879753,-73.8368,"(40.879753, -73.8368)",,,3417 DEREIMER AVENUE,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4520384,Sedan,Sedan,,, +04/17/2022,16:20,,,40.678585,-73.95207,"(40.678585, -73.95207)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4519937,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,18:11,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520402,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,1:46,BROOKLYN,11229,40.604027,-73.9523,"(40.604027, -73.9523)",OCEAN AVENUE,AVENUE S,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519505,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,20:32,MANHATTAN,10027,40.808754,-73.94994,"(40.808754, -73.94994)",,,230 WEST 124 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4520336,SCOOTER,,,, +04/15/2022,1:45,BROOKLYN,11205,40.698677,-73.95886,"(40.698677, -73.95886)",FLUSHING AVENUE,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520265,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,9:20,,,40.726044,-73.90204,"(40.726044, -73.90204)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519683,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,11:40,BROOKLYN,11236,40.64369,-73.89041,"(40.64369, -73.89041)",FLATLANDS 3 STREET,EAST 105 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519694,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,4:13,BROOKLYN,11236,40.644196,-73.91295,"(40.644196, -73.91295)",FOSTER AVENUE,EAST 88 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4520164,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,20:42,QUEENS,11360,40.776516,-73.77447,"(40.776516, -73.77447)",,,28-43 214 STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519736,Sedan,,,, +04/10/2022,13:15,,,40.68137,-73.94063,"(40.68137, -73.94063)",MACDONOUGH STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520252,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/17/2022,4:15,QUEENS,11419,40.68416,-73.832596,"(40.68416, -73.832596)",,,109-16 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519784,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,19:38,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520288,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,10:45,BROOKLYN,11203,40.652176,-73.92848,"(40.652176, -73.92848)",CHURCH AVENUE,EAST 52 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4519625,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,22:00,BROOKLYN,11235,40.581745,-73.95382,"(40.581745, -73.95382)",SHORE BOULEVARD,WEST END AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520173,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,7:00,MANHATTAN,10026,40.801796,-73.955124,"(40.801796, -73.955124)",,,235 WEST 113 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4520283,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,1:30,,,,,,VERRAZANO BRIDGE UPPER,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4520304,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/17/2022,1:10,BROOKLYN,11208,40.67026,-73.86739,"(40.67026, -73.86739)",,,1365 DUMONT AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4519647,Sedan,Sedan,Sedan,, +04/17/2022,15:00,BROOKLYN,11228,40.613617,-74.01317,"(40.613617, -74.01317)",,,1327 86 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519735,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,21:50,QUEENS,11105,40.7822,-73.91633,"(40.7822, -73.91633)",,,19-13 21 ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4519769,Sedan,,,, +04/17/2022,0:40,BRONX,10472,40.829502,-73.87462,"(40.829502, -73.87462)",WESTCHESTER AVENUE,MORRISON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4519972,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,23:31,,,40.731506,-73.895805,"(40.731506, -73.895805)",53 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520335,Sedan,,,, +04/17/2022,4:55,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519667,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,18:14,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519814,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,3:00,MANHATTAN,10033,40.844574,-73.9345,"(40.844574, -73.9345)",,,521 WEST 175 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519612,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,23:48,,,40.615993,-74.031136,"(40.615993, -74.031136)",95 STREET,4 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4519754,Taxi,,,, +04/17/2022,18:10,,,40.874992,-73.81846,"(40.874992, -73.81846)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520152,Sedan,Sedan,,, +04/17/2022,10:00,,,40.75829,-73.83431,"(40.75829, -73.83431)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519748,Sedan,,,, +04/08/2022,12:41,BRONX,10469,40.873642,-73.85318,"(40.873642, -73.85318)",,,3312 BOSTON ROAD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4520383,Sedan,E-Bike,,, +04/14/2022,18:25,STATEN ISLAND,10312,40.56152,-74.17186,"(40.56152, -74.17186)",DRUMGOOLE ROAD WEST,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,17:00,QUEENS,11435,40.69424,-73.810905,"(40.69424, -73.810905)",REMINGTON STREET,101 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519870,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/09/2022,16:00,,,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520249,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,6:26,STATEN ISLAND,10306,40.58124,-74.09845,"(40.58124, -74.09845)",HYLAN BOULEVARD,JEFFERSON AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520300,Sedan,Sedan,,, +04/14/2022,7:30,QUEENS,11434,40.680485,-73.774704,"(40.680485, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520276,Sedan,,,, +04/17/2022,7:30,BRONX,10472,40.83202,-73.87323,"(40.83202, -73.87323)",METCALF AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519959,Sedan,,,, +04/17/2022,9:27,,,40.62509,-74.12474,"(40.62509, -74.12474)",EGBERT AVENUE,MANOR ROAD,,0,0,0,0,0,0,0,0,Accelerator Defective,,,,,4520362,Sedan,,,, +04/17/2022,18:10,,,40.81394,-73.948425,"(40.81394, -73.948425)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519848,Sedan,Sedan,,, +02/04/2022,4:45,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500740,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,15:46,BROOKLYN,11207,40.667385,-73.88709,"(40.667385, -73.88709)",DUMONT AVENUE,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519834,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,3:30,,,40.72973,-73.91183,"(40.72973, -73.91183)",58 STREET,BORDEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4519574,Station Wagon/Sport Utility Vehicle,,,, +04/04/2022,14:30,QUEENS,11101,40.74473,-73.93359,"(40.74473, -73.93359)",THOMSON AVENUE,VANDAM STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520408,Station Wagon/Sport Utility Vehicle,Bus,,, +04/17/2022,15:25,,,,,,WILLIAMSBRIDGE ROAD,PELHAM PARKWAY SOUTH,,3,0,0,0,0,0,3,0,Other Vehicular,Failure to Yield Right-of-Way,Unspecified,,,4519720,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/17/2022,10:33,BROOKLYN,11217,40.675087,-73.97189,"(40.675087, -73.97189)",,,18 8 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519907,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,10:05,QUEENS,11418,40.70018,-73.842766,"(40.70018, -73.842766)",,,84-22 107 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520346,Sedan,Box Truck,,, +04/17/2022,19:59,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519918,Sedan,Sedan,Sedan,, +04/17/2022,12:50,BRONX,10465,40.820587,-73.81782,"(40.820587, -73.81782)",,,2913 SAMPSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520093,Sedan,,,, +04/05/2022,10:45,MANHATTAN,10010,40.740738,-73.98769,"(40.740738, -73.98769)",,,24 EAST 23 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4520353,Sedan,Bike,,, +04/17/2022,12:27,,,40.706608,-74.00204,"(40.706608, -74.00204)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519888,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,17:35,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4519791,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,18:30,QUEENS,11375,40.72873,-73.85088,"(40.72873, -73.85088)",66 ROAD,103 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4520392,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,20:30,BROOKLYN,11226,40.648983,-73.94841,"(40.648983, -73.94841)",SNYDER AVENUE,EAST 31 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520442,Sedan,,,, +04/14/2022,16:40,MANHATTAN,10010,40.741882,-73.9904,"(40.741882, -73.9904)",,,16 WEST 23 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520245,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,14:30,BROOKLYN,11217,40.679817,-73.98513,"(40.679817, -73.98513)",,,578 DE GRAW STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520323,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,22:21,MANHATTAN,10010,40.736885,-73.978546,"(40.736885, -73.978546)",EAST 23 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4519952,Sedan,E-Scooter,,, +04/17/2022,8:25,BROOKLYN,11225,40.660442,-73.95688,"(40.660442, -73.95688)",BEDFORD AVENUE,MAPLE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/06/2022,1:13,BRONX,10469,40.88302,-73.85325,"(40.88302, -73.85325)",EAST 222 STREET,PAULDING AVENUE,,6,0,0,0,0,0,6,0,Pavement Slippery,Unspecified,,,,4520366,Sedan,Sedan,,, +04/17/2022,19:00,QUEENS,11373,40.743057,-73.87769,"(40.743057, -73.87769)",WHITNEY AVENUE,JUDGE STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4520067,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +04/16/2022,4:15,BRONX,10469,40.87911,-73.84325,"(40.87911, -73.84325)",BOSTON ROAD,EAST 222 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520372,Sedan,Sedan,,, +04/17/2022,0:03,BROOKLYN,11212,40.662556,-73.91963,"(40.662556, -73.91963)",TAPSCOTT STREET,DUMONT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4519521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,13:25,,,40.7795,-73.981636,"(40.7795, -73.981636)",WEST 73 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520395,Sedan,Box Truck,,, +04/17/2022,0:08,,,40.811565,-73.942726,"(40.811565, -73.942726)",LENOX AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519847,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/16/2022,23:00,MANHATTAN,10002,40.719933,-73.97876,"(40.719933, -73.97876)",EAST HOUSTON STREET,COLUMBIA STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4520268,Bike,,,, +04/17/2022,14:07,,,40.726135,-73.76318,"(40.726135, -73.76318)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519710,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,14:30,BROOKLYN,11219,40.63273,-73.98532,"(40.63273, -73.98532)",,,1558 47 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477497,Sedan,,,, +01/31/2022,11:30,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4500793,Sedan,,,, +04/10/2022,5:35,BROOKLYN,11221,40.68796,-73.94194,"(40.68796, -73.94194)",QUINCY STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4520253,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/02/2022,16:15,BRONX,10451,40.817677,-73.923874,"(40.817677, -73.923874)",,,241 EAST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/17/2022,12:15,BRONX,10472,40.833965,-73.8629,"(40.833965, -73.8629)",WHITE PLAINS ROAD,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4519957,Sedan,Sedan,Sedan,, +04/17/2022,19:00,MANHATTAN,10025,40.804825,-73.966225,"(40.804825, -73.966225)",WEST 111 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520002,Pick-up Truck,,,, +04/15/2022,13:00,,,,,,BEACH CHANNEL DRIVE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4520309,Station Wagon/Sport Utility Vehicle,Sedan,Motorcycle,, +04/17/2022,0:50,STATEN ISLAND,10312,40.557346,-74.16622,"(40.557346, -74.16622)",BARLOW AVENUE,GETZ AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520153,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/17/2022,10:50,,,40.651264,-74.003914,"(40.651264, -74.003914)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519745,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,8:30,QUEENS,11420,40.682503,-73.82131,"(40.682503, -73.82131)",109 AVENUE,120 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519782,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,5:18,BROOKLYN,11212,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,WINTHROP STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4519627,Sedan,Sedan,,, +04/17/2022,17:02,BROOKLYN,11212,40.659542,-73.90764,"(40.659542, -73.90764)",,,206 NEWPORT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4520182,Sedan,,,, +04/17/2022,0:53,MANHATTAN,10004,40.70492,-74.009056,"(40.70492, -74.009056)",,,5 HANOVER SQUARE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4519896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,22:47,MANHATTAN,10022,40.75895,-73.96849,"(40.75895, -73.96849)",3 AVENUE,EAST 55 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519750,Station Wagon/Sport Utility Vehicle,Taxi,,, +04/17/2022,13:05,BROOKLYN,11235,40.5839,-73.93874,"(40.5839, -73.93874)",NOSTRAND AVENUE,EMMONS AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,Unspecified,,,,4519795,MTA BUS,Sedan,,, +04/17/2022,10:16,BRONX,10461,40.85025,-73.8449,"(40.85025, -73.8449)",,,1825 EASTCHESTER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520327,Sedan,Ambulance,,, +04/06/2022,16:58,MANHATTAN,10027,40.80897,-73.94833,"(40.80897, -73.94833)",WEST 125 STREET,7 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4520285,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,20:25,STATEN ISLAND,10309,40.527668,-74.23023,"(40.527668, -74.23023)",VETERANS ROAD WEST,TYRELLAN AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4520293,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,9:00,QUEENS,11429,40.711098,-73.739426,"(40.711098, -73.739426)",HOLLIS AVENUE,217 LANE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4519621,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,23:00,BRONX,10451,40.827244,-73.92406,"(40.827244, -73.92406)",WALTON AVENUE,EAST 161 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520013,Sedan,Sedan,,, +04/17/2022,13:10,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS HILLS STREET,CYPRESS AVENUE,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,,,,4519682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,16:28,MANHATTAN,10016,40.741642,-73.97817,"(40.741642, -73.97817)",2 AVENUE,EAST 29 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520244,Sedan,E-Bike,,, +04/17/2022,0:25,BROOKLYN,11212,40.670113,-73.910866,"(40.670113, -73.910866)",,,408 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519606,Sedan,Motorcycle,,, +04/17/2022,20:28,MANHATTAN,10021,40.773773,-73.96608,"(40.773773, -73.96608)",EAST 74 STREET,5 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519830,Station Wagon/Sport Utility Vehicle,Bike,,, +04/17/2022,15:10,QUEENS,11433,40.695995,-73.782776,"(40.695995, -73.782776)",MERRICK BOULEVARD,110 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4520279,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,22:31,MANHATTAN,10018,40.754128,-73.98834,"(40.754128, -73.98834)",WEST 39 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520114,Sedan,,,, +04/17/2022,20:00,QUEENS,11434,40.662476,-73.77395,"(40.662476, -73.77395)",,,145-58 167 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519733,Sedan,,,, +02/04/2022,11:00,,,,,,,,1 SELVIN LOOP,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500856,Sedan,,,, +10/23/2021,5:00,STATEN ISLAND,10304,,,,RICHMOND ROAD,COLUMBUS AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4477592,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,0:17,BROOKLYN,11206,40.70721,-73.93656,"(40.70721, -73.93656)",,,306 JOHNSON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4498565,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/05/2022,7:10,,,40.674744,-73.78222,"(40.674744, -73.78222)",157 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500921,Sedan,,,, +02/05/2022,16:20,MANHATTAN,10006,40.709145,-74.01309,"(40.709145, -74.01309)",GREENWICH STREET,ALBANY STREET,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4500924,Motorscooter,,,, +01/30/2022,18:31,,,40.702263,-73.748955,"(40.702263, -73.748955)",FRANCIS LEWIS BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500925,Taxi,Sedan,,, +02/04/2022,19:00,STATEN ISLAND,10307,40.516064,-74.23244,"(40.516064, -74.23244)",,,303 PAGE AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500929,Sedan,Sedan,,, +01/31/2022,21:30,QUEENS,11434,40.673008,-73.78809,"(40.673008, -73.78809)",150 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500926,Sedan,Bus,,, +02/03/2022,19:00,,,,,,VAN WYCK EXPRESSWAY (CDR),,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500927,Sedan,Sedan,,, +02/21/2022,23:49,QUEENS,11413,40.666393,-73.75177,"(40.666393, -73.75177)",NORTH CONDUIT AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4504750,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/12/2022,8:20,QUEENS,11423,0,0,"(0.0, 0.0)",,,87-18 188 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4505162,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,11:50,BROOKLYN,11223,40.60612,-73.96565,"(40.60612, -73.96565)",KINGS HIGHWAY,EAST 7 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504650,Sedan,,,, +02/20/2022,6:10,,,40.670586,-73.76509,"(40.670586, -73.76509)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4505140,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/19/2022,7:42,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4505156,Sedan,,,, +12/18/2021,2:25,BROOKLYN,11217,40.68305,-73.97377,"(40.68305, -73.97377)",ATLANTIC AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4505168,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/21/2022,14:50,BROOKLYN,11224,40.577118,-74.001114,"(40.577118, -74.001114)",WEST 35 STREET,NEPTUNE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4504698,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,14:09,BROOKLYN,11211,40.713398,-73.95641,"(40.713398, -73.95641)",HOPE STREET,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4504850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,7:40,,,40.634174,-73.944885,"(40.634174, -73.944885)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504763,Carry All,Dump,,, +02/22/2022,19:26,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",WOODHAVEN BOULEVARD,91 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4505078,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,18:30,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4504834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/22/2022,8:25,MANHATTAN,10018,40.749977,-73.98426,"(40.749977, -73.98426)",,,8 WEST 36 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4504858,Sedan,,,, +02/22/2022,20:41,BRONX,10453,40.847187,-73.92135,"(40.847187, -73.92135)",MONTGOMERY AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4505275,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/15/2022,2:09,BROOKLYN,11234,40.622253,-73.92624,"(40.622253, -73.92624)",,,1570 EAST 51 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4505225,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/21/2022,15:13,QUEENS,11385,40.710777,-73.86502,"(40.710777, -73.86502)",COOPER AVENUE,88 STREET,,3,1,0,0,0,0,3,1,Traffic Control Disregarded,Unspecified,,,,4504806,Moped,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,2:10,BROOKLYN,11203,40.640587,-73.92566,"(40.640587, -73.92566)",,,5397 KINGS HIGHWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520438,Sedan,Sedan,,, +04/02/2022,23:45,BRONX,10467,40.874985,-73.86542,"(40.874985, -73.86542)",,,735 MAGENTA STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520377,Taxi,Sedan,,, +11/05/2021,16:19,,,40.6745,-73.9537,"(40.6745, -73.9537)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477641,Sedan,Motorscooter,,, +04/17/2022,1:52,QUEENS,11419,40.692875,-73.83219,"(40.692875, -73.83219)",ATLANTIC AVENUE,114 STREET,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4519914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,18:45,QUEENS,11412,40.705486,-73.77654,"(40.705486, -73.77654)",,,182-04 LIBERTY AVENUE,1,0,0,0,0,0,1,0,Glare,Unspecified,,,,4519871,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/05/2022,11:50,BROOKLYN,11226,40.652313,-73.95602,"(40.652313, -73.95602)",LINDEN BOULEVARD,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500162,Tractor Truck Diesel,,,, +02/05/2022,17:00,BROOKLYN,11206,40.708378,-73.94759,"(40.708378, -73.94759)",,,64 SCHOLES STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500492,Sedan,,,, +02/05/2022,12:50,,,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500289,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,16:00,STATEN ISLAND,10306,40.565254,-74.1301,"(40.565254, -74.1301)",AMBOY ROAD,GUYON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500719,Sedan,Sedan,,, +02/02/2022,7:30,,,40.592026,-74.19011,"(40.592026, -74.19011)",VICTORY BOULEVARD,WILD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500687,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,2:00,BROOKLYN,11221,40.691456,-73.9178,"(40.691456, -73.9178)",EVERGREEN AVENUE,WOODBINE STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4498706,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,22:41,QUEENS,11375,40.730946,-73.84859,"(40.730946, -73.84859)",108 STREET,65 ROAD,,5,0,0,0,0,0,5,0,Driver Inattention/Distraction,Unspecified,,,,4500250,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,21:15,MANHATTAN,10037,40.8139,-73.93827,"(40.8139, -73.93827)",,,15 WEST 136 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500606,Ambulance,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,11:00,,,40.698746,-73.9924,"(40.698746, -73.9924)",,,HENRY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500381,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,10:00,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500664,Sedan,Sedan,,, +02/03/2022,9:15,BROOKLYN,11226,40.651604,-73.95162,"(40.651604, -73.95162)",,,215 MARTENSE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500767,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/04/2022,14:25,,,40.713196,-73.74968,"(40.713196, -73.74968)",210 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500827,Motorcycle,Bus,,, +02/05/2022,1:30,BROOKLYN,11214,40.599854,-73.98878,"(40.599854, -73.98878)",24 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4499941,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,20:14,,,40.658028,-73.94744,"(40.658028, -73.94744)",HAWTHORNE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500399,Sedan,Sedan,,, +01/17/2022,2:00,BRONX,10458,40.854218,-73.89004,"(40.854218, -73.89004)",HOFFMAN STREET,EAST 184 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500715,Snow Plow,E-Bike,,, +02/04/2022,9:48,STATEN ISLAND,10310,40.628838,-74.12618,"(40.628838, -74.12618)",BROOKS PLACE,FLOYD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500755,Sedan,Sedan,,, +02/04/2022,7:05,BROOKLYN,11208,40.669456,-73.86284,"(40.669456, -73.86284)",LINDEN BOULEVARD,ELDERTS LANE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500645,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,8:05,,,40.734566,-73.72269,"(40.734566, -73.72269)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500041,Sedan,,,, +02/05/2022,22:19,BROOKLYN,11231,40.680317,-73.996895,"(40.680317, -73.996895)",COURT STREET,1 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500132,Sedan,,,, +02/05/2022,14:05,QUEENS,11418,40.699066,-73.81501,"(40.699066, -73.81501)",,,91-30 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4500510,Sedan,DUMP TRUCK,,, +02/05/2022,3:45,,,40.701782,-73.80634,"(40.701782, -73.80634)",JAMAICA AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500553,Sedan,,,, +02/04/2022,20:32,MANHATTAN,10019,40.76542,-73.98383,"(40.76542, -73.98383)",WEST 55 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500612,Sedan,,,, +02/04/2022,10:00,BROOKLYN,11249,40.720524,-73.96206,"(40.720524, -73.96206)",,,34 NORTH 7 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4500625,Sedan,Sedan,Box Truck,, +02/05/2022,21:18,BROOKLYN,11236,40.645817,-73.90309,"(40.645817, -73.90309)",,,1392 ROCKAWAY PARKWAY,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500109,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/05/2022,12:59,,,,,,46 STREET,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500070,Taxi,Sedan,,, +01/30/2022,11:04,STATEN ISLAND,10308,40.553017,-74.152145,"(40.553017, -74.152145)",RHETT AVENUE,KATAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500792,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,15:18,STATEN ISLAND,10308,40.55173,-74.15872,"(40.55173, -74.15872)",,,373 KATAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500812,Sedan,,,, +01/07/2022,19:22,MANHATTAN,10021,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,EAST 76 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500885,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,17:00,BROOKLYN,11228,40.627247,-74.01429,"(40.627247, -74.01429)",72 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4474368,Station Wagon/Sport Utility Vehicle,Bus,,, +11/10/2021,18:00,,,40.75455,-73.96252,"(40.75455, -73.96252)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476058,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,9:10,MANHATTAN,10029,40.79117,-73.9478,"(40.79117, -73.9478)",,,130 EAST 104 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477849,Sedan,Bus,,, +11/13/2021,19:00,,,40.755405,-73.97949,"(40.755405, -73.97949)",5 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477819,PK,,,, +11/13/2021,0:58,BRONX,10460,40.846542,-73.88561,"(40.846542, -73.88561)",EAST 180 STREET,MAPES AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477848,Taxi,Sedan,,, +11/13/2021,4:40,,,40.694855,-73.925,"(40.694855, -73.925)",EVERGREEN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4477829,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/08/2021,6:00,BROOKLYN,11237,40.692417,-73.902794,"(40.692417, -73.902794)",COOPER STREET,IRVING AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4477843,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/02/2021,7:00,BROOKLYN,11207,40.681377,-73.90778,"(40.681377, -73.90778)",FURMAN AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477831,Sedan,,,, +11/15/2020,22:20,BROOKLYN,11207,40.6828,-73.90638,"(40.6828, -73.90638)",BUSHWICK AVENUE,FURMAN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4477852,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,16:30,,,40.699627,-73.923836,"(40.699627, -73.923836)",DE KALB AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477832,Box Truck,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,10:35,BROOKLYN,11203,40.657673,-73.93104,"(40.657673, -73.93104)",,,644 UTICA AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4486209,Bike,,,, +02/05/2022,10:50,BROOKLYN,11220,40.63068,-74.01098,"(40.63068, -74.01098)",66 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500099,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/05/2022,12:50,QUEENS,11385,,,,,,341 ST. NICHOLAS AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4500072,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,10:20,MANHATTAN,10029,40.798996,-73.942535,"(40.798996, -73.942535)",,,112 EAST 116 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4500736,Tow Truck / Wrecker,Van,,, +12/13/2021,17:05,MANHATTAN,10011,40.739468,-73.999,"(40.739468, -73.999)",,,77 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4486215,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,20:10,MANHATTAN,10035,40.802395,-73.936775,"(40.802395, -73.936775)",EAST 123 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4486205,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,15:00,QUEENS,11420,40.675797,-73.81706,"(40.675797, -73.81706)",HAWTREE CREEK ROAD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4486216,Sedan,Sedan,,, +12/13/2021,10:45,BROOKLYN,11220,40.639706,-74.01961,"(40.639706, -74.01961)",62 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486208,Sedan,,,, +12/13/2021,0:00,QUEENS,11427,40.726227,-73.756714,"(40.726227, -73.756714)",CLEARVIEW EXPRESSWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4486218,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +03/27/2022,22:50,BROOKLYN,11239,40.64844,-73.88242,"(40.64844, -73.88242)",TWIN PINES DRIVE,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520334,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,18:30,QUEENS,11428,40.722466,-73.73692,"(40.722466, -73.73692)",93 AVENUE,SPRINGFIELD BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4486201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,23:20,QUEENS,11377,40.75,-73.89924,"(40.75, -73.89924)",63 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500124,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,9:13,,,40.749607,-73.89687,"(40.749607, -73.89687)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4500051,Sedan,,,, +01/27/2022,6:00,MANHATTAN,10039,40.82422,-73.9409,"(40.82422, -73.9409)",,,2768 8 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4500623,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,10:45,BRONX,10458,40.85476,-73.888245,"(40.85476, -73.888245)",ARTHUR AVENUE,EAST 186 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500325,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,17:44,,,40.68631,-73.97445,"(40.68631, -73.97445)",FULTON STREET,,,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4500422,Bike,Sedan,,, +02/01/2022,22:20,,,40.68045,-73.87586,"(40.68045, -73.87586)",CONDUIT BOULEVARD,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500639,Sedan,,,, +11/13/2021,14:30,BRONX,10456,40.835747,-73.902245,"(40.835747, -73.902245)",,,540 SAINT PAULS PLACE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476924,Sedan,Sedan,,, +11/13/2021,2:20,BROOKLYN,11210,40.63629,-73.947754,"(40.63629, -73.947754)",,,3019 FARRAGUT ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477156,Sedan,Sedan,,, +11/13/2021,22:25,BROOKLYN,11212,40.66502,-73.90571,"(40.66502, -73.90571)",,,544 STONE AVENUE,3,0,0,0,0,0,3,0,Aggressive Driving/Road Rage,Unspecified,,,,4477000,Sedan,,,, +11/12/2021,9:50,,,40.790154,-73.93675,"(40.790154, -73.93675)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4477818,Motorcycle,Sedan,,, +11/11/2021,11:50,MANHATTAN,10011,40.750305,-74.00837,"(40.750305, -74.00837)",12 AVENUE,WEST 24 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477563,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,19:45,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",WEST KINGSBRIDGE ROAD,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing Too Closely,,,,4477539,PK,Bus,,, +11/13/2021,0:35,BROOKLYN,11221,40.696014,-73.92153,"(40.696014, -73.92153)",GREENE AVENUE,CENTRAL AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4476758,Bike,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,11:30,,,40.840603,-73.91152,"(40.840603, -73.91152)",SHERIDAN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476964,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,16:29,,,40.69535,-73.91632,"(40.69535, -73.91632)",WILSON AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4477277,Bus,Sedan,,, +11/13/2021,7:00,BRONX,10472,40.826656,-73.8739,"(40.826656, -73.8739)",WATSON AVENUE,MORRISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477058,Sedan,,,, +11/13/2021,19:00,BROOKLYN,11220,40.634163,-74.00736,"(40.634163, -74.00736)",60 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477477,Bike,,,, +11/13/2021,17:35,MANHATTAN,10000,40.769764,-73.97455,"(40.769764, -73.97455)",CENTER DRIVE,TRANSVERSE ROAD NUMBER ONE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477614,Van,,,, +11/12/2021,7:30,STATEN ISLAND,10304,40.62955,-74.079124,"(40.62955, -74.079124)",,,136 PROSPECT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477676,Sedan,,,, +11/13/2021,6:30,,,40.70887,-73.81871,"(40.70887, -73.81871)",84 DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476779,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/13/2021,12:30,QUEENS,11106,,,,,,3635 22 STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4477071,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:00,MANHATTAN,10026,40.79811,-73.95032,"(40.79811, -73.95032)",,,46 WEST 111 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477557,Sedan,Sedan,,, +11/13/2021,13:36,MANHATTAN,10021,40.771782,-73.96544,"(40.771782, -73.96544)",MADISON AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477412,4 dr sedan,Box Truck,,, +11/13/2021,5:11,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476792,Tractor Truck Diesel,Sedan,,, +11/13/2021,11:25,,,,,,WHITESTONE EXPRESSWAY,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476900,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +11/13/2021,17:37,QUEENS,11373,40.735497,-73.869705,"(40.735497, -73.869705)",92 STREET,57 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477164,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,13:30,BROOKLYN,11233,40.681934,-73.922554,"(40.681934, -73.922554)",RALPH AVENUE,BAINBRIDGE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477200,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,15:50,BROOKLYN,11208,0,0,"(0.0, 0.0)",EUCLID AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,17:59,,,40.70982,-73.9402,"(40.70982, -73.9402)",STAGG STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4477347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/13/2021,10:42,,,40.659355,-73.9992,"(40.659355, -73.9992)",4 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476875,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,8:30,QUEENS,11413,40.671658,-73.75065,"(40.671658, -73.75065)",139 AVENUE,223 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476831,Sedan,Sedan,,, +10/15/2021,10:50,,,40.674885,-73.927765,"(40.674885, -73.927765)",,,ROCHESTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477640,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,4:29,BROOKLYN,11213,40.670277,-73.92542,"(40.670277, -73.92542)",BUFFALO AVENUE,SAINT JOHNS PLACE,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4477663,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,22:43,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",EAST 144 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477781,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,0:00,,,40.661385,-73.95362,"(40.661385, -73.95362)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476867,Sedan,,,, +11/13/2021,11:10,QUEENS,11428,40.719097,-73.73997,"(40.719097, -73.73997)",94 ROAD,216 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476832,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,15:15,,,,,,MANOR ROAD,HIGH ROCK PATH,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4477576,Sedan,Sedan,,, +11/13/2021,3:25,QUEENS,11411,40.69061,-73.733376,"(40.69061, -73.733376)",,,118-27 229 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476892,Sedan,,,, +11/13/2021,6:01,,,40.74877,-73.893616,"(40.74877, -73.893616)",37 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476811,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,14:00,,,40.701424,-73.94307,"(40.701424, -73.94307)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477346,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,11:45,BROOKLYN,11214,40.594894,-73.98677,"(40.594894, -73.98677)",26 AVENUE,BENSON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477032,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,2:28,,,40.829422,-73.9319,"(40.829422, -73.9319)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477083,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,20:20,QUEENS,11417,40.676727,-73.85984,"(40.676727, -73.85984)",PITKIN AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477390,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,11:47,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4477209,Sedan,,,, +11/13/2021,8:20,,,40.637905,-74.16611,"(40.637905, -74.16611)",,,93 SOUTH AVENUE,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,Unspecified,,,4477357,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/13/2021,9:20,STATEN ISLAND,10309,40.517437,-74.23171,"(40.517437, -74.23171)",,,6937 AMBOY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476822,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,2:25,MANHATTAN,10011,40.74581,-74.00554,"(40.74581, -74.00554)",10 AVENUE,WEST 20 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passenger Distraction,,,,4476881,Box Truck,Sedan,,, +11/13/2021,0:50,,,40.758125,-73.928505,"(40.758125, -73.928505)",35 AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476978,Sedan,Sedan,,, +11/08/2021,10:17,QUEENS,11385,40.708977,-73.90184,"(40.708977, -73.90184)",LINDEN STREET,60 PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477632,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,22:40,MANHATTAN,10002,40.72224,-73.9863,"(40.72224, -73.9863)",EAST HOUSTON STREET,AVENUE A,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4477797,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,21:12,BROOKLYN,11210,40.637596,-73.94817,"(40.637596, -73.94817)",,,1964 NOSTRAND AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477198,Sedan,Sedan,,, +11/13/2021,19:40,,,40.87398,-73.855774,"(40.87398, -73.855774)",LACONIA AVENUE,EAST GUN HILL ROAD,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477519,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,12:00,,,40.76657,-73.83145,"(40.76657, -73.83145)",LATIMER PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476901,Sedan,,,, +11/12/2021,17:30,QUEENS,11378,40.732174,-73.89586,"(40.732174, -73.89586)",69 STREET,52 DRIVE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,View Obstructed/Limited,,,,4477713,Sedan,Sedan,,, +11/13/2021,16:55,QUEENS,11377,40.74016,-73.89525,"(40.74016, -73.89525)",QUEENS BOULEVARD,45 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476935,Sedan,Sedan,,, +11/13/2021,1:36,STATEN ISLAND,10306,40.575813,-74.11979,"(40.575813, -74.11979)",RICHMOND ROAD,NEW DORP LANE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477581,,,,, +11/13/2021,14:02,,,40.710903,-73.992096,"(40.710903, -73.992096)",CHERRY STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4476843,Sedan,Moped,,, +11/13/2021,10:45,BROOKLYN,11219,40.630016,-73.9959,"(40.630016, -73.9959)",NEW UTRECHT AVENUE,57 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4477475,E-Bike,,,, +11/13/2021,14:30,BRONX,10472,40.82842,-73.86068,"(40.82842, -73.86068)",WHITE PLAINS ROAD,WATSON AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477262,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,16:28,BROOKLYN,11206,40.702892,-73.94422,"(40.702892, -73.94422)",MANHATTAN AVENUE,VARET STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477337,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,9:22,MANHATTAN,10009,40.726665,-73.98309,"(40.726665, -73.98309)",SAINT MARKS PLACE,AVENUE A,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477783,Pick-up Truck,,,, +11/13/2021,16:32,BROOKLYN,11211,40.7145,-73.961296,"(40.7145, -73.961296)",BEDFORD AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4477442,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,19:56,MANHATTAN,10029,40.795586,-73.950165,"(40.795586, -73.950165)",EAST 108 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Prescription Medication,Unspecified,,,,4477569,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,13:40,MANHATTAN,10018,40.75555,-73.991684,"(40.75555, -73.991684)",,,305 WEST 39 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Driver Inattention/Distraction,,,,4477022,Sedan,Van,,, +10/23/2021,16:02,,,,,,EAST 116 STREET,FDR DRIVE,,3,0,0,0,0,0,3,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4477546,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/13/2021,18:16,MANHATTAN,10013,40.72625,-74.00374,"(40.72625, -74.00374)",VANDAM STREET,AVENUE OF THE AMERICAS,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4477074,Sedan,Sedan,,, +11/13/2021,11:30,,,,,,CLAY AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476956,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,15:00,,,,,,EAST 33 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477186,Sedan,,,, +11/11/2021,14:20,MANHATTAN,10013,40.717594,-73.99634,"(40.717594, -73.99634)",HESTER STREET,ELIZABETH STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477618,Sedan,Box Truck,,, +11/13/2021,18:50,BROOKLYN,11236,40.63947,-73.902756,"(40.63947, -73.902756)",EAST 92 STREET,AVENUE J,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476906,Sedan,Sedan,,, +11/13/2021,14:36,BRONX,10474,40.81636,-73.891815,"(40.81636, -73.891815)",LAFAYETTE AVENUE,TIFFANY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477491,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,19:27,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,BUFFALO AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477647,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,19:47,BROOKLYN,11235,40.58977,-73.93792,"(40.58977, -73.93792)",AVENUE Z,BROWN STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477105,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,22:23,,,40.746204,-73.835075,"(40.746204, -73.835075)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476966,Sedan,,,, +11/13/2021,21:35,MANHATTAN,10038,40.713715,-73.998024,"(40.713715, -73.998024)",CHATHAM SQUARE,EAST BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477107,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,17:56,MANHATTAN,10035,40.80472,-73.93824,"(40.80472, -73.93824)",,,115 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477552,Sedan,Sedan,,, +11/13/2021,2:00,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Other Vehicular,Passing or Lane Usage Improper,,,,4476767,Sedan,Sedan,,, +11/11/2021,21:27,,,,,,,,357 35 street,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477585,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/11/2021,15:47,MANHATTAN,10036,40.755707,-73.98721,"(40.755707, -73.98721)",,,5 TIMES SQUARE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4477685,Sedan,Bike,,, +11/13/2021,17:15,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476930,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,21:00,BRONX,10455,40.81903,-73.91716,"(40.81903, -73.91716)",,,370 EAST 153 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477424,Sedan,,,, +10/29/2021,12:15,STATEN ISLAND,10305,40.60916,-74.07534,"(40.60916, -74.07534)",HYLAN BOULEVARD,KAY PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477673,Sedan,Pick-up Truck,,, +11/12/2021,12:30,,,40.669434,-73.9255,"(40.669434, -73.9255)",BUFFALO AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477646,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,19:10,MANHATTAN,10000,40.768322,-73.97093,"(40.768322, -73.97093)",,,14 TRANSVERSE ROAD NUMBER ONE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477538,Taxi,Sedan,,, +11/13/2021,0:22,,,,,,,,w52nd stre12 ave,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4476782,Sedan,,,, +11/06/2021,22:30,MANHATTAN,10018,40.75469,-73.99536,"(40.75469, -73.99536)",9 AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4477562,Sedan,Sedan,,, +11/13/2021,19:15,,,40.719833,-73.82624,"(40.719833, -73.82624)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476904,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,19:00,QUEENS,11419,40.691177,-73.8266,"(40.691177, -73.8266)",LEFFERTS BOULEVARD,97 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477066,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/10/2021,19:37,STATEN ISLAND,10306,40.555035,-74.12976,"(40.555035, -74.12976)",HYLAN BOULEVARD,SPRATT AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4477593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,20:00,BROOKLYN,11210,40.62873,-73.94334,"(40.62873, -73.94334)",FLATBUSH AVENUE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476958,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,0:00,QUEENS,11432,40.702217,-73.804115,"(40.702217, -73.804115)",,,150-14 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4477411,Pick-up Truck,,,, +11/13/2021,22:30,BROOKLYN,11219,40.632088,-74.00084,"(40.632088, -74.00084)",,,1139 58 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4477486,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,21:40,QUEENS,11368,40.756187,-73.86162,"(40.756187, -73.86162)",107 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477006,Sedan,E-Bike,,, +10/30/2021,17:50,,,40.713303,-73.88427,"(40.713303, -73.88427)",66 DRIVE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477664,Sedan,,,, +11/12/2021,16:15,STATEN ISLAND,10306,40.575607,-74.12035,"(40.575607, -74.12035)",,,2465 RICHMOND ROAD,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4477580,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,11:02,,,40.627926,-73.93175,"(40.627926, -73.93175)",AVENUE J,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4476838,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,14:05,BROOKLYN,11225,40.663376,-73.946915,"(40.663376, -73.946915)",,,421 STERLING STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476868,Sedan,,,, +11/13/2021,11:22,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Turning Improperly,Unsafe Lane Changing,,,,4477223,Sedan,Sedan,,, +11/13/2021,13:35,,,40.576706,-73.972824,"(40.576706, -73.972824)",WEST 5 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4477655,Station Wagon/Sport Utility Vehicle,Bike,,, +11/13/2021,21:22,,,40.790936,-73.968925,"(40.790936, -73.968925)",WEST 93 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476925,Taxi,,,, +11/13/2021,14:01,MANHATTAN,10035,40.80549,-73.937965,"(40.80549, -73.937965)",,,107 EAST 126 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4477364,Sedan,Sedan,Sedan,, +11/12/2021,8:44,MANHATTAN,10032,40.838425,-73.941696,"(40.838425, -73.941696)",WEST 164 STREET,BROADWAY,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477612,E-Scooter,,,, +11/13/2021,5:43,MANHATTAN,10022,40.7616,-73.96865,"(40.7616, -73.96865)",EAST 58 STREET,LEXINGTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476824,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,17:00,BRONX,10466,40.89063,-73.85892,"(40.89063, -73.85892)",WHITE PLAINS ROAD,EAST 229 STREET,,2,0,1,0,0,0,1,0,Unsafe Speed,,,,,4477139,Sedan,,,, +11/13/2021,0:55,BROOKLYN,11225,40.66309,-73.962395,"(40.66309, -73.962395)",FLATBUSH AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477263,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,4:50,,,40.88473,-73.81571,"(40.88473, -73.81571)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476858,Sedan,,,, +11/13/2021,7:00,,,40.76907,-73.908005,"(40.76907, -73.908005)",42 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476977,Sedan,,,, +11/13/2021,17:45,QUEENS,11691,40.603798,-73.75211,"(40.603798, -73.75211)",SMITH PLACE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477520,Bus,Sedan,,, +11/13/2021,12:45,MANHATTAN,10001,40.752686,-74.000534,"(40.752686, -74.000534)",10 AVENUE,WEST 31 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4477567,Sedan,Sedan,,, +11/13/2021,23:22,BROOKLYN,11211,40.714134,-73.9485,"(40.714134, -73.9485)",,,616 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477401,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/13/2021,3:45,BROOKLYN,11228,40.617535,-74.021614,"(40.617535, -74.021614)",7 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4476915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +11/13/2021,1:23,BROOKLYN,11231,40.679638,-73.99252,"(40.679638, -73.99252)",,,346 HOYT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4476988,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,16:10,BROOKLYN,11218,40.632687,-73.97308,"(40.632687, -73.97308)",,,3918 18 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4477810,,,,, +11/04/2021,11:03,,,40.729862,-73.99144,"(40.729862, -73.99144)",LAFAYETTE STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4477796,Sedan,Bike,,, +11/08/2021,12:30,QUEENS,11385,40.694107,-73.89737,"(40.694107, -73.89737)",COOPER AVENUE,CYPRESS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477633,Sedan,,,, +11/07/2021,0:50,BROOKLYN,11212,40.6592,-73.91645,"(40.6592, -73.91645)",,,369 EAST 98 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4477732,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/13/2021,16:45,BRONX,10466,40.89225,-73.861404,"(40.89225, -73.861404)",EAST 230 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4477207,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/13/2021,1:10,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4476791,Sedan,Sedan,,, +11/13/2021,2:52,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477356,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,18:47,QUEENS,11354,40.762333,-73.833176,"(40.762333, -73.833176)",PRINCE STREET,36 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476895,Taxi,E-Bike,,, +11/13/2021,5:30,,,40.706306,-73.919586,"(40.706306, -73.919586)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477276,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,15:00,,,40.74286,-73.846535,"(40.74286, -73.846535)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477163,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,23:00,MANHATTAN,10010,,,,,,10 WATERSIDE PLAZA,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4477030,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/13/2021,15:15,MANHATTAN,10036,40.76275,-73.99692,"(40.76275, -73.99692)",WEST 45 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477808,Sedan,Sedan,,, +08/16/2021,8:50,,,40.725792,-73.94264,"(40.725792, -73.94264)",NASSAU AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477574,Sedan,,,, +11/13/2021,17:31,MANHATTAN,10005,40.706314,-74.007904,"(40.706314, -74.007904)",,,70 PINE STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477082,Taxi,Bike,,, +11/13/2021,16:50,MANHATTAN,10030,40.8165,-73.946556,"(40.8165, -73.946556)",8 AVENUE,WEST 135 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,Unspecified,,,4477499,Sedan,Taxi,Sedan,, +11/13/2021,23:33,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477366,Sedan,Sedan,,, +11/13/2021,2:20,QUEENS,11373,40.73675,-73.87768,"(40.73675, -73.87768)",BROADWAY,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477458,Sedan,Sedan,,, +11/13/2021,17:52,BROOKLYN,11214,40.60143,-74.00514,"(40.60143, -74.00514)",CROPSEY AVENUE,19 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4476984,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,12:35,BROOKLYN,11207,40.67208,-73.895935,"(40.67208, -73.895935)",,,236 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477304,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,0:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Reaction to Uninvolved Vehicle,,,,4476807,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/13/2021,3:33,STATEN ISLAND,10301,40.614304,-74.09764,"(40.614304, -74.09764)",GRAND AVENUE,FOOTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4477096,Sedan,Sedan,Sedan,Sedan, +11/13/2021,0:00,BROOKLYN,11220,40.646786,-74.008575,"(40.646786, -74.008575)",47 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476873,Pick-up Truck,Sedan,,, +11/13/2021,0:27,MANHATTAN,10013,40.71755,-73.99932,"(40.71755, -73.99932)",CANAL STREET,BAXTER STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477111,Taxi,Sedan,,, +11/13/2021,8:20,STATEN ISLAND,10305,40.581814,-74.097725,"(40.581814, -74.097725)",HYLAN BOULEVARD,STOBE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476929,Box Truck,Sedan,,, +11/13/2021,16:40,BRONX,10457,40.846733,-73.90649,"(40.846733, -73.90649)",EAST 175 STREET,MONROE AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477092,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,19:00,BROOKLYN,11224,40.58061,-73.98565,"(40.58061, -73.98565)",CROPSEY AVENUE,HART PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477543,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,22:20,,,40.748512,-73.98872,"(40.748512, -73.98872)",WEST 32 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477018,Taxi,,,, +11/11/2021,16:40,MANHATTAN,10026,40.803215,-73.95254,"(40.803215, -73.95254)",WEST 116 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477553,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,2:25,BROOKLYN,11234,40.61304,-73.92621,"(40.61304, -73.92621)",FLATBUSH AVENUE,AVENUE S,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4476768,Sedan,Sedan,,, +11/11/2021,14:10,,,40.748466,-73.99247,"(40.748466, -73.99247)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477586,Sedan,Box Truck,,, +11/13/2021,11:39,MANHATTAN,10021,40.768795,-73.958374,"(40.768795, -73.958374)",2 AVENUE,EAST 72 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477422,PK,Station Wagon/Sport Utility Vehicle,,, +10/31/2021,6:00,QUEENS,11385,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,MYRTLE AVENUE,,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477682,E-Scooter,,,, +11/03/2021,8:15,,,40.67329,-73.95703,"(40.67329, -73.95703)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477656,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,23:12,BROOKLYN,11231,40.67529,-74.00367,"(40.67529, -74.00367)",,,754 HENRY STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477265,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,5:35,QUEENS,11374,40.72962,-73.85817,"(40.72962, -73.85817)",64 ROAD,98 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4476853,Sedan,Sedan,Sedan,Sedan, +11/13/2021,13:30,BRONX,10475,40.863945,-73.8295,"(40.863945, -73.8295)",,,100 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476859,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,3:24,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477187,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,10:20,STATEN ISLAND,10308,40.54959,-74.1374,"(40.54959, -74.1374)",HYLAN BOULEVARD,KEEGANS LANE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477584,Pick-up Truck,Sedan,,, +11/13/2021,11:30,MANHATTAN,10011,40.740208,-73.99952,"(40.740208, -73.99952)",,,218 WEST 16 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476880,Box Truck,Box Truck,,, +11/13/2021,18:01,BROOKLYN,11221,40.686447,-73.92244,"(40.686447, -73.92244)",,,874 JEFFERSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477224,Sedan,Moped,,, +11/07/2021,16:28,MANHATTAN,10002,,,,PIKE STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477617,Van,PK,,, +11/13/2021,16:04,,,40.722095,-73.77772,"(40.722095, -73.77772)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476914,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,20:50,,,,,,FOCH BOULEVARD,VANWYCK EXPRESSWAY,,7,0,0,0,0,0,7,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4477339,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/04/2021,9:25,,,40.679375,-73.96408,"(40.679375, -73.96408)",WASHINGTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4477654,Bus,Bike,,, +11/13/2021,8:37,BROOKLYN,11236,40.63964,-73.90153,"(40.63964, -73.90153)",,,1263 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4476817,Sedan,Sedan,Sedan,, +11/13/2021,14:10,,,40.72114,-73.942825,"(40.72114, -73.942825)",MEEKER AVENUE,NORTH HENRY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477189,Sedan,Sedan,,, +11/13/2021,22:25,BROOKLYN,11208,40.672543,-73.86929,"(40.672543, -73.86929)",,,619 CRESCENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477307,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,19:27,,,40.635338,-74.13332,"(40.635338, -74.13332)",,,1522 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477359,Pick-up Truck,Sedan,,, +11/13/2021,0:00,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476829,Sedan,Bike,,, +11/13/2021,17:00,STATEN ISLAND,10309,40.5227,-74.23493,"(40.5227, -74.23493)",,,31 PAGE AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4476879,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,18:37,,,40.671535,-73.957664,"(40.671535, -73.957664)",FRANKLIN AVENUE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4477635,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,22:25,BROOKLYN,11216,40.6709,-73.95319,"(40.6709, -73.95319)",ROGERS AVENUE,LINCOLN PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477645,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,20:24,QUEENS,11355,40.75425,-73.827835,"(40.75425, -73.827835)",FRANKLIN AVENUE,MAIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476903,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,3:00,STATEN ISLAND,10301,40.631447,-74.098885,"(40.631447, -74.098885)",FOREST AVENUE,RANDALL AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477068,Sedan,Sedan,,, +11/10/2021,16:00,BROOKLYN,11231,40.68099,-73.991615,"(40.68099, -73.991615)",,,302 HOYT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477623,Sedan,,,, +11/13/2021,22:00,QUEENS,11423,40.714302,-73.76657,"(40.714302, -73.76657)",90 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477415,Sedan,,,, +11/12/2021,3:05,STATEN ISLAND,10314,40.610146,-74.099884,"(40.610146, -74.099884)",MILFORD DRIVE,HEWITT AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4477579,Sedan,,,, +11/13/2021,9:35,BROOKLYN,11234,40.630173,-73.933624,"(40.630173, -73.933624)",,,4421 AVENUE I,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476837,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,18:20,BRONX,10475,40.87424,-73.82584,"(40.87424, -73.82584)",,,140 BENCHLEY PLACE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500570,Sedan,Sedan,,, +11/13/2021,2:25,QUEENS,11434,40.690342,-73.78243,"(40.690342, -73.78243)",167 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476798,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,15:32,,,40.71576,-73.74655,"(40.71576, -73.74655)",JAMAICA AVENUE,212 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Following Too Closely,Unspecified,,,4476897,Sedan,Sedan,Motorcycle,, +11/09/2021,19:00,MANHATTAN,10001,40.74755,-73.990295,"(40.74755, -73.990295)",,,112 WEST 30 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4477687,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,19:11,BROOKLYN,11208,40.66451,-73.88103,"(40.66451, -73.88103)",HEGEMAN AVENUE,CLEVELAND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500630,Refrigerated Van,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,1:50,QUEENS,11378,40.733685,-73.892296,"(40.733685, -73.892296)",,,71-21 52 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4477173,Station Wagon/Sport Utility Vehicle,Lateral Tr,Station Wagon/Sport Utility Vehicle,, +11/13/2021,6:36,,,40.759567,-73.83015,"(40.759567, -73.83015)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4476888,Sedan,Armored Truck,,, +11/12/2021,20:59,BRONX,10468,40.859,-73.90353,"(40.859, -73.90353)",JEROME AVENUE,EVELYN PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477542,Sedan,Sedan,,, +11/13/2021,3:00,QUEENS,11434,40.677265,-73.778625,"(40.677265, -73.778625)",BREWER BOULEVARD,129 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477343,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,19:10,,,40.640015,-73.92575,"(40.640015, -73.92575)",KINGS HIGHWAY,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476961,Sedan,Dirtbike,,, +11/13/2021,21:30,BRONX,10457,40.847908,-73.90357,"(40.847908, -73.90357)",ANTHONY AVENUE,MOUNT HOPE PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477212,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,21:10,QUEENS,11412,40.69689,-73.74929,"(40.69689, -73.74929)",116 AVENUE,204 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4477354,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,5:10,BROOKLYN,11208,40.684986,-73.881676,"(40.684986, -73.881676)",FORCE TUBE AVENUE,ETNA STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4477303,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +11/13/2021,22:40,BRONX,10460,40.837864,-73.86356,"(40.837864, -73.86356)",WHITE PLAINS ROAD,ARCHER STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477056,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,10:45,BROOKLYN,11218,40.642868,-73.97798,"(40.642868, -73.97798)",,,220 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477485,Station Wagon/Sport Utility Vehicle,,,, +10/22/2021,18:00,STATEN ISLAND,10301,,,,FOREST AVENUE,BRIGHTON AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477610,Sedan,,,, +11/13/2021,16:50,QUEENS,11429,40.71316,-73.73536,"(40.71316, -73.73536)",,,218-81 HEMPSTEAD AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476952,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,9:40,QUEENS,11418,40.697205,-73.827194,"(40.697205, -73.827194)",,,89-06 121 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477526,Taxi,,,, +11/13/2021,11:50,STATEN ISLAND,10306,,,,RICHMOND HILL ROAD,EDINBORO ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476932,Sedan,Sedan,,, +11/13/2021,4:00,MANHATTAN,10019,40.76542,-73.98383,"(40.76542, -73.98383)",WEST 55 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476789,Sedan,,,, +11/12/2021,19:00,,,40.802696,-73.949196,"(40.802696, -73.949196)",LENOX AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4477554,Sedan,Bike,,, +11/12/2021,19:20,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",WILLIAMSBURG BRIDGE,CLINTON STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477733,Sedan,,,, +11/13/2021,2:52,,,40.657017,-74.00474,"(40.657017, -74.00474)",GOWANUS EXPY (BQE),,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4476871,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/13/2021,18:29,,,40.688766,-73.99907,"(40.688766, -73.99907)",BROOKLYN QUEENS EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4476989,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,21:22,BROOKLYN,11201,40.692234,-73.987305,"(40.692234, -73.987305)",JAY STREET,WILLOUGHBY STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477668,Bike,Bike,,, +11/11/2021,14:07,QUEENS,11423,40.717754,-73.75815,"(40.717754, -73.75815)",90 AVENUE,205 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477598,Sedan,,,, +11/13/2021,0:44,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477430,Pick-up Truck,Sedan,,, +11/13/2021,9:11,BROOKLYN,11214,40.61068,-74.00669,"(40.61068, -74.00669)",16 AVENUE,85 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477011,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,9:05,,,40.725193,-73.98705,"(40.725193, -73.98705)",EAST 4 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477795,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,10:30,BROOKLYN,11226,40.643246,-73.94859,"(40.643246, -73.94859)",,,3004 CLARENDON ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4477160,Sedan,,,, +11/13/2021,10:00,QUEENS,11414,40.660374,-73.855774,"(40.660374, -73.855774)",157 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477463,Sedan,,,, +11/13/2021,19:16,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476969,Sedan,,,, +11/13/2021,16:00,QUEENS,11357,40.78157,-73.8087,"(40.78157, -73.8087)",154 STREET,19 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4476918,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,0:00,MANHATTAN,10027,40.8073,-73.94649,"(40.8073, -73.94649)",,,100 WEST 124 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477548,Sedan,Sedan,,, +11/11/2021,7:20,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",WEST 34 STREET,11 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477566,Moped,Tractor Truck Diesel,,, +11/13/2021,1:34,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",WEBSTER AVENUE,EAST 233 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4477204,Sedan,Tractor Truck Diesel,,, +11/13/2021,10:50,MANHATTAN,10021,40.76911,-73.963165,"(40.76911, -73.963165)",LEXINGTON AVENUE,EAST 70 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477405,Box Truck,Taxi,,, +11/13/2021,10:30,MANHATTAN,10001,40.746773,-73.985794,"(40.746773, -73.985794)",,,306 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477027,Sedan,UNKNOWN,,, +11/11/2021,7:25,MANHATTAN,10017,40.756374,-73.97793,"(40.756374, -73.97793)",,,10 EAST 47 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477812,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/13/2021,20:39,BROOKLYN,11235,40.592518,-73.932625,"(40.592518, -73.932625)",AVENUE Y,KNAPP STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477103,Sedan,Sedan,,, +11/13/2021,19:55,,,40.8429,-73.93843,"(40.8429, -73.93843)",SAINT NICHOLAS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477616,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,14:06,,,40.820965,-73.939575,"(40.820965, -73.939575)",WEST 144 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477496,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,8:45,BROOKLYN,11217,40.68249,-73.97962,"(40.68249, -73.97962)",4 AVENUE,BERGEN STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4477671,Sedan,Sedan,,, +11/13/2021,2:00,BRONX,10466,40.899815,-73.85781,"(40.899815, -73.85781)",NEREID AVENUE,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4477126,Sedan,Sedan,,, +10/21/2021,19:16,STATEN ISLAND,10304,,,,BAY STREET,BROAD STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477661,Sedan,Sedan,,, +11/13/2021,17:25,,,40.786396,-73.80593,"(40.786396, -73.80593)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477502,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,3:00,BROOKLYN,11210,40.62731,-73.941826,"(40.62731, -73.941826)",FLATBUSH AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Unspecified,,,,,4476769,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,12:15,,,40.69313,-73.96984,"(40.69313, -73.96984)",MYRTLE AVENUE,,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477587,Sedan,Bike,,, +11/11/2021,22:20,MANHATTAN,10027,,,,,,125 W 125th St,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4477549,MTA BUS,,,, +11/13/2021,14:48,MANHATTAN,10029,40.793606,-73.95161,"(40.793606, -73.95161)",EAST 105 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,23:10,,,40.701958,-73.9239,"(40.701958, -73.9239)",KNICKERBOCKER AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477274,Sedan,,,, +11/13/2021,0:00,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",EAST 138 STREET,EXTERIOR STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4476860,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,17:13,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477236,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/13/2021,9:25,BRONX,10474,40.812603,-73.883385,"(40.812603, -73.883385)",,,1353 RANDALL AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4477572,Sedan,,,, +11/13/2021,9:00,BROOKLYN,11229,40.595604,-73.95484,"(40.595604, -73.95484)",,,2257 EAST 16 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477434,Sedan,,,, +11/13/2021,1:30,QUEENS,11366,40.731915,-73.77842,"(40.731915, -73.77842)",,,75-22 193 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477054,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,12:08,,,40.722553,-74.00141,"(40.722553, -74.00141)",,,BROOME STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477081,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/13/2021,19:25,,,,,,EAST 116 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477368,Sedan,,,, +11/13/2021,22:00,QUEENS,11385,40.70327,-73.86143,"(40.70327, -73.86143)",MYRTLE AVENUE,81 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/13/2021,5:40,,,40.770027,-73.81922,"(40.770027, -73.81922)",32 AVENUE,,,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,Unspecified,,,4476887,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/13/2021,15:20,,,40.793377,-73.97086,"(40.793377, -73.97086)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4476911,Sedan,,,, +10/22/2021,10:05,,,40.674904,-73.94447,"(40.674904, -73.94447)",SAINT MARKS AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477653,Sedan,,,, +11/13/2021,2:00,QUEENS,11432,40.717396,-73.797134,"(40.717396, -73.797134)",,,168-32 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476820,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/28/2021,12:52,BROOKLYN,11234,40.62526,-73.917885,"(40.62526, -73.917885)",,,2152 RALPH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477626,Sedan,Sedan,,, +11/13/2021,3:45,BROOKLYN,11222,40.735622,-73.9597,"(40.735622, -73.9597)",,,5 COMMERCIAL STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477190,Sedan,Sedan,,, +11/13/2021,15:29,QUEENS,11103,40.76382,-73.91728,"(40.76382, -73.91728)",,,30-24 37 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4476980,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +11/13/2021,16:01,MANHATTAN,10017,40.757286,-73.97812,"(40.757286, -73.97812)",WEST 48 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477807,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,21:45,STATEN ISLAND,10304,40.59755,-74.11133,"(40.59755, -74.11133)",TODT HILL ROAD,WILLOW POND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477583,Sedan,,,, +10/24/2021,0:10,QUEENS,11385,,,,WOODWARD AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4477681,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/13/2021,16:20,,,40.52865,-74.216835,"(40.52865, -74.216835)",DRUMGOOLE ROAD WEST,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,Unspecified,Unspecified,,4476889,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/13/2021,6:21,,,40.764603,-73.819305,"(40.764603, -73.819305)",37 AVENUE,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4476921,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,19:05,BROOKLYN,11222,40.729877,-73.9576,"(40.729877, -73.9576)",FRANKLIN STREET,GREENPOINT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477407,Station Wagon/Sport Utility Vehicle,Bike,,, +11/13/2021,6:45,,,40.66077,-73.89551,"(40.66077, -73.89551)",NEW LOTS AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4477324,Station Wagon/Sport Utility Vehicle,Sedan,E-Scooter,Station Wagon/Sport Utility Vehicle, +11/13/2021,2:00,BROOKLYN,11206,40.699863,-73.9559,"(40.699863, -73.9559)",WALLABOUT STREET,MIDDLETON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477344,Sedan,Sedan,Sedan,, +11/13/2021,14:30,MANHATTAN,10019,40.76832,-73.99269,"(40.76832, -73.99269)",,,550 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477813,Bus,Station Wagon/Sport Utility Vehicle,Sedan,, +11/13/2021,9:45,QUEENS,11372,40.755028,-73.872696,"(40.755028, -73.872696)",34 AVENUE,JUNCTION BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4476816,Sedan,,,, +11/13/2021,16:31,QUEENS,11358,40.766533,-73.79084,"(40.766533, -73.79084)",,,33-47 191 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477086,Sedan,,,, +11/13/2021,9:40,QUEENS,11374,40.718838,-73.85905,"(40.718838, -73.85905)",66 ROAD,ALDERTON STREET,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,Unspecified,,,4476851,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/13/2021,6:18,BRONX,10470,40.899666,-73.85741,"(40.899666, -73.85741)",,,609 NEREID AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477203,Pick-up Truck,Sedan,,, +11/13/2021,7:35,,,40.8451,-73.91878,"(40.8451, -73.91878)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476793,Hopper,Sedan,,, +11/13/2021,23:25,MANHATTAN,10002,40.71391,-73.99194,"(40.71391, -73.99194)",,,120 EAST BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476928,Taxi,Sedan,,, +11/13/2021,17:00,BROOKLYN,11208,40.672295,-73.87525,"(40.672295, -73.87525)",,,1158 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477306,Sedan,,,, +11/09/2021,23:15,BROOKLYN,11213,40.663704,-73.936424,"(40.663704, -73.936424)",,,770 EMPIRE BOULEVARD,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4477691,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/13/2021,22:45,QUEENS,11368,40.749264,-73.86847,"(40.749264, -73.86847)",ROOSEVELT AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477166,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,17:35,MANHATTAN,10000,40.769764,-73.97455,"(40.769764, -73.97455)",CENTER DRIVE,TRANSVERSE ROAD NUMBER ONE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4476878,Van,Van,,, +11/10/2021,13:55,MANHATTAN,10018,40.75529,-73.99493,"(40.75529, -73.99493)",9 AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4477565,Bike,Sedan,,, +11/13/2021,16:05,,,40.86242,-73.89405,"(40.86242, -73.89405)",EAST FORDHAM ROAD,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477529,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,18:00,MANHATTAN,10001,40.747143,-74.000854,"(40.747143, -74.000854)",WEST 24 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476990,Sedan,Sedan,,, +11/13/2021,17:58,BROOKLYN,11210,40.625126,-73.93981,"(40.625126, -73.93981)",EAST 37 STREET,AVENUE K,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476962,Sedan,,,, +11/13/2021,16:28,MANHATTAN,10075,40.77139,-73.95044,"(40.77139, -73.95044)",EAST 79 STREET,YORK AVENUE,,1,0,0,0,1,0,0,0,Following Too Closely,Other Vehicular,,,,4477413,Sedan,Bike,,, +11/13/2021,14:00,BROOKLYN,11219,40.636364,-73.98984,"(40.636364, -73.98984)",,,1314 46 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4477478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,6:30,QUEENS,11413,40.67953,-73.750854,"(40.67953, -73.750854)",,,217-01 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477013,Sedan,,,, +11/13/2021,21:26,,,40.771656,-73.95319,"(40.771656, -73.95319)",EAST 78 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4477770,Dump,Sedan,,, +11/13/2021,1:49,,,40.657017,-74.00474,"(40.657017, -74.00474)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Obstruction/Debris,Driver Inattention/Distraction,,,,4476872,Sedan,Sedan,,, +11/13/2021,21:38,,,,,,SANDS STREET,JAY STREET,,0,0,0,0,0,0,0,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4477669,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,5:35,QUEENS,11104,40.745007,-73.91928,"(40.745007, -73.91928)",43 AVENUE,45 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476833,Sedan,,,, +11/12/2021,14:55,MANHATTAN,10035,40.799797,-73.93867,"(40.799797, -73.93867)",,,2180 3 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477577,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,20:10,BRONX,10453,40.85673,-73.90279,"(40.85673, -73.90279)",EAST 182 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4477211,Box truck,Sedan,Sedan,Sedan, +11/13/2021,20:00,,,40.710243,-73.9584,"(40.710243, -73.9584)",SOUTH 4 STREET,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477353,Carry All,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,18:52,,,40.74105,-73.72587,"(40.74105, -73.72587)",CROSS ISLAND PARKWAY,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4476898,Sedan,,,, +11/13/2021,3:10,BRONX,10472,40.82851,-73.88012,"(40.82851, -73.88012)",WESTCHESTER AVENUE,WHEELER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477057,Sedan,Sedan,,, +11/13/2021,0:35,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477302,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,14:20,BROOKLYN,11203,40.654778,-73.93995,"(40.654778, -73.93995)",,,553 LENOX ROAD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4477158,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,9:40,BROOKLYN,11209,40.632442,-74.02142,"(40.632442, -74.02142)",,,7101 5 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4476830,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,0:57,,,40.86177,-73.89868,"(40.86177, -73.89868)",EAST 188 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476790,Sedan,Sedan,,, +11/13/2021,14:40,STATEN ISLAND,10306,40.56878,-74.10661,"(40.56878, -74.10661)",NEW DORP LANE,MILL ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4476931,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/22/2021,10:11,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477643,Garbage or Refuse,,,, +11/13/2021,3:30,STATEN ISLAND,10304,40.62981,-74.07468,"(40.62981, -74.07468)",WAVE STREET,FRONT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477069,Sedan,,,, +11/13/2021,10:18,MANHATTAN,10023,40.77221,-73.982185,"(40.77221, -73.982185)",BROADWAY,WEST 64 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4476902,Taxi,USPS TRUCK,,, +11/10/2021,18:32,BRONX,10467,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477540,Sedan,Bus,,, +11/10/2021,13:40,,,40.82034,-73.940025,"(40.82034, -73.940025)",7 AVENUE,,,1,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4477556,Sedan,E-Scooter,,, +11/13/2021,22:00,BROOKLYN,11235,40.58648,-73.95231,"(40.58648, -73.95231)",,,1661 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4477426,Station Wagon/Sport Utility Vehicle,,,, +10/06/2021,16:20,QUEENS,11435,40.694183,-73.80544,"(40.694183, -73.80544)",LIVERPOOL STREET,105 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477605,Sedan,,,, +11/13/2021,11:01,QUEENS,11427,40.72387,-73.75541,"(40.72387, -73.75541)",,,211-14 HILLSIDE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476953,Pick-up Truck,Bike,,, +11/13/2021,18:00,QUEENS,11414,40.6724,-73.856834,"(40.6724, -73.856834)",,,133-40 79 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477464,Sedan,,,, +11/06/2021,8:50,,,40.670277,-73.92542,"(40.670277, -73.92542)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4477639,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,20:37,BROOKLYN,11211,40.715168,-73.94622,"(40.715168, -73.94622)",,,325 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477193,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,9:38,,,40.66955,-73.94497,"(40.66955, -73.94497)",EASTERN PARKWAY,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4477662,Sedan,,,, +11/07/2021,16:45,,,40.67221,-73.92802,"(40.67221, -73.92802)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477712,PK,Bus,,, +11/13/2021,4:52,BRONX,10455,40.818836,-73.90323,"(40.818836, -73.90323)",,,806 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4476866,Sedan,,,, +11/13/2021,14:39,BROOKLYN,11237,40.69953,-73.91104,"(40.69953, -73.91104)",WYCKOFF AVENUE,PALMETTO STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477275,Sedan,,,, +11/08/2021,17:31,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477582,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,23:30,BRONX,10457,40.853138,-73.9017,"(40.853138, -73.9017)",ANTHONY AVENUE,EAST 180 STREET,,2,0,0,0,0,0,2,0,View Obstructed/Limited,View Obstructed/Limited,,,,4477181,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,14:15,BRONX,10462,40.852306,-73.86207,"(40.852306, -73.86207)",MULINER AVENUE,BRADY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4476850,Station Wagon/Sport Utility Vehicle,Moped,,, +11/13/2021,17:00,BROOKLYN,11220,40.62978,-74.01395,"(40.62978, -74.01395)",,,815 BAY RIDGE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4476891,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,15:00,BROOKLYN,11237,40.708805,-73.92577,"(40.708805, -73.92577)",STEWART AVENUE,JOHNSON AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4477358,Sedan,Sedan,,, +11/13/2021,7:30,BROOKLYN,11206,40.707104,-73.94565,"(40.707104, -73.94565)",,,101 MONTROSE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477345,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,10:00,,,40.749283,-73.756645,"(40.749283, -73.756645)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4476821,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,12:30,BROOKLYN,11222,40.722637,-73.95419,"(40.722637, -73.95419)",NASSAU AVENUE,BANKER STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477607,Sedan,Motorscooter,,, +11/13/2021,23:25,BROOKLYN,11201,40.70441,-73.98657,"(40.70441, -73.98657)",JAY STREET,JOHN STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4477670,Tractor Truck Diesel,,,, +11/13/2021,0:00,BROOKLYN,11211,40.710735,-73.961815,"(40.710735, -73.961815)",DRIGGS AVENUE,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477441,Sedan,,,, +11/13/2021,17:35,MANHATTAN,10019,40.768917,-73.98597,"(40.768917, -73.98597)",,,417 WEST 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477804,Sedan,,,, +11/13/2021,11:15,,,40.747765,-73.98296,"(40.747765, -73.98296)",EAST 34 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477025,Taxi,Sedan,Sedan,, +11/13/2021,17:50,,,40.806355,-73.953964,"(40.806355, -73.953964)",8 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477547,Sedan,Bike,,, +10/15/2021,14:30,MANHATTAN,10026,,,,,,2103 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477551,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,4:30,BROOKLYN,11201,40.68969,-73.99237,"(40.68969, -73.99237)",COURT STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4476778,Box Truck,,,, +11/08/2021,17:40,,,40.583664,-73.971756,"(40.583664, -73.971756)",SHORE PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477652,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,18:30,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477085,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,15:00,QUEENS,11372,40.747925,-73.88114,"(40.747925, -73.88114)",ROOSEVELT AVENUE,FORLEY STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477138,Station Wagon/Sport Utility Vehicle,Bike,,, +11/10/2021,19:58,,,40.570835,-74.16983,"(40.570835, -74.16983)",RICHMOND AVENUE,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Following Too Closely,Unspecified,,,4477589,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/13/2021,17:00,BROOKLYN,11220,40.64367,-74.015495,"(40.64367, -74.015495)",4 AVENUE,55 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476938,Sedan,E-Scooter,,, +11/13/2021,13:40,QUEENS,11420,40.66612,-73.82225,"(40.66612, -73.82225)",NORTH CONDUIT AVENUE,LEFFERTS BOULEVARD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4477381,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,9:28,QUEENS,11411,40.6838,-73.72786,"(40.6838, -73.72786)",121 AVENUE,238 STREET,,0,0,0,0,0,0,0,0,Glare,Traffic Control Disregarded,,,,4500063,Sedan,Sedan,,, +11/13/2021,18:00,QUEENS,11105,40.773537,-73.91052,"(40.773537, -73.91052)",,,22-63 35 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4476979,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +09/30/2021,16:10,BROOKLYN,11233,40.678905,-73.9164,"(40.678905, -73.9164)",SARATOGA AVENUE,HULL STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477629,Bike,Sedan,,, +11/13/2021,18:55,MANHATTAN,10177,40.755016,-73.97558,"(40.755016, -73.97558)",,,250 PARK AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4477814,Sedan,Taxi,Taxi,, +11/13/2021,16:00,BROOKLYN,11235,40.585087,-73.93415,"(40.585087, -73.93415)",,,2815 COYLE STREET,0,0,0,0,0,0,0,0,Other Lighting Defects,Unspecified,,,,4477104,Sedan,Sedan,,, +11/13/2021,17:11,QUEENS,11355,40.75806,-73.81402,"(40.75806, -73.81402)",149 STREET,CHERRY AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Backing Unsafely,,,,4476885,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,6:40,,,,,,GRAND CENTRAL PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4476815,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/13/2021,15:10,,,40.831978,-73.93515,"(40.831978, -73.93515)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477239,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,13:29,BROOKLYN,11211,40.711166,-73.9489,"(40.711166, -73.9489)",GRAND STREET,LORIMER STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Following Too Closely,,,,4477408,Sedan,Motorscooter,,, +11/13/2021,10:51,BRONX,10456,40.831432,-73.90136,"(40.831432, -73.90136)",,,622 EAST 169 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4476923,Sedan,,,, +11/13/2021,17:20,BROOKLYN,11226,40.650745,-73.9588,"(40.650745, -73.9588)",,,875 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4476907,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,21:00,,,40.646313,-73.87386,"(40.646313, -73.87386)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Other Vehicular,,,,4477325,Sedan,Sedan,,, +11/13/2021,20:03,MANHATTAN,10032,40.84105,-73.94469,"(40.84105, -73.94469)",WEST 165 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477615,Taxi,Tanker,,, +11/13/2021,21:36,QUEENS,11357,40.77519,-73.79854,"(40.77519, -73.79854)",FRANCIS LEWIS BOULEVARD,24 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4476967,Sedan,Moped,,, +11/13/2021,17:41,MANHATTAN,10018,40.753475,-73.99254,"(40.753475, -73.99254)",8 AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477033,Van,Sedan,,, +10/30/2021,4:11,MANHATTAN,10001,40.75702,-74.00494,"(40.75702, -74.00494)",12 AVENUE,WEST 34 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477570,Tractor Truck Diesel,Sedan,,, +11/13/2021,16:25,QUEENS,11692,40.59406,-73.78912,"(40.59406, -73.78912)",BEACH CHANNEL DRIVE,BEACH 59 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477505,Sedan,Sedan,,, +11/13/2021,16:20,MANHATTAN,10003,40.731297,-73.982475,"(40.731297, -73.982475)",,,338 EAST 14 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477784,Sedan,Bike,,, +11/13/2021,18:41,MANHATTAN,10013,40.720127,-74.002426,"(40.720127, -74.002426)",,,3 MERCER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477079,Sedan,Taxi,,, +11/13/2021,16:05,QUEENS,11428,40.718872,-73.7534,"(40.718872, -73.7534)",,,90-43 210 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4476955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,11:45,BROOKLYN,11201,40.68963,-73.98575,"(40.68963, -73.98575)",LIVINGSTON STREET,HOYT STREET,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4477678,Sedan,Pick-up Truck,Sedan,, +11/13/2021,8:00,QUEENS,11420,40.68636,-73.810036,"(40.68636, -73.810036)",109 AVENUE,134 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477465,Station Wagon/Sport Utility Vehicle,Van,,, +11/13/2021,21:35,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477493,Taxi,,,, +11/13/2021,1:10,,,40.68957,-73.85706,"(40.68957, -73.85706)",86 STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4477532,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,17:50,,,40.688766,-73.99907,"(40.688766, -73.99907)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4476991,Station Wagon/Sport Utility Vehicle,Carry All,,, +02/05/2022,0:37,,,40.628853,-74.14771,"(40.628853, -74.14771)",,,390 MORNINGSTAR ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500114,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,15:00,BROOKLYN,11203,,,,,,531 UTICA AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500262,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,20:48,BROOKLYN,11213,40.668774,-73.93052,"(40.668774, -73.93052)",,,1133 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500786,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,15:21,MANHATTAN,10031,40.82289,-73.95574,"(40.82289, -73.95574)",WEST 138 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500904,Box Truck,Van,,, +02/05/2022,12:00,BRONX,10455,40.81888,-73.916504,"(40.81888, -73.916504)",EAST 153 STREET,MELROSE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500546,Sedan,,,, +02/04/2022,17:00,BROOKLYN,11207,40.666893,-73.88883,"(40.666893, -73.88883)",,,511 VAN SICLEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500677,Sedan,,,, +02/05/2022,12:30,,,,,,HAMILTON AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4500133,Ambulance,Sedan,,, +02/04/2022,9:55,BROOKLYN,11212,0,0,"(0.0, 0.0)",CHESTER STREET,BLAKE AVENUE,,2,0,0,0,0,0,2,0,Other Vehicular,Other Vehicular,,,,4500866,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,9:12,BROOKLYN,11219,40.640465,-73.99433,"(40.640465, -73.99433)",,,4409 NEW UTRECHT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500199,Sedan,,,, +02/05/2022,0:38,,,40.745304,-73.82595,"(40.745304, -73.82595)",MAIN STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4500083,Taxi,Sedan,,, +02/05/2022,20:20,,,40.679653,-73.88556,"(40.679653, -73.88556)",FULTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500659,Sedan,,,, +02/05/2022,9:30,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",NORTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Lane Changing,,,,4500592,Tractor Truck Diesel,Sedan,,, +02/05/2022,13:20,MANHATTAN,10019,40.764053,-73.99225,"(40.764053, -73.99225)",WEST 49 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500617,Sedan,Box Truck,,, +01/31/2022,22:52,BRONX,10455,40.81626,-73.9177,"(40.81626, -73.9177)",,,552 MELROSE AVENUE,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4500890,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/18/2022,14:50,BROOKLYN,11208,40.66588,-73.873436,"(40.66588, -73.873436)",,,517 MILFORD STREET,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4500654,E-Bike,,,, +01/28/2022,5:15,,,,,,RANDALLS ISLAND,CONRAIL RAILROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500726,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,13:40,QUEENS,11370,40.773808,-73.8929,"(40.773808, -73.8929)",HAZEN STREET,19 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4500313,Sedan,Sedan,,, +02/03/2022,22:02,BRONX,10455,40.81133,-73.90078,"(40.81133, -73.90078)",BRUCKNER BOULEVARD,AUSTIN PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4500696,Dump,Sedan,,, +02/05/2022,13:55,BROOKLYN,11207,40.686592,-73.913025,"(40.686592, -73.913025)",,,1293 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500227,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,9:50,BRONX,10455,40.815937,-73.909134,"(40.815937, -73.909134)",WESTCHESTER AVENUE,TRINITY AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500528,E-Bike,Sedan,,, +02/05/2022,14:08,,,40.678116,-73.92172,"(40.678116, -73.92172)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500775,Sedan,,,, +02/05/2022,8:20,BRONX,10456,40.828175,-73.9063,"(40.828175, -73.9063)",FULTON AVENUE,EAST 166 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500144,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,7:05,BROOKLYN,11207,40.668816,-73.89895,"(40.668816, -73.89895)",WILLIAMS AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4500668,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/05/2022,10:35,,,40.559437,-74.12481,"(40.559437, -74.12481)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4500799,Sedan,,,, +02/05/2022,19:00,BROOKLYN,11217,40.68342,-73.97545,"(40.68342, -73.97545)",,,625 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4500479,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,9:24,QUEENS,11106,40.761993,-73.942474,"(40.761993, -73.942474)",36 AVENUE,VERNON BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500251,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,4:01,BROOKLYN,11211,40.714066,-73.94938,"(40.714066, -73.94938)",METROPOLITAN AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4500484,Sedan,Sedan,,, +02/05/2022,22:41,QUEENS,11372,40.75227,-73.89518,"(40.75227, -73.89518)",,,34-05 71 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4500386,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +04/14/2022,16:52,,,40.61637,-74.1276,"(40.61637, -74.1276)",GOODWIN AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520361,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,0:45,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4499928,Sedan,Sedan,,, +01/15/2022,13:30,STATEN ISLAND,10304,40.623333,-74.08354,"(40.623333, -74.08354)",,,230 BROAD STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500751,Sedan,,,, +02/05/2022,18:30,,,40.844833,-73.909386,"(40.844833, -73.909386)",MORRIS AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4500173,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,17:00,BROOKLYN,11211,40.71842,-73.94888,"(40.71842, -73.94888)",,,79 RICHARDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500649,Pick-up Truck,,,, +01/07/2022,9:50,QUEENS,11428,40.721016,-73.74839,"(40.721016, -73.74839)",91 AVENUE,212 PLACE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500826,Pick-up Truck,PK,,, +02/02/2022,19:00,,,40.608307,-74.13132,"(40.608307, -74.13132)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500798,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,19:35,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500686,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,3:00,QUEENS,11412,40.688236,-73.76196,"(40.688236, -73.76196)",FARMERS BOULEVARD,119 AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4499944,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/04/2022,20:00,,,,,,KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500718,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,21:11,BROOKLYN,11210,40.624275,-73.947426,"(40.624275, -73.947426)",AVENUE K,EAST 29 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4500140,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/05/2022,15:55,QUEENS,11372,40.755753,-73.883514,"(40.755753, -73.883514)",NORTHERN BOULEVARD,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500387,Sedan,Sedan,,, +02/04/2022,12:15,STATEN ISLAND,10305,40.61331,-74.06336,"(40.61331, -74.06336)",,,54 SCARBORO AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500756,Sedan,,,, +02/05/2022,15:46,,,40.6993,-73.91361,"(40.6993, -73.91361)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4500228,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,18:24,BROOKLYN,11207,40.66879,-73.88839,"(40.66879, -73.88839)",BLAKE AVENUE,HENDRIX STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500644,Sedan,Sedan,,, +02/05/2022,7:10,BROOKLYN,11207,40.674397,-73.896515,"(40.674397, -73.896515)",PENNSYLVANIA AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500667,Bus,Sedan,,, +02/05/2022,8:05,QUEENS,11364,40.738476,-73.74885,"(40.738476, -73.74885)",SPRINGFIELD BOULEVARD,77 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4500290,Station Wagon/Sport Utility Vehicle,,,, +01/06/2022,6:20,,,40.589157,-73.98282,"(40.589157, -73.98282)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500815,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/03/2022,19:45,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4500739,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,11:50,BROOKLYN,11232,40.655758,-74.008354,"(40.655758, -74.008354)",,,241 37 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500079,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,0:18,,,,,,FDR DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500100,Sedan,,,, +02/05/2022,1:35,BRONX,10453,,,,Sedgwick avenue,Hall of fame terrace,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500582,Station Wagon/Sport Utility Vehicle,,,, +01/30/2022,7:48,MANHATTAN,10069,40.77393,-73.99201,"(40.77393, -73.99201)",WEST 61 STREET,RIVERSIDE BOULEVARD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4500804,Sedan,,,, +02/05/2022,10:00,QUEENS,11432,40.70958,-73.79626,"(40.70958, -73.79626)",,,166-07 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500163,Sedan,Box Truck,,, +02/02/2022,14:22,BROOKLYN,11208,40.67898,-73.88107,"(40.67898, -73.88107)",ATLANTIC AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500633,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,10:30,BRONX,10470,40.90033,-73.85278,"(40.90033, -73.85278)",,,4503 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500764,Tractor Truck Diesel,,,, +02/05/2022,10:27,QUEENS,11004,40.73871,-73.70192,"(40.73871, -73.70192)",267 STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500064,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/05/2022,13:00,QUEENS,11419,40.69049,-73.816086,"(40.69049, -73.816086)",130 STREET,103 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500491,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/01/2022,0:00,,,40.836098,-73.934875,"(40.836098, -73.934875)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500601,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,16:15,QUEENS,11422,40.665558,-73.72985,"(40.665558, -73.72985)",SUNRISE HIGHWAY,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,,4500091,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/17/2022,4:02,QUEENS,11419,40.69177,-73.824524,"(40.69177, -73.824524)",97 AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4519922,Sedan,,,, +02/05/2022,19:25,BROOKLYN,11203,40.639088,-73.92905,"(40.639088, -73.92905)",,,1364 UTICA AVENUE,5,0,0,0,0,0,5,0,Failure to Yield Right-of-Way,Unspecified,,,,4500261,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,12:30,,,40.745594,-73.9034,"(40.745594, -73.9034)",61 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4500679,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,12:30,BRONX,10457,40.849407,-73.900894,"(40.849407, -73.900894)",VALENTINE AVENUE,EAST 178 STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500725,E-Bike,,,, +02/02/2022,8:42,BROOKLYN,11207,40.677628,-73.894394,"(40.677628, -73.894394)",FULTON STREET,WYONA STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500640,Sedan,Sedan,,, +02/05/2022,13:48,BROOKLYN,11230,40.632294,-73.96678,"(40.632294, -73.96678)",FOSTER AVENUE,CONEY ISLAND AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4500156,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,23:48,,,40.840824,-73.94597,"(40.840824, -73.94597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4500276,Sedan,,,, +01/04/2022,16:00,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4500913,Sedan,Bus,,, +02/05/2022,19:40,,,40.82523,-73.94761,"(40.82523, -73.94761)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500903,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/22/2022,12:27,BRONX,10465,40.8225,-73.8379,"(40.8225, -73.8379)",BRUSH AVENUE,WENNER PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500788,Sedan,,,, +02/05/2022,17:32,BROOKLYN,11208,40.661083,-73.878525,"(40.661083, -73.878525)",,,932 CLEVELAND STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500671,Sedan,,,, +01/30/2022,16:00,BROOKLYN,11212,40.669403,-73.912605,"(40.669403, -73.912605)",BRISTOL STREET,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500867,Sedan,Usps,,, +02/05/2022,17:19,QUEENS,11368,40.747276,-73.862495,"(40.747276, -73.862495)",,,102-31 43 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,8:40,,,40.716267,-73.79583,"(40.716267, -73.79583)",169 STREET,,,1,0,0,0,0,0,1,0,Glare,Driver Inattention/Distraction,,,,4500038,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,16:19,,,,,,livonia ave,livonia,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500629,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,23:20,QUEENS,11377,40.74013,-73.89976,"(40.74013, -73.89976)",65 PLACE,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4500125,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/05/2022,21:13,BRONX,10468,40.859,-73.90353,"(40.859, -73.90353)",JEROME AVENUE,EVELYN PLACE,,2,0,0,0,0,0,2,0,Passing Too Closely,Unspecified,,,,4500605,Sedan,Sedan,,, +02/05/2022,16:38,QUEENS,11415,40.710777,-73.83496,"(40.710777, -73.83496)",,,80-30 PARK LANE,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4500500,Sedan,,,, +02/05/2022,5:15,BRONX,10460,40.84095,-73.87939,"(40.84095, -73.87939)",BOSTON ROAD,EAST 178 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500320,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,17:04,,,40.850475,-73.915436,"(40.850475, -73.915436)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500911,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,10:23,BROOKLYN,11235,40.587017,-73.962975,"(40.587017, -73.962975)",HUBBARD STREET,AVENUE Z,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500735,Ambulance,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,16:00,BRONX,10467,40.8783,-73.861046,"(40.8783, -73.861046)",,,815 EAST 213 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500416,Sedan,,,, +04/17/2022,19:50,MANHATTAN,10032,40.834892,-73.93776,"(40.834892, -73.93776)",WEST 162 STREET,EDGECOMBE AVENUE,,1,0,1,0,0,0,0,0,Unsafe Lane Changing,,,,,4519728,Sedan,,,, +02/05/2022,20:20,MANHATTAN,10002,40.71997,-73.992905,"(40.71997, -73.992905)",DELANCEY STREET,CHRYSTIE STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4500184,Taxi,Sedan,,, +02/03/2022,10:09,BROOKLYN,11207,40.663845,-73.88703,"(40.663845, -73.88703)",,,710 HENDRIX STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4500634,Station Wagon/Sport Utility Vehicle,Bus,,, +02/05/2022,12:30,BROOKLYN,11207,40.652767,-73.8863,"(40.652767, -73.8863)",PENNSYLVANIA AVENUE,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4500655,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,7:45,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500275,Sedan,Sedan,,, +02/03/2022,16:42,MANHATTAN,10036,40.756554,-73.98025,"(40.756554, -73.98025)",,,33 WEST 46 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500611,Box Truck,Sedan,,, +11/14/2021,2:30,,,,,,KOREAN WAR VETS PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4477268,Sedan,,,, +02/05/2022,3:21,MANHATTAN,10017,40.75144,-73.97397,"(40.75144, -73.97397)",EAST 43 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500048,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,16:46,BROOKLYN,11235,40.577187,-73.95008,"(40.577187, -73.95008)",ORIENTAL BOULEVARD,COLERIDGE STREET,,0,1,0,1,0,0,0,0,Unspecified,,,,,4500449,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,4:11,BROOKLYN,11238,40.67245,-73.96901,"(40.67245, -73.96901)",,,417 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500107,Sedan,Tractor Truck Diesel,,, +02/05/2022,3:38,BROOKLYN,11211,40.713108,-73.93594,"(40.713108, -73.93594)",,,967 GRAND STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4500488,Sedan,Sedan,,, +02/05/2022,17:58,,,40.841877,-73.91796,"(40.841877, -73.91796)",MACOMBS ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500172,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/17/2022,4:53,,,40.657516,-73.8931,"(40.657516, -73.8931)",LINDEN BOULEVARD,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519666,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,17:45,BRONX,10462,40.835518,-73.86112,"(40.835518, -73.86112)",METROPOLITAN AVENUE,WOOD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500695,Sedan,,,, +02/05/2022,19:00,,,40.584774,-73.96011,"(40.584774, -73.96011)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Following Too Closely,Following Too Closely,Following Too Closely,,4500310,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +02/05/2022,13:40,BRONX,10473,40.82188,-73.85927,"(40.82188, -73.85927)",LAFAYETTE AVENUE,BOLTON AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4500705,Sedan,Bike,,, +02/05/2022,1:20,,,40.666435,-73.7628,"(40.666435, -73.7628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4499929,Sedan,,,, +02/01/2022,12:21,,,40.69875,-73.9834,"(40.69875, -73.9834)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4500752,Box Truck,Sedan,,, +02/03/2022,21:00,,,40.678844,-73.86609,"(40.678844, -73.86609)",LIBERTY AVENUE,GRANT AVENUE,,0,0,0,0,0,0,0,0,Animals Action,,,,,4500648,Sedan,,,, +02/05/2022,20:38,,,40.605095,-74.12902,"(40.605095, -74.12902)",,,26 LIVINGSTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500855,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,19:50,MANHATTAN,10023,40.77178,-73.9792,"(40.77178, -73.9792)",WEST 65 STREET,CENTRAL PARK WEST,,2,0,2,0,0,0,0,0,Driver Inexperience,,,,,4500805,Sedan,,,, +02/03/2022,4:05,MANHATTAN,10039,40.827946,-73.93839,"(40.827946, -73.93839)",,,301 WEST 153 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4500602,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/05/2022,14:20,,,40.66835,-73.738106,"(40.66835, -73.738106)",LAURELTON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,6:00,MANHATTAN,10002,40.7213,-73.98492,"(40.7213, -73.98492)",,,171 SUFFOLK STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500093,Motorcycle,Sedan,,, +02/05/2022,12:48,BROOKLYN,11212,40.661625,-73.91917,"(40.661625, -73.91917)",,,253 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500529,Sedan,Pick-up Truck,,, +02/05/2022,14:15,,,,,,HORACE HARDING EXPRESSWAY,DOUGLASTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Oversized Vehicle,,,,4500113,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +02/05/2022,23:52,,,,,,jerome ave,bedford park,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500584,Sedan,,,, +02/05/2022,19:35,BROOKLYN,11221,40.68963,-73.92741,"(40.68963, -73.92741)",QUINCY STREET,PATCHEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4500774,Sedan,Sedan,,, +02/05/2022,17:49,MANHATTAN,10009,40.727467,-73.97948,"(40.727467, -73.97948)",AVENUE B,EAST 11 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4500153,ambulance,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,13:19,,,40.696865,-73.83717,"(40.696865, -73.83717)",JAMAICA AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500618,Sedan,,,, +02/05/2022,14:40,,,40.563915,-74.11637,"(40.563915, -74.11637)",TYSENS LANE,HYLAN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500803,Sedan,,,, +02/05/2022,0:32,,,40.904434,-73.87828,"(40.904434, -73.87828)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500057,Sedan,Sedan,,, +02/05/2022,0:21,,,40.65531,-73.90318,"(40.65531, -73.90318)",LINDEN BOULEVARD,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500536,Sedan,Sedan,,, +02/03/2022,16:50,MANHATTAN,10022,40.76161,-73.97076,"(40.76161, -73.97076)",EAST 57 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4500614,Sedan,Bike,,, +02/05/2022,18:15,STATEN ISLAND,10301,40.64301,-74.09373,"(40.64301, -74.09373)",,,154 BUCHANAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500750,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,0:30,BROOKLYN,11208,40.684593,-73.87041,"(40.684593, -73.87041)",,,238 AUTUMN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500632,Sedan,,,, +02/05/2022,11:48,,,40.71621,-73.82682,"(40.71621, -73.82682)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4500066,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,10:15,,,40.75548,-73.74173,"(40.75548, -73.74173)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500111,Pick-up Truck,Pick-up Truck,Sedan,, +01/31/2022,15:20,STATEN ISLAND,10305,40.59075,-74.08837,"(40.59075, -74.08837)",HYLAN BOULEVARD,BURGHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500789,Sedan,,,, +02/02/2022,8:45,STATEN ISLAND,10306,40.570465,-74.10977,"(40.570465, -74.10977)",NEW DORP LANE,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500797,Sedan,Sedan,,, +02/05/2022,11:30,BRONX,10460,40.834522,-73.88314,"(40.834522, -73.88314)",,,1725 WEST FARMS ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500137,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,15:40,BROOKLYN,11217,40.685024,-73.98612,"(40.685024, -73.98612)",BERGEN STREET,BOND STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4500388,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/24/2022,11:05,,,40.68783,-73.93004,"(40.68783, -73.93004)",REID AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4500776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/04/2022,14:34,BROOKLYN,11208,40.67312,-73.878654,"(40.67312, -73.878654)",BELMONT AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500647,Sedan,Pick-up Truck,,, +02/04/2022,19:00,,,40.85144,-73.88896,"(40.85144, -73.88896)",EAST 182 STREET,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500738,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,12:10,,,40.647762,-73.97466,"(40.647762, -73.97466)",OCEAN PARKWAY,CATON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500077,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/05/2022,20:35,,,40.598034,-74.00552,"(40.598034, -74.00552)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500168,Sedan,Sedan,,, +02/05/2022,6:30,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500047,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,8:30,BROOKLYN,11223,40.594074,-73.979965,"(40.594074, -73.979965)",AVENUE V,WEST 9 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500129,Sedan,Sedan,,, +02/05/2022,3:45,,,40.611835,-74.17596,"(40.611835, -74.17596)",,,900 SOUTH AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4500857,Pick-up Truck,,,, +02/05/2022,18:50,,,40.711945,-73.82303,"(40.711945, -73.82303)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4500517,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,Station Wagon/Sport Utility Vehicle, +02/05/2022,18:30,,,,,,BRUCKNER EXPRESSWAY/ I-278,EAST TREMONT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500119,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,12:00,BRONX,10466,40.894547,-73.86104,"(40.894547, -73.86104)",,,600 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500694,Ambulance,Ambulance,,, +01/29/2022,11:00,QUEENS,11368,40.758305,-73.85561,"(40.758305, -73.85561)",114 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500619,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,23:44,BROOKLYN,11203,40.656483,-73.92408,"(40.656483, -73.92408)",REMSEN AVENUE,EAST 57 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500242,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,18:08,BRONX,10468,40.871395,-73.89308,"(40.871395, -73.89308)",JEROME AVENUE,EAST 198 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500579,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,15:47,BROOKLYN,11239,40.64811,-73.882065,"(40.64811, -73.882065)",,,1352 PENNSYLVANIA AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,20:32,MANHATTAN,10030,40.817226,-73.94231,"(40.817226, -73.94231)",WEST 138 STREET,POWELL BOULEVARD,,1,0,1,0,0,0,0,0,,,,,,4500608,Sedan,,,, +02/05/2022,16:05,BROOKLYN,11204,40.62139,-73.99555,"(40.62139, -73.99555)",16 AVENUE,66 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4500353,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/04/2022,19:00,BROOKLYN,11208,40.667923,-73.861465,"(40.667923, -73.861465)",FORBELL STREET,LORING AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4500666,Sedan,Van,Sedan,, +02/05/2022,12:10,STATEN ISLAND,10305,40.6123,-74.071106,"(40.6123, -74.071106)",,,560 TOMPKINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500762,Sedan,,,, +02/05/2022,19:30,BROOKLYN,11210,40.634174,-73.944885,"(40.634174, -73.944885)",NEW YORK AVENUE,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500211,Sedan,,,, +02/05/2022,23:05,BROOKLYN,11222,40.71938,-73.937775,"(40.71938, -73.937775)",,,330 FROST STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500680,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,21:44,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500178,Sedan,Sedan,,, +02/05/2022,0:15,QUEENS,11370,40.761883,-73.89505,"(40.761883, -73.89505)",,,25-08 73 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500028,Sedan,Pick-up Truck,,, +02/05/2022,20:06,,,40.79465,-73.97179,"(40.79465, -73.97179)",WEST 96 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500706,Sedan,Bus,,, +02/05/2022,4:24,,,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500868,Sedan,Sedan,,, +02/05/2022,11:45,,,,,,135 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500103,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,21:05,QUEENS,11413,40.687294,-73.75013,"(40.687294, -73.75013)",,,197-38 NASHVILLE BOULEVARD,2,0,0,0,0,0,2,0,Alcohol Involvement,Unspecified,,,,4500278,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/17/2022,17:41,BROOKLYN,11235,40.586876,-73.96436,"(40.586876, -73.96436)",,,797 AVENUE Z,0,0,0,0,0,0,0,0,Unspecified,,,,,4500816,Sedan,,,, +02/05/2022,11:51,STATEN ISLAND,10301,40.64353,-74.07897,"(40.64353, -74.07897)",,,62 WALL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500758,Sedan,Van,,, +02/04/2022,23:07,BROOKLYN,11207,40.68049,-73.90231,"(40.68049, -73.90231)",,,1630 BUSHWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500651,Sedan,,,, +02/05/2022,14:00,QUEENS,11361,40.760284,-73.769356,"(40.760284, -73.769356)",BELL BOULEVARD,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500291,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,20:12,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",EAST 149 STREET,GRAND CONCOURSE,,1,0,1,0,0,0,0,0,Pavement Slippery,,,,,4500901,Sedan,,,, +02/05/2022,19:15,QUEENS,11419,40.689747,-73.81668,"(40.689747, -73.81668)",129 STREET,103 ROAD,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500495,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/05/2022,11:39,,,40.719566,-73.94561,"(40.719566, -73.94561)",GRAHAM AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500656,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/05/2022,12:36,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500260,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,8:00,,,,,,LAFAYETTE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4500158,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,3:30,,,40.83517,-73.8668,"(40.83517, -73.8668)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4500700,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,8:43,,,40.669113,-73.95336,"(40.669113, -73.95336)",ROGERS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500722,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/05/2022,22:36,QUEENS,11691,40.605618,-73.75666,"(40.605618, -73.75666)",GRASSMERE TERRACE,MOTT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500563,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,14:40,,,,,,jackie robinson parkway,pennsylvania ave,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4500641,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,12:00,,,40.69496,-73.946236,"(40.69496, -73.946236)",VERNON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500315,Sedan,Sedan,,, +02/05/2022,14:45,BROOKLYN,11219,40.645046,-73.99244,"(40.645046, -73.99244)",,,3811 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500914,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,1:33,MANHATTAN,10027,40.81132,-73.950325,"(40.81132, -73.950325)",,,2364 8 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4500461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/27/2022,11:18,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4500773,Sedan,Sedan,Sedan,, +02/05/2022,18:30,BROOKLYN,11207,40.66931,-73.89568,"(40.66931, -73.89568)",,,627 SUTTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500670,Bus,Sedan,,, +02/05/2022,9:00,,,40.666653,-73.80991,"(40.666653, -73.80991)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Speed,,,,4500489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,10:08,BROOKLYN,11210,40.623863,-73.95117,"(40.623863, -73.95117)",BEDFORD AVENUE,AVENUE K,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500806,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,20:20,BROOKLYN,11214,40.59034,-73.98434,"(40.59034, -73.98434)",28 AVENUE,BATH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500823,Sedan,Sedan,,, +04/06/2022,11:37,,,40.681137,-73.95567,"(40.681137, -73.95567)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4520248,Sedan,,,, +02/05/2022,22:08,BROOKLYN,11208,40.681076,-73.88111,"(40.681076, -73.88111)",HIGHLAND PLACE,FULTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500673,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,1:46,QUEENS,11420,40.686024,-73.81087,"(40.686024, -73.81087)",109 AVENUE,133 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4499933,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,15:55,STATEN ISLAND,10301,40.639523,-74.08487,"(40.639523, -74.08487)",BENZIGER AVENUE,BISMARK AVENUE,,3,0,0,0,0,0,3,0,Driver Inexperience,Unspecified,,,,4500753,Sedan,Sedan,,, +02/04/2022,21:40,BRONX,10459,40.83187,-73.88447,"(40.83187, -73.88447)",,,1460 SHERIDAN EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500701,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,15:00,BROOKLYN,11210,40.624382,-73.94643,"(40.624382, -73.94643)",NOSTRAND AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500205,Sedan,,,, +01/27/2022,1:58,MANHATTAN,10030,40.821316,-73.94474,"(40.821316, -73.94474)",,,142 EDGECOMBE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500603,Motorcycle,,,, +02/05/2022,16:45,MANHATTAN,10011,40.7441,-73.99565,"(40.7441, -73.99565)",WEST 23 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500096,Taxi,Bike,,, +02/05/2022,12:40,BRONX,10458,40.87637,-73.88286,"(40.87637, -73.88286)",MOSHOLU PARKWAY,VANCORTLANDT AVENUE EAST,,2,0,0,0,0,0,2,0,Following Too Closely,Other Vehicular,,,,4500587,Sedan,Sedan,,, +02/02/2022,15:15,MANHATTAN,10029,40.79505,-73.93317,"(40.79505, -73.93317)",EAST 116 STREET,PLEASANT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500731,Bus,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,8:00,,,,,,Conduit Ave,Grant Ave,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500652,Sedan,Sedan,,, +02/05/2022,4:40,QUEENS,11368,40.749054,-73.863014,"(40.749054, -73.863014)",,,40-12 NATIONAL STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,11:20,BRONX,10466,40.90397,-73.84231,"(40.90397, -73.84231)",CRANFORD AVENUE,SETON AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500411,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,0:10,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",LINDEN BOULEVARD,PENNSYLVANIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500635,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,3:11,,,40.76241,-73.95443,"(40.76241, -73.95443)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500521,Sedan,,,, +02/05/2022,11:00,BROOKLYN,11234,40.599915,-73.91165,"(40.599915, -73.91165)",,,2859 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4500118,Sedan,,,, +02/05/2022,12:22,BRONX,10457,40.843586,-73.903244,"(40.843586, -73.903244)",,,1710 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500148,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,11:45,STATEN ISLAND,10308,40.559383,-74.15393,"(40.559383, -74.15393)",GIFFORDS LANE,BARLOW AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4500802,Sedan,Sedan,,, +02/05/2022,0:05,,,40.74128,-73.90257,"(40.74128, -73.90257)",QUEENS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500058,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,14:43,BRONX,10475,40.869656,-73.82621,"(40.869656, -73.82621)",,,2071 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500777,Sedan,,,, +02/05/2022,18:55,BROOKLYN,11212,40.662247,-73.90886,"(40.662247, -73.90886)",,,714 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500543,Sedan,Sedan,,, +02/05/2022,9:08,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500273,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,10:05,,,40.667316,-73.93683,"(40.667316, -73.93683)",PRESIDENT STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500910,Sedan,Bus,,, +02/07/2021,7:46,,,,,,HARLEM RIVER DRIVE RAMP,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,,,,4500742,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,8:14,,,40.619923,-74.16459,"(40.619923, -74.16459)",GOETHALS ROAD NORTH,JULES DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500854,Pick-up Truck,Sedan,,, +02/05/2022,4:45,,,40.767113,-73.90405,"(40.767113, -73.90405)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4500120,Sedan,Taxi,Taxi,Taxi,Taxi +02/05/2022,11:40,,,,,,HUTCHINSON RIVER PARKWAY,NEW ENGLAND THRUWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4500159,Sedan,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +02/02/2022,15:00,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500642,ambulance,Sedan,,, +02/03/2022,19:50,MANHATTAN,10019,40.76307,-73.9841,"(40.76307, -73.9841)",,,250 WEST 52 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4500615,Station Wagon/Sport Utility Vehicle,Bike,,, +02/05/2022,14:15,MANHATTAN,10019,40.761127,-73.986946,"(40.761127, -73.986946)",,,790 8 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500620,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,8:00,,,40.809563,-73.92923,"(40.809563, -73.92923)",EAST 135 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500918,Sedan,Van,,, +02/05/2022,9:48,BROOKLYN,11228,40.625774,-74.016495,"(40.625774, -74.016495)",BAY RIDGE PARKWAY,FORT HAMILTON PARKWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500054,E-Bike,E-Bike,,, +02/05/2022,0:42,MANHATTAN,10034,40.867012,-73.92312,"(40.867012, -73.92312)",BROADWAY,WEST 204 STREET,,1,0,1,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500434,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,14:24,QUEENS,11428,40.716164,-73.74477,"(40.716164, -73.74477)",JAMAICA AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4500089,Bus,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,9:48,QUEENS,11418,40.699146,-73.84307,"(40.699146, -73.84307)",106 STREET,85 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500555,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,4:00,BRONX,10467,40.866413,-73.86257,"(40.866413, -73.86257)",,,2769 MATTHEWS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500045,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,15:15,,,40.605732,-73.985016,"(40.605732, -73.985016)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500170,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,20:57,MANHATTAN,10019,40.76788,-73.9815,"(40.76788, -73.9815)",COLUMBUS CIRCLE,CENTRAL PARK SOUTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500613,Armored Truck,Taxi,,, +02/05/2022,10:15,,,40.729774,-73.98682,"(40.729774, -73.98682)",2 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4500863,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,16:09,,,40.70041,-73.81553,"(40.70041, -73.81553)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500511,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,9:11,,,40.763344,-73.75791,"(40.763344, -73.75791)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500110,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,3:46,BROOKLYN,11204,40.612564,-73.98998,"(40.612564, -73.98998)",20 AVENUE,72 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,11:30,BROOKLYN,11230,40.619415,-73.95519,"(40.619415, -73.95519)",,,1751 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500682,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,5:41,BROOKLYN,11219,40.645046,-73.99244,"(40.645046, -73.99244)",,,3811 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500287,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/05/2022,4:30,QUEENS,11106,40.75848,-73.924736,"(40.75848, -73.924736)",,,34-02 34 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500249,Sedan,,,, +02/03/2022,3:00,BROOKLYN,11208,40.67677,-73.880516,"(40.67677, -73.880516)",LIBERTY AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500646,Taxi,,,, +02/03/2022,0:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500665,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,14:10,,,40.58926,-73.98189,"(40.58926, -73.98189)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500309,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,5:40,MANHATTAN,10009,40.723278,-73.98253,"(40.723278, -73.98253)",EAST 4 STREET,AVENUE B,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500874,Taxi,,,, +02/05/2022,1:20,BROOKLYN,11238,40.67752,-73.972725,"(40.67752, -73.972725)",FLATBUSH AVENUE,PARK PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500106,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/14/2021,21:43,,,40.59476,-73.98199,"(40.59476, -73.98199)",86 STREET,,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500818,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,7:09,,,40.662674,-73.94562,"(40.662674, -73.94562)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500074,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,15:10,MANHATTAN,10029,40.798622,-73.94163,"(40.798622, -73.94163)",LEXINGTON AVENUE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500737,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,23:30,BRONX,10469,40.869267,-73.84397,"(40.869267, -73.84397)",,,1454 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4500577,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,20:15,BROOKLYN,11249,40.721977,-73.959946,"(40.721977, -73.959946)",KENT AVENUE,NORTH 10 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500626,Sedan,Sedan,,, +02/05/2022,23:09,,,,,,BELT PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500130,Sedan,PK,,, +02/05/2022,13:25,,,40.81977,-73.93673,"(40.81977, -73.93673)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4500607,Bus,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,22:20,BROOKLYN,11211,40.703434,-73.96035,"(40.703434, -73.96035)",WILLIAMSBURG STREET WEST,BEDFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500494,Sedan,,,, +02/05/2022,8:16,MANHATTAN,10038,40.710545,-74.00544,"(40.710545, -74.00544)",,,168 WILLIAM STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500067,Sedan,,,, +02/05/2022,7:05,QUEENS,11385,40.70462,-73.89303,"(40.70462, -73.89303)",CATALPA AVENUE,64 PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,11:05,BRONX,10457,40.844833,-73.909386,"(40.844833, -73.909386)",EAST 174 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4500177,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,13:00,STATEN ISLAND,10304,40.61026,-74.097496,"(40.61026, -74.097496)",CLOVE ROAD,MILFORD DRIVE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500794,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,3:47,BRONX,10467,40.87321,-73.8671,"(40.87321, -73.8671)",WHITE PLAINS ROAD,ROSEWOOD STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4500394,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/05/2022,13:57,BRONX,10465,40.817593,-73.816376,"(40.817593, -73.816376)",EAST TREMONT AVENUE,LAWTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520299,Sedan,Sedan,,, +02/04/2022,23:10,,,40.814594,-73.88588,"(40.814594, -73.88588)",HUNTS POINT AVENUE,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4500688,Convertible,,,, +02/03/2022,21:05,,,40.823956,-73.877144,"(40.823956, -73.877144)",BRUCKNER BOULEVARD,BOYNTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4500708,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,17:15,BROOKLYN,11208,40.67809,-73.8842,"(40.67809, -73.8842)",ELTON STREET,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500650,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,20:32,STATEN ISLAND,10304,40.62731,-74.08307,"(40.62731, -74.08307)",TARGEE STREET,VANDUZER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500759,Sedan,Sedan,,, +02/05/2022,17:39,BROOKLYN,11236,40.651264,-73.91795,"(40.651264, -73.91795)",,,9012 AVENUE A,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500215,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,14:55,BROOKLYN,11208,40.683777,-73.87172,"(40.683777, -73.87172)",,,3358 FULTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4500657,Pick-up Truck,,,, +02/03/2022,17:00,STATEN ISLAND,10306,40.578224,-74.10207,"(40.578224, -74.10207)",,,2145 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500790,Sedan,,,, +02/05/2022,16:30,BRONX,10451,40.821472,-73.91452,"(40.821472, -73.91452)",,,415 EAST 157 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500544,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,22:53,,,40.78566,-73.98021,"(40.78566, -73.98021)",WEST 81 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4500807,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +02/01/2022,7:26,BROOKLYN,11212,40.672386,-73.91064,"(40.672386, -73.91064)",,,1539 EAST NEW YORK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500865,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,3:13,MANHATTAN,10010,40.740036,-73.98953,"(40.740036, -73.98953)",,,924 BROADWAY,0,0,0,0,0,0,0,0,,,,,,4500098,,,,, +02/05/2022,13:30,MANHATTAN,10037,40.815403,-73.93992,"(40.815403, -73.93992)",WEST 137 STREET,LENOX AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500604,Sedan,Box Truck,,, +02/04/2022,7:44,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500741,Box Truck,Box Truck,,, +02/05/2022,7:30,BROOKLYN,11233,40.676495,-73.913704,"(40.676495, -73.913704)",ATLANTIC AVENUE,BOYLAND STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4500522,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/05/2022,5:45,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500084,Box Truck,Sedan,,, +02/05/2022,21:54,,,40.731983,-73.91912,"(40.731983, -73.91912)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500123,Sedan,Sedan,,, +01/31/2022,16:00,BROOKLYN,11208,40.675117,-73.87089,"(40.675117, -73.87089)",,,425 PINE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500631,Sedan,Sedan,Pick-up Truck,, +01/23/2022,11:59,QUEENS,11372,40.749744,-73.884315,"(40.749744, -73.884315)",82 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500622,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,19:53,MANHATTAN,10018,40.756527,-73.994026,"(40.756527, -73.994026)",WEST 39 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500354,Sedan,,,, +10/14/2021,13:05,MANHATTAN,10019,,,,,,136 WEST 57 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4471723,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,19:45,,,40.76294,-73.86067,"(40.76294, -73.86067)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4474262,Sedan,Sedan,,, +11/09/2021,8:56,QUEENS,11375,40.71619,-73.857056,"(40.71619, -73.857056)",KESSEL STREET,SELFRIDGE STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4476015,Sedan,Sedan,,, +11/12/2021,14:10,BRONX,10459,40.82674,-73.8879,"(40.82674, -73.8879)",WESTCHESTER AVENUE,LONGFELLOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476780,Tow Truck / Wrecker,Flat Bed,,, +11/03/2021,15:32,MANHATTAN,10040,40.855556,-73.92918,"(40.855556, -73.92918)",SAINT NICHOLAS AVENUE,WEST 191 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478142,Moped,,,, +11/13/2021,23:37,QUEENS,11435,40.711037,-73.8142,"(40.711037, -73.8142)",84 DRIVE,PERSHING CRESCENT,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478166,,,,, +11/13/2021,15:30,,,40.862087,-73.91331,"(40.862087, -73.91331)",WEST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478136,Sedan,Sedan,,, +11/09/2021,17:30,MANHATTAN,10026,40.799755,-73.95605,"(40.799755, -73.95605)",,,217 WEST 110 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478158,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,22:45,BROOKLYN,11217,40.68297,-73.97667,"(40.68297, -73.97667)",FLATBUSH AVENUE,PACIFIC STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4478131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,19:44,,,40.805782,-73.95066,"(40.805782, -73.95066)",7 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4478156,Sedan,Taxi,,, +11/12/2021,14:45,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478145,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,8:00,QUEENS,11413,40.678288,-73.74688,"(40.678288, -73.74688)",,,222-15 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500062,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,20:20,STATEN ISLAND,10304,40.621143,-74.08561,"(40.621143, -74.08561)",VANDUZER STREET,YOUNG STREET,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4500761,Sedan,Sedan,,, +02/01/2022,19:30,BROOKLYN,11235,40.57957,-73.96221,"(40.57957, -73.96221)",OCEANVIEW AVENUE,BRIGHTON 6 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4500820,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,9:28,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500653,Sedan,Sedan,Sedan,, +01/28/2022,12:00,QUEENS,11368,40.738,-73.85822,"(40.738, -73.85822)",,,58-03 CALLOWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500905,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,10:40,,,40.689133,-73.951324,"(40.689133, -73.951324)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500314,Sedan,,,, +12/13/2021,8:33,,,0,0,"(0.0, 0.0)",2 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4486232,Sedan,Box Truck,,, +12/13/2021,21:00,QUEENS,11101,40.74823,-73.94169,"(40.74823, -73.94169)",43 AVENUE,27 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486237,Pick-up Truck,Sedan,,, +12/13/2021,9:00,QUEENS,11378,40.72917,-73.93085,"(40.72917, -73.93085)",,,34-02 LAUREL HILL BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486233,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,23:00,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486228,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,12:05,QUEENS,11377,40.74273,-73.91499,"(40.74273, -73.91499)",QUEENS BOULEVARD,50 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4486236,Sedan,Sedan,,, +12/13/2021,11:04,QUEENS,11104,40.743263,-73.91964,"(40.743263, -73.91964)",45 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4486234,Sedan,Carry All,,, +02/02/2022,13:06,BRONX,10474,40.81792,-73.891235,"(40.81792, -73.891235)",,,935 GARRISON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500697,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,2:08,BRONX,10460,40.840042,-73.863945,"(40.840042, -73.863945)",WHITE PLAINS ROAD,GUERLAIN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500702,Sedan,,,, +02/05/2022,1:16,,,40.79333,-73.97964,"(40.79333, -73.97964)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4499935,Sedan,,,, +01/30/2022,13:40,STATEN ISLAND,10306,40.575306,-74.121124,"(40.575306, -74.121124)",RICHMOND ROAD,ODIN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500801,Sedan,Ambulance,,, +02/05/2022,4:45,MANHATTAN,10034,40.864807,-73.91937,"(40.864807, -73.91937)",POST AVENUE,WEST 207 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500432,Sedan,,,, +11/14/2021,7:20,BROOKLYN,11239,40.64481,-73.87704,"(40.64481, -73.87704)",,,11325 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477308,Sedan,,,, +11/14/2021,20:00,QUEENS,11421,40.69537,-73.86213,"(40.69537, -73.86213)",,,85-07 FOREST PARKWAY,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477530,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,0:45,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477397,Taxi,,,, +11/11/2021,13:26,BROOKLYN,11226,40.65222,-73.95265,"(40.65222, -73.95265)",,,760 ROGERS AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478005,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,22:40,,,40.694637,-73.949066,"(40.694637, -73.949066)",MARCY AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4477967,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/14/2021,3:15,,,,,,STANTON STREET,ORCHARD STRETT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,13:05,,,40.753307,-73.90669,"(40.753307, -73.90669)",54 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477377,Sedan,Bike,,, +11/14/2021,15:00,QUEENS,11427,40.720036,-73.75752,"(40.720036, -73.75752)",89 AVENUE,207 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4477704,Sedan,,,, +11/14/2021,5:58,BRONX,10454,40.808372,-73.91301,"(40.808372, -73.91301)",,,345 CYPRESS AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4477433,Sedan,Sedan,Sedan,Sedan, +11/13/2021,15:11,QUEENS,11373,40.743504,-73.87871,"(40.743504, -73.87871)",,,43-28 JUDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477914,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,0:50,QUEENS,11433,40.69635,-73.79667,"(40.69635, -73.79667)",157 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4476945,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +11/14/2021,15:15,,,40.76459,-73.75873,"(40.76459, -73.75873)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4477470,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/14/2021,7:15,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Pavement Slippery,,,,4477997,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,9:51,BRONX,10452,40.836018,-73.9243,"(40.836018, -73.9243)",WEST 167 STREET,ANDERSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478112,Bus,Taxi,,, +11/14/2021,21:00,QUEENS,11377,40.741833,-73.89264,"(40.741833, -73.89264)",,,43-16 72 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477876,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,3:01,,,40.705273,-73.89634,"(40.705273, -73.89634)",FRESH POND ROAD,68 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4476986,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,20:08,,,40.66584,-73.75551,"(40.66584, -73.75551)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477254,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,10:30,,,40.808445,-73.945,"(40.808445, -73.945)",WEST 126 STREET,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4477555,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/14/2021,17:15,QUEENS,11361,40.760284,-73.769356,"(40.760284, -73.769356)",BELL BOULEVARD,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477622,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,22:00,BROOKLYN,11212,40.6692,-73.91743,"(40.6692, -73.91743)",,,477 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477723,Sedan,,,, +11/14/2021,21:30,,,40.810173,-73.95117,"(40.810173, -73.95117)",WEST 125 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477809,,,,, +11/14/2021,4:40,BRONX,10466,40.89021,-73.83303,"(40.89021, -73.83303)",,,3928 HARPER AVENUE,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4477195,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/14/2021,2:15,BRONX,10468,40.86177,-73.89868,"(40.86177, -73.89868)",CRESTON AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477090,Sedan,Sedan,,, +11/14/2021,12:40,QUEENS,11385,40.702335,-73.89073,"(40.702335, -73.89073)",CENTRAL AVENUE,65 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477177,Sedan,Sedan,,, +11/14/2021,9:36,BROOKLYN,11220,40.629765,-74.01244,"(40.629765, -74.01244)",,,860 68 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4477094,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,1:30,QUEENS,11693,40.58815,-73.812225,"(40.58815, -73.812225)",,,236 BEACH 87 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478038,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,17:00,BROOKLYN,11234,40.626457,-73.918,"(40.626457, -73.918)",RALPH AVENUE,AVENUE K,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477246,Sedan,Sedan,,, +11/14/2021,5:30,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477007,Sedan,,,, +11/14/2021,8:45,,,40.75786,-73.9756,"(40.75786, -73.9756)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477805,Sedan,Bus,,, +11/14/2021,6:10,BRONX,10454,40.803905,-73.91844,"(40.803905, -73.91844)",SAINT ANNS PLACE,EAST 134 STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477423,Taxi,,,, +11/14/2021,19:30,,,40.73245,-74.00987,"(40.73245, -74.00987)",WEEHAWKEN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477508,Station Wagon/Sport Utility Vehicle,,,, +11/08/2021,11:20,,,40.665592,-73.888504,"(40.665592, -73.888504)",LIVONIA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477862,Box Truck,,,, +11/14/2021,23:42,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",MAURICE AVENUE,LONG ISLAND EXPRESSWAY,,2,0,0,0,0,0,2,0,Steering Failure,Unspecified,,,,4477634,Sedan,Sedan,,, +11/14/2021,12:30,,,40.692196,-73.92488,"(40.692196, -73.92488)",GOODWIN PLACE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477827,Sedan,,,, +11/14/2021,1:45,BROOKLYN,11203,40.655884,-73.942535,"(40.655884, -73.942535)",,,451 CLARKSON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477045,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,14:15,BRONX,10473,40.82187,-73.86694,"(40.82187, -73.86694)",,,831 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477218,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,16:35,QUEENS,11354,40.7737,-73.80689,"(40.7737, -73.80689)",157 STREET,26 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,22:55,QUEENS,11368,40.753925,-73.86107,"(40.753925, -73.86107)",,,107-16 37 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477620,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/07/2021,2:40,QUEENS,11370,40.75719,-73.89041,"(40.75719, -73.89041)",77 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4477942,Sedan,Sedan,Sedan,Sedan, +11/14/2021,20:15,QUEENS,11428,40.717976,-73.75062,"(40.717976, -73.75062)",,,93-03 211 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477255,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,21:30,QUEENS,11106,40.75864,-73.92587,"(40.75864, -73.92587)",,,34-05 33 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477349,Sedan,Sedan,,, +10/30/2021,23:40,BROOKLYN,11213,40.666866,-73.92853,"(40.666866, -73.92853)",PRESIDENT STREET,ROCHESTER AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478049,Sedan,,,, +11/14/2021,3:35,,,40.64419,-73.93349,"(40.64419, -73.93349)",CLARENDON ROAD,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4477148,Sedan,Motorcycle,,, +11/14/2021,21:20,,,40.738415,-73.84899,"(40.738415, -73.84899)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4477913,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,18:30,MANHATTAN,10018,40.751213,-73.9872,"(40.751213, -73.9872)",,,70 WEST 36 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477684,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,20:30,QUEENS,11105,40.773594,-73.902275,"(40.773594, -73.902275)",,,42-01 21 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477767,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,20:30,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477897,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,0:00,BROOKLYN,11226,40.64336,-73.94686,"(40.64336, -73.94686)",CLARENDON ROAD,EAST 32 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4478014,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,18:00,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4477417,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,11:16,,,40.67711,-73.78129,"(40.67711, -73.78129)",,,BAISLEY BOULEVARD,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4477975,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,20:38,BROOKLYN,11236,40.63038,-73.90379,"(40.63038, -73.90379)",AVENUE M,EAST 83 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477472,Sedan,Sedan,,, +11/14/2021,19:14,,,40.66709,-73.76376,"(40.66709, -73.76376)",NORTH CONDUIT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4477370,Sedan,Sedan,,, +11/14/2021,22:10,BROOKLYN,11222,40.722317,-73.940445,"(40.722317, -73.940445)",,,652 MEEKER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4477573,Station Wagon/Sport Utility Vehicle,Bike,,, +02/05/2022,11:20,BROOKLYN,11206,40.70601,-73.935486,"(40.70601, -73.935486)",WHITE STREET,MC KIBBIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500490,Sedan,,,, +11/14/2021,1:00,QUEENS,11373,40.74715,-73.87601,"(40.74715, -73.87601)",,,40-66 DENMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477922,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,4:30,QUEENS,11418,0,0,"(0.0, 0.0)",120 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4477521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,21:39,BROOKLYN,11249,40.715733,-73.96448,"(40.715733, -73.96448)",WYTHE AVENUE,GRAND STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4477379,Moped,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,10:20,QUEENS,11416,40.685673,-73.84109,"(40.685673, -73.84109)",,,101-69 101 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477522,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,18:24,,,40.819317,-73.93032,"(40.819317, -73.93032)",EXTERIOR STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,11:15,,,40.68558,-73.79105,"(40.68558, -73.79105)",115 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477987,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,0:23,,,40.7432,-73.89589,"(40.7432, -73.89589)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476936,Sedan,Sedan,,, +11/14/2021,4:15,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4478086,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,22:49,BROOKLYN,11207,40.65822,-73.89146,"(40.65822, -73.89146)",LINDEN BOULEVARD,SHEFFIELD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477331,Taxi,,,, +10/25/2021,7:49,BROOKLYN,11209,40.62149,-74.02622,"(40.62149, -74.02622)",5 AVENUE,86 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477887,,,,, +11/14/2021,10:43,,,40.68174,-73.95859,"(40.68174, -73.95859)",,,FULTON STREET,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4477965,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,0:31,,,40.791405,-73.93569,"(40.791405, -73.93569)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4476950,Sedan,Sedan,,, +11/14/2021,10:45,,,40.5785,-74.15615,"(40.5785, -74.15615)",FOREST HILL ROAD,PIERPONT PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477999,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/14/2021,13:50,,,40.678253,-74.00273,"(40.678253, -74.00273)",HAMILTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477264,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/14/2021,17:20,,,40.80929,-73.90313,"(40.80929, -73.90313)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477437,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,12:30,,,40.729446,-74.00518,"(40.729446, -74.00518)",VARICK STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478113,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,23:15,,,40.60235,-74.189644,"(40.60235, -74.189644)",CHELSEA ROAD,SOUTH AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4477371,Sedan,,,, +11/08/2021,9:29,,,40.73407,-73.999664,"(40.73407, -73.999664)",CHRISTOPHER STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477875,Station Wagon/Sport Utility Vehicle,Dump,,, +11/14/2021,22:00,QUEENS,11373,40.73677,-73.88287,"(40.73677, -73.88287)",,,51-25 CODWISE PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477919,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,5:30,,,40.7105,-73.771194,"(40.7105, -73.771194)",HOLLIS AVENUE,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477398,Sedan,,,, +11/14/2021,11:50,BROOKLYN,11225,40.65882,-73.96054,"(40.65882, -73.96054)",,,600 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478048,Sedan,,,, +11/14/2021,14:05,,,40.59124,-73.99402,"(40.59124, -73.99402)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477129,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,12:04,QUEENS,11378,40.72093,-73.91247,"(40.72093, -73.91247)",RUST STREET,58 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4477178,Flat Bed,Sedan,,, +11/14/2021,15:15,BRONX,10467,40.85958,-73.86578,"(40.85958, -73.86578)",,,746 ASTOR AVENUE,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4477657,Sedan,,,, +11/14/2021,23:35,BROOKLYN,11207,40.66839,-73.89109,"(40.66839, -73.89109)",BRADFORD STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4477310,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/12/2021,7:25,,,40.73135,-73.98256,"(40.73135, -73.98256)",1 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4477855,Taxi,,,, +11/14/2021,8:20,,,40.586918,-73.96387,"(40.586918, -73.96387)",EAST 6 STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4477047,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +11/14/2021,17:45,,,40.58872,-73.99234,"(40.58872, -73.99234)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477528,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,0:30,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4477688,Taxi,Sedan,Sedan,, +11/14/2021,2:50,,,40.74876,-73.8692,"(40.74876, -73.8692)",40 ROAD,JUNCTION BOULEVARD,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477169,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/14/2021,16:25,MANHATTAN,10035,40.805637,-73.9344,"(40.805637, -73.9344)",EAST 128 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477384,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,0:00,MANHATTAN,10032,40.836555,-73.94306,"(40.836555, -73.94306)",BROADWAY,WEST 161 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477958,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,7:00,BROOKLYN,11226,40.651833,-73.94724,"(40.651833, -73.94724)",,,355 MARTENSE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478010,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,20:30,BROOKLYN,11208,40.66451,-73.88103,"(40.66451, -73.88103)",HEGEMAN AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,,,,,,4477865,,,,, +11/14/2021,13:20,QUEENS,11429,40.708084,-73.75153,"(40.708084, -73.75153)",,,109-27 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477271,Sedan,Sedan,,, +11/14/2021,21:45,QUEENS,11423,40.71892,-73.76576,"(40.71892, -73.76576)",,,197-32 FOOTHILL AVENUE,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4477391,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,13:52,MANHATTAN,10021,40.77157,-73.96491,"(40.77157, -73.96491)",,,45 EAST 72 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477929,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,6:28,MANHATTAN,10022,40.756886,-73.96943,"(40.756886, -73.96943)",,,206 EAST 52 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477630,Dump,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,0:40,QUEENS,11105,40.770134,-73.9094,"(40.770134, -73.9094)",,,23-44 STEINWAY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4476981,Sedan,Sedan,,, +11/14/2021,19:35,MANHATTAN,10022,40.761665,-73.97492,"(40.761665, -73.97492)",EAST 55 STREET,5 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4477823,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,8:18,QUEENS,11101,40.748108,-73.947365,"(40.748108, -73.947365)",21 STREET,44 DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477248,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,19:00,,,40.725983,-73.72421,"(40.725983, -73.72421)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4477703,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,18:50,,,40.58425,-73.9638,"(40.58425, -73.9638)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477545,Sedan,Sedan,,, +01/29/2022,9:00,STATEN ISLAND,10301,40.639935,-74.08096,"(40.639935, -74.08096)",,,68 BENZIGER AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500754,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,20:28,,,40.775826,-73.991264,"(40.775826, -73.991264)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478035,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,22:35,,,40.67211,-73.801094,"(40.67211, -73.801094)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477501,Sedan,Sedan,,, +11/10/2021,23:40,QUEENS,11001,40.728287,-73.71057,"(40.728287, -73.71057)",,,87-83 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477931,Sedan,Sedan,Sedan,, +11/14/2021,15:51,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477348,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,11:00,,,,,,east 111 street,EAST 111 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477857,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,23:40,STATEN ISLAND,10304,40.620876,-74.08567,"(40.620876, -74.08567)",,,767 VANDUZER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477906,Sedan,,,, +11/14/2021,18:00,BROOKLYN,11206,40.706825,-73.94837,"(40.706825, -73.94837)",,,30 MONTROSE AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477389,Sedan,E-Bike,,, +11/14/2021,13:08,BRONX,10467,40.8623,-73.866394,"(40.8623, -73.866394)",,,2437 BOSTON ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/14/2021,3:15,,,40.610653,-73.95355,"(40.610653, -73.95355)",OCEAN AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4477003,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,22:00,,,40.828957,-73.842064,"(40.828957, -73.842064)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477516,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,1:45,BRONX,10466,40.89322,-73.86086,"(40.89322, -73.86086)",,,4154 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477194,Sedan,,,, +11/14/2021,18:23,QUEENS,11421,40.69366,-73.85217,"(40.69366, -73.85217)",JAMAICA AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4477523,Sedan,Sedan,,, +11/14/2021,12:00,BROOKLYN,11207,40.671844,-73.88918,"(40.671844, -73.88918)",,,414 HENDRIX STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477330,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,18:39,BRONX,10461,40.839493,-73.83802,"(40.839493, -73.83802)",EDWARDS AVENUE,BALCOM AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477512,Sedan,,,, +11/13/2021,13:15,,,40.68161,-73.77221,"(40.68161, -73.77221)",BAISLEY BOULEVARD,172 STREET,,2,0,0,0,0,0,2,0,Passing Too Closely,Driver Inattention/Distraction,,,,4477974,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,18:29,QUEENS,11432,40.702698,-73.8024,"(40.702698, -73.8024)",,,151-20 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Drugs (illegal),Unspecified,,,,4477416,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,16:30,,,40.82598,-73.93591,"(40.82598, -73.93591)",WEST 152 STREET,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4477990,Van,Taxi,,, +11/14/2021,2:10,QUEENS,11101,40.746876,-73.95272,"(40.746876, -73.95272)",VERNON BOULEVARD,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476937,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,8:40,BROOKLYN,11223,40.588562,-73.9727,"(40.588562, -73.9727)",,,2470 WEST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478095,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/14/2021,6:08,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477886,Sedan,Motorbike,,, +11/14/2021,19:14,MANHATTAN,10016,40.7447,-73.983086,"(40.7447, -73.983086)",,,444 PARK AVENUE SOUTH,1,0,0,0,0,0,1,0,Illnes,,,,,4477690,Sedan,,,, +11/14/2021,14:03,QUEENS,11694,40.580837,-73.83779,"(40.580837, -73.83779)",,,240 BEACH 116 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477165,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,3:50,BROOKLYN,11216,40.67625,-73.95308,"(40.67625, -73.95308)",BEDFORD AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477170,Sedan,Sedan,,, +11/14/2021,6:00,BROOKLYN,11234,40.609653,-73.935814,"(40.609653, -73.935814)",,,3224 FILLMORE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477595,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,10:40,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478085,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/14/2021,18:20,,,40.83542,-73.86809,"(40.83542, -73.86809)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477217,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,0:00,,,40.668648,-73.92835,"(40.668648, -73.92835)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477666,Motorscooter,,,, +11/14/2021,16:51,BROOKLYN,11201,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477269,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,21:49,MANHATTAN,10021,40.768646,-73.958466,"(40.768646, -73.958466)",,,1388 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477775,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,2:00,BROOKLYN,11223,40.600418,-73.97824,"(40.600418, -73.97824)",,,1923 WEST 6 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477017,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/14/2021,14:29,QUEENS,11413,40.678226,-73.742386,"(40.678226, -73.742386)",133 AVENUE,227 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477600,Sedan,Sedan,,, +11/14/2021,22:26,,,40.710476,-73.963844,"(40.710476, -73.963844)",BEDFORD AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477748,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,14:25,BROOKLYN,11237,40.70281,-73.9254,"(40.70281, -73.9254)",STARR STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477851,Sedan,Sedan,,, +11/14/2021,1:00,BRONX,10457,40.849426,-73.89018,"(40.849426, -73.89018)",,,2115 HUGHES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477060,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,10:44,BRONX,10460,40.840042,-73.863945,"(40.840042, -73.863945)",GUERLAIN STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477215,Sedan,,,, +11/14/2021,20:21,,,40.84525,-73.91499,"(40.84525, -73.91499)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477260,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,1:40,QUEENS,11419,40.68779,-73.820175,"(40.68779, -73.820175)",124 STREET,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4477460,Sedan,Sedan,Sedan,Sedan,Taxi +11/14/2021,4:00,,,40.839275,-73.88436,"(40.839275, -73.88436)",EAST 176 STREET,BOSTON ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477884,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,19:00,,,40.751522,-73.99396,"(40.751522, -73.99396)",8 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478043,Station Wagon/Sport Utility Vehicle,Bike,,, +11/14/2021,12:41,BROOKLYN,11219,40.625736,-73.99713,"(40.625736, -73.99713)",,,6218 NEW UTRECHT AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477109,Sedan,Bike,,, +11/14/2021,14:30,BROOKLYN,11208,40.66295,-73.86905,"(40.66295, -73.86905)",,,709 FOUNTAIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477326,Sedan,Sedan,,, +11/14/2021,5:54,,,40.6715,-73.91505,"(40.6715, -73.91505)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477001,Sedan,,,, +11/14/2021,18:40,,,40.696785,-73.95659,"(40.696785, -73.95659)",PARK AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477249,Taxi,,,, +11/14/2021,1:55,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477560,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,20:00,BRONX,10469,40.8607,-73.83337,"(40.8607, -73.83337)",WARING AVENUE,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477241,Sedan,,,, +11/13/2021,8:30,MANHATTAN,10034,40.863792,-73.91942,"(40.863792, -73.91942)",10 AVENUE,WEST 206 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477970,Sedan,,,, +11/14/2021,14:53,BROOKLYN,11218,40.63613,-73.97274,"(40.63613, -73.97274)",OCEAN PARKWAY,DITMAS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477788,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/14/2021,15:02,QUEENS,11417,40.68167,-73.83781,"(40.68167, -73.83781)",103 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4477372,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/14/2021,17:50,,,40.673588,-73.96296,"(40.673588, -73.96296)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477648,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,18:45,MANHATTAN,10019,40.76229,-73.986115,"(40.76229, -73.986115)",WEST 50 STREET,8 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477822,Bike,,,, +11/14/2021,18:20,,,40.61106,-73.89714,"(40.61106, -73.89714)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477706,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,1:25,,,40.804695,-73.92239,"(40.804695, -73.92239)",BRUCKNER BOULEVARD,WILLIS AVENUE BRIDGE APPROACH,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477431,Sedan,,,, +11/13/2021,9:15,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",HILLSIDE AVENUE,EDGERTON BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477916,Sedan,,,, +11/14/2021,19:07,MANHATTAN,10029,40.795013,-73.933044,"(40.795013, -73.933044)",,,501 EAST 116 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477362,Sedan,Sedan,,, +11/12/2021,15:40,,,40.83923,-73.94555,"(40.83923, -73.94555)",WEST 163 STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477959,Station Wagon/Sport Utility Vehicle,Bike,,, +11/14/2021,20:09,BROOKLYN,11249,40.708958,-73.96848,"(40.708958, -73.96848)",,,446 KENT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4477336,Sedan,,,, +11/14/2021,1:55,QUEENS,11433,40.692696,-73.79114,"(40.692696, -73.79114)",,,109-36 160 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4476951,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,12:00,,,40.82413,-73.94098,"(40.82413, -73.94098)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477992,Motorcycle,,,, +11/14/2021,4:26,QUEENS,11101,40.745068,-73.936356,"(40.745068, -73.936356)",30 PLACE,THOMSON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477179,Taxi,Sedan,,, +11/14/2021,5:00,,,40.794773,-73.816185,"(40.794773, -73.816185)",150 STREET,,,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,,,,4477392,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,2:28,,,40.829422,-73.9319,"(40.829422, -73.9319)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4478116,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,23:15,,,40.740078,-73.89969,"(40.740078, -73.89969)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477890,Sedan,Sedan,,, +11/14/2021,21:55,,,40.71582,-73.81759,"(40.71582, -73.81759)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477399,Sedan,,,, +11/14/2021,1:00,MANHATTAN,10027,40.810425,-73.95176,"(40.810425, -73.95176)",,,319 WEST 125 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477544,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/12/2021,17:45,,,40.780064,-73.94705,"(40.780064, -73.94705)",1 AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4477907,Bus,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,11:30,QUEENS,11358,40.756397,-73.804535,"(40.756397, -73.804535)",162 STREET,45 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4477383,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,13:45,QUEENS,11428,40.720554,-73.73604,"(40.720554, -73.73604)",SPRINGFIELD BOULEVARD,94 ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477272,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,4:40,,,40.69297,-73.78024,"(40.69297, -73.78024)",MERRICK BOULEVARD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477980,Van,,,, +11/09/2021,16:00,BROOKLYN,11212,40.656384,-73.91624,"(40.656384, -73.91624)",,,474 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478009,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,10:00,BROOKLYN,11233,40.68452,-73.913315,"(40.68452, -73.913315)",BROADWAY,MACDONOUGH STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477628,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,12:00,BROOKLYN,11207,40.661762,-73.89618,"(40.661762, -73.89618)",,,583 ALABAMA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477869,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,23:15,QUEENS,11354,40.759113,-73.83418,"(40.759113, -73.83418)",,,133-27 39 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4477419,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,21:55,,,40.78448,-73.85682,"(40.78448, -73.85682)",14 ROAD,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477517,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,6:00,,,40.862312,-73.929436,"(40.862312, -73.929436)",BROADWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477928,Sedan,,,, +11/14/2021,2:15,BROOKLYN,11225,40.66184,-73.9592,"(40.66184, -73.9592)",,,57 LEFFERTS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477524,Sedan,Sedan,Sedan,, +11/14/2021,16:00,QUEENS,11368,40.753914,-73.86586,"(40.753914, -73.86586)",,,35-32 102 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477938,Sedan,,,, +11/14/2021,1:40,BROOKLYN,11215,40.666843,-73.994865,"(40.666843, -73.994865)",PROSPECT AVENUE,3 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4476939,Sedan,Taxi,,, +11/12/2021,19:30,,,40.774612,-73.92399,"(40.774612, -73.92399)",21 STREET,HOYT AVENUE SOUTH,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4478099,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,22:05,,,40.67804,-73.75925,"(40.67804, -73.75925)",134 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477981,Box Truck,Sedan,,, +11/14/2021,11:30,MANHATTAN,10035,40.79563,-73.93242,"(40.79563, -73.93242)",,,517 EAST 117 STREET,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477361,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,19:37,BROOKLYN,11215,40.66279,-73.98833,"(40.66279, -73.98833)",PROSPECT AVENUE,6 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477692,Sedan,Sedan,,, +11/14/2021,11:33,BROOKLYN,11238,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477171,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,1:50,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4477672,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/12/2021,9:15,,,40.641064,-73.94662,"(40.641064, -73.94662)",EAST 32 STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4478029,,,,, +11/12/2021,7:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4477891,Bus,Sedan,,, +11/14/2021,19:20,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4477427,Taxi,Taxi,Sedan,, +11/14/2021,12:18,MANHATTAN,10027,40.811005,-73.94525,"(40.811005, -73.94525)",,,125 WEST 129 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4477500,Taxi,,,, +11/14/2021,14:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,21:40,BROOKLYN,11236,40.63038,-73.90379,"(40.63038, -73.90379)",EAST 83 STREET,AVENUE M,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4477568,Sedan,Sedan,,, +11/14/2021,18:00,,,40.71058,-73.9835,"(40.71058, -73.9835)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477235,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,8:02,MANHATTAN,10025,40.797836,-73.96946,"(40.797836, -73.96946)",BROADWAY,WEST 101 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477020,Sedan,,,, +11/14/2021,19:50,QUEENS,11434,40.660347,-73.767975,"(40.660347, -73.767975)",147 AVENUE,BREWER BOULEVARD,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477606,Sedan,,,, +11/14/2021,18:50,,,40.717014,-73.7994,"(40.717014, -73.7994)",GRAND CENTRAL PKWY,,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,Driver Inattention/Distraction,,,,4477387,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,16:06,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4478084,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,14:46,BROOKLYN,11216,40.68389,-73.93823,"(40.68389, -73.93823)",MARCUS GARVEY BOULEVARD,HANCOCK STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477243,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,21:30,QUEENS,11428,40.723248,-73.74133,"(40.723248, -73.74133)",218 STREET,92 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4477273,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/12/2021,15:05,BRONX,10459,40.83015,-73.89337,"(40.83015, -73.89337)",INTERVALE AVENUE,FREEMAN STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477872,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,14:00,QUEENS,11106,40.759457,-73.93589,"(40.759457, -73.93589)",36 AVENUE,22 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477762,Sedan,,,, +11/14/2021,15:33,MANHATTAN,10013,40.720318,-74.01218,"(40.720318, -74.01218)",WEST STREET,NORTH MOORE STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477798,Bike,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,6:35,,,40.6618,-73.7682,"(40.6618, -73.7682)",BREWER BOULEVARD,146 DRIVE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,Unspecified,,,4477014,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/14/2021,17:10,,,40.87356,-73.81853,"(40.87356, -73.81853)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477511,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,1:20,BROOKLYN,11226,40.65392,-73.95367,"(40.65392, -73.95367)",,,186 LENOX ROAD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4477161,Sedan,Sedan,,, +11/14/2021,23:28,,,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477627,Sedan,Sedan,Sedan,, +11/14/2021,3:18,,,40.657658,-73.953224,"(40.657658, -73.953224)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4476987,Sedan,Sedan,Sedan,Sedan,Sedan +11/14/2021,12:55,BROOKLYN,11208,40.674255,-73.87989,"(40.674255, -73.87989)",PITKIN AVENUE,BERRIMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477327,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,16:15,,,40.58153,-73.96195,"(40.58153, -73.96195)",NEPTUNE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477729,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,7:45,,,40.776237,-73.95587,"(40.776237, -73.95587)",3 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4477559,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/14/2021,17:38,BROOKLYN,11238,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,FRANKLIN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477214,E-Scooter,Bike,,, +11/07/2021,15:12,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478006,Sedan,Sedan,,, +11/13/2021,1:00,MANHATTAN,10036,40.75671,-73.986465,"(40.75671, -73.986465)",WEST 43 STREET,7 AVENUE,,3,0,0,0,3,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4477963,Sedan,Pedicab,,, +11/14/2021,5:51,BROOKLYN,11235,40.588512,-73.949356,"(40.588512, -73.949356)",OCEAN AVENUE,AVENUE Z,,0,1,0,1,0,0,0,0,Unspecified,,,,,4477393,Sedan,,,, +11/14/2021,19:10,QUEENS,11413,40.65558,-73.76629,"(40.65558, -73.76629)",ROCKAWAY BOULEVARD,150 DRIVE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4477375,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,22:33,QUEENS,11377,40.744556,-73.895996,"(40.744556, -73.895996)",41 AVENUE,69 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4477883,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/01/2021,18:00,QUEENS,11373,40.741676,-73.86756,"(40.741676, -73.86756)",50 AVENUE,JUNCTION BOULEVARD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477915,E-Bike,,,, +11/14/2021,8:20,QUEENS,11435,40.691563,-73.79801,"(40.691563, -73.79801)",,,109-10 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477414,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,10:40,MANHATTAN,10017,40.75112,-73.97127,"(40.75112, -73.97127)",EAST 44 STREET,2 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477183,E-Bike,,,, +11/14/2021,7:25,,,40.855385,-73.9181,"(40.855385, -73.9181)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477102,Sedan,Sedan,,, +11/09/2021,21:43,BROOKLYN,11203,40.650948,-73.94668,"(40.650948, -73.94668)",NEW YORK AVENUE,CHURCH AVENUE,,1,0,1,0,0,0,0,0,,,,,,4478039,,,,, +11/14/2021,22:30,BROOKLYN,11228,40.612724,-74.00813,"(40.612724, -74.00813)",,,8319 15 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477638,Sedan,,,, +11/14/2021,1:00,QUEENS,11421,40.691853,-73.856964,"(40.691853, -73.856964)",,,87-46 87 STREET,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4477811,Motorcycle,Sedan,,, +11/14/2021,8:48,BROOKLYN,11206,40.694485,-73.93735,"(40.694485, -73.93735)",LEWIS AVENUE,HART STREET,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4477253,Sedan,Sedan,,, +11/14/2021,4:40,MANHATTAN,10065,40.765614,-73.9607,"(40.765614, -73.9607)",EAST 67 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477432,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,21:30,,,40.69078,-73.72728,"(40.69078, -73.72728)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477705,Sedan,Sedan,,, +11/14/2021,9:07,,,40.849403,-73.871445,"(40.849403, -73.871445)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Eating or Drinking,Following Too Closely,,,,4477541,Sedan,Sedan,,, +11/14/2021,4:23,MANHATTAN,10029,40.78393,-73.94423,"(40.78393, -73.94423)",1 AVENUE,EAST 97 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477070,Pick-up Truck,Sedan,,, +11/14/2021,1:15,QUEENS,11354,40.764122,-73.812775,"(40.764122, -73.812775)",ROOSEVELT AVENUE,MURRAY STREET,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4476968,E-Scooter,,,, +11/14/2021,19:25,,,,,,CROSS ISLAND PARKWAY,TOTTEN ROAD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4477334,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/14/2021,18:46,QUEENS,11420,40.66622,-73.813515,"(40.66622, -73.813515)",SOUTH CONDUIT AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477462,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/14/2021,15:13,MANHATTAN,10003,40.726482,-73.990105,"(40.726482, -73.990105)",,,79 EAST 4 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477259,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,0:30,BROOKLYN,11216,40.678154,-73.94416,"(40.678154, -73.94416)",ATLANTIC AVENUE,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,,4477968,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/04/2021,19:26,STATEN ISLAND,10304,40.62895,-74.079735,"(40.62895, -74.079735)",BEACH STREET,VANDUZER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477993,Sedan,Sedan,,, +11/11/2021,16:20,,,,,,,,79 EAST DRIVE,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4477888,Bike,golf cart,,, +11/06/2021,4:40,MANHATTAN,10009,40.722412,-73.97458,"(40.722412, -73.97458)",,,749 FDR DRIVE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4478120,Van,,,, +11/14/2021,1:30,QUEENS,11420,40.666855,-73.80425,"(40.666855, -73.80425)",NORTH CONDUIT AVENUE,135 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477367,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/17/2021,18:05,BRONX,10452,,,,JEROME AVENUE,EAST 164 STREET,,1,0,1,0,0,0,0,0,Other Vehicular,Unsafe Speed,Unspecified,,,4477909,Sedan,Sedan,,, +11/13/2021,20:00,QUEENS,11375,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4476927,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,12:55,,,40.76113,-73.85851,"(40.76113, -73.85851)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477619,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,7:23,QUEENS,11378,40.7267,-73.90034,"(40.7267, -73.90034)",65 PLACE,JAY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477176,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,17:54,MANHATTAN,10017,40.754128,-73.97649,"(40.754128, -73.97649)",,,200 PARK AVENUE,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477696,Station Wagon/Sport Utility Vehicle,Bike,,, +11/14/2021,21:08,,,40.669865,-73.95051,"(40.669865, -73.95051)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478050,Sedan,,,, +11/14/2021,19:05,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4477571,Bike,Sedan,,, +11/14/2021,12:01,MANHATTAN,10025,40.799248,-73.968925,"(40.799248, -73.968925)",,,230 WEST 103 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477159,Sedan,Pick-up Truck,,, +11/14/2021,9:00,,,40.843616,-73.87182,"(40.843616, -73.87182)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477245,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,19:41,BROOKLYN,11237,40.708057,-73.92255,"(40.708057, -73.92255)",SAINT NICHOLAS AVENUE,JEFFERSON STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4477833,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,19:18,MANHATTAN,10013,40.721966,-74.00824,"(40.721966, -74.00824)",HUDSON STREET,LAIGHT STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477800,Sedan,,,, +11/14/2021,8:05,MANHATTAN,10018,40.752388,-73.98807,"(40.752388, -73.98807)",,,136 WEST 37 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4477042,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,5:35,,,,,,EXTERIOR STREET,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478127,Tractor Truck Diesel,Sedan,,, +11/12/2021,17:55,BRONX,10468,40.864433,-73.90893,"(40.864433, -73.90893)",,,2420 SEDGWICK AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477894,Sedan,,,, +11/14/2021,16:45,,,40.742195,-73.81456,"(40.742195, -73.81456)",KISSENA BOULEVARD,58 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4477418,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,12:45,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",NORTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477979,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/31/2021,16:57,,,40.872314,-73.91274,"(40.872314, -73.91274)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477982,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,0:45,QUEENS,11435,40.699017,-73.80696,"(40.699017, -73.80696)",94 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4476944,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,16:48,,,40.847794,-73.82671,"(40.847794, -73.82671)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477510,Sedan,Sedan,,, +11/14/2021,6:30,,,40.715553,-73.82617,"(40.715553, -73.82617)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477527,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,15:00,QUEENS,11692,40.59763,-73.788376,"(40.59763, -73.788376)",,,434 BEACH 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478102,Sedan,,,, +11/14/2021,17:37,BROOKLYN,11206,40.701077,-73.94043,"(40.701077, -73.94043)",HUMBOLDT STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477350,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,8:10,STATEN ISLAND,10304,40.63495,-74.081055,"(40.63495, -74.081055)",,,18 WARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477859,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,18:00,QUEENS,11420,40.68083,-73.827194,"(40.68083, -73.827194)",109 AVENUE,113 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4477386,Sedan,Sedan,,, +11/14/2021,0:30,BRONX,10466,40.89481,-73.86183,"(40.89481, -73.86183)",BRONX RIVER PARKWAY,EAST 233 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477518,Sedan,,,, +11/14/2021,15:25,BROOKLYN,11219,40.626244,-74.00692,"(40.626244, -74.00692)",,,1139 OVINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477228,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,5:05,,,40.6785,-73.743256,"(40.6785, -73.743256)",133 AVENUE,,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4477012,Sedan,Sedan,,, +11/14/2021,21:40,STATEN ISLAND,10310,40.638153,-74.10927,"(40.638153, -74.10927)",,,471 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477677,Sedan,,,, +11/14/2021,1:40,,,,,,PARK AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477873,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,14:07,,,40.66725,-73.88799,"(40.66725, -73.88799)",DUMONT AVENUE,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4477283,Sedan,Sedan,,, +11/14/2021,0:41,,,,,,GUY R BREWER BOULEVARD,119 AVENUE,,1,1,0,0,0,0,1,1,Unsafe Speed,,,,,4477267,Sedan,,,, +11/14/2021,11:15,MANHATTAN,10128,40.782528,-73.94903,"(40.782528, -73.94903)",,,230 EAST 93 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477765,Box Truck,Ambulance,,, +11/14/2021,8:41,,,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4477382,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/14/2021,22:23,,,40.584625,-73.94713,"(40.584625, -73.94713)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4477425,Sedan,,,, +11/12/2021,15:01,MANHATTAN,10013,40.7171,-73.9986,"(40.7171, -73.9986)",CANAL STREET,MULBERRY STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4478018,Bike,,,, +11/13/2021,22:20,QUEENS,11372,40.752792,-73.87257,"(40.752792, -73.87257)",,,35-28 95 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477939,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,22:50,BRONX,10459,40.825287,-73.88646,"(40.825287, -73.88646)",EAST 165 STREET,WHITLOCK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4477494,Sedan,,,, +11/14/2021,20:05,,,,,,LINDEN BOULEVARD,VANWYCK EXPRESSWAY,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4477369,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,17:06,,,,,,MORRIS AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477912,Sedan,,,, +11/11/2021,17:35,STATEN ISLAND,10301,40.633373,-74.100845,"(40.633373, -74.100845)",HART BOULEVARD,ELWOOD PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477926,Sedan,,,, +10/13/2021,1:31,,,40.692062,-73.95191,"(40.692062, -73.95191)",,,PULASKI STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477964,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,3:05,QUEENS,11418,40.692726,-73.81065,"(40.692726, -73.81065)",VANWYCK EXPRESSWAY,LLOYD ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477396,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,0:00,BROOKLYN,11204,40.61347,-73.98546,"(40.61347, -73.98546)",21 AVENUE,68 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500201,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,6:38,BROOKLYN,11222,40.72159,-73.9458,"(40.72159, -73.9458)",MC GUINNESS BLVD SOUTH,ENGERT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500638,Sedan,,,, +02/05/2022,9:00,,,40.73851,-73.8065,"(40.73851, -73.8065)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,,,,,4500263,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,1:50,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500783,Sedan,,,, +02/04/2022,6:58,,,,,,BROOKLYN QNS EXPRESSWAY,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500920,Sedan,Box Truck,,, +02/05/2022,0:06,,,40.714066,-73.95163,"(40.714066, -73.95163)",METROPOLITAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500468,Sedan,,,, +02/05/2022,15:15,BRONX,10463,40.88446,-73.90189,"(40.88446, -73.90189)",,,3625 KINGSBRIDGE AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Reaction to Uninvolved Vehicle,,,,4500115,Sedan,Box Truck,,, +02/05/2022,9:35,,,40.728947,-73.92793,"(40.728947, -73.92793)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500052,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,15:06,,,,,,SEDGWICK AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,Unspecified,,4500588,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +02/03/2022,17:05,BROOKLYN,11208,40.675365,-73.86714,"(40.675365, -73.86714)",,,568 LINCOLN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500643,Ambulance,Sedan,,, +02/05/2022,21:02,BRONX,10465,40.8566,-73.82646,"(40.8566, -73.82646)",BRUCKNER EXPRESSWAY,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,12:27,BRONX,10456,40.832405,-73.90399,"(40.832405, -73.90399)",,,557 EAST 169 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500146,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/03/2022,21:40,,,40.76172,-73.98281,"(40.76172, -73.98281)",WEST 51 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500616,Sedan,,,, +02/01/2022,11:13,,,40.7338,-73.81481,"(40.7338, -73.81481)",KISSENA BOULEVARD,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500770,Sedan,Bike,,, +02/05/2022,14:37,BROOKLYN,11203,40.638786,-73.94538,"(40.638786, -73.94538)",NEW YORK AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4500252,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,14:20,QUEENS,11368,40.7375,-73.85276,"(40.7375, -73.85276)",HORACE HARDING EXPRESSWAY,GRANGER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500335,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,0:12,,,40.8115,-73.93481,"(40.8115, -73.93481)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500727,Sedan,,,, +02/05/2022,20:34,BROOKLYN,11207,40.67954,-73.89959,"(40.67954, -73.89959)",,,32 HIGHLAND BOULEVARD,0,0,0,0,0,0,0,0,,,,,,4500675,,,,, +02/04/2022,17:30,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",EAST GUN HILL ROAD,WEBSTER AVENUE,,1,0,1,0,0,0,0,0,,,,,,4500895,,,,, +02/05/2022,7:00,BRONX,10470,40.90348,-73.85035,"(40.90348, -73.85035)",EAST 241 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500410,Sedan,,,, +02/05/2022,6:58,BROOKLYN,11237,40.69426,-73.91036,"(40.69426, -73.91036)",JEFFERSON AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4500222,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/05/2022,16:45,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500658,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,3:07,BROOKLYN,11208,40.673626,-73.88068,"(40.673626, -73.88068)",,,441 SHEPHERD AVENUE,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4500669,Sedan,Sedan,Sedan,, +02/02/2022,6:25,MANHATTAN,10128,40.78069,-73.9466,"(40.78069, -73.9466)",EAST 92 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4500685,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/05/2022,21:04,BROOKLYN,11219,40.632996,-73.99782,"(40.632996, -73.99782)",12 AVENUE,55 STREET,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,,,,4500288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,8:06,MANHATTAN,10016,,,,EAST 38 STREET,TUNNEL EXIT STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500831,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,17:12,BROOKLYN,11206,40.70862,-73.945045,"(40.70862, -73.945045)",,,104 SCHOLES STREET,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4519758,Pick-up Truck,Sedan,Sedan,, +04/17/2022,6:40,BRONX,10472,40.82833,-73.85021,"(40.82833, -73.85021)",CASTLE HILL AVENUE,CHATTERTON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4519962,Sedan,Sedan,,, +04/15/2022,18:43,BRONX,10467,40.872295,-73.87561,"(40.872295, -73.87561)",,,3158 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520275,Station Wagon/Sport Utility Vehicle,Motorbike,,, +04/17/2022,19:31,MANHATTAN,10002,40.71524,-73.993065,"(40.71524, -73.993065)",,,76 CANAL STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4520090,Sedan,Chassis Cab,Sedan,, +04/17/2022,1:19,BROOKLYN,11207,40.658577,-73.89063,"(40.658577, -73.89063)",PENNSYLVANIA AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4519648,Sedan,Sedan,,, +02/22/2022,2:30,,,40.762913,-73.96981,"(40.762913, -73.96981)",EAST 59 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504645,Sedan,Taxi,,, +04/17/2022,5:00,,,40.740017,-73.84565,"(40.740017, -73.84565)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519578,Sedan,,,, +04/17/2022,23:40,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519833,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,15:00,,,40.881073,-73.878494,"(40.881073, -73.878494)",EAST GUN HILL ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519977,Sedan,,,, +04/17/2022,14:00,QUEENS,11106,40.763733,-73.9414,"(40.763733, -73.9414)",35 AVENUE,VERNON BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4519768,Motorcycle,Sedan,,, +04/14/2022,11:30,BRONX,10466,40.898003,-73.84372,"(40.898003, -73.84372)",,,4330 WILDER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520382,Sedan,Pick-up Truck,,, +04/17/2022,5:42,,,40.666935,-73.782715,"(40.666935, -73.782715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520416,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,10:15,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520342,Sedan,Sedan,,, +04/17/2022,3:30,BRONX,10457,40.85071,-73.89408,"(40.85071, -73.89408)",EAST 180 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519853,Taxi,Sedan,,, +03/19/2022,15:12,STATEN ISLAND,10310,40.634747,-74.11226,"(40.634747, -74.11226)",CASTLETON AVENUE,BEMENT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520357,Sedan,Bike,,, +04/17/2022,4:50,BROOKLYN,11221,40.69782,-73.927826,"(40.69782, -73.927826)",MYRTLE AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4520221,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,19:18,,,,,,EAST 57 STREET,QUEENSBORO BRIDGE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4519716,Sedan,,,, +04/04/2022,18:50,QUEENS,11693,40.589912,-73.80738,"(40.589912, -73.80738)",BEACH CHANNEL DRIVE,BEACH 81 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520269,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,3:20,STATEN ISLAND,10308,40.55723,-74.14688,"(40.55723, -74.14688)",GREAVES AVENUE,GIBSON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520154,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,5:00,QUEENS,11378,40.72478,-73.88868,"(40.72478, -73.88868)",,,72-14 CALDWELL AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4519681,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,14:51,MANHATTAN,10002,40.71455,-73.98411,"(40.71455, -73.98411)",,,259 EAST BROADWAY,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519751,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,0:30,STATEN ISLAND,10308,40.552742,-74.15331,"(40.552742, -74.15331)",,,221 KATAN AVENUE,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4520303,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/16/2022,13:29,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520294,Sedan,Sedan,,, +04/17/2022,0:00,BROOKLYN,11237,40.707676,-73.92386,"(40.707676, -73.92386)",FLUSHING AVENUE,GARDNER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4519629,LIMO,Station Wagon/Sport Utility Vehicle,,, +03/22/2022,22:55,MANHATTAN,10009,40.731174,-73.98214,"(40.731174, -73.98214)",,,400 EAST 14 STREET,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4520349,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,4:51,MANHATTAN,10037,40.812737,-73.93762,"(40.812737, -73.93762)",EAST 135 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4519951,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,14:45,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520388,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,0:00,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4520399,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,4:40,BROOKLYN,11212,40.657227,-73.900764,"(40.657227, -73.900764)",LINDEN BOULEVARD,POWELL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519529,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,10:37,,,40.810684,-73.95452,"(40.810684, -73.95452)",MORNINGSIDE AVENUE,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4520007,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,3:30,QUEENS,11373,40.737286,-73.88466,"(40.737286, -73.88466)",51 AVENUE,GORSLINE STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520068,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,22:14,BRONX,10453,40.8474,-73.922455,"(40.8474, -73.922455)",,,156 WEST 174 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519841,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,14:56,STATEN ISLAND,10309,40.547794,-74.2171,"(40.547794, -74.2171)",WINANT AVENUE,WIRT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545292,Sedan,Sedan,,, +04/17/2022,17:35,BRONX,10475,40.869423,-73.825745,"(40.869423, -73.825745)",,,2100 BARTOW AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519892,Sedan,Sedan,,, +04/17/2022,16:00,BROOKLYN,11222,40.719162,-73.94096,"(40.719162, -73.94096)",,,252 RICHARDSON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520040,Sedan,,,, +04/17/2022,9:30,MANHATTAN,10033,40.848392,-73.937675,"(40.848392, -73.937675)",BROADWAY,WEST 178 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519738,Sedan,,,, +04/17/2022,9:15,,,40.68867,-73.73138,"(40.68867, -73.73138)",119 AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4519620,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,13:25,,,40.678154,-73.94416,"(40.678154, -73.94416)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520254,Tractor Truck Diesel,Box Truck,,, +04/12/2022,18:00,QUEENS,11433,40.707893,-73.78673,"(40.707893, -73.78673)",JAMAICA AVENUE,173 STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520328,Sedan,,,, +04/17/2022,22:13,,,,,,PLUMB 2 STREET,SHELL BANK CREEK,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4519796,Sedan,Pick-up Truck,,, +04/17/2022,12:35,QUEENS,11435,40.712925,-73.82233,"(40.712925, -73.82233)",135 STREET,82 DRIVE,,0,0,0,0,0,0,0,0,Driver Inexperience,Backing Unsafely,,,,4519781,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/11/2022,19:27,MANHATTAN,10027,40.809135,-73.955635,"(40.809135, -73.955635)",,,81 MORNINGSIDE AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520286,Station Wagon/Sport Utility Vehicle,Bike,,, +04/17/2022,15:32,MANHATTAN,10029,40.788685,-73.94386,"(40.788685, -73.94386)",EAST 103 STREET,2 AVENUE,,2,0,0,0,0,0,2,0,Obstruction/Debris,Obstruction/Debris,,,,4519880,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,18:05,MANHATTAN,10035,40.80259,-73.935265,"(40.80259, -73.935265)",,,245 EAST 124 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4519955,Ambulance,Taxi,,, +04/16/2022,21:20,MANHATTAN,10036,40.75484,-73.98412,"(40.75484, -73.98412)",WEST 42 STREET,AVENUE OF THE AMERICAS,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520449,,,,, +04/17/2022,3:42,BRONX,10469,40.880947,-73.85456,"(40.880947, -73.85456)",EAST 219 STREET,PAULDING AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4520373,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,21:15,,,40.81821,-73.96144,"(40.81821, -73.96144)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520001,Sedan,,,, +04/17/2022,12:50,QUEENS,11435,40.690872,-73.806435,"(40.690872, -73.806435)",PINEGROVE STREET,SOUTH ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4519859,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/08/2022,14:10,STATEN ISLAND,10301,40.63029,-74.08891,"(40.63029, -74.08891)",FOREST AVENUE,VICTORY BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520358,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,22:15,STATEN ISLAND,10310,40.63367,-74.12945,"(40.63367, -74.12945)",JEWETT AVENUE,CASTLETON AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4520365,Sedan,Sedan,,, +04/15/2022,23:12,,,40.878212,-73.84115,"(40.878212, -73.84115)",EAST 222 STREET,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520378,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,4:55,QUEENS,11415,40.711124,-73.833824,"(40.711124, -73.833824)",,,80-26 GRENFELL STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4519915,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,15:45,QUEENS,11373,40.74494,-73.887344,"(40.74494, -73.887344)",BROADWAY,78 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4522711,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,9:40,,,0,0,"(0.0, 0.0)",50 AVENUE,11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4521990,Station Wagon/Sport Utility Vehicle,,,, +04/25/2022,8:15,,,0,0,"(0.0, 0.0)",AVENUE P,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4521956,Sedan,Sedan,Sedan,, +04/21/2022,22:10,,,40.69885,-73.938576,"(40.69885, -73.938576)",,,PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522546,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,16:12,,,,,,QUEENSBORO BRIDGE LOWER,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4522020,Station Wagon/Sport Utility Vehicle,Taxi,Sedan,, +04/25/2022,8:30,,,40.695637,-73.80372,"(40.695637, -73.80372)",105 AVENUE,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4521905,Sedan,Pick-up Truck,,, +04/25/2022,8:03,,,40.72921,-73.781166,"(40.72921, -73.781166)",188 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4522129,Bus,Bus,,, +04/25/2022,0:00,BRONX,10461,40.84347,-73.836685,"(40.84347, -73.836685)",,,2801 MIDDLETOWN ROAD,1,0,1,0,0,0,0,0,Unspecified,,,,,4522168,Sedan,,,, +04/24/2022,17:30,BRONX,10452,40.83142,-73.92643,"(40.83142, -73.92643)",JEROME AVENUE,EAST 164 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4522453,Sedan,Sedan,,, +04/25/2022,6:16,,,40.690987,-73.86903,"(40.690987, -73.86903)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4521924,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,1:15,BRONX,10468,40.863785,-73.90028,"(40.863785, -73.90028)",JEROME AVENUE,WEST 190 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545361,Taxi,,,, +07/09/2022,19:00,BROOKLYN,11222,40.732388,-73.943726,"(40.732388, -73.943726)",GREENPOINT AVENUE,MONITOR STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545476,Sedan,Sedan,,, +07/09/2022,18:22,BROOKLYN,11220,40.645973,-74.01631,"(40.645973, -74.01631)",53 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4545048,Sedan,,,, +07/09/2022,23:00,STATEN ISLAND,10304,40.62163,-74.07807,"(40.62163, -74.07807)",,,101 TOMPKINS AVENUE,6,0,0,0,0,0,6,0,Driver Inattention/Distraction,Unspecified,,,,4545433,Sedan,Sedan,,, +07/09/2022,23:58,,,40.73566,-73.91521,"(40.73566, -73.91521)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545130,Sedan,,,, +07/09/2022,17:25,BROOKLYN,11234,40.606785,-73.91422,"(40.606785, -73.91422)",,,2762 EAST 63 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4544970,Sedan,Sedan,,, +07/08/2022,18:25,,,40.801754,-73.93121,"(40.801754, -73.93121)",1 AVENUE,EAST 125 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4545246,Sedan,Sedan,,, +07/09/2022,9:16,BROOKLYN,11231,40.68273,-74.0038,"(40.68273, -74.0038)",,,275 COLUMBIA STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544843,Station Wagon/Sport Utility Vehicle,,,, +07/03/2022,20:45,BRONX,10469,40.87418,-73.84896,"(40.87418, -73.84896)",,,3314 FISH AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545398,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,10:12,,,40.702045,-73.9156,"(40.702045, -73.9156)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545213,Sedan,,,, +07/09/2022,7:40,BRONX,10461,40.8431,-73.84778,"(40.8431, -73.84778)",SILVER STREET,EAST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544996,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,12:25,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",3 AVENUE,CLAREMONT PARKWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4545221,Sedan,,,, +07/09/2022,11:31,BRONX,10469,40.874702,-73.85803,"(40.874702, -73.85803)",PAULDING AVENUE,EAST GUN HILL ROAD,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4545082,Sedan,Sedan,,, +07/08/2022,22:45,,,40.76635,-73.95103,"(40.76635, -73.95103)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Unspecified,,,4545453,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2022,2:55,QUEENS,11372,40.74694,-73.89051,"(40.74694, -73.89051)",75 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544666,,,,, +07/06/2022,23:00,QUEENS,11385,40.706356,-73.900276,"(40.706356, -73.900276)",60 PLACE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545505,Sedan,,,, +07/09/2022,22:10,,,40.686825,-73.93881,"(40.686825, -73.93881)",MONROE STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4544923,Sedan,Sedan,Sedan,Sedan, +07/01/2022,9:40,STATEN ISLAND,10304,40.613308,-74.08722,"(40.613308, -74.08722)",VANDUZER STREET,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545426,,,,, +07/09/2022,4:09,QUEENS,11434,40.65771,-73.76757,"(40.65771, -73.76757)",BREWER BOULEVARD,149 ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4544682,Sedan,Tractor Truck Diesel,,, +07/07/2022,17:20,,,40.72224,-73.9863,"(40.72224, -73.9863)",AVENUE A,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545465,Bike,Sedan,,, +07/09/2022,19:21,BROOKLYN,11212,40.665226,-73.92319,"(40.665226, -73.92319)",EAST 98 STREET,SUTTER AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4544841,Station Wagon/Sport Utility Vehicle,Bike,,, +07/09/2022,23:36,,,40.69231,-73.88147,"(40.69231, -73.88147)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4545090,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,22:00,MANHATTAN,10036,40.757404,-73.9862,"(40.757404, -73.9862)",,,200 WEST 44 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passenger Distraction,,,,4544975,Fdny engin,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,14:30,BROOKLYN,11232,40.66001,-74.00176,"(40.66001, -74.00176)",3 AVENUE,28 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545342,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,2:57,BROOKLYN,11234,40.59651,-73.90788,"(40.59651, -73.90788)",FLATBUSH AVENUE,SHORE PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545380,Sedan,Sedan,,, +07/09/2022,0:52,BROOKLYN,11249,40.715527,-73.96642,"(40.715527, -73.96642)",KENT AVENUE,SOUTH 1 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545030,Dump,Sedan,,, +07/08/2022,8:43,,,40.716385,-73.96143,"(40.716385, -73.96143)",BERRY STREET,,,0,0,0,0,0,0,0,0,,,,,,4545486,,,,, +02/06/2022,12:30,QUEENS,11374,,,,,,92-85 Queens blvd,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500400,Sedan,,,, +07/09/2022,7:40,,,,,,LAFAYETTE AVENUE,HUTCHINSON RIVER PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4544760,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,10:33,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",CONNER STREET,BOSTON ROAD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4544780,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,5:55,QUEENS,11691,40.60247,-73.748024,"(40.60247, -73.748024)",,,13-22 GATEWAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4545263,Sedan,,,, +07/09/2022,4:11,,,,,,WILLIAMSBURG BRIDGE EXIT RAMP,BORINQUEN PLACE,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4544893,Motorcycle,,,, +07/06/2022,16:15,QUEENS,11004,40.751026,-73.71374,"(40.751026, -73.71374)",263 STREET,74 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545321,Sedan,Sedan,,, +07/09/2022,13:45,,,40.61163,-74.15957,"(40.61163, -74.15957)",,,1497 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544732,Sedan,Pick-up Truck,,, +07/09/2022,14:20,,,40.577637,-73.99697,"(40.577637, -73.99697)",NEPTUNE AVENUE,,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545232,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/09/2022,22:50,,,40.85482,-73.9112,"(40.85482, -73.9112)",UNIVERSITY AVENUE,WEST BURNSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545274,Sedan,,,, +07/09/2022,11:55,QUEENS,11361,40.760063,-73.77523,"(40.760063, -73.77523)",43 AVENUE,209 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4544772,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,17:53,BRONX,10472,40.828377,-73.870384,"(40.828377, -73.870384)",,,1158 CROES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,21:44,BROOKLYN,11226,40.655148,-73.95478,"(40.655148, -73.95478)",,,149 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545422,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,23:15,,,40.723347,-73.939316,"(40.723347, -73.939316)",MEEKER AVENUE,MORGAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545470,Sedan,Sedan,,, +07/06/2022,6:45,,,40.790253,-73.93685,"(40.790253, -73.93685)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545337,Sedan,Sedan,,, +07/09/2022,21:10,QUEENS,11364,40.755882,-73.76431,"(40.755882, -73.76431)",,,48-01 216 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544858,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,2:20,QUEENS,11372,40.746952,-73.89031,"(40.746952, -73.89031)",,,75-08 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545008,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,16:00,QUEENS,11374,40.73093,-73.864586,"(40.73093, -73.864586)",63 AVENUE,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4545411,Sedan,Sedan,Sedan,, +07/09/2022,2:15,QUEENS,11418,40.695152,-73.84507,"(40.695152, -73.84507)",,,102-34 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545256,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,3:45,BROOKLYN,11207,40.65993,-73.891655,"(40.65993, -73.891655)",PENNSYLVANIA AVENUE,HEGEMAN AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4544690,Sedan,Sedan,,, +07/01/2022,10:52,,,40.674313,-73.95009,"(40.674313, -73.95009)",PROSPECT PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545308,Sedan,,,, +07/09/2022,17:20,QUEENS,11367,40.71995,-73.81342,"(40.71995, -73.81342)",79 AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544822,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,16:25,BROOKLYN,11210,40.634327,-73.949234,"(40.634327, -73.949234)",,,1481 FLATBUSH AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4545278,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,16:05,QUEENS,11417,40.67927,-73.835655,"(40.67927, -73.835655)",ROCKAWAY BOULEVARD,104 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545239,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,19:17,STATEN ISLAND,10301,40.61569,-74.09724,"(40.61569, -74.09724)",,,176 HIGHLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545061,Sedan,Sedan,,, +07/08/2022,16:00,,,40.72766,-73.92938,"(40.72766, -73.92938)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4545480,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,12:30,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LEFFERTS BOULEVARD,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4545147,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,14:30,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545416,Sedan,Ambulance,,, +07/09/2022,21:25,BROOKLYN,11217,40.68261,-73.97642,"(40.68261, -73.97642)",,,170 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4544931,Taxi,Sedan,,, +07/05/2022,8:00,QUEENS,11429,40.71185,-73.745026,"(40.71185, -73.745026)",104 AVENUE,213 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545322,Station Wagon/Sport Utility Vehicle,,,, +05/20/2022,17:10,BRONX,10466,40.884777,-73.85877,"(40.884777, -73.85877)",EAST 222 STREET,BARNES AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4545362,Sedan,Sedan,,, +07/09/2022,1:30,QUEENS,11368,40.76065,-73.84239,"(40.76065, -73.84239)",,,127-20 34 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545007,Tractor Truck Diesel,,,, +06/30/2022,13:38,BROOKLYN,11215,40.6628,-73.978355,"(40.6628, -73.978355)",PROSPECT PARK WEST,12 STREET,,3,0,2,0,1,0,0,0,Unspecified,,,,,4545283,E-Bike,,,, +07/09/2022,2:33,BROOKLYN,11228,40.627247,-74.01429,"(40.627247, -74.01429)",72 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,0:01,BRONX,10457,40.842976,-73.89699,"(40.842976, -73.89699)",,,1775 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545188,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,12:01,,,40.65133,-73.90607,"(40.65133, -73.90607)",AVENUE D,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544794,Sedan,Sedan,,, +07/09/2022,5:08,BRONX,10454,40.811954,-73.91987,"(40.811954, -73.91987)",,,410 EAST 143 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545223,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,11:45,MANHATTAN,10032,40.841087,-73.937935,"(40.841087, -73.937935)",AUDUBON AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544911,Sedan,PK,,, +07/09/2022,9:45,,,40.67069,-73.80124,"(40.67069, -73.80124)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4545182,Sedan,Tractor Truck Diesel,,, +07/06/2022,0:35,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545432,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,5:00,,,40.63851,-74.021225,"(40.63851, -74.021225)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4545047,Sedan,,,, +07/08/2022,1:49,MANHATTAN,10075,40.77564,-73.96263,"(40.77564, -73.96263)",MADISON AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4545455,Pick-up Truck,Sedan,,, +07/09/2022,2:45,BROOKLYN,11249,40.72364,-73.95816,"(40.72364, -73.95816)",KENT AVENUE,NORTH 13 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4544668,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/03/2022,16:45,QUEENS,11385,40.7008,-73.907364,"(40.7008, -73.907364)",CYPRESS AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545506,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,9:15,,,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4545346,Sedan,Sedan,,, +07/09/2022,22:30,MANHATTAN,10013,40.717407,-73.99583,"(40.717407, -73.99583)",,,144 HESTER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545275,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,3:29,BROOKLYN,11207,40.65772,-73.895386,"(40.65772, -73.895386)",LINDEN BOULEVARD,LOUISIANA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544771,Sedan,Sedan,,, +07/09/2022,0:00,BRONX,10474,40.808815,-73.87215,"(40.808815, -73.87215)",,,155 FOOD CENTER DRIVE,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4544775,Station Wagon/Sport Utility Vehicle,,,, +07/02/2022,22:47,MANHATTAN,10029,40.799305,-73.94324,"(40.799305, -73.94324)",EAST 116 STREET,PARK AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4545247,Bike,Sedan,,, +06/30/2022,17:52,MANHATTAN,10018,40.756374,-73.99415,"(40.756374, -73.99415)",,,519 9 AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4545504,Sedan,Motorcycle,Taxi,, +07/09/2022,15:45,,,40.757668,-73.95915,"(40.757668, -73.95915)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544802,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,13:00,QUEENS,11691,40.60071,-73.75376,"(40.60071, -73.75376)",NEW HAVEN AVENUE,BEACH 20 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545264,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/09/2022,0:54,BROOKLYN,11233,,,,THOMAS BOYLAND STREET,Fulton Street,,3,0,0,0,0,0,3,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4544849,Sedan,Sedan,Sedan,Sedan,Sedan +07/07/2022,4:20,QUEENS,11418,40.7011,-73.84157,"(40.7011, -73.84157)",MYRTLE AVENUE,PARK LANE SOUTH,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545293,Station Wagon/Sport Utility Vehicle,Detached T,,, +07/09/2022,11:30,QUEENS,11419,40.692127,-73.83484,"(40.692127, -73.83484)",ATLANTIC AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544726,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,21:10,QUEENS,11416,40.68703,-73.84773,"(40.68703, -73.84773)",WOODHAVEN BOULEVARD,95 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545248,Sedan,Pick-up Truck,,, +07/07/2022,22:05,BROOKLYN,11215,40.677406,-73.983055,"(40.677406, -73.983055)",4 AVENUE,UNION STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4545288,Sedan,Bike,,, +06/07/2022,20:40,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4545312,Sedan,,,, +07/09/2022,15:58,MANHATTAN,10016,40.74608,-73.974945,"(40.74608, -73.974945)",EAST 36 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544734,Sedan,Box Truck,,, +07/09/2022,10:30,BROOKLYN,11219,40.62587,-74.00295,"(40.62587, -74.00295)",,,1269 66 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544800,Sedan,,,, +07/09/2022,11:25,,,40.795525,-73.97594,"(40.795525, -73.97594)",WEST 95 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,,,,4544837,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,7:00,,,40.702038,-73.86726,"(40.702038, -73.86726)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545091,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,0:32,BRONX,10468,40.8692,-73.89456,"(40.8692, -73.89456)",,,2763 MORRIS AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4545345,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/09/2022,18:06,,,40.7206,-73.95476,"(40.7206, -73.95476)",BEDFORD AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4545485,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,15:15,QUEENS,11365,40.74216,-73.804436,"(40.74216, -73.804436)",BOOTH MEMORIAL AVENUE,164 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4544756,Sedan,Sedan,Pick-up Truck,, +07/09/2022,3:20,BROOKLYN,11221,40.694138,-73.92649,"(40.694138, -73.92649)",BUSHWICK AVENUE,KOSSUTH PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4544894,Taxi,,,, +07/09/2022,9:25,BRONX,10452,40.838383,-73.91902,"(40.838383, -73.91902)",JEROME AVENUE,EAST CLARKE PLACE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544712,Motorbike,Sedan,,, +07/09/2022,0:00,,,40.80119,-73.93003,"(40.80119, -73.93003)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545243,Sedan,,,, +07/09/2022,19:52,,,40.749184,-73.758194,"(40.749184, -73.758194)",HORACE HARDING EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,8:55,,,40.804993,-73.911354,"(40.804993, -73.911354)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Tire Failure/Inadequate,Unspecified,Unspecified,,,4545430,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/06/2022,19:57,QUEENS,11421,40.69507,-73.86129,"(40.69507, -73.86129)",,,84-25 85 ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545294,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,21:50,,,40.68612,-73.785286,"(40.68612, -73.785286)",116 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4544977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/28/2022,9:50,QUEENS,11691,,,,,,522 JARVIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545262,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,7:00,,,40.6705,-73.94488,"(40.6705, -73.94488)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545307,Sedan,,,, +07/09/2022,1:42,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4545281,Taxi,Motorcycle,,, +07/09/2022,23:30,BROOKLYN,11212,40.65622,-73.913155,"(40.65622, -73.913155)",EAST 98 STREET,STRAUSS STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545069,Sedan,Motorbike,,, +07/03/2022,19:40,,,40.715443,-73.95185,"(40.715443, -73.95185)",UNION AVENUE,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545377,Sedan,Sedan,,, +07/09/2022,15:00,QUEENS,11103,40.758316,-73.91069,"(40.758316, -73.91069)",31 AVENUE,48 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544960,Taxi,Bike,,, +06/24/2022,22:45,STATEN ISLAND,10305,40.612724,-74.07142,"(40.612724, -74.07142)",TOMPKINS AVENUE,CLIFTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545423,Sedan,,,, +07/09/2022,6:20,MANHATTAN,10027,40.80949,-73.96411,"(40.80949, -73.96411)",,,26 CLAREMONT AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544928,Sedan,Sedan,,, +07/09/2022,1:45,,,40.8681,-73.90836,"(40.8681, -73.90836)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4544686,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/06/2022,15:39,QUEENS,11427,40.730377,-73.73745,"(40.730377, -73.73745)",,,230-39 88 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545460,Sedan,,,, +07/09/2022,3:48,BRONX,10469,40.87582,-73.85002,"(40.87582, -73.85002)",,,3419 BOSTON ROAD,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4544785,Taxi,Pick-up Truck,,, +07/09/2022,10:00,QUEENS,11368,40.760452,-73.84306,"(40.760452, -73.84306)",34 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545009,Sedan,Box Truck,,, +06/26/2022,15:07,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",WEST KINGSBRIDGE ROAD,BAILEY AVENUE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545355,Sedan,,,, +02/06/2022,16:03,,,40.63465,-73.93727,"(40.63465, -73.93727)",GLENWOOD ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500712,Sedan,,,, +07/09/2022,18:57,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4545035,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/09/2022,23:17,,,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545237,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,10:39,QUEENS,11368,40.755997,-73.8634,"(40.755997, -73.8634)",34 AVENUE,105 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4545363,Sedan,Sedan,,, +07/09/2022,13:12,BRONX,10473,40.81557,-73.85678,"(40.81557, -73.85678)",,,475 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544998,Sedan,Sedan,,, +07/09/2022,1:04,BROOKLYN,11212,,,,,,369 EAST 98 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544871,Sedan,Sedan,,, +07/06/2022,13:56,MANHATTAN,10065,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,1 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4545437,E-Scooter,Van,,, +07/09/2022,13:30,,,40.725582,-73.989876,"(40.725582, -73.989876)",EAST 3 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545468,Sedan,Sedan,,, +07/08/2022,0:00,MANHATTAN,10012,40.726933,-73.99992,"(40.726933, -73.99992)",LAGUARDIA PLACE,WEST HOUSTON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545255,Sedan,Sedan,,, +06/19/2022,20:11,BRONX,10454,40.811977,-73.92,"(40.811977, -73.92)",,,380 EAST 143 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4545338,Taxi,,,, +07/09/2022,8:07,STATEN ISLAND,10304,40.610344,-74.07945,"(40.610344, -74.07945)",,,135 MOSEL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4545060,Sedan,Sedan,,, +07/09/2022,17:20,BRONX,10457,40.8385,-73.90598,"(40.8385, -73.90598)",EAST 171 STREET,WEBSTER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4545209,Sedan,Sedan,,, +07/08/2022,7:00,,,40.756836,-73.83872,"(40.756836, -73.83872)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4545402,Dump,,,, +07/09/2022,9:55,,,40.576744,-73.98372,"(40.576744, -73.98372)",MERMAID AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4545228,Sedan,Bike,,, +07/09/2022,17:10,BROOKLYN,11231,40.678837,-73.9958,"(40.678837, -73.9958)",SMITH STREET,3 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545417,E-Bike,Sedan,,, +07/09/2022,0:20,,,40.698036,-73.962845,"(40.698036, -73.962845)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544669,Sedan,,,, +06/29/2022,9:04,MANHATTAN,10035,40.80114,-73.93769,"(40.80114, -73.93769)",3 AVENUE,EAST 121 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545508,Station Wagon/Sport Utility Vehicle,,,, +07/04/2022,16:47,MANHATTAN,10028,40.77818,-73.95655,"(40.77818, -73.95655)",LEXINGTON AVENUE,EAST 84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545440,Sedan,Fire truck,,, +07/09/2022,13:20,QUEENS,11105,40.776577,-73.908134,"(40.776577, -73.908134)",,,21-27 33 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544959,Sedan,,,, +07/03/2022,15:42,MANHATTAN,10002,40.71484,-73.99694,"(40.71484, -73.99694)",,,21 BOWERY,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545276,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,4:30,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544776,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,15:00,,,,,,JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4545266,Sedan,Sedan,Sedan,, +07/08/2022,8:05,BROOKLYN,11222,40.728767,-73.945015,"(40.728767, -73.945015)",,,240 RUSSELL STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545479,Box Truck,Sedan,,, +07/08/2022,9:40,,,40.85228,-73.87159,"(40.85228, -73.87159)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,19:00,BROOKLYN,11212,40.668995,-73.91058,"(40.668995, -73.91058)",,,452 ROCKAWAY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545065,Sedan,Sedan,,, +07/09/2022,3:00,QUEENS,11377,40.74467,-73.8951,"(40.74467, -73.8951)",41 AVENUE,70 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4545140,Sedan,Sedan,,, +07/08/2022,21:00,MANHATTAN,10032,40.84181,-73.93579,"(40.84181, -73.93579)",,,501 WEST 171 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545328,Sedan,,,, +04/18/2022,5:00,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520337,Tractor Truck Gasoline,Tractor Truck Gasoline,,, +11/15/2021,22:47,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478013,Tractor Truck Diesel,,,, +02/06/2022,20:45,QUEENS,11411,40.69759,-73.73176,"(40.69759, -73.73176)",,,115-25 227 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500828,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,9:20,MANHATTAN,10035,40.806915,-73.93557,"(40.806915, -73.93557)",EAST 129 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545244,Sedan,Sedan,,, +07/09/2022,20:30,,,40.69993,-73.96188,"(40.69993, -73.96188)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544808,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/09/2022,13:59,BROOKLYN,11231,40.674114,-73.998085,"(40.674114, -73.998085)",GARNET STREET,SMITH STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544847,Pick-up Truck,,,, +07/09/2022,10:35,QUEENS,11426,40.727154,-73.730705,"(40.727154, -73.730705)",,,237-15 BRADDOCK AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4544728,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,2:24,MANHATTAN,10014,40.732353,-74.00353,"(40.732353, -74.00353)",7 AVENUE SOUTH,BARROW STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4545249,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/09/2022,15:57,BRONX,10472,40.828094,-73.84704,"(40.828094, -73.84704)",,,1003 HAVEMEYER AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4545005,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/06/2022,11:19,MANHATTAN,10018,40.75892,-73.999695,"(40.75892, -73.999695)",WEST 39 STREET,11 AVENUE,,2,0,0,0,0,0,2,0,Accelerator Defective,Unspecified,,,,4545503,Flat Bed,Bus,,, +07/09/2022,4:30,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544810,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,19:45,BRONX,10469,40.865547,-73.86157,"(40.865547, -73.86157)",ALLERTON AVENUE,BRONXWOOD AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4544879,COM,Sedan,,, +07/02/2022,18:24,QUEENS,11419,40.68804,-73.83275,"(40.68804, -73.83275)",111 STREET,101 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545340,E-Bike,,,, +07/06/2022,14:17,BROOKLYN,11238,40.677296,-73.96901,"(40.677296, -73.96901)",,,632 VANDERBILT AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4545290,Sedan,,,, +07/09/2022,21:00,QUEENS,11357,40.78168,-73.82102,"(40.78168, -73.82102)",146 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545297,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/09/2022,11:00,BRONX,10457,40.84197,-73.90417,"(40.84197, -73.90417)",WEBSTER AVENUE,BELMONT STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,,,,4544725,Bike,Sedan,,, +07/09/2022,15:50,MANHATTAN,10021,40.7696,-73.95471,"(40.7696, -73.95471)",,,1437 1 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545179,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,4:09,BROOKLYN,11207,40.676598,-73.89038,"(40.676598, -73.89038)",ATLANTIC AVENUE,HENDRIX STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544770,Sedan,,,, +07/06/2022,23:25,,,40.73723,-74.000656,"(40.73723, -74.000656)",WEST 12 STREET,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4545254,Motorcycle,Ambulance,,, +07/09/2022,7:45,BROOKLYN,11224,40.574085,-73.97672,"(40.574085, -73.97672)",,,2951 WEST 8 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4544706,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,14:26,MANHATTAN,10032,40.84105,-73.94469,"(40.84105, -73.94469)",RIVERSIDE DRIVE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4544905,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/04/2022,16:14,BROOKLYN,11215,40.67096,-73.98822,"(40.67096, -73.98822)",4 AVENUE,8 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4545285,Station Wagon/Sport Utility Vehicle,Moped,,, +07/09/2022,2:00,MANHATTAN,10035,40.804848,-73.934555,"(40.804848, -73.934555)",,,200 EAST 127 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545242,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,11:15,,,40.630577,-73.88591,"(40.630577, -73.88591)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4544796,Sedan,Pick-up Truck,,, +07/08/2022,22:50,MANHATTAN,10009,40.725677,-73.98077,"(40.725677, -73.98077)",EAST 8 STREET,AVENUE B,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545467,Sedan,,,, +06/29/2022,18:45,STATEN ISLAND,10301,40.630936,-74.10261,"(40.630936, -74.10261)",FOREST AVENUE,SHARON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4545424,Sedan,Sedan,Sedan,, +07/09/2022,21:35,,,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545011,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,21:28,STATEN ISLAND,10309,40.547794,-74.2171,"(40.547794, -74.2171)",WINANT AVENUE,WIRT AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4544987,Sedan,Sedan,Sedan,, +07/04/2022,3:35,,,40.652515,-74.00941,"(40.652515, -74.00941)",GOWANUS EXPY (BQE),,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4545344,Sedan,Sedan,Sedan,, +07/08/2022,15:50,BRONX,10469,40.86601,-73.84622,"(40.86601, -73.84622)",,,2752 SEYMOUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545376,Box Truck,Sedan,,, +07/09/2022,19:11,BROOKLYN,11237,40.707336,-73.93219,"(40.707336, -73.93219)",,,101 MORGAN AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4545042,Sedan,School Bus,,, +07/09/2022,14:40,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,PRINCE STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4544791,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,1:00,QUEENS,11355,40.75224,-73.820854,"(40.75224, -73.820854)",45 AVENUE,KISSENA BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544755,Sedan,,,, +07/09/2022,4:55,BROOKLYN,11222,40.7196,-73.94391,"(40.7196, -73.94391)",HUMBOLDT STREET,HERBERT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545484,Ambulance,Box Truck,,, +07/05/2022,23:00,QUEENS,11416,40.689713,-73.840775,"(40.689713, -73.840775)",104 STREET,94 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545258,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,15:00,BROOKLYN,11213,40.671772,-73.93641,"(40.671772, -73.93641)",STERLING PLACE,TROY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4545306,Sedan,Sedan,,, +07/09/2022,18:42,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HOLLIS COURT BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Brakes Defective,,,,,4544826,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,22:30,QUEENS,11369,40.77042,-73.875465,"(40.77042, -73.875465)",,,95-01 DITMARS BOULEVARD,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4545080,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/05/2022,12:30,BROOKLYN,11230,40.631138,-73.963486,"(40.631138, -73.963486)",,,744 RUGBY ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545280,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,13:47,QUEENS,11413,40.666008,-73.789536,"(40.666008, -73.789536)",SOUTH CONDUIT AVENUE,150 STREET,,3,0,0,0,0,0,3,0,Unsafe Speed,,,,,4545234,Sedan,,,, +07/09/2022,3:39,BROOKLYN,11207,40.664154,-73.8949,"(40.664154, -73.8949)",,,513 SHEFFIELD AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4544738,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/09/2022,5:30,QUEENS,11362,40.751297,-73.73986,"(40.751297, -73.73986)",67 AVENUE,DOUGLASTON PARKWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4544688,Sedan,,,, +07/09/2022,11:15,STATEN ISLAND,10306,40.567627,-74.11262,"(40.567627, -74.11262)",HYLAN BOULEVARD,BEACH AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4544925,Station Wagon/Sport Utility Vehicle,Bus,,, +07/09/2022,12:34,,,40.60891,-73.990204,"(40.60891, -73.990204)",76 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545095,Sedan,Sedan,,, +07/09/2022,14:20,,,40.741936,-73.97263,"(40.741936, -73.97263)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4544832,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/06/2022,11:15,,,40.838757,-73.882904,"(40.838757, -73.882904)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545429,Tractor Truck Diesel,,,, +07/09/2022,0:36,QUEENS,11411,40.69798,-73.73359,"(40.69798, -73.73359)",,,115-32 225 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545462,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,0:15,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4545353,Taxi,,,, +07/09/2022,13:58,,,40.753307,-73.90669,"(40.753307, -73.90669)",54 STREET,NORTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4544961,Station Wagon/Sport Utility Vehicle,,,, +07/05/2022,0:05,QUEENS,11369,40.758472,-73.86676,"(40.758472, -73.86676)",,,32-48 102 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545364,Sedan,,,, +07/08/2022,14:00,MANHATTAN,10010,40.742233,-73.9933,"(40.742233, -73.9933)",WEST 22 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545250,FDNY FIRE,Sedan,,, +07/09/2022,11:24,,,40.627678,-74.14925,"(40.627678, -74.14925)",,,27 RONALD AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544777,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,5:10,MANHATTAN,10013,40.719357,-74.001915,"(40.719357, -74.001915)",,,416 BROADWAY,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4545277,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,12:59,QUEENS,11372,40.74778,-73.88248,"(40.74778, -73.88248)",,,83-20 ROOSEVELT AVENUE,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Driver Inattention/Distraction,,,,4545502,Motorcycle,Sedan,,, +07/08/2022,18:35,,,40.802597,-73.94506,"(40.802597, -73.94506)",EAST 119 STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4545245,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,9:30,,,40.66045,-73.86719,"(40.66045, -73.86719)",FOUNTAIN AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4544768,,,,, +07/09/2022,12:08,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544811,Sedan,Sedan,,, +07/01/2022,13:15,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545311,Sedan,Station Wagon/Sport Utility Vehicle,,, +06/17/2022,23:59,,,40.66638,-73.9244,"(40.66638, -73.9244)",EAST NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4545299,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/09/2022,7:15,MANHATTAN,10016,40.750217,-73.979065,"(40.750217, -73.979065)",EAST 39 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544729,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,15:09,BRONX,10467,40.856323,-73.87244,"(40.856323, -73.87244)",BRONX RIVER PARKWAY,PELHAM PARKWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4545360,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,5:30,STATEN ISLAND,10305,40.619034,-74.068726,"(40.619034, -74.068726)",,,1 EDGEWATER PLAZA,0,0,0,0,0,0,0,0,Unspecified,,,,,4545434,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,11:33,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545449,Taxi,E-Scooter,,, +07/09/2022,0:20,BROOKLYN,11201,40.698246,-73.98055,"(40.698246, -73.98055)",NAVY STREET,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4544673,Sedan,Sedan,,, +07/09/2022,23:10,,,40.66706,-73.7392,"(40.66706, -73.7392)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Passing Too Closely,,,,4545174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,12:45,BROOKLYN,11223,40.59148,-73.98133,"(40.59148, -73.98133)",WEST 11 STREET,AVENUE W,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4545230,Sedan,Sedan,,, +07/09/2022,13:14,QUEENS,11105,40.776978,-73.90101,"(40.776978, -73.90101)",,,19-79 STEINWAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544958,Sedan,Sedan,,, +06/14/2022,8:50,MANHATTAN,10016,40.744778,-73.97589,"(40.744778, -73.97589)",EAST 34 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4545333,Bike,,,, +07/09/2022,16:42,BRONX,10460,40.835342,-73.86508,"(40.835342, -73.86508)",THIERIOT AVENUE,WOOD AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545004,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,12:12,,,40.57275,-73.997055,"(40.57275, -73.997055)",SURF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545210,Sedan,E-Scooter,,, +07/09/2022,2:15,BRONX,10474,40.81459,-73.891335,"(40.81459, -73.891335)",,,720 TIFFANY STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4544806,Station Wagon/Sport Utility Vehicle,moped,,, +01/08/2022,10:01,BRONX,10468,40.86558,-73.89888,"(40.86558, -73.89888)",WEST 192 STREET,JEROME AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4493415,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/10/2022,13:05,BROOKLYN,11222,40.727753,-73.95725,"(40.727753, -73.95725)",FRANKLIN STREET,OAK STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4493484,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,14:20,QUEENS,11691,40.609535,-73.75372,"(40.609535, -73.75372)",HASSOCK STREET,BEACH CHANNEL DRIVE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4501178,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,12:00,BROOKLYN,11212,40.664207,-73.913246,"(40.664207, -73.913246)",,,253 AMBOY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501157,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,20:00,QUEENS,11691,,,,,,29-33 OCEAN CREST BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501180,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,19:05,BRONX,10469,40.876816,-73.847015,"(40.876816, -73.847015)",,,3484 BOSTON ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501127,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,10:00,MANHATTAN,10031,40.83147,-73.94678,"(40.83147, -73.94678)",WEST 153 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501210,Sedan,,,, +01/26/2022,13:08,QUEENS,11373,40.747032,-73.87937,"(40.747032, -73.87937)",FORLEY STREET,BRITTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501202,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/03/2022,8:20,BRONX,10451,40.826397,-73.92116,"(40.826397, -73.92116)",EAST 161 STREET,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501224,Sedan,,,, +07/09/2022,10:16,,,40.721638,-74.011894,"(40.721638, -74.011894)",WEST STREET,,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4544723,Sedan,Sedan,Sedan,, +07/08/2022,1:20,QUEENS,11418,40.69518,-73.84456,"(40.69518, -73.84456)",,,102-21 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Pavement Defective,Unspecified,Unspecified,Unspecified,Unspecified,4545267,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +07/07/2022,17:12,BROOKLYN,11218,40.655186,-73.97475,"(40.655186, -73.97475)",,,230 SEELEY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545341,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,18:35,,,40.859985,-73.90409,"(40.859985, -73.90409)",NORTH STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500581,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,0:15,BROOKLYN,11249,40.712597,-73.967735,"(40.712597, -73.967735)",KENT AVENUE,SOUTH 5 STREET,,0,0,0,0,0,0,0,0,Steering Failure,,,,,4500475,Sedan,,,, +02/06/2022,9:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501043,Sedan,Taxi,,, +02/05/2022,16:03,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501012,Sedan,Sedan,,, +02/06/2022,0:55,,,40.604618,-74.02771,"(40.604618, -74.02771)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500126,Sedan,,,, +02/06/2022,14:00,QUEENS,11377,40.74013,-73.89976,"(40.74013, -73.89976)",65 PLACE,BROOKLYN QUEENS EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500450,Sedan,,,, +02/06/2022,16:00,BROOKLYN,11211,40.712463,-73.950745,"(40.712463, -73.950745)",,,89 AINSLIE STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500508,Sedan,,,, +01/31/2022,16:00,MANHATTAN,10029,40.795532,-73.935745,"(40.795532, -73.935745)",,,2244 1 AVENUE,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4500975,Sedan,,,, +02/04/2022,14:35,,,0,0,"(0.0, 0.0)",MANOR ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501117,Sedan,,,, +02/06/2022,2:10,,,40.725792,-74.01103,"(40.725792, -74.01103)",WEST STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500169,Garbage or Refuse,,,, +02/06/2022,0:00,QUEENS,11421,40.692253,-73.86341,"(40.692253, -73.86341)",,,86-07 79 STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,Unspecified,,4500519,Sedan,Sedan,Sedan,Sedan, +02/04/2022,23:05,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501035,Sedan,,,, +02/04/2022,0:01,BROOKLYN,11203,40.663105,-73.93849,"(40.663105, -73.93849)",,,682 LEFFERTS AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,Unspecified,,4501092,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +01/31/2022,5:35,,,40.683098,-73.78432,"(40.683098, -73.78432)",LONG STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500935,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,5:45,,,,,,CROSS ISLAND PARKWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500187,Sedan,Sedan,,, +02/06/2022,14:34,,,40.686085,-73.982666,"(40.686085, -73.982666)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500373,Sedan,Sedan,,, +02/06/2022,0:09,BRONX,10467,40.88078,-73.88347,"(40.88078, -73.88347)",JEROME AVENUE,EAST 208 STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4500590,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,11:50,BROOKLYN,11208,40.67386,-73.88259,"(40.67386, -73.88259)",PITKIN AVENUE,LINWOOD STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500661,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,11:30,BRONX,10457,40.84497,-73.90247,"(40.84497, -73.90247)",WEBSTER AVENUE,ITTNER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500724,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,19:20,,,40.64664,-73.9246,"(40.64664, -73.9246)",KINGS HIGHWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500781,Sedan,,,, +02/06/2022,5:13,,,40.739193,-73.90128,"(40.739193, -73.90128)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500333,Sedan,,,, +02/06/2022,10:00,QUEENS,11412,40.688236,-73.76196,"(40.688236, -73.76196)",FARMERS BOULEVARD,119 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500279,Sedan,Sedan,,, +02/06/2022,2:10,BRONX,10457,40.853775,-73.897156,"(40.853775, -73.897156)",,,2164 WEBSTER AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4500323,Sedan,Sedan,,, +02/06/2022,0:04,QUEENS,11413,40.673634,-73.76384,"(40.673634, -73.76384)",FARMERS BOULEVARD,137 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500281,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,11:23,,,40.63158,-73.94755,"(40.63158, -73.94755)",AVENUE H,,,6,0,0,0,0,0,6,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4501057,Sedan,Station Wagon/Sport Utility Vehicle,Bus,, +02/06/2022,10:40,QUEENS,11373,40.73025,-73.88731,"(40.73025, -73.88731)",,,74-17 GRAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500363,Station Wagon/Sport Utility Vehicle,Convertible,,, +02/06/2022,6:26,BROOKLYN,11234,40.6082,-73.920715,"(40.6082, -73.920715)",FLATBUSH AVENUE,AVENUE V,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500203,Sedan,Sedan,,, +02/06/2022,15:20,MANHATTAN,10018,40.75587,-73.99822,"(40.75587, -73.99822)",10 AVENUE,WEST 36 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500778,Sedan,Sedan,,, +02/06/2022,14:37,BROOKLYN,11223,40.589066,-73.97091,"(40.589066, -73.97091)",,,2470 WEST 1 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500503,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,16:35,QUEENS,11411,40.68762,-73.72789,"(40.68762, -73.72789)",119 AVENUE,236 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500539,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,1:55,QUEENS,11691,40.600933,-73.750916,"(40.600933, -73.750916)",,,18-26 EVERDELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500892,Sedan,,,, +02/06/2022,6:15,BROOKLYN,11208,40.680305,-73.8835,"(40.680305, -73.8835)",,,3014 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500676,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,3:00,,,40.662743,-73.921936,"(40.662743, -73.921936)",ROCKAWAY PARKWAY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4500256,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,9:43,BROOKLYN,11221,40.69986,-73.92829,"(40.69986, -73.92829)",CENTRAL AVENUE,STARR STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500345,Box Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +02/06/2022,13:25,,,40.71421,-73.794205,"(40.71421, -73.794205)",170 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500459,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,4:21,BROOKLYN,11208,,,,CRESCENT STREET,ETNA STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4500660,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/06/2022,1:49,,,40.791405,-73.93569,"(40.791405, -73.93569)",FDR DRIVE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4501003,Sedan,Sedan,,, +02/06/2022,1:11,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4500375,Sedan,Sedan,,, +02/06/2022,13:40,QUEENS,11365,40.745914,-73.782036,"(40.745914, -73.782036)",196 STREET,56 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500436,Sedan,,,, +02/06/2022,9:00,QUEENS,11377,,,,65 STREET,WOODSIDE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501079,Sedan,,,, +02/06/2022,11:38,,,40.758373,-73.748886,"(40.758373, -73.748886)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500292,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,14:30,BRONX,10451,40.826004,-73.91168,"(40.826004, -73.91168)",,,979 BROOK AVENUE,0,0,0,0,0,0,0,0,,,,,,4500973,,,,, +02/06/2022,16:22,BRONX,10455,40.815598,-73.89695,"(40.815598, -73.89695)",,,776 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500698,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/06/2022,11:13,BRONX,10453,40.857456,-73.90231,"(40.857456, -73.90231)",,,2264 MORRIS AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500734,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/05/2021,16:35,BROOKLYN,11203,40.65619,-73.930855,"(40.65619, -73.930855)",,,701 UTICA AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Passing or Lane Usage Improper,,,,4474087,Station Wagon/Sport Utility Vehicle,moped,,, +11/02/2021,23:00,BRONX,10458,40.867424,-73.89182,"(40.867424, -73.89182)",EAST 196 STREET,VALENTINE AVENUE,,1,0,1,0,0,0,0,0,,,,,,4474442,,,,, +11/08/2021,7:50,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4475276,Sedan,Sedan,,, +11/15/2021,18:11,QUEENS,11385,40.711903,-73.90019,"(40.711903, -73.90019)",FRESH POND ROAD,BLEECKER STREET,,0,0,0,0,0,0,0,0,Lost Consciousness,View Obstructed/Limited,,,,4477715,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,16:55,BROOKLYN,11213,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,TROY AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4478386,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/15/2021,15:04,BROOKLYN,11210,40.636707,-73.95,"(40.636707, -73.95)",,,586 EAST 28 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4477815,Station Wagon/Sport Utility Vehicle,Bike,,, +11/15/2021,19:50,,,40.794052,-73.970375,"(40.794052, -73.970375)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477753,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,7:00,BRONX,10475,40.888985,-73.821846,"(40.888985, -73.821846)",,,4260 BOSTON ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478353,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,13:15,BROOKLYN,11215,40.67201,-73.99219,"(40.67201, -73.99219)",,,160 9 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478135,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,22:40,,,40.667282,-73.89856,"(40.667282, -73.89856)",WILLIAMS AVENUE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4478045,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,1:20,QUEENS,11411,40.690407,-73.73047,"(40.690407, -73.73047)",118 AVENUE,232 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477270,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,9:56,BROOKLYN,11205,,,,CLINTON AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477739,Sedan,Sedan,,, +11/15/2021,20:31,BRONX,10461,40.843464,-73.83683,"(40.843464, -73.83683)",MIDDLETOWN ROAD,HUTCHINSON RIVER PARKWAY EAST,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478327,Sedan,Bike,,, +11/15/2021,15:20,BROOKLYN,11203,40.653805,-73.93061,"(40.653805, -73.93061)",UTICA AVENUE,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478363,Chassis Cab,Motorcycle,,, +11/15/2021,15:50,BRONX,10456,40.83623,-73.90741,"(40.83623, -73.90741)",WEBSTER AVENUE,EAST 170 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477874,Motorbike,,,, +11/15/2021,23:30,MANHATTAN,10021,40.765343,-73.954865,"(40.765343, -73.954865)",,,1305 YORK AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4477771,Taxi,Taxi,,, +11/15/2021,21:00,,,40.69098,-73.74878,"(40.69098, -73.74878)",120 AVENUE,201 PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477978,Sedan,Sedan,,, +11/15/2021,18:10,,,40.71058,-73.9835,"(40.71058, -73.9835)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4478232,Motorcycle,,,, +10/30/2021,15:00,QUEENS,11419,40.69213,-73.82805,"(40.69213, -73.82805)",118 STREET,95 AVENUE,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478292,Sedan,Bike,,, +11/15/2021,2:24,,,40.788956,-73.823555,"(40.788956, -73.823555)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4477388,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,8:47,BRONX,10454,40.800343,-73.9142,"(40.800343, -73.9142)",WILLOW AVENUE,EAST 132 STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4477778,Chassis Cab,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,17:50,,,40.833088,-73.91904,"(40.833088, -73.91904)",MCCLELLAN STREET,,,2,0,1,0,0,0,1,0,Driver Inattention/Distraction,,,,,4478128,Sedan,,,, +11/10/2021,18:20,BROOKLYN,11222,40.72998,-73.954155,"(40.72998, -73.954155)",,,892 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478476,Sedan,Bike,,, +11/10/2021,15:48,QUEENS,11415,40.713913,-73.83009,"(40.713913, -73.83009)",80 ROAD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4478222,Sedan,Sedan,,, +11/15/2021,14:47,MANHATTAN,10034,40.86131,-73.92124,"(40.86131, -73.92124)",10 AVENUE,WEST 202 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477949,Moped,Sedan,,, +11/15/2021,7:28,MANHATTAN,10001,40.751755,-74.00606,"(40.751755, -74.00606)",,,628 WEST 27 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477550,Flat Bed,Sedan,,, +11/15/2021,14:35,QUEENS,11432,40.70854,-73.78001,"(40.70854, -73.78001)",,,180-11 JAMAICA AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477695,Sedan,Sedan,,, +11/15/2021,17:50,BROOKLYN,11226,40.64242,-73.961754,"(40.64242, -73.961754)",CORTELYOU ROAD,EAST 18 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4477824,Station Wagon/Sport Utility Vehicle,Bus,,, +11/12/2021,7:15,QUEENS,11385,40.71183,-73.9068,"(40.71183, -73.9068)",,,2228 HARMAN STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4478337,Box Truck,,,, +11/15/2021,23:10,MANHATTAN,10036,40.757847,-73.985016,"(40.757847, -73.985016)",,,1540 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4477841,Sedan,,,, +11/15/2021,7:37,BRONX,10456,40.822712,-73.903145,"(40.822712, -73.903145)",EAST 163 STREET,TINTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477880,Sedan,Sedan,,, +11/15/2021,13:30,QUEENS,11354,40.771854,-73.83179,"(40.771854, -73.83179)",WHITESTONE EXPRESSWAY,29 ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477901,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,16:35,BRONX,10461,40.85278,-73.853294,"(40.85278, -73.853294)",,,1916 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477658,Sedan,,,, +11/15/2021,7:48,QUEENS,11411,40.701084,-73.73633,"(40.701084, -73.73633)",114 ROAD,221 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477602,Sedan,Sedan,,, +11/09/2021,0:35,,,40.54222,-74.18458,"(40.54222, -74.18458)",KOREAN WAR VETS PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478252,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,14:00,,,,,,VANDAM STREET,BORDEN AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478274,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,8:20,QUEENS,11694,40.58062,-73.84072,"(40.58062, -73.84072)",NEWPORT AVENUE,BEACH 119 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478307,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,11:20,,,40.61913,-73.99019,"(40.61913, -73.99019)",18 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477642,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,8:00,QUEENS,11413,40.676117,-73.74046,"(40.676117, -73.74046)",MERRICK BOULEVARD,230 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477603,Station Wagon/Sport Utility Vehicle,,,, +10/27/2021,10:00,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478181,Tractor Truck Diesel,Sedan,,, +11/15/2021,17:27,BRONX,10469,40.861458,-73.8576,"(40.861458, -73.8576)",,,2416 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477686,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,8:44,BROOKLYN,11230,40.6294,-73.974525,"(40.6294, -73.974525)",SETON PLACE,PARKVILLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477575,Station Wagon/Sport Utility Vehicle,Bus,,, +11/15/2021,16:50,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477900,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,12:00,BROOKLYN,11236,40.647182,-73.90748,"(40.647182, -73.90748)",EAST 95 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478420,Sedan,,,, +11/15/2021,20:04,QUEENS,11106,40.75721,-73.93112,"(40.75721, -73.93112)",,,29-22 36 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477763,Taxi,Sedan,,, +11/15/2021,17:10,MANHATTAN,10003,40.73012,-73.98947,"(40.73012, -73.98947)",3 AVENUE,EAST 9 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4477786,Bike,Sedan,,, +11/15/2021,20:20,,,,,,BRONX RIVER PARKWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,Following Too Closely,,,4478342,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/11/2021,12:20,BROOKLYN,11203,40.642075,-73.93013,"(40.642075, -73.93013)",,,4912 AVENUE D,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478372,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,21:32,QUEENS,11369,40.761795,-73.87798,"(40.761795, -73.87798)",91 STREET,30 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477941,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,15:55,,,40.69889,-73.91753,"(40.69889, -73.91753)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477846,Sedan,Sedan,,, +11/15/2021,20:54,QUEENS,11373,40.734554,-73.87288,"(40.734554, -73.87288)",,,89-03 57 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477911,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,10:53,MANHATTAN,10037,40.81467,-73.93622,"(40.81467, -73.93622)",EAST 138 STREET,5 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477596,Sedan,,,, +11/15/2021,12:30,BROOKLYN,11212,40.672615,-73.90565,"(40.672615, -73.90565)",,,219 SACKMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477667,Sedan,Sedan,,, +11/15/2021,8:15,QUEENS,11417,40.67472,-73.85839,"(40.67472, -73.85839)",78 STREET,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,10:33,BROOKLYN,11212,40.666737,-73.90224,"(40.666737, -73.90224)",BLAKE AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478245,Sedan,,,, +11/10/2021,7:07,QUEENS,11433,40.69406,-73.78732,"(40.69406, -73.78732)",110 AVENUE,164 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478314,Sedan,Motorcycle,,, +11/15/2021,1:30,,,40.697315,-73.932274,"(40.697315, -73.932274)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477840,Station Wagon/Sport Utility Vehicle,FDNY,,, +11/15/2021,7:39,,,40.679203,-73.9553,"(40.679203, -73.9553)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478015,Box Truck,Sedan,,, +11/15/2021,21:20,BROOKLYN,11236,40.652313,-73.908226,"(40.652313, -73.908226)",DITMAS AVENUE,BRISTOL STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478253,Sedan,Sedan,,, +11/15/2021,0:00,BROOKLYN,11220,40.647346,-74.007996,"(40.647346, -74.007996)",5 AVENUE,46 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477697,Sedan,Bike,,, +11/14/2021,4:10,,,40.86446,-73.91895,"(40.86446, -73.91895)",WEST 207 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478302,Sedan,Sedan,,, +11/15/2021,16:52,,,40.57333,-74.117836,"(40.57333, -74.117836)",NEW DORP PLAZA NORTH,ROSE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477726,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,17:40,QUEENS,11377,40.74566,-73.896194,"(40.74566, -73.896194)",,,40-33 69 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478188,Taxi,Sedan,,, +11/15/2021,8:00,,,40.674934,-73.80186,"(40.674934, -73.80186)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477611,Sedan,Sedan,,, +11/15/2021,6:00,QUEENS,11412,40.688953,-73.75985,"(40.688953, -73.75985)",119 AVENUE,190 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4477976,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/15/2021,14:45,BROOKLYN,11207,40.66322,-73.893654,"(40.66322, -73.893654)",RIVERDALE AVENUE,PENNSYLVANIA AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,Unspecified,,,4477864,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/15/2021,23:15,,,40.72634,-73.76508,"(40.72634, -73.76508)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4477892,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,1:05,,,40.83391,-73.82709,"(40.83391, -73.82709)",BRUCKNER BOULEVARD,EDISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478308,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,14:30,BROOKLYN,11230,40.615536,-73.970245,"(40.615536, -73.970245)",,,1446 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478451,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,17:10,,,40.750988,-73.99063,"(40.750988, -73.99063)",7 AVENUE,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Passing Too Closely,,,,4477962,Van,Sedan,,, +11/15/2021,16:55,,,,,,HARLEM RIVER DRIVEWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4478170,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,21:20,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477758,Sedan,Sedan,,, +11/15/2021,18:52,MANHATTAN,10016,40.744442,-73.979065,"(40.744442, -73.979065)",3 AVENUE,EAST 32 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4478062,Sedan,Sedan,,, +11/15/2021,10:35,BRONX,10455,40.82082,-73.91562,"(40.82082, -73.91562)",EAST 156 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477779,Sedan,Sedan,,, +11/11/2021,16:00,BRONX,10475,40.88379,-73.83348,"(40.88379, -73.83348)",,,3475 BIVONA STREET,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4478356,Sedan,,,, +11/15/2021,21:38,MANHATTAN,10016,40.745277,-73.977104,"(40.745277, -73.977104)",,,222 EAST 34 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477735,Sedan,,,, +11/06/2021,5:00,BROOKLYN,11203,40.65251,-73.92157,"(40.65251, -73.92157)",,,5911 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478368,Sedan,,,, +11/15/2021,20:30,,,40.60097,-73.98762,"(40.60097, -73.98762)",24 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477834,Sedan,Sedan,,, +11/02/2021,2:05,,,40.826427,-73.950455,"(40.826427, -73.950455)",BROADWAY,,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4478236,,,,, +11/15/2021,16:50,QUEENS,11429,40.715015,-73.741646,"(40.715015, -73.741646)",HEMPSTEAD AVENUE,217 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4477701,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +11/15/2021,23:00,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,Unspecified,,,4477994,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/15/2021,7:10,,,40.61023,-74.10529,"(40.61023, -74.10529)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478260,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,8:35,,,40.791557,-73.93866,"(40.791557, -73.93866)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477794,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,13:09,QUEENS,11420,40.676872,-73.81958,"(40.676872, -73.81958)",,,115-01 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4477740,Box Truck,Sedan,,, +11/15/2021,17:55,,,40.735504,-74.00838,"(40.735504, -74.00838)",WEST 11 STREET,,,4,0,0,0,0,0,4,0,Illnes,Unspecified,Unspecified,Unspecified,Unspecified,4477799,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle +11/15/2021,13:27,,,40.77077,-73.91727,"(40.77077, -73.91727)",31 STREET,HOYT AVENUE NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477773,Sedan,,,, +11/15/2021,6:45,,,40.843002,-73.90359,"(40.843002, -73.90359)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4478111,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/15/2021,0:11,BROOKLYN,11207,40.679337,-73.89483,"(40.679337, -73.89483)",JAMAICA AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477309,Sedan,,,, +10/27/2021,8:20,QUEENS,11436,40.66934,-73.79863,"(40.66934, -73.79863)",133 AVENUE,140 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478216,Sedan,,,, +11/15/2021,1:00,,,40.866314,-73.9186,"(40.866314, -73.9186)",SHERMAN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4478297,Taxi,Sedan,,, +11/15/2021,21:09,,,40.74947,-73.7564,"(40.74947, -73.7564)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477721,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:15,BROOKLYN,11219,40.629963,-74.00039,"(40.629963, -74.00039)",,,1203 60 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477953,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,18:41,MANHATTAN,10040,40.86159,-73.92475,"(40.86159, -73.92475)",DYCKMAN STREET,NAGLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478291,Sedan,,,, +11/13/2021,17:30,,,40.611095,-74.11467,"(40.611095, -74.11467)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4478257,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,7:00,,,40.717964,-73.900055,"(40.717964, -73.900055)",60 AVENUE,MOUNT OLIVET CRESCENT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478042,Sedan,,,, +11/15/2021,1:45,MANHATTAN,10065,40.766193,-73.96205,"(40.766193, -73.96205)",,,235 EAST 67 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477449,Sedan,,,, +11/15/2021,19:24,BROOKLYN,11217,40.67947,-73.98469,"(40.67947, -73.98469)",,,214 3 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478134,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,11:45,QUEENS,11427,40.72416,-73.754974,"(40.72416, -73.754974)",HILLSIDE AVENUE,HOLLIS COURT BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4477700,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,18:45,MANHATTAN,10001,40.748917,-73.993546,"(40.748917, -73.993546)",,,232 WEST 30 STREET,1,0,0,0,1,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4478480,Bike,Sedan,,, +11/15/2021,8:24,MANHATTAN,10022,40.761234,-73.96389,"(40.761234, -73.96389)",EAST 60 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477774,Station Wagon/Sport Utility Vehicle,Bus,,, +11/12/2021,15:00,,,40.782887,-73.9439,"(40.782887, -73.9439)",EAST 96 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Pavement Slippery,Following Too Closely,,,,4478224,Sedan,Sedan,,, +11/15/2021,18:30,QUEENS,11427,40.72992,-73.74243,"(40.72992, -73.74243)",BRADDOCK AVENUE,89 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477736,Sedan,Sedan,,, +11/15/2021,7:38,,,40.86177,-73.91848,"(40.86177, -73.91848)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477948,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,5:50,,,40.796738,-73.92925,"(40.796738, -73.92925)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478482,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,10:40,,,40.821636,-73.93909,"(40.821636, -73.93909)",7 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4477989,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,7:10,,,40.6771,-73.92479,"(40.6771, -73.92479)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,Unspecified,,,4478388,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/15/2021,7:00,,,40.672844,-73.88943,"(40.672844, -73.88943)",PITKIN AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477754,Bus,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,23:14,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4478328,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,16:45,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478278,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,18:08,STATEN ISLAND,10314,40.613224,-74.12067,"(40.613224, -74.12067)",VICTORY BOULEVARD,SOMMERS LANE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478184,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,23:45,BRONX,10470,40.90184,-73.85702,"(40.90184, -73.85702)",BULLARD AVENUE,EAST 239 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478357,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,3:15,,,40.716114,-73.824905,"(40.716114, -73.824905)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4477609,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,13:30,,,40.678154,-73.94416,"(40.678154, -73.94416)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4477644,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,12:05,,,40.733334,-73.98319,"(40.733334, -73.98319)",EAST 16 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477856,Ambulance,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,11:00,,,40.773655,-73.97783,"(40.773655, -73.97783)",WEST 68 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478268,Sedan,,,, +11/15/2021,14:28,,,40.728092,-73.814445,"(40.728092, -73.814445)",72 ROAD,KISSENA BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4477716,Sedan,Sedan,,, +11/15/2021,12:59,BROOKLYN,11234,40.60928,-73.91269,"(40.60928, -73.91269)",,,2237 EAST 57 PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477930,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:10,MANHATTAN,10007,40.713657,-74.00152,"(40.713657, -74.00152)",,,500 PEARL STREET,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4478231,Sedan,Van,,, +11/15/2021,9:22,,,40.85713,-73.8808,"(40.85713, -73.8808)",EAST FORDHAM ROAD,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4477597,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,8:33,MANHATTAN,10036,40.760082,-73.994446,"(40.760082, -73.994446)",,,435 WEST 43 STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4477806,Box Truck,,,, +11/15/2021,15:30,BROOKLYN,11208,40.67239,-73.87463,"(40.67239, -73.87463)",SUTTER AVENUE,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477866,Pick-up Truck,Bus,,, +11/15/2021,10:57,BROOKLYN,11210,40.630165,-73.94156,"(40.630165, -73.94156)",,,1761 BROOKLYN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477625,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,22:23,,,40.66605,-73.81525,"(40.66605, -73.81525)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4477743,Sedan,,,, +11/15/2021,18:30,,,40.71762,-74.00028,"(40.71762, -74.00028)",WALKER STREET,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478016,Sedan,Bike,,, +11/15/2021,17:45,BROOKLYN,11204,40.62731,-73.98539,"(40.62731, -73.98539)",17 AVENUE,53 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478168,Sedan,HOVERBOARD,,, +11/15/2021,23:55,QUEENS,11368,40.742096,-73.86748,"(40.742096, -73.86748)",CORONA AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4477943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,4:18,BROOKLYN,11203,40.64196,-73.932,"(40.64196, -73.932)",,,4718 AVENUE D,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478376,Sedan,Sedan,,, +11/15/2021,17:37,BROOKLYN,11234,40.62625,-73.920876,"(40.62625, -73.920876)",AVENUE K,EAST 57 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477709,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,20:25,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4477749,Sedan,Sedan,,, +11/15/2021,16:50,BRONX,10465,,,,,,3125 CONNELL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478323,Sedan,,,, +11/15/2021,11:34,BRONX,10464,40.873222,-73.80849,"(40.873222, -73.80849)",,,870 SHORE ROAD,2,0,0,0,0,0,2,0,Turning Improperly,Passing or Lane Usage Improper,,,,4478313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,15:50,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4478248,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,6:50,,,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4478003,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/06/2021,14:29,,,40.869076,-73.93062,"(40.869076, -73.93062)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478303,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,11:35,,,40.68949,-73.92207,"(40.68949, -73.92207)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477845,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,6:30,BROOKLYN,11214,40.606304,-74.00488,"(40.606304, -74.00488)",,,82 BAY 17 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477535,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,10:35,QUEENS,11368,40.734863,-73.862656,"(40.734863, -73.862656)",,,96-05 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4477910,Sedan,,,, +11/15/2021,17:05,,,40.677715,-73.93587,"(40.677715, -73.93587)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4477689,Sedan,,,, +11/14/2021,12:00,BROOKLYN,11236,40.65329,-73.91919,"(40.65329, -73.91919)",EAST 91 STREET,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478371,Sedan,,,, +11/15/2021,11:50,BROOKLYN,11249,40.7179,-73.95931,"(40.7179, -73.95931)",,,111 NORTH 6 STREET,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477871,Van,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/15/2021,23:00,MANHATTAN,10026,40.802296,-73.95691,"(40.802296, -73.95691)",,,2084 8 AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477820,Taxi,Taxi,,, +11/15/2021,18:15,BROOKLYN,11229,40.600883,-73.95869,"(40.600883, -73.95869)",EAST 13 STREET,AVENUE T,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477761,Sedan,E-Bike,,, +11/15/2021,17:35,,,,,,HUTCHINSON RIVER PARKWAY,LAFAYETTE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478322,Sedan,,,, +11/07/2021,3:55,QUEENS,11435,40.716145,-73.82281,"(40.716145, -73.82281)",,,135-46 GRAND CENTRAL PARKWAY,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478180,Sedan,Sedan,,, +11/15/2021,9:40,BROOKLYN,11230,40.61447,-73.97004,"(40.61447, -73.97004)",AVENUE N,EAST 5 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477785,Sedan,,,, +11/15/2021,0:20,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478004,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/06/2021,14:00,QUEENS,11385,40.713333,-73.91305,"(40.713333, -73.91305)",GRANDVIEW AVENUE,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478336,Bus,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,16:00,,,40.79286,-73.96754,"(40.79286, -73.96754)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,12:30,QUEENS,11372,40.753925,-73.88319,"(40.753925, -73.88319)",34 AVENUE,84 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477933,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,14:00,,,40.697838,-73.960075,"(40.697838, -73.960075)",KENT AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477966,Sedan,,,, +11/15/2021,3:30,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4477747,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,8:45,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",34 STREET,QUEENS BOULEVARD,,4,0,0,0,0,0,4,0,Illnes,Unspecified,Unspecified,,,4477879,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/15/2021,3:00,MANHATTAN,10001,40.746082,-73.99636,"(40.746082, -73.99636)",,,261 WEST 25 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477564,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,10:45,MANHATTAN,10029,40.79473,-73.93945,"(40.79473, -73.93945)",,,2185 2 AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4477791,Bus,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,14:00,BROOKLYN,11223,40.59387,-73.9818,"(40.59387, -73.9818)",AVENUE V,WEST 11 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477651,Station Wagon/Sport Utility Vehicle,Bike,,, +10/04/2021,6:40,,,40.7795,-73.981636,"(40.7795, -73.981636)",WEST 73 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478404,Sedan,Box Truck,,, +11/15/2021,12:35,MANHATTAN,10007,40.716465,-74.013084,"(40.716465, -74.013084)",WARREN STREET,WEST STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4477801,E-Scooter,Sedan,,, +11/15/2021,17:05,,,40.761204,-73.75539,"(40.761204, -73.75539)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4477720,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/15/2021,15:30,,,40.59039,-73.99155,"(40.59039, -73.99155)",26 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477790,Sedan,Sedan,,, +10/27/2021,15:25,MANHATTAN,10023,40.778606,-73.98163,"(40.778606, -73.98163)",WEST 72 STREET,AMSTERDAM AVENUE,,1,0,1,0,0,0,0,0,,,,,,4478341,,,,, +11/15/2021,20:55,MANHATTAN,10022,40.755756,-73.96479,"(40.755756, -73.96479)",EAST 53 STREET,1 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,,,,4478061,PK,Garbage or Refuse,,, +11/15/2021,7:55,BROOKLYN,11223,40.596817,-73.97326,"(40.596817, -73.97326)",,,2275 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477757,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,22:37,BRONX,10456,40.83091,-73.92047,"(40.83091, -73.92047)",GRAND CONCOURSE,EAST 165 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4478118,Sedan,Sedan,,, +11/15/2021,1:00,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477311,Sedan,,,, +10/04/2021,20:29,QUEENS,11413,40.682987,-73.75459,"(40.682987, -73.75459)",LUCAS STREET,WILLIAMSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478217,Sedan,Sedan,,, +11/04/2021,4:55,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",LINDEN BOULEVARD,CHURCH AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478375,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:49,BROOKLYN,11219,40.635387,-74.00478,"(40.635387, -74.00478)",,,931 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477952,Bus,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,19:07,MANHATTAN,10034,40.864113,-73.92126,"(40.864113, -73.92126)",WEST 204 STREET,POST AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4478295,,,,, +11/12/2021,12:10,,,40.76889,-73.9821,"(40.76889, -73.9821)",BROADWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478269,Sedan,,,, +11/15/2021,19:00,,,40.644,-73.87584,"(40.644, -73.87584)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4477867,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/15/2021,11:45,,,40.72802,-73.86368,"(40.72802, -73.86368)",63 DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477624,Sedan,Tractor Truck Diesel,,, +11/15/2021,8:06,MANHATTAN,10016,40.746017,-73.97104,"(40.746017, -73.97104)",,,410 EAST 38 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477631,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,13:45,MANHATTAN,10036,40.759197,-73.98463,"(40.759197, -73.98463)",WEST 47 STREET,7 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,,,,,4477835,Bike,,,, +11/15/2020,15:55,,,40.69749,-73.92008,"(40.69749, -73.92008)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478210,Sedan,,,, +11/15/2021,13:30,BRONX,10466,40.894314,-73.86027,"(40.894314, -73.86027)",EAST 233 STREET,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477665,Sedan,Sedan,,, +11/15/2021,7:25,BROOKLYN,11208,40.68992,-73.87261,"(40.68992, -73.87261)",JAMAICA AVENUE,HEMLOCK STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477860,Sedan,Sedan,,, +11/14/2021,17:45,MANHATTAN,10031,40.82943,-73.94196,"(40.82943, -73.94196)",SAINT NICHOLAS AVENUE,WEST 153 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478235,Sedan,,,, +11/15/2021,17:12,MANHATTAN,10022,40.761887,-73.96843,"(40.761887, -73.96843)",,,731 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477708,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,0:00,,,40.570835,-74.16983,"(40.570835, -74.16983)",RICHMOND AVENUE,FOREST HILL ROAD,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4477893,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/07/2021,7:00,MANHATTAN,10023,40.771053,-73.98715,"(40.771053, -73.98715)",WEST 60 STREET,AMSTERDAM AVENUE,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4478267,Sedan,Sedan,Sedan,Sedan, +11/15/2021,0:55,,,40.6246,-74.13659,"(40.6246, -74.13659)",,,1440 FOREST AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4477590,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,15:00,MANHATTAN,10036,40.759727,-73.99169,"(40.759727, -73.99169)",WEST 44 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4477836,Sedan,,,, +11/14/2021,15:05,MANHATTAN,10028,40.77613,-73.95758,"(40.77613, -73.95758)",,,147 EAST 81 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478447,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:50,,,40.7467,-73.93128,"(40.7467, -73.93128)",33 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477882,Box Truck,Box Truck,,, +11/15/2021,15:30,QUEENS,11373,40.73526,-73.88399,"(40.73526, -73.88399)",,,51-66 MANILLA STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477921,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,7:00,QUEENS,11429,40.707092,-73.73911,"(40.707092, -73.73911)",,,110-54 SPRINGFIELD BOULEVARD,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4477599,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,11:18,QUEENS,11379,40.71439,-73.90111,"(40.71439, -73.90111)",,,61-20 FRESH POND ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477660,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,10:28,BROOKLYN,11233,40.680676,-73.91404,"(40.680676, -73.91404)",BOYLAND STREET,SUMPTER STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,,,,4478249,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,1:10,,,40.61423,-74.15608,"(40.61423, -74.15608)",MARTIN LUTHER KING JR,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4478256,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,14:46,,,40.667313,-73.73926,"(40.667313, -73.73926)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477699,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,21:00,MANHATTAN,10065,40.765697,-73.9667,"(40.765697, -73.9667)",,,121 EAST 64 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477776,Sedan,,,, +11/15/2021,17:45,BROOKLYN,11212,40.65531,-73.90318,"(40.65531, -73.90318)",LINDEN BOULEVARD,STONE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4478242,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,18:10,MANHATTAN,10033,40.844788,-73.93705,"(40.844788, -73.93705)",SAINT NICHOLAS AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/13/2021,13:30,STATEN ISLAND,10301,,,,RICHMOND TERRACE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478183,Sedan,Sedan,,, +11/15/2021,8:00,QUEENS,11415,40.702484,-73.83199,"(40.702484, -73.83199)",,,85-11 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477608,Sedan,,,, +11/15/2021,17:00,QUEENS,11432,40.712284,-73.78536,"(40.712284, -73.78536)",178 STREET,HILLSIDE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477717,Sedan,,,, +11/15/2021,8:23,BRONX,10467,40.883133,-73.882095,"(40.883133, -73.882095)",WEST GUN HILL ROAD,KNOX PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477561,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/14/2021,8:56,BROOKLYN,11220,,,,3 AVENUE,58 STREET,,0,1,0,1,0,0,0,0,Failure to Yield Right-of-Way,,,,,4467112,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,7:30,QUEENS,11432,40.70715,-73.79299,"(40.70715, -73.79299)",91 AVENUE,168 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477693,Station Wagon/Sport Utility Vehicle,Bus,,, +11/13/2021,16:00,MANHATTAN,10034,40.864895,-73.91913,"(40.864895, -73.91913)",,,148 POST AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478298,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,21:40,BROOKLYN,11210,40.628647,-73.95207,"(40.628647, -73.95207)",BEDFORD AVENUE,AVENUE I,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477826,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,17:47,BROOKLYN,11236,40.631935,-73.91321,"(40.631935, -73.91321)",PAERDEGAT 1 STREET,PAERDEGAT AVENUE NORTH,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4477679,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,13:37,BRONX,10462,40.835636,-73.84807,"(40.835636, -73.84807)",WESTCHESTER AVENUE,GLOVER STREET,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4478331,Sedan,fedex truc,,, +11/15/2021,6:00,,,40.743187,-73.97207,"(40.743187, -73.97207)",FDR DRIVE,EAST 34 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4478060,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/15/2021,14:15,BRONX,10467,40.879803,-73.878914,"(40.879803, -73.878914)",,,3400 BAINBRIDGE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477895,Sedan,Bus,,, +11/10/2021,12:30,BRONX,10475,40.883945,-73.82878,"(40.883945, -73.82878)",DELAVALL AVENUE,HOLLERS AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478358,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,22:28,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4477737,TRUCK,Station Wagon/Sport Utility Vehicle,Sedan,, +11/15/2021,15:00,,,40.598003,-73.99191,"(40.598003, -73.99191)",BAY 35 STREET,,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4477854,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,14:55,BRONX,10456,40.83369,-73.91386,"(40.83369, -73.91386)",EAST 168 STREET,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477908,Bus,Pick-up Truck,,, +11/15/2021,0:00,,,40.74111,-73.89842,"(40.74111, -73.89842)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Driver Inattention/Distraction,,,,4477878,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,15:40,BROOKLYN,11222,40.72083,-73.93814,"(40.72083, -73.93814)",MORGAN AVENUE,DIVISION PLACE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4477768,Taxi,Sedan,,, +11/15/2021,16:50,QUEENS,11426,40.72553,-73.72718,"(40.72553, -73.72718)",,,92-47 241 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477984,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,23:11,MANHATTAN,10016,40.74135,-73.981316,"(40.74135, -73.981316)",EAST 27 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478229,Sedan,Sedan,,, +11/15/2021,22:00,STATEN ISLAND,10306,40.565857,-74.11439,"(40.565857, -74.11439)",,,2740 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4477730,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,17:00,BROOKLYN,11219,40.62976,-73.98943,"(40.62976, -73.98943)",,,1519 53 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478453,Station Wagon/Sport Utility Vehicle,Bike,,, +11/15/2021,16:00,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478017,Sedan,,,, +11/13/2021,14:34,BROOKLYN,11212,40.654312,-73.91759,"(40.654312, -73.91759)",LINDEN BOULEVARD,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478378,Sedan,Sedan,,, +11/15/2021,19:26,QUEENS,11434,40.68723,-73.78711,"(40.68723, -73.78711)",159 STREET,115 ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477724,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,1:25,QUEENS,11368,40.750397,-73.8546,"(40.750397, -73.8546)",,,111-63 42 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477459,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,16:20,BRONX,10452,40.835396,-73.92031,"(40.835396, -73.92031)",EAST 167 STREET,GERARD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478119,VAN WH,Sedan,,, +11/14/2021,22:52,MANHATTAN,10034,40.866314,-73.9186,"(40.866314, -73.9186)",ISHAM STREET,SHERMAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4478305,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,8:00,BROOKLYN,11224,40.57698,-73.981575,"(40.57698, -73.981575)",STILLWELL AVENUE,MERMAID AVENUE,,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4477649,Flat Bed,Sedan,,, +11/15/2021,6:47,BRONX,10454,,,,EAST 132 STREET,SAINT ANNS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477750,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/03/2021,21:50,BROOKLYN,11221,40.683567,-73.94106,"(40.683567, -73.94106)",HANCOCK STREET,THROOP AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4478280,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Taxi, +11/08/2021,13:10,BROOKLYN,11203,40.66319,-73.93727,"(40.66319, -73.93727)",TROY AVENUE,LEFFERTS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478225,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,19:10,BROOKLYN,11219,40.64391,-73.99628,"(40.64391, -73.99628)",,,916 42 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477955,Station Wagon/Sport Utility Vehicle,Bus,,, +11/08/2021,15:46,,,40.895447,-73.88002,"(40.895447, -73.88002)",EAST 233 STREET,JEROME AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478347,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,10:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4478393,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/15/2021,15:53,BROOKLYN,11235,40.587273,-73.953766,"(40.587273, -73.953766)",,,1500 SHEEPSHEAD BAY ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477755,Sedan,Bus,,, +11/15/2021,0:00,BRONX,10465,40.829685,-73.8253,"(40.829685, -73.8253)",EAST TREMONT AVENUE,LAFAYETTE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478312,Sedan,,,, +11/15/2021,17:27,BROOKLYN,11214,40.604256,-74.00342,"(40.604256, -74.00342)",BAY 20 STREET,BENSON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477817,Sedan,Bike,,, +11/15/2021,11:15,BROOKLYN,11222,40.729393,-73.94323,"(40.729393, -73.94323)",,,284 MONITOR STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477969,Taxi,Box Truck,,, +11/15/2021,18:30,QUEENS,11417,40.667114,-73.834656,"(40.667114, -73.834656)",NORTH CONDUIT AVENUE,COHANCY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477742,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:00,,,40.623787,-73.90821,"(40.623787, -73.90821)",ROYCE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477710,Sedan,Sedan,,, +11/15/2021,19:26,BROOKLYN,11223,40.609425,-73.964226,"(40.609425, -73.964226)",,,1603 EAST 9 STREET,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478098,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/15/2021,12:45,BROOKLYN,11219,40.640133,-73.99757,"(40.640133, -73.99757)",47 STREET,10 AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4478154,Sedan,Sedan,,, +11/15/2021,11:05,,,40.702675,-73.93396,"(40.702675, -73.93396)",EVERGREEN AVENUE,,,1,0,0,0,1,0,0,0,Obstruction/Debris,,,,,4477844,Bike,,,, +11/15/2021,16:00,QUEENS,11426,40.73946,-73.71784,"(40.73946, -73.71784)",,,251-01 82 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4477944,Sedan,,,, +11/15/2021,0:00,MANHATTAN,10128,40.781414,-73.94835,"(40.781414, -73.94835)",,,316 EAST 92 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4477760,Pick-up Truck,Pick-up Truck,Sedan,, +11/14/2021,10:05,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478324,Sedan,,,, +11/15/2021,10:01,MANHATTAN,10029,40.79026,-73.942696,"(40.79026, -73.942696)",,,2050 2 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477792,Sedan,Moped,,, +11/15/2021,15:00,,,40.767612,-73.950005,"(40.767612, -73.950005)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,Unspecified,,,4478234,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/15/2021,17:24,,,40.650227,-73.92827,"(40.650227, -73.92827)",SNYDER AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478002,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,21:06,,,40.605568,-74.03118,"(40.605568, -74.03118)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478289,Sedan,Sedan,,, +11/15/2021,19:23,,,40.605614,-73.7447,"(40.605614, -73.7447)",EMPIRE AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4477802,Sedan,Sedan,,, +11/06/2021,10:00,,,40.78642,-73.978065,"(40.78642, -73.978065)",WEST 83 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478270,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,12:00,BROOKLYN,11210,40.63686,-73.93849,"(40.63686, -73.93849)",FARRAGUT ROAD,EAST 40 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Failure to Yield Right-of-Way,,,,4478012,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,1:15,BROOKLYN,11207,40.659363,-73.87938,"(40.659363, -73.87938)",WORTMAN AVENUE,WARWICK STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4477332,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,11:33,QUEENS,11372,40.75412,-73.881325,"(40.75412, -73.881325)",86 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478219,Sedan,,,, +11/15/2021,17:00,QUEENS,11105,40.76858,-73.900604,"(40.76858, -73.900604)",,,22-09 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478101,Sedan,,,, +11/15/2021,21:51,BROOKLYN,11212,40.666046,-73.91762,"(40.666046, -73.91762)",SUTTER AVENUE,LEGION STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4477728,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/15/2021,19:55,BROOKLYN,11207,40.68236,-73.88777,"(40.68236, -73.88777)",,,34 RIDGEWOOD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477868,Sedan,Sedan,Sedan,, +11/15/2021,11:24,,,40.676178,-73.9663,"(40.676178, -73.9663)",PARK PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477636,Sedan,,,, +11/15/2021,11:30,,,40.672607,-73.89992,"(40.672607, -73.89992)",GLENMORE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477861,Sedan,Sedan,,, +11/11/2021,9:30,QUEENS,11413,40.660454,-73.75661,"(40.660454, -73.75661)",224 STREET,146 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478428,Sedan,,,, +11/01/2021,5:50,,,40.715977,-73.81082,"(40.715977, -73.81082)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4478179,Sedan,Sedan,Pick-up Truck,, +11/15/2021,8:15,,,40.693172,-73.94878,"(40.693172, -73.94878)",MARCY AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4477960,Sedan,Sedan,,, +11/15/2021,9:25,,,40.752995,-73.91068,"(40.752995, -73.91068)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477766,Sedan,E-Bike,,, +11/15/2021,7:30,QUEENS,11379,40.724827,-73.87312,"(40.724827, -73.87312)",CALDWELL AVENUE,DRY HARBOR ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478339,Garbage or Refuse,,,, +11/15/2021,16:16,MANHATTAN,10075,40.77584,-73.9631,"(40.77584, -73.9631)",,,25 EAST 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477782,Sedan,,,, +10/28/2021,17:37,BROOKLYN,11203,40.638046,-73.92698,"(40.638046, -73.92698)",FARRAGUT ROAD,EAST 52 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478370,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,12:00,QUEENS,11369,40.76803,-73.87722,"(40.76803, -73.87722)",23 AVENUE,93 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477935,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,15:30,BROOKLYN,11218,40.64034,-73.96804,"(40.64034, -73.96804)",,,345 STRATFORD ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4477828,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,7:45,STATEN ISLAND,10301,40.64682,-74.08195,"(40.64682, -74.08195)",,,159 CARROLL PLACE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477675,Bus,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,12:00,MANHATTAN,10017,40.749825,-73.972206,"(40.749825, -73.972206)",2 AVENUE,EAST 42 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477707,Sedan,E-Bike,,, +11/06/2021,4:01,MANHATTAN,10034,40.86369,-73.91707,"(40.86369, -73.91707)",WEST 207 STREET,9 AVENUE,,2,0,1,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4478263,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/15/2021,8:40,,,40.63215,-74.16525,"(40.63215, -74.16525)",GRANDVIEW AVENUE,BRABANT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477591,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,17:02,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478243,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,21:30,,,40.694,-73.92351,"(40.694, -73.92351)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477838,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,8:30,BROOKLYN,11249,40.713535,-73.96731,"(40.713535, -73.96731)",,,325 KENT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477746,Bus,Sedan,,, +11/10/2021,16:37,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478321,Sedan,Sedan,Sedan,, +11/15/2021,17:00,QUEENS,11416,40.68424,-73.8461,"(40.68424, -73.8461)",101 AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478195,Sedan,E-Bike,,, +11/12/2021,17:31,,,40.85431,-73.93009,"(40.85431, -73.93009)",WEST 189 STREET,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478294,Taxi,,,, +11/15/2021,10:30,,,40.82255,-73.88573,"(40.82255, -73.88573)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477680,Sedan,Tractor Truck Diesel,,, +11/15/2021,20:29,BROOKLYN,11234,40.623978,-73.92063,"(40.623978, -73.92063)",AVENUE L,EAST 57 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4477711,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,20:10,,,40.863113,-73.920616,"(40.863113, -73.920616)",WEST 204 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477945,Sedan,Sedan,,, +11/15/2021,19:57,BRONX,10467,40.887882,-73.8774,"(40.887882, -73.8774)",,,3700 JEROME AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477885,Sedan,Bus,,, +11/15/2021,18:00,BRONX,10467,40.871117,-73.87683,"(40.871117, -73.87683)",EAST 204 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4477898,Sedan,,,, +11/06/2021,1:30,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478325,Sedan,,,, +11/15/2021,7:40,,,40.627598,-74.14468,"(40.627598, -74.14468)",,,77 DIXON AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477588,Pick-up Truck,Sedan,,, +11/09/2021,0:00,,,40.659336,-73.92726,"(40.659336, -73.92726)",EAST 54 STREET,WINTHROP STREET,,2,0,0,0,0,0,2,0,Alcohol Involvement,Driver Inattention/Distraction,Unspecified,,,4478403,Bus,Sedan,Sedan,, +11/15/2021,14:00,BROOKLYN,11218,40.63973,-73.974815,"(40.63973, -73.974815)",,,511 EAST 5 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477789,Sedan,,,, +11/10/2021,3:49,,,40.692936,-73.87777,"(40.692936, -73.87777)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4478335,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/30/2021,16:00,BROOKLYN,11212,40.65778,-73.91776,"(40.65778, -73.91776)",,,407 EAST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478374,Sedan,,,, +11/15/2021,9:09,QUEENS,11369,40.76774,-73.87999,"(40.76774, -73.87999)",23 AVENUE,90 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477621,Sedan,Sedan,,, +11/13/2021,14:14,BRONX,10465,40.819054,-73.81837,"(40.819054, -73.81837)",,,317 REVERE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478332,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,23:40,BROOKLYN,11207,40.683502,-73.91152,"(40.683502, -73.91152)",COOPER STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477842,Sedan,,,, +11/15/2021,7:02,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477558,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/15/2021,8:10,QUEENS,11364,40.74648,-73.7589,"(40.74648, -73.7589)",64 AVENUE,218 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477719,Sedan,Sedan,,, +11/15/2021,15:40,QUEENS,11104,40.74743,-73.925476,"(40.74743, -73.925476)",SKILLMAN AVENUE,39 STREET,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,Unspecified,,4477881,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Taxi, +11/11/2021,18:42,BRONX,10463,40.876583,-73.90266,"(40.876583, -73.90266)",ALBANY CRESCENT,HEATH AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478299,Pick-up Truck,,,, +11/15/2021,18:30,,,40.632294,-73.96678,"(40.632294, -73.96678)",FOSTER AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477825,Sedan,Bike,,, +11/15/2021,11:27,QUEENS,11378,40.718544,-73.91784,"(40.718544, -73.91784)",,,58-38 PAGE PLACE,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4477659,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/15/2021,16:30,,,40.828064,-73.91609,"(40.828064, -73.91609)",EAST 164 STREET,COLLEGE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478140,Sedan,Box Truck,,, +11/15/2021,12:29,MANHATTAN,10038,40.71324,-73.99823,"(40.71324, -73.99823)",OLIVER STREET,SAINT JAMES PLACE,,0,0,0,0,0,0,0,0,Drugs (illegal),Unspecified,,,,4478021,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,18:03,BRONX,10451,40.81572,-73.925064,"(40.81572, -73.925064)",EAST 144 STREET,RIDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477751,Ambulance,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,16:15,BROOKLYN,11213,40.677563,-73.93309,"(40.677563, -73.93309)",ATLANTIC AVENUE,SCHENECTADY AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478383,E-Bike,,,, +07/09/2022,2:20,BROOKLYN,11221,40.69584,-73.92959,"(40.69584, -73.92959)",BUSHWICK AVENUE,CEDAR STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544883,Station Wagon/Sport Utility Vehicle,Bike,,, +11/15/2021,20:20,,,40.6972,-73.952934,"(40.6972, -73.952934)",NOSTRAND AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4477950,Sedan,Sedan,,, +11/15/2021,9:46,MANHATTAN,10128,40.78169,-73.94897,"(40.78169, -73.94897)",EAST 92 STREET,2 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4477983,Pick-up Truck,,,, +11/15/2021,9:00,BROOKLYN,11207,40.664146,-73.88186,"(40.664146, -73.88186)",HEGEMAN AVENUE,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477756,Station Wagon/Sport Utility Vehicle,,,, +10/19/2021,10:00,,,40.783974,-73.97031,"(40.783974, -73.97031)",WEST 84 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478394,Station Wagon/Sport Utility Vehicle,,,, +11/06/2021,1:30,,,,,,HARDING AVENUE,THROGS NECK BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478306,Sedan,,,, +11/15/2021,12:10,,,40.586002,-73.97221,"(40.586002, -73.97221)",WEST 3 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4477650,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,1:00,,,40.679634,-73.94959,"(40.679634, -73.94959)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4478282,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/15/2021,11:27,,,40.736156,-73.71371,"(40.736156, -73.71371)",HILLSIDE AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477604,Sedan,Dump,,, +11/15/2021,21:30,,,40.820435,-73.93623,"(40.820435, -73.93623)",LENOX AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478182,Station Wagon/Sport Utility Vehicle,Bus,,, +11/15/2021,11:36,,,40.690926,-73.92066,"(40.690926, -73.92066)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4477850,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,15:36,,,40.77548,-73.98022,"(40.77548, -73.98022)",COLUMBUS AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478361,,,,, +11/15/2021,17:15,,,40.78214,-73.824844,"(40.78214, -73.824844)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477902,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,8:00,QUEENS,11433,40.702103,-73.788605,"(40.702103, -73.788605)",169 STREET,104 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4477694,Sedan,Sedan,,, +11/15/2021,16:24,MANHATTAN,10065,40.76398,-73.96068,"(40.76398, -73.96068)",,,335 EAST 65 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477769,Ambulance,Sedan,,, +11/15/2021,3:25,,,40.745068,-73.93826,"(40.745068, -73.93826)",SKILLMAN AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,17:05,,,40.69405,-73.82802,"(40.69405, -73.82802)",LEFFERTS BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477816,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,8:00,,,40.66573,-73.75012,"(40.66573, -73.75012)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477601,Sedan,Sedan,,, +11/15/2021,2:56,BROOKLYN,11226,40.640766,-73.951416,"(40.640766, -73.951416)",ROGERS AVENUE,AVENUE D,,1,0,0,0,0,0,1,0,Unsafe Speed,Unsafe Speed,,,,4477514,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,0:15,BROOKLYN,11215,40.666126,-73.9953,"(40.666126, -73.9953)",3 AVENUE,17 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477722,Taxi,Station Wagon/Sport Utility Vehicle,,, +10/26/2021,20:30,,,40.60998,-74.12017,"(40.60998, -74.12017)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4478255,Sedan,,,, +11/15/2021,23:00,MANHATTAN,10021,40.76649,-73.95696,"(40.76649, -73.95696)",EAST 70 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4477777,Sedan,,,, +11/15/2021,11:15,BROOKLYN,11220,40.646503,-74.02322,"(40.646503, -74.02322)",1 AVENUE,57 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4477698,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,21:00,BRONX,10454,40.80906,-73.90755,"(40.80906, -73.90755)",EAST 144 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478457,Sedan,,,, +11/15/2021,18:20,QUEENS,11385,40.71032,-73.89937,"(40.71032, -73.89937)",FRESH POND ROAD,GROVE STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478058,E-Bike,Sedan,,, +11/15/2021,21:35,MANHATTAN,10004,40.705162,-74.00985,"(40.705162, -74.00985)",,,60 BEAVER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4478124,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/15/2021,14:15,BROOKLYN,11219,40.636635,-73.98571,"(40.636635, -73.98571)",,,1425 43 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477954,Taxi,Bus,,, +11/15/2021,9:10,,,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478226,Sedan,Bus,,, +10/22/2021,14:45,MANHATTAN,10023,,,,,,242 WEST 76 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4469896,Station Wagon/Sport Utility Vehicle,AMBULANCE,,, +11/03/2021,20:00,QUEENS,11375,40.713924,-73.83388,"(40.713924, -73.83388)",,,111-27 78 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478352,Sedan,Sedan,,, +11/15/2021,18:40,BROOKLYN,11223,40.58794,-73.97434,"(40.58794, -73.97434)",AVENUE Y,SHELL ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4477731,Box Truck,Sedan,,, +11/15/2021,6:25,QUEENS,11434,40.667915,-73.77523,"(40.667915, -73.77523)",NORTH CONDUIT AVENUE,160 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Following Too Closely,Unspecified,,,4477971,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/12/2021,23:10,,,,,,STATEN ISLAND EXPRESSWAY,,,5,0,0,0,0,0,5,0,Driver Inexperience,Unspecified,,,,4478251,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,22:25,,,40.851402,-73.89343,"(40.851402, -73.89343)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4477839,Bike,,,, +11/14/2021,7:05,MANHATTAN,10024,40.784973,-73.98264,"(40.784973, -73.98264)",WEST 79 STREET,RIVERSIDE DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478271,Sedan,Sedan,,, +11/12/2021,14:00,,,40.698807,-73.91837,"(40.698807, -73.91837)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478301,Station Wagon/Sport Utility Vehicle,Bus,,, +11/15/2021,10:45,,,40.61592,-74.00482,"(40.61592, -74.00482)",15 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4477637,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:05,MANHATTAN,10014,40.730995,-74.007195,"(40.730995, -74.007195)",,,75 MORTON STREET,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4477870,Sedan,Bus,,, +02/02/2022,18:23,BROOKLYN,11232,40.654953,-74.00703,"(40.654953, -74.00703)",3 AVENUE,37 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Alcohol Involvement,,,,4501050,Sedan,Pick-up Truck,,, +11/15/2021,7:00,,,40.60461,-73.99826,"(40.60461, -73.99826)",20 AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4477830,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,6:40,,,40.710434,-73.838066,"(40.710434, -73.838066)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477613,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,19:14,QUEENS,11385,40.702374,-73.87544,"(40.702374, -73.87544)",MYRTLE AVENUE,73 PLACE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477683,Sedan,Pick-up Truck,,, +11/15/2021,16:08,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",WOODHAVEN BOULEVARD,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477917,Sedan,Flat Rack,,, +11/15/2021,19:30,MANHATTAN,10036,40.757973,-73.98554,"(40.757973, -73.98554)",7 AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477899,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,10:30,MANHATTAN,10035,40.788982,-73.93039,"(40.788982, -73.93039)",,,600 EAST 125 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477594,Pick-up Truck,,,, +11/15/2021,22:45,,,40.584793,-74.16034,"(40.584793, -74.16034)",MARSH AVENUE,RICHMOND HILL ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478228,Sedan,,,, +11/13/2021,3:15,QUEENS,11420,40.681587,-73.80563,"(40.681587, -73.80563)",,,114-40 VANWYCK EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478423,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,15:15,MANHATTAN,10018,40.75108,-73.98686,"(40.75108, -73.98686)",AVENUE OF THE AMERICAS,WEST 36 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478287,Ambulance,Sedan,,, +11/15/2021,11:56,BROOKLYN,11204,40.634396,-73.982025,"(40.634396, -73.982025)",43 STREET,16 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4477961,Station Wagon/Sport Utility Vehicle,Bike,,, +11/15/2021,10:00,BRONX,10475,40.879898,-73.83181,"(40.879898, -73.83181)",,,1000 BAYCHESTER AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4478319,Sedan,,,, +11/15/2021,11:00,QUEENS,11106,40.75863,-73.934265,"(40.75863, -73.934265)",,,35-53 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477759,Sedan,,,, +11/15/2021,0:15,BROOKLYN,11209,40.625668,-74.02419,"(40.625668, -74.02419)",,,8001 5 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4478064,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,13:03,BRONX,10455,40.8126,-73.899,"(40.8126, -73.899)",BRUCKNER BOULEVARD,TIMPSON PLACE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478104,Sedan,Tractor Truck Diesel,,, +11/15/2021,0:10,QUEENS,11419,40.682243,-73.82222,"(40.682243, -73.82222)",LEFFERTS BOULEVARD,109 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4477376,Sedan,Bike,,, +10/30/2021,19:55,MANHATTAN,10033,40.851257,-73.935196,"(40.851257, -73.935196)",,,4295 BROADWAY,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4478262,Sedan,Sedan,,, +11/15/2021,15:20,BROOKLYN,11219,40.64077,-73.99408,"(40.64077, -73.99408)",FORT HAMILTON PARKWAY,44 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477787,Station Wagon/Sport Utility Vehicle,Pallet,,, +11/15/2021,7:47,BROOKLYN,11210,40.62573,-73.9564,"(40.62573, -73.9564)",OCEAN AVENUE,AVENUE J,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4477803,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,15:20,QUEENS,11379,40.712727,-73.87935,"(40.712727, -73.87935)",METROPOLITAN AVENUE,73 PLACE,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478338,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,11:35,QUEENS,11369,40.75846,-73.87833,"(40.75846, -73.87833)",32 AVENUE,90 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478220,Sedan,Motorscooter,,, +10/30/2021,14:00,BROOKLYN,11212,40.658905,-73.92175,"(40.658905, -73.92175)",,,295 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478373,Sedan,,,, +11/15/2021,17:42,QUEENS,11374,40.73011,-73.86509,"(40.73011, -73.86509)",63 AVENUE,SAUNDERS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4477727,Sedan,Sedan,,, +11/15/2021,18:40,QUEENS,11372,40.75235,-73.876274,"(40.75235, -73.876274)",,,35-06 91 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4477940,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,18:02,QUEENS,11420,40.674534,-73.803505,"(40.674534, -73.803505)",,,135-02 ROCKAWAY BOULEVARD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477745,,,,, +11/15/2021,14:30,BROOKLYN,11212,40.658318,-73.90516,"(40.658318, -73.90516)",,,230 LOTT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478244,Sedan,,,, +11/15/2021,18:09,BRONX,10475,40.878372,-73.82859,"(40.878372, -73.82859)",,,789 COOP CITY BOULEVARD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4478326,Sedan,,,, +11/15/2021,16:38,QUEENS,11691,40.59856,-73.75277,"(40.59856, -73.75277)",,,327 BEACH 19 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477793,Sedan,,,, +11/15/2021,13:50,,,40.69986,-73.98458,"(40.69986, -73.98458)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477674,Flat Bed,Sedan,,, +11/15/2021,8:20,STATEN ISLAND,10305,40.594154,-74.06567,"(40.594154, -74.06567)",ROBIN ROAD,DOTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4477578,Station Wagon/Sport Utility Vehicle,Bus,,, +11/15/2021,11:38,,,40.68045,-73.87586,"(40.68045, -73.87586)",CONDUIT BOULEVARD,ATLANTIC AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477863,Lift Boom,Sedan,,, +11/15/2021,13:45,QUEENS,11413,40.665474,-73.74751,"(40.665474, -73.74751)",SOUTH CONDUIT AVENUE,LANSING AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4477947,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,21:25,QUEENS,11413,40.662758,-73.74999,"(40.662758, -73.74999)",,,144-32 229 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4477714,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,15:38,QUEENS,11422,40.678417,-73.729225,"(40.678417, -73.729225)",130 AVENUE,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4477702,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,18:30,,,40.60891,-74.17833,"(40.60891, -74.17833)",SOUTH AVENUE,CURRY AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477889,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,17:45,,,40.824913,-73.8689,"(40.824913, -73.8689)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,,,,,4478233,Station Wagon/Sport Utility Vehicle,,,, +10/14/2021,14:40,BROOKLYN,11216,,,,SAINT JOHNS PLACE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478398,Sedan,,,, +11/15/2021,7:05,,,40.66653,-73.806274,"(40.66653, -73.806274)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4477741,Sedan,Sedan,,, +11/15/2021,3:55,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4477764,Sedan,Sedan,,, +10/27/2021,9:52,BRONX,10463,40.87802,-73.90241,"(40.87802, -73.90241)",WEST 231 STREET,BAILEY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478175,Sedan,,,, +11/15/2021,16:30,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4478309,Sedan,Sedan,,, +11/12/2021,22:45,QUEENS,11385,40.69874,-73.89305,"(40.69874, -73.89305)",62 STREET,75 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4478334,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,17:20,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",EAST 149 STREET,SOUTHERN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477780,Sedan,,,, +11/15/2021,15:54,BROOKLYN,11203,40.65249,-73.92179,"(40.65249, -73.92179)",CHURCH AVENUE,EAST 59 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4478369,Bike,,,, +11/15/2021,23:00,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477734,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,9:42,MANHATTAN,10034,40.863792,-73.91942,"(40.863792, -73.91942)",10 AVENUE,WEST 206 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4478293,Taxi,Sedan,,, +11/15/2021,4:05,QUEENS,11436,40.68409,-73.80169,"(40.68409, -73.80169)",LINDEN BOULEVARD,142 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4477972,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,0:00,,,40.651157,-73.918144,"(40.651157, -73.918144)",AVENUE A,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4478001,Sedan,Sedan,,, +11/11/2021,23:05,BROOKLYN,11238,40.67834,-73.95521,"(40.67834, -73.95521)",PACIFIC STREET,FRANKLIN AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478384,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/15/2021,6:25,QUEENS,11378,40.719406,-73.902504,"(40.719406, -73.902504)",FRESH POND ROAD,59 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478041,Sedan,E-Bike,,, +11/15/2021,15:46,BROOKLYN,11229,40.60638,-73.959724,"(40.60638, -73.959724)",,,1775 EAST 13 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477752,Sedan,Bus,,, +02/06/2022,19:09,QUEENS,11419,40.685654,-73.828636,"(40.685654, -73.828636)",LIBERTY AVENUE,114 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500493,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/03/2022,15:54,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4501023,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +02/06/2022,22:50,BROOKLYN,11237,40.69969,-73.91557,"(40.69969, -73.91557)",IRVING AVENUE,MENAHAN STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4500520,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,5:40,,,40.847397,-73.92841,"(40.847397, -73.92841)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500443,Sedan,Sedan,,, +02/06/2022,2:43,BRONX,10468,40.86022,-73.90721,"(40.86022, -73.90721)",,,2260 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500609,Sedan,Sedan,,, +02/06/2022,5:30,,,40.70145,-73.989624,"(40.70145, -73.989624)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500380,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,18:30,STATEN ISLAND,10301,40.63946,-74.08535,"(40.63946, -74.08535)",,,203 BENZIGER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500984,Sedan,,,, +02/06/2022,14:53,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",UTICA AVENUE,AVENUE I,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500567,Station Wagon/Sport Utility Vehicle,Taxi,,, +02/06/2022,17:40,,,,,,GRAND CENTRAL PARKWAY,188 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4500451,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/06/2022,17:34,BROOKLYN,11214,40.592403,-73.9954,"(40.592403, -73.9954)",,,1730 SHORE PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4500568,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,3:15,,,40.693787,-73.81173,"(40.693787, -73.81173)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,4500512,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +01/31/2022,6:05,QUEENS,11369,,,,ASTORIA BOULEVARD,105 STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4501028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,0:10,,,40.600082,-73.96591,"(40.600082, -73.96591)",AVENUE T,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500131,Sedan,Sedan,,, +02/01/2022,2:45,,,40.62149,-74.17076,"(40.62149, -74.17076)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501087,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,2:09,BROOKLYN,11216,40.670006,-73.95328,"(40.670006, -73.95328)",EASTERN PARKWAY,ROGERS AVENUE,,4,1,0,0,0,0,4,1,Unsafe Speed,Unspecified,,,,4500420,Sedan,Sedan,,, +02/01/2022,13:20,QUEENS,11367,40.725117,-73.82189,"(40.725117, -73.82189)",,,141-32 72 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500947,Sedan,,,, +01/31/2022,23:05,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501011,Sedan,Sedan,,, +02/06/2022,2:55,,,40.743626,-73.73437,"(40.743626, -73.73437)",DOUGLASTON PARKWAY,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500174,Sedan,,,, +02/04/2022,22:15,MANHATTAN,10037,40.809578,-73.93996,"(40.809578, -73.93996)",WEST 130 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501037,Sedan,Sedan,,, +02/06/2022,9:50,,,,,,BROOKLYN BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Following Too Closely,Following Too Closely,Unspecified,Unspecified,4500379,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +02/06/2022,8:00,QUEENS,11416,40.68452,-73.86156,"(40.68452, -73.86156)",,,78-02 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500513,Sedan,Sedan,,, +02/02/2022,15:00,,,40.81899,-73.89185,"(40.81899, -73.89185)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Reaction to Uninvolved Vehicle,Unspecified,,,4501095,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +02/06/2022,21:19,MANHATTAN,10032,40.835358,-73.94022,"(40.835358, -73.94022)",WEST 161 STREET,AMSTERDAM AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4500445,Sedan,Bike,,, +07/09/2022,14:45,,,40.67251,-73.99905,"(40.67251, -73.99905)",HAMILTON AVENUE,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544845,Sedan,Pick-up Truck,,, +02/06/2022,22:30,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Animals Action,Following Too Closely,Unspecified,,,4500981,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Sedan,, +02/06/2022,18:50,BROOKLYN,11215,40.668293,-73.97924,"(40.668293, -73.97924)",,,506 6 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500482,Ambulance,,,, +02/02/2022,21:00,,,,,,BROOKLYN BATTERY TUNNEL,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Traffic Control Disregarded,,,,4501068,Station Wagon/Sport Utility Vehicle,Bike,,, +02/06/2022,10:32,QUEENS,11372,40.756336,-73.87794,"(40.756336, -73.87794)",90 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500286,Sedan,Carry All,,, +02/06/2022,11:40,QUEENS,11368,40.745663,-73.86354,"(40.745663, -73.86354)",,,101-14 NICOLLS AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500328,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,19:15,STATEN ISLAND,10306,40.564346,-74.11592,"(40.564346, -74.11592)",,,2796 HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500684,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,5:05,BRONX,10467,40.87144,-73.867165,"(40.87144, -73.867165)",WHITE PLAINS ROAD,BURKE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500406,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,0:00,BROOKLYN,11234,40.631428,-73.931145,"(40.631428, -73.931145)",KINGS HIGHWAY,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500861,Sedan,,,, +02/06/2022,21:43,BRONX,10467,40.884487,-73.86567,"(40.884487, -73.86567)",BRONX BOULEVARD,EAST 219 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501115,Sedan,Sedan,,, +02/06/2022,2:15,BRONX,10457,40.838875,-73.90266,"(40.838875, -73.90266)",CLAREMONT PARKWAY,WASHINGTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500264,Sedan,Bike,,, +02/06/2022,10:30,BRONX,10467,40.874733,-73.8739,"(40.874733, -73.8739)",,,3225 PARKSIDE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500580,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,16:33,BRONX,10474,40.808437,-73.88682,"(40.808437, -73.88682)",MANIDA STREET,EAST BAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500699,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/06/2022,4:50,,,40.843994,-73.89752,"(40.843994, -73.89752)",CROSS BRONX EXPRESSWAY,3 AVENUE,,4,0,0,0,0,0,4,0,Unsafe Speed,Unspecified,,,,4500302,Sedan,Bus,,, +02/06/2022,15:00,QUEENS,11432,40.71442,-73.78981,"(40.71442, -73.78981)",HENLEY ROAD,AVA PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500458,Sedan,,,, +02/01/2022,17:30,MANHATTAN,10027,40.80761,-73.95305,"(40.80761, -73.95305)",WEST 121 STREET,8 AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Aggressive Driving/Road Rage,,,,4501007,Sedan,Sedan,,, +02/05/2022,19:45,QUEENS,11357,40.782215,-73.80776,"(40.782215, -73.80776)",CLINTONVILLE STREET,18 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4501046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,7:02,,,,,,WALTON AVENUE,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4500902,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,15:45,QUEENS,11355,40.75539,-73.828285,"(40.75539, -73.828285)",MAIN STREET,MAPLE AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500395,Station Wagon/Sport Utility Vehicle,Bike,,, +02/06/2022,6:37,BROOKLYN,11236,40.652313,-73.908226,"(40.652313, -73.908226)",DITMAS AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500466,Sedan,,,, +02/02/2022,18:26,BROOKLYN,11212,40.663116,-73.915886,"(40.663116, -73.915886)",SARATOGA AVENUE,DUMONT AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4501159,Pick-up Truck,Sedan,,, +02/06/2022,6:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4500991,Sedan,Sedan,,, +02/06/2022,5:45,BROOKLYN,11207,40.660656,-73.885796,"(40.660656, -73.885796)",LINDEN BOULEVARD,VAN SICLEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500674,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,4:18,,,40.665737,-73.75194,"(40.665737, -73.75194)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4500186,2 dr sedan,Sedan,Sedan,, +02/06/2022,0:00,,,40.57988,-73.96075,"(40.57988, -73.96075)",BRIGHTON 8 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500817,Sedan,,,, +02/06/2022,6:00,MANHATTAN,10036,40.758976,-73.98993,"(40.758976, -73.98993)",,,332 WEST 44 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500367,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,22:09,,,40.834198,-73.85169,"(40.834198, -73.85169)",WESTCHESTER AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500710,Taxi,,,, +02/06/2022,16:05,BROOKLYN,11204,40.615005,-73.980225,"(40.615005, -73.980225)",63 STREET,BAY PARKWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500589,Sedan,,,, +02/06/2022,12:00,,,,,,SHORE PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,,,,,4500502,Ambulance,,,, +02/04/2022,18:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501055,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,0:41,MANHATTAN,10065,40.768597,-73.967766,"(40.768597, -73.967766)",MADISON AVENUE,EAST 67 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500538,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,12:00,BROOKLYN,11222,40.734585,-73.9536,"(40.734585, -73.9536)",,,197 FREEMAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500992,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,17:27,BROOKLYN,11238,40.68416,-73.96907,"(40.68416, -73.96907)",FULTON STREET,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500431,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,22:00,QUEENS,11420,40.68022,-73.82121,"(40.68022, -73.82121)",,,111-27 LEFFERTS BOULEVARD,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500875,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,12:00,STATEN ISLAND,10309,40.538532,-74.20048,"(40.538532, -74.20048)",MARCY AVENUE,RATHBUN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500956,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,14:50,MANHATTAN,10026,40.804333,-73.95305,"(40.804333, -73.95305)",,,211 WEST 117 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500464,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,1:12,BRONX,10453,40.851444,-73.91185,"(40.851444, -73.91185)",WEST TREMONT AVENUE,KINGSLAND PLACE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,Unspecified,,,4500723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,6:10,BROOKLYN,11234,40.635365,-73.92571,"(40.635365, -73.92571)",GLENWOOD ROAD,EAST 53 STREET,,3,0,0,0,0,0,3,0,Fatigued/Drowsy,Unspecified,,,,4500202,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,2:23,,,40.70313,-73.816795,"(40.70313, -73.816795)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500560,Dump,Sedan,,, +02/06/2022,1:22,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500332,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,21:36,BROOKLYN,11230,40.629986,-73.97157,"(40.629986, -73.97157)",FOSTER AVENUE,OCEAN PARKWAY,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500571,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,18:30,BROOKLYN,11226,40.655396,-73.95065,"(40.655396, -73.95065)",,,287 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500419,Sedan,,,, +02/06/2022,4:25,QUEENS,11433,40.703983,-73.79375,"(40.703983, -73.79375)",,,92-61 165 STREET,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Lane Changing,,,,4500554,Sedan,Sedan,,, +02/06/2022,12:40,BROOKLYN,11217,40.68087,-73.97515,"(40.68087, -73.97515)",BERGEN STREET,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4501022,Sedan,Sedan,,, +02/06/2022,16:40,QUEENS,11377,40.754276,-73.90902,"(40.754276, -73.90902)",BROADWAY,51 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4500486,Sedan,Sedan,,, +02/05/2022,10:55,QUEENS,11368,40.74418,-73.851906,"(40.74418, -73.851906)",111 STREET,52 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4501030,Tow Truck / Wrecker,Sedan,Station Wagon/Sport Utility Vehicle,, +02/06/2022,1:50,BRONX,10465,40.842846,-73.82568,"(40.842846, -73.82568)",COUNTRY CLUB ROAD,BRUCKNER EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4500157,Sedan,,,, +07/09/2022,11:30,QUEENS,11419,40.695877,-73.81487,"(40.695877, -73.81487)",95 AVENUE,134 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4545291,Sedan,Moped,,, +02/01/2022,8:50,,,40.716526,-73.82308,"(40.716526, -73.82308)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500946,Sedan,Sedan,,, +02/06/2022,17:00,BRONX,10452,40.836304,-73.92518,"(40.836304, -73.92518)",WOODYCREST AVENUE,WEST 167 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501227,Sedan,,,, +02/06/2022,14:50,,,40.823257,-73.94293,"(40.823257, -73.94293)",BRADHURST AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500703,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,9:43,,,40.608253,-74.08879,"(40.608253, -74.08879)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4500298,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,9:25,,,40.691708,-73.94849,"(40.691708, -73.94849)",DE KALB AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500307,Armored Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,1:40,,,40.762234,-73.98987,"(40.762234, -73.98987)",WEST 48 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500610,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,14:23,MANHATTAN,10016,40.746754,-73.97273,"(40.746754, -73.97273)",,,333 EAST 38 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501086,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,13:48,,,40.671787,-73.95311,"(40.671787, -73.95311)",ROGERS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500342,Taxi,Sedan,,, +02/06/2022,0:00,BRONX,10455,40.815754,-73.89529,"(40.815754, -73.89529)",BRUCKNER BOULEVARD,LONGWOOD AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500689,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,0:39,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4501125,Sedan,,,, +02/06/2022,14:30,QUEENS,11101,40.74355,-73.958405,"(40.74355, -73.958405)",50 AVENUE,2 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500390,Sedan,,,, +02/06/2022,7:50,STATEN ISLAND,10304,40.60988,-74.08722,"(40.60988, -74.08722)",TARGEE STREET,PIERCE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500757,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,10:00,BROOKLYN,11203,40.658066,-73.946815,"(40.658066, -73.946815)",,,402 HAWTHORNE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501221,Sedan,,,, +02/06/2022,3:30,MANHATTAN,10036,40.759666,-73.9956,"(40.759666, -73.9956)",,,500 WEST 42 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500214,Sedan,Sedan,,, +02/06/2022,11:00,STATEN ISLAND,10309,40.5446,-74.20803,"(40.5446, -74.20803)",MASON BOULEVARD,MALLOW STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500627,Sedan,,,, +02/06/2022,3:20,QUEENS,11370,40.755703,-73.88349,"(40.755703, -73.88349)",,,32-65 84 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500729,Taxi,,,, +02/06/2022,23:25,,,40.578663,-74.169586,"(40.578663, -74.169586)",,,2791 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500858,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,6:33,BRONX,10457,40.838196,-73.901184,"(40.838196, -73.901184)",CLAREMONT PARKWAY,3 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Turning Improperly,,,,4500266,Sedan,Sedan,,, +02/06/2022,11:07,,,40.86945,-73.872345,"(40.86945, -73.872345)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4500339,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/02/2022,11:23,BROOKLYN,11213,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,PRESIDENT STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501167,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/10/2022,12:00,BRONX,10454,40.80274,-73.919846,"(40.80274, -73.919846)",,,569 EAST 132 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501198,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,15:00,QUEENS,11411,40.69455,-73.74416,"(40.69455, -73.74416)",SPRINGFIELD BOULEVARD,118 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4500377,Sedan,Motorcycle,,, +02/06/2022,16:43,BROOKLYN,11237,40.700672,-73.92164,"(40.700672, -73.92164)",STOCKHOLM STREET,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500515,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,17:25,,,40.77286,-73.98955,"(40.77286, -73.98955)",WEST 61 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501133,Sedan,,,, +01/28/2022,18:55,,,40.767185,-73.98997,"(40.767185, -73.98997)",10 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500945,Sedan,,,, +02/02/2022,8:00,BROOKLYN,11203,40.65832,-73.93056,"(40.65832, -73.93056)",,,870 WINTHROP STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4501063,Bus,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,9:45,,,40.671085,-73.736275,"(40.671085, -73.736275)",LAURELTON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4500285,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,10:01,BRONX,10466,40.887527,-73.85963,"(40.887527, -73.85963)",,,720 EAST 225 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500407,Sedan,,,, +02/06/2022,5:40,BROOKLYN,11234,40.613243,-73.93029,"(40.613243, -73.93029)",KIMBALL STREET,FILLMORE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500200,Sedan,Sedan,Pick-up Truck,, +02/06/2022,16:55,MANHATTAN,10013,40.719868,-73.99527,"(40.719868, -73.99527)",ELIZABETH STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500370,Sedan,Sedan,,, +02/06/2022,8:15,,,,,,nassau expressway,n hanger road,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4500593,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/06/2022,12:30,BROOKLYN,11221,40.69782,-73.927826,"(40.69782, -73.927826)",MYRTLE AVENUE,HART STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4500348,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,0:30,MANHATTAN,10031,,,,WEST 133 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501019,Box Truck,,,, +02/06/2022,9:43,STATEN ISLAND,10301,40.63617,-74.08127,"(40.63617, -74.08127)",,,20 FIEDLER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500760,Sedan,Sedan,,, +02/06/2022,18:11,MANHATTAN,10032,40.83569,-73.93739,"(40.83569, -73.93739)",WEST 163 STREET,EDGECOMBE AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500447,Sedan,E-Scooter,,, +02/06/2022,5:12,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500683,Sedan,Sedan,,, +02/06/2022,4:45,BROOKLYN,11226,40.63975,-73.95491,"(40.63975, -73.95491)",,,1256 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500808,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/06/2022,20:45,BROOKLYN,11226,40.652523,-73.95185,"(40.652523, -73.95185)",,,180 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4500717,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,18:30,BROOKLYN,11223,40.594254,-73.96203,"(40.594254, -73.96203)",,,815 GRAVESEND NECK ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500506,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,23:40,MANHATTAN,10029,40.799984,-73.944855,"(40.799984, -73.944855)",EAST 116 STREET,MADISON AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4500980,Motorscooter,,,, +02/06/2022,0:25,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4501105,Sedan,Sedan,,, +02/06/2022,0:35,MANHATTAN,10033,40.8532,-73.934204,"(40.8532, -73.934204)",WEST 186 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500440,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,14:46,,,40.794178,-73.94487,"(40.794178, -73.94487)",EAST 109 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4501008,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,17:15,,,40.618988,-74.0408,"(40.618988, -74.0408)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500426,Sedan,Sedan,,, +02/06/2022,2:00,BRONX,10458,40.85586,-73.89462,"(40.85586, -73.89462)",EAST 183 STREET,PARK AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/03/2022,19:25,QUEENS,11368,40.748596,-73.86317,"(40.748596, -73.86317)",,,40-34 NATIONAL STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4501031,Bus,,,, +02/06/2022,12:13,QUEENS,11427,40.720036,-73.75752,"(40.720036, -73.75752)",89 AVENUE,207 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500330,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,4:00,BROOKLYN,11233,40.67631,-73.91057,"(40.67631, -73.91057)",,,2260 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500467,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,20:20,BROOKLYN,11249,40.70113,-73.96087,"(40.70113, -73.96087)",WILLIAMSBURG STREET EAST,WYTHE AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501096,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,16:31,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4500952,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/06/2022,19:14,,,,,,GRAND ARMY PLAZA,VANDERBILT AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,Unspecified,,,4500483,Convertible,Sedan,Convertible,, +02/06/2022,21:02,BRONX,10467,40.871723,-73.8794,"(40.871723, -73.8794)",,,3038 HULL AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,16:38,BROOKLYN,11203,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,RUTLAND ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500962,Sedan,,,, +02/06/2022,16:20,QUEENS,11367,40.71935,-73.81104,"(40.71935, -73.81104)",,,152-18 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500457,Sedan,,,, +02/06/2022,15:40,QUEENS,11355,40.754375,-73.8234,"(40.754375, -73.8234)",BEECH AVENUE,KISSENA BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Passing Too Closely,,,,4500396,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,1:45,QUEENS,11694,40.58274,-73.83509,"(40.58274, -73.83509)",,,112-15 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4501025,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,8:35,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",70 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501045,Sedan,,,, +02/06/2022,21:24,BRONX,10456,40.830162,-73.9032,"(40.830162, -73.9032)",,,610 EAST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500663,Sedan,,,, +02/06/2022,14:16,BRONX,10456,40.833588,-73.91498,"(40.833588, -73.91498)",EAST 167 STREET,GRANT AVENUE,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4500906,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +02/06/2022,5:20,,,40.665268,-73.827705,"(40.665268, -73.827705)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4500497,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,15:36,,,40.831055,-73.905846,"(40.831055, -73.905846)",EAST 168 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500561,Sedan,,,, +02/04/2022,15:00,QUEENS,11374,40.726772,-73.870514,"(40.726772, -73.870514)",,,62-06 WOODHAVEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501120,Station Wagon/Sport Utility Vehicle,,,, +01/21/2022,10:55,BRONX,10460,40.845818,-73.88414,"(40.845818, -73.88414)",EAST 180 STREET,CROTONA PARKWAY,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4500990,Sedan,,,, +02/06/2022,1:55,,,40.660442,-73.95688,"(40.660442, -73.95688)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500574,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/29/2022,21:00,BRONX,10459,40.82593,-73.88944,"(40.82593, -73.88944)",,,1206 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501237,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,21:00,STATEN ISLAND,10310,40.638187,-74.10906,"(40.638187, -74.10906)",,,491 HENDERSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500997,Sedan,,,, +02/06/2022,2:30,BROOKLYN,11201,40.696033,-73.984535,"(40.696033, -73.984535)",TILLARY STREET,FLATBUSH AVENUE EXTENSION,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4500161,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,15:00,STATEN ISLAND,10306,40.56878,-74.10661,"(40.56878, -74.10661)",MILL ROAD,NEW DORP LANE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501089,Sedan,,,, +01/15/2022,5:09,QUEENS,11372,40.74763,-73.88394,"(40.74763, -73.88394)",82 STREET,ROOSEVELT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4501026,,,,, +02/06/2022,19:15,QUEENS,11363,40.766075,-73.74514,"(40.766075, -73.74514)",,,44-30 DOUGLASTON PARKWAY,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4500438,Sedan,,,, +02/06/2022,8:00,BRONX,10472,40.830666,-73.85268,"(40.830666, -73.85268)",,,2114 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500707,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,4:40,BRONX,10457,40.850307,-73.88644,"(40.850307, -73.88644)",EAST 182 STREET,CROTONA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500321,Sedan,,,, +02/06/2022,16:30,BRONX,10474,40.81788,-73.88778,"(40.81788, -73.88778)",,,1220 GILBERT PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500690,Sedan,Sedan,,, +01/31/2022,12:25,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4501054,Sedan,,,, +01/29/2022,10:15,BRONX,10463,,,,,,2727 HENRY HUDSON PARKWAY,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500953,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,15:24,BROOKLYN,11229,40.608917,-73.95216,"(40.608917, -73.95216)",EAST 21 STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,4:15,BROOKLYN,11211,,,,STEWART AVENUE,GRAND STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4500531,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,23:00,QUEENS,11414,,,,,,88-31 SHORE PARKWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500880,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,3:20,,,40.69826,-73.77745,"(40.69826, -73.77745)",110 AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,Unspecified,,4500595,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +02/06/2022,11:43,BROOKLYN,11237,40.706062,-73.91626,"(40.706062, -73.91626)",CYPRESS AVENUE,STOCKHOLM STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500347,Sedan,,,, +02/06/2022,16:43,,,40.656914,-73.95315,"(40.656914, -73.95315)",WINTHROP STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500389,Sedan,,,, +01/12/2022,22:35,BROOKLYN,11215,40.675175,-73.98471,"(40.675175, -73.98471)",4 AVENUE,1 STREET,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4501219,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,2:50,,,,,,PELHAM PARKWAY NORTH,STILLWELL AVENUE,,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,,,,,4500223,Sedan,,,, +01/31/2022,19:02,QUEENS,11423,40.70992,-73.773155,"(40.70992, -73.773155)",186 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4501142,Sedan,Sedan,,, +02/06/2022,2:30,,,40.66077,-73.89551,"(40.66077, -73.89551)",NEW LOTS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500636,Sedan,Sedan,,, +02/06/2022,22:50,QUEENS,11435,40.70629,-73.81298,"(40.70629, -73.81298)",143 STREET,87 ROAD,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4500463,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/30/2022,2:55,STATEN ISLAND,10306,40.584015,-74.1025,"(40.584015, -74.1025)",SOUTH RAILROAD AVENUE,JEFFERSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4501083,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,10:16,BROOKLYN,11204,40.614628,-73.99641,"(40.614628, -73.99641)",,,1759 74 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500356,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,16:31,,,,,,NEW ENGLAND THRUWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4500397,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/06/2022,7:45,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4500907,Sedan,,,, +02/06/2022,2:38,QUEENS,11368,40.753014,-73.87162,"(40.753014, -73.87162)",,,35-43 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500732,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,7:30,BRONX,10469,40.880775,-73.854,"(40.880775, -73.854)",,,1011 EAST 219 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500763,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,0:26,MANHATTAN,10001,40.75202,-74.00473,"(40.75202, -74.00473)",11 AVENUE,WEST 28 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,Unspecified,,,4500212,Sedan,Sedan,Taxi,, +02/06/2022,0:00,,,,,,MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500548,Sedan,Sedan,,, +02/06/2022,7:30,,,,,,BAY PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500296,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,11:20,QUEENS,11415,40.707096,-73.834984,"(40.707096, -73.834984)",METROPOLITAN AVENUE,118 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500662,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,0:08,BROOKLYN,11214,40.61278,-73.996605,"(40.61278, -73.996605)",18 AVENUE,76 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,15:30,BROOKLYN,11228,40.619263,-74.020905,"(40.619263, -74.020905)",85 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Illnes,Unspecified,,,,4500418,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,21:52,BRONX,10453,40.857216,-73.90458,"(40.857216, -73.90458)",,,2218 JEROME AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4500728,Sedan,,,, +02/06/2022,18:55,BRONX,10468,40.862755,-73.901085,"(40.862755, -73.901085)",JEROME AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500591,Sedan,,,, +02/06/2022,3:40,,,40.73968,-73.857315,"(40.73968, -73.857315)",102 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500337,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,10:20,BRONX,10452,40.845177,-73.91417,"(40.845177, -73.91417)",JEROME AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501044,Box Truck,Station Wagon/Sport Utility Vehicle,,, +01/31/2022,1:00,,,40.787857,-73.951614,"(40.787857, -73.951614)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4501009,Van,Van,,, +02/06/2022,16:00,QUEENS,11420,,,,116 STREET,149 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500469,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,21:31,MANHATTAN,10032,40.845367,-73.94053,"(40.845367, -73.94053)",FORT WASHINGTON AVENUE,WEST 173 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4500448,E-Bike,,,, +02/04/2022,13:49,,,40.672142,-73.7612,"(40.672142, -73.7612)",140 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500940,Sedan,Sedan,,, +02/05/2022,14:05,,,40.83801,-73.87329,"(40.83801, -73.87329)",BRONX RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Driver Inattention/Distraction,,,4500977,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,12:00,,,40.784145,-73.91257,"(40.784145, -73.91257)",21 STREET,,,0,0,0,0,0,0,0,0,,,,,,4500485,,,,, +02/06/2022,7:30,QUEENS,11422,,,,MERRICK BOULEVARD,HOOK CREEK BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4500331,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,4:55,,,40.7179,-73.83202,"(40.7179, -73.83202)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500283,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,20:30,QUEENS,11374,40.72963,-73.85558,"(40.72963, -73.85558)",99 STREET,65 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501062,Sedan,,,, +02/06/2022,22:25,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500678,Sedan,,,, +02/06/2022,20:15,STATEN ISLAND,10314,40.580616,-74.152534,"(40.580616, -74.152534)",RICHMOND HILL ROAD,FOREST HILL ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4500800,Sedan,,,, +02/06/2022,15:37,,,40.733376,-73.86665,"(40.733376, -73.86665)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500371,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,23:20,QUEENS,11421,40.69366,-73.85217,"(40.69366, -73.85217)",WOODHAVEN BOULEVARD,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500507,Sedan,Sedan,,, +02/06/2022,7:30,BROOKLYN,11203,40.653385,-73.93736,"(40.653385, -73.93736)",EAST 43 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500713,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,17:02,BRONX,10468,40.862457,-73.91086,"(40.862457, -73.91086)",,,2101 CEDAR AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500585,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,1:20,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4500277,Sedan,Sedan,,, +02/06/2022,1:00,,,40.843903,-73.927284,"(40.843903, -73.927284)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4500180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,13:40,,,40.594616,-73.99743,"(40.594616, -73.99743)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500425,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:14,,,40.72129,-73.94888,"(40.72129, -73.94888)",MANHATTAN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501194,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +02/06/2022,13:30,BROOKLYN,11233,40.674652,-73.909164,"(40.674652, -73.909164)",EASTERN PARKWAY,DEAN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500518,Sedan,,,, +02/06/2022,15:00,,,40.638584,-73.95376,"(40.638584, -73.95376)",FLATBUSH AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500376,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,9:01,MANHATTAN,10075,40.77496,-73.9589,"(40.77496, -73.9589)",LEXINGTON AVENUE,EAST 79 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501017,Sedan,Sedan,,, +02/04/2022,17:30,,,,,,JUNCTION BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501032,Taxi,,,, +02/05/2022,6:08,,,40.52418,-74.2348,"(40.52418, -74.2348)",SOUTH BRIDGE STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4500949,Sedan,,,, +02/04/2022,18:02,BROOKLYN,11203,40.653984,-73.927704,"(40.653984, -73.927704)",EAST 53 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Other Vehicular,Pavement Slippery,,,,4501099,Sedan,Sedan,,, +02/06/2022,13:35,,,40.862923,-73.92777,"(40.862923, -73.92777)",ARDEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500441,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,23:30,BROOKLYN,11226,40.645016,-73.950874,"(40.645016, -73.950874)",BEVERLEY ROAD,EAST 28 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500967,Sedan,,,, +02/04/2022,12:50,BROOKLYN,11201,40.689583,-73.99468,"(40.689583, -73.99468)",PACIFIC STREET,CLINTON STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4501169,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,14:16,BROOKLYN,11207,40.66531,-73.890305,"(40.66531, -73.890305)",BRADFORD STREET,LIVONIA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500637,Sedan,Sedan,,, +02/06/2022,6:17,,,40.844105,-73.898,"(40.844105, -73.898)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500322,Sedan,Sedan,Sedan,, +02/06/2022,15:00,BRONX,10472,40.83211,-73.862335,"(40.83211, -73.862335)",,,1272 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,18:50,,,40.561092,-74.16984,"(40.561092, -74.16984)",RICHMOND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4501082,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,14:37,,,,,,145 ST BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4500599,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,10:56,BROOKLYN,11236,40.640873,-73.90669,"(40.640873, -73.90669)",CONKLIN AVENUE,REMSEN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500294,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,10:00,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",KINGS HIGHWAY,ROCKAWAY PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500358,Sedan,,,, +07/09/2022,5:26,BRONX,10473,40.815,-73.85665,"(40.815, -73.85665)",,,437 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4544997,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +02/06/2022,21:00,QUEENS,11369,40.765064,-73.86463,"(40.765064, -73.86463)",,,27-01 BUTLER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500765,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,0:09,BROOKLYN,11212,40.66003,-73.92179,"(40.66003, -73.92179)",CLARKSON AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500255,Sedan,,,, +01/20/2022,9:55,MANHATTAN,10022,40.757008,-73.96388,"(40.757008, -73.96388)",EAST 55 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4501104,Station Wagon/Sport Utility Vehicle,,,, +02/01/2022,13:43,,,40.88521,-73.88716,"(40.88521, -73.88716)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4500954,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,0:00,QUEENS,11420,40.679005,-73.81259,"(40.679005, -73.81259)",115 AVENUE,127 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500496,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/28/2022,1:40,,,,,,VERRAZANO BRIDGE LOWER,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4501024,Sedan,Sedan,Sedan,, +01/19/2022,21:00,,,40.735424,-73.84466,"(40.735424, -73.84466)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4501027,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/06/2022,1:50,BROOKLYN,11230,40.632496,-73.96152,"(40.632496, -73.96152)",,,1647 GLENWOOD ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4500165,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,13:30,,,40.837875,-73.91971,"(40.837875, -73.91971)",JEROME AVENUE,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4501218,SUV,Sedan,,, +02/06/2022,21:00,,,40.71122,-73.72827,"(40.71122, -73.72827)",CROSS ISLAND PARKWAY,HEMPSTEAD AVENUE,,3,0,0,0,0,0,3,0,Other Vehicular,Unspecified,Unspecified,,,4500540,Convertible,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/06/2022,17:10,MANHATTAN,10018,40.752705,-73.990685,"(40.752705, -73.990685)",,,229 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500575,Sedan,Sedan,,, +02/04/2022,17:58,MANHATTAN,10022,40.756058,-73.96163,"(40.756058, -73.96163)",EAST 55 STREET,SUTTON PLACE SOUTH,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501090,Taxi,,,, +02/06/2022,10:38,QUEENS,11358,40.762093,-73.78729,"(40.762093, -73.78729)",39 AVENUE,195 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500437,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,5:13,,,40.85797,-73.87272,"(40.85797, -73.87272)",BRONX RIVER PARKWAY,,,0,1,0,0,0,0,0,1,Unsafe Speed,,,,,4500886,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,18:47,MANHATTAN,10027,40.81636,-73.954094,"(40.81636, -73.954094)",AMSTERDAM AVENUE,WEST 131 STREET,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4500460,Bike,Station Wagon/Sport Utility Vehicle,,, +02/01/2022,0:00,BROOKLYN,11205,40.69747,-73.97271,"(40.69747, -73.97271)",,,9 ADELPHI STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501148,Sedan,,,, +02/06/2022,6:00,QUEENS,11368,40.7366,-73.856674,"(40.7366, -73.856674)",,,98-15 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500565,Sedan,Sedan,,, +02/06/2022,10:18,,,40.69841,-73.913315,"(40.69841, -73.913315)",GATES AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500346,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,0:30,MANHATTAN,10036,40.7615,-73.997826,"(40.7615, -73.997826)",WEST 43 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4500206,Sedan,,,, +02/06/2022,8:00,BRONX,10469,40.876778,-73.8563,"(40.876778, -73.8563)",,,1009 EAST 213 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500693,Sedan,,,, +02/05/2022,12:27,,,40.651863,-73.86536,"(40.651863, -73.86536)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4500930,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +02/06/2022,19:15,BROOKLYN,11226,40.65584,-73.95011,"(40.65584, -73.95011)",,,1277 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500398,Sedan,,,, +02/06/2022,19:00,BROOKLYN,11217,40.684937,-73.97969,"(40.684937, -73.97969)",,,539 ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500385,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,21:50,QUEENS,11372,40.748676,-73.89455,"(40.748676, -73.89455)",37 AVENUE,71 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500733,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,18:00,QUEENS,11385,40.708992,-73.909706,"(40.708992, -73.909706)",FAIRVIEW AVENUE,HARMAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501118,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,0:20,,,40.72164,-73.989136,"(40.72164, -73.989136)",ALLEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500455,Bus,Box Truck,,, +02/06/2022,16:32,BROOKLYN,11229,40.600426,-73.941895,"(40.600426, -73.941895)",NOSTRAND AVENUE,AVENUE U,,1,0,0,0,1,0,0,0,Glare,Unspecified,,,,4500504,Sedan,Bike,,, +02/03/2022,12:55,MANHATTAN,10032,40.83593,-73.94352,"(40.83593, -73.94352)",BROADWAY,WEST 160 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4501052,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:15,MANHATTAN,10026,40.80316,-73.95256,"(40.80316, -73.95256)",,,1917 7 AVENUE,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4500999,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,14:40,BROOKLYN,11219,40.635372,-73.988174,"(40.635372, -73.988174)",46 STREET,14 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500525,Sedan,E-Scooter,,, +02/06/2022,13:30,MANHATTAN,10002,40.718555,-73.988205,"(40.718555, -73.988205)",DELANCEY STREET,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4500442,Taxi,Bike,,, +02/06/2022,7:00,BROOKLYN,11203,40.652462,-73.92285,"(40.652462, -73.92285)",CHURCH AVENUE,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500968,Sedan,,,, +02/06/2022,8:20,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4500987,Sedan,Station Wagon/Sport Utility Vehicle,,, +01/26/2022,17:06,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501010,Sedan,,,, +02/06/2022,9:57,BROOKLYN,11237,40.71242,-73.923874,"(40.71242, -73.923874)",SCHOLES STREET,SCOTT AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4500473,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,14:20,MANHATTAN,10036,40.7603,-73.99499,"(40.7603, -73.99499)",WEST 43 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4545064,Sedan,Sedan,,, +06/16/2022,8:30,,,40.67828,-73.958855,"(40.67828, -73.958855)",CLASSON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545419,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,19:20,QUEENS,11104,40.746353,-73.91617,"(40.746353, -73.91617)",48 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545131,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/09/2022,14:00,QUEENS,11102,40.77386,-73.93646,"(40.77386, -73.93646)",,,1-04 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4544962,Sedan,,,, +07/08/2022,7:05,QUEENS,11372,40.753242,-73.889694,"(40.753242, -73.889694)",77 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545365,Sedan,Bike,,, +07/09/2022,21:37,BRONX,10466,40.891136,-73.85527,"(40.891136, -73.85527)",BARNES AVENUE,EAST 231 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545399,,,,, +06/30/2022,15:30,STATEN ISLAND,10301,40.643497,-74.07418,"(40.643497, -74.07418)",,,1 RICHMOND TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545425,Station Wagon/Sport Utility Vehicle,,,, +07/09/2022,20:00,MANHATTAN,10027,40.81161,-73.95249,"(40.81161, -73.95249)",,,359 WEST 126 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545027,Sedan,,,, +07/04/2022,21:46,BROOKLYN,11222,40.721703,-73.95065,"(40.721703, -73.95065)",LORIMER STREET,DRIGGS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545478,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +01/02/2021,22:51,,,40.805557,-73.91047,"(40.805557, -73.91047)",BRUCKNER BOULEVARD,,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,,,,,4381003,Tractor Truck Diesel,,,, +04/11/2022,19:10,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4518745,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/12/2022,12:50,,,40.835724,-73.92129,"(40.835724, -73.92129)",EAST 167 STREET,,,10,0,0,0,0,0,10,0,Brakes Defective,Unspecified,Unspecified,Unspecified,Unspecified,4519368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/18/2022,20:44,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520748,Sedan,,,, +04/12/2022,1:50,QUEENS,11356,40.789314,-73.84188,"(40.789314, -73.84188)",9 AVENUE,126 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520729,Sedan,Sedan,,, +04/13/2022,17:00,BROOKLYN,11226,40.65008,-73.96101,"(40.65008, -73.96101)",OCEAN AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4520779,Sedan,,,, +04/10/2022,15:15,,,,,,,,79 EAST DRIVE,1,0,0,0,1,0,0,0,Driver Inexperience,,,,,4520772,Bike,,,, +11/18/2020,8:25,MANHATTAN,10034,40.862392,-73.91802,"(40.862392, -73.91802)",9 AVENUE,WEST 205 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478662,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,11:35,,,,,,UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4500745,Box Truck,Sedan,,, +04/25/2022,16:00,QUEENS,11355,0,0,"(0.0, 0.0)",142 STREET,56 ROAD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522009,Station Wagon/Sport Utility Vehicle,Bus,,, +04/25/2022,21:00,QUEENS,11385,40.708942,-73.918076,"(40.708942, -73.918076)",WILLOUGHBY AVENUE,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4522095,Station Wagon/Sport Utility Vehicle,,,, +03/19/2022,12:20,BROOKLYN,11233,40.68377,-73.92625,"(40.68377, -73.92625)",PATCHEN AVENUE,MACON STREET,,2,0,0,0,2,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522591,Sedan,E-Bike,,, +04/23/2022,1:37,BRONX,10452,40.835396,-73.92031,"(40.835396, -73.92031)",EAST 167 STREET,GERARD AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4522750,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,2:25,,,40.732033,-73.91893,"(40.732033, -73.91893)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4522319,Sedan,,,, +04/20/2022,18:30,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4522597,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,11:35,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4522033,Convertible,Sedan,,, +04/25/2022,7:50,QUEENS,11106,40.75839,-73.92909,"(40.75839, -73.92909)",,,30-18 35 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522687,Dump,Motorcycle,,, +04/25/2022,18:32,,,,,,BUSHWICK AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4522069,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,15:55,BRONX,10451,40.81764,-73.92371,"(40.81764, -73.92371)",,,247 EAST 149 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4522556,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,8:15,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4521964,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/18/2022,15:50,,,40.73975,-74.00253,"(40.73975, -74.00253)",WEST 14 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4522484,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/24/2022,21:45,,,40.790554,-73.82255,"(40.790554, -73.82255)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4522428,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,14:35,,,40.704746,-73.91404,"(40.704746, -73.91404)",CYPRESS AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4522727,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/08/2022,9:20,BROOKLYN,11233,40.67843,-73.91357,"(40.67843, -73.91357)",FULTON STREET,BOYLAND STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522478,Station Wagon/Sport Utility Vehicle,FIRE TRUCK,,, +04/21/2022,14:15,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4522536,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,11:04,,,,,,PELHAM PARKWAY NORTH,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522121,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,12:30,,,0,0,"(0.0, 0.0)",AMBOY ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4522159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,18:19,QUEENS,11373,0,0,"(0.0, 0.0)",,,79-01 BROADWAY,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522082,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +12/13/2021,19:13,,,,,,QUEENSBORO BRIDGE OUTER ROADWAY,,,1,0,0,0,0,0,1,0,Obstruction/Debris,,,,,4486274,Sedan,,,, +04/18/2022,15:04,MANHATTAN,10022,40.757072,-73.96986,"(40.757072, -73.96986)",3 AVENUE,EAST 52 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520162,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2022,5:55,QUEENS,11385,40.696796,-73.89678,"(40.696796, -73.89678)",SAINT FELIX AVENUE,60 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4520417,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,14:20,BROOKLYN,11219,40.638607,-73.993546,"(40.638607, -73.993546)",,,1156 46 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520228,Sedan,,,, +03/20/2022,12:00,QUEENS,11435,40.693077,-73.803825,"(40.693077, -73.803825)",SOUTH ROAD,LIVERPOOL STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4520674,Sedan,Sedan,Sedan,, +03/03/2022,6:10,MANHATTAN,10033,40.84954,-73.93641,"(40.84954, -73.93641)",BROADWAY,WEST 180 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520637,Sedan,,,, +04/18/2022,3:30,MANHATTAN,10022,40.759308,-73.9653,"(40.759308, -73.9653)",EAST 57 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519755,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,19:00,BROOKLYN,11219,40.626514,-73.99926,"(40.626514, -73.99926)",,,1347 63 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520203,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,5:50,BRONX,10466,40.895912,-73.84863,"(40.895912, -73.84863)",PITMAN AVENUE,BRUNER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520526,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,13:10,BRONX,10458,40.87134,-73.886925,"(40.87134, -73.886925)",VALENTINE AVENUE,EAST BEDFORD PARK BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4520271,Van,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,14:00,BROOKLYN,11238,40.68432,-73.967064,"(40.68432, -73.967064)",CLINTON AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520596,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,0:00,QUEENS,11001,40.7319,-73.71125,"(40.7319, -73.71125)",,,86-35 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,,,4519793,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/18/2022,10:00,QUEENS,11366,40.72442,-73.81063,"(40.72442, -73.81063)",76 ROAD,PARSONS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520295,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,12:11,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unsafe Lane Changing,,,,4520668,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/23/2021,0:20,QUEENS,11369,40.76546,-73.88149,"(40.76546, -73.88149)",24 AVENUE,88 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4520572,Sedan,,,, +04/18/2022,7:00,BROOKLYN,11215,40.67267,-73.99002,"(40.67267, -73.99002)",3 AVENUE,7 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4519898,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,1:49,BROOKLYN,11236,40.648098,-73.91727,"(40.648098, -73.91727)",,,227 EAST 88 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4520435,Sedan,Sedan,Sedan,, +04/05/2022,15:40,BRONX,10457,40.83937,-73.90418,"(40.83937, -73.90418)",,,432 CLAREMONT PARKWAY,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4520492,Station Wagon/Sport Utility Vehicle,,,, +04/01/2022,21:44,MANHATTAN,10011,40.74044,-74.00203,"(40.74044, -74.00203)",WEST 15 STREET,8 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520531,E-Scooter,Bike,,, +04/14/2022,19:30,MANHATTAN,10011,40.743317,-74.005104,"(40.743317, -74.005104)",,,412 WEST 17 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520551,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/18/2022,12:50,,,40.761547,-73.83113,"(40.761547, -73.83113)",MAIN STREET,,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4520100,Sedan,Bus,,, +04/18/2022,6:50,QUEENS,11361,40.757725,-73.779274,"(40.757725, -73.779274)",204 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520048,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,11:25,BROOKLYN,11207,40.668957,-73.898026,"(40.668957, -73.898026)",SUTTER AVENUE,ALABAMA AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4520087,Sedan,Sedan,,, +04/18/2022,10:00,QUEENS,11361,40.76283,-73.78473,"(40.76283, -73.78473)",201 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520051,Concrete Mixer,,,, +03/23/2022,16:49,QUEENS,11101,40.74982,-73.94129,"(40.74982, -73.94129)",42 ROAD,CRESCENT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520689,Sedan,,,, +04/18/2022,17:15,BROOKLYN,11204,40.613552,-73.98176,"(40.613552, -73.98176)",WEST 7 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520133,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,7:50,,,40.801754,-73.93121,"(40.801754, -73.93121)",EAST 125 STREET,,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4519956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,1:11,,,40.74091,-73.83727,"(40.74091, -73.83727)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544824,Sedan,Sedan,,, +09/27/2021,21:27,BROOKLYN,11208,40.669724,-73.86097,"(40.669724, -73.86097)",LINDEN BOULEVARD,DREW STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4463764,E-Bike,Bike,,, +11/09/2021,17:11,BROOKLYN,11212,40.65641,-73.90638,"(40.65641, -73.90638)",HEGEMAN AVENUE,THATFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4475938,Pick-up Truck,Bus,,, +11/09/2021,13:47,BROOKLYN,11218,0,0,"(0.0, 0.0)",AVENUE C,OCEAN PARKWAY,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4476118,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/11/2021,18:50,BROOKLYN,11238,40.67297,-73.96745,"(40.67297, -73.96745)",EASTERN PARKWAY,UNDERHILL AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4477117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:44,BRONX,10460,,,,EAST TREMONT AVENUE,MARMION AVENUE,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4469152,Station Wagon/Sport Utility Vehicle,Moped,,, +11/14/2021,4:58,MANHATTAN,10128,40.780506,-73.94425,"(40.780506, -73.94425)",EAST 93 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Speed,Unspecified,,,4478859,Taxi,,,, +04/18/2022,14:59,,,40.764362,-73.96162,"(40.764362, -73.96162)",EAST 65 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520550,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2022,20:05,BRONX,10454,40.80684,-73.9275,"(40.80684, -73.9275)",BRUCKNER BOULEVARD,ALEXANDER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,Unspecified,,,,4520260,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,19:10,BROOKLYN,11215,40.665894,-73.98124,"(40.665894, -73.98124)",,,567 10 STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4520316,Bike,,,, +04/17/2022,11:00,BRONX,10462,40.851196,-73.865326,"(40.851196, -73.865326)",,,31 ANTIN PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520566,Sedan,,,, +04/13/2022,15:30,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4520500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Pick-up Truck,, +04/14/2022,20:15,MANHATTAN,10011,40.74824,-74.00546,"(40.74824, -74.00546)",,,535 WEST 23 STREET,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4520556,Self Insur,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,9:40,BROOKLYN,11222,,,,,,473 VANDERVOORT AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4520024,Box Truck,Sedan,Tractor Truck Diesel,, +04/18/2022,13:27,,,,,,PLAZA DRIVE,MACOMBS ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520115,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,8:00,MANHATTAN,10022,40.759113,-73.974686,"(40.759113, -73.974686)",EAST 52 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520215,Taxi,Taxi,,, +04/06/2022,14:50,BRONX,10460,40.833126,-73.88917,"(40.833126, -73.88917)",,,1500 HOE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520491,Sedan,,,, +04/11/2022,16:00,,,40.784534,-73.9736,"(40.784534, -73.9736)",WEST 83 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520617,Sedan,Taxi,,, +04/18/2022,20:20,QUEENS,11004,40.753113,-73.71527,"(40.753113, -73.71527)",73 AVENUE,LANGSTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520143,Sedan,Pick-up Truck,,, +04/18/2022,20:51,,,,,,SHORE PARKWAY,KNAPP STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4520179,Sedan,,,, +04/18/2022,10:00,BROOKLYN,11201,40.691586,-73.98533,"(40.691586, -73.98533)",,,388 BRIDGE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520703,Sedan,FORKLIFT,,, +04/18/2022,11:00,QUEENS,11422,40.662357,-73.73517,"(40.662357, -73.73517)",248 STREET,MEMPHIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520061,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,20:45,MANHATTAN,10011,40.746815,-74.00607,"(40.746815, -74.00607)",,,515 WEST 21 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520595,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,12:00,QUEENS,11375,40.728954,-73.847565,"(40.728954, -73.847565)",67 AVENUE,108 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,,,,4520510,Sedan,Bike,,, +04/13/2022,15:15,MANHATTAN,10001,40.746082,-73.99636,"(40.746082, -73.99636)",,,261 WEST 25 STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520541,Sedan,Bike,,, +04/16/2022,6:47,BRONX,10461,40.840237,-73.837555,"(40.840237, -73.837555)",,,3003 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520585,Sedan,Box Truck,,, +12/13/2021,4:23,QUEENS,11103,40.766785,-73.91042,"(40.766785, -73.91042)",,,25-53 42 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486348,Sedan,,,, +12/13/2021,7:00,QUEENS,11101,40.757435,-73.94039,"(40.757435, -73.94039)",,,38-38 13 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4486355,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,18:10,,,,,,AMSTERDAM AVENUE,ELLINGTON PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500860,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/16/2021,13:30,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478070,PK,Sedan,,, +11/16/2021,10:00,QUEENS,11378,40.726166,-73.91028,"(40.726166, -73.91028)",,,58-60 55 DRIVE,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4478187,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:45,BRONX,10457,40.84299,-73.91099,"(40.84299, -73.91099)",MOUNT EDEN PARKWAY,SHERIDAN AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4478117,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,0:00,,,40.84028,-73.92741,"(40.84028, -73.92741)",UNIVERSITY AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478834,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,9:00,,,40.69638,-73.80424,"(40.69638, -73.80424)",LIBERTY AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4478591,Sedan,Box Truck,,, +11/04/2021,11:30,,,40.680313,-73.94332,"(40.680313, -73.94332)",DECATUR STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478558,Sedan,,,, +11/16/2021,1:50,,,40.71721,-73.93471,"(40.71721, -73.93471)",MASPETH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477772,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/16/2021,21:20,BROOKLYN,11211,40.70735,-73.959404,"(40.70735, -73.959404)",DIVISION AVENUE,WILSON STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4478094,Sedan,,,, +11/16/2021,9:00,,,40.738445,-73.939835,"(40.738445, -73.939835)",BORDEN AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478275,Sedan,,,, +11/16/2021,11:44,MANHATTAN,10021,40.770214,-73.95372,"(40.770214, -73.95372)",,,404 EAST 76 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4478147,Sedan,Bike,,, +04/18/2022,23:18,,,40.712006,-73.75811,"(40.712006, -73.75811)",202 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520678,Sedan,Sedan,,, +10/29/2021,11:54,,,40.6705,-73.94488,"(40.6705, -73.94488)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4478724,Sedan,,,, +11/16/2021,8:00,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",FARMERS BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4477896,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,10:54,BROOKLYN,11215,40.672768,-73.98672,"(40.672768, -73.98672)",5 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478152,Sedan,E-Bike,,, +11/07/2021,0:10,QUEENS,11432,40.708286,-73.78124,"(40.708286, -73.78124)",,,179-26 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478589,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/12/2021,23:45,MANHATTAN,10013,40.71787,-73.997116,"(40.71787, -73.997116)",MOTT STREET,HESTER STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478645,Station Wagon/Sport Utility Vehicle,Van,,, +11/16/2021,17:00,QUEENS,11427,40.728584,-73.7446,"(40.728584, -73.7446)",219 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478439,Sedan,,,, +11/16/2021,9:00,,,40.752335,-73.89771,"(40.752335, -73.89771)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477920,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,10:00,BROOKLYN,11234,40.620125,-73.94081,"(40.620125, -73.94081)",AVENUE M,KINGS HIGHWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478052,,,,, +11/16/2021,13:15,,,40.68592,-73.846924,"(40.68592, -73.846924)",97 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478196,Pick-up Truck,Sedan,,, +11/16/2021,23:10,,,40.847458,-73.944244,"(40.847458, -73.944244)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478207,Sedan,Sedan,,, +11/16/2021,10:20,BROOKLYN,11216,40.680706,-73.93978,"(40.680706, -73.93978)",,,90 DECATUR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478283,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,7:15,BRONX,10466,40.88922,-73.85969,"(40.88922, -73.85969)",WHITE PLAINS ROAD,EAST 227 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478349,Bus,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,14:44,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478027,Box Truck,Sedan,,, +11/16/2021,7:50,QUEENS,11434,40.680485,-73.774704,"(40.680485, -73.774704)",BAISLEY BOULEVARD,BEDELL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477985,Sedan,Sedan,,, +10/18/2021,12:21,,,40.82466,-73.870804,"(40.82466, -73.870804)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478688,Sedan,Tractor Truck Diesel,,, +11/16/2021,8:45,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478702,Sedan,,,, +11/13/2021,15:00,BROOKLYN,11233,40.676132,-73.921906,"(40.676132, -73.921906)",RALPH AVENUE,PACIFIC STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478772,Sedan,Sedan,,, +11/16/2021,4:00,,,40.67973,-73.76162,"(40.67973, -73.76162)",FARMERS BOULEVARD,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4477986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,18:30,,,40.576504,-74.1037,"(40.576504, -74.1037)",LINCOLN AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478620,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,9:30,MANHATTAN,10024,40.784973,-73.98264,"(40.784973, -73.98264)",RIVERSIDE DRIVE,WEST 79 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478044,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,9:10,QUEENS,11426,40.72867,-73.720924,"(40.72867, -73.720924)",88 ROAD,247 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477927,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,13:40,BRONX,10466,40.88851,-73.86009,"(40.88851, -73.86009)",WHITE PLAINS ROAD,EAST 226 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478346,E-Bike,Sedan,,, +11/16/2021,19:18,BRONX,10468,40.867916,-73.895615,"(40.867916, -73.895615)",,,2710 MORRIS AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4478139,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,17:39,BROOKLYN,11219,40.628654,-73.99517,"(40.628654, -73.99517)",14 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478160,Sedan,Sedan,,, +11/16/2021,12:56,,,40.676094,-73.94992,"(40.676094, -73.94992)",NOSTRAND AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478382,Sedan,,,, +11/16/2021,16:09,,,40.677265,-73.778625,"(40.677265, -73.778625)",129 AVENUE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478213,Sedan,Sedan,,, +11/16/2021,17:00,BROOKLYN,11203,40.64317,-73.9343,"(40.64317, -73.9343)",,,737 EAST 45 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478364,Van,Sedan,,, +11/16/2021,9:32,BROOKLYN,11219,40.631104,-73.9962,"(40.631104, -73.9962)",13 AVENUE,56 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4477956,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,15:45,,,40.637215,-73.93274,"(40.637215, -73.93274)",FARRAGUT ROAD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478032,Pick-up Truck,,,, +11/16/2021,18:59,,,40.809406,-73.8803,"(40.809406, -73.8803)",HALLECK STREET,FOOD CENTER DRIVE,,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4478105,Bike,,,, +11/15/2021,15:07,BRONX,10474,40.820297,-73.88707,"(40.820297, -73.88707)",,,919 BRYANT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478676,Ambulance,Bus,,, +11/13/2021,17:23,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478814,Sedan,Sedan,,, +11/16/2021,16:45,MANHATTAN,10032,40.833313,-73.94119,"(40.833313, -73.94119)",,,494 WEST 158 STREET,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478206,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,14:45,BRONX,10457,40.84869,-73.90329,"(40.84869, -73.90329)",EAST TREMONT AVENUE,ANTHONY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478547,Ambulance,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,7:02,BRONX,10473,40.821606,-73.87284,"(40.821606, -73.87284)",,,875 MORRISON AVENUE,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,Unspecified,,,4478689,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/16/2021,19:00,MANHATTAN,10000,40.781162,-73.96178,"(40.781162, -73.96178)",,,27 TRANSVERSE ROAD NUMBER THREE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478053,Station Wagon/Sport Utility Vehicle,,,, +10/28/2021,3:30,BROOKLYN,11210,40.632015,-73.941765,"(40.632015, -73.941765)",AVENUE H,BROOKLYN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4478753,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/16/2021,0:00,QUEENS,11414,40.66252,-73.84071,"(40.66252, -73.84071)",CROSS BAY BOULEVARD,157 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478080,Sedan,,,, +11/12/2021,9:57,,,,,,Shea Road,Grand Central Parkway,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478628,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/16/2021,12:20,,,40.693863,-73.92971,"(40.693863, -73.92971)",BROADWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477996,Sedan,Tractor Truck Diesel,,, +11/15/2021,15:45,,,40.8464,-73.89338,"(40.8464, -73.89338)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478522,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +11/16/2021,7:29,BROOKLYN,11236,40.652313,-73.908226,"(40.652313, -73.908226)",BRISTOL STREET,DITMAS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4478258,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/16/2021,14:00,,,40.841064,-73.84126,"(40.841064, -73.84126)",WESTCHESTER AVENUE,BLONDELL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478320,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/12/2021,9:30,BROOKLYN,11212,40.668613,-73.90905,"(40.668613, -73.90905)",,,36 BELMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478778,Sedan,,,, +11/14/2021,10:50,BRONX,10457,40.842194,-73.89262,"(40.842194, -73.89262)",,,1805 CLINTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478504,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/13/2021,18:50,BROOKLYN,11212,40.669117,-73.905716,"(40.669117, -73.905716)",BELMONT AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478606,Sedan,Sedan,,, +11/16/2021,18:24,,,40.78958,-73.97548,"(40.78958, -73.97548)",WEST 88 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478130,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/14/2021,3:33,,,40.67632,-73.763435,"(40.67632, -73.763435)",FARMERS BOULEVARD,134 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478567,Pick-up Truck,Sedan,,, +11/16/2021,10:40,BROOKLYN,11238,40.677853,-73.96881,"(40.677853, -73.96881)",,,618 VANDERBILT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478153,Box Truck,Sedan,,, +11/16/2021,22:50,,,40.703934,-73.959854,"(40.703934, -73.959854)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478090,Sedan,,,, +11/16/2021,20:14,QUEENS,11418,40.7011,-73.84157,"(40.7011, -73.84157)",PARK LANE SOUTH,MYRTLE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478201,Sedan,Sedan,,, +10/29/2021,17:37,STATEN ISLAND,10305,40.607357,-74.06521,"(40.607357, -74.06521)",,,24 JUDITH COURT,0,0,0,0,0,0,0,0,Unspecified,,,,,4478669,Sedan,,,, +11/16/2021,11:58,,,,,,MARINE PARKWAY BRIDGE,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478057,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/14/2021,16:06,BROOKLYN,11233,40.676548,-73.90807,"(40.676548, -73.90807)",,,1871 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4478535,Sedan,,,, +11/07/2021,16:00,BRONX,10462,40.82973,-73.84539,"(40.82973, -73.84539)",,,2341 BLACKROCK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478693,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,15:39,BRONX,10451,40.81722,-73.91924,"(40.81722, -73.91924)",COURTLANDT AVENUE,EAST 150 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478173,Bus,Sedan,,, +11/16/2021,13:57,BROOKLYN,11229,40.599533,-73.95558,"(40.599533, -73.95558)",,,2083 EAST 16 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478096,Sedan,,,, +11/16/2021,18:18,BROOKLYN,11231,40.675842,-73.99905,"(40.675842, -73.99905)",HUNTINGTON STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478174,Sedan,,,, +11/16/2021,15:49,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",EAST 116 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478148,Sedan,Moped,,, +11/10/2021,23:30,MANHATTAN,10128,40.781387,-73.95213,"(40.781387, -73.95213)",EAST 90 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4478579,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/16/2021,6:10,BROOKLYN,11220,40.63396,-74.01476,"(40.63396, -74.01476)",65 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4477821,Sedan,,,, +11/11/2021,20:00,QUEENS,11418,40.7006,-73.83246,"(40.7006, -73.83246)",BESSEMER STREET,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4478634,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/01/2021,20:20,,,40.72707,-73.75457,"(40.72707, -73.75457)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478733,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,16:29,BROOKLYN,11203,40.660786,-73.93982,"(40.660786, -73.93982)",ALBANY AVENUE,MIDWOOD STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4478075,Bus,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/16/2021,15:25,,,,,,TRIBOROUGH BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4478485,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/16/2021,19:35,,,40.632065,-73.91861,"(40.632065, -73.91861)",RALPH AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,18:59,BRONX,10472,40.8283,-73.88296,"(40.8283, -73.88296)",BRONX RIVER AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478692,Sedan,Tractor Truck Diesel,,, +11/05/2021,13:10,BROOKLYN,11221,40.69122,-73.93969,"(40.69122, -73.93969)",LAFAYETTE AVENUE,MARCUS GARVEY BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478557,Sedan,,,, +11/16/2021,7:45,MANHATTAN,10028,40.778225,-73.95863,"(40.778225, -73.95863)",PARK AVENUE,EAST 83 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Driver Inattention/Distraction,,,,4477903,Bike,,,, +11/15/2021,15:30,,,0,0,"(0.0, 0.0)",162 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478590,Bike,,,, +11/16/2021,7:23,BROOKLYN,11234,,,,Flatbush Ave,Belt parkway,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4478056,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,16:25,,,40.761486,-73.96061,"(40.761486, -73.96061)",EAST 62 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478149,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/01/2021,14:40,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4478647,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/16/2021,12:00,BROOKLYN,11238,40.682487,-73.96219,"(40.682487, -73.96219)",,,966 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478091,Van,Sedan,,, +11/16/2021,13:00,BROOKLYN,11236,40.63701,-73.91495,"(40.63701, -73.91495)",GLENWOOD ROAD,EAST 80 STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4478421,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Sedan,, +11/15/2021,13:20,,,40.846565,-73.92589,"(40.846565, -73.92589)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4478534,Sedan,Box Truck,,, +11/16/2021,17:00,,,40.611404,-74.00952,"(40.611404, -74.00952)",15 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478121,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,23:30,BRONX,10460,40.831463,-73.887955,"(40.831463, -73.887955)",,,981 JENNINGS STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478836,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,15:50,BRONX,10473,40.824207,-73.858795,"(40.824207, -73.858795)",WHITE PLAINS ROAD,STORY AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4478703,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,15:30,STATEN ISLAND,10306,40.575165,-74.12785,"(40.575165, -74.12785)",RICHMOND ROAD,CRANFORD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478626,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:28,,,40.699818,-73.920135,"(40.699818, -73.920135)",HIMROD STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4477995,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,14:35,MANHATTAN,10035,40.800117,-73.94052,"(40.800117, -73.94052)",,,1903 LEXINGTON AVENUE,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478023,Taxi,Bike,,, +11/16/2021,10:26,BROOKLYN,11213,40.668797,-73.93113,"(40.668797, -73.93113)",UTICA AVENUE,EASTERN PARKWAY,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478223,Sedan,E-Bike,,, +11/15/2021,11:50,,,40.834114,-73.86327,"(40.834114, -73.86327)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4478697,Sedan,,,, +11/16/2021,20:08,QUEENS,11363,40.76226,-73.75699,"(40.76226, -73.75699)",NORTHERN BOULEVARD,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478071,Sedan,Sedan,,, +11/16/2021,7:14,BROOKLYN,11203,40.644432,-73.9296,"(40.644432, -73.9296)",CLARENDON ROAD,UTICA AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478377,Sedan,E-Scooter,,, +10/20/2021,17:33,,,40.87335,-73.92875,"(40.87335, -73.92875)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4478660,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,11:40,QUEENS,11364,40.748802,-73.75045,"(40.748802, -73.75045)",64 AVENUE,CLOVERDALE BOULEVARD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4477957,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,19:12,BRONX,10454,40.806587,-73.91041,"(40.806587, -73.91041)",,,745 EAST 141 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478186,Sedan,,,, +11/16/2021,10:45,BROOKLYN,11212,40.661118,-73.91861,"(40.661118, -73.91861)",EAST 98 STREET,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478259,Moped,,,, +11/16/2021,6:50,,,40.722584,-73.8509,"(40.722584, -73.8509)",YELLOWSTONE BOULEVARD,AUSTIN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478008,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,17:16,QUEENS,11102,40.77517,-73.92905,"(40.77517, -73.92905)",12 STREET,26 AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4478103,Motorcycle,,,, +11/06/2021,13:30,QUEENS,11416,40.689095,-73.84047,"(40.689095, -73.84047)",104 STREET,95 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478550,Sedan,,,, +10/30/2021,19:50,,,,,,WEST STREET,BROOKLYN BATTERY TUNNEL,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478601,Sedan,Sedan,,, +11/16/2021,15:31,,,40.668648,-73.92835,"(40.668648, -73.92835)",ROCHESTER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478385,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,18:09,,,40.63552,-74.0167,"(40.63552, -74.0167)",65 STREET,6 AVENUE,,2,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478066,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/16/2021,23:40,QUEENS,11692,40.59763,-73.788376,"(40.59763, -73.788376)",,,434 BEACH 58 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Aggressive Driving/Road Rage,,,,4478109,Sedan,Sedan,,, +11/16/2021,9:00,BRONX,10456,40.838066,-73.90314,"(40.838066, -73.90314)",,,1480 WASHINGTON AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4478829,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,16:05,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4478812,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/11/2021,22:30,BROOKLYN,11210,40.62672,-73.93644,"(40.62672, -73.93644)",,,1900 ALBANY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478683,Sedan,Sedan,,, +11/15/2021,15:00,BROOKLYN,11208,40.66993,-73.8807,"(40.66993, -73.8807)",ESSEX STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478538,Sedan,,,, +11/12/2021,15:30,BROOKLYN,11212,40.67206,-73.9036,"(40.67206, -73.9036)",GLENMORE AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478758,Sedan,Sedan,,, +11/16/2021,19:09,,,40.691353,-73.92142,"(40.691353, -73.92142)",LINDEN STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478211,Sedan,E-Bike,,, +11/16/2021,8:45,QUEENS,11368,40.742683,-73.85115,"(40.742683, -73.85115)",,,54-12 111 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4477918,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,18:40,BRONX,10466,40.89417,-73.856964,"(40.89417, -73.856964)",WHITE PLAINS ROAD,EAST 234 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478355,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,16:10,QUEENS,11354,40.77452,-73.81966,"(40.77452, -73.81966)",147 STREET,26 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478046,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,20:00,QUEENS,11104,40.745014,-73.92214,"(40.745014, -73.92214)",,,43-50 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478273,Sedan,,,, +11/16/2021,14:30,QUEENS,11104,40.738537,-73.927246,"(40.738537, -73.927246)",,,49-11 39 STREET,1,0,0,0,0,0,0,0,Unspecified,,,,,4478191,E-Scooter,,,, +11/16/2021,18:13,,,40.86309,-73.88946,"(40.86309, -73.88946)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4478138,Sedan,,,, +11/16/2021,22:19,BRONX,10456,40.832733,-73.89802,"(40.832733, -73.89802)",BOSTON ROAD,CROTONA AVENUE,,2,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478824,E-Bike,E-Bike,,, +11/16/2021,20:00,BROOKLYN,11219,40.633083,-74.00558,"(40.633083, -74.00558)",60 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478617,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,11:35,,,40.64711,-73.972534,"(40.64711, -73.972534)",FRIEL PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478159,Sedan,,,, +11/02/2021,0:15,BROOKLYN,11207,40.673027,-73.897026,"(40.673027, -73.897026)",,,366 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478539,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/16/2021,8:54,QUEENS,11420,40.66614,-73.82326,"(40.66614, -73.82326)",118 STREET,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478079,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,21:01,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4478379,Sedan,,,, +11/16/2021,18:00,BROOKLYN,11228,40.617813,-74.00644,"(40.617813, -74.00644)",14 AVENUE,77 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478508,E-Bike,Sedan,,, +11/16/2021,21:05,MANHATTAN,10029,40.786175,-73.9457,"(40.786175, -73.9457)",EAST 99 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,18:45,BROOKLYN,11216,40.686577,-73.947464,"(40.686577, -73.947464)",MARCY AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478279,Sedan,Sedan,,, +11/16/2021,9:34,,,40.77437,-73.963554,"(40.77437, -73.963554)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4477925,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/16/2021,7:27,BRONX,10451,40.81219,-73.92875,"(40.81219, -73.92875)",,,213 EAST 138 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478169,Sedan,Bus,,, +11/16/2021,9:48,,,40.67502,-73.86133,"(40.67502, -73.86133)",CONDUIT AVENUE,RUBY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4478026,Sedan,Sedan,Sedan,, +11/16/2021,7:20,BRONX,10451,40.822304,-73.91485,"(40.822304, -73.91485)",EAST 158 STREET,MELROSE AVENUE,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4478176,Taxi,E-Bike,,, +11/16/2021,16:37,BROOKLYN,11225,40.663517,-73.957214,"(40.663517, -73.957214)",BEDFORD AVENUE,EMPIRE BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478074,Sedan,,,, +11/16/2021,22:26,,,40.80256,-73.943,"(40.80256, -73.943)",EAST 120 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478164,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,13:40,STATEN ISLAND,10301,40.641323,-74.07594,"(40.641323, -74.07594)",,,30 BAY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478562,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,16:07,,,40.826515,-73.917946,"(40.826515, -73.917946)",EAST 162 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478125,Bus,Sedan,,, +11/10/2021,10:15,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478580,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,1:15,QUEENS,11416,40.681984,-73.84977,"(40.681984, -73.84977)",90 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477837,Sedan,Sedan,,, +10/30/2021,23:35,BROOKLYN,11218,40.646378,-73.97085,"(40.646378, -73.97085)",CONEY ISLAND AVENUE,CHURCH AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478637,Carry All,Bike,,, +11/16/2021,17:45,,,0,0,"(0.0, 0.0)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478484,Sedan,Sedan,,, +11/08/2021,17:50,,,,,,AVENUE D,LINDEN BLVD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478730,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,0:00,BRONX,10472,40.82861,-73.87897,"(40.82861, -73.87897)",,,1523 WESTCHESTER AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4478698,Sedan,,,, +11/16/2021,17:45,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4478261,Station Wagon/Sport Utility Vehicle,Sedan,Box Truck,, +11/16/2021,1:08,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,EAST 54 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4478007,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,7:47,,,40.709305,-73.84369,"(40.709305, -73.84369)",UNION TURNPIKE,METROPOLITAN AVENUE,,3,0,0,0,0,0,3,0,Turning Improperly,Unspecified,Unspecified,,,4478011,Station Wagon/Sport Utility Vehicle,Sedan,Bus,, +11/16/2021,15:54,MANHATTAN,10032,40.83504,-73.9453,"(40.83504, -73.9453)",,,609 WEST 158 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478202,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,15:00,STATEN ISLAND,10310,40.634438,-74.11864,"(40.634438, -74.11864)",,,1077 CASTLETON AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478633,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,11:54,BRONX,10474,40.823017,-73.88271,"(40.823017, -73.88271)",BRONX RIVER AVENUE,BRUCKNER EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478031,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,8:49,,,40.66955,-73.94497,"(40.66955, -73.94497)",BROOKLYN AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478227,Station Wagon/Sport Utility Vehicle,Bike,,, +11/07/2021,16:00,BROOKLYN,11226,40.641624,-73.949585,"(40.641624, -73.949585)",,,374 EAST 29 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478668,Sedan,,,, +11/16/2021,15:30,,,40.63073,-74.01734,"(40.63073, -74.01734)",7 AVENUE,OVINGTON AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4478065,Taxi,,,, +11/16/2021,8:19,BRONX,10465,40.84566,-73.816284,"(40.84566, -73.816284)",,,202 OUTLOOK AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478329,Bus,Sedan,,, +11/03/2021,13:30,BRONX,10462,,,,,,45 Hugh j grant circle,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4478696,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,0:30,QUEENS,11368,40.757835,-73.86092,"(40.757835, -73.86092)",,,108-01 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4477936,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,20:00,MANHATTAN,10032,40.83406,-73.944885,"(40.83406, -73.944885)",WEST 157 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478203,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,16:59,QUEENS,11432,40.712936,-73.78263,"(40.712936, -73.78263)",HILLSIDE AVENUE,180 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478304,Sedan,Sedan,Sedan,, +11/16/2021,22:45,,,40.659336,-73.92726,"(40.659336, -73.92726)",WINTHROP STREET,EAST 54 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478367,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,8:25,,,,,,ROCKAWAY BOULEVARD,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477973,Tractor Truck Diesel,Sedan,,, +11/16/2021,14:13,BROOKLYN,11212,40.662388,-73.92566,"(40.662388, -73.92566)",,,114 EAST 94 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478030,Sedan,,,, +11/06/2021,7:38,QUEENS,11694,40.58176,-73.85029,"(40.58176, -73.85029)",BEACH 128 STREET,BEACH CHANNEL DRIVE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478685,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,0:00,BRONX,10460,40.836384,-73.87039,"(40.836384, -73.87039)",,,1719 CROSS BRONX EXPRESSWAY,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4478691,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/16/2021,9:17,BROOKLYN,11229,40.61061,-73.95671,"(40.61061, -73.95671)",AVENUE P,EAST 17 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478055,Sedan,,,, +11/16/2021,17:05,,,40.68405,-73.98157,"(40.68405, -73.98157)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478150,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,22:59,STATEN ISLAND,10304,40.61613,-74.08636,"(40.61613, -74.08636)",,,130 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4478670,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/16/2021,11:35,BROOKLYN,11218,40.635674,-73.97265,"(40.635674, -73.97265)",,,507 OCEAN PARKWAY,1,0,1,0,0,0,0,0,Unspecified,,,,,4478450,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,19:00,QUEENS,11421,40.68775,-73.857414,"(40.68775, -73.857414)",91 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478625,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,11:04,MANHATTAN,10030,40.82016,-73.94156,"(40.82016, -73.94156)",,,214 WEST 142 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477991,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,22:10,,,40.76332,-73.77385,"(40.76332, -73.77385)",41 AVENUE,,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,Unspecified,,,4478072,Convertible,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/16/2021,8:01,QUEENS,11373,40.74008,-73.87698,"(40.74008, -73.87698)",,,87-05 CORONA AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477924,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/16/2021,9:13,QUEENS,11354,40.767254,-73.83407,"(40.767254, -73.83407)",MILLER STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478047,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,8:25,MANHATTAN,10023,40.77353,-73.98534,"(40.77353, -73.98534)",WEST 64 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4478742,Taxi,Bus,,, +11/16/2021,14:31,QUEENS,11419,40.68892,-73.835335,"(40.68892, -73.835335)",,,97-15 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478198,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/16/2021,14:40,QUEENS,11414,40.657497,-73.83947,"(40.657497, -73.83947)",CROSS BAY BOULEVARD,160 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478036,Sedan,Sedan,,, +11/16/2021,16:45,QUEENS,11368,40.738174,-73.86547,"(40.738174, -73.86547)",,,55-18 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478839,Sedan,,,, +04/18/2022,15:13,BROOKLYN,11229,40.6011,-73.93562,"(40.6011, -73.93562)",,,3082 AVENUE U,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520239,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,16:15,BRONX,10465,40.828175,-73.8239,"(40.828175, -73.8239)",,,3630 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478333,Box Truck,,,, +11/16/2021,10:30,BROOKLYN,11211,40.705215,-73.95282,"(40.705215, -73.95282)",,,56 HARRISON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478092,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,23:55,QUEENS,11412,40.700306,-73.766,"(40.700306, -73.766)",HANNIBAL STREET,MANGIN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Traffic Control Disregarded,Unspecified,,,4478218,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/16/2021,17:51,BRONX,10466,40.899246,-73.84609,"(40.899246, -73.84609)",BAYCHESTER AVENUE,NEREID AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4478354,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/16/2021,8:25,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478277,Sedan,Sedan,,, +11/16/2021,15:20,,,40.79856,-73.96336,"(40.79856, -73.96336)",WEST 105 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4478144,Sedan,,,, +11/12/2021,11:15,MANHATTAN,10003,40.732586,-73.98962,"(40.732586, -73.98962)",,,111 EAST 12 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478533,Taxi,Box Truck,,, +11/10/2021,19:24,,,40.741394,-73.82303,"(40.741394, -73.82303)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478658,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,14:20,,,40.66669,-73.81173,"(40.66669, -73.81173)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478083,Sedan,Sedan,,, +11/11/2021,14:00,,,40.69312,-73.83134,"(40.69312, -73.83134)",,,115 STREET,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478552,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/16/2021,18:45,QUEENS,11367,40.738857,-73.816086,"(40.738857, -73.816086)",REEVES AVENUE,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478078,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,6:20,MANHATTAN,10026,40.80003,-73.954865,"(40.80003, -73.954865)",7 AVENUE,WEST 111 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477904,Station Wagon/Sport Utility Vehicle,E-Bike,,, +10/22/2021,16:05,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4478583,Sedan,Sedan,,, +11/05/2021,18:09,BROOKLYN,11233,40.67398,-73.911156,"(40.67398, -73.911156)",ROCKAWAY AVENUE,BERGEN STREET,,1,0,1,0,0,0,0,0,,,,,,4478770,E-Scooter,,,, +11/16/2021,0:57,BRONX,10453,40.849453,-73.906006,"(40.849453, -73.906006)",GRAND CONCOURSE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478024,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,15:00,BROOKLYN,11211,40.7198,-73.953476,"(40.7198, -73.953476)",DRIGGS AVENUE,NORTH 12 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478110,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,10:25,BRONX,10473,40.81594,-73.85472,"(40.81594, -73.85472)",LACOMBE AVENUE,BARRETT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478706,Sedan,Box Truck,,, +10/29/2021,1:15,MANHATTAN,10040,40.859524,-73.93209,"(40.859524, -73.93209)",,,295 BENNETT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478648,Garbage or Refuse,Tractor Truck Gasoline,,, +11/16/2021,19:20,BRONX,10453,40.850857,-73.90765,"(40.850857, -73.90765)",EAST TREMONT AVENUE,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4478499,Motorscooter,Sedan,,, +11/16/2021,19:01,MANHATTAN,10003,40.731964,-73.98816,"(40.731964, -73.98816)",EAST 12 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478122,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,17:24,BROOKLYN,11211,40.710335,-73.95871,"(40.710335, -73.95871)",,,241 SOUTH 4 STREET,2,0,1,0,0,0,1,0,Failure to Yield Right-of-Way,,,,,4478800,Moped,,,, +11/16/2021,6:00,BROOKLYN,11236,40.637505,-73.914185,"(40.637505, -73.914185)",GLENWOOD ROAD,EAST 81 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478190,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/18/2021,19:55,BROOKLYN,11213,,,,FULTON STREET,ALBANY AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Unspecified,,,,4478509,Moped,Bike,,, +11/16/2021,10:30,QUEENS,11101,40.751602,-73.93384,"(40.751602, -73.93384)",40 AVENUE,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4478100,Sedan,Sedan,,, +11/16/2021,14:29,BROOKLYN,11228,40.621243,-74.01363,"(40.621243, -74.01363)",78 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478067,Station Wagon/Sport Utility Vehicle,Bike,,, +11/12/2021,8:20,BROOKLYN,11233,40.6714,-73.91328,"(40.6714, -73.91328)",,,1932 PARK PLACE,0,0,0,0,0,0,0,0,Fatigued/Drowsy,Unspecified,,,,4478572,Sedan,Sedan,,, +11/16/2021,7:30,MANHATTAN,10031,40.825954,-73.94337,"(40.825954, -73.94337)",SAINT NICHOLAS AVENUE,WEST 148 STREET,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478597,Pick-up Truck,E-Scooter,,, +11/16/2021,18:18,,,40.69798,-73.91257,"(40.69798, -73.91257)",IRVING AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478209,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/16/2021,12:47,MANHATTAN,10023,40.769905,-73.98057,"(40.769905, -73.98057)",WEST 62 STREET,CENTRAL PARK WEST,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478392,Bike,,,, +11/16/2021,16:56,BRONX,10458,40.863026,-73.89058,"(40.863026, -73.89058)",,,2600 DECATUR AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478137,Station Wagon/Sport Utility Vehicle,,,, +11/09/2021,16:15,BRONX,10456,40.829044,-73.91112,"(40.829044, -73.91112)",EAST 166 STREET,BROOK AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4478830,Sedan,Sedan,,, +11/16/2021,7:55,BRONX,10451,40.813663,-73.931244,"(40.813663, -73.931244)",MAJOR DEEGAN EXPRESSWAY,EAST 138 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478171,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,19:27,BROOKLYN,11226,40.65243,-73.95362,"(40.65243, -73.95362)",,,146 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4478667,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,15:30,,,40.67798,-73.872116,"(40.67798, -73.872116)",LIBERTY AVENUE,CONDUIT BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Turning Improperly,,,,4478537,Station Wagon/Sport Utility Vehicle,Bus,,, +11/04/2021,16:30,BROOKLYN,11213,40.677563,-73.93309,"(40.677563, -73.93309)",ATLANTIC AVENUE,SCHENECTADY AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478721,Moped,Sedan,,, +11/16/2021,6:45,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478177,Sedan,Sedan,,, +11/16/2021,0:00,BRONX,10472,40.833965,-73.8629,"(40.833965, -73.8629)",WHITE PLAINS ROAD,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478699,Sedan,Van,,, +11/16/2021,14:50,BROOKLYN,11208,40.66947,-73.86246,"(40.66947, -73.86246)",,,2724 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478540,Station Wagon/Sport Utility Vehicle,Bus,,, +11/16/2021,1:20,,,40.70789,-73.84652,"(40.70789, -73.84652)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4477847,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,22:14,,,40.710175,-74.001144,"(40.710175, -74.001144)",PEARL STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4478642,Sedan,Sedan,,, +11/16/2021,16:30,,,40.639706,-74.13909,"(40.639706, -74.13909)",NICHOLAS AVENUE,RICHMOND TERRACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4478575,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/16/2021,9:08,QUEENS,11419,40.686234,-73.82418,"(40.686234, -73.82418)",LIBERTY AVENUE,LEFFERTS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478082,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,6:25,,,40.706264,-73.75866,"(40.706264, -73.75866)",HOLLIS AVENUE,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4478264,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,13:15,MANHATTAN,10025,40.794918,-73.97035,"(40.794918, -73.97035)",,,166 WEST 97 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478019,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:30,MANHATTAN,10010,40.74113,-73.989876,"(40.74113, -73.989876)",,,175 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478230,Station Wagon/Sport Utility Vehicle,Bike,,, +11/16/2021,14:30,STATEN ISLAND,10304,40.591633,-74.100975,"(40.591633, -74.100975)",,,1551 RICHMOND ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4478615,Sedan,,,, +11/16/2021,17:09,BRONX,10458,40.86052,-73.89257,"(40.86052, -73.89257)",EAST 189 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478502,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +11/16/2021,21:42,BRONX,10468,40.862812,-73.907555,"(40.862812, -73.907555)",WEST FORDHAM ROAD,LORING PLACE NORTH,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478143,Sedan,,,, +11/16/2021,14:25,BROOKLYN,11215,40.669495,-73.98169,"(40.669495, -73.98169)",,,419 6 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478157,Sedan,,,, +11/16/2021,14:57,BROOKLYN,11212,40.663555,-73.92136,"(40.663555, -73.92136)",,,144 EAST 98 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4478380,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan +11/16/2021,12:36,,,40.75144,-73.97397,"(40.75144, -73.97397)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478199,Pick-up Truck,Sedan,,, +11/16/2021,16:00,QUEENS,11413,40.673763,-73.74509,"(40.673763, -73.74509)",227 STREET,137 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478034,Sedan,Sedan,,, +11/16/2021,11:16,,,40.7488,-73.96986,"(40.7488, -73.96986)",EAST 42 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478063,Taxi,Sedan,,, +11/16/2021,8:00,,,40.8252,-73.867714,"(40.8252, -73.867714)",BRUCKNER BOULEVARD,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478695,Ambulance,Sedan,,, +11/16/2021,9:30,MANHATTAN,10025,40.79087,-73.972694,"(40.79087, -73.972694)",WEST 91 STREET,AMSTERDAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4477937,Sedan,Box Truck,,, +11/15/2021,18:00,QUEENS,11416,40.687904,-73.83887,"(40.687904, -73.83887)",,,97-28 105 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4478671,Sedan,,,, +11/16/2021,15:50,MANHATTAN,10032,40.83495,-73.94691,"(40.83495, -73.94691)",WEST 157 STREET,RIVERSIDE DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478204,Sedan,,,, +11/16/2021,7:45,QUEENS,11691,40.600567,-73.7621,"(40.600567, -73.7621)",BEACH 25 STREET,BEACH CHANNEL DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478107,Sedan,,,, +11/16/2021,15:55,,,40.841274,-73.91762,"(40.841274, -73.91762)",JEROME AVENUE,MACOMBS ROAD,,1,0,1,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4478819,Sedan,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +11/13/2021,15:45,BRONX,10452,40.840176,-73.92528,"(40.840176, -73.92528)",OGDEN AVENUE,WEST 169 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4478630,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,11:44,BROOKLYN,11225,40.655632,-73.95987,"(40.655632, -73.95987)",FLATBUSH AVENUE,PARKSIDE AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4478728,Motorcycle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +11/16/2021,14:13,,,,,,BOSTON ROAD,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478037,Sedan,Sedan,,, +11/16/2021,13:49,BROOKLYN,11205,40.68947,-73.96911,"(40.68947, -73.96911)",DE KALB AVENUE,VANDERBILT AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478068,Van,Bike,,, +11/16/2021,22:10,QUEENS,11373,40.735497,-73.869705,"(40.735497, -73.869705)",57 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478395,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,10:30,,,40.70403,-73.81711,"(40.70403, -73.81711)",HILLSIDE AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4478310,Sedan,Sedan,,, +11/16/2021,5:53,BRONX,10475,40.88599,-73.82792,"(40.88599, -73.82792)",BOSTON ROAD,CONNER STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4478343,Sedan,Box Truck,Station Wagon/Sport Utility Vehicle,, +11/11/2021,17:05,BROOKLYN,11223,40.60899,-73.9715,"(40.60899, -73.9715)",,,431 AVENUE P,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478831,Box Truck,Box Truck,,, +11/16/2021,8:12,BROOKLYN,11209,40.6156,-74.02484,"(40.6156, -74.02484)",92 STREET,BATTERY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477934,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,16:50,MANHATTAN,10035,40.80649,-73.93651,"(40.80649, -73.93651)",,,112 EAST 128 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478162,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,10:00,STATEN ISLAND,10305,40.609856,-74.07444,"(40.609856, -74.07444)",,,390 HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478000,Motorcycle,Pick-up Truck,,, +10/18/2021,19:20,,,,,,EAST 161 STREET,MACOMBS DAM BRIDGE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478841,Sedan,,,, +11/16/2021,16:58,STATEN ISLAND,10307,40.50999,-74.243744,"(40.50999, -74.243744)",AMBOY ROAD,YETMAN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478208,Sedan,,,, +04/25/2022,20:18,BROOKLYN,11239,40.64962,-73.874306,"(40.64962, -73.874306)",,,339 GATEWAY DRIVE,2,0,2,0,0,0,0,0,Backing Unsafely,,,,,4522277,Sedan,,,, +11/16/2021,8:45,QUEENS,11373,40.74554,-73.883255,"(40.74554, -73.883255)",,,41-19 JUDGE STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4477923,Sedan,Bike,,, +11/16/2021,21:19,,,40.663902,-73.93993,"(40.663902, -73.93993)",EMPIRE BOULEVARD,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478073,Sedan,Ambulance,,, +11/16/2021,8:30,BROOKLYN,11201,40.691616,-73.985306,"(40.691616, -73.985306)",,,387 BRIDGE STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478284,Sedan,,,, +11/13/2021,6:20,,,40.75035,-73.900055,"(40.75035, -73.900055)",62 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478748,Sedan,Sedan,Sedan,, +11/16/2021,9:45,,,40.754055,-73.99583,"(40.754055, -73.99583)",WEST 35 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4478197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/16/2021,9:30,,,40.81821,-73.96144,"(40.81821, -73.96144)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478028,Taxi,Taxi,,, +10/23/2021,19:00,BROOKLYN,11212,,,,LIVONIA AVENUE,BOYLAND STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478593,Bike,Sedan,,, +11/13/2021,10:56,BRONX,10457,40.85192,-73.89694,"(40.85192, -73.89694)",PARK AVENUE,EAST 180 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478554,Sedan,,,, +11/16/2021,18:00,QUEENS,11375,40.711704,-73.84477,"(40.711704, -73.84477)",ASCAN AVENUE,KESSEL STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4478114,Sedan,Sedan,,, +11/16/2021,20:00,BROOKLYN,11206,40.708363,-73.94339,"(40.708363, -73.94339)",,,183 GRAHAM AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478093,Sedan,Moped,,, +11/16/2021,16:00,MANHATTAN,10016,40.750904,-73.98068,"(40.750904, -73.98068)",MADISON AVENUE,EAST 39 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478443,Bus,Bike,,, +11/16/2021,8:34,,,,,,EAST 9 STREET,LAFAYETTE COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478532,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/16/2021,22:55,BROOKLYN,11214,40.603275,-73.99606,"(40.603275, -73.99606)",21 AVENUE,86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478123,Sedan,,,, +10/22/2021,21:14,BROOKLYN,11233,,,,SAINT JOHNS PLACE,HOWARD AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478771,Sedan,Bike,,, +11/16/2021,7:30,BROOKLYN,11207,40.67776,-73.89349,"(40.67776, -73.89349)",BRADFORD STREET,FULTON STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4478025,Sedan,E-Bike,,, +11/06/2021,15:00,,,,,,BROOKLYN QUEENS EXPY (CDR),,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478714,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:38,MANHATTAN,10007,40.716183,-74.00695,"(40.716183, -74.00695)",,,199 CHURCH STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4477988,Sedan,E-Bike,,, +11/16/2021,17:30,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478621,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,6:55,QUEENS,11105,40.777004,-73.91661,"(40.777004, -73.91661)",CRESCENT STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4478214,Sedan,Sedan,,, +11/16/2021,9:15,BRONX,10466,40.893913,-73.85898,"(40.893913, -73.85898)",,,655 EAST 233 STREET,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478350,Sedan,Sedan,,, +11/16/2021,8:45,BROOKLYN,11234,40.614,-73.9161,"(40.614, -73.9161)",AVENUE U,EAST 59 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478051,Bus,Bus,,, +11/16/2021,23:30,MANHATTAN,10021,40.76817,-73.9528,"(40.76817, -73.9528)",EAST 74 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478146,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/16/2021,20:30,QUEENS,11101,40.73634,-73.93266,"(40.73634, -73.93266)",GREENPOINT AVENUE,GALE AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478276,Sedan,Bike,,, +11/16/2021,15:15,QUEENS,11377,40.739964,-73.89424,"(40.739964, -73.89424)",70 STREET,QUEENS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478189,Sedan,,,, +11/16/2021,9:38,,,40.673386,-73.77568,"(40.673386, -73.77568)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4477977,Bus,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,8:00,BROOKLYN,11207,40.681946,-73.904884,"(40.681946, -73.904884)",BUSHWICK AVENUE,DE SALES PLACE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4477905,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/07/2022,15:52,,,40.7712,-73.83345,"(40.7712, -73.83345)",WHITESTONE EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4520643,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/16/2021,12:40,BRONX,10473,40.824734,-73.849365,"(40.824734, -73.849365)",CASTLE HILL AVENUE,HERMANY AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4478690,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/16/2021,12:21,,,40.60184,-74.00593,"(40.60184, -74.00593)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478151,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,16:00,BROOKLYN,11204,40.630745,-73.97717,"(40.630745, -73.97717)",18 AVENUE,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478054,Station Wagon/Sport Utility Vehicle,,,, +10/13/2021,10:10,,,40.679337,-73.94405,"(40.679337, -73.94405)",HERKIMER STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4478559,Sedan,Box Truck,,, +11/06/2021,0:00,BROOKLYN,11212,40.667706,-73.90636,"(40.667706, -73.90636)",STONE AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4478584,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,17:54,BRONX,10468,40.861298,-73.906265,"(40.861298, -73.906265)",,,2331 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478493,Sedan,,,, +11/14/2021,5:15,,,40.602215,-74.17493,"(40.602215, -74.17493)",VICTORY BOULEVARD,SPARK PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478651,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/16/2021,20:22,,,40.666462,-73.80445,"(40.666462, -73.80445)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478088,Station Wagon/Sport Utility Vehicle,Sedan,,, +10/26/2021,18:15,BRONX,10460,40.85106,-73.88233,"(40.85106, -73.88233)",SOUTHERN BOULEVARD,EAST 183 STREET,,2,0,2,0,0,0,0,0,Unsafe Speed,,,,,4478515,Sedan,,,, +11/14/2021,19:00,QUEENS,11375,40.72069,-73.836685,"(40.72069, -73.836685)",113 STREET,72 DRIVE,,3,0,0,0,0,0,3,0,Passing or Lane Usage Improper,Unspecified,,,,4478686,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,17:33,QUEENS,11419,40.68804,-73.83275,"(40.68804, -73.83275)",101 AVENUE,111 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Turning Improperly,Unspecified,,,4478205,Sedan,Sedan,Sedan,, +11/16/2021,3:59,,,,,,WESTCHESTER AVENUE,SHERIDAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4478700,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,7:50,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478749,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:55,,,40.715847,-73.994934,"(40.715847, -73.994934)",MANHATTAN BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478020,Sedan,Tractor Truck Diesel,,, +11/16/2021,19:02,BROOKLYN,11236,40.632206,-73.90961,"(40.632206, -73.90961)",EAST 80 STREET,AVENUE K,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478272,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,0:00,BRONX,10452,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,GOBLE PLACE,,1,0,0,0,0,0,1,0,Lost Consciousness,,,,,4478629,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,19:34,QUEENS,11419,40.69049,-73.816086,"(40.69049, -73.816086)",103 AVENUE,130 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4478200,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,9:45,,,40.64018,-74.02179,"(40.64018, -74.02179)",GOWANUS EXPY (BQE),,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4477998,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +11/16/2021,15:10,,,40.72857,-73.85809,"(40.72857, -73.85809)",65 ROAD,QUEENS BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478040,Sedan,,,, +11/16/2021,0:00,BROOKLYN,11226,40.650623,-73.95377,"(40.650623, -73.95377)",,,2505 CHURCH AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4478365,Station Wagon/Sport Utility Vehicle,Sedan,Pick-up Truck,, +11/16/2021,8:00,BRONX,10467,40.872276,-73.86316,"(40.872276, -73.86316)",,,3224 BARNES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478345,Sedan,Pick-up Truck,,, +11/16/2021,12:00,QUEENS,11422,40.666416,-73.738495,"(40.666416, -73.738495)",BROOKVILLE BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4477946,Bus,,,, +11/12/2021,22:17,,,40.851093,-73.93244,"(40.851093, -73.93244)",SAINT NICHOLAS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478653,FDNY AMBUL,,,, +11/13/2021,12:00,BROOKLYN,11213,40.66925,-73.93944,"(40.66925, -73.93944)",ALBANY AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,18:30,,,,,,RANDALLS ISLAND,CONRAIL RAILROAD,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4478503,Sedan,,,, +11/16/2021,11:55,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478815,Sedan,,,, +11/16/2021,17:45,,,40.74693,-73.84866,"(40.74693, -73.84866)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478132,Sedan,Sedan,,, +11/12/2021,18:34,QUEENS,11416,40.68815,-73.84884,"(40.68815, -73.84884)",ATLANTIC AVENUE,WOODHAVEN BOULEVARD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4478568,Station Wagon/Sport Utility Vehicle,Minibike,,, +11/15/2021,2:39,,,40.633354,-74.15099,"(40.633354, -74.15099)",,,130 LAKE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478577,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,20:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4500876,Sedan,,,, +11/16/2021,1:27,BROOKLYN,11207,40.68366,-73.90788,"(40.68366, -73.90788)",BUSHWICK AVENUE,PILLING STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4477853,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/15/2021,19:55,,,40.83517,-73.8668,"(40.83517, -73.8668)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478694,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,13:56,BROOKLYN,11230,40.614708,-73.96794,"(40.614708, -73.96794)",,,625 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,,,,,4478161,Sedan,Pick-up Truck,,, +11/16/2021,17:00,BROOKLYN,11201,40.68481,-73.99177,"(40.68481, -73.99177)",BALTIC STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478178,Bus,Sedan,,, +11/16/2021,12:30,MANHATTAN,10013,40.718018,-73.99996,"(40.718018, -73.99996)",CANAL STREET,CENTRE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478643,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,22:30,,,,,,NASSAU EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,10:00,BROOKLYN,11203,40.66149,-73.93039,"(40.66149, -73.93039)",,,27 EAST 51 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478381,Sedan,,,, +11/16/2021,7:30,QUEENS,11691,40.595444,-73.779045,"(40.595444, -73.779045)",BEACH CHANNEL DRIVE,BEACH 48 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4478106,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/14/2021,0:01,BRONX,10463,40.880554,-73.89922,"(40.880554, -73.89922)",,,3400 FORT INDEPENDENCE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478672,Sedan,,,, +11/09/2021,16:30,BROOKLYN,11204,40.620914,-73.9753,"(40.620914, -73.9753)",BAY PARKWAY,MC DONALD AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4478832,Station Wagon/Sport Utility Vehicle,Convertible,,, +11/16/2021,9:06,BROOKLYN,11201,40.686752,-73.99605,"(40.686752, -73.99605)",CLINTON STREET,BALTIC STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478172,Sedan,Sedan,,, +11/16/2021,15:00,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,1,0,0,0,0,0,1,0,Passing Too Closely,Following Too Closely,,,,4478033,Sedan,Pick-up Truck,,, +11/16/2021,7:05,,,40.792126,-73.97178,"(40.792126, -73.97178)",WEST 93 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4477932,Sedan,Tractor Truck Diesel,,, +11/16/2021,22:00,BROOKLYN,11222,40.718792,-73.93726,"(40.718792, -73.93726)",MORGAN AVENUE,WITHERS STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478237,Sedan,,,, +11/16/2021,21:41,BROOKLYN,11201,40.690895,-73.99406,"(40.690895, -73.99406)",STATE STREET,CLINTON STREET,,1,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478413,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,17:46,,,40.696117,-73.970436,"(40.696117, -73.970436)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478069,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,18:00,,,40.623657,-74.02064,"(40.623657, -74.02064)",80 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478059,Sedan,Segway,,, +11/16/2021,12:00,BRONX,10464,40.859547,-73.80091,"(40.859547, -73.80091)",CITY ISLAND ROAD,CITY ISLAND BRIDGE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478316,Sedan,Front End,,, +10/30/2021,22:00,BROOKLYN,11203,40.637276,-73.93177,"(40.637276, -73.93177)",FARRAGUT ROAD,SCHENECTADY AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4478665,Sedan,,,, +11/16/2021,21:44,BROOKLYN,11229,40.608917,-73.95216,"(40.608917, -73.95216)",EAST 21 STREET,QUENTIN ROAD,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478097,Sedan,E-Bike,,, +11/16/2021,10:28,BRONX,10458,40.868546,-73.88832,"(40.868546, -73.88832)",EAST 198 STREET,BAINBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478141,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,10:09,BROOKLYN,11212,40.6592,-73.91645,"(40.6592, -73.91645)",,,369 EAST 98 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478609,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,17:30,BROOKLYN,11239,40.65459,-73.86449,"(40.65459, -73.86449)",,,455 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478543,Pick-up Truck,,,, +10/07/2021,14:30,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478788,Sedan,Sedan,,, +11/16/2021,8:35,BROOKLYN,11219,40.632435,-73.998405,"(40.632435, -73.998405)",12 AVENUE,56 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478155,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/16/2021,14:50,QUEENS,11414,40.6567,-73.84506,"(40.6567, -73.84506)",87 STREET,160 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478089,Station Wagon/Sport Utility Vehicle,,,, +11/01/2021,0:00,,,40.655632,-73.95987,"(40.655632, -73.95987)",FLATBUSH AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4478727,Sedan,Bike,,, +11/14/2021,0:50,BRONX,10457,40.85323,-73.89617,"(40.85323, -73.89617)",,,4422 PARK AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4478520,Sedan,Sedan,,, +11/16/2021,15:50,BROOKLYN,11208,40.667953,-73.87007,"(40.667953, -73.87007)",LINDEN BOULEVARD,EUCLID AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478536,Sedan,Sedan,,, +11/14/2021,0:00,BRONX,10460,40.8398,-73.88125,"(40.8398, -73.88125)",,,1922 BOSTON ROAD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478555,Sedan,Sedan,,, +11/16/2021,17:44,QUEENS,11374,40.73175,-73.85359,"(40.73175, -73.85359)",102 STREET,64 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4478115,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,7:50,BROOKLYN,11204,40.630672,-73.981895,"(40.630672, -73.981895)",47 STREET,17 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520298,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,22:50,BROOKLYN,11212,40.659058,-73.91095,"(40.659058, -73.91095)",BOYLAND STREET,NEWPORT STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4520191,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,19:22,MANHATTAN,10029,40.78588,-73.94884,"(40.78588, -73.94884)",EAST 97 STREET,3 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4520461,Taxi,Motorcycle,,, +04/18/2022,17:12,,,40.710377,-73.81944,"(40.710377, -73.81944)",MANTON STREET,84 ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520148,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,7:00,,,40.845352,-73.92821,"(40.845352, -73.92821)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520603,Tractor Truck Diesel,Tractor Truck Diesel,,, +04/18/2022,19:25,STATEN ISLAND,10304,40.617786,-74.08111,"(40.617786, -74.08111)",VANDERBILT AVENUE,OSGOOD AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520368,Sedan,Sedan,,, +04/18/2022,17:47,,,,,,PLAZA DRIVE,elliot place,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4520209,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,17:30,BRONX,10466,40.89537,-73.841774,"(40.89537, -73.841774)",,,4185 MURDOCK AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4520380,AMBULANCE,Sedan,,, +04/18/2022,7:00,,,40.81084,-73.95068,"(40.81084, -73.95068)",WEST 126 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520280,Sedan,E-Scooter,,, +04/18/2022,20:10,,,40.84932,-73.93374,"(40.84932, -73.93374)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520662,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,2:30,,,40.713875,-73.97703,"(40.713875, -73.97703)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519761,Sedan,,,, +04/11/2022,13:00,BROOKLYN,11221,0,0,"(0.0, 0.0)",,,662 MADISON STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520713,Sedan,,,, +04/18/2022,11:00,BROOKLYN,11206,40.703285,-73.950645,"(40.703285, -73.950645)",HARRISON AVENUE,MIDDLETON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520170,Taxi,Box Truck,,, +04/18/2022,13:11,QUEENS,11370,40.756794,-73.894135,"(40.756794, -73.894135)",73 STREET,32 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4520576,Sedan,Bike,,, +04/18/2022,21:10,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4520634,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2022,19:55,,,40.714436,-73.759995,"(40.714436, -73.759995)",199 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,,4520672,Sedan,Sedan,Sedan,Sedan, +04/18/2022,20:30,BROOKLYN,11223,40.606556,-73.973625,"(40.606556, -73.973625)",DAHILL ROAD,QUENTIN ROAD,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520147,E-Bike,Sedan,,, +04/18/2022,7:00,QUEENS,11412,40.696247,-73.76436,"(40.696247, -73.76436)",DORMANS ROAD,NEWBURG STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520281,Sedan,,,, +04/11/2022,9:12,,,40.765347,-73.8354,"(40.765347, -73.8354)",34 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520730,Chassis Cab,Sedan,,, +04/18/2022,19:54,,,40.721806,-74.00643,"(40.721806, -74.00643)",LAIGHT STREET,VARICK STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520196,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,6:00,QUEENS,11369,40.764637,-73.87157,"(40.764637, -73.87157)",,,98-12 25 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4520571,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,10:35,BRONX,10455,40.815533,-73.91861,"(40.815533, -73.91861)",3 AVENUE,EAST 148 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520602,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/18/2022,22:30,,,40.72766,-73.92938,"(40.72766, -73.92938)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4520232,Sedan,Sedan,,, +04/18/2022,4:54,QUEENS,11434,0,0,"(0.0, 0.0)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4519794,Sedan,Sedan,,, +04/16/2022,21:10,QUEENS,11385,40.707222,-73.9127,"(40.707222, -73.9127)",ONDERDONK AVENUE,HIMROD STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520700,Sedan,,,, +04/18/2022,10:00,QUEENS,11422,40.660854,-73.728485,"(40.660854, -73.728485)",HOOK CREEK BOULEVARD,255 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520060,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,14:00,,,40.737167,-74.001465,"(40.737167, -74.001465)",BANK STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520088,Sedan,,,, +04/17/2022,14:27,QUEENS,11237,40.70519,-73.91478,"(40.70519, -73.91478)",CYPRESS AVENUE,HIMROD STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520503,Sedan,,,, +04/18/2022,22:40,,,40.69379,-73.7929,"(40.69379, -73.7929)",159 STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4520163,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,3:20,BRONX,10474,40.818928,-73.88706,"(40.818928, -73.88706)",,,1312 SENECA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520561,Sedan,Sedan,Sedan,, +04/07/2022,17:30,MANHATTAN,10128,40.781315,-73.94614,"(40.781315, -73.94614)",EAST 93 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520743,Sedan,,,, +04/18/2022,4:40,MANHATTAN,10024,40.781273,-73.976006,"(40.781273, -73.976006)",COLUMBUS AVENUE,WEST 78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520027,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,8:30,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520407,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/04/2022,9:40,,,40.800686,-73.952515,"(40.800686, -73.952515)",WEST 113 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520512,Van,,,, +04/18/2022,11:40,BRONX,10458,40.861923,-73.89357,"(40.861923, -73.89357)",EAST KINGSBRIDGE ROAD,BAINBRIDGE AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4520079,Sedan,,,, +04/18/2022,11:22,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,WILLOW ROAD EAST,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4520214,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/01/2022,4:25,MANHATTAN,10034,40.867256,-73.92935,"(40.867256, -73.92935)",HENSHAW STREET,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520622,Taxi,Sedan,,, +04/11/2022,7:00,QUEENS,11428,40.715897,-73.75561,"(40.715897, -73.75561)",,,93-14 FRANCIS LEWIS BOULEVARD,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Passing or Lane Usage Improper,,,,4520677,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,22:50,QUEENS,11372,40.754513,-73.8776,"(40.754513, -73.8776)",90 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520567,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2022,8:30,,,40.603645,-74.077324,"(40.603645, -74.077324)",STEUBEN STREET,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520156,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/18/2022,23:12,BROOKLYN,11218,40.635784,-73.97917,"(40.635784, -73.97917)",,,485 DAHILL ROAD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4520220,Sedan,Sedan,Sedan,, +04/08/2022,12:20,,,40.689228,-73.957,"(40.689228, -73.957)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520608,,,,, +04/12/2022,22:05,,,40.606327,-74.07994,"(40.606327, -74.07994)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4520499,Motorcycle,,,, +04/18/2022,4:25,QUEENS,11433,40.70318,-73.79311,"(40.70318, -73.79311)",,,92-89 165 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4519872,Sedan,,,, +03/18/2022,23:40,MANHATTAN,10026,40.80389,-73.95577,"(40.80389, -73.95577)",,,2131 8 AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4520555,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/18/2022,15:48,BROOKLYN,11219,40.62881,-74.009346,"(40.62881, -74.009346)",67 STREET,10 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4520135,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,7:07,BRONX,10466,40.892803,-73.84416,"(40.892803, -73.84416)",,,1965 EDENWALD AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520523,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/18/2022,9:25,BROOKLYN,11229,40.60354,-73.9606,"(40.60354, -73.9606)",,,1894 EAST 12 STREET,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4520430,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2022,18:45,MANHATTAN,10035,40.79793,-73.934,"(40.79793, -73.934)",1 AVENUE,EAST 119 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520259,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,8:00,BRONX,10455,40.816845,-73.89941,"(40.816845, -73.89941)",,,755 KELLY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520685,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +04/18/2022,19:45,BROOKLYN,11215,40.667946,-73.99073,"(40.667946, -73.99073)",13 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520314,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,14:00,BROOKLYN,11206,40.697426,-73.95095,"(40.697426, -73.95095)",,,588 PARK AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520613,Sedan,Box Truck,,, +04/18/2022,3:22,BROOKLYN,11223,40.59011,-73.97422,"(40.59011, -73.97422)",MC DONALD AVENUE,AVENUE X,,3,0,0,0,0,0,3,0,Alcohol Involvement,,,,,4520178,Sedan,,,, +04/16/2022,11:48,BRONX,10463,40.886528,-73.89979,"(40.886528, -73.89979)",WEST 240 STREET,BROADWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520562,Sedan,Sedan,,, +04/16/2022,14:00,QUEENS,11385,40.70661,-73.91569,"(40.70661, -73.91569)",,,450 STOCKHOLM STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520587,Sedan,,,, +04/18/2022,14:00,BROOKLYN,11218,40.634457,-73.97571,"(40.634457, -73.97571)",,,719 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520219,Sedan,,,, +04/17/2022,13:47,,,40.87739,-73.8665,"(40.87739, -73.8665)",WHITE PLAINS ROAD,,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,,,,4520529,Sedan,,,, +04/18/2022,5:10,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4519947,Sedan,,,, +04/18/2022,11:00,QUEENS,11355,40.75425,-73.827835,"(40.75425, -73.827835)",MAIN STREET,FRANKLIN AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520099,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,21:40,,,40.62877,-73.91825,"(40.62877, -73.91825)",RALPH AVENUE,,,0,0,0,0,0,0,0,0,Other Lighting Defects,,,,,4520385,Sedan,,,, +04/18/2022,0:06,,,40.598553,-73.997345,"(40.598553, -73.997345)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4520169,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/18/2022,17:10,BROOKLYN,11217,40.682423,-73.97069,"(40.682423, -73.97069)",ATLANTIC AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4520322,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,21:10,STATEN ISLAND,10309,40.53347,-74.20229,"(40.53347, -74.20229)",,,1760 CARLTON AVENUE,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,,,,4520641,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,11:15,QUEENS,11421,40.689842,-73.850075,"(40.689842, -73.850075)",91 AVENUE,WOODHAVEN BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520238,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,14:00,BRONX,10456,40.83872,-73.91378,"(40.83872, -73.91378)",GRAND CONCOURSE,EAST 170 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing or Lane Usage Improper,,,,4520663,Pick-up Truck,Sedan,,, +04/18/2022,3:50,QUEENS,11370,40.76747,-73.89134,"(40.76747, -73.89134)",,,22-62 78 STREET,1,0,0,0,1,0,0,0,Listening/Using Headphones,Unspecified,,,,4519771,Sedan,E-Bike,,, +04/11/2022,11:45,BROOKLYN,11233,40.678555,-73.91604,"(40.678555, -73.91604)",,,2034 FULTON STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4520714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,0:55,QUEENS,11370,40.761967,-73.89695,"(40.761967, -73.89695)",25 AVENUE,71 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520575,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/18/2022,9:20,QUEENS,11375,40.720566,-73.8459,"(40.720566, -73.8459)",70 ROAD,AUSTIN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520516,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,13:00,BRONX,10465,40.820744,-73.82374,"(40.820744, -73.82374)",,,2734 DEWEY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520074,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,13:30,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",MAJOR DEEGAN EXPRESSWAY,WEST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4520080,Sedan,,,, +04/18/2022,0:00,BROOKLYN,11213,40.663555,-73.93162,"(40.663555, -73.93162)",EMPIRE BOULEVARD,UTICA AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,0:10,BROOKLYN,11233,40.68445,-73.92031,"(40.68445, -73.92031)",MACON STREET,HOWARD AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4520712,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/14/2022,15:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4520504,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/24/2022,23:50,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520762,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,20:24,,,40.78468,-73.80911,"(40.78468, -73.80911)",CLINTONVILLE STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520151,Station Wagon/Sport Utility Vehicle,,,, +04/14/2022,12:02,MANHATTAN,10011,40.7442,-74.00713,"(40.7442, -74.00713)",,,457 WEST 17 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4520542,Taxi,Bike,,, +04/18/2022,8:45,,,,,,LAUREL HILL BOULEVARD,61 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4519981,Station Wagon/Sport Utility Vehicle,Chassis Cab,,, +04/18/2022,20:01,BRONX,10455,40.816067,-73.91765,"(40.816067, -73.91765)",3 AVENUE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4520465,Sedan,,,, +04/13/2022,0:10,MANHATTAN,10036,40.759624,-73.99548,"(40.759624, -73.99548)",WEST 42 STREET,10 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4520533,Sedan,E-Scooter,,, +04/15/2022,21:05,QUEENS,11102,40.768623,-73.92882,"(40.768623, -73.92882)",,,30-55 21 STREET,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520559,Sedan,E-Bike,,, +04/18/2022,8:13,BROOKLYN,11213,40.669624,-73.94635,"(40.669624, -73.94635)",,,668 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520032,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,8:37,MANHATTAN,10009,40.73198,-73.98197,"(40.73198, -73.98197)",1 AVENUE,EAST 15 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520107,E-Bike,,,, +04/18/2022,14:00,BROOKLYN,11236,40.629696,-73.903015,"(40.629696, -73.903015)",,,1339 EAST 83 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520145,Pick-up Truck,,,, +04/18/2022,11:40,,,40.674953,-73.80205,"(40.674953, -73.80205)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Oversized Vehicle,,,,4520282,Sedan,Dump,,, +04/14/2022,12:10,BRONX,10455,40.81888,-73.916504,"(40.81888, -73.916504)",EAST 153 STREET,MELROSE AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4520773,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,10:45,STATEN ISLAND,10312,40.55413,-74.16837,"(40.55413, -74.16837)",RICHMOND AVENUE,STROUD AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520574,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,18:30,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520698,Sedan,Van,,, +04/18/2022,7:24,QUEENS,11413,40.657856,-73.751015,"(40.657856, -73.751015)",147 AVENUE,230 PLACE,,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4520059,Sedan,Sedan,,, +04/18/2022,16:03,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inexperience,,,,4520167,Taxi,Sedan,,, +04/18/2022,5:10,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4519945,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,17:30,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520140,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,19:00,BROOKLYN,11203,40.65249,-73.92179,"(40.65249, -73.92179)",CHURCH AVENUE,EAST 59 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4520441,Bike,,,, +04/18/2022,16:08,QUEENS,11101,40.744095,-73.92681,"(40.744095, -73.92681)",,,38-18 QUEENS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4520130,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,19:30,,,40.54326,-74.19731,"(40.54326, -74.19731)",HUGUENOT AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520640,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,15:30,MANHATTAN,10011,40.743317,-74.001396,"(40.743317, -74.001396)",,,335 WEST 19 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,23:47,MANHATTAN,10038,40.70953,-74.00842,"(40.70953, -74.00842)",JOHN STREET,NASSAU STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520197,Sedan,,,, +04/15/2022,10:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520502,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,8:05,BROOKLYN,11214,40.612213,-73.99718,"(40.612213, -73.99718)",18 AVENUE,77 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520553,Sedan,,,, +04/18/2022,14:30,,,40.65207,-74.00676,"(40.65207, -74.00676)",40 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520528,E-Bike,Sedan,,, +04/18/2022,1:20,,,40.8452,-73.916885,"(40.8452, -73.916885)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4520266,Sedan,Sedan,,, +04/18/2022,10:50,,,40.761272,-73.95571,"(40.761272, -73.95571)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,,,,,4520598,Box Truck,,,, +04/03/2022,14:25,MANHATTAN,10028,0,0,"(0.0, 0.0)",EAST 84 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520740,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,16:18,BROOKLYN,11212,40.665203,-73.90184,"(40.665203, -73.90184)",DUMONT AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520187,Station Wagon/Sport Utility Vehicle,,,, +04/12/2022,8:20,,,40.850414,-73.93455,"(40.850414, -73.93455)",WADSWORTH AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520624,Sedan,,,, +04/18/2022,9:43,MANHATTAN,10022,40.76155,-73.96659,"(40.76155, -73.96659)",EAST 59 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4520174,Station Wagon/Sport Utility Vehicle,Bus,,, +02/07/2022,10:55,STATEN ISLAND,10306,,,,SOUTH RAILROAD AVENUE,GUYON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501116,Sedan,,,, +04/18/2022,2:30,,,40.756096,-73.74655,"(40.756096, -73.74655)",CROSS ISLAND PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,,,4519842,Sedan,Sedan,Sedan,, +04/17/2022,15:30,BRONX,10466,40.890907,-73.8495,"(40.890907, -73.8495)",,,977 EAST 233 STREET,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4520666,Sedan,Sedan,,, +04/18/2022,7:00,,,40.71976,-73.94476,"(40.71976, -73.94476)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4520094,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2022,14:00,BROOKLYN,11221,40.69473,-73.91928,"(40.69473, -73.91928)",CENTRAL AVENUE,GROVE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520222,Sedan,,,, +04/18/2022,11:35,,,40.743515,-73.83375,"(40.743515, -73.83375)",HORACE HARDING EXPRESSWAY,LAWRENCE STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520731,Sedan,,,, +04/18/2022,15:00,,,40.69942,-73.86878,"(40.69942, -73.86878)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520578,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,17:40,BROOKLYN,11249,40.71635,-73.95982,"(40.71635, -73.95982)",,,134 NORTH 4 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520233,Sedan,E-Bike,,, +04/18/2022,22:44,BROOKLYN,11235,40.585888,-73.944,"(40.585888, -73.944)",,,4766 BEDFORD AVENUE,0,0,0,0,0,0,0,0,,,,,,4520429,Pick-up Truck,Sedan,,, +04/16/2022,17:00,QUEENS,11385,40.707264,-73.90792,"(40.707264, -73.90792)",,,1929 MENAHAN STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520589,Sedan,Sedan,,, +04/18/2022,11:45,,,0,0,"(0.0, 0.0)",,,2375 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520211,Sedan,,,, +04/18/2022,12:05,,,40.5953,-74.11038,"(40.5953, -74.11038)",TODT HILL ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520158,Sedan,Sedan,,, +04/17/2022,23:50,,,40.84932,-73.93374,"(40.84932, -73.93374)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520651,Sedan,Sedan,,, +04/17/2022,1:20,,,40.703823,-73.8088,"(40.703823, -73.8088)",SUTPHIN BOULEVARD,,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4520676,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/11/2022,15:10,,,,,,STATEN ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4520498,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,23:20,QUEENS,11372,40.747734,-73.883,"(40.747734, -73.883)",ROOSEVELT AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520568,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,16:45,,,40.84467,-73.885666,"(40.84467, -73.885666)",EAST 179 STREET,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4520242,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,10:58,BRONX,10455,40.813095,-73.89827,"(40.813095, -73.89827)",BRUCKNER BOULEVARD,LEGGETT AVENUE,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4520354,Sedan,Sedan,,, +04/14/2022,14:20,,,40.605934,-74.16224,"(40.605934, -74.16224)",RICHMOND AVENUE,FOREST STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4520760,Motorcycle,Motorcycle,Sedan,, +04/03/2022,9:05,BROOKLYN,11223,40.60053,-73.984024,"(40.60053, -73.984024)",WEST 12 STREET,AVENUE S,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4520607,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2022,23:25,,,40.888958,-73.86593,"(40.888958, -73.86593)",BRONX RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Pavement Slippery,Pavement Slippery,Unsafe Speed,,,4520389,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/16/2022,18:50,,,40.678154,-73.94416,"(40.678154, -73.94416)",BROOKLYN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4520614,Sedan,Sedan,,, +04/18/2022,1:00,QUEENS,11420,40.67236,-73.82032,"(40.67236, -73.82032)",LEFFERTS BOULEVARD,133 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4519774,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,18:44,,,,,,BROOKLYN BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520724,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/17/2022,15:00,BRONX,10469,40.873013,-73.855545,"(40.873013, -73.855545)",DUNCAN STREET,LACONIA AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Turning Improperly,,,,4520654,Sedan,Sedan,,, +04/18/2022,22:47,MANHATTAN,10028,40.77592,-73.95317,"(40.77592, -73.95317)",2 AVENUE,EAST 83 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,,,,,4520186,Bike,,,, +04/13/2022,10:00,BRONX,10466,40.89024,-73.860306,"(40.89024, -73.860306)",EAST 228 STREET,LOWERRE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520520,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,6:40,BROOKLYN,11208,40.681084,-73.88304,"(40.681084, -73.88304)",ARLINGTON AVENUE,ESSEX STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520084,Sedan,Sedan,,, +04/12/2022,18:52,,,40.608543,-74.08886,"(40.608543, -74.08886)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/11/2022,16:00,BRONX,10474,40.818848,-73.887634,"(40.818848, -73.887634)",FAILE STREET,SENECA AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520682,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,19:45,,,40.749844,-73.883385,"(40.749844, -73.883385)",37 AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520579,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,23:19,QUEENS,11377,40.75321,-73.90783,"(40.75321, -73.90783)",,,51-23 NORTHERN BOULEVARD,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4520262,Sedan,,,, +04/18/2022,17:03,,,40.856037,-73.83284,"(40.856037, -73.83284)",PELHAM PARKWAY,HUTCHINSON RIVER PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4520307,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,23:11,BRONX,10467,40.858482,-73.86656,"(40.858482, -73.86656)",,,2230 CRUGER AVENUE,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4520563,Sedan,Sedan,,, +04/18/2022,0:00,MANHATTAN,10013,40.719902,-74.00261,"(40.719902, -74.00261)",CANAL STREET,MERCER STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520450,Box Truck,Sedan,,, +04/18/2022,15:58,,,40.783268,-73.82485,"(40.783268, -73.82485)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520129,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,6:00,BROOKLYN,11236,40.645874,-73.892845,"(40.645874, -73.892845)",AVENUE J,EAST 105 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4520150,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,5:49,BROOKLYN,11230,40.624306,-73.95612,"(40.624306, -73.95612)",,,1553 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4520009,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/17/2022,8:55,QUEENS,11378,40.716072,-73.912796,"(40.716072, -73.912796)",,,59-50 55 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4520775,FREIGHT TR,Tow Truck / Wrecker,Station Wagon/Sport Utility Vehicle,, +04/18/2022,15:12,,,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Following Too Closely,,,,4520471,Sedan,Flat Bed,,, +04/18/2022,21:17,MANHATTAN,10019,40.763737,-73.97583,"(40.763737, -73.97583)",,,60 WEST 57 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520217,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,22:07,BROOKLYN,11221,40.694016,-73.93128,"(40.694016, -73.93128)",,,10 REID AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520711,Sedan,,,, +04/18/2022,8:30,QUEENS,11101,40.742428,-73.956314,"(40.742428, -73.956314)",,,5-27 51 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520131,Pick-up Truck,,,, +04/18/2022,17:30,STATEN ISLAND,10305,40.59841,-74.08393,"(40.59841, -74.08393)",PARKINSON AVENUE,WINFIELD AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520159,Sedan,Station Wagon/Sport Utility Vehicle,,, +03/13/2022,4:15,QUEENS,11372,40.754513,-73.8776,"(40.754513, -73.8776)",90 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520569,Sedan,Sedan,,, +04/16/2022,17:40,MANHATTAN,10002,40.719624,-73.991776,"(40.719624, -73.991776)",,,45 DELANCEY STREET,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520535,Sedan,Bike,,, +04/14/2022,18:15,,,40.741077,-74.001564,"(40.741077, -74.001564)",,,WEST 16 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520546,Sedan,Sedan,,, +04/18/2022,7:05,BRONX,10472,40.82526,-73.878395,"(40.82526, -73.878395)",,,1070 ELDER AVENUE,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4519967,Sedan,Sedan,,, +04/18/2022,14:03,BROOKLYN,11215,40.67641,-73.98047,"(40.67641, -73.98047)",5 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520321,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/18/2022,8:16,QUEENS,11373,40.743153,-73.87763,"(40.743153, -73.87763)",,,87-29 WHITNEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520066,Pick-up Truck,,,, +04/13/2022,7:46,BROOKLYN,11222,40.720997,-73.94088,"(40.720997, -73.94088)",,,134 KINGSLAND AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4520497,Tractor Truck Gasoline,,,, +04/18/2022,5:10,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4519919,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,12:00,BROOKLYN,11212,40.661995,-73.9196,"(40.661995, -73.9196)",EAST 98 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520168,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/03/2022,7:30,MANHATTAN,10027,40.807415,-73.95067,"(40.807415, -73.95067)",,,220 WEST 122 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520532,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,16:30,BROOKLYN,11203,40.650642,-73.92161,"(40.650642, -73.92161)",SNYDER AVENUE,EAST 59 STREET,,1,0,0,0,0,0,1,0,Illnes,Unspecified,Unspecified,,,4520439,Van,Sedan,Sedan,, +04/18/2022,14:00,BROOKLYN,11201,40.699665,-73.979385,"(40.699665, -73.979385)",,,234 SANDS STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4520101,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/28/2021,7:05,,,40.696297,-73.97716,"(40.696297, -73.97716)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4461982,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,, +12/31/2021,2:15,,,40.788795,-73.93755,"(40.788795, -73.93755)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4492970,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,18:10,STATEN ISLAND,10309,40.50894,-74.22159,"(40.50894, -74.22159)",HYLAN BOULEVARD,CUNNINGHAM ROAD,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4500101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,15:39,,,40.830597,-73.885345,"(40.830597, -73.885345)",JENNINGS STREET,SHERIDAN EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500135,Sedan,,,, +02/07/2022,19:42,,,40.757065,-74.00106,"(40.757065, -74.00106)",11 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501456,Sedan,Sedan,,, +02/07/2022,21:05,,,40.668507,-73.92561,"(40.668507, -73.92561)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4501416,Sedan,Sedan,,, +01/30/2022,22:30,BROOKLYN,11201,40.689533,-73.99728,"(40.689533, -73.99728)",,,92 AMITY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501460,Sedan,,,, +02/07/2022,0:03,,,40.671642,-73.96258,"(40.671642, -73.96258)",EASTERN PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4501418,Station Wagon/Sport Utility Vehicle,,,, +01/31/2022,10:30,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501412,Sedan,,,, +01/21/2022,19:35,,,40.685764,-73.97308,"(40.685764, -73.97308)",FULTON STREET,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4501465,Sedan,,,, +01/27/2022,10:08,BROOKLYN,11213,40.676743,-73.93316,"(40.676743, -73.93316)",PACIFIC STREET,SCHENECTADY AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4501423,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,7:50,,,40.6752,-73.950005,"(40.6752, -73.950005)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501409,Sedan,Sedan,,, +02/07/2022,7:30,,,40.67327,-73.9474,"(40.67327, -73.9474)",NEW YORK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501408,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,0:50,,,40.67004,-73.93658,"(40.67004, -73.93658)",LINCOLN PLACE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4501426,Taxi,Sedan,,, +02/22/2022,17:10,BROOKLYN,11220,40.632633,-74.01254,"(40.632633, -74.01254)",65 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504904,Sedan,Sedan,,, +02/22/2022,12:55,MANHATTAN,10019,40.769295,-73.99495,"(40.769295, -73.99495)",WEST 54 STREET,12 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4504917,Station Wagon/Sport Utility Vehicle,Bike,,, +02/22/2022,13:30,MANHATTAN,10014,,,,,,284 WEST 12 STREET,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4504916,Flat Bed,,,, +02/22/2022,17:40,MANHATTAN,10017,40.757233,-73.97605,"(40.757233, -73.97605)",EAST 49 STREET,MADISON AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504918,Sedan,,,, +02/22/2022,18:19,,,40.842503,-73.92797,"(40.842503, -73.92797)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4504911,Sedan,Tractor Truck Diesel,,, +02/22/2022,14:21,,,40.75927,-73.980896,"(40.75927, -73.980896)",WEST 49 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504920,E-Scooter,,,, +02/22/2022,17:05,,,40.678097,-74.00235,"(40.678097, -74.00235)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4504908,Sedan,,,, +03/31/2022,0:20,,,,,,VANWYCK EXPRESSWAY,101 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Oversized Vehicle,,,,4520675,fdny,,,, +04/11/2022,12:30,MANHATTAN,10023,40.771053,-73.98715,"(40.771053, -73.98715)",AMSTERDAM AVENUE,WEST 60 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520631,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,20:04,,,40.693405,-73.90886,"(40.693405, -73.90886)",KNICKERBOCKER AVENUE,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,,,,4520223,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,12:00,MANHATTAN,10038,40.708473,-74.004875,"(40.708473, -74.004875)",,,55 FULTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520201,Sedan,Van,,, +04/17/2022,4:55,QUEENS,11372,40.754524,-73.8774,"(40.754524, -73.8774)",,,90-10 34 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4520573,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2022,21:38,MANHATTAN,10011,40.741646,-74.00487,"(40.741646, -74.00487)",WEST 15 STREET,9 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520597,Bus,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,14:55,QUEENS,11418,40.701706,-73.83655,"(40.701706, -73.83655)",114 STREET,85 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520237,Sedan,,,, +02/07/2022,18:54,MANHATTAN,10010,40.738167,-73.98364,"(40.738167, -73.98364)",3 AVENUE,EAST 22 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500850,Sedan,Sedan,,, +02/07/2022,15:00,BRONX,10458,40.85586,-73.89462,"(40.85586, -73.89462)",PARK AVENUE,EAST 183 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500978,Station Wagon/Sport Utility Vehicle,Bus,,, +02/07/2022,17:46,MANHATTAN,10007,40.715237,-74.01339,"(40.715237, -74.01339)",WEST STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500908,Sedan,,,, +02/04/2022,17:58,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,TRANTOR PLACE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501366,Sedan,,,, +01/28/2022,18:40,,,40.712696,-73.900604,"(40.712696, -73.900604)",METROPOLITAN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501310,,,,, +02/07/2022,2:40,,,40.737194,-73.90619,"(40.737194, -73.90619)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500465,Sedan,,,, +02/07/2022,19:00,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500883,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,12:50,,,40.84211,-73.82557,"(40.84211, -73.82557)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520095,Tractor Truck Diesel,Sedan,,, +02/07/2022,13:31,BROOKLYN,11207,40.675957,-73.88596,"(40.675957, -73.88596)",,,646 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500938,Station Wagon/Sport Utility Vehicle,,,, +02/03/2022,0:44,QUEENS,11106,40.758694,-73.93426,"(40.758694, -73.93426)",36 AVENUE,24 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4501276,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +02/07/2022,3:20,QUEENS,11433,40.695656,-73.79831,"(40.695656, -73.79831)",155 STREET,107 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500551,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,22:41,,,40.675735,-73.89686,"(40.675735, -73.89686)",PENNSYLVANIA AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500944,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,15:32,BROOKLYN,11203,40.655754,-73.92403,"(40.655754, -73.92403)",EAST 57 STREET,LENOX ROAD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4501350,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +02/06/2022,15:00,,,40.634323,-74.137184,"(40.634323, -74.137184)",POST AVENUE,SHARPE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501250,Sedan,Sedan,,, +02/07/2022,1:40,MANHATTAN,10012,40.729557,-73.99979,"(40.729557, -73.99979)",,,227 SULLIVAN STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500624,Taxi,Sedan,,, +02/07/2022,18:44,BROOKLYN,11236,40.639782,-73.91673,"(40.639782, -73.91673)",,,576 EAST 81 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500837,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,7:35,STATEN ISLAND,10312,40.524014,-74.18608,"(40.524014, -74.18608)",,,5375 HYLAN BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4500985,Sedan,Bus,,, +02/07/2022,22:40,BROOKLYN,11226,40.640945,-73.94852,"(40.640945, -73.94852)",AVENUE D,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4501013,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +02/07/2022,10:15,MANHATTAN,10029,40.789154,-73.95444,"(40.789154, -73.95444)",,,1170 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501100,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,16:20,QUEENS,11423,40.712715,-73.76127,"(40.712715, -73.76127)",,,198-28 CARPENTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4501141,Pick-up Truck,Sedan,,, +02/07/2022,17:50,STATEN ISLAND,10306,40.571583,-74.10864,"(40.571583, -74.10864)",HYLAN BOULEVARD,BACHE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4500811,Pick-up Truck,Sedan,,, +02/07/2022,8:56,BROOKLYN,11236,40.631798,-73.901596,"(40.631798, -73.901596)",AVENUE M,EAST 86 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500748,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,15:14,QUEENS,11361,40.770607,-73.77971,"(40.770607, -73.77971)",KENNEDY STREET,33 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500791,Station Wagon/Sport Utility Vehicle,TRANSIT MT,,, +02/07/2022,1:10,BRONX,10465,40.82203,-73.826904,"(40.82203, -73.826904)",,,560 BALCOM AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4500749,Sedan,Sedan,,, +02/01/2022,16:20,BROOKLYN,11216,40.676872,-73.94985,"(40.676872, -73.94985)",NOSTRAND AVENUE,DEAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501403,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,9:41,BROOKLYN,11232,40.66326,-73.99512,"(40.66326, -73.99512)",4 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500833,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,6:15,BRONX,10472,40.82754,-73.8603,"(40.82754, -73.8603)",,,1063 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4500711,Taxi,,,, +02/07/2022,16:38,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS AVENUE,CYPRESS HILLS STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4501135,Sedan,Sedan,,, +02/07/2022,8:45,BROOKLYN,11207,,,,NEW LOTS AVENUE,MALTA STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500931,Sedan,Sedan,,, +02/07/2022,15:35,BRONX,10457,40.84052,-73.89949,"(40.84052, -73.89949)",,,3952 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500959,Sedan,Sedan,,, +02/07/2022,7:05,BRONX,10462,40.85438,-73.86186,"(40.85438, -73.86186)",,,900 LYDIG AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501233,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,20:45,,,40.615562,-73.979645,"(40.615562, -73.979645)",BAY PARKWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501034,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,8:11,MANHATTAN,10029,40.792255,-73.948395,"(40.792255, -73.948395)",EAST 105 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4501179,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,9:30,QUEENS,11004,40.7555,-73.72067,"(40.7555, -73.72067)",,,266-01 69 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500744,Station Wagon/Sport Utility Vehicle,Dump,,, +02/07/2022,13:45,BROOKLYN,11235,40.5778,-73.96057,"(40.5778, -73.96057)",BRIGHTON BEACH AVENUE,BRIGHTON 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500821,Sedan,,,, +02/07/2022,20:02,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500891,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,23:44,MANHATTAN,10017,40.750492,-73.97172,"(40.750492, -73.97172)",EAST 43 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4501005,Taxi,,,, +02/07/2022,15:35,BRONX,10473,0,0,"(0.0, 0.0)",WHITE PLAINS ROAD,RANDALL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501301,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,10:47,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4500838,,,,, +02/07/2022,19:00,BROOKLYN,11217,40.68532,-73.98071,"(40.68532, -73.98071)",3 AVENUE,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4500870,Sedan,,,, +01/31/2022,18:50,,,40.671032,-73.93927,"(40.671032, -73.93927)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501407,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,10:02,,,,,,GOWANUS RAMP,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4500771,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +02/07/2022,13:34,MANHATTAN,10032,40.833878,-73.9425,"(40.833878, -73.9425)",,,525 WEST 158 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501275,Sedan,,,, +02/07/2022,19:10,,,40.6742,-73.999985,"(40.6742, -73.999985)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501053,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,19:25,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",EAST 233 STREET,WHITE PLAINS ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501109,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,8:50,BROOKLYN,11223,,,,HIGHLAWN AVENUE,WEST 8 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Failure to Yield Right-of-Way,Unspecified,,,4501264,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +01/30/2022,13:37,BROOKLYN,11233,40.672157,-73.91691,"(40.672157, -73.91691)",,,396 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501396,Sedan,,,, +02/07/2022,9:40,BROOKLYN,11230,40.61614,-73.964554,"(40.61614, -73.964554)",,,1327 EAST 10 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500917,Sedan,Sedan,,, +02/06/2022,17:55,BROOKLYN,11205,40.694363,-73.958,"(40.694363, -73.958)",MYRTLE AVENUE,FRANKLIN AVENUE,,1,0,0,0,1,0,0,0,Passing Too Closely,Failure to Yield Right-of-Way,,,,4501315,Sedan,Bike,,, +02/07/2022,14:45,BRONX,10474,40.813107,-73.88709,"(40.813107, -73.88709)",,,643 COSTER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500950,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,15:30,QUEENS,11417,40.671288,-73.838066,"(40.671288, -73.838066)",BRISTOL AVENUE,149 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500878,Sedan,,,, +02/07/2022,18:23,,,40.79824,-73.95247,"(40.79824, -73.95247)",WEST 110 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500995,Station Wagon/Sport Utility Vehicle,Bus,,, +02/07/2022,19:20,,,40.770905,-73.79878,"(40.770905, -73.79878)",29 AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4500842,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,6:15,QUEENS,11104,40.74348,-73.921486,"(40.74348, -73.921486)",43 STREET,QUEENS BOULEVARD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4501285,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,16:58,,,40.650467,-73.92443,"(40.650467, -73.92443)",SNYDER AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500969,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,19:45,BROOKLYN,11223,40.59616,-73.96104,"(40.59616, -73.96104)",CONEY ISLAND AVENUE,AVENUE V,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500884,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,18:26,,,,,,,,1519 SNYDER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500970,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,11:54,QUEENS,11412,40.69612,-73.746185,"(40.69612, -73.746185)",LINDEN BOULEVARD,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500939,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,6:00,BROOKLYN,11208,40.666706,-73.871826,"(40.666706, -73.871826)",LINDEN BOULEVARD,FOUNTAIN AVENUE,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4501329,Sedan,,,, +02/07/2022,1:08,BROOKLYN,11215,40.664165,-73.990555,"(40.664165, -73.990555)",5 AVENUE,PROSPECT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500470,Sedan,Sedan,,, +02/02/2022,20:27,,,,,,MANOR ROAD,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501256,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,2:40,,,40.702595,-73.8553,"(40.702595, -73.8553)",WOODHAVEN BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4501309,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,1:30,QUEENS,11418,40.69582,-73.821106,"(40.69582, -73.821106)",ATLANTIC AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500562,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,22:00,QUEENS,11435,40.695087,-73.80292,"(40.695087, -73.80292)",SUTPHIN BOULEVARD,106 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4501364,Sedan,Sedan,,, +02/07/2022,18:30,,,40.747486,-73.80009,"(40.747486, -73.80009)",METCALF AVENUE,,,1,0,0,0,0,0,1,0,Unsafe Speed,Traffic Control Disregarded,,,,4500841,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,17:29,BROOKLYN,11207,40.67148,-73.898674,"(40.67148, -73.898674)",ALABAMA AVENUE,PITKIN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500941,Sedan,,,, +02/07/2022,19:30,QUEENS,11414,40.65972,-73.845825,"(40.65972, -73.845825)",,,158-06 87 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500879,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,7:38,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4501249,Sedan,,,, +02/02/2022,6:30,BROOKLYN,11231,40.67098,-73.99997,"(40.67098, -73.99997)",BAY STREET,SMITH STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501284,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,17:12,,,40.655632,-73.95987,"(40.655632, -73.95987)",PARKSIDE AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,,4500909,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +02/03/2022,19:50,,,40.6771,-73.92479,"(40.6771, -73.92479)",BUFFALO AVENUE,,,1,0,1,0,0,0,0,0,,,,,,4501406,,,,, +02/07/2022,9:52,,,40.879864,-73.87596,"(40.879864, -73.87596)",EAST GUN HILL ROAD,,,2,0,0,0,0,0,2,0,Aggressive Driving/Road Rage,Pavement Slippery,,,,4500769,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,8:39,MANHATTAN,10027,40.815826,-73.954475,"(40.815826, -73.954475)",,,1421 AMSTERDAM AVENUE,1,0,0,0,1,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500795,Bike,,,, +02/07/2022,17:05,,,40.849285,-73.93894,"(40.849285, -73.93894)",FORT WASHINGTON AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501047,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,0:00,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unsafe Lane Changing,,,,4500851,Sedan,,,, +02/07/2022,20:00,,,40.66645,-73.75764,"(40.66645, -73.75764)",NORTH CONDUIT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501206,Station Wagon/Sport Utility Vehicle,Bus,,, +02/07/2022,12:00,,,40.843678,-73.89426,"(40.843678, -73.89426)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Other Vehicular,Following Too Closely,,,,4500976,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,16:15,,,40.749638,-73.99905,"(40.749638, -73.99905)",WEST 28 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4501059,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +02/07/2022,7:14,,,40.691765,-73.99992,"(40.691765, -73.99992)",,,ATLANTIC AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4500782,Sedan,Box Truck,,, +02/07/2022,8:00,BROOKLYN,11206,40.70004,-73.9361,"(40.70004, -73.9361)",BUSHWICK AVENUE,NOLL STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500889,Sedan,,,, +02/07/2022,16:19,,,,,,WEST 98 STREET,,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4501302,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +01/12/2022,13:22,,,40.76102,-73.88826,"(40.76102, -73.88826)",80 STREET,,,1,0,1,0,0,0,0,0,,,,,,4501395,,,,, +02/07/2022,16:42,BRONX,10461,40.84126,-73.84091,"(40.84126, -73.84091)",,,2611 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501235,Sedan,,,, +11/18/2021,8:50,,,40.66059,-73.931335,"(40.66059, -73.931335)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478716,Sedan,,,, +02/07/2022,9:30,,,40.735424,-73.974754,"(40.735424, -73.974754)",EAST 23 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500846,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,8:00,QUEENS,11368,40.74418,-73.851906,"(40.74418, -73.851906)",111 STREET,52 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4500897,Sedan,Sedan,,, +11/20/2021,18:59,MANHATTAN,10017,40.756557,-73.97444,"(40.756557, -73.97444)",EAST 49 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4501291,Station Wagon/Sport Utility Vehicle,Tow Truck / Wrecker,,, +02/07/2022,10:55,,,,,,GOWANUS EXPRESSWAY,79 STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4501029,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/07/2022,5:40,,,,,,EAST 59 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500621,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,7:30,QUEENS,11420,,,,LEFFERTS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501170,Sedan,,,, +02/07/2022,16:40,BROOKLYN,11218,40.647797,-73.97497,"(40.647797, -73.97497)",PROSPECT EXPRESSWAY,CATON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500834,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,12:00,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501069,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,17:00,BRONX,10458,40.860035,-73.89117,"(40.860035, -73.89117)",EAST 189 STREET,3 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500983,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,23:20,MANHATTAN,10019,40.761242,-73.97946,"(40.761242, -73.97946)",,,1301 AVENUE OF THE AMERICAS,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500928,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,5:30,QUEENS,11372,40.748962,-73.89176,"(40.748962, -73.89176)",37 AVENUE,74 STREET,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4501400,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,15:40,BRONX,10463,40.880966,-73.90546,"(40.880966, -73.90546)",KINGSBRIDGE AVENUE,WEST 232 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500958,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,20:48,,,40.728413,-73.99426,"(40.728413, -73.99426)",BROADWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501294,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,14:00,,,40.8436,-73.94511,"(40.8436, -73.94511)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500869,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,8:00,BROOKLYN,11222,40.722637,-73.95419,"(40.722637, -73.95419)",BANKER STREET,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501223,Sedan,,,, +02/02/2022,20:35,MANHATTAN,10029,40.796005,-73.93542,"(40.796005, -73.93542)",EAST 116 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4501265,,,,, +02/07/2022,17:06,BRONX,10468,40.870487,-73.890434,"(40.870487, -73.890434)",GRAND CONCOURSE,MINERVA PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500896,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,22:00,,,40.691536,-73.99912,"(40.691536, -73.99912)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501093,Tanker,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,3:33,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500692,Box Truck,Box Truck,,, +02/07/2022,18:18,QUEENS,11421,40.691353,-73.85506,"(40.691353, -73.85506)",89 STREET,88 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500964,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,13:18,BROOKLYN,11236,40.632435,-73.88818,"(40.632435, -73.88818)",ROCKAWAY PARKWAY,SKIDMORE AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,Unspecified,,,4500810,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/07/2022,12:50,,,40.663292,-73.92543,"(40.663292, -73.92543)",EAST 95 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500971,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,8:45,MANHATTAN,10036,40.75783,-73.99125,"(40.75783, -73.99125)",,,350 WEST 42 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520053,Bus,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,20:12,,,40.585976,-73.98799,"(40.585976, -73.98799)",CROPSEY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4500963,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/06/2022,10:00,,,40.68693,-73.95089,"(40.68693, -73.95089)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501313,Sedan,Sedan,,, +02/07/2022,17:33,BROOKLYN,11204,40.631798,-73.979225,"(40.631798, -73.979225)",,,1750 44 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500916,Sedan,Sedan,,, +02/01/2022,11:30,QUEENS,11692,,,,,,69-33 HILLMEYER AVENUE,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,,,4501336,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/18/2021,20:40,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4478764,Sedan,Sedan,,, +02/07/2022,3:15,QUEENS,11101,40.744236,-73.92798,"(40.744236, -73.92798)",QUEENS BOULEVARD,37 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500472,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,16:37,,,40.63195,-74.14667,"(40.63195, -74.14667)",MORNINGSTAR ROAD,HOOKER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501255,Bus,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,1:20,QUEENS,11375,40.72096,-73.84698,"(40.72096, -73.84698)",70 AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501060,Sedan,,,, +02/07/2022,0:31,BROOKLYN,11210,40.634766,-73.93536,"(40.634766, -73.93536)",GLENWOOD ROAD,EAST 43 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4500780,Sedan,TRAILER,Station Wagon/Sport Utility Vehicle,, +02/07/2022,12:25,,,40.83232,-73.87395,"(40.83232, -73.87395)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500784,Sedan,UNK,,, +02/07/2022,3:15,STATEN ISLAND,10304,40.628807,-74.0745,"(40.628807, -74.0745)",FRONT STREET,NAVY PIER COURT,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4500996,Sedan,,,, +02/07/2022,14:00,,,40.577488,-73.95522,"(40.577488, -73.95522)",BRIGHTON 15 STREET,BRIGHTON BEACH AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4500819,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,8:45,BRONX,10472,40.832912,-73.86152,"(40.832912, -73.86152)",,,121 GRANT CIRCLE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501048,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,16:42,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",HICKS STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500845,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,14:15,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",EAST 233 STREET,WHITE PLAINS ROAD,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4501110,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,8:15,,,40.74608,-73.974945,"(40.74608, -73.974945)",EAST 36 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500720,Chassis Cab,Convertible,,, +02/07/2022,6:15,,,40.626316,-74.179726,"(40.626316, -74.179726)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500998,Sedan,Dump,,, +02/07/2022,12:24,,,40.667076,-73.99508,"(40.667076, -73.99508)",3 AVENUE,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4501103,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/07/2022,6:50,BRONX,10469,40.862682,-73.83895,"(40.862682, -73.83895)",KINGSLAND AVENUE,MACE AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4501203,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,18:30,MANHATTAN,10002,40.714214,-73.99462,"(40.714214, -73.99462)",,,45 DIVISION STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520695,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,17:30,,,40.679535,-73.83176,"(40.679535, -73.83176)",108 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500814,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,7:50,QUEENS,11356,40.786285,-73.83634,"(40.786285, -73.83634)",132 STREET,14 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500840,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,18:00,,,40.660797,-73.87183,"(40.660797, -73.87183)",ATKINS AVENUE,,,3,0,0,0,0,0,3,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4500942,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +02/07/2022,11:00,,,40.590908,-74.15854,"(40.590908, -74.15854)",MERRYMOUNT STREET,TRAVIS AVENUE,,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4501254,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/02/2022,14:00,,,40.67505,-73.95639,"(40.67505, -73.95639)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4501405,Box Truck,,,, +02/07/2022,2:33,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4500768,Sedan,,,, +02/07/2022,0:09,MANHATTAN,10003,40.7352,-73.9858,"(40.7352, -73.9858)",3 AVENUE,EAST 17 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4500852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,0:19,BRONX,10470,40.904385,-73.84719,"(40.904385, -73.84719)",,,812 PENFIELD STREET,0,0,0,0,0,0,0,0,Other Vehicular,Alcohol Involvement,Unspecified,,,4500691,Sedan,Sedan,Sedan,, +02/07/2022,8:59,BROOKLYN,11206,40.70216,-73.94939,"(40.70216, -73.94939)",WALTON STREET,HARRISON AVENUE,,1,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4500835,E-Scooter,,,, +02/07/2022,0:00,BRONX,10460,40.84243,-73.89015,"(40.84243, -73.89015)",,,764 EAST 176 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500989,Sedan,,,, +02/07/2022,20:00,,,40.739574,-73.79167,"(40.739574, -73.79167)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500825,Sedan,Sedan,Sedan,, +11/17/2021,20:46,,,0,0,"(0.0, 0.0)",SEDGWICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478805,Sedan,,,, +02/05/2022,4:43,QUEENS,11385,40.70456,-73.856735,"(40.70456, -73.856735)",WOODHAVEN BOULEVARD,81 ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4501312,Sedan,,,, +02/07/2022,14:45,QUEENS,11413,40.660763,-73.76493,"(40.660763, -73.76493)",146 TERRACE,182 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4501112,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +02/07/2022,7:05,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",GRAND STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500881,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,21:44,QUEENS,11377,40.74624,-73.89723,"(40.74624, -73.89723)",ROOSEVELT AVENUE,68 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501039,Sedan,Sedan,,, +02/07/2022,6:42,QUEENS,11415,40.704178,-73.83357,"(40.704178, -73.83357)",,,118-02 84 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4501161,Sedan,Tractor Truck Diesel,,, +02/07/2022,11:30,BRONX,10458,40.865658,-73.88905,"(40.865658, -73.88905)",,,325 EAST 196 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501081,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/07/2022,6:11,BRONX,10457,40.846863,-73.90142,"(40.846863, -73.90142)",WEBSTER AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500936,Motorbike,,,, +02/07/2022,10:55,,,,,,SEAMAN AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4501283,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,17:41,MANHATTAN,10016,40.747066,-73.97925,"(40.747066, -73.97925)",EAST 35 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Traffic Control Disregarded,,,,4500873,Taxi,Sedan,,, +02/04/2022,17:50,QUEENS,11385,40.700718,-73.8956,"(40.700718, -73.8956)",,,60-71 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501306,Sedan,,,, +02/07/2022,16:16,QUEENS,11360,40.778282,-73.77728,"(40.778282, -73.77728)",,,212-45 26 AVENUE,1,0,1,0,0,0,0,0,View Obstructed/Limited,,,,,4500864,Sedan,,,, +02/07/2022,6:30,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500596,Sedan,,,, +01/08/2022,23:10,,,40.825455,-73.91317,"(40.825455, -73.91317)",MELROSE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4501339,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,16:10,BRONX,10466,40.89374,-73.858444,"(40.89374, -73.858444)",,,675 EAST 233 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4500796,Sedan,,,, +02/07/2022,0:00,BROOKLYN,11210,40.622726,-73.93934,"(40.622726, -73.93934)",EAST 37 STREET,AVENUE L,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500898,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,17:43,,,40.624912,-74.146706,"(40.624912, -74.146706)",WILLOW ROAD WEST,FOREST AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4501260,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,17:19,BRONX,10468,40.862442,-73.89715,"(40.862442, -73.89715)",GRAND CONCOURSE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4500912,Box Truck,,,, +02/07/2022,16:12,MANHATTAN,10035,40.806408,-73.94016,"(40.806408, -73.94016)",MADISON AVENUE,EAST 126 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500982,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,7:49,QUEENS,11102,40.766884,-73.921394,"(40.766884, -73.921394)",31 STREET,30 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501270,Sedan,,,, +02/07/2022,17:50,BRONX,10455,40.814766,-73.918755,"(40.814766, -73.918755)",EAST 147 STREET,WILLIS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500888,Station Wagon/Sport Utility Vehicle,Bus,,, +02/07/2022,15:30,MANHATTAN,10010,40.740437,-73.98431,"(40.740437, -73.98431)",,,50 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500847,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,22:21,BRONX,10465,40.821815,-73.82673,"(40.821815, -73.82673)",SCHLEY AVENUE,BALCOM AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4501317,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +01/18/2022,17:25,BROOKLYN,11215,40.66359,-73.98764,"(40.66359, -73.98764)",,,577 6 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4501383,Sedan,,,, +02/07/2022,14:27,BROOKLYN,11238,40.672832,-73.96908,"(40.672832, -73.96908)",,,10 GRAND ARMY PLAZA,0,0,0,0,0,0,0,0,Other Vehicular,Turning Improperly,,,,4501016,Box Truck,Tractor Truck Diesel,,, +02/07/2022,19:18,,,40.80777,-73.94549,"(40.80777, -73.94549)",WEST 125 STREET,,,2,0,1,0,0,0,1,0,Unspecified,,,,,4501241,Taxi,,,, +02/07/2022,7:30,BROOKLYN,11230,40.629566,-73.96582,"(40.629566, -73.96582)",,,1116 AVENUE H,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4500922,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,17:35,BRONX,10456,40.83394,-73.9087,"(40.83394, -73.9087)",WEBSTER AVENUE,EAST 169 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4500965,Sedan,Sedan,,, +02/06/2022,0:57,,,40.850445,-73.922554,"(40.850445, -73.922554)",MAJOR DEEGAN EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Following Too Closely,Unspecified,,,4501290,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,16:00,BROOKLYN,11212,40.65942,-73.92276,"(40.65942, -73.92276)",,,1067 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500972,Taxi,,,, +02/07/2022,12:30,BRONX,10468,40.859306,-73.89885,"(40.859306, -73.89885)",EAST 184 STREET,GRAND CONCOURSE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501298,Sedan,,,, +02/07/2022,0:05,QUEENS,11420,40.679253,-73.81871,"(40.679253, -73.81871)",LINDEN BOULEVARD,121 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500498,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,20:25,MANHATTAN,10007,40.714165,-74.00632,"(40.714165, -74.00632)",BROADWAY,CHAMBERS STREET,,0,0,0,0,0,0,0,0,,,,,,4501322,,,,, +02/07/2022,9:38,MANHATTAN,10033,40.847248,-73.93687,"(40.847248, -73.93687)",WEST 177 STREET,WADSWORTH AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500872,Sedan,,,, +02/07/2022,8:00,QUEENS,11374,40.730953,-73.858864,"(40.730953, -73.858864)",98 STREET,63 DRIVE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501061,,,,, +02/07/2022,14:31,,,40.823135,-73.88225,"(40.823135, -73.88225)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500785,Bus,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,15:00,BRONX,10473,40.82094,-73.86898,"(40.82094, -73.86898)",,,1 CLASON POINT LANE SOUTH,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Other Vehicular,,,,4501049,Sedan,Bus,,, +01/23/2022,2:32,,,40.771305,-73.87664,"(40.771305, -73.87664)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501398,Sedan,,,, +02/07/2022,12:05,BRONX,10458,40.86555,-73.88897,"(40.86555, -73.88897)",,,330 EAST 196 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,18:41,,,40.670586,-73.76509,"(40.670586, -73.76509)",FARMERS BOULEVARD,,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4500933,Sedan,Sedan,,, +02/07/2022,21:19,,,40.69558,-73.83949,"(40.69558, -73.83949)",JAMAICA AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4500957,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,18:50,BRONX,10454,40.801,-73.91371,"(40.801, -73.91371)",EAST 133 STREET,WILLOW AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4501225,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/07/2022,10:49,,,40.715622,-73.99428,"(40.715622, -73.99428)",CANAL STREET,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4500993,Station Wagon/Sport Utility Vehicle,Bike,,, +02/07/2022,17:05,,,40.607643,-74.03375,"(40.607643, -74.03375)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500824,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,12:20,,,40.60855,-74.13216,"(40.60855, -74.13216)",BRADLEY AVENUE,NORTH GANNON AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4500844,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,8:58,,,40.771656,-73.95319,"(40.771656, -73.95319)",1 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500730,Van,Box Truck,,, +02/07/2022,15:30,MANHATTAN,10027,40.810238,-73.951355,"(40.810238, -73.951355)",,,256 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501000,Pick-up Truck,Sedan,,, +02/07/2022,15:00,BRONX,10467,40.878643,-73.871605,"(40.878643, -73.871605)",WEBSTER AVENUE,EAST GUN HILL ROAD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4500894,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,19:30,QUEENS,11413,40.680973,-73.73881,"(40.680973, -73.73881)",,,130-47 229 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500829,Sedan,Sedan,,, +02/07/2022,21:32,,,40.69382,-73.72694,"(40.69382, -73.72694)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4500848,Sedan,Sedan,,, +02/05/2022,12:04,BRONX,10452,40.838333,-73.91692,"(40.838333, -73.91692)",WALTON AVENUE,MARCY PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4501242,Sedan,Sedan,,, +02/07/2022,21:30,BROOKLYN,11234,40.630505,-73.92812,"(40.630505, -73.92812)",AVENUE I,UTICA AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501106,Sedan,,,, +02/07/2022,8:20,BRONX,10457,40.846226,-73.89044,"(40.846226, -73.89044)",CROTONA AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4500716,Bus,Sedan,,, +02/07/2022,18:45,BRONX,10456,40.822716,-73.9032,"(40.822716, -73.9032)",,,735 EAST 163 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500961,Sedan,,,, +02/07/2022,10:10,BROOKLYN,11238,40.685028,-73.971245,"(40.685028, -73.971245)",FULTON STREET,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4500779,Pick-up Truck,Sedan,Sedan,, +02/07/2022,10:04,,,40.881073,-73.878494,"(40.881073, -73.878494)",BAINBRIDGE AVENUE,,,7,0,0,0,0,0,7,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,,4501014,Taxi,Van,Station Wagon/Sport Utility Vehicle,School Bus, +04/13/2022,17:10,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4520501,Motorcycle,Dump,,, +11/18/2021,6:00,,,,,,EAST 133 STREET,CYPRESS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478873,Sedan,,,, +02/07/2022,7:05,BROOKLYN,11201,,,,CADMAN PLAZA WEST,TILLARY STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4500681,Station Wagon/Sport Utility Vehicle,Bus,,, +02/07/2022,18:30,BROOKLYN,11213,40.6669,-73.929375,"(40.6669, -73.929375)",,,1740 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500853,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,18:00,MANHATTAN,10029,40.786423,-73.94239,"(40.786423, -73.94239)",EAST 101 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501101,Sedan,Bus,,, +02/07/2022,19:08,BRONX,10457,40.85108,-73.8948,"(40.85108, -73.8948)",EAST 180 STREET,BATHGATE AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4500988,,,,, +02/07/2022,18:15,BRONX,10461,40.845474,-73.82703,"(40.845474, -73.82703)",,,1617 PARKVIEW AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4500813,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,18:30,,,40.77428,-73.97738,"(40.77428, -73.97738)",WEST 69 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501379,Station Wagon/Sport Utility Vehicle,,,, +01/26/2022,10:40,,,40.688698,-73.942085,"(40.688698, -73.942085)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501307,Sedan,E-Bike,,, +02/07/2022,15:55,BRONX,10452,40.834503,-73.93037,"(40.834503, -73.93037)",UNIVERSITY AVENUE,WEST 165 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500899,Sedan,Bus,,, +02/07/2022,14:54,BROOKLYN,11229,40.593975,-73.94648,"(40.593975, -73.94648)",,,2367 EAST 24 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4500882,Station Wagon/Sport Utility Vehicle,,,, +02/06/2022,9:00,,,,,,,,2700 GOETHALS ROAD NORTH,0,0,0,0,0,0,0,0,Unspecified,,,,,4501253,Sedan,,,, +01/31/2022,17:50,,,40.66606,-73.95863,"(40.66606, -73.95863)",MC KEEVER PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501277,Sedan,Sedan,,, +02/07/2022,6:35,BRONX,10453,40.854874,-73.916794,"(40.854874, -73.916794)",WEST 179 STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500915,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,12:50,BROOKLYN,11236,40.633682,-73.89868,"(40.633682, -73.89868)",REMSEN AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4500809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,11:15,QUEENS,11363,,,,NORTHERN BOULEVARD,LITTLE NECK PARKWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500766,Sedan,,,, +01/31/2022,9:30,,,40.67556,-73.96334,"(40.67556, -73.96334)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501404,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,12:21,MANHATTAN,10039,40.829422,-73.93877,"(40.829422, -73.93877)",,,250 BRADHURST AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501038,Sedan,Box Truck,,, +02/07/2022,6:30,QUEENS,11435,40.69261,-73.80314,"(40.69261, -73.80314)",107 AVENUE,LIVERPOOL STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4501144,Sedan,,,, +02/07/2022,18:48,BROOKLYN,11206,40.71043,-73.948784,"(40.71043, -73.948784)",LORIMER STREET,MAUJER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4500836,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,16:00,BROOKLYN,11207,40.654488,-73.89521,"(40.654488, -73.89521)",STANLEY AVENUE,WILLIAMS AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500937,Bus,,,, +02/07/2022,8:00,QUEENS,11104,40.736683,-73.92568,"(40.736683, -73.92568)",,,50-29 40 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501078,Van,,,, +02/07/2022,15:37,BRONX,10457,40.84979,-73.89815,"(40.84979, -73.89815)",,,4301 PARK AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4500979,Bus,Box Truck,,, +02/07/2022,6:10,,,40.666546,-73.78808,"(40.666546, -73.78808)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4500747,Station Wagon/Sport Utility Vehicle,SEDAN,,, +02/07/2022,6:45,BRONX,10454,40.80892,-73.91844,"(40.80892, -73.91844)",EAST 140 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500600,Sedan,Pick-up Truck,,, +02/07/2022,16:23,BROOKLYN,11234,40.613297,-73.92238,"(40.613297, -73.92238)",EAST 54 STREET,AVENUE S,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4500862,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,23:00,,,40.65753,-73.89797,"(40.65753, -73.89797)",LINDEN BOULEVARD,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4500943,Sedan,Box Truck,,, +02/07/2022,19:15,QUEENS,11358,40.750656,-73.79135,"(40.750656, -73.79135)",47 AVENUE,188 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500839,Sedan,,,, +02/05/2022,10:15,QUEENS,11385,40.704163,-73.86843,"(40.704163, -73.86843)",,,78-40 80 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501311,Sedan,Sedan,,, +01/31/2022,19:00,QUEENS,11361,40.765774,-73.775154,"(40.765774, -73.775154)",211 STREET,38 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501349,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,12:45,,,40.57397,-74.16992,"(40.57397, -74.16992)",INDEPENDENCE AVENUE,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501259,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/01/2022,9:00,,,40.709747,-73.82057,"(40.709747, -73.82057)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501271,Sedan,Dump,,, +02/07/2022,12:00,STATEN ISLAND,10301,40.63596,-74.08321,"(40.63596, -74.08321)",,,225 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501004,Sedan,,,, +02/07/2022,14:01,,,40.70546,-73.7949,"(40.70546, -73.7949)",165 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500787,Box Truck,Sedan,,, +02/07/2022,16:30,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501066,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,6:25,STATEN ISLAND,10304,40.624603,-74.079605,"(40.624603, -74.079605)",TOMPKINS AVENUE,BROAD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500994,Taxi,,,, +02/07/2022,2:11,QUEENS,11378,40.72773,-73.90674,"(40.72773, -73.90674)",LONG ISLAND EXPRESSWAY,MAURICE AVENUE,,4,0,0,0,0,0,4,0,Unspecified,,,,,4500772,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,20:15,BROOKLYN,11209,40.62143,-74.02299,"(40.62143, -74.02299)",84 STREET,FORT HAMILTON PARKWAY,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500832,Sedan,E-Bike,,, +02/07/2022,15:00,MANHATTAN,10128,40.781315,-73.94614,"(40.781315, -73.94614)",EAST 93 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4501191,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/07/2022,23:23,BRONX,10466,40.88974,-73.84591,"(40.88974, -73.84591)",EAST 233 STREET,LACONIA AVENUE,,2,0,0,0,0,0,2,0,Pavement Slippery,Unspecified,,,,4501119,Sedan,Garbage or Refuse,,, +02/07/2022,10:45,MANHATTAN,10035,40.80425,-73.9371,"(40.80425, -73.9371)",,,145 EAST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4500743,Station Wagon/Sport Utility Vehicle,Bus,,, +02/06/2022,13:25,,,40.786423,-73.94239,"(40.786423, -73.94239)",1 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501262,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,17:25,BROOKLYN,11230,40.63448,-73.962204,"(40.63448, -73.962204)",FOSTER AVENUE,EAST 16 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500919,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,8:00,BRONX,10465,40.811005,-73.80481,"(40.811005, -73.80481)",EGER PLACE,PENNYFIELD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501316,Sedan,,,, +02/07/2022,6:40,BROOKLYN,11208,40.689297,-73.86862,"(40.689297, -73.86862)",,,75 GRANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501324,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,4:30,BROOKLYN,11212,40.665524,-73.91939,"(40.665524, -73.91939)",,,668 HOWARD AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4500526,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,18:51,,,,,,EAST 173 STREET,PARK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500960,Sedan,,,, +02/07/2022,6:36,BRONX,10459,40.82364,-73.89391,"(40.82364, -73.89391)",WESTCHESTER AVENUE,FOX STREET,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4500974,Box Truck,Ambulance,,, +02/07/2022,17:35,BROOKLYN,11201,40.692497,-73.98896,"(40.692497, -73.98896)",,,345 ADAMS STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500871,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,3:01,BROOKLYN,11224,40.575497,-73.97879,"(40.575497, -73.97879)",SURF AVENUE,JONES WALK,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4501228,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/07/2022,11:33,BRONX,10468,40.862747,-73.90494,"(40.862747, -73.90494)",WEST FORDHAM ROAD,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4500893,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,19:11,,,40.650856,-73.9486,"(40.650856, -73.9486)",CHURCH AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4500966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,12:00,BRONX,10461,40.841236,-73.84169,"(40.841236, -73.84169)",,,1315 BLONDELL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4500822,Sedan,,,, +02/07/2022,4:45,BROOKLYN,11203,,,,CLARENDON ROAD,SCHENECTADY AVENUE,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4500714,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,15:24,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRUCKNER BOULEVARD,BRONX RIV AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4501051,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,10:00,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4501247,Sedan,,,, +02/07/2022,15:40,MANHATTAN,10011,40.738045,-73.996346,"(40.738045, -73.996346)",WEST 15 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500849,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,18:49,,,40.740784,-73.815,"(40.740784, -73.815)",KISSENA BOULEVARD,59 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500843,Station Wagon/Sport Utility Vehicle,,,, +11/07/2021,20:40,,,,,,2 avenue,2 avenue,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478956,E-Scooter,,,, +02/07/2022,17:30,BRONX,10469,40.870605,-73.8465,"(40.870605, -73.8465)",,,1357 EAST GUN HILL ROAD,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4501107,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/07/2022,18:50,BRONX,10455,40.816555,-73.91677,"(40.816555, -73.91677)",3 AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4500887,Sedan,,,, +02/07/2022,15:17,BROOKLYN,11207,40.66278,-73.88086,"(40.66278, -73.88086)",LINDEN BOULEVARD,ASHFORD STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4500932,Station Wagon/Sport Utility Vehicle,,,, +01/23/2022,5:00,QUEENS,11369,40.75969,-73.863914,"(40.75969, -73.863914)",,,105-04 32 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501397,Sedan,Sedan,,, +02/04/2022,10:30,BROOKLYN,11236,40.64771,-73.91533,"(40.64771, -73.91533)",,,8910 DITMAS AVENUE,0,0,0,0,0,0,0,0,,,,,,4501299,,,,, +02/07/2022,0:00,BRONX,10455,40.812473,-73.902916,"(40.812473, -73.902916)",,,576 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4500951,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,23:32,,,40.699715,-73.96182,"(40.699715, -73.96182)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4500877,Sedan,Sedan,,, +02/04/2022,9:04,MANHATTAN,10032,40.835243,-73.94187,"(40.835243, -73.94187)",,,539 WEST 160 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501274,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,19:15,BRONX,10472,40.834423,-73.879265,"(40.834423, -73.879265)",BRONX RIVER AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4501286,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +02/07/2022,18:00,,,40.827812,-73.925934,"(40.827812, -73.925934)",EAST 161 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4500900,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,15:10,MANHATTAN,10014,40.728603,-74.005325,"(40.728603, -74.005325)",WEST HOUSTON STREET,VARICK STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520552,Sedan,3-Door,,, +04/18/2022,0:00,QUEENS,11413,40.67785,-73.74548,"(40.67785, -73.74548)",,,224-01 MERRICK BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4520141,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,23:00,QUEENS,11364,40.75188,-73.77339,"(40.75188, -73.77339)",,,206-18 50 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520267,Pick-up Truck,,,, +04/18/2022,21:00,,,40.654984,-74.00711,"(40.654984, -74.00711)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520527,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/18/2022,16:00,,,40.604645,-74.16238,"(40.604645, -74.16238)",RICHMOND AVENUE,ETON PLACE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520423,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2022,8:00,,,40.75855,-73.82964,"(40.75855, -73.82964)",MAIN STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520038,Tractor Truck Diesel,Bus,,, +04/18/2022,3:58,MANHATTAN,10030,40.819225,-73.94455,"(40.819225, -73.94455)",,,2602 8 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,,,4519849,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2022,16:35,,,40.676304,-73.82029,"(40.676304, -73.82029)",ROCKAWAY BOULEVARD,118 STREET,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,4520172,Station Wagon/Sport Utility Vehicle,PK,Station Wagon/Sport Utility Vehicle,, +04/18/2022,17:45,MANHATTAN,10027,40.810295,-73.95293,"(40.810295, -73.95293)",,,284 SAINT NICHOLAS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520284,Sedan,Sedan,,, +04/18/2022,16:20,,,40.72839,-73.83302,"(40.72839, -73.83302)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4520144,Dump,Sedan,,, +04/14/2022,17:25,,,,,,ARTHUR KILL,Huguenot ave,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520639,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/18/2022,9:10,BRONX,10465,40.8262,-73.821686,"(40.8262, -73.821686)",RANDALL AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520667,Station Wagon/Sport Utility Vehicle,Carry All,,, +04/18/2022,8:00,QUEENS,11368,40.756214,-73.857704,"(40.756214, -73.857704)",,,34-66 111 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4520577,Sedan,Garbage or Refuse,,, +04/15/2022,6:56,MANHATTAN,10029,40.79162,-73.94885,"(40.79162, -73.94885)",PARK AVENUE,EAST 104 STREET,,0,0,0,0,0,0,0,0,Vehicle Vandalism,Unspecified,,,,4520735,Sedan,Sedan,,, +04/18/2022,15:02,BROOKLYN,11212,40.65474,-73.90693,"(40.65474, -73.90693)",LINDEN BOULEVARD,ROCKAWAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520188,Sedan,Box Truck,,, +04/14/2022,11:00,QUEENS,11385,40.702652,-73.90107,"(40.702652, -73.90107)",,,68-41 FOREST AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520592,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,17:35,,,40.716644,-73.99582,"(40.716644, -73.99582)",BOWERY,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4504955,Sedan,,,, +01/07/2022,15:35,,,40.695614,-73.94056,"(40.695614, -73.94056)",MARCUS GARVEY BOULEVARD,,,6,0,0,0,0,0,6,0,Traffic Control Disregarded,Unsafe Speed,,,,4501308,Sedan,Sedan,,, +04/16/2022,9:31,,,40.786175,-73.9457,"(40.786175, -73.9457)",2 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520487,Box Truck,Sedan,,, +04/18/2022,9:25,BROOKLYN,11239,40.65234,-73.87643,"(40.65234, -73.87643)",,,642 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Backing Unsafely,Driver Inattention/Distraction,,,,4520085,Station Wagon/Sport Utility Vehicle,Dump,,, +04/16/2022,17:30,BRONX,10467,40.869682,-73.86823,"(40.869682, -73.86823)",ADEE AVENUE,OLINVILLE AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,,4520521,Sedan,Sedan,Sedan,, +04/18/2022,5:00,BROOKLYN,11233,40.679512,-73.91772,"(40.679512, -73.91772)",,,107 MACDOUGAL STREET,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4520710,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/18/2022,14:05,BRONX,10457,40.853344,-73.89162,"(40.853344, -73.89162)",,,4422 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520457,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/18/2022,11:12,MANHATTAN,10002,40.723274,-73.99122,"(40.723274, -73.99122)",,,229 CHRYSTIE STREET,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520062,Sedan,E-Scooter,,, +04/18/2022,18:28,BROOKLYN,11214,40.59952,-73.99876,"(40.59952, -73.99876)",BATH AVENUE,BAY 28 STREET,,1,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520132,E-Bike,Sedan,,, +04/17/2022,1:19,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4520558,Sedan,Sedan,,, +04/09/2022,7:50,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520548,Taxi,Dump,,, +04/18/2022,10:40,STATEN ISLAND,10304,40.62551,-74.07599,"(40.62551, -74.07599)",BROAD STREET,BROWNELL STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520014,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,0:21,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4520739,Taxi,,,, +04/09/2022,3:30,BRONX,10465,40.832565,-73.82785,"(40.832565, -73.82785)",,,3431 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520580,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,13:49,BRONX,10460,40.840607,-73.87516,"(40.840607, -73.87516)",,,430 BRONX PARK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520240,Sedan,Pick-up Truck,,, +04/07/2022,16:30,,,40.86159,-73.92475,"(40.86159, -73.92475)",NAGLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520650,Sedan,,,, +04/18/2022,18:14,MANHATTAN,10013,,,,,,101 LEONARD STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520655,Sedan,Van,,, +04/18/2022,1:49,BROOKLYN,11235,40.58207,-73.95513,"(40.58207, -73.95513)",,,35 CASS PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4519792,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,20:26,BROOKLYN,11217,40.681484,-73.97703,"(40.681484, -73.97703)",5 AVENUE,BERGEN STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520319,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/18/2022,8:00,BRONX,10467,40.884167,-73.86467,"(40.884167, -73.86467)",,,647 EAST 219 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4520393,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,0:00,,,40.694794,-73.98246,"(40.694794, -73.98246)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520725,Sedan,,,, +04/18/2022,19:48,MANHATTAN,10028,40.780174,-73.95721,"(40.780174, -73.95721)",EAST 86 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520185,Sedan,Sedan,,, +04/14/2022,19:13,,,,,,BRONX RIVER PARKWAY RAMP,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,Unspecified,,,4520564,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2022,12:30,MANHATTAN,10019,40.765728,-73.98359,"(40.765728, -73.98359)",,,938 8 AVENUE,1,0,1,0,0,0,0,0,Following Too Closely,,,,,4520216,E-Scooter,,,, +04/18/2022,6:25,BROOKLYN,11210,40.63743,-73.95254,"(40.63743, -73.95254)",,,1369 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Passing Too Closely,,,,4520778,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,11:30,,,40.607212,-74.07682,"(40.607212, -74.07682)",NARROWS ROAD NORTH,HYLAN BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520367,Sedan,Sedan,,, +04/18/2022,16:00,QUEENS,11004,40.746643,-73.711784,"(40.746643, -73.711784)",260 STREET,79 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520116,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,5:10,,,40.733425,-73.97447,"(40.733425, -73.97447)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4519960,Taxi,,,, +03/12/2022,5:20,MANHATTAN,10030,40.818638,-73.9437,"(40.818638, -73.9437)",,,219 WEST 139 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4520508,Sedan,Sedan,,, +03/27/2022,2:15,QUEENS,11377,40.756405,-73.89792,"(40.756405, -73.89792)",69 STREET,32 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520570,Sedan,,,, +11/12/2021,23:57,,,,,,,,21 GULF AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479008,Sedan,Sedan,,, +04/18/2022,16:00,STATEN ISLAND,10304,40.60415,-74.091156,"(40.60415, -74.091156)",TARGEE STREET,HAY STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4520160,Sedan,Sedan,Pick-up Truck,, +04/18/2022,20:40,,,40.760284,-73.769356,"(40.760284, -73.769356)",BELL BOULEVARD,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520149,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/15/2022,23:25,BRONX,10470,40.8995,-73.857,"(40.8995, -73.857)",NEREID AVENUE,CARPENTER AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,Unspecified,,,4520536,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/12/2022,16:20,BROOKLYN,11222,40.72514,-73.95157,"(40.72514, -73.95157)",,,692 MANHATTAN AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520749,Station Wagon/Sport Utility Vehicle,Bike,,, +04/18/2022,21:45,BRONX,10452,40.840874,-73.91979,"(40.840874, -73.91979)",WEST 170 STREET,CROMWELL AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520210,Sedan,Motorbike,,, +04/18/2022,23:15,,,40.80522,-73.93214,"(40.80522, -73.93214)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520261,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,23:50,BRONX,10474,40.812836,-73.88796,"(40.812836, -73.88796)",,,634 MANIDA STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520681,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,19:45,,,40.693905,-73.94892,"(40.693905, -73.94892)",WILLOUGHBY AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Speed,,,,4520616,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/18/2022,8:08,BROOKLYN,11218,40.647694,-73.98037,"(40.647694, -73.98037)",FORT HAMILTON PARKWAY,MC DONALD AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520305,Sedan,Sedan,,, +04/18/2022,5:00,QUEENS,11420,40.67986,-73.816605,"(40.67986, -73.816605)",LINDEN BOULEVARD,HAWTREE CREEK ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520190,Sedan,Pick-up Truck,,, +04/15/2022,21:00,MANHATTAN,10001,40.753906,-73.99962,"(40.753906, -73.99962)",WEST 33 STREET,10 AVENUE,,0,0,0,0,0,0,0,0,Failure to Keep Right,Unspecified,,,,4520594,Motorized,EMT Truck,,, +03/31/2022,18:10,BROOKLYN,11206,40.69981,-73.949844,"(40.69981, -73.949844)",,,552 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520606,EMT Ambula,Sedan,,, +04/16/2022,19:11,MANHATTAN,10024,40.78517,-73.973145,"(40.78517, -73.973145)",COLUMBUS AVENUE,WEST 84 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520632,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,17:21,BROOKLYN,11204,40.628925,-73.98204,"(40.628925, -73.98204)",,,1744 49 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520226,Box Truck,Sedan,,, +04/25/2022,14:30,QUEENS,11385,40.71319,-73.91977,"(40.71319, -73.91977)",,,61 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522586,Box Truck,Sedan,,, +04/25/2022,18:25,STATEN ISLAND,10306,40.57585,-74.11352,"(40.57585, -74.11352)",SOUTH RAILROAD AVENUE,LOCUST AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4522037,Station Wagon/Sport Utility Vehicle,3-Door,,, +04/25/2022,17:15,,,40.757732,-73.99686,"(40.757732, -73.99686)",10 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4522491,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,15:30,,,,,,STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4522606,Pick-up Truck,Sedan,,, +04/25/2022,17:07,,,40.84205,-73.83791,"(40.84205, -73.83791)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522200,Pick-up Truck,Sedan,,, +04/25/2022,11:50,BROOKLYN,11229,0,0,"(0.0, 0.0)",AVENUE V,EAST 12 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4522090,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/25/2022,21:25,,,,,,NEW ENGLAND THRUWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522204,Sedan,,,, +04/25/2022,4:45,QUEENS,11368,40.74961,-73.86969,"(40.74961, -73.86969)",JUNCTION BOULEVARD,38 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522152,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/21/2022,21:35,BROOKLYN,11210,0,0,"(0.0, 0.0)",FARRAGUT ROAD,EAST 37 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4522516,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,4:30,QUEENS,11373,40.737705,-73.88231,"(40.737705, -73.88231)",QUEENS BOULEVARD,51 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4521775,Station Wagon/Sport Utility Vehicle,,,, +04/11/2022,17:09,BROOKLYN,11223,40.60432,-73.971,"(40.60432, -73.971)",KINGS HIGHWAY,EAST 2 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4522562,Station Wagon/Sport Utility Vehicle,,,, +04/21/2022,10:20,BROOKLYN,11228,40.61867,-74.00198,"(40.61867, -74.00198)",,,7314 15 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4522676,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,17:17,BROOKLYN,11234,0,0,"(0.0, 0.0)",,,1703 RYDER STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4522064,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,18:30,,,40.665794,-73.7464,"(40.665794, -73.7464)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520415,Sedan,,,, +02/05/2022,19:03,,,,,,BROADWAY,BROADWAY,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4501487,Bus,Sedan,,, +08/28/2021,20:42,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,,,1,1,1,1,0,0,0,0,Unsafe Speed,,,,,4452540,Sedan,,,, +12/02/2021,15:00,BROOKLYN,11234,40.632065,-73.91861,"(40.632065, -73.91861)",FLATLANDS AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4483241,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,15:50,BROOKLYN,11207,40.68428,-73.88958,"(40.68428, -73.88958)",,,361 HIGHLAND BOULEVARD,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4498861,Bus,Sedan,,, +02/01/2022,20:57,,,40.832253,-73.88453,"(40.832253, -73.88453)",SHERIDAN EXPRESSWAY,EAST 172 STREET,,5,0,0,0,0,0,5,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4499421,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/08/2022,13:30,QUEENS,11101,40.746033,-73.93441,"(40.746033, -73.93441)",QUEENS BOULEVARD,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501692,Box Truck,,,, +02/08/2022,19:00,,,40.85958,-73.86653,"(40.85958, -73.86653)",ASTOR AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4501709,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,17:46,BROOKLYN,11212,,,,EAST 98 STREET,RALPH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501673,Sedan,Sedan,,, +02/03/2022,17:30,BRONX,10468,40.859608,-73.90778,"(40.859608, -73.90778)",WEST 183 STREET,UNIVERSITY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501703,Station Wagon/Sport Utility Vehicle,,,, +01/29/2022,4:55,,,40.81312,-73.965294,"(40.81312, -73.965294)",HENRY HUDSON PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4501667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,20:19,,,40.738403,-73.93864,"(40.738403, -73.93864)",30 PLACE,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501690,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,5:00,BRONX,10461,40.844887,-73.82616,"(40.844887, -73.82616)",,,3407 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4501700,Sedan,Sedan,,, +01/29/2022,17:30,MANHATTAN,10027,40.815765,-73.956604,"(40.815765, -73.956604)",WEST 129 STREET,OLD BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501666,Sedan,,,, +02/08/2022,16:10,,,40.76843,-73.961555,"(40.76843, -73.961555)",EAST 70 STREET,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4501681,Station Wagon/Sport Utility Vehicle,,,, +01/10/2022,16:16,,,40.706367,-73.9336,"(40.706367, -73.9336)",BOGART STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501716,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,18:30,QUEENS,11377,40.73963,-73.92226,"(40.73963, -73.92226)",43 STREET,48 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501693,Sedan,,,, +02/05/2022,12:29,STATEN ISLAND,10312,40.565235,-74.181404,"(40.565235, -74.181404)",ARTHUR KILL ROAD,WOODROW ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501712,Station Wagon/Sport Utility Vehicle,,,, +02/22/2022,19:50,,,,,,2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4504966,Sedan,Sedan,,, +02/08/2022,5:30,QUEENS,11419,40.694653,-73.8192,"(40.694653, -73.8192)",,,129-13 95 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501162,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,8:45,BROOKLYN,11206,40.69783,-73.93677,"(40.69783, -73.93677)",BROADWAY,ARION PLACE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501280,Station Wagon/Sport Utility Vehicle,Bike,,, +02/08/2022,14:50,,,40.680088,-73.80177,"(40.680088, -73.80177)",116 AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4501207,Sedan,Multi-Wheeled Vehicle,,, +02/07/2022,11:10,,,,,,GOWANUS RAMP,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501650,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/06/2022,22:12,BROOKLYN,11203,40.654045,-73.92673,"(40.654045, -73.92673)",LINDEN BOULEVARD,EAST 54 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4501605,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +02/08/2022,0:25,BROOKLYN,11210,40.626564,-73.94881,"(40.626564, -73.94881)",AVENUE J,EAST 28 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500923,Sedan,Sedan,,, +02/08/2022,15:29,BROOKLYN,11229,,,,,,2936 AVENUE T,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4501187,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/08/2022,14:29,BROOKLYN,11232,40.651512,-74.00734,"(40.651512, -74.00734)",4 AVENUE,41 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4501382,Sedan,Bike,,, +02/08/2022,18:58,BRONX,10455,40.81218,-73.9011,"(40.81218, -73.9011)",TIMPSON PLACE,SAINT JOHN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501230,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,19:50,BROOKLYN,11236,40.645397,-73.893585,"(40.645397, -73.893585)",AVENUE J,EAST 104 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501556,Sedan,Sedan,,, +02/08/2022,5:30,MANHATTAN,10017,40.75587,-73.972824,"(40.75587, -73.972824)",EAST 49 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4501006,FOOD CART,,,, +02/08/2022,13:55,BROOKLYN,11235,40.57729,-73.949165,"(40.57729, -73.949165)",ORIENTAL BOULEVARD,DOVER STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501238,Sedan,,,, +01/30/2022,20:00,BRONX,10466,40.886333,-73.847885,"(40.886333, -73.847885)",,,4034 LACONIA AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4501645,Station Wagon/Sport Utility Vehicle,,,, +02/07/2022,6:26,,,40.89091,-73.887215,"(40.89091, -73.887215)",MOSHOLU PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4501512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/08/2022,9:20,BRONX,10454,40.808838,-73.92229,"(40.808838, -73.92229)",,,408 EAST 138 STREET,1,0,1,0,0,0,0,0,Glare,,,,,4501033,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,15:45,,,40.695995,-73.782776,"(40.695995, -73.782776)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501145,Sedan,Sedan,,, +02/08/2022,5:55,MANHATTAN,10029,40.79676,-73.9451,"(40.79676, -73.9451)",EAST 112 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4501292,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,15:00,BROOKLYN,11207,40.662445,-73.88276,"(40.662445, -73.88276)",,,738 JEROME STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501325,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,1:52,,,40.675926,-73.95608,"(40.675926, -73.95608)",SAINT MARKS AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501417,,,,, +02/08/2022,12:17,MANHATTAN,10012,40.72345,-73.99594,"(40.72345, -73.99594)",,,50 PRINCE STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4501483,Station Wagon/Sport Utility Vehicle,Bike,,, +02/08/2022,17:35,BROOKLYN,11219,0,0,"(0.0, 0.0)",,,929 64 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501124,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,8:30,BROOKLYN,11208,,,,,,919 GLENMORE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501075,Sedan,,,, +02/08/2022,16:39,,,40.737797,-73.8507,"(40.737797, -73.8507)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501113,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,8:00,BROOKLYN,11208,40.676468,-73.87661,"(40.676468, -73.87661)",,,403 LOGAN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501076,Sedan,,,, +02/08/2022,18:48,QUEENS,11375,40.71077,-73.852806,"(40.71077, -73.852806)",METROPOLITAN AVENUE,70 ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501138,Sedan,,,, +02/08/2022,9:50,MANHATTAN,10002,40.713787,-73.98512,"(40.713787, -73.98512)",MONTGOMERY STREET,HENRY STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501042,Van,Van,,, +02/08/2022,18:20,BROOKLYN,11210,40.62948,-73.94447,"(40.62948, -73.94447)",AVENUE I,NEW YORK AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501464,Sedan,,,, +02/08/2022,6:43,MANHATTAN,10028,,,,83 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4501217,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,18:50,BROOKLYN,11204,40.608078,-73.979706,"(40.608078, -73.979706)",WEST 6 STREET,AVENUE P,,0,0,0,0,0,0,0,0,Cell Phone (hand-Held),Unspecified,,,,4501246,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,19:48,QUEENS,11374,40.72841,-73.86044,"(40.72841, -73.86044)",,,64-20 SAUNDERS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501500,Sedan,Sedan,,, +02/08/2022,19:48,BROOKLYN,11236,40.636707,-73.88519,"(40.636707, -73.88519)",EAST 103 STREET,SEAVIEW AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4501342,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/19/2022,6:37,BROOKLYN,11221,40.691456,-73.9178,"(40.691456, -73.9178)",EVERGREEN AVENUE,WOODBINE STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unsafe Speed,,,,4501488,Van,Bike,,, +02/08/2022,7:55,,,,,,TRIBOROUGH BRIDGE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unsafe Speed,,,,4501070,Sedan,Sedan,,, +02/08/2022,9:36,,,40.66802,-73.95894,"(40.66802, -73.95894)",FRANKLIN AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501130,Sedan,,,, +02/08/2022,15:05,MANHATTAN,10075,40.772194,-73.954445,"(40.772194, -73.954445)",,,343 EAST 78 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501195,Sedan,,,, +02/08/2022,10:00,BROOKLYN,11207,,,,BELMONT AVENUE,SHEFFIELD AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4501323,Sedan,Sedan,,, +01/27/2022,21:00,MANHATTAN,10003,40.736336,-73.98301,"(40.736336, -73.98301)",,,235 EAST 20 STREET,1,0,1,0,0,0,0,0,Other Vehicular,,,,,4501587,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,19:10,BROOKLYN,11217,40.6855,-73.98526,"(40.6855, -73.98526)",,,205 DEAN STREET,1,0,0,0,0,0,1,0,Brakes Defective,Unspecified,,,,4501146,Sedan,Sedan,,, +02/08/2022,17:47,QUEENS,11362,40.77139,-73.73489,"(40.77139, -73.73489)",NORTHERN BOULEVARD,WESTMORELAND STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4501174,Sedan,Sedan,,, +02/08/2022,14:10,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4501085,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,0:30,MANHATTAN,10027,40.80904,-73.948524,"(40.80904, -73.948524)",,,158 WEST 125 STREET,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501552,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +02/08/2022,16:00,QUEENS,11433,40.704456,-73.79411,"(40.704456, -73.79411)",,,92-47 165 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501363,Sedan,,,, +02/08/2022,9:15,,,,,,WASHINGTON BRIDGE 181 ST,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4501453,Tractor Truck Diesel,Sedan,,, +02/06/2022,0:45,BRONX,10463,40.886494,-73.90871,"(40.886494, -73.90871)",WEST 236 STREET,OXFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501543,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,19:23,BROOKLYN,11215,40.676777,-73.98141,"(40.676777, -73.98141)",,,709 UNION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501213,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/03/2022,16:55,QUEENS,11432,40.703987,-73.79855,"(40.703987, -73.79855)",JAMAICA AVENUE,161 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501622,,,,, +02/08/2022,12:20,BROOKLYN,11238,40.675755,-73.97143,"(40.675755, -73.97143)",FLATBUSH AVENUE,8 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4501239,Sedan,Sedan,,, +02/08/2022,20:17,BROOKLYN,11229,,,,AVENUE P,EAST 27 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501183,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,13:15,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4501305,Sedan,Box Truck,,, +02/08/2022,15:49,,,40.681767,-73.96754,"(40.681767, -73.96754)",VANDERBILT AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501151,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,0:42,,,40.71126,-73.899864,"(40.71126, -73.899864)",FRESH POND ROAD,MENAHAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501569,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,18:57,,,40.661892,-73.77571,"(40.661892, -73.77571)",ROCKAWAY BOULEVARD,145 DRIVE,,2,0,0,0,0,0,2,0,Headlights Defective,Unsafe Speed,,,,4501266,Box Truck,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,18:20,BROOKLYN,11223,40.60753,-73.96482,"(40.60753, -73.96482)",QUENTIN ROAD,EAST 8 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501188,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,8:38,BROOKLYN,11223,40.60594,-73.97929,"(40.60594, -73.97929)",WEST 6 STREET,QUENTIN ROAD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501267,Bus,Sedan,,, +02/08/2022,18:43,BRONX,10474,40.814503,-73.88649,"(40.814503, -73.88649)",FAILE STREET,SPOFFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501231,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,23:19,,,,,,,,597 EAST 96 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479417,Sedan,,,, +01/06/2022,19:00,QUEENS,11432,40.707714,-73.802795,"(40.707714, -73.802795)",PARSONS BOULEVARD,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501638,Sedan,Sedan,,, +02/08/2022,3:50,,,40.666386,-73.80178,"(40.666386, -73.80178)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4500948,Sedan,,,, +02/08/2022,15:45,QUEENS,11417,40.670757,-73.84173,"(40.670757, -73.84173)",149 AVENUE,94 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501168,Sedan,Sedan,,, +02/06/2022,14:30,STATEN ISLAND,10309,,,,PAGE AVENUE,BOSCOMBE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501524,Sedan,Sedan,,, +02/07/2022,15:50,BROOKLYN,11218,40.650967,-73.97698,"(40.650967, -73.97698)",GREENWOOD AVENUE,EAST 5 STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4501603,Sedan,,,, +02/08/2022,7:55,BROOKLYN,11226,40.65402,-73.952255,"(40.65402, -73.952255)",,,207 LENOX ROAD,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,Unspecified,Unspecified,,4501015,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/08/2022,20:15,,,40.582233,-74.16907,"(40.582233, -74.16907)",,,2655 RICHMOND AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501649,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,17:35,BROOKLYN,11236,,,,EAST 80 STREET,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501150,Sedan,Sedan,,, +02/08/2022,18:56,BRONX,10459,40.821003,-73.89787,"(40.821003, -73.89787)",ROGERS PLACE,EAST 163 STREET,,1,0,1,0,0,0,0,0,,,,,,4501232,Sedan,,,, +02/08/2022,17:46,,,40.585163,-73.95641,"(40.585163, -73.95641)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501184,Sedan,,,, +02/07/2022,0:20,BRONX,10463,,,,VANCORTLANDT PARK SOUTH,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501511,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,0:00,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501564,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,19:35,MANHATTAN,10019,40.768642,-73.9934,"(40.768642, -73.9934)",,,619 WEST 54 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501208,Sedan,,,, +02/08/2022,9:00,,,40.573723,-74.088875,"(40.573723, -74.088875)",HUNTER AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4501084,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,11:47,BRONX,10475,40.885296,-73.82733,"(40.885296, -73.82733)",,,3550 CONNER STREET,1,0,1,0,0,0,0,0,,,,,,4501114,,,,, +02/08/2022,15:20,MANHATTAN,10027,40.815575,-73.95469,"(40.815575, -73.95469)",,,1410 AMSTERDAM AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501353,Sedan,E-Scooter,,, +02/08/2022,14:30,,,40.62442,-74.14408,"(40.62442, -74.14408)",,,33 WILLOWBROOK ROAD,1,0,1,0,0,0,0,0,,,,,,4501163,,,,, +02/08/2022,9:40,QUEENS,11419,,,,112 STREET,101 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501492,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,10:10,,,40.767185,-73.96248,"(40.767185, -73.96248)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501071,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,9:04,STATEN ISLAND,10304,40.60948,-74.08425,"(40.60948, -74.08425)",HANOVER AVENUE,STEUBEN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501279,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,17:20,,,40.749935,-73.7742,"(40.749935, -73.7742)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501098,Sedan,,,, +02/08/2022,15:44,,,40.725243,-73.933914,"(40.725243, -73.933914)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,Unspecified,,4501193,Taxi,Sedan,Sedan,Box Truck, +02/03/2022,10:05,MANHATTAN,10016,40.73841,-73.976204,"(40.73841, -73.976204)",,,435 EAST 26 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4501588,Box Truck,Box Truck,,, +02/04/2022,7:30,BRONX,10473,40.823574,-73.86351,"(40.823574, -73.86351)",STORY AVENUE,TAYLOR AVENUE,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4501501,,,,, +02/08/2022,21:38,QUEENS,11428,40.71514,-73.74937,"(40.71514, -73.74937)",211 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501155,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,10:59,BRONX,10458,40.870182,-73.88552,"(40.870182, -73.88552)",BAINBRIDGE AVENUE,EAST BEDFORD PARK BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501200,Sedan,Sedan,,, +02/07/2022,16:15,,,40.69488,-73.94042,"(40.69488, -73.94042)",MARCUS GARVEY BOULEVARD,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4501579,Bus,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,3:00,BROOKLYN,11208,40.680504,-73.8829,"(40.680504, -73.8829)",FULTON STREET,ESSEX STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4501330,Sedan,Sedan,,, +02/08/2022,7:45,,,40.633038,-74.039314,"(40.633038, -74.039314)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4501021,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,6:25,,,40.692528,-73.79096,"(40.692528, -73.79096)",110 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4501139,Sedan,Sedan,,, +02/08/2022,14:46,BROOKLYN,11220,40.647217,-74.00814,"(40.647217, -74.00814)",,,4612 5 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501381,Bike,Sedan,,, +02/08/2022,10:08,QUEENS,11105,,,,DITMARS BOULEVARD,STEINWAY STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501289,Sedan,,,, +02/08/2022,18:15,BROOKLYN,11226,,,,DITMAS AVENUE,EAST 19 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501216,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,8:28,,,40.843822,-73.9275,"(40.843822, -73.9275)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4501245,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,12:40,BRONX,10466,40.889923,-73.85931,"(40.889923, -73.85931)",WHITE PLAINS ROAD,EAST 228 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Alcohol Involvement,,,,4501580,Sedan,Sedan,,, +02/08/2022,18:16,QUEENS,11364,40.73319,-73.76177,"(40.73319, -73.76177)",UNION TURNPIKE,209 STREET,,0,0,0,0,0,0,0,0,Pavement Defective,,,,,4501173,Sedan,,,, +02/08/2022,12:40,,,40.78322,-73.84679,"(40.78322, -73.84679)",121 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501496,Sedan,Pick-up Truck,,, +02/08/2022,6:11,,,,,,HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501544,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,19:25,,,40.818504,-73.91448,"(40.818504, -73.91448)",3 AVENUE,EAST 153 STREET,,1,0,1,0,0,0,0,0,,,,,,4501199,E-Bike,,,, +02/08/2022,12:45,,,40.760494,-73.8614,"(40.760494, -73.8614)",108 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501399,Sedan,Sedan,,, +02/08/2022,8:10,,,40.60205,-74.01334,"(40.60205, -74.01334)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,17:05,BROOKLYN,11204,40.623234,-73.97887,"(40.623234, -73.97887)",,,5301 20 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501257,Sedan,Sedan,,, +02/08/2022,18:41,STATEN ISLAND,10306,40.567577,-74.12715,"(40.567577, -74.12715)",AMBOY ROAD,AMBER STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4501123,Pick-up Truck,Sedan,,, +02/08/2022,19:03,MANHATTAN,10035,40.802074,-73.93912,"(40.802074, -73.93912)",,,1990 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501268,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,23:50,QUEENS,11422,40.675255,-73.73207,"(40.675255, -73.73207)",BROOKVILLE BOULEVARD,133 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501166,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,16:03,BROOKLYN,11219,40.630585,-73.98781,"(40.630585, -73.98781)",,,1548 51 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4501252,Station Wagon/Sport Utility Vehicle,Bike,,, +02/07/2022,15:19,BRONX,10468,40.8606,-73.91102,"(40.8606, -73.91102)",WEST 183 STREET,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501611,Sedan,,,, +02/08/2022,9:24,BROOKLYN,11215,40.66917,-73.98631,"(40.66917, -73.98631)",9 STREET,5 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501212,Taxi,E-Bike,,, +02/08/2022,16:55,QUEENS,11372,,,,,,73-01 37 AVENUE,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4501639,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,2:32,BRONX,10458,40.857525,-73.8818,"(40.857525, -73.8818)",EAST FORDHAM ROAD,CROTONA AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4500986,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,23:50,,,,,,kennedy expressway,belt parkway,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4501518,Sedan,Sedan,Sedan,, +02/08/2022,16:00,STATEN ISLAND,10305,40.583572,-74.08621,"(40.583572, -74.08621)",,,475 SEAVIEW AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501097,Ambulance,Ambulance,,, +02/08/2022,15:50,BROOKLYN,11232,40.66414,-73.994995,"(40.66414, -73.994995)",,,153 19 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501102,Pick-up Truck,Sedan,,, +02/08/2022,10:25,,,,,,2 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501318,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,19:39,,,40.743427,-73.775475,"(40.743427, -73.775475)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501129,Sedan,,,, +02/08/2022,17:11,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501356,,,,, +02/08/2022,22:35,QUEENS,11413,40.680115,-73.75324,"(40.680115, -73.75324)",MERRICK BOULEVARD,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501154,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,8:30,,,,,,WEST 41 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501454,Sedan,Van,,, +02/08/2022,9:00,BRONX,10468,40.859016,-73.9002,"(40.859016, -73.9002)",FIELD PLACE,CRESTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501064,Bus,Pick-up Truck,,, +02/08/2022,13:35,MANHATTAN,10013,40.72686,-74.007385,"(40.72686, -74.007385)",,,330 HUDSON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501319,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,12:30,STATEN ISLAND,10312,40.53385,-74.18698,"(40.53385, -74.18698)",,,5300 AMBOY ROAD,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4501431,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,12:10,,,,,,QUEENS MIDTOWN TUNNEL,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4501490,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,11:08,QUEENS,11418,40.698257,-73.82632,"(40.698257, -73.82632)",123 STREET,89 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4501072,Sedan,,,, +02/08/2022,17:55,,,40.60567,-74.030945,"(40.60567, -74.030945)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4501128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/08/2022,10:10,,,40.586212,-73.990585,"(40.586212, -73.990585)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501234,Sedan,Sedan,,, +02/06/2022,16:36,QUEENS,11378,40.722267,-73.90134,"(40.722267, -73.90134)",,,57-11 64 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501517,Sedan,,,, +02/08/2022,15:00,,,40.693817,-73.82212,"(40.693817, -73.82212)",125 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501080,Sedan,,,, +02/08/2022,14:53,,,40.59228,-74.189705,"(40.59228, -74.189705)",,,4073 VICTORY BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501164,Sedan,,,, +02/08/2022,9:40,QUEENS,11101,40.745068,-73.93826,"(40.745068, -73.93826)",29 STREET,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501040,Sedan,Taxi,,, +02/08/2022,10:55,QUEENS,11432,,,,HILLSIDE AVENUE,178 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501140,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,23:45,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Turning Improperly,,,4501297,Sedan,Sedan,Taxi,, +02/08/2022,21:00,QUEENS,11356,40.78168,-73.84595,"(40.78168, -73.84595)",COLLEGE POINT BOULEVARD,20 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501134,Station Wagon/Sport Utility Vehicle,,,, +02/04/2022,14:50,QUEENS,11692,40.59205,-73.800026,"(40.59205, -73.800026)",,,71-02 BEACH CHANNEL DRIVE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4501609,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/08/2022,16:43,BRONX,10461,,,,,,1500 PELHAM PARKWAY SOUTH,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4501458,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,13:42,BROOKLYN,11206,40.702194,-73.93587,"(40.702194, -73.93587)",,,923 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501185,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,23:50,BROOKLYN,11236,40.6285,-73.89793,"(40.6285, -73.89793)",SEAVIEW AVENUE,EAST 86 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501348,Sedan,Sedan,,, +02/08/2022,18:30,MANHATTAN,10007,,,,,,180 PARK ROW,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501486,Sedan,Sedan,,, +02/08/2022,11:00,QUEENS,11377,40.74248,-73.9129,"(40.74248, -73.9129)",QUEENS BOULEVARD,52 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501392,Sedan,Pick-up Truck,,, +02/08/2022,20:45,BRONX,10462,40.845596,-73.864334,"(40.845596, -73.864334)",MORRIS PARK AVENUE,HOLLAND AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4501226,Station Wagon/Sport Utility Vehicle,,,, +01/25/2022,9:20,QUEENS,11103,40.760185,-73.914696,"(40.760185, -73.914696)",,,30-71 43 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4501560,Sedan,,,, +02/08/2022,19:09,,,40.71043,-73.948784,"(40.71043, -73.948784)",LORIMER STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501177,Sedan,E-Bike,,, +02/05/2022,11:45,,,40.73283,-73.97415,"(40.73283, -73.97415)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501589,Box Truck,,,, +02/08/2022,23:22,,,40.670025,-73.84787,"(40.670025, -73.84787)",SOUTH CONDUIT AVENUE,149 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501172,Tanker,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,3:20,BROOKLYN,11215,40.670753,-73.9884,"(40.670753, -73.9884)",,,436 4 AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501018,Station Wagon/Sport Utility Vehicle,,,, +01/24/2022,15:10,,,40.68174,-73.95859,"(40.68174, -73.95859)",FULTON STREET,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501640,Sedan,Bike,,, +02/08/2022,18:00,BROOKLYN,11228,40.623985,-74.01076,"(40.623985, -74.01076)",,,7313 11 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501121,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,18:43,BRONX,10467,40.881668,-73.87534,"(40.881668, -73.87534)",EAST 211 STREET,KINGS COLLEGE PLACE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,Unspecified,Unspecified,4501201,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +02/07/2022,16:52,,,40.876877,-73.9034,"(40.876877, -73.9034)",BAILEY AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501539,Box Truck,,,, +02/08/2022,20:50,,,40.76432,-73.9772,"(40.76432, -73.9772)",AVENUE OF THE AMERICAS,,,1,0,1,0,0,0,0,0,Oversized Vehicle,,,,,4501209,Bus,,,, +02/08/2022,17:09,QUEENS,11104,40.745544,-73.92393,"(40.745544, -73.92393)",40 STREET,43 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501287,Sedan,,,, +01/30/2022,11:09,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4501545,Sedan,Sedan,Sedan,, +02/08/2022,14:30,MANHATTAN,10065,40.761856,-73.96343,"(40.761856, -73.96343)",EAST 61 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501192,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,15:01,QUEENS,11413,40.67737,-73.74754,"(40.67737, -73.74754)",222 STREET,134 ROAD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4501156,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/04/2022,19:40,STATEN ISLAND,10312,40.546253,-74.158875,"(40.546253, -74.158875)",ARMSTRONG AVENUE,AMBOY ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4501627,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,21:00,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,1,0,0,0,0,0,1,0,Unspecified,,,,,4501327,Station Wagon/Sport Utility Vehicle,,,, +01/12/2022,18:30,,,40.607212,-74.07682,"(40.607212, -74.07682)",NARROWS ROAD NORTH,HYLAN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4501504,Sedan,Sedan,Sedan,, +02/08/2022,21:15,BROOKLYN,11215,40.669426,-73.972824,"(40.669426, -73.972824)",PROSPECT PARK WEST,1 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501215,E-Bike,,,, +02/08/2022,19:55,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501258,Sedan,Sedan,,, +02/05/2022,10:50,,,40.725918,-73.89535,"(40.725918, -73.89535)",BORDEN AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4501574,Sedan,Pick-up Truck,,, +02/08/2022,16:40,MANHATTAN,10033,40.84787,-73.93641,"(40.84787, -73.93641)",WADSWORTH AVENUE,WEST 178 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4501273,Station Wagon/Sport Utility Vehicle,Sedan,,, +01/25/2022,10:59,BRONX,10469,40.880093,-73.85796,"(40.880093, -73.85796)",,,3716 BRONXWOOD AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501584,Sedan,Pick-up Truck,,, +02/08/2022,7:15,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4501001,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,Sedan, +02/06/2022,14:35,,,40.585426,-74.10152,"(40.585426, -74.10152)",JEFFERSON STREET,,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4501633,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,11:03,BROOKLYN,11249,40.6999,-73.96168,"(40.6999, -73.96168)",PENN STREET,KENT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4501176,Sedan,,,, +02/08/2022,23:44,,,,,,NEW ENGLAND THRUWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4501377,Sedan,,,, +02/08/2022,6:30,,,40.59423,-73.908325,"(40.59423, -73.908325)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4501108,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,9:40,BRONX,10461,40.839924,-73.843216,"(40.839924, -73.843216)",,,1444 COMMERCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501358,Sedan,Pick-up Truck,,, +01/25/2022,16:00,BRONX,10463,40.88074,-73.9101,"(40.88074, -73.9101)",,,3010 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501540,Sedan,Box Truck,,, +02/08/2022,14:35,,,40.805077,-73.91092,"(40.805077, -73.91092)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4501222,Sedan,Pick-up Truck,,, +02/08/2022,21:45,,,40.841637,-73.89318,"(40.841637, -73.89318)",CROTONA PARK NORTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501243,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,9:45,,,40.709183,-73.956825,"(40.709183, -73.956825)",BROOKLYN QUEENS EXPRESSWAY,,,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,Unspecified,,,4501497,Bus,Sedan,Sedan,, +02/08/2022,9:50,,,40.610146,-74.15127,"(40.610146, -74.15127)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501300,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,20:20,QUEENS,11363,40.77652,-73.745926,"(40.77652, -73.745926)",HOLLYWOOD AVENUE,DOUGLAS ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501132,Sedan,,,, +02/08/2022,9:30,,,40.625313,-74.17835,"(40.625313, -74.17835)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501153,Tractor Truck Gasoline,Dump,,, +02/08/2022,12:00,BROOKLYN,11203,40.65177,-73.930244,"(40.65177, -73.930244)",,,5001 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501065,Box Truck,Tow Truck / Wrecker,,, +02/08/2022,17:19,MANHATTAN,10038,,,,BEEKMAN STREET,SOUTH STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4501320,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,21:20,BRONX,10455,40.81259,-73.90603,"(40.81259, -73.90603)",,,810 EAST 149 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,15:19,,,40.75855,-73.82964,"(40.75855, -73.82964)",MAIN STREET,41 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Backing Unsafely,,,,4501136,Sedan,Box Truck,,, +02/08/2022,15:00,,,40.66423,-73.919106,"(40.66423, -73.919106)",HOWARD AVENUE,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501158,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,13:10,STATEN ISLAND,10304,40.61593,-74.087425,"(40.61593, -74.087425)",HILLSIDE AVENUE,VANDUZER STREET,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,Unspecified,Unspecified,,4501509,APP,Sedan,Sedan,Sedan, +02/08/2022,8:11,,,40.853027,-73.91827,"(40.853027, -73.91827)",SEDGWICK AVENUE,WEST TREMONT AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4501445,Sedan,Pick-up Truck,,, +02/08/2022,17:32,,,,,,HAMILTON AVENUE,BROOKLYN QNS EXPRESSWAY,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4501461,Sedan,,,, +02/08/2022,12:26,QUEENS,11413,40.672195,-73.74284,"(40.672195, -73.74284)",,,137-31 230 STREET,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4501058,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,10:53,BROOKLYN,11218,40.63664,-73.97969,"(40.63664, -73.97969)",39 STREET,16 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501251,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,8:00,,,40.584003,-73.92157,"(40.584003, -73.92157)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4501094,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,17:15,BROOKLYN,11207,40.670624,-73.895546,"(40.670624, -73.895546)",PENNSYLVANIA AVENUE,BELMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501326,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,7:45,,,40.633038,-74.039314,"(40.633038, -74.039314)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501036,Bus,Sedan,,, +02/08/2022,23:30,,,40.738464,-73.808624,"(40.738464, -73.808624)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4501165,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,20:25,,,40.67164,-73.95034,"(40.67164, -73.95034)",SAINT JOHNS PLACE,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4501422,Sedan,Sedan,,, +02/08/2022,21:30,,,40.72547,-73.98396,"(40.72547, -73.98396)",EAST 6 STREET,,,1,0,0,0,1,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4501295,Sedan,E-Bike,,, +02/08/2022,18:05,,,40.71306,-73.80669,"(40.71306, -73.80669)",PARSONS BOULEVARD,84 DRIVE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4501126,Sedan,Sedan,Sedan,, +02/05/2022,17:16,QUEENS,11692,40.593952,-73.78942,"(40.593952, -73.78942)",,,59-14 BEACH CHANNEL DRIVE,1,0,0,0,0,0,1,0,Following Too Closely,Driver Inattention/Distraction,Unspecified,,,4501660,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/08/2022,0:05,BROOKLYN,11226,0,0,"(0.0, 0.0)",CLARKSON AVENUE,ROGERS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501595,Taxi,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,12:30,QUEENS,11373,40.743217,-73.88354,"(40.743217, -73.88354)",,,81-26 BROADWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4501204,Sedan,,,, +02/08/2022,13:42,,,40.585228,-73.94155,"(40.585228, -73.94155)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501186,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,12:15,BRONX,10463,40.88437,-73.90105,"(40.88437, -73.90105)",BROADWAY,WEST 237 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4501515,Sedan,Sedan,,, +01/13/2022,17:27,QUEENS,11103,40.769127,-73.91061,"(40.769127, -73.91061)",STEINWAY STREET,GRAND CENTRAL PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501558,Sedan,Pallet,,, +02/08/2022,17:40,MANHATTAN,10022,40.759132,-73.97642,"(40.759132, -73.97642)",,,645 5 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501211,Taxi,,,, +02/08/2022,9:32,,,40.77912,-73.984985,"(40.77912, -73.984985)",WEST 71 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501122,Tractor Truck Diesel,,,, +02/08/2022,10:41,BROOKLYN,11207,40.672844,-73.88943,"(40.672844, -73.88943)",PITKIN AVENUE,HENDRIX STREET,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4501077,Sedan,Bike,,, +02/08/2022,13:00,,,40.69875,-73.9834,"(40.69875, -73.9834)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4501347,Sedan,,,, +11/17/2021,20:00,,,,,,OCEAN PARKWAY,CHURCH AVENUE,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4479774,Sedan,,,, +02/01/2022,1:03,MANHATTAN,10002,40.71382,-73.99399,"(40.71382, -73.99399)",,,2 FORSYTH STREET,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4501484,Station Wagon/Sport Utility Vehicle,E-Bike,,, +02/08/2022,9:55,QUEENS,11435,40.70097,-73.81423,"(40.70097, -73.81423)",138 STREET,90 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4501143,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/08/2022,15:50,,,,,,WASHINGTON BRIDGE,UNIVERSITY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4501229,Bus,Sedan,,, +02/08/2022,18:10,BROOKLYN,11236,40.649895,-73.90762,"(40.649895, -73.90762)",ROCKAWAY PARKWAY,AVENUE D,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501389,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,10:50,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Backing Unsafely,,,,4501282,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,12:30,MANHATTAN,10005,40.70734,-74.00865,"(40.70734, -74.00865)",CEDAR STREET,WILLIAM STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4501074,Sedan,Box Truck,,, +02/08/2022,8:35,,,40.768436,-73.98906,"(40.768436, -73.98906)",10 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501020,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,20:00,QUEENS,11419,40.68645,-73.81583,"(40.68645, -73.81583)",107 AVENUE,128 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501171,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,23:39,,,40.5833,-73.96133,"(40.5833, -73.96133)",BANNER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501236,Tractor Truck Diesel,Sedan,,, +02/08/2022,15:30,,,40.80751,-73.93413,"(40.80751, -73.93413)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4501147,Sedan,,,, +02/02/2022,6:50,BROOKLYN,11203,40.64949,-73.93014,"(40.64949, -73.93014)",,,957 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4501606,Sedan,,,, +02/06/2022,18:55,,,40.77041,-73.82468,"(40.77041, -73.82468)",BAYSIDE AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4501641,Taxi,,,, +02/08/2022,13:40,,,40.855618,-73.83324,"(40.855618, -73.83324)",HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4501535,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,12:00,BROOKLYN,11223,40.59783,-73.96549,"(40.59783, -73.96549)",OCEAN PARKWAY,AVENUE U,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501181,Sedan,Sedan,,, +02/08/2022,15:08,BRONX,10463,40.87549,-73.91172,"(40.87549, -73.91172)",,,15 JACOBUS PLACE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4501547,Sedan,Sedan,,, +02/08/2022,17:10,,,40.711994,-74.00811,"(40.711994, -74.00811)",BROADWAY,PARK ROW,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501321,Station Wagon/Sport Utility Vehicle,Bus,,, +02/08/2022,8:45,BRONX,10469,40.872414,-73.839966,"(40.872414, -73.839966)",HAMMERSLEY AVENUE,GUNTHER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501111,Bus,,,, +02/08/2022,20:47,,,40.76736,-73.9371,"(40.76736, -73.9371)",VERNON BOULEVARD,10 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4501378,Sedan,SCOOTER,,, +09/17/2021,18:00,,,40.612705,-73.97955,"(40.612705, -73.97955)",WEST 5 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4459615,Sedan,,,, +11/13/2021,7:40,,,40.564484,-74.09763,"(40.564484, -74.09763)",NEW DORP LANE,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4476933,Sedan,,,, +11/14/2021,22:45,QUEENS,11358,40.76558,-73.80517,"(40.76558, -73.80517)",160 STREET,35 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4477420,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +02/08/2022,9:00,,,40.66972,-73.737206,"(40.66972, -73.737206)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4501304,Sedan,,,, +11/16/2021,15:33,STATEN ISLAND,10305,40.607098,-74.061,"(40.607098, -74.061)",SCHOOL ROAD,BAY STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478193,Sedan,Sedan,,, +11/15/2021,19:48,QUEENS,11411,40.66555,-73.74239,"(40.66555, -73.74239)",LAURELTON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4477738,Sedan,,,, +11/19/2021,21:00,BRONX,10460,40.845493,-73.883484,"(40.845493, -73.883484)",MOHEGAN AVENUE,EAST 180 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479862,Van,,,, +10/21/2021,21:07,STATEN ISLAND,10309,,,,ARTHUR KILL ROAD,RICHMOND VALLEY ROAD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4469890,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2019,1:50,,,,,,CONDUIT BOULEVARD,75 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479833,Sedan,,,, +02/08/2022,7:13,,,40.743782,-73.97352,"(40.743782, -73.97352)",1 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501091,Taxi,Sedan,,, +02/08/2022,7:07,,,40.70179,-73.81601,"(40.70179, -73.81601)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4501137,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,20:30,BROOKLYN,11220,40.637135,-74.0272,"(40.637135, -74.0272)",,,219 68 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479146,Van,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,8:06,BRONX,10466,40.8963,-73.84688,"(40.8963, -73.84688)",PITMAN AVENUE,GRACE AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4479559,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,21:00,QUEENS,11414,40.660107,-73.83337,"(40.660107, -73.83337)",159 AVENUE,100 STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4478424,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/19/2021,16:00,,,40.8018,-73.96108,"(40.8018, -73.96108)",CATHEDRAL PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479429,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,17:37,QUEENS,11421,40.689354,-73.866035,"(40.689354, -73.866035)",75 STREET,88 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479130,Sedan,,,, +11/17/2021,19:10,STATEN ISLAND,10307,40.505196,-74.239815,"(40.505196, -74.239815)",HYLAN BOULEVARD,LORETTO STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478865,Pick-up Truck,Sedan,,, +11/17/2021,15:23,BRONX,10458,40.863274,-73.894226,"(40.863274, -73.894226)",,,310 EAST KINGSBRIDGE ROAD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478514,Taxi,,,, +11/18/2021,15:20,BROOKLYN,11212,40.672073,-73.91135,"(40.672073, -73.91135)",EAST NEW YORK AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,View Obstructed/Limited,,,,4479345,Sedan,Sedan,,, +11/17/2021,16:12,BROOKLYN,11207,40.686226,-73.9124,"(40.686226, -73.9124)",BUSHWICK AVENUE,COVERT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478465,Flat Bed,Sedan,,, +11/19/2021,5:35,BROOKLYN,11207,40.65115,-73.890015,"(40.65115, -73.890015)",LOUISIANA AVENUE,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478980,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/18/2021,21:00,,,40.670124,-73.95528,"(40.670124, -73.95528)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478846,Sedan,Sedan,,, +11/10/2021,21:15,BRONX,10472,40.82815,-73.876205,"(40.82815, -73.876205)",,,1158 MANOR AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479488,Station Wagon/Sport Utility Vehicle,Bike,,, +11/19/2021,13:38,BROOKLYN,11249,40.716805,-73.96213,"(40.716805, -73.96213)",,,94 NORTH 3 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479609,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,1:31,,,40.73863,-73.90833,"(40.73863, -73.90833)",58 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478823,Sedan,Sedan,,, +11/19/2021,18:49,,,40.803566,-73.96715,"(40.803566, -73.96715)",WEST 109 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479129,Sedan,,,, +11/18/2021,12:00,BRONX,10467,40.879753,-73.86828,"(40.879753, -73.86828)",,,3566 BRONX BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4479562,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,12:18,BROOKLYN,11234,40.62721,-73.91809,"(40.62721, -73.91809)",,,2076 RALPH AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4479019,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,23:10,BRONX,10463,40.882385,-73.90408,"(40.882385, -73.90408)",WEST 234 STREET,KINGSBRIDGE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478969,Sedan,Sedan,,, +11/18/2021,5:20,,,40.591755,-73.9083,"(40.591755, -73.9083)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unsafe Speed,,,,4478681,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,0:00,,,40.646515,-73.974655,"(40.646515, -73.974655)",PROSPECT EXPRESSWAY EAST,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479707,Sedan,Sedan,,, +11/17/2021,0:22,,,,,,ROCKAWAY BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478076,Sedan,,,, +11/19/2021,17:40,,,40.857784,-73.83081,"(40.857784, -73.83081)",HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479367,Sedan,Sedan,,, +11/12/2021,18:30,,,40.671825,-73.774506,"(40.671825, -73.774506)",BREWER BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479056,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/05/2022,3:44,MANHATTAN,10013,40.71843,-74.000534,"(40.71843, -74.000534)",LAFAYETTE STREET,CANAL STREET,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4501489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,4:07,,,40.798126,-73.94832,"(40.798126, -73.94832)",EAST 112 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478446,Taxi,Sedan,,, +11/19/2021,8:00,BROOKLYN,11207,40.669926,-73.89149,"(40.669926, -73.89149)",SUTTER AVENUE,BRADFORD STREET,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4478982,Sedan,,,, +11/17/2021,6:48,QUEENS,11101,40.75203,-73.92915,"(40.75203, -73.92915)",35 STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478851,Sedan,Bike,,, +11/18/2021,23:25,MANHATTAN,10007,40.714928,-74.00795,"(40.714928, -74.00795)",CHAMBERS STREET,CHURCH STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478909,Sedan,,,, +11/19/2021,22:15,BROOKLYN,11233,40.679386,-73.912285,"(40.679386, -73.912285)",,,125 HULL STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4479816,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/17/2021,14:29,STATEN ISLAND,10310,40.637745,-74.11082,"(40.637745, -74.11082)",HENDERSON AVENUE,PELTON AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4478573,Sedan,Sedan,,, +11/19/2021,9:20,QUEENS,11101,40.74496,-73.935425,"(40.74496, -73.935425)",THOMSON AVENUE,31 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479024,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,14:21,QUEENS,11435,40.694424,-73.80094,"(40.694424, -73.80094)",107 AVENUE,150 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479083,Van,Sedan,,, +11/18/2021,18:39,MANHATTAN,10013,40.718025,-73.995056,"(40.718025, -73.995056)",,,112 BOWERY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479347,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/17/2021,17:31,MANHATTAN,10018,40.753887,-73.99348,"(40.753887, -73.99348)",,,327 WEST 36 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478481,PK,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:57,MANHATTAN,10002,40.721222,-73.98301,"(40.721222, -73.98301)",EAST HOUSTON STREET,ATTORNEY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479195,Sedan,Sedan,,, +11/13/2021,16:10,,,40.747112,-73.96894,"(40.747112, -73.96894)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4479288,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/18/2021,11:30,,,40.624958,-74.145775,"(40.624958, -74.145775)",FOREST AVENUE,WILLOW ROAD EAST,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478652,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,11:26,MANHATTAN,10025,40.8018,-73.96108,"(40.8018, -73.96108)",MORNINGSIDE DRIVE,WEST 110 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478755,Sedan,,,, +11/18/2021,18:00,MANHATTAN,10065,40.76311,-73.962524,"(40.76311, -73.962524)",EAST 63 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478793,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:00,,,40.588886,-73.965645,"(40.588886, -73.965645)",OCEAN PARKWAY,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4479316,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,2:05,MANHATTAN,10026,40.805096,-73.95488,"(40.805096, -73.95488)",WEST 117 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478163,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/08/2021,15:26,BROOKLYN,11203,40.64338,-73.921745,"(40.64338, -73.921745)",DITMAS AVENUE,EAST 58 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479519,Sedan,Sedan,,, +11/17/2021,11:30,MANHATTAN,10001,40.745533,-73.99459,"(40.745533, -73.99459)",,,261 7 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478950,Sedan,Box Truck,,, +11/17/2021,14:05,BROOKLYN,11230,40.620094,-73.96328,"(40.620094, -73.96328)",AVENUE L,EAST 12 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478489,Station Wagon/Sport Utility Vehicle,Bike,,, +11/17/2021,0:00,QUEENS,11435,0,0,"(0.0, 0.0)",LIBERTY AVENUE,PRINCETON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478713,Sedan,,,, +11/09/2021,8:47,MANHATTAN,10065,40.760532,-73.95836,"(40.760532, -73.95836)",EAST 62 STREET,YORK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478880,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,15:00,QUEENS,11385,40.708534,-73.914925,"(40.708534, -73.914925)",ONDERDONK AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Failure to Yield Right-of-Way,,,,4479531,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,6:36,STATEN ISLAND,10309,40.550976,-74.23251,"(40.550976, -74.23251)",,,355 INDUSTRIAL LOOP,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4478941,Dump,,,, +11/19/2021,20:42,,,40.798504,-73.96713,"(40.798504, -73.96713)",WEST 103 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479156,Taxi,Sedan,,, +11/18/2021,16:10,,,40.61247,-74.13181,"(40.61247, -74.13181)",,,2048 VICTORY BOULEVARD,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4479012,Sedan,Sedan,,, +11/16/2021,14:30,QUEENS,11358,40.75577,-73.78827,"(40.75577, -73.78827)",45 AVENUE,193 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479115,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,14:10,BROOKLYN,11201,40.68969,-73.99237,"(40.68969, -73.99237)",ATLANTIC AVENUE,COURT STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478745,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,15:35,,,,,,THROGS NECK BRIDGE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479184,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +11/17/2021,20:20,STATEN ISLAND,10304,40.59755,-74.11133,"(40.59755, -74.11133)",TODT HILL ROAD,WILLOW POND ROAD,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478623,Sedan,Trailer,,, +02/08/2022,18:57,BRONX,10469,40.87126,-73.84992,"(40.87126, -73.84992)",BURKE AVENUE,BOUCK AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Driver Inattention/Distraction,,,,4501463,Sedan,Sedan,,, +11/19/2021,16:45,QUEENS,11418,40.69957,-73.83067,"(40.69957, -73.83067)",,,87-25 LEFFERTS BOULEVARD,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4479098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,18:40,QUEENS,11378,40.72046,-73.90831,"(40.72046, -73.90831)",59 STREET,GRAND AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479505,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,3:20,,,40.701527,-73.98957,"(40.701527, -73.98957)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4478194,Tractor Truck Diesel,Sedan,,, +11/05/2021,13:58,STATEN ISLAND,10312,40.56152,-74.17186,"(40.56152, -74.17186)",DRUMGOOLE ROAD WEST,ARTHUR KILL ROAD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478886,Sedan,,,, +10/27/2021,23:37,QUEENS,11415,40.707607,-73.83098,"(40.707607, -73.83098)",,,83-33 BEVERLY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478885,AMBULANCE,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,23:23,BROOKLYN,11226,40.65374,-73.96064,"(40.65374, -73.96064)",,,25 EAST 21 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4478407,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:17,MANHATTAN,10027,40.81218,-73.955246,"(40.81218, -73.955246)",,,430 WEST 125 STREET,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Speed,,,,4479034,Sedan,Sedan,,, +11/19/2021,2:30,QUEENS,11432,40.717987,-73.79509,"(40.717987, -73.79509)",,,170-20 GRAND CENTRAL PARKWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479051,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/17/2021,15:20,QUEENS,11354,40.768166,-73.82422,"(40.768166, -73.82422)",33 AVENUE,PARSONS BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478519,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/19/2021,8:58,BROOKLYN,11236,40.649776,-73.903465,"(40.649776, -73.903465)",FOSTER AVENUE,EAST 100 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479001,Sedan,Van,,, +11/19/2021,4:35,MANHATTAN,10014,40.736176,-74.00353,"(40.736176, -74.00353)",WEST 4 STREET,WEST 11 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4479406,Bike,,,, +11/19/2021,11:46,BROOKLYN,11206,40.700424,-73.9444,"(40.700424, -73.9444)",FLUSHING AVENUE,THROOP AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479253,Box Truck,Sedan,,, +11/18/2021,13:40,BROOKLYN,11207,40.68067,-73.885826,"(40.68067, -73.885826)",ARLINGTON AVENUE,CLEVELAND STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478973,,,,, +11/19/2021,23:40,BROOKLYN,11211,40.714066,-73.94938,"(40.714066, -73.94938)",METROPOLITAN AVENUE,LORIMER STREET,,0,0,0,0,0,0,0,0,Turning Improperly,,,,,4479440,Tractor Truck Diesel,,,, +11/19/2021,19:25,,,40.743275,-73.77572,"(40.743275, -73.77572)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479218,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/14/2021,23:30,MANHATTAN,10007,40.714165,-74.00632,"(40.714165, -74.00632)",CHAMBERS STREET,BROADWAY,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479330,Taxi,,,, +11/17/2021,17:45,,,40.655895,-74.00591,"(40.655895, -74.00591)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479614,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,13:45,QUEENS,11101,40.753456,-73.941414,"(40.753456, -73.941414)",22 STREET,41 AVENUE,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4479724,Motorcycle,,,, +11/19/2021,6:30,QUEENS,11101,40.745235,-73.937706,"(40.745235, -73.937706)",THOMSON AVENUE,SKILLMAN AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478837,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,13:00,,,40.736397,-73.76775,"(40.736397, -73.76775)",CLEARVIEW EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479039,UTILITY,Sedan,,, +11/17/2021,9:55,,,40.678947,-73.865166,"(40.678947, -73.865166)",LIBERTY AVENUE,ELDERTS LANE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478542,Sedan,,,, +11/19/2021,22:00,STATEN ISLAND,10304,40.625225,-74.074844,"(40.625225, -74.074844)",BAY STREET,DOCK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479676,Sedan,,,, +11/19/2021,19:50,QUEENS,11369,40.75817,-73.88111,"(40.75817, -73.88111)",87 STREET,32 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479173,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,23:27,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479464,Sedan,Sedan,,, +11/17/2021,17:42,QUEENS,11378,40.73225,-73.92452,"(40.73225, -73.92452)",54 AVENUE,43 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478581,Sedan,Sedan,,, +11/18/2021,12:50,,,40.84423,-73.89964,"(40.84423, -73.89964)",WASHINGTON AVENUE,CROSS BRONX EXPRESSWAY,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478905,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,22:50,BRONX,10470,40.895374,-73.86356,"(40.895374, -73.86356)",EAST 233 STREET,WEBSTER AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4479571,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +02/08/2022,11:33,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4501067,Sedan,Sedan,,, +11/17/2021,12:00,QUEENS,11422,40.678078,-73.72602,"(40.678078, -73.72602)",HOOK CREEK BOULEVARD,130 AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4478599,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,17:40,,,,,,COLUMBUS AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478362,Taxi,Bike,,, +11/19/2021,15:05,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479381,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,23:20,,,40.695858,-73.82006,"(40.695858, -73.82006)",ATLANTIC AVENUE,129 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479240,,,,, +11/19/2021,11:31,,,40.627636,-74.160446,"(40.627636, -74.160446)",,,343 HARBOR ROAD,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4479481,Sedan,E-Bike,,, +11/11/2021,20:44,BROOKLYN,11223,40.593994,-73.98072,"(40.593994, -73.98072)",86 STREET,AVENUE V,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478918,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,9:21,MANHATTAN,10021,40.76781,-73.96202,"(40.76781, -73.96202)",3 AVENUE,EAST 69 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478281,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,7:41,,,40.807434,-73.92619,"(40.807434, -73.92619)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479802,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,19:20,BRONX,10469,40.87673,-73.847305,"(40.87673, -73.847305)",BOSTON ROAD,CORSA AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479550,E-Bike,,,, +11/19/2021,2:00,,,,,,BROOKLYN QUEENS EXPRESSWAY RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478768,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,11:00,BROOKLYN,11238,40.675755,-73.97143,"(40.675755, -73.97143)",FLATBUSH AVENUE,8 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4478785,Sedan,Sedan,,, +11/18/2021,8:00,BROOKLYN,11222,40.727493,-73.9381,"(40.727493, -73.9381)",,,86 APOLLO STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478806,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,17:50,,,40.877106,-73.90616,"(40.877106, -73.90616)",BROADWAY,WEST 230 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4479066,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,4:53,,,40.541405,-74.21476,"(40.541405, -74.21476)",WINANT AVENUE,,,0,0,0,0,0,0,0,0,Animals Action,Unspecified,,,,4478937,Pick-up Truck,Bus,,, +11/17/2021,7:31,BRONX,10470,40.902184,-73.85188,"(40.902184, -73.85188)",,,690 EAST 240 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478344,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,13:00,BROOKLYN,11201,40.70066,-73.98775,"(40.70066, -73.98775)",PEARL STREET,PROSPECT STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478285,Sedan,Box Truck,,, +11/16/2021,16:53,BROOKLYN,11236,40.6411,-73.90463,"(40.6411, -73.90463)",FLATLANDS AVENUE,EAST 92 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4479152,Flat Bed,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/18/2021,9:23,,,40.74909,-73.78463,"(40.74909, -73.78463)",HOLLIS COURT BOULEVARD,,,0,0,0,0,0,0,0,0,Glare,Other Vehicular,,,,4478731,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,18:30,BROOKLYN,11217,40.68418,-73.97278,"(40.68418, -73.97278)",,,15 ATLANTIC COMMONS,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478890,Sedan,,,, +11/17/2021,15:18,QUEENS,11360,40.77492,-73.78883,"(40.77492, -73.78883)",,,203-14 26 AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478401,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,22:50,QUEENS,11434,40.66684,-73.78941,"(40.66684, -73.78941)",NORTH CONDUIT AVENUE,150 STREET,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4479275,Sedan,Sedan,,, +11/17/2021,10:00,BROOKLYN,11249,40.71786,-73.96223,"(40.71786, -73.96223)",NORTH 4 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478238,Sedan,Box Truck,,, +11/01/2021,15:33,QUEENS,11412,40.69595,-73.75288,"(40.69595, -73.75288)",200 STREET,116 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479071,Sedan,Sedan,,, +11/17/2021,20:31,BROOKLYN,11215,40.665955,-73.9814,"(40.665955, -73.9814)",,,560 10 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4478598,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,17:17,QUEENS,11377,40.735237,-73.89602,"(40.735237, -73.89602)",69 STREET,51 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4479264,Sedan,Bike,,, +11/19/2021,20:53,BRONX,10472,40.835857,-73.87213,"(40.835857, -73.87213)",CROES AVENUE,CROSS BRONX EXPRESSWAY,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4479386,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,12:21,MANHATTAN,10032,40.84144,-73.940636,"(40.84144, -73.940636)",,,622 WEST 168 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479005,Ambulance,Ambulance,,, +11/17/2021,7:12,BROOKLYN,11249,40.72118,-73.95866,"(40.72118, -73.95866)",NORTH 10 STREET,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478474,Box Truck,Sedan,,, +11/17/2021,17:30,,,40.88647,-73.89603,"(40.88647, -73.89603)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4479088,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/19/2021,6:30,QUEENS,11693,40.588997,-73.81629,"(40.588997, -73.81629)",BEACH CHANNEL DRIVE,BEACH 91 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479120,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,10:40,MANHATTAN,10014,40.73876,-74.006325,"(40.73876, -74.006325)",,,59 HORATIO STREET,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4479476,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,8:00,MANHATTAN,10023,40.781025,-73.981316,"(40.781025, -73.981316)",BROADWAY,WEST 75 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4479624,Taxi,Sedan,,, +11/19/2021,13:00,QUEENS,11372,40.756336,-73.87794,"(40.756336, -73.87794)",NORTHERN BOULEVARD,90 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479224,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,2:21,MANHATTAN,10013,40.7207,-74.00077,"(40.7207, -74.00077)",,,458 BROADWAY,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479335,Sedan,Sedan,,, +11/17/2021,19:00,BROOKLYN,11236,40.651752,-73.91724,"(40.651752, -73.91724)",,,9109 AVENUE A,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479412,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,17:05,,,40.861828,-73.89286,"(40.861828, -73.89286)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4478495,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,13:30,,,40.734135,-73.86918,"(40.734135, -73.86918)",59 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478843,Flat Rack,Sedan,,, +11/19/2021,18:00,,,40.708164,-73.76141,"(40.708164, -73.76141)",104 AVENUE,,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4479688,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,7:12,,,,,,21 STREET,HOYT AVE S,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478856,School Bus,Van,,, +11/17/2021,13:47,BROOKLYN,11230,,,,CONEY ISLAND AVENUE,AVENUE H,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478613,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,6:30,,,40.797867,-73.96759,"(40.797867, -73.96759)",WEST 102 STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479737,Sedan,Sedan,,, +11/18/2021,22:35,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479043,Sedan,,,, +11/14/2021,12:00,,,40.910904,-73.89834,"(40.910904, -73.89834)",WEST 262 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478961,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,19:09,,,40.707966,-73.84696,"(40.707966, -73.84696)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4478548,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/18/2021,22:00,MANHATTAN,10017,40.751816,-73.97904,"(40.751816, -73.97904)",,,60 EAST 41 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4479445,Sedan,,,, +11/15/2021,8:15,BROOKLYN,11221,40.690132,-73.92953,"(40.690132, -73.92953)",,,742 LEXINGTON AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4479582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/17/2021,10:00,BROOKLYN,11223,40.58832,-73.970764,"(40.58832, -73.970764)",WEST 1 STREET,AVENUE Y,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479060,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,19:05,QUEENS,11429,40.71186,-73.73554,"(40.71186, -73.73554)",219 STREET,104 AVENUE,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479139,E-Scooter,Sedan,,, +11/19/2021,6:56,,,40.67828,-73.958855,"(40.67828, -73.958855)",DEAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479496,Sedan,Sedan,,, +11/17/2021,21:18,BROOKLYN,11205,40.694035,-73.968,"(40.694035, -73.968)",,,133 WAVERLY AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478604,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/17/2021,8:15,MANHATTAN,10004,40.705147,-74.00999,"(40.705147, -74.00999)",SOUTH WILLIAM STREET,BEAVER STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478250,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,7:45,STATEN ISLAND,10312,40.530567,-74.187614,"(40.530567, -74.187614)",,,106 STECHER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478922,Station Wagon/Sport Utility Vehicle,Bus,,, +11/17/2021,10:45,QUEENS,11385,40.698246,-73.8906,"(40.698246, -73.8906)",,,64-44 COOPER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479516,Sedan,,,, +11/17/2021,17:02,QUEENS,11385,40.69539,-73.898895,"(40.69539, -73.898895)",CYPRESS AVENUE,SAINT FELIX AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478390,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,12:00,BRONX,10451,40.817387,-73.92277,"(40.817387, -73.92277)",EAST 149 STREET,MORRIS AVENUE,,1,0,0,0,0,0,1,0,Failure to Keep Right,Unspecified,,,,4479787,Sedan,Taxi,,, +11/17/2021,10:30,BRONX,10454,40.808857,-73.93014,"(40.808857, -73.93014)",3 AVENUE,EAST 134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478456,Sedan,,,, +11/18/2021,20:46,BRONX,10469,40.86296,-73.85391,"(40.86296, -73.85391)",HERING AVENUE,MACE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4479107,Pick-up Truck,Moped,,, +11/14/2021,13:40,BRONX,10464,40.841934,-73.78729,"(40.841934, -73.78729)",,,10 PELL PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479360,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,0:23,,,40.695557,-73.93457,"(40.695557, -73.93457)",WILLOUGHBY AVENUE,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4479542,Taxi,Bike,,, +11/19/2021,3:00,BRONX,10460,40.842052,-73.88951,"(40.842052, -73.88951)",,,800 EAST 176 STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4478917,Sedan,Sedan,,, +11/18/2021,20:36,,,40.822037,-73.93096,"(40.822037, -73.93096)",MAJOR DEEGAN EXPRESSWAY,,,4,0,0,0,0,0,4,0,Following Too Closely,Unspecified,,,,4478811,Sedan,,,, +11/17/2021,7:10,BROOKLYN,11208,40.681686,-73.87157,"(40.681686, -73.87157)",ATLANTIC AVENUE,CRESCENT STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4478541,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,21:24,,,40.7561,-73.86251,"(40.7561, -73.86251)",34 AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478674,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,22:51,BROOKLYN,11234,40.612827,-73.91234,"(40.612827, -73.91234)",,,6161 STRICKLAND AVENUE,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,,,,4478769,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,23:37,QUEENS,11433,40.69929,-73.793236,"(40.69929, -73.793236)",,,106-21 BREWER BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478949,Sedan,E-Bike,,, +11/18/2021,0:00,BROOKLYN,11211,40.71625,-73.95519,"(40.71625, -73.95519)",ROEBLING STREET,NORTH 7 STREET,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4478408,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,6:00,MANHATTAN,10037,40.809525,-73.93789,"(40.809525, -73.93789)",MADISON AVENUE,EAST 131 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478802,Sedan,Sedan,,, +11/17/2021,8:29,,,40.69078,-73.72728,"(40.69078, -73.72728)",CROSS ISLAND PARKWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478434,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,20:00,,,40.73337,-73.72517,"(40.73337, -73.72517)",241 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478736,Sedan,,,, +11/17/2021,13:15,MANHATTAN,10001,40.75024,-73.998604,"(40.75024, -73.998604)",WEST 29 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478296,Van,E-Bike,,, +11/18/2021,7:30,,,40.621044,-74.13243,"(40.621044, -74.13243)",,,360 COLLEGE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478650,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,15:05,,,40.668964,-73.87666,"(40.668964, -73.87666)",MONTAUK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478976,Ambulance,Bus,,, +11/10/2021,12:40,,,40.822166,-73.94242,"(40.822166, -73.94242)",8 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Other Vehicular,,,,4479649,Station Wagon/Sport Utility Vehicle,Bike,,, +11/19/2021,3:23,,,40.693497,-73.94594,"(40.693497, -73.94594)",TOMPKINS AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478993,Sedan,Sedan,,, +11/18/2021,7:50,QUEENS,11412,40.690918,-73.7623,"(40.690918, -73.7623)",BAISLEY BOULEVARD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478564,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,13:00,BROOKLYN,11212,40.67041,-73.9119,"(40.67041, -73.9119)",,,58 CHESTER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479340,Station Wagon/Sport Utility Vehicle,Box Truck,Station Wagon/Sport Utility Vehicle,, +11/07/2021,16:36,BRONX,10472,40.832806,-73.88056,"(40.832806, -73.88056)",,,1349 BRONX RIVER AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479392,Sedan,E-Bike,,, +11/18/2021,2:15,QUEENS,11105,0,0,"(0.0, 0.0)",31 STREET,23 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478588,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,16:05,,,40.63195,-74.14667,"(40.63195, -74.14667)",MORNINGSTAR ROAD,HOOKER PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479092,Sedan,Sedan,,, +11/11/2021,17:45,MANHATTAN,10010,40.737885,-73.98091,"(40.737885, -73.98091)",2 AVENUE,EAST 23 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478944,Station Wagon/Sport Utility Vehicle,Bike,,, +11/18/2021,14:40,MANHATTAN,10035,40.802395,-73.936775,"(40.802395, -73.936775)",3 AVENUE,EAST 123 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478807,Sedan,Taxi,,, +11/18/2021,0:00,BRONX,10455,40.8097,-73.90304,"(40.8097, -73.90304)",EAST 149 STREET,BRUCKNER BOULEVARD,,2,0,0,0,0,0,2,0,Driver Inexperience,Driver Inexperience,,,,4478877,Sedan,Sedan,,, +11/19/2021,9:30,BROOKLYN,11210,40.628677,-73.95186,"(40.628677, -73.95186)",,,2511 AVENUE I,1,0,1,0,0,0,0,0,Unspecified,,,,,4479124,Sedan,,,, +11/18/2021,12:15,MANHATTAN,10013,40.723305,-74.00299,"(40.723305, -74.00299)",BROOME STREET,WEST BROADWAY,,1,0,0,0,1,0,0,0,Passing Too Closely,Passing Too Closely,,,,4478640,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/19/2021,18:20,QUEENS,11434,40.672844,-73.76405,"(40.672844, -73.76405)",FARMERS BOULEVARD,182 STREET,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479147,Sedan,Sedan,,, +11/17/2021,4:31,BROOKLYN,11238,40.67066,-73.957985,"(40.67066, -73.957985)",FRANKLIN AVENUE,EASTERN PARKWAY,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4478722,Sedan,Bike,,, +11/19/2021,8:50,BROOKLYN,11215,40.659595,-73.98449,"(40.659595, -73.98449)",17 STREET,8 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478986,Sedan,,,, +11/17/2021,9:20,STATEN ISLAND,10301,0,0,"(0.0, 0.0)",SAINT MARKS PLACE,NICHOLAS STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479471,Sedan,Sedan,,, +11/17/2021,15:25,MANHATTAN,10004,40.702797,-74.01425,"(40.702797, -74.01425)",,,17 STATE STREET,1,0,0,0,0,0,1,0,Steering Failure,,,,,4478470,Sedan,,,, +11/17/2021,8:26,BRONX,10473,,,,RANDALL AVENUE,STICKBALL BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478701,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,21:31,BROOKLYN,11225,40.655632,-73.95987,"(40.655632, -73.95987)",FLATBUSH AVENUE,PARKSIDE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478490,Station Wagon/Sport Utility Vehicle,Van,,, +11/18/2021,18:30,,,40.575203,-74.169846,"(40.575203, -74.169846)",,,2873 RICHMOND AVENUE,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4479015,Sedan,Sedan,,, +11/19/2021,6:50,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,DYCKMAN STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479693,,,,, +11/18/2021,6:45,,,40.86226,-73.89589,"(40.86226, -73.89589)",EAST FORDHAM ROAD,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4478847,Taxi,3-Door,,, +11/19/2021,13:54,QUEENS,11435,40.691235,-73.79778,"(40.691235, -73.79778)",,,109-20 SUTPHIN BOULEVARD,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479075,Sedan,Tractor Truck Diesel,,, +11/18/2021,2:45,,,40.71122,-73.72827,"(40.71122, -73.72827)",HEMPSTEAD AVENUE,CROSS ISLAND PARKWAY,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4478441,Bus,Sedan,,, +11/18/2021,11:35,MANHATTAN,10019,40.76998,-73.99465,"(40.76998, -73.99465)",12 AVENUE,WEST 55 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478852,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,18:34,BROOKLYN,11218,40.638794,-73.97075,"(40.638794, -73.97075)",CORTELYOU ROAD,EAST 8 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479781,Station Wagon/Sport Utility Vehicle,,,, +11/12/2021,19:00,STATEN ISLAND,10301,40.626556,-74.0916,"(40.626556, -74.0916)",VICTORY BOULEVARD,EDDY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479450,Sedan,,,, +11/19/2021,7:50,BROOKLYN,11222,40.722637,-73.95419,"(40.722637, -73.95419)",BANKER STREET,NASSAU AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479598,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,5:49,BROOKLYN,11207,40.67643,-73.89128,"(40.67643, -73.89128)",VAN SICLEN AVENUE,ATLANTIC AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4478981,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,0:00,BRONX,10469,40.867554,-73.84904,"(40.867554, -73.84904)",ARNOW AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Driver Inattention/Distraction,,,,4479103,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,17:45,BROOKLYN,11207,40.65674,-73.88128,"(40.65674, -73.88128)",,,240 COZINE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479828,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/18/2021,17:00,BROOKLYN,11233,40.68276,-73.91555,"(40.68276, -73.91555)",,,535 BAINBRIDGE STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479354,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,15:45,QUEENS,11354,40.765057,-73.81293,"(40.765057, -73.81293)",NORTHERN BOULEVARD,MURRAY STREET,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4478526,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,21:13,,,40.72823,-73.83313,"(40.72823, -73.83313)",VAN WYCK EXPWY,,,3,0,0,0,0,0,3,0,Passing Too Closely,Unspecified,,,,4478898,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/18/2021,22:53,,,40.865257,-73.9096,"(40.865257, -73.9096)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479200,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,18:00,BROOKLYN,11213,40.666893,-73.92919,"(40.666893, -73.92919)",,,1746 PRESIDENT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478760,Sedan,,,, +11/17/2021,17:28,,,40.642548,-74.016655,"(40.642548, -74.016655)",4 AVENUE,,,2,0,0,0,1,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Alcohol Involvement,,,,4478412,Sedan,Bike,,, +11/19/2021,10:55,BROOKLYN,11231,40.677628,-74.014786,"(40.677628, -74.014786)",CONOVER STREET,DIKEMAN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479135,Sedan,Tractor Truck Gasoline,,, +11/19/2021,14:10,,,,,,VERMONT PLACE,HIGHLAND BOULEVARD EAST,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4479530,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,22:59,,,40.825756,-73.95094,"(40.825756, -73.95094)",WEST 144 STREET,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4479206,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,15:20,MANHATTAN,10027,40.810406,-73.95171,"(40.810406, -73.95171)",,,317 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479297,Pick-up Truck,Bus,,, +11/18/2021,12:40,BROOKLYN,11214,40.612053,-73.99733,"(40.612053, -73.99733)",,,7719 18 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4478657,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,0:50,BROOKLYN,11213,40.668686,-73.94226,"(40.668686, -73.94226)",,,305 KINGSTON AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4478776,Tow Truck / Wrecker,Motor Home,,, +11/05/2021,17:58,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",FLATBUSH AVENUE,ATLANTIC AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479765,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,18:20,QUEENS,11377,40.742985,-73.89161,"(40.742985, -73.89161)",WOODSIDE AVENUE,73 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479510,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,10:20,,,40.700512,-73.796776,"(40.700512, -73.796776)",160 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4478954,Sedan,Flat Bed,,, +11/17/2021,19:01,,,,,,WILLIAMSBURG BRIDGE OUTER ROADWA,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478506,Motorcycle,Motorcycle,,, +11/18/2021,20:15,,,40.88437,-73.82134,"(40.88437, -73.82134)",TILLOTSON AVENUE,HUTCHINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479364,Tractor Truck Diesel,Sedan,,, +11/18/2021,13:07,,,40.846565,-73.92589,"(40.846565, -73.92589)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4478897,Sedan,Tractor Truck Diesel,,, +11/17/2021,0:42,BROOKLYN,11219,40.63746,-73.99465,"(40.63746, -73.99465)",NEW UTRECHT AVENUE,48 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4478448,Sedan,Dump,,, +11/18/2021,1:30,BROOKLYN,11211,40.713085,-73.94415,"(40.713085, -73.94415)",GRAHAM AVENUE,AINSLIE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478507,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,8:00,,,40.82413,-73.94098,"(40.82413, -73.94098)",WEST 147 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4479161,Sedan,,,, +11/14/2021,23:26,,,40.835808,-73.949455,"(40.835808, -73.949455)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478912,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,14:40,BROOKLYN,11207,40.660988,-73.889206,"(40.660988, -73.889206)",HEGEMAN AVENUE,WYONA STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479848,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,9:55,,,40.859306,-73.89885,"(40.859306, -73.89885)",EAST 184 STREET,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478483,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,8:46,BRONX,10462,40.833557,-73.85774,"(40.833557, -73.85774)",WESTCHESTER AVENUE,PUGSLEY AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4478709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,15:21,,,40.851616,-73.92165,"(40.851616, -73.92165)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unsafe Lane Changing,,,,4478929,Tractor Truck Diesel,Tractor Truck Diesel,,, +11/17/2021,2:38,,,40.827557,-73.914764,"(40.827557, -73.914764)",TELLER AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4478087,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,15:00,,,40.661312,-73.77522,"(40.661312, -73.77522)",ROCKAWAY BOULEVARD,146 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478740,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,11:50,,,40.826275,-73.85971,"(40.826275, -73.85971)",BRUCKNER BOULEVARD,WHITE PLAINS ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4479492,Sedan,E-Scooter,,, +11/19/2021,0:22,QUEENS,11101,40.753014,-73.95041,"(40.753014, -73.95041)",VERNON BOULEVARD,43 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479028,Sedan,Taxi,,, +11/18/2021,22:48,MANHATTAN,10128,40.780537,-73.95205,"(40.780537, -73.95205)",,,213 EAST 89 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Backing Unsafely,,,,4478797,Taxi,Sedan,,, +11/17/2021,7:45,,,40.7418,-73.72815,"(40.7418, -73.72815)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478430,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,9:58,,,40.706085,-73.8085,"(40.706085, -73.8085)",HILLSIDE AVENUE,148 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478632,Sedan,Bus,,, +11/18/2021,12:10,,,40.706444,-73.926834,"(40.706444, -73.926834)",VARICK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478792,Sedan,,,, +11/19/2021,0:28,QUEENS,11419,40.68605,-73.831726,"(40.68605, -73.831726)",103 AVENUE,111 STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4478775,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,7:45,BRONX,10470,40.904957,-73.85371,"(40.904957, -73.85371)",EAST 241 STREET,BRONX BOULEVARD,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4478680,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:25,QUEENS,11423,40.718136,-73.75726,"(40.718136, -73.75726)",FRANCIS LEWIS BOULEVARD,90 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478953,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/17/2021,6:30,QUEENS,11106,40.75918,-73.93247,"(40.75918, -73.93247)",,,35-33 CRESCENT STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478165,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,16:36,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479627,Ambulance,Sedan,,, +11/17/2021,21:40,BROOKLYN,11212,40.672073,-73.91135,"(40.672073, -73.91135)",ROCKAWAY AVENUE,EAST NEW YORK AVENUE,,2,0,1,0,0,0,1,0,Unspecified,,,,,4478715,Sedan,,,, +11/17/2021,13:00,BROOKLYN,11218,40.65391,-73.97305,"(40.65391, -73.97305)",PROSPECT PARK SOUTHWEST,REEVE PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,,,4478411,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,22:04,STATEN ISLAND,10309,40.52182,-74.23502,"(40.52182, -74.23502)",,,85 PAGE AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478881,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,17:50,BROOKLYN,11226,40.643772,-73.958755,"(40.643772, -73.958755)",CORTELYOU ROAD,EAST 21 STREET,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478486,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/18/2021,17:00,,,40.626377,-74.150536,"(40.626377, -74.150536)",,,60 WESTBROOK AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479013,Sedan,,,, +11/18/2021,15:00,,,,,,ASTORIA BOULEVARD,Steinway Street,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479719,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,23:00,,,40.552948,-74.168106,"(40.552948, -74.168106)",GENESEE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478940,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,13:59,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479185,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,14:20,,,40.702824,-74.00811,"(40.702824, -74.00811)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,13:40,BROOKLYN,11205,40.69677,-73.96755,"(40.69677, -73.96755)",,,65 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4479030,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/17/2021,23:45,,,40.591755,-73.9083,"(40.591755, -73.9083)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4479162,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/19/2021,13:45,QUEENS,11367,40.73851,-73.814026,"(40.73851, -73.814026)",,,154-16 HORACE HARDING EXPRESSWAY,1,0,0,0,1,0,0,0,Backing Unsafely,Unspecified,,,,4479047,Sedan,Bike,,, +11/18/2021,15:59,,,40.735306,-74.00037,"(40.735306, -74.00037)",GREENWICH AVENUE,,,1,0,0,0,1,0,0,0,Turning Improperly,Unspecified,,,,4479399,Sedan,Bike,,, +11/16/2021,7:00,,,40.690884,-73.912506,"(40.690884, -73.912506)",HANCOCK STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479654,Sedan,,,, +11/17/2021,9:03,,,40.75895,-73.96849,"(40.75895, -73.96849)",EAST 55 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478442,Box Truck,E-Scooter,,, +11/17/2021,20:15,STATEN ISLAND,10314,40.603912,-74.11792,"(40.603912, -74.11792)",LAGUARDIA AVENUE,LINCOLN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478622,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,16:00,MANHATTAN,10007,40.714302,-74.005104,"(40.714302, -74.005104)",,,29 READE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479346,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,8:30,BROOKLYN,11211,40.70762,-73.962036,"(40.70762, -73.962036)",,,159 DIVISION AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479433,Sedan,,,, +11/18/2021,22:20,QUEENS,11418,40.70076,-73.82456,"(40.70076, -73.82456)",,,87-72 126 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4478882,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,16:58,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,2,0,1,0,1,0,0,0,Passing or Lane Usage Improper,,,,,4478656,E-Bike,,,, +11/18/2021,18:10,,,40.82398,-73.946724,"(40.82398, -73.946724)",CONVENT AVENUE,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478866,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,17:40,BROOKLYN,11235,40.58514,-73.96651,"(40.58514, -73.96651)",OCEAN PARKWAY,NIXON COURT,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479035,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,17:00,,,40.6992,-73.92309,"(40.6992, -73.92309)",STOCKHOLM STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478466,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,9:30,,,40.714073,-73.95534,"(40.714073, -73.95534)",METROPOLITAN AVENUE,HAVEMEYER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479251,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +11/19/2021,15:00,,,40.72881,-73.99507,"(40.72881, -73.99507)",WEST 4 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479407,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,17:23,BROOKLYN,11218,40.645767,-73.97069,"(40.645767, -73.97069)",,,490 CONEY ISLAND AVENUE,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478825,Sedan,Sedan,Sedan,, +11/12/2021,15:00,,,40.73207,-73.94462,"(40.73207, -73.94462)",GREENPOINT AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4479610,Moped,,,, +11/18/2021,20:10,BROOKLYN,11218,40.638714,-73.97154,"(40.638714, -73.97154)",,,717 CORTELYOU ROAD,1,0,1,0,0,0,0,0,Passenger Distraction,,,,,4479766,Sedan,,,, +11/19/2021,19:35,BRONX,10466,40.895523,-73.8504,"(40.895523, -73.8504)",GUNTHER AVENUE,PITMAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479563,,,,, +11/19/2021,14:23,,,40.840977,-73.916016,"(40.840977, -73.916016)",EAST 171 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479328,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,17:00,MANHATTAN,10018,40.757065,-74.00106,"(40.757065, -74.00106)",WEST 36 STREET,11 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479459,Sedan,,,, +11/19/2021,8:08,BRONX,10461,40.840145,-73.84443,"(40.840145, -73.84443)",,,2555 TRATMAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479368,Bus,Bus,,, +11/18/2021,0:30,,,,,,COLLEGE POINT BOULEVARD,LONG ISLAND EXPRESSWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479743,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,17:45,,,,,,EASTERN PARKWAY,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4478786,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,6:45,QUEENS,11413,40.6785,-73.743256,"(40.6785, -73.743256)",133 AVENUE,226 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4478735,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,20:55,QUEENS,11378,40.72945,-73.890015,"(40.72945, -73.890015)",73 STREET,GRAND AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479506,Sedan,,,, +11/17/2021,9:45,,,40.76635,-73.89093,"(40.76635, -73.89093)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478848,Sedan,Sedan,,, +11/17/2021,9:19,MANHATTAN,10013,40.720116,-74.01019,"(40.720116, -74.01019)",GREENWICH STREET,NORTH MOORE STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Passing Too Closely,Unspecified,,,4478290,Sedan,Sedan,LIMO,, +11/17/2021,16:50,QUEENS,11375,40.720165,-73.844795,"(40.720165, -73.844795)",71 AVENUE,AUSTIN STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478348,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,10:15,BRONX,10461,40.85728,-73.85206,"(40.85728, -73.85206)",,,1214 PELHAM PARKWAY SOUTH,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479099,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/17/2021,14:30,,,40.84441,-73.90117,"(40.84441, -73.90117)",CROSS BRONX EXPRESSWAY,PARK AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4478553,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,16:28,MANHATTAN,10001,40.749546,-73.98798,"(40.749546, -73.98798)",,,1293 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479449,Bulk Agriculture,Sedan,,, +11/15/2021,15:00,BROOKLYN,11224,40.575565,-73.98081,"(40.575565, -73.98081)",,,1243 SURF AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479062,Sedan,,,, +11/17/2021,17:55,MANHATTAN,10018,40.757145,-73.99357,"(40.757145, -73.99357)",9 AVENUE,WEST 40 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4478893,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,17:30,QUEENS,11414,40.6724,-73.856834,"(40.6724, -73.856834)",,,133-40 79 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478781,Sedan,,,, +11/17/2021,5:30,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Alcohol Involvement,,,,4478425,Tractor Truck Diesel,Sedan,,, +11/19/2021,8:54,QUEENS,11356,40.79069,-73.840866,"(40.79069, -73.840866)",127 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478925,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,14:10,BROOKLYN,11230,40.62672,-73.96956,"(40.62672, -73.96956)",AVENUE I,EAST 7 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478608,Pick-up Truck,Sedan,,, +11/18/2021,16:35,MANHATTAN,10004,40.705868,-74.01326,"(40.705868, -74.01326)",BROADWAY,MORRIS STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4478908,Bus,Sedan,,, +11/12/2021,14:06,,,,,,NASSAU EXPRESSWAY,,,3,0,0,0,0,0,3,0,Brakes Defective,Unspecified,,,,4479208,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,18:45,QUEENS,11375,40.71935,-73.84263,"(40.71935, -73.84263)",AUSTIN STREET,72 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479131,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,11:00,,,40.745728,-73.97813,"(40.745728, -73.97813)",EAST 34 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478930,Sedan,Dump,,, +11/18/2021,9:00,,,40.68174,-73.95859,"(40.68174, -73.95859)",CLASSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478754,Sedan,Sedan,,, +11/19/2021,15:59,,,40.836555,-73.87135,"(40.836555, -73.87135)",CROSS BRONX EXPRESSWAY,NOBLE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479390,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,6:30,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Following Too Closely,,,,4478254,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,17:00,BRONX,10457,40.842937,-73.895386,"(40.842937, -73.895386)",CROTONA PARK NORTH,ARTHUR AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478513,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,4:45,QUEENS,11434,40.667522,-73.78063,"(40.667522, -73.78063)",ROCKAWAY BOULEVARD,NORTH CONDUIT AVENUE,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4478565,Sedan,Sedan,,, +11/18/2021,15:00,MANHATTAN,10031,40.82269,-73.94947,"(40.82269, -73.94947)",AMSTERDAM AVENUE,WEST 141 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479441,Station Wagon/Sport Utility Vehicle,REVEL MOPE,,, +11/19/2021,22:30,,,40.8178,-73.89299,"(40.8178, -73.89299)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479287,Sedan,Tractor Truck Diesel,,, +11/17/2021,11:00,,,40.70179,-73.786476,"(40.70179, -73.786476)",105 AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478317,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,12:10,BRONX,10455,40.81033,-73.90914,"(40.81033, -73.90914)",CONCORD AVENUE,EAST 145 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478455,Pick-up Truck,,,, +11/18/2021,11:18,MANHATTAN,10023,40.776722,-73.979294,"(40.776722, -73.979294)",WEST 71 STREET,COLUMBUS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479623,Taxi,,,, +11/10/2021,22:00,,,40.69603,-73.943535,"(40.69603, -73.943535)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4478968,Sedan,Sedan,,, +11/18/2021,12:00,QUEENS,11421,40.69525,-73.85434,"(40.69525, -73.85434)",86 AVENUE,91 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478675,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,17:30,BRONX,10462,40.835045,-73.86307,"(40.835045, -73.86307)",,,1366 WHITE PLAINS ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479490,Sedan,Motorbike,,, +11/11/2021,12:53,,,,,,,,3040 SEDGWICK AVENUE,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479067,Sedan,Sedan,,, +11/19/2021,11:25,BROOKLYN,11207,40.66852,-73.890175,"(40.66852, -73.890175)",BLAKE AVENUE,MILLER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478985,Sedan,,,, +11/18/2021,18:30,,,40.667015,-73.9313,"(40.667015, -73.9313)",UTICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478720,Sedan,Bus,,, +11/18/2021,8:00,BROOKLYN,11219,40.639656,-73.99805,"(40.639656, -73.99805)",,,4723 10 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478614,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,9:06,BRONX,10467,40.88183,-73.87627,"(40.88183, -73.87627)",TRYON AVENUE,EAST 211 STREET,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478861,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,14:23,BROOKLYN,11215,40.66495,-73.993355,"(40.66495, -73.993355)",4 AVENUE,17 STREET,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Lane Marking Improper/Inadequate,,,,4478417,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/19/2021,8:32,BROOKLYN,11226,40.646126,-73.959206,"(40.646126, -73.959206)",REGENT PLACE,EAST 21 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479126,Pick-up Truck,Sedan,,, +11/11/2021,14:58,BROOKLYN,11233,40.683636,-73.922874,"(40.683636, -73.922874)",,,182 RALPH AVENUE,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4479532,Taxi,Sedan,,, +11/12/2021,23:15,,,40.669735,-73.93104,"(40.669735, -73.93104)",UTICA AVENUE,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4479495,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,9:01,MANHATTAN,10032,40.83238,-73.940895,"(40.83238, -73.940895)",WEST 157 STREET,SAINT NICHOLAS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4478936,Sedan,Motorcycle,,, +11/17/2021,18:45,QUEENS,11373,40.733498,-73.87038,"(40.733498, -73.87038)",QUEENS BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478461,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/18/2021,0:00,,,40.667038,-73.7682,"(40.667038, -73.7682)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478818,Pick-up Truck,Sedan,,, +11/19/2021,9:10,MANHATTAN,10016,40.748363,-73.98041,"(40.748363, -73.98041)",EAST 36 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479166,Box Truck,Sedan,,, +11/18/2021,6:00,,,40.88736,-73.89426,"(40.88736, -73.89426)",MAJOR DEEGAN EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,Unspecified,,,4479084,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/19/2021,9:00,QUEENS,11104,40.74308,-73.92253,"(40.74308, -73.92253)",,,45-38 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479023,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,0:00,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479465,Sedan,,,, +11/19/2021,14:00,,,40.89675,-73.85988,"(40.89675, -73.85988)",EAST 236 STREET,BRONX BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479556,Sedan,,,, +11/18/2021,20:45,QUEENS,11369,40.76301,-73.87533,"(40.76301, -73.87533)",ASTORIA BOULEVARD,94 STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4478962,Sedan,Pick-up Truck,,, +11/17/2021,5:03,,,40.895847,-73.88114,"(40.895847, -73.88114)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Glare,Reaction to Uninvolved Vehicle,Unspecified,,,4478994,Sedan,Sedan,Tractor Truck Diesel,, +11/19/2021,12:25,MANHATTAN,10013,40.717594,-73.99634,"(40.717594, -73.99634)",ELIZABETH STREET,HESTER STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479341,Box Truck,Sedan,,, +11/16/2021,9:00,,,40.73527,-73.743034,"(40.73527, -73.743034)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4479193,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,14:55,,,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479052,Pick-up Truck,,,, +11/19/2021,16:00,QUEENS,11104,40.745113,-73.92021,"(40.745113, -73.92021)",43 AVENUE,44 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479241,Pick-up Truck,,,, +11/17/2021,18:00,,,40.741272,-73.97535,"(40.741272, -73.97535)",1 AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478957,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,12:00,BRONX,10472,40.828976,-73.87641,"(40.828976, -73.87641)",MANOR AVENUE,WESTCHESTER AVENUE,,3,0,2,0,0,0,0,0,Unspecified,Unspecified,,,,4479483,E-Scooter,,,, +11/18/2021,15:36,BRONX,10452,40.83852,-73.915306,"(40.83852, -73.915306)",,,107 ELLIOT PLACE,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4478810,Bus,Sedan,,, +11/19/2021,21:25,BRONX,10454,40.80489,-73.91296,"(40.80489, -73.91296)",,,647 EAST 138 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479803,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,7:20,,,,,,BRUCKNER EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478765,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,12:21,BROOKLYN,11230,40.629543,-73.96609,"(40.629543, -73.96609)",AVENUE H,CONEY ISLAND AVENUE,,1,0,1,0,0,0,0,0,,,,,,4478663,,,,, +11/18/2021,23:45,BRONX,10459,40.822105,-73.90062,"(40.822105, -73.90062)",EAST 163 STREET,PROSPECT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479020,,,,, +11/18/2021,17:20,BROOKLYN,11229,40.597004,-73.949905,"(40.597004, -73.949905)",GRAVESEND NECK ROAD,EAST 21 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479320,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,12:00,BROOKLYN,11235,40.58813,-73.96582,"(40.58813, -73.96582)",OCEAN PARKWAY,MANHATTAN COURT,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479079,Sedan,,,, +11/19/2021,18:54,QUEENS,11423,40.724678,-73.764824,"(40.724678, -73.764824)",EPSOM COURSE,FRANCIS LEWIS BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479217,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,14:00,BROOKLYN,11203,40.646584,-73.92565,"(40.646584, -73.92565)",,,5421 BEVERLEY ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4479520,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,23:04,BRONX,10452,40.82952,-73.92498,"(40.82952, -73.92498)",RIVER AVENUE,EAST 162 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4478803,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/19/2021,10:20,,,40.709305,-73.84369,"(40.709305, -73.84369)",METROPOLITAN AVENUE,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479151,Sedan,E-Bike,,, +11/19/2021,17:50,,,,,,TRIBOROUGH BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479736,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,1:10,,,40.68195,-73.89652,"(40.68195, -73.89652)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478546,Sedan,Sedan,Sedan,, +11/11/2021,0:00,QUEENS,11364,40.73628,-73.74421,"(40.73628, -73.74421)",,,226-26 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479116,Sedan,Sedan,,, +11/19/2021,9:30,,,40.67681,-73.79405,"(40.67681, -73.79405)",INWOOD STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479278,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,13:14,BROOKLYN,11208,40.67743,-73.87591,"(40.67743, -73.87591)",LIBERTY AVENUE,FOUNTAIN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479827,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,11:30,BRONX,10460,40.845493,-73.883484,"(40.845493, -73.883484)",EAST 180 STREET,MOHEGAN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478904,Sedan,,,, +11/17/2021,5:58,,,40.73715,-73.930824,"(40.73715, -73.930824)",BORDEN AVENUE,GREENPOINT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478192,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,3:20,BRONX,10474,40.81459,-73.891335,"(40.81459, -73.891335)",,,720 TIFFANY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478603,Sedan,,,, +11/16/2021,15:25,QUEENS,11434,40.65616,-73.76736,"(40.65616, -73.76736)",ROCKAWAY BOULEVARD,BREWER BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478077,Sedan,Sedan,,, +11/14/2021,3:05,BROOKLYN,11220,40.645348,-74.01375,"(40.645348, -74.01375)",52 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478889,Sedan,Sedan,,, +11/17/2021,15:50,,,40.757874,-73.788506,"(40.757874, -73.788506)",193 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478402,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,7:25,QUEENS,11377,40.756996,-73.907196,"(40.756996, -73.907196)",,,54-06 31 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478855,Bike,,,, +11/17/2021,16:05,STATEN ISLAND,10301,0,0,"(0.0, 0.0)",CLINTON AVENUE,FILLMORE STREET,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4478571,Sedan,Sedan,,, +11/19/2021,15:30,QUEENS,11414,40.663326,-73.83512,"(40.663326, -73.83512)",157 AVENUE,99 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479094,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,12:58,QUEENS,11354,40.762745,-73.83329,"(40.762745, -73.83329)",PRINCE STREET,NORTHERN BOULEVARD,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478518,Station Wagon/Sport Utility Vehicle,Bike,,, +11/19/2021,12:50,QUEENS,11385,40.705616,-73.88346,"(40.705616, -73.88346)",69 PLACE,70 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479515,Sedan,Sedan,,, +11/18/2021,17:32,,,40.753403,-73.90587,"(40.753403, -73.90587)",55 STREET,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479111,Sedan,Bike,,, +11/17/2021,19:30,BRONX,10462,40.834663,-73.847374,"(40.834663, -73.847374)",,,2330 WATERBURY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479384,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,5:00,BROOKLYN,11238,40.681946,-73.96836,"(40.681946, -73.96836)",,,787 ATLANTIC AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4478921,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,18:28,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4479000,Sedan,Sedan,,, +11/18/2021,12:45,BROOKLYN,11207,40.67385,-73.90024,"(40.67385, -73.90024)",LIBERTY AVENUE,WILLIAMS AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4479849,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,11:00,BROOKLYN,11226,40.650528,-73.95583,"(40.650528, -73.95583)",BEDFORD AVENUE,CHURCH AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4479501,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/17/2021,15:25,MANHATTAN,10012,40.723022,-73.99882,"(40.723022, -73.99882)",SPRING STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478473,Bike,,,, +11/18/2021,12:41,QUEENS,11691,40.602272,-73.753365,"(40.602272, -73.753365)",CORNAGA AVENUE,BEACH 20 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478817,Sedan,,,, +11/18/2021,14:37,BROOKLYN,11207,40.657803,-73.88303,"(40.657803, -73.88303)",,,271 WORTMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478972,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,20:00,BROOKLYN,11234,40.614296,-73.93736,"(40.614296, -73.93736)",,,3517 QUENTIN ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478729,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,20:00,BRONX,10470,40.90298,-73.8561,"(40.90298, -73.8561)",,,4560 BULLARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479549,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,15:10,,,40.696785,-73.95659,"(40.696785, -73.95659)",PARK AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478989,Station Wagon/Sport Utility Vehicle,Bus,,, +11/17/2021,18:56,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478494,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,12:39,,,40.76649,-73.95696,"(40.76649, -73.95696)",EAST 70 STREET,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4478664,Van,,,, +11/18/2021,16:00,QUEENS,11691,40.595276,-73.763756,"(40.595276, -73.763756)",,,225 BEACH 31 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478835,Sedan,,,, +10/30/2021,22:34,,,40.707664,-73.78772,"(40.707664, -73.78772)",172 STREET,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Alcohol Involvement,,,,4479687,Sedan,Sedan,,, +11/17/2021,11:30,QUEENS,11426,40.724194,-73.72509,"(40.724194, -73.72509)",243 STREET,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478433,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,10:00,MANHATTAN,10026,40.803528,-73.94923,"(40.803528, -73.94923)",,,100 WEST 118 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479055,Box Truck,Sedan,,, +11/19/2021,17:55,BROOKLYN,11226,40.652927,-73.959335,"(40.652927, -73.959335)",CATON AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479337,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,8:25,BROOKLYN,11221,40.69554,-73.91261,"(40.69554, -73.91261)",KNICKERBOCKER AVENUE,MADISON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478610,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,15:50,QUEENS,11365,40.733078,-73.79202,"(40.733078, -73.79202)",179 STREET,69 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479038,Sedan,Sedan,,, +11/19/2021,23:00,QUEENS,11368,40.753475,-73.86977,"(40.753475, -73.86977)",,,35-04 98 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4479172,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/16/2021,17:41,,,0,0,"(0.0, 0.0)",PATCHEN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479581,Taxi,Sedan,,, +11/18/2021,16:39,BRONX,10467,40.878853,-73.87349,"(40.878853, -73.87349)",EAST GUN HILL ROAD,HULL AVENUE,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,Unspecified,,,4479199,PK,Sedan,Station Wagon/Sport Utility Vehicle,, +11/18/2021,20:36,BROOKLYN,11207,40.67643,-73.89128,"(40.67643, -73.89128)",ATLANTIC AVENUE,VAN SICLEN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4478977,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/19/2021,0:00,QUEENS,11413,40.673344,-73.75362,"(40.673344, -73.75362)",219 STREET,CARSON STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,Unspecified,,,4479143,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/19/2021,3:04,BRONX,10474,40.816013,-73.88737,"(40.816013, -73.88737)",,,770 HUNTS POINT AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479027,Sedan,Tow Truck / Wrecker,,, +11/16/2021,18:51,QUEENS,11422,40.665257,-73.735344,"(40.665257, -73.735344)",FRANCIS LEWIS BOULEVARD,SOUTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479138,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,8:48,,,40.82725,-73.9387,"(40.82725, -73.9387)",8 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478990,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/17/2021,21:30,,,,,,MAJOR DEEGAN EXPRESSWAY RAMP,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479091,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/29/2021,7:30,,,40.690346,-73.9603,"(40.690346, -73.9603)",,,CLASSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479187,Sedan,Sedan,,, +11/18/2021,22:38,BRONX,10454,40.807186,-73.924286,"(40.807186, -73.924286)",WILLIS AVENUE,EAST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479793,Sedan,Sedan,,, +11/18/2021,1:36,QUEENS,11432,40.720608,-73.79724,"(40.720608, -73.79724)",170 STREET,GOETHALS AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4479048,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,11:10,,,40.73026,-73.84577,"(40.73026, -73.84577)",66 ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4478641,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/19/2021,13:00,,,40.69246,-73.726875,"(40.69246, -73.726875)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479235,PK,Sedan,,, +11/17/2021,12:54,,,40.73009,-73.87714,"(40.73009, -73.87714)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478460,Sedan,,,, +11/19/2021,7:49,BROOKLYN,11226,40.64251,-73.96564,"(40.64251, -73.96564)",,,296 RUGBY ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479123,Station Wagon/Sport Utility Vehicle,,,, +10/29/2021,14:30,,,40.682507,-73.94375,"(40.682507, -73.94375)",HALSEY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479475,Bus,Sedan,,, +11/19/2021,6:56,QUEENS,11420,40.670208,-73.81902,"(40.670208, -73.81902)",135 AVENUE,121 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,Unspecified,,4478894,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +10/27/2021,11:40,BROOKLYN,11215,40.663437,-73.986664,"(40.663437, -73.986664)",WEBSTER PLACE,16 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479148,Sedan,,,, +10/31/2021,23:20,,,,,,SPRINGFIELD BOULEVARD,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479869,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,20:35,,,40.689102,-73.94507,"(40.689102, -73.94507)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passenger Distraction,,,,4479221,moped,Sedan,,, +11/19/2021,6:45,,,40.613243,-74.155304,"(40.613243, -74.155304)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479016,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,10:40,BROOKLYN,11209,40.632015,-74.02758,"(40.632015, -74.02758)",,,7408 3 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479304,Sedan,,,, +11/19/2021,14:00,BROOKLYN,11205,40.69133,-73.95177,"(40.69133, -73.95177)",NOSTRAND AVENUE,DE KALB AVENUE,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4479155,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,1:35,MANHATTAN,10016,40.739407,-73.97671,"(40.739407, -73.97671)",EAST 27 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Alcohol Involvement,Unspecified,,,,4478958,Sedan,Bike,,, +11/18/2021,20:50,BROOKLYN,11207,40.672314,-73.893036,"(40.672314, -73.893036)",PITKIN AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479831,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/17/2021,0:00,,,40.627037,-74.16483,"(40.627037, -74.16483)",,,2239 FOREST AVENUE,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4478578,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,23:00,,,40.68993,-73.98148,"(40.68993, -73.98148)",FLATBUSH AVENUE EXTENSION,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479611,Sedan,,,, +11/19/2021,22:20,QUEENS,11432,40.719093,-73.77552,"(40.719093, -73.77552)",188 STREET,SOHO DRIVE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479271,Sedan,Sedan,,, +11/17/2021,7:59,QUEENS,11369,40.76401,-73.881226,"(40.76401, -73.881226)",88 STREET,ASTORIA BOULEVARD,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478221,Station Wagon/Sport Utility Vehicle,Bike,,, +11/17/2021,21:24,,,,,,Broadway,BROADWAY,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Passing Too Closely,,,,4478500,Sedan,,,, +11/19/2021,15:31,QUEENS,11434,40.66588,-73.80184,"(40.66588, -73.80184)",SOUTH CONDUIT AVENUE,VANWYCK EXPRESSWAY,,1,0,0,0,0,0,1,0,Cell Phone (hand-Held),Unspecified,,,,4479070,Sedan,,,, +11/17/2021,9:00,BRONX,10469,40.87544,-73.836685,"(40.87544, -73.836685)",BURKE AVENUE,EDSON AVENUE,,7,0,0,0,0,0,7,0,Driver Inattention/Distraction,Driver Inexperience,,,,4478360,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,9:15,,,40.60205,-74.01334,"(40.60205, -74.01334)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479372,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,12:39,BROOKLYN,11221,40.691807,-73.918625,"(40.691807, -73.918625)",EVERGREEN AVENUE,PALMETTO STREET,,1,0,0,0,1,0,0,0,Reaction to Uninvolved Vehicle,Passing or Lane Usage Improper,,,,4478872,Sedan,Bike,,, +11/16/2021,8:22,BROOKLYN,11236,40.64366,-73.90067,"(40.64366, -73.90067)",ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479004,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,17:42,BRONX,10461,40.84257,-73.85253,"(40.84257, -73.85253)",,,2425 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Driverless/Runaway Vehicle,,,,,4479106,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,14:50,,,40.708424,-73.95791,"(40.708424, -73.95791)",BROADWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4478510,Bus,Sedan,,, +11/17/2021,14:00,,,0,0,"(0.0, 0.0)",3 AVENUE,EAST 188 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478498,Taxi,Sedan,,, +11/18/2021,8:53,,,40.671585,-73.99843,"(40.671585, -73.99843)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478842,Sedan,Dump,,, +11/18/2021,16:34,,,40.686577,-73.947464,"(40.686577, -73.947464)",GATES AVENUE,,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4478687,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,14:21,BROOKLYN,11214,40.60489,-74.00033,"(40.60489, -74.00033)",,,21 BAY 22 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478469,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,12:30,BRONX,10472,40.83382,-73.868744,"(40.83382, -73.868744)",,,1354 COMMONWLTH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478710,Sedan,,,, +11/19/2021,9:00,BRONX,10456,40.832607,-73.91762,"(40.832607, -73.91762)",SHERIDAN AVENUE,MCCLELLAN STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479398,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,1:54,MANHATTAN,10014,40.72754,-74.0073,"(40.72754, -74.0073)",,,345 HUDSON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478126,Sedan,Sedan,,, +10/09/2021,5:47,,,40.868248,-73.916145,"(40.868248, -73.916145)",10 AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479694,Sedan,,,, +11/17/2021,19:46,QUEENS,11429,40.713898,-73.7488,"(40.713898, -73.7488)",211 STREET,99 AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478741,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,16:30,BROOKLYN,11220,40.64592,-74.02226,"(40.64592, -74.02226)",,,140 57 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479134,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,18:00,BRONX,10458,40.870224,-73.88717,"(40.870224, -73.88717)",EAST 199 STREET,BRIGGS AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478860,Sedan,,,, +11/19/2021,21:45,BROOKLYN,11203,40.642384,-73.92539,"(40.642384, -73.92539)",AVENUE D,KINGS HIGHWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4479416,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan +11/18/2021,0:00,QUEENS,11435,40.695637,-73.80372,"(40.695637, -73.80372)",105 AVENUE,SUTPHIN BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478631,Sedan,,,, +11/19/2021,13:30,,,40.620308,-74.16238,"(40.620308, -74.16238)",ELSON COURT,REGIS DRIVE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4479009,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,23:26,,,40.604618,-74.02771,"(40.604618, -74.02771)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478796,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,18:00,,,40.675755,-73.95977,"(40.675755, -73.95977)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479628,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,16:58,,,40.719124,-73.791405,"(40.719124, -73.791405)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479042,Sedan,Sedan,,, +11/19/2021,14:30,,,40.566494,-74.11377,"(40.566494, -74.11377)",HYLAN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479158,Sedan,Sedan,,, +11/18/2021,20:00,BROOKLYN,11233,40.68078,-73.90653,"(40.68078, -73.90653)",,,330 MACDOUGAL STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479353,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,17:24,MANHATTAN,10013,40.723976,-74.00831,"(40.723976, -74.00831)",CANAL STREET,WATTS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478899,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,16:59,,,40.575256,-74.0053,"(40.575256, -74.0053)",SEAGATE AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4479059,Station Wagon/Sport Utility Vehicle,Bike,,, +11/17/2021,11:27,MANHATTAN,10007,40.713795,-74.008835,"(40.713795, -74.008835)",CHURCH STREET,MURRAY STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479179,Taxi,E-Bike,,, +11/19/2021,8:30,QUEENS,11370,40.7672,-73.887825,"(40.7672, -73.887825)",DITMARS BOULEVARD,GRAND CENTRAL PARKWAY,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479031,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,5:57,,,40.77529,-73.953636,"(40.77529, -73.953636)",2 AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479751,Sedan,Tow Truck / Wrecker,,, +11/17/2021,15:25,BRONX,10465,40.83362,-73.81819,"(40.83362, -73.81819)",,,974 CLARENCE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479363,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/19/2021,22:20,,,40.607166,-74.13085,"(40.607166, -74.13085)",,,193 WHEELER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479400,Sedan,,,, +11/19/2021,15:57,QUEENS,11432,40.71405,-73.77801,"(40.71405, -73.77801)",HILLSIDE AVENUE,184 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479087,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/11/2021,14:50,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479163,Sedan,Sedan,,, +11/19/2021,9:30,BROOKLYN,11207,40.686226,-73.9124,"(40.686226, -73.9124)",COVERT STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479263,Sedan,,,, +11/15/2021,22:10,BROOKLYN,11233,40.68561,-73.92326,"(40.68561, -73.92326)",RALPH AVENUE,HANCOCK STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4479554,Sedan,E-Scooter,,, +11/14/2021,1:50,,,40.69168,-73.999344,"(40.69168, -73.999344)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479656,Sedan,,,, +11/19/2021,13:00,BROOKLYN,11211,40.719036,-73.95523,"(40.719036, -73.95523)",,,182 NORTH 10 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479599,Van,Van,,, +11/18/2021,16:54,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",LINDEN BOULEVARD,79 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478782,Motorcycle,,,, +11/15/2021,10:53,MANHATTAN,10013,40.721222,-74.00444,"(40.721222, -74.00444)",,,375 CANAL STREET,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4478913,Sedan,Sedan,,, +11/19/2021,5:32,,,,,,CHURCH AVENUE,OCEAN PARKWAY,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479778,Taxi,,,, +11/19/2021,20:50,QUEENS,11435,40.705784,-73.80959,"(40.705784, -73.80959)",,,147-01 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479333,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:10,MANHATTAN,10037,40.816235,-73.93929,"(40.816235, -73.93929)",,,560 LENOX AVENUE,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4479119,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,7:20,BRONX,10457,40.847485,-73.90553,"(40.847485, -73.90553)",TOPPING AVENUE,EAST 176 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478926,Bus,Taxi,,, +11/17/2021,12:16,BRONX,10463,40.885586,-73.90589,"(40.885586, -73.90589)",WEST 236 STREET,WALDO AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479014,Sedan,Sedan,,, +11/17/2021,23:30,BRONX,10453,0,0,"(0.0, 0.0)",WEST BURNSIDE AVENUE,HENNESSEY PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478931,E-Bike,,,, +11/19/2021,16:00,BRONX,10452,40.83,-73.93173,"(40.83, -73.93173)",SEDGWICK AVENUE,JEROME AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,View Obstructed/Limited,Unspecified,,,4479458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Dump,, +11/17/2021,18:05,,,40.680218,-73.775505,"(40.680218, -73.775505)",168 STREET,,,1,0,0,0,1,0,0,0,Cell Phone (hand-Held),,,,,4478566,E-Bike,,,, +11/17/2021,10:05,,,,,,THROGS NECK EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478315,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,11:00,QUEENS,11433,40.69735,-73.79428,"(40.69735, -73.79428)",,,160-02 107 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478318,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,14:30,,,,,,BELL BOULEVARD,totten road,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478527,Sedan,Pick-up Truck,,, +11/18/2021,17:50,QUEENS,11422,40.65732,-73.738716,"(40.65732, -73.738716)",147 AVENUE,249 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478739,Sedan,,,, +11/17/2021,17:15,,,40.74105,-73.72587,"(40.74105, -73.72587)",UNION TURNPIKE,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478389,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/18/2021,1:52,,,0,0,"(0.0, 0.0)",BERGEN STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4479499,Sedan,,,, +11/17/2021,17:45,,,40.692062,-73.95191,"(40.692062, -73.95191)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478556,Sedan,Bus,,, +11/19/2021,9:24,BRONX,10452,40.840424,-73.92239,"(40.840424, -73.92239)",WEST 170 STREET,SHAKESPEARE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479326,Sedan,,,, +11/18/2021,18:03,BROOKLYN,11236,40.634552,-73.91477,"(40.634552, -73.91477)",FLATLANDS AVENUE,EAST 78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478759,Sedan,Sedan,,, +11/17/2021,17:50,BROOKLYN,11234,40.620865,-73.935,"(40.620865, -73.935)",FLATBUSH AVENUE,AVENUE M,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478416,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,11:45,QUEENS,11432,40.71263,-73.78386,"(40.71263, -73.78386)",,,179-18 HILLSIDE AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479074,Sedan,Sedan,,, +11/18/2021,3:25,,,40.76943,-73.91025,"(40.76943, -73.91025)",STEINWAY STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478592,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,9:08,,,40.891018,-73.886894,"(40.891018, -73.886894)",MOSHOLU PARKWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479203,Sedan,Bus,,, +11/19/2021,1:45,QUEENS,11419,40.686184,-73.829865,"(40.686184, -73.829865)",,,103-23 113 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,Unspecified,4478780,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan +11/17/2021,8:49,BROOKLYN,11234,40.628017,-73.923965,"(40.628017, -73.923965)",,,1210 EAST 54 STREET,1,0,0,0,0,0,1,0,View Obstructed/Limited,View Obstructed/Limited,,,,4478241,Sedan,Sedan,,, +11/18/2021,7:50,,,40.546707,-74.19913,"(40.546707, -74.19913)",HUGUENOT AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478945,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,15:00,QUEENS,11355,40.744846,-73.835686,"(40.744846, -73.835686)",COLLEGE POINT BOULEVARD,59 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,8:38,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4478876,Sedan,,,, +10/25/2021,21:15,MANHATTAN,10026,40.805954,-73.95614,"(40.805954, -73.95614)",,,408 MANHATTAN AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479296,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,23:25,,,40.863632,-73.87168,"(40.863632, -73.87168)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unsafe Speed,,,,4479102,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,12:42,BRONX,10463,40.87541,-73.90436,"(40.87541, -73.90436)",,,2876 BAILEY AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479085,Sedan,Sedan,,, +11/19/2021,8:00,MANHATTAN,10036,40.758427,-73.99264,"(40.758427, -73.99264)",WEST 42 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479448,Van,Bus,,, +11/16/2021,12:49,,,40.579803,-73.97184,"(40.579803, -73.97184)",WEST 5 STREET,,,2,0,0,0,0,0,2,0,Other Vehicular,Driver Inattention/Distraction,,,,4479063,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,15:59,MANHATTAN,10034,40.867813,-73.92364,"(40.867813, -73.92364)",WEST 204 STREET,COOPER STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4479585,Sedan,Sedan,,, +11/19/2021,3:27,,,40.81021,-73.90208,"(40.81021, -73.90208)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479805,Sedan,,,, +11/17/2021,4:00,QUEENS,11369,40.76029,-73.86616,"(40.76029, -73.86616)",,,31-57 103 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478585,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,8:00,QUEENS,11354,40.776657,-73.827415,"(40.776657, -73.827415)",25 AVENUE,WHITESTONE EXPRESSWAY,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478924,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,17:20,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4479209,Bus,Sedan,,, +11/18/2021,6:40,,,,,,FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478607,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,16:00,STATEN ISLAND,10312,40.54326,-74.19731,"(40.54326, -74.19731)",HUGUENOT AVENUE,WOODROW ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478903,Bike,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,0:00,QUEENS,11377,40.745594,-73.9034,"(40.745594, -73.9034)",ROOSEVELT AVENUE,61 STREET,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4479293,Station Wagon/Sport Utility Vehicle,Bike,,, +11/17/2021,8:15,QUEENS,11412,40.691666,-73.76239,"(40.691666, -73.76239)",FARMERS BOULEVARD,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478265,Sedan,,,, +11/17/2021,17:34,BROOKLYN,11213,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478387,Sedan,,,, +11/01/2021,16:15,BRONX,10462,40.835518,-73.86112,"(40.835518, -73.86112)",METROPOLITAN AVENUE,WOOD AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479484,Sedan,,,, +11/19/2021,15:00,BROOKLYN,11204,40.61388,-73.99369,"(40.61388, -73.99369)",,,1856 73 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479362,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,14:55,,,40.820137,-73.89029,"(40.820137, -73.89029)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478766,Station Wagon/Sport Utility Vehicle,Bus,,, +11/17/2021,22:32,BROOKLYN,11223,40.607105,-73.96864,"(40.607105, -73.96864)",EAST 5 STREET,QUENTIN ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4479321,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/19/2021,17:24,QUEENS,11385,40.712757,-73.90225,"(40.712757, -73.90225)",METROPOLITAN AVENUE,61 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479525,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,13:50,MANHATTAN,10011,40.741478,-73.998856,"(40.741478, -73.998856)",,,229 WEST 18 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479461,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,22:05,BRONX,10471,40.90226,-73.89764,"(40.90226, -73.89764)",,,5441 POST ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479078,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,15:50,MANHATTAN,10030,40.81594,-73.945244,"(40.81594, -73.945244)",,,250 WEST 135 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4479245,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,7:59,QUEENS,11435,40.692165,-73.80638,"(40.692165, -73.80638)",INWOOD STREET,106 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479080,Bus,,,, +11/18/2021,17:00,BROOKLYN,11233,40.670773,-73.917046,"(40.670773, -73.917046)",,,430 SARATOGA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478774,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,20:21,BROOKLYN,11230,40.60953,-73.972046,"(40.60953, -73.972046)",,,1656 EAST 2 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479767,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,10:10,BROOKLYN,11232,40.648045,-74.00009,"(40.648045, -74.00009)",40 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4478410,Tow Truck / Wrecker,Pick-up Truck,,, +11/17/2021,18:58,BROOKLYN,11226,40.634907,-73.96132,"(40.634907, -73.96132)",FOSTER AVENUE,EAST 17 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,,,,,4478487,Box Truck,,,, +11/18/2021,19:44,BROOKLYN,11236,40.638226,-73.895996,"(40.638226, -73.895996)",AVENUE L,EAST 96 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478761,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,5:40,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478627,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,8:00,QUEENS,11432,40.724976,-73.7817,"(40.724976, -73.7817)",ABERDEEN ROAD,CHEVY CHASE STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Driver Inattention/Distraction,,,,4479046,Sedan,Sedan,,, +11/18/2021,18:30,QUEENS,11357,40.792004,-73.812584,"(40.792004, -73.812584)",11 AVENUE,CLINTONVILLE STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478734,Sedan,Open Body,,, +11/17/2021,9:17,QUEENS,11101,40.753284,-73.92049,"(40.753284, -73.92049)",NORTHERN BOULEVARD,42 PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Lane Marking Improper/Inadequate,,,,4478288,Taxi,Flat Bed,,, +11/18/2021,23:30,,,40.847897,-73.94523,"(40.847897, -73.94523)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478914,Sedan,,,, +11/19/2021,18:15,BROOKLYN,11231,40.681293,-74.00827,"(40.681293, -74.00827)",,,211 VAN BRUNT STREET,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4479142,Sedan,,,, +11/17/2021,5:20,QUEENS,11417,40.680294,-73.84465,"(40.680294, -73.84465)",CROSS BAY BOULEVARD,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478426,Sedan,,,, +11/18/2021,17:40,STATEN ISLAND,10309,40.545673,-74.21632,"(40.545673, -74.21632)",CORRELL AVENUE,WINANT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4478892,Sedan,Sedan,,, +11/17/2021,7:20,QUEENS,11103,40.76473,-73.91211,"(40.76473, -73.91211)",42 STREET,28 AVENUE,,3,0,0,0,0,0,3,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4478215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/08/2021,19:40,QUEENS,11433,40.706833,-73.78338,"(40.706833, -73.78338)",93 AVENUE,177 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4478946,Bike,,,, +10/04/2021,9:25,QUEENS,11435,40.696167,-73.8045,"(40.696167, -73.8045)",SUTPHIN BOULEVARD,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479692,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,11:00,QUEENS,11419,40.688927,-73.83635,"(40.688927, -73.83635)",108 STREET,97 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478883,Sedan,Sedan,,, +11/17/2021,17:25,,,40.82364,-73.82209,"(40.82364, -73.82209)",CROSS BRONX EXTENTION,,,0,0,0,0,0,0,0,0,Illnes,Unspecified,,,,4478405,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/12/2021,17:20,,,40.58514,-73.96651,"(40.58514, -73.96651)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479073,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/19/2021,4:55,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478798,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,7:29,QUEENS,11102,40.77065,-73.9181,"(40.77065, -73.9181)",,,29-24 HOYT AVENUE SOUTH,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479112,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,9:44,,,40.82681,-73.85361,"(40.82681, -73.85361)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479389,Sedan,Tractor Truck Diesel,,, +11/17/2021,6:30,QUEENS,11357,40.781693,-73.82509,"(40.781693, -73.82509)",,,142-02 20 AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478523,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,17:25,BROOKLYN,11206,40.7012,-73.93992,"(40.7012, -73.93992)",,,811 FLUSHING AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479250,Moped,,,, +11/11/2021,11:38,MANHATTAN,10039,40.821636,-73.93909,"(40.821636, -73.93909)",WEST 145 STREET,7 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478999,Sedan,,,, +11/17/2021,17:00,BROOKLYN,11213,0,0,"(0.0, 0.0)",EASTERN PARKWAY,BROOKLYN AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478397,Sedan,,,, +11/17/2021,6:00,,,40.730442,-73.91367,"(40.730442, -73.91367)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4478967,Sedan,Sedan,Pick-up Truck,, +11/18/2021,21:10,BRONX,10460,40.836216,-73.88845,"(40.836216, -73.88845)",,,1700 SOUTHERN BOULEVARD,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478826,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,12:30,BROOKLYN,11234,40.61312,-73.91745,"(40.61312, -73.91745)",,,5700 AVENUE U,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478684,Sedan,,,, +11/09/2021,8:30,,,40.678932,-73.96197,"(40.678932, -73.96197)",DEAN STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4479626,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,9:52,BROOKLYN,11203,40.654316,-73.922165,"(40.654316, -73.922165)",KINGS HIGHWAY,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479415,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/17/2021,0:00,MANHATTAN,10031,40.830845,-73.947235,"(40.830845, -73.947235)",WEST 152 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478594,Sedan,Sedan,,, +11/18/2021,23:00,MANHATTAN,10013,40.72255,-74.00631,"(40.72255, -74.00631)",VARICK STREET,CANAL STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479226,Pick-up Truck,Sedan,,, +11/19/2021,17:15,,,40.804066,-73.93267,"(40.804066, -73.93267)",EAST 127 STREET,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479735,Sedan,Sedan,,, +11/18/2021,14:20,QUEENS,11102,40.773605,-73.929886,"(40.773605, -73.929886)",12 STREET,27 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478849,AMBULANCE,Sedan,,, +11/18/2021,18:22,,,40.719124,-73.791405,"(40.719124, -73.791405)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4479041,Sedan,Sedan,Sedan,, +11/17/2021,11:00,,,,,,QUEENSBORO BRIDGE UPPER ROADWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478444,Sedan,Sedan,,, +11/18/2021,7:22,MANHATTAN,10009,40.72943,-73.978035,"(40.72943, -73.978035)",EAST 14 STREET,AVENUE B,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478551,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/18/2021,7:55,MANHATTAN,10282,,,,,,200 West Street,0,0,0,0,0,0,0,0,Unspecified,,,,,4479177,Taxi,,,, +11/18/2021,14:10,MANHATTAN,10002,40.723648,-73.99103,"(40.723648, -73.99103)",CHRYSTIE STREET,EAST HOUSTON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479352,Open Body,Bike,,, +11/18/2021,8:40,MANHATTAN,10021,40.771385,-73.95648,"(40.771385, -73.95648)",EAST 76 STREET,2 AVENUE,,2,0,0,0,2,0,0,0,Passenger Distraction,Driver Inattention/Distraction,,,,4479824,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/16/2021,11:20,,,,,,WHITE PLAINS ROAD,PELHAM PARKWAY SOUTH,,1,0,0,0,0,0,1,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Other Vehicular,,,,4479105,Taxi,Sedan,,, +11/17/2021,22:15,BRONX,10474,40.80759,-73.88564,"(40.80759, -73.88564)",,,347 COSTER STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478602,Box Truck,Box Truck,,, +11/18/2021,1:33,BROOKLYN,11213,40.67963,-73.935455,"(40.67963, -73.935455)",,,1625 FULTON STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479579,Taxi,Sedan,,, +11/18/2021,13:45,BROOKLYN,11238,40.686066,-73.971436,"(40.686066, -73.971436)",GREENE AVENUE,CARLTON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478907,Sedan,,,, +11/18/2021,7:10,QUEENS,11420,40.681007,-73.81957,"(40.681007, -73.81957)",111 AVENUE,121 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4478576,Sedan,Sedan,,, +11/18/2021,13:45,QUEENS,11377,40.73725,-73.91799,"(40.73725, -73.91799)",48 STREET,50 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479467,Sedan,Sedan,,, +11/17/2021,2:37,BROOKLYN,11249,40.723385,-73.95842,"(40.723385, -73.95842)",,,25 KENT AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478478,Sedan,Sedan,,, +11/19/2021,17:09,BRONX,10459,40.820187,-73.890686,"(40.820187, -73.890686)",HUNTS POINT AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4479192,Station Wagon/Sport Utility Vehicle,Dump,,, +11/18/2021,13:30,,,40.739674,-73.934586,"(40.739674, -73.934586)",VANDAM STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4478655,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/18/2021,22:50,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478752,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,6:30,,,40.824562,-73.87259,"(40.824562, -73.87259)",BRONX RIVER PARKWAY,BRUCKNER BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479385,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,17:50,BROOKLYN,11238,40.682003,-73.9687,"(40.682003, -73.9687)",ATLANTIC AVENUE,CLERMONT AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unsafe Lane Changing,,,,4478920,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,18:45,QUEENS,11422,40.66561,-73.73568,"(40.66561, -73.73568)",FRANCIS LEWIS BOULEVARD,SUNRISE HIGHWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478437,Sedan,Sedan,,, +11/19/2021,17:55,STATEN ISLAND,10308,40.557926,-74.16175,"(40.557926, -74.16175)",ARMSTRONG AVENUE,BARLOW AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479301,Sedan,Sedan,,, +11/19/2021,1:10,,,40.821712,-73.90646,"(40.821712, -73.90646)",EAST 161 STREET,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478878,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,15:25,BROOKLYN,11207,40.675602,-73.89973,"(40.675602, -73.89973)",ATLANTIC AVENUE,ALABAMA AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4479852,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,12:20,BRONX,10475,40.886665,-73.82612,"(40.886665, -73.82612)",BOSTON ROAD,PEARTREE AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4479865,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/17/2021,12:50,BRONX,10459,40.827717,-73.89571,"(40.827717, -73.89571)",,,1163 INTERVALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478677,Sedan,,,, +11/18/2021,19:30,BRONX,10468,40.86004,-73.908615,"(40.86004, -73.908615)",WEST 183 STREET,ANDREWS AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478862,Motorcycle,,,, +11/17/2021,3:00,MANHATTAN,10010,40.740852,-73.985886,"(40.740852, -73.985886)",EAST 24 STREET,PARK AVENUE SOUTH,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478952,Sedan,Taxi,,, +11/17/2021,9:58,QUEENS,11422,40.66521,-73.73288,"(40.66521, -73.73288)",246 STREET,139 AVENUE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4478432,Sedan,Sedan,,, +11/19/2021,0:00,BRONX,10463,40.87441,-73.90258,"(40.87441, -73.90258)",,,2880 KINGSBRIDGE TERRACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479068,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/17/2021,6:17,,,40.747684,-73.97879,"(40.747684, -73.97879)",EAST 36 STREET,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478167,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,10:35,BRONX,10473,40.816795,-73.86577,"(40.816795, -73.86577)",,,1669 RANDALL AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478711,Bus,Sedan,,, +11/19/2021,8:00,BROOKLYN,11220,40.63965,-74.03033,"(40.63965, -74.03033)",67 STREET,COLONIAL ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479303,Sedan,,,, +11/17/2021,17:30,,,40.835266,-73.91503,"(40.835266, -73.91503)",SHERMAN AVENUE,,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4478804,Sedan,,,, +11/18/2021,17:05,,,40.62719,-74.1385,"(40.62719, -74.1385)",,,257 DECKER AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479010,Sedan,Pick-up Truck,,, +11/17/2021,22:03,,,40.679276,-73.92906,"(40.679276, -73.92906)",FULTON STREET,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479539,Sedan,Sedan,,, +11/17/2021,4:20,QUEENS,11375,40.720524,-73.84458,"(40.720524, -73.84458)",,,107-19 71 AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4478351,Sedan,Sedan,,, +11/18/2021,15:21,,,40.64644,-73.91289,"(40.64644, -73.91289)",REMSEN AVENUE,AVENUE D,,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479150,E-Bike,Sedan,,, +11/09/2021,7:20,STATEN ISLAND,10312,40.532425,-74.192024,"(40.532425, -74.192024)",,,901 HUGUENOT AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478935,Sedan,,,, +11/17/2021,23:15,QUEENS,11373,0,0,"(0.0, 0.0)",,,57-18 JUNCTION BOULEVARD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478462,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/19/2021,10:00,,,40.762093,-73.75691,"(40.762093, -73.75691)",CROSS ISLAND PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4479117,Sedan,Sedan,Sedan,, +11/18/2021,7:30,BROOKLYN,11217,40.680733,-73.97451,"(40.680733, -73.97451)",BERGEN STREET,6 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478787,Sedan,Flat Bed,,, +11/17/2021,16:22,QUEENS,11101,40.74456,-73.93076,"(40.74456, -73.93076)",QUEENS BOULEVARD,34 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478747,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,6:30,QUEENS,11433,40.692314,-73.78169,"(40.692314, -73.78169)",SAYRES AVENUE,169 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478636,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,12:45,BRONX,10462,40.843666,-73.857285,"(40.843666, -73.857285)",,,1601 BRONXDALE AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Backing Unsafely,,,,4479100,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/13/2021,8:00,,,40.706497,-73.89695,"(40.706497, -73.89695)",FRESH POND ROAD,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479507,Bus,,,, +11/18/2021,17:21,BROOKLYN,11234,40.61957,-73.9169,"(40.61957, -73.9169)",AVENUE N,EAST 63 STREET,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4479557,Sedan,,,, +11/18/2021,22:00,,,40.68064,-73.89672,"(40.68064, -73.89672)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Pavement Slippery,Unspecified,,,,4478978,Taxi,Sedan,,, +11/19/2021,9:00,,,40.70938,-73.9371,"(40.70938, -73.9371)",SCHOLES STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479435,Sedan,,,, +11/06/2021,6:30,STATEN ISLAND,10312,40.560276,-74.19609,"(40.560276, -74.19609)",,,1666 ARTHUR KILL ROAD,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4478888,Sedan,,,, +11/18/2021,23:46,,,40.692883,-73.95678,"(40.692883, -73.95678)",WILLOUGHBY AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4478995,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/19/2021,10:36,,,,,,HORACE HARDING EXPRESSWAY,JUNCTION BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4479132,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/18/2021,23:56,BROOKLYN,11226,40.64097,-73.956116,"(40.64097, -73.956116)",,,1206 FLATBUSH AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479343,Sedan,Sedan,,, +11/18/2021,16:40,,,40.671787,-73.95311,"(40.671787, -73.95311)",SAINT JOHNS PLACE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4478844,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,15:10,QUEENS,11368,40.744373,-73.86547,"(40.744373, -73.86547)",,,97-71 CORONA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479502,Sedan,BACK HOE,,, +11/18/2021,1:26,,,40.80054,-73.96192,"(40.80054, -73.96192)",COLUMBUS AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478867,Sedan,,,, +02/08/2022,15:00,MANHATTAN,10035,40.80087,-73.94098,"(40.80087, -73.94098)",,,120 EAST 119 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501541,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,9:55,,,40.577213,-73.96329,"(40.577213, -73.96329)",BRIGHTON BEACH AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479036,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,11:00,,,40.820095,-73.955086,"(40.820095, -73.955086)",WEST 135 STREET,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478467,Sedan,Beverage Truck,,, +11/19/2021,14:18,,,0,0,"(0.0, 0.0)",21 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479110,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,7:20,BRONX,10451,40.82725,-73.91754,"(40.82725, -73.91754)",MORRIS AVENUE,EAST 163 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478809,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/08/2021,18:00,MANHATTAN,10039,40.824398,-73.93775,"(40.824398, -73.93775)",,,200 WEST 149 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479095,Sedan,Sedan,,, +11/17/2021,8:45,,,,,,WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478517,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/30/2021,10:59,BROOKLYN,11226,40.65264,-73.949776,"(40.65264, -73.949776)",LINDEN BOULEVARD,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479409,Sedan,Pick-up Truck,,, +11/18/2021,11:00,BROOKLYN,11222,40.722992,-73.9452,"(40.722992, -73.9452)",,,168 DRIGGS AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4478644,Flat Bed,,,, +11/19/2021,15:30,BRONX,10474,40.821167,-73.886215,"(40.821167, -73.886215)",,,1340 GARRISON AVENUE,1,0,1,0,0,0,0,0,Accelerator Defective,,,,,4479284,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,22:41,BROOKLYN,11226,40.641468,-73.95938,"(40.641468, -73.95938)",OCEAN AVENUE,DORCHESTER ROAD,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479122,Taxi,Bike,,, +11/17/2021,14:08,BROOKLYN,11220,40.63565,-74.00677,"(40.63565, -74.00677)",,,882 58 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478452,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,11:38,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4478984,Sedan,Sedan,,, +11/10/2021,19:00,BRONX,10462,40.836346,-73.85222,"(40.836346, -73.85222)",STARLING AVENUE,CASTLE HILL AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479491,Bus,,,, +11/19/2021,0:00,,,40.709064,-73.924194,"(40.709064, -73.924194)",JOHNSON AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479220,PK,PK,,, +11/18/2021,18:13,,,40.681118,-73.96443,"(40.681118, -73.96443)",ATLANTIC AVENUE,WASHINGTON AVENUE,,2,0,2,0,0,0,0,0,Unspecified,,,,,4479021,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,15:25,MANHATTAN,10022,40.75895,-73.96849,"(40.75895, -73.96849)",EAST 55 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Accelerator Defective,Unspecified,,,,4478418,Bus,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,13:40,,,40.827595,-73.85004,"(40.827595, -73.85004)",BRUCKNER BOULEVARD,CASTLE HILL AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478705,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,6:00,,,40.67295,-73.92517,"(40.67295, -73.92517)",BUFFALO AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478718,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,7:41,,,40.883736,-73.8308,"(40.883736, -73.8308)",STEENWICK AVENUE,REEDS MILL LANE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479566,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,1:01,BROOKLYN,11219,40.63405,-73.98598,"(40.63405, -73.98598)",15 AVENUE,46 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479776,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,17:25,QUEENS,11434,40.669144,-73.76591,"(40.669144, -73.76591)",143 ROAD,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479127,Sedan,,,, +11/18/2021,21:00,MANHATTAN,10023,40.77622,-73.97596,"(40.77622, -73.97596)",CENTRAL PARK WEST,WEST 72 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479622,Taxi,Bike,,, +11/17/2021,12:34,BROOKLYN,11214,40.60477,-74.006454,"(40.60477, -74.006454)",,,149 BAY 17 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479357,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,15:00,,,40.76496,-73.90532,"(40.76496, -73.90532)",25 AVENUE,,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4479720,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,7:00,BROOKLYN,11201,40.704247,-73.98187,"(40.704247, -73.98187)",,,160 JOHN STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479171,Sedan,,,, +11/18/2021,3:30,BROOKLYN,11208,40.67854,-73.86505,"(40.67854, -73.86505)",,,505 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4478545,Sedan,Sedan,,, +11/17/2021,19:38,BROOKLYN,11204,40.624393,-73.98845,"(40.624393, -73.98845)",,,5810 17 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478616,Sedan,,,, +11/17/2021,7:08,MANHATTAN,10013,40.72135,-74.00465,"(40.72135, -74.00465)",CANAL STREET,WEST BROADWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478472,Sedan,,,, +11/18/2021,17:05,,,40.647427,-73.979126,"(40.647427, -73.979126)",CATON AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4478820,Sedan,Motorcycle,,, +11/19/2021,18:00,QUEENS,11420,40.679005,-73.81259,"(40.679005, -73.81259)",115 AVENUE,127 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479682,Pick-up Truck,Sedan,,, +11/13/2021,9:52,,,40.69595,-73.9824,"(40.69595, -73.9824)",PRINCE STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479612,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,3:00,MANHATTAN,10002,40.721035,-73.98874,"(40.721035, -73.98874)",,,162 ORCHARD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479198,Sedan,Pick-up Truck,,, +11/19/2021,1:53,BRONX,10459,40.82324,-73.88856,"(40.82324, -73.88856)",ALDUS STREET,BRYANT AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4479022,Moped,,,, +11/19/2021,19:05,BROOKLYN,11208,40.675053,-73.87436,"(40.675053, -73.87436)",CRYSTAL STREET,PITKIN AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479830,Bike,,,, +11/17/2021,11:27,,,40.85406,-73.91936,"(40.85406, -73.91936)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478501,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,13:30,,,40.852306,-73.89811,"(40.852306, -73.89811)",WEBSTER AVENUE,EAST 180 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478900,COMMERCIAL,Taxi,,, +11/18/2021,9:30,BROOKLYN,11230,40.626568,-73.970924,"(40.626568, -73.970924)",OCEAN PARKWAY,AVENUE I,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479768,Station Wagon/Sport Utility Vehicle,Van,,, +11/19/2021,12:35,BROOKLYN,11230,40.624878,-73.96418,"(40.624878, -73.96418)",AVENUE J,EAST 12 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479356,Pick-up Truck,,,, +11/19/2021,22:33,,,40.81801,-73.96149,"(40.81801, -73.96149)",HENRY HUDSON PARKWAY,,,3,0,0,0,0,0,3,0,Passing Too Closely,Other Vehicular,,,,4479462,Station Wagon/Sport Utility Vehicle,Bus,,, +11/19/2021,14:34,,,40.738895,-73.70099,"(40.738895, -73.70099)",268 STREET,HILLSIDE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479137,Sedan,Sedan,,, +11/18/2021,14:33,BRONX,10457,40.853905,-73.89864,"(40.853905, -73.89864)",TIEBOUT AVENUE,EAST 181 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479210,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,17:05,BROOKLYN,11212,40.660454,-73.9123,"(40.660454, -73.9123)",RIVERDALE AVENUE,AMBOY STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4478757,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/15/2021,14:50,QUEENS,11385,40.701965,-73.8805,"(40.701965, -73.8805)",MYRTLE AVENUE,COOPER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479514,Sedan,,,, +11/19/2021,21:00,BROOKLYN,11214,40.598454,-74.002686,"(40.598454, -74.002686)",,,2044 21 DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479373,Taxi,,,, +10/26/2021,17:30,QUEENS,11385,40.706432,-73.908295,"(40.706432, -73.908295)",,,583 WOODWARD AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479545,Sedan,Sedan,,, +11/17/2021,16:57,MANHATTAN,10016,40.748245,-73.976295,"(40.748245, -73.976295)",3 AVENUE,EAST 38 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478661,LIMO,Garbage or Refuse,,, +11/17/2021,14:55,BRONX,10467,40.85964,-73.86277,"(40.85964, -73.86277)",ASTOR AVENUE,MATTHEWS AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4479109,Motorcycle,Sedan,,, +11/18/2021,23:37,QUEENS,11420,40.667706,-73.815765,"(40.667706, -73.815765)",,,124-07 149 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,Unspecified,,,4478895,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/16/2021,1:30,BRONX,10467,40.859562,-73.86743,"(40.859562, -73.86743)",BOSTON ROAD,ASTOR AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4479841,Taxi,,,, +11/18/2021,20:05,BROOKLYN,11209,40.619003,-74.0299,"(40.619003, -74.0299)",,,9105 4 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478791,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,15:30,BROOKLYN,11206,40.702343,-73.94761,"(40.702343, -73.94761)",,,307 WALLABOUT STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478511,Bus,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,18:00,,,,,,OCEAN PARKWAY,SHORE PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479064,Sedan,,,, +11/18/2021,20:10,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4478783,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,0:45,BROOKLYN,11226,40.6465,-73.95202,"(40.6465, -73.95202)",,,961 ROGERS AVENUE,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478666,Sedan,Sedan,,, +11/17/2021,0:20,,,40.75971,-73.83884,"(40.75971, -73.83884)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478129,Sedan,Sedan,,, +11/17/2021,17:15,BROOKLYN,11231,40.679943,-73.98956,"(40.679943, -73.98956)",UNION STREET,BOND STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478743,Sedan,,,, +11/09/2021,15:00,,,40.6772,-73.94147,"(40.6772, -73.94147)",PACIFIC STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479494,Sedan,Box Truck,,, +11/19/2021,10:55,MANHATTAN,10032,40.84124,-73.93967,"(40.84124, -73.93967)",,,3985 BROADWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479006,Sedan,Sedan,,, +11/08/2021,18:50,,,40.549477,-74.21966,"(40.549477, -74.21966)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478939,Sedan,,,, +11/18/2021,8:59,,,,,,MANOR ROAD,BRIELLE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478932,4 dr sedan,,,, +11/18/2021,17:45,QUEENS,11355,40.75652,-73.821434,"(40.75652, -73.821434)",ASH AVENUE,BOWNE STREET,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4478707,E-Bike,,,, +11/17/2021,17:58,QUEENS,11413,40.677883,-73.74561,"(40.677883, -73.74561)",MERRICK BOULEVARD,224 STREET,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4478436,Sedan,Sedan,,, +11/19/2021,21:25,QUEENS,11373,40.736797,-73.88145,"(40.736797, -73.88145)",,,51-20 SIMONSON STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479154,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,19:00,,,40.6952,-73.92844,"(40.6952, -73.92844)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479644,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,0:00,,,,,,Park Hill Ln,Osgood Avenue,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Passing Too Closely,,,,4478569,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,11:00,,,,,,SHORE ROAD,PELHAM BRIDGE ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478330,Station Wagon/Sport Utility Vehicle,TRUCK,,, +11/13/2021,17:20,,,40.827812,-73.925934,"(40.827812, -73.925934)",RIVER AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Failure to Yield Right-of-Way,,,,4479159,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,8:08,BROOKLYN,11208,40.66999,-73.85912,"(40.66999, -73.85912)",LINDEN BOULEVARD,EMERALD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478974,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,23:55,QUEENS,11432,40.709846,-73.806335,"(40.709846, -73.806335)",85 DRIVE,152 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479273,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,3:00,MANHATTAN,10039,40.832413,-73.93544,"(40.832413, -73.93544)",,,159-04 HARLEM RIVER DRIVE,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4478991,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,19:40,MANHATTAN,10038,40.7093,-74.00196,"(40.7093, -74.00196)",,,333 PEARL STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4479181,Motorcycle,,,, +11/18/2021,18:30,,,40.8448,-73.92264,"(40.8448, -73.92264)",UNIVERSITY AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478927,Sedan,,,, +11/15/2021,23:20,BRONX,10471,40.90983,-73.90329,"(40.90983, -73.90329)",,,6050 RIVERDALE AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4479090,Sedan,Sedan,,, +11/17/2021,8:32,,,40.78843,-73.94907,"(40.78843, -73.94907)",EAST 100 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478561,Sedan,,,, +11/19/2021,6:30,,,40.81294,-73.951775,"(40.81294, -73.951775)",WEST 128 STREET,SAINT NICHOLAS TERRACE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479032,Taxi,,,, +11/15/2021,10:01,QUEENS,11370,40.77245,-73.893196,"(40.77245, -73.893196)",,,19-62 77 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479721,Sedan,Sedan,,, +11/19/2021,8:30,MANHATTAN,10014,40.734657,-74.00475,"(40.734657, -74.00475)",BLEECKER STREET,CHARLES STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479402,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,10:50,BROOKLYN,11225,40.667778,-73.9535,"(40.667778, -73.9535)",,,242 ROGERS AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479190,E-Scooter,,,, +11/19/2021,22:12,QUEENS,11434,40.65965,-73.773834,"(40.65965, -73.773834)",FARMERS BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479164,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/19/2021,10:50,QUEENS,11365,40.737682,-73.77525,"(40.737682, -73.77525)",198 STREET,69 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479049,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,19:30,QUEENS,11375,40.71512,-73.83224,"(40.71512, -73.83224)",QUEENS BOULEVARD,78 AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4479661,Sedan,Bus,,, +11/18/2021,14:28,BRONX,10454,40.81194,-73.92556,"(40.81194, -73.92556)",3 AVENUE,EAST 140 STREET,,1,0,1,0,0,0,0,0,,,,,,4478875,E-Bike,,,, +11/18/2021,18:00,BROOKLYN,11234,40.635185,-73.92862,"(40.635185, -73.92862)",UTICA AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478726,Sedan,,,, +11/18/2021,18:30,BROOKLYN,11236,40.6338,-73.8897,"(40.6338, -73.8897)",ROCKAWAY PARKWAY,SEAVIEW AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479149,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,10:40,,,,,,FDR DRIVE SOUTHBOUND,EAST 125 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,,,,,4478638,Sedan,,,, +11/15/2021,18:36,,,40.682537,-73.95002,"(40.682537, -73.95002)",NOSTRAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4478988,Sedan,Sedan,,, +11/17/2021,16:26,BROOKLYN,11204,40.619,-73.9903,"(40.619, -73.9903)",,,6509 18 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478477,Station Wagon/Sport Utility Vehicle,Bus,,, +11/18/2021,9:53,BROOKLYN,11211,40.713345,-73.96017,"(40.713345, -73.96017)",DRIGGS AVENUE,SOUTH 1 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,Other Vehicular,,,4479438,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/11/2021,16:05,MANHATTAN,10012,40.724136,-73.992615,"(40.724136, -73.992615)",EAST HOUSTON STREET,BOWERY,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479332,Sedan,Bike,,, +11/19/2021,16:31,,,40.761436,-73.76176,"(40.761436, -73.76176)",NORTHERN BOULEVARD,220 STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inattention/Distraction,,,,4479118,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,13:35,BRONX,10463,40.87858,-73.898094,"(40.87858, -73.898094)",,,3143 SEDGWICK AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479017,Sedan,,,, +11/18/2021,17:45,,,40.838768,-73.92815,"(40.838768, -73.92815)",WEST 167 STREET,,,1,0,1,0,0,0,0,0,Passing Too Closely,,,,,4478840,Sedan,,,, +11/17/2021,17:30,MANHATTAN,10019,40.761036,-73.98702,"(40.761036, -73.98702)",8 AVENUE,WEST 48 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478492,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,15:40,QUEENS,11106,40.76122,-73.93056,"(40.76122, -73.93056)",34 AVENUE,CRESCENT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478854,Taxi,Pick-up Truck,,, +11/18/2021,12:00,MANHATTAN,10009,40.72493,-73.98133,"(40.72493, -73.98133)",,,106 AVENUE B,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479338,Bus,Sedan,,, +11/16/2021,18:29,,,40.89711,-73.88008,"(40.89711, -73.88008)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479054,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,12:50,BRONX,10455,40.820133,-73.91307,"(40.820133, -73.91307)",3 AVENUE,EAST 156 STREET,,1,0,1,0,0,0,0,0,Turning Improperly,,,,,4479784,,,,, +11/18/2021,2:15,MANHATTAN,10016,40.741905,-73.98262,"(40.741905, -73.98262)",,,145 EAST 27 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478959,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,11:30,MANHATTAN,10027,40.819374,-73.95933,"(40.819374, -73.95933)",WEST 132 STREET,12 AVENUE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4479453,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/17/2021,19:09,BROOKLYN,11233,40.676937,-73.92183,"(40.676937, -73.92183)",ATLANTIC AVENUE,RALPH AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479474,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,8:00,,,40.7014,-73.91858,"(40.7014, -73.91858)",HIMROD STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478611,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,10:00,QUEENS,11359,,,,PRATT AVENUE,STORY AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478524,Pick-up Truck,Pick-up Truck,,, +11/16/2021,23:05,BRONX,10461,40.85551,-73.830574,"(40.85551, -73.830574)",PELHAM PARKWAY SOUTH,SAINT PAUL AVENUE,,3,0,0,0,0,0,3,0,Unspecified,,,,,4479366,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,18:47,,,40.70636,-73.792534,"(40.70636, -73.792534)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478396,Sedan,Box Truck,,, +11/19/2021,11:35,,,40.80174,-73.96477,"(40.80174, -73.96477)",WEST 108 STREET,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4479026,E-Bike,E-Bike,,, +11/19/2021,16:00,,,40.705746,-73.926636,"(40.705746, -73.926636)",VARICK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479249,Sedan,,,, +11/16/2021,13:10,BRONX,10463,40.877354,-73.910614,"(40.877354, -73.910614)",ADRIAN AVENUE,WEST 227 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479058,Sedan,,,, +11/19/2021,7:45,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479081,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,19:53,BROOKLYN,11238,40.671535,-73.957664,"(40.671535, -73.957664)",FRANKLIN AVENUE,LINCOLN PLACE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479498,E-Bike,Sedan,,, +11/15/2021,12:47,,,40.8882,-73.90761,"(40.8882, -73.90761)",RIVERDALE AVENUE,WEST 238 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479204,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,20:50,BROOKLYN,11217,40.68532,-73.98071,"(40.68532, -73.98071)",3 AVENUE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4478415,Sedan,Sedan,Sedan,, +11/19/2021,19:25,QUEENS,11413,40.665634,-73.75817,"(40.665634, -73.75817)",SOUTH CONDUIT AVENUE,SPRINGFIELD BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479141,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,19:04,QUEENS,11420,40.681522,-73.82473,"(40.681522, -73.82473)",116 STREET,109 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,Unspecified,4478779,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/17/2021,8:00,BROOKLYN,11212,40.6733,-73.90392,"(40.6733, -73.90392)",LIBERTY AVENUE,JUNIUS STREET,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4478246,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,13:20,QUEENS,11379,40.712887,-73.877716,"(40.712887, -73.877716)",METROPOLITAN AVENUE,75 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479518,Pick-up Truck,Sedan,,, +11/19/2021,17:38,,,40.692417,-73.902794,"(40.692417, -73.902794)",COOPER AVENUE,,,0,1,0,0,0,0,0,1,Unsafe Speed,Unspecified,Unspecified,,,4479230,Motorcycle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/17/2021,9:05,,,,,,HUTCHINSON RIVER PARKWAY,,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4478762,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,7:13,,,,,,THROGS NECK BRIDGE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478530,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,14:00,,,40.743244,-73.73154,"(40.743244, -73.73154)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479236,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,4:34,BRONX,10466,40.88527,-73.85511,"(40.88527, -73.85511)",BRONXWOOD AVENUE,EAST 224 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unsafe Speed,,,,4479553,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,14:48,MANHATTAN,10032,40.842896,-73.94221,"(40.842896, -73.94221)",,,709 WEST 169 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4478915,Sedan,,,, +11/16/2021,20:20,,,40.87932,-73.869804,"(40.87932, -73.869804)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4479797,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/17/2021,7:47,,,40.796795,-73.94718,"(40.796795, -73.94718)",MADISON AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478459,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,0:40,,,40.696198,-73.98877,"(40.696198, -73.98877)",TILLARY STREET,,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4478816,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,13:40,BROOKLYN,11215,40.67306,-73.97643,"(40.67306, -73.97643)",,,127 7 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4479758,Sedan,,,, +11/16/2021,18:25,,,40.691193,-73.99777,"(40.691193, -73.99777)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4479308,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/17/2021,9:10,MANHATTAN,10032,40.844746,-73.94243,"(40.844746, -73.94243)",,,104 HAVEN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478910,Sedan,,,, +11/18/2021,18:15,QUEENS,11427,40.72364,-73.755775,"(40.72364, -73.755775)",HILLSIDE AVENUE,211 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478738,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,21:45,,,40.768642,-73.949036,"(40.768642, -73.949036)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Pavement Slippery,Pavement Slippery,,,,4478795,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/20/2021,15:11,BRONX,10451,40.826435,-73.91499,"(40.826435, -73.91499)",,,355 EAST 163 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479861,Sedan,Sedan,,, +11/17/2021,6:13,,,40.6745,-73.9537,"(40.6745, -73.9537)",BEDFORD AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478399,Sedan,,,, +11/17/2021,17:40,BROOKLYN,11215,40.65659,-73.98403,"(40.65659, -73.98403)",20 STREET,PROSPECT PARK WEST,,1,0,0,0,0,0,0,0,Unspecified,,,,,4478419,E-Bike,,,, +11/18/2021,9:39,,,40.859623,-73.88747,"(40.859623, -73.88747)",BATHGATE AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478618,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,22:55,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479178,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,4:55,QUEENS,11105,40.769836,-73.90977,"(40.769836, -73.90977)",,,23-56 STEINWAY STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4478586,Sedan,Sedan,,, +11/15/2021,19:48,,,40.631157,-74.14692,"(40.631157, -74.14692)",MORNINGSTAR ROAD,WALKER STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479395,Sedan,,,, +11/18/2021,7:20,QUEENS,11433,40.70068,-73.79233,"(40.70068, -73.79233)",,,164-26 SOUTH ROAD,0,0,0,0,0,0,0,0,Turning Improperly,Driver Inexperience,,,,4478595,Sedan,Sedan,,, +11/18/2021,21:44,QUEENS,11422,40.660328,-73.73935,"(40.660328, -73.73935)",144 AVENUE,243 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478821,Sedan,Sedan,,, +11/14/2021,23:40,,,,,,VERRAZANO BRIDGE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4478942,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,6:25,,,40.86315,-73.90907,"(40.86315, -73.90907)",WEST FORDHAM ROAD,SEDGWICK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478240,Sedan,,,, +11/12/2021,15:28,,,40.874638,-73.909744,"(40.874638, -73.909744)",BROADWAY,WEST 225 STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479086,Sedan,Sedan,,, +11/16/2021,19:00,BRONX,10454,40.808453,-73.9154,"(40.808453, -73.9154)",CRIMMINS AVENUE,EAST 141 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478870,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,2:00,BROOKLYN,11206,40.700554,-73.93422,"(40.700554, -73.93422)",,,54 NOLL STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479262,Sedan,,,, +11/18/2021,16:22,BROOKLYN,11236,40.64054,-73.901115,"(40.64054, -73.901115)",,,9403 AVENUE J,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479003,Station Wagon/Sport Utility Vehicle,UNK,,, +11/17/2021,13:00,,,40.702614,-73.96058,"(40.702614, -73.96058)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479479,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,5:51,QUEENS,11368,40.757183,-73.85503,"(40.757183, -73.85503)",114 STREET,34 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478964,Sedan,,,, +11/17/2021,9:40,,,40.6742,-73.999985,"(40.6742, -73.999985)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478497,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/17/2021,7:53,BRONX,10459,40.83103,-73.89691,"(40.83103, -73.89691)",PROSPECT AVENUE,RITTER PLACE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4478833,Moped,Garbage or Refuse,,, +11/18/2021,8:50,BROOKLYN,11208,40.674076,-73.87065,"(40.674076, -73.87065)",,,462 PINE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478971,TRUCK,Pick-up Truck,,, +11/01/2021,19:29,BRONX,10463,40.87314,-73.90572,"(40.87314, -73.90572)",WEST KINGSBRIDGE ROAD,BAILEY AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479077,Sedan,,,, +11/18/2021,21:00,QUEENS,11355,40.746536,-73.83119,"(40.746536, -73.83119)",57 ROAD,134 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479742,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,7:00,,,40.713974,-73.953094,"(40.713974, -73.953094)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,,,,4479426,Station Wagon/Sport Utility Vehicle,Bus,,, +11/19/2021,7:08,BROOKLYN,11232,40.659912,-73.998604,"(40.659912, -73.998604)",26 STREET,4 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478858,Sedan,E-Bike,,, +11/19/2021,8:23,,,40.676193,-74.001335,"(40.676193, -74.001335)",HAMILTON AVENUE,WEST 9 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4479144,van,Sedan,,, +11/17/2021,23:24,QUEENS,11432,0,0,"(0.0, 0.0)",,,179-31 TUDOR ROAD,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4479045,Sedan,,,, +11/18/2021,19:20,BROOKLYN,11222,40.734135,-73.9583,"(40.734135, -73.9583)",FRANKLIN STREET,FREEMAN STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,Unspecified,,,4479600,Sedan,Sedan,E-Bike,, +11/17/2021,0:00,,,40.710316,-73.77173,"(40.710316, -73.77173)",187 PLACE,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478311,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,17:15,BROOKLYN,11229,40.598156,-73.951195,"(40.598156, -73.951195)",,,2600 OCEAN AVENUE,1,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4479325,E-Scooter,Sedan,,, +11/18/2021,1:00,QUEENS,11412,40.700916,-73.76661,"(40.700916, -73.76661)",,,188-04 JORDAN AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478827,Sedan,,,, +11/19/2021,12:00,QUEENS,11372,40.756016,-73.87787,"(40.756016, -73.87787)",,,33-05 90 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479225,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,0:50,QUEENS,11412,40.70089,-73.75708,"(40.70089, -73.75708)",198 STREET,113 AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479157,Sedan,,,, +11/17/2021,6:10,,,40.756134,-73.74047,"(40.756134, -73.74047)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Passing or Lane Usage Improper,,,,4479114,Sedan,,,, +11/18/2021,0:10,BROOKLYN,11207,0,0,"(0.0, 0.0)",LINDEN BOULEVARD,WARWICK STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4478544,Sedan,Sedan,,, +11/16/2021,13:45,,,40.84247,-73.85335,"(40.84247, -73.85335)",EAST TREMONT AVENUE,BRONXDALE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479101,Sedan,Van,,, +11/12/2021,8:50,QUEENS,11385,40.704605,-73.868484,"(40.704605, -73.868484)",78 ROAD,80 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479508,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,9:00,,,40.682095,-73.80172,"(40.682095, -73.80172)",115 AVENUE,,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4478212,Sedan,Sedan,,, +11/19/2021,19:30,,,40.883343,-73.81614,"(40.883343, -73.81614)",HUTCHINSON RIVER PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479285,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,12:20,,,,,,,,72 WEST DRIVE,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4478427,Bike,,,, +11/18/2021,0:00,QUEENS,11101,40.744667,-73.931694,"(40.744667, -73.931694)",QUEENS BOULEVARD,33 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478582,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,7:30,BROOKLYN,11212,40.66578,-73.91942,"(40.66578, -73.91942)",HOWARD AVENUE,SUTTER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479823,Sedan,Sedan,,, +11/06/2021,9:30,STATEN ISLAND,10307,40.5119,-74.24963,"(40.5119, -74.24963)",,,116 MAIN STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478887,Tanker,Sedan,,, +02/08/2022,17:50,BROOKLYN,11215,40.673485,-73.97296,"(40.673485, -73.97296)",8 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501214,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,5:00,QUEENS,11433,40.703857,-73.787025,"(40.703857, -73.787025)",,,171-24 LIBERTY AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478947,Sedan,,,, +11/16/2021,23:38,,,40.57997,-73.97466,"(40.57997, -73.97466)",WEST 6 STREET,,,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4479072,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,0:30,QUEENS,11436,40.676033,-73.80103,"(40.676033, -73.80103)",140 STREET,120 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479096,Pick-up Truck,Sedan,,, +11/19/2021,18:18,QUEENS,11101,40.753468,-73.91355,"(40.753468, -73.91355)",NORTHERN BOULEVARD,49 STREET,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4479113,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/18/2021,5:30,,,40.67812,-74.00316,"(40.67812, -74.00316)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478521,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:02,BROOKLYN,11249,40.719913,-73.95551,"(40.719913, -73.95551)",,,112 BEDFORD AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4478998,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,12:40,BROOKLYN,11203,40.654472,-73.945145,"(40.654472, -73.945145)",LENOX ROAD,EAST 35 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4478366,Sedan,Motorcycle,,, +11/19/2021,5:05,QUEENS,11385,40.70559,-73.86599,"(40.70559, -73.86599)",78 AVENUE,83 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4479526,Sedan,Taxi,Sedan,Sedan, +11/19/2021,14:27,QUEENS,11373,40.741676,-73.880775,"(40.741676, -73.880775)",,,82-73 BROADWAY,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479503,Bus,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,13:44,BROOKLYN,11208,40.661854,-73.86938,"(40.661854, -73.86938)",LOGAN STREET,COZINE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479856,Station Wagon/Sport Utility Vehicle,,,, +02/05/2022,18:10,STATEN ISLAND,10308,40.560776,-74.16273,"(40.560776, -74.16273)",ARTHUR KILL ROAD,ARMSTRONG AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501625,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,16:05,BROOKLYN,11210,40.618862,-73.9454,"(40.618862, -73.9454)",,,2686 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478717,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,5:30,,,40.738842,-73.81404,"(40.738842, -73.81404)",LONG ISLAND EXPRESSWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4478966,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,15:25,BRONX,10459,40.817795,-73.89319,"(40.817795, -73.89319)",BRUCKNER BOULEVARD,TIFFANY STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478678,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,18:58,,,40.683357,-73.79726,"(40.683357, -73.79726)",INWOOD STREET,,,2,0,0,0,0,0,2,0,Brakes Defective,Unspecified,,,,4479128,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,19:00,MANHATTAN,10016,40.742058,-73.98079,"(40.742058, -73.98079)",,,395 3 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478951,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,17:53,,,40.791904,-73.94151,"(40.791904, -73.94151)",2 AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4478463,Sedan,Sedan,,, +11/19/2021,0:55,BRONX,10468,40.868694,-73.90237,"(40.868694, -73.90237)",WEST KINGSBRIDGE ROAD,WEBB AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478863,,,,, +11/16/2021,0:00,BROOKLYN,11224,40.573326,-74.002556,"(40.573326, -74.002556)",SURF AVENUE,WEST 37 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479057,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,23:14,,,40.666462,-73.80445,"(40.666462, -73.80445)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479680,Sedan,,,, +11/18/2021,14:50,QUEENS,11367,40.720898,-73.823456,"(40.720898, -73.823456)",138 STREET,77 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479040,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,22:00,MANHATTAN,10029,0,0,"(0.0, 0.0)",FDR DRIVE,EAST 100 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478445,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/15/2021,0:30,BROOKLYN,11207,40.665405,-73.8913,"(40.665405, -73.8913)",,,544 WYONA STREET,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478983,Sedan,,,, +11/18/2021,6:16,STATEN ISLAND,10305,40.592186,-74.07301,"(40.592186, -74.07301)",ANDREWS STREET,OLYMPIA BOULEVARD,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478624,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,7:40,QUEENS,11692,40.592907,-73.79516,"(40.592907, -73.79516)",BEACH CHANNEL DRIVE,BEACH 66 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479176,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,15:30,BRONX,10460,40.84271,-73.885666,"(40.84271, -73.885666)",SOUTHERN BOULEVARD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479814,Sedan,,,, +11/19/2021,14:45,,,40.79653,-73.97597,"(40.79653, -73.97597)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479202,Sedan,Sedan,,, +11/15/2021,18:24,,,40.6831,-73.93209,"(40.6831, -73.93209)",STUYVESANT AVENUE,,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4479584,Sedan,,,, +11/16/2021,14:32,QUEENS,11101,40.74733,-73.95505,"(40.74733, -73.95505)",5 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4479025,Tractor Truck Gasoline,Sedan,,, +11/19/2021,13:10,,,40.710316,-73.77173,"(40.710316, -73.77173)",JAMAICA AVENUE,187 PLACE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4479082,Taxi,E-Bike,,, +11/19/2021,11:00,BROOKLYN,11222,40.72806,-73.947266,"(40.72806, -73.947266)",,,86 JEWEL STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478996,Sedan,,,, +11/19/2021,19:03,BROOKLYN,11233,40.670116,-73.92248,"(40.670116, -73.92248)",RALPH AVENUE,SAINT JOHNS PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479344,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/10/2021,10:00,BRONX,10469,40.878716,-73.842354,"(40.878716, -73.842354)",,,1324 EAST 222 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479558,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,8:50,,,40.593525,-73.99628,"(40.593525, -73.99628)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478654,Sedan,Bus,,, +11/17/2021,22:40,QUEENS,11368,40.74418,-73.851906,"(40.74418, -73.851906)",111 STREET,52 AVENUE,,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4478468,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,16:16,MANHATTAN,10027,40.808083,-73.94621,"(40.808083, -73.94621)",,,83 WEST 125 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478868,Sedan,Box Truck,,, +11/19/2021,8:40,,,40.661137,-73.99006,"(40.661137, -73.99006)",6 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479485,Sedan,,,, +11/12/2021,15:18,BRONX,10461,40.842087,-73.83391,"(40.842087, -73.83391)",,,2878 ZULETTE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479361,Station Wagon/Sport Utility Vehicle,,,, +11/14/2021,14:38,BRONX,10471,40.911587,-73.902824,"(40.911587, -73.902824)",,,6200 RIVERDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4479089,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/15/2021,14:30,,,40.71937,-73.7876,"(40.71937, -73.7876)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Driver Inattention/Distraction,,,,4479219,Sedan,Sedan,,, +11/19/2021,17:15,BROOKLYN,11230,40.62417,-73.97048,"(40.62417, -73.97048)",OCEAN PARKWAY,AVENUE J,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479772,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,17:30,,,,,,GRAND STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479439,Sedan,DELV,,, +11/19/2021,10:10,BROOKLYN,11218,40.637405,-73.982475,"(40.637405, -73.982475)",15 AVENUE,40 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479775,,,,, +11/12/2021,4:07,,,40.875122,-73.905174,"(40.875122, -73.905174)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479018,Sedan,,,, +11/19/2021,17:43,BRONX,10469,40.875484,-73.8507,"(40.875484, -73.8507)",BOSTON ROAD,WILSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unsafe Lane Changing,,,,4479567,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,19:00,,,40.716034,-73.80416,"(40.716034, -73.80416)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4479331,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/17/2021,8:15,BRONX,10466,40.893677,-73.84016,"(40.893677, -73.84016)",EDENWALD AVENUE,HILL AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478359,Sedan,Sedan,,, +11/18/2021,23:11,BROOKLYN,11225,40.670467,-73.96763,"(40.670467, -73.96763)",,,420 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478789,Sedan,,,, +11/17/2021,13:49,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",CLINTON STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478286,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,21:45,QUEENS,11368,40.748158,-73.85406,"(40.748158, -73.85406)",111 STREET,46 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479726,Sedan,Sedan,,, +11/18/2021,10:00,,,40.74989,-73.77436,"(40.74989, -73.77436)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Glare,,,,4478732,Pick-up Truck,Tractor Truck Diesel,,, +11/17/2021,8:20,MANHATTAN,10065,40.76468,-73.9701,"(40.76468, -73.9701)",,,35 EAST 61 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4478549,Station Wagon/Sport Utility Vehicle,Bike,,, +11/19/2021,16:26,BROOKLYN,11210,40.619606,-73.945526,"(40.619606, -73.945526)",AVENUE M,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479153,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,19:39,QUEENS,11368,40.73771,-73.85974,"(40.73771, -73.85974)",99 STREET,58 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478850,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/15/2021,16:35,MANHATTAN,10001,40.752872,-74.0029,"(40.752872, -74.0029)",,,545 WEST 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478891,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,7:25,BROOKLYN,11215,40.674465,-73.97547,"(40.674465, -73.97547)",7 AVENUE,UNION STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478600,Bus,Sedan,,, +11/17/2021,21:10,,,,,,HUTCHINSON RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478406,Box Truck,,,, +11/18/2021,5:42,BROOKLYN,11222,40.726505,-73.94082,"(40.726505, -73.94082)",,,100 SUTTON STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478479,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,15:18,QUEENS,11411,40.694244,-73.73727,"(40.694244, -73.73727)",,,223-21 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4479133,Station Wagon/Sport Utility Vehicle,,,, +11/10/2021,14:45,STATEN ISLAND,10312,40.525528,-74.174805,"(40.525528, -74.174805)",,,415 PHILIP AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478902,Sedan,,,, +11/17/2021,15:35,,,40.6078,-74.0814,"(40.6078, -74.0814)",STEUBEN STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4478574,Sedan,Bus,,, +11/17/2021,17:11,,,40.680542,-73.99466,"(40.680542, -73.99466)",SMITH STREET,CARROLL STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478516,Sedan,Bike,,, +11/19/2021,16:34,,,40.696213,-73.97528,"(40.696213, -73.97528)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479289,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/19/2021,0:15,BROOKLYN,11205,40.691643,-73.96754,"(40.691643, -73.96754)",WILLOUGHBY AVENUE,WAVERLY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,,,,4478919,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,22:48,BRONX,10472,40.834522,-73.87183,"(40.834522, -73.87183)",EAST 174 STREET,CROES AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479388,Station Wagon/Sport Utility Vehicle,,,, +11/11/2021,17:00,BRONX,10472,40.833588,-73.86966,"(40.833588, -73.86966)",,,1344 ROSEDALE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479379,Sedan,Sedan,,, +11/17/2021,12:00,,,40.684753,-73.86077,"(40.684753, -73.86077)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4478266,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +11/17/2021,17:38,,,40.844116,-73.89857,"(40.844116, -73.89857)",BATHGATE AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479863,Station Wagon/Sport Utility Vehicle,Bike,,, +11/17/2021,6:16,MANHATTAN,10009,40.720684,-73.98029,"(40.720684, -73.98029)",,,280 EAST 2 STREET,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478185,Sedan,Bike,,, +11/17/2021,8:40,QUEENS,11429,40.711628,-73.729385,"(40.711628, -73.729385)",HEMPSTEAD AVENUE,225 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478431,Sedan,EMBULANCE,,, +11/12/2021,13:12,BRONX,10463,40.879993,-73.91026,"(40.879993, -73.91026)",,,317 WEST 230 STREET,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4479069,Sedan,Bike,,, +11/18/2021,21:44,,,40.67308,-73.91124,"(40.67308, -73.91124)",EASTERN PARKWAY,,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4478773,E-Bike,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,14:45,MANHATTAN,10024,40.792023,-73.97517,"(40.792023, -73.97517)",,,640 WEST END AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478488,Motorcycle,,,, +11/17/2021,20:30,BROOKLYN,11217,40.687424,-73.981766,"(40.687424, -73.981766)",,,46 NEVINS STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4478409,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,11:17,BROOKLYN,11221,40.69535,-73.91632,"(40.69535, -73.91632)",GATES AVENUE,WILSON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479615,Station Wagon/Sport Utility Vehicle,FIRETRUCK,,, +11/19/2021,6:36,MANHATTAN,10024,40.78921,-73.97459,"(40.78921, -73.97459)",,,211 WEST 88 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478879,Sedan,Sedan,,, +11/18/2021,11:15,,,40.632065,-73.91861,"(40.632065, -73.91861)",FLATLANDS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478682,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,6:55,QUEENS,11355,40.749172,-73.82966,"(40.749172, -73.82966)",ELDER AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478712,Sedan,Pick-up Truck,,, +11/08/2021,1:41,STATEN ISLAND,10309,40.509167,-74.23056,"(40.509167, -74.23056)",PAGE AVENUE,BARTOW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478934,Sedan,,,, +11/17/2021,16:44,,,40.570835,-74.16983,"(40.570835, -74.16983)",FOREST HILL ROAD,RICHMOND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479011,Sedan,Sedan,Sedan,, +11/18/2021,7:44,BROOKLYN,11207,40.67826,-73.897934,"(40.67826, -73.897934)",BUSHWICK AVENUE,MARGINAL ST WEST,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478635,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,13:00,BROOKLYN,11201,40.701557,-73.9877,"(40.701557, -73.9877)",PEARL STREET,YORK STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479170,Sedan,,,, +11/19/2021,23:00,QUEENS,11420,40.666855,-73.80425,"(40.666855, -73.80425)",NORTH CONDUIT AVENUE,135 STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4479667,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,23:00,BROOKLYN,11207,40.657036,-73.89383,"(40.657036, -73.89383)",DE WITT AVENUE,MALTA STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4478979,Sedan,,,, +11/18/2021,12:35,,,40.59455,-73.997574,"(40.59455, -73.997574)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4479351,Sedan,Sedan,Sedan,, +11/18/2021,19:59,QUEENS,11104,40.74169,-73.923744,"(40.74169, -73.923744)",47 AVENUE,41 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478750,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/19/2021,1:00,,,40.70403,-73.81711,"(40.70403, -73.81711)",VANWYCK EXPRESSWAY,HILLSIDE AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478884,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,11:01,MANHATTAN,10034,40.86674,-73.928734,"(40.86674, -73.928734)",PAYSON AVENUE,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479576,Taxi,Sedan,,, +11/15/2021,11:00,MANHATTAN,10001,40.75578,-74.00199,"(40.75578, -74.00199)",11 AVENUE,WEST 34 STREET,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Following Too Closely,,,,4479469,Bus,Box Truck,,, +11/17/2021,11:25,MANHATTAN,10002,40.714127,-73.9805,"(40.714127, -73.9805)",,,551 GRAND STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479197,Sedan,Box Truck,,, +11/18/2021,19:05,QUEENS,11101,40.75199,-73.931274,"(40.75199, -73.931274)",33 STREET,NORTHERN BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478845,Taxi,Moped,,, +11/19/2021,1:00,,,40.72616,-73.76698,"(40.72616, -73.76698)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unsafe Lane Changing,,,,4479050,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/09/2021,18:50,QUEENS,11366,40.72579,-73.79175,"(40.72579, -73.79175)",UNION TURNPIKE,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479037,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,15:57,QUEENS,11411,40.68988,-73.72872,"(40.68988, -73.72872)",234 STREET,118 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4478438,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,18:38,BRONX,10459,40.81768,-73.896164,"(40.81768, -73.896164)",,,843 FOX STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479255,Carry All,Station Wagon/Sport Utility Vehicle,Sedan,, +11/17/2021,11:42,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",BOWERY,DELANCEY STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478646,Sedan,Tractor Truck Diesel,,, +11/19/2021,0:25,BROOKLYN,11226,40.650806,-73.94958,"(40.650806, -73.94958)",NOSTRAND AVENUE,CHURCH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479410,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,21:50,QUEENS,11377,40.748722,-73.89881,"(40.748722, -73.89881)",64 STREET,37 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478767,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,0:01,,,40.789116,-73.82259,"(40.789116, -73.82259)",WHITESTONE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478531,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,15:00,QUEENS,11420,40.674175,-73.81975,"(40.674175, -73.81975)",LEFFERTS BOULEVARD,SUTTER AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478784,Station Wagon/Sport Utility Vehicle,Delivery,,, +11/19/2021,8:00,BROOKLYN,11210,40.628677,-73.95186,"(40.628677, -73.95186)",,,2511 AVENUE I,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479121,Dump,Sedan,,, +11/14/2021,19:45,,,40.723835,-73.97357,"(40.723835, -73.97357)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479336,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,17:30,,,40.705425,-73.78258,"(40.705425, -73.78258)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478948,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,11:30,BROOKLYN,11206,40.70394,-73.95136,"(40.70394, -73.95136)",,,95 HARRISON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478801,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,11:30,STATEN ISLAND,10309,40.52474,-74.233444,"(40.52474, -74.233444)",BOSCOMBE AVENUE,MADSEN AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478933,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/13/2021,15:05,STATEN ISLAND,10304,40.623764,-74.08227,"(40.623764, -74.08227)",,,203 BROAD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479470,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/17/2021,17:45,MANHATTAN,10033,40.84788,-73.940506,"(40.84788, -73.940506)",,,4 SOUTH PINEHURST AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478911,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,14:06,QUEENS,11421,40.691536,-73.85419,"(40.691536, -73.85419)",90 STREET,88 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478340,Sedan,,,, +11/11/2021,18:26,,,40.665745,-73.993744,"(40.665745, -73.993744)",PROSPECT EXPRESSWAY EAST,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4479783,Sedan,,,, +11/14/2021,17:34,BROOKLYN,11212,40.660736,-73.92504,"(40.660736, -73.92504)",EAST 93 STREET,WINTHROP STREET,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479741,,,,, +11/17/2021,14:02,BROOKLYN,11233,40.671898,-73.92231,"(40.671898, -73.92231)",PARK PLACE,RALPH AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Traffic Control Disregarded,Other Vehicular,Other Vehicular,Other Vehicular,4478570,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/17/2021,13:05,STATEN ISLAND,10301,40.631073,-74.10152,"(40.631073, -74.10152)",OAKWOOD AVENUE,FOREST AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479472,Sedan,,,, +11/18/2021,14:28,QUEENS,11412,40.701588,-73.74865,"(40.701588, -73.74865)",FRANCIS LEWIS BOULEVARD,MURDOCK AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4478737,Sedan,,,, +11/17/2021,12:55,QUEENS,11354,40.76968,-73.83471,"(40.76968, -73.83471)",,,30-25 STRATTON STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4478525,Station Wagon/Sport Utility Vehicle,back ho,,, +11/17/2021,14:53,QUEENS,11433,40.70274,-73.79842,"(40.70274, -73.79842)",160 STREET,ARCHER AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478300,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,13:43,QUEENS,11365,40.748425,-73.78322,"(40.748425, -73.78322)",51 AVENUE,196 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478400,Sedan,,,, +11/19/2021,7:35,MANHATTAN,10001,40.750988,-73.99063,"(40.750988, -73.99063)",7 AVENUE,WEST 34 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479447,Pick-up Truck,,,, +11/18/2021,15:30,MANHATTAN,10038,40.708237,-74.0047,"(40.708237, -74.0047)",,,50 FULTON STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478906,Sedan,Box Truck,,, +11/11/2021,17:15,BROOKLYN,11213,40.67786,-73.93863,"(40.67786, -73.93863)",ATLANTIC AVENUE,ALBANY AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4479497,Sedan,,,, +11/18/2021,1:19,,,40.74906,-73.89082,"(40.74906, -73.89082)",37 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4478605,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,7:40,QUEENS,11423,40.71928,-73.76362,"(40.71928, -73.76362)",HILLSIDE AVENUE,199 STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478596,Sedan,Sedan,,, +11/17/2021,6:38,,,40.681335,-74.00297,"(40.681335, -74.00297)",HICKS STREET,WOODHULL STREET,,1,0,0,0,0,0,1,0,Other Vehicular,Driver Inattention/Distraction,Following Too Closely,Following Too Closely,,4478247,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/16/2021,17:30,STATEN ISLAND,10310,40.632675,-74.116844,"(40.632675, -74.116844)",CARY AVENUE,BROADWAY,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4478923,Sedan,,,, +11/19/2021,18:58,BROOKLYN,11207,40.675625,-73.89879,"(40.675625, -73.89879)",ATLANTIC AVENUE,GEORGIA AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4479394,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,14:16,QUEENS,11378,40.718685,-73.912125,"(40.718685, -73.912125)",,,58-77 57 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479513,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,20:35,STATEN ISLAND,10308,40.556385,-74.156715,"(40.556385, -74.156715)",LEVERETT AVENUE,COLON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478751,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,18:10,QUEENS,11373,40.74494,-73.887344,"(40.74494, -73.887344)",BROADWAY,78 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479509,Sedan,E-Scooter,,, +11/18/2021,14:25,,,40.69936,-73.931564,"(40.69936, -73.931564)",EVERGREEN AVENUE,JEFFERSON STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478874,Sedan,Bike,,, +11/19/2021,0:30,BRONX,10469,40.865387,-73.8529,"(40.865387, -73.8529)",ALLERTON AVENUE,TENBROECK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,0:00,STATEN ISLAND,10305,40.597992,-74.06663,"(40.597992, -74.06663)",MCCLEAN AVENUE,HASTINGS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479298,Sedan,,,, +11/18/2021,20:02,,,40.5787,-73.98734,"(40.5787, -73.98734)",NEPTUNE AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4479065,Sedan,Sedan,,, +11/18/2021,21:40,BROOKLYN,11238,40.68085,-73.97112,"(40.68085, -73.97112)",DEAN STREET,CARLTON AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478790,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,11:15,QUEENS,11372,40.75585,-73.88259,"(40.75585, -73.88259)",NORTHERN BOULEVARD,85 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4478639,fire truck,Sedan,,, +11/17/2021,20:37,,,40.845108,-73.913025,"(40.845108, -73.913025)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478813,Pick-up Truck,,,, +11/17/2021,19:40,MANHATTAN,10007,40.714165,-74.00632,"(40.714165, -74.00632)",BROADWAY,CHAMBERS STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478471,Station Wagon/Sport Utility Vehicle,PK,,, +11/17/2021,6:40,BRONX,10472,40.829754,-73.87374,"(40.829754, -73.87374)",HARROD AVENUE,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478704,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/17/2021,6:55,,,40.82325,-73.88277,"(40.82325, -73.88277)",BRONX RIVER AVENUE,BRUCKNER BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478708,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,2:20,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Reaction to Uninvolved Vehicle,,,,4478133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,12:00,QUEENS,11420,40.67478,-73.806206,"(40.67478, -73.806206)",ROCKAWAY BOULEVARD,132 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478777,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,3:06,,,40.854904,-73.89645,"(40.854904, -73.89645)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478496,Sedan,,,, +11/19/2021,19:30,,,40.67043,-73.928185,"(40.67043, -73.928185)",SAINT JOHNS PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479625,Sedan,Sedan,Sedan,, +11/18/2021,3:30,BROOKLYN,11203,40.65156,-73.93428,"(40.65156, -73.93428)",CHURCH AVENUE,EAST 46 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479411,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/18/2021,7:15,BROOKLYN,11214,40.6051,-74.00816,"(40.6051, -74.00816)",,,1705 BATH AVENUE,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4478512,Sedan,Sedan,,, +11/17/2021,16:20,BRONX,10451,40.822456,-73.92692,"(40.822456, -73.92692)",WALTON AVENUE,EAST 153 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4478838,Sedan,Sedan,,, +11/17/2021,17:59,,,40.80071,-73.93198,"(40.80071, -73.93198)",1 AVENUE,PALADINO AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479007,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,21:30,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",ORCHARD STREET,DELANCEY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478744,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,22:20,MANHATTAN,10036,40.764904,-73.998146,"(40.764904, -73.998146)",WEST 47 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478857,Sedan,,,, +11/17/2021,9:45,QUEENS,11411,40.695408,-73.74101,"(40.695408, -73.74101)",219 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478435,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,16:00,,,40.752766,-73.83692,"(40.752766, -73.83692)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4479421,Sedan,,,, +11/17/2021,23:16,BROOKLYN,11218,40.643677,-73.970726,"(40.643677, -73.970726)",EAST 9 STREET,BEVERLEY ROAD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478612,,,,, +11/19/2021,8:17,BROOKLYN,11223,40.593758,-73.960625,"(40.593758, -73.960625)",,,1002 AVENUE W,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478938,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,18:07,BRONX,10466,40.896496,-73.846,"(40.896496, -73.846)",PITMAN AVENUE,EDSON AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,Unspecified,Unspecified,,4479568,Taxi,Taxi,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/17/2021,20:50,BROOKLYN,11207,40.67816,-73.897484,"(40.67816, -73.897484)",PENNSYLVANIA AVENUE,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478975,Sedan,Sedan,,, +11/19/2021,23:30,,,40.602905,-74.00003,"(40.602905, -74.00003)",BENSON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4479355,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/18/2021,14:25,QUEENS,11422,40.636112,-73.7403,"(40.636112, -73.7403)",ROCKAWAY BOULEVARD,MEYER AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479165,Sedan,,,, +11/19/2021,8:10,BROOKLYN,11207,40.685356,-73.90855,"(40.685356, -73.90855)",,,90 MOFFAT STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4478901,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,18:58,MANHATTAN,10027,40.81218,-73.955246,"(40.81218, -73.955246)",,,430 WEST 125 STREET,0,0,0,0,0,0,0,0,Turning Improperly,Following Too Closely,,,,4479463,Station Wagon/Sport Utility Vehicle,Moped,,, +11/19/2021,12:55,BROOKLYN,11218,40.641537,-73.98245,"(40.641537, -73.98245)",CHURCH AVENUE,CHESTER AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479769,Sedan,Sedan,,, +11/19/2021,12:00,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479136,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/18/2021,16:05,BROOKLYN,11214,40.58516,-73.9874,"(40.58516, -73.9874)",BAY 50 STREET,CROPSEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479033,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,17:48,BROOKLYN,11235,40.58008,-73.95981,"(40.58008, -73.95981)",CONEY ISLAND AVENUE,OCEANVIEW AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479212,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,22:40,QUEENS,11377,40.75016,-73.90434,"(40.75016, -73.90434)",37 AVENUE,58 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479266,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,17:49,,,40.758327,-73.96894,"(40.758327, -73.96894)",3 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479759,Station Wagon/Sport Utility Vehicle,Bike,,, +11/17/2021,18:46,,,40.59654,-73.76748,"(40.59654, -73.76748)",BEACH CHANNEL DRIVE,BEACH 35 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478458,Sedan,Pick-up Truck,,, +11/19/2021,11:33,,,40.73035,-73.99483,"(40.73035, -73.99483)",GREENE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479404,Sedan,Box Truck,,, +11/18/2021,15:32,,,40.758057,-73.95914,"(40.758057, -73.95914)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4478763,Box Truck,,,, +11/19/2021,17:55,BRONX,10466,40.89024,-73.860306,"(40.89024, -73.860306)",LOWERRE PLACE,EAST 228 STREET,,2,0,0,0,0,0,2,0,Unspecified,,,,,4479552,Sedan,,,, +11/17/2021,19:35,QUEENS,11375,40.714943,-73.833694,"(40.714943, -73.833694)",77 ROAD,KEW FOREST LANE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479666,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,19:45,BRONX,10458,40.85703,-73.88534,"(40.85703, -73.88534)",EAST 189 STREET,HUGHES AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478916,Sedan,Sedan,,, +11/18/2021,13:30,BROOKLYN,11226,40.6535,-73.9654,"(40.6535, -73.9654)",,,115 PARKSIDE AVENUE,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4478896,Sedan,Sedan,,, +11/19/2021,0:00,BROOKLYN,11218,40.648254,-73.971405,"(40.648254, -73.971405)",CATON AVENUE,CONEY ISLAND AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479125,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,18:40,MANHATTAN,10011,40.73813,-74.00204,"(40.73813, -74.00204)",GREENWICH AVENUE,JANE STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4479477,Bike,,,, +11/19/2021,14:30,,,40.826622,-73.930984,"(40.826622, -73.930984)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479286,Sedan,Box Truck,,, +11/18/2021,13:00,BROOKLYN,11223,40.588753,-73.97272,"(40.588753, -73.97272)",,,2457 WEST 3 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479315,Sedan,Box Truck,,, +11/19/2021,12:23,,,40.67871,-73.86701,"(40.67871, -73.86701)",SHERIDAN AVENUE,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479847,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/19/2021,7:55,,,40.768875,-73.94898,"(40.768875, -73.94898)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478965,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,5:57,BROOKLYN,11234,40.620956,-73.91742,"(40.620956, -73.91742)",RALPH AVENUE,EAST 64 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4478822,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,14:43,BROOKLYN,11223,40.586502,-73.97443,"(40.586502, -73.97443)",SHELL ROAD,DANK COURT,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479076,Sedan,Bus,,, +11/09/2021,15:45,STATEN ISLAND,10312,40.549713,-74.181046,"(40.549713, -74.181046)",,,76 RENSSELAER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4478928,Station Wagon/Sport Utility Vehicle,,,, +10/26/2021,7:40,BROOKLYN,11212,40.661995,-73.9196,"(40.661995, -73.9196)",EAST 98 STREET,KINGS HIGHWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479504,Sedan,,,, +11/19/2021,1:50,,,40.812737,-73.93762,"(40.812737, -73.93762)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479097,Taxi,,,, +11/18/2021,19:30,,,40.590706,-74.165794,"(40.590706, -74.165794)",RICHMOND AVENUE,NOME AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479029,Bus,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,21:33,,,40.76616,-73.73618,"(40.76616, -73.73618)",THEBES AVENUE,MARATHON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479145,Garbage or Refuse,Station Wagon/Sport Utility Vehicle,Sedan,, +11/19/2021,7:30,QUEENS,11434,40.662994,-73.76756,"(40.662994, -73.76756)",,,145-100 178 PLACE,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4478960,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/18/2021,21:22,,,40.701527,-73.98957,"(40.701527, -73.98957)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479608,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,13:30,BRONX,10462,40.854366,-73.86871,"(40.854366, -73.86871)",LYDIG AVENUE,BOLTON STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479860,Sedan,,,, +11/18/2021,17:58,,,40.67211,-73.801094,"(40.67211, -73.801094)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479274,Sedan,Tractor Truck Diesel,,, +11/19/2021,16:30,MANHATTAN,10018,40.754147,-73.99574,"(40.754147, -73.99574)",,,450 9 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479451,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,12:30,BROOKLYN,11206,40.70213,-73.94791,"(40.70213, -73.94791)",,,380 WALLABOUT STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Following Too Closely,,,,4478505,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,13:39,BROOKLYN,11226,40.64663,-73.95566,"(40.64663, -73.95566)",TILDEN AVENUE,BEDFORD AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4478391,Sedan,,,, +11/17/2021,11:00,BROOKLYN,11232,40.659912,-73.998604,"(40.659912, -73.998604)",26 STREET,4 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478239,Bike,Sedan,,, +11/17/2021,19:45,QUEENS,11412,40.69802,-73.7623,"(40.69802, -73.7623)",MURDOCK AVENUE,FARMERS BOULEVARD,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4478563,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,20:39,BROOKLYN,11219,40.63828,-73.988754,"(40.63828, -73.988754)",,,4306 13 AVENUE,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4478619,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,14:41,,,40.67556,-73.96334,"(40.67556, -73.96334)",WASHINGTON AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479493,Ambulance,Sedan,,, +11/17/2021,16:50,,,,,,VANWYCK EXPRESSWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4478422,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,19:10,BROOKLYN,11239,40.64468,-73.8785,"(40.64468, -73.8785)",,,1520 HORNELL LOOP,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479829,Taxi,Sedan,,, +11/17/2021,7:15,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4478414,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,6:00,QUEENS,11368,40.756287,-73.860725,"(40.756287, -73.860725)",34 AVENUE,108 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,17:15,MANHATTAN,10031,40.817924,-73.94974,"(40.817924, -73.94974)",SAINT NICHOLAS TERRACE,WEST 135 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4478756,Sedan,,,, +11/19/2021,12:37,,,40.855286,-73.89809,"(40.855286, -73.89809)",TIEBOUT AVENUE,EAST 182 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479205,Bus,Sedan,,, +11/10/2021,17:50,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4478943,Sedan,,,, +11/15/2021,17:39,,,40.69231,-73.88147,"(40.69231, -73.88147)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4479517,Sedan,Sedan,Sedan,, +11/19/2021,9:57,BROOKLYN,11221,40.693314,-73.92496,"(40.693314, -73.92496)",BUSHWICK AVENUE,VAN BUREN STREET,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4479002,Sedan,Sedan,,, +11/18/2021,21:18,,,40.699936,-73.91181,"(40.699936, -73.91181)",WYCKOFF AVENUE,,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inexperience,,,,4478869,Bus,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,12:50,BRONX,10462,40.85095,-73.86681,"(40.85095, -73.86681)",CRUGER AVENUE,BRONXDALE AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479108,Sedan,,,, +11/17/2021,11:53,BROOKLYN,11219,40.63902,-74.00023,"(40.63902, -74.00023)",,,961 50 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478449,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,23:58,MANHATTAN,10014,40.737553,-74.00401,"(40.737553, -74.00401)",,,283 WEST 12 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4478475,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,18:30,,,40.676743,-73.93316,"(40.676743, -73.93316)",SCHENECTADY AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4478725,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,19:10,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478673,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,11:40,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4478808,Sedan,Tractor Truck Diesel,,, +11/15/2021,8:00,,,40.699406,-73.95338,"(40.699406, -73.95338)",FLUSHING AVENUE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Aggressive Driving/Road Rage,,,,4478987,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/19/2021,20:14,BROOKLYN,11226,40.650856,-73.94839,"(40.650856, -73.94839)",,,3110 CHURCH AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479414,Sedan,Pick-up Truck,,, +11/19/2021,2:25,QUEENS,11434,40.666695,-73.767136,"(40.666695, -73.767136)",SOUTH CONDUIT AVENUE,FARMERS BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478828,Sedan,Sedan,,, +11/17/2021,14:50,MANHATTAN,10036,40.761448,-73.98803,"(40.761448, -73.98803)",,,328 WEST 48 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478491,Bus,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,11:51,,,,,,JAMAICA AVENUE,Jackie Robinson parkway,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478970,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,20:20,,,,,,QUEENS BOULEVARD,VANDAM STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Reaction to Uninvolved Vehicle,,,,4479706,Carry All,Pick-up Truck,,, +11/18/2021,14:30,,,40.764626,-73.99555,"(40.764626, -73.99555)",WEST 48 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478853,Carry All,Sedan,,, +11/17/2021,18:45,QUEENS,11429,40.706963,-73.74485,"(40.706963, -73.74485)",212 STREET,111 AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4478440,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,20:00,QUEENS,11432,40.712708,-73.78357,"(40.712708, -73.78357)",HILLSIDE AVENUE,179 PLACE,,4,0,0,0,0,0,4,0,Unsafe Lane Changing,Unspecified,,,,4479689,Bus,Station Wagon/Sport Utility Vehicle,,, +11/10/2021,14:30,,,40.820965,-73.939575,"(40.820965, -73.939575)",7 AVENUE,,,1,0,0,0,1,0,0,0,Other Vehicular,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4479646,Sedan,Bike,,, +11/18/2021,21:00,MANHATTAN,10075,40.77233,-73.95578,"(40.77233, -73.95578)",,,1486 2 AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4478794,Bike,,,, +11/19/2021,20:56,MANHATTAN,10065,40.760777,-73.95702,"(40.760777, -73.95702)",FDR DRIVE,EAST 63 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479160,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +11/17/2021,8:23,QUEENS,11432,40.708138,-73.80303,"(40.708138, -73.80303)",PARSONS BOULEVARD,HIGHLAND AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479044,Sedan,Bike,,, +11/17/2021,14:48,,,,,,CANAL STREET,MANHATTAN BRIDGE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4478649,Sedan,Sedan,,, +11/15/2021,5:45,BRONX,10461,40.836273,-73.84592,"(40.836273, -73.84592)",BUTLER PLACE,ZEREGA AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479365,Pick-up Truck,E-Scooter,,, +11/12/2021,2:00,BROOKLYN,11235,40.582497,-73.95738,"(40.582497, -73.95738)",NEPTUNE AVENUE,BRIGHTON 10 STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,,,,,4479061,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,13:00,,,40.674423,-74.00033,"(40.674423, -74.00033)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479140,Sedan,,,, +11/02/2021,14:00,BROOKLYN,11230,40.61617,-73.9546,"(40.61617, -73.9546)",OCEAN AVENUE,AVENUE N,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479339,Pick-up Truck,,,, +11/15/2021,17:38,MANHATTAN,10013,40.72567,-74.00396,"(40.72567, -74.00396)",,,168 AVENUE OF THE AMERICAS,1,0,1,0,0,0,0,0,Unspecified,,,,,4479182,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,17:07,BROOKLYN,11216,40.680214,-73.94628,"(40.680214, -73.94628)",FULTON STREET,MARCY AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4478992,Sedan,Sedan,,, +11/18/2021,11:40,MANHATTAN,10281,40.714527,-74.015686,"(40.714527, -74.015686)",,,250 VESEY STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4478659,Sedan,Sedan,,, +11/19/2021,12:00,QUEENS,11419,40.686275,-73.82993,"(40.686275, -73.82993)",,,103-10 113 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479093,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:10,BROOKLYN,11222,40.729347,-73.94512,"(40.729347, -73.94512)",MESEROLE AVENUE,RUSSELL STREET,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4478997,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,9:15,MANHATTAN,10001,40.74489,-73.99135,"(40.74489, -73.99135)",,,776 AVENUE OF THE AMERICAS,2,0,0,0,0,0,2,0,Unspecified,,,,,4478955,BOOM LIFT,,,, +11/18/2021,22:25,,,40.66641,-73.78813,"(40.66641, -73.78813)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4478864,Sedan,Sedan,,, +11/19/2021,18:49,QUEENS,11416,40.681484,-73.84788,"(40.681484, -73.84788)",103 AVENUE,ROCKAWAY BOULEVARD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479239,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,16:25,BRONX,10467,0,0,"(0.0, 0.0)",,,711 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478679,Sedan,Sedan,,, +11/18/2021,16:00,,,40.70362,-73.85628,"(40.70362, -73.85628)",JACKIE ROBINSON PKWY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4479543,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,11:12,,,40.69889,-73.91753,"(40.69889, -73.91753)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4478464,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,13:30,BRONX,10454,40.80826,-73.918816,"(40.80826, -73.918816)",BROOK AVENUE,EAST 139 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479801,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,9:33,STATEN ISLAND,10304,40.59326,-74.11065,"(40.59326, -74.11065)",TODT HILL ROAD,FOUR CORNERS ROAD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4501635,Sedan,Sedan,,, +02/08/2022,7:20,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4501002,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +02/08/2022,9:45,BROOKLYN,11230,40.61562,-73.95959,"(40.61562, -73.95959)",AVENUE N,EAST 15 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501248,Station Wagon/Sport Utility Vehicle,Box Truck,,, +02/08/2022,15:21,QUEENS,11378,40.729813,-73.889275,"(40.729813, -73.889275)",73 PLACE,GRAND AVENUE,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4501278,Pick-up Truck,E-Scooter,,, +01/16/2022,22:55,,,,,,BRIGHTON 11 STREET,Coney Island Avenue,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4497149,Sedan,,,, +02/08/2022,20:05,,,40.793488,-73.94328,"(40.793488, -73.94328)",3 AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4501175,Bus,,,, +02/08/2022,13:40,,,40.64511,-73.874886,"(40.64511, -73.874886)",BELT PARKWAY,,,4,0,0,0,0,0,4,0,Driver Inexperience,Driver Inattention/Distraction,Unspecified,Unspecified,,4501499,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +12/08/2021,7:59,,,40.689915,-73.7779,"(40.689915, -73.7779)",MERRICK BOULEVARD,,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4486655,Sedan,,,, +02/08/2022,16:05,MANHATTAN,10065,40.764286,-73.95562,"(40.764286, -73.95562)",YORK AVENUE,EAST 68 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4501196,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,17:58,MANHATTAN,10007,40.716465,-74.013084,"(40.716465, -74.013084)",WEST STREET,WARREN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501263,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,19:15,QUEENS,11429,40.704014,-73.74028,"(40.704014, -73.74028)",,,113-05 SPRINGFIELD BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4501131,Sedan,,,, +02/08/2022,8:00,QUEENS,11428,40.71772,-73.737915,"(40.71772, -73.737915)",JAMAICA AVENUE,217 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501056,Station Wagon/Sport Utility Vehicle,,,, +02/08/2022,7:25,,,0,0,"(0.0, 0.0)",JAMAICA AVENUE,VANWYCK EXPRESSWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501361,Sedan,Bus,,, +02/04/2022,14:52,MANHATTAN,10035,40.79573,-73.93267,"(40.79573, -73.93267)",EAST 117 STREET,PLEASANT AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4501510,Ambulance,,,, +02/08/2022,17:00,,,,,,STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501160,Station Wagon/Sport Utility Vehicle,PK,,, +02/08/2022,15:18,BROOKLYN,11236,,,,ROCKAWAY PARKWAY,FLATLANDS AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4501152,Station Wagon/Sport Utility Vehicle,Bike,,, +02/08/2022,11:40,QUEENS,11373,40.74314,-73.88334,"(40.74314, -73.88334)",,,81-21 BROADWAY,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4501452,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/08/2022,10:51,BROOKLYN,11223,40.595463,-73.967384,"(40.595463, -73.967384)",AVENUE V,EAST 4 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501190,Tanker,,,, +02/08/2022,17:06,BRONX,10457,40.8385,-73.90598,"(40.8385, -73.90598)",EAST 171 STREET,WEBSTER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4501220,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,20:07,MANHATTAN,10065,,,,EAST 62 STREET,1 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501678,Taxi,Bike,,, +02/04/2022,13:33,,,40.678364,-73.77949,"(40.678364, -73.77949)",BREWER BOULEVARD,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501585,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/08/2022,14:30,MANHATTAN,10027,40.806625,-73.94275,"(40.806625, -73.94275)",,,1 WEST 125 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,Unspecified,,4501240,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +02/08/2022,15:07,BROOKLYN,11235,,,,JAFFRAY STREET,ORIENTAL BOULEVARD,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4501182,Station Wagon/Sport Utility Vehicle,,,, +02/02/2022,17:48,MANHATTAN,10002,40.719025,-73.98978,"(40.719025, -73.98978)",DELANCEY STREET,ORCHARD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501550,Sedan,,,, +02/06/2022,15:00,MANHATTAN,10029,40.79468,-73.93226,"(40.79468, -73.93226)",,,455 EAST 116 STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4501572,Sedan,Station Wagon/Sport Utility Vehicle,,, +02/04/2022,15:10,BROOKLYN,11213,40.668842,-73.93207,"(40.668842, -73.93207)",,,1102 EASTERN PARKWAY,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4501598,Sedan,,,, +02/08/2022,13:25,QUEENS,11434,40.682568,-73.79266,"(40.682568, -73.79266)",SUTPHIN BOULEVARD,116 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4501205,Sedan,,,, +11/20/2021,14:32,,,,,,VANDAM STREET,BORDEN AVENUE,,0,0,0,0,0,0,0,0,Lane Marking Improper/Inadequate,Unspecified,,,,4479280,Sedan,Sedan,,, +06/17/2022,19:15,QUEENS,11692,40.588657,-73.802795,"(40.588657, -73.802795)",BEACH BREEZE PLACE,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4540008,Sedan,Sedan,,, +07/05/2022,22:14,,,40.642204,-73.991936,"(40.642204, -73.991936)",41 STREET,,,1,0,0,0,0,0,0,0,Unspecified,,,,,4544081,Sedan,,,, +07/01/2022,15:15,MANHATTAN,10028,40.77882,-73.953995,"(40.77882, -73.953995)",EAST 86 STREET,3 AVENUE,,1,0,0,0,1,0,0,0,Other Vehicular,Unspecified,,,,4544186,Sedan,Bike,,, +07/05/2022,11:59,QUEENS,11416,40.689095,-73.84047,"(40.689095, -73.84047)",104 STREET,95 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,,,,,4544462,Station Wagon/Sport Utility Vehicle,,,, +07/06/2022,23:50,STATEN ISLAND,10305,40.618988,-74.06975,"(40.618988, -74.06975)",BAY STREET,WILLOW AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4545692,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/04/2022,19:00,BROOKLYN,11201,40.703144,-73.988754,"(40.703144, -73.988754)",,,28 ADAMS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545688,Sedan,,,, +06/25/2022,20:14,MANHATTAN,10016,40.741272,-73.97535,"(40.741272, -73.97535)",EAST 30 STREET,1 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545719,Sedan,,,, +07/10/2022,4:38,MANHATTAN,10009,40.72287,-73.98284,"(40.72287, -73.98284)",,,42 AVENUE B,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545728,Sedan,,,, +07/10/2022,18:09,BROOKLYN,11214,40.604767,-73.99088,"(40.604767, -73.99088)",81 STREET,BAY PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545705,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/24/2022,9:00,,,40.727154,-73.75399,"(40.727154, -73.75399)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4540870,Sedan,Sedan,,, +07/10/2022,15:31,BROOKLYN,11201,40.69599,-73.98322,"(40.69599, -73.98322)",GOLD STREET,TILLARY STREET,,1,0,0,0,0,0,1,0,Lane Marking Improper/Inadequate,Lane Marking Improper/Inadequate,,,,4545689,Taxi,Sedan,,, +07/10/2022,0:01,QUEENS,11691,40.60353,-73.75796,"(40.60353, -73.75796)",,,10-61 MCBRIDE STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545723,Sedan,,,, +04/18/2022,23:00,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4521009,Sedan,,,, +07/10/2022,10:40,,,40.701813,-73.80888,"(40.701813, -73.80888)",146 STREET,JAMAICA AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4545169,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,3:50,,,40.722576,-73.94049,"(40.722576, -73.94049)",BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4545472,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,11:30,BROOKLYN,11217,40.6794,-73.97843,"(40.6794, -73.97843)",,,105 5 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545286,Sedan,,,, +07/08/2022,23:46,BROOKLYN,11217,40.684025,-73.97397,"(40.684025, -73.97397)",,,187 SOUTH PORTLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545669,Sedan,,,, +07/10/2022,23:31,BRONX,10454,40.808807,-73.9107,"(40.808807, -73.9107)",SAINT MARYS STREET,JACKSON AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4545227,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,3:15,MANHATTAN,10001,40.749973,-74.002525,"(40.749973, -74.002525)",,,289 10 AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4545557,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,12:30,BRONX,10453,40.858276,-73.90898,"(40.858276, -73.90898)",,,2185 UNIVERSITY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545352,Pick-up Truck,,,, +06/27/2022,23:05,,,40.666935,-73.782715,"(40.666935, -73.782715)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545643,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,0:05,,,40.786,-73.84574,"(40.786, -73.84574)",COLLEGE POINT BOULEVARD,14 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4544882,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/04/2022,4:00,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4516752,Sedan,Bike,,, +04/19/2022,3:30,BROOKLYN,11203,40.6416,-73.93802,"(40.6416, -73.93802)",AVENUE D,ALBANY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4520436,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/19/2022,22:41,,,40.753788,-73.744286,"(40.753788, -73.744286)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,Unspecified,Unspecified,,4520648,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/19/2022,15:50,BRONX,10458,40.867256,-73.88363,"(40.867256, -73.88363)",WEBSTER AVENUE,EAST BEDFORD PARK BOULEVARD,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4520506,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/14/2022,6:05,BROOKLYN,11212,40.655697,-73.918205,"(40.655697, -73.918205)",,,470 EAST 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520964,Sedan,,,, +04/19/2022,6:56,,,40.698265,-73.93399,"(40.698265, -73.93399)",BUSHWICK AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520921,Station Wagon/Sport Utility Vehicle,Bus,,, +04/19/2022,0:25,MANHATTAN,10022,40.7606,-73.964325,"(40.7606, -73.964325)",EAST 59 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520161,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,21:45,BRONX,10457,40.844368,-73.88902,"(40.844368, -73.88902)",PROSPECT AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4520475,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +04/16/2022,15:30,BRONX,10457,40.84664,-73.90469,"(40.84664, -73.90469)",EAST 175 STREET,CLAY AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4520791,Sedan,,,, +04/19/2022,10:25,,,40.739628,-74.00634,"(40.739628, -74.00634)",LITTLE WEST 12 STREET,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520544,,,,, +04/12/2022,15:34,BRONX,10454,40.809105,-73.9229,"(40.809105, -73.9229)",EAST 138 STREET,WILLIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,,,4520895,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/15/2022,15:30,,,40.865532,-73.86238,"(40.865532, -73.86238)",BOSTON ROAD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4521033,Sedan,,,, +04/19/2022,0:08,BROOKLYN,11209,40.632008,-74.02756,"(40.632008, -74.02756)",,,7409 3 AVENUE,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4520205,Sedan,Sedan,,, +04/19/2022,7:15,QUEENS,11379,40.71946,-73.89117,"(40.71946, -73.89117)",ELIOT AVENUE,69 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520582,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,12:11,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4520961,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,23:04,,,40.771744,-73.875275,"(40.771744, -73.875275)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4545383,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,1:27,QUEENS,11385,40.70203,-73.91086,"(40.70203, -73.91086)",,,1676 LINDEN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479527,Sedan,Sedan,,, +04/18/2022,22:10,STATEN ISLAND,10309,40.527805,-74.232376,"(40.527805, -74.232376)",,,2900 VETERANS ROAD WEST,0,0,0,0,0,0,0,0,Backing Unsafely,Backing Unsafely,,,,4521008,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,21:00,,,40.79944,-73.95531,"(40.79944, -73.95531)",CENTRAL PARK NORTH,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520869,Sedan,Sedan,,, +04/19/2022,7:03,,,40.812073,-73.93604,"(40.812073, -73.93604)",EAST 135 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520263,Dump,Sedan,,, +04/19/2022,20:11,,,40.693172,-73.97086,"(40.693172, -73.97086)",MYRTLE AVENUE,,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Failure to Yield Right-of-Way,,,,4520414,Sedan,Bike,,, +04/19/2022,20:36,BRONX,10467,40.875923,-73.8619,"(40.875923, -73.8619)",,,800 EAST GUN HILL ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520657,FIRE TRUCK,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,16:04,BROOKLYN,11201,40.689713,-73.98794,"(40.689713, -73.98794)",,,140 SCHERMERHORN STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520697,,,,, +04/18/2022,8:00,BROOKLYN,11208,40.674072,-73.863,"(40.674072, -73.863)",SUTTER AVENUE,FORBELL STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520799,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,9:50,,,40.64254,-73.87652,"(40.64254, -73.87652)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,Unspecified,,,,4520815,Van,Sedan,,, +04/19/2022,8:15,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,,,,,4520394,Taxi,,,, +04/19/2022,8:30,BROOKLYN,11220,40.639984,-74.02996,"(40.639984, -74.02996)",,,6649 COLONIAL ROAD,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,,,4520326,Sedan,Sedan,Unknown,, +04/19/2022,15:40,,,40.681263,-73.83954,"(40.681263, -73.83954)",101 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4520356,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,6:10,QUEENS,11423,40.71149,-73.76538,"(40.71149, -73.76538)",195 STREET,WOODHULL AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4520330,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,19:13,STATEN ISLAND,10301,40.638092,-74.08747,"(40.638092, -74.08747)",,,418 JERSEY STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,Obstruction/Debris,,,,4520985,Sedan,Sedan,,, +04/19/2022,18:30,QUEENS,11377,40.752563,-73.90526,"(40.752563, -73.90526)",56 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520410,Sedan,TRAILER TR,,, +04/19/2022,6:00,QUEENS,11422,40.655754,-73.73192,"(40.655754, -73.73192)",257 STREET,147 DRIVE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4520289,Sedan,Sedan,,, +04/19/2022,6:16,BROOKLYN,11207,40.661835,-73.893105,"(40.661835, -73.893105)",PENNSYLVANIA AVENUE,NEW LOTS AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520814,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,9:00,BROOKLYN,11206,40.704277,-73.933014,"(40.704277, -73.933014)",VARET STREET,BOGART STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520530,Sedan,,,, +04/19/2022,15:00,,,40.821182,-73.88929,"(40.821182, -73.88929)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520600,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/17/2022,3:49,,,40.61651,-74.02666,"(40.61651, -74.02666)",92 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520837,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +04/19/2022,21:10,BROOKLYN,11221,40.68789,-73.936035,"(40.68789, -73.936035)",GATES AVENUE,LEWIS AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4520716,Sedan,,,, +04/19/2022,21:40,BROOKLYN,11239,40.649586,-73.87139,"(40.649586, -73.87139)",,,355 GATEWAY DRIVE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4520819,Sedan,,,, +04/19/2022,10:57,,,40.696087,-73.97533,"(40.696087, -73.97533)",BROOKLYN QUEENS EXPRESSWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520315,Sedan,Dump,,, +04/19/2022,15:45,,,40.761585,-73.76086,"(40.761585, -73.76086)",NORTHERN BOULEVARD,220 PLACE,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4520401,Bus,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,0:10,BROOKLYN,11223,40.59401,-73.96086,"(40.59401, -73.96086)",,,2575 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4520482,Sedan,Sedan,,, +04/19/2022,22:38,QUEENS,11426,40.724335,-73.72464,"(40.724335, -73.72464)",CROSS ISLAND PARKWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4520694,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/14/2022,23:46,,,40.676743,-73.93316,"(40.676743, -73.93316)",SCHENECTADY AVENUE,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520910,Sedan,E-Bike,,, +11/20/2021,11:15,,,,,,EAST 233 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479555,Carry All,Sedan,,, +02/09/2022,20:30,QUEENS,11419,,,,118 STREET,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4501471,Sedan,,,, +04/19/2022,16:07,BRONX,10458,40.85538,-73.88726,"(40.85538, -73.88726)",,,608 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520458,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Box Truck,, +04/16/2022,12:17,,,40.52128,-74.23946,"(40.52128, -74.23946)",RICHMOND VALLEY ROAD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520990,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,0:40,,,40.789577,-73.78414,"(40.789577, -73.78414)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4520339,Sedan,Sedan,,, +04/07/2022,14:45,BROOKLYN,11213,40.672016,-73.94086,"(40.672016, -73.94086)",STERLING PLACE,HAMPTON PLACE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520894,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,8:15,BROOKLYN,11230,40.62941,-73.96605,"(40.62941, -73.96605)",,,1153 CONEY ISLAND AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520780,Sedan,,,, +04/19/2022,20:18,BROOKLYN,11208,40.6776,-73.86578,"(40.6776, -73.86578)",GLENMORE AVENUE,GRANT AVENUE,,1,0,1,0,0,0,0,0,,,,,,4520804,,,,, +04/19/2022,14:10,MANHATTAN,10004,40.7067,-74.01605,"(40.7067, -74.01605)",WEST STREET,MORRIS STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520883,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,18:35,BROOKLYN,11210,40.63686,-73.93849,"(40.63686, -73.93849)",FARRAGUT ROAD,EAST 40 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4520971,Sedan,,,, +04/19/2022,11:20,BROOKLYN,11238,40.6864,-73.9685,"(40.6864, -73.9685)",VANDERBILT AVENUE,GREENE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520517,Sedan,,,, +04/16/2022,17:13,QUEENS,11105,40.773293,-73.90668,"(40.773293, -73.90668)",,,38-11 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520934,Sedan,Box Truck,,, +04/19/2022,2:00,,,40.830555,-73.832664,"(40.830555, -73.832664)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4520590,Sedan,,,, +04/19/2022,18:58,,,,,,BRUCKNER BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520469,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,8:02,,,40.6665,-73.9962,"(40.6665, -73.9962)",GOWANUS EXPY (BQE),,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520670,Pick-up Truck,Bus,,, +04/13/2022,21:16,QUEENS,11102,40.772987,-73.9164,"(40.772987, -73.9164)",24 AVENUE,29 STREET,,1,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4521049,Station Wagon/Sport Utility Vehicle,E-Bike,,, +04/19/2022,12:05,,,40.640224,-74.13667,"(40.640224, -74.13667)",RICHMOND TERRACE,SHARPE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520424,Sedan,Pick-up Truck,,, +03/31/2022,0:55,,,40.81175,-73.93144,"(40.81175, -73.93144)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520899,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,22:20,,,40.67797,-73.940575,"(40.67797, -73.940575)",ATLANTIC AVENUE,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4520619,Sedan,Sedan,,, +04/19/2022,17:05,BRONX,10457,40.847027,-73.89807,"(40.847027, -73.89807)",EAST TREMONT AVENUE,WASHINGTON AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4520476,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,20:30,QUEENS,11373,40.73599,-73.86551,"(40.73599, -73.86551)",JUNCTION BOULEVARD,58 AVENUE,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4520623,E-Scooter,Sedan,,, +04/19/2022,12:43,BROOKLYN,11212,40.657803,-73.90868,"(40.657803, -73.90868)",CHESTER STREET,LOTT AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4520547,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan, +04/09/2022,3:57,QUEENS,11377,40.75016,-73.90434,"(40.75016, -73.90434)",58 STREET,37 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520952,Pick-up Truck,,,, +04/19/2022,0:38,BROOKLYN,11236,40.636227,-73.88595,"(40.636227, -73.88595)",EAST 102 STREET,SEAVIEW AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520165,Sedan,,,, +04/19/2022,21:30,STATEN ISLAND,10312,40.53499,-74.17858,"(40.53499, -74.17858)",,,16 POILLON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520994,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,8:30,STATEN ISLAND,10308,40.541195,-74.15395,"(40.541195, -74.15395)",,,140 OCEANVIEW PLACE,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,Unspecified,,,4520446,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/19/2022,13:00,,,40.57916,-73.98309,"(40.57916, -73.98309)",WEST 15 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520875,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,5:00,,,40.705215,-73.92069,"(40.705215, -73.92069)",SUYDAM STREET,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,Unspecified,,4520919,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +04/19/2022,0:19,BRONX,10460,40.838703,-73.8813,"(40.838703, -73.8813)",,,1290 RODMAN PLACE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520241,Taxi,,,, +04/19/2022,23:34,BROOKLYN,11226,40.64495,-73.95186,"(40.64495, -73.95186)",BEVERLEY ROAD,ROGERS AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520962,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,10:30,,,40.59899,-74.13599,"(40.59899, -74.13599)",WASHINGTON AVENUE,OAKVILLE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520422,Sedan,,,, +04/19/2022,10:20,MANHATTAN,10001,40.750248,-73.996605,"(40.750248, -73.996605)",,,345 WEST 30 STREET,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4520554,Sedan,,,, +04/19/2022,11:00,MANHATTAN,10128,40.77951,-73.95156,"(40.77951, -73.95156)",,,235 EAST 88 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520470,Sedan,,,, +04/18/2022,15:10,STATEN ISLAND,10309,40.537457,-74.22136,"(40.537457, -74.22136)",SHARROTTS ROAD,ROBIN COURT,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520868,Sedan,Garbage or Refuse,,, +04/19/2022,11:34,,,40.666363,-73.95223,"(40.666363, -73.95223)",DEARBORN COURT,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520898,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,13:30,,,40.822834,-73.941925,"(40.822834, -73.941925)",WEST 145 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520507,Motorcycle,,,, +04/15/2022,17:00,,,40.525616,-74.229416,"(40.525616, -74.229416)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520989,Sedan,,,, +04/19/2022,9:39,QUEENS,11357,40.78189,-73.80366,"(40.78189, -73.80366)",18 AVENUE,FRANCIS LEWIS BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,,,,4520338,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2022,12:54,,,,,,CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520371,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2022,16:05,QUEENS,11433,40.69158,-73.79319,"(40.69158, -73.79319)",110 AVENUE,157 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520753,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,11:50,BROOKLYN,11210,40.638138,-73.945305,"(40.638138, -73.945305)",,,1417 NEW YORK AVENUE,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4520437,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/13/2022,8:30,,,40.529263,-74.18986,"(40.529263, -74.18986)",HUGUENOT AVENUE,,,2,0,2,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520827,Station Wagon/Sport Utility Vehicle,,,, +03/16/2022,17:00,BRONX,10454,40.81062,-73.92472,"(40.81062, -73.92472)",,,274 ALEXANDER AVENUE,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4521028,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/19/2022,10:35,BROOKLYN,11215,40.667374,-73.987816,"(40.667374, -73.987816)",12 STREET,5 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520320,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2022,23:30,QUEENS,11369,40.767715,-73.87614,"(40.767715, -73.87614)",,,23-09 94 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520636,Sedan,Sedan,,, +04/19/2022,17:15,MANHATTAN,10030,40.815285,-73.947716,"(40.815285, -73.947716)",,,304 WEST 133 STREET,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4520783,Sedan,,,, +04/19/2022,3:07,MANHATTAN,10014,40.729855,-74.00396,"(40.729855, -74.00396)",BEDFORD STREET,CARMINE STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520345,Sedan,Bus,,, +04/19/2022,8:15,MANHATTAN,10128,40.783417,-73.956955,"(40.783417, -73.956955)",EAST 90 STREET,MADISON AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4520480,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +04/05/2022,7:22,BROOKLYN,11216,40.6709,-73.95319,"(40.6709, -73.95319)",ROGERS AVENUE,LINCOLN PLACE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4520913,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,9:39,,,,,,BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520970,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,5:45,MANHATTAN,10018,40.753906,-73.99357,"(40.753906, -73.99357)",,,330 WEST 36 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520841,Sedan,van,,, +04/19/2022,11:05,BROOKLYN,11223,40.607517,-73.97062,"(40.607517, -73.97062)",,,1762 EAST 3 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520431,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,19:48,MANHATTAN,10037,40.81202,-73.942375,"(40.81202, -73.942375)",,,438 LENOX AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4520489,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +02/20/2022,13:00,BROOKLYN,11213,40.66792,-73.94791,"(40.66792, -73.94791)",NEW YORK AVENUE,PRESIDENT STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4520903,Bike,,,, +04/19/2022,4:40,BROOKLYN,11213,40.679543,-73.93414,"(40.679543, -73.93414)",,,1660 FULTON STREET,0,0,0,0,0,0,0,0,Steering Failure,Other Vehicular,,,,4520715,Sedan,Sedan,,, +04/19/2022,4:25,BROOKLYN,11232,40.65823,-74.00035,"(40.65823, -74.00035)",4 AVENUE,29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/19/2022,21:00,BROOKLYN,11239,40.655132,-73.87471,"(40.655132, -73.87471)",,,485 VANDALIA AVENUE,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4520818,Sedan,,,, +04/19/2022,20:39,BROOKLYN,11214,40.596745,-73.985275,"(40.596745, -73.985275)",86 STREET,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520411,Sedan,Sedan,,, +04/18/2022,17:30,,,,,,,,1630 EAST 116 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520790,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,18:18,BRONX,10469,40.877872,-73.836845,"(40.877872, -73.836845)",,,3309 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4520656,Moped,Van,,, +04/19/2022,18:05,BROOKLYN,11211,40.71196,-73.9407,"(40.71196, -73.9407)",GRAND STREET,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520525,Bike,Sedan,,, +04/17/2022,9:55,BROOKLYN,11214,40.593586,-73.99428,"(40.593586, -73.99428)",CROPSEY AVENUE,BAY 37 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520976,Sedan,Bus,,, +04/19/2022,1:38,MANHATTAN,10011,40.743782,-74.00073,"(40.743782, -74.00073)",,,322 WEST 20 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520599,Station Wagon/Sport Utility Vehicle,Unknown,,, +04/17/2022,12:30,BROOKLYN,11213,40.66753,-73.93126,"(40.66753, -73.93126)",,,306 UTICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520907,Sedan,Sedan,,, +04/19/2022,16:42,QUEENS,11691,40.609535,-73.75372,"(40.609535, -73.75372)",BEACH CHANNEL DRIVE,HASSOCK STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520455,Sedan,,,, +04/08/2022,16:35,STATEN ISLAND,10309,40.54236,-74.208244,"(40.54236, -74.208244)",,,645 ROSSVILLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520828,Station Wagon/Sport Utility Vehicle,,,, +04/17/2022,19:02,BROOKLYN,11209,40.62783,-74.02928,"(40.62783, -74.02928)",3 AVENUE,80 STREET,,2,0,2,0,0,0,0,0,Outside Car Distraction,,,,,4520885,Sedan,,,, +04/19/2022,14:00,,,40.86661,-73.890366,"(40.86661, -73.890366)",BAINBRIDGE AVENUE,,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4520488,Sedan,,,, +04/19/2022,18:00,QUEENS,11385,40.703854,-73.900024,"(40.703854, -73.900024)",,,68-06 60 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520798,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,7:20,,,40.804066,-73.93117,"(40.804066, -73.93117)",HARLEM RIVER DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4520273,Sedan,Sedan,,, +04/19/2022,12:15,BRONX,10469,40.870483,-73.84324,"(40.870483, -73.84324)",,,3040 EASTCHESTER ROAD,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520610,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,15:20,QUEENS,11374,40.729576,-73.86363,"(40.729576, -73.86363)",,,63-52 SAUNDERS STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520391,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,21:18,QUEENS,11373,40.745365,-73.88834,"(40.745365, -73.88834)",77 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Backing Unsafely,,,,4520628,Sedan,Sedan,,, +04/19/2022,18:30,STATEN ISLAND,10306,40.575912,-74.1043,"(40.575912, -74.1043)",,,2239 HYLAN BOULEVARD,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4520445,Bus,Sedan,,, +04/19/2022,14:10,BRONX,10466,40.894547,-73.86104,"(40.894547, -73.86104)",,,600 EAST 233 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520609,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/08/2022,10:34,,,40.675907,-73.969505,"(40.675907, -73.969505)",STERLING PLACE,,,2,0,2,0,0,0,0,0,Unspecified,,,,,4520932,Garbage or Refuse,,,, +04/19/2022,7:00,BROOKLYN,11211,40.70924,-73.95794,"(40.70924, -73.95794)",,,275 SOUTH 5 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4520515,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,21:40,,,40.833233,-73.8282,"(40.833233, -73.8282)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520955,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,3:45,MANHATTAN,10016,40.74747,-73.97636,"(40.74747, -73.97636)",,,207 EAST 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520171,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,22:07,,,,,,,,FARRAGUT ROAD,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4520998,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/18/2022,23:17,BROOKLYN,11214,40.5867,-73.99567,"(40.5867, -73.99567)",BAY 44 STREET,HUNTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520874,Sedan,,,, +04/18/2022,20:40,BRONX,10458,40.868317,-73.88189,"(40.868317, -73.88189)",WEBSTER AVENUE,EAST 201 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Passing or Lane Usage Improper,,,,4520787,Sedan,Bike,,, +04/19/2022,7:10,,,40.781693,-73.839615,"(40.781693, -73.839615)",129 STREET,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520347,Sedan,Sedan,,, +04/19/2022,9:44,,,40.761795,-73.7679,"(40.761795, -73.7679)",215 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520680,Sedan,Sedan,,, +04/18/2022,22:11,STATEN ISLAND,10312,40.535923,-74.18084,"(40.535923, -74.18084)",AMBOY ROAD,ANNADALE ROAD,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4520993,Sedan,,,, +04/19/2022,0:00,BROOKLYN,11236,40.636368,-73.88574,"(40.636368, -73.88574)",,,10219 SEAVIEW AVENUE,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4520398,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,22:00,,,40.760117,-73.98484,"(40.760117, -73.98484)",WEST 48 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520758,E-Bike,,,, +04/18/2022,17:15,QUEENS,11103,40.75749,-73.916916,"(40.75749, -73.916916)",,,32-12 43 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4521045,Box Truck,Sedan,,, +04/19/2022,21:00,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,1,0,1,0,0,0,0,0,,,,,,4520428,,,,, +04/19/2022,14:00,BROOKLYN,11207,40.67651,-73.89707,"(40.67651, -73.89707)",,,62 PENNSYLVANIA AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520805,Sedan,Sedan,,, +04/19/2022,12:44,,,40.591393,-73.907875,"(40.591393, -73.907875)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520311,Sedan,Sedan,,, +04/19/2022,0:21,BRONX,10474,40.808853,-73.88405,"(40.808853, -73.88405)",EAST BAY AVENUE,BRYANT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520683,Box Truck,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,5:05,BROOKLYN,11207,40.675735,-73.89686,"(40.675735, -73.89686)",ATLANTIC AVENUE,PENNSYLVANIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520801,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,1:50,STATEN ISLAND,10309,40.517864,-74.197,"(40.517864, -74.197)",KEATING STREET,SEGUINE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520826,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,9:30,BROOKLYN,11212,40.665207,-73.91252,"(40.665207, -73.91252)",BOYLAND STREET,BLAKE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520324,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,12:30,,,40.73834,-73.84507,"(40.73834, -73.84507)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520397,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,20:38,QUEENS,11435,40.699787,-73.813644,"(40.699787, -73.813644)",138 STREET,91 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520419,E-Bike,,,, +04/19/2022,15:25,BRONX,10469,40.865208,-73.84336,"(40.865208, -73.84336)",EASTCHESTER ROAD,ALLERTON AVENUE,,3,0,0,0,0,0,3,0,Reaction to Uninvolved Vehicle,,,,,4520560,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,18:00,BROOKLYN,11225,40.660305,-73.959175,"(40.660305, -73.959175)",,,39 MAPLE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4521055,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,11:25,,,40.574802,-73.97353,"(40.574802, -73.97353)",SURF AVENUE,WEST 5 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520872,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,1:30,STATEN ISLAND,10307,40.512596,-74.23169,"(40.512596, -74.23169)",,,454 PAGE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520988,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/19/2022,11:05,,,40.695614,-73.82976,"(40.695614, -73.82976)",118 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4520333,Sedan,Box Truck,,, +04/19/2022,16:00,BROOKLYN,11203,40.648716,-73.92139,"(40.648716, -73.92139)",EAST 59 STREET,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520440,Ambulance,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,6:30,BRONX,10468,40.873123,-73.89573,"(40.873123, -73.89573)",,,2870 GOULDEN AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520272,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,18:00,QUEENS,11374,40.73367,-73.85766,"(40.73367, -73.85766)",62 DRIVE,99 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520412,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,16:55,BRONX,10456,40.832573,-73.91052,"(40.832573, -73.91052)",CLAY AVENUE,EAST 168 STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520664,Sedan,Pick-up Truck,,, +04/19/2022,19:03,BRONX,10464,40.851982,-73.789055,"(40.851982, -73.789055)",CITY ISLAND AVENUE,BEACH STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4520405,Sedan,Pick-up Truck,,, +04/15/2022,11:35,,,40.717278,-73.99544,"(40.717278, -73.99544)",HESTER STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520925,Sedan,Sedan,,, +04/15/2022,17:00,BROOKLYN,11208,40.661976,-73.85999,"(40.661976, -73.85999)",,,922 FORBELL STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4520808,Sedan,Sedan,,, +04/19/2022,16:55,BRONX,10458,40.86502,-73.89277,"(40.86502, -73.89277)",EAST 194 STREET,BRIGGS AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520472,Sedan,Sedan,,, +04/19/2022,17:25,,,40.763798,-73.808235,"(40.763798, -73.808235)",NORTHERN BOULEVARD,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520728,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,19:30,BROOKLYN,11239,40.65545,-73.863335,"(40.65545, -73.863335)",,,501 GATEWAY DRIVE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520817,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,20:00,QUEENS,11369,40.758957,-73.85804,"(40.758957, -73.85804)",,,32-37 112 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520794,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,11:30,BRONX,10466,40.890648,-73.82727,"(40.890648, -73.82727)",,,3957 PROVOST AVENUE,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520538,Pick-up Truck,,,, +04/14/2022,23:30,,,40.67043,-73.928185,"(40.67043, -73.928185)",ROCHESTER AVENUE,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520897,Sedan,,,, +04/16/2022,22:45,BROOKLYN,11204,40.60817,-73.98735,"(40.60817, -73.98735)",BAY RIDGE PARKWAY,BAY PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4521025,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,6:11,BRONX,10454,40.81373,-73.9221,"(40.81373, -73.9221)",3 AVENUE,EAST 144 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520462,AMBULANCE,Sedan,,, +11/20/2021,0:20,BROOKLYN,11229,40.59592,-73.941025,"(40.59592, -73.941025)",AVENUE W,NOSTRAND AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4479317,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,5:50,BROOKLYN,11249,40.718304,-73.96388,"(40.718304, -73.96388)",,,175 KENT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479604,Garbage or Refuse,,,, +11/20/2021,17:31,BROOKLYN,11206,40.701637,-73.942276,"(40.701637, -73.942276)",DEBEVOISE STREET,GRAHAM AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479443,Sedan,,,, +11/16/2021,11:30,,,40.6997,-73.94425,"(40.6997, -73.94425)",THROOP AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479999,Sedan,Sedan,,, +10/17/2021,11:21,BROOKLYN,11216,,,,,,177 HANCOCK STREET,0,0,0,0,0,0,0,0,Outside Car Distraction,Unspecified,,,,4479963,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,2:10,BROOKLYN,11209,40.61763,-74.03504,"(40.61763, -74.03504)",,,221 95 STREET,0,0,0,0,0,0,0,0,Animals Action,Unspecified,Unspecified,Unspecified,,4479167,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle, +11/20/2021,14:50,,,40.694454,-73.99888,"(40.694454, -73.99888)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479391,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +11/20/2021,19:00,BROOKLYN,11212,40.66077,-73.91975,"(40.66077, -73.91975)",ROCKAWAY PARKWAY,KINGS HIGHWAY,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,Unspecified,Unspecified,4479749,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/13/2021,12:39,,,40.690563,-73.94536,"(40.690563, -73.94536)",TOMPKINS AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479909,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,14:09,BROOKLYN,11201,40.691193,-73.99777,"(40.691193, -73.99777)",ATLANTIC AVENUE,HICKS STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Failure to Yield Right-of-Way,,,,4479169,Sedan,Flat Bed,,, +11/20/2021,7:24,QUEENS,11435,40.68747,-73.794785,"(40.68747, -73.794785)",112 AVENUE,SUTPHIN BOULEVARD,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4479183,Sedan,,,, +11/20/2021,8:14,BRONX,10467,40.87996,-73.85928,"(40.87996, -73.85928)",,,868 EAST 216 STREET,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,Unspecified,Unspecified,,4479546,Sedan,Sedan,Sedan,Sedan, +10/26/2021,19:45,,,40.703163,-73.81662,"(40.703163, -73.81662)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479990,Sedan,Sedan,,, +11/19/2021,21:30,,,,,,BRONX WHITESTONE BRIDGE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4480095,Taxi,Box Truck,,, +11/20/2021,0:00,MANHATTAN,10018,40.756207,-73.99136,"(40.756207, -73.99136)",,,310 WEST 40 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479868,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,8:10,,,,,,CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4479194,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,1:10,,,40.81322,-73.897835,"(40.81322, -73.897835)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479283,Sedan,,,, +11/20/2021,17:36,BROOKLYN,11210,40.63344,-73.947754,"(40.63344, -73.947754)",,,2126 NOSTRAND AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479620,Bus,Sedan,,, +11/20/2021,9:14,QUEENS,11414,40.66243,-73.853386,"(40.66243, -73.853386)",156 AVENUE,80 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479662,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,7:00,BROOKLYN,11223,40.608643,-73.96755,"(40.608643, -73.96755)",,,1640 OCEAN PARKWAY,1,0,0,0,1,0,0,0,Following Too Closely,Unspecified,,,,4479756,Bike,,,, +11/20/2021,14:50,BRONX,10451,40.821823,-73.915665,"(40.821823, -73.915665)",,,391 EAST 157 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479789,Taxi,,,, +11/20/2021,18:30,,,40.77674,-73.79996,"(40.77674, -73.79996)",23 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479260,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,9:40,QUEENS,11358,40.765358,-73.80237,"(40.765358, -73.80237)",163 STREET,35 AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4479231,Sedan,Sedan,,, +04/19/2022,12:06,BROOKLYN,11237,40.70239,-73.924644,"(40.70239, -73.924644)",WILLOUGHBY AVENUE,KNICKERBOCKER AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4520914,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/20/2021,20:00,BRONX,10459,40.824116,-73.898865,"(40.824116, -73.898865)",,,1022 STEBBINS AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479254,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,10:35,QUEENS,11358,40.765285,-73.80144,"(40.765285, -73.80144)",35 AVENUE,164 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4479232,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +10/21/2021,8:00,,,,,,LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480020,Van,,,, +11/20/2021,16:20,QUEENS,11436,40.68384,-73.802574,"(40.68384, -73.802574)",LINDEN BOULEVARD,141 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479279,Sedan,,,, +11/20/2021,6:25,,,,,,avenue D,linden boulevard,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4479211,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/20/2021,3:50,,,40.804745,-73.91194,"(40.804745, -73.91194)",MAJOR DEEGAN EXPRESSWAY,,,2,0,2,0,0,0,0,0,Unsafe Speed,,,,,4479788,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,23:40,,,40.68888,-73.960014,"(40.68888, -73.960014)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4479478,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/20/2021,22:23,QUEENS,11373,40.74436,-73.86985,"(40.74436, -73.86985)",,,94-39 44 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479564,Sedan,,,, +11/20/2021,19:55,BROOKLYN,11207,40.679333,-73.888306,"(40.679333, -73.888306)",,,120 JEROME STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479840,Sedan,,,, +11/20/2021,15:00,STATEN ISLAND,10310,40.634747,-74.11226,"(40.634747, -74.11226)",CASTLETON AVENUE,BEMENT AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479678,Sedan,Sedan,,, +11/20/2021,16:50,,,40.699383,-73.79451,"(40.699383, -73.79451)",SOUTH ROAD,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479818,E-Bike,Sedan,,, +11/20/2021,11:40,QUEENS,11413,40.662006,-73.7546,"(40.662006, -73.7546)",225 STREET,145 ROAD,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479223,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,9:00,,,40.74413,-73.927055,"(40.74413, -73.927055)",38 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479268,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,4:30,,,40.65463,-73.92201,"(40.65463, -73.92201)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479418,Sedan,Bike,,, +11/20/2021,22:45,QUEENS,11414,40.64912,-73.837395,"(40.64912, -73.837395)",CROSS BAY BOULEVARD,165 AVENUE,,2,0,0,0,0,0,2,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4479660,Sedan,Sedan,Sedan,Sedan, +11/17/2021,10:00,BRONX,10459,40.83536,-73.88202,"(40.83536, -73.88202)",SHERIDAN EXPRESSWAY,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479944,tk,Sedan,,, +11/20/2021,18:32,,,40.69608,-73.9694,"(40.69608, -73.9694)",CLINTON AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479290,Station Wagon/Sport Utility Vehicle,Bike,,, +11/20/2021,11:17,BROOKLYN,11214,40.60242,-73.99459,"(40.60242, -73.99459)",86 STREET,BAY 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479359,Station Wagon/Sport Utility Vehicle,Bus,,, +11/17/2021,19:38,MANHATTAN,10021,40.767494,-73.95933,"(40.767494, -73.95933)",EAST 70 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4480055,Tanker,Sedan,,, +11/20/2021,16:07,,,40.707893,-73.84889,"(40.707893, -73.84889)",JACKIE ROBINSON PKWY,,,1,0,0,0,0,0,1,0,Fatigued/Drowsy,,,,,4479238,Sedan,,,, +11/20/2021,9:30,QUEENS,11377,40.752636,-73.90323,"(40.752636, -73.90323)",,,33-41 58 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479908,Sedan,,,, +11/20/2021,0:05,QUEENS,11412,40.692566,-73.763954,"(40.692566, -73.763954)",MEXICO STREET,DUNKIRK DRIVE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4479718,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,12:15,BROOKLYN,11218,40.645107,-73.97989,"(40.645107, -73.97989)",MC DONALD AVENUE,ALBEMARLE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479770,Taxi,,,, +11/05/2021,21:59,BROOKLYN,11224,40.577244,-74.00004,"(40.577244, -74.00004)",WEST 33 STREET,NEPTUNE AVENUE,,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,,,,4479900,Sedan,Bus,,, +11/15/2021,19:33,QUEENS,11419,40.691895,-73.81917,"(40.691895, -73.81917)",101 AVENUE,127 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4480011,Sedan,,,, +11/20/2021,15:55,MANHATTAN,10018,40.755337,-73.99859,"(40.755337, -73.99859)",,,450 10 AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479456,Sedan,Box Truck,,, +11/05/2021,22:30,BROOKLYN,11207,40.67591,-73.89492,"(40.67591, -73.89492)",ATLANTIC AVENUE,VERMONT STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479973,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,11:30,BRONX,10466,40.893246,-73.85407,"(40.893246, -73.85407)",BARNES AVENUE,EAST 234 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479547,Sedan,,,, +11/20/2021,21:15,QUEENS,11368,40.75746,-73.86093,"(40.75746, -73.86093)",,,33-13 108 STREET,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479377,Sedan,Sedan,,, +11/20/2021,6:40,,,40.820145,-73.890656,"(40.820145, -73.890656)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4479639,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,9:58,,,40.899616,-73.89357,"(40.899616, -73.89357)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479295,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/20/2021,2:50,BRONX,10458,40.863647,-73.8918,"(40.863647, -73.8918)",EAST 193 STREET,MARION AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4479924,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,Taxi, +11/20/2021,21:00,,,40.75108,-73.74915,"(40.75108, -73.74915)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4479587,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,0:54,,,40.74026,-74.005875,"(40.74026, -74.005875)",WEST 13 STREET,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4479401,Sedan,Taxi,,, +11/20/2021,14:35,MANHATTAN,10034,40.863792,-73.91942,"(40.863792, -73.91942)",WEST 206 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479592,Sedan,E-Bike,,, +11/20/2021,12:00,BROOKLYN,11233,40.679146,-73.92657,"(40.679146, -73.92657)",FULTON STREET,SUMPTER STREET,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4479538,Sedan,Sedan,Sedan,, +11/13/2021,8:20,,,40.610676,-74.111015,"(40.610676, -74.111015)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4479982,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,0:47,,,40.767612,-73.927826,"(40.767612, -73.927826)",23 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479168,Sedan,E-Bike,,, +11/20/2021,1:30,,,40.839767,-73.905396,"(40.839767, -73.905396)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480072,Taxi,Sedan,,, +11/20/2021,14:15,,,40.843365,-73.91545,"(40.843365, -73.91545)",JEROME AVENUE,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,,,,4479329,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,19:23,MANHATTAN,10022,40.76092,-73.96704,"(40.76092, -73.96704)",EAST 58 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479879,Taxi,E-Bike,,, +11/18/2021,6:50,,,40.681515,-73.90412,"(40.681515, -73.90412)",BUSHWICK AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479956,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,1:35,,,40.73973,-73.81762,"(40.73973, -73.81762)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,Following Too Closely,,,,4479186,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/11/2021,7:30,MANHATTAN,10016,40.74036,-73.97318,"(40.74036, -73.97318)",EAST 30 STREET,FDR DRIVE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479998,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,8:36,,,,,,WEST 246 STREET,HUDSON PARKWAY,,0,0,0,0,0,0,0,0,Glare,Unspecified,,,,4479294,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,20:15,BROOKLYN,11221,40.69268,-73.93998,"(40.69268, -73.93998)",MARCUS GARVEY BOULEVARD,DE KALB AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479540,Sedan,,,, +11/20/2021,13:24,,,,,,BRONX WHITESTONE BRIDGE,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,Unspecified,,,4480097,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle,, +11/20/2021,19:40,BRONX,10462,40.836754,-73.8523,"(40.836754, -73.8523)",,,1513 CASTLE HILL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479380,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,14:07,MANHATTAN,10018,40.75529,-73.99493,"(40.75529, -73.99493)",WEST 37 STREET,9 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479867,Taxi,,,, +11/19/2021,2:15,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479922,Sedan,,,, +11/20/2021,20:54,MANHATTAN,10036,40.758797,-73.993546,"(40.758797, -73.993546)",,,420 WEST 42 STREET,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Unspecified,,,,4479446,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/09/2021,10:15,BROOKLYN,11212,40.67066,-73.904205,"(40.67066, -73.904205)",POWELL STREET,PITKIN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4480054,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,5:47,QUEENS,11418,40.693035,-73.83737,"(40.693035, -73.83737)",,,91-21 109 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479237,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/20/2021,18:54,BRONX,10459,40.820515,-73.89998,"(40.820515, -73.89998)",,,871 WESTCHESTER AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,,4479256,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,17:30,MANHATTAN,10029,40.794613,-73.9321,"(40.794613, -73.9321)",,,545 EAST 116 STREET,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479708,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,17:56,BROOKLYN,11223,40.595886,-73.98315,"(40.595886, -73.98315)",AVENUE U,WEST 12 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479318,Station Wagon/Sport Utility Vehicle,Bike,,, +11/20/2021,18:50,BROOKLYN,11208,40.668682,-73.86814,"(40.668682, -73.86814)",,,2602 LINDEN BOULEVARD,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479834,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,21:30,MANHATTAN,10019,40.767986,-73.989944,"(40.767986, -73.989944)",,,498 WEST 55 STREET,2,0,0,0,0,0,2,0,Lost Consciousness,Unspecified,Unspecified,Unspecified,Unspecified,4480104,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Taxi,Station Wagon/Sport Utility Vehicle +11/20/2021,11:30,,,40.765625,-73.7244,"(40.765625, -73.7244)",LITTLE NECK PARKWAY,NASSAU BOULEVARD,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479227,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,13:45,BROOKLYN,11222,40.725174,-73.951584,"(40.725174, -73.951584)",,,694 MANHATTAN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479603,Dump,Sedan,,, +11/20/2021,4:04,QUEENS,11103,40.7652,-73.91395,"(40.7652, -73.91395)",,,28-44 STEINWAY STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4479722,Sedan,,,, +11/20/2021,11:27,,,40.8165,-73.946556,"(40.8165, -73.946556)",WEST 135 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4479246,Box Truck,Sedan,,, +11/20/2021,14:20,MANHATTAN,10011,40.735252,-73.99594,"(40.735252, -73.99594)",,,39 WEST 12 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479413,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,7:54,BRONX,10456,40.827873,-73.9088,"(40.827873, -73.9088)",,,1074 WASHINGTON AVENUE,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4479945,,,,, +11/08/2021,18:43,BROOKLYN,11231,40.674408,-74.00698,"(40.674408, -74.00698)",,,70 LORRAINE STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4480007,Sedan,,,, +11/20/2021,2:00,BROOKLYN,11208,40.681465,-73.86592,"(40.681465, -73.86592)",,,387 ELDERTS LANE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479850,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,20:45,QUEENS,11422,40.665318,-73.73431,"(40.665318, -73.73431)",SOUTH CONDUIT AVENUE,245 STREET,,7,0,0,0,0,0,7,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479305,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/20/2021,22:50,,,40.66552,-73.74467,"(40.66552, -73.74467)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4479423,Sedan,Sedan,,, +11/20/2021,15:30,BRONX,10468,40.878056,-73.892136,"(40.878056, -73.892136)",GOULDEN AVENUE,WEST 205 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4479935,Sedan,Bike,,, +11/20/2021,9:33,STATEN ISLAND,10305,40.606884,-74.06872,"(40.606884, -74.06872)",,,30 MERLE PLACE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479677,Sedan,,,, +11/20/2021,1:30,STATEN ISLAND,10308,40.55858,-74.14755,"(40.55858, -74.14755)",GREAVES AVENUE,NAHANT STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4479191,Sedan,Sedan,,, +11/20/2021,7:05,BROOKLYN,11231,40.679253,-73.99742,"(40.679253, -73.99742)",,,432 COURT STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479812,Pick-up Truck,,,, +11/20/2021,2:11,BROOKLYN,11203,40.656643,-73.930565,"(40.656643, -73.930565)",,,835 CLARKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479745,Sedan,Sedan,,, +11/20/2021,19:11,BROOKLYN,11221,40.696667,-73.92824,"(40.696667, -73.92824)",CEDAR STREET,EVERGREEN AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4479619,Sedan,,,, +11/20/2021,20:30,BRONX,10473,40.818882,-73.84488,"(40.818882, -73.84488)",,,535 HAVEMEYER AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479473,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,0:00,QUEENS,11432,40.706654,-73.79803,"(40.706654, -73.79803)",,,89-45 163 STREET,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480018,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,13:54,BRONX,10466,40.89492,-73.85314,"(40.89492, -73.85314)",PITMAN AVENUE,BARNES AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479560,,,,, +11/19/2021,13:00,BRONX,10459,40.8339,-73.883514,"(40.8339, -73.883514)",WEST FARMS ROAD,EAST 173 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479937,Sedan,Sedan,,, +11/20/2021,18:40,,,40.617645,-74.00304,"(40.617645, -74.00304)",BAY RIDGE PARKWAY,,,1,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4479358,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/20/2021,19:00,BROOKLYN,11208,40.668716,-73.88129,"(40.668716, -73.88129)",,,678 LINWOOD STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479835,Sedan,Sedan,,, +11/20/2021,6:00,BROOKLYN,11205,40.693188,-73.9715,"(40.693188, -73.9715)",,,368 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4479904,Sedan,Sedan,,, +11/20/2021,22:50,,,40.728848,-73.75087,"(40.728848, -73.75087)",GRAND CENTRAL PKWY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4479422,Sedan,,,, +11/20/2021,13:49,BROOKLYN,11217,40.68405,-73.97746,"(40.68405, -73.97746)",ATLANTIC AVENUE,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479755,Sedan,Sedan,,, +11/20/2021,9:14,,,40.692856,-73.78531,"(40.692856, -73.78531)",111 AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4479207,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,15:27,QUEENS,11368,40.75254,-73.85261,"(40.75254, -73.85261)",ROOSEVELT AVENUE,114 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479573,Sedan,Bike,,, +11/20/2021,14:10,QUEENS,11354,40.75814,-73.83517,"(40.75814, -73.83517)",ROOSEVELT AVENUE,JANET PLACE,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4479259,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/20/2021,20:26,MANHATTAN,10034,40.865482,-73.92088,"(40.865482, -73.92088)",,,210 SHERMAN AVENUE,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4479593,Sedan,Sedan,Sedan,, +11/20/2021,19:02,BRONX,10452,40.834415,-73.92854,"(40.834415, -73.92854)",OGDEN AVENUE,WEST 165 STREET,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4479327,Taxi,Bike,,, +11/20/2021,13:40,QUEENS,11368,40.7474,-73.85355,"(40.7474, -73.85355)",,,47-01 111 STREET,1,0,0,0,0,0,1,0,Backing Unsafely,Unspecified,,,,4479572,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +10/30/2021,12:46,MANHATTAN,10016,40.74788,-73.97543,"(40.74788, -73.97543)",EAST 38 STREET,QUEENS MIDTOWN TUNNEL EXIT,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4479970,Taxi,Bike,,, +11/20/2021,18:30,MANHATTAN,10017,40.75478,-73.97994,"(40.75478, -73.97994)",5 AVENUE,WEST 44 STREET,,2,0,2,0,0,0,0,0,Unspecified,,,,,4479455,Taxi,,,, +11/18/2021,8:30,,,40.610508,-74.09576,"(40.610508, -74.09576)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Following Too Closely,Unspecified,,,4479983,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/20/2021,3:20,QUEENS,11369,40.758675,-73.87537,"(40.758675, -73.87537)",,,93-01 32 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479174,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,11:45,,,40.826427,-73.950455,"(40.826427, -73.950455)",WEST 145 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480075,Box Truck,Sedan,,, +11/18/2021,13:20,QUEENS,11363,40.771496,-73.73913,"(40.771496, -73.73913)",,,250-44 41 DRIVE,1,0,1,0,0,0,0,0,,,,,,4479878,,,,, +11/20/2021,8:25,QUEENS,11105,40.77496,-73.913704,"(40.77496, -73.913704)",,,29-05 23 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479727,Sedan,Bike,,, +11/20/2021,18:30,,,40.788315,-73.9765,"(40.788315, -73.9765)",BROADWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479244,Sedan,Bus,,, +11/20/2021,12:35,MANHATTAN,10011,40.73986,-73.995026,"(40.73986, -73.995026)",WEST 18 STREET,AVENUE OF THE AMERICAS,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479247,Bus,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,21:30,BRONX,10459,40.81761,-73.89842,"(40.81761, -73.89842)",,,950 LONGWOOD AVENUE,1,0,0,0,0,0,1,0,Aggressive Driving/Road Rage,Unspecified,,,,4479642,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,17:26,,,40.718857,-73.946236,"(40.718857, -73.946236)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4480067,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/20/2021,5:17,QUEENS,11101,40.742443,-73.93023,"(40.742443, -73.93023)",35 STREET,47 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479267,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/20/2021,10:15,MANHATTAN,10029,40.797,-73.93778,"(40.797, -73.93778)",2 AVENUE,EAST 116 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479709,Box Truck,Station Wagon/Sport Utility Vehicle,Taxi,, +11/20/2021,5:07,,,40.547733,-74.15606,"(40.547733, -74.15606)",AMBOY ROAD,,,2,0,0,0,0,0,2,0,Animals Action,,,,,4479302,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,11:26,BROOKLYN,11218,40.643166,-73.9905,"(40.643166, -73.9905)",39 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479771,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,10:00,BROOKLYN,11236,40.64485,-73.911125,"(40.64485, -73.911125)",REMSEN AVENUE,FOSTER AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,Unspecified,,4479215,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,18:20,QUEENS,11426,40.72375,-73.72649,"(40.72375, -73.72649)",JAMAICA AVENUE,241 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479643,Sedan,Sedan,,, +11/20/2021,23:49,MANHATTAN,10016,40.748135,-73.97793,"(40.748135, -73.97793)",,,143 EAST 37 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479760,Taxi,Sedan,,, +11/20/2021,1:00,BROOKLYN,11208,40.674732,-73.87253,"(40.674732, -73.87253)",,,97 DOSCHER STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479832,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,4:07,QUEENS,11358,40.768776,-73.792465,"(40.768776, -73.792465)",UTOPIA PARKWAY,32 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479228,Sedan,Sedan,,, +11/20/2021,9:59,,,40.698536,-73.91788,"(40.698536, -73.91788)",KNICKERBOCKER AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479265,Station Wagon/Sport Utility Vehicle,Bike,,, +11/20/2021,22:23,QUEENS,11101,40.74413,-73.927055,"(40.74413, -73.927055)",QUEENS BOULEVARD,38 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479292,Bike,Sedan,,, +11/20/2021,20:30,QUEENS,11385,40.692802,-73.893524,"(40.692802, -73.893524)",,,80-84 59 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,,4479541,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,15:10,,,40.76226,-73.75699,"(40.76226, -73.75699)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Driver Inattention/Distraction,,,,4479877,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,23:00,,,40.753895,-73.79827,"(40.753895, -73.79827)",169 STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4480033,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,8:50,,,40.662357,-73.73517,"(40.662357, -73.73517)",MEMPHIS AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479234,Sedan,Sedan,,, +11/20/2021,20:36,BROOKLYN,11229,40.605797,-73.95773,"(40.605797, -73.95773)",AVENUE R,EAST 15 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479319,Sedan,,,, +11/20/2021,4:04,,,40.866726,-73.89799,"(40.866726, -73.89799)",JEROME AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,,,,,4479201,Taxi,,,, +11/20/2021,20:24,,,40.756424,-73.7403,"(40.756424, -73.7403)",LONG ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Lane Changing,Unspecified,Unspecified,Unspecified,,4479281,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,13:00,QUEENS,11101,40.746296,-73.93041,"(40.746296, -73.93041)",43 AVENUE,34 STREET,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4479631,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,18:30,,,40.73873,-73.81428,"(40.73873, -73.81428)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479272,Sedan,,,, +11/18/2021,22:32,,,40.761856,-73.96343,"(40.761856, -73.96343)",2 AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479968,Sedan,,,, +11/20/2021,10:24,BROOKLYN,11230,40.619396,-73.969574,"(40.619396, -73.969574)",OCEAN PARKWAY,AVENUE L,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479777,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,7:13,BRONX,10472,40.834682,-73.86635,"(40.834682, -73.86635)",,,1810 CROSS BRONX EXPRESSWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4479382,Box Truck,,,, +11/20/2021,21:30,,,,,,VANWYCK EXPRESSWAY,JAMAICA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479690,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,17:14,BRONX,10460,40.83919,-73.87793,"(40.83919, -73.87793)",,,346 DEVOE AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479811,Taxi,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,18:50,,,,,,FDR DRIVE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479754,Sedan,Sedan,,, +11/20/2021,21:30,,,40.675755,-73.95977,"(40.675755, -73.95977)",PROSPECT PLACE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479500,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/17/2021,6:00,BRONX,10460,40.843906,-73.88047,"(40.843906, -73.88047)",VYSE AVENUE,EAST 180 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4479917,Sedan,,,, +11/20/2021,3:00,,,,,,LEXINGTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480103,Sedan,Sedan,,, +11/20/2021,18:28,BRONX,10464,40.86514,-73.801544,"(40.86514, -73.801544)",,,1 ORCHARD BEACH ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4479371,Station Wagon/Sport Utility Vehicle,,,, +11/03/2021,9:05,BRONX,10460,40.83116,-73.8871,"(40.83116, -73.8871)",,,1001 JENNINGS STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4479947,Sedan,Box Truck,,, +11/20/2021,23:39,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479348,Sedan,,,, +11/20/2021,4:34,BRONX,10461,40.84257,-73.85253,"(40.84257, -73.85253)",,,2425 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479188,Sedan,Sedan,,, +11/20/2021,23:20,,,,,,ROCKAWAY POINT BOULEVARD,BEACH 184 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4479984,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,19:45,,,,,,WESTCHESTER AVENUE,LONGWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479257,Tractor Truck Diesel,,,, +11/20/2021,23:25,,,40.667236,-73.770004,"(40.667236, -73.770004)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479427,Sedan,Sedan,,, +11/20/2021,2:30,,,40.761658,-73.986565,"(40.761658, -73.986565)",WEST 49 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480100,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,12:45,BROOKLYN,11206,40.69979,-73.950096,"(40.69979, -73.950096)",MARCY AVENUE,FLUSHING AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479883,Sedan,,,, +11/20/2021,11:34,MANHATTAN,10039,40.82803,-73.934845,"(40.82803, -73.934845)",WEST 155 STREET,MACOMBS PLACE,,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4479452,Taxi,Sedan,,, +11/20/2021,22:10,,,40.70183,-73.91933,"(40.70183, -73.91933)",STANHOPE STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479616,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,15:40,,,40.851936,-73.91078,"(40.851936, -73.91078)",WEST TREMONT AVENUE,,,1,0,0,0,0,0,1,0,Following Too Closely,,,,,4479905,Van,,,, +11/20/2021,17:03,MANHATTAN,10014,40.729824,-74.010605,"(40.729824, -74.010605)",WEST STREET,CLARKSON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479405,Sedan,Sedan,,, +11/20/2021,21:36,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Aggressive Driving/Road Rage,,,4479309,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,10:55,,,40.67251,-73.873726,"(40.67251, -73.873726)",SUTTER AVENUE,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479977,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/16/2021,13:23,,,40.7375,-73.93385,"(40.7375, -73.93385)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4480003,Station Wagon/Sport Utility Vehicle,Flat Bed,,, +11/20/2021,17:20,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4479675,Sedan,Sedan,,, +11/20/2021,12:45,BROOKLYN,11208,40.660797,-73.87183,"(40.660797, -73.87183)",COZINE AVENUE,ATKINS AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4479851,Sedan,Station Wagon/Sport Utility Vehicle,Dump,, +11/20/2021,13:00,,,40.7531,-73.72422,"(40.7531, -73.72422)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479468,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/20/2021,15:00,QUEENS,11368,40.746098,-73.866425,"(40.746098, -73.866425)",97 PLACE,43 AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4479574,Sedan,,,, +11/19/2021,16:30,,,40.60719,-74.16243,"(40.60719, -74.16243)",RICHMOND AVENUE,VICTORY BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479933,Sedan,Sedan,,, +11/20/2021,11:30,MANHATTAN,10034,40.863556,-73.91962,"(40.863556, -73.91962)",10 AVENUE,NAGLE AVENUE,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4479596,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,15:49,,,40.827927,-73.90094,"(40.827927, -73.90094)",TINTON AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479941,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,3:20,QUEENS,11369,,,,,,30-46 86 STREET,0,0,0,0,0,0,0,0,Physical Disability,Unspecified,,,,4479175,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,21:35,,,40.818233,-73.95273,"(40.818233, -73.95273)",WEST 134 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480078,Sedan,Sedan,,, +11/02/2021,7:00,QUEENS,11385,40.704407,-73.863945,"(40.704407, -73.863945)",,,78-57 85 STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479980,Sedan,,,, +11/20/2021,6:20,BRONX,10464,40.859245,-73.81814,"(40.859245, -73.81814)",SHORE ROAD,PELHAM PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479370,Sedan,Sedan,,, +11/20/2021,8:52,QUEENS,11101,40.75475,-73.93678,"(40.75475, -73.93678)",CRESCENT STREET,39 AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,,,,4479728,Sedan,Bike,,, +11/20/2021,10:05,BROOKLYN,11213,40.663948,-73.93159,"(40.663948, -73.93159)",,,426 UTICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479248,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/20/2021,21:45,,,40.660954,-73.960686,"(40.660954, -73.960686)",FLATBUSH AVENUE,,,4,0,0,0,0,0,4,0,Failure to Yield Right-of-Way,Driver Inattention/Distraction,Unspecified,,,4479712,Bus,Sedan,Sedan,, +11/16/2021,8:30,,,40.699787,-73.813644,"(40.699787, -73.813644)",91 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4480017,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,11:15,MANHATTAN,10022,40.758327,-73.96894,"(40.758327, -73.96894)",EAST 54 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4479885,Sedan,Taxi,Box Truck,, +11/20/2021,5:15,,,,,,WESTCHESTER AVENUE,SHERIDAN EXPRESSWAY,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479486,Station Wagon/Sport Utility Vehicle,Bike,,, +11/20/2021,17:30,,,40.659702,-73.8786,"(40.659702, -73.8786)",ASHFORD STREET,,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Other Vehicular,Other Vehicular,Other Vehicular,Other Vehicular,4479836,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/20/2021,15:00,BRONX,10459,40.820057,-73.90086,"(40.820057, -73.90086)",EAST 161 STREET,WESTCHESTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479635,Sedan,,,, +11/20/2021,21:53,QUEENS,11374,40.732582,-73.86806,"(40.732582, -73.86806)",QUEENS BOULEVARD,ELIOT AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479270,Motorcycle,Sedan,,, +11/20/2021,19:27,MANHATTAN,10002,40.717194,-73.98411,"(40.717194, -73.98411)",DELANCEY STREET,RIDGE STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479300,Van,Bike,,, +11/20/2021,10:58,BROOKLYN,11232,40.66326,-73.99512,"(40.66326, -73.99512)",4 AVENUE,20 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479216,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,17:56,,,40.700775,-73.91334,"(40.700775, -73.91334)",WYCKOFF AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479648,Sedan,,,, +11/20/2021,23:20,BROOKLYN,11212,40.654133,-73.91234,"(40.654133, -73.91234)",ROCKAWAY PARKWAY,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4479420,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,17:35,BRONX,10459,40.82757,-73.88998,"(40.82757, -73.88998)",,,1149 VYSE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480062,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,13:00,QUEENS,11434,40.691895,-73.77822,"(40.691895, -73.77822)",172 STREET,LINDEN BOULEVARD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479276,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,21:30,QUEENS,11692,40.59052,-73.805336,"(40.59052, -73.805336)",ROCKAWAY FREEWAY,BEACH 79 STREET,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4479312,Sedan,,,, +11/20/2021,17:00,BROOKLYN,11208,40.674664,-73.87698,"(40.674664, -73.87698)",,,2578 PITKIN AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479853,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,6:50,,,40.755516,-73.961105,"(40.755516, -73.961105)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Driver Inexperience,,,,,4479761,Sedan,,,, +11/20/2021,17:52,BROOKLYN,11230,40.611954,-73.96817,"(40.611954, -73.96817)",OCEAN PARKWAY,AVENUE O,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479779,Sedan,Sedan,,, +11/20/2021,9:50,BROOKLYN,11216,40.6884,-73.95118,"(40.6884, -73.95118)",GREENE AVENUE,NOSTRAND AVENUE,,0,0,0,0,0,0,0,0,Glare,,,,,4479214,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,2:30,QUEENS,11368,40.74335,-73.86369,"(40.74335, -73.86369)",ALSTYNE AVENUE,98 PLACE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,,4479570,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,18:20,BROOKLYN,11234,40.62327,-73.9322,"(40.62327, -73.9322)",FLATLANDS AVENUE,AVENUE L,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479243,Sedan,,,, +11/20/2021,20:52,QUEENS,11414,40.668556,-73.84714,"(40.668556, -73.84714)",88 STREET,151 AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479674,Sedan,Sedan,,, +11/20/2021,3:25,MANHATTAN,10002,40.712353,-73.984955,"(40.712353, -73.984955)",MONROE STREET,MONTGOMERY STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479196,Taxi,,,, +11/20/2021,22:30,BROOKLYN,11223,40.601162,-73.961426,"(40.601162, -73.961426)",,,2292 CONEY ISLAND AVENUE,5,0,0,0,0,0,5,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4479322,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/20/2021,19:00,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479757,Sedan,,,, +11/20/2021,22:45,QUEENS,11355,40.751835,-73.82427,"(40.751835, -73.82427)",COLDEN STREET,ELDER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479629,Sedan,,,, +11/20/2021,18:40,QUEENS,11357,40.776997,-73.8148,"(40.776997, -73.8148)",WILLETS POINT BOULEVARD,150 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479261,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/20/2021,15:30,,,40.65319,-73.96622,"(40.65319, -73.96622)",PARKSIDE AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480001,Sedan,,,, +10/20/2021,16:47,BRONX,10467,,,,,,3604 JEROME AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479948,Bus,Sedan,Sedan,, +11/20/2021,11:02,MANHATTAN,10001,40.753525,-73.994545,"(40.753525, -73.994545)",,,357 WEST 35 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479434,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/20/2021,17:50,,,40.824913,-73.8689,"(40.824913, -73.8689)",BRUCKNER EXPRESSWAY,,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,,4479387,Taxi,Sedan,Pick-up Truck,Sedan, +04/19/2022,21:56,MANHATTAN,10013,40.72223,-74.01074,"(40.72223, -74.01074)",,,78 LAIGHT STREET,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4520453,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,12:16,MANHATTAN,10022,40.762177,-73.96613,"(40.762177, -73.96613)",EAST 60 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4479916,Sedan,Bike,,, +11/20/2021,18:22,MANHATTAN,10018,40.753746,-73.98861,"(40.753746, -73.98861)",,,527 7 AVENUE,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479454,Sedan,Sedan,,, +11/20/2021,3:25,QUEENS,11356,40.781677,-73.83871,"(40.781677, -73.83871)",130 STREET,20 AVENUE,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479258,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,10:20,QUEENS,11355,40.742573,-73.81608,"(40.742573, -73.81608)",153 STREET,58 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4479233,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,18:21,,,40.67376,-73.73431,"(40.67376, -73.73431)",LAURELTON PARKWAY,,,0,1,0,0,0,0,0,1,Illnes,,,,,4480021,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,2:30,,,,,,NASSAU EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479681,Sedan,,,, +11/20/2021,4:05,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479808,Sedan,Pick-up Truck,,, +11/20/2021,13:00,QUEENS,11362,40.765873,-73.72489,"(40.765873, -73.72489)",,,54-44 LITTLE NECK PARKWAY,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4479282,Dump,,,, +11/20/2021,12:30,MANHATTAN,10027,40.810993,-73.95429,"(40.810993, -73.95429)",HANCOCK PLACE,MORNINGSIDE AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479523,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/20/2021,8:34,MANHATTAN,10075,40.77364,-73.95986,"(40.77364, -73.95986)",EAST 77 STREET,LEXINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479752,Sedan,,,, +11/20/2021,20:50,BROOKLYN,11211,40.715355,-73.9496,"(40.715355, -73.9496)",,,617 LORIMER STREET,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4479605,Sedan,Box Truck,,, +11/20/2021,13:51,BROOKLYN,11234,40.619984,-73.92311,"(40.619984, -73.92311)",,,1550 EAST 54 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479229,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,7:12,BRONX,10461,40.853226,-73.8566,"(40.853226, -73.8566)",,,1083 NEILL AVENUE,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4479189,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/20/2021,17:25,,,40.634506,-73.949455,"(40.634506, -73.949455)",FLATBUSH AVENUE,GLENWOOD ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479342,Sedan,Pick-up Truck,,, +11/20/2021,18:00,QUEENS,11379,40.712452,-73.882065,"(40.712452, -73.882065)",METROPOLITAN AVENUE,PLEASANTVIEW STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479544,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,21:05,BROOKLYN,11205,40.689507,-73.97014,"(40.689507, -73.97014)",DE KALB AVENUE,CLERMONT AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4479291,Sedan,Bike,,, +11/20/2021,9:20,QUEENS,11375,40.71201,-73.84994,"(40.71201, -73.84994)",MANSE STREET,71 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479964,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/18/2021,11:58,QUEENS,11432,40.711834,-73.78746,"(40.711834, -73.78746)",,,175-06 HILLSIDE AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4479989,Sedan,,,, +11/20/2021,0:08,,,40.59864,-74.13884,"(40.59864, -74.13884)",,,24 DOROTHY STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479881,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/14/2021,12:05,MANHATTAN,10022,40.759132,-73.97642,"(40.759132, -73.97642)",,,645 5 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480101,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,17:20,QUEENS,11372,40.75663,-73.875145,"(40.75663, -73.875145)",NORTHERN BOULEVARD,93 STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479374,Station Wagon/Sport Utility Vehicle,Bike,,, +10/17/2021,15:41,BROOKLYN,11231,,,,WOODHULL STREET,HAMILTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479906,Sedan,,,, +11/20/2021,19:30,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479659,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,7:12,BROOKLYN,11237,40.712357,-73.92708,"(40.712357, -73.92708)",,,525 STAGG STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479252,Sedan,,,, +11/20/2021,21:15,,,40.769604,-73.91139,"(40.769604, -73.91139)",38 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479730,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:08,BRONX,10451,40.82419,-73.91385,"(40.82419, -73.91385)",MELROSE AVENUE,EAST 161 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480057,Sedan,,,, +11/20/2021,10:11,BRONX,10474,40.809628,-73.890045,"(40.809628, -73.890045)",OAK POINT AVENUE,TIFFANY STREET,,0,0,0,0,0,0,0,0,Driver Inexperience,Oversized Vehicle,,,,4479638,Van,Tractor Truck Diesel,,, +11/20/2021,15:17,MANHATTAN,10019,40.765015,-73.98484,"(40.765015, -73.98484)",,,306 WEST 54 STREET,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4479242,Sedan,Sedan,,, +11/20/2021,19:51,QUEENS,11434,40.66743,-73.76676,"(40.66743, -73.76676)",FARMERS BOULEVARD,NORTH CONDUIT AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479277,Sedan,Sedan,,, +11/20/2021,3:20,BRONX,10457,40.84664,-73.89606,"(40.84664, -73.89606)",,,531 EAST TREMONT AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479821,,,,, +11/20/2021,8:40,BRONX,10451,40.82049,-73.92266,"(40.82049, -73.92266)",PARK AVENUE,EAST 153 STREET,,3,0,0,0,0,0,3,0,Alcohol Involvement,Unspecified,,,,4479785,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,12:45,QUEENS,11428,40.716133,-73.75138,"(40.716133, -73.75138)",94 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479222,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,15:30,MANHATTAN,10019,40.761013,-73.98506,"(40.761013, -73.98506)",,,224 WEST 49 STREET,1,0,0,0,1,0,0,0,Passenger Distraction,Unspecified,,,,4480102,Box Truck,Bike,,, +11/19/2021,11:42,MANHATTAN,10022,40.759586,-73.968056,"(40.759586, -73.968056)",EAST 56 STREET,3 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479886,Sedan,,,, +11/20/2021,23:30,MANHATTAN,10027,40.81387,-73.95669,"(40.81387, -73.95669)",,,511 WEST 125 STREET,1,0,1,0,0,0,0,0,,,,,,4479460,,,,, +11/19/2021,8:50,MANHATTAN,10019,40.763866,-73.98016,"(40.763866, -73.98016)",,,150 WEST 55 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4479976,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/13/2021,8:47,,,40.61054,-74.103455,"(40.61054, -74.103455)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4479981,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,0:20,MANHATTAN,10004,40.705982,-74.01527,"(40.705982, -74.01527)",,,28 WASHINGTON STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479180,Sedan,,,, +11/20/2021,6:16,,,40.753407,-73.852356,"(40.753407, -73.852356)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4479569,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/20/2021,8:45,BROOKLYN,11211,40.714996,-73.94954,"(40.714996, -73.94954)",,,601 LORIMER STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4479601,Sedan,Sedan,Sedan,, +11/01/2021,8:35,BRONX,10455,40.81698,-73.91625,"(40.81698, -73.91625)",,,2914 3 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4480085,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,0:15,BRONX,10461,40.835648,-73.845604,"(40.835648, -73.845604)",HALSEY STREET,ZEREGA AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,,,,4479369,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,17:15,BROOKLYN,11208,40.68598,-73.87484,"(40.68598, -73.87484)",,,104 EUCLID AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479838,Sedan,,,, +11/20/2021,13:00,,,40.638786,-73.94538,"(40.638786, -73.94538)",FOSTER AVENUE,,,4,0,0,0,0,0,4,0,Traffic Control Disregarded,Unspecified,,,,4479419,Station Wagon/Sport Utility Vehicle,Taxi,,, +11/20/2021,17:30,QUEENS,11368,40.749886,-73.86249,"(40.749886, -73.86249)",,,103-14 ROOSEVELT AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479577,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/20/2021,17:36,QUEENS,11101,40.745693,-73.92768,"(40.745693, -73.92768)",,,43-19 37 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4479269,Sedan,,,, +11/20/2021,9:35,BROOKLYN,11206,40.697903,-73.9468,"(40.697903, -73.9468)",TOMPKINS AVENUE,PARK AVENUE,,5,0,0,0,0,0,5,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4479213,Sedan,Ambulance,Sedan,, +11/20/2021,0:10,QUEENS,11416,40.68765,-73.83977,"(40.68765, -73.83977)",,,97-42 104 STREET,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479715,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/19/2022,8:16,QUEENS,11418,40.70784,-73.83684,"(40.70784, -73.83684)",,,115-25 METROPOLITAN AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520250,Sedan,,,, +11/20/2021,21:20,BROOKLYN,11229,40.594563,-73.935,"(40.594563, -73.935)",,,2344 BRAGG STREET,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4479314,Sedan,Sedan,,, +11/20/2021,16:45,MANHATTAN,10002,40.717724,-73.98577,"(40.717724, -73.98577)",DELANCEY STREET,CLINTON STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4479299,Bike,Bike,,, +11/20/2021,4:25,BROOKLYN,11217,40.682823,-73.976585,"(40.682823, -73.976585)",,,166 FLATBUSH AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479763,Sedan,Sedan,,, +11/20/2021,2:53,BROOKLYN,11236,40.643215,-73.90306,"(40.643215, -73.90306)",CONKLIN AVENUE,EAST 95 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479403,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,18:33,,,40.67996,-73.955444,"(40.67996, -73.955444)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Traffic Control Disregarded,,,,4479480,Sedan,Sedan,,, +11/19/2021,14:28,BRONX,10458,40.86607,-73.89439,"(40.86607, -73.89439)",GRAND CONCOURSE,EAST KINGSBRIDGE ROAD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479943,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,1:00,BRONX,10469,40.87986,-73.84863,"(40.87986, -73.84863)",,,1491 NEEDHAM AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479551,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,21:35,,,40.766357,-73.88756,"(40.766357, -73.88756)",82 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479376,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,23:50,,,40.825935,-73.85913,"(40.825935, -73.85913)",BRUCKNER EXPRESSWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,Unspecified,,,4480015,Taxi,Station Wagon/Sport Utility Vehicle,Sedan,, +11/15/2021,11:00,,,40.8518,-73.909225,"(40.8518, -73.909225)",EAST TREMONT AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479907,Ambulance,Motorcycle,,, +11/14/2021,13:00,BRONX,10468,40.865265,-73.8964,"(40.865265, -73.8964)",,,2608 CRESTON AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4479928,Sedan,FIRETRUCK,,, +11/20/2021,18:07,BRONX,10451,40.824806,-73.91352,"(40.824806, -73.91352)",MELROSE AVENUE,EAST 162 STREET,,1,0,1,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4479953,Sedan,,,, +11/20/2021,4:03,BROOKLYN,11237,40.71006,-73.924,"(40.71006, -73.924)",,,230 RANDOLPH STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479442,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,20:30,,,40.63228,-73.937416,"(40.63228, -73.937416)",EAST 40 STREET,AVENUE H,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520959,Sedan,Sedan,,, +04/19/2022,15:45,QUEENS,11411,40.695408,-73.74101,"(40.695408, -73.74101)",219 STREET,LINDEN BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4520387,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,21:05,,,40.814102,-73.940865,"(40.814102, -73.940865)",WEST 135 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520490,,,,, +04/19/2022,6:00,,,40.520916,-74.235115,"(40.520916, -74.235115)",PAGE AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Pavement Slippery,,,,4521011,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/14/2022,1:30,BRONX,10451,40.820263,-73.92976,"(40.820263, -73.92976)",EAST 150 STREET,RIVER AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520880,Tractor Truck Diesel,Sedan,,, +04/19/2022,5:34,QUEENS,11375,40.71626,-73.830734,"(40.71626, -73.830734)",GRAND CENTRAL PARKWAY,78 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520509,Sedan,Sedan,,, +04/19/2022,4:57,,,40.869076,-73.93062,"(40.869076, -73.93062)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4520653,Sedan,,,, +04/14/2022,19:32,BROOKLYN,11238,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,GRAND AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,Traffic Control Device Improper/Non-Working,,,4520886,Sedan,Taxi,,, +04/19/2022,18:06,MANHATTAN,10065,40.76541,-73.96798,"(40.76541, -73.96798)",EAST 63 STREET,PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520479,Sedan,Bike,,, +04/19/2022,10:05,BROOKLYN,11235,40.591602,-73.94995,"(40.591602, -73.94995)",,,2860 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520432,Sedan,Sedan,,, +04/17/2022,21:15,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520946,Taxi,Sedan,,, +04/11/2022,3:36,BROOKLYN,11203,40.643764,-73.92083,"(40.643764, -73.92083)",,,429 EAST 59 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520969,Sedan,,,, +04/19/2022,11:00,,,40.684814,-73.98353,"(40.684814, -73.98353)",DEAN STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520704,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,12:20,QUEENS,11375,40.712635,-73.83462,"(40.712635, -73.83462)",,,118-17 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520846,Sedan,Box Truck,,, +04/19/2022,12:30,BROOKLYN,11237,40.709316,-73.93301,"(40.709316, -73.93301)",MORGAN AVENUE,MESEROLE STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520524,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2022,14:30,,,40.69854,-73.94116,"(40.69854, -73.94116)",PARK AVENUE,,,1,0,0,0,0,0,1,0,Turning Improperly,Following Too Closely,Unspecified,,,4520615,Sedan,Sedan,Sedan,, +04/18/2022,17:55,,,40.784515,-73.94983,"(40.784515, -73.94983)",3 AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Turning Improperly,,,,4521041,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +03/24/2022,16:50,,,40.80534,-73.92095,"(40.80534, -73.92095)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520902,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2022,20:00,,,40.729572,-73.83383,"(40.729572, -73.83383)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4520629,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/19/2022,9:40,,,40.677574,-73.95548,"(40.677574, -73.95548)",DEAN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520908,Carry All,Sedan,,, +04/19/2022,0:23,BROOKLYN,11223,40.59931,-73.972916,"(40.59931, -73.972916)",MC DONALD AVENUE,AVENUE T,,0,0,0,0,0,0,0,0,Pavement Slippery,,,,,4520181,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,14:40,,,,,,VERRAZANO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4521000,Sedan,Sedan,,, +04/09/2022,20:20,,,40.738194,-73.8492,"(40.738194, -73.8492)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520947,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,0:58,MANHATTAN,10029,40.78838,-73.94701,"(40.78838, -73.94701)",3 AVENUE,EAST 101 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520460,Sedan,Sedan,,, +04/16/2022,13:45,,,40.75685,-73.77679,"(40.75685, -73.77679)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520788,Tanker,,,, +04/19/2022,11:30,,,40.811638,-73.9316,"(40.811638, -73.9316)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520351,Sedan,,,, +04/19/2022,22:40,BRONX,10461,40.840717,-73.84052,"(40.840717, -73.84052)",,,2925 EAST TREMONT AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520766,Station Wagon/Sport Utility Vehicle,,,, +04/16/2022,15:00,BRONX,10452,40.836437,-73.91842,"(40.836437, -73.91842)",EAST 168 STREET,WALTON AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520881,Sedan,,,, +04/19/2022,13:40,BROOKLYN,11205,40.699066,-73.95635,"(40.699066, -73.95635)",,,467 FLUSHING AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520537,Bike,Sedan,,, +04/19/2022,8:30,BRONX,10469,40.87388,-73.8478,"(40.87388, -73.8478)",GIVAN AVENUE,SEYMOUR AVENUE,,1,0,1,0,0,0,0,0,Backing Unsafely,,,,,4520593,Station Wagon/Sport Utility Vehicle,,,, +03/25/2022,17:00,STATEN ISLAND,10309,40.54518,-74.21937,"(40.54518, -74.21937)",,,806 BLOOMINGDALE ROAD,0,0,0,0,0,0,0,0,Unspecified,,,,,4520829,Sedan,,,, +04/19/2022,14:20,,,40.85638,-73.82631,"(40.85638, -73.82631)",BRUCKNER EXPRESSWAY,,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,,,4520665,Tractor Truck Gasoline,Station Wagon/Sport Utility Vehicle,Sedan,, +04/19/2022,19:28,QUEENS,11362,40.761757,-73.72406,"(40.761757, -73.72406)",,,256-04 58 AVENUE,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,Unspecified,,,4520404,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +04/19/2022,19:36,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520427,Sedan,Box Truck,,, +04/19/2022,9:42,,,40.756382,-73.96433,"(40.756382, -73.96433)",1 AVENUE,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520312,Station Wagon/Sport Utility Vehicle,Bus,,, +04/08/2022,11:54,BRONX,10460,40.84152,-73.8746,"(40.84152, -73.8746)",EAST 180 STREET,BRONX PARK AVENUE,,1,0,1,0,0,0,0,0,Other Vehicular,Unspecified,,,,4521067,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,8:20,BRONX,10459,40.826256,-73.88881,"(40.826256, -73.88881)",WESTCHESTER AVENUE,BRYANT AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520684,Sedan,Bike,,, +04/19/2022,14:12,BRONX,10458,40.866302,-73.890686,"(40.866302, -73.890686)",,,2705 BAINBRIDGE AVENUE,1,0,1,0,0,0,0,0,Backing Unsafely,Unspecified,Unspecified,Unspecified,,4520485,Sedan,E-Bike,Sedan,Station Wagon/Sport Utility Vehicle, +04/17/2022,14:35,STATEN ISLAND,10312,40.52664,-74.16814,"(40.52664, -74.16814)",HYLAN BOULEVARD,ALLEN PLACE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520992,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +04/19/2022,18:50,,,,,,37 AVENUE,69 STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520406,,,,, +04/19/2022,14:30,BROOKLYN,11223,40.601303,-73.96269,"(40.601303, -73.96269)",,,1927 EAST 9 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520433,Convertible,,,, +04/12/2022,8:37,QUEENS,11374,40.726185,-73.87022,"(40.726185, -73.87022)",WOODHAVEN BOULEVARD,62 ROAD,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520849,Sedan,Taxi,,, +04/19/2022,13:00,BROOKLYN,11207,40.67482,-73.89368,"(40.67482, -73.89368)",LIBERTY AVENUE,WYONA STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520802,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/18/2022,0:09,,,40.676003,-73.865395,"(40.676003, -73.865395)",CONDUIT BOULEVARD,GRANT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520811,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,8:50,QUEENS,11427,40.729034,-73.74387,"(40.729034, -73.74387)",SPRINGFIELD BOULEVARD,89 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520291,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,15:19,,,40.60148,-73.99306,"(40.60148, -73.99306)",86 STREET,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4520605,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,10:10,,,40.762745,-73.83329,"(40.762745, -73.83329)",NORTHERN BOULEVARD,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520343,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,19:00,QUEENS,11378,40.726067,-73.9089,"(40.726067, -73.9089)",59 STREET,MAURICE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520699,Sedan,,,, +04/19/2022,0:00,,,,,,BROOKVILLE BOULEVARD,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Obstruction/Debris,Obstruction/Debris,,,,4520264,Sedan,,,, +04/19/2022,16:18,STATEN ISLAND,10305,40.598934,-74.06377,"(40.598934, -74.06377)",MCCLEAN AVENUE,LILY POND AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4520444,Station Wagon/Sport Utility Vehicle,Bus,,, +04/19/2022,1:15,BROOKLYN,11208,40.68248,-73.88051,"(40.68248, -73.88051)",,,112 HALE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520800,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,8:22,,,,,,QUEENSBORO BRIDGE UPPER,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4479393,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,12:46,MANHATTAN,10017,40.7488,-73.96986,"(40.7488, -73.96986)",EAST 42 STREET,1 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520661,Station Wagon/Sport Utility Vehicle,Bus,,, +04/19/2022,7:23,,,40.72025,-73.834305,"(40.72025, -73.834305)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4520396,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/12/2022,18:00,BRONX,10465,40.821056,-73.81039,"(40.821056, -73.81039)",,,3098 MILES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520968,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,16:50,BROOKLYN,11237,40.701195,-73.91409,"(40.701195, -73.91409)",WYCKOFF AVENUE,MENAHAN STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4520915,Bus,,,, +06/28/2022,9:23,BROOKLYN,11222,40.7281,-73.938194,"(40.7281, -73.938194)",NORMAN AVENUE,APOLLO STREET,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545609,Station Wagon/Sport Utility Vehicle,Box Truck,,, +04/19/2022,17:20,MANHATTAN,10128,40.787224,-73.95417,"(40.787224, -73.95417)",MADISON AVENUE,EAST 96 STREET,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4520473,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2022,2:57,,,40.58382,-73.970856,"(40.58382, -73.970856)",WEST 2 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520870,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/09/2022,17:30,,,40.809044,-73.92856,"(40.809044, -73.92856)",EAST 135 STREET,LINCOLN AVENUE,,1,0,1,0,0,0,0,0,Unsafe Speed,,,,,4520896,Sedan,,,, +04/19/2022,21:30,MANHATTAN,10037,40.810173,-73.937416,"(40.810173, -73.937416)",EAST 132 STREET,MADISON AVENUE,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4520513,Sedan,Bus,Sedan,Sedan,Sedan +04/19/2022,2:45,,,40.89111,-73.863045,"(40.89111, -73.863045)",BRONX BOULEVARD,,,0,0,0,0,0,0,0,0,Pavement Slippery,Unspecified,,,,4520390,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,8:00,QUEENS,11423,40.713177,-73.77024,"(40.713177, -73.77024)",,,90-15 190 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520331,Station Wagon/Sport Utility Vehicle,,,, +04/15/2022,2:40,,,,,,MARTIN LUTHER KING JR,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4520987,Sedan,Sedan,,, +04/19/2022,16:33,QUEENS,11104,40.75011,-73.91541,"(40.75011, -73.91541)",48 STREET,BARNETT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520720,Sedan,Sedan,,, +04/19/2022,16:10,BROOKLYN,11208,40.680557,-73.881,"(40.680557, -73.881)",,,184 HIGHLAND PLACE,1,0,0,0,0,0,1,0,Unspecified,,,,,4520816,Motorcycle,,,, +04/19/2022,19:05,MANHATTAN,10002,40.71983,-73.98755,"(40.71983, -73.98755)",ESSEX STREET,RIVINGTON STREET,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4520413,Sedan,Sedan,,, +04/19/2022,0:00,MANHATTAN,10002,40.71885,-73.99263,"(40.71885, -73.99263)",FORSYTH STREET,BROOME STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520540,Bike,,,, +04/19/2022,15:50,,,40.860996,-73.89643,"(40.860996, -73.89643)",EAST 188 STREET,,,1,0,0,0,0,0,1,0,Physical Disability,,,,,4520792,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,18:00,,,,,,BROOKLYN BRIDGE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520652,Sedan,Sedan,,, +04/19/2022,10:35,BRONX,10460,40.840057,-73.870964,"(40.840057, -73.870964)",EAST 180 STREET,VANNEST AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4520325,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,0:15,MANHATTAN,10016,40.74445,-73.97304,"(40.74445, -73.97304)",1 AVENUE,EAST 35 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520255,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,8:50,MANHATTAN,10013,40.721497,-74.001976,"(40.721497, -74.001976)",,,93 GRAND STREET,0,0,0,0,0,0,0,0,Other Vehicular,Driver Inattention/Distraction,,,,4520451,Flat Bed,PK,,, +04/19/2022,8:50,QUEENS,11385,40.705284,-73.90636,"(40.705284, -73.90636)",WOODWARD AVENUE,GATES AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4520581,Sedan,Carry All,,, +04/19/2022,10:30,QUEENS,11385,40.700497,-73.90021,"(40.700497, -73.90021)",MYRTLE AVENUE,FOREST AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520418,Station Wagon/Sport Utility Vehicle,Bus,,, +04/19/2022,23:09,,,40.703667,-73.9269,"(40.703667, -73.9269)",KNICKERBOCKER AVENUE,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520922,Sedan,Sedan,Sedan,, +04/19/2022,19:16,BROOKLYN,11203,40.6568,-73.928,"(40.6568, -73.928)",EAST 53 STREET,CLARKSON AVENUE,,2,0,0,0,0,0,2,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4520960,Sedan,Sedan,Sedan,, +04/01/2022,22:48,,,40.834324,-73.919914,"(40.834324, -73.919914)",WALTON AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4520878,Sedan,,,, +04/19/2022,14:19,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",EAST 51 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521017,Bike,,,, +11/21/2021,7:26,,,40.734337,-74.002396,"(40.734337, -74.002396)",7 AVENUE SOUTH,,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4479535,Sedan,,,, +04/19/2022,21:29,MANHATTAN,10019,40.76806,-73.98355,"(40.76806, -73.98355)",,,1 COLUMBUS CIRCLE,0,0,0,0,0,0,0,0,Unspecified,,,,,4520464,Station Wagon/Sport Utility Vehicle,,,, +04/18/2022,14:37,QUEENS,11385,40.709526,-73.89879,"(40.709526, -73.89879)",,,65-15 FRESH POND ROAD,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520888,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/19/2022,17:18,BRONX,10474,40.81333,-73.88457,"(40.81333, -73.88457)",,,662 HUNTS POINT AVENUE,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520686,Sedan,E-Scooter,,, +04/19/2022,5:13,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520355,Tractor Truck Diesel,Box Truck,,, +04/18/2022,18:15,MANHATTAN,10035,40.803413,-73.93517,"(40.803413, -73.93517)",,,220 EAST 125 STREET,1,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4520789,Sedan,E-Bike,,, +04/17/2022,9:00,STATEN ISLAND,10312,40.54817,-74.16921,"(40.54817, -74.16921)",WAINWRIGHT AVENUE,LAMOKA AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4520991,Sedan,Sedan,,, +04/19/2022,20:58,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",BROOKVILLE BOULEVARD,FRANCIS LEWIS BOULEVARD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4520669,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,3:05,QUEENS,11357,40.786507,-73.80325,"(40.786507, -73.80325)",,,159-03 CROSS ISLAND PARKWAY,1,0,0,0,0,0,1,0,Pavement Slippery,,,,,4520340,Sedan,,,, +04/19/2022,17:10,,,40.730366,-73.91388,"(40.730366, -73.91388)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520409,Taxi,Station Wagon/Sport Utility Vehicle,,, +04/13/2022,18:50,BROOKLYN,11207,40.661385,-73.8841,"(40.661385, -73.8841)",LINDEN BOULEVARD,SCHENCK AVENUE,,2,0,0,0,0,0,2,0,Illnes,Unspecified,Unspecified,,,4520820,Pick-up Truck,Sedan,Station Wagon/Sport Utility Vehicle,, +04/18/2022,20:20,BROOKLYN,11208,40.661503,-73.86178,"(40.661503, -73.86178)",,,1145 GRANT AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520813,Station Wagon/Sport Utility Vehicle,Bus,,, +04/19/2022,11:40,,,40.858418,-73.88514,"(40.858418, -73.88514)",ARTHUR AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4520313,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/03/2022,23:00,,,,,,QUEENS MIDTOWN TUNNEL,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521020,Box Truck,Taxi,,, +04/16/2022,0:55,BRONX,10456,40.834526,-73.90939,"(40.834526, -73.90939)",,,1263 CLAY AVENUE,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,Other Vehicular,,,4520882,Sedan,Sedan,Sedan,, +04/19/2022,11:50,BROOKLYN,11205,40.691753,-73.966576,"(40.691753, -73.966576)",WASHINGTON AVENUE,WILLOUGHBY AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520519,Station Wagon/Sport Utility Vehicle,Tractor Truck Gasoline,,, +04/15/2022,17:00,QUEENS,11385,40.70636,-73.905266,"(40.70636, -73.905266)",GATES AVENUE,FAIRVIEW AVENUE,,1,0,0,0,0,0,1,0,Driver Inexperience,Unspecified,,,,4520939,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +04/12/2022,13:15,QUEENS,11101,40.74046,-73.93727,"(40.74046, -73.93727)",30 PLACE,HUNTERS POINT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520951,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +04/19/2022,0:45,QUEENS,11362,40.752098,-73.74142,"(40.752098, -73.74142)",DOUGLASTON PARKWAY,WEST ALLEY ROAD,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4520192,Sedan,,,, +04/19/2022,20:03,MANHATTAN,10036,40.762024,-74.00116,"(40.762024, -74.00116)",WEST 42 STREET,12 AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4520601,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +04/19/2022,8:30,QUEENS,11369,40.770153,-73.8776,"(40.770153, -73.8776)",93 STREET,DITMARS BOULEVARD,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4520635,Sedan,,,, +04/16/2022,22:00,STATEN ISLAND,10312,40.550148,-74.18758,"(40.550148, -74.18758)",ARDEN AVENUE,WOODROW ROAD,,1,0,1,0,0,0,0,0,Unspecified,,,,,4521007,Station Wagon/Sport Utility Vehicle,,,, +04/19/2022,15:34,,,40.80515,-73.91105,"(40.80515, -73.91105)",BRUCKNER BOULEVARD,EAST 139 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4520459,Station Wagon/Sport Utility Vehicle,Concrete Mixer,,, +04/06/2022,21:00,,,,,,ARTHUR KILL ROAD,VETERANS ROAD WEST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4520830,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/19/2022,12:35,QUEENS,11434,40.678547,-73.791435,"(40.678547, -73.791435)",,,119-14 SUTPHIN BOULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,Unspecified,,,4520484,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +04/19/2022,20:30,BRONX,10460,40.8399,-73.87562,"(40.8399, -73.87562)",EAST TREMONT AVENUE,BRONX PARK AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4521068,Sedan,,,, +04/19/2022,15:01,BROOKLYN,11205,40.694893,-73.95342,"(40.694893, -73.95342)",MYRTLE AVENUE,SANDFORD STREET,,1,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4520618,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +04/19/2022,18:37,QUEENS,11361,40.7728,-73.77887,"(40.7728, -73.77887)",32 AVENUE,210 STREET,,0,0,0,0,0,0,0,0,Animals Action,,,,,4520403,Sedan,,,, +04/19/2022,6:55,QUEENS,11426,40.73518,-73.71835,"(40.73518, -73.71835)",HILLSIDE AVENUE,249 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520290,Tow Truck / Wrecker,,,, +04/19/2022,6:50,BROOKLYN,11210,40.638443,-73.95215,"(40.638443, -73.95215)",FOSTER AVENUE,EAST 26 STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4520777,Sedan,,,, +04/15/2022,8:20,BROOKLYN,11204,40.617317,-73.979454,"(40.617317, -73.979454)",,,2157 60 STREET,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520851,Station Wagon/Sport Utility Vehicle,Bike,,, +04/19/2022,21:25,BROOKLYN,11223,40.609444,-73.96227,"(40.609444, -73.96227)",,,1953 CONEY ISLAND AVENUE,1,0,1,0,0,0,0,0,Aggressive Driving/Road Rage,,,,,4520434,Sedan,,,, +04/19/2022,11:50,QUEENS,11420,40.677273,-73.82622,"(40.677273, -73.82622)",,,112-10 ROCKAWAY BOULEVARD,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4520426,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +04/16/2022,12:00,,,,,,LINDEN BOULEVARD,VAN SIDERIN AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520803,Sedan,,,, +04/19/2022,17:56,,,40.86235,-73.89997,"(40.86235, -73.89997)",EAST FORDHAM ROAD,MORRIS AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Driver Inattention/Distraction,,,,4521037,Bike,Sedan,,, +04/19/2022,12:50,QUEENS,11385,40.700474,-73.905334,"(40.700474, -73.905334)",,,1733 CORNELIA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520478,Sedan,,,, +04/19/2022,11:04,MANHATTAN,10012,40.72089,-73.99576,"(40.72089, -73.99576)",KENMARE STREET,MOTT STREET,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4520534,Garbage or Refuse,,,, +04/19/2022,20:00,QUEENS,11377,40.752563,-73.90526,"(40.752563, -73.90526)",56 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520973,Station Wagon/Sport Utility Vehicle,,,, +04/07/2022,20:35,,,40.67066,-73.957985,"(40.67066, -73.957985)",FRANKLIN AVENUE,,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4520909,Sedan,E-Bike,,, +04/19/2022,0:00,,,40.833282,-73.82836,"(40.833282, -73.82836)",BRUCKNER BOULEVARD,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520591,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +04/19/2022,11:30,MANHATTAN,10128,40.78337,-73.947716,"(40.78337, -73.947716)",,,1834 2 AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4520468,Sedan,Sedan,,, +04/19/2022,10:30,,,40.68046,-73.96136,"(40.68046, -73.96136)",ATLANTIC AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4520893,Pick-up Truck,Sedan,,, +04/13/2022,12:21,BROOKLYN,11225,40.658134,-73.95931,"(40.658134, -73.95931)",,,82 FENIMORE STREET,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Unspecified,,,,4520900,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/15/2022,12:30,MANHATTAN,10013,40.717518,-73.99832,"(40.717518, -73.99832)",,,110 MULBERRY STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4520918,Sedan,,,, +04/19/2022,18:00,MANHATTAN,10039,40.821037,-73.93768,"(40.821037, -73.93768)",,,150 WEST 145 STREET,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,,,4520495,Sedan,Sedan,Bus,, +04/11/2022,11:20,BRONX,10463,40.87975,-73.90144,"(40.87975, -73.90144)",ALBANY CRESCENT,WEST 233 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,View Obstructed/Limited,,,,4522473,Sedan,Sedan,,, +04/23/2022,21:20,QUEENS,11433,40.704185,-73.78599,"(40.704185, -73.78599)",172 STREET,LIBERTY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4522648,Sedan,,,, +04/20/2022,19:50,,,40.610844,-74.1811,"(40.610844, -74.1811)",WEST SHORE EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4522605,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,4:55,BRONX,10460,40.839565,-73.87583,"(40.839565, -73.87583)",BRONX PARK AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,Unspecified,Unspecified,Unspecified,4521842,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +04/23/2022,12:00,,,40.647076,-73.94435,"(40.647076, -73.94435)",EAST 35 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4522521,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +04/25/2022,17:00,STATEN ISLAND,10306,40.576656,-74.118454,"(40.576656, -74.118454)",RICHMOND ROAD,STEELE AVENUE,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4522036,Station Wagon/Sport Utility Vehicle,Sedan,,, +04/25/2022,11:25,QUEENS,11372,40.748684,-73.8944,"(40.748684, -73.8944)",,,71-16 37 AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4522153,Sedan,Bike,,, +04/21/2022,14:07,QUEENS,11413,40.665386,-73.74493,"(40.665386, -73.74493)",SOUTH CONDUIT AVENUE,231 STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,Unsafe Speed,Unsafe Speed,,,4522567,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +04/25/2022,22:55,QUEENS,11691,0,0,"(0.0, 0.0)",BEACH CHANNEL DRIVE,MOTT AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4522083,Station Wagon/Sport Utility Vehicle,,,, +04/10/2022,15:10,BRONX,10460,40.83421,-73.8844,"(40.83421, -73.8844)",BOONE AVENUE,EAST 173 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4522463,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/10/2022,10:47,BROOKLYN,11225,40.665726,-73.96425,"(40.665726, -73.96425)",,,450 FLATBUSH AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545000,Sedan,Bike,,, +07/10/2022,4:00,,,,,,BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545132,Sedan,,,, +07/10/2022,1:35,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",3 AVENUE,EAST 116 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545510,Station Wagon/Sport Utility Vehicle,,,, +06/09/2022,23:16,QUEENS,11435,40.705433,-73.81513,"(40.705433, -73.81513)",,,87-39 139 STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,Unspecified,,,4545524,Sedan,Sedan,Sedan,, +07/10/2022,15:00,MANHATTAN,10012,40.72467,-73.99962,"(40.72467, -73.99962)",,,116 GREENE STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545563,Sedan,Sedan,,, +07/08/2022,22:30,MANHATTAN,10040,40.86357,-73.92602,"(40.86357, -73.92602)",SHERMAN AVENUE,DYCKMAN STREET,,1,0,0,0,0,0,1,0,Alcohol Involvement,Unspecified,,,,4545580,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,0:00,BROOKLYN,11209,40.635708,-74.029,"(40.635708, -74.029)",,,6945 RIDGE BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545106,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,1:43,BROOKLYN,11210,40.63674,-73.94035,"(40.63674, -73.94035)",FARRAGUT ROAD,EAST 38 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,Unspecified,,,4545045,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +07/10/2022,13:03,,,40.60518,-73.98018,"(40.60518, -73.98018)",KINGS HIGHWAY,,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,,,,4545087,Station Wagon/Sport Utility Vehicle,Taxi,,, +07/10/2022,5:55,,,40.651833,-74.003334,"(40.651833, -74.003334)",38 STREET,,,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4545046,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,17:59,BROOKLYN,11214,40.602535,-73.99321,"(40.602535, -73.99321)",BAY PARKWAY,85 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545119,Station Wagon/Sport Utility Vehicle,Van,,, +07/10/2022,10:00,,,40.673992,-73.73508,"(40.673992, -73.73508)",LAURELTON PARKWAY,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4545013,Sedan,Pick-up Truck,,, +07/06/2022,22:28,,,40.851185,-73.928665,"(40.851185, -73.928665)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Other Lighting Defects,,,,,4545579,Sedan,,,, +07/10/2022,17:55,,,40.845882,-73.930435,"(40.845882, -73.930435)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4545330,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/10/2022,19:00,BRONX,10466,40.892464,-73.859474,"(40.892464, -73.859474)",,,662 EAST 231 STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545397,Station Wagon/Sport Utility Vehicle,,,, +07/01/2022,5:00,MANHATTAN,10026,40.799953,-73.95274,"(40.799953, -73.95274)",,,71 WEST 112 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545596,Sedan,,,, +07/10/2022,1:08,MANHATTAN,10029,40.797943,-73.94003,"(40.797943, -73.94003)",EAST 116 STREET,3 AVENUE,,5,0,0,0,0,0,5,0,Unspecified,Unspecified,Unspecified,,,4545533,Sedan,Sedan,Sedan,, +07/04/2022,21:48,STATEN ISLAND,10305,40.59034,-74.06663,"(40.59034, -74.06663)",SAND LANE,CAPODANNO BOULEVARD,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4545586,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,12:25,BROOKLYN,11249,40.71286,-73.96579,"(40.71286, -73.96579)",WYTHE AVENUE,SOUTH 4 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545033,Sedan,Concrete Mixer,,, +07/10/2022,15:48,QUEENS,11354,40.75899,-73.83454,"(40.75899, -73.83454)",COLLEGE POINT BOULEVARD,39 AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545111,Sedan,,,, +07/10/2022,21:00,STATEN ISLAND,10305,40.59741,-74.06448,"(40.59741, -74.06448)",OCEAN AVENUE,CEDAR AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545260,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/10/2022,5:35,,,40.708504,-73.81954,"(40.708504, -73.81954)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,,,,4545523,Sedan,Sedan,,, +07/10/2022,14:30,BRONX,10455,40.812202,-73.899574,"(40.812202, -73.899574)",,,653 BRUCKNER BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4545661,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,12:00,,,40.74525,-73.95575,"(40.74525, -73.95575)",5 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545134,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,6:15,BROOKLYN,11229,40.611702,-73.94668,"(40.611702, -73.94668)",,,2718 AVENUE P,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4545197,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/10/2022,19:00,BROOKLYN,11233,40.684147,-73.922966,"(40.684147, -73.922966)",RALPH AVENUE,MACON STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545072,Station Wagon/Sport Utility Vehicle,,,, +02/11/2022,11:55,BROOKLYN,11231,0,0,"(0.0, 0.0)",VAN BRUNT STREET,UNION STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4501860,Sedan,Bike,,, +11/04/2021,12:45,,,40.622643,-73.8965,"(40.622643, -73.8965)",BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4486830,Sedan,Bus,,, +07/10/2022,3:00,BRONX,10452,0,0,"(0.0, 0.0)",TOWNSEND AVENUE,EAST 172 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545639,Sedan,,,, +07/08/2022,18:30,MANHATTAN,10011,40.74284,-74.00028,"(40.74284, -74.00028)",8 AVENUE,WEST 19 STREET,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545546,Bike,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,8:40,,,,,,Rockaway Freeway,Cross Bay Boulevard,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545571,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,21:55,QUEENS,11412,40.701122,-73.756195,"(40.701122, -73.756195)",199 STREET,113 AVENUE,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4545632,Sedan,Sedan,,, +07/10/2022,14:00,,,40.68812,-73.9117,"(40.68812, -73.9117)",ELDERT STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545301,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,18:00,BROOKLYN,11212,40.660736,-73.910385,"(40.660736, -73.910385)",RIVERDALE AVENUE,BRISTOL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545677,Sedan,Sedan,,, +07/10/2022,10:16,QUEENS,11368,40.756725,-73.86553,"(40.756725, -73.86553)",,,33-48 103 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545384,Sedan,,,, +07/10/2022,18:30,,,40.69212,-73.90661,"(40.69212, -73.90661)",COVERT STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545212,Sedan,,,, +07/02/2022,2:06,BROOKLYN,11206,40.694637,-73.949066,"(40.694637, -73.949066)",VERNON AVENUE,MARCY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4545516,Sedan,Bike,,, +07/10/2022,5:30,,,40.662178,-73.85025,"(40.662178, -73.85025)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Following Too Closely,,,,4545153,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,19:10,MANHATTAN,10024,40.787003,-73.97552,"(40.787003, -73.97552)",AMSTERDAM AVENUE,WEST 85 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545654,Taxi,Sedan,,, +07/10/2022,13:15,,,40.668507,-73.92561,"(40.668507, -73.92561)",BUFFALO AVENUE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545421,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,9:35,,,40.58038,-73.967606,"(40.58038, -73.967606)",OCEAN PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545235,Sedan,Sedan,,, +07/10/2022,13:20,BROOKLYN,11223,40.590443,-73.97116,"(40.590443, -73.97116)",AVENUE X,WEST 1 STREET,,1,0,0,0,1,0,0,0,Unspecified,,,,,4545438,Bike,,,, +07/10/2022,22:09,BRONX,10468,,,,JEROME AVENUE,BEDFORD PARK BOULEVARD,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4545358,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,22:00,BROOKLYN,11233,40.675323,-73.90827,"(40.675323, -73.90827)",EASTERN PARKWAY,STONE AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4545683,Sedan,Sedan,,, +07/10/2022,3:13,MANHATTAN,10003,40.733875,-73.98059,"(40.733875, -73.98059)",,,313 1 AVENUE,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4544838,Station Wagon/Sport Utility Vehicle,,,, +02/11/2022,19:55,,,40.794052,-73.970375,"(40.794052, -73.970375)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4501905,Sedan,Sedan,,, +11/21/2021,18:10,,,40.726814,-73.83846,"(40.726814, -73.83846)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479965,Sedan,,,, +11/23/2021,15:30,BRONX,10456,40.82358,-73.90675,"(40.82358, -73.90675)",EAST 163 STREET,CAULDWELL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4481873,Station Wagon/Sport Utility Vehicle,,,, +12/07/2021,10:35,BROOKLYN,11212,40.66785,-73.92103,"(40.66785, -73.92103)",EAST NEW YORK AVENUE,TAPSCOTT STREET,,2,0,0,0,0,0,2,0,Traffic Control Disregarded,Unspecified,,,,4484492,Sedan,Sedan,,, +12/13/2021,22:51,BROOKLYN,11211,40.714066,-73.95163,"(40.714066, -73.95163)",METROPOLITAN AVENUE,UNION AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4486278,Sedan,Bus,,, +12/13/2021,14:55,,,40.824158,-73.87462,"(40.824158, -73.87462)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4486777,Tractor Truck Diesel,Station Wagon/Sport Utility Vehicle,,, +12/05/2021,1:10,QUEENS,11422,40.664482,-73.73941,"(40.664482, -73.73941)",,,240-35 141 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486712,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,0:26,QUEENS,11103,40.76679,-73.91044,"(40.76679, -73.91044)",,,25-56 42 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4485853,Sedan,Sedan,Sedan,, +12/13/2021,5:30,BROOKLYN,11249,40.70166,-73.961464,"(40.70166, -73.961464)",WILLIAMSBURG STREET WEST,WYTHE AVENUE,,0,0,0,0,0,0,0,0,Passing Too Closely,Passing Too Closely,,,,4486258,Sedan,Tractor Truck Diesel,,, +12/13/2021,17:42,BROOKLYN,11226,40.641453,-73.96393,"(40.641453, -73.96393)",,,1517 CORTELYOU ROAD,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Following Too Closely,,,,4486450,Sedan,E-Scooter,,, +07/10/2022,18:30,QUEENS,11436,40.680477,-73.7921,"(40.680477, -73.7921)",SUTPHIN BOULEVARD,FOCH BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4545183,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +06/17/2022,16:30,BROOKLYN,11212,40.657536,-73.902756,"(40.657536, -73.902756)",NEW LOTS AVENUE,CHRISTOPHER AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545624,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +07/05/2022,15:17,,,40.766743,-73.83272,"(40.766743, -73.83272)",FARRINGTON STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545668,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,1:59,MANHATTAN,10022,40.755505,-73.96807,"(40.755505, -73.96807)",EAST 51 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544888,Taxi,Sedan,,, +07/10/2022,20:15,QUEENS,11104,40.74515,-73.92304,"(40.74515, -73.92304)",,,43-23 41 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545138,Sedan,,,, +07/10/2022,18:39,,,40.757183,-73.85503,"(40.757183, -73.85503)",114 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545368,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,14:20,BROOKLYN,11237,40.69919,-73.91469,"(40.69919, -73.91469)",IRVING AVENUE,MYRTLE AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4545216,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/20/2022,0:35,,,40.80641,-73.94227,"(40.80641, -73.94227)",,,WEST 125 STREET,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545608,Taxi,,,, +07/09/2022,15:43,BRONX,10469,40.865547,-73.86157,"(40.865547, -73.86157)",ALLERTON AVENUE,BRONXWOOD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545652,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,19:10,,,,,,GRAND ARMY PLAZA,UNION STREET,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545289,Sedan,Sedan,,, +07/10/2022,18:44,,,40.737457,-73.74109,"(40.737457, -73.74109)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545071,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,10:00,,,,,,GRAND CENTRAL PARKWAY,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545094,,,,, +07/07/2022,9:45,BROOKLYN,11219,40.632015,-73.99167,"(40.632015, -73.99167)",52 STREET,14 AVENUE,,1,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4545539,E-Bike,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/10/2022,21:19,,,40.707928,-73.78383,"(40.707928, -73.78383)",JAMAICA AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545170,Sedan,Sedan,,, +06/24/2022,16:53,,,,,,ST. PETERS AVE,ST. RAYMOND AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545591,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/10/2022,1:21,BROOKLYN,11226,40.65272,-73.94811,"(40.65272, -73.94811)",,,302 LINDEN BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545038,Box Truck,Sedan,,, +07/10/2022,15:08,MANHATTAN,10003,40.732754,-73.99004,"(40.732754, -73.99004)",4 AVENUE,EAST 12 STREET,,2,0,0,0,1,0,0,0,Traffic Control Disregarded,Unspecified,,,,4545471,Bike,E-Scooter,,, +07/05/2022,12:15,QUEENS,11102,40.76615,-73.919785,"(40.76615, -73.919785)",30 AVENUE,NEWTOWN AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545547,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,16:00,,,40.5953,-74.1619,"(40.5953, -74.1619)",RICHMOND AVENUE,ROCKLAND AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545077,Sedan,Sedan,,, +07/10/2022,0:00,,,40.845306,-73.91834,"(40.845306, -73.91834)",JESUP AVENUE,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545251,Sedan,,,, +07/10/2022,12:05,BRONX,10474,40.814438,-73.89308,"(40.814438, -73.89308)",LONGWOOD AVENUE,BARRY STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4545662,Box Truck,,,, +07/06/2022,2:00,,,,,,GOWANUS RAMP,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545704,Sedan,,,, +07/04/2022,21:13,BRONX,10465,,,,,,3220 COUNTRY CLUB ROAD,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545597,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,14:30,,,40.799072,-73.97043,"(40.799072, -73.97043)",WEST 102 STREET,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545163,Sedan,,,, +07/10/2022,21:16,MANHATTAN,10029,40.788948,-73.94057,"(40.788948, -73.94057)",EAST 105 STREET,1 AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4545269,Taxi,Motorscooter,,, +07/09/2022,21:20,BRONX,10472,40.834007,-73.87568,"(40.834007, -73.87568)",MORRISON AVENUE,EAST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545657,Sedan,Minibike,,, +07/09/2022,6:17,,,,,,164 STREET,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4545532,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,9:35,MANHATTAN,10029,40.794983,-73.94085,"(40.794983, -73.94085)",,,229 EAST 112 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4544995,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +07/02/2022,1:10,,,40.618732,-74.17606,"(40.618732, -74.17606)",WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Fell Asleep,,,,,4545585,Sedan,,,, +04/20/2022,23:25,,,,,,BELT PARKWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4520751,Sedan,Taxi,,, +07/10/2022,14:47,,,40.66173,-73.96078,"(40.66173, -73.96078)",WASHINGTON AVENUE,,,2,0,0,0,0,0,2,0,Turning Improperly,Unspecified,,,,4545120,Sedan,Sedan,,, +07/09/2022,16:27,MANHATTAN,10011,40.74082,-74.002945,"(40.74082, -74.002945)",,,324 WEST 15 STREET,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545556,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2022,9:15,QUEENS,11373,40.7387,-73.87095,"(40.7387, -73.87095)",53 AVENUE,92 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545497,Sedan,Sedan,,, +07/10/2022,12:06,MANHATTAN,10032,40.837906,-73.93835,"(40.837906, -73.93835)",WEST 165 STREET,AMSTERDAM AVENUE,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545327,Sedan,Sedan,,, +07/03/2022,0:10,,,,,,HORACE HARDING EXPRESSWAY,UTOPIA PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545714,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,14:00,,,40.738773,-73.80846,"(40.738773, -73.80846)",160 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545396,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,16:40,MANHATTAN,10034,40.865536,-73.92728,"(40.865536, -73.92728)",BROADWAY,DYCKMAN STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4545658,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,Sedan, +07/10/2022,23:30,QUEENS,11413,40.6755,-73.73864,"(40.6755, -73.73864)",231 STREET,MERRICK BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545192,Sedan,,,, +06/28/2022,14:11,BRONX,10461,40.841125,-73.84334,"(40.841125, -73.84334)",,,25 WESTCHESTER SQUARE,1,0,0,0,0,0,1,0,Accelerator Defective,,,,,4545593,Sedan,,,, +07/10/2022,3:30,QUEENS,11385,40.702385,-73.90931,"(40.702385, -73.90931)",,,1712 GATES AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545633,Sedan,,,, +07/10/2022,16:42,,,,,,BEACH 9TH STREET,SEAGIRT BLVD,,0,0,0,0,0,0,0,0,Oversized Vehicle,,,,,4545268,Ambulance,,,, +07/08/2022,16:39,MANHATTAN,10038,40.708218,-74.00351,"(40.708218, -74.00351)",,,100 BEEKMAN STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545562,Bike,,,, +07/10/2022,1:19,,,40.711033,-73.7281,"(40.711033, -73.7281)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,,,,4545012,Sedan,Sedan,,, +07/10/2022,0:25,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Speed,Following Too Closely,Unspecified,Unspecified,,4545405,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +07/10/2022,14:14,BROOKLYN,11228,40.620304,-74.00743,"(40.620304, -74.00743)",BAY RIDGE PARKWAY,13 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4545105,Sedan,E-Bike,,, +07/10/2022,14:12,,,40.773335,-73.94421,"(40.773335, -73.94421)",FDR DRIVE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545442,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,7:10,BRONX,10451,40.823467,-73.92447,"(40.823467, -73.92447)",GRAND CONCOURSE,EAST 156 STREET,,0,0,0,0,0,0,0,0,Passenger Distraction,Unspecified,Unspecified,Unspecified,,4545180,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +07/10/2022,1:45,,,40.764435,-73.72269,"(40.764435, -73.72269)",LONG ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545404,Sedan,Sedan,,, +07/06/2022,16:24,BROOKLYN,11233,40.680492,-73.915565,"(40.680492, -73.915565)",,,224 SUMPTER STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545676,Sedan,Sedan,,, +07/10/2022,15:05,,,40.686905,-73.94463,"(40.686905, -73.94463)",GATES AVENUE,,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Following Too Closely,,,,4545300,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,0:30,BROOKLYN,11212,40.665627,-73.909706,"(40.665627, -73.909706)",BLAKE AVENUE,ROCKAWAY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545684,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,0:00,BROOKLYN,11223,40.59783,-73.96549,"(40.59783, -73.96549)",OCEAN PARKWAY,AVENUE U,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4544854,Sedan,Sedan,,, +07/10/2022,12:44,BROOKLYN,11201,,,,,,21 FLUSHING AVENUE,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545621,Station Wagon/Sport Utility Vehicle,Bike,,, +06/30/2022,20:25,MANHATTAN,10033,40.848938,-73.93708,"(40.848938, -73.93708)",BROADWAY,WEST 179 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545548,Box Truck,Sedan,,, +07/10/2022,7:50,,,40.631447,-74.13519,"(40.631447, -74.13519)",,,399 HEBERTON AVENUE,2,0,0,0,0,0,2,0,Steering Failure,Unspecified,,,,4545076,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,13:57,QUEENS,11372,40.75644,-73.87701,"(40.75644, -73.87701)",91 STREET,NORTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545079,Sedan,,,, +07/10/2022,13:00,BRONX,10457,40.846497,-73.894196,"(40.846497, -73.894196)",,,575 EAST TREMONT AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unsafe Lane Changing,Unspecified,,4545519,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/20/2021,18:23,,,,,,BAILEY AVENUE,VANCORTLANDT PARK WEST,,1,0,1,0,0,0,0,0,,,,,,4480159,,,,, +07/10/2022,15:31,QUEENS,11358,40.75567,-73.80368,"(40.75567, -73.80368)",,,45-15 163 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545110,Sedan,Sedan,,, +07/06/2022,16:45,MANHATTAN,10018,40.75649,-73.997765,"(40.75649, -73.997765)",WEST 37 STREET,10 AVENUE,,1,0,0,0,1,0,0,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4545542,Bike,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,13:30,MANHATTAN,10025,40.793144,-73.9682,"(40.793144, -73.9682)",,,113 WEST 96 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545162,Sedan,,,, +07/03/2022,17:10,QUEENS,11697,40.55174,-73.93247,"(40.55174, -73.93247)",,,1 BEACH 227 STREET,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545572,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,11:45,QUEENS,11422,40.66563,-73.73921,"(40.66563, -73.73921)",SUNRISE HIGHWAY,BROOKVILLE BOULEVARD,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4545016,Sedan,Sedan,,, +07/10/2022,22:50,,,40.837894,-73.88138,"(40.837894, -73.88138)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4545520,Sedan,Sedan,Sedan,, +07/03/2022,11:45,QUEENS,11694,40.582787,-73.82687,"(40.582787, -73.82687)",,,104-06 ROCKAWAY BEACH BOULEVARD,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4545567,Station Wagon/Sport Utility Vehicle,Bike,,, +07/06/2022,21:52,,,40.840607,-73.82968,"(40.840607, -73.82968)",CROSBY AVENUE,,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4545589,Sedan,Sedan,Sedan,, +07/10/2022,12:47,BROOKLYN,11203,40.642033,-73.925446,"(40.642033, -73.925446)",,,5464 KINGS HIGHWAY,2,0,0,0,0,0,0,0,Unspecified,,,,,4545039,E-Bike,,,, +07/10/2022,17:35,QUEENS,11355,40.75819,-73.82318,"(40.75819, -73.82318)",BOWNE STREET,SANFORD AVENUE,,1,0,0,0,1,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545108,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/10/2022,22:30,,,40.710342,-73.98662,"(40.710342, -73.98662)",FDR DRIVE,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545136,Sedan,,,, +07/10/2022,2:30,QUEENS,11368,40.74328,-73.85808,"(40.74328, -73.85808)",,,104-33 ALSTYNE AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4545370,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,12:20,QUEENS,11414,40.670403,-73.85629,"(40.670403, -73.85629)",79 STREET,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545617,Sprinter V,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,1:00,QUEENS,11691,40.599503,-73.754074,"(40.599503, -73.754074)",BEACH 20 STREET,BROOKHAVEN AVENUE,,1,0,1,0,0,0,0,0,Alcohol Involvement,,,,,4545722,,,,, +07/10/2022,12:00,QUEENS,11427,40.729477,-73.73597,"(40.729477, -73.73597)",,,88-57 SABRE STREET,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,Unspecified,,4545051,Sedan,Sedan,Sedan,Sedan, +07/10/2022,6:45,BROOKLYN,11209,40.635372,-74.029144,"(40.635372, -74.029144)",OVINGTON AVENUE,RIDGE BOULEVARD,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545175,Tractor Truck Diesel,Sedan,,, +07/10/2022,3:30,QUEENS,11368,40.74935,-73.85807,"(40.74935, -73.85807)",108 STREET,42 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545010,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,15:20,BROOKLYN,11201,40.689137,-73.990715,"(40.689137, -73.990715)",BOERUM PLACE,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545122,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,12:14,,,40.700245,-73.92089,"(40.700245, -73.92089)",KNICKERBOCKER AVENUE,,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4545512,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,21:15,MANHATTAN,10016,40.747158,-73.9771,"(40.747158, -73.9771)",,,544 3 AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545116,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/06/2022,11:05,,,40.838757,-73.882904,"(40.838757, -73.882904)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4545674,Station Wagon/Sport Utility Vehicle,Box Truck,,, +07/05/2022,20:40,MANHATTAN,10033,40.846954,-73.93176,"(40.846954, -73.93176)",,,2402 AMSTERDAM AVENUE,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4545574,Sedan,Sedan,Sedan,Sedan, +07/10/2022,15:10,BRONX,10456,40.83154,-73.910034,"(40.83154, -73.910034)",,,1188 WEBSTER AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545220,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +07/06/2022,15:00,MANHATTAN,10001,40.75018,-74.00608,"(40.75018, -74.00608)",WEST 25 STREET,11 AVENUE,,2,0,0,0,0,0,2,0,Unsafe Lane Changing,Unspecified,,,,4545538,Moped,Van,,, +07/08/2022,17:30,STATEN ISLAND,10312,40.552765,-74.191414,"(40.552765, -74.191414)",,,262 ARDEN AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545584,Sedan,Pick-up Truck,,, +06/29/2022,15:28,MANHATTAN,10004,40.701782,-74.01117,"(40.701782, -74.01117)",SOUTH STREET,BROAD STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545561,Sedan,,,, +04/20/2022,19:30,BROOKLYN,11231,40.68218,-74.00325,"(40.68218, -74.00325)",,,97 SUMMIT STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4520840,Sedan,,,, +07/10/2022,2:30,BROOKLYN,11232,40.651833,-74.003334,"(40.651833, -74.003334)",38 STREET,5 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545339,PK,,,, +07/09/2022,14:30,QUEENS,11373,40.7387,-73.87095,"(40.7387, -73.87095)",92 STREET,53 AVENUE,,1,0,0,0,0,0,1,0,View Obstructed/Limited,Unspecified,,,,4545651,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,18:56,BRONX,10456,40.831055,-73.905846,"(40.831055, -73.905846)",EAST 168 STREET,3 AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545205,Sedan,E-Scooter,,, +07/10/2022,21:15,BRONX,10472,40.82843,-73.88105,"(40.82843, -73.88105)",WESTCHESTER AVENUE,EVERGREEN AVENUE,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545663,Sedan,Bike,,, +07/10/2022,23:50,,,40.67151,-73.76455,"(40.67151, -73.76455)",FARMERS BOULEVARD,140 AVENUE,,0,0,0,0,0,0,0,0,Steering Failure,Unspecified,,,,4545186,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,2:14,BROOKLYN,11238,40.679375,-73.96408,"(40.679375, -73.96408)",WASHINGTON AVENUE,DEAN STREET,,0,1,0,1,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4544900,Sedan,,,, +07/10/2022,5:38,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",ATLANTIC AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545685,Sedan,Sedan,,, +07/10/2022,15:35,BROOKLYN,11214,40.603874,-73.99544,"(40.603874, -73.99544)",21 AVENUE,85 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545098,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,23:20,,,40.702007,-73.821205,"(40.702007, -73.821205)",JAMAICA AVENUE,131 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4545271,Bus,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,7:20,QUEENS,11436,40.679855,-73.79554,"(40.679855, -73.79554)",FOCH BOULEVARD,INWOOD STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545628,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,11:00,BRONX,10474,40.804672,-73.885826,"(40.804672, -73.885826)",RYAWA AVENUE,MANIDA STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545295,Station Wagon/Sport Utility Vehicle,Detached t,,, +07/10/2022,11:25,MANHATTAN,10012,40.72032,-73.99405,"(40.72032, -73.99405)",KENMARE STREET,BOWERY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545493,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,22:20,QUEENS,11385,40.70559,-73.85824,"(40.70559, -73.85824)",WOODHAVEN BOULEVARD,UNION TURNPIKE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545634,Sedan,,,, +07/10/2022,18:20,,,40.57554,-73.979645,"(40.57554, -73.979645)",SURF AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545238,Station Wagon/Sport Utility Vehicle,Bike,,, +07/10/2022,4:18,QUEENS,11432,40.7083,-73.7892,"(40.7083, -73.7892)",,,90-46 171 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545166,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/08/2022,16:59,BROOKLYN,11212,40.67079,-73.903275,"(40.67079, -73.903275)",PITKIN AVENUE,JUNIUS STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545679,Station Wagon/Sport Utility Vehicle,,,, +07/08/2022,21:00,BROOKLYN,11225,40.670986,-73.95955,"(40.670986, -73.95955)",,,284 EASTERN PARKWAY,0,0,0,0,0,0,0,0,Unspecified,,,,,4545703,Sedan,,,, +07/09/2022,23:50,,,40.858986,-73.89382,"(40.858986, -73.89382)",WEBSTER AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545531,Station Wagon/Sport Utility Vehicle,Moped,,, +07/02/2022,0:00,QUEENS,11385,40.707268,-73.871315,"(40.707268, -73.871315)",,,79-01 71 AVENUE,0,0,0,0,0,0,0,0,Oversized Vehicle,Unspecified,,,,4545599,Box Truck,,,, +07/10/2022,15:00,,,40.592484,-73.99494,"(40.592484, -73.99494)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545317,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,3:35,,,40.80929,-73.90313,"(40.80929, -73.90313)",BRUCKNER EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unsafe Lane Changing,,,,4545407,Motorcycle,Station Wagon/Sport Utility Vehicle,,, +07/07/2022,9:16,BROOKLYN,11232,40.669235,-73.99697,"(40.669235, -73.99697)",15 STREET,HAMILTON AVENUE,,1,0,0,0,0,0,1,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4545656,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,17:00,MANHATTAN,10021,40.771782,-73.96544,"(40.771782, -73.96544)",MADISON AVENUE,EAST 72 STREET,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4545447,Station Wagon/Sport Utility Vehicle,Sedan,,, +06/15/2022,20:46,QUEENS,11697,,,,4 avenue,Rockaway point blvd,,0,0,0,0,0,0,0,0,,,,,,4545659,,,,, +07/10/2022,0:08,BROOKLYN,11233,40.668373,-73.92264,"(40.668373, -73.92264)",RALPH AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4544874,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,10:55,BROOKLYN,11212,40.66457,-73.91686,"(40.66457, -73.91686)",,,87 BLAKE AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545681,Sedan,,,, +07/10/2022,2:50,,,,,,SHORE PARKWAY,SHEEPSHEAD BAY ROAD,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4545201,Station Wagon/Sport Utility Vehicle,Sedan,,, +02/11/2022,22:00,BROOKLYN,11231,0,0,"(0.0, 0.0)",,,700 COLUMBIA STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4502065,Motorized Home,,,, +11/14/2021,3:05,,,40.583626,-73.98407,"(40.583626, -73.98407)",BELT PARKWAY,,,0,1,0,1,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,,4477266,Pick-up Truck,,,, +11/18/2021,21:00,BROOKLYN,11211,40.71434,-73.93208,"(40.71434, -73.93208)",,,1109 METROPOLITAN AVENUE,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4478799,Sedan,,,, +11/20/2021,21:20,BROOKLYN,11208,40.668144,-73.88197,"(40.668144, -73.88197)",DUMONT AVENUE,ELTON STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4479857,Sedan,Taxi,,, +12/13/2021,7:00,,,40.86967,-73.86527,"(40.86967, -73.86527)",HOLLAND AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4486312,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/10/2021,19:13,BROOKLYN,11211,40.716362,-73.93788,"(40.716362, -73.93788)",DEBEVOISE AVENUE,MASPETH AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486667,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +12/12/2021,23:34,,,40.80616,-73.927986,"(40.80616, -73.927986)",EAST 132 STREET,,,0,0,0,0,0,0,0,0,Other Vehicular,,,,,4486866,3-Door,,,, +12/13/2021,5:55,,,40.741234,-73.84573,"(40.741234, -73.84573)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4485975,Sedan,Motorcycle,,, +12/13/2021,9:15,,,40.82967,-73.931076,"(40.82967, -73.931076)",JEROME AVENUE,OGDEN AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4486318,Sedan,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,14:00,,,40.72224,-73.9863,"(40.72224, -73.9863)",EAST HOUSTON STREET,,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486762,Sedan,E-Bike,,, +11/29/2021,19:38,,,40.69447,-73.78147,"(40.69447, -73.78147)",MERRICK BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4486828,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,23:20,,,40.755398,-73.77654,"(40.755398, -73.77654)",CLEARVIEW EXPRESSWAY,,,0,0,0,0,0,0,0,0,Driver Inexperience,,,,,4486626,Sedan,,,, +12/13/2021,4:37,BROOKLYN,11233,40.68354,-73.915245,"(40.68354, -73.915245)",,,705 DECATUR STREET,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,Unspecified,Unspecified,4486046,Sedan,Sedan,Sedan,Sedan,Sedan +12/13/2021,8:52,BRONX,10456,40.830986,-73.91139,"(40.830986, -73.91139)",EAST 167 STREET,CLAY AVENUE,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Traffic Control Disregarded,,,,4486377,Sedan,Bike,,, +12/13/2021,14:05,BRONX,10463,40.88425,-73.900635,"(40.88425, -73.900635)",,,193 WEST 237 STREET,1,0,1,0,0,0,0,0,Unspecified,,,,,4486465,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,11:00,BROOKLYN,11212,40.667084,-73.91788,"(40.667084, -73.91788)",,,77 LEGION STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4486550,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +12/13/2021,14:03,,,40.68442,-73.97839,"(40.68442, -73.97839)",4 AVENUE,,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,,,,4486191,E-Scooter,,,, +12/13/2021,12:05,,,40.761143,-73.75549,"(40.761143, -73.75549)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486145,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,0:00,,,40.70978,-73.82043,"(40.70978, -73.82043)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,,,4486180,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Bus,, +12/13/2021,10:15,MANHATTAN,10035,40.807346,-73.93949,"(40.807346, -73.93949)",,,2006 MADISON AVENUE,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486150,Station Wagon/Sport Utility Vehicle,,,, +12/11/2021,13:30,BROOKLYN,11201,40.68951,-73.9972,"(40.68951, -73.9972)",,,100 AMITY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4486794,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,6:05,,,40.758022,-73.981804,"(40.758022, -73.981804)",AVENUE OF THE AMERICAS,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486079,Station Wagon/Sport Utility Vehicle,Sedan,,, +12/13/2021,17:10,,,40.77039,-73.954124,"(40.77039, -73.954124)",1 AVENUE,,,0,1,0,0,0,0,0,1,Unspecified,Unspecified,,,,4486549,Motorscooter,Box Truck,,, +12/13/2021,4:55,MANHATTAN,10035,40.799576,-73.935905,"(40.799576, -73.935905)",EAST 120 STREET,2 AVENUE,,3,0,0,0,0,0,3,0,Driver Inattention/Distraction,Unspecified,,,,4486302,Sedan,Sedan,,, +12/13/2021,20:31,BRONX,10451,40.818558,-73.92732,"(40.818558, -73.92732)",GRAND CONCOURSE,EAST 149 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486324,Sedan,Bus,,, +12/08/2021,21:00,,,40.844578,-73.902695,"(40.844578, -73.902695)",WEBSTER AVENUE,,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4486613,Taxi,,,, +12/13/2021,9:30,STATEN ISLAND,10314,40.589066,-74.138626,"(40.589066, -74.138626)",ROCKLAND AVENUE,BRIELLE AVENUE,,1,0,0,0,0,0,1,0,Illnes,,,,,4486408,Station Wagon/Sport Utility Vehicle,,,, +12/13/2021,13:00,BROOKLYN,11235,40.588196,-73.95232,"(40.588196, -73.95232)",,,1701 AVENUE Z,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4486567,Sedan,Sedan,,, +11/21/2021,14:02,BRONX,10455,40.81449,-73.90223,"(40.81449, -73.90223)",BECK STREET,SAINT JOHN AVENUE,,3,0,0,0,0,0,3,0,Failure to Yield Right-of-Way,Unspecified,,,,4479640,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,8:05,,,40.85162,-73.8265,"(40.85162, -73.8265)",BRUCKNER BOULEVARD,WILKINSON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479822,Sedan,,,, +11/21/2021,21:06,BROOKLYN,11234,40.62682,-73.92671,"(40.62682, -73.92671)",EAST 51 STREET,FLATLANDS AVENUE,,0,0,0,0,0,0,0,0,Lost Consciousness,Unspecified,Unspecified,,,4479703,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/19/2021,21:30,BROOKLYN,11238,40.681767,-73.96754,"(40.681767, -73.96754)",ATLANTIC AVENUE,VANDERBILT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4480225,Sedan,Sedan,Sedan,, +11/21/2021,0:55,MANHATTAN,10032,40.83328,-73.93916,"(40.83328, -73.93916)",WEST 159 STREET,EDGECOMBE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480199,Sedan,,,, +11/21/2021,0:10,QUEENS,11428,40.71559,-73.74736,"(40.71559, -73.74736)",,,211-75 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479306,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/21/2021,21:15,,,40.68378,-73.789734,"(40.68378, -73.789734)",155 STREET,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479673,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,3:00,BRONX,10458,40.87172,-73.886375,"(40.87172, -73.886375)",,,2968 VALENTINE AVENUE,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4479939,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,4:30,,,40.78827,-73.81613,"(40.78827, -73.81613)",14 AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479744,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,8:00,,,,,,,,43-01 BERRIAN BULEVARD,0,0,0,0,0,0,0,0,View Obstructed/Limited,Unspecified,,,,4480169,Sedan,Pick-up Truck,,, +11/19/2021,19:40,QUEENS,11377,40.75428,-73.89751,"(40.75428, -73.89751)",NORTHERN BOULEVARD,69 STREET,,1,0,0,0,0,0,1,0,Turning Improperly,Unspecified,,,,4480319,Motorcycle,Sedan,,, +11/21/2021,3:43,,,40.736412,-73.74183,"(40.736412, -73.74183)",GRAND CENTRAL PKWY,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,,,,,4479323,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,9:48,BROOKLYN,11235,40.590294,-73.952866,"(40.590294, -73.952866)",AVENUE Y,EAST 17 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479753,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,12:00,,,40.85232,-73.93878,"(40.85232, -73.93878)",PINEHURST AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4480220,Sedan,,,, +11/19/2021,19:45,QUEENS,11434,40.679935,-73.77637,"(40.679935, -73.77637)",BAISLEY BOULEVARD,167 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4480298,Sedan,,,, +09/19/2021,3:49,STATEN ISLAND,10312,40.55882,-74.19779,"(40.55882, -74.19779)",,,1769 ARTHUR KILL ROAD,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4480143,Sedan,Sedan,,, +11/21/2021,0:10,QUEENS,11368,40.752888,-73.85466,"(40.752888, -73.85466)",,,112-29 39 AVENUE,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479375,Sedan,,,, +11/21/2021,18:50,BROOKLYN,11206,40.7091,-73.94009,"(40.7091, -73.94009)",SCHOLES STREET,BUSHWICK AVENUE,,1,0,0,0,0,0,0,0,Unspecified,,,,,4479602,E-Scooter,,,, +11/21/2021,23:20,BROOKLYN,11208,40.68856,-73.87572,"(40.68856, -73.87572)",JAMAICA AVENUE,CYPRESS HILL STREET,,0,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4479843,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,13:25,,,40.84731,-73.9149,"(40.84731, -73.9149)",GRAND AVENUE,WEST 174 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479889,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,10:00,BRONX,10455,40.816685,-73.9166,"(40.816685, -73.9166)",,,2882 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480087,Sedan,,,, +11/21/2021,10:00,BRONX,10466,40.89436,-73.85185,"(40.89436, -73.85185)",,,4256 DIGNEY AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479561,Sedan,,,, +11/21/2021,4:35,BROOKLYN,11206,40.706852,-73.948204,"(40.706852, -73.948204)",MONTROSE AVENUE,LORIMER STREET,,1,0,0,0,0,0,1,0,Passing Too Closely,Unspecified,,,,4479437,Sedan,Moped,,, +11/16/2021,20:45,QUEENS,11368,40.7456,-73.868095,"(40.7456, -73.868095)",43 AVENUE,JUNCTION BOULEVARD,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4480371,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +08/26/2021,8:00,,,40.820133,-73.91307,"(40.820133, -73.91307)",EAST 156 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480442,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,12:30,QUEENS,11356,40.78167,-73.83075,"(40.78167, -73.83075)",,,137-05 20 AVENUE,1,0,0,0,0,0,1,0,Physical Disability,Unspecified,Unspecified,,,4479534,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/21/2021,9:06,BRONX,10452,40.84126,-73.92805,"(40.84126, -73.92805)",SEDGWICK AVENUE,DEPOT PLACE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unsafe Speed,Unspecified,,,4479457,Sedan,Sedan,Sedan,, +11/17/2021,16:20,,,,,,BROOKLYN BATTERY TUNNEL,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4480261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,14:30,,,40.639553,-73.93299,"(40.639553, -73.93299)",FOSTER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479591,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,7:30,,,40.60235,-74.189644,"(40.60235, -74.189644)",CHELSEA ROAD,SOUTH AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4479396,Sedan,,,, +11/21/2021,14:45,BRONX,10455,40.816555,-73.91677,"(40.816555, -73.91677)",3 AVENUE,EAST 150 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480086,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,21:20,QUEENS,11368,40.748165,-73.868835,"(40.748165, -73.868835)",,,40-42 JUNCTION BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479729,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,16:15,,,40.651325,-73.93906,"(40.651325, -73.93906)",ALBANY AVENUE,,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479782,Sedan,,,, +11/16/2021,19:10,,,,,,49 STREET,ASTORIA BOULEVARD,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480123,Sedan,Pick-up Truck,,, +11/21/2021,21:27,,,40.58327,-73.96006,"(40.58327, -73.96006)",CONEY ISLAND AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,Unspecified,4479898,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +11/21/2021,13:40,MANHATTAN,10019,40.763245,-73.98059,"(40.763245, -73.98059)",,,151 WEST 54 STREET,2,0,0,0,0,0,2,0,Driver Inexperience,Unspecified,,,,4480106,Sedan,Pick-up Truck,,, +11/21/2021,9:57,BROOKLYN,11236,40.64856,-73.90535,"(40.64856, -73.90535)",FOSTER AVENUE,ROCKAWAY AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479430,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,14:38,BROOKLYN,11233,40.68488,-73.92311,"(40.68488, -73.92311)",RALPH AVENUE,HALSEY STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,Unspecified,Unspecified,Unspecified,4479580,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/21/2021,12:30,QUEENS,11433,40.69095,-73.794624,"(40.69095, -73.794624)",,,155-11 110 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479686,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,13:30,BROOKLYN,11209,40.616985,-74.0275,"(40.616985, -74.0275)",92 STREET,FORT HAMILTON PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480348,Sedan,,,, +11/21/2021,19:00,MANHATTAN,10016,40.74701,-73.977196,"(40.74701, -73.977196)",EAST 36 STREET,3 AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479887,Taxi,Sedan,,, +11/21/2021,15:37,,,,,,ALEXANDER HAMILTON BRIDGE,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4480188,Station Wagon/Sport Utility Vehicle,,,, +11/05/2021,8:00,QUEENS,11432,40.70878,-73.78171,"(40.70878, -73.78171)",,,91-10 179 PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4480381,Sedan,,,, +11/21/2021,0:10,,,40.733032,-73.954735,"(40.733032, -73.954735)",MANHATTAN AVENUE,,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479606,Sedan,Sedan,,, +11/21/2021,18:18,,,40.60485,-74.02559,"(40.60485, -74.02559)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4479657,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/13/2021,8:34,,,40.61054,-74.103455,"(40.61054, -74.103455)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4480285,Sedan,,,, +11/21/2021,5:30,QUEENS,11373,40.743256,-73.88361,"(40.743256, -73.88361)",,,81-16 BROADWAY,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,Unspecified,,,4479511,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +11/20/2021,14:30,QUEENS,11102,40.769962,-73.91942,"(40.769962, -73.91942)",,,26-48 30 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,17:50,,,40.86607,-73.89439,"(40.86607, -73.89439)",EAST KINGSBRIDGE ROAD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479925,Bus,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,17:25,BROOKLYN,11215,40.659817,-73.98785,"(40.659817, -73.98785)",19 STREET,7 AVENUE,,1,0,0,0,0,0,1,0,Other Vehicular,Other Vehicular,,,,4480044,Sedan,Sedan,,, +11/20/2021,13:00,BRONX,10463,40.87645,-73.90627,"(40.87645, -73.90627)",,,2861 EXTERIOR STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480156,Sedan,Sedan,,, +11/16/2021,15:39,,,40.57698,-73.981575,"(40.57698, -73.981575)",MERMAID AVENUE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4480236,Station Wagon/Sport Utility Vehicle,Bus,,, +11/21/2021,4:55,QUEENS,11418,40.695427,-73.8386,"(40.695427, -73.8386)",,,87-64 109 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4479716,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/21/2021,2:50,BROOKLYN,11203,40.650475,-73.933174,"(40.650475, -73.933174)",,,933 SCHENECTADY AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480203,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,17:00,BROOKLYN,11238,40.672832,-73.96908,"(40.672832, -73.96908)",,,10 GRAND ARMY PLAZA,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479762,Station Wagon/Sport Utility Vehicle,Bike,,, +11/21/2021,15:33,QUEENS,11385,40.70295,-73.858536,"(40.70295, -73.858536)",MYRTLE AVENUE,82 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479669,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,23:44,BROOKLYN,11207,40.66545,-73.88939,"(40.66545, -73.88939)",LIVONIA AVENUE,MILLER AVENUE,,2,0,0,0,0,0,2,0,Unspecified,,,,,4479859,Sedan,,,, +07/04/2022,16:07,MANHATTAN,10040,40.864662,-73.928894,"(40.864662, -73.928894)",BROADWAY,ARDEN STREET,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545552,Sedan,Bike,,, +11/21/2021,18:10,BROOKLYN,11221,40.698452,-73.92176,"(40.698452, -73.92176)",MYRTLE AVENUE,WILSON AVENUE,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4479618,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,13:25,,,,,,GRAND CENTRAL PARKWAY,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4480176,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/21/2021,23:39,,,40.6628,-73.769585,"(40.6628, -73.769585)",FARMERS BOULEVARD,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480403,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,6:20,BRONX,10458,,,,,,2458 ARTHUR AVENUE,0,0,0,0,0,0,0,0,Fell Asleep,Unspecified,Unspecified,,,4479809,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/21/2021,18:50,QUEENS,11430,,,,VAN WYCK EXPRESSWAY,BELT PARKWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Passing or Lane Usage Improper,,,,4479679,Sedan,Sedan,,, +11/21/2021,11:43,MANHATTAN,10005,40.705772,-74.00887,"(40.705772, -74.00887)",,,63 WALL STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479810,Box Truck,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,5:50,,,40.77461,-73.94809,"(40.77461, -73.94809)",YORK AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479746,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/19/2021,17:32,BRONX,10456,40.83154,-73.910034,"(40.83154, -73.910034)",,,1188 WEBSTER AVENUE,1,0,1,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4480210,,,,, +11/21/2021,0:40,QUEENS,11423,40.710705,-73.76346,"(40.710705, -73.76346)",196 STREET,99 AVENUE,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,Unspecified,Unspecified,Unspecified,,4479307,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/17/2021,6:10,,,40.60595,-74.07601,"(40.60595, -74.07601)",STATEN ISLAND EXPRESSWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4480290,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,18:50,,,40.700245,-73.92089,"(40.700245, -73.92089)",KNICKERBOCKER AVENUE,,,1,0,0,0,0,0,1,0,,,,,,4479651,,,,, +11/21/2021,4:40,MANHATTAN,10036,40.755337,-73.98532,"(40.755337, -73.98532)",,,136 WEST 42 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4480147,Sedan,,,, +11/16/2021,5:20,,,40.831623,-73.95072,"(40.831623, -73.95072)",HENRY HUDSON PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480396,Sedan,Sedan,,, +11/21/2021,22:40,,,40.841187,-73.93215,"(40.841187, -73.93215)",HARLEM RIVER DRIVE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4480198,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,1:45,,,40.699265,-73.72717,"(40.699265, -73.72717)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4479324,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/16/2021,6:12,,,,,,PLAZA STREET WEST,FLATBUSH AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4480224,Sedan,,,, +11/21/2021,9:20,BROOKLYN,11229,40.611885,-73.94508,"(40.611885, -73.94508)",AVENUE P,EAST 29 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479747,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/17/2021,17:18,BRONX,10462,40.85159,-73.867805,"(40.85159, -73.867805)",WHITE PLAINS ROAD,BRONXDALE AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4480301,Sedan,,,, +11/21/2021,14:22,QUEENS,11434,40.671825,-73.774506,"(40.671825, -73.774506)",137 AVENUE,BREWER BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,Unspecified,,,4479670,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,8:00,BRONX,10468,40.865345,-73.90849,"(40.865345, -73.90849)",SEDGWICK AVENUE,BAILEY AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480141,Station Wagon/Sport Utility Vehicle,,,, +11/16/2021,11:40,QUEENS,11434,40.67824,-73.7711,"(40.67824, -73.7711)",130 AVENUE,BEDELL STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4480174,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,20:20,STATEN ISLAND,10308,40.54996,-74.15085,"(40.54996, -74.15085)",NELSON AVENUE,AMBOY ROAD,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479704,Station Wagon/Sport Utility Vehicle,,,, +10/15/2021,23:45,,,,,,MOSHOLU PARKWAY,,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,Unspecified,Unspecified,,4467564,Sedan,Taxi,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/16/2021,18:05,STATEN ISLAND,10304,40.633953,-74.085754,"(40.633953, -74.085754)",VICTORY BOULEVARD,CEBRA AVENUE,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4480283,Sedan,Sedan,,, +11/21/2021,12:46,,,40.823772,-73.87245,"(40.823772, -73.87245)",BRONX RIVER PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479489,PK,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,15:30,MANHATTAN,10002,40.721985,-73.98552,"(40.721985, -73.98552)",NORFOLK STREET,EAST HOUSTON STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479617,Sedan,,,, +11/21/2021,1:30,,,40.844795,-73.92445,"(40.844795, -73.92445)",CROSS BRONX EXPY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4479911,Sedan,Tractor Truck Gasoline,,, +10/18/2021,14:10,QUEENS,11377,40.741512,-73.89056,"(40.741512, -73.89056)",74 STREET,44 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480420,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,2:05,BROOKLYN,11206,40.69864,-73.93819,"(40.69864, -73.93819)",BROADWAY,LOCUST STREET,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479641,Sedan,Sedan,,, +11/17/2021,13:05,BRONX,10460,40.844982,-73.88244,"(40.844982, -73.88244)",EAST 180 STREET,HONEYWELL AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4480115,Sedan,,,, +11/21/2021,21:24,QUEENS,11377,40.757847,-73.89922,"(40.757847, -73.89922)",31 AVENUE,68 STREET,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480318,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/21/2021,8:50,QUEENS,11369,40.760685,-73.862206,"(40.760685, -73.862206)",,,107-10 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,Unspecified,,,4479431,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/21/2021,13:45,BRONX,10465,40.833633,-73.81725,"(40.833633, -73.81725)",,,926 DEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479820,Bus,Pick-up Truck,,, +11/21/2021,20:39,BRONX,10453,,,,Major Deegan expressway,W Fordham road,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Following Too Closely,,,,4479927,Sedan,Sedan,,, +11/21/2021,14:30,QUEENS,11368,40.74069,-73.86353,"(40.74069, -73.86353)",98 STREET,CHRISTIE AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479524,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/21/2021,22:20,,,40.748955,-73.87136,"(40.748955, -73.87136)",95 STREET,ROOSEVELT AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479685,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,8:00,MANHATTAN,10035,40.807087,-73.94178,"(40.807087, -73.94178)",5 AVENUE,WEST 126 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480189,Sedan,Bus,,, +11/18/2021,13:00,BRONX,10467,40.874897,-73.88043,"(40.874897, -73.88043)",ROCHAMBEAU AVENUE,EAST 206 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480231,Station Wagon/Sport Utility Vehicle,,,, +11/04/2021,8:51,QUEENS,11105,40.777103,-73.9095,"(40.777103, -73.9095)",,,21-45 31 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4480124,Sedan,,,, +11/21/2021,18:21,MANHATTAN,10025,40.79209,-73.973656,"(40.79209, -73.973656)",BROADWAY,WEST 92 STREET,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Traffic Control Disregarded,,,,4479633,Sedan,Sedan,,, +11/21/2021,20:51,BROOKLYN,11205,40.696774,-73.97359,"(40.696774, -73.97359)",,,42 CARLTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479697,Sedan,,,, +11/21/2021,16:38,BROOKLYN,11221,40.68865,-73.929375,"(40.68865, -73.929375)",,,864 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480358,Sedan,,,, +11/17/2021,11:09,QUEENS,11366,40.71995,-73.80888,"(40.71995, -73.80888)",,,158-02 UNION TURNPIKE,0,0,0,0,0,0,0,0,Unspecified,,,,,4480181,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,11:30,BROOKLYN,11235,40.57812,-73.95902,"(40.57812, -73.95902)",BRIGHTON BEACH AVENUE,BRIGHTON 11 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479897,Sedan,,,, +11/21/2021,0:05,QUEENS,11377,40.75221,-73.90443,"(40.75221, -73.90443)",BROADWAY,57 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479350,E-Bike,Motorcycle,,, +11/21/2021,13:57,MANHATTAN,10036,40.763374,-73.99647,"(40.763374, -73.99647)",WEST 46 STREET,11 AVENUE,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4480105,Station Wagon/Sport Utility Vehicle,Sedan,,, +09/04/2022,11:03,QUEENS,11426,40.73444,-73.72179,"(40.73444, -73.72179)",HILLSIDE AVENUE,COMMONWEALTH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4561518,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,15:00,,,40.71135,-73.96143,"(40.71135, -73.96143)",SOUTH 4 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4479594,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/21/2021,3:45,,,40.864216,-73.895805,"(40.864216, -73.895805)",GRAND CONCOURSE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479938,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,11:00,BROOKLYN,11207,40.682465,-73.89249,"(40.682465, -73.89249)",,,256 HIGHLAND BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4479839,Sedan,,,, +11/21/2021,19:10,,,,,,G.C.P / L.I.E. (CDR),,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479725,Sedan,Taxi,,, +11/19/2021,19:34,BROOKLYN,11232,40.643147,-73.99802,"(40.643147, -73.99802)",44 STREET,9 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4480253,Station Wagon/Sport Utility Vehicle,Bike,,, +11/21/2021,0:00,BROOKLYN,11226,40.65249,-73.95267,"(40.65249, -73.95267)",LINDEN BOULEVARD,ROGERS AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479780,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,0:00,MANHATTAN,10033,40.846947,-73.93848,"(40.846947, -73.93848)",,,700 WEST 176 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4480183,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,18:40,BRONX,10470,40.906517,-73.8516,"(40.906517, -73.8516)",,,4803 CARPENTER AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4479655,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,11:52,QUEENS,11106,40.763416,-73.92844,"(40.763416, -73.92844)",CRESCENT STREET,BROADWAY,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4480116,Garbage or Refuse,Sedan,,, +11/21/2021,13:55,,,40.876606,-73.89959,"(40.876606, -73.89959)",PEROT STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480158,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,19:50,BROOKLYN,11236,40.64024,-73.91947,"(40.64024, -73.91947)",RALPH AVENUE,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479696,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,22:54,BROOKLYN,11207,40.6828,-73.90638,"(40.6828, -73.90638)",FURMAN AVENUE,BUSHWICK AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,Unspecified,Unspecified,Unspecified,4479955,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle +11/21/2021,22:20,,,40.81457,-73.931,"(40.81457, -73.931)",MAJOR DEEGAN EXPRESSWAY,,,1,0,0,0,0,0,1,0,Other Vehicular,Unspecified,Unspecified,,,4479794,Sedan,,,, +11/21/2021,12:00,BRONX,10466,40.886333,-73.847885,"(40.886333, -73.847885)",,,4034 LACONIA AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479548,Sedan,,,, +11/21/2021,14:32,BRONX,10458,40.855385,-73.88468,"(40.855385, -73.88468)",EAST 188 STREET,CAMBRELENG AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4479813,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,1:00,BROOKLYN,11207,40.68746,-73.906494,"(40.68746, -73.906494)",CENTRAL AVENUE,MOFFAT STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4479650,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,19:30,BRONX,10466,40.88851,-73.86009,"(40.88851, -73.86009)",WHITE PLAINS ROAD,EAST 226 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479791,Sedan,Sedan,,, +11/21/2021,13:30,BROOKLYN,11203,40.647114,-73.94338,"(40.647114, -73.94338)",BROOKLYN AVENUE,TILDEN AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480202,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,21:25,QUEENS,11419,40.692646,-73.83302,"(40.692646, -73.83302)",ATLANTIC AVENUE,113 STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479714,Sedan,Sedan,,, +11/14/2021,17:42,BRONX,10459,40.831966,-73.8967,"(40.831966, -73.8967)",PROSPECT AVENUE,JENNINGS STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,,,,,4480213,Convertible,,,, +11/21/2021,3:00,,,40.700836,-73.99495,"(40.700836, -73.99495)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479310,Sedan,Sedan,,, +11/21/2021,15:24,MANHATTAN,10014,40.727665,-74.00318,"(40.727665, -74.00318)",AVENUE OF THE AMERICAS,KING STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480294,Station Wagon/Sport Utility Vehicle,Motorcycle,,, +11/08/2021,11:00,MANHATTAN,10016,40.74168,-73.981064,"(40.74168, -73.981064)",,,385 3 AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480146,Sedan,Sedan,,, +11/18/2021,1:19,MANHATTAN,10018,40.756805,-73.993805,"(40.756805, -73.993805)",,,532 9 AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4480421,Taxi,,,, +11/21/2021,13:54,BRONX,10458,40.8617,-73.89139,"(40.8617, -73.89139)",WEBSTER AVENUE,EAST FORDHAM ROAD,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4479929,Sedan,,,, +11/21/2021,10:00,QUEENS,11368,40.749264,-73.86847,"(40.749264, -73.86847)",ROOSEVELT AVENUE,97 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479522,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/21/2021,5:35,BRONX,10461,,,,,,1706 WILLIAMSBRIDGE ROAD,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479528,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,19:30,BRONX,10458,40.85579,-73.881,"(40.85579, -73.881)",,,2475 SOUTHERN BOULEVARD,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479870,Station Wagon/Sport Utility Vehicle,,,, +11/15/2021,18:30,,,40.606182,-74.07613,"(40.606182, -74.07613)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4480289,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,14:45,QUEENS,11368,40.73859,-73.849106,"(40.73859, -73.849106)",,,110-35 HORACE HARDING EXPRESSWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479578,Sedan,Taxi,,, +11/21/2021,23:02,MANHATTAN,10035,40.798584,-73.93353,"(40.798584, -73.93353)",1 AVENUE,EAST 120 STREET,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4479914,Sedan,Taxi,,, +11/18/2021,14:50,QUEENS,11368,40.757183,-73.85503,"(40.757183, -73.85503)",114 STREET,34 AVENUE,,1,0,0,0,1,0,0,0,Unspecified,,,,,4480325,Bike,,,, +11/21/2021,10:15,,,40.735336,-73.91689,"(40.735336, -73.91689)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Tire Failure/Inadequate,,,,,4479632,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,13:52,,,40.73235,-73.984955,"(40.73235, -73.984955)",2 AVENUE,,,1,0,0,0,1,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4480047,Sedan,Bike,,, +11/18/2021,10:30,,,40.737682,-73.85206,"(40.737682, -73.85206)",108 STREET,HORACE HARDING EXPRESSWAY,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4480417,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,1:45,BROOKLYN,11203,40.641125,-73.94563,"(40.641125, -73.94563)",AVENUE D,NEW YORK AVENUE,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,Unspecified,,4479424,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle, +11/21/2021,9:30,BRONX,10457,40.846825,-73.89705,"(40.846825, -73.89705)",BATHGATE AVENUE,EAST TREMONT AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479871,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +11/21/2021,12:16,BROOKLYN,11207,40.659832,-73.897606,"(40.659832, -73.897606)",HINSDALE STREET,NEW LOTS AVENUE,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unsafe Speed,,,,4479979,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,13:50,BRONX,10451,40.826153,-73.920265,"(40.826153, -73.920265)",EAST 161 STREET,SHERMAN AVENUE,,1,0,0,0,0,0,1,0,Turning Improperly,,,,,4480110,Sedan,,,, +11/21/2021,5:40,QUEENS,11372,40.750957,-73.872955,"(40.750957, -73.872955)",,,94-13 37 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Other Vehicular,,,,4479432,Van,Van,,, +11/21/2021,5:34,BRONX,10470,,,,WHITE PLAINS ROAD,SAINT OUEN STREET,,0,0,0,0,0,0,0,0,Unsafe Speed,,,,,4479575,Sedan,,,, +11/06/2021,0:06,,,40.68888,-73.960014,"(40.68888, -73.960014)",LAFAYETTE AVENUE,,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,,,,4480367,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/16/2021,6:45,,,40.667683,-73.99608,"(40.667683, -73.99608)",GOWANUS EXPY (BQE),,,0,0,0,0,0,0,0,0,Obstruction/Debris,,,,,4480393,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,13:00,,,40.672016,-73.94086,"(40.672016, -73.94086)",STERLING PLACE,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479613,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,13:35,,,40.769222,-73.967316,"(40.769222, -73.967316)",MADISON AVENUE,,,1,0,0,0,0,0,1,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4479748,Station Wagon/Sport Utility Vehicle,Motorscooter,,, +11/19/2021,9:30,BRONX,10466,40.89341,-73.85737,"(40.89341, -73.85737)",EAST 233 STREET,WHITE PLAINS ROAD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,,,,,4480335,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,3:00,,,40.519722,-74.22867,"(40.519722, -74.22867)",AMBOY ROAD,RICHMOND VALLEY ROAD,,1,0,0,0,0,0,1,0,Alcohol Involvement,,,,,4480145,Station Wagon/Sport Utility Vehicle,,,, +11/17/2021,18:45,BROOKLYN,11231,40.681934,-74.00572,"(40.681934, -74.00572)",HAMILTON AVENUE,WOODHULL STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unspecified,,,,4480264,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,14:00,,,40.605305,-74.162224,"(40.605305, -74.162224)",RICHMOND AVENUE,CROFT PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479482,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,5:30,QUEENS,11429,40.703175,-73.7483,"(40.703175, -73.7483)",113 AVENUE,207 STREET,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,,,,4479645,Sedan,Sedan,,, +11/21/2021,3:45,BRONX,10462,40.83401,-73.85348,"(40.83401, -73.85348)",WESTCHESTER AVENUE,UNIONPORT ROAD,,1,0,0,0,0,0,1,0,Unspecified,,,,,4479383,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,15:15,BROOKLYN,11213,40.665634,-73.93898,"(40.665634, -73.93898)",,,580 CROWN STREET,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479595,Sedan,E-Bike,,, +11/21/2021,3:40,BROOKLYN,11207,40.657997,-73.87837,"(40.657997, -73.87837)",WARWICK STREET,COZINE AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,Unspecified,Unspecified,Unspecified,4479854,Sedan,Sedan,Sedan,Sedan,Station Wagon/Sport Utility Vehicle +11/21/2021,10:00,BROOKLYN,11215,40.660934,-73.983246,"(40.660934, -73.983246)",8 AVENUE,WINDSOR PLACE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479588,Sedan,,,, +11/18/2021,0:30,,,40.75991,-73.95882,"(40.75991, -73.95882)",EAST 61 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480201,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,9:09,BROOKLYN,11212,40.656273,-73.90731,"(40.656273, -73.90731)",ROCKAWAY AVENUE,HEGEMAN AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4480048,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,16:20,QUEENS,11378,40.72325,-73.888824,"(40.72325, -73.888824)",71 STREET,60 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4479671,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/21/2021,10:55,,,40.582726,-73.97321,"(40.582726, -73.97321)",SHORE PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,Unspecified,Unspecified,4479902,Sedan,Sedan,Sedan,Sedan,Sedan +11/21/2021,22:45,,,40.70719,-73.81873,"(40.70719, -73.81873)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4480091,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/21/2021,15:00,BRONX,10456,40.824066,-73.908714,"(40.824066, -73.908714)",3 AVENUE,EAST 163 STREET,,1,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479949,Station Wagon/Sport Utility Vehicle,E-Scooter,,, +11/21/2021,20:16,BROOKLYN,11226,40.640705,-73.952385,"(40.640705, -73.952385)",AVENUE D,EAST 26 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4479738,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,6:30,QUEENS,11434,40.68378,-73.789734,"(40.68378, -73.789734)",116 AVENUE,155 STREET,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4480172,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,10:45,QUEENS,11369,40.76843,-73.8734,"(40.76843, -73.8734)",97 STREET,23 AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480317,Sedan,Sedan,,, +11/21/2021,20:30,,,,,,BELT PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479664,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/17/2021,18:30,MANHATTAN,10026,0,0,"(0.0, 0.0)",,,20 LENOX AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480190,Motorcycle,,,, +11/21/2021,16:10,,,40.68879,-73.91691,"(40.68879, -73.91691)",CORNELIA STREET,,,0,0,0,0,0,0,0,0,Driver Inexperience,Passing Too Closely,Unspecified,,,4479653,Station Wagon/Sport Utility Vehicle,Sedan,Station Wagon/Sport Utility Vehicle,, +11/21/2021,2:20,,,,,,LONG ISLAND EXPRESSWAY,164 STREET,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4479334,Sedan,Sedan,Sedan,, +11/20/2021,10:50,BRONX,10451,40.822357,-73.91146,"(40.822357, -73.91146)",,,830 WASHINGTON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,Unspecified,,,4480214,Sedan,Station Wagon/Sport Utility Vehicle,Sedan,, +11/21/2021,11:27,,,40.78757,-73.815315,"(40.78757, -73.815315)",CROSS ISLAND PARKWAY,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479536,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,22:20,,,,,,HEMPSTEAD TURNPIKE,ROUTE 9 EXTENSION WEST,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4479699,Sedan,Station Wagon/Sport Utility Vehicle,,, +10/19/2021,9:59,QUEENS,11103,,,,,,37-04 28 AVENUE,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4470669,Sedan,Sedan,,, +11/21/2021,6:00,BRONX,10459,40.821976,-73.9,"(40.821976, -73.9)",,,861 EAST 163 STREET,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Unspecified,Unspecified,,,4480310,Sedan,Sedan,Sedan,, +11/15/2021,16:30,QUEENS,11106,40.761597,-73.9246,"(40.761597, -73.9246)",BROADWAY,32 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480152,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,20:19,QUEENS,11101,40.748444,-73.938736,"(40.748444, -73.938736)",,,28-07 JACKSON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479705,Sedan,,,, +11/21/2021,0:40,,,40.651974,-73.86542,"(40.651974, -73.86542)",BELT PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479837,4 dr sedan,Sedan,,, +11/21/2021,20:20,STATEN ISLAND,10301,40.633244,-74.095184,"(40.633244, -74.095184)",,,380 CASTLETON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479684,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,7:45,QUEENS,11377,40.73701,-73.89993,"(40.73701, -73.89993)",65 PLACE,50 AVENUE,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4479634,Sedan,Sedan,,, +10/23/2021,23:00,MANHATTAN,10012,,,,,,85 KENMARE STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4480207,Sedan,,,, +11/19/2021,18:18,BROOKLYN,11215,40.67079,-73.9949,"(40.67079, -73.9949)",12 STREET,2 AVENUE,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4480227,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,14:55,BRONX,10453,40.855785,-73.90558,"(40.855785, -73.90558)",JEROME AVENUE,EAST 181 STREET,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479896,,,,, +11/20/2021,9:55,QUEENS,11101,40.755234,-73.941246,"(40.755234, -73.941246)",21 STREET,40 AVENUE,,1,0,0,0,0,0,1,0,Unsafe Speed,Unspecified,Unspecified,,,4480126,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/21/2021,9:30,,,40.769897,-73.91344,"(40.769897, -73.91344)",36 STREET,ASTORIA BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479723,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,10:55,BRONX,10454,40.807552,-73.91922,"(40.807552, -73.91922)",EAST 138 STREET,BROOK AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479804,Sedan,Bike,,, +11/19/2021,19:35,QUEENS,11369,40.76919,-73.8761,"(40.76919, -73.8761)",,,94-00 DITMARS BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,,,,,4480321,Sedan,,,, +11/20/2021,17:51,QUEENS,11366,40.720604,-73.80697,"(40.720604, -73.80697)",,,160-20 UNION TURNPIKE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480179,Sedan,Sedan,,, +11/21/2021,14:25,BRONX,10461,40.84444,-73.83559,"(40.84444, -73.83559)",WESTCHESTER AVENUE,MULFORD AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479815,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,23:15,,,40.768917,-73.888756,"(40.768917, -73.888756)",81 STREET,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480423,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,18:46,MANHATTAN,10032,40.835358,-73.94022,"(40.835358, -73.94022)",WEST 161 STREET,AMSTERDAM AVENUE,,3,0,0,0,0,0,3,0,Unspecified,Unspecified,,,,4480186,Sedan,Taxi,,, +11/21/2021,3:36,,,40.696663,-73.98085,"(40.696663, -73.98085)",BROOKLYN QUEENS EXPRESSWAY,,,0,0,0,0,0,0,0,0,Following Too Closely,,,,,4479311,Sedan,,,, +11/20/2021,13:00,BROOKLYN,11236,40.63494,-73.90106,"(40.63494, -73.90106)",,,8916 AVENUE L,0,0,0,0,0,0,0,0,Backing Unsafely,,,,,4480295,,,,, +11/12/2021,8:48,MANHATTAN,10016,40.742706,-73.984535,"(40.742706, -73.984535)",EAST 27 STREET,PARK AVENUE SOUTH,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480208,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,3:16,QUEENS,11414,40.662926,-73.837875,"(40.662926, -73.837875)",157 AVENUE,96 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Failure to Yield Right-of-Way,,,,4479663,Sedan,Sedan,,, +11/21/2021,0:30,BRONX,10453,40.861862,-73.91275,"(40.861862, -73.91275)",WEST FORDHAM ROAD,MAJOR DEEGAN EXPRESSWAY,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479930,Sedan,Sedan,,, +11/21/2021,11:16,,,,,,PELHAM PARKWAY SOUTH,STILLWELL AVENUE,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479529,Sedan,,,, +11/21/2021,0:15,BRONX,10460,40.841026,-73.890396,"(40.841026, -73.890396)",,,806 EAST 175 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479919,Station Wagon/Sport Utility Vehicle,Garbage or Refuse,,, +11/19/2021,7:49,BRONX,10460,40.835968,-73.87,"(40.835968, -73.87)",CROSS BRONX EXPRESSWAY,ROSEDALE AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480247,Bus,Sedan,,, +11/18/2021,20:21,BRONX,10463,40.87432,-73.90636,"(40.87432, -73.90636)",,,2811 EXTERIOR STREET,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480154,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/21/2021,14:30,QUEENS,11105,40.782207,-73.91155,"(40.782207, -73.91155)",,,20-16 24 STREET,4,0,0,0,0,0,4,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,4479732,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan +11/21/2021,15:41,BROOKLYN,11219,40.631454,-73.992256,"(40.631454, -73.992256)",14 AVENUE,53 STREET,,0,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4479773,Bus,Bus,,, +11/07/2021,20:00,,,40.83818,-73.88155,"(40.83818, -73.88155)",WEST FARMS ROAD,CROSS BRONX EXPRESSWAY,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4480119,Sedan,Sedan,,, +11/21/2021,4:48,BROOKLYN,11239,40.65289,-73.866745,"(40.65289, -73.866745)",GATEWAY DRIVE,ERSKINE STREET,,2,0,0,0,0,0,2,0,Unsafe Speed,,,,,4479855,Sedan,,,, +11/21/2021,16:10,QUEENS,11361,40.760284,-73.769356,"(40.760284, -73.769356)",NORTHERN BOULEVARD,BELL BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479586,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,17:05,QUEENS,11377,40.748993,-73.89687,"(40.748993, -73.89687)",69 STREET,BROADWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479630,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +11/21/2021,1:20,QUEENS,11422,40.66758,-73.737404,"(40.66758, -73.737404)",FRANCIS LEWIS BOULEVARD,BROOKVILLE BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480405,Sedan,,,, +11/21/2021,6:16,BROOKLYN,11206,40.706917,-73.93972,"(40.706917, -73.93972)",BUSHWICK AVENUE,JOHNSON AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4479425,Sedan,Sedan,,, +11/21/2021,14:30,,,40.614685,-74.15805,"(40.614685, -74.15805)",RICHMOND AVENUE,LAMBERTS LANE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479880,Sedan,Sedan,,, +11/21/2021,22:31,QUEENS,11419,40.68795,-73.82502,"(40.68795, -73.82502)",103 AVENUE,LEFFERTS BOULEVARD,,2,0,0,0,0,0,2,0,Failure to Yield Right-of-Way,Unspecified,,,,4479695,Sedan,Sedan,,, +11/19/2021,16:15,,,40.61132,-74.114716,"(40.61132, -74.114716)",STATEN ISLAND EXPRESSWAY,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4480288,Sedan,Tractor Truck Diesel,,, +11/21/2021,14:38,,,,,,BROOKLYN QUEENS EXPY (CDR),,,0,0,0,0,0,0,0,0,Reaction to Uninvolved Vehicle,Following Too Closely,,,,4479589,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,4:55,BRONX,10455,40.8126,-73.899,"(40.8126, -73.899)",BRUCKNER BOULEVARD,TIMPSON PLACE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479636,Sedan,Sedan,,, +11/21/2021,10:30,BRONX,10463,40.884235,-73.901146,"(40.884235, -73.901146)",,,5791 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480128,,,,, +11/21/2021,15:34,,,,,,WHITESTONE EXPRESSWAY,LINDEN PLACE,,1,0,0,0,0,0,1,0,Outside Car Distraction,Aggressive Driving/Road Rage,Unspecified,Unspecified,,4480034,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/21/2021,2:15,,,40.677364,-73.90798,"(40.677364, -73.90798)",EASTERN PARKWAY,,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4480050,Taxi,,,, +11/21/2021,9:15,MANHATTAN,10010,40.73831,-73.98775,"(40.73831, -73.98775)",PARK AVENUE SOUTH,EAST 20 STREET,,1,0,1,0,0,0,0,0,Unspecified,,,,,4479408,Sedan,,,, +11/21/2021,14:57,BRONX,10451,40.81881,-73.92828,"(40.81881, -73.92828)",EAST 149 STREET,WALTON AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479790,Sedan,Motorcycle,,, +11/21/2021,5:00,QUEENS,11368,40.740593,-73.858574,"(40.740593, -73.858574)",,,54-18 102 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479521,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,14:00,BRONX,10457,40.84921,-73.90011,"(40.84921, -73.90011)",WEBSTER AVENUE,EAST 178 STREET,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479894,Sedan,Station Wagon/Sport Utility Vehicle,,, +04/21/2022,13:45,BROOKLYN,11231,40.676487,-73.99873,"(40.676487, -73.99873)",NELSON STREET,COURT STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4520930,Sedan,E-Bike,,, +11/21/2021,19:48,,,40.810318,-73.943634,"(40.810318, -73.943634)",LENOX AVENUE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479647,Sedan,,,, +11/21/2021,16:29,QUEENS,11361,40.762093,-73.76607,"(40.762093, -73.76607)",43 AVENUE,216 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4479966,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,Sedan, +11/21/2021,23:40,BROOKLYN,11207,40.678265,-73.89724,"(40.678265, -73.89724)",,,80 JAMAICA AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479845,Sedan,,,, +11/21/2021,12:54,BRONX,10466,40.88891,-73.84213,"(40.88891, -73.84213)",,,3916 BAYCHESTER AVENUE,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479565,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,8:00,BROOKLYN,11215,40.673874,-73.983795,"(40.673874, -73.983795)",,,338 2 STREET,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4480226,Sedan,Sedan,,, +11/19/2021,16:52,MANHATTAN,10019,40.772236,-73.99388,"(40.772236, -73.99388)",WEST 58 STREET,12 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480196,Sedan,Sedan,,, +11/21/2021,18:33,QUEENS,11004,40.746235,-73.71862,"(40.746235, -73.71862)",,,74-15 LITTLE NECK PARKWAY,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4479700,Sedan,Sedan,,, +11/21/2021,20:40,,,40.683094,-73.80596,"(40.683094, -73.80596)",VAN WYCK EXPWY,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479672,Sedan,Sedan,,, +11/19/2021,23:00,QUEENS,11103,40.755764,-73.91218,"(40.755764, -73.91218)",BROADWAY,NEWTOWN ROAD,,3,0,0,0,0,0,3,0,Unsafe Speed,Unspecified,,,,4480144,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,6:00,QUEENS,11103,40.76958,-73.9156,"(40.76958, -73.9156)",,,34-16 ASTORIA BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480170,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,20:55,,,40.821484,-73.94855,"(40.821484, -73.94855)",CONVENT AVENUE,,,1,0,0,0,1,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Passing or Lane Usage Improper,,,,4479713,Taxi,E-Bike,,, +11/21/2021,6:50,,,40.772697,-73.83396,"(40.772697, -73.83396)",LINDEN PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Failure to Yield Right-of-Way,,,,4479537,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,7:20,,,40.854923,-73.83296,"(40.854923, -73.83296)",EAST 197 STREET,HUTCHINSON RIVER PARKWAY EAST,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4479466,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,23:38,,,,,,,,530 Gulf Avenue,0,1,0,1,0,0,0,0,Unspecified,,,,,4480262,Sedan,,,, +11/21/2021,2:15,BRONX,10453,40.853813,-73.90734,"(40.853813, -73.90734)",WEST BURNSIDE AVENUE,JEROME AVENUE,,1,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479901,Sedan,E-Scooter,,, +11/21/2021,19:57,BRONX,10456,,,,165 street,MORRIS AVENUE,,0,0,0,0,0,0,0,0,Other Vehicular,Unsafe Lane Changing,,,,4480090,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,14:55,MANHATTAN,10034,40.865887,-73.91791,"(40.865887, -73.91791)",,,3912 10 AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479597,Station Wagon/Sport Utility Vehicle,UNKNOWN,,, +11/21/2021,11:30,MANHATTAN,10029,40.794594,-73.932106,"(40.794594, -73.932106)",,,545 EAST 116 STREET,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4479740,Sedan,,,, +11/21/2021,8:30,BRONX,10451,40.824806,-73.91352,"(40.824806, -73.91352)",EAST 162 STREET,MELROSE AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,Unspecified,Unspecified,,4479946,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle, +11/21/2021,16:56,BROOKLYN,11212,40.656067,-73.908745,"(40.656067, -73.908745)",,,89 HEGEMAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4479826,Sedan,Sedan,,, +11/21/2021,2:15,BROOKLYN,11211,40.71337,-73.934814,"(40.71337, -73.934814)",GRAND STREET,MORGAN AVENUE,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4479436,Sedan,,,, +11/21/2021,2:30,,,40.740894,-73.89961,"(40.740894, -73.89961)",65 PLACE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4479349,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,18:30,,,40.69953,-73.91104,"(40.69953, -73.91104)",PALMETTO STREET,,,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4479652,Sedan,Sedan,,, +11/09/2021,6:00,,,40.60481,-74.023964,"(40.60481, -74.023964)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4480389,Station Wagon/Sport Utility Vehicle,Bus,,, +11/21/2021,18:31,BROOKLYN,11235,0,0,"(0.0, 0.0)",,,1710 AVENUE Y,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479750,Taxi,,,, +11/21/2021,3:55,,,40.72125,-73.93651,"(40.72125, -73.93651)",DIVISION PLACE,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4479607,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,10:35,MANHATTAN,10032,40.839767,-73.94073,"(40.839767, -73.94073)",,,3959 BROADWAY,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480200,Station Wagon/Sport Utility Vehicle,Box Truck,,, +11/18/2021,9:00,BRONX,10457,40.840427,-73.89843,"(40.840427, -73.89843)",,,1695 FULTON AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4480215,Motorcycle,,,, +11/21/2021,10:40,MANHATTAN,10036,40.756035,-73.98695,"(40.756035, -73.98695)",WEST 42 STREET,7 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480148,Sedan,,,, +11/20/2021,21:25,QUEENS,11377,40.752457,-73.89716,"(40.752457, -73.89716)",34 AVENUE,69 STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480312,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,0:15,,,,,,BELT PARKWAY,,,3,0,0,0,0,0,3,0,Unsafe Speed,Other Vehicular,Other Vehicular,,,4479665,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,23:11,,,40.822174,-73.95211,"(40.822174, -73.95211)",WEST 139 STREET,,,2,0,0,0,0,0,2,0,Backing Unsafely,Unspecified,,,,4480160,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +10/25/2021,6:36,,,,,,BERGEN STREET,,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4480370,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,10:25,BROOKLYN,11203,40.640633,-73.93982,"(40.640633, -73.93982)",,,669 EAST 39 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479884,Station Wagon/Sport Utility Vehicle,,,, +11/20/2021,2:30,,,40.598553,-73.997345,"(40.598553, -73.997345)",BATH AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480440,Sedan,,,, +11/21/2021,2:00,,,40.744846,-73.835686,"(40.744846, -73.835686)",COLLEGE POINT BOULEVARD,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,Unspecified,,,4479533,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/21/2021,13:57,,,40.638878,-74.00605,"(40.638878, -74.00605)",8 AVENUE,,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4479936,Station Wagon/Sport Utility Vehicle,,,, +11/18/2021,20:40,,,40.624203,-74.177124,"(40.624203, -74.177124)",STATEN ISLAND EXPRESSWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4480286,Station Wagon/Sport Utility Vehicle,Sedan,Taxi,, +11/21/2021,20:40,BROOKLYN,11207,40.679333,-73.89014,"(40.679333, -73.89014)",,,79 SCHENCK AVENUE,0,0,0,0,0,0,0,0,Turning Improperly,Other Vehicular,,,,4479858,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,8:54,QUEENS,11368,40.746906,-73.86371,"(40.746906, -73.86371)",43 AVENUE,NATIONAL STREET,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4479512,Station Wagon/Sport Utility Vehicle,E-Bike,,, +11/21/2021,13:25,BROOKLYN,11215,40.659863,-73.97752,"(40.659863, -73.97752)",PROSPECT PARK SOUTHWEST,10 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479590,Sedan,Sedan,,, +11/21/2021,18:10,MANHATTAN,10022,40.763588,-73.97142,"(40.763588, -73.97142)",EAST 59 STREET,MADISON AVENUE,,1,0,0,0,0,0,0,0,Other Vehicular,Following Too Closely,,,,4480109,E-Scooter,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,4:15,MANHATTAN,10002,40.720474,-73.98974,"(40.720474, -73.98974)",,,131 ALLEN STREET,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4480058,Sedan,Sedan,,, +11/21/2021,0:36,,,40.710243,-73.9584,"(40.710243, -73.9584)",BORINQUEN PLACE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4479428,Taxi,Bike,,, +11/13/2021,6:00,QUEENS,11369,40.75898,-73.87075,"(40.75898, -73.87075)",32 AVENUE,98 STREET,,0,0,0,0,0,0,0,0,Other Vehicular,Unspecified,,,,4480313,Station Wagon/Sport Utility Vehicle,,,, +11/19/2021,13:00,,,40.87091,-73.881,"(40.87091, -73.881)",HULL AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480155,Station Wagon/Sport Utility Vehicle,Bike,,, +11/21/2021,21:40,QUEENS,11418,40.707954,-73.83715,"(40.707954, -73.83715)",PARK LANE SOUTH,METROPOLITAN AVENUE,,0,0,0,0,0,0,0,0,Unsafe Speed,Unspecified,,,,4479717,Sedan,Motorcycle,,, +11/04/2021,14:22,MANHATTAN,10002,40.71362,-73.99534,"(40.71362, -73.99534)",,,63 EAST BROADWAY,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4480206,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,18:00,BRONX,10457,40.840378,-73.89846,"(40.840378, -73.89846)",,,1691 FULTON AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4480209,Sedan,,,, +11/21/2021,2:09,,,40.72277,-73.83625,"(40.72277, -73.83625)",GRAND CENTRAL PKWY,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,Driver Inattention/Distraction,,,4479313,Pick-up Truck,Station Wagon/Sport Utility Vehicle,Taxi,, +11/17/2021,5:21,,,40.662064,-73.76439,"(40.662064, -73.76439)",182 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4480404,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +11/21/2021,16:50,,,,,,WILLIS AVE BRIDGE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479786,Sedan,Sedan,,, +11/21/2021,21:09,BROOKLYN,11210,40.616837,-73.948586,"(40.616837, -73.948586)",,,2621 AVENUE N,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479817,Station Wagon/Sport Utility Vehicle,,,, +11/13/2021,23:01,BROOKLYN,11236,40.636833,-73.90682,"(40.636833, -73.90682)",,,8622 AVENUE J,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4480296,Sedan,Station Wagon/Sport Utility Vehicle,,, +11/21/2021,19:20,,,40.66484,-73.82229,"(40.66484, -73.82229)",BELT PARKWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,Unspecified,,,4479658,Sedan,Sedan,Sedan,, +11/17/2021,19:30,QUEENS,11101,40.750977,-73.934746,"(40.750977, -73.934746)",NORTHERN BOULEVARD,40 ROAD,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4480122,Sedan,E-Bike,,, +11/21/2021,13:45,,,40.702564,-73.790565,"(40.702564, -73.790565)",LIBERTY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,,,4479691,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,, +11/06/2021,22:40,QUEENS,11385,40.692314,-73.88268,"(40.692314, -73.88268)",CYPRESS AVENUE,CYPRESS HILLS STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4480347,Motorcycle,Sedan,,, +11/21/2021,0:40,BRONX,10457,40.856644,-73.89823,"(40.856644, -73.89823)",,,2242 VALENTINE AVENUE,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479807,Sedan,Sedan,,, +11/21/2021,12:15,BROOKLYN,11213,40.677414,-73.93033,"(40.677414, -73.93033)",UTICA AVENUE,ATLANTIC AVENUE,,2,0,2,0,0,0,0,0,Driver Inattention/Distraction,,,,,4479583,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,7:30,,,40.829655,-73.91729,"(40.829655, -73.91729)",GRANT AVENUE,,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4479397,Sedan,Sedan,,, +11/21/2021,20:08,,,40.744167,-73.91248,"(40.744167, -73.91248)",52 STREET,SKILLMAN AVENUE,,1,0,0,0,0,0,1,0,Unspecified,Unspecified,,,,4479921,Sedan,Sedan,,, +11/18/2021,7:20,QUEENS,11378,40.719624,-73.91132,"(40.719624, -73.91132)",RUST STREET,GRAND AVENUE,,2,0,0,0,0,0,2,0,Brakes Defective,Following Too Closely,Unspecified,,,4480140,Sedan,Sedan,Bike,, +11/21/2021,3:48,BRONX,10455,40.812126,-73.90419,"(40.812126, -73.90419)",EAST 149 STREET,SOUTHERN BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inexperience,Unspecified,,,,4479637,Sedan,Sedan,,, +11/21/2021,14:15,BROOKLYN,11210,40.63804,-73.95484,"(40.63804, -73.95484)",EAST 24 STREET,FOSTER AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479621,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,18:36,BROOKLYN,11236,40.645134,-73.90232,"(40.645134, -73.90232)",ROCKAWAY PARKWAY,GLENWOOD ROAD,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4480036,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +11/18/2021,16:39,,,40.766685,-73.892136,"(40.766685, -73.892136)",ASTORIA BOULEVARD,77 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4480320,Sedan,,,, +11/21/2021,20:30,,,,,,SOUTH CONDUIT AVENUE,LINDEN BOULEVARD,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,Unspecified,,,4479683,Sedan,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +11/21/2021,14:03,QUEENS,11102,40.77164,-73.926414,"(40.77164, -73.926414)",27 ROAD,21 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4479731,Sedan,,,, +11/15/2021,11:27,BRONX,10472,40.830025,-73.872765,"(40.830025, -73.872765)",WESTCHESTER AVENUE,METCALF AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4480246,Box Truck,,,, +11/21/2021,5:30,MANHATTAN,10033,40.848667,-73.939186,"(40.848667, -73.939186)",WEST 178 STREET,FORT WASHINGTON AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4480187,Station Wagon/Sport Utility Vehicle,,,, +11/21/2021,12:32,BROOKLYN,11215,40.6754,-73.9887,"(40.6754, -73.9887)",,,214 3 STREET,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4479764,Station Wagon/Sport Utility Vehicle,Sedan,,, +11/21/2021,17:50,,,40.672413,-73.957344,"(40.672413, -73.957344)",FRANKLIN AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Other Vehicular,,,,4479668,Bus,Station Wagon/Sport Utility Vehicle,,, +11/17/2021,6:46,,,40.550938,-74.164795,"(40.550938, -74.164795)",KATAN AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4480161,Sedan,,,, +11/18/2021,10:08,QUEENS,11432,40.720203,-73.7986,"(40.720203, -73.7986)",,,168-10 GOETHALS AVENUE,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4480177,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +11/20/2021,12:00,MANHATTAN,10032,40.844162,-73.93958,"(40.844162, -73.93958)",,,636 WEST 172 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4480197,Ambulance,,,, +11/21/2021,16:35,BROOKLYN,11234,40.609947,-73.92227,"(40.609947, -73.92227)",,,5100 AVENUE U,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4479702,Station Wagon/Sport Utility Vehicle,Bus,,, +12/13/2021,8:12,,,40.72114,-73.942825,"(40.72114, -73.942825)",NORTH HENRY STREET,MEEKER AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4486133,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +12/13/2021,18:25,,,40.84984,-73.934975,"(40.84984, -73.934975)",WEST 181 STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4486197,Sedan,Tractor Truck Diesel,,, +12/13/2021,20:03,BROOKLYN,11229,40.605442,-73.939445,"(40.605442, -73.939445)",,,3014 AVENUE S,0,0,0,0,0,0,0,0,Unspecified,Unspecified,Unspecified,,,4486264,Station Wagon/Sport Utility Vehicle,Pick-up Truck,Station Wagon/Sport Utility Vehicle,, +12/13/2021,0:57,BRONX,10457,40.8385,-73.90598,"(40.8385, -73.90598)",WEBSTER AVENUE,EAST 171 STREET,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4486896,Sedan,Sedan,,, +12/13/2021,11:45,BROOKLYN,11224,40.579212,-73.976265,"(40.579212, -73.976265)",SHEEPSHEAD BAY ROAD,WEST 8 STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4486376,Sedan,,,, +12/13/2021,9:30,STATEN ISLAND,10309,40.52272,-74.23926,"(40.52272, -74.23926)",,,4906 ARTHUR KILL ROAD,1,0,0,0,0,0,1,0,Lost Consciousness,Unspecified,Unspecified,,,4486694,Sedan,Sedan,Sedan,, +12/09/2021,22:52,,,40.681473,-73.72776,"(40.681473, -73.72776)",LAURELTON PARKWAY,,,3,0,0,0,0,0,3,0,Following Too Closely,Unspecified,Unspecified,,,4485078,Station Wagon/Sport Utility Vehicle,Sedan,Sedan,, +07/10/2022,19:41,,,40.596184,-74.00053,"(40.596184, -74.00053)",BELT PARKWAY,,,2,0,0,0,0,0,2,0,Following Too Closely,Unspecified,,,,4545084,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/09/2022,13:55,QUEENS,11436,40.677425,-73.79214,"(40.677425, -73.79214)",,,147-10 120 AVENUE,0,0,0,0,0,0,0,0,Other Vehicular,Backing Unsafely,,,,4545544,Sedan,Sedan,,, +06/30/2022,12:30,QUEENS,11362,40.762115,-73.72993,"(40.762115, -73.72993)",HORACE HARDING EXPRESSWAY,251 PLACE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545713,Sedan,,,, +06/25/2022,11:50,,,40.673393,-73.79048,"(40.673393, -73.79048)",147 STREET,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545629,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,18:00,BROOKLYN,11214,40.599907,-73.99721,"(40.599907, -73.99721)",,,124 BAY 29 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545335,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,18:37,BRONX,10469,40.876377,-73.84601,"(40.876377, -73.84601)",EASTCHESTER ROAD,TILLOTSON AVENUE,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545393,Station Wagon/Sport Utility Vehicle,Bus,,, +07/06/2022,19:35,,,40.85328,-73.83378,"(40.85328, -73.83378)",MAYFLOWER AVENUE,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545594,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,15:10,BRONX,10458,40.861107,-73.89028,"(40.861107, -73.89028)",EAST FORDHAM ROAD,3 AVENUE,,2,0,0,0,0,0,2,0,Driver Inattention/Distraction,Unspecified,,,,4545513,Sedan,Sedan,,, +07/10/2022,6:25,BRONX,10474,40.817116,-73.88307,"(40.817116, -73.88307)",,,772 EDGEWATER ROAD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545114,Tractor Truck Diesel,Tractor Truck Diesel,,, +07/10/2022,12:41,,,40.794735,-73.96988,"(40.794735, -73.96988)",WEST 97 STREET,,,1,0,1,0,0,0,0,0,Failure to Yield Right-of-Way,,,,,4545161,Bike,,,, +07/10/2022,6:44,BROOKLYN,11211,40.70795,-73.95424,"(40.70795, -73.95424)",,,374 SOUTH 5 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,Unspecified,Unspecified,,4545028,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Sedan,Sedan, +06/22/2022,18:35,,,40.576965,-74.16974,"(40.576965, -74.16974)",RICHMOND AVENUE,YUKON AVENUE,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545521,Station Wagon/Sport Utility Vehicle,Pick-up Truck,,, +07/10/2022,1:00,BRONX,10473,40.819157,-73.84705,"(40.819157, -73.84705)",,,2225 RANDALL AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545265,Sedan,,,, +07/09/2022,9:35,,,40.84519,-73.9112,"(40.84519, -73.9112)",CROSS BRONX EXPY,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545743,Station Wagon/Sport Utility Vehicle,Tractor Truck Diesel,,, +07/10/2022,17:50,BRONX,10474,40.811367,-73.89149,"(40.811367, -73.89149)",RANDALL AVENUE,WORTHEN STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545117,Box Truck,Sedan,,, +07/10/2022,2:20,QUEENS,11435,40.70124,-73.804985,"(40.70124, -73.804985)",,,149-15 ARCHER AVENUE,1,0,0,0,0,0,1,0,Unspecified,,,,,4545167,Station Wagon/Sport Utility Vehicle,,,, +06/27/2022,7:15,BROOKLYN,11221,40.689327,-73.92342,"(40.689327, -73.92342)",,,1008 GATES AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545605,Sedan,Sedan,,, +06/26/2022,0:05,,,40.58388,-73.82305,"(40.58388, -73.82305)",BEACH 102 STREET,ROCKAWAY BEACH BOULEVARD,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545568,Sedan,Sedan,,, +07/07/2022,1:06,,,40.860954,-73.92651,"(40.860954, -73.92651)",ARDEN STREET,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545577,Taxi,,,, +07/10/2022,5:30,QUEENS,11422,40.683598,-73.727196,"(40.683598, -73.727196)",LAURELTON PARKWAY,121 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545015,Sedan,,,, +07/10/2022,18:35,BRONX,10475,40.890076,-73.819855,"(40.890076, -73.819855)",BOSTON ROAD,ROPES AVENUE,,0,0,0,0,0,0,0,0,Driver Inexperience,Driver Inattention/Distraction,,,,4545403,Sedan,Sedan,,, +07/10/2022,5:09,,,40.60267,-74.1841,"(40.60267, -74.1841)",SOUTH AVENUE,TRAVIS AVENUE,,0,0,0,0,0,0,0,0,Fell Asleep,,,,,4545075,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,23:16,,,40.71572,-73.825745,"(40.71572, -73.825745)",VAN WYCK EXPWY,,,2,0,0,0,0,0,2,0,Passing or Lane Usage Improper,Unspecified,,,,4545525,Sedan,,,, +07/10/2022,9:15,BROOKLYN,11230,40.622814,-73.97567,"(40.622814, -73.97567)",,,1238 MC DONALD AVENUE,0,0,0,0,0,0,0,0,Brakes Defective,Unspecified,,,,4545002,Sedan,,,, +07/10/2022,23:55,QUEENS,11373,40.734737,-73.87227,"(40.734737, -73.87227)",90 STREET,57 AVENUE,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545178,E-Scooter,Sedan,,, +07/10/2022,9:58,MANHATTAN,10006,40.70934,-74.01356,"(40.70934, -74.01356)",,,8 ALBANY STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545566,Station Wagon/Sport Utility Vehicle,,,, +06/30/2022,22:10,,,40.691452,-73.88517,"(40.691452, -73.88517)",JACKIE ROBINSON PKWY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545511,Box Truck,,,, +07/10/2022,22:44,MANHATTAN,10031,40.818947,-73.95221,"(40.818947, -73.95221)",AMSTERDAM AVENUE,WEST 135 STREET,,1,0,0,0,0,0,1,0,Other Vehicular,,,,,4545107,Motorcycle,Pick-up Truck,,, +07/07/2022,12:28,STATEN ISLAND,10304,40.626003,-74.07525,"(40.626003, -74.07525)",THOMPSON STREET,BAY STREET,,4,0,0,0,0,0,4,0,Backing Unsafely,Unspecified,,,,4545693,Sedan,Sedan,,, +07/08/2022,15:05,,,40.879486,-73.8477,"(40.879486, -73.8477)",EASTCHESTER ROAD,,,2,0,0,0,0,0,2,0,Unsafe Speed,Unspecified,,,,4545664,Box Truck,Sedan,,, +07/10/2022,21:30,,,,,,VANWYCK EXPRESSWAY,LIBERTY AVENUE,,0,0,0,0,0,0,0,0,Aggressive Driving/Road Rage,Unspecified,Unspecified,,,4545273,Sedan,Sedan,Station Wagon/Sport Utility Vehicle,, +07/10/2022,21:04,BRONX,10455,40.819542,-73.91353,"(40.819542, -73.91353)",3 AVENUE,EAST 155 STREET,,1,0,0,0,0,0,0,0,Unspecified,,,,,4545226,E-Scooter,,,, +07/10/2022,4:40,,,40.83968,-73.929276,"(40.83968, -73.929276)",MAJOR DEEGAN EXPRESSWAY,,,0,0,0,0,0,0,0,0,Alcohol Involvement,Unspecified,,,,4545613,Sedan,Sedan,,, +07/10/2022,22:00,BRONX,10469,40.86017,-73.84184,"(40.86017, -73.84184)",,,2352 WOODHULL AVENUE,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545650,Pick-up Truck,,,, +07/10/2022,13:15,,,40.687977,-73.954834,"(40.687977, -73.954834)",GREENE AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545298,Pick-up Truck,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,17:41,BROOKLYN,11234,40.62877,-73.91825,"(40.62877, -73.91825)",RALPH AVENUE,AVENUE J,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545099,Sedan,Sedan,,, +07/10/2022,10:15,,,40.760994,-73.82443,"(40.760994, -73.82443)",ROOSEVELT AVENUE,,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545050,Box Truck,Sedan,,, +06/29/2022,12:15,,,40.784325,-73.94225,"(40.784325, -73.94225)",FDR DRIVE,,,1,0,0,0,0,0,1,0,Following Too Closely,Unspecified,,,,4545720,Sedan,Sedan,,, +07/10/2022,17:40,BRONX,10453,40.85554,-73.91413,"(40.85554, -73.91413)",LORING PLACE SOUTH,WEST 179 STREET,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4545536,Sedan,,,, +07/09/2022,16:30,MANHATTAN,10040,40.853333,-73.929726,"(40.853333, -73.929726)",,,564 WEST 188 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545581,Sedan,Sedan,,, +07/10/2022,18:32,MANHATTAN,10019,40.762856,-73.98942,"(40.762856, -73.98942)",WEST 49 STREET,9 AVENUE,,1,0,1,0,0,0,0,0,Traffic Control Disregarded,,,,,4545127,Sedan,,,, +07/10/2022,11:00,BRONX,10468,40.861813,-73.902954,"(40.861813, -73.902954)",,,2410 DAVIDSON AVENUE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545348,Sedan,,,, +07/10/2022,10:00,QUEENS,11370,,,,,,72-15 25 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545560,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,0:14,MANHATTAN,10009,40.730442,-73.98035,"(40.730442, -73.98035)",EAST 14 STREET,AVENUE A,,1,0,0,0,0,0,0,0,Following Too Closely,Traffic Control Disregarded,,,,4545482,Taxi,E-Scooter,,, +07/10/2022,0:05,BROOKLYN,11211,40.712215,-73.945724,"(40.712215, -73.945724)",MANHATTAN AVENUE,POWERS STREET,,0,0,0,0,0,0,0,0,Unsafe Lane Changing,Unsafe Speed,,,,4545044,Sedan,,,, +07/10/2022,0:30,,,40.66895,-73.9339,"(40.66895, -73.9339)",SCHENECTADY AVENUE,,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4544994,Sedan,Sedan,,, +07/10/2022,2:20,QUEENS,11434,40.66675,-73.779945,"(40.66675, -73.779945)",SOUTH CONDUIT AVENUE,ROCKAWAY BOULEVARD,,0,0,0,0,0,0,0,0,Passing or Lane Usage Improper,Unspecified,,,,4545185,Sedan,Sedan,,, +07/10/2022,12:40,BROOKLYN,11234,40.60625,-73.92374,"(40.60625, -73.92374)",RYDER STREET,AVENUE V,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545378,Sedan,,,, +07/10/2022,21:30,,,40.710342,-73.98662,"(40.710342, -73.98662)",FDR DRIVE,CLINTON STREET,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545135,Sedan,,,, +07/09/2022,2:16,BROOKLYN,11212,40.662277,-73.91078,"(40.662277, -73.91078)",BRISTOL STREET,LIVONIA AVENUE,,1,0,0,0,0,0,1,0,Unspecified,,,,,4545686,Sedan,,,, +07/08/2022,16:40,QUEENS,11412,40.69168,-73.75127,"(40.69168, -73.75127)",200 STREET,119 AVENUE,,1,0,0,0,0,0,1,0,Failure to Yield Right-of-Way,Unspecified,,,,4545627,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/10/2022,4:15,BRONX,10456,40.82474,-73.90842,"(40.82474, -73.90842)",3 AVENUE,BOSTON ROAD,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545207,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/03/2022,21:00,,,40.691433,-73.89063,"(40.691433, -73.89063)",VERMONT PLACE,,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545635,,,,, +07/10/2022,0:10,QUEENS,11435,40.714935,-73.81636,"(40.714935, -73.81636)",MAIN STREET,COOLIDGE AVENUE,,1,0,0,0,0,0,1,0,Traffic Control Disregarded,Unspecified,,,,4545522,Sedan,Sedan,,, +07/10/2022,18:02,,,40.739162,-73.78556,"(40.739162, -73.78556)",188 STREET,64 AVENUE,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545085,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/04/2022,15:55,,,40.848118,-73.93089,"(40.848118, -73.93089)",AMSTERDAM AVENUE,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545553,Station Wagon/Sport Utility Vehicle,,,, +04/21/2022,15:40,,,,,,GRAND CENTRAL PARKWAY,188 STREET,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4520996,Sedan,Sedan,,, +07/07/2022,3:10,,,,,,,,375 VENDERBILT AVENUE,1,0,0,0,1,0,0,0,Unsafe Speed,Unspecified,,,,4545737,Bike,Sedan,,, +07/09/2022,15:28,BRONX,10458,40.855507,-73.88747,"(40.855507, -73.88747)",,,601 EAST 187 STREET,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545514,Sedan,Sedan,,, +07/10/2022,17:39,BROOKLYN,11223,40.602467,-73.96638,"(40.602467, -73.96638)",OCEAN PARKWAY,AVENUE S,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545073,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,18:10,,,40.750294,-73.99485,"(40.750294, -73.99485)",WEST 31 STREET,,,0,0,0,0,0,0,0,0,Following Too Closely,Unspecified,,,,4545118,Sedan,,,, +07/07/2022,21:05,,,,,,WEST SHORE EXPRESSWAY,,,1,0,0,0,0,0,1,0,Unsafe Lane Changing,Unspecified,,,,4545587,Station Wagon/Sport Utility Vehicle,Sedan,,, +07/08/2022,7:07,BROOKLYN,11217,40.678707,-73.97785,"(40.678707, -73.97785)",,,20 STERLING PLACE,0,0,0,0,0,0,0,0,Passing Too Closely,Unspecified,,,,4545578,Sedan,,,, +07/10/2022,0:50,BROOKLYN,11211,40.71539,-73.933914,"(40.71539, -73.933914)",,,299 VANDERVORT AVENUE,1,0,1,0,0,0,0,0,Unspecified,,,,,4545032,Taxi,,,, +07/02/2022,3:10,QUEENS,11385,40.700478,-73.902176,"(40.700478, -73.902176)",,,57-46 MYRTLE AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545631,Sedan,,,, +06/29/2022,23:59,BROOKLYN,11233,40.67308,-73.91124,"(40.67308, -73.91124)",ROCKAWAY AVENUE,EASTERN PARKWAY,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545678,Taxi,,,, +06/30/2022,18:10,BROOKLYN,11212,40.665203,-73.90184,"(40.665203, -73.90184)",JUNIUS STREET,DUMONT AVENUE,,1,0,1,0,0,0,0,0,Unspecified,,,,,4545682,Sedan,,,, +07/10/2022,1:40,BROOKLYN,11233,40.67619,-73.9081,"(40.67619, -73.9081)",EASTERN PARKWAY,ATLANTIC AVENUE,,0,0,0,0,0,0,0,0,Unspecified,,,,,4544875,Sedan,,,, +07/10/2022,13:40,,,,,,HORACE HARDING EXPRESSWAY,188 STREET,,2,0,0,0,0,0,2,0,Unspecified,Unspecified,,,,4545400,Sedan,Box Truck,,, +07/10/2022,0:00,,,40.792812,-73.937744,"(40.792812, -73.937744)",EAST 111 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545459,Sedan,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,0:30,BROOKLYN,11229,40.608078,-73.9453,"(40.608078, -73.9453)",,,1769 EAST 28 STREET,0,0,0,0,0,0,0,0,Unspecified,,,,,4545198,Station Wagon/Sport Utility Vehicle,,,, +06/26/2022,17:20,,,40.80003,-73.954865,"(40.80003, -73.954865)",WEST 111 STREET,,,1,0,0,0,0,0,0,0,Driver Inattention/Distraction,Driver Inattention/Distraction,,,,4545595,E-Scooter,Sedan,,, +07/10/2022,18:52,,,,,,MILFORD DRIVE,,,4,0,0,0,0,0,4,0,Brakes Defective,Unspecified,Unspecified,,,4545261,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,, +07/10/2022,17:30,MANHATTAN,10039,40.82316,-73.937996,"(40.82316, -73.937996)",,,2534 7 AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545408,Station Wagon/Sport Utility Vehicle,,,, +07/10/2022,15:36,,,40.770565,-73.835495,"(40.770565, -73.835495)",WHITESTONE EXPRESSWAY,ULMER STREET,,0,0,0,0,0,0,0,0,Failure to Yield Right-of-Way,Unspecified,,,,4545113,Sedan,,,, +07/10/2022,2:06,,,,,,SOUTHERN STATE PARKWAY,CROSS ISLAND PARKWAY,,0,0,0,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545014,Sedan,,,, +07/10/2022,23:04,BROOKLYN,11220,40.642548,-74.016655,"(40.642548, -74.016655)",57 STREET,4 AVENUE,,1,0,0,0,0,0,0,0,Traffic Control Disregarded,Unspecified,,,,4545545,Sedan,E-Scooter,,, +07/10/2022,8:18,,,40.741344,-73.95459,"(40.741344, -73.95459)",BORDEN AVENUE,VERNON BOULEVARD,,0,0,0,0,0,0,0,0,Backing Unsafely,Unspecified,,,,4545606,Sedan,Taxi,,, +07/10/2022,0:09,,,40.69775,-73.81393,"(40.69775, -73.81393)",VAN WYCK EXPWY,,,1,0,0,0,0,0,1,0,Unspecified,,,,,4545168,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +07/10/2022,17:53,,,40.792362,-73.96418,"(40.792362, -73.96418)",CENTRAL PARK WEST,,,2,0,0,0,0,0,0,0,Pedestrian/Bicyclist/Other Pedestrian Error/Confusion,Unspecified,,,,4545160,E-Bike,E-Scooter,,, +06/23/2022,11:39,QUEENS,11693,40.61325,-73.82032,"(40.61325, -73.82032)",,,329 CROSS BAY BOULEVARD,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545569,Station Wagon/Sport Utility Vehicle,MCR,,, +07/10/2022,14:00,,,40.575302,-73.9766,"(40.575302, -73.9766)",WEST 8 STREET,,,0,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545236,Taxi,Taxi,,, +07/10/2022,18:28,MANHATTAN,10032,40.83557,-73.94563,"(40.83557, -73.94563)",,,820 RIVERSIDE DRIVE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545331,Station Wagon/Sport Utility Vehicle,,,, +07/07/2022,22:00,,,40.81821,-73.96144,"(40.81821, -73.96144)",HENRY HUDSON PARKWAY,,,2,0,0,0,0,0,2,0,Passenger Distraction,Unspecified,,,,4545709,Station Wagon/Sport Utility Vehicle,Station Wagon/Sport Utility Vehicle,,, +06/30/2022,12:50,,,,,,BEACH CHANNEL DRIVE,JACOB RIIS PARK,,0,0,0,0,0,0,0,0,Turning Improperly,Unspecified,,,,4545660,Sedan,Sedan,,, +07/10/2022,22:10,,,40.755203,-73.871,"(40.755203, -73.871)",34 AVENUE,,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545386,Bike,Sedan,,, +07/10/2022,19:30,BROOKLYN,11230,40.617004,-73.96912,"(40.617004, -73.96912)",OCEAN PARKWAY,AVENUE M,,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4545211,Sedan,Bike,,, +07/05/2022,20:15,QUEENS,11385,40.705765,-73.896576,"(40.705765, -73.896576)",FRESH POND ROAD,67 AVENUE,,1,0,1,0,0,0,0,0,Driver Inattention/Distraction,,,,,4545636,Sedan,,,, +07/08/2022,12:32,BROOKLYN,11215,40.670265,-73.99763,"(40.670265, -73.99763)",14 STREET,HAMILTON AVENUE,,1,0,0,0,1,0,0,0,Driver Inattention/Distraction,Unspecified,,,,4545655,Bike,,,, +07/10/2022,20:45,BRONX,10465,40.827652,-73.824,"(40.827652, -73.824)",,,2888 PHILIP AVENUE,1,0,0,0,0,0,0,0,Unspecified,Unspecified,,,,4545665,Station Wagon/Sport Utility Vehicle,E-Bike,,, +07/10/2022,9:18,BROOKLYN,11226,40.647564,-73.96055,"(40.647564, -73.96055)",,,630 OCEAN AVENUE,0,0,0,0,0,0,0,0,Unspecified,,,,,4545282,Station Wagon/Sport Utility Vehicle,,,, +07/11/2022,0:39,,,40.78628,-73.80598,"(40.78628, -73.80598)",CROSS ISLAND PARKWAY,,,0,0,0,0,0,0,0,0,Unspecified,,,,,4545240,Sedan,,,, +04/22/2022,8:59,,,,,,IRVING AVENUE,,,1,0,1,0,0,0,0,0,Driver Inexperience,,,,,4521103,Station Wagon/Sport Utility Vehicle,,,, +07/11/2022,13:46,,,,,,48 STREET,,,1,0,0,0,0,0,1,0,Driver Inattention/Distraction,Unspecified,,,,4545395,Station Wagon/Sport Utility Vehicle,Carry All,,, +02/10/2022,8:19,BROOKLYN,11223,,,,,,709 AVENUE P,1,0,0,0,1,0,0,0,Unspecified,Unspecified,,,,4502444,Van,Bike,,, \ No newline at end of file diff --git a/package.json b/package.json index f85a3c7693..f800883fb3 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "rust/perspective-viewer", "packages/perspective-viewer-datagrid", "packages/perspective-viewer-d3fc", + "packages/perspective-gpu", "packages/perspective-viewer-openlayers", "packages/perspective-workspace", "packages/perspective-jupyterlab", @@ -126,6 +127,7 @@ "jlab_link": "pip3 install ./python/perspective --no-build-isolation", "test:ui": "__JUPYTERLAB_PORT__=6538 playwright test --config tools/perspective-test/playwright.config.ts", "test:ui:headed": "__JUPYTERLAB_PORT__=6538 playwright test --config tools/perspective-test/playwright.config.ts --headed", - "test:ui:debug": "__JUPYTERLAB_PORT__=6538 DEBUG=pw:api playwright test --config tools/perspective-test/playwright.config.ts --headed" + "test:ui:debug": "__JUPYTERLAB_PORT__=6538 DEBUG=pw:api playwright test --config tools/perspective-test/playwright.config.ts --headed", + "test-data:gen": "node scripts/generate_test_data.mjs" } } diff --git a/packages/perspective-gpu/build.js b/packages/perspective-gpu/build.js new file mode 100644 index 0000000000..9e181bbeec --- /dev/null +++ b/packages/perspective-gpu/build.js @@ -0,0 +1,33 @@ +const { + NodeModulesExternal, +} = require("@finos/perspective-esbuild-plugin/external"); +const { build } = require("@finos/perspective-esbuild-plugin/build"); + +const BUILD = [ + { + entryPoints: ["src/ts/index.ts"], + define: { + global: "window", + }, + plugins: [NodeModulesExternal()], + format: "esm", + metafile: false, + outfile: "dist/esm/perspective-gpu.js", + }, + { + entryPoints: ["src/ts/index.ts"], + define: { + global: "window", + }, + plugins: [], + format: "esm", + metafile: false, + outfile: "dist/cdn/perspective-gpu.js", + }, +]; + +async function build_all() { + await Promise.all(BUILD.map(build)).catch(() => process.exit(1)); +} + +build_all(); diff --git a/packages/perspective-gpu/package.json b/packages/perspective-gpu/package.json new file mode 100644 index 0000000000..3e3708e3a0 --- /dev/null +++ b/packages/perspective-gpu/package.json @@ -0,0 +1,31 @@ +{ + "name": "@finos/perspective-gpu", + "version": "0.0.1", + "description": "GPU accelerated Perspective", + "main": "./dist/umd/perspective-gpu.js", + "files": [ + "dist/**/*", + "src/**/*" + ], + "scripts": { + "clean": "rimraf dist", + "build": "node ./build.js" + }, + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/finos/perspective" + }, + "author": "", + "license": "Apache-2.0", + "dependencies": { + "@finos/perspective": "^2.0.1", + "@finos/perspective-viewer": "^2.0.1", + "@webgpu/types": "^0.1.31", + "chroma-js": "^2.4.2", + "d3fc": "^15.2.4", + "lodash.debounce": "^4.0.8" + } +} diff --git a/packages/perspective-gpu/src/ts/GradientHeatMap/GradientHeatMap.ts b/packages/perspective-gpu/src/ts/GradientHeatMap/GradientHeatMap.ts new file mode 100644 index 0000000000..f5cf35c017 --- /dev/null +++ b/packages/perspective-gpu/src/ts/GradientHeatMap/GradientHeatMap.ts @@ -0,0 +1,202 @@ +import { View } from "@finos/perspective"; +import { + createScene, + renderScene, + GradientHeatMapScene, + updateScene, + setCanvasDimensions, + SceneOptions, +} from "./render"; +import chroma from "chroma-js"; +import debounce from "lodash.debounce"; + +function getBackgroundColor() { + const el = document.querySelector("perspective-viewer"); + + let color: [number, number, number, number] = [255, 255, 255, 255]; + + if (el) { + const hexColor = getComputedStyle(el).getPropertyValue( + "--plugin--background" + ); + + color = chroma(hexColor).rgba(); + } + + return color; +} + +export const defaultSceneOptions: SceneOptions = { + heatMax: 10.0, + pointSize: 0.001, + intensity: 0.5, + backgroundColor: [255, 255, 255, 255], +}; + +class GradientHeatMap extends HTMLElement { + static pluginName = "gradient-heatmap"; + + #maxCells = 100000; + + #maxColumns = 5000; + + container: HTMLDivElement; + + canvas: HTMLCanvasElement; + + scene: GradientHeatMapScene | null = null; + + currentColPaths: string[] = []; + + _stagedView: View | null = null; + + initialized = false; + + sceneOptions = defaultSceneOptions; + + connectedCallback() { + if (!this.initialized) { + this.attachShadow({ mode: "open" }); + + this.shadowRoot.innerHTML = ` + +
+ +
+ `; + + this.container = this.shadowRoot.querySelector("#container"); + this.canvas = this.shadowRoot.querySelector( + "#gradient-heatmap-canvas" + ); + this.initialized = true; + } + } + + get name() { + return "Gradient Heatmap"; + } + + get category() { + return "Gradient Heatmap"; + } + + get select_mode() { + return "toggle"; + } + + get min_config_columns() { + return 2; + } + + get config_column_names() { + return ["X Axis", "Y Axis"]; + } + + get max_cells() { + return this.#maxCells; + } + + set max_cells(x) { + this.#maxCells = x; + } + + get max_columns() { + return this.#maxColumns; + } + + set max_columns(x) { + this.#maxColumns = x; + } + + draw = async (view, end_col, end_row) => { + console.log("draw"); + this._stagedView = view; + this.sceneOptions.backgroundColor = getBackgroundColor(); // might not want to do this on every draw call, but for now... + + if (!this.scene) { + this.scene = await createScene( + this.canvas, + view, + this.sceneOptions + ); + } + + const nextColPaths = await view.column_paths(); + const samePaths = nextColPaths.every( + (x, i) => x === this.currentColPaths[i] + ); + + if (!samePaths) { + this.currentColPaths = nextColPaths; + + this.scene = await updateScene(this.scene, view, this.sceneOptions); + } + + await renderScene(this.scene, this.sceneOptions); + }; + + async clear() { + if (this.container) { + this.container.innerHTML = ""; + } + } + + #debouncedResize = debounce(async () => { + if (this._stagedView) { + await this.update(this._stagedView); + } + }, 500); + + resize = async () => { + this.#debouncedResize(); + }; + + update = async (view) => { + console.log("update"); + if (this.scene) { + setCanvasDimensions(this.scene.context.canvas); + this.sceneOptions.backgroundColor = getBackgroundColor(); + + this.scene = await updateScene(this.scene, view, this.sceneOptions); + } + + if (this.scene) { + await renderScene(this.scene, this.sceneOptions); + } + }; + + restyle = async (view) => { + this._stagedView = view; + + await this.update(this._stagedView); + }; + + async delete() { + // unimplemented + } + + save() { + // unimplemented + return {}; + } + + restore(settings) { + // unimplemented + } +} + +customElements.define(GradientHeatMap.pluginName, GradientHeatMap); + +export default GradientHeatMap; diff --git a/packages/perspective-gpu/src/ts/GradientHeatMap/index.ts b/packages/perspective-gpu/src/ts/GradientHeatMap/index.ts new file mode 100644 index 0000000000..709f1d4339 --- /dev/null +++ b/packages/perspective-gpu/src/ts/GradientHeatMap/index.ts @@ -0,0 +1,3 @@ +import GradientHeatMap from "./GradientHeatMap"; + +export default GradientHeatMap; diff --git a/packages/perspective-gpu/src/ts/GradientHeatMap/render.ts b/packages/perspective-gpu/src/ts/GradientHeatMap/render.ts new file mode 100644 index 0000000000..561d7f6897 --- /dev/null +++ b/packages/perspective-gpu/src/ts/GradientHeatMap/render.ts @@ -0,0 +1,755 @@ +import { View } from "@finos/perspective"; +import chroma from "chroma-js"; + +// Number of rows to render per pass +const COL_SELECTION_LENGTH = 100_000; + +function typedArrayToWGSLType(arr: any) { + const name = arr.constructor.name; + + switch (name) { + case "Float32Array": + case "Float64Array": + return "f32"; + + case "Uint8Array": + case "Uint16Array": + case "Uint32Array": + return "u32"; + + case "Int8Array": + case "Int16Array": + case "Int32Array": + return "i32"; + + default: + throw new Error(`Unknown array type: ${name}`); + } +} + +export function configureGPUContext( + ctx: GPUCanvasContext, + device: GPUDevice, + format: GPUTextureFormat +) { + ctx.configure({ + device, + format, + alphaMode: "premultiplied", + usage: GPUTextureUsage.RENDER_ATTACHMENT | GPUTextureUsage.COPY_SRC, + }); +} + +export type ColSection = { + data: T; + bufferSize: number; +}; + +export type ViewObject = { + name: string; + axisName: string; + index: number; + colPath: string; + colArr: Float32Array; // Typed Array?? + colSections: ColSection[]; // Typed Array?? + min: number; + max: number; + colType: string; + shaderType: string; +}; + +const AXIS_NAMES = ["x", "y", "z", "w"]; + +export async function createViewObjects(view: View): Promise { + // @ts-ignore + const colPaths: string[] = await view.column_paths(); // e.g ["Row ID", "Postal Code"] + const viewSchema = await view.schema(); // e.g { "Row ID": "integer", "Postal Code": "string"} + + const paths = colPaths.slice(0, 2).filter((colPath) => { + const colType = viewSchema[colPath]; + return colType === "integer" || colType === "float"; + }); + + // For now only using the first two columns + const viewObjects = await Promise.all( + paths.map(async (colPath, index): Promise => { + // TODO: Handle other types, such as "string". + // for now only dealing with number columns. + const colType = viewSchema[colPath]; + // @ts-ignore + let [colArr, ,] = await view.col_to_js_typed_array(colPath); + + // @ts-ignore // This needs to be added to perspective + let [min, max] = await view.get_min_max(colPath); + + // There is no support for FLoat64Array in WebGPU + if (colArr.constructor.name === "Float64Array") { + colArr = new Float32Array(colArr); + } + + const sectionsCount = Math.ceil( + colArr.length / COL_SELECTION_LENGTH + ); + + const colSections: ColSection[] = []; + + for (let i = 0; i < sectionsCount; i++) { + const start = i * COL_SELECTION_LENGTH; + const end = start + COL_SELECTION_LENGTH; + const data = colArr.slice(start, end); + + colSections.push({ + data, + bufferSize: data.byteLength, + }); + } + + return { + name: colPath.toLowerCase().replace(" ", "_"), + axisName: AXIS_NAMES[index], + index, + colPath, + colArr, + colSections, + min, + max, + colType, + shaderType: typedArrayToWGSLType(colArr), + }; + }) + ); + + return viewObjects; +} + +type BindGroupCell = { + colSection: ColSection; + min: number; + max: number; + buffer: GPUBuffer; + bindGroupEntry: GPUBindGroupEntry; +}; + +type BindGroupRow = { + cells: BindGroupCell[]; + bindGroup: GPUBindGroup; +}; + +function createRowBindGroupLayout(device: GPUDevice) { + return device.createBindGroupLayout({ + entries: [ + { + binding: 0, + visibility: GPUShaderStage.FRAGMENT, + buffer: { + type: "read-only-storage", + }, + }, + { + binding: 1, + visibility: GPUShaderStage.FRAGMENT, + buffer: { + type: "read-only-storage", + }, + }, + ], + }); +} + +function createBindGroups( + device: GPUDevice, + viewObjects: ViewObject[], + layout: GPUBindGroupLayout +): BindGroupRow[] { + if (viewObjects.length === 0) { + return []; + } + + const colSectionCount = viewObjects[0].colSections.length; + + let rows: BindGroupRow[] = []; + for (let rowIndex = 0; rowIndex < colSectionCount; rowIndex++) { + const cells: BindGroupCell[] = viewObjects.map( + ({ colSections, min, max }, i) => { + const colSection = colSections[rowIndex]; + const buffer = device.createBuffer({ + size: colSection.bufferSize, + usage: GPUBufferUsage.STORAGE | GPUBufferUsage.COPY_DST, + }); + + device.queue.writeBuffer(buffer, 0, colSection.data); + + return { + colSection, + min, + max, + buffer, + bindGroupEntry: { + binding: i, + resource: { + buffer, + }, + }, + }; + } + ); + + let row = { + cells, + bindGroup: device.createBindGroup({ + layout, + entries: cells.map(({ bindGroupEntry }) => bindGroupEntry), + }), + }; + + rows.push(row); + } + + return rows; +} + +function createShaderSrc(viewObjects: ViewObject[]) { + const shaderSrc = ` + struct VertexOutput { + @builtin(position) position : vec4, + @location(0) tex_coord : vec2, + } + + struct ShaderConfig { + heat_max: f32, + point_size: f32, + intensity: f32, + canvas_width: f32, + canvas_height: f32, + } + + // Bind Groups + ${viewObjects + .map( + ({ axisName, shaderType }, i) => + `@group(0) @binding(${i}) var ${axisName}_values: array<${shaderType}>;` + ) + .join("\n")} + + @group(1) @binding(0) var our_sampler: sampler; + @group(1) @binding(1) var our_texture: texture_2d; + + @group(2) @binding(0) var shader_config: ShaderConfig; + + fn uv_norm(x: f32, min: f32, max: f32) -> f32 { + return (x - min) / (max - min); + } + + fn gradient(w: f32, uv: vec2) -> vec3 { + let w_ = pow(clamp(w, 0., 1.) * 3.14159 * .5, .9); + let c = vec3(sin(w_), sin(w_ * 2.), cos(w_)) * 1.1; + return mix(textureSample(our_texture, our_sampler, uv).rgb, c, w_); + } + + @vertex + fn vertex_main( + @builtin(vertex_index) vert_index : u32, + ) -> VertexOutput { + let pos1 = array( + // 1st triangle + vec2f( -1., -1.), + vec2f( 1., -1.), + vec2f( -1., 1.), + + // 2st triangle + vec2f( -1., 1.), + vec2f( 1., -1.), + vec2f( 1., 1.), + ); + + var pos2 = array( + // 1st triangle + vec2f( 0.0, 1.0), + vec2f( 1.0, 1.0), + vec2f( 0.0, 0.0), + + // 2st triangle + vec2f( 0.0, 0.0), + vec2f( 1.0, 1.0), + vec2f( 1.0, 0.0), + ); + + var output: VertexOutput; + + output.position = vec4(pos1[vert_index], 0., 1.); + output.tex_coord = pos2[vert_index]; + + return output; + } + + @fragment + fn frag_main(vo: VertexOutput) -> @location(0) vec4 { + let resolution = vec2(shader_config.canvas_width, shader_config.canvas_height); + + ${viewObjects + .map( + ({ axisName, min, max }) => + ` + let ${axisName}_min = f32(${min}); + let ${axisName}_max = f32(${max});` + ) + .join("\n")} + + ${ + viewObjects.length >= 2 + ? ` + let uv = vo.tex_coord; + let points_count = arrayLength(&x_values); // u32 + + var d = 0.; + for (var i = 0u; i < points_count; i++) { + let x = f32(x_values[i]); + let y = f32(y_values[i]); + let x_norm = uv_norm(x, x_min, x_max); + let y_norm = uv_norm(y, y_min, y_max); + + let p = vec2(x_norm, 1. - y_norm); + + let pd = (1. - length(uv - p.xy) / shader_config.point_size) * shader_config.intensity; + + d += pow(max(0., pd), 2.); + } + + return vec4(gradient(d, uv), 1.); + ` + : `return vec4(1., 1., 1., 1.);` + } + } + `; + + return shaderSrc; +} + +function createPipelineLayout( + device: GPUDevice, + rowsBindGroupLayouts: GPUBindGroupLayout +) { + const group1 = device.createBindGroupLayout({ + entries: [ + { + binding: 0, + visibility: GPUShaderStage.FRAGMENT, + sampler: {}, + }, + { + binding: 1, + visibility: GPUShaderStage.FRAGMENT, + texture: {}, + }, + ], + }); + + const group2 = device.createBindGroupLayout({ + entries: [ + { + binding: 0, + visibility: GPUShaderStage.FRAGMENT, + buffer: {}, + }, + ], + }); + + return device.createPipelineLayout({ + bindGroupLayouts: [rowsBindGroupLayouts, group1, group2], + }); +} + +function createPipeline( + device: GPUDevice, + shaderSrc: string, + layout: GPUPipelineLayout +) { + const pipeline = device.createRenderPipeline({ + layout, + vertex: { + module: device.createShaderModule({ code: shaderSrc }), + entryPoint: "vertex_main", + }, + fragment: { + module: device.createShaderModule({ code: shaderSrc }), + entryPoint: "frag_main", + targets: [ + { + format: navigator.gpu.getPreferredCanvasFormat(), + blend: { + color: { + srcFactor: "src-alpha", + dstFactor: "one-minus-src-alpha", + }, + alpha: { + srcFactor: "one", + dstFactor: "one", + }, + }, + }, + ], + }, + }); + + return pipeline; +} + +function createShaderUniformBuffer(device: GPUDevice) { + const uniformBuffer = device.createBuffer({ + label: "shader_uniform_buffer", + size: 5 * 4, + usage: GPUBufferUsage.UNIFORM | GPUBufferUsage.COPY_DST, + }); + + return uniformBuffer; +} + +function setShaderUniformBuffer( + device: GPUDevice, + buffer: GPUBuffer, + options: SceneOptions, + canvasWidth: number, + canvasHeight: number +) { + const uniformValues = new Float32Array([ + options.heatMax, + options.pointSize, + options.intensity, + canvasWidth, + canvasHeight, + ]); + + device.queue.writeBuffer(buffer, 0, uniformValues); +} + +function createShaderUniformBindGroup( + device: GPUDevice, + layout: GPUBindGroupLayout, + buffer: GPUBuffer +) { + const bindGroup = device.createBindGroup({ + label: "uniform_bind_group", + layout, + entries: [ + { + binding: 0, + resource: { + buffer, + }, + }, + ], + }); + + return bindGroup; +} + +export function clearCompositingTexture( + device: GPUDevice, + texture: GPUTexture, + canvas: HTMLCanvasElement, + colorArr: [number, number, number, number] +) { + const data = new Array(canvas.width * canvas.height) + .fill(0) + .flatMap(() => colorArr); + + device.queue.writeTexture( + { texture }, + new Uint8Array(data), + { bytesPerRow: canvas.width * 4 }, + { width: canvas.width, height: canvas.height } + ); +} + +export function createCompositingTexture( + device: GPUDevice, + canvas: HTMLCanvasElement, + backgroundColor: [number, number, number, number] +) { + const texture = device.createTexture({ + size: [canvas.width, canvas.height], + format: navigator.gpu.getPreferredCanvasFormat(), + usage: GPUTextureUsage.TEXTURE_BINDING | GPUTextureUsage.COPY_DST, + }); + + clearCompositingTexture(device, texture, canvas, backgroundColor); + + return texture; +} + +export function createTextureBindGroup( + device: GPUDevice, + layout: GPUBindGroupLayout, + texture: GPUTexture, + sampler: GPUSampler +) { + return device.createBindGroup({ + label: "texture_bind_group", + layout, + entries: [ + { binding: 0, resource: sampler }, + { binding: 1, resource: texture.createView() }, + ], + }); +} + +export function createSampler(device) { + return device.createSampler({ + addressModeU: "clamp-to-edge", + addressModeV: "clamp-to-edge", + magFilter: "nearest", + }); +} + +export function setCanvasDimensions(canvas) { + const { width, height } = canvas.getBoundingClientRect(); + + canvas.width = width; + canvas.height = height; +} + +export type GradientHeatMapScene = { + adapter: GPUAdapter; + device: GPUDevice; + context: GPUCanvasContext; + format: GPUTextureFormat; + viewObjects: ViewObject[]; + shaderSrc: string; + rows: BindGroupRow[]; + rowsBindGroupLayout: GPUBindGroupLayout; + texture: GPUTexture; + textureBindGroup: GPUBindGroup; + shaderUniformBuffer: GPUBuffer; + shaderUniformBindGroup: GPUBindGroup; + pipelineLayout: GPUPipelineLayout; + pipeline: GPURenderPipeline; +}; + +export type SceneOptions = { + heatMax: number; + pointSize: number; + intensity: number; + backgroundColor: [number, number, number, number]; +}; + +export async function createScene( + canvas: HTMLCanvasElement, + view: View, + sceneOptions: SceneOptions +): Promise { + const viewObjects = await createViewObjects(view); + + const adapter = await navigator.gpu.requestAdapter({ + powerPreference: "high-performance", + }); + + const device = await adapter.requestDevice(); + const format = navigator.gpu.getPreferredCanvasFormat(); + const context = canvas.getContext("webgpu"); + + setCanvasDimensions(canvas); + configureGPUContext(context, device, format); + + const shaderSrc = createShaderSrc(viewObjects); + const rowsBindGroupLayout = createRowBindGroupLayout(device); + const rows = createBindGroups(device, viewObjects, rowsBindGroupLayout); + const pipelineLayout = createPipelineLayout(device, rowsBindGroupLayout); + const pipeline = createPipeline(device, shaderSrc, pipelineLayout); + + const texture = createCompositingTexture( + device, + canvas, + sceneOptions.backgroundColor + ); + const sampler = createSampler(device); + const textureBindGroup = createTextureBindGroup( + device, + pipeline.getBindGroupLayout(1), + texture, + sampler + ); + + const shaderUniformBuffer = createShaderUniformBuffer(device); + + setShaderUniformBuffer( + device, + shaderUniformBuffer, + sceneOptions, + canvas.width, + canvas.height + ); + + const shaderUniformBindGroup = createShaderUniformBindGroup( + device, + pipeline.getBindGroupLayout(2), + shaderUniformBuffer + ); + + const scene = { + adapter, + device, + context, + format, + viewObjects, + shaderSrc, + rows, + rowsBindGroupLayout, + texture, + textureBindGroup, + shaderUniformBuffer, + shaderUniformBindGroup, + pipelineLayout, + pipeline, + }; + + return scene; +} + +export async function updateScene( + scene: GradientHeatMapScene, + view: View, + sceneOptions: SceneOptions +) { + const { + device, + context, + shaderUniformBuffer, + pipelineLayout, + rowsBindGroupLayout, + } = scene; + + const viewObjects = await createViewObjects(view); + + if (viewObjects.length < 2) { + return { + ...scene, + viewObjects, + }; + } + + const shaderSrc = createShaderSrc(viewObjects); + const pipeline = createPipeline(scene.device, shaderSrc, pipelineLayout); + + const rows = createBindGroups(device, viewObjects, rowsBindGroupLayout); + + const texture = createCompositingTexture( + device, + context.canvas as HTMLCanvasElement, + sceneOptions.backgroundColor + ); + const sampler = createSampler(device); + const textureBindGroup = createTextureBindGroup( + device, + pipeline.getBindGroupLayout(1), + texture, + sampler + ); + + setShaderUniformBuffer( + device, + shaderUniformBuffer, + sceneOptions, + context.canvas.width, + context.canvas.height + ); + + return { + ...scene, + viewObjects, + shaderSrc, + rows, + texture, + textureBindGroup, + pipeline, + }; +} + +export function renderScene( + scene: GradientHeatMapScene, + sceneOptions: SceneOptions +) { + const { + device, + context, + viewObjects, + pipeline, + textureBindGroup, + texture, + shaderUniformBindGroup, + } = scene; + + if (viewObjects.length < 2) { + clearScene(scene, sceneOptions); + return; + } + + clearCompositingTexture( + device, + texture, + context.canvas as HTMLCanvasElement, + sceneOptions.backgroundColor + ); + + const encoder = device.createCommandEncoder(); + + scene.rows.forEach((row, i) => { + const renderPassDescriptor: GPURenderPassDescriptor = { + colorAttachments: [ + { + view: context.getCurrentTexture().createView(), + clearValue: { r: 0.3, g: 1.0, b: 1.0, a: 1.0 }, + loadOp: i === 0 ? "clear" : "load", + storeOp: "store", + }, + ], + }; + + const passEncoder = encoder.beginRenderPass(renderPassDescriptor); + + passEncoder.setPipeline(pipeline); + + passEncoder.setBindGroup(0, row.bindGroup); + passEncoder.setBindGroup(1, textureBindGroup); + passEncoder.setBindGroup(2, shaderUniformBindGroup); + passEncoder.draw(6); + + passEncoder.end(); + + encoder.copyTextureToTexture( + { texture: context.getCurrentTexture() }, + { texture }, + { + width: context.canvas.width, + height: context.canvas.height, + depthOrArrayLayers: 1, + } + ); + }); + + device.queue.submit([encoder.finish()]); +} + +export async function clearScene( + scene: GradientHeatMapScene, + sceneOptions: SceneOptions +) { + const { device, context } = scene; + const encoder = device.createCommandEncoder(); + + const renderPassDescriptor: GPURenderPassDescriptor = { + colorAttachments: [ + { + view: context.getCurrentTexture().createView(), + clearValue: chroma(sceneOptions.backgroundColor).gl(), + loadOp: "clear", + storeOp: "store", + }, + ], + }; + + const passEncoder = encoder.beginRenderPass(renderPassDescriptor); + + passEncoder.end(); + + device.queue.submit([encoder.finish()]); +} diff --git a/packages/perspective-gpu/src/ts/index.ts b/packages/perspective-gpu/src/ts/index.ts new file mode 100644 index 0000000000..39b97b125a --- /dev/null +++ b/packages/perspective-gpu/src/ts/index.ts @@ -0,0 +1,12 @@ +import type { HTMLPerspectiveViewerElement } from "@finos/perspective-viewer"; +import GradientHeatMap from "./GradientHeatMap"; + +async function register() { + await customElements.whenDefined("perspective-viewer"); + + customElements + .get("perspective-viewer")! + .registerPlugin(GradientHeatMap.pluginName); +} + +register(); diff --git a/packages/perspective-gpu/tsconfig.json b/packages/perspective-gpu/tsconfig.json new file mode 100644 index 0000000000..a85d4dc6fd --- /dev/null +++ b/packages/perspective-gpu/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "module": "esnext", + "target": "es2019", + "declaration": true, + "diagnostics": true, + "emitDeclarationOnly": true, + "outDir": "dist/esm", + "rootDir": "src/ts", + "allowSyntheticDefaultImports": true, + "moduleResolution": "node", + "skipLibCheck": true, + "typeRoots": [ + "../../node_modules/@webgpu/types", + "../../node_modules/@types" + ], + }, +} \ No newline at end of file diff --git a/packages/perspective-viewer-d3fc/src/js/plugin/plugin.js b/packages/perspective-viewer-d3fc/src/js/plugin/plugin.js index b5bf975a18..68f80e9f1e 100644 --- a/packages/perspective-viewer-d3fc/src/js/plugin/plugin.js +++ b/packages/perspective-viewer-d3fc/src/js/plugin/plugin.js @@ -458,7 +458,7 @@ export function register(...plugins) { * causes non-cleared redraws duplicate column labels when calculating column name * resize/repositions - see `treemapLabel.js`. */ - async resize(view) { + async resize() { if (this.offsetParent !== null) { if (this._settings?.data !== undefined) { this._draw(); diff --git a/rust/perspective-viewer/src/less/plugin-selector.less b/rust/perspective-viewer/src/less/plugin-selector.less index 262bce2a6e..2bbe33fff0 100644 --- a/rust/perspective-viewer/src/less/plugin-selector.less +++ b/rust/perspective-viewer/src/less/plugin-selector.less @@ -148,6 +148,10 @@ -webkit-mask-image: url(../svg/mega-menu-icons-datagrid.svg); } + .plugin-select-item[data-plugin="Gradient Heatmap"]:before { + -webkit-mask-image: url(../svg/mega-menu-icons-gradient-heatmap.svg); + } + } #plugin_selector { diff --git a/rust/perspective-viewer/src/svg/mega-menu-icons-gradient-heatmap.svg b/rust/perspective-viewer/src/svg/mega-menu-icons-gradient-heatmap.svg new file mode 100644 index 0000000000..682ee2f9e7 --- /dev/null +++ b/rust/perspective-viewer/src/svg/mega-menu-icons-gradient-heatmap.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/scripts/generate_test_data.mjs b/scripts/generate_test_data.mjs new file mode 100644 index 0000000000..c832969997 --- /dev/null +++ b/scripts/generate_test_data.mjs @@ -0,0 +1,57 @@ +import { worker } from "@finos/perspective"; +import fs from "fs"; +import { getarg } from "./script_utils.js"; + +const IS_GAUSSIAN = getarg("--gaussian"); + +const SAMPLE_COUNT = getarg("--count") || 200_000; + +const OUTPUT_FILE = getarg("--output") || "examples/blocks/src/gpu/test.arrow"; + +// Standard Normal variate using Box-Muller transform. +function gaussianRandom(mean = 0, stdev = 1) { + let u = 1 - Math.random(); // Converting [0,1) to (0,1] + let v = Math.random(); + let z = Math.sqrt(-2.0 * Math.log(u)) * Math.cos(2.0 * Math.PI * v); + // Transform to the desired mean and standard deviation: + return z * stdev + mean; +} + +async function main() { + let genData = []; + + console.log(`samples: ${SAMPLE_COUNT}`); + console.log("distribution: ", IS_GAUSSIAN ? "gaussian" : "normal"); + + if (IS_GAUSSIAN) { + // gaussian + for (let i = 0; i < SAMPLE_COUNT; i++) { + genData.push({ + col1: gaussianRandom(0.5, 0.1), + col2: 10 * gaussianRandom(0.5, 0.15), + }); + } + } else { + // normal / uniform / linear + for (let i = 0; i < SAMPLE_COUNT; i++) { + genData.push({ + col1: Math.random(), + col2: Math.round(100 * Math.random()), + }); + } + + } + + const w = worker(); + const table = await w.table(genData); + + // save the table as an arrow file + const view = await table.view(); + const arrow = await view.to_arrow(); + + fs.writeFileSync(OUTPUT_FILE, Buffer.from(arrow)); +} + +main().then(() => { + console.log("complete"); +}); diff --git a/scripts/script_utils.js b/scripts/script_utils.js index be890023e5..530f742d51 100644 --- a/scripts/script_utils.js +++ b/scripts/script_utils.js @@ -304,6 +304,7 @@ exports.run_with_scope = async function run_recursive(strings, ...args) { const { stdout } = await execute_return("npm ls --depth 1 --json"); const workspaces = JSON.parse(stdout.toString()); + const compiled = new Set( Object.keys(workspaces.dependencies).filter( (x) => !workspaces.dependencies[x].resolved.startsWith("file:") diff --git a/scripts/setup.js b/scripts/setup.js index 257d91b9f7..c49c5dbd68 100644 --- a/scripts/setup.js +++ b/scripts/setup.js @@ -126,6 +126,11 @@ async function focus_package() { name: "perspective-viewer-d3fc", value: "perspective-viewer-d3fc", }, + { + key: "g", + name: "perspective-gpu", + value: "perspective-gpu", + }, { key: "l", name: "perspective-jupyterlab", diff --git a/tools/perspective-test/src/js/utils.ts b/tools/perspective-test/src/js/utils.ts index 31b361f2e4..0f84f3cf43 100644 --- a/tools/perspective-test/src/js/utils.ts +++ b/tools/perspective-test/src/js/utils.ts @@ -8,8 +8,6 @@ */ import { expect, Page } from "@playwright/test"; -import fs from "fs"; -import path from "path"; /** * Clean a `` for serialization/comparison. diff --git a/yarn.lock b/yarn.lock index fcf6fa85eb..c0f655e3b2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4810,6 +4810,11 @@ "@webassemblyjs/ast" "1.11.1" "@xtuc/long" "4.2.2" +"@webgpu/types@^0.1.31": + version "0.1.32" + resolved "https://registry.yarnpkg.com/@webgpu/types/-/types-0.1.32.tgz#098ba131c16cc59406b6721f612238130b58846c" + integrity sha512-H6JRAvRonWxqREjxXMZgQmdgIFPe6mykLgdrHY7EQE7YihMKd/SjtSGilUmMKECVdUMg2IQB9vzaXDiTj1AxZg== + "@webpack-cli/configtest@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.2.0.tgz#7b20ce1c12533912c3b217ea68262365fa29a6f5"